Version Description
18 February 2020 = - Added: Occurrence to related events module - Added: Order time column to the CSV Export (pro) - Added: Some strings to WPML compatibility (pro) - Fixed: HTML tag in bulk email (pro) - Fixed: "Thank You Page" in PayPal Express gateway (pro) - Fixed: Day light saving for booking module - Fixed: A duplicate booking in free bookings (pro) - Fixed: A duplicate booking in Stripe gateway (pro) - Fixed: "mec_admin_localize" error when tinymce exists in pages. - Fixed: A canvas issue in map module of list and grid skins (pro) - Fixed: Required file field of booking module (pro) - Fixed: Content position on slider view type 3 - Fixed: Container on the category archive pages - Fixed: Structured Data - Fixed: Some warnings in PHP 7.4 (pro) - Updated: German translation (Thanks to Marius Kreyel)
Release Info
Developer | webnus |
Plugin | Modern Events Calendar Lite |
Version | 5.1.6 |
Comparing to | |
See all releases |
Code changes from version 5.1.5 to 5.1.6
- app/api/TFPDF/tfpdf.php +1 -1
- app/features/events.php +4 -5
- app/features/fes.php +3 -3
- app/features/mec.php +24 -1
- app/features/mec/go-pro.php +43 -0
- app/features/mec/meta_boxes/search_form.php +9 -0
- app/libraries/book.php +20 -4
- app/libraries/main.php +30 -28
- app/modules/booking/default.php +17 -1
- app/modules/booking/steps/form.php +2 -2
- app/modules/booking/steps/tickets.php +6 -3
- app/modules/googlemap/details.php +3 -4
- app/skins/agenda/render.php +1 -1
- app/skins/available_spot/tpl.php +1 -1
- app/skins/carousel/render.php +1 -1
- app/skins/countdown/tpl.php +1 -1
- app/skins/cover/tpl.php +1 -1
- app/skins/daily_view/render.php +1 -1
- app/skins/grid/render.php +14 -3
- app/skins/list/render.php +15 -4
- app/skins/list/tpl.php +3 -2
- app/skins/map/tpl.php +2 -2
- app/skins/masonry/render.php +1 -1
- app/skins/monthly_view/calendar.php +1 -1
- app/skins/monthly_view/calendar_clean.php +1 -1
- app/skins/monthly_view/calendar_novel.php +1 -1
- app/skins/monthly_view/calendar_simple.php +1 -1
- app/skins/single.php +8 -4
- app/skins/single/default.php +1 -1
- app/skins/single/modern.php +1 -1
- app/skins/slider/render.php +5 -5
- app/skins/tile/render.php +1 -1
- app/skins/timeline/render.php +1 -1
- app/skins/timetable/render.php +1 -1
- app/skins/weekly_view/render.php +1 -1
- app/skins/yearly_view/render.php +1 -1
- assets/css/backend.css +50 -0
- assets/css/backend.min.css +1 -1
- assets/css/frontend.css +3 -1
- assets/css/frontend.min.css +1 -1
- assets/img/mec-lite-backend-go-pro.png +0 -0
- assets/js/backend.js +5 -1
- assets/js/frontend.js +5 -1
- changelog.txt +19 -1
- languages/modern-events-calendar-lite-cs_CZ.mo +0 -0
- languages/modern-events-calendar-lite-cs_CZ.po +448 -441
- languages/modern-events-calendar-lite-de_DE.mo +0 -0
- languages/modern-events-calendar-lite-de_DE.po +670 -915
- languages/modern-events-calendar-lite-en_US.mo +0 -0
- languages/modern-events-calendar-lite-en_US.po +202 -202
@@ -1259,7 +1259,7 @@ class tFPDF
|
|
1259 |
if(ini_get('mbstring.func_overload') & 2)
|
1260 |
$this->Error('mbstring overloading must be disabled');
|
1261 |
// Ensure runtime magic quotes are disabled
|
1262 |
-
if(get_magic_quotes_runtime())
|
1263 |
@set_magic_quotes_runtime(0);
|
1264 |
}
|
1265 |
|
1259 |
if(ini_get('mbstring.func_overload') & 2)
|
1260 |
$this->Error('mbstring overloading must be disabled');
|
1261 |
// Ensure runtime magic quotes are disabled
|
1262 |
+
if(version_compare(PHP_VERSION, '5.3.0', '<') and get_magic_quotes_runtime())
|
1263 |
@set_magic_quotes_runtime(0);
|
1264 |
}
|
1265 |
|
@@ -652,7 +652,8 @@ class MEC_feature_events extends MEC_base
|
|
652 |
<?php endif; ?>
|
653 |
</div>
|
654 |
</div>
|
655 |
-
|
|
|
656 |
<input
|
657 |
<?php
|
658 |
if ($allday == '1') {
|
@@ -1627,9 +1628,7 @@ class MEC_feature_events extends MEC_base
|
|
1627 |
public function meta_box_tickets($post)
|
1628 |
{
|
1629 |
$tickets = get_post_meta($post->ID, 'mec_tickets', true);
|
1630 |
-
if
|
1631 |
-
$tickets = array();
|
1632 |
-
}
|
1633 |
?>
|
1634 |
<div class="mec-meta-box-fields mec-booking-tab-content" id="mec-tickets">
|
1635 |
<h4 class="mec-meta-box-header"><?php echo $this->main->m('tickets', __('Tickets', 'modern-events-calendar-lite')); ?></h4>
|
@@ -3854,7 +3853,7 @@ class MEC_feature_events extends MEC_base
|
|
3854 |
|
3855 |
$mail_recipients_info = isset($_POST['mail_recipients_info']) ? sanitize_text_field($_POST['mail_recipients_info']) : '';
|
3856 |
$mail_subject = isset($_POST['mail_subject']) ? sanitize_text_field($_POST['mail_subject']) : '';
|
3857 |
-
$mail_content = isset($_POST['mail_content']) ?
|
3858 |
|
3859 |
if(substr($mail_recipients_info, -1) == ',') $mail_recipients_info = substr($mail_recipients_info, 0, -1);
|
3860 |
|
652 |
<?php endif; ?>
|
653 |
</div>
|
654 |
</div>
|
655 |
+
<?php do_action('add_event_after_time_and_date' ,$post->ID); ?>
|
656 |
+
<div class="mec-form-row mec-all-day-event">
|
657 |
<input
|
658 |
<?php
|
659 |
if ($allday == '1') {
|
1628 |
public function meta_box_tickets($post)
|
1629 |
{
|
1630 |
$tickets = get_post_meta($post->ID, 'mec_tickets', true);
|
1631 |
+
if(!is_array($tickets)) $tickets = array();
|
|
|
|
|
1632 |
?>
|
1633 |
<div class="mec-meta-box-fields mec-booking-tab-content" id="mec-tickets">
|
1634 |
<h4 class="mec-meta-box-header"><?php echo $this->main->m('tickets', __('Tickets', 'modern-events-calendar-lite')); ?></h4>
|
3853 |
|
3854 |
$mail_recipients_info = isset($_POST['mail_recipients_info']) ? sanitize_text_field($_POST['mail_recipients_info']) : '';
|
3855 |
$mail_subject = isset($_POST['mail_subject']) ? sanitize_text_field($_POST['mail_subject']) : '';
|
3856 |
+
$mail_content = isset($_POST['mail_content']) ? $_POST['mail_content'] : '';
|
3857 |
|
3858 |
if(substr($mail_recipients_info, -1) == ',') $mail_recipients_info = substr($mail_recipients_info, 0, -1);
|
3859 |
|
@@ -220,7 +220,7 @@ class MEC_feature_fes extends MEC_base
|
|
220 |
$main_event_id = NULL;
|
221 |
if(count($event_ids) == 1) $main_event_id = $event_ids[0];
|
222 |
|
223 |
-
$columns = array(__('ID', 'modern-events-calendar-lite'), __('Event', 'modern-events-calendar-lite'), __('Date', 'modern-events-calendar-lite'), $this->main->m('ticket', __('Ticket', 'modern-events-calendar-lite')), __('Transaction ID', 'modern-events-calendar-lite'), __('Total Price', 'modern-events-calendar-lite'), __('Name', 'modern-events-calendar-lite'), __('Email', 'modern-events-calendar-lite'), __('Ticket Variation', 'modern-events-calendar-lite'), __('Confirmation', 'modern-events-calendar-lite'), __('Verification', 'modern-events-calendar-lite'));
|
224 |
$columns = apply_filters('mec_csv_export_columns', $columns);
|
225 |
$reg_fields = $this->main->get_reg_fields($main_event_id);
|
226 |
foreach($reg_fields as $reg_field_key=>$reg_field)
|
@@ -248,7 +248,7 @@ class MEC_feature_fes extends MEC_base
|
|
248 |
$event_id = get_post_meta($post_id, 'mec_event_id', true);
|
249 |
$booker_id = get_post_field('post_author', $post_id);
|
250 |
$transaction_id = get_post_meta($post_id, 'mec_transaction_id', true);
|
251 |
-
|
252 |
$tickets = get_post_meta($event_id, 'mec_tickets', true);
|
253 |
|
254 |
$attendees = get_post_meta($post_id, 'mec_attendees', true);
|
@@ -300,7 +300,7 @@ class MEC_feature_fes extends MEC_base
|
|
300 |
}
|
301 |
|
302 |
$ticket_id = isset($attendee['id']) ? $attendee['id'] : get_post_meta($post_id, 'mec_ticket_id', true);
|
303 |
-
$booking = array($post_id, get_the_title($event_id), get_the_date('', $post_id), (isset($tickets[$ticket_id]['name']) ? $tickets[$ticket_id]['name'] : __('Unknown', 'modern-events-calendar-lite')), $transaction_id, $this->main->render_price(($price ? $price : 0)), (isset($attendee['name']) ? $attendee['name'] : (isset($booker->first_name) ? trim($booker->first_name.' '.$booker->last_name) : '')), (isset($attendee['email']) ? $attendee['email'] : @$booker->user_email), $ticket_variations_output, $confirmed, $verified);
|
304 |
$booking = apply_filters('mec_csv_export_booking', $booking, $post_id, $event_id);
|
305 |
|
306 |
$reg_form = isset($attendee['reg']) ? $attendee['reg'] : array();
|
220 |
$main_event_id = NULL;
|
221 |
if(count($event_ids) == 1) $main_event_id = $event_ids[0];
|
222 |
|
223 |
+
$columns = array(__('ID', 'modern-events-calendar-lite'), __('Event', 'modern-events-calendar-lite'), __('Date', 'modern-events-calendar-lite'), __('Order Time', 'modern-events-calendar-lite'), $this->main->m('ticket', __('Ticket', 'modern-events-calendar-lite')), __('Transaction ID', 'modern-events-calendar-lite'), __('Total Price', 'modern-events-calendar-lite'), __('Name', 'modern-events-calendar-lite'), __('Email', 'modern-events-calendar-lite'), __('Ticket Variation', 'modern-events-calendar-lite'), __('Confirmation', 'modern-events-calendar-lite'), __('Verification', 'modern-events-calendar-lite'));
|
224 |
$columns = apply_filters('mec_csv_export_columns', $columns);
|
225 |
$reg_fields = $this->main->get_reg_fields($main_event_id);
|
226 |
foreach($reg_fields as $reg_field_key=>$reg_field)
|
248 |
$event_id = get_post_meta($post_id, 'mec_event_id', true);
|
249 |
$booker_id = get_post_field('post_author', $post_id);
|
250 |
$transaction_id = get_post_meta($post_id, 'mec_transaction_id', true);
|
251 |
+
$order_time = get_post_meta($post_id, 'mec_booking_time', true);
|
252 |
$tickets = get_post_meta($event_id, 'mec_tickets', true);
|
253 |
|
254 |
$attendees = get_post_meta($post_id, 'mec_attendees', true);
|
300 |
}
|
301 |
|
302 |
$ticket_id = isset($attendee['id']) ? $attendee['id'] : get_post_meta($post_id, 'mec_ticket_id', true);
|
303 |
+
$booking = array($post_id, get_the_title($event_id), get_the_date('', $post_id), $order_time, (isset($tickets[$ticket_id]['name']) ? $tickets[$ticket_id]['name'] : __('Unknown', 'modern-events-calendar-lite')), $transaction_id, $this->main->render_price(($price ? $price : 0)), (isset($attendee['name']) ? $attendee['name'] : (isset($booker->first_name) ? trim($booker->first_name.' '.$booker->last_name) : '')), (isset($attendee['email']) ? $attendee['email'] : @$booker->user_email), $ticket_variations_output, $confirmed, $verified);
|
304 |
$booking = apply_filters('mec_csv_export_booking', $booking, $post_id, $event_id);
|
305 |
|
306 |
$reg_form = isset($attendee['reg']) ? $attendee['reg'] : array();
|
@@ -418,7 +418,7 @@ class MEC_feature_mec extends MEC_base
|
|
418 |
{
|
419 |
add_submenu_page('mec-intro', __('MEC - Report', 'modern-events-calendar-lite'), __('Report', 'modern-events-calendar-lite'), 'manage_options', 'MEC-report', array($this, 'report'));
|
420 |
}
|
421 |
-
|
422 |
do_action('after_mec_submenu_action');
|
423 |
}
|
424 |
|
@@ -619,6 +619,29 @@ class MEC_feature_mec extends MEC_base
|
|
619 |
echo $output = ob_get_clean();
|
620 |
}
|
621 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
622 |
/**
|
623 |
* Get Addons page
|
624 |
* @author Webnus <info@webnus.biz>
|
418 |
{
|
419 |
add_submenu_page('mec-intro', __('MEC - Report', 'modern-events-calendar-lite'), __('Report', 'modern-events-calendar-lite'), 'manage_options', 'MEC-report', array($this, 'report'));
|
420 |
}
|
421 |
+
if (!$this->getPRO()) add_submenu_page('mec-intro', __('MEC - Go Pro', 'modern-events-calendar-lite'), __('Go Pro', 'modern-events-calendar-lite'), 'manage_options', 'MEC-go-pro', array($this, 'go_pro'));
|
422 |
do_action('after_mec_submenu_action');
|
423 |
}
|
424 |
|
619 |
echo $output = ob_get_clean();
|
620 |
}
|
621 |
|
622 |
+
/**
|
623 |
+
* Get Addons page
|
624 |
+
* @author Webnus <info@webnus.biz>
|
625 |
+
* @return void
|
626 |
+
*/
|
627 |
+
public function go_pro()
|
628 |
+
{
|
629 |
+
$this->display_go_pro();
|
630 |
+
}
|
631 |
+
|
632 |
+
/**
|
633 |
+
* Show go_pro page
|
634 |
+
* @author Webnus <info@webnus.biz>
|
635 |
+
* @return void
|
636 |
+
*/
|
637 |
+
public function display_go_pro()
|
638 |
+
{
|
639 |
+
$path = MEC::import('app.features.mec.go-pro', true, true);
|
640 |
+
ob_start();
|
641 |
+
include $path;
|
642 |
+
echo $output = ob_get_clean();
|
643 |
+
}
|
644 |
+
|
645 |
/**
|
646 |
* Get Addons page
|
647 |
* @author Webnus <info@webnus.biz>
|
@@ -14,6 +14,49 @@ defined('MECEXEC') or die();
|
|
14 |
</div>
|
15 |
</div>
|
16 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
<div class="welcome-content w-clearfix extra">
|
18 |
<div class="w-row mec-pro-notice">
|
19 |
<div class="w-col-sm-12">
|
14 |
</div>
|
15 |
</div>
|
16 |
</div>
|
17 |
+
<div class="mec-custom-msg-notification-set-box extra">
|
18 |
+
<div class="w-row mec-custom-msg-notification-wrap">
|
19 |
+
<div class="w-col-sm-12">
|
20 |
+
<div class="w-clearfix w-box mec-cmsg-notification-box-wrap mec-go-pro-features-wrap">
|
21 |
+
<div class="w-box-head">Pro Features<span></span></div>
|
22 |
+
<div class="w-box-content">
|
23 |
+
<div class="mec-addons-notification-box-image"> <img src="<?php echo plugin_dir_url(__FILE__ ); ?>../../../assets/img/mec-lite-backend-go-pro.png" /></div>
|
24 |
+
<div class="mec-addons-notification-box-content mec-new-addons">
|
25 |
+
<div class="w-box-content">
|
26 |
+
<div class="mec-go-pro-content-title">Modern Events Calendar Pro</div>
|
27 |
+
<p>Modern Events Calendar has been created according to trending design methods and latest technology with attractive design.
|
28 |
+
We gathered all features of event calendar as you desire with advanced booking system and many other useful options which are practical in real world! Below you can see a list of some of the pro features:</p>
|
29 |
+
<div class="mec-addons-key-features">
|
30 |
+
<ul>
|
31 |
+
<li>Booking System</li>
|
32 |
+
<li>Reporting Dashboard</li>
|
33 |
+
<li>Timetable View</li>
|
34 |
+
<li>Map view + Directions</li>
|
35 |
+
<li>Reminders Notification</li>
|
36 |
+
<li>Weather module</li>
|
37 |
+
<li>PDF invoice</li>
|
38 |
+
<li>Mailchimp Integration</li>
|
39 |
+
<li>Campaign Monitor Integration</li>
|
40 |
+
</ul>
|
41 |
+
<ul>
|
42 |
+
<li>Cancellation Booking</li>
|
43 |
+
<li>Attendee list</li>
|
44 |
+
<li>Organizer payment (Commission System)</li>
|
45 |
+
<li>Advanced Tax/Fee system</li>
|
46 |
+
<li>Ticket Variations</li>
|
47 |
+
<li>Coupons/Discount system</li>
|
48 |
+
<li>Synchronization</li>
|
49 |
+
<li>MailerLite Integration</li>
|
50 |
+
<li>Constant Contact Integration</li>
|
51 |
+
</ul>
|
52 |
+
</div>
|
53 |
+
<div style="clear:both"></div><a href="https://webnus.net/modern-events-calendar/features/?ref=17" target="_blank">Find out more</a>
|
54 |
+
</div>
|
55 |
+
</div>
|
56 |
+
</div>
|
57 |
+
</div>
|
58 |
+
</div>
|
59 |
+
</div>
|
60 |
<div class="welcome-content w-clearfix extra">
|
61 |
<div class="w-row mec-pro-notice">
|
62 |
<div class="w-col-sm-12">
|
@@ -207,6 +207,7 @@ $sf_options = get_post_meta($post->ID, 'sf-options', true);
|
|
207 |
<option value="text_input" <?php if(isset($sf_options_agenda['text_search']) and isset($sf_options_agenda['text_search']['type']) and $sf_options_agenda['text_search']['type'] == 'text_input') echo 'selected="selected"'; ?>><?php _e('Text Input', 'modern-events-calendar-lite'); ?></option>
|
208 |
</select>
|
209 |
</div>
|
|
|
210 |
</div>
|
211 |
|
212 |
<!-- Full Calendar -->
|
@@ -268,6 +269,7 @@ $sf_options = get_post_meta($post->ID, 'sf-options', true);
|
|
268 |
<option value="text_input" <?php if(isset($sf_options_full_calendar['text_search']) and isset($sf_options_full_calendar['text_search']['type']) and $sf_options_full_calendar['text_search']['type'] == 'text_input') echo 'selected="selected"'; ?>><?php _e('Text Input', 'modern-events-calendar-lite'); ?></option>
|
269 |
</select>
|
270 |
</div>
|
|
|
271 |
</div>
|
272 |
|
273 |
<!-- Monthly View -->
|
@@ -329,6 +331,7 @@ $sf_options = get_post_meta($post->ID, 'sf-options', true);
|
|
329 |
<option value="text_input" <?php if(isset($sf_options_monthly_view['text_search']) and isset($sf_options_monthly_view['text_search']['type']) and $sf_options_monthly_view['text_search']['type'] == 'text_input') echo 'selected="selected"'; ?>><?php _e('Text Input', 'modern-events-calendar-lite'); ?></option>
|
330 |
</select>
|
331 |
</div>
|
|
|
332 |
</div>
|
333 |
|
334 |
<!-- Yearly View -->
|
@@ -390,6 +393,7 @@ $sf_options = get_post_meta($post->ID, 'sf-options', true);
|
|
390 |
<option value="text_input" <?php if(isset($sf_options_yearly_view['text_search']) and isset($sf_options_yearly_view['text_search']['type']) and $sf_options_yearly_view['text_search']['type'] == 'text_input') echo 'selected="selected"'; ?>><?php _e('Text Input', 'modern-events-calendar-lite'); ?></option>
|
391 |
</select>
|
392 |
</div>
|
|
|
393 |
</div>
|
394 |
|
395 |
<!-- Map Skin -->
|
@@ -444,6 +448,7 @@ $sf_options = get_post_meta($post->ID, 'sf-options', true);
|
|
444 |
<option value="text_input" <?php if(isset($sf_options_map['text_search']) and isset($sf_options_map['text_search']['type']) and $sf_options_map['text_search']['type'] == 'text_input') echo 'selected="selected"'; ?>><?php _e('Text Input', 'modern-events-calendar-lite'); ?></option>
|
445 |
</select>
|
446 |
</div>
|
|
|
447 |
</div>
|
448 |
|
449 |
<!-- Daily View -->
|
@@ -505,6 +510,7 @@ $sf_options = get_post_meta($post->ID, 'sf-options', true);
|
|
505 |
<option value="text_input" <?php if(isset($sf_options_daily_view['text_search']) and isset($sf_options_daily_view['text_search']['type']) and $sf_options_daily_view['text_search']['type'] == 'text_input') echo 'selected="selected"'; ?>><?php _e('Text Input', 'modern-events-calendar-lite'); ?></option>
|
506 |
</select>
|
507 |
</div>
|
|
|
508 |
</div>
|
509 |
|
510 |
<!-- Weekly View -->
|
@@ -566,6 +572,7 @@ $sf_options = get_post_meta($post->ID, 'sf-options', true);
|
|
566 |
<option value="text_input" <?php if(isset($sf_options_weekly_view['text_search']) and isset($sf_options_weekly_view['text_search']['type']) and $sf_options_weekly_view['text_search']['type'] == 'text_input') echo 'selected="selected"'; ?>><?php _e('Text Input', 'modern-events-calendar-lite'); ?></option>
|
567 |
</select>
|
568 |
</div>
|
|
|
569 |
</div>
|
570 |
|
571 |
<!-- Timetable View -->
|
@@ -627,6 +634,7 @@ $sf_options = get_post_meta($post->ID, 'sf-options', true);
|
|
627 |
<option value="text_input" <?php if(isset($sf_options_timetable['text_search']) and isset($sf_options_timetable['text_search']['type']) and $sf_options_timetable['text_search']['type'] == 'text_input') echo 'selected="selected"'; ?>><?php _e('Text Input', 'modern-events-calendar-lite'); ?></option>
|
628 |
</select>
|
629 |
</div>
|
|
|
630 |
</div>
|
631 |
|
632 |
<!-- Masonry View -->
|
@@ -724,6 +732,7 @@ $sf_options = get_post_meta($post->ID, 'sf-options', true);
|
|
724 |
<option value="text_input" <?php if(isset($sf_options_tile['text_search']) and isset($sf_options_tile['text_search']['type']) and $sf_options_tile['text_search']['type'] == 'text_input') echo 'selected="selected"'; ?>><?php _e('Text Input', 'modern-events-calendar-lite'); ?></option>
|
725 |
</select>
|
726 |
</div>
|
|
|
727 |
</div>
|
728 |
|
729 |
<!-- Custom Skins -->
|
207 |
<option value="text_input" <?php if(isset($sf_options_agenda['text_search']) and isset($sf_options_agenda['text_search']['type']) and $sf_options_agenda['text_search']['type'] == 'text_input') echo 'selected="selected"'; ?>><?php _e('Text Input', 'modern-events-calendar-lite'); ?></option>
|
208 |
</select>
|
209 |
</div>
|
210 |
+
<?php do_action('mec_agenda_search_form',$sf_options_agenda); ?>
|
211 |
</div>
|
212 |
|
213 |
<!-- Full Calendar -->
|
269 |
<option value="text_input" <?php if(isset($sf_options_full_calendar['text_search']) and isset($sf_options_full_calendar['text_search']['type']) and $sf_options_full_calendar['text_search']['type'] == 'text_input') echo 'selected="selected"'; ?>><?php _e('Text Input', 'modern-events-calendar-lite'); ?></option>
|
270 |
</select>
|
271 |
</div>
|
272 |
+
<?php do_action('mec_full_calendar_search_form',$sf_options_full_calendar); ?>
|
273 |
</div>
|
274 |
|
275 |
<!-- Monthly View -->
|
331 |
<option value="text_input" <?php if(isset($sf_options_monthly_view['text_search']) and isset($sf_options_monthly_view['text_search']['type']) and $sf_options_monthly_view['text_search']['type'] == 'text_input') echo 'selected="selected"'; ?>><?php _e('Text Input', 'modern-events-calendar-lite'); ?></option>
|
332 |
</select>
|
333 |
</div>
|
334 |
+
<?php do_action('mec_monthly_search_form',$sf_options_monthly_view); ?>
|
335 |
</div>
|
336 |
|
337 |
<!-- Yearly View -->
|
393 |
<option value="text_input" <?php if(isset($sf_options_yearly_view['text_search']) and isset($sf_options_yearly_view['text_search']['type']) and $sf_options_yearly_view['text_search']['type'] == 'text_input') echo 'selected="selected"'; ?>><?php _e('Text Input', 'modern-events-calendar-lite'); ?></option>
|
394 |
</select>
|
395 |
</div>
|
396 |
+
<?php do_action('mec_yearly_search_form',$sf_options_yearly_view); ?>
|
397 |
</div>
|
398 |
|
399 |
<!-- Map Skin -->
|
448 |
<option value="text_input" <?php if(isset($sf_options_map['text_search']) and isset($sf_options_map['text_search']['type']) and $sf_options_map['text_search']['type'] == 'text_input') echo 'selected="selected"'; ?>><?php _e('Text Input', 'modern-events-calendar-lite'); ?></option>
|
449 |
</select>
|
450 |
</div>
|
451 |
+
<?php do_action('mec_map_search_form',$sf_options_map); ?>
|
452 |
</div>
|
453 |
|
454 |
<!-- Daily View -->
|
510 |
<option value="text_input" <?php if(isset($sf_options_daily_view['text_search']) and isset($sf_options_daily_view['text_search']['type']) and $sf_options_daily_view['text_search']['type'] == 'text_input') echo 'selected="selected"'; ?>><?php _e('Text Input', 'modern-events-calendar-lite'); ?></option>
|
511 |
</select>
|
512 |
</div>
|
513 |
+
<?php do_action('mec_daily_search_form',$sf_options_daily_view); ?>
|
514 |
</div>
|
515 |
|
516 |
<!-- Weekly View -->
|
572 |
<option value="text_input" <?php if(isset($sf_options_weekly_view['text_search']) and isset($sf_options_weekly_view['text_search']['type']) and $sf_options_weekly_view['text_search']['type'] == 'text_input') echo 'selected="selected"'; ?>><?php _e('Text Input', 'modern-events-calendar-lite'); ?></option>
|
573 |
</select>
|
574 |
</div>
|
575 |
+
<?php do_action('mec_weekly_search_form',$sf_options_weekly_view); ?>
|
576 |
</div>
|
577 |
|
578 |
<!-- Timetable View -->
|
634 |
<option value="text_input" <?php if(isset($sf_options_timetable['text_search']) and isset($sf_options_timetable['text_search']['type']) and $sf_options_timetable['text_search']['type'] == 'text_input') echo 'selected="selected"'; ?>><?php _e('Text Input', 'modern-events-calendar-lite'); ?></option>
|
635 |
</select>
|
636 |
</div>
|
637 |
+
<?php do_action('mec_timetable_search_form',$sf_options_timetable); ?>
|
638 |
</div>
|
639 |
|
640 |
<!-- Masonry View -->
|
732 |
<option value="text_input" <?php if(isset($sf_options_tile['text_search']) and isset($sf_options_tile['text_search']['type']) and $sf_options_tile['text_search']['type'] == 'text_input') echo 'selected="selected"'; ?>><?php _e('Text Input', 'modern-events-calendar-lite'); ?></option>
|
733 |
</select>
|
734 |
</div>
|
735 |
+
<?php do_action('mec_tile_search_form',$sf_options_tile); ?>
|
736 |
</div>
|
737 |
|
738 |
<!-- Custom Skins -->
|
@@ -191,6 +191,18 @@ class MEC_book extends MEC_base
|
|
191 |
*/
|
192 |
public function add($values, $transaction_id, $ticket_ids)
|
193 |
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
194 |
// Transaction Data
|
195 |
$transaction = $this->get_transaction($transaction_id);
|
196 |
$event_id = $transaction['event_id'];
|
@@ -200,7 +212,9 @@ class MEC_book extends MEC_base
|
|
200 |
if(!isset($values['post_status'])) $values['post_status'] = 'publish';
|
201 |
|
202 |
$book_id = wp_insert_post($values);
|
203 |
-
|
|
|
|
|
204 |
|
205 |
// Publish it
|
206 |
wp_publish_post($book_id);
|
@@ -210,7 +224,6 @@ class MEC_book extends MEC_base
|
|
210 |
update_post_meta($book_id, 'mec_cancellation_key', md5(time().mt_rand(10000, 99999)));
|
211 |
|
212 |
update_post_meta($book_id, 'mec_confirmed', 0);
|
213 |
-
update_post_meta($book_id, 'mec_transaction_id', $transaction_id);
|
214 |
|
215 |
update_post_meta($book_id, 'mec_event_id', $event_id);
|
216 |
update_post_meta($book_id, 'mec_date', $transaction['date']);
|
@@ -220,6 +233,7 @@ class MEC_book extends MEC_base
|
|
220 |
// For Badget Bubble Notification Alert Count From It.
|
221 |
update_post_meta($book_id, 'mec_book_date_submit', date('YmdHis', current_time('timestamp', 0)));
|
222 |
|
|
|
223 |
if(!empty($location_id)) update_post_meta($book_id, 'mec_booking_location', $location_id);
|
224 |
if(isset($values['mec_attendees'])) update_post_meta($book_id, 'mec_attendees', $values['mec_attendees']);
|
225 |
|
@@ -263,7 +277,7 @@ class MEC_book extends MEC_base
|
|
263 |
{
|
264 |
// Work or don't work auto confirmation when pay through pay locally payment.
|
265 |
$gateways_settings = get_option('mec_options', array());
|
266 |
-
$pay_locally_gateway = (isset($gateways_settings['gateways'][1]['disable_auto_confirmation']) and trim($gateways_settings['gateways'][1]['disable_auto_confirmation'])) ? true : false;
|
267 |
|
268 |
if(!$pay_locally_gateway) $this->confirm($book_id, 'auto');
|
269 |
}
|
@@ -666,7 +680,9 @@ class MEC_book extends MEC_base
|
|
666 |
public function get_thankyou_page($page_id, $transaction_id)
|
667 |
{
|
668 |
$main = $this->getMain();
|
669 |
-
|
|
|
|
|
670 |
}
|
671 |
|
672 |
public function invoice_link_shortcode()
|
191 |
*/
|
192 |
public function add($values, $transaction_id, $ticket_ids)
|
193 |
{
|
194 |
+
// Check Transaction State
|
195 |
+
$db = $this->main->getDB();
|
196 |
+
$db_transaction_ids = $db->select("SELECT `post_id` FROM `#__postmeta` WHERE `meta_key` = 'mec_transaction_id' AND `meta_value` = '{$transaction_id}'", 'loadObjectList');
|
197 |
+
|
198 |
+
foreach($db_transaction_ids as $db_transaction_id)
|
199 |
+
{
|
200 |
+
$book_status = get_post_status($db_transaction_id->post_id);
|
201 |
+
if(trim($book_status) == 'trash') unset($db_transaction_ids[$db_transaction_id->post_id]);
|
202 |
+
}
|
203 |
+
|
204 |
+
if(count($db_transaction_ids)) exit;
|
205 |
+
|
206 |
// Transaction Data
|
207 |
$transaction = $this->get_transaction($transaction_id);
|
208 |
$event_id = $transaction['event_id'];
|
212 |
if(!isset($values['post_status'])) $values['post_status'] = 'publish';
|
213 |
|
214 |
$book_id = wp_insert_post($values);
|
215 |
+
|
216 |
+
// Update transaction id after insert book for prevent repeat reservation books.
|
217 |
+
update_post_meta($book_id, 'mec_transaction_id', $transaction_id);
|
218 |
|
219 |
// Publish it
|
220 |
wp_publish_post($book_id);
|
224 |
update_post_meta($book_id, 'mec_cancellation_key', md5(time().mt_rand(10000, 99999)));
|
225 |
|
226 |
update_post_meta($book_id, 'mec_confirmed', 0);
|
|
|
227 |
|
228 |
update_post_meta($book_id, 'mec_event_id', $event_id);
|
229 |
update_post_meta($book_id, 'mec_date', $transaction['date']);
|
233 |
// For Badget Bubble Notification Alert Count From It.
|
234 |
update_post_meta($book_id, 'mec_book_date_submit', date('YmdHis', current_time('timestamp', 0)));
|
235 |
|
236 |
+
$location_id = get_post_meta($event_id, 'mec_location_id', true);
|
237 |
if(!empty($location_id)) update_post_meta($book_id, 'mec_booking_location', $location_id);
|
238 |
if(isset($values['mec_attendees'])) update_post_meta($book_id, 'mec_attendees', $values['mec_attendees']);
|
239 |
|
277 |
{
|
278 |
// Work or don't work auto confirmation when pay through pay locally payment.
|
279 |
$gateways_settings = get_option('mec_options', array());
|
280 |
+
$pay_locally_gateway = ((isset($_GET['action']) and trim($_GET['action']) == 'mec_do_transaction_pay_locally') and (isset($gateways_settings['gateways'][1]['disable_auto_confirmation']) and trim($gateways_settings['gateways'][1]['disable_auto_confirmation']))) ? true : false;
|
281 |
|
282 |
if(!$pay_locally_gateway) $this->confirm($book_id, 'auto');
|
283 |
}
|
680 |
public function get_thankyou_page($page_id, $transaction_id)
|
681 |
{
|
682 |
$main = $this->getMain();
|
683 |
+
$page = get_permalink($page_id);
|
684 |
+
|
685 |
+
return ($transaction_id ? $main->add_qs_var('transaction', $transaction_id, $page) : $page);
|
686 |
}
|
687 |
|
688 |
public function invoice_link_shortcode()
|
@@ -4110,7 +4110,7 @@ class MEC_main extends MEC_base
|
|
4110 |
{
|
4111 |
$class = isset($args['class']) ? esc_attr($args['class']) : 'mec-time-details';
|
4112 |
|
4113 |
-
$return =
|
4114 |
if(trim($start)) $return .= '<span class="mec-start-time">' . $start . '</span>';
|
4115 |
if(trim($end)) $return .= ' - <span class="mec-end-time">' . $end . '</span>';
|
4116 |
$return .= '</div>';
|
@@ -5956,7 +5956,7 @@ class MEC_main extends MEC_base
|
|
5956 |
*/
|
5957 |
public function check_date_time_validation($format, $date)
|
5958 |
{
|
5959 |
-
if(func_num_args() < 2) return;
|
5960 |
|
5961 |
$check = DateTime::createFromFormat($format, $date);
|
5962 |
|
@@ -6004,32 +6004,30 @@ class MEC_main extends MEC_base
|
|
6004 |
$i = 0;
|
6005 |
$stripped = 0;
|
6006 |
$stripped_text = strip_tags($text);
|
6007 |
-
|
|
|
6008 |
{
|
6009 |
-
$symbol = $text
|
6010 |
$result .= $symbol;
|
6011 |
-
switch
|
6012 |
{
|
6013 |
-
|
6014 |
$is_open = true;
|
6015 |
$grab_open = true;
|
6016 |
break;
|
6017 |
-
case '"':
|
6018 |
-
if ($in_double_quotes)
|
6019 |
-
$in_double_quotes = false;
|
6020 |
-
else
|
6021 |
-
$in_double_quotes = true;
|
6022 |
|
6023 |
-
|
|
|
|
|
|
|
|
|
6024 |
case "'":
|
6025 |
-
|
6026 |
-
$in_single_quotes =
|
6027 |
-
|
6028 |
-
$in_single_quotes = true;
|
6029 |
|
6030 |
-
break;
|
6031 |
case '/':
|
6032 |
-
if
|
6033 |
{
|
6034 |
$is_close = true;
|
6035 |
$is_open = false;
|
@@ -6037,36 +6035,40 @@ class MEC_main extends MEC_base
|
|
6037 |
}
|
6038 |
|
6039 |
break;
|
|
|
6040 |
case ' ':
|
6041 |
-
if
|
6042 |
-
|
6043 |
-
else
|
6044 |
-
$stripped++;
|
6045 |
|
6046 |
break;
|
|
|
6047 |
case '>':
|
6048 |
-
if
|
6049 |
{
|
6050 |
$is_open = false;
|
6051 |
$grab_open = false;
|
6052 |
array_push($tags, $tag);
|
6053 |
$tag = "";
|
6054 |
}
|
6055 |
-
|
6056 |
{
|
6057 |
$is_close = false;
|
6058 |
array_pop($tags);
|
6059 |
$tag = "";
|
6060 |
}
|
|
|
6061 |
break;
|
|
|
6062 |
default:
|
6063 |
-
if
|
6064 |
-
if
|
6065 |
}
|
|
|
6066 |
$i++;
|
6067 |
}
|
6068 |
-
|
6069 |
-
|
|
|
6070 |
return $result;
|
6071 |
}
|
6072 |
|
4110 |
{
|
4111 |
$class = isset($args['class']) ? esc_attr($args['class']) : 'mec-time-details';
|
4112 |
|
4113 |
+
$return = '<div class="'.$class.'">';
|
4114 |
if(trim($start)) $return .= '<span class="mec-start-time">' . $start . '</span>';
|
4115 |
if(trim($end)) $return .= ' - <span class="mec-end-time">' . $end . '</span>';
|
4116 |
$return .= '</div>';
|
5956 |
*/
|
5957 |
public function check_date_time_validation($format, $date)
|
5958 |
{
|
5959 |
+
if(func_num_args() < 2) return false;
|
5960 |
|
5961 |
$check = DateTime::createFromFormat($format, $date);
|
5962 |
|
6004 |
$i = 0;
|
6005 |
$stripped = 0;
|
6006 |
$stripped_text = strip_tags($text);
|
6007 |
+
|
6008 |
+
while($i < strlen($text) && $stripped < strlen($stripped_text) && $stripped < $max_length)
|
6009 |
{
|
6010 |
+
$symbol = $text[$i];
|
6011 |
$result .= $symbol;
|
6012 |
+
switch($symbol)
|
6013 |
{
|
6014 |
+
case '<':
|
6015 |
$is_open = true;
|
6016 |
$grab_open = true;
|
6017 |
break;
|
|
|
|
|
|
|
|
|
|
|
6018 |
|
6019 |
+
case '"':
|
6020 |
+
if($in_double_quotes) $in_double_quotes = false;
|
6021 |
+
else $in_double_quotes = true;
|
6022 |
+
break;
|
6023 |
+
|
6024 |
case "'":
|
6025 |
+
if($in_single_quotes) $in_single_quotes = false;
|
6026 |
+
else $in_single_quotes = true;
|
6027 |
+
break;
|
|
|
6028 |
|
|
|
6029 |
case '/':
|
6030 |
+
if($is_open && !$in_double_quotes && !$in_single_quotes)
|
6031 |
{
|
6032 |
$is_close = true;
|
6033 |
$is_open = false;
|
6035 |
}
|
6036 |
|
6037 |
break;
|
6038 |
+
|
6039 |
case ' ':
|
6040 |
+
if($is_open) $grab_open = false;
|
6041 |
+
else $stripped++;
|
|
|
|
|
6042 |
|
6043 |
break;
|
6044 |
+
|
6045 |
case '>':
|
6046 |
+
if($is_open)
|
6047 |
{
|
6048 |
$is_open = false;
|
6049 |
$grab_open = false;
|
6050 |
array_push($tags, $tag);
|
6051 |
$tag = "";
|
6052 |
}
|
6053 |
+
elseif($is_close)
|
6054 |
{
|
6055 |
$is_close = false;
|
6056 |
array_pop($tags);
|
6057 |
$tag = "";
|
6058 |
}
|
6059 |
+
|
6060 |
break;
|
6061 |
+
|
6062 |
default:
|
6063 |
+
if($grab_open || $is_close) $tag .= $symbol;
|
6064 |
+
if(!$is_open && !$is_close) $stripped++;
|
6065 |
}
|
6066 |
+
|
6067 |
$i++;
|
6068 |
}
|
6069 |
+
|
6070 |
+
while($tags) $result .= "</".array_pop($tags).">";
|
6071 |
+
|
6072 |
return $result;
|
6073 |
}
|
6074 |
|
@@ -203,6 +203,19 @@ function mec_book_form_submit'.$uniqueid.'()
|
|
203 |
else jQuery(this).removeClass("mec-red-notification");
|
204 |
});
|
205 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
206 |
jQuery("#mec_book_form'.$uniqueid.' .mec-book-ticket-container .mec-book-reg-field-radio.mec-reg-mandatory").filter(":visible").each(function(i)
|
207 |
{
|
208 |
var ticket_id = jQuery(this).data("ticket-id");
|
@@ -376,6 +389,7 @@ function mec_book_apply_coupon'.$uniqueid.'()
|
|
376 |
function mec_book_free'.$uniqueid.'()
|
377 |
{
|
378 |
// Add loading Class to the button
|
|
|
379 |
jQuery("#mec_book_form_free_booking'.$uniqueid.' button[type=submit]").addClass("loading");
|
380 |
jQuery("#mec_booking_message'.$uniqueid.'").removeClass("mec-success mec-error").hide();
|
381 |
|
@@ -408,14 +422,16 @@ function mec_book_free'.$uniqueid.'()
|
|
408 |
}
|
409 |
}
|
410 |
else
|
411 |
-
{
|
412 |
jQuery("#mec_booking_message'.$uniqueid.'").addClass("mec-error").html(data.message).show();
|
|
|
413 |
}
|
414 |
},
|
415 |
error: function(jqXHR, textStatus, errorThrown)
|
416 |
{
|
417 |
// Remove the loading Class to the button
|
418 |
jQuery("#mec_book_form_free_booking'.$uniqueid.' button[type=submit]").removeClass("loading");
|
|
|
419 |
}
|
420 |
});
|
421 |
}
|
203 |
else jQuery(this).removeClass("mec-red-notification");
|
204 |
});
|
205 |
|
206 |
+
jQuery("#mec_book_form'.$uniqueid.' .mec-book-ticket-container .mec-book-reg-field-file.mec-reg-mandatory").filter(":visible").each(function(i)
|
207 |
+
{
|
208 |
+
var ticket_id = jQuery(this).data("ticket-id");
|
209 |
+
var field_id = jQuery(this).data("field-id");
|
210 |
+
|
211 |
+
if(!jQuery("#mec_book_form'.$uniqueid.' input[name=\'book[tickets]["+ticket_id+"][reg]["+field_id+"]\']").val())
|
212 |
+
{
|
213 |
+
valid = false;
|
214 |
+
jQuery(this).addClass("mec-red-notification");
|
215 |
+
}
|
216 |
+
else jQuery(this).removeClass("mec-red-notification");
|
217 |
+
});
|
218 |
+
|
219 |
jQuery("#mec_book_form'.$uniqueid.' .mec-book-ticket-container .mec-book-reg-field-radio.mec-reg-mandatory").filter(":visible").each(function(i)
|
220 |
{
|
221 |
var ticket_id = jQuery(this).data("ticket-id");
|
389 |
function mec_book_free'.$uniqueid.'()
|
390 |
{
|
391 |
// Add loading Class to the button
|
392 |
+
jQuery("#mec_book_form_free_booking'.$uniqueid.'").find("button").prop("disabled", true);
|
393 |
jQuery("#mec_book_form_free_booking'.$uniqueid.' button[type=submit]").addClass("loading");
|
394 |
jQuery("#mec_booking_message'.$uniqueid.'").removeClass("mec-success mec-error").hide();
|
395 |
|
422 |
}
|
423 |
}
|
424 |
else
|
425 |
+
{
|
426 |
jQuery("#mec_booking_message'.$uniqueid.'").addClass("mec-error").html(data.message).show();
|
427 |
+
jQuery("#mec_book_form_free_booking'.$uniqueid.'").find("button").prop("disabled", false);
|
428 |
}
|
429 |
},
|
430 |
error: function(jqXHR, textStatus, errorThrown)
|
431 |
{
|
432 |
// Remove the loading Class to the button
|
433 |
jQuery("#mec_book_form_free_booking'.$uniqueid.' button[type=submit]").removeClass("loading");
|
434 |
+
jQuery("#mec_book_form_free_booking'.$uniqueid.'").find("button").prop("disabled", false);
|
435 |
}
|
436 |
});
|
437 |
}
|
@@ -54,9 +54,9 @@ if(!$mec_email)
|
|
54 |
|
55 |
<?php $j = 0; foreach($tickets as $ticket_id=>$count): if(!$count) continue; $ticket = $event_tickets[$ticket_id]; for($i = 1; $i <= $count; $i++): $j++; ?>
|
56 |
<li class="mec-book-ticket-container <?php echo (($j > 1 and $first_for_all) ? 'mec-util-hidden' : ''); ?>">
|
57 |
-
<?php if
|
58 |
<h4 class="col-md-12">
|
59 |
-
<span class="mec-ticket-name"><?php echo $ticket['name']; ?></span>
|
60 |
<span class="mec-ticket-price"><?php echo $this->book->get_ticket_price_label($ticket, current_time('Y-m-d')); ?></span>
|
61 |
</h4>
|
62 |
<?php endif; ?>
|
54 |
|
55 |
<?php $j = 0; foreach($tickets as $ticket_id=>$count): if(!$count) continue; $ticket = $event_tickets[$ticket_id]; for($i = 1; $i <= $count; $i++): $j++; ?>
|
56 |
<li class="mec-book-ticket-container <?php echo (($j > 1 and $first_for_all) ? 'mec-util-hidden' : ''); ?>">
|
57 |
+
<?php if(!empty($ticket['name']) || !empty($this->book->get_ticket_price_label($ticket, current_time('Y-m-d')))): ?>
|
58 |
<h4 class="col-md-12">
|
59 |
+
<span class="mec-ticket-name"><?php echo __($ticket['name'], 'modern-events-calendar-lite'); ?></span>
|
60 |
<span class="mec-ticket-price"><?php echo $this->book->get_ticket_price_label($ticket, current_time('Y-m-d')); ?></span>
|
61 |
</h4>
|
62 |
<?php endif; ?>
|
@@ -15,6 +15,7 @@ $book = $this->getBook();
|
|
15 |
$availability = $book->get_tickets_availability($event_id, $occurrence);
|
16 |
|
17 |
$date_format = (isset($settings['booking_date_format1']) and trim($settings['booking_date_format1'])) ? $settings['booking_date_format1'] : 'Y-m-d';
|
|
|
18 |
?>
|
19 |
<form id="mec_book_form<?php echo $uniqueid; ?>" onsubmit="mec_book_form_submit(event, <?php echo $uniqueid; ?>);">
|
20 |
<h4><?php _e('Book Event', 'modern-events-calendar-lite'); ?></h4>
|
@@ -22,7 +23,9 @@ $date_format = (isset($settings['booking_date_format1']) and trim($settings['boo
|
|
22 |
<label for="mec_book_form_date"><?php _e('Date', 'modern-events-calendar-lite'); ?>: </label>
|
23 |
<select name="book[date]" id="mec_book_form_date" onchange="mec_get_tickets_availability<?php echo $uniqueid; ?>(<?php echo $event_id; ?>, this.value);">
|
24 |
<?php foreach($dates as $date): ?>
|
25 |
-
<option value="<?php echo $date['start']['date'].':'.$date['end']['date']; ?>"
|
|
|
|
|
26 |
<?php endforeach; ?>
|
27 |
</select>
|
28 |
</div>
|
@@ -31,9 +34,9 @@ $date_format = (isset($settings['booking_date_format1']) and trim($settings['boo
|
|
31 |
<?php foreach($tickets as $ticket_id=>$ticket): $stop_selling = isset($availability['stop_selling_'.$ticket_id]) ? $availability['stop_selling_'.$ticket_id] : false; $ticket_limit = isset($availability[$ticket_id]) ? $availability[$ticket_id] : -1; if($ticket_limit === '0' and count($dates) <= 1) continue; ?>
|
32 |
<div class="mec-event-ticket mec-event-ticket<?php echo $ticket_limit; ?>" id="mec_event_ticket<?php echo $ticket_id; ?>">
|
33 |
<div class="mec-ticket-available-spots <?php echo ($ticket_limit == '0' ? 'mec-util-hidden' : ''); ?>">
|
34 |
-
<span class="mec-event-ticket-name"><?php echo (isset($ticket['name']) ? $ticket['name'] : ''); ?></span>
|
35 |
<span class="mec-event-ticket-price"><?php echo (isset($ticket['price_label']) ? $book->get_ticket_price_label($ticket, current_time('Y-m-d')) : ''); ?></span>
|
36 |
-
<?php if(isset($ticket['description']) and trim($ticket['description'])): ?><p class="mec-event-ticket-description"><?php echo $ticket['description']; ?></p><?php endif; ?>
|
37 |
<div>
|
38 |
<input type="number" class="mec-book-ticket-limit" name="book[tickets][<?php echo $ticket_id; ?>]" placeholder="<?php esc_attr_e('Count', 'modern-events-calendar-lite'); ?>" value="<?php echo $default_ticket_number; ?>" min="0" max="<?php echo ($ticket_limit != '-1' ? $ticket_limit : ''); ?>" onchange="mec_check_tickets_availability<?php echo $uniqueid; ?>(<?php echo $ticket_id; ?>, this.value);" />
|
39 |
</div>
|
15 |
$availability = $book->get_tickets_availability($event_id, $occurrence);
|
16 |
|
17 |
$date_format = (isset($settings['booking_date_format1']) and trim($settings['booking_date_format1'])) ? $settings['booking_date_format1'] : 'Y-m-d';
|
18 |
+
$midnight_event = $this->is_midnight_event($event);
|
19 |
?>
|
20 |
<form id="mec_book_form<?php echo $uniqueid; ?>" onsubmit="mec_book_form_submit(event, <?php echo $uniqueid; ?>);">
|
21 |
<h4><?php _e('Book Event', 'modern-events-calendar-lite'); ?></h4>
|
23 |
<label for="mec_book_form_date"><?php _e('Date', 'modern-events-calendar-lite'); ?>: </label>
|
24 |
<select name="book[date]" id="mec_book_form_date" onchange="mec_get_tickets_availability<?php echo $uniqueid; ?>(<?php echo $event_id; ?>, this.value);">
|
25 |
<?php foreach($dates as $date): ?>
|
26 |
+
<option value="<?php echo $date['start']['date'].':'.$date['end']['date']; ?>">
|
27 |
+
<?php echo strip_tags($this->date_label($date['start'], $date['end'], $date_format)); ?>
|
28 |
+
</option>
|
29 |
<?php endforeach; ?>
|
30 |
</select>
|
31 |
</div>
|
34 |
<?php foreach($tickets as $ticket_id=>$ticket): $stop_selling = isset($availability['stop_selling_'.$ticket_id]) ? $availability['stop_selling_'.$ticket_id] : false; $ticket_limit = isset($availability[$ticket_id]) ? $availability[$ticket_id] : -1; if($ticket_limit === '0' and count($dates) <= 1) continue; ?>
|
35 |
<div class="mec-event-ticket mec-event-ticket<?php echo $ticket_limit; ?>" id="mec_event_ticket<?php echo $ticket_id; ?>">
|
36 |
<div class="mec-ticket-available-spots <?php echo ($ticket_limit == '0' ? 'mec-util-hidden' : ''); ?>">
|
37 |
+
<span class="mec-event-ticket-name"><?php echo (isset($ticket['name']) ? __($ticket['name'], 'modern-events-calendar-lite') : ''); ?></span>
|
38 |
<span class="mec-event-ticket-price"><?php echo (isset($ticket['price_label']) ? $book->get_ticket_price_label($ticket, current_time('Y-m-d')) : ''); ?></span>
|
39 |
+
<?php if(isset($ticket['description']) and trim($ticket['description'])): ?><p class="mec-event-ticket-description"><?php echo __($ticket['description'], 'modern-events-calendar-lite'); ?></p><?php endif; ?>
|
40 |
<div>
|
41 |
<input type="number" class="mec-book-ticket-limit" name="book[tickets][<?php echo $ticket_id; ?>]" placeholder="<?php esc_attr_e('Count', 'modern-events-calendar-lite'); ?>" value="<?php echo $default_ticket_number; ?>" min="0" max="<?php echo ($ticket_limit != '-1' ? $ticket_limit : ''); ?>" onchange="mec_check_tickets_availability<?php echo $uniqueid; ?>(<?php echo $ticket_id; ?>, this.value);" />
|
42 |
</div>
|
@@ -48,7 +48,7 @@ if(!$this->is_ajax()) $this->load_map_assets();
|
|
48 |
// Get Direction Status
|
49 |
$get_direction = (isset($settings['google_maps_get_direction_status']) and in_array($settings['google_maps_get_direction_status'], array(0,1,2))) ? $settings['google_maps_get_direction_status'] : 0;
|
50 |
|
51 |
-
$additional_location_ids = get_post_meta(
|
52 |
$event_locations = array_keys($event->data->locations);
|
53 |
|
54 |
$map_data = new stdClass;
|
@@ -65,7 +65,7 @@ $map_data->geolocation = '0';
|
|
65 |
$map_data->sf_status = null;
|
66 |
|
67 |
$current_event = [$map_data->events[$event->ID]];
|
68 |
-
$events = apply_filters(
|
69 |
$map_data->events = $events;
|
70 |
|
71 |
// Initialize MEC Google Maps jQuery plugin
|
@@ -105,11 +105,10 @@ function mec_init_gmap'.$uniqueid.'()
|
|
105 |
p'.$uniqueid.'.init();
|
106 |
}
|
107 |
</script>';
|
108 |
-
|
109 |
$javascript = apply_filters( 'mec_map_load_script',$javascript, $map_data,$settings );
|
110 |
|
|
|
111 |
|
112 |
-
if ( !function_exists('is_plugin_active')) include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
|
113 |
// Include javascript code into the footer
|
114 |
if($this->is_ajax()) echo $javascript;
|
115 |
elseif (is_plugin_active( 'mec-single-builder/mec-single-builder.php')) echo $javascript;
|
48 |
// Get Direction Status
|
49 |
$get_direction = (isset($settings['google_maps_get_direction_status']) and in_array($settings['google_maps_get_direction_status'], array(0,1,2))) ? $settings['google_maps_get_direction_status'] : 0;
|
50 |
|
51 |
+
$additional_location_ids = get_post_meta($event->ID, 'mec_additional_location_ids', true);
|
52 |
$event_locations = array_keys($event->data->locations);
|
53 |
|
54 |
$map_data = new stdClass;
|
65 |
$map_data->sf_status = null;
|
66 |
|
67 |
$current_event = [$map_data->events[$event->ID]];
|
68 |
+
$events = apply_filters('mec_location_load_additional', $current_event, $additional_location_ids, $event_locations);
|
69 |
$map_data->events = $events;
|
70 |
|
71 |
// Initialize MEC Google Maps jQuery plugin
|
105 |
p'.$uniqueid.'.init();
|
106 |
}
|
107 |
</script>';
|
|
|
108 |
$javascript = apply_filters( 'mec_map_load_script',$javascript, $map_data,$settings );
|
109 |
|
110 |
+
if(!function_exists('is_plugin_active')) include_once(ABSPATH . 'wp-admin/includes/plugin.php');
|
111 |
|
|
|
112 |
// Include javascript code into the footer
|
113 |
if($this->is_ajax()) echo $javascript;
|
114 |
elseif (is_plugin_active( 'mec-single-builder/mec-single-builder.php')) echo $javascript;
|
@@ -80,7 +80,7 @@ $settings = $this->main->get_settings();
|
|
80 |
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
81 |
},
|
82 |
"performer": <?php echo $speakers; ?>,
|
83 |
-
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
|
84 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
85 |
"name" : "<?php esc_html_e($event->data->title); ?>",
|
86 |
"url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
|
80 |
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
81 |
},
|
82 |
"performer": <?php echo $speakers; ?>,
|
83 |
+
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', preg_replace('/\s/u', ' ', $event->data->post->post_content))); ?>",
|
84 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
85 |
"name" : "<?php esc_html_e($event->data->title); ?>",
|
86 |
"url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
|
@@ -139,7 +139,7 @@ do_action('mec_available_spot_skin_head');
|
|
139 |
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
140 |
},
|
141 |
"performer": <?php echo $speakers; ?>,
|
142 |
-
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
|
143 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
144 |
"name" : "<?php esc_html_e($event->data->title); ?>",
|
145 |
"url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
|
139 |
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
140 |
},
|
141 |
"performer": <?php echo $speakers; ?>,
|
142 |
+
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', preg_replace('/\s/u', ' ', $event->data->post->post_content))); ?>",
|
143 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
144 |
"name" : "<?php esc_html_e($event->data->title); ?>",
|
145 |
"url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
|
@@ -88,7 +88,7 @@ $settings = $this->main->get_settings();
|
|
88 |
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
89 |
},
|
90 |
"performer": <?php echo $speakers; ?>,
|
91 |
-
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
|
92 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
93 |
"name" : "<?php esc_html_e($event->data->title); ?>",
|
94 |
"url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
|
88 |
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
89 |
},
|
90 |
"performer": <?php echo $speakers; ?>,
|
91 |
+
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', preg_replace('/\s/u', ' ', $event->data->post->post_content))); ?>",
|
92 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
93 |
"name" : "<?php esc_html_e($event->data->title); ?>",
|
94 |
"url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
|
@@ -131,7 +131,7 @@ do_action('mec_countdown_skin_head');
|
|
131 |
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
132 |
},
|
133 |
"performer": <?php echo $speakers; ?>,
|
134 |
-
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
|
135 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
136 |
"name" : "<?php esc_html_e($event->data->title); ?>",
|
137 |
"url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
|
131 |
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
132 |
},
|
133 |
"performer": <?php echo $speakers; ?>,
|
134 |
+
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', preg_replace('/\s/u', ' ', $event->data->post->post_content))); ?>",
|
135 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
136 |
"name" : "<?php esc_html_e($event->data->title); ?>",
|
137 |
"url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
|
@@ -75,7 +75,7 @@ do_action('mec_cover_skin_head');
|
|
75 |
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
76 |
},
|
77 |
"performer": <?php echo $speakers; ?>,
|
78 |
-
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
|
79 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
80 |
"name" : "<?php esc_html_e($event->data->title); ?>",
|
81 |
"url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
|
75 |
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
76 |
},
|
77 |
"performer": <?php echo $speakers; ?>,
|
78 |
+
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', preg_replace('/\s/u', ' ', $event->data->post->post_content))); ?>",
|
79 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
80 |
"name" : "<?php esc_html_e($event->data->title); ?>",
|
81 |
"url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
|
@@ -66,7 +66,7 @@ $settings = $this->main->get_settings();
|
|
66 |
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
67 |
},
|
68 |
"performer": <?php echo $speakers; ?>,
|
69 |
-
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
|
70 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
71 |
"name" : "<?php esc_html_e($event->data->title); ?>",
|
72 |
"url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
|
66 |
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
67 |
},
|
68 |
"performer": <?php echo $speakers; ?>,
|
69 |
+
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', preg_replace('/\s/u', ' ', $event->data->post->post_content))); ?>",
|
70 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
71 |
"name" : "<?php esc_html_e($event->data->title); ?>",
|
72 |
"url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
|
@@ -95,7 +95,7 @@ if($this->style == 'colorful')
|
|
95 |
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
96 |
},
|
97 |
"performer": <?php echo $speakers; ?>,
|
98 |
-
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
|
99 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
100 |
"name" : "<?php esc_html_e($event->data->title); ?>",
|
101 |
"url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
|
@@ -282,19 +282,21 @@ if($this->style == 'colorful')
|
|
282 |
</div>
|
283 |
|
284 |
<?php
|
285 |
-
if
|
286 |
if(isset($map_events) and !empty($map_events))
|
287 |
{
|
288 |
// Include Map Assets such as JS and CSS libraries
|
289 |
$this->main->load_map_assets();
|
290 |
|
291 |
$map_javascript = '<script type="text/javascript">
|
|
|
292 |
jQuery(document).ready(function()
|
293 |
{
|
294 |
var jsonPush = gmapSkin('.json_encode($this->render->markers($map_events)).');
|
295 |
-
jQuery("#mec_googlemap_canvas'.$this->id.'").mecGoogleMaps(
|
296 |
{
|
297 |
id: "'.$this->id.'",
|
|
|
298 |
atts: "'.http_build_query(array('atts'=>$this->atts), '', '&').'",
|
299 |
zoom: '.(isset($settings['google_maps_zoomlevel']) ? $settings['google_maps_zoomlevel'] : 14).',
|
300 |
icon: "'.apply_filters('mec_marker_icon', $this->main->asset('img/m-04.png')).'",
|
@@ -305,6 +307,15 @@ if(isset($map_events) and !empty($map_events))
|
|
305 |
ajax_url: "'.admin_url('admin-ajax.php', NULL).'",
|
306 |
geolocation: "'.$this->geolocation.'",
|
307 |
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
308 |
});
|
309 |
</script>';
|
310 |
|
95 |
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
96 |
},
|
97 |
"performer": <?php echo $speakers; ?>,
|
98 |
+
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', preg_replace('/\s/u', ' ', $event->data->post->post_content))); ?>",
|
99 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
100 |
"name" : "<?php esc_html_e($event->data->title); ?>",
|
101 |
"url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
|
282 |
</div>
|
283 |
|
284 |
<?php
|
285 |
+
if(isset($this->map_on_top) and $this->map_on_top):
|
286 |
if(isset($map_events) and !empty($map_events))
|
287 |
{
|
288 |
// Include Map Assets such as JS and CSS libraries
|
289 |
$this->main->load_map_assets();
|
290 |
|
291 |
$map_javascript = '<script type="text/javascript">
|
292 |
+
var mecmap'.$this->id.';
|
293 |
jQuery(document).ready(function()
|
294 |
{
|
295 |
var jsonPush = gmapSkin('.json_encode($this->render->markers($map_events)).');
|
296 |
+
mecmap'.$this->id.' = jQuery("#mec_googlemap_canvas'.$this->id.'").mecGoogleMaps(
|
297 |
{
|
298 |
id: "'.$this->id.'",
|
299 |
+
autoinit: false,
|
300 |
atts: "'.http_build_query(array('atts'=>$this->atts), '', '&').'",
|
301 |
zoom: '.(isset($settings['google_maps_zoomlevel']) ? $settings['google_maps_zoomlevel'] : 14).',
|
302 |
icon: "'.apply_filters('mec_marker_icon', $this->main->asset('img/m-04.png')).'",
|
307 |
ajax_url: "'.admin_url('admin-ajax.php', NULL).'",
|
308 |
geolocation: "'.$this->geolocation.'",
|
309 |
});
|
310 |
+
|
311 |
+
var mecinterval'.$this->id.' = setInterval(function()
|
312 |
+
{
|
313 |
+
if(jQuery("#mec_googlemap_canvas'.$this->id.'").is(":visible"))
|
314 |
+
{
|
315 |
+
mecmap'.$this->id.'.init();
|
316 |
+
clearInterval(mecinterval'.$this->id.');
|
317 |
+
};
|
318 |
+
}, 1000);
|
319 |
});
|
320 |
</script>';
|
321 |
|
@@ -79,7 +79,7 @@ $map_events = array();
|
|
79 |
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
80 |
},
|
81 |
"performer": <?php echo $speakers; ?>,
|
82 |
-
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
|
83 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
84 |
"name" : "<?php esc_html_e($event->data->title); ?>",
|
85 |
"url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
|
@@ -232,19 +232,21 @@ $map_events = array();
|
|
232 |
</div>
|
233 |
|
234 |
<?php
|
235 |
-
if
|
236 |
if(isset($map_events) and !empty($map_events))
|
237 |
{
|
238 |
// Include Map Assets such as JS and CSS libraries
|
239 |
$this->main->load_map_assets();
|
240 |
|
241 |
$map_javascript = '<script type="text/javascript">
|
|
|
242 |
jQuery(document).ready(function()
|
243 |
{
|
244 |
var jsonPush = gmapSkin('.json_encode($this->render->markers($map_events)).');
|
245 |
-
jQuery("#mec_googlemap_canvas'.$this->id.'").mecGoogleMaps(
|
246 |
{
|
247 |
id: "'.$this->id.'",
|
|
|
248 |
atts: "'.http_build_query(array('atts'=>$this->atts), '', '&').'",
|
249 |
zoom: '.(isset($settings['google_maps_zoomlevel']) ? $settings['google_maps_zoomlevel'] : 14).',
|
250 |
icon: "'.apply_filters('mec_marker_icon', $this->main->asset('img/m-04.png')).'",
|
@@ -255,10 +257,19 @@ if(isset($map_events) and !empty($map_events))
|
|
255 |
ajax_url: "'.admin_url('admin-ajax.php', NULL).'",
|
256 |
geolocation: "'.$this->geolocation.'",
|
257 |
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
258 |
});
|
259 |
</script>';
|
260 |
|
261 |
-
$map_javascript = apply_filters(
|
262 |
|
263 |
// Include javascript code into the page
|
264 |
if($this->main->is_ajax()) echo $map_javascript;
|
79 |
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
80 |
},
|
81 |
"performer": <?php echo $speakers; ?>,
|
82 |
+
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', preg_replace('/\s/u', ' ', $event->data->post->post_content))); ?>",
|
83 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
84 |
"name" : "<?php esc_html_e($event->data->title); ?>",
|
85 |
"url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
|
232 |
</div>
|
233 |
|
234 |
<?php
|
235 |
+
if(isset($this->map_on_top) and $this->map_on_top):
|
236 |
if(isset($map_events) and !empty($map_events))
|
237 |
{
|
238 |
// Include Map Assets such as JS and CSS libraries
|
239 |
$this->main->load_map_assets();
|
240 |
|
241 |
$map_javascript = '<script type="text/javascript">
|
242 |
+
var mecmap'.$this->id.';
|
243 |
jQuery(document).ready(function()
|
244 |
{
|
245 |
var jsonPush = gmapSkin('.json_encode($this->render->markers($map_events)).');
|
246 |
+
mecmap'.$this->id.' = jQuery("#mec_googlemap_canvas'.$this->id.'").mecGoogleMaps(
|
247 |
{
|
248 |
id: "'.$this->id.'",
|
249 |
+
autoinit: false,
|
250 |
atts: "'.http_build_query(array('atts'=>$this->atts), '', '&').'",
|
251 |
zoom: '.(isset($settings['google_maps_zoomlevel']) ? $settings['google_maps_zoomlevel'] : 14).',
|
252 |
icon: "'.apply_filters('mec_marker_icon', $this->main->asset('img/m-04.png')).'",
|
257 |
ajax_url: "'.admin_url('admin-ajax.php', NULL).'",
|
258 |
geolocation: "'.$this->geolocation.'",
|
259 |
});
|
260 |
+
|
261 |
+
var mecinterval'.$this->id.' = setInterval(function()
|
262 |
+
{
|
263 |
+
if(jQuery("#mec_googlemap_canvas'.$this->id.'").is(":visible"))
|
264 |
+
{
|
265 |
+
mecmap'.$this->id.'.init();
|
266 |
+
clearInterval(mecinterval'.$this->id.');
|
267 |
+
};
|
268 |
+
}, 1000);
|
269 |
});
|
270 |
</script>';
|
271 |
|
272 |
+
$map_javascript = apply_filters('mec_map_load_script', $map_javascript, $this,$settings);
|
273 |
|
274 |
// Include javascript code into the page
|
275 |
if($this->main->is_ajax()) echo $map_javascript;
|
@@ -46,7 +46,8 @@ jQuery(document).ready(function()
|
|
46 |
// Include javascript code into the page
|
47 |
if($this->main->is_ajax()) echo $javascript;
|
48 |
else $this->factory->params('footer', $javascript);
|
49 |
-
|
|
|
50 |
do_action('mec_list_skin_head');
|
51 |
?>
|
52 |
<div class="mec-wrap mec-skin-list-container <?php echo $this->html_class; ?>" id="mec_skin_<?php echo $this->id; ?>">
|
@@ -54,7 +55,7 @@ do_action('mec_list_skin_head');
|
|
54 |
<?php if($this->sf_status) echo $this->sf_search_form(); ?>
|
55 |
|
56 |
<?php if($this->found): ?>
|
57 |
-
<?php if
|
58 |
<div class="mec-wrap mec-skin-map-container <?php echo $this->html_class; ?>" id="mec_skin_<?php echo $this->id; ?>">
|
59 |
<div class="mec-googlemap-skin" id="mec_googlemap_canvas<?php echo $this->id; ?>" style="height: 500px;"></div>
|
60 |
<input type="hidden" id="gmap-data" value="">
|
46 |
// Include javascript code into the page
|
47 |
if($this->main->is_ajax()) echo $javascript;
|
48 |
else $this->factory->params('footer', $javascript);
|
49 |
+
|
50 |
+
do_action('mec_start_skin', $this->id);
|
51 |
do_action('mec_list_skin_head');
|
52 |
?>
|
53 |
<div class="mec-wrap mec-skin-list-container <?php echo $this->html_class; ?>" id="mec_skin_<?php echo $this->id; ?>">
|
55 |
<?php if($this->sf_status) echo $this->sf_search_form(); ?>
|
56 |
|
57 |
<?php if($this->found): ?>
|
58 |
+
<?php if($this->map_on_top == '1'): ?>
|
59 |
<div class="mec-wrap mec-skin-map-container <?php echo $this->html_class; ?>" id="mec_skin_<?php echo $this->id; ?>">
|
60 |
<div class="mec-googlemap-skin" id="mec_googlemap_canvas<?php echo $this->id; ?>" style="height: 500px;"></div>
|
61 |
<input type="hidden" id="gmap-data" value="">
|
@@ -43,13 +43,13 @@ if(count($this->events))
|
|
43 |
});
|
44 |
</script>';
|
45 |
|
46 |
-
$javascript = apply_filters(
|
47 |
|
48 |
// Include javascript code into the page
|
49 |
if($this->main->is_ajax()) echo $javascript;
|
50 |
else $this->factory->params('footer', $javascript);
|
51 |
}
|
52 |
-
do_action('mec_start_skin'
|
53 |
do_action('mec_map_skin_head');
|
54 |
?>
|
55 |
<?php if($settings['view_mode'] == 'normal') : ?>
|
43 |
});
|
44 |
</script>';
|
45 |
|
46 |
+
$javascript = apply_filters('mec_map_load_script', $javascript, $this,$settings);
|
47 |
|
48 |
// Include javascript code into the page
|
49 |
if($this->main->is_ajax()) echo $javascript;
|
50 |
else $this->factory->params('footer', $javascript);
|
51 |
}
|
52 |
+
do_action('mec_start_skin', $this->id);
|
53 |
do_action('mec_map_skin_head');
|
54 |
?>
|
55 |
<?php if($settings['view_mode'] == 'normal') : ?>
|
@@ -69,7 +69,7 @@ $settings = $this->main->get_settings();
|
|
69 |
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
70 |
},
|
71 |
"performer": <?php echo $speakers; ?>,
|
72 |
-
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
|
73 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
74 |
"name" : "<?php esc_html_e($event->data->title); ?>",
|
75 |
"url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
|
69 |
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
70 |
},
|
71 |
"performer": <?php echo $speakers; ?>,
|
72 |
+
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', preg_replace('/\s/u', ' ', $event->data->post->post_content))); ?>",
|
73 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
74 |
"name" : "<?php esc_html_e($event->data->title); ?>",
|
75 |
"url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
|
@@ -133,7 +133,7 @@ elseif($week_start == 5) // Friday
|
|
133 |
"priceCurrency" : "' . $currency_schema .'"
|
134 |
},
|
135 |
"performer": '. $speakers . ',
|
136 |
-
"description" : "' . esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)) . '",
|
137 |
"image" : "'. $image . '",
|
138 |
"name" : "' .esc_html($event->data->title) . '",
|
139 |
"url" : "'. $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']) . '"
|
133 |
"priceCurrency" : "' . $currency_schema .'"
|
134 |
},
|
135 |
"performer": '. $speakers . ',
|
136 |
+
"description" : "' . esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', preg_replace('/\s/u', ' ', $event->data->post->post_content))) . '",
|
137 |
"image" : "'. $image . '",
|
138 |
"name" : "' .esc_html($event->data->title) . '",
|
139 |
"url" : "'. $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']) . '"
|
@@ -139,7 +139,7 @@ elseif($week_start == 5) // Friday
|
|
139 |
"priceCurrency" : "' . $currency_schema .'"
|
140 |
},
|
141 |
"performer": '. $speakers . ',
|
142 |
-
"description" : "' . esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)) . '",
|
143 |
"image" : "'. $image . '",
|
144 |
"name" : "' .esc_html($event->data->title) . '",
|
145 |
"url" : "'. $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']) . '"
|
139 |
"priceCurrency" : "' . $currency_schema .'"
|
140 |
},
|
141 |
"performer": '. $speakers . ',
|
142 |
+
"description" : "' . esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', preg_replace('/\s/u', ' ', $event->data->post->post_content))) . '",
|
143 |
"image" : "'. $image . '",
|
144 |
"name" : "' .esc_html($event->data->title) . '",
|
145 |
"url" : "'. $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']) . '"
|
@@ -123,7 +123,7 @@ elseif($week_start == 5) // Friday
|
|
123 |
"priceCurrency" : "' . $currency_schema .'"
|
124 |
},
|
125 |
"performer": '. $speakers . ',
|
126 |
-
"description" : "' . esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)) . '",
|
127 |
"image" : "'. $image . '",
|
128 |
"name" : "' .esc_html($event->data->title) . '",
|
129 |
"url" : "'. $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']) . '"
|
123 |
"priceCurrency" : "' . $currency_schema .'"
|
124 |
},
|
125 |
"performer": '. $speakers . ',
|
126 |
+
"description" : "' . esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', preg_replace('/\s/u', ' ', $event->data->post->post_content))) . '",
|
127 |
"image" : "'. $image . '",
|
128 |
"name" : "' .esc_html($event->data->title) . '",
|
129 |
"url" : "'. $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']) . '"
|
@@ -127,7 +127,7 @@ elseif($week_start == 5) // Friday
|
|
127 |
"priceCurrency" : "' . $currency_schema .'"
|
128 |
},
|
129 |
"performer": '. $speakers . ',
|
130 |
-
"description" : "' . esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)) . '",
|
131 |
"image" : "'. $image . '",
|
132 |
"name" : "' .esc_html($event->data->title) . '",
|
133 |
"url" : "'. $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']) . '"
|
127 |
"priceCurrency" : "' . $currency_schema .'"
|
128 |
},
|
129 |
"performer": '. $speakers . ',
|
130 |
+
"description" : "' . esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', preg_replace('/\s/u', ' ', $event->data->post->post_content))) . '",
|
131 |
"image" : "'. $image . '",
|
132 |
"name" : "' .esc_html($event->data->title) . '",
|
133 |
"url" : "'. $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']) . '"
|
@@ -176,11 +176,15 @@ class MEC_skin_single extends MEC_skins
|
|
176 |
</a>
|
177 |
</figure>
|
178 |
<div class="mec-related-event-content">
|
179 |
-
<span
|
180 |
-
|
|
|
|
|
|
|
181 |
echo $date;
|
182 |
-
|
183 |
-
|
|
|
184 |
</div>
|
185 |
|
186 |
</article>
|
176 |
</a>
|
177 |
</figure>
|
178 |
<div class="mec-related-event-content">
|
179 |
+
<span>
|
180 |
+
<?php
|
181 |
+
$mec_start_date = get_post_meta(get_the_ID(), 'mec_start_date', true);
|
182 |
+
$date = date(get_option('date_format'), strtotime($mec_start_date));
|
183 |
+
$link = get_the_permalink();
|
184 |
echo $date;
|
185 |
+
?>
|
186 |
+
</span>
|
187 |
+
<h5><a class="mec-color-hover" href="<?php echo $this->main->get_event_date_permalink($link, $mec_start_date); ?>"><?php echo get_the_title(); ?></a></h5>
|
188 |
</div>
|
189 |
|
190 |
</article>
|
@@ -559,7 +559,7 @@ if($schema_settings == '1' ):
|
|
559 |
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
560 |
},
|
561 |
"performer": <?php echo $speakers; ?>,
|
562 |
-
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', get_the_content())); ?>",
|
563 |
"image" : "<?php echo esc_html($event->data->featured_image['full']); ?>",
|
564 |
"name" : "<?php esc_html_e(get_the_title()); ?>",
|
565 |
"url" : "<?php the_permalink(); ?>"
|
559 |
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
560 |
},
|
561 |
"performer": <?php echo $speakers; ?>,
|
562 |
+
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', preg_replace('/\s/u', ' ', get_the_content()))); ?>",
|
563 |
"image" : "<?php echo esc_html($event->data->featured_image['full']); ?>",
|
564 |
"name" : "<?php esc_html_e(get_the_title()); ?>",
|
565 |
"url" : "<?php the_permalink(); ?>"
|
@@ -333,7 +333,7 @@ if($schema_settings == '1' ):
|
|
333 |
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
334 |
},
|
335 |
"performer": <?php echo $speakers; ?>,
|
336 |
-
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', get_the_content())); ?>",
|
337 |
"image" : "<?php echo esc_html($event->data->featured_image['full']); ?>",
|
338 |
"name" : "<?php esc_html_e(get_the_title()); ?>",
|
339 |
"url" : "<?php the_permalink(); ?>"
|
333 |
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
334 |
},
|
335 |
"performer": <?php echo $speakers; ?>,
|
336 |
+
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', preg_replace('/\s/u', ' ', get_the_content()))); ?>",
|
337 |
"image" : "<?php echo esc_html($event->data->featured_image['full']); ?>",
|
338 |
"name" : "<?php esc_html_e(get_the_title()); ?>",
|
339 |
"url" : "<?php the_permalink(); ?>"
|
@@ -88,7 +88,7 @@ $settings = $this->main->get_settings();
|
|
88 |
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
89 |
},
|
90 |
"performer": <?php echo $speakers; ?>,
|
91 |
-
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
|
92 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
93 |
"name" : "<?php esc_html_e($event->data->title); ?>",
|
94 |
"url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
|
@@ -138,7 +138,7 @@ $settings = $this->main->get_settings();
|
|
138 |
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
139 |
},
|
140 |
"performer": <?php echo $speakers; ?>,
|
141 |
-
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
|
142 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
143 |
"name" : "<?php esc_html_e($event->data->title); ?>",
|
144 |
"url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
|
@@ -187,7 +187,7 @@ $settings = $this->main->get_settings();
|
|
187 |
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
188 |
},
|
189 |
"performer": <?php echo $speakers; ?>,
|
190 |
-
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
|
191 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
192 |
"name" : "<?php esc_html_e($event->data->title); ?>",
|
193 |
"url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
|
@@ -235,7 +235,7 @@ $settings = $this->main->get_settings();
|
|
235 |
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
236 |
},
|
237 |
"performer": <?php echo $speakers; ?>,
|
238 |
-
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
|
239 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
240 |
"name" : "<?php esc_html_e($event->data->title); ?>",
|
241 |
"url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
|
@@ -284,7 +284,7 @@ $settings = $this->main->get_settings();
|
|
284 |
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
285 |
},
|
286 |
"performer": <?php echo $speakers; ?>,
|
287 |
-
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
|
288 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
289 |
"name" : "<?php esc_html_e($event->data->title); ?>",
|
290 |
"url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
|
88 |
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
89 |
},
|
90 |
"performer": <?php echo $speakers; ?>,
|
91 |
+
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', preg_replace('/\s/u', ' ', $event->data->post->post_content))); ?>",
|
92 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
93 |
"name" : "<?php esc_html_e($event->data->title); ?>",
|
94 |
"url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
|
138 |
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
139 |
},
|
140 |
"performer": <?php echo $speakers; ?>,
|
141 |
+
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', preg_replace('/\s/u', ' ', $event->data->post->post_content))); ?>",
|
142 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
143 |
"name" : "<?php esc_html_e($event->data->title); ?>",
|
144 |
"url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
|
187 |
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
188 |
},
|
189 |
"performer": <?php echo $speakers; ?>,
|
190 |
+
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', preg_replace('/\s/u', ' ', $event->data->post->post_content))); ?>",
|
191 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
192 |
"name" : "<?php esc_html_e($event->data->title); ?>",
|
193 |
"url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
|
235 |
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
236 |
},
|
237 |
"performer": <?php echo $speakers; ?>,
|
238 |
+
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', preg_replace('/\s/u', ' ', $event->data->post->post_content))); ?>",
|
239 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
240 |
"name" : "<?php esc_html_e($event->data->title); ?>",
|
241 |
"url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
|
284 |
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
285 |
},
|
286 |
"performer": <?php echo $speakers; ?>,
|
287 |
+
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', preg_replace('/\s/u', ' ', $event->data->post->post_content))); ?>",
|
288 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
289 |
"name" : "<?php esc_html_e($event->data->title); ?>",
|
290 |
"url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
|
@@ -78,7 +78,7 @@ $map_events = array();
|
|
78 |
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
79 |
},
|
80 |
"performer": <?php echo $speakers; ?>,
|
81 |
-
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
|
82 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
83 |
"name" : "<?php esc_html_e($event->data->title); ?>",
|
84 |
"url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
|
78 |
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
79 |
},
|
80 |
"performer": <?php echo $speakers; ?>,
|
81 |
+
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', preg_replace('/\s/u', ' ', $event->data->post->post_content))); ?>",
|
82 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
83 |
"name" : "<?php esc_html_e($event->data->title); ?>",
|
84 |
"url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
|
@@ -85,7 +85,7 @@ $event_colorskin = (isset($styling['mec_colorskin']) || isset($styling['color'])
|
|
85 |
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
86 |
},
|
87 |
"performer": <?php echo $speakers; ?>,
|
88 |
-
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
|
89 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
90 |
"name" : "<?php esc_html_e($event->data->title); ?>",
|
91 |
"url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
|
85 |
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
86 |
},
|
87 |
"performer": <?php echo $speakers; ?>,
|
88 |
+
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', preg_replace('/\s/u', ' ', $event->data->post->post_content))); ?>",
|
89 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
90 |
"name" : "<?php esc_html_e($event->data->title); ?>",
|
91 |
"url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
|
@@ -76,7 +76,7 @@ $settings = $this->main->get_settings();
|
|
76 |
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
77 |
},
|
78 |
"performer": <?php echo $speakers; ?>,
|
79 |
-
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
|
80 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
81 |
"name" : "<?php esc_html_e($event->data->title); ?>",
|
82 |
"url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
|
76 |
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
77 |
},
|
78 |
"performer": <?php echo $speakers; ?>,
|
79 |
+
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', preg_replace('/\s/u', ' ', $event->data->post->post_content))); ?>",
|
80 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
81 |
"name" : "<?php esc_html_e($event->data->title); ?>",
|
82 |
"url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
|
@@ -74,7 +74,7 @@ $settings = $this->main->get_settings();
|
|
74 |
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
75 |
},
|
76 |
"performer": <?php echo $speakers; ?>,
|
77 |
-
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
|
78 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
79 |
"name" : "<?php esc_html_e($event->data->title); ?>",
|
80 |
"url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
|
74 |
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
75 |
},
|
76 |
"performer": <?php echo $speakers; ?>,
|
77 |
+
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', preg_replace('/\s/u', ' ', $event->data->post->post_content))); ?>",
|
78 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
79 |
"name" : "<?php esc_html_e($event->data->title); ?>",
|
80 |
"url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
|
@@ -89,7 +89,7 @@ $settings = $this->main->get_settings();
|
|
89 |
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
90 |
},
|
91 |
"performer": <?php echo $speakers; ?>,
|
92 |
-
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
|
93 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
94 |
"name" : "<?php esc_html_e($event->data->title); ?>",
|
95 |
"url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
|
89 |
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
90 |
},
|
91 |
"performer": <?php echo $speakers; ?>,
|
92 |
+
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', preg_replace('/\s/u', ' ', $event->data->post->post_content))); ?>",
|
93 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
94 |
"name" : "<?php esc_html_e($event->data->title); ?>",
|
95 |
"url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
|
@@ -7780,4 +7780,54 @@ div#mec_popup_shortcode_form {
|
|
7780 |
|
7781 |
.mec-skin-styles.mec-styles-full_calendar h3 {
|
7782 |
padding-left: 12px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7783 |
}
|
7780 |
|
7781 |
.mec-skin-styles.mec-styles-full_calendar h3 {
|
7782 |
padding-left: 12px;
|
7783 |
+
}
|
7784 |
+
|
7785 |
+
/* Go Pro page */
|
7786 |
+
.mec-go-pro-content-title {
|
7787 |
+
font-size: 20px;
|
7788 |
+
font-weight: 600;
|
7789 |
+
margin-bottom: 12px;
|
7790 |
+
}
|
7791 |
+
|
7792 |
+
.mec-go-pro-features-wrap p {
|
7793 |
+
font-size: 14px;
|
7794 |
+
}
|
7795 |
+
|
7796 |
+
.mec-go-pro-features-wrap .mec-addons-notification-box-content {
|
7797 |
+
width: calc(100% - 590px);
|
7798 |
+
display: inline-block;
|
7799 |
+
padding-left: 20px;
|
7800 |
+
}
|
7801 |
+
|
7802 |
+
.mec-go-pro-features-wrap ul {
|
7803 |
+
float: left;
|
7804 |
+
width: 50%;
|
7805 |
+
margin: 0 0 12px;
|
7806 |
+
}
|
7807 |
+
|
7808 |
+
.mec-go-pro-features-wrap ul li {
|
7809 |
+
margin-bottom: 1px;
|
7810 |
+
font-size: 13px;
|
7811 |
+
color: #717479;
|
7812 |
+
padding-left: 18px;
|
7813 |
+
position: relative;
|
7814 |
+
}
|
7815 |
+
|
7816 |
+
.mec-go-pro-features-wrap ul li:before {
|
7817 |
+
position: absolute;
|
7818 |
+
left: -1px;
|
7819 |
+
top: 6px;
|
7820 |
+
color: #36da74;
|
7821 |
+
font-size: 13px;
|
7822 |
+
font-weight: 700;
|
7823 |
+
vertical-align: middle;
|
7824 |
+
font-family: simple-line-icons;
|
7825 |
+
border-radius: 50%;
|
7826 |
+
padding: 0;
|
7827 |
+
width: 13px;
|
7828 |
+
height: 13px;
|
7829 |
+
line-height: 13px;
|
7830 |
+
z-index: 3;
|
7831 |
+
background: rgba(64, 241, 147, .12);
|
7832 |
+
content: "\e080";
|
7833 |
}
|
@@ -2,4 +2,4 @@
|
|
2 |
* Bootstrap v3.3.7 (http://getbootstrap.com)
|
3 |
* Copyright 2011-2016 Twitter, Inc.
|
4 |
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
5 |
-
*/#webnus-dashboard button,#webnus-dashboard input,#webnus-dashboard select,#webnus-dashboard textarea{font-family:inherit;font-size:inherit;line-height:inherit}#webnus-dashboard a{color:#337ab7;text-decoration:none}#webnus-dashboard a:focus,#webnus-dashboard a:hover{color:#23527c}#webnus-dashboard a:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}#webnus-dashboard figure{margin:0}#webnus-dashboard img{vertical-align:middle}.w-img-responsive{display:block;max-width:100%;height:auto}.w-img-rounded{border-radius:6px}.w-img-thumbnail{padding:4px;line-height:1w-42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all 0w-2s ease-in-out;-o-transition:all 0w-2s ease-in-out;transition:all 0w-2s ease-in-out;display:inline-block;max-width:100%;height:auto}.w-img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.w-sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.w-sr-only-focusable:active,.w-sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.w-container,.w-container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}[role=button]{cursor:pointer}@media (min-width:768px){.w-container{width:750px}}@media (min-width:992px){.w-container{width:970px}}@media (min-width:1200px){.w-container{width:1170px}}.w-row{margin-left:-15px;margin-right:-15px}.w-col-lg-1,.w-col-lg-10,.w-col-lg-11,.w-col-lg-12,.w-col-lg-2,.w-col-lg-3,.w-col-lg-4,.w-col-lg-5,.w-col-lg-6,.w-col-lg-7,.w-col-lg-8,.w-col-lg-9,.w-col-md-1,.w-col-md-10,.w-col-md-11,.w-col-md-12,.w-col-md-2,.w-col-md-3,.w-col-md-4,.w-col-md-5,.w-col-md-6,.w-col-md-7,.w-col-md-8,.w-col-md-9,.w-col-sm-1,.w-col-sm-10,.w-col-sm-11,.w-col-sm-12,.w-col-sm-2,.w-col-sm-3,.w-col-sm-4,.w-col-sm-5,.w-col-sm-6,.w-col-sm-7,.w-col-sm-8,.w-col-sm-9,.w-col-xs-1,.w-col-xs-10,.w-col-xs-11,.w-col-xs-12,.w-col-xs-2,.w-col-xs-3,.w-col-xs-4,.w-col-xs-5,.w-col-xs-6,.w-col-xs-7,.w-col-xs-8,.w-col-xs-9{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.w-col-xs-1,.w-col-xs-10,.w-col-xs-11,.w-col-xs-12,.w-col-xs-2,.w-col-xs-3,.w-col-xs-4,.w-col-xs-5,.w-col-xs-6,.w-col-xs-7,.w-col-xs-8,.w-col-xs-9{float:left}.w-col-xs-12{width:100%}.w-col-xs-11{width:91.66666667%}.w-col-xs-10{width:83.33333333%}.w-col-xs-9{width:75%}.w-col-xs-8{width:66.66666667%}.w-col-xs-7{width:58.33333333%}.w-col-xs-6{width:50%}.w-col-xs-5{width:41.66666667%}.w-col-xs-4{width:33.33333333%}.w-col-xs-3{width:25%}.w-col-xs-2{width:16.66666667%}.w-col-xs-1{width:8w-33333333%}.w-col-xs-pull-12{right:100%}.w-col-xs-pull-11{right:91.66666667%}.w-col-xs-pull-10{right:83.33333333%}.w-col-xs-pull-9{right:75%}.w-col-xs-pull-8{right:66.66666667%}.w-col-xs-pull-7{right:58.33333333%}.w-col-xs-pull-6{right:50%}.w-col-xs-pull-5{right:41.66666667%}.w-col-xs-pull-4{right:33.33333333%}.w-col-xs-pull-3{right:25%}.w-col-xs-pull-2{right:16.66666667%}.w-col-xs-pull-1{right:8w-33333333%}.w-col-xs-pull-0{right:auto}.w-col-xs-push-12{left:100%}.w-col-xs-push-11{left:91.66666667%}.w-col-xs-push-10{left:83.33333333%}.w-col-xs-push-9{left:75%}.w-col-xs-push-8{left:66.66666667%}.w-col-xs-push-7{left:58.33333333%}.w-col-xs-push-6{left:50%}.w-col-xs-push-5{left:41.66666667%}.w-col-xs-push-4{left:33.33333333%}.w-col-xs-push-3{left:25%}.w-col-xs-push-2{left:16.66666667%}.w-col-xs-push-1{left:8w-33333333%}.w-col-xs-push-0{left:auto}.w-col-xs-offset-12{margin-left:100%}.w-col-xs-offset-11{margin-left:91.66666667%}.w-col-xs-offset-10{margin-left:83.33333333%}.w-col-xs-offset-9{margin-left:75%}.w-col-xs-offset-8{margin-left:66.66666667%}.w-col-xs-offset-7{margin-left:58.33333333%}.w-col-xs-offset-6{margin-left:50%}.w-col-xs-offset-5{margin-left:41.66666667%}.w-col-xs-offset-4{margin-left:33.33333333%}.w-col-xs-offset-3{margin-left:25%}.w-col-xs-offset-2{margin-left:16.66666667%}.w-col-xs-offset-1{margin-left:8w-33333333%}.w-col-xs-offset-0{margin-left:0}@media (min-width:768px){.w-col-sm-1,.w-col-sm-10,.w-col-sm-11,.w-col-sm-12,.w-col-sm-2,.w-col-sm-3,.w-col-sm-4,.w-col-sm-5,.w-col-sm-6,.w-col-sm-7,.w-col-sm-8,.w-col-sm-9{float:left}.w-col-sm-12{width:100%}.w-col-sm-11{width:91.66666667%}.w-col-sm-10{width:83.33333333%}.w-col-sm-9{width:75%}.w-col-sm-8{width:66.66666667%}.w-col-sm-7{width:58.33333333%}.w-col-sm-6{width:50%}.w-col-sm-5{width:41.66666667%}.w-col-sm-4{width:33.33333333%}.w-col-sm-3{width:25%}.w-col-sm-2{width:16.66666667%}.w-col-sm-1{width:8w-33333333%}.w-col-sm-pull-12{right:100%}.w-col-sm-pull-11{right:91.66666667%}.w-col-sm-pull-10{right:83.33333333%}.w-col-sm-pull-9{right:75%}.w-col-sm-pull-8{right:66.66666667%}.w-col-sm-pull-7{right:58.33333333%}.w-col-sm-pull-6{right:50%}.w-col-sm-pull-5{right:41.66666667%}.w-col-sm-pull-4{right:33.33333333%}.w-col-sm-pull-3{right:25%}.w-col-sm-pull-2{right:16.66666667%}.w-col-sm-pull-1{right:8w-33333333%}.w-col-sm-pull-0{right:auto}.w-col-sm-push-12{left:100%}.w-col-sm-push-11{left:91.66666667%}.w-col-sm-push-10{left:83.33333333%}.w-col-sm-push-9{left:75%}.w-col-sm-push-8{left:66.66666667%}.w-col-sm-push-7{left:58.33333333%}.w-col-sm-push-6{left:50%}.w-col-sm-push-5{left:41.66666667%}.w-col-sm-push-4{left:33.33333333%}.w-col-sm-push-3{left:25%}.w-col-sm-push-2{left:16.66666667%}.w-col-sm-push-1{left:8w-33333333%}.w-col-sm-push-0{left:auto}.w-col-sm-offset-12{margin-left:100%}.w-col-sm-offset-11{margin-left:91.66666667%}.w-col-sm-offset-10{margin-left:83.33333333%}.w-col-sm-offset-9{margin-left:75%}.w-col-sm-offset-8{margin-left:66.66666667%}.w-col-sm-offset-7{margin-left:58.33333333%}.w-col-sm-offset-6{margin-left:50%}.w-col-sm-offset-5{margin-left:41.66666667%}.w-col-sm-offset-4{margin-left:33.33333333%}.w-col-sm-offset-3{margin-left:25%}.w-col-sm-offset-2{margin-left:16.66666667%}.w-col-sm-offset-1{margin-left:8w-33333333%}.w-col-sm-offset-0{margin-left:0}}@media (min-width:992px){.w-col-md-1,.w-col-md-10,.w-col-md-11,.w-col-md-12,.w-col-md-2,.w-col-md-3,.w-col-md-4,.w-col-md-5,.w-col-md-6,.w-col-md-7,.w-col-md-8,.w-col-md-9{float:left}.w-col-md-12{width:100%}.w-col-md-11{width:91.66666667%}.w-col-md-10{width:83.33333333%}.w-col-md-9{width:75%}.w-col-md-8{width:66.66666667%}.w-col-md-7{width:58.33333333%}.w-col-md-6{width:50%}.w-col-md-5{width:41.66666667%}.w-col-md-4{width:33.33333333%}.w-col-md-3{width:25%}.w-col-md-2{width:16.66666667%}.w-col-md-1{width:8w-33333333%}.w-col-md-pull-12{right:100%}.w-col-md-pull-11{right:91.66666667%}.w-col-md-pull-10{right:83.33333333%}.w-col-md-pull-9{right:75%}.w-col-md-pull-8{right:66.66666667%}.w-col-md-pull-7{right:58.33333333%}.w-col-md-pull-6{right:50%}.w-col-md-pull-5{right:41.66666667%}.w-col-md-pull-4{right:33.33333333%}.w-col-md-pull-3{right:25%}.w-col-md-pull-2{right:16.66666667%}.w-col-md-pull-1{right:8w-33333333%}.w-col-md-pull-0{right:auto}.w-col-md-push-12{left:100%}.w-col-md-push-11{left:91.66666667%}.w-col-md-push-10{left:83.33333333%}.w-col-md-push-9{left:75%}.w-col-md-push-8{left:66.66666667%}.w-col-md-push-7{left:58.33333333%}.w-col-md-push-6{left:50%}.w-col-md-push-5{left:41.66666667%}.w-col-md-push-4{left:33.33333333%}.w-col-md-push-3{left:25%}.w-col-md-push-2{left:16.66666667%}.w-col-md-push-1{left:8w-33333333%}.w-col-md-push-0{left:auto}.w-col-md-offset-12{margin-left:100%}.w-col-md-offset-11{margin-left:91.66666667%}.w-col-md-offset-10{margin-left:83.33333333%}.w-col-md-offset-9{margin-left:75%}.w-col-md-offset-8{margin-left:66.66666667%}.w-col-md-offset-7{margin-left:58.33333333%}.w-col-md-offset-6{margin-left:50%}.w-col-md-offset-5{margin-left:41.66666667%}.w-col-md-offset-4{margin-left:33.33333333%}.w-col-md-offset-3{margin-left:25%}.w-col-md-offset-2{margin-left:16.66666667%}.w-col-md-offset-1{margin-left:8w-33333333%}.w-col-md-offset-0{margin-left:0}}@media (min-width:1200px){.w-col-lg-1,.w-col-lg-10,.w-col-lg-11,.w-col-lg-12,.w-col-lg-2,.w-col-lg-3,.w-col-lg-4,.w-col-lg-5,.w-col-lg-6,.w-col-lg-7,.w-col-lg-8,.w-col-lg-9{float:left}.w-col-lg-12{width:100%}.w-col-lg-11{width:91.66666667%}.w-col-lg-10{width:83.33333333%}.w-col-lg-9{width:75%}.w-col-lg-8{width:66.66666667%}.w-col-lg-7{width:58.33333333%}.w-col-lg-6{width:50%}.w-col-lg-5{width:41.66666667%}.w-col-lg-4{width:33.33333333%}.w-col-lg-3{width:25%}.w-col-lg-2{width:16.66666667%}.w-col-lg-1{width:8w-33333333%}.w-col-lg-pull-12{right:100%}.w-col-lg-pull-11{right:91.66666667%}.w-col-lg-pull-10{right:83.33333333%}.w-col-lg-pull-9{right:75%}.w-col-lg-pull-8{right:66.66666667%}.w-col-lg-pull-7{right:58.33333333%}.w-col-lg-pull-6{right:50%}.w-col-lg-pull-5{right:41.66666667%}.w-col-lg-pull-4{right:33.33333333%}.w-col-lg-pull-3{right:25%}.w-col-lg-pull-2{right:16.66666667%}.w-col-lg-pull-1{right:8w-33333333%}.w-col-lg-pull-0{right:auto}.w-col-lg-push-12{left:100%}.w-col-lg-push-11{left:91.66666667%}.w-col-lg-push-10{left:83.33333333%}.w-col-lg-push-9{left:75%}.w-col-lg-push-8{left:66.66666667%}.w-col-lg-push-7{left:58.33333333%}.w-col-lg-push-6{left:50%}.w-col-lg-push-5{left:41.66666667%}.w-col-lg-push-4{left:33.33333333%}.w-col-lg-push-3{left:25%}.w-col-lg-push-2{left:16.66666667%}.w-col-lg-push-1{left:8w-33333333%}.w-col-lg-push-0{left:auto}.w-col-lg-offset-12{margin-left:100%}.w-col-lg-offset-11{margin-left:91.66666667%}.w-col-lg-offset-10{margin-left:83.33333333%}.w-col-lg-offset-9{margin-left:75%}.w-col-lg-offset-8{margin-left:66.66666667%}.w-col-lg-offset-7{margin-left:58.33333333%}.w-col-lg-offset-6{margin-left:50%}.w-col-lg-offset-5{margin-left:41.66666667%}.w-col-lg-offset-4{margin-left:33.33333333%}.w-col-lg-offset-3{margin-left:25%}.w-col-lg-offset-2{margin-left:16.66666667%}.w-col-lg-offset-1{margin-left:8w-33333333%}.w-col-lg-offset-0{margin-left:0}}.w-clearfix:after,.w-clearfix:before,.w-container-fluid:after,.w-container-fluid:before,.w-container:after,.w-container:before,.w-row:after,.w-row:before{content:" ";display:table}.w-clearfix:after,.w-container-fluid:after,.w-container:after,.w-row:after{clear:both}.w-center-block{display:block;margin-left:auto;margin-right:auto}.w-pull-right{float:right!important}.w-pull-left{float:left!important}.w-hide{display:none!important}.w-show{display:block!important}.w-invisible{visibility:hidden}.w-text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.w-hidden{display:none!important}.w-affix{position:fixed}.mec-image-popup-wrap{display:none}#wns-be-infobar.sticky{position:fixed;top:32px;background:#fff;z-index:9999;width:82%}.wns-be-main .wns-saved-settings.sticky{position:fixed;width:62.5%;top:111px;z-index:999999999999999999}.mec-export-settings,.mec-import-settings{font-weight:700;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:8px 32px;height:36px;letter-spacing:.2px;line-height:36px;font-size:13px;color:#fff;text-decoration:none;display:inline-block}.mec-export-settings:hover,.mec-import-settings:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5);color:#fff}textarea.mec-import-settings-content{display:block;width:100%;min-height:120px;margin-bottom:25px;padding:10px 15px}.mec-import-options-notification{display:inline-block}.mec-import-options-notification .mec-message-import-error,.mec-import-options-notification .mec-message-import-success{display:inline-block;padding:15px 12px;margin-left:12px;opacity:0;visibility:hidden;font-weight:700}.mec-import-options-notification .mec-message-import-success{opacity:1;visibility:visible;border:2px solid green}.mec-import-options-notification .mec-message-import-error{opacity:1;visibility:visible;border:2px solid #e62117}.mec-export-settings:focus,.mec-import-settings:focus{color:#fff}.mec-import-settings-wrap{position:relative}.mec-loarder-wrap{position:absolute;top:0;bottom:0;left:0;right:0;background:rgba(202,202,202,.7);z-index:9999}.mec-loarder-wrap.mec-settings-loader{top:34px}.mec-loarder{position:absolute;width:64px;height:64px;top:calc(50% - 32px);left:calc(50% - 36px)}.mec-loarder div{display:inline-block;position:absolute;left:6px;width:4px;background:#fff;animation:mec-loarder 1.2s cubic-bezier(0,.5,.5,1) infinite}.mec-loarder div:nth-child(1){left:27px;animation-delay:-.24s;background:#0075ff}.mec-loarder div:nth-child(2){left:36px;animation-delay:-.12s;background:#028bff}.mec-loarder div:nth-child(3){left:45px;animation-delay:0;background:#32a0ff}@keyframes mec-loarder{0%{top:6px;height:51px}100%,50%{top:19px;height:26px}}.w-box.support-page.searchbox{background:#008aff;background:linear-gradient(180deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff;min-height:260px;text-align:center;border-radius:2px}#webnus-dashboard .search-form input{background:rgba(255,255,255,.2);border:none;width:50%;outline:0;color:rgba(255,255,255,.7);font-size:18px;border-radius:4px 0 0 4px;box-shadow:0 1px 2px 0 rgba(0,0,0,.03);-webkit-transition:background .4s,box-shadow .2s;transition:background .4s,box-shadow .2s;padding:20px 32px;margin:0}#webnus-dashboard .search-form button{background:rgba(255,255,255,.2);border:none;padding:20px 32px;margin-left:-2px;color:#fff;border-radius:0 4px 4px 0;font-size:18px;cursor:pointer;-webkit-transition:background .4s,box-shadow .2s;transition:background .4s,box-shadow .2s}#webnus-dashboard .search-form button:hover{background:#fff;color:#3a3c4c}.w-box.support-page.searchbox p{font-size:30px}.search-form input::-webkit-input-placeholder{color:rgba(255,255,255,.7)}.search-form input::-moz-placeholder{color:rgba(255,255,255,.7)}.search-form input:-ms-input-placeholder{color:rgba(255,255,255,.7)}.search-form input:-moz-placeholder{color:rgba(255,255,255,.7)}#webnus-dashboard .search-form input:active,#webnus-dashboard .search-form input:focus{box-shadow:0 10px 20px rgba(0,0,0,.14);background:#fff;color:#3a3c4c}#webnus-dashboard .search-form input:active::-webkit-input-placeholder,#webnus-dashboard .search-form input:focus::-webkit-input-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active::-moz-placeholder,#webnus-dashboard .search-form input:focus::-moz-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active:-ms-input-placeholder,#webnus-dashboard .search-form input:focus:-ms-input-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active:-moz-placeholder,#webnus-dashboard .search-form input:focus:-moz-placeholder{color:#3a3c4c}#webnus-dashboard .w-box.support-page.mec-ticksy{text-align:center;min-height:260px}#webnus-dashboard .w-box.support-page.mec-ticksy p{font-size:20px;width:70%;margin:0 auto;margin-bottom:40px;margin-top:40px}#webnus-dashboard .support-box a,#webnus-dashboard .w-box.support-page.mec-ticksy a{color:#fff;font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:12px 20px;cursor:pointer;margin-bottom:40px;display:inline-block}#webnus-dashboard .support-box a:hover,#webnus-dashboard .w-box.support-page.mec-ticksy a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5)}#webnus-dashboard .support-box a{margin:40px 4px 0 4px}.mec-faq-accordion>.mec-faq-accordion-content{display:none}#webnus-dashboard .mec-faq-accordion-trigger a{font-size:16px;padding:12px;background:#f1f1f1;display:block;color:#222;line-height:17px;outline:0}.mec-faq-accordion-trigger{margin-bottom:5px;position:relative}#webnus-dashboard .mec-faq-accordion-trigger a:after{font-family:simple-line-icons;content:"\e095";position:absolute;right:12px;font-weight:700}.mec-faq-accordion-content{padding:5px 14px 25px}#webnus-dashboard .mec-faq-accordion-trigger a.active:after{content:"\e082"}#webnus-dashboard .support-page-links a{background-color:#fff;color:#fff;border-radius:2px;padding:13px 24px;font-size:12px;letter-spacing:1px;font-weight:600;text-transform:uppercase}#webnus-dashboard .support-page-links a:hover,#webnus-dashboard .w-box.support-page.videobox .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}#webnus-dashboard .support-page-links{display:inline-block;margin:12px 4px 16px 0}.support-page-links.link-to-doc a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.support-page-links.link-to-videos a{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);box-shadow:0 5px 10px -5px #ff876c}.support-page-links.link-to-articles a{background:#b092e6;background:linear-gradient(95deg,#b092e6 0,#9b70e8 50%,#8e5cea 100%);box-shadow:0 5px 10px -5px #b092e6}.w-box.support-page.articles-box .w-box-content a{display:block;padding:6px 0}#webnus-dashboard .w-box.support-page.videobox .w-button a{color:#fff;font-size:10px;padding:5px 15px;min-height:10px;font-weight:500;border-radius:22px;box-shadow:0 3px 10px -4px #ff5a35;text-shadow:none;background:#ff5a35;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);border:none;transition:.24s}.w-box.support-page.articles-box,.w-box.support-page.faq-box{min-height:500px}.w-box.support-page.videobox{border-radius:2px;min-height:282px;box-shadow:0 1px 6px rgba(0,0,0,.039)!important}#webnus-dashboard .w-box.support-page.videobox .w-button a i{margin-right:6px}.support-page .w-box-content ul{margin-top:5px;padding-left:5px}.support-page .w-box-content ul li{font-size:13px}.support-page .w-box-content ul li i{font-size:17px;vertical-align:text-bottom;margin-right:7px;color:#999}.w-box.mec-activation{background:#fff url(../img/dp-dsb-support.jpg) no-repeat top right}.w-box.mec-activation .w-box-head{color:#40d8f0;width:75%}.w-box.mec-activation .w-box-content{padding:10px 30px}.w-box.mec-activation input[type=radio]{display:none}.w-box.mec-activation input[type=radio]+label{color:#000;font-size:13px;line-height:14px!important;color:#7b7b7b}.w-box.mec-activation input[type=radio].checked+label{color:#40d8f0}.w-box.mec-activation input[type=radio]+label span{display:inline-block;margin:-2px 6px 0 0;vertical-align:middle;cursor:pointer;height:14px;width:14px;text-align:center;background-color:#fff;border:1px solid #d4d4d4;border-radius:100%;box-shadow:0 2px 16px -2px rgba(0,0,0,.2);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;position:relative}.w-box.mec-activation input[type=radio].checked+label span{background-color:#40d8f0;border-color:#40d8f0;box-shadow:0 2px 14px -3px #40d8f0}.w-box.mec-activation input[type=radio].checked+label span:after{content:'';display:block;position:absolute;top:4px;left:4px;width:4px;height:4px;background:#fff;border-radius:100%}.w-box.mec-activation .LicenseType label{padding-right:20px;font-weight:500}.w-box.mec-activation .LicenseField{display:inline-block;position:relative;margin-top:20px}.w-box.mec-activation input[name=MECPurchaseCode]{box-shadow:inset 0 1px 2px rgba(0,0,0,.07);min-width:220px;background:#f4f4f4;border:none;border-radius:33px;width:500px;min-height:50px;margin:0;padding-left:20px;text-align:left}#webnus-dashboard .w-box.mec-activation input[type=submit]{height:40px;line-height:40px;font-weight:600;border:none;cursor:pointer;padding:0 30px;border-radius:33px;color:#fff;letter-spacing:1px;text-transform:uppercase;font-size:12px;background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67;transition:all .28s ease;position:absolute;right:5px;top:4px;font-size:12px}#webnus-dashboard .w-box.mec-activation input[type=submit]:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5)}#MECActivation .MECPurchaseStatus,.addon-activation-form .MECPurchaseStatus{display:inline-block;width:40px;height:40px;text-align:center;padding-top:9px;color:#fff;font-weight:700;font-size:18px;border-radius:50%;padding-top:8px;position:absolute;right:-51px;top:calc(50% - 20px)}.MECPurchaseStatus:after,.MECPurchaseStatus:before{position:absolute;border-radius:50px;background:#fff;content:'';transform:rotate(45deg)}.MECPurchaseStatus.PurchaseError:before{width:22px;height:4px;right:9px;top:18px;transform:rotate(45deg)}.MECPurchaseStatus.PurchaseError:after{width:22px;height:4px;right:9px;top:18px;transform:rotate(-45deg)}.MECPurchaseStatus.PurchaseSuccess:before{width:13px;height:4px;right:19px;top:21px;transform:rotate(45deg)}.MECPurchaseStatus.PurchaseSuccess:after{width:22px;height:4px;right:5px;top:18px;transform:rotate(-45deg)}#MECActivation .MECPurchaseStatus.PurchaseError,.addon-activation-form .MECPurchaseStatus.PurchaseError{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);box-shadow:0 5px 10px -5px #ff876c}#MECActivation .MECPurchaseStatus.PurchaseSuccess,.addon-activation-form .MECPurchaseStatus.PurchaseSuccess{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.wna-spinner-wrap{position:absolute;background:#000;width:509px;height:64px;top:-8px;border-radius:50px;z-index:999;background-color:#fff;opacity:.9}.wna-spinner{width:40px;height:40px;position:relative;margin:6px auto}.wna-spinner .double-bounce1,.wna-spinner .double-bounce2{width:100%;height:100%;border-radius:50%;background-color:#40d8f0;opacity:.6;position:absolute;top:0;left:0;-webkit-animation:sk-bounce 2s infinite ease-in-out;animation:sk-bounce 2s infinite ease-in-out}.wna-spinner .double-bounce2{-webkit-animation-delay:-1s;animation-delay:-1s}#MECActivation .MECLicenseMessage,.addon-activation-form .MECLicenseMessage{margin-top:24px;color:#f64;max-width:570px}.box-addon-activation-toggle-content,.box-addon-activation-toggle-head{display:none}.addon-activation-form h3{font-size:15px;font-weight:400;margin:34px 0 -7px}.box-addon-activation-toggle-head{line-height:1.5;font-size:16px;margin-top:20px;cursor:pointer}.box-addon-activation-toggle-head i{margin-right:7px;cursor:pointer;font-weight:700}#mec-advanced-wraper div:first-child>ul{display:block;margin:5px 0;padding:5px 0;width:390px;border:1px solid #e1e2e3;border-radius:2px;box-shadow:0 1px 3px rgba(0,0,0,.05)}#mec-advanced-wraper div:first-child>ul span{display:none}#mec-advanced-wraper div:first-child>ul *{display:inline-block;background:#fff;font-size:12px;color:#717273;text-align:center}#mec-advanced-wraper div:first-child>ul>li{width:60px;font-weight:700;margin:0 10px 0 0;padding:4px 0;border-right:1px solid #e1e2e3}#mec-advanced-wraper div:first-child>ul>ul>li{margin:0;padding:2px 10px;cursor:pointer;border-radius:2px;transition:all .18s ease}#mec-advanced-wraper div:first-child>ul>ul>li:hover,.mec-active{background:#008aff!important;color:#fff!important}@-webkit-keyframes sk-bounce{0%,100%{-webkit-transform:scale(0)}50%{-webkit-transform:scale(1)}}@keyframes sk-bounce{0%,100%{transform:scale(0);-webkit-transform:scale(0)}50%{transform:scale(1);-webkit-transform:scale(1)}}.w-col-sm-3 .w-box.addon{min-height:auto;box-shadow:0 3px 16px -5px rgba(0,0,0,.1);border-radius:2px}.w-box-child.mec-addon-box{padding:20px 20px}.mec-addon-box-head{border-bottom:1px solid #e8e8e8;padding-bottom:5px;margin-bottom:14px;position:relative}.mec-addon-box-version{position:relative;background:#eaeaea;border-radius:1px;padding:0 8px;color:#5a5a5a;font-size:11px;letter-spacing:.2px;line-height:21px;display:inline-block;margin:10px 0}.mec-addon-box-head img{display:block;width:60px;height:60px;margin-bottom:10px}.mec-addon-box-title{font-weight:600;font-size:17px;line-height:25px}.mec-addon-box-title a span{color:#444;font-size:15px}.mec-addon-box-content p{color:#777;font-size:13px;letter-spacing:.1px}.mec-addon-box-mec-version{background:#f3f3f3;padding:10px;font-size:13px}#webnus-dashboard .addons-page-links{display:inline-block;margin:12px 4px 16px 0}#webnus-dashboard .addons-page-links a{background-color:#fff;color:#fff;border-radius:2px;padding:13px 24px;font-size:12px;letter-spacing:1px;font-weight:600;text-transform:uppercase}.addons-page-links.link-to-purchase a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.addons-page-links.link-to-install-addons a{background:#b092e6;background:linear-gradient(95deg,#b092e6 0,#9b70e8 50%,#8e5cea 100%);box-shadow:0 5px 10px -5px #b092e6}#webnus-dashboard .addons-page-links a:hover,#webnus-dashboard .w-box.addons-page.videobox .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}.mec-addon-box-footer{margin-top:25px;text-align:center}#webnus-dashboard .mec-addon-box-footer a{background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);margin-top:10px;display:inline-block;text-shadow:none;border:none;transition:.24s;position:relative;margin-right:7px;font-size:12px;font-weight:500;border-radius:7px;padding:9px 18px 8px;width:53px;height:34px;line-height:21px;box-shadow:0 2px 8px -3px #008aff}#webnus-dashboard .mec-addon-box-footer a:last-of-type{margin-right:0}#webnus-dashboard .mec-addon-box-footer a.mec-addon-box-intro{box-shadow:0 3px 10px -4px #ff3535;background:linear-gradient(95deg,#ff6c6c 0,#f55 50%,#ff3535 100%)}#webnus-dashboard .mec-addon-box-footer a:hover{background:#222!important;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%)!important;box-shadow:0 5px 23px -7px rgba(0,0,0,.5)!important;cursor:pointer!important}#webnus-dashboard .mec-addon-box-footer a i{color:#fff;font-size:16px}@media(max-width:1366px){.wns-be-container #wns-be-content{padding:5px 15px 0}.mec-form-row .mec-col-8 label{font-size:10px}#webnus-dashboard .mec-tooltip .box p,.mec-tooltip .box p{font-size:10px}}@media (max-width:780px){.wns-be-container #wns-be-content{padding:10px 0}.wns-be-container .mec-form-row .mec-col-8 label{width:50%;display:block}.wns-be-container .mec-form-row input[type=checkbox]{width:14px;height:14px}.wns-be-container .wns-be-sidebar li .subsection a{padding-left:30px}.wns-be-container .wns-be-sidebar{width:200px}.wns-be-container .wns-be-main{margin-left:200px}.wns-be-container .mec-tooltip .box{min-width:235px!important}.wns-be-container .mec-tooltip .box p{font-size:12px!important}#wns-be-infobar.sticky{position:unset}}@media (max-width:480px){.wns-be-container .wns-be-sidebar{width:100%;position:unset;float:none}.wns-be-container .wns-be-main{margin-left:0;width:100%;position:unset}.wns-be-container{margin-top:50px}.wns-be-container #wns-be-infobar:before{width:100%}.wns-be-container #wns-be-infobar{height:150px}#mec-search-settings{margin-top:80px;width:181px}}#mec_tickets .mec-box{position:relative;padding:25px 10px}#mec_fees_list input[type=text].mec-col-12,#mec_ticket_variations_list input[type=text].mec-col-12{max-width:625px}#taxes_option .mec-form-row input[type=text].mec-col-12,#ticket_variations_option input[type=text].mec-col-12{max-width:554px}.mec-booking-tab-content .mec-form-row textarea{max-width:762px}#mec_tickets .button.remove{padding:0;min-height:28px;height:28px;width:28px;margin:0;border-radius:50%;position:absolute;top:20px;right:20px;color:#ea6485;box-shadow:0 2px 6px -3px #ea6485;background:#fff;border-color:#ffd2dd;font-size:20px;line-height:1.5}#mec_tickets .button.remove svg{fill:#ea6485!important}#mec_tickets .button.remove:hover{color:#fff;border:2px solid #ea6485;background:#ea6485}#mec_tickets .button.remove:hover svg{fill:#fff!important}@media(max-width:480px){#mec_tickets .button.remove{top:5px;right:5px}}#mec_meta_box_hourly_schedule_days .mec-form-row input[type=text],#mec_meta_box_tickets_form .mec-form-row input[type=text]{max-width:400px}#mec_exceptions_not_in_days_date{width:100%}#mec_select_tags.mec-create-shortcode-tab-content input[type=text],#mec_settings_weather_module_api_key{width:262px}#mec_exceptions_not_in_days_date,#mec_meta_box_calendar_skin_options input[type=text].mec_date_picker,#mec_meta_box_date_form input[type=text]{max-width:262px}#mec_meta_box_calendar_skin_options input[type=text].mec_date_picker.mec-col-4{max-width:32.33333333%}#payment_gateways_option .mec-col-4 input[type=number],#payment_gateways_option .mec-col-4 input[type=text],#payment_gateways_option .mec-col-4 select,#payment_gateways_option .mec-col-4 textarea{width:75%}.mec-form-repeating-event-row .mec-col-6 input[type=text]{width:35%}.addons-page-error,.addons-page-notice{display:block;margin-top:15px;margin-bottom:0;background:#fff;border-left:4px solid #00a0d2;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);padding:1px 12px}.addons-page-error p,.addons-page-notice p{margin:.5em 0;padding:2px;font-size:13px}.addons-page-error{border-left-color:#dc3232}.mec-addon-box-comingsoon{background:#eaeaea;padding:8px 11px;color:#5a5a5a;font-size:14px;font-weight:500;text-align:center}.mec-addons .w-row .w-col-sm-3:nth-child(4n+1){clear:left}@media (min-width:960px){#webnus-dashboard .mec-addon-box-footer .w-button{text-align:right}}@media (min-width:1401px){.mec-addon-box-title a span{font-size:17px}}.mec-pro-notice{margin-top:24px;line-height:30px}.mec-pro-notice .info-msg{padding:50px 30px;margin-bottom:0}#webnus-dashboard .mec-pro-notice .info-msg{background:#fff;box-shadow:0 1px 16px rgba(0,0,0,.034);text-align:center;color:#000}#webnus-dashboard a.info-msg-link{background:#e66f52;background:linear-gradient(95deg,#ff8162 0,#e66f52 50%,#ff4c20 100%);box-shadow:0 5px 10px -5px #e66f52;border-radius:2px;padding:12px 50px;font-size:16px;line-height:24px;border:none;margin:20px auto 0;color:#fff;transition:all .3s ease;display:inline-block}#webnus-dashboard a.info-msg-link:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}#webnus-dashboard .info-msg p{width:70%;margin:0 auto;line-height:1.8}#webnus-dashboard .info-msg-coupon{font-size:13px;color:#777;max-width:600px;line-height:1.68;margin:25px auto 0}#webnus-dashboard .info-msg-coupon strong{font-weight:700;color:#19ce18}.info-msg .socialfollow{padding-top:20px}.info-msg .socialfollow a{margin:0 2px;display:inline-block}.info-msg .socialfollow a i{background:#96a4b1;color:#fff;padding:6px;border-radius:3px;font-size:18px;box-shadow:0 2px 3px rgba(0,0,0,.1);transition:all .25s}.info-msg .socialfollow a:hover i{background:#008aff}.mec-intro-section .w-box-content{text-align:center}.mec-intro-section .w-box-content.mec-intro-section-welcome{max-width:600px;margin:0 auto}.mec-intro-section .w-box-content.mec-intro-section-welcome h3{font-size:27px}a.mec-intro-section-link-tag.button.button-hero{margin:0 10px 40px}a.mec-intro-section-link-tag.button.button-primary.button-hero{color:#fff!important}a.mec-intro-section-link-tag.button.button-secondary.button-hero{color:#000!important}.mec-intro-section-ifarme iframe{border:1px solid #e7e7e7;border-radius:3px;padding:10px;box-shadow:0 3px 10px -6px rgba(0,0,0,.2)}.w-box-content.mec-intro-section-welcome p{margin-bottom:0}.mec-tooltip a:focus{box-shadow:none}#mec_booking_form .mec-options-fields,#mec_modules_form .mec-options-fields,#mec_settings_form .mec-options-fields,#mec_single_form .mec-options-fields{padding-bottom:150px!important}#mec_taxes_fees_container_toggle{margin-bottom:60px}#mec_taxes_fees_container_toggle{margin-bottom:60px}.wns-be-sidebar li{position:relative}.wns-be-sidebar li .submneu-hover{position:absolute;top:-1px;right:-222px;width:220px;z-index:9;background:#fff;border:1px;border-style:solid;border-color:#dedede;margin:0;overflow:visible;opacity:0;visibility:hidden;transition:all .23s ease;padding-top:8px;padding-bottom:12px}.wns-be-sidebar li:hover{background:#fff}.wns-be-sidebar li:hover .submneu-hover{opacity:1;visibility:visible}.wns-be-sidebar li .submneu-hover a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 26px}.wns-be-sidebar li .submneu-hover a:hover{background:#f6f6f6;color:#222}.wns-be-sidebar li .submneu-hover:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-15px;top:14px;border-right-color:#c5c5c5;right:0}.wns-be-sidebar li .submneu-hover:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-14px;top:14px}.wns-be-sidebar li a:focus,.wns-be-sidebar li:focus{outline:-webkit-focus-ring-color auto 0;border:0;box-shadow:none}@media (max-width:480px){.wns-be-sidebar li .submneu-hover{width:175px;right:0}.wns-be-sidebar li .submneu-hover a{font-size:11px;padding:5px 5px 5px 20px}}.mec-tooltip:hover:after,.mec-tooltip:hover:before{display:none}.mec-tooltip{display:inline-flex;bottom:7px}.mec-tooltip .box{min-width:300px;max-width:600px;display:inline-block;left:26px;top:50%;transform:translateY(-50%);padding:0;margin-top:8px;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.3;position:absolute;z-index:9999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s}#webnus-dashboard .mec-tooltip .box p,.mec-tooltip .box p{color:#fff;font-size:14px;line-height:1.3;margin:0;font-style:normal}.mec-tooltip:hover .box{visibility:visible;opacity:1}.mec-tooltip:hover .box{padding:20px;border-radius:8px}.mec-tooltip .box h5{color:#fff;font-size:17px;font-weight:600;margin:-30px -20px;padding:15px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #30353a;border-radius:6px 6px 0 0;z-index:9999}#webnus-dashboard .mec-tooltip .box p a,.mec-tooltip .box p a{color:#40d9f1;margin-top:10px;margin-left:0;font-weight:400;position:relative;text-decoration:none;display:block;width:max-content}.mec-tooltip .box a:hover{color:#f90}.mec-tooltip .box:after{display:block;position:absolute!important;top:100%!important;right:50%!important;margin-top:-6px!important;margin-right:-6px!important;width:12px!important;height:24px!important;overflow:hidden!important;transform:rotate(-90deg)!important}.mec-tooltip .box:before{display:block;content:''!important;position:absolute!important;width:12px;height:12px;left:-10px!important;top:50%!important;transform:translate(50%,-50%) rotate(-45deg)!important;background-color:#535a61!important;box-shadow:0 8px 9px -4px #535a61!important;z-index:0!important}.mec-tooltip .box.top{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-tooltip .box.top:after{top:50%!important;right:100%!important}.mec-tooltip .box.top:before{left:50%!important;top:100%!important}.mec-tooltip .box.bottom{left:50%;top:auto;bottom:0;transform:translate(-50%,100%);margin-bottom:-20px;margin-left:-10px}.mec-tooltip .box.bottom:after{top:0!important;right:50%!important;background-color:#3a3f44!important}.mec-tooltip .box.bottom:before{left:50%!important;top:-7px!important;transform:translateX(-50%);background-color:#3a3f44!important}.mec-tooltip .box.left{left:auto;right:26px;top:50%;transform:translateY(-50%)}.mec-tooltip .box.left:before{right:0!important;left:auto!important;top:50%!important}form#mec_reg_fields_form input[type=radio]:before{content:"";display:inline-block;background:#fff;border-radius:18px;width:14px;height:14px;margin:-1px 0 0 -2px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32)}form#mec_reg_fields_form input[type=radio]:checked:before{border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff;width:4px;height:4px}form#mec_reg_fields_form input[type=radio]{min-height:0;margin-right:6px}form#mec_reg_fields_form label{margin-right:20px}@media(min-width:1200px) and (max-width:1366px){.mec-tooltip .box.left{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-tooltip .box.left:after{top:50%!important;right:100%!important}.mec-tooltip .box.left:before{left:50%!important;top:100%!important}.mec-tooltip .box{min-width:225px}.mec-tooltip .box h5{font-size:15px}.mec-tooltip .box .content{font-size:12px}}@media(max-width:1366px){.wns-be-container .wns-be-group-tab p{margin-top:0}}.mec-addons-notification-box-wrap .w-col-sm-12,.mec-cmsg-notification-box-wrap .w-col-sm-12{padding:0}.mec-addons-notification-box-wrap img{width:auto}.mec-addons-notification-box-image{width:555px;display:inline-block;vertical-align:top}.mec-addons-notification-box-content{width:calc(100% - 559px);display:inline-block}.mec-addons-notification-box-content p{margin-top:1%;line-height:1.5;font-size:16px}.mec-addons-notification-box-content .w-box-content{padding-top:0;padding-bottom:0}.mec-addons-notification-box-content ol{font-size:16px}.mec-addons-notification-box-content a{background:#38d5ed;color:#fff!important;padding:10px 26px;margin-top:5px;display:inline-block;border-radius:3px;text-transform:capitalize;font-size:16px;letter-spacing:.4px;transition:all .1s ease;font-weight:600;text-decoration:none}.mec-addons-notification-box-content a:hover{background:#000}.w-clearfix.w-box.mec-addons-notification-box-wrap span,.w-clearfix.w-box.mec-cmsg-notification-box-wrap span{right:0;left:unset;cursor:pointer;background:#fff;padding:0 16px}.w-clearfix.w-box.mec-addons-notification-box-wrap span i,.w-clearfix.w-box.mec-cmsg-notification-box-wrap span i{font-size:28px;vertical-align:sub;color:#f2113e}.mec-custom-msg-notification-wrap,.wns-be-container .mec-addons-notification-wrap{padding:0;margin:0}.mec-custom-msg-notification-wrap .w-col-sm-12,.wns-be-container .mec-addons-notification-wrap .w-col-sm-12{padding:0}.wns-be-container .w-box{margin-top:0}.wns-be-container.mec-addons-notification-set-box{margin-right:15px;margin-top:50px;margin-bottom:27px}@media(max-width:1200px){.mec-addons-notification-box-content,.mec-addons-notification-box-image{width:100%;display:block}.mec-addons-notification-box-image{text-align:center}}@media(max-width:768px){.mec-addons-notification-box-image img{width:100%;height:auto}}body.rtl .wns-be-sidebar{width:260px;float:right;position:relative}body.rtl .wns-be-main{margin-left:0;border-left:0;margin-right:260px;border-right:1px solid #dedede}body.rtl .w-box.mec-activation .LicenseField{direction:rtl}body.rtl .w-box.mec-activation input[name=MECPurchaseCode]{text-align:right;padding-right:20px}body.rtl #MECActivation .MECPurchaseStatus,body.rtl .addon-activation-form .MECPurchaseStatus{right:auto;left:-51px}body.rtl #webnus-dashboard .w-box.mec-activation input[type=submit]{right:auto;left:5px}body.rtl .wns-be-sidebar .wns-be-group-menu li a{padding:13px 20px 13px 4px}body.rtl .wns-be-sidebar .wns-be-group-tab-link-a span.wns-be-group-menu-title{padding-left:0;padding-right:24px}body.rtl .wns-be-sidebar .has-sub span.extra-icon{float:left}body.rtl .wns-be-sidebar .wns-be-group-tab-link-a span.extra-icon i{right:auto;left:10px}body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:after,body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:transparent;border-left-color:#fff;right:auto;left:-1px;top:10px}body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{border-right-color:transparent;border-left-color:#c5c5c5;right:auto;left:0}body.rtl .mec-col-1,body.rtl .mec-col-10,body.rtl .mec-col-11,body.rtl .mec-col-12,body.rtl .mec-col-2,body.rtl .mec-col-3,body.rtl .mec-col-4,body.rtl .mec-col-5,body.rtl .mec-col-6,body.rtl .mec-col-7,body.rtl .mec-col-8,body.rtl .mec-col-9{float:right;margin:0 1% 0 0}body.rtl .wns-be-sidebar li .submneu-hover{right:auto;left:-222px}body.rtl .wns-be-sidebar li .submneu-hover:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:auto;right:-1px;top:14px}body.rtl #mec_styles_form #mec_styles_CSS{direction:ltr}body.rtl .w-box.mec-activation{-moz-transform:scaleY(-1);-o-transform:scaleY(-1);-webkit-transform:scaleY(-1);transform:scaleX(-1)}body.rtl .w-box.mec-activation .w-box-content,body.rtl .w-box.mec-activation .w-box-head{-moz-transform:scaleY(-1);-o-transform:scaleY(-1);-webkit-transform:scaleY(-1);transform:scaleX(-1);display:block}body.rtl .w-box.mec-activation .w-box-head{width:100%}body.rtl .wns-be-container #wns-be-infobar:before{left:auto;right:0}body.rtl .wns-be-container .dpr-btn.dpr-save-btn{float:left}body.rtl .wns-be-container .wns-be-group-tab h2:before,body.rtl .wns-be-container .wns-be-group-tab h4:before{left:auto;right:0;margin-right:0;margin-left:5px}body.rtl #mec_gateways_form .mec-tooltip{float:left}.mec-details-addons-container{margin-top:20px}.mec-details-addons-wrap img{float:left;width:19%;margin-right:17px}.mec-details-addons-wrap{clear:both;margin-bottom:80px;display:block;position:relative}.mec-details-addons-wrap a{text-decoration:none}.mec-details-addons-wrap p{float:left;width:340px;margin-top:0;margin-bottom:30px}.mec-details-addons-title{font-weight:700}.mec-details-addons-title a{color:#444}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx{border-radius:10px!important;box-shadow:0 4px 38px rgba(0,0,0,.14)!important}body .crisp-client .crisp-1rjpbb7 .crisp-13qutdl,body .crisp-client .crisp-1rjpbb7 .crisp-13qutdl *,body .crisp-client .crisp-1rjpbb7 .crisp-9dgo7z,body .crisp-client .crisp-1rjpbb7 .crisp-9dgo7z *{font-family:proxima-nova,-apple-system,BlinkMacSystemFont,"Segoe UI",Catamaran,sans-serif!important}body .crisp-client .crisp-1rjpbb7 .crisp-145mbcr,body .crisp-client .crisp-1rjpbb7 .crisp-1jrqqbm:hover{background-color:#fff!important}body .crisp-client .crisp-1rjpbb7 .crisp-14u434g{border-color:#e7e8e9!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-1bkorcf .crisp-1vzg1qq{font-size:20px!important;width:14px!important;height:19px!important;opacity:.85}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-1bkorcf .crisp-1vzg1qq:hover{opacity:.99}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-1sps3eb .crisp-1vd2grm .crisp-12w4w1a{font-size:13px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-1sps3eb .crisp-1vd2grm .crisp-12w4w1a::-webkit-input-placeholder{color:#717273!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=visitor] .crisp-z89v5n .crisp-162m9xf{background-color:#008aff!important;color:#fff!important;box-shadow:none!important;border-radius:5px!important;padding:15px 25px 15px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=visitor] .crisp-z89v5n .crisp-162m9xf .crisp-1o2g4mc{color:#fff!important;font-size:13px!important;letter-spacing:.3px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-z89v5n .crisp-162m9xf{background-color:#f1f2f3!important;border-radius:5px!important;padding:15px 25px 15px!important;box-shadow:none!important;color:#121314!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-type=audio] .crisp-z89v5n .crisp-162m9xf{background-color:#d1d7dc!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=operator] .crisp-z89v5n .crisp-1o2g4mc{color:#121314!important;-webkit-text-fill-color:#121314!important;font-size:13px!important;letter-spacing:.3px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-mkirz6 .crisp-12qaym5 .crisp-39hskb{opacity:.4;margin-right:5px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-mkirz6 .crisp-12qaym5 .crisp-ehr6mw{opacity:.68;font-size:12px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg{background-image:linear-gradient(125deg,#008aff -10%,#0066b1 100%)!important;height:110px!important;padding-top:35px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-1uw6f17,body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-85evuk,body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-nu40j6{font-size:17px!important;line-height:28px!important;padding-top:10px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-kquevr .crisp-x94m06{background-color:#008aff!important;background-image:linear-gradient(125deg,#008aff -10%,#008af0 100%)!important;box-shadow:0 5px 34px -6px #008aff!important}body .crisp-client .crisp-1rjpbb7 .crisp-4oo1n4{background-color:transparent!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx[data-chat-status=ongoing] .crisp-1784wh6 .crisp-1xmtdlg .crisp-172kolj{margin-top:-10px!important}body .crisp-client .crisp-1rjpbb7[data-last-operator-face=false] .crisp-1rf4xdh .crisp-kquevr .crisp-x94m06 .crisp-16qgsyi .crisp-101bp3x[data-is-ongoing=false]{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1OCIgaGVpZ2h0PSI1NSIgdmlld0JveD0iMCAwIDU4IDU1Ij4NCiAgPGcgaWQ9ImNoYXQtc3ZncmVwby1jb21fMV8iIGRhdGEtbmFtZT0iY2hhdC1zdmdyZXBvLWNvbSAoMSkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgLTEuNSkiPg0KICAgIDxwYXRoIGlkPSJQYXRoXzEiIGRhdGEtbmFtZT0iUGF0aCAxIiBkPSJNMjksMS41YzE2LjAxNiwwLDI5LDExLjY0MSwyOSwyNmEyNC4wMSwyNC4wMSwwLDAsMS00LjgsMTQuMzE4Yy40LDQuNzQ1LDEuNTQyLDExLjQyOCw0LjgsMTQuNjgyLDAsMC05Ljk0My0xLjQtMTYuNjc3LTUuNDYybC0uMDIyLjAwOWMtMi43NjQtMS44LTUuNTMyLTMuNjU2LTYuMS00LjEyNmExLDEsMCwwLDAtMS4zMy0uMjc3LDEuMDE3LDEuMDE3LDAsMCwwLS40ODkuODQ4Yy0uMDEuNjIyLjAwNS43ODQsNS41ODUsNC40MjFBMzEuOTE0LDMxLjkxNCwwLDAsMSwyOSw1My41Yy0xNi4wMTYsMC0yOS0xMS42NDEtMjktMjZTMTIuOTg0LDEuNSwyOSwxLjVaIiBmaWxsPSIjZmZmIi8+DQogICAgPGNpcmNsZSBpZD0iRWxsaXBzZV8xIiBkYXRhLW5hbWU9IkVsbGlwc2UgMSIgY3g9IjMiIGN5PSIzIiByPSIzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMiAyNC41KSIgZmlsbD0iIzAwOGFmZiIvPg0KICAgIDxjaXJjbGUgaWQ9IkVsbGlwc2VfMiIgZGF0YS1uYW1lPSJFbGxpcHNlIDIiIGN4PSIzIiBjeT0iMyIgcj0iMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjYgMjQuNSkiIGZpbGw9IiMwMDhhZmYiLz4NCiAgICA8Y2lyY2xlIGlkPSJFbGxpcHNlXzMiIGRhdGEtbmFtZT0iRWxsaXBzZSAzIiBjeD0iMyIgY3k9IjMiIHI9IjMiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQwIDI0LjUpIiBmaWxsPSIjMDA4YWZmIi8+DQogIDwvZz4NCjwvc3ZnPg0K)!important;height:31px!important;top:16px!important;left:14px!important}body .csh-category-item a h6{text-align:left}.mec-form-row.mec-syn-schedule{background:#f7f7f7;padding:20px;border:1px solid #eee;box-shadow:0 1px 11px rgba(0,0,0,.034);margin-bottom:20px}.mec-form-row.mec-syn-schedule p{padding-left:26px}.mec-form-row.mec-syn-schedule h2{margin-top:0}.mec-form-row.mec-syn-schedule h4{margin:10px 0}li.wns-be-group-menu-li.mec-settings-menu .mec-settings-submenu{position:absolute;top:-1px;right:-222px;width:220px;z-index:9;background:#fff;border:1px;border-style:solid;border-color:#dedede;margin:0;overflow:visible;opacity:0;visibility:hidden;transition:all .23s ease;padding-top:8px;padding-bottom:12px}li.wns-be-group-menu-li.mec-settings-menu:hover>.mec-settings-submenu{visibility:visible;opacity:1}.mec-settings-menu .mec-settings-submenu:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-15px;top:14px;border-right-color:#c5c5c5;right:0}.mec-settings-menu .mec-settings-submenu:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-14px;top:14px}.wns-be-sidebar .mec-settings-menu .mec-settings-submenu a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 26px}.mec-form-row.mec-skin-countdown-date-format-container input[type=text],.mec-form-row.mec-skin-grid-date-format-container input[type=text],.mec-form-row.mec-skin-list-date-format-container input[type=text],.mec-skin-options-container input[type=text]{max-width:unset}.wn-mec-select{width:32.33333333%!important;clear:unset!important}.wn-mec-select{-webkit-tap-highlight-color:transparent;background-color:#fff;border-radius:3px;border:1px solid #ddd;margin-bottom:8px;position:relative;text-align:left!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;box-shadow:0 3px 13px -5px rgba(0,0,0,.1),inset 0 1px 2px rgba(0,0,0,.07)}.wn-mec-select:hover{border-color:#dbdbdb}.wn-mec-select.open .list{overflow:unset;width:100%;margin:0}.wn-mec-select .list{background-color:#fff;border-radius:2px;box-shadow:0 2px 33px -2px rgba(0,0,0,.2),inset 0 1px 2px rgba(0,0,0,.07);box-sizing:border-box;margin-top:4px;opacity:0;overflow:hidden;padding:0;pointer-events:none;position:absolute;top:100%;left:0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0;-webkit-transform:scale(.75) translateY(-21px);-ms-transform:scale(.75) translateY(-21px);transform:scale(.75) translateY(-21px);-webkit-transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;z-index:9}.wn-mec-select{-webkit-tap-highlight-color:transparent;background-color:#fff;border-radius:5px;border:solid 1px #e8e8e8;box-sizing:border-box;clear:both;cursor:pointer;display:block;float:left;font-family:inherit;font-size:14px;font-weight:400;height:42px;line-height:40px;outline:0;padding-left:18px;padding-right:30px;position:relative;text-align:left!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap;width:auto}.wn-mec-select:hover{border-color:#dbdbdb}.wn-mec-select:after{border-bottom:2px solid #999;border-right:2px solid #999;content:'';display:block;height:5px;margin-top:-4px;pointer-events:none;position:absolute;right:12px;top:50%;-webkit-transform-origin:66% 66%;-ms-transform-origin:66% 66%;transform-origin:66% 66%;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:all .15s ease-in-out;transition:all .15s ease-in-out;width:5px}.wn-mec-select.open:after{-webkit-transform:rotate(-135deg);-ms-transform:rotate(-135deg);transform:rotate(-135deg)}.wn-mec-select.open .list{opacity:1;pointer-events:auto;-webkit-transform:scale(1) translateY(0);-ms-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}.wn-mec-select.disabled{border-color:#ededed;color:#999;pointer-events:none}.wn-mec-select.disabled:after{border-color:#ccc}.wn-mec-select.wide{width:100%}.wn-mec-select.wide .list{left:0!important;right:0!important}.wn-mec-select.right{float:right}.wn-mec-select.right .list{left:auto;right:0}.wn-mec-select.small{font-size:12px;height:36px;line-height:34px}.wn-mec-select.small:after{height:4px;width:4px}.wn-mec-select .list{background-color:#fff;border-radius:5px;box-shadow:0 0 0 1px rgba(68,68,68,.11);box-sizing:border-box;margin-top:4px;opacity:0;overflow:hidden;padding:0;pointer-events:none;position:absolute;top:100%;left:0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0;-webkit-transform:scale(.75) translateY(-21px);-ms-transform:scale(.75) translateY(-21px);transform:scale(.75) translateY(-21px);-webkit-transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;z-index:9}.wn-mec-select .list:hover .option:not(:hover){background-color:transparent!important}.wn-mec-select .option{cursor:pointer;font-weight:400;list-style:none;min-height:40px;outline:0;text-align:left;position:relative;font-size:12px!important;padding:1px 12px!important;margin:0!important;line-height:28px!important;min-height:28px!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.wn-mec-select .option .wn-hover-img-sh img{position:absolute;padding:3px;top:-1px;left:100%;box-shadow:0 4px 42px -5px rgba(0,0,0,.16);visibility:hidden;opacity:0;border:1px solid #e3e3e3;border-radius:2px;z-index:99999999;background:#fff}.wn-mec-select .option:hover .wn-hover-img-sh img{visibility:visible;opacity:1}.wn-mec-select .option.focus,.wn-mec-select .option.selected.focus,.wn-mec-select .option:hover{background-color:#f6f6f6}.wn-mec-select .option.selected{font-weight:700}.wn-mec-select .option.disabled{background-color:transparent;color:#999;cursor:default}.no-csspointerevents .wn-mec-select .list{display:none}.no-csspointerevents .wn-mec-select.open .list{display:block}.mec-custom-nice-select ul.list li.option{width:30%!important;float:left!important;min-height:135px!important;height:135px;margin:1.66%!important;box-sizing:border-box;text-align:center;padding:10px!important;border-radius:3px;border:1px solid #eee;box-shadow:0 1px 3px rgba(0,0,0,.025);background:#fff!important}.mec-custom-nice-select ul.list li.option:hover{box-shadow:0 2px 7px rgba(0,0,0,.06);borde-color:#e0e0e0}.mec-custom-nice-select .list:hover .option:not(:hover),.mec-custom-nice-select ul.list:hover li.option{background:#fff!important}.mec-custom-nice-select ul.list{min-width:600px!important;padding:20px 10px!important;background:#fcfbfd;border:1px solid #e9e9e9;box-shadow:0 1px 4px rgba(0,0,0,.05)}.mec-custom-nice-select ul.list li.option.selected{border:1px solid #40d9f1;box-shadow:0 1px 8px -3px #40d9f1 inset;color:#00cae6;padding:12px 0 0 0!important}.mec-custom-nice-select .wn-img-sh img{margin:4px 0 1px 1px;line-height:1;max-width:68px;max-height:56px;filter:grayscale(1);-webkit-filter:grayscale(1);transition:all .22s ease;-webkit-transition:all .22s ease;-moz-transition:all .22s ease;-ms-transition:all .22s ease;-o-transition:all .22s ease}.wn-mec-select .option.focus .wn-img-sh img,.wn-mec-select .option.selected.focus .wn-img-sh img,.wn-mec-select .option:hover .wn-img-sh img{background-color:#f6f6f6;filter:grayscale(0);-webkit-filter:grayscale(0)}@media(max-width:768px){.wn-mec-select{width:45%!important}.mec-custom-nice-select ul.list{margin-left:-24px!important;min-width:404px!important}.mec-custom-nice-select ul.list li.option{width:46.6%!important}.wn-hover-img-sh{display:none}}@media(max-width:480px){.wn-mec-select{width:100%!important}.mec-custom-nice-select ul.list{min-width:337px!important}}@media(max-width:320px){.mec-custom-nice-select ul.list li.option{width:100%!important}.mec-custom-nice-select ul.list{min-width:298px!important}}.mec-sed-methods li{line-height:28px;padding-left:38px;position:relative}.mec-sed-methods li:before{margin-right:0}.mec-sed-methods li:before{border-radius:18px}.mec-custom-nice-select ul.list li .wn-mec-text:after,.mec-sed-methods li:before{content:"";position:absolute;display:inline-block;background:#fff;border-radius:2px;width:12px;height:12px;margin:-1px 0 0 -1px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32);border-radius:50%}.mec-custom-nice-select ul.list li .wn-mec-text{position:relative;padding-top:0;padding-bottom:28px}.mec-custom-nice-select ul.list li .wn-mec-text:after{left:calc(50% - 7px);top:auto;bottom:1px}.mec-custom-nice-select ul.list li .wn-img-sh{line-height:1}.mec-sed-methods li:before{left:9px;top:calc(50% - 7px)}.mec-custom-nice-select ul.list li.option.selected .wn-mec-text:after,.mec-sed-methods li.active:before{width:4px;height:4px;border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff}.menu-icon-mec-books .wp-menu-image img,.toplevel_page_mec-intro .wp-menu-image img{width:18px!important;padding-top:7px!important}.mec-add-booking-tabs-wrap,.mec-add-event-tabs-wrap,.mec-create-shortcode-tabs-wrap{display:flex;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox}.mec-add-booking-tabs-left,.mec-add-event-tabs-left,.mec-create-shortcode-tabs-left{flex:1}.mec-add-booking-tabs-right,.mec-add-event-tabs-right,.mec-create-shortcode-tabs-right{flex:6}a.mec-add-booking-tabs-link,a.mec-add-event-tabs-link,a.mec-create-shortcode-tabs-link{display:block}.mec-booking-tab-content,.mec-create-shortcode-tab-content,.mec-event-tab-content{display:none;transition:all .3s ease}.mec-booking-tab-content.mec-tab-active,.mec-create-shortcode-tab-content.mec-tab-active,.mec-event-tab-content.mec-tab-active{display:block}.mec-add-booking-tabs-wrap,.mec-add-event-tabs-wrap{background:#fff;margin:-6px -12px -12px}.mec-create-shortcode-tabs-wrap{margin:-30px -22px -42px}.mec-add-booking-tabs-left,.mec-add-event-tabs-left,.mec-create-shortcode-tabs-left{padding:0 0 38px;background:#fff;min-width:210px}.mec-add-booking-tabs-left a,.mec-add-event-tabs-left a,.mec-create-shortcode-tabs-left a{line-height:16px;font-size:13px;font-weight:600;letter-spacing:.3px;color:#6a6f77;text-decoration:none;background:#f7f7f7;padding:13px 20px;border-bottom:1px solid #e3e3e3;outline:0;box-shadow:none;transition:all .2s ease}.mec-add-booking-tabs-left a:hover,.mec-add-event-tabs-left a:hover,.mec-create-shortcode-tabs-left a:hover{color:#008aff;background:#fff}.mec-add-booking-tabs-left a.mec-tab-active,.mec-add-event-tabs-left a.mec-tab-active,.mec-create-shortcode-tabs-left a.mec-tab-active{background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff;margin:0 -6px;border-radius:5px;box-shadow:0 2px 12px -5px #36a2ff;border-bottom-color:transparent;position:relative}.mec-add-booking-tabs-right,.mec-add-event-tabs-right,.mec-create-shortcode-tabs-right{padding:0 30px 40px;border-left:1px solid #e2e2e2}.mec-booking-tab-content.mec-tab-active,.mec-create-shortcode-tab-content.mec-tab-active,.mec-event-tab-content.mec-tab-active{animation:fadeEffect2 .31s}@media (max-width:550px){.mec-add-booking-tabs-left,.mec-add-event-tabs-left,.mec-create-shortcode-tabs-left{min-width:100px}.mec-add-booking-tabs-left a,.mec-add-event-tabs-left a,.mec-create-shortcode-tabs-left a{font-size:11px;padding:12px 8px;line-height:1.2;letter-spacing:0}}@keyframes fadeEffect2{from{opacity:0;transform:translateX(11px)}to{opacity:1;transform:translateX(0)}}.mec-form-row .mec-col-8 label{padding-right:20px}.mec-calendar-metabox .wn-mec-select,.mec-form-row input[type=number],.mec-form-row input[type=text],.mec-form-row select,.mec-form-row textarea,.mec-form-row.mec-skin-list-date-format-container input[type=text]{border:solid 1px #ddd;border-radius:2px;height:40px;line-height:38px;padding-left:10px;box-shadow:0 3px 10px -2px rgba(0,0,0,.05),inset 0 1px 2px rgba(0,0,0,.02)}.mec-calendar-metabox .wn-mec-select.open .list{border-radius:0 0 2px 2px;box-shadow:0 0 0 1px #ddd,0 2px 6px rgba(0,0,0,.07)}.mec-calendar-metabox .mec-custom-nice-select.open ul.list{border-radius:3px;box-shadow:0 2px 6px rgba(0,0,0,.07);margin-left:0!important;transform:translateX(-50%);left:50%}.mec-custom-nice-select ul.list li.option.selected .wn-mec-text:after{border:6px solid #40d9f1;box-shadow:0 3px 16px -3px #40d9f1}.mec-form-row input[type=checkbox]{background-color:#fff;border:1px solid #cacece;box-shadow:0 1px 2px rgba(0,0,0,.05);padding:9px;border-radius:3px;min-width:24px;min-height:24px;display:inline-block;transition:all .18s ease;outline:0;margin:2px 4px 4px 0}.mec-form-row input[type=checkbox]:focus{outline:0}.mec-form-row input[type=checkbox]:hover{border-color:#62b6ff}.mec-form-row input[type=checkbox]:checked{box-shadow:0 1px 6px -2px #008aff;border-color:#008aff;background:#008aff;border-radius:2px;position:relative}.mec-form-row.mec-switcher input[type=checkbox]{position:absolute}.mec-form-row input[type=checkbox]:checked:before{content:"";font:normal;position:absolute;top:12px;left:8px;border-right:2px solid transparent;border-bottom:2px solid transparent;transform:rotate(45deg);transform-origin:0 100%;color:#fff;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards}@keyframes checkbox-check{0%{width:0;height:0;border-color:#fff;transform:translate3d(0,0,0) rotate(45deg)}33%{width:5px;height:0;transform:translate3d(0,0,0) rotate(45deg)}100%{width:5px;height:11px;border-color:#fff;transform:translate3d(0,-11px,0) rotate(45deg)}}.mec-form-row input+span.mec-tooltip,.mec-form-row select+span.mec-tooltip{bottom:10px}.mec-form-row label+span.mec-tooltip{bottom:8px}.mec-form-row textarea+span.mec-tooltip{bottom:auto;vertical-align:top;top:12px}.mec-form-row span+span.mec-tooltip{bottom:0;vertical-align:middle}.mec-form-row .mec-col-8 input[type=text],.mec-form-row .mec-col-8 select,.mec-form-row .mec-col-8 span.mec-archive-skins{vertical-align:top}.mec-form-row .mec-col-8 span.mec-archive-skins input[type=text]{max-width:225px}.mec-form-row input:disabled{opacity:.6;background:#f6f6f6}.wns-be-group-tab h5{font-size:16px;font-weight:600;color:#444;margin:45px 0 25px}.mec-form-row textarea{height:auto;margin-bottom:0;min-height:60px}.mec-form-row .wp-picker-container input[type=text].wp-color-picker{height:25px;vertical-align:top;margin:0}.mec-form-row .wp-picker-container label{margin:0}.mec-image-select-wrap li span:hover{border-color:#fff;box-shadow:0 1px 8px rgba(0,0,0,.12)}.mec-message-categories li.mec-acc-label:after{content:"\e604";font-family:simple-line-icons;speak:none;font-style:normal;font-weight:400;display:block;font-size:13px;color:#999;position:absolute;right:27px;top:26px}.mec-message-categories>li.mec-acc-label[data-status=open]:after{content:"\e607";color:#008aff}.mec-message-categories>li.mec-acc-label[data-status=open]{color:#008aff}.mec-message-categories>li.mec-acc-label:last-of-type{border-bottom:none}.mec-message-categories>li.mec-acc-label[data-status=open]{border-bottom:1px solid #e6e6e6}.mec-form-row ul.mec-message-categories{box-shadow:0 2px 16px rgba(0,0,0,.03);border-radius:5px;overflow:hidden;margin-top:30px;background:#f5f5f5;border:2px solid #e6e6e6;max-width:700px}.mec-form-row ul.mec-message-categories li ul{padding:10px 40px 40px;margin:25px -30px -25px;background:#f5f5f5;box-shadow:inset 0 4px 7px rgba(0,0,0,.04);cursor:default}.mec-form-row ul.mec-message-categories ul label{margin:25px 8px 7px;font-weight:600!important;font-size:13px;color:#888;cursor:default}.wns-be-sidebar li:hover a i,.wns-be-sidebar>li:hover a{color:#008aff}.mec-form-row.mec-skin-list-date-format-container span.mec-tooltip{top:2px}.mec-calendar-metabox .mec-form-row input[type=checkbox],.mec-meta-box-fields .mec-form-row input[type=checkbox]{margin-right:6px}.mec-meta-box-fields .mec-form-row .button:not(.wp-color-result){height:37px;margin-top:1px;box-shadow:inset 0 2px 4px #fff,inset 0 -2px 4px rgba(0,0,0,.05),0 2px 2px rgba(0,0,0,.06)}#mec-read-more .mec-form-row span.mec-tooltip{top:2px;left:-4px}#mec-search-settings{border-radius:21px;min-height:32px;box-shadow:inset 0 1px 2px rgba(0,0,0,.06);padding:9px 10px 12px 34px;margin-right:10px;color:#7c838a;font-size:13px;width:260px;background:#f5f5f5;border:none;z-index:1;transition:all .18s ease;outline:0;line-height:normal}#mec-search-settings:focus{background:#fff;box-shadow:0 1px 6px rgba(0,0,0,.07),0 0 0 1px #e6e6e6;width:270px}.mec-search-settings-wrap{display:inline-block;position:relative}.mec-search-settings-wrap i{position:absolute;left:14px;top:14px;font-size:13px;color:#7e8c98;display:block;z-index:2}#mec-search-settings::-webkit-input-placeholder{color:#7c838a}#mec-search-settings::-moz-placeholder{color:#7c838a}#mec-search-settings:-ms-input-placeholder{color:#7c838a}#mec-search-settings:-moz-placeholder{color:#7c838a}.ui-datepicker.ui-widget{border:1px solid #e8e8e8;box-shadow:0 1px 9px rgba(0,0,0,.12)}.ui-datepicker.ui-widget select{font-weight:600;font-size:12px;border-radius:2px;padding:2px 10px;margin:1px 3px 5px}.ui-datepicker.ui-widget table{border-spacing:2px}.ui-datepicker.ui-widget td,.ui-datepicker.ui-widget tr{padding:0;background:0 0!important}.ui-datepicker.ui-widget td a{color:#777;font-weight:600;width:30px;height:30px;line-height:30px;display:inline-block;border-radius:33px;padding:0;background:#fff;transition:all .2s ease}.ui-datepicker.ui-widget td a.ui-state-active,.ui-datepicker.ui-widget td a:hover{background:#40d9f1;color:#fff}.ui-datepicker.ui-widget .ui-datepicker-next,.ui-datepicker.ui-widget .ui-datepicker-prev{color:#40d9f1;width:30px;height:30px;line-height:30px;display:inline-block;text-align:center;border-radius:33px;background:#ecfcff;transition:all .2s ease}.ui-datepicker.ui-widget .ui-datepicker-next:hover,.ui-datepicker.ui-widget .ui-datepicker-prev:hover{background:#fff;box-shadow:0 0 7px -3px rgba(0,0,0,.4)}#mec-wrap{width:92%;margin:20px auto;max-width:1384px}#mec-wrap h2.nav-tab-wrapper{margin-bottom:40px;padding:0;border:none;margin-top:35px;clear:both;background:#fff;box-shadow:0 3px 12px -4px rgba(0,0,0,.13)}#mec-wrap .nav-tab-wrapper .nav-tab{position:relative;padding:28px 22px;border:none;margin:0;background:#fff;font-size:13px;color:#444;outline:0;box-shadow:none}#mec-wrap .nav-tab-wrapper .nav-tab:hover{color:#008aff}#mec-wrap .nav-tab-wrapper .nav-tab:after{content:"";display:inline-block;width:1px;height:30%;position:absolute;right:0;top:35%;background:#e9e9e9}#mec-wrap .nav-tab-wrapper .nav-tab-active,#mec-wrap .nav-tab-wrapper .nav-tab-active:focus,#mec-wrap .nav-tab-wrapper .nav-tab-active:focus:active,#mec-wrap .nav-tab-wrapper .nav-tab-active:hover{background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff;outline:0;box-shadow:0 5px 25px -7px #008aff;margin-left:-1px;z-index:2}#mec-wrap .nav-tab-wrapper .nav-tab-active:after{content:'';position:absolute;display:block;background:0 0;top:auto;height:auto;bottom:-20px;left:50%;margin-left:-10px;width:0;border-width:10px;border-style:solid;border-color:#008aff transparent transparent}#mec-wrap .mec-container{padding:25px 40px 40px;box-shadow:0 3px 10px -4px rgba(0,0,0,.1)}#wpwrap .mec-button-primary{color:#fff;font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s}#wpwrap .mec-button-primary:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 15px -7px rgba(0,0,0,.5);cursor:pointer}.wn-p-t-right{min-width:300px;max-width:400px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.5;position:absolute;z-index:99999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s;padding:20px;border-radius:8px}.wn-p-t-right i{position:absolute!important;top:100%;right:50%;margin-top:-6px!important;margin-right:-6px!important;width:12px;height:24px;overflow:hidden;transform:rotate(-90deg)}.wn-p-t-right i:after{content:'';position:absolute;width:12px;height:12px;left:0;top:50%;transform:translate(50%,-50%) rotate(-45deg);background-color:#535a61;box-shadow:0 8px 9px -4px #535a61}.wn-p-t-right .wn-p-t-text-content h5{color:#fff;font-size:17px;font-weight:600;margin:-20px;padding:15px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #32363a;border-radius:6px 6px 0 0}.mec-addon-box-footer a:hover .wn-p-t-right{visibility:visible;opacity:1}#mec_organizer_user+.select2-container,#mec_speaker_user+.select2-container{min-width:224px!important}.mec-add-event-tabs-wrap .select2-container,.mec-create-shortcode-tab-content .select2-container{min-height:38px;height:auto;box-sizing:border-box;margin-bottom:8px;padding:0 6px;border-radius:2px;border:1px solid #ddd;box-shadow:inset 0 1px 6px rgba(0,0,0,.07);background-color:#fff;color:#32373c;outline:0;transition:50ms border-color ease-in-out;min-width:200px;font-size:14px}.mec-add-event-tabs-wrap .select2-selection,.mec-create-shortcode-tab-content .select2-selection{border:none;background:0 0;padding-top:3px;width:100%;height:100%}.mec-add-event-tabs-wrap .select2-container--default.select2-container--focus .select2-selection,.mec-create-shortcode-tab-content .select2-container--default.select2-container--focus .select2-selection{border:none!important;outline:0}.mec-add-event-tabs-wrap .select2-container--default .select2-selection--single .select2-selection__arrow,.mec-create-shortcode-tab-content .select2-container--default .select2-selection--single .select2-selection__arrow{top:5px;right:4px}.fs-webform-container div .fserv-container{width:100%!important;max-width:none!important;min-height:208px!important;box-shadow:0 1px 16px rgba(0,0,0,.034)!important;border-radius:2px!important;padding:0!important;margin-bottom:0!important;margin-top:30px!important}.fserv-container .fserv-form-name{font-weight:600!important;position:relative!important;font-size:20px!important;padding:20px!important;border-bottom:1px solid #ededed!important;text-align:left!important;margin:0!important}.fserv-form-description{padding:10px 30px!important;margin:1em 0 0!important;line-height:1.5!important;font-size:16px!important}.fserv-container form{padding:0!important;padding-left:28px!important}.fserv-container .fserv-label{display:none!important}.fserv-field{display:inline-block;width:41%!important;padding:0!important;margin:0!important;margin-right:25px!important}.fserv-field+div:not(.fserv-field){margin:0!important;border:none!important;text-align:left!important;padding-left:4px!important;margin-top:0!important;padding-top:0!important;display:inline-block;margin-right:10px!important}.fserv-container .powered-by{display:none!important}button.fserv-button-submit{color:#fff!important;font-weight:500!important;border-radius:2px!important;box-shadow:0 3px 10px -4px #008aff!important;text-shadow:none!important;background:#008aff!important;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%)!important;border:none!important;transition:.24s!important}button.fserv-button-submit:hover{background:#222!important;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%)!important;box-shadow:0 5px 23px -7px rgba(0,0,0,.5)!important;cursor:pointer!important}.fserv-container input::-webkit-input-placeholder{font-family:Inherit!important;font-size:14px}.fserv-container input::-moz-placeholder{font-family:Inherit!important;font-size:14px}.fserv-container input:-ms-input-placeholder{font-family:Inherit!important;font-size:14px}.fserv-container input:-moz-placeholder{font-family:Inherit!important;font-size:14px}input.fserv-input-text{height:38px;box-sizing:border-box;margin-bottom:8px;padding:0 6px;box-shadow:none;border-radius:2px;box-shadow:inset 0 1px 5px rgba(0,0,0,.05)}.fserv-field label.error{display:none!important}.fs-notifier{position:fixed!important;top:40px!important;width:300px!important;max-width:300px!important;margin:0!important;right:20px!important;left:unset!important}.post-type-mec-events .lity{background:#edf0f3}.post-type-mec-events .lity-container{width:60vW;max-width:883px;margin:0 auto;border-radius:7px}.post-type-mec-events .lity-content:after{display:none}.mec-manage-events-lightbox{box-shadow:0 3px 20px rgba(0,0,0,.05)}.w-clearfix.mec-attendees-content img{display:inline-block;width:25px;height:25px;vertical-align:middle;margin-right:7px}.post-type-mec-events .mec-attendees-list-head{background:#008aff;color:#fff;text-align:center;padding:17px 0;text-transform:capitalize;font-size:26px;font-weight:700;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;border-radius:7px 7px 0 0;line-height:43px;box-shadow:0 3px 15px rgba(0,138,255,.25);z-index:99}.mec-attendees-list-wrap{display:flex;width:100%;flex-direction:column;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;background:#fff;box-shadow:0 3px 20px rgba(0,0,0,.05);border-radius:0 0 5px 5px;overflow:hidden}.mec-attendees-list-left{flex:1;background:#f6f8fa;padding:0;border-radius:0;position:relative}.mec-attendees-list-right,.mec-send-email-form-wrap{flex:1;border-radius:0 0 5px 5px;padding:0 20px 20px;background:#f2f4f7}.mec-attendees-list-left-menu a{display:inline-block;line-height:22px;font-size:12px;color:#000;font-weight:500;border-bottom:1px solid #eaebec;border-left:1px solid #eaebec;padding-bottom:0;padding:7px 6px;margin-bottom:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;transition:all .2s ease;text-decoration:none;text-align:center}.mec-attendees-list-left-menu a.selected-day{color:#008aff}.mec-attendees-list-left-menu .owl-item:last-child a{border-right:1px solid #eaebec}.mec-attendees-list-right table{width:100%}.w-clearfix.mec-attendees-head{margin-top:30px;border-bottom:2px solid #008aff;padding-bottom:18px;margin-bottom:3px}.w-clearfix.mec-attendees-content [class^=w-col-xs-],.w-clearfix.mec-attendees-head [class^=w-col-xs-]{padding:0}.w-clearfix.mec-attendees-head span{font-weight:600;color:#000;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;font-size:17px}.w-clearfix.mec-attendees-content{background:#fff;margin-bottom:2px;padding:10px 20px}.mec-attendees-list-left-menu{height:36px;margin-left:35px;margin-right:36px}.mec-attendees-list-left-menu a:active,.mec-attendees-list-left-menu a:focus,.mec-attendees-list-left-menu a:visited{outline:0;box-shadow:none}.mec-attendees-list-left-menu .owl-item{display:inline-block}.mec-attendees-list-left-menu .owl-stage{min-width:800px!important}.owl-nav.disabled .owl-next{position:absolute;right:0;top:0}.owl-nav.disabled .owl-prev{position:absolute;left:0;top:0}.owl-nav.disabled button{background:#fff;box-shadow:none;border:1px solid #ccc;height:36px;width:36px;font-size:54px;line-height:54px}.owl-nav.disabled button span{margin-top:-18px;display:block}.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}@media(max-width:992px){.post-type-mec-events .lity-container{width:80vw}}@-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-report-backtoselect-wrap,.mec-report-sendmail-form-wrap{display:none}.mec-report-select-event-wrap .select2{width:100%!important}.mec-report-select-event-wrap .select2-container--default .select2-selection--single{border-radius:2px;border:1px solid #e2e3e4;height:38px;padding-top:5px;width:100%;box-shadow:0 2px 3px rgba(0,0,0,.03)}.mec-report-select-event-wrap .select2-container--default .select2-selection--single .select2-selection__arrow{height:36px}.mec-report-select-event-wrap .select2-container--open .select2-dropdown--below{box-shadow:0 2px 8px rgba(0,0,0,.12);border-color:#d7d8d9}.select2-container--default .select2-search--dropdown .select2-search__field{box-shadow:0 2px 8px rgba(0,0,0,.06) inset;border-color:#d7d8d9;border-radius:2px}.mec-report-select-event-wrap input[type=text],.mec-report-select-event-wrap select{border:1px solid #e2e3e4;font-size:13px;font-weight:400;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;margin-bottom:15px;border-radius:2px;box-shadow:0 2px 3px rgba(0,0,0,.03);max-width:150px}.mec-report-select-event-wrap .select2-container--default{max-width:400px}.mec-report-select-event-wrap select.mec-reports-selectbox-dates{height:38px;min-width:260px;margin:0 0 0 10px;padding-left:15px}.mec-report-sendmail-form-wrap,.mec-report-sendmail-wrap{padding:30px 15px;background:#fff;border:1px solid #e2e3e4;margin:15px 0 5px;border-radius:2px;box-shadow:0 1px 4px rgba(0,0,0,.02)}.mec-report-sendmail-wrap .w-col-sm-12:before{background:url(../img/email-document.png) no-repeat left top;content:"";display:block;width:90px;height:70px;z-index:100;float:left}.mec-report-sendmail-wrap p{margin:0 0 15px;font-size:15px;color:#7d8284}.mec-report-backtoselect-wrap button,.mec-report-sendmail-wrap .w-col-sm-12 button,.mec-send-email-form-wrap .mec-send-email-button{background:#19cde9;border:none;color:#fff;font-size:13px!important;padding:6px 16px;border-radius:2px;cursor:pointer;box-shadow:0 1px 2px rgba(25,205,233,.25);transition:all .2s ease}.mec-report-backtoselect-wrap button:hover,.mec-report-sendmail-wrap .w-col-sm-12 button:hover,.mec-send-email-form-wrap .mec-send-email-button:hover{background:#04bfdc;box-shadow:0 1px 2px rgba(25,205,233,.05)}.mec-report-backtoselect-wrap button{margin-top:15px}.mec-report-selected-event-attendees-wrap{border:1px solid #96e3ef;padding:0;margin:20px 0;border-radius:3px;box-shadow:0 2px 14px rgba(25,205,233,.1);display:none}.mec-report-sendmail-wrap{display:none}.mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-head{background:#c7eef4;border-bottom:1px solid #96e3ef;padding:15px;margin:0;border-radius:3px 3px 0 0}.mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-content{margin:0;padding:8px 15px;border-bottom:1px solid #e4eef0;font-size:13px;line-height:25px}.mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-content:hover{background:#f3fdfe}.mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-content:last-child{border-bottom:none;border-radius:0 0 3px 3px}.mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-content img{border-radius:25px;margin-left:8px}.mec-report-selected-event-attendees-wrap input[type=checkbox]{border-radius:3px;margin-top:0}.mec-report-selected-event-attendees-wrap .mec-attendees-head .w-col-xs-2.name{padding-left:10px}.mec-report-selected-event-attendees-wrap .checkin_status span{font-weight:600}.mec-report-selected-event-attendees-wrap .w-col-sm-12>p{text-align:center}.mec-attendees-list-right,.mec-send-email-form-wrap{flex:1;border-radius:0;padding:0;background:0 0;max-width:674px;margin:0 auto}.mec-report-sendmail-form-wrap{padding:0 30px 45px}.mec-send-email-form-wrap h2{background:url(../img/email-document.png) no-repeat center top;padding-top:70px;font-size:22px;font-weight:600;text-align:center;padding-bottom:10px;padding-left:10px;margin-bottom:0}#webnus-dashboard .mec-send-email-form-wrap .wp-editor-tools button{font-size:13px;font-weight:400;color:#444;line-height:1;margin-bottom:0}#webnus-dashboard .mec-send-email-form-wrap .wp-editor-tabs button{min-height:30px}.mec-send-email-form-wrap input.widefat{min-height:40px;border:1px solid #e2e3e4;border-radius:2px;box-shadow:0 1px 4px rgba(0,0,0,.02)}.mec-send-email-form-wrap input.widefat:focus{border:1px solid #96e3ef}.mec-send-email-form-wrap h4.mec-send-email-count{font-weight:400;text-align:center;margin-bottom:30px;margin-top:0;padding-top:0}.mec-send-email-form-wrap .mec-send-email-button{min-height:40px;line-height:40px;padding:0;font-size:17px!important;font-weight:600}.mec-send-email-form-wrap .mce-menubtn.mce-fixed-width span{height:20px;padding-top:2px}.lity.mec-add-shortcode-popup{background-color:#b7e4e3}.lity.mec-add-shortcode-popup .lity-content{box-shadow:0 3px 20px 0 rgba(91,188,190,.55);border-radius:10px;height:100%}.mec-add-shortcode-popup .lity-container{width:930px;height:620px}.mec-add-shortcode-popup .lity-content:after{display:none}.mec-add-shortcode-popup div#mec_popup_shortcode{background:#fff;overflow:hidden;display:flex;width:100%;border-radius:10px;height:100%}.mec-steps-container{width:92px;text-align:center;background:#fff}.mec-steps-panel{width:calc(100% - 92px);background:#eef4f5}.mec-steps-container ul{text-align:center;display:block;margin-top:62px}.mec-steps-container ul li{width:22px;height:70px;margin:0 auto;position:relative}.mec-steps-container ul li span{border-radius:50px;background-color:rgba(26,175,251,.16);width:22px;height:22px;display:inline-block;padding-top:2px;font-size:11px;font-weight:700;color:#1aaffb}.mec-steps-container ul li:after,.mec-steps-container ul li:before{content:'';display:block;height:24px;width:2px;background:rgba(26,175,251,.16);margin-left:calc(50% - 1px)}.mec-steps-container ul li:first-of-type:before,.mec-steps-container ul li:last-of-type:after{display:none}.mec-steps-container ul li:first-of-type{height:46px}li.mec-step.mec-step-passed span,li.mec-step.mec-step-passed:after,li.mec-step.mec-step-passed:before{background-color:#2dcb73;color:#fff}.mec-steps-container img{margin-top:27px}.mec-steps-header{display:flex;background:#fff;border-radius:5px;box-shadow:0 3px 22px 0 rgba(11,121,125,.01);padding:12px 22px;margin-bottom:50px}.mec-steps-header-settings{width:65px}.mec-steps-header-userinfo{width:calc(100% - 65px)}.mec-steps-panel{padding:35px;position:relative;display:flex;flex-direction:column;justify-content:space-between}.mec-steps-header-userinfo span{display:inline-block;vertical-align:middle}.mec-steps-header-userinfo span img{height:40px;border-radius:50px;margin-right:8px;vertical-align:middle}.mec-steps-header-userinfo span.mec-steps-header-name{font-size:14px;color:#778182}span.mec-steps-header-add-text{color:#839294;font-size:12px;margin-left:5px}.mec-steps-header-settings a{height:100%;display:block;padding-top:11px;text-decoration:none;font-size:12px;color:#707070}.mec-steps-header-settings a i{color:#1aaffb;font-size:16px;vertical-align:text-top;margin-right:5px}.mec-next-previous-buttons{clear:both}.mec-next-previous-buttons button.mec-button-next{float:right;background:#008aff;border:none;color:#fff;cursor:pointer;width:123px;text-align:left;padding:8px 18px 9px;border-radius:3px;font-size:14px;box-shadow:0 5px 10px 0 rgba(0,138,255,.3);transition:all .3s ease;outline:0}.mec-next-previous-buttons button:hover{background:#000;box-shadow:0 5px 10px 0 rgba(0,0,0,.3)}.mec-next-previous-buttons button.mec-button-next img{position:absolute;top:16px;right:18px}.mec-next-previous-buttons button{position:relative}.mec-next-previous-buttons button.mec-button-prev{background:#fff;border:none;color:#000;cursor:pointer;width:123px;text-align:right;padding:8px 15px 9px;border-radius:3px;font-size:14px;box-shadow:0 5px 10px 0 rgba(11,121,125,.01);transition:all .3s ease;outline:0}.mec-next-previous-buttons button.mec-button-prev img{position:absolute;top:16px;left:18px}.mec-next-previous-buttons button.mec-button-prev:hover{background:#000;box-shadow:0 5px 10px 0 rgba(0,0,0,.3);color:#fff}.mec-next-previous-buttons button.mec-button-new{background:#008aff;float:right;border:none;color:#fff;cursor:pointer;width:154px;text-align:left;padding:8px 18px 9px;border-radius:3px;font-size:14px;box-shadow:0 5px 10px 0 rgba(0,138,255,.3);transition:all .3s ease;outline:0}.mec-next-previous-buttons button.mec-button-new:hover{background:#000;box-shadow:0 5px 10px 0 rgba(0,0,0,.3)}.mec-next-previous-buttons button.mec-button-new img{vertical-align:sub;margin-left:-3px;margin-right:8px}div#mec_popup_shortcode_form{height:calc(100% - 37px)}.mec-steps-content-container{display:flex;flex-direction:column;height:100%}.mec-steps-content-container.mec-steps-content-1{background:url(../../assets/img/popup/first-step.png) no-repeat 90% 70%}.mec-steps-content-container.mec-steps-content-1 .popup-sh-name-required{color:red;display:none;font-style:italic;font-size:12px;margin-top:8px}.mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1{top:50%;position:absolute;width:360px}.mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1 input[name="shortcode[name]"]{width:360px;height:46px;border:none;border-radius:3px;padding-left:36px;font-size:12px;color:#b1b2b4;box-shadow:0 3px 22px 0 rgba(11,121,125,.01)}.mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1 input[name="shortcode[name]"]::-webkit-input-placeholder{color:#b1b2b4}.mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1 input[name="shortcode[name]"]:-ms-input-placeholder{color:#b1b2b4}.mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1 input[name="shortcode[name]"]::placeholder{color:#b1b2b4}.mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1:before{content:'';width:14px;height:14px;background:url(../../assets/img/add-sh-icon.png) no-repeat center center;position:absolute;top:17px;left:17px}.mec-steps-content-container.mec-steps-content-2 .mec-steps-content.mec-steps-content-2 ul{height:386px;overflow-x:hidden;overflow-y:scroll;padding-left:60px;margin-top:-22px;margin-bottom:0;position:relative;padding-bottom:19px!important}.mec-steps-content-container.mec-steps-content-2 .mec-steps-content.mec-steps-content-2 ul li{width:193px!important;float:left!important;min-height:135px!important;height:160px;margin:1.66%!important;box-sizing:border-box;text-align:center;padding:10px!important;border-radius:5px;border:2px solid #c4edff;background:#fff!important;cursor:pointer}.mec-steps-content-container.mec-steps-content-2 .mec-steps-content.mec-steps-content-2 ul li.active{border-color:#00acf8;box-shadow:0 3px 5px rgba(0,172,248,.2)}.mec-steps-content-container.mec-steps-content-2 .mec-step-popup-skin-img img{margin:4px 0 1px 1px;line-height:1;max-width:68px;max-height:56px;filter:grayscale(1);-webkit-filter:grayscale(1);transition:all .22s ease;-webkit-transition:all .22s ease;-moz-transition:all .22s ease;-ms-transition:all .22s ease;-o-transition:all .22s ease}.mec-steps-content-container.mec-steps-content-2 .mec-step-popup-skin-text input{display:block;margin:0 auto;margin-top:6px;border:2px solid #e1e7ed;box-shadow:0 3px 6px 0 rgba(0,0,0,.05);position:relative}.mec-steps-content-container.mec-steps-content-2 .mec-step-popup-skin-img{padding-top:16px}.mec-steps-content-container.mec-steps-content-2 .mec-steps-content.mec-steps-content-2 ul li .mec-step-popup-skin-text input{display:none}.mec-steps-content-container.mec-steps-content-2 .mec-step-popup-skin-text:before{width:14px;height:14px;content:'';border-radius:50px;background:#fff;display:block;position:absolute;left:calc(50% - 7px);top:24px;z-index:99;border:2px solid #e1e7ed;box-shadow:0 3px 6px 0 rgba(0,0,0,.05)}.mec-steps-content-container.mec-steps-content-2 .mec-step-popup-skin-text{position:relative}.mec-steps-content-container.mec-steps-content-2 li.active .mec-step-popup-skin-text:before{background:#008aff;border:none;box-shadow:0 5px 10px 0 rgba(0,138,255,.3);width:16px;height:16px}.mec-steps-content-container.mec-steps-content-2 li.active .mec-step-popup-skin-text:after{width:4px;height:4px;display:block;content:'';position:absolute;background:#fff;left:calc(50% - 1px);top:30px;z-index:999;border-radius:50px}.mec-steps-content-container.mec-steps-content-3 span.wn-hover-img-sh{display:block}.mec-steps-content-container.mec-steps-content-3 .mec-skin-styles{height:386px;overflow-x:hidden;padding-left:60px;padding-bottom:19px}.mec-steps-content-container.mec-steps-content-3 .mec-skin-styles label{width:193px!important;float:left!important;margin:1.66%!important;text-align:center}.mec-steps-content-container.mec-steps-content-3 .mec-skin-styles label span{width:193px!important;float:left!important;min-height:135px!important;height:150px;box-sizing:border-box;border-radius:5px;border:2px solid #c4edff;background:#fff!important;cursor:pointer;margin-bottom:5px;margin-top:-6px}.mec-steps-content-container.mec-steps-content-3 .mec-skin-styles label.active span{border-color:#00acf8;box-shadow:0 3px 5px rgba(0,172,248,.2)}.mec-steps-content-container.mec-steps-content-3 .mec-skin-styles label div{font-size:14px}.mec-steps-content-container.mec-steps-content-3 .mec-skin-styles label.active div{color:#008aff}.mec-steps-content-container.mec-steps-content-3 .mec-skin-styles input{opacity:0;display:none}.mec-steps-content-container.mec-steps-content-3 .mec-steps-content.mec-steps-content-3{margin-top:-18px}.mec-steps-content-container.mec-steps-content-3 span.wn-hover-img-sh img{width:189px;height:146px;border-radius:5px}.mec-steps-content-container.mec-steps-content-4{background:url(../../assets/img/popup/fourth-step.png) no-repeat 90% 70%}.mec-steps-content.mec-steps-content-4 .nice-select{border:none;box-shadow:0 3px 22px 0 rgba(11,121,125,.01)}.mec-steps-content-container.mec-steps-content-4 .mec-steps-content.mec-steps-content-4{top:40%;position:absolute;width:330px}.mec-steps-content-container.mec-steps-content-4 .mec-steps-content.mec-steps-content-4 h3{font-size:13px;font-weight:400;color:#707070}.mec-steps-content-container.mec-steps-content-4 .mec-steps-content.mec-steps-content-4 .mec-multiple-skin-options div{border:2px dashed #dce2e3;border-radius:3px;padding:20px 20px 6px;background:#fcfcfc}.mec-steps-content-container.mec-steps-content-4 .mec-steps-content.mec-steps-content-4 .mec-multiple-skin-options div label{display:block;margin-bottom:14px}.mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup{-webkit-tap-highlight-color:transparent;background-color:#fff;border-radius:3px;border:1px solid #ddd;margin-bottom:8px;position:relative;text-align:left!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;box-shadow:0 3px 13px -5px rgba(0,0,0,.1),inset 0 1px 2px rgba(0,0,0,.07);clear:unset!important;-webkit-tap-highlight-color:transparent;background-color:#fff;border-radius:5px;border:solid 1px #e8e8e8;box-sizing:border-box;clear:both;cursor:pointer;display:block;float:left;font-family:inherit;font-size:14px;font-weight:400;height:42px;line-height:40px;outline:0;padding-left:18px;padding-right:30px;position:relative;text-align:left!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap;width:300px!important}.mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup:hover{border-color:#dbdbdb}.mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup.open .list{overflow:unset;width:100%;margin:0}.mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .list{background-color:#fff;border-radius:2px;box-shadow:0 2px 33px -2px rgba(0,0,0,.2),inset 0 1px 2px rgba(0,0,0,.07);box-sizing:border-box;margin-top:4px;opacity:0;overflow:hidden;padding:0;pointer-events:none;position:absolute;top:100%;left:0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0;-webkit-transform:scale(.75) translateY(-21px);-ms-transform:scale(.75) translateY(-21px);transform:scale(.75) translateY(-21px);-webkit-transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;z-index:9}.mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup:after{border-bottom:2px solid #999;border-right:2px solid #999;content:'';display:block;height:5px;margin-top:-4px;pointer-events:none;position:absolute;right:12px;top:50%;-webkit-transform-origin:66% 66%;-ms-transform-origin:66% 66%;transform-origin:66% 66%;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:all .15s ease-in-out;transition:all .15s ease-in-out;width:5px}.mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup.open:after{-webkit-transform:rotate(-135deg);-ms-transform:rotate(-135deg);transform:rotate(-135deg)}.mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup.open .list{opacity:1;pointer-events:auto;-webkit-transform:scale(1) translateY(0);-ms-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}.mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup.disabled{border-color:#ededed;color:#999;pointer-events:none}.mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup.disabled:after{border-color:#ccc}.mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .list{background-color:#fff;border-radius:5px;box-shadow:0 0 0 1px rgba(68,68,68,.11);box-sizing:border-box;margin-top:4px;opacity:0;overflow:hidden;padding:0;pointer-events:none;position:absolute;top:100%;left:0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0;-webkit-transform:scale(.75) translateY(-21px);-ms-transform:scale(.75) translateY(-21px);transform:scale(.75) translateY(-21px);-webkit-transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;z-index:9}.mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .list:hover .option:not(:hover){background-color:transparent!important}.mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option{cursor:pointer;font-weight:400;list-style:none;min-height:40px;outline:0;text-align:left;position:relative;font-size:12px!important;padding:1px 12px!important;margin:0!important;line-height:28px!important;min-height:28px!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option .wn-hover-img-sh img{position:absolute;padding:3px;top:-1px;left:100%;box-shadow:0 4px 42px -5px rgba(0,0,0,.16);visibility:hidden;opacity:0;border:1px solid #e3e3e3;border-radius:2px;z-index:99999999;background:#fff}.mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option:hover .wn-hover-img-sh img{visibility:visible;opacity:1}.mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option.focus,.mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option.selected.focus,.mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option:hover{background-color:#f6f6f6}.mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option.selected{font-weight:700}.mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option.disabled{background-color:transparent;color:#999;cursor:default}.no-csspointerevents .wn-mec-select-popup .list{display:none}.no-csspointerevents .wn-mec-select-popup.open .list{display:block}.mec-steps-content.mec-steps-content-4 label input{background:#fff;position:relative;width:24px;height:24px;border:1px solid #cacece}.mec-steps-content.mec-steps-content-4 label input:before{disaply:none}.mec-steps-content.mec-steps-content-4 label.active input{background:#008aff;box-shadow:0 5px 10px 0 rgba(0,138,255,.3);border:none}.mec-steps-content.mec-steps-content-4 label.active input:before{background:#fff;width:6px;height:6px;top:6px;left:6px;position:absolute}.mec-steps-content-container.mec-steps-content-5{background:url(../../assets/img/popup/fifth-step.png) no-repeat 90% 70%}.mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5{width:360px;margin-top:16px}.mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher label{color:#707070;font-size:14px}.mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher p{color:#8a8a8a;font-style:italic;font-size:12px;margin-top:7px;margin-bottom:0}.mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher{padding-bottom:30px;margin-bottom:34px;border-bottom:2px dashed #dce2e3;position:relative}.mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher:last-of-type{padding-bottom:0;margin-bottom:0;border:none}.mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher div:last-of-type label{position:absolute;top:-4px;right:0;width:52px;height:26px}.mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher input:checked+label:after{margin-left:26px}.mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher input+label:after,.mec-switcher input+label:before{display:block;position:absolute;top:2px;left:1px;bottom:2px;content:""}.mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher input+label:after{width:23px}.mec-steps-content-container.mec-steps-content-6{background:url(../../assets/img/popup/sixth-step.png) no-repeat 90% 70%}.mec-steps-content-container.mec-steps-content-6 .mec-steps-content.mec-steps-content-6{margin-top:56px}.mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode{width:325px;border:2px dashed #dce2e3;background:#fcfcfc;padding:42px 42px 47px;text-align:center}.mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode h3{font-size:16px;font-weight:400;color:#707070;margin-top:7px}.mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode-code{border-radius:3px;background:rgba(154,214,222,.35);width:243px;margin:0 auto;padding:14px 17px}.mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode-code code{background:0 0;color:#000;font-size:14px;font-weight:600;margin-left:-11px}.mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode-code button{border:none;background:#fff;border-radius:3px;padding:3px 8px 6px;margin-left:46px;cursor:pointer}.mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode-code button:hover{background:#000;color:#fff}.mec-steps-content-container.mec-steps-content-6 .mec-steps-6-results p{width:325px;text-align:center;font-size:12px;margin-top:5px;color:#8a8a8a}.mec-steps-content-container.mec-steps-content-6 .mec-steps-6-loading{width:325px;border:2px dashed #dce2e3;background:#fcfcfc;padding:42px 42px 47px;text-align:center;height:182px;position:relative}.mec-steps-content-container.mec-steps-content-6 .mec-steps-6-loading .mec-loader{position:absolute;left:136px;top:65px}.mec-add-shortcode-popup button.lity-close{right:0;top:-52px;border-radius:50%;width:37px;height:37px;background:#fff;color:#a2afbc;text-shadow:none;padding-top:1px;transition:all .2s ease;position:absolute;box-shadow:0 3px 8px 0 rgba(91,188,190,.55)}.mec-add-shortcode-popup button.lity-close:hover{background:#000;color:#fff;box-shadow:0 3px 8px 0 rgba(0,0,0,.55)}.mec-skin-styles.mec-styles-full_calendar h3{padding-left:12px}
|
2 |
* Bootstrap v3.3.7 (http://getbootstrap.com)
|
3 |
* Copyright 2011-2016 Twitter, Inc.
|
4 |
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
5 |
+
*/#webnus-dashboard button,#webnus-dashboard input,#webnus-dashboard select,#webnus-dashboard textarea{font-family:inherit;font-size:inherit;line-height:inherit}#webnus-dashboard a{color:#337ab7;text-decoration:none}#webnus-dashboard a:focus,#webnus-dashboard a:hover{color:#23527c}#webnus-dashboard a:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}#webnus-dashboard figure{margin:0}#webnus-dashboard img{vertical-align:middle}.w-img-responsive{display:block;max-width:100%;height:auto}.w-img-rounded{border-radius:6px}.w-img-thumbnail{padding:4px;line-height:1w-42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all 0w-2s ease-in-out;-o-transition:all 0w-2s ease-in-out;transition:all 0w-2s ease-in-out;display:inline-block;max-width:100%;height:auto}.w-img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.w-sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.w-sr-only-focusable:active,.w-sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.w-container,.w-container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}[role=button]{cursor:pointer}@media (min-width:768px){.w-container{width:750px}}@media (min-width:992px){.w-container{width:970px}}@media (min-width:1200px){.w-container{width:1170px}}.w-row{margin-left:-15px;margin-right:-15px}.w-col-lg-1,.w-col-lg-10,.w-col-lg-11,.w-col-lg-12,.w-col-lg-2,.w-col-lg-3,.w-col-lg-4,.w-col-lg-5,.w-col-lg-6,.w-col-lg-7,.w-col-lg-8,.w-col-lg-9,.w-col-md-1,.w-col-md-10,.w-col-md-11,.w-col-md-12,.w-col-md-2,.w-col-md-3,.w-col-md-4,.w-col-md-5,.w-col-md-6,.w-col-md-7,.w-col-md-8,.w-col-md-9,.w-col-sm-1,.w-col-sm-10,.w-col-sm-11,.w-col-sm-12,.w-col-sm-2,.w-col-sm-3,.w-col-sm-4,.w-col-sm-5,.w-col-sm-6,.w-col-sm-7,.w-col-sm-8,.w-col-sm-9,.w-col-xs-1,.w-col-xs-10,.w-col-xs-11,.w-col-xs-12,.w-col-xs-2,.w-col-xs-3,.w-col-xs-4,.w-col-xs-5,.w-col-xs-6,.w-col-xs-7,.w-col-xs-8,.w-col-xs-9{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.w-col-xs-1,.w-col-xs-10,.w-col-xs-11,.w-col-xs-12,.w-col-xs-2,.w-col-xs-3,.w-col-xs-4,.w-col-xs-5,.w-col-xs-6,.w-col-xs-7,.w-col-xs-8,.w-col-xs-9{float:left}.w-col-xs-12{width:100%}.w-col-xs-11{width:91.66666667%}.w-col-xs-10{width:83.33333333%}.w-col-xs-9{width:75%}.w-col-xs-8{width:66.66666667%}.w-col-xs-7{width:58.33333333%}.w-col-xs-6{width:50%}.w-col-xs-5{width:41.66666667%}.w-col-xs-4{width:33.33333333%}.w-col-xs-3{width:25%}.w-col-xs-2{width:16.66666667%}.w-col-xs-1{width:8w-33333333%}.w-col-xs-pull-12{right:100%}.w-col-xs-pull-11{right:91.66666667%}.w-col-xs-pull-10{right:83.33333333%}.w-col-xs-pull-9{right:75%}.w-col-xs-pull-8{right:66.66666667%}.w-col-xs-pull-7{right:58.33333333%}.w-col-xs-pull-6{right:50%}.w-col-xs-pull-5{right:41.66666667%}.w-col-xs-pull-4{right:33.33333333%}.w-col-xs-pull-3{right:25%}.w-col-xs-pull-2{right:16.66666667%}.w-col-xs-pull-1{right:8w-33333333%}.w-col-xs-pull-0{right:auto}.w-col-xs-push-12{left:100%}.w-col-xs-push-11{left:91.66666667%}.w-col-xs-push-10{left:83.33333333%}.w-col-xs-push-9{left:75%}.w-col-xs-push-8{left:66.66666667%}.w-col-xs-push-7{left:58.33333333%}.w-col-xs-push-6{left:50%}.w-col-xs-push-5{left:41.66666667%}.w-col-xs-push-4{left:33.33333333%}.w-col-xs-push-3{left:25%}.w-col-xs-push-2{left:16.66666667%}.w-col-xs-push-1{left:8w-33333333%}.w-col-xs-push-0{left:auto}.w-col-xs-offset-12{margin-left:100%}.w-col-xs-offset-11{margin-left:91.66666667%}.w-col-xs-offset-10{margin-left:83.33333333%}.w-col-xs-offset-9{margin-left:75%}.w-col-xs-offset-8{margin-left:66.66666667%}.w-col-xs-offset-7{margin-left:58.33333333%}.w-col-xs-offset-6{margin-left:50%}.w-col-xs-offset-5{margin-left:41.66666667%}.w-col-xs-offset-4{margin-left:33.33333333%}.w-col-xs-offset-3{margin-left:25%}.w-col-xs-offset-2{margin-left:16.66666667%}.w-col-xs-offset-1{margin-left:8w-33333333%}.w-col-xs-offset-0{margin-left:0}@media (min-width:768px){.w-col-sm-1,.w-col-sm-10,.w-col-sm-11,.w-col-sm-12,.w-col-sm-2,.w-col-sm-3,.w-col-sm-4,.w-col-sm-5,.w-col-sm-6,.w-col-sm-7,.w-col-sm-8,.w-col-sm-9{float:left}.w-col-sm-12{width:100%}.w-col-sm-11{width:91.66666667%}.w-col-sm-10{width:83.33333333%}.w-col-sm-9{width:75%}.w-col-sm-8{width:66.66666667%}.w-col-sm-7{width:58.33333333%}.w-col-sm-6{width:50%}.w-col-sm-5{width:41.66666667%}.w-col-sm-4{width:33.33333333%}.w-col-sm-3{width:25%}.w-col-sm-2{width:16.66666667%}.w-col-sm-1{width:8w-33333333%}.w-col-sm-pull-12{right:100%}.w-col-sm-pull-11{right:91.66666667%}.w-col-sm-pull-10{right:83.33333333%}.w-col-sm-pull-9{right:75%}.w-col-sm-pull-8{right:66.66666667%}.w-col-sm-pull-7{right:58.33333333%}.w-col-sm-pull-6{right:50%}.w-col-sm-pull-5{right:41.66666667%}.w-col-sm-pull-4{right:33.33333333%}.w-col-sm-pull-3{right:25%}.w-col-sm-pull-2{right:16.66666667%}.w-col-sm-pull-1{right:8w-33333333%}.w-col-sm-pull-0{right:auto}.w-col-sm-push-12{left:100%}.w-col-sm-push-11{left:91.66666667%}.w-col-sm-push-10{left:83.33333333%}.w-col-sm-push-9{left:75%}.w-col-sm-push-8{left:66.66666667%}.w-col-sm-push-7{left:58.33333333%}.w-col-sm-push-6{left:50%}.w-col-sm-push-5{left:41.66666667%}.w-col-sm-push-4{left:33.33333333%}.w-col-sm-push-3{left:25%}.w-col-sm-push-2{left:16.66666667%}.w-col-sm-push-1{left:8w-33333333%}.w-col-sm-push-0{left:auto}.w-col-sm-offset-12{margin-left:100%}.w-col-sm-offset-11{margin-left:91.66666667%}.w-col-sm-offset-10{margin-left:83.33333333%}.w-col-sm-offset-9{margin-left:75%}.w-col-sm-offset-8{margin-left:66.66666667%}.w-col-sm-offset-7{margin-left:58.33333333%}.w-col-sm-offset-6{margin-left:50%}.w-col-sm-offset-5{margin-left:41.66666667%}.w-col-sm-offset-4{margin-left:33.33333333%}.w-col-sm-offset-3{margin-left:25%}.w-col-sm-offset-2{margin-left:16.66666667%}.w-col-sm-offset-1{margin-left:8w-33333333%}.w-col-sm-offset-0{margin-left:0}}@media (min-width:992px){.w-col-md-1,.w-col-md-10,.w-col-md-11,.w-col-md-12,.w-col-md-2,.w-col-md-3,.w-col-md-4,.w-col-md-5,.w-col-md-6,.w-col-md-7,.w-col-md-8,.w-col-md-9{float:left}.w-col-md-12{width:100%}.w-col-md-11{width:91.66666667%}.w-col-md-10{width:83.33333333%}.w-col-md-9{width:75%}.w-col-md-8{width:66.66666667%}.w-col-md-7{width:58.33333333%}.w-col-md-6{width:50%}.w-col-md-5{width:41.66666667%}.w-col-md-4{width:33.33333333%}.w-col-md-3{width:25%}.w-col-md-2{width:16.66666667%}.w-col-md-1{width:8w-33333333%}.w-col-md-pull-12{right:100%}.w-col-md-pull-11{right:91.66666667%}.w-col-md-pull-10{right:83.33333333%}.w-col-md-pull-9{right:75%}.w-col-md-pull-8{right:66.66666667%}.w-col-md-pull-7{right:58.33333333%}.w-col-md-pull-6{right:50%}.w-col-md-pull-5{right:41.66666667%}.w-col-md-pull-4{right:33.33333333%}.w-col-md-pull-3{right:25%}.w-col-md-pull-2{right:16.66666667%}.w-col-md-pull-1{right:8w-33333333%}.w-col-md-pull-0{right:auto}.w-col-md-push-12{left:100%}.w-col-md-push-11{left:91.66666667%}.w-col-md-push-10{left:83.33333333%}.w-col-md-push-9{left:75%}.w-col-md-push-8{left:66.66666667%}.w-col-md-push-7{left:58.33333333%}.w-col-md-push-6{left:50%}.w-col-md-push-5{left:41.66666667%}.w-col-md-push-4{left:33.33333333%}.w-col-md-push-3{left:25%}.w-col-md-push-2{left:16.66666667%}.w-col-md-push-1{left:8w-33333333%}.w-col-md-push-0{left:auto}.w-col-md-offset-12{margin-left:100%}.w-col-md-offset-11{margin-left:91.66666667%}.w-col-md-offset-10{margin-left:83.33333333%}.w-col-md-offset-9{margin-left:75%}.w-col-md-offset-8{margin-left:66.66666667%}.w-col-md-offset-7{margin-left:58.33333333%}.w-col-md-offset-6{margin-left:50%}.w-col-md-offset-5{margin-left:41.66666667%}.w-col-md-offset-4{margin-left:33.33333333%}.w-col-md-offset-3{margin-left:25%}.w-col-md-offset-2{margin-left:16.66666667%}.w-col-md-offset-1{margin-left:8w-33333333%}.w-col-md-offset-0{margin-left:0}}@media (min-width:1200px){.w-col-lg-1,.w-col-lg-10,.w-col-lg-11,.w-col-lg-12,.w-col-lg-2,.w-col-lg-3,.w-col-lg-4,.w-col-lg-5,.w-col-lg-6,.w-col-lg-7,.w-col-lg-8,.w-col-lg-9{float:left}.w-col-lg-12{width:100%}.w-col-lg-11{width:91.66666667%}.w-col-lg-10{width:83.33333333%}.w-col-lg-9{width:75%}.w-col-lg-8{width:66.66666667%}.w-col-lg-7{width:58.33333333%}.w-col-lg-6{width:50%}.w-col-lg-5{width:41.66666667%}.w-col-lg-4{width:33.33333333%}.w-col-lg-3{width:25%}.w-col-lg-2{width:16.66666667%}.w-col-lg-1{width:8w-33333333%}.w-col-lg-pull-12{right:100%}.w-col-lg-pull-11{right:91.66666667%}.w-col-lg-pull-10{right:83.33333333%}.w-col-lg-pull-9{right:75%}.w-col-lg-pull-8{right:66.66666667%}.w-col-lg-pull-7{right:58.33333333%}.w-col-lg-pull-6{right:50%}.w-col-lg-pull-5{right:41.66666667%}.w-col-lg-pull-4{right:33.33333333%}.w-col-lg-pull-3{right:25%}.w-col-lg-pull-2{right:16.66666667%}.w-col-lg-pull-1{right:8w-33333333%}.w-col-lg-pull-0{right:auto}.w-col-lg-push-12{left:100%}.w-col-lg-push-11{left:91.66666667%}.w-col-lg-push-10{left:83.33333333%}.w-col-lg-push-9{left:75%}.w-col-lg-push-8{left:66.66666667%}.w-col-lg-push-7{left:58.33333333%}.w-col-lg-push-6{left:50%}.w-col-lg-push-5{left:41.66666667%}.w-col-lg-push-4{left:33.33333333%}.w-col-lg-push-3{left:25%}.w-col-lg-push-2{left:16.66666667%}.w-col-lg-push-1{left:8w-33333333%}.w-col-lg-push-0{left:auto}.w-col-lg-offset-12{margin-left:100%}.w-col-lg-offset-11{margin-left:91.66666667%}.w-col-lg-offset-10{margin-left:83.33333333%}.w-col-lg-offset-9{margin-left:75%}.w-col-lg-offset-8{margin-left:66.66666667%}.w-col-lg-offset-7{margin-left:58.33333333%}.w-col-lg-offset-6{margin-left:50%}.w-col-lg-offset-5{margin-left:41.66666667%}.w-col-lg-offset-4{margin-left:33.33333333%}.w-col-lg-offset-3{margin-left:25%}.w-col-lg-offset-2{margin-left:16.66666667%}.w-col-lg-offset-1{margin-left:8w-33333333%}.w-col-lg-offset-0{margin-left:0}}.w-clearfix:after,.w-clearfix:before,.w-container-fluid:after,.w-container-fluid:before,.w-container:after,.w-container:before,.w-row:after,.w-row:before{content:" ";display:table}.w-clearfix:after,.w-container-fluid:after,.w-container:after,.w-row:after{clear:both}.w-center-block{display:block;margin-left:auto;margin-right:auto}.w-pull-right{float:right!important}.w-pull-left{float:left!important}.w-hide{display:none!important}.w-show{display:block!important}.w-invisible{visibility:hidden}.w-text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.w-hidden{display:none!important}.w-affix{position:fixed}.mec-image-popup-wrap{display:none}#wns-be-infobar.sticky{position:fixed;top:32px;background:#fff;z-index:9999;width:82%}.wns-be-main .wns-saved-settings.sticky{position:fixed;width:62.5%;top:111px;z-index:999999999999999999}.mec-export-settings,.mec-import-settings{font-weight:700;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:8px 32px;height:36px;letter-spacing:.2px;line-height:36px;font-size:13px;color:#fff;text-decoration:none;display:inline-block}.mec-export-settings:hover,.mec-import-settings:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5);color:#fff}textarea.mec-import-settings-content{display:block;width:100%;min-height:120px;margin-bottom:25px;padding:10px 15px}.mec-import-options-notification{display:inline-block}.mec-import-options-notification .mec-message-import-error,.mec-import-options-notification .mec-message-import-success{display:inline-block;padding:15px 12px;margin-left:12px;opacity:0;visibility:hidden;font-weight:700}.mec-import-options-notification .mec-message-import-success{opacity:1;visibility:visible;border:2px solid green}.mec-import-options-notification .mec-message-import-error{opacity:1;visibility:visible;border:2px solid #e62117}.mec-export-settings:focus,.mec-import-settings:focus{color:#fff}.mec-import-settings-wrap{position:relative}.mec-loarder-wrap{position:absolute;top:0;bottom:0;left:0;right:0;background:rgba(202,202,202,.7);z-index:9999}.mec-loarder-wrap.mec-settings-loader{top:34px}.mec-loarder{position:absolute;width:64px;height:64px;top:calc(50% - 32px);left:calc(50% - 36px)}.mec-loarder div{display:inline-block;position:absolute;left:6px;width:4px;background:#fff;animation:mec-loarder 1.2s cubic-bezier(0,.5,.5,1) infinite}.mec-loarder div:nth-child(1){left:27px;animation-delay:-.24s;background:#0075ff}.mec-loarder div:nth-child(2){left:36px;animation-delay:-.12s;background:#028bff}.mec-loarder div:nth-child(3){left:45px;animation-delay:0;background:#32a0ff}@keyframes mec-loarder{0%{top:6px;height:51px}100%,50%{top:19px;height:26px}}.w-box.support-page.searchbox{background:#008aff;background:linear-gradient(180deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff;min-height:260px;text-align:center;border-radius:2px}#webnus-dashboard .search-form input{background:rgba(255,255,255,.2);border:none;width:50%;outline:0;color:rgba(255,255,255,.7);font-size:18px;border-radius:4px 0 0 4px;box-shadow:0 1px 2px 0 rgba(0,0,0,.03);-webkit-transition:background .4s,box-shadow .2s;transition:background .4s,box-shadow .2s;padding:20px 32px;margin:0}#webnus-dashboard .search-form button{background:rgba(255,255,255,.2);border:none;padding:20px 32px;margin-left:-2px;color:#fff;border-radius:0 4px 4px 0;font-size:18px;cursor:pointer;-webkit-transition:background .4s,box-shadow .2s;transition:background .4s,box-shadow .2s}#webnus-dashboard .search-form button:hover{background:#fff;color:#3a3c4c}.w-box.support-page.searchbox p{font-size:30px}.search-form input::-webkit-input-placeholder{color:rgba(255,255,255,.7)}.search-form input::-moz-placeholder{color:rgba(255,255,255,.7)}.search-form input:-ms-input-placeholder{color:rgba(255,255,255,.7)}.search-form input:-moz-placeholder{color:rgba(255,255,255,.7)}#webnus-dashboard .search-form input:active,#webnus-dashboard .search-form input:focus{box-shadow:0 10px 20px rgba(0,0,0,.14);background:#fff;color:#3a3c4c}#webnus-dashboard .search-form input:active::-webkit-input-placeholder,#webnus-dashboard .search-form input:focus::-webkit-input-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active::-moz-placeholder,#webnus-dashboard .search-form input:focus::-moz-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active:-ms-input-placeholder,#webnus-dashboard .search-form input:focus:-ms-input-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active:-moz-placeholder,#webnus-dashboard .search-form input:focus:-moz-placeholder{color:#3a3c4c}#webnus-dashboard .w-box.support-page.mec-ticksy{text-align:center;min-height:260px}#webnus-dashboard .w-box.support-page.mec-ticksy p{font-size:20px;width:70%;margin:0 auto;margin-bottom:40px;margin-top:40px}#webnus-dashboard .support-box a,#webnus-dashboard .w-box.support-page.mec-ticksy a{color:#fff;font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:12px 20px;cursor:pointer;margin-bottom:40px;display:inline-block}#webnus-dashboard .support-box a:hover,#webnus-dashboard .w-box.support-page.mec-ticksy a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5)}#webnus-dashboard .support-box a{margin:40px 4px 0 4px}.mec-faq-accordion>.mec-faq-accordion-content{display:none}#webnus-dashboard .mec-faq-accordion-trigger a{font-size:16px;padding:12px;background:#f1f1f1;display:block;color:#222;line-height:17px;outline:0}.mec-faq-accordion-trigger{margin-bottom:5px;position:relative}#webnus-dashboard .mec-faq-accordion-trigger a:after{font-family:simple-line-icons;content:"\e095";position:absolute;right:12px;font-weight:700}.mec-faq-accordion-content{padding:5px 14px 25px}#webnus-dashboard .mec-faq-accordion-trigger a.active:after{content:"\e082"}#webnus-dashboard .support-page-links a{background-color:#fff;color:#fff;border-radius:2px;padding:13px 24px;font-size:12px;letter-spacing:1px;font-weight:600;text-transform:uppercase}#webnus-dashboard .support-page-links a:hover,#webnus-dashboard .w-box.support-page.videobox .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}#webnus-dashboard .support-page-links{display:inline-block;margin:12px 4px 16px 0}.support-page-links.link-to-doc a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.support-page-links.link-to-videos a{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);box-shadow:0 5px 10px -5px #ff876c}.support-page-links.link-to-articles a{background:#b092e6;background:linear-gradient(95deg,#b092e6 0,#9b70e8 50%,#8e5cea 100%);box-shadow:0 5px 10px -5px #b092e6}.w-box.support-page.articles-box .w-box-content a{display:block;padding:6px 0}#webnus-dashboard .w-box.support-page.videobox .w-button a{color:#fff;font-size:10px;padding:5px 15px;min-height:10px;font-weight:500;border-radius:22px;box-shadow:0 3px 10px -4px #ff5a35;text-shadow:none;background:#ff5a35;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);border:none;transition:.24s}.w-box.support-page.articles-box,.w-box.support-page.faq-box{min-height:500px}.w-box.support-page.videobox{border-radius:2px;min-height:282px;box-shadow:0 1px 6px rgba(0,0,0,.039)!important}#webnus-dashboard .w-box.support-page.videobox .w-button a i{margin-right:6px}.support-page .w-box-content ul{margin-top:5px;padding-left:5px}.support-page .w-box-content ul li{font-size:13px}.support-page .w-box-content ul li i{font-size:17px;vertical-align:text-bottom;margin-right:7px;color:#999}.w-box.mec-activation{background:#fff url(../img/dp-dsb-support.jpg) no-repeat top right}.w-box.mec-activation .w-box-head{color:#40d8f0;width:75%}.w-box.mec-activation .w-box-content{padding:10px 30px}.w-box.mec-activation input[type=radio]{display:none}.w-box.mec-activation input[type=radio]+label{color:#000;font-size:13px;line-height:14px!important;color:#7b7b7b}.w-box.mec-activation input[type=radio].checked+label{color:#40d8f0}.w-box.mec-activation input[type=radio]+label span{display:inline-block;margin:-2px 6px 0 0;vertical-align:middle;cursor:pointer;height:14px;width:14px;text-align:center;background-color:#fff;border:1px solid #d4d4d4;border-radius:100%;box-shadow:0 2px 16px -2px rgba(0,0,0,.2);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;position:relative}.w-box.mec-activation input[type=radio].checked+label span{background-color:#40d8f0;border-color:#40d8f0;box-shadow:0 2px 14px -3px #40d8f0}.w-box.mec-activation input[type=radio].checked+label span:after{content:'';display:block;position:absolute;top:4px;left:4px;width:4px;height:4px;background:#fff;border-radius:100%}.w-box.mec-activation .LicenseType label{padding-right:20px;font-weight:500}.w-box.mec-activation .LicenseField{display:inline-block;position:relative;margin-top:20px}.w-box.mec-activation input[name=MECPurchaseCode]{box-shadow:inset 0 1px 2px rgba(0,0,0,.07);min-width:220px;background:#f4f4f4;border:none;border-radius:33px;width:500px;min-height:50px;margin:0;padding-left:20px;text-align:left}#webnus-dashboard .w-box.mec-activation input[type=submit]{height:40px;line-height:40px;font-weight:600;border:none;cursor:pointer;padding:0 30px;border-radius:33px;color:#fff;letter-spacing:1px;text-transform:uppercase;font-size:12px;background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67;transition:all .28s ease;position:absolute;right:5px;top:4px;font-size:12px}#webnus-dashboard .w-box.mec-activation input[type=submit]:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5)}#MECActivation .MECPurchaseStatus,.addon-activation-form .MECPurchaseStatus{display:inline-block;width:40px;height:40px;text-align:center;padding-top:9px;color:#fff;font-weight:700;font-size:18px;border-radius:50%;padding-top:8px;position:absolute;right:-51px;top:calc(50% - 20px)}.MECPurchaseStatus:after,.MECPurchaseStatus:before{position:absolute;border-radius:50px;background:#fff;content:'';transform:rotate(45deg)}.MECPurchaseStatus.PurchaseError:before{width:22px;height:4px;right:9px;top:18px;transform:rotate(45deg)}.MECPurchaseStatus.PurchaseError:after{width:22px;height:4px;right:9px;top:18px;transform:rotate(-45deg)}.MECPurchaseStatus.PurchaseSuccess:before{width:13px;height:4px;right:19px;top:21px;transform:rotate(45deg)}.MECPurchaseStatus.PurchaseSuccess:after{width:22px;height:4px;right:5px;top:18px;transform:rotate(-45deg)}#MECActivation .MECPurchaseStatus.PurchaseError,.addon-activation-form .MECPurchaseStatus.PurchaseError{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);box-shadow:0 5px 10px -5px #ff876c}#MECActivation .MECPurchaseStatus.PurchaseSuccess,.addon-activation-form .MECPurchaseStatus.PurchaseSuccess{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.wna-spinner-wrap{position:absolute;background:#000;width:509px;height:64px;top:-8px;border-radius:50px;z-index:999;background-color:#fff;opacity:.9}.wna-spinner{width:40px;height:40px;position:relative;margin:6px auto}.wna-spinner .double-bounce1,.wna-spinner .double-bounce2{width:100%;height:100%;border-radius:50%;background-color:#40d8f0;opacity:.6;position:absolute;top:0;left:0;-webkit-animation:sk-bounce 2s infinite ease-in-out;animation:sk-bounce 2s infinite ease-in-out}.wna-spinner .double-bounce2{-webkit-animation-delay:-1s;animation-delay:-1s}#MECActivation .MECLicenseMessage,.addon-activation-form .MECLicenseMessage{margin-top:24px;color:#f64;max-width:570px}.box-addon-activation-toggle-content,.box-addon-activation-toggle-head{display:none}.addon-activation-form h3{font-size:15px;font-weight:400;margin:34px 0 -7px}.box-addon-activation-toggle-head{line-height:1.5;font-size:16px;margin-top:20px;cursor:pointer}.box-addon-activation-toggle-head i{margin-right:7px;cursor:pointer;font-weight:700}#mec-advanced-wraper div:first-child>ul{display:block;margin:5px 0;padding:5px 0;width:390px;border:1px solid #e1e2e3;border-radius:2px;box-shadow:0 1px 3px rgba(0,0,0,.05)}#mec-advanced-wraper div:first-child>ul span{display:none}#mec-advanced-wraper div:first-child>ul *{display:inline-block;background:#fff;font-size:12px;color:#717273;text-align:center}#mec-advanced-wraper div:first-child>ul>li{width:60px;font-weight:700;margin:0 10px 0 0;padding:4px 0;border-right:1px solid #e1e2e3}#mec-advanced-wraper div:first-child>ul>ul>li{margin:0;padding:2px 10px;cursor:pointer;border-radius:2px;transition:all .18s ease}#mec-advanced-wraper div:first-child>ul>ul>li:hover,.mec-active{background:#008aff!important;color:#fff!important}@-webkit-keyframes sk-bounce{0%,100%{-webkit-transform:scale(0)}50%{-webkit-transform:scale(1)}}@keyframes sk-bounce{0%,100%{transform:scale(0);-webkit-transform:scale(0)}50%{transform:scale(1);-webkit-transform:scale(1)}}.w-col-sm-3 .w-box.addon{min-height:auto;box-shadow:0 3px 16px -5px rgba(0,0,0,.1);border-radius:2px}.w-box-child.mec-addon-box{padding:20px 20px}.mec-addon-box-head{border-bottom:1px solid #e8e8e8;padding-bottom:5px;margin-bottom:14px;position:relative}.mec-addon-box-version{position:relative;background:#eaeaea;border-radius:1px;padding:0 8px;color:#5a5a5a;font-size:11px;letter-spacing:.2px;line-height:21px;display:inline-block;margin:10px 0}.mec-addon-box-head img{display:block;width:60px;height:60px;margin-bottom:10px}.mec-addon-box-title{font-weight:600;font-size:17px;line-height:25px}.mec-addon-box-title a span{color:#444;font-size:15px}.mec-addon-box-content p{color:#777;font-size:13px;letter-spacing:.1px}.mec-addon-box-mec-version{background:#f3f3f3;padding:10px;font-size:13px}#webnus-dashboard .addons-page-links{display:inline-block;margin:12px 4px 16px 0}#webnus-dashboard .addons-page-links a{background-color:#fff;color:#fff;border-radius:2px;padding:13px 24px;font-size:12px;letter-spacing:1px;font-weight:600;text-transform:uppercase}.addons-page-links.link-to-purchase a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.addons-page-links.link-to-install-addons a{background:#b092e6;background:linear-gradient(95deg,#b092e6 0,#9b70e8 50%,#8e5cea 100%);box-shadow:0 5px 10px -5px #b092e6}#webnus-dashboard .addons-page-links a:hover,#webnus-dashboard .w-box.addons-page.videobox .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}.mec-addon-box-footer{margin-top:25px;text-align:center}#webnus-dashboard .mec-addon-box-footer a{background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);margin-top:10px;display:inline-block;text-shadow:none;border:none;transition:.24s;position:relative;margin-right:7px;font-size:12px;font-weight:500;border-radius:7px;padding:9px 18px 8px;width:53px;height:34px;line-height:21px;box-shadow:0 2px 8px -3px #008aff}#webnus-dashboard .mec-addon-box-footer a:last-of-type{margin-right:0}#webnus-dashboard .mec-addon-box-footer a.mec-addon-box-intro{box-shadow:0 3px 10px -4px #ff3535;background:linear-gradient(95deg,#ff6c6c 0,#f55 50%,#ff3535 100%)}#webnus-dashboard .mec-addon-box-footer a:hover{background:#222!important;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%)!important;box-shadow:0 5px 23px -7px rgba(0,0,0,.5)!important;cursor:pointer!important}#webnus-dashboard .mec-addon-box-footer a i{color:#fff;font-size:16px}@media(max-width:1366px){.wns-be-container #wns-be-content{padding:5px 15px 0}.mec-form-row .mec-col-8 label{font-size:10px}#webnus-dashboard .mec-tooltip .box p,.mec-tooltip .box p{font-size:10px}}@media (max-width:780px){.wns-be-container #wns-be-content{padding:10px 0}.wns-be-container .mec-form-row .mec-col-8 label{width:50%;display:block}.wns-be-container .mec-form-row input[type=checkbox]{width:14px;height:14px}.wns-be-container .wns-be-sidebar li .subsection a{padding-left:30px}.wns-be-container .wns-be-sidebar{width:200px}.wns-be-container .wns-be-main{margin-left:200px}.wns-be-container .mec-tooltip .box{min-width:235px!important}.wns-be-container .mec-tooltip .box p{font-size:12px!important}#wns-be-infobar.sticky{position:unset}}@media (max-width:480px){.wns-be-container .wns-be-sidebar{width:100%;position:unset;float:none}.wns-be-container .wns-be-main{margin-left:0;width:100%;position:unset}.wns-be-container{margin-top:50px}.wns-be-container #wns-be-infobar:before{width:100%}.wns-be-container #wns-be-infobar{height:150px}#mec-search-settings{margin-top:80px;width:181px}}#mec_tickets .mec-box{position:relative;padding:25px 10px}#mec_fees_list input[type=text].mec-col-12,#mec_ticket_variations_list input[type=text].mec-col-12{max-width:625px}#taxes_option .mec-form-row input[type=text].mec-col-12,#ticket_variations_option input[type=text].mec-col-12{max-width:554px}.mec-booking-tab-content .mec-form-row textarea{max-width:762px}#mec_tickets .button.remove{padding:0;min-height:28px;height:28px;width:28px;margin:0;border-radius:50%;position:absolute;top:20px;right:20px;color:#ea6485;box-shadow:0 2px 6px -3px #ea6485;background:#fff;border-color:#ffd2dd;font-size:20px;line-height:1.5}#mec_tickets .button.remove svg{fill:#ea6485!important}#mec_tickets .button.remove:hover{color:#fff;border:2px solid #ea6485;background:#ea6485}#mec_tickets .button.remove:hover svg{fill:#fff!important}@media(max-width:480px){#mec_tickets .button.remove{top:5px;right:5px}}#mec_meta_box_hourly_schedule_days .mec-form-row input[type=text],#mec_meta_box_tickets_form .mec-form-row input[type=text]{max-width:400px}#mec_exceptions_not_in_days_date{width:100%}#mec_select_tags.mec-create-shortcode-tab-content input[type=text],#mec_settings_weather_module_api_key{width:262px}#mec_exceptions_not_in_days_date,#mec_meta_box_calendar_skin_options input[type=text].mec_date_picker,#mec_meta_box_date_form input[type=text]{max-width:262px}#mec_meta_box_calendar_skin_options input[type=text].mec_date_picker.mec-col-4{max-width:32.33333333%}#payment_gateways_option .mec-col-4 input[type=number],#payment_gateways_option .mec-col-4 input[type=text],#payment_gateways_option .mec-col-4 select,#payment_gateways_option .mec-col-4 textarea{width:75%}.mec-form-repeating-event-row .mec-col-6 input[type=text]{width:35%}.addons-page-error,.addons-page-notice{display:block;margin-top:15px;margin-bottom:0;background:#fff;border-left:4px solid #00a0d2;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);padding:1px 12px}.addons-page-error p,.addons-page-notice p{margin:.5em 0;padding:2px;font-size:13px}.addons-page-error{border-left-color:#dc3232}.mec-addon-box-comingsoon{background:#eaeaea;padding:8px 11px;color:#5a5a5a;font-size:14px;font-weight:500;text-align:center}.mec-addons .w-row .w-col-sm-3:nth-child(4n+1){clear:left}@media (min-width:960px){#webnus-dashboard .mec-addon-box-footer .w-button{text-align:right}}@media (min-width:1401px){.mec-addon-box-title a span{font-size:17px}}.mec-pro-notice{margin-top:24px;line-height:30px}.mec-pro-notice .info-msg{padding:50px 30px;margin-bottom:0}#webnus-dashboard .mec-pro-notice .info-msg{background:#fff;box-shadow:0 1px 16px rgba(0,0,0,.034);text-align:center;color:#000}#webnus-dashboard a.info-msg-link{background:#e66f52;background:linear-gradient(95deg,#ff8162 0,#e66f52 50%,#ff4c20 100%);box-shadow:0 5px 10px -5px #e66f52;border-radius:2px;padding:12px 50px;font-size:16px;line-height:24px;border:none;margin:20px auto 0;color:#fff;transition:all .3s ease;display:inline-block}#webnus-dashboard a.info-msg-link:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}#webnus-dashboard .info-msg p{width:70%;margin:0 auto;line-height:1.8}#webnus-dashboard .info-msg-coupon{font-size:13px;color:#777;max-width:600px;line-height:1.68;margin:25px auto 0}#webnus-dashboard .info-msg-coupon strong{font-weight:700;color:#19ce18}.info-msg .socialfollow{padding-top:20px}.info-msg .socialfollow a{margin:0 2px;display:inline-block}.info-msg .socialfollow a i{background:#96a4b1;color:#fff;padding:6px;border-radius:3px;font-size:18px;box-shadow:0 2px 3px rgba(0,0,0,.1);transition:all .25s}.info-msg .socialfollow a:hover i{background:#008aff}.mec-intro-section .w-box-content{text-align:center}.mec-intro-section .w-box-content.mec-intro-section-welcome{max-width:600px;margin:0 auto}.mec-intro-section .w-box-content.mec-intro-section-welcome h3{font-size:27px}a.mec-intro-section-link-tag.button.button-hero{margin:0 10px 40px}a.mec-intro-section-link-tag.button.button-primary.button-hero{color:#fff!important}a.mec-intro-section-link-tag.button.button-secondary.button-hero{color:#000!important}.mec-intro-section-ifarme iframe{border:1px solid #e7e7e7;border-radius:3px;padding:10px;box-shadow:0 3px 10px -6px rgba(0,0,0,.2)}.w-box-content.mec-intro-section-welcome p{margin-bottom:0}.mec-tooltip a:focus{box-shadow:none}#mec_booking_form .mec-options-fields,#mec_modules_form .mec-options-fields,#mec_settings_form .mec-options-fields,#mec_single_form .mec-options-fields{padding-bottom:150px!important}#mec_taxes_fees_container_toggle{margin-bottom:60px}#mec_taxes_fees_container_toggle{margin-bottom:60px}.wns-be-sidebar li{position:relative}.wns-be-sidebar li .submneu-hover{position:absolute;top:-1px;right:-222px;width:220px;z-index:9;background:#fff;border:1px;border-style:solid;border-color:#dedede;margin:0;overflow:visible;opacity:0;visibility:hidden;transition:all .23s ease;padding-top:8px;padding-bottom:12px}.wns-be-sidebar li:hover{background:#fff}.wns-be-sidebar li:hover .submneu-hover{opacity:1;visibility:visible}.wns-be-sidebar li .submneu-hover a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 26px}.wns-be-sidebar li .submneu-hover a:hover{background:#f6f6f6;color:#222}.wns-be-sidebar li .submneu-hover:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-15px;top:14px;border-right-color:#c5c5c5;right:0}.wns-be-sidebar li .submneu-hover:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-14px;top:14px}.wns-be-sidebar li a:focus,.wns-be-sidebar li:focus{outline:-webkit-focus-ring-color auto 0;border:0;box-shadow:none}@media (max-width:480px){.wns-be-sidebar li .submneu-hover{width:175px;right:0}.wns-be-sidebar li .submneu-hover a{font-size:11px;padding:5px 5px 5px 20px}}.mec-tooltip:hover:after,.mec-tooltip:hover:before{display:none}.mec-tooltip{display:inline-flex;bottom:7px}.mec-tooltip .box{min-width:300px;max-width:600px;display:inline-block;left:26px;top:50%;transform:translateY(-50%);padding:0;margin-top:8px;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.3;position:absolute;z-index:9999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s}#webnus-dashboard .mec-tooltip .box p,.mec-tooltip .box p{color:#fff;font-size:14px;line-height:1.3;margin:0;font-style:normal}.mec-tooltip:hover .box{visibility:visible;opacity:1}.mec-tooltip:hover .box{padding:20px;border-radius:8px}.mec-tooltip .box h5{color:#fff;font-size:17px;font-weight:600;margin:-30px -20px;padding:15px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #30353a;border-radius:6px 6px 0 0;z-index:9999}#webnus-dashboard .mec-tooltip .box p a,.mec-tooltip .box p a{color:#40d9f1;margin-top:10px;margin-left:0;font-weight:400;position:relative;text-decoration:none;display:block;width:max-content}.mec-tooltip .box a:hover{color:#f90}.mec-tooltip .box:after{display:block;position:absolute!important;top:100%!important;right:50%!important;margin-top:-6px!important;margin-right:-6px!important;width:12px!important;height:24px!important;overflow:hidden!important;transform:rotate(-90deg)!important}.mec-tooltip .box:before{display:block;content:''!important;position:absolute!important;width:12px;height:12px;left:-10px!important;top:50%!important;transform:translate(50%,-50%) rotate(-45deg)!important;background-color:#535a61!important;box-shadow:0 8px 9px -4px #535a61!important;z-index:0!important}.mec-tooltip .box.top{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-tooltip .box.top:after{top:50%!important;right:100%!important}.mec-tooltip .box.top:before{left:50%!important;top:100%!important}.mec-tooltip .box.bottom{left:50%;top:auto;bottom:0;transform:translate(-50%,100%);margin-bottom:-20px;margin-left:-10px}.mec-tooltip .box.bottom:after{top:0!important;right:50%!important;background-color:#3a3f44!important}.mec-tooltip .box.bottom:before{left:50%!important;top:-7px!important;transform:translateX(-50%);background-color:#3a3f44!important}.mec-tooltip .box.left{left:auto;right:26px;top:50%;transform:translateY(-50%)}.mec-tooltip .box.left:before{right:0!important;left:auto!important;top:50%!important}form#mec_reg_fields_form input[type=radio]:before{content:"";display:inline-block;background:#fff;border-radius:18px;width:14px;height:14px;margin:-1px 0 0 -2px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32)}form#mec_reg_fields_form input[type=radio]:checked:before{border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff;width:4px;height:4px}form#mec_reg_fields_form input[type=radio]{min-height:0;margin-right:6px}form#mec_reg_fields_form label{margin-right:20px}@media(min-width:1200px) and (max-width:1366px){.mec-tooltip .box.left{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-tooltip .box.left:after{top:50%!important;right:100%!important}.mec-tooltip .box.left:before{left:50%!important;top:100%!important}.mec-tooltip .box{min-width:225px}.mec-tooltip .box h5{font-size:15px}.mec-tooltip .box .content{font-size:12px}}@media(max-width:1366px){.wns-be-container .wns-be-group-tab p{margin-top:0}}.mec-addons-notification-box-wrap .w-col-sm-12,.mec-cmsg-notification-box-wrap .w-col-sm-12{padding:0}.mec-addons-notification-box-wrap img{width:auto}.mec-addons-notification-box-image{width:555px;display:inline-block;vertical-align:top}.mec-addons-notification-box-content{width:calc(100% - 559px);display:inline-block}.mec-addons-notification-box-content p{margin-top:1%;line-height:1.5;font-size:16px}.mec-addons-notification-box-content .w-box-content{padding-top:0;padding-bottom:0}.mec-addons-notification-box-content ol{font-size:16px}.mec-addons-notification-box-content a{background:#38d5ed;color:#fff!important;padding:10px 26px;margin-top:5px;display:inline-block;border-radius:3px;text-transform:capitalize;font-size:16px;letter-spacing:.4px;transition:all .1s ease;font-weight:600;text-decoration:none}.mec-addons-notification-box-content a:hover{background:#000}.w-clearfix.w-box.mec-addons-notification-box-wrap span,.w-clearfix.w-box.mec-cmsg-notification-box-wrap span{right:0;left:unset;cursor:pointer;background:#fff;padding:0 16px}.w-clearfix.w-box.mec-addons-notification-box-wrap span i,.w-clearfix.w-box.mec-cmsg-notification-box-wrap span i{font-size:28px;vertical-align:sub;color:#f2113e}.mec-custom-msg-notification-wrap,.wns-be-container .mec-addons-notification-wrap{padding:0;margin:0}.mec-custom-msg-notification-wrap .w-col-sm-12,.wns-be-container .mec-addons-notification-wrap .w-col-sm-12{padding:0}.wns-be-container .w-box{margin-top:0}.wns-be-container.mec-addons-notification-set-box{margin-right:15px;margin-top:50px;margin-bottom:27px}@media(max-width:1200px){.mec-addons-notification-box-content,.mec-addons-notification-box-image{width:100%;display:block}.mec-addons-notification-box-image{text-align:center}}@media(max-width:768px){.mec-addons-notification-box-image img{width:100%;height:auto}}body.rtl .wns-be-sidebar{width:260px;float:right;position:relative}body.rtl .wns-be-main{margin-left:0;border-left:0;margin-right:260px;border-right:1px solid #dedede}body.rtl .w-box.mec-activation .LicenseField{direction:rtl}body.rtl .w-box.mec-activation input[name=MECPurchaseCode]{text-align:right;padding-right:20px}body.rtl #MECActivation .MECPurchaseStatus,body.rtl .addon-activation-form .MECPurchaseStatus{right:auto;left:-51px}body.rtl #webnus-dashboard .w-box.mec-activation input[type=submit]{right:auto;left:5px}body.rtl .wns-be-sidebar .wns-be-group-menu li a{padding:13px 20px 13px 4px}body.rtl .wns-be-sidebar .wns-be-group-tab-link-a span.wns-be-group-menu-title{padding-left:0;padding-right:24px}body.rtl .wns-be-sidebar .has-sub span.extra-icon{float:left}body.rtl .wns-be-sidebar .wns-be-group-tab-link-a span.extra-icon i{right:auto;left:10px}body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:after,body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:transparent;border-left-color:#fff;right:auto;left:-1px;top:10px}body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{border-right-color:transparent;border-left-color:#c5c5c5;right:auto;left:0}body.rtl .mec-col-1,body.rtl .mec-col-10,body.rtl .mec-col-11,body.rtl .mec-col-12,body.rtl .mec-col-2,body.rtl .mec-col-3,body.rtl .mec-col-4,body.rtl .mec-col-5,body.rtl .mec-col-6,body.rtl .mec-col-7,body.rtl .mec-col-8,body.rtl .mec-col-9{float:right;margin:0 1% 0 0}body.rtl .wns-be-sidebar li .submneu-hover{right:auto;left:-222px}body.rtl .wns-be-sidebar li .submneu-hover:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:auto;right:-1px;top:14px}body.rtl #mec_styles_form #mec_styles_CSS{direction:ltr}body.rtl .w-box.mec-activation{-moz-transform:scaleY(-1);-o-transform:scaleY(-1);-webkit-transform:scaleY(-1);transform:scaleX(-1)}body.rtl .w-box.mec-activation .w-box-content,body.rtl .w-box.mec-activation .w-box-head{-moz-transform:scaleY(-1);-o-transform:scaleY(-1);-webkit-transform:scaleY(-1);transform:scaleX(-1);display:block}body.rtl .w-box.mec-activation .w-box-head{width:100%}body.rtl .wns-be-container #wns-be-infobar:before{left:auto;right:0}body.rtl .wns-be-container .dpr-btn.dpr-save-btn{float:left}body.rtl .wns-be-container .wns-be-group-tab h2:before,body.rtl .wns-be-container .wns-be-group-tab h4:before{left:auto;right:0;margin-right:0;margin-left:5px}body.rtl #mec_gateways_form .mec-tooltip{float:left}.mec-details-addons-container{margin-top:20px}.mec-details-addons-wrap img{float:left;width:19%;margin-right:17px}.mec-details-addons-wrap{clear:both;margin-bottom:80px;display:block;position:relative}.mec-details-addons-wrap a{text-decoration:none}.mec-details-addons-wrap p{float:left;width:340px;margin-top:0;margin-bottom:30px}.mec-details-addons-title{font-weight:700}.mec-details-addons-title a{color:#444}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx{border-radius:10px!important;box-shadow:0 4px 38px rgba(0,0,0,.14)!important}body .crisp-client .crisp-1rjpbb7 .crisp-13qutdl,body .crisp-client .crisp-1rjpbb7 .crisp-13qutdl *,body .crisp-client .crisp-1rjpbb7 .crisp-9dgo7z,body .crisp-client .crisp-1rjpbb7 .crisp-9dgo7z *{font-family:proxima-nova,-apple-system,BlinkMacSystemFont,"Segoe UI",Catamaran,sans-serif!important}body .crisp-client .crisp-1rjpbb7 .crisp-145mbcr,body .crisp-client .crisp-1rjpbb7 .crisp-1jrqqbm:hover{background-color:#fff!important}body .crisp-client .crisp-1rjpbb7 .crisp-14u434g{border-color:#e7e8e9!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-1bkorcf .crisp-1vzg1qq{font-size:20px!important;width:14px!important;height:19px!important;opacity:.85}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-1bkorcf .crisp-1vzg1qq:hover{opacity:.99}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-1sps3eb .crisp-1vd2grm .crisp-12w4w1a{font-size:13px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-1sps3eb .crisp-1vd2grm .crisp-12w4w1a::-webkit-input-placeholder{color:#717273!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=visitor] .crisp-z89v5n .crisp-162m9xf{background-color:#008aff!important;color:#fff!important;box-shadow:none!important;border-radius:5px!important;padding:15px 25px 15px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=visitor] .crisp-z89v5n .crisp-162m9xf .crisp-1o2g4mc{color:#fff!important;font-size:13px!important;letter-spacing:.3px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-z89v5n .crisp-162m9xf{background-color:#f1f2f3!important;border-radius:5px!important;padding:15px 25px 15px!important;box-shadow:none!important;color:#121314!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-type=audio] .crisp-z89v5n .crisp-162m9xf{background-color:#d1d7dc!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=operator] .crisp-z89v5n .crisp-1o2g4mc{color:#121314!important;-webkit-text-fill-color:#121314!important;font-size:13px!important;letter-spacing:.3px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-mkirz6 .crisp-12qaym5 .crisp-39hskb{opacity:.4;margin-right:5px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-mkirz6 .crisp-12qaym5 .crisp-ehr6mw{opacity:.68;font-size:12px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg{background-image:linear-gradient(125deg,#008aff -10%,#0066b1 100%)!important;height:110px!important;padding-top:35px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-1uw6f17,body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-85evuk,body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-nu40j6{font-size:17px!important;line-height:28px!important;padding-top:10px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-kquevr .crisp-x94m06{background-color:#008aff!important;background-image:linear-gradient(125deg,#008aff -10%,#008af0 100%)!important;box-shadow:0 5px 34px -6px #008aff!important}body .crisp-client .crisp-1rjpbb7 .crisp-4oo1n4{background-color:transparent!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx[data-chat-status=ongoing] .crisp-1784wh6 .crisp-1xmtdlg .crisp-172kolj{margin-top:-10px!important}body .crisp-client .crisp-1rjpbb7[data-last-operator-face=false] .crisp-1rf4xdh .crisp-kquevr .crisp-x94m06 .crisp-16qgsyi .crisp-101bp3x[data-is-ongoing=false]{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1OCIgaGVpZ2h0PSI1NSIgdmlld0JveD0iMCAwIDU4IDU1Ij4NCiAgPGcgaWQ9ImNoYXQtc3ZncmVwby1jb21fMV8iIGRhdGEtbmFtZT0iY2hhdC1zdmdyZXBvLWNvbSAoMSkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgLTEuNSkiPg0KICAgIDxwYXRoIGlkPSJQYXRoXzEiIGRhdGEtbmFtZT0iUGF0aCAxIiBkPSJNMjksMS41YzE2LjAxNiwwLDI5LDExLjY0MSwyOSwyNmEyNC4wMSwyNC4wMSwwLDAsMS00LjgsMTQuMzE4Yy40LDQuNzQ1LDEuNTQyLDExLjQyOCw0LjgsMTQuNjgyLDAsMC05Ljk0My0xLjQtMTYuNjc3LTUuNDYybC0uMDIyLjAwOWMtMi43NjQtMS44LTUuNTMyLTMuNjU2LTYuMS00LjEyNmExLDEsMCwwLDAtMS4zMy0uMjc3LDEuMDE3LDEuMDE3LDAsMCwwLS40ODkuODQ4Yy0uMDEuNjIyLjAwNS43ODQsNS41ODUsNC40MjFBMzEuOTE0LDMxLjkxNCwwLDAsMSwyOSw1My41Yy0xNi4wMTYsMC0yOS0xMS42NDEtMjktMjZTMTIuOTg0LDEuNSwyOSwxLjVaIiBmaWxsPSIjZmZmIi8+DQogICAgPGNpcmNsZSBpZD0iRWxsaXBzZV8xIiBkYXRhLW5hbWU9IkVsbGlwc2UgMSIgY3g9IjMiIGN5PSIzIiByPSIzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMiAyNC41KSIgZmlsbD0iIzAwOGFmZiIvPg0KICAgIDxjaXJjbGUgaWQ9IkVsbGlwc2VfMiIgZGF0YS1uYW1lPSJFbGxpcHNlIDIiIGN4PSIzIiBjeT0iMyIgcj0iMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjYgMjQuNSkiIGZpbGw9IiMwMDhhZmYiLz4NCiAgICA8Y2lyY2xlIGlkPSJFbGxpcHNlXzMiIGRhdGEtbmFtZT0iRWxsaXBzZSAzIiBjeD0iMyIgY3k9IjMiIHI9IjMiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQwIDI0LjUpIiBmaWxsPSIjMDA4YWZmIi8+DQogIDwvZz4NCjwvc3ZnPg0K)!important;height:31px!important;top:16px!important;left:14px!important}body .csh-category-item a h6{text-align:left}.mec-form-row.mec-syn-schedule{background:#f7f7f7;padding:20px;border:1px solid #eee;box-shadow:0 1px 11px rgba(0,0,0,.034);margin-bottom:20px}.mec-form-row.mec-syn-schedule p{padding-left:26px}.mec-form-row.mec-syn-schedule h2{margin-top:0}.mec-form-row.mec-syn-schedule h4{margin:10px 0}li.wns-be-group-menu-li.mec-settings-menu .mec-settings-submenu{position:absolute;top:-1px;right:-222px;width:220px;z-index:9;background:#fff;border:1px;border-style:solid;border-color:#dedede;margin:0;overflow:visible;opacity:0;visibility:hidden;transition:all .23s ease;padding-top:8px;padding-bottom:12px}li.wns-be-group-menu-li.mec-settings-menu:hover>.mec-settings-submenu{visibility:visible;opacity:1}.mec-settings-menu .mec-settings-submenu:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-15px;top:14px;border-right-color:#c5c5c5;right:0}.mec-settings-menu .mec-settings-submenu:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-14px;top:14px}.wns-be-sidebar .mec-settings-menu .mec-settings-submenu a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 26px}.mec-form-row.mec-skin-countdown-date-format-container input[type=text],.mec-form-row.mec-skin-grid-date-format-container input[type=text],.mec-form-row.mec-skin-list-date-format-container input[type=text],.mec-skin-options-container input[type=text]{max-width:unset}.wn-mec-select{width:32.33333333%!important;clear:unset!important}.wn-mec-select{-webkit-tap-highlight-color:transparent;background-color:#fff;border-radius:3px;border:1px solid #ddd;margin-bottom:8px;position:relative;text-align:left!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;box-shadow:0 3px 13px -5px rgba(0,0,0,.1),inset 0 1px 2px rgba(0,0,0,.07)}.wn-mec-select:hover{border-color:#dbdbdb}.wn-mec-select.open .list{overflow:unset;width:100%;margin:0}.wn-mec-select .list{background-color:#fff;border-radius:2px;box-shadow:0 2px 33px -2px rgba(0,0,0,.2),inset 0 1px 2px rgba(0,0,0,.07);box-sizing:border-box;margin-top:4px;opacity:0;overflow:hidden;padding:0;pointer-events:none;position:absolute;top:100%;left:0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0;-webkit-transform:scale(.75) translateY(-21px);-ms-transform:scale(.75) translateY(-21px);transform:scale(.75) translateY(-21px);-webkit-transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;z-index:9}.wn-mec-select{-webkit-tap-highlight-color:transparent;background-color:#fff;border-radius:5px;border:solid 1px #e8e8e8;box-sizing:border-box;clear:both;cursor:pointer;display:block;float:left;font-family:inherit;font-size:14px;font-weight:400;height:42px;line-height:40px;outline:0;padding-left:18px;padding-right:30px;position:relative;text-align:left!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap;width:auto}.wn-mec-select:hover{border-color:#dbdbdb}.wn-mec-select:after{border-bottom:2px solid #999;border-right:2px solid #999;content:'';display:block;height:5px;margin-top:-4px;pointer-events:none;position:absolute;right:12px;top:50%;-webkit-transform-origin:66% 66%;-ms-transform-origin:66% 66%;transform-origin:66% 66%;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:all .15s ease-in-out;transition:all .15s ease-in-out;width:5px}.wn-mec-select.open:after{-webkit-transform:rotate(-135deg);-ms-transform:rotate(-135deg);transform:rotate(-135deg)}.wn-mec-select.open .list{opacity:1;pointer-events:auto;-webkit-transform:scale(1) translateY(0);-ms-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}.wn-mec-select.disabled{border-color:#ededed;color:#999;pointer-events:none}.wn-mec-select.disabled:after{border-color:#ccc}.wn-mec-select.wide{width:100%}.wn-mec-select.wide .list{left:0!important;right:0!important}.wn-mec-select.right{float:right}.wn-mec-select.right .list{left:auto;right:0}.wn-mec-select.small{font-size:12px;height:36px;line-height:34px}.wn-mec-select.small:after{height:4px;width:4px}.wn-mec-select .list{background-color:#fff;border-radius:5px;box-shadow:0 0 0 1px rgba(68,68,68,.11);box-sizing:border-box;margin-top:4px;opacity:0;overflow:hidden;padding:0;pointer-events:none;position:absolute;top:100%;left:0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0;-webkit-transform:scale(.75) translateY(-21px);-ms-transform:scale(.75) translateY(-21px);transform:scale(.75) translateY(-21px);-webkit-transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;z-index:9}.wn-mec-select .list:hover .option:not(:hover){background-color:transparent!important}.wn-mec-select .option{cursor:pointer;font-weight:400;list-style:none;min-height:40px;outline:0;text-align:left;position:relative;font-size:12px!important;padding:1px 12px!important;margin:0!important;line-height:28px!important;min-height:28px!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.wn-mec-select .option .wn-hover-img-sh img{position:absolute;padding:3px;top:-1px;left:100%;box-shadow:0 4px 42px -5px rgba(0,0,0,.16);visibility:hidden;opacity:0;border:1px solid #e3e3e3;border-radius:2px;z-index:99999999;background:#fff}.wn-mec-select .option:hover .wn-hover-img-sh img{visibility:visible;opacity:1}.wn-mec-select .option.focus,.wn-mec-select .option.selected.focus,.wn-mec-select .option:hover{background-color:#f6f6f6}.wn-mec-select .option.selected{font-weight:700}.wn-mec-select .option.disabled{background-color:transparent;color:#999;cursor:default}.no-csspointerevents .wn-mec-select .list{display:none}.no-csspointerevents .wn-mec-select.open .list{display:block}.mec-custom-nice-select ul.list li.option{width:30%!important;float:left!important;min-height:135px!important;height:135px;margin:1.66%!important;box-sizing:border-box;text-align:center;padding:10px!important;border-radius:3px;border:1px solid #eee;box-shadow:0 1px 3px rgba(0,0,0,.025);background:#fff!important}.mec-custom-nice-select ul.list li.option:hover{box-shadow:0 2px 7px rgba(0,0,0,.06);borde-color:#e0e0e0}.mec-custom-nice-select .list:hover .option:not(:hover),.mec-custom-nice-select ul.list:hover li.option{background:#fff!important}.mec-custom-nice-select ul.list{min-width:600px!important;padding:20px 10px!important;background:#fcfbfd;border:1px solid #e9e9e9;box-shadow:0 1px 4px rgba(0,0,0,.05)}.mec-custom-nice-select ul.list li.option.selected{border:1px solid #40d9f1;box-shadow:0 1px 8px -3px #40d9f1 inset;color:#00cae6;padding:12px 0 0 0!important}.mec-custom-nice-select .wn-img-sh img{margin:4px 0 1px 1px;line-height:1;max-width:68px;max-height:56px;filter:grayscale(1);-webkit-filter:grayscale(1);transition:all .22s ease;-webkit-transition:all .22s ease;-moz-transition:all .22s ease;-ms-transition:all .22s ease;-o-transition:all .22s ease}.wn-mec-select .option.focus .wn-img-sh img,.wn-mec-select .option.selected.focus .wn-img-sh img,.wn-mec-select .option:hover .wn-img-sh img{background-color:#f6f6f6;filter:grayscale(0);-webkit-filter:grayscale(0)}@media(max-width:768px){.wn-mec-select{width:45%!important}.mec-custom-nice-select ul.list{margin-left:-24px!important;min-width:404px!important}.mec-custom-nice-select ul.list li.option{width:46.6%!important}.wn-hover-img-sh{display:none}}@media(max-width:480px){.wn-mec-select{width:100%!important}.mec-custom-nice-select ul.list{min-width:337px!important}}@media(max-width:320px){.mec-custom-nice-select ul.list li.option{width:100%!important}.mec-custom-nice-select ul.list{min-width:298px!important}}.mec-sed-methods li{line-height:28px;padding-left:38px;position:relative}.mec-sed-methods li:before{margin-right:0}.mec-sed-methods li:before{border-radius:18px}.mec-custom-nice-select ul.list li .wn-mec-text:after,.mec-sed-methods li:before{content:"";position:absolute;display:inline-block;background:#fff;border-radius:2px;width:12px;height:12px;margin:-1px 0 0 -1px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32);border-radius:50%}.mec-custom-nice-select ul.list li .wn-mec-text{position:relative;padding-top:0;padding-bottom:28px}.mec-custom-nice-select ul.list li .wn-mec-text:after{left:calc(50% - 7px);top:auto;bottom:1px}.mec-custom-nice-select ul.list li .wn-img-sh{line-height:1}.mec-sed-methods li:before{left:9px;top:calc(50% - 7px)}.mec-custom-nice-select ul.list li.option.selected .wn-mec-text:after,.mec-sed-methods li.active:before{width:4px;height:4px;border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff}.menu-icon-mec-books .wp-menu-image img,.toplevel_page_mec-intro .wp-menu-image img{width:18px!important;padding-top:7px!important}.mec-add-booking-tabs-wrap,.mec-add-event-tabs-wrap,.mec-create-shortcode-tabs-wrap{display:flex;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox}.mec-add-booking-tabs-left,.mec-add-event-tabs-left,.mec-create-shortcode-tabs-left{flex:1}.mec-add-booking-tabs-right,.mec-add-event-tabs-right,.mec-create-shortcode-tabs-right{flex:6}a.mec-add-booking-tabs-link,a.mec-add-event-tabs-link,a.mec-create-shortcode-tabs-link{display:block}.mec-booking-tab-content,.mec-create-shortcode-tab-content,.mec-event-tab-content{display:none;transition:all .3s ease}.mec-booking-tab-content.mec-tab-active,.mec-create-shortcode-tab-content.mec-tab-active,.mec-event-tab-content.mec-tab-active{display:block}.mec-add-booking-tabs-wrap,.mec-add-event-tabs-wrap{background:#fff;margin:-6px -12px -12px}.mec-create-shortcode-tabs-wrap{margin:-30px -22px -42px}.mec-add-booking-tabs-left,.mec-add-event-tabs-left,.mec-create-shortcode-tabs-left{padding:0 0 38px;background:#fff;min-width:210px}.mec-add-booking-tabs-left a,.mec-add-event-tabs-left a,.mec-create-shortcode-tabs-left a{line-height:16px;font-size:13px;font-weight:600;letter-spacing:.3px;color:#6a6f77;text-decoration:none;background:#f7f7f7;padding:13px 20px;border-bottom:1px solid #e3e3e3;outline:0;box-shadow:none;transition:all .2s ease}.mec-add-booking-tabs-left a:hover,.mec-add-event-tabs-left a:hover,.mec-create-shortcode-tabs-left a:hover{color:#008aff;background:#fff}.mec-add-booking-tabs-left a.mec-tab-active,.mec-add-event-tabs-left a.mec-tab-active,.mec-create-shortcode-tabs-left a.mec-tab-active{background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff;margin:0 -6px;border-radius:5px;box-shadow:0 2px 12px -5px #36a2ff;border-bottom-color:transparent;position:relative}.mec-add-booking-tabs-right,.mec-add-event-tabs-right,.mec-create-shortcode-tabs-right{padding:0 30px 40px;border-left:1px solid #e2e2e2}.mec-booking-tab-content.mec-tab-active,.mec-create-shortcode-tab-content.mec-tab-active,.mec-event-tab-content.mec-tab-active{animation:fadeEffect2 .31s}@media (max-width:550px){.mec-add-booking-tabs-left,.mec-add-event-tabs-left,.mec-create-shortcode-tabs-left{min-width:100px}.mec-add-booking-tabs-left a,.mec-add-event-tabs-left a,.mec-create-shortcode-tabs-left a{font-size:11px;padding:12px 8px;line-height:1.2;letter-spacing:0}}@keyframes fadeEffect2{from{opacity:0;transform:translateX(11px)}to{opacity:1;transform:translateX(0)}}.mec-form-row .mec-col-8 label{padding-right:20px}.mec-calendar-metabox .wn-mec-select,.mec-form-row input[type=number],.mec-form-row input[type=text],.mec-form-row select,.mec-form-row textarea,.mec-form-row.mec-skin-list-date-format-container input[type=text]{border:solid 1px #ddd;border-radius:2px;height:40px;line-height:38px;padding-left:10px;box-shadow:0 3px 10px -2px rgba(0,0,0,.05),inset 0 1px 2px rgba(0,0,0,.02)}.mec-calendar-metabox .wn-mec-select.open .list{border-radius:0 0 2px 2px;box-shadow:0 0 0 1px #ddd,0 2px 6px rgba(0,0,0,.07)}.mec-calendar-metabox .mec-custom-nice-select.open ul.list{border-radius:3px;box-shadow:0 2px 6px rgba(0,0,0,.07);margin-left:0!important;transform:translateX(-50%);left:50%}.mec-custom-nice-select ul.list li.option.selected .wn-mec-text:after{border:6px solid #40d9f1;box-shadow:0 3px 16px -3px #40d9f1}.mec-form-row input[type=checkbox]{background-color:#fff;border:1px solid #cacece;box-shadow:0 1px 2px rgba(0,0,0,.05);padding:9px;border-radius:3px;min-width:24px;min-height:24px;display:inline-block;transition:all .18s ease;outline:0;margin:2px 4px 4px 0}.mec-form-row input[type=checkbox]:focus{outline:0}.mec-form-row input[type=checkbox]:hover{border-color:#62b6ff}.mec-form-row input[type=checkbox]:checked{box-shadow:0 1px 6px -2px #008aff;border-color:#008aff;background:#008aff;border-radius:2px;position:relative}.mec-form-row.mec-switcher input[type=checkbox]{position:absolute}.mec-form-row input[type=checkbox]:checked:before{content:"";font:normal;position:absolute;top:12px;left:8px;border-right:2px solid transparent;border-bottom:2px solid transparent;transform:rotate(45deg);transform-origin:0 100%;color:#fff;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards}@keyframes checkbox-check{0%{width:0;height:0;border-color:#fff;transform:translate3d(0,0,0) rotate(45deg)}33%{width:5px;height:0;transform:translate3d(0,0,0) rotate(45deg)}100%{width:5px;height:11px;border-color:#fff;transform:translate3d(0,-11px,0) rotate(45deg)}}.mec-form-row input+span.mec-tooltip,.mec-form-row select+span.mec-tooltip{bottom:10px}.mec-form-row label+span.mec-tooltip{bottom:8px}.mec-form-row textarea+span.mec-tooltip{bottom:auto;vertical-align:top;top:12px}.mec-form-row span+span.mec-tooltip{bottom:0;vertical-align:middle}.mec-form-row .mec-col-8 input[type=text],.mec-form-row .mec-col-8 select,.mec-form-row .mec-col-8 span.mec-archive-skins{vertical-align:top}.mec-form-row .mec-col-8 span.mec-archive-skins input[type=text]{max-width:225px}.mec-form-row input:disabled{opacity:.6;background:#f6f6f6}.wns-be-group-tab h5{font-size:16px;font-weight:600;color:#444;margin:45px 0 25px}.mec-form-row textarea{height:auto;margin-bottom:0;min-height:60px}.mec-form-row .wp-picker-container input[type=text].wp-color-picker{height:25px;vertical-align:top;margin:0}.mec-form-row .wp-picker-container label{margin:0}.mec-image-select-wrap li span:hover{border-color:#fff;box-shadow:0 1px 8px rgba(0,0,0,.12)}.mec-message-categories li.mec-acc-label:after{content:"\e604";font-family:simple-line-icons;speak:none;font-style:normal;font-weight:400;display:block;font-size:13px;color:#999;position:absolute;right:27px;top:26px}.mec-message-categories>li.mec-acc-label[data-status=open]:after{content:"\e607";color:#008aff}.mec-message-categories>li.mec-acc-label[data-status=open]{color:#008aff}.mec-message-categories>li.mec-acc-label:last-of-type{border-bottom:none}.mec-message-categories>li.mec-acc-label[data-status=open]{border-bottom:1px solid #e6e6e6}.mec-form-row ul.mec-message-categories{box-shadow:0 2px 16px rgba(0,0,0,.03);border-radius:5px;overflow:hidden;margin-top:30px;background:#f5f5f5;border:2px solid #e6e6e6;max-width:700px}.mec-form-row ul.mec-message-categories li ul{padding:10px 40px 40px;margin:25px -30px -25px;background:#f5f5f5;box-shadow:inset 0 4px 7px rgba(0,0,0,.04);cursor:default}.mec-form-row ul.mec-message-categories ul label{margin:25px 8px 7px;font-weight:600!important;font-size:13px;color:#888;cursor:default}.wns-be-sidebar li:hover a i,.wns-be-sidebar>li:hover a{color:#008aff}.mec-form-row.mec-skin-list-date-format-container span.mec-tooltip{top:2px}.mec-calendar-metabox .mec-form-row input[type=checkbox],.mec-meta-box-fields .mec-form-row input[type=checkbox]{margin-right:6px}.mec-meta-box-fields .mec-form-row .button:not(.wp-color-result){height:37px;margin-top:1px;box-shadow:inset 0 2px 4px #fff,inset 0 -2px 4px rgba(0,0,0,.05),0 2px 2px rgba(0,0,0,.06)}#mec-read-more .mec-form-row span.mec-tooltip{top:2px;left:-4px}#mec-search-settings{border-radius:21px;min-height:32px;box-shadow:inset 0 1px 2px rgba(0,0,0,.06);padding:9px 10px 12px 34px;margin-right:10px;color:#7c838a;font-size:13px;width:260px;background:#f5f5f5;border:none;z-index:1;transition:all .18s ease;outline:0;line-height:normal}#mec-search-settings:focus{background:#fff;box-shadow:0 1px 6px rgba(0,0,0,.07),0 0 0 1px #e6e6e6;width:270px}.mec-search-settings-wrap{display:inline-block;position:relative}.mec-search-settings-wrap i{position:absolute;left:14px;top:14px;font-size:13px;color:#7e8c98;display:block;z-index:2}#mec-search-settings::-webkit-input-placeholder{color:#7c838a}#mec-search-settings::-moz-placeholder{color:#7c838a}#mec-search-settings:-ms-input-placeholder{color:#7c838a}#mec-search-settings:-moz-placeholder{color:#7c838a}.ui-datepicker.ui-widget{border:1px solid #e8e8e8;box-shadow:0 1px 9px rgba(0,0,0,.12)}.ui-datepicker.ui-widget select{font-weight:600;font-size:12px;border-radius:2px;padding:2px 10px;margin:1px 3px 5px}.ui-datepicker.ui-widget table{border-spacing:2px}.ui-datepicker.ui-widget td,.ui-datepicker.ui-widget tr{padding:0;background:0 0!important}.ui-datepicker.ui-widget td a{color:#777;font-weight:600;width:30px;height:30px;line-height:30px;display:inline-block;border-radius:33px;padding:0;background:#fff;transition:all .2s ease}.ui-datepicker.ui-widget td a.ui-state-active,.ui-datepicker.ui-widget td a:hover{background:#40d9f1;color:#fff}.ui-datepicker.ui-widget .ui-datepicker-next,.ui-datepicker.ui-widget .ui-datepicker-prev{color:#40d9f1;width:30px;height:30px;line-height:30px;display:inline-block;text-align:center;border-radius:33px;background:#ecfcff;transition:all .2s ease}.ui-datepicker.ui-widget .ui-datepicker-next:hover,.ui-datepicker.ui-widget .ui-datepicker-prev:hover{background:#fff;box-shadow:0 0 7px -3px rgba(0,0,0,.4)}#mec-wrap{width:92%;margin:20px auto;max-width:1384px}#mec-wrap h2.nav-tab-wrapper{margin-bottom:40px;padding:0;border:none;margin-top:35px;clear:both;background:#fff;box-shadow:0 3px 12px -4px rgba(0,0,0,.13)}#mec-wrap .nav-tab-wrapper .nav-tab{position:relative;padding:28px 22px;border:none;margin:0;background:#fff;font-size:13px;color:#444;outline:0;box-shadow:none}#mec-wrap .nav-tab-wrapper .nav-tab:hover{color:#008aff}#mec-wrap .nav-tab-wrapper .nav-tab:after{content:"";display:inline-block;width:1px;height:30%;position:absolute;right:0;top:35%;background:#e9e9e9}#mec-wrap .nav-tab-wrapper .nav-tab-active,#mec-wrap .nav-tab-wrapper .nav-tab-active:focus,#mec-wrap .nav-tab-wrapper .nav-tab-active:focus:active,#mec-wrap .nav-tab-wrapper .nav-tab-active:hover{background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff;outline:0;box-shadow:0 5px 25px -7px #008aff;margin-left:-1px;z-index:2}#mec-wrap .nav-tab-wrapper .nav-tab-active:after{content:'';position:absolute;display:block;background:0 0;top:auto;height:auto;bottom:-20px;left:50%;margin-left:-10px;width:0;border-width:10px;border-style:solid;border-color:#008aff transparent transparent}#mec-wrap .mec-container{padding:25px 40px 40px;box-shadow:0 3px 10px -4px rgba(0,0,0,.1)}#wpwrap .mec-button-primary{color:#fff;font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s}#wpwrap .mec-button-primary:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 15px -7px rgba(0,0,0,.5);cursor:pointer}.wn-p-t-right{min-width:300px;max-width:400px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.5;position:absolute;z-index:99999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s;padding:20px;border-radius:8px}.wn-p-t-right i{position:absolute!important;top:100%;right:50%;margin-top:-6px!important;margin-right:-6px!important;width:12px;height:24px;overflow:hidden;transform:rotate(-90deg)}.wn-p-t-right i:after{content:'';position:absolute;width:12px;height:12px;left:0;top:50%;transform:translate(50%,-50%) rotate(-45deg);background-color:#535a61;box-shadow:0 8px 9px -4px #535a61}.wn-p-t-right .wn-p-t-text-content h5{color:#fff;font-size:17px;font-weight:600;margin:-20px;padding:15px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #32363a;border-radius:6px 6px 0 0}.mec-addon-box-footer a:hover .wn-p-t-right{visibility:visible;opacity:1}#mec_organizer_user+.select2-container,#mec_speaker_user+.select2-container{min-width:224px!important}.mec-add-event-tabs-wrap .select2-container,.mec-create-shortcode-tab-content .select2-container{min-height:38px;height:auto;box-sizing:border-box;margin-bottom:8px;padding:0 6px;border-radius:2px;border:1px solid #ddd;box-shadow:inset 0 1px 6px rgba(0,0,0,.07);background-color:#fff;color:#32373c;outline:0;transition:50ms border-color ease-in-out;min-width:200px;font-size:14px}.mec-add-event-tabs-wrap .select2-selection,.mec-create-shortcode-tab-content .select2-selection{border:none;background:0 0;padding-top:3px;width:100%;height:100%}.mec-add-event-tabs-wrap .select2-container--default.select2-container--focus .select2-selection,.mec-create-shortcode-tab-content .select2-container--default.select2-container--focus .select2-selection{border:none!important;outline:0}.mec-add-event-tabs-wrap .select2-container--default .select2-selection--single .select2-selection__arrow,.mec-create-shortcode-tab-content .select2-container--default .select2-selection--single .select2-selection__arrow{top:5px;right:4px}.fs-webform-container div .fserv-container{width:100%!important;max-width:none!important;min-height:208px!important;box-shadow:0 1px 16px rgba(0,0,0,.034)!important;border-radius:2px!important;padding:0!important;margin-bottom:0!important;margin-top:30px!important}.fserv-container .fserv-form-name{font-weight:600!important;position:relative!important;font-size:20px!important;padding:20px!important;border-bottom:1px solid #ededed!important;text-align:left!important;margin:0!important}.fserv-form-description{padding:10px 30px!important;margin:1em 0 0!important;line-height:1.5!important;font-size:16px!important}.fserv-container form{padding:0!important;padding-left:28px!important}.fserv-container .fserv-label{display:none!important}.fserv-field{display:inline-block;width:41%!important;padding:0!important;margin:0!important;margin-right:25px!important}.fserv-field+div:not(.fserv-field){margin:0!important;border:none!important;text-align:left!important;padding-left:4px!important;margin-top:0!important;padding-top:0!important;display:inline-block;margin-right:10px!important}.fserv-container .powered-by{display:none!important}button.fserv-button-submit{color:#fff!important;font-weight:500!important;border-radius:2px!important;box-shadow:0 3px 10px -4px #008aff!important;text-shadow:none!important;background:#008aff!important;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%)!important;border:none!important;transition:.24s!important}button.fserv-button-submit:hover{background:#222!important;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%)!important;box-shadow:0 5px 23px -7px rgba(0,0,0,.5)!important;cursor:pointer!important}.fserv-container input::-webkit-input-placeholder{font-family:Inherit!important;font-size:14px}.fserv-container input::-moz-placeholder{font-family:Inherit!important;font-size:14px}.fserv-container input:-ms-input-placeholder{font-family:Inherit!important;font-size:14px}.fserv-container input:-moz-placeholder{font-family:Inherit!important;font-size:14px}input.fserv-input-text{height:38px;box-sizing:border-box;margin-bottom:8px;padding:0 6px;box-shadow:none;border-radius:2px;box-shadow:inset 0 1px 5px rgba(0,0,0,.05)}.fserv-field label.error{display:none!important}.fs-notifier{position:fixed!important;top:40px!important;width:300px!important;max-width:300px!important;margin:0!important;right:20px!important;left:unset!important}.post-type-mec-events .lity{background:#edf0f3}.post-type-mec-events .lity-container{width:60vW;max-width:883px;margin:0 auto;border-radius:7px}.post-type-mec-events .lity-content:after{display:none}.mec-manage-events-lightbox{box-shadow:0 3px 20px rgba(0,0,0,.05)}.w-clearfix.mec-attendees-content img{display:inline-block;width:25px;height:25px;vertical-align:middle;margin-right:7px}.post-type-mec-events .mec-attendees-list-head{background:#008aff;color:#fff;text-align:center;padding:17px 0;text-transform:capitalize;font-size:26px;font-weight:700;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;border-radius:7px 7px 0 0;line-height:43px;box-shadow:0 3px 15px rgba(0,138,255,.25);z-index:99}.mec-attendees-list-wrap{display:flex;width:100%;flex-direction:column;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;background:#fff;box-shadow:0 3px 20px rgba(0,0,0,.05);border-radius:0 0 5px 5px;overflow:hidden}.mec-attendees-list-left{flex:1;background:#f6f8fa;padding:0;border-radius:0;position:relative}.mec-attendees-list-right,.mec-send-email-form-wrap{flex:1;border-radius:0 0 5px 5px;padding:0 20px 20px;background:#f2f4f7}.mec-attendees-list-left-menu a{display:inline-block;line-height:22px;font-size:12px;color:#000;font-weight:500;border-bottom:1px solid #eaebec;border-left:1px solid #eaebec;padding-bottom:0;padding:7px 6px;margin-bottom:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;transition:all .2s ease;text-decoration:none;text-align:center}.mec-attendees-list-left-menu a.selected-day{color:#008aff}.mec-attendees-list-left-menu .owl-item:last-child a{border-right:1px solid #eaebec}.mec-attendees-list-right table{width:100%}.w-clearfix.mec-attendees-head{margin-top:30px;border-bottom:2px solid #008aff;padding-bottom:18px;margin-bottom:3px}.w-clearfix.mec-attendees-content [class^=w-col-xs-],.w-clearfix.mec-attendees-head [class^=w-col-xs-]{padding:0}.w-clearfix.mec-attendees-head span{font-weight:600;color:#000;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;font-size:17px}.w-clearfix.mec-attendees-content{background:#fff;margin-bottom:2px;padding:10px 20px}.mec-attendees-list-left-menu{height:36px;margin-left:35px;margin-right:36px}.mec-attendees-list-left-menu a:active,.mec-attendees-list-left-menu a:focus,.mec-attendees-list-left-menu a:visited{outline:0;box-shadow:none}.mec-attendees-list-left-menu .owl-item{display:inline-block}.mec-attendees-list-left-menu .owl-stage{min-width:800px!important}.owl-nav.disabled .owl-next{position:absolute;right:0;top:0}.owl-nav.disabled .owl-prev{position:absolute;left:0;top:0}.owl-nav.disabled button{background:#fff;box-shadow:none;border:1px solid #ccc;height:36px;width:36px;font-size:54px;line-height:54px}.owl-nav.disabled button span{margin-top:-18px;display:block}.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}@media(max-width:992px){.post-type-mec-events .lity-container{width:80vw}}@-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-report-backtoselect-wrap,.mec-report-sendmail-form-wrap{display:none}.mec-report-select-event-wrap .select2{width:100%!important}.mec-report-select-event-wrap .select2-container--default .select2-selection--single{border-radius:2px;border:1px solid #e2e3e4;height:38px;padding-top:5px;width:100%;box-shadow:0 2px 3px rgba(0,0,0,.03)}.mec-report-select-event-wrap .select2-container--default .select2-selection--single .select2-selection__arrow{height:36px}.mec-report-select-event-wrap .select2-container--open .select2-dropdown--below{box-shadow:0 2px 8px rgba(0,0,0,.12);border-color:#d7d8d9}.select2-container--default .select2-search--dropdown .select2-search__field{box-shadow:0 2px 8px rgba(0,0,0,.06) inset;border-color:#d7d8d9;border-radius:2px}.mec-report-select-event-wrap input[type=text],.mec-report-select-event-wrap select{border:1px solid #e2e3e4;font-size:13px;font-weight:400;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;margin-bottom:15px;border-radius:2px;box-shadow:0 2px 3px rgba(0,0,0,.03);max-width:150px}.mec-report-select-event-wrap .select2-container--default{max-width:400px}.mec-report-select-event-wrap select.mec-reports-selectbox-dates{height:38px;min-width:260px;margin:0 0 0 10px;padding-left:15px}.mec-report-sendmail-form-wrap,.mec-report-sendmail-wrap{padding:30px 15px;background:#fff;border:1px solid #e2e3e4;margin:15px 0 5px;border-radius:2px;box-shadow:0 1px 4px rgba(0,0,0,.02)}.mec-report-sendmail-wrap .w-col-sm-12:before{background:url(../img/email-document.png) no-repeat left top;content:"";display:block;width:90px;height:70px;z-index:100;float:left}.mec-report-sendmail-wrap p{margin:0 0 15px;font-size:15px;color:#7d8284}.mec-report-backtoselect-wrap button,.mec-report-sendmail-wrap .w-col-sm-12 button,.mec-send-email-form-wrap .mec-send-email-button{background:#19cde9;border:none;color:#fff;font-size:13px!important;padding:6px 16px;border-radius:2px;cursor:pointer;box-shadow:0 1px 2px rgba(25,205,233,.25);transition:all .2s ease}.mec-report-backtoselect-wrap button:hover,.mec-report-sendmail-wrap .w-col-sm-12 button:hover,.mec-send-email-form-wrap .mec-send-email-button:hover{background:#04bfdc;box-shadow:0 1px 2px rgba(25,205,233,.05)}.mec-report-backtoselect-wrap button{margin-top:15px}.mec-report-selected-event-attendees-wrap{border:1px solid #96e3ef;padding:0;margin:20px 0;border-radius:3px;box-shadow:0 2px 14px rgba(25,205,233,.1);display:none}.mec-report-sendmail-wrap{display:none}.mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-head{background:#c7eef4;border-bottom:1px solid #96e3ef;padding:15px;margin:0;border-radius:3px 3px 0 0}.mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-content{margin:0;padding:8px 15px;border-bottom:1px solid #e4eef0;font-size:13px;line-height:25px}.mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-content:hover{background:#f3fdfe}.mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-content:last-child{border-bottom:none;border-radius:0 0 3px 3px}.mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-content img{border-radius:25px;margin-left:8px}.mec-report-selected-event-attendees-wrap input[type=checkbox]{border-radius:3px;margin-top:0}.mec-report-selected-event-attendees-wrap .mec-attendees-head .w-col-xs-2.name{padding-left:10px}.mec-report-selected-event-attendees-wrap .checkin_status span{font-weight:600}.mec-report-selected-event-attendees-wrap .w-col-sm-12>p{text-align:center}.mec-attendees-list-right,.mec-send-email-form-wrap{flex:1;border-radius:0;padding:0;background:0 0;max-width:674px;margin:0 auto}.mec-report-sendmail-form-wrap{padding:0 30px 45px}.mec-send-email-form-wrap h2{background:url(../img/email-document.png) no-repeat center top;padding-top:70px;font-size:22px;font-weight:600;text-align:center;padding-bottom:10px;padding-left:10px;margin-bottom:0}#webnus-dashboard .mec-send-email-form-wrap .wp-editor-tools button{font-size:13px;font-weight:400;color:#444;line-height:1;margin-bottom:0}#webnus-dashboard .mec-send-email-form-wrap .wp-editor-tabs button{min-height:30px}.mec-send-email-form-wrap input.widefat{min-height:40px;border:1px solid #e2e3e4;border-radius:2px;box-shadow:0 1px 4px rgba(0,0,0,.02)}.mec-send-email-form-wrap input.widefat:focus{border:1px solid #96e3ef}.mec-send-email-form-wrap h4.mec-send-email-count{font-weight:400;text-align:center;margin-bottom:30px;margin-top:0;padding-top:0}.mec-send-email-form-wrap .mec-send-email-button{min-height:40px;line-height:40px;padding:0;font-size:17px!important;font-weight:600}.mec-send-email-form-wrap .mce-menubtn.mce-fixed-width span{height:20px;padding-top:2px}.lity.mec-add-shortcode-popup{background-color:#b7e4e3}.lity.mec-add-shortcode-popup .lity-content{box-shadow:0 3px 20px 0 rgba(91,188,190,.55);border-radius:10px;height:100%}.mec-add-shortcode-popup .lity-container{width:930px;height:620px}.mec-add-shortcode-popup .lity-content:after{display:none}.mec-add-shortcode-popup div#mec_popup_shortcode{background:#fff;overflow:hidden;display:flex;width:100%;border-radius:10px;height:100%}.mec-steps-container{width:92px;text-align:center;background:#fff}.mec-steps-panel{width:calc(100% - 92px);background:#eef4f5}.mec-steps-container ul{text-align:center;display:block;margin-top:62px}.mec-steps-container ul li{width:22px;height:70px;margin:0 auto;position:relative}.mec-steps-container ul li span{border-radius:50px;background-color:rgba(26,175,251,.16);width:22px;height:22px;display:inline-block;padding-top:2px;font-size:11px;font-weight:700;color:#1aaffb}.mec-steps-container ul li:after,.mec-steps-container ul li:before{content:'';display:block;height:24px;width:2px;background:rgba(26,175,251,.16);margin-left:calc(50% - 1px)}.mec-steps-container ul li:first-of-type:before,.mec-steps-container ul li:last-of-type:after{display:none}.mec-steps-container ul li:first-of-type{height:46px}li.mec-step.mec-step-passed span,li.mec-step.mec-step-passed:after,li.mec-step.mec-step-passed:before{background-color:#2dcb73;color:#fff}.mec-steps-container img{margin-top:27px}.mec-steps-header{display:flex;background:#fff;border-radius:5px;box-shadow:0 3px 22px 0 rgba(11,121,125,.01);padding:12px 22px;margin-bottom:50px}.mec-steps-header-settings{width:65px}.mec-steps-header-userinfo{width:calc(100% - 65px)}.mec-steps-panel{padding:35px;position:relative;display:flex;flex-direction:column;justify-content:space-between}.mec-steps-header-userinfo span{display:inline-block;vertical-align:middle}.mec-steps-header-userinfo span img{height:40px;border-radius:50px;margin-right:8px;vertical-align:middle}.mec-steps-header-userinfo span.mec-steps-header-name{font-size:14px;color:#778182}span.mec-steps-header-add-text{color:#839294;font-size:12px;margin-left:5px}.mec-steps-header-settings a{height:100%;display:block;padding-top:11px;text-decoration:none;font-size:12px;color:#707070}.mec-steps-header-settings a i{color:#1aaffb;font-size:16px;vertical-align:text-top;margin-right:5px}.mec-next-previous-buttons{clear:both}.mec-next-previous-buttons button.mec-button-next{float:right;background:#008aff;border:none;color:#fff;cursor:pointer;width:123px;text-align:left;padding:8px 18px 9px;border-radius:3px;font-size:14px;box-shadow:0 5px 10px 0 rgba(0,138,255,.3);transition:all .3s ease;outline:0}.mec-next-previous-buttons button:hover{background:#000;box-shadow:0 5px 10px 0 rgba(0,0,0,.3)}.mec-next-previous-buttons button.mec-button-next img{position:absolute;top:16px;right:18px}.mec-next-previous-buttons button{position:relative}.mec-next-previous-buttons button.mec-button-prev{background:#fff;border:none;color:#000;cursor:pointer;width:123px;text-align:right;padding:8px 15px 9px;border-radius:3px;font-size:14px;box-shadow:0 5px 10px 0 rgba(11,121,125,.01);transition:all .3s ease;outline:0}.mec-next-previous-buttons button.mec-button-prev img{position:absolute;top:16px;left:18px}.mec-next-previous-buttons button.mec-button-prev:hover{background:#000;box-shadow:0 5px 10px 0 rgba(0,0,0,.3);color:#fff}.mec-next-previous-buttons button.mec-button-new{background:#008aff;float:right;border:none;color:#fff;cursor:pointer;width:154px;text-align:left;padding:8px 18px 9px;border-radius:3px;font-size:14px;box-shadow:0 5px 10px 0 rgba(0,138,255,.3);transition:all .3s ease;outline:0}.mec-next-previous-buttons button.mec-button-new:hover{background:#000;box-shadow:0 5px 10px 0 rgba(0,0,0,.3)}.mec-next-previous-buttons button.mec-button-new img{vertical-align:sub;margin-left:-3px;margin-right:8px}div#mec_popup_shortcode_form{height:calc(100% - 37px)}.mec-steps-content-container{display:flex;flex-direction:column;height:100%}.mec-steps-content-container.mec-steps-content-1{background:url(../../assets/img/popup/first-step.png) no-repeat 90% 70%}.mec-steps-content-container.mec-steps-content-1 .popup-sh-name-required{color:red;display:none;font-style:italic;font-size:12px;margin-top:8px}.mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1{top:50%;position:absolute;width:360px}.mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1 input[name="shortcode[name]"]{width:360px;height:46px;border:none;border-radius:3px;padding-left:36px;font-size:12px;color:#b1b2b4;box-shadow:0 3px 22px 0 rgba(11,121,125,.01)}.mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1 input[name="shortcode[name]"]::-webkit-input-placeholder{color:#b1b2b4}.mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1 input[name="shortcode[name]"]:-ms-input-placeholder{color:#b1b2b4}.mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1 input[name="shortcode[name]"]::placeholder{color:#b1b2b4}.mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1:before{content:'';width:14px;height:14px;background:url(../../assets/img/add-sh-icon.png) no-repeat center center;position:absolute;top:17px;left:17px}.mec-steps-content-container.mec-steps-content-2 .mec-steps-content.mec-steps-content-2 ul{height:386px;overflow-x:hidden;overflow-y:scroll;padding-left:60px;margin-top:-22px;margin-bottom:0;position:relative;padding-bottom:19px!important}.mec-steps-content-container.mec-steps-content-2 .mec-steps-content.mec-steps-content-2 ul li{width:193px!important;float:left!important;min-height:135px!important;height:160px;margin:1.66%!important;box-sizing:border-box;text-align:center;padding:10px!important;border-radius:5px;border:2px solid #c4edff;background:#fff!important;cursor:pointer}.mec-steps-content-container.mec-steps-content-2 .mec-steps-content.mec-steps-content-2 ul li.active{border-color:#00acf8;box-shadow:0 3px 5px rgba(0,172,248,.2)}.mec-steps-content-container.mec-steps-content-2 .mec-step-popup-skin-img img{margin:4px 0 1px 1px;line-height:1;max-width:68px;max-height:56px;filter:grayscale(1);-webkit-filter:grayscale(1);transition:all .22s ease;-webkit-transition:all .22s ease;-moz-transition:all .22s ease;-ms-transition:all .22s ease;-o-transition:all .22s ease}.mec-steps-content-container.mec-steps-content-2 .mec-step-popup-skin-text input{display:block;margin:0 auto;margin-top:6px;border:2px solid #e1e7ed;box-shadow:0 3px 6px 0 rgba(0,0,0,.05);position:relative}.mec-steps-content-container.mec-steps-content-2 .mec-step-popup-skin-img{padding-top:16px}.mec-steps-content-container.mec-steps-content-2 .mec-steps-content.mec-steps-content-2 ul li .mec-step-popup-skin-text input{display:none}.mec-steps-content-container.mec-steps-content-2 .mec-step-popup-skin-text:before{width:14px;height:14px;content:'';border-radius:50px;background:#fff;display:block;position:absolute;left:calc(50% - 7px);top:24px;z-index:99;border:2px solid #e1e7ed;box-shadow:0 3px 6px 0 rgba(0,0,0,.05)}.mec-steps-content-container.mec-steps-content-2 .mec-step-popup-skin-text{position:relative}.mec-steps-content-container.mec-steps-content-2 li.active .mec-step-popup-skin-text:before{background:#008aff;border:none;box-shadow:0 5px 10px 0 rgba(0,138,255,.3);width:16px;height:16px}.mec-steps-content-container.mec-steps-content-2 li.active .mec-step-popup-skin-text:after{width:4px;height:4px;display:block;content:'';position:absolute;background:#fff;left:calc(50% - 1px);top:30px;z-index:999;border-radius:50px}.mec-steps-content-container.mec-steps-content-3 span.wn-hover-img-sh{display:block}.mec-steps-content-container.mec-steps-content-3 .mec-skin-styles{height:386px;overflow-x:hidden;padding-left:60px;padding-bottom:19px}.mec-steps-content-container.mec-steps-content-3 .mec-skin-styles label{width:193px!important;float:left!important;margin:1.66%!important;text-align:center}.mec-steps-content-container.mec-steps-content-3 .mec-skin-styles label span{width:193px!important;float:left!important;min-height:135px!important;height:150px;box-sizing:border-box;border-radius:5px;border:2px solid #c4edff;background:#fff!important;cursor:pointer;margin-bottom:5px;margin-top:-6px}.mec-steps-content-container.mec-steps-content-3 .mec-skin-styles label.active span{border-color:#00acf8;box-shadow:0 3px 5px rgba(0,172,248,.2)}.mec-steps-content-container.mec-steps-content-3 .mec-skin-styles label div{font-size:14px}.mec-steps-content-container.mec-steps-content-3 .mec-skin-styles label.active div{color:#008aff}.mec-steps-content-container.mec-steps-content-3 .mec-skin-styles input{opacity:0;display:none}.mec-steps-content-container.mec-steps-content-3 .mec-steps-content.mec-steps-content-3{margin-top:-18px}.mec-steps-content-container.mec-steps-content-3 span.wn-hover-img-sh img{width:189px;height:146px;border-radius:5px}.mec-steps-content-container.mec-steps-content-4{background:url(../../assets/img/popup/fourth-step.png) no-repeat 90% 70%}.mec-steps-content.mec-steps-content-4 .nice-select{border:none;box-shadow:0 3px 22px 0 rgba(11,121,125,.01)}.mec-steps-content-container.mec-steps-content-4 .mec-steps-content.mec-steps-content-4{top:40%;position:absolute;width:330px}.mec-steps-content-container.mec-steps-content-4 .mec-steps-content.mec-steps-content-4 h3{font-size:13px;font-weight:400;color:#707070}.mec-steps-content-container.mec-steps-content-4 .mec-steps-content.mec-steps-content-4 .mec-multiple-skin-options div{border:2px dashed #dce2e3;border-radius:3px;padding:20px 20px 6px;background:#fcfcfc}.mec-steps-content-container.mec-steps-content-4 .mec-steps-content.mec-steps-content-4 .mec-multiple-skin-options div label{display:block;margin-bottom:14px}.mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup{-webkit-tap-highlight-color:transparent;background-color:#fff;border-radius:3px;border:1px solid #ddd;margin-bottom:8px;position:relative;text-align:left!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;box-shadow:0 3px 13px -5px rgba(0,0,0,.1),inset 0 1px 2px rgba(0,0,0,.07);clear:unset!important;-webkit-tap-highlight-color:transparent;background-color:#fff;border-radius:5px;border:solid 1px #e8e8e8;box-sizing:border-box;clear:both;cursor:pointer;display:block;float:left;font-family:inherit;font-size:14px;font-weight:400;height:42px;line-height:40px;outline:0;padding-left:18px;padding-right:30px;position:relative;text-align:left!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap;width:300px!important}.mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup:hover{border-color:#dbdbdb}.mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup.open .list{overflow:unset;width:100%;margin:0}.mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .list{background-color:#fff;border-radius:2px;box-shadow:0 2px 33px -2px rgba(0,0,0,.2),inset 0 1px 2px rgba(0,0,0,.07);box-sizing:border-box;margin-top:4px;opacity:0;overflow:hidden;padding:0;pointer-events:none;position:absolute;top:100%;left:0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0;-webkit-transform:scale(.75) translateY(-21px);-ms-transform:scale(.75) translateY(-21px);transform:scale(.75) translateY(-21px);-webkit-transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;z-index:9}.mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup:after{border-bottom:2px solid #999;border-right:2px solid #999;content:'';display:block;height:5px;margin-top:-4px;pointer-events:none;position:absolute;right:12px;top:50%;-webkit-transform-origin:66% 66%;-ms-transform-origin:66% 66%;transform-origin:66% 66%;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:all .15s ease-in-out;transition:all .15s ease-in-out;width:5px}.mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup.open:after{-webkit-transform:rotate(-135deg);-ms-transform:rotate(-135deg);transform:rotate(-135deg)}.mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup.open .list{opacity:1;pointer-events:auto;-webkit-transform:scale(1) translateY(0);-ms-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}.mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup.disabled{border-color:#ededed;color:#999;pointer-events:none}.mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup.disabled:after{border-color:#ccc}.mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .list{background-color:#fff;border-radius:5px;box-shadow:0 0 0 1px rgba(68,68,68,.11);box-sizing:border-box;margin-top:4px;opacity:0;overflow:hidden;padding:0;pointer-events:none;position:absolute;top:100%;left:0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0;-webkit-transform:scale(.75) translateY(-21px);-ms-transform:scale(.75) translateY(-21px);transform:scale(.75) translateY(-21px);-webkit-transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;z-index:9}.mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .list:hover .option:not(:hover){background-color:transparent!important}.mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option{cursor:pointer;font-weight:400;list-style:none;min-height:40px;outline:0;text-align:left;position:relative;font-size:12px!important;padding:1px 12px!important;margin:0!important;line-height:28px!important;min-height:28px!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option .wn-hover-img-sh img{position:absolute;padding:3px;top:-1px;left:100%;box-shadow:0 4px 42px -5px rgba(0,0,0,.16);visibility:hidden;opacity:0;border:1px solid #e3e3e3;border-radius:2px;z-index:99999999;background:#fff}.mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option:hover .wn-hover-img-sh img{visibility:visible;opacity:1}.mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option.focus,.mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option.selected.focus,.mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option:hover{background-color:#f6f6f6}.mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option.selected{font-weight:700}.mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option.disabled{background-color:transparent;color:#999;cursor:default}.no-csspointerevents .wn-mec-select-popup .list{display:none}.no-csspointerevents .wn-mec-select-popup.open .list{display:block}.mec-steps-content.mec-steps-content-4 label input{background:#fff;position:relative;width:24px;height:24px;border:1px solid #cacece}.mec-steps-content.mec-steps-content-4 label input:before{disaply:none}.mec-steps-content.mec-steps-content-4 label.active input{background:#008aff;box-shadow:0 5px 10px 0 rgba(0,138,255,.3);border:none}.mec-steps-content.mec-steps-content-4 label.active input:before{background:#fff;width:6px;height:6px;top:6px;left:6px;position:absolute}.mec-steps-content-container.mec-steps-content-5{background:url(../../assets/img/popup/fifth-step.png) no-repeat 90% 70%}.mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5{width:360px;margin-top:16px}.mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher label{color:#707070;font-size:14px}.mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher p{color:#8a8a8a;font-style:italic;font-size:12px;margin-top:7px;margin-bottom:0}.mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher{padding-bottom:30px;margin-bottom:34px;border-bottom:2px dashed #dce2e3;position:relative}.mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher:last-of-type{padding-bottom:0;margin-bottom:0;border:none}.mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher div:last-of-type label{position:absolute;top:-4px;right:0;width:52px;height:26px}.mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher input:checked+label:after{margin-left:26px}.mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher input+label:after,.mec-switcher input+label:before{display:block;position:absolute;top:2px;left:1px;bottom:2px;content:""}.mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher input+label:after{width:23px}.mec-steps-content-container.mec-steps-content-6{background:url(../../assets/img/popup/sixth-step.png) no-repeat 90% 70%}.mec-steps-content-container.mec-steps-content-6 .mec-steps-content.mec-steps-content-6{margin-top:56px}.mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode{width:325px;border:2px dashed #dce2e3;background:#fcfcfc;padding:42px 42px 47px;text-align:center}.mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode h3{font-size:16px;font-weight:400;color:#707070;margin-top:7px}.mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode-code{border-radius:3px;background:rgba(154,214,222,.35);width:243px;margin:0 auto;padding:14px 17px}.mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode-code code{background:0 0;color:#000;font-size:14px;font-weight:600;margin-left:-11px}.mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode-code button{border:none;background:#fff;border-radius:3px;padding:3px 8px 6px;margin-left:46px;cursor:pointer}.mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode-code button:hover{background:#000;color:#fff}.mec-steps-content-container.mec-steps-content-6 .mec-steps-6-results p{width:325px;text-align:center;font-size:12px;margin-top:5px;color:#8a8a8a}.mec-steps-content-container.mec-steps-content-6 .mec-steps-6-loading{width:325px;border:2px dashed #dce2e3;background:#fcfcfc;padding:42px 42px 47px;text-align:center;height:182px;position:relative}.mec-steps-content-container.mec-steps-content-6 .mec-steps-6-loading .mec-loader{position:absolute;left:136px;top:65px}.mec-add-shortcode-popup button.lity-close{right:0;top:-52px;border-radius:50%;width:37px;height:37px;background:#fff;color:#a2afbc;text-shadow:none;padding-top:1px;transition:all .2s ease;position:absolute;box-shadow:0 3px 8px 0 rgba(91,188,190,.55)}.mec-add-shortcode-popup button.lity-close:hover{background:#000;color:#fff;box-shadow:0 3px 8px 0 rgba(0,0,0,.55)}.mec-skin-styles.mec-styles-full_calendar h3{padding-left:12px}.mec-go-pro-content-title{font-size:20px;font-weight:600;margin-bottom:12px}.mec-go-pro-features-wrap p{font-size:14px}.mec-go-pro-features-wrap .mec-addons-notification-box-content{width:calc(100% - 590px);display:inline-block;padding-left:20px}.mec-go-pro-features-wrap ul{float:left;width:50%;margin:0 0 12px}.mec-go-pro-features-wrap ul li{margin-bottom:1px;font-size:13px;color:#717479;padding-left:18px;position:relative}.mec-go-pro-features-wrap ul li:before{position:absolute;left:-1px;top:6px;color:#36da74;font-size:13px;font-weight:700;vertical-align:middle;font-family:simple-line-icons;border-radius:50%;padding:0;width:13px;height:13px;line-height:13px;z-index:3;background:rgba(64,241,147,.12);content:"\e080"}
|
@@ -8554,7 +8554,8 @@ li.mec-no-event-found .mec-event-title {
|
|
8554 |
display: table;
|
8555 |
position: absolute;
|
8556 |
left: 0;
|
8557 |
-
|
|
|
8558 |
bottom: 0;
|
8559 |
padding: 0 2% 0 7%;
|
8560 |
margin: auto 0;
|
@@ -8562,6 +8563,7 @@ li.mec-no-event-found .mec-event-title {
|
|
8562 |
z-index: 2;
|
8563 |
}
|
8564 |
|
|
|
8565 |
.mec-slider-t3 .mec-slider-t3-content.mec-event-grid-modern *:not(.mec-color) {
|
8566 |
color: #fff;
|
8567 |
}
|
8554 |
display: table;
|
8555 |
position: absolute;
|
8556 |
left: 0;
|
8557 |
+
top: 50% ;
|
8558 |
+
transform: translateY(-50%);
|
8559 |
bottom: 0;
|
8560 |
padding: 0 2% 0 7%;
|
8561 |
margin: auto 0;
|
8563 |
z-index: 2;
|
8564 |
}
|
8565 |
|
8566 |
+
|
8567 |
.mec-slider-t3 .mec-slider-t3-content.mec-event-grid-modern *:not(.mec-color) {
|
8568 |
color: #fff;
|
8569 |
}
|
@@ -1 +1 @@
|
|
1 |
-
.lity-container,.mec-wrap,.mec-wrap div:not([class^=elementor-]){font-family:Montserrat,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif}.entry-content .mec-wrap h1,.entry-content .mec-wrap h2,.entry-content .mec-wrap h3,.entry-content .mec-wrap h4,.entry-content .mec-wrap h5,.entry-content .mec-wrap h6,.mec-wrap h1,.mec-wrap h2,.mec-wrap h3,.mec-wrap h4,.mec-wrap h5,.mec-wrap h6{font-family:Montserrat,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;color:#171c24;font-weight:300;font-style:inherit;letter-spacing:normal;clear:none}.mec-wrap h1{font-size:50px;line-height:1.16;margin-bottom:12px;letter-spacing:-1px}.mec-wrap h2{font-size:36px;line-height:1.14;margin-bottom:10px}.mec-wrap h3{font-size:28px;line-height:1.2;margin-bottom:8px}.mec-wrap h4{font-size:24px;line-height:1.2;margin-bottom:10px}.mec-wrap h5{font-size:18px;line-height:1.3;margin-bottom:7px}.mec-wrap h6{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-wrap .subheader{color:#849098}.mec-wrap h1 strong{font-weight:700}.mec-wrap p{margin:0 0 20px 0;color:#616161;font-size:14px;line-height:1.8}.mec-wrap .mec-event-article .mec-color-hover{box-shadow:none;border:none}.mec-wrap abbr,.mec-wrap acronym{cursor:auto;border:none}.entry-content .mec-wrap a{box-shadow:none}.mec-wrap .button,.mec-wrap a.button:not(.owl-dot),.mec-wrap button:not(.owl-dot),.mec-wrap input[type=button],.mec-wrap input[type=reset],.mec-wrap input[type=submit]{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#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-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}@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{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;font-family:Roboto,sans-serif}.mec-event-grid-minimal .mec-event-date:hover{color:#fff}.mec-event-grid-minimal .mec-event-date:hover span{color:#fff}.mec-event-list-classic .mec-event-article{padding:12px 0;margin-bottom:20px}.mec-event-list-classic .mec-event-image{float:left;width:86px;margin-right:20px}.mec-event-list-classic .mec-event-date,.mec-event-list-classic .mec-event-time{font-weight:400;font-size:13px;letter-spacing:0;line-height:18px;text-align:left;display:initial;margin-right:12px}.mec-event-list-classic .mec-event-time .mec-time-details,.mec-event-list-classic .mec-event-time i{display:inline;margin-right:3px}.mec-event-list-classic .mec-event-date span{font-weight:500;margin-bottom:6px}.mec-event-list-classic .mec-event-title{font-size:15px;margin:10px 0 12px;font-weight:700;text-transform:uppercase}.mec-event-list-classic .mec-event-title a{color:#494949;transition:color .3s ease}.mec-event-list-classic .mec-event-detail{color:#777;font-weight:400;line-height:12px;font-size:12px;overflow:hidden}.mec-event-list-classic a.magicmore{padding:10px 16px;color:#fff;background:#222;letter-spacing:2px;font-size:11px}.mec-event-list-classic a.magicmore:after{content:"";display:none}.mec-event-list-classic a.magicmore:hover{color:#40d9f1}.mec-event-grid-simple .mec-event-article{position:relative;margin-bottom:30px}.mec-event-grid-simple .mec-event-article:after{border-right:1px solid #e6e6e6;height:60px;position:absolute;top:50%;margin-top:-30px;right:-1px}.mec-event-grid-simple .row div:last-child .mec-event-article:after{border:none}.mec-event-grid-simple .row{margin:15px 0 30px;text-align:center}.mec-event-grid-simple .mec-event-date{padding:0;margin:0;text-transform:capitalize;font-size:12px;font-weight:700}.mec-event-grid-simple .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;line-height:21px;font-size:15px;padding-top:5px;text-transform:uppercase;transition:color .37s ease}.mec-event-grid-simple .mec-event-title a{color:#494949;transition:color .3s ease}.mec-event-grid-simple .mec-event-detail{font-family:Roboto,sans-serif;font-weight:400;line-height:1;letter-spacing:0;font-size:13px;color:#777}.mec-event-grid-simple:hover .mec-event-title{color:#40d9f1}.mec-event-grid-simple:hover .mec-event-date{background:0 0}.event-last:after{display:none}@media only screen and (max-width:767px){.mec-event-grid-simple .mec-event-article{padding-bottom:20px;margin-bottom:20px;border-bottom:1px solid #eee}.mec-event-grid-simple .mec-event-article:after{border:none}}.mec-event-grid-novel .mec-event-article{position:relative;margin-bottom:30px;padding:60px 5% 60px 7%;border:1px solid rgba(255,255,255,.12);border-radius:10px;background-color:#0050fd;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease;z-index:1}.mec-event-grid-novel .mec-event-article .novel-grad-bg{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:10px;opacity:0;z-index:-1;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease}.mec-event-grid-novel .mec-event-article:hover{-webkit-box-shadow:0 13px 36px 0 rgba(0,0,0,.23);box-shadow:0 13px 36px 0 rgba(0,0,0,.23);border-color:transparent}.mec-event-grid-novel .mec-event-article:hover .novel-grad-bg{background-image:-webkit-gradient(linear,left top,right top,from(#262e32),to(#0e1015));background-image:-webkit-linear-gradient(left,#262e32 0,#0e1015 100%);background-image:-o-linear-gradient(left,#262e32 0,#0e1015 100%);background-image:linear-gradient(90deg,#262e32 0,#0e1015 100%);opacity:1}.mec-event-grid-novel .mec-event-image{float:left;width:150px;height:150px}.mec-event-grid-novel .mec-event-image img{width:150px;height:150px;border-radius:50%}.mec-event-grid-novel .mec-event-detail-wrap{margin-left:200px}.mec-event-grid-novel .mec-event-content h4{position:relative;margin-bottom:10px;display:inline-block}.mec-event-grid-novel .mec-event-content h4 a{font-size:24px;line-height:35px;color:#fafcff}.mec-event-grid-novel .mec-event-content h4::before{content:'';position:absolute;top:8px;left:-30px;width:17px;height:17px;background:#5cd0ed;opacity:.4;border-radius:50%}.mec-event-grid-novel .mec-event-content h4::after{content:'';position:absolute;top:12px;left:-26px;width:9px;height:9px;background:#5cd0ed;border-radius:50%}.mec-event-grid-novel .mec-event-address,.mec-event-grid-novel .mec-event-detail,.mec-event-grid-novel .mec-event-month{position:relative;padding-left:35px;font-size:15px;line-height:30px;color:rgba(255,255,255,.4)}.mec-event-grid-novel .mec-event-address::before,.mec-event-grid-novel .mec-event-detail::before,.mec-event-grid-novel .mec-event-month::before{position:absolute;top:6px;left:6px;font-size:17px;font-family:simple-line-icons;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1}.mec-event-grid-novel .mec-event-month::before{content:"\e075"}.mec-event-grid-novel .mec-event-detail::before{content:"\e081"}.mec-event-grid-novel .mec-event-address::before{content:"\e096"}.mec-event-grid-novel .mec-event-footer{clear:both;padding:20px 0;border-top:none;background:0 0}.mec-event-grid-novel .mec-event-footer .mec-booking-button{right:auto;left:0;height:42px;width:148px;padding:0 20px;font-size:14px;font-weight:400;line-height:42px;text-align:center;color:#fff;background:0 0;border-color:rgba(255,255,255,.1);border-radius:50px}.mec-event-grid-novel .mec-event-footer .mec-booking-button:hover{background-color:rgba(255,255,255,.1)}.mec-event-grid-novel .mec-event-sharing-wrap{left:175px;cursor:pointer}.mec-event-grid-novel .mec-event-sharing-wrap>li{border-color:rgba(255,255,255,.1);border-radius:50%}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing{top:-5px;left:0;padding:5px 10px 2px 50px;min-width:150px;width:inherit;height:37px;background-color:rgba(255,255,255,.1);-webkit-box-shadow:none;box-shadow:none;border:none;border-radius:50px}.mec-event-grid-novel .mec-event-sharing-wrap:hover>li{background-color:rgba(255,255,255,.1)}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing::after,.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing::before{display:none}.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon,.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon a,.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li i{display:inline}.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon a{padding:0 10px}.mec-event-grid-novel .mec-event-sharing-wrap>li a{color:#fff}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li a{color:rgba(255,255,255,.4)}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li a:hover{color:rgba(255,255,255,1)}@media only screen and (max-width:1200px){.mec-event-grid-novel .row .col-md-6.col-sm-6{width:100%;float:none}.mec-event-grid-novel .mec-event-image{float:none;margin-top:-20px;margin-bottom:20px}.mec-event-grid-novel .mec-event-detail-wrap{margin-left:20px}.mec-event-grid-novel .mec-event-footer{margin-top:30px}}@media only screen and (max-width:767px){.mec-event-grid-novel .mec-event-footer{margin-top:0;padding-top:30px;margin-bottom:24px}.mec-event-grid-novel .mec-event-footer .mec-booking-button{display:block;position:relative}.mec-event-grid-novel .mec-event-sharing-wrap{left:0;bottom:-55px}.mec-event-grid-novel .mec-event-content h4 a{font-size:20px;line-height:1.3}}.mec-event-cover-modern{position:relative}.mec-event-cover-modern .mec-event-cover-a{background:0 0;position:absolute;color:#fff;bottom:0;left:0;text-decoration:none}.mec-event-cover-modern .mec-event-cover-a .mec-event-overlay{transition:all .5s;opacity:.8;width:100%;height:100%;position:absolute}.mec-event-cover-modern .mec-event-cover-a:hover .mec-event-overlay{opacity:1}.mec-event-cover-modern .mec-event-detail{padding:40px;position:relative}.mec-event-cover-modern .mec-event-cover-a:hover .mec-event-tag{color:#333;transition:all .5s}.mec-event-cover-modern .mec-event-cover-a .mec-event-title:hover{text-decoration:underline}.mec-event-cover-modern .mec-event-tag{background:#fff;display:inline-block;padding:5px 9px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:24px}.mec-event-cover-modern .mec-event-date{text-transform:uppercase;font-size:17px;font-weight:300}.mec-event-cover-modern .mec-event-title{color:#fff;text-transform:uppercase;font-size:40px;font-weight:700;margin:6px 0}.mec-event-cover-modern .mec-event-place{font-weight:400;font-size:18px;font-family:Roboto,sans-serif}@media only screen and (max-width:767px){.mec-event-cover-modern .mec-event-cover-a{width:100%}}.mec-event-cover-classic{position:relative;overflow:hidden;background:#fff;padding:6px;border:1px solid #e8e8e8}.mec-event-cover-classic .mec-event-overlay{position:absolute;left:6px;right:6px;bottom:6px;top:6px;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-cover-classic:hover .mec-event-overlay{background-color:rgba(36,36,36,.6)}.mec-event-cover-classic .mec-event-content{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out}.mec-event-cover-classic .mec-event-date{font-size:14px;text-transform:uppercase;font-weight:400;line-height:1.6}.mec-event-cover-classic .mec-event-date span{display:block;font-weight:700;font-size:16px}.mec-event-cover-classic .mec-event-title{color:#fff;margin:20px 0 38px;font-size:24px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-cover-classic .mec-btn-wrapper{text-align:left}.mec-event-cover-classic .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-cover-classic .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:12px 20px;letter-spacing:3px;font-size:12px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-cover-classic .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-cover-classic .mec-event-image img{min-width:100%}@media only screen and (max-width:960px){.mec-event-cover-classic .mec-event-content{padding:20px}.mec-event-cover-classic .mec-event-button{font-size:11px;padding:7px 10px;letter-spacing:1px}.mec-event-cover-classic .mec-event-title{font-size:19px;margin:15px 0 25px}.mec-event-cover-classic .mec-event-date{font-size:12px}}@media only screen and (max-width:767px){.mec-event-cover-classic{margin-bottom:30px}}@media only screen and (max-width:479px){.mec-event-cover-classic .mec-event-content{padding:15px;font-size:15px}.mec-event-cover-classic .mec-event-title{font-size:15px;margin:10px 0}.mec-event-cover-classic .mec-event-button{font-size:10px;padding:6px;letter-spacing:1px}.mec-event-cover-classic .mec-event-icon{padding:10px}}.mec-load-more-wrap{text-align:center;display:block;width:100%;padding-top:20px;text-align:center;position:relative}.mec-load-more-button{box-shadow:none;transition:all .21s ease;font-size:12px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:2px solid #e8e8e8;border-radius:50px;padding:0 28px;margin-bottom:20px;cursor:pointer;line-height:40px;font-family:Montserrat,Helvetica,Arial,sans-serif;height:42px;display:inline-block}.mec-load-more-button:hover{background:#191919;color:#fff;border-color:#191919}.mec-load-more-loading{content:url(../img/ajax-loader.gif);cursor:wait;background:0 0;border-style:none}.mec-load-more-loading:hover{background:0 0}.mec-modal-preloader,.mec-month-navigator-loading{width:100%;height:100%;background:no-repeat rgba(255,255,255,.88) url(../img/ajax-loader.gif) center;border-style:none;position:fixed;left:0;right:0;bottom:0;top:0;z-index:9}.mec-event-calendar-classic .mec-calendar-side .mec-calendar-table{min-height:1024px}.mec-calendar-side .mec-calendar-table{min-height:450px}.mec-skin-weekly-view-events-container.mec-month-navigator-loading{margin-top:0}.mec-calendar.mec-event-calendar-classic .mec-calendar-side{display:block}.mec-skin-daily-view-events-container.mec-month-navigator-loading{margin-top:0}@media only screen and (min-width:961px){.mec-wrap.mec-sm959 .mec-calendar-side .mec-calendar-table{min-height:1px}}@media only screen and (max-width:479px){.mec-calendar-side .mec-calendar-table{min-height:1px}}.mec-event-cover-clean{position:relative;border:1px solid #e6e6e6;padding:8px}.mec-event-cover-clean .mec-event-overlay{height:100%;background-color:rgba(36,36,36,.4);position:absolute;width:100%;left:0;border:8px solid #fff;top:0;transition:all .5s ease-in-out}.mec-event-cover-clean .mec-event-content{color:#fff;position:absolute;bottom:20px;padding:40px 60px;transition:all .5s ease-in-out}.mec-event-cover-clean .mec-event-title{color:#fff;font-weight:700;margin:46px 0 19px;font-size:29px;text-transform:uppercase;text-shadow:0 0 1px rgba(0,0,0,.5)}.mec-event-cover-clean .mec-event-title a{color:#fff;transition:all .5s;text-decoration:none;outline:0;border:none;box-shadow:none}.mec-event-cover-clean .mec-event-title a:hover{text-decoration:underline}.mec-event-cover-clean .mec-event-date{position:absolute;top:-20px;right:60px;color:#fff;width:60px;padding:14px 10px;z-index:1}.mec-event-cover-clean .mec-event-date div{text-align:center;text-transform:uppercase;letter-spacing:1px;line-height:16px}.mec-event-cover-clean .mec-event-date .dday{padding-bottom:15px;border-bottom:1px solid rgba(255,255,255,.5);margin-bottom:13px;font-size:24px}.mec-event-cover-clean .mec-event-date .dmonth{letter-spacing:2px}.mec-event-cover-clean .mec-event-place{font-size:18px;font-family:Roboto,sans-serif}.mec-event-cover-clean .mec-event-image img{width:100%}@media only screen and (max-width:768px){.mec-event-cover-clean .mec-event-content{padding:20px;bottom:5px}.mec-event-cover-clean .mec-event-title{font-size:23px}.mec-event-cover-clean .mec-event-date{right:20px;padding:10px;width:50px}}@media only screen and (max-width:479px){.mec-event-cover-clean .mec-event-content{padding:10px}.mec-event-cover-clean .mec-event-title{font-size:19px;padding-right:25px}.mec-event-cover-clean .mec-event-date{right:-20px;top:-10px}.mec-event-cover-clean .mec-event-detail{font-size:12px}}.mec-month-divider{text-align:center;margin:60px 0 40px 0}.widget .mec-month-divider{margin:10px 0}.mec-month-divider span{text-transform:uppercase;font-size:22px;font-weight:700;padding-bottom:5px;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative}.mec-month-divider span:before{border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-30px;left:50%;width:60px}.widget .mec-month-divider span{font-size:13px}.mec-event-list-standard .mec-events-pagination{margin-top:60px;border-top:4px solid #ebebeb;min-height:80px;padding-top:20px}.mec-event-list-standard .mec-events-pagination .mec-events-pag-previous{float:left;margin-left:0}.mec-event-list-standard .mec-events-pagination .mec-events-pag-next{float:right;margin-right:0}.mec-event-list-standard .mec-event-article{position:relative;display:block;margin-bottom:25px;border:1px solid #e9e9e9;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-list-standard .mec-topsec{display:table;width:100%}.mec-event-list-standard .col-md-3.mec-event-image-wrap{padding-left:0}.mec-event-list-standard .mec-event-content{padding-top:15px;padding-right:30px}.mec-event-list-standard .mec-event-title{font-size:29px;font-weight:700;letter-spacing:-1px;margin:0 0 10px}.mec-event-list-standard .mec-event-title a{color:#292929;transition:color .3s ease}.mec-event-list-standard .mec-col-table-c{display:table-cell;height:100%;vertical-align:middle;float:none!important}.mec-event-list-standard .mec-col-table-c.mec-event-meta-wrap{padding-top:15px}.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{vertical-align:top}.mec-topsec .mec-event-image{line-height:1px}.mec-event-list-standard .mec-event-meta-wrap{border-left:1px solid #eee}.mec-event-list-standard .mec-time-details{text-transform:uppercase;font-size:11px;font-weight:300;padding-top:0;text-align:left;padding-left:30px}.mec-event-list-standard .mec-event-meta .mec-event-address{font-style:normal;letter-spacing:0;font-size:13px;color:#8a8a8a}.mec-event-list-standard .mec-event-meta span.mec-event-d,.mec-event-list-standard .mec-event-meta span.mec-event-m{font-size:17px;font-weight:700;padding-right:6px;color:#444;text-transform:uppercase}.mec-event-list-standard .mec-date-details,.mec-event-list-standard .mec-time-details,.mec-event-list-standard .mec-venue-details{position:relative;padding-left:28px;margin-bottom:10px}.mec-event-list-standard .mec-date-details:before,.mec-event-list-standard .mec-time-details:before,.mec-event-list-standard .mec-venue-details:before{content:"\f041";font-family:fontawesome;position:absolute;left:6px;font-size:15px}.mec-event-list-standard .mec-date-details:before{content:"\f073"}.mec-event-list-standard .mec-time-details:before{content:"\f017"}.mec-event-list-minimal .mec-event-title a{color:#292929;transition:color .3s ease}.mec-event-meta-wrap .mec-price-details{margin-bottom:10px}.mec-price-details i{margin-right:5px;vertical-align:text-top}.mec-event-meta-wrap .mec-event-meta .mec-price-details i:before{font-size:15px}@media only screen and (max-width:960px){.mec-event-list-standard .mec-topsec{display:block}.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:block;width:40%}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{display:block;min-height:230px}.mec-event-list-standard .mec-event-meta-wrap{display:block;border-left:none;border-top:1px solid #eee;width:100%;float:none;padding-top:20px}}@media only screen and (min-width:480px) and (max-width:960px){.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:table-cell}}@media only screen and (max-width:479px){.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap img{float:none;width:100%;padding:0}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{padding:10px 10px 10px 30px}}.mec-wrap .mec-events-cal-links{margin-bottom:0}.mec-single-event #mec-wrap{padding:0;margin-top:35px}.mec-wrap .mec-single-title{margin-top:0;margin-bottom:30px;font-weight:700;font-size:33px}.mec-single-event .mec-event-content{padding:40px 0 30px;margin-bottom:10px}.mec-single-event .mec-events-meta-group-booking,.mec-single-event .mec-frontbox{margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-wrap #main-content{overflow:hidden;padding-top:35px}.mec-single-event .mec-map-get-direction-address-cnt{position:relative}.mec-single-event .mec-map-get-direction-address-cnt input.mec-map-get-direction-address{width:100%;height:46px;padding:13px 10px;margin-bottom:0;background:#fcfcfc;border:1px solid #e0e0e0;border-radius:0;box-shadow:inset 0 2px 5px rgba(0,0,0,.081)}.mec-single-event .mec-map-get-direction-address-cnt input.mec-map-get-direction-address:focus{color:#444;background:#fff;border-color:#b0b0b0;box-shadow:0 0 3px rgba(0,0,0,.2)}.mec-single-event .mec-map-get-direction-btn-cnt input{width:100%}.mec-single-event .mec-map-get-direction-reset{position:absolute;z-index:2;top:5px;right:10px;font-size:11px;cursor:pointer}.mec-events-meta-group-tags{margin-top:20px}.mec-events-meta-group-tags a{display:inline-block;color:#444;font-size:11px;text-transform:uppercase;letter-spacing:1.5px;font-weight:500;padding:3px 7px;border:1px solid #ddd;border-radius:2px;background:#fff;margin:1px 3px}.mec-events-meta-group-tags a:hover{text-decoration:underline;background:#f9f9f9}.mec-local-time-details li{list-style:none}.mec-single-event:not(.mec-single-modern) .mec-local-time-details{background:#f7f7f7;padding:12px 14px 8px;margin-bottom:12px;vertical-align:baseline;position:relative;border:none}.mec-single-event:not(.mec-single-modern) .mec-local-time-details ul{margin:0;padding-left:35px}.mec-single-event:not(.mec-single-modern) .mec-local-time-details h3{border:none;padding-left:15px}.mec-single-event:not(.mec-single-modern) .mec-local-time-details h3:before{display:none}.mec-single-event.mec-single-modern i.mec-sl-speedometer{display:none}.mec-single-event .mec-events-meta-group-booking{padding-bottom:30px}.mec-single-event .mec-events-meta-group-booking ul{list-style:none;margin-left:0;padding-left:0}.mec-single-event .mec-events-meta-group-booking ul li{padding:0;list-style:none;margin-top:40px}.mec-single-event .mec-events-meta-group-booking h4{margin-bottom:20px;font-size:23px;font-weight:700}.mec-single-event .mec-events-meta-group-booking li h4{font-size:19px}.mec-single-event .mec-events-meta-group-booking button,.mec-single-event .mec-events-meta-group-booking input{border-radius:0;margin-bottom:6px}.mec-single-event .mec-events-meta-group-booking button{min-width: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}button#mec-book-form-back-btn-step-3{float:none}.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}.mec-single-event .mec-book-first,.mec-single-event .mec-event-tickets-list{padding-left:15px;padding-right:15px}.mec-single-event label.mec-fill-attendees{margin-left:15px!important}.mec-single-event .mec-events-meta-group-booking .mec-event-ticket-available{display:block;margin-bottom:20px;margin-top:-17px;font-size:11px;color:#8a8a8a}.mec-single-event .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.mec-single-event .mec-events-meta-group-booking form{margin:0}.mec-single-event .mec-events-meta-group-booking h5 span,.mec-single-event .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;display:block;clear:none;padding:5px 1em 3px 0}.mec-single-event .mec-events-meta-group-booking h5 span{display:inline-block}.mec-single-event .mec-events-meta-group-booking h5 span.mec-ticket-variation-name{padding-right:5px;text-transform:capitalize}.mec-single-event .mec-events-meta-group-booking input::-webkit-input-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input:-moz-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:330px;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both}.wbmec-mandatory{padding-left:5px;font-size:14px}.mec-single-event .mec-events-meta-group-booking .mec-red-notification input,.mec-single-event .mec-events-meta-group-booking .mec-red-notification select,.mec-single-event .mec-events-meta-group-booking .mec-red-notification textarea{border:1px solid #ff3c3c}.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=checkbox],.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=radio]{outline:1px solid #ff3c3c}.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}@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}.mec-calendar .mec-calendar-table .mec-no-event{display:none}.mec-calendar .mec-calendar-table-head dt{font-weight:700;text-transform:uppercase;font-size:15px}.mec-calendar .mec-calendar-row dt:hover{background:#f4f4f4}.mec-calendar .mec-table-nullday{color:#cacaca}.mec-calendar.mec-box-calendar .mec-table-nullday:last-child{border-right:1px solid #eaeaea}.mec-calendar .mec-next-month:hover,.mec-calendar .mec-prev-month:hover{background:#f4f4f4}.mec-calendar .mec-selected-day,.mec-calendar .mec-selected-day:hover{background:#40d9f1;color:#fff}.mec-calendar .mec-selected-day a{color:#fff}.mec-calendar .mec-has-event{position:relative}.mec-calendar .mec-calendar-row dt.mec-has-event:hover{background:#40d9f1}.mec-calendar .mec-has-event a{cursor:pointer;display:block;width:100%;height:100%;border-radius:50%;color:#4d4d4d;transition:all .25s ease;text-decoration:none;box-shadow:none}.mec-calendar .mec-calendar-row dt.mec-has-event.mec-selected-day a,.mec-calendar .mec-calendar-row dt.mec-has-event:hover a{color:#fff}.mec-calendar .mec-has-event:after{background-color:#40d9f1;border-radius:50%;display:block;content:'';width:8px;height:8px;bottom:14px;left:50%;margin:-4px 0 0 -4px;position:absolute;transition:all .25s ease}.mec-calendar .mec-calendar-row dt.mec-has-event:hover:after{background-color:#fff}.mec-calendar .mec-has-event.mec-selected-day:after{display:none}.mec-calendar .mec-event-article{text-align:left;margin-bottom:0;padding-bottom:25px;padding-top:26px;border-top:1px solid #efefef;transition:all .33s ease}.mec-calendar .mec-event-article:hover{background-color:#fafafa}.mec-calendar .mec-event-article .mec-event-time{font-size:11px;line-height:1.1;margin:0}.mec-calendar .mec-event-article .mec-event-title{font-size:13px;padding:0;margin:10px 0 8px;font-weight:700;text-transform:uppercase}.mec-calendar .mec-event-article .mec-event-title a{text-decoration:none;color:#494949;transition:color .3s ease}.mec-calendar .mec-event-article .mec-event-title a:hover{color:#40d9f1}.mec-calendar .mec-event-article .mec-event-image,.mec-calendar .mec-event-list-classic .mec-event-image img{width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-image{float:left;margin-right:20px;width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-detail{font-size:13px;line-height:1.3;font-family:Roboto,sans-serif;color:#9a9a9a;margin-bottom:0}.mec-calendar .mec-calendar-side .mec-next-month,.mec-calendar .mec-calendar-side .mec-previous-month{cursor:pointer;position:absolute;top:0;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;color:#a9a9a9;font-size:12px;letter-spacing:1px;text-transform:uppercase;padding-left:10px;padding-right:10px;border:1px solid #efefef;border-top:none;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease}.mec-calendar .mec-calendar-side .mec-next-month i,.mec-calendar .mec-calendar-side .mec-previous-month i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-calendar .mec-calendar-side .mec-next-month:hover,.mec-calendar .mec-calendar-side .mec-previous-month:hover{background-color:#f9f9f9;color:#40d9f1}.mec-calendar .mec-calendar-side .mec-previous-month{left:0;border-bottom-right-radius:6px;border-left:none}.mec-calendar .mec-calendar-side .mec-next-month{right:0;border-bottom-left-radius:6px;border-right:none}@media only screen and (min-width:961px){.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-side{width:370px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-header{position:relative;width:350px;margin-top:30px;margin-bottom:20px;padding-top:20px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) dt{width:50px;height:50px;line-height:50px}.mec-wrap.mec-sm959 .mec-calendar.mec-event-calendar-classic dl dt{height:110px}}@media only screen and (max-width:1200px){.mec-calendar .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-calendar .mec-calendar-side{width:370px}.mec-calendar .mec-calendar-header{position:relative;width:350px;margin-top:30px}.mec-calendar dt{width:50px;height:50px;line-height:50px}}@media only screen and (max-width:767px){.mec-calendar .mec-calendar-header h2{font-size:18px}.mec-calendar .mec-calendar-topsec{width:100%}.mec-calendar .mec-calendar-side{width:100%;display:block;padding:30px}.mec-calendar .mec-calendar-header{width:auto}.mec-calendar .mec-calendar-events-side{width:100%;display:block;height:100%;border-left:none;border-top:1px solid #efefef;padding:20px}.mec-calendar dl{width:100%}.mec-calendar dt{width:14%;height:60px;line-height:60px;border-radius:50px}}@media only screen and (max-width:479px){.mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-calendar .mec-calendar-header h2{font-size:16px;margin-top:33px}.mec-calendar dt{height:38px;line-height:38px}.mec-calendar .mec-event-list-classic .mec-event-detail,.mec-calendar .mec-event-list-classic .mec-event-title{font-size:12px}.mec-calendar .mec-event-list-classic .mec-event-time{font-size:10px}}.mec-box-calendar.mec-calendar .mec-has-event a,.mec-box-calendar.mec-calendar dt{border-radius:0}.mec-box-calendar.mec-calendar .mec-calendar-header{margin-top:2px;margin-bottom:30px}.mec-box-calendar.mec-calendar dt{border-bottom:1px solid #eaeaea;border-left:1px solid #eaeaea}.mec-box-calendar.mec-calendar dl dt:last-child{border-right:1px solid #eaeaea}.mec-box-calendar.mec-calendar .mec-calendar-table-head dt{border-top:1px solid #eaeaea;background-color:#f8f8f8}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{background-color:#f4f4f4}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{border-radius:2px;top:40px;border:1px solid #eee;height:30px;line-height:30px;z-index:1}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:60px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:60px}.mec-box-calendar.mec-calendar .mec-calendar-side{box-shadow:none}.mec-box-calendar.mec-calendar .mec-calendar-events-side{border:none}.mec-box-calendar.mec-calendar .mec-calendar-events-side .mec-table-side-day{border-radius:2px}.mec-box-calendar.mec-calendar h4.mec-month-label{position:relative;width:560px;margin-top:2px;margin-bottom:30px;text-transform:uppercase;font-size:22px;font-weight:700;color:#333}.mec-widget .mec-box-calendar.mec-calendar h4.mec-month-label{width:100%;margin-top:8px;font-size:13px}@media only screen and (max-width:1200px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:42px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:42px}.mec-calendar .mec-calendar-header h2{font-size:17px;margin-top:7px}}@media only screen and (max-width:767px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{top:28px;font-size:10px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:30px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:30px}.mec-calendar .mec-calendar-header h2{font-size:15px}}@media only screen and (max-width:479px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{top:16px;font-size:0;padding:4px 0;text-align:center;min-width:33px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:10px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:10px}.mec-box-calendar.mec-calendar .mec-calendar-header h2{font-size:12px;margin-top:15px}.mec-box-calendar.mec-calendar .mec-event-image{margin-right:12px}}.mec-calendar.mec-event-calendar-classic,.mec-calendar.mec-event-calendar-classic .mec-calendar-side{border:none;padding:0;width:100%;height:100%;box-shadow:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-side{display:block}.mec-calendar.mec-event-calendar-classic .mec-calendar-header,.mec-calendar.mec-event-calendar-classic dl{width:100%}.mec-calendar.mec-event-calendar-classic dl dt{width:15%;height:136px;line-height:1.2;text-align:left;padding:5px 7px;position:relative}.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{height:30px!important}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{top:0}.mec-calendar.mec-event-calendar-classic .mec-has-event:after{bottom:auto;top:24px;left:7px;margin:0}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{left:0}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month{right:0}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{text-align:left;background:#fafafa;border:1px solid #eaeaea;border-top:none;padding:10px 20px}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{display:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-event-article:hover{background-color:#fcfcfc}.mec-calendar.mec-event-calendar-classic .mec-selected-day,.mec-calendar.mec-event-calendar-classic dt.mec-selected-day:hover{color:#40d9f1;font-weight:700;background:#fafafa;border-bottom:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-day,.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{display:inline-block;margin:0;margin-bottom:15px;font-weight:700}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-day{margin-left:4px}.mec-calendar.mec-event-calendar-classic .mec-calendar-row dt.mec-has-event a{color:#4d4d4d}.mec-calendar.mec-event-calendar-classic .mec-calendar-row dt.mec-has-event:not(.mec-selected-day):hover a{color:#fff}@media only screen and (max-width:1200px){.mec-calendar.mec-event-calendar-classic dl dt{height:100px}}@media only screen and (max-width:767px){.mec-calendar.mec-event-calendar-classic dl dt{height:40px}}@media only screen and (max-width:479px){.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{padding:10px}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-header h2{font-size:13px;margin-top:8px}}.mec-calendar .mec-event-article.mec-single-event-novel{padding:4px 8px;min-height:25px;margin:0 -4px;border-radius:0}.mec-calendar .mec-event-article.mec-single-event-novel h4{margin:0;font-size:10px;line-height:18px}.mec-calendar.mec-event-container-novel dl dt{padding:3px}.mec-calendar.mec-event-calendar-classic .mec-calendar-novel-selected-day{display:inline-block;padding:4px;margin-left:1px}.mec-calendar.mec-event-calendar-classic .mec-selected-day .mec-calendar-novel-selected-day{color:#fff}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-selected-day,.mec-calendar.mec-event-calendar-classic.mec-event-container-novel dt.mec-selected-day:hover{border-bottom:1px solid #eaeaea}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-calendar-side .mec-calendar-table{min-height:auto}.mec-single-event-novel.light h4{color:#000!important}.mec-single-event-novel.dark h4{color:#fff!important}@media only screen and (max-width:768px){.mec-calendar .mec-event-article.mec-single-event-novel{padding:0;min-height:5px}.mec-calendar .mec-event-article.mec-single-event-novel h4{display:block;font-size:9px}}.mec-event-container-simple .event-single-content-simple{display:none}.mec-event-calendar-classic.mec-event-container-simple .mec-calendar-side .mec-calendar-table{min-height:unset}.mec-event-container-simple .mec-monthly-tooltip h4{font-size:13px;font-weight:500;margin:0;color:#444}.mec-event-container-simple .mec-monthly-tooltip h4:hover{text-decoration:underline;color:#111}.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple{border-bottom:1px dashed #e3e3e3;padding:10px 2px;display:block}.mec-calendar.mec-event-container-simple dl dt.mec-calendar-day{font-size:30px;color:#000}.mec-calendar.mec-event-container-simple .mec-calendar-row dt:hover{background:unset}.mec-calendar.mec-event-container-simple .mec-calendar-row dt,.mec-calendar.mec-event-container-simple .mec-calendar-row dt:last-child,.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt,.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt:last-child{border-width:2px}.mec-calendar.mec-event-container-simple dl dt.mec-selected-day,.mec-calendar.mec-event-container-simple dl dt.mec-selected-day:hover{border-bottom:2px solid #40d9f1;background:unset}.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt{line-height:36px}@media (max-width:768px){.mec-calendar.mec-event-container-simple{overflow-x:scroll}.mec-calendar.mec-event-container-simple .mec-calendar-side{min-width: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{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 input[type=email],.mec-fes-form input[type=number],.mec-fes-form input[type=password],.mec-fes-form input[type=tel],.mec-fes-form input[type=text],.mec-fes-form select,.mec-fes-form textarea{min-width:inherit;width:auto;display:inline;min-height:30px;font-size:13px;padding:10px;margin-bottom:20px;clear:both;background:#fff;border:1px solid #cfeff5;box-shadow:0 2px 5px rgba(207,239,245,.38) inset;border-radius:3px;height:40px;max-width:280px;color:#798f96;font-family:inherit}.mec-fes-form input{background:#fff!important;border-radius:3px!important;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important}.mec-fes-form textarea{height:80px}.mec-fes-form input::-webkit-input-placeholder{color:#798f96}.mec-fes-form input::-moz-placeholder{color:#798f96}.mec-fes-form input:-ms-input-placeholder{color:#798f96}.mec-fes-form input:-moz-placeholder{color:#798f96}#mec_more_info_target{width:100%}@media only screen and (min-width:961px){.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form textarea{width:100%;display:inline-block}}@media only screen and (max-width:768px){.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form textarea{width:100%}}.mec-fes-form input[type=text]#mec_fes_title{padding:5px 10px;min-height:32px;height:50px;background:#fff!important;max-width:100%;font-size:19px;font-weight:400}.mec-fes-form input[type=checkbox],.mec-fes-form input[type=radio]{display:inline!important;float:left;margin:5px 5px 0 0}.mec-fes-form input[type=email]:focus,.mec-fes-form input[type=number]:focus,.mec-fes-form input[type=password]:focus,.mec-fes-form input[type=tel]:focus,.mec-fes-form input[type=text]:focus,.mec-fes-form select:focus,.mec-fes-form textarea:focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-form-row .mec-color{cursor:pointer}.mec-form-row.mec-available-color-row span{margin:10px;width:14px;height:14px;display:inline-block;margin-right:6px;border-radius:20px 20px 20px 20px;vertical-align:middle}.mec-form-row.mec-available-color-row span:first-of-type{margin-left:0}.mec-fes-form.mec-fes-form .mec-tooltip{display:inline}.mec-fes-form-cntt .dashicons-editor-help{display:block}.mec-fes-form .mec-tooltip:hover:after,.mec-fes-form .mec-tooltip:hover:before{display:none}.mec-fes-form.mec-fes-form .mec-tooltip{display:inline-flex;bottom:7px}.mec-fes-form .mec-tooltip .box{min-width:300px;max-width:600px;display:inline-block;left:26px;top:50%;transform:translateY(-50%);padding:0;margin-top:8px;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.3;position:absolute;z-index:9999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s}#webnus-dashboard .mec-fes-form .mec-tooltip .box p,.mec-fes-form .mec-tooltip .box p{color:#fff;font-size:14px;line-height:1.3;margin:0}.mec-fes-form .mec-tooltip:hover .box{visibility:visible;opacity:1}.mec-fes-form .mec-tooltip:hover .box{padding:20px;border-radius:8px}.mec-fes-form .mec-tooltip .box h5{color:#fff;font-size:17px;font-weight:600;margin:-30px -20px;padding:20px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #32363a;border-radius:6px 6px 0 0;z-index:9999}#webnus-dashboard .mec-fes-form .mec-tooltip .box p a,.mec-fes-form .mec-tooltip .box p a{color:#40d9f1;margin-top:10px;margin-left:0;font-weight:400;position:relative;text-decoration:none;display:block;width:max-content}.mec-fes-form .mec-tooltip .box a:hover{color:#f90}.mec-fes-form .mec-tooltip .box:after{display:block;position:absolute!important;top:100%!important;right:50%!important;margin-top:-6px!important;margin-right:-6px!important;width:12px!important;height:24px!important;overflow:hidden!important;transform:rotate(-90deg)!important}.mec-fes-form .mec-tooltip .box:before{display:block;content:''!important;position:absolute!important;width:12px;height:12px;left:-10px!important;top:50%!important;transform:translate(50%,-50%) rotate(-45deg)!important;background-color:#535a61!important;box-shadow:0 8px 9px -4px #535a61!important;z-index:0!important}.mec-fes-form .mec-tooltip .box.top{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-fes-form .mec-tooltip .box.top:after{top:50%!important;right:100%!important}.mec-fes-form .mec-tooltip .box.top:before{left:50%!important;top:100%!important}.mec-fes-form .mec-tooltip .box.bottom{left:50%;top:auto;bottom:0;transform:translate(-50%,100%);margin-bottom:-20px;margin-left:-10px}.mec-fes-form .mec-tooltip .box.bottom:after{top:0!important;right:50%!important;background-color:#3a3f44!important}.mec-fes-form .mec-tooltip .box.bottom:before{left:50%!important;top:-7px!important;transform:translateX(-50%);background-color:#3a3f44!important}.mec-fes-form .mec-tooltip .box.left{left:auto;right:26px;top:50%;transform:translateY(-50%)}.mec-fes-form .mec-tooltip .box.left:before{right:0!important;left:auto!important;top:50%!important}.mec-fes-form .mec-tooltip{display:inline-block;position:relative;margin-right:10px;cursor:help;bottom:5px;left:3px}.mec-fes-form .mec-tooltip:last-child{margin-right:0}.mec-fes-form .mec-tooltip:hover:after{background:#313130;border-radius:5px;bottom:24px;color:#fff;content:attr(title);left:-75px;padding:10px;position:absolute;z-index:98;width:240px}.mec-fes-form .mec-tooltip:hover:before{border:solid;border-color:#313130 transparent;border-width:6px 6px 0;bottom:18px;content:"";left:30%;position:absolute;z-index:99}.mec-fes-form .mec-tooltip .dashicons-before:before{font-size:24px;color:#008aff;line-height:37px}.mec-fes-form .mec-tooltip a:focus{box-shadow:none}.mec-form-row .bootstrap_unvalid{display:block;border:2px solid red;position:relative;display:inline-block;border-bottom:1px dotted #000}.mec-fes-form .mec-tooltiptext{visibility:hidden;width:120px;background-color:red;color:#fff;text-align:center;border-radius:6px;padding:5px 0;position:absolute;z-index:1}.mec-fes-form .mec-tooltip .content p a{display:none}@media only screen and (min-width:961px){.mec-fes-form .mec-fes-form-cntt,.mec-fes-form .mec-fes-form-sdbr{width:68%;float:left;padding-right:20px}.mec-fes-form .mec-fes-form-sdbr{width:32%;padding-right:0;padding-left:20px}.mec-fes-submit-mobile{display:none}}.mec-fes-form .mec-meta-box-fields{padding:0 20px 20px;border:1px solid #cfeff5;margin-bottom:20px!important;box-shadow:0 2px 6px -3px #cfeff5;border-radius:3px;background:#fff}.mec-fes-form .mec-meta-box-fields h4{margin:0 -20px;font-size:15px;font-weight:600;letter-spacing:0;color:#40d9f1;text-transform:capitalize;padding:15px 20px;background:#ecfcff;margin-bottom:20px;border-radius:3px}.mec-fes-sub-button{width:100%}.mec-available-color-row span.color-selected{border:3px solid #fff;box-sizing:content-box;box-shadow:0 0 0 2px #40d9f1,0 2px 8px -1px #40d9f1}.mec-fes-loading:before{content:url(../img/ajax-loader.gif);background:0 0;border-style:none;display:block;margin-left:47%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:190px;margin-right:1.4%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-1,.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-2{width:120px;margin-right:10px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].widefat{width:100%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row{border-bottom:none;padding-bottom:10px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-6{width:39%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row button{margin-right:0;padding:9px 26px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row button.mec-add-hourly-schedule-button{font-size:12px;height:30px;line-height:25px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row .description{display:inline-block;border-left:1px dashed #bfcacc;margin-left:12px;line-height:28px;padding-left:12px;margin-top:5px;font-style:italic}@media only screen and (max-width:768px){.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:100%!important}}#mec_fes_form_message{max-width:838px;margin:10px auto;display:block!important;text-align:center}.mec-wrap .mec-totalcal-box{position:relative;border:1px solid #efefef;padding:20px 5px;margin:0 0 20px;background:#fafafa;overflow:hidden;box-shadow:0 3px 2px 0 rgba(0,0,0,.012);min-height:78px}.mec-wrap .mec-totalcal-box i{float:left;margin:0;width:36px;height:36px;background:#fff;border:1px solid #efefef;text-align:center;padding:10px 0;font-size:15px;color:#888}.mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-wrap .mec-totalcal-box input,.mec-wrap .mec-totalcal-box select{width:auto;min-height:36px;height:36px;line-height:36px;background:#fff;font-size:13px;color:#777;border:1px solid #efefef;margin:0 0 0 -1px;float:left;padding:0 5px;font-family:Roboto,Helvetica,Arial,sans-serif}.mec-wrap .mec-totalcal-box input[type=submit]{cursor:pointer;padding:0 16px;text-transform:uppercase;font-size:11px;font-family:Montserrat,Helvetica,Arial,sans-serif;transition:all .21s ease}.mec-wrap .mec-totalcal-box input[type=submit]:hover{background:#222;color:#fff}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{display:inline-block;text-transform:uppercase;font-family:Montserrat,Helvetica,Arial,sans-serif;font-size:11px;padding:0 12px;cursor:pointer}.mec-wrap .mec-totalcal-box .mec-totalcal-view span:hover{color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected{color:#fff;background:#40d9f1;border-color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view{text-align:right;float:right}.mec-wrap .mec-totalcal-box input[type=search]{width:calc(100% - 36px)}@media only screen and (min-width:961px) and (max-width:1200px){.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-3,.mec-wrap .mec-totalcal-box .col-md-4,.mec-wrap .mec-totalcal-box .col-md-5{width:100%;float:none;padding-bottom:20px;clear:both;overflow:hidden}}@media only screen and (min-width:768px) and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-4{position:relative;right:10px;top:20px;width:initial}.mec-wrap .mec-totalcal-box .col-md-5{padding-bottom:0}.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:767px){.mec-wrap .mec-totalcal-box .mec-totalcal-view{float:none}.mec-wrap .mec-totalcal-box .col-md-4{padding-bottom:0}}@media only screen and (max-width:479px){.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 8px;font-size:10px}.mec-wrap .mec-totalcal-box input[type=submit]{padding:0 10px;font-size:10px}}@media only screen and (min-width:961px){.mec-wrap .mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5,.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-3{width:100%;float:none;padding-bottom:20px;clear:both;overflow:hidden}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-4{position:absolute;right:10px;top:20px;width:initial}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5{padding-bottom:0;width:100%}}@media (min-width:961px) and (max-width:1200px){.mec-full-calendar-wrap .mec-totalcal-box{padding:20px 20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{padding-bottom:20px!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{min-width:calc(30% - 10px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3:last-child select{min-width:calc(50% - 19px)}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view{margin-right:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:10px;text-align:center}}@media (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box{padding:20px 20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{padding-bottom:10px!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px);margin-bottom:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view{margin-right:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:10px;text-align:center}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:100%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:absolute;top:20px}}@media (min-width:780px) and (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:absolute;top:20px}}@media(max-width:780px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{width:calc(50% - 18px)!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:unset;padding-right:0}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:20%;text-align:center;font-size:10px}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 7px;margin-top:20px}}@media(max-width:480px){.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:20%;text-align:center;font-size:10px}}.mec-search-form{padding:20px 10px}.mec-search-form .mec-dropdown-wrap{display:table;width:100%}.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{padding:0 10px;float:left;min-height:55px}.mec-search-form .mec-date-search,.mec-search-form .mec-text-input-search{width:50%;min-height:36px;display:block}.mec-full-calendar-wrap .mec-search-form .mec-date-search,.mec-full-calendar-wrap .mec-search-form .mec-text-input-search{width:100%}.mec-full-calendar-wrap .mec-search-form .col-md-3,.mec-full-calendar-wrap .mec-search-form .col-md-5,.mec-full-calendar-wrap .mec-search-form .col-md-6,.mec-full-calendar-wrap .mec-search-form .col-md-8{padding:0}.mec-widget .mec-search-form .mec-date-search,.mec-widget .mec-search-form .mec-text-input-search{width:100%}.mec-widget .mec-search-form .mec-text-input-search{margin-top:10px}.mec-search-form .mec-date-search{clear:left}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:table-cell;float:none}.mec-widget .mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block}.mec-wrap .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{width:calc(100% - 36px);margin-bottom:20px}.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 106px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}@media only screen and (max-width:767px){.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{width:100%;float:none}.mec-search-form .mec-date-search{min-height:55px}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:50%;float:left}}@media only screen and (max-width:960px){.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 124px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}}@media only screen and (max-width:479px){.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:100%;float:none}}.ui-datepicker{background-color:#fff;border:1px solid #66afe9;border-radius:4px;box-shadow:0 0 8px rgba(102,175,233,.6);display:none;margin-top:4px;padding:10px;width:240px}.ui-datepicker a,.ui-datepicker a:hover{text-decoration:none;cursor:pointer}.ui-datepicker a:hover,.ui-datepicker td:hover a{color:#2c6396;-webkit-transition:color .1s ease-in-out;-moz-transition:color .1s ease-in-out;-o-transition:color .1s ease-in-out;transition:color .1s ease-in-out}.ui-datepicker .ui-datepicker-header{margin-bottom:4px;text-align:center}.ui-datepicker .ui-datepicker-title{font-weight:700}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{cursor:default;font-family:dashicons;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;height:20px;line-height:1.4;margin-top:2px;width:20px}.ui-datepicker .ui-datepicker-prev{float:left;text-align:left}.ui-datepicker .ui-datepicker-next{float:right;text-align:center}.ui-datepicker .ui-datepicker-prev:before{content:"\f341"}.ui-datepicker .ui-datepicker-next:before{content:"\f345"}.ui-datepicker .ui-icon{display:none}.ui-datepicker .ui-datepicker-calendar{table-layout:fixed;width:100%}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker .ui-datepicker-calendar th{text-align:center;padding:4px 0}.ui-datepicker .ui-datepicker-calendar td{border-radius:4px;-webkit-transition:background-color .1s ease-in-out,color .1s ease-in-out;-moz-transition:background-color .1s ease-in-out,color .1s ease-in-out;-o-transition:background-color .1s ease-in-out,color .1s ease-in-out;transition:background-color .1s ease-in-out,color .1s ease-in-out}.ui-datepicker .ui-datepicker-calendar td:hover{background-color:#eee;cursor:pointer}.ui-datepicker .ui-datepicker-calendar td a{text-decoration:none}.ui-datepicker .ui-datepicker-current-day{background-color:#4289cc}.ui-datepicker .ui-datepicker-current-day a{color:#fff}.ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover{background-color:#fff;cursor:default}.mec-owl-theme .owl-dots .owl-dot{border:none}.event-carousel-type1-head .mec-event-image{position:relative;min-height:150px}.event-carousel-type1-head .mec-event-image img{width:100%}.mec-event-carousel-content .mec-event-carousel-title a{transition:all .2s ease}.event-carousel-type1-head .mec-event-date-carousel{position:absolute;top:25px;left:1px;font-size:41px;width:160px;color:#fff;font-weight:500;background-color:#40d9f1;padding-left:21px;height:97px;line-height:2.3;padding-right:85px}.event-carousel-type1-head .mec-event-date-carousel:after{content:"";position:absolute;display:inline-block;z-index:-1;bottom:-13px;left:5px;width:0;border-width:13px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.event-carousel-type1-head .mec-event-date-info{font-size:12px;font-weight:300;position:absolute;top:27px;left:75px}.event-carousel-type1-head .mec-event-date-info-year{font-size:12px;font-weight:300;position:absolute;top:45px;left:75px}.mec-event-carousel-content{border:1px solid #e8e8e8;border-top:none;margin-top:-5px;padding:34px 9px 11px 37px}.mec-event-carousel-content .mec-event-carousel-title a{font-size:23px;font-weight:500;color:#000;letter-spacing:-1px}.mec-event-carousel-content p{font-size:14px;color:#7a7272;font-weight:300}.mec-owl-crousel-skin-type1 .owl-item .mec-event-article{padding:0 19px}.mec-event-carousel-type1 .owl-page.active span{background-color:#00aeef;height:14px;width:14px}.mec-event-carousel-type1 .mec-event-carousel-content{margin-bottom:15px;box-shadow:0 1px 2px rgba(0,0,0,.04);transition:all .27s ease}.mec-event-carousel-type1 .mec-event-carousel-content:hover{box-shadow:0 0 35px rgba(0,0,0,.07)}@media only screen and (min-width:768px) and (max-width:1000px),(min-width:270px) and (max-width:448px){.event-carousel-type1-head .mec-event-date-carousel{font-size:25px;line-height:2.5;padding-right:70px;height:64px;width:120px}.event-carousel-type1-head .mec-event-date-carousel:after{left:7px}.event-carousel-type1-head .mec-event-date-info{font-size:10px;top:13px;left:55px}.event-carousel-type1-head .mec-event-date-info-year{font-size:10px;top:25px;left:55px}.event-carousel-type1-head .mec-event-date-carousel:after{top:48px}}.event-carousel-type2-head{background:#fff;border:1px solid #e6e6e6}.event-carousel-type2-head .mec-event-carousel-content-type2{margin-top:15px;min-height:182px}.event-carousel-type2-head .mec-event-carousel-content-type2 .mec-event-date-info{font-size:15px;color:#9a9a9a;font-weight:300}.event-carousel-type2-head .mec-event-carousel-content-type2 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-carousel-content-type2 .mec-event-carousel-title a{color:inherit}.mec-event-carousel-type2 .event-carousel-type2-head .mec-event-carousel-content-type2 p{font-size:16px;font-weight:300;color:#444}.event-carousel-type2-head .mec-event-footer-carousel-type2{margin-top:33px;position:relative}.mec-event-carousel-type2 .mec-event-footer-carousel-type2 .mec-event-sharing-wrap{left:0}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-event-sharing-wrap>li{border:none;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button{border:1px solid #e4e4e4;float:right;padding:7px 23px 7px;font-size:12px;text-transform:uppercase;color:#707070;font-weight:500;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button:hover{color:#fff}.mec-event-article .event-carousel-type2-head{padding:10%;margin-right:-1px}.mec-event-carousel-type2 .mec-owl-carousel .owl-wrapper-outer{border-right:1px solid #e6e6e6}.mec-wrap .mec-event-carousel-type2 .owl-next,.mec-wrap .mec-event-carousel-type2 .owl-prev,.mec-wrap .mec-event-carousel-type3 .owl-next,.mec-wrap .mec-event-carousel-type3 .owl-prev,.mec-wrap .mec-event-carousel-type4 .owl-next,.mec-wrap .mec-event-carousel-type4 .owl-prev{transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:47%;background-color:transparent!important}.mec-event-carousel-type2 .owl-next{right:-60px}.mec-event-carousel-type2 .owl-prev{left:-60px}.mec-event-carousel-type2 .owl-next i,.mec-event-carousel-type2 .owl-prev i,.mec-event-carousel-type3 .owl-next i,.mec-event-carousel-type3 .owl-prev i,.mec-event-carousel-type4 .owl-next i,.mec-event-carousel-type4 .owl-prev i{font-size:40px;color:#282828}.mec-event-carousel-type2 .owl-next i:hover,.mec-event-carousel-type2 .owl-prev i:hover,.mec-event-carousel-type3 .owl-next i:hover,.mec-event-carousel-type3 .owl-prev i:hover{color:#000;cursor:pointer}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}@media only screen and (min-width:320px) and (max-width:768px){.mec-event-carousel-type2 .owl-next,.mec-event-carousel-type2 .owl-prev,.mec-event-carousel-type3 .owl-next,.mec-event-carousel-type3 .owl-prev,.mec-event-carousel-type4 .owl-next,.mec-event-carousel-type4 .owl-prev{position:initial;top:100%}}.mec-event-carousel-type3 .mec-event-article{margin:0 10px}.event-carousel-type3-head .mec-event-image,.event-carousel-type3-head .mec-event-image img{width:100%;height:auto}.event-carousel-type3-head .mec-event-footer-carousel-type3{background:#fff;display:inline-block;width:calc(100% - 40px);margin-top:-74px;position:relative;margin-left:20px;margin-right:20px;margin-bottom:6px;padding:8% 11%;box-shadow:0 2px 10px -2px rgba(0,0,0,.2)}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button{border:1px solid #e4e4e4;text-transform:uppercase;float:right;padding:7px 23px 7px;font-size:12px;color:#707070;font-weight:500}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button:hover{color:#fff}.mec-event-footer-carousel-type3 span{font-size:15px;color:#9a9a9a;font-weight:300;display:block;margin-top:30px}.mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:29px;font-weight:700}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-footer-carousel-type3 .mec-event-carousel-title a{color:inherit}.event-carousel-type3-head .mec-event-footer-carousel-type3 p{font-size:16px;font-weight:300;color:#444!important;margin-bottom:36px}.mec-event-carousel-type3 .owl-next{right:-70px}.mec-event-carousel-type3 .owl-prev{left:-70px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap{left:11%}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}.event-carousel-type3-head .mec-end-date-label{display:inline;margin-left:2px}.event-carousel-type4-head.clearfix{position:relative;overflow:hidden;background:#fff}.event-carousel-type4-head .mec-event-overlay{position:absolute;left:0;right:0;bottom:0;top:0;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-hover-carousel-type4{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out;opacity:0;visibility:hidden}.mec-event-carousel-type4 .mec-event-article{margin:0 10px}.mec-event-carousel-type4 .mec-event-article:hover .mec-event-hover-carousel-type4{opacity:1;visibility:visible}.mec-event-hover-carousel-type4 .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-hover-carousel-type4 .mec-event-date{font-size:11px;text-transform:uppercase;font-weight:400;line-height:1.6}.mec-event-hover-carousel-type4 .mec-event-date span{display:block;font-weight:700;font-size:14px}.mec-event-hover-carousel-type4 .mec-event-title{color:#fff;margin:20px 0 38px;font-size:16px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-hover-carousel-type4 .mec-btn-wrapper{text-align:left}.mec-event-hover-carousel-type4 .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:10px 14px;letter-spacing:1.5px;font-size:11px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-hover-carousel-type4 .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-carousel-type4 .owl-next{right:-70px}.mec-event-carousel-type4 .owl-prev{left:-70px}.mec-carousel-type4-head{margin-bottom:25px}.mec-carousel-type4-head-title{padding:0 11px;text-align:left;font-weight:700;font-size:20px;color:#000}.mec-carousel-type4-head-link{text-align:right;padding:0 11px}.mec-carousel-type4-head-link a{background:#222;color:#fff;padding:10px 38px;transition:all .3s ease}.mec-carousel-type4-head-link a:hover,.mec-carousel-type4-head-link a:visited{color:#fff}@media (max-width:960px){.mec-event-carousel-type4 .owl-stage{left:-50px}}.mec-wrap .mec-event-countdown-style1{color:#fff;padding:0!important;display:table;background:#437df9}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1{z-index:5;padding:50px 1% 50px 4%;display:table-cell;float:none;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2{background-color:rgba(0,0,0,.05);height:100%;padding-top:0;display:table-cell;float:none;position:relative;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{background-color:#f8f8f8;display:table-cell;float:none;text-align:center;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style1 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{content:"";position:absolute;display:inline-block;z-index:1;top:50%;margin-top:-11px;right:-24px;width:0;border-width:12px;border-style:solid;border-color:transparent transparent transparent #4077ed}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style1 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto}.mec-event-countdown-style1 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style1 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (min-width:1200px){.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%}}@media (max-width:960px){.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%;transform:rotate(90deg)}}@media (max-width:480px){.mec-event-countdown-style1 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{padding:10px 5px;min-width:50px;margin:3px 1px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:8px}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{display:inline}}.mec-wrap .mec-event-countdown-style2{color:#fff;padding:30px 0;background:#437df9;max-width:600px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part3{width:100%;float:none;vertical-align:middle;padding:50px 10% 50px 10%}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2{padding-top:12%;padding-bottom:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style2 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date-place{text-align:left;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 8px}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#222;background:#fff;transition:all .24s ease}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button:hover{background:#222;color:#fff}.mec-event-countdown-style2 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0}.mec-event-countdown-style2 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style2 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (max-width:767px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:80px;padding:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:26px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:11px}}@media only screen and (max-width:479px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:40px;padding:15px 10px;margin:2px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:20px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:9px}}@media (max-width:380px){.mec-event-countdown-style2 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{padding:10px 4px;margin:4px 1px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:7px}}.mec-wrap .mec-event-countdown-style3{color:#fff;padding:0;background:#282828;display:table;width:100%}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1{width:68%;padding:50px 1% 50px 4%;vertical-align:middle;display:table-cell;position:relative}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:32%;display:table-cell;position:relative;padding-bottom:0;padding-top:0}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 img{width:100%;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{font-weight:300;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{color:#fff;font-size:36px;letter-spacing:-2px;font-weight:700;line-height:1;margin-top:-10px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style3 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style3 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto;position:absolute;top:40px;right:20px}.mec-event-countdown-style3 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style3 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:11px;color:#888;margin:8px 0 0;line-height:1}.mec-event-countdown-style3 .mec-event-date{width:176px;height:96px;background:#40d9f1;color:#fff;font-size:13px;position:absolute;left:-27px;top:146px}.mec-event-countdown-style3 .mec-event-date:after{content:"";position:absolute;display:inline-block;z-index:1;bottom:-18px;left:8px;width:0;border-width:19px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:50px;position:absolute;top:36px;left:12px;letter-spacing:-3px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:80px;top:26px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:80px;top:45px}.mec-event-countdown-style3 .mec-event-countdown-part-details{padding-top:35px;margin-bottom:50px;min-height:100px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-title{font-size:17px;color:#fff;line-height:1.4;padding-right:20px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link{color:#fff;font-size:12px;position:relative;padding-left:22px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link:before{content:"";display:inline-block;width:18px;border-top:1px solid #fff;position:absolute;left:0;top:8px}.mec-event-countdown-style3 .mec-event-title-link{position:absolute;left:190px;top:152px}.event-carousel-type1-head .mec-event-date-carousel:before,.mec-event-countdown-style3 .mec-event-date:before{content:'';position:absolute;left:0;bottom:0;z-index:2;width:100%;height:96px;background:0 0;display:inline-block;box-shadow:0 5px 5px rgba(0,0,0,.12)}@media only screen and (min-width:960px){.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown li{padding:10px}.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:31px}}@media (max-width:959px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:100%;display:block}.mec-event-countdown-style3 .mec-event-title-link{top:190px}.mec-event-countdown-style3 .mec-event-countdown{top:96px}.mec-event-countdown-style3 .mec-event-date{left:0;top:190px}.mec-event-countdown-style3 .mec-event-date:after{display:none}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{display:inline}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:150px}}@media (max-width:767px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:26px;letter-spacing:-1px}.mec-event-countdown-style3 .mec-event-title-link{left:130px}.mec-event-countdown-style3 .mec-event-date{width:120px;font-size:10px;height:63px}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:36px;top:20px;left:4px;letter-spacing:-2px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:52px;top:12px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:52px;top:28px}}@media (max-width:380px){.mec-event-countdown-style3 .mec-event-title-link{left:10px;top:260px}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:300px}.mec-event-countdown-style3 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:10px 5px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:8px}}.mec-slider-t1-wrap{width:100%;padding:60px 90px;background:#f7f7f7;min-height:560px;position:relative}.mec-slider-t1{height:500px;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t1 .mec-event-article{position:relative;height:500px}.mec-slider-t1 .mec-slider-t1-img{position:relative;background-size:cover!important;background-position:center!important;width:50%;height:100%;float:right;margin:0;overflow:hidden}.mec-slider-t1 .mec-slider-t1-content{width:50%;float:left;height:100%;background:#fff;padding:6%}.mec-slider-t1-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t1-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:54px;height:54px;line-height:48px;border-radius:0;text-align:center;background:#fff;box-shadow:0 2px 11px 0 rgba(0,0,0,.045);transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-27px;cursor:pointer}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 29px 0 rgba(0,0,0,.095)}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:12px;color:#282828;transition:all .21s ease}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{font-size:13px;color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t1{margin:0 auto;max-width:900px}}@media only screen and (max-width:960px){.mec-slider-t1 .mec-slider-t1-content,.mec-slider-t1 .mec-slider-t1-img{width:100%;float:none}.mec-slider-t1 .mec-slider-t1-img{height:300px}.mec-slider-t1,.mec-slider-t1 .mec-event-article{height:auto}}@media only screen and (max-width:768px){.mec-slider-t1-wrap{padding:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:10px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}}@media only screen and (max-width:479px){.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t2-wrap{width:100%;padding:0;background:#fff;min-height:600px;position:relative}.mec-slider-t2 .mec-event-article{height:600px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t2 .mec-slider-t2-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:70%;height:100%;margin:0;overflow:hidden}.mec-slider-t2 .mec-slider-t2-content{width:50%;position:absolute;right:0;top:60px;bottom:60px;padding:5%}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern *{color:#fff}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-content,.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t2-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:84px;cursor:pointer}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}.mec-wrap.colorskin-custom .mec-slider-t2 .mec-event-article .mec-event-date.mec-color{color:#fff}@media only screen and (min-width:961px){.mec-slider-t2{margin:0 auto;max-width:1200px}}@media only screen and (max-width:960px){.mec-slider-t2 .mec-slider-t2-content,.mec-slider-t2 .mec-slider-t2-img{width:100%;float:none;position:static}.mec-slider-t2 .mec-slider-t2-img{height:300px}.mec-slider-t2 .mec-event-article{height:auto}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px}}@media only screen and (max-width:479px){.mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:22px}}.mec-slider-t3-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t3 .mec-event-article{height:700px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t3 .mec-slider-t3-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;opacity:.68;z-index:1}.mec-slider-t3 .mec-slider-t3-content{width:50%;height:auto;vertical-align:middle;display:table;position:absolute;left:0;top:0;bottom:0;padding:0 2% 0 7%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t3 .mec-slider-t3-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-content,.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-slider-t3-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t3-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{border-color:#40d9f1}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-22px;cursor:pointer}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next{right:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:50px;font-weight:300}.mec-slider-t3-content.mec-event-grid-modern .mec-event-description{font-size:19px}}@media only screen and (max-width:767px){.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}}@media only screen and (max-width:479px){.mec-slider-t3 .mec-slider-t3-content{width:100%}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t4-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t4 .mec-event-article{height:700px;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t4 .mec-slider-t4-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;z-index:1}.mec-slider-t4 .mec-slider-t4-content{width:auto;max-width:700px;background:rgba(37,37,37,.94)!important;height:auto;vertical-align:middle;display:table;position:absolute;left:8%;top:19%;padding:3%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t4 .mec-slider-t4-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-content,.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:13px;padding:0 42px;line-height:49px;height:50px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t4-content.mec-event-grid-modern .mec-slider-t4-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next{right:60px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{right:112px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:767px){.mec-slider-t4 .mec-slider-t4-content{width:100%;left:0;top:auto;bottom:0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t5-wrap{width:auto;max-width:570px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-slider-t5{height:auto;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t5 .mec-event-article{position:relative;height:auto}.mec-slider-t5 .mec-slider-t5-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:300px;float:none;margin:0;overflow:hidden}.mec-slider-t5 .mec-slider-t5-content{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-slider-t5 .mec-events-content p{margin-bottom:20px}.mec-slider-t5-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t5-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t5 .mec-slider-t5-col6{width:50%;float:left;height:100%}.mec-slider-t5 .mec-slider-t5-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-slider-t5 .mec-slider-t5-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-slider-t5 .mec-slider-t5-col6 address{font-size:12px;margin-bottom:0}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t5-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:768px){.mec-slider-t5 .mec-slider-t5-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-single-modern .mec-events-event-image{text-align:center}.mec-single-modern .mec-events-event-image img{width:100%}.mec-single-modern .mec-single-event-bar{background-color:#f7f7f7;margin:20px 0 0;padding:15px;display:table;width:100%}.mec-single-modern .mec-single-event-bar>div{display:table-cell}.mec-single-modern .mec-single-event-bar>div i{font-size:20px;vertical-align:middle}.mec-single-modern .mec-single-event-bar>div .mec-time-comment{font-size:12px;color:#999}.mec-single-modern .mec-single-event-bar>div h3{text-transform:uppercase;font-size:16px;font-weight:700;padding-bottom:5px;display:inline;color:#000;padding-left:10px}.mec-single-modern .mec-single-event-bar>div dd{font-size:14px;color:#8d8d8d;padding-left:34px;margin-bottom:0}.mec-single-modern .col-md-4 .mec-frontbox{margin-top:-50px;margin-bottom:70px;padding:20px;border:none;background:#f7f7f7;box-shadow:none}.mec-next-occurrence li{list-style:none}@media only screen and (min-width:960px){.mec-single-modern .col-md-4 .mec-frontbox{margin-left:20px}}@media only screen and (max-width:960px){.mec-single-modern .mec-single-event-bar>div{display:block}}.lity-content>div{overflow:auto}.mec-next-event-details li{list-style:none;margin-top:20px}.mec-next-event-details h6{text-transform:uppercase;font-size:13px;padding-bottom:5px;display:inline;color:#222;padding-left:0}.mec-next-event-details abbr{display:block;padding-left:12px;color:#8d8d8d}.mec-next-event-details i{margin-right:10px;margin-left:12px}.mec-next-event-details i:before{color:#40d9f1}.mec-next-event-details a{text-align:center;display:block;background:#fff;padding:6px 0;font-size:11px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;transition:.3s}.mec-single-modal.mec-single-modern .mec-single-title{text-align:center;padding:15px 10px 0}.admin-bar .mec-single-modal.mec-single-modern .mec-single-title{padding-top:40px}.mec-single-modal.mec-single-modern .mec-single-event-bar{padding:5px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div dd{font-size:13px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div h3{font-size:15px}@media only screen and (min-width:960px){.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-left:0}}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-top:10px;margin-bottom:10px}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox.mec-event-meta{padding:0}.mec-single-modal .mec-event-meta dd.mec-organizer-email a,.mec-single-modal .mec-event-meta dd.mec-organizer-url a{font-size:12px;display:block}.mec-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}body .featherlight .featherlight-content{background:0 0;overflow:unset;z-index:9999}body .featherlight .featherlight-close-icon{position:fixed;top:40px;right:40px;background:0 0;color:#fff;border:1px solid #fff;border-radius:0}body .featherlight .featherlight-close-icon:hover{background:#fff;color:#000;border:1px solid #000}@media (max-width:320px){.mec-wrap span.flip-clock-divider{width:20px}.mec-single-event .mec-events-meta-group-countdown{padding:15px 12%}}@media (max-width:414px){.mec-wrap span.flip-clock-divider{width:30px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 7%}}@media (max-width:480px){.mec-wrap span.flip-clock-divider{width:7px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 1%}}@media(max-width:1366px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:20px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 15px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:48px}}@media(max-width:1280px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:14px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:15px 10px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:38px}}@media(min-width:961px) and (max-width:1024px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:7px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:15px 5px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:14px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul li a div{font-size:30px}}@media(max-width:640px){body .mec-modal-wrap .mec-single-modal.featherlight-close-icon{top:14px;right:14px}}@media(max-width:480px){.featherlight .featherlight-content,body .mec-modal-wrap{max-width:100%}body .mec-modal-wrap.flip-clock-divider .flip-clock-label{display:block}}@media (max-width:414px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:50px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 65px}body .featherlight-content .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 2px 20px 2px!important}body .featherlight-content .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:3px!important}}@media (max-width:375px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:50px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 45px}}@media (max-width:320px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:20px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 40px}}.mec-events-toggle{max-width:960px;margin-left:auto;margin-right:auto}.mec-events-toggle .mec-toggle-item{border:1px solid #e4e4e4;margin-bottom:15px;box-shadow:0 10px 15px #f3f3f3}.mec-events-toggle .mec-toggle-item-inner{cursor:pointer;position:relative;padding:30px 60px 30px 15px;background:#fff;transition:all .3s ease;min-height:100px;display:table;width:100%;border-collapse:separate}.mec-events-toggle .mec-toggle-item-inner:hover{background:#fbfbfb}.mec-toggle-item-col{width:200px;border-right:1px solid #e3e3e3;margin-right:15px;display:table-cell;padding-right:5px}.mec-toggle-item-col .mec-event-date{font-size:38px;line-height:40px;float:left;margin-right:8px}.mec-toggle-item-col .mec-event-month,.mec-toggle-item-col .mec-time-details{text-transform:uppercase;font-size:12px;line-height:14px;padding-top:4px;font-weight:700}.mec-toggle-item-col .mec-event-detail{font-size:10px}.mec-toggle-item-col .mec-event-day{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:35px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-events-toggle .mec-toggle-title{color:#000;font-size:23px;font-weight:600;margin-bottom:0;transition:all .3s ease;display:table-cell;text-align:left;max-width:calc(100% - 200px);padding-left:15px;vertical-align:middle}.mec-events-toggle .mec-toggle-item-inner span.event-color{width:5px;height:100%;position:absolute;left:-1px;top:0;bottom:0;border-radius:0;margin:0}.mec-events-toggle .mec-toggle-item-inner i{position:absolute;font-size:30px;right:25px;top:50%;transform:translate(0,-50%);cursor:pointer}.mec-events-toggle .mec-toggle-item.is-open i.mec-sl-plus:before{content:"\e615"}.mec-events-toggle .mec-toggle-item.is-open .mec-toggle-title{background:#f8f8f8;cursor:pointer}.mec-events-toggle .mec-toggle-content{border-top:1px solid #e4e4e4}.mec-events-toggle .mec-toggle-content .mec-modal-wrap{margin:0;max-width:100%;box-shadow:none}.mec-events-toggle .mec-toggle-content .mec-modal-wrap .mec-single-event{margin:0}.mec-events-toggle .mec-toggle-content .mec-single-event-bar,.mec-events-toggle .mec-toggle-content h1.mec-single-title{display:none}.mec-events-toggle .media-links a{margin-bottom:0}.mec-events-toggle .mec-toggle-content .mec-toggle-meta{margin-bottom:14px}.mec-events-toggle #mec_speakers_details.mec-frontbox{padding:0;margin:0}.mec-events-toggle .mec-toggle-item h3.mec-speakers{border:none;text-align:left}.mec-events-toggle .mec-toggle-item h3.mec-speakers:before{content:"\e063";font-family:simple-line-icons;border:none;position:relative;display:inline-block;left:unset;bottom:unset;font-size:22px;font-weight:400;padding:0 11px 0 28px;vertical-align:middle}@media only screen and (max-width:767px){.mec-toggle-item-inner .mec-toggle-item-col{float:none;width:100%;border-right:none;margin-bottom:5px;display:block;max-width:100%;padding-left:15px}.mec-events-toggle .mec-toggle-title{display:block;width:100%;max-width:100%}}.mec-events-agenda-wrap{margin:10px 0;border:1px solid #e9e9e9;padding-left:20px;box-shadow:0 2px 2px rgba(0,0,0,.03)}.mec-events-agenda{padding:0;border-bottom:1px solid #e9e9e9;overflow:hidden}.mec-agenda-date-wrap{width:210px;padding-top:15px;float:left;font-size:13px}.mec-agenda-date-wrap i,.mec-agenda-event i{font-size:11px;color:#aaa;margin-right:4px;margin-left:1px}.mec-agenda-event i{vertical-align:middle;margin-right:1px}.mec-agenda-events-wrap{float:left;width:calc(100% - 210px);background:#f9f9f9;padding:15px}.mec-agenda-time{font-size:11px;color:#707070;padding-right:10px;width:138px;display:inline-block}.mec-agenda-event-title{position:relative;padding-left:14px}.mec-agenda-event-title a{font-family:Roboto,Montserrat,Helvetica,Arial,sans-serif;font-size:14px;font-weight:600;color:#333}.mec-agenda-event-title span.event-color{width:9px;height:9px;position:absolute;left:0;top:4px;margin:0}.mec-agenda-date-wrap span.mec-agenda-day{color:#aaa;font-size:12px}@media only screen and (max-width:767px){.mec-agenda-date-wrap,.mec-agenda-events-wrap{float:none;width:100%}.mec-events-agenda span.mec-agenda-event-title{display:block;width:100%}.mec-agenda-event-title span.event-color{top:7px}.mec-agenda-event-title a{font-size:13px}}.mec-yearly-view-wrap{margin:0 0 15px;border:1px solid #e6e6e6;box-shadow:0 2px 4px rgba(0,0,0,.04);border-bottom-width:4px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar{max-width:100%;width:232px;padding:10px;background:#fff;margin:10px;display:inline-block}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar dl dt{transition:none;height:30px;width:30px;line-height:30px;border-radius:0;font-size:12px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar .mec-calendar-events-sec{padding:10px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar .mec-has-event:after{width:4px;height:4px;bottom:3px;margin-left:-2px}.mec-yearly-view-wrap .mec-calendar-side .mec-calendar-table{min-height:200px}.mec-calendar.mec-yearly-calendar .mec-calendar-table-head dl dt{background:#f9f9f9;font-size:13px}.mec-calendar.mec-yearly-calendar .mec-calendar-table-title{text-align:center;font-size:15px;font-weight:700;color:#222;margin-top:-5px;padding-bottom:5px}.mec-yearly-view-wrap .mec-yearly-calendar-sec{min-height:200px;width:538px;overflow:hidden;float:left;background:#f8f8f8;padding:15px}.mec-yearly-view-wrap .mec-yearly-agenda-sec{min-height:200px;width:calc(100% - 538px);float:left;padding:0 0 0 20px;overflow:hidden}.mec-yearly-view-wrap .mec-yearly-title-sec{position:relative;padding:15px;text-align:center;border-bottom:1px solid #e6e6e6;box-shadow:0 1px 3px rgba(0,0,0,.02)}.mec-yearly-view-wrap .mec-yearly-title-sec h2{font-size:30px;line-height:40px;color:#333;margin:0;font-weight:700}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year,.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{position:absolute;top:50%;margin-top:-15px;min-width:30px;height:30px;line-height:30px;padding:0 8px;text-align:center;background:#fff;color:#666;font-size:14px;border:1px solid #eee;border-radius:2px;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease;cursor:pointer}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{right:auto;left:20px;padding-right:14px}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year{left:auto;right:20px;padding-left:14px}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year i,.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-yearly-view-wrap .mec-events-agenda.mec-selected{box-shadow:-10px 0 0 0 #fffcf2,0 -1px 0 #fbebb6;background:#fffcf2;border-color:#fbebb6;color:#f9af29}@media only screen and (max-width:959px){.mec-yearly-view-wrap .mec-yearly-calendar-sec{width:268px;padding:10px 5px}.mec-yearly-view-wrap .mec-yearly-agenda-sec{width:calc(100% - 268px);padding:0 0 0 10px}}@media only screen and (max-width:767px){.mec-yearly-view-wrap .mec-yearly-agenda-sec,.mec-yearly-view-wrap .mec-yearly-calendar-sec{width:100%;float:none}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar{width:auto}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar dl dt{width:14.2%}.mec-yearly-view-wrap .mec-yearly-title-sec h2{font-size:25px}}.mec-yearly-view-wrap .mec-agenda-event i,.mec-yearly-view-wrap .mec-agenda-time{display:none}@media only screen and (min-width:768px){.mec-yearly-view-wrap .mec-events-agenda-wrap{margin-top:0;border:none;padding-left:0;box-shadow:none}.mec-yearly-view-wrap .mec-agenda-date-wrap{width:174px;font-size:11px;padding-top:10px}.mec-yearly-view-wrap .mec-agenda-events-wrap{width:calc(100% - 174px);padding:10px}.mec-yearly-view-wrap .mec-agenda-event-title a{font-size:13px}.mec-yearly-view-wrap .mec-agenda-event-title span.event-color{width:8px;height:8px}.mec-yearly-view-wrap .mec-agenda-date-wrap span.mec-agenda-day{font-size:11px}.mec-yearly-view-wrap .mec-yearly-calendar-sec{box-shadow:-2px 0 5px rgba(0,0,0,.03) inset}}@media only screen and (max-width:1200px){.mec-yearly-view-wrap .mec-agenda-event-title a{font-size:12px;padding-right:6px}}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table{padding-bottom:10px;border-bottom:none}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt:hover{cursor:pointer}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-has-no-event,.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-has-no-event:hover{color:#bbb;cursor:default}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-day-active{background:#40d9f1;color:#fff;position:relative}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-day-active:after{content:'';position:absolute;display:block;bottom:-20px;left:50%;margin-left:-10px;width:0;border-width:10px;border-style:solid;border-color:#40d9f1 transparent transparent transparent}.mec-timetable-events-list{padding:10px 20px;border:none;margin:0}.mec-timetable-events-list .mec-timetable-event{padding:10px 0;border-bottom:1px dashed #ddd}.mec-timetable-events-list .mec-timetable-event:last-child{border:none}.mec-timetable-event .mec-timetable-event-span{font-size:12px;color:#444;padding-right:30px;line-height:22px}.mec-timetable-events-list .mec-timetable-event i{font-size:13px;color:#aaa;margin-right:3px;vertical-align:baseline}.mec-timetable-event .mec-timetable-event-span a{color:#333}.mec-timetable-event .mec-timetable-event-time{font-size:11px}.mec-timetable-event .mec-timetable-event-time i{vertical-align:text-bottom}.mec-timetable-event .mec-timetable-event-title{font-size:13px}.mec-timetable-event .mec-timetable-event-title .event-color{width:10px;height:10px}.mec-timetable-events-list .mec-timetable-event.mec-util-hidden{display:none}.mec-timetable-events-list.mec-util-hidden{display:none}@media only screen and (min-width:768px){.mec-timetable-events-list{display:table;width:100%;margin:10px 0 20px}.mec-timetable-events-list .mec-timetable-event{display:table-row;padding:0;border:none;background:#fff}.mec-timetable-events-list .mec-timetable-event:hover{background:#fafafa}.mec-timetable-event .mec-timetable-event-span{display:table-cell;padding:10px 15px;border-bottom:1px solid #ebebeb}.mec-timetable-events-list .mec-timetable-event:last-child .mec-timetable-event-span{border-bottom:none}}@media only screen and (max-width:767px){.mec-timetable-event .mec-timetable-event-title{display:block;width:100%;padding:5px 0 10px;font-weight:700}}.mec-timetable-t2-wrap{border:1px solid #e6e6e6;background:#fafafa;padding:0 15px 15px;overflow:hidden;box-shadow:0 3px 2px 0 rgba(0,0,0,.012)}.mec-timetable-t2-col{width:20%;float:left;min-height:20px;padding-right:1px;background:0 0}.mec-ttt2-title{background:#fafafa;color:#333;font-size:13px;font-weight:600;text-transform:uppercase;letter-spacing:1px;text-align:center;padding:25px 10px 10px;margin-bottom:1px}.mec-timetable-t2-col .mec-event-article{position:relative}.mec-timetable-t2-col .mec-event-article .event-color{position:absolute;width:auto;height:auto;left:0;right:0;top:0;bottom:0;margin:0;z-index:1;border-radius:2px}.mec-timetable-t2-content{position:relative;z-index:2;color:#fff;padding:15px 15px 20px;text-align:left;height:130px;margin-bottom:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title{line-height:22px;margin-bottom:13px;white-space:nowrap;padding-right:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title a{color:#fff;font-size:15px;font-weight:600;white-space:nowrap;overflow:hidden}.mec-timetable-t2-content div{color:#fff;font-size:11px;font-weight:400;line-height:19px;white-space:nowrap}.mec-timetable-t2-content div i{font-size:12px;margin-right:4px}@media only screen and (max-width:960px){.mec-timetable-t2-col{width:100%;float:none}}@media(min-width:961px){.mec-timetable-col-7{width:14.28%}.mec-timetable-col-6{width:16.6666%}}.mec-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-timetable-wrap article .mec-fc-style,.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article.mec-event-cover-modern .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{font-size:9px;letter-spacing:.5px;text-transform:uppercase;background:#04de78;padding:2px 7px;color:#fff;position:relative;margin-left:5px;border-radius:2px}.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-modern.mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-minimal article .mec-fc-style:before,.mec-event-grid-simple article .mec-fc-style:before,.mec-timetable-wrap article .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article .mec-fc-style:before,.mec-wrap .mec-event-list-modern article .mec-fc-style:before,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style:before{width:0;height:0;border-top:4px solid transparent!important;border-right:5px solid;border-bottom:4px solid transparent;margin:0;top:50%;left:-4px;transform:translateY(-4.5px);position:absolute;content:'';color:#04de78}.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-event-grid-classic article.mec-label-canceled:before,.mec-event-grid-classic article.mec-label-featured:before,.mec-event-grid-minimal article.mec-label-canceled:before,.mec-event-grid-minimal article.mec-label-featured:before,.mec-event-grid-simple article.mec-label-canceled:before,.mec-event-grid-simple article.mec-label-featured:before,.mec-timetable-wrap article.mec-label-canceled:before,.mec-timetable-wrap article.mec-label-featured:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled:before,.mec-wrap .mec-event-list-accordion article.mec-label-featured:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled:before,.mec-wrap .mec-event-list-modern article.mec-label-featured:before{display:none}.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{top:-3px;font-size:11px;margin-left:10px}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style:before,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-canceled:before,.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-featured:before{-ms-transform:none;-webkit-transform:none;transform:none;-webkit-transition:none;transition:none;top:271px;right:0}.mec-timetable-wrap article .mec-fc-style{top:-2px;font-size:10px}.mec-wrap article.mec-event-cover-modern .mec-fc-style{padding:5px 9px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:24px;display:inline-block;border-radius:2px}.mec-skin-grid-events-container .mec-wrap .mec-event-grid-clean .mec-event-article:before{-ms-transform:none;-webkit-transform:none;transform:none!important;-webkit-transition:none;transition:none;top:22px!important;right:22px!important;padding:0 10px!important}.mec-event-grid-minimal article .mec-fc-style,.mec-event-grid-simple article .mec-fc-style{top:-4px;font-size:10px;margin-left:10px}.mec-event-grid-classic article .mec-fc-style{padding:5px 20px;font-size:12px;margin-top:8px;display:inline-block}.mec-hourly-schedule-speaker-info{background:#fff;padding:30px;border:1px solid #e6e6e6;max-width:740px;width:740px;margin-left:-110px}.mec-hourly-schedule-speaker-thumbnail{float:left;max-width:30%;width:30%}.mec-hourly-schedule-speaker-name{font-weight:700;font-size:26px;line-height:1.2;color:#333;text-transform:uppercase}.mec-hourly-schedule-speaker-details{float:left;width:69%;padding-left:25px}.mec-hourly-schedule-speaker-job-title{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-hourly-schedule-speaker-description{font-size:14px;font-weight:400;color:#6d7683;line-height:1.7;text-align:left}.mec-hourly-schedule-speaker-contact-information a i{color:#6b6b6b;background:#ebebeb;line-height:29px;margin:9px 7px 9px 0;width:30px;height:30px;display:inline-block;text-align:center;transition:all .2s ease;font-size:15px;cursor:pointer;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-content button[type=submit]{position:relative;border:none;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;min-width:170px;margin-top:5px;border-radius:0;margin-bottom:6px}.lity-content button[type=submit]:hover{background:#222}.lity-content .mec-book-tickets-container li{list-style:none}.lity-content .mec-events-meta-group-booking #mec_book_payment_form h4,.lity-content .mec-events-meta-group-booking li h4{font-size:19px;font-weight:700}.lity-content .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li{width:50%}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li:nth-child(even){border:none}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li span{display:block}.lity-content .mec-events-meta-group-booking button[type=submit]:after{display:none;font-family:simple-line-icons;content:"\e098";margin-left:4px;-webkit-animation:rotating 1.2s linear infinite;-moz-animation:rotating 1.2s linear infinite;-ms-animation:rotating 1.2s linear infinite;-o-animation:rotating 1.2s linear infinite;animation:rotating 1.2s linear infinite}.lity-content .mec-events-meta-group-booking button[type=submit].loading:after{display:inline-block}@media only screen and (max-width:480px){.lity-content .mec-events-meta-group-booking{padding:20px;width:340px;margin:0 auto}}.mec-events-meta-group-booking{position:relative}.mec-cover-loader:after{content:'';position:absolute;top:0;right:0;left:0;bottom:0;background:rgba(255,255,255,.5);z-index:99999}.mec-loader{background:rgba(0,0,0,0);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);z-index:9}.mec-loader,.mec-loader:after{border-radius:50%;width:5em;height:5em;z-index:999999999999}.mec-loader{font-size:10px;text-indent:-9999em;border-top:.5em solid rgba(0,0,0,.2);border-right:.5em solid rgba(0,0,0,.2);border-bottom:.5em solid rgba(0,0,0,.2);border-left:.5em solid #fff;-webkit-transform:translateZ(0);-ms-transform:translateZ(0);transform:translateZ(0);-webkit-animation:mecloader 1.1s infinite linear;animation:mecloader 1.1s infinite linear}@-webkit-keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.mec-google-recaptcha{margin:0 0 20px 16px}.mec-wrap *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap :after,.mec-wrap :before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap .clearfix:after,.mec-wrap .clearfix:before{content:'\0020';display:block;overflow:hidden;visibility:hidden;width:0;height:0}.mec-wrap .clearfix:after{clear:both}.mec-wrap .clearfix{zoom:1}.mec-wrap .clear,.mec-wrap .clr{clear:both;display:block;overflow:hidden;visibility:hidden}.mec-wrap .clr{visibility:visible;overflow:visible}.mec-container [class*=col-] img{max-width:100%}.mec-container{margin-right:auto;margin-left:auto;padding-left:10px;padding-right:10px}.mec-container:after,.mec-container:before{content:" ";display:table}.mec-container:after{clear:both}@media only screen and (max-width:479px){.mec-container{width:300px}}@media only screen and (min-width:480px) and (max-width:767px){.mec-container{width:420px}}@media only screen and (min-width:768px) and (max-width:960px){.mec-container{width:768px}}@media only screen and (min-width:961px){.mec-container{width:960px}}@media only screen and (min-width:1200px){.mec-container{width:1196px;padding-left:15px;padding-right:15px}}@media only screen and (min-width:1921px){.mec-container{max-width:1690px}}.mec-wrap .row{margin-left:-10px;margin-right:-10px}.mec-wrap .row:after,.mec-wrap .row:before{content:" ";display:table}.mec-wrap .row:after{clear:both}.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{position:relative;min-height:1px;padding-left:10px;padding-right:10px}@media only screen and (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{padding-left:15px;padding-right:15px}.mec-wrap .row{margin-left:-15px;margin-right:-15px}}.mec-container [class*=col-].alpha{padding-left:0}.mec-container [class*=col-].omega{padding-right:0}.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{float:left}.mec-wrap .col-xs-12{width:100%}.mec-wrap .col-xs-11{width:91.66666666666666%}.mec-wrap .col-xs-10{width:83.33333333333334%}.mec-wrap .col-xs-9{width:75%}.mec-wrap .col-xs-8{width:66.66666666666666%}.mec-wrap .col-xs-7{width:58.333333333333336%}.mec-wrap .col-xs-6{width:50%}.mec-wrap .col-xs-5{width:41.66666666666667%}.mec-wrap .col-xs-4{width:33.33333333333333%}.mec-wrap .col-xs-3{width:25%}.mec-wrap .col-xs-2{width:16.666666666666664%}.mec-wrap .col-xs-1{width:8.333333333333332%}@media (min-width:768px){.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9{float:left}.mec-wrap .col-sm-12{width:100%}.mec-wrap .col-sm-11{width:91.66666666666666%}.mec-wrap .col-sm-10{width:83.33333333333334%}.mec-wrap .col-sm-9{width:75%}.mec-wrap .col-sm-8{width:66.66666666666666%}.mec-wrap .col-sm-7{width:58.333333333333336%}.mec-wrap .col-sm-6{width:50%}.mec-wrap .col-sm-5{width:41.66666666666667%}.mec-wrap .col-sm-4{width:33.33333333333333%}.mec-wrap .col-sm-3{width:25%}.mec-wrap .col-sm-2{width:16.666666666666664%}.mec-wrap .col-sm-1{width:8.333333333333332%}}@media (min-width:961px){.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9{float:left}.mec-wrap .col-md-12{width:100%}.mec-wrap .col-md-11{width:91.66666666666666%}.mec-wrap .col-md-10{width:83.33333333333334%}.mec-wrap .col-md-9{width:75%}.mec-wrap .col-md-8{width:66.66666666666666%}.mec-wrap .col-md-7{width:58.333333333333336%}.mec-wrap .col-md-6{width:50%}.mec-wrap .col-md-5{width:41.66666666666667%}.mec-wrap .col-md-4{width:33.33333333333333%}.mec-wrap .col-md-3{width:25%}.mec-wrap .col-md-2{width:16.666666666666664%}.mec-wrap .col-md-1{width:8.333333333333332%}}@media (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9{float:left}.mec-wrap .col-lg-12{width:100%}.mec-wrap .col-lg-11{width:91.66666666666666%}.mec-wrap .col-lg-10{width:83.33333333333334%}.mec-wrap .col-lg-9{width:75%}.mec-wrap .col-lg-8{width:66.66666666666666%}.mec-wrap .col-lg-7{width:58.333333333333336%}.mec-wrap .col-lg-6{width:50%}.mec-wrap .col-lg-5{width:41.66666666666667%}.mec-wrap .col-lg-4{width:33.33333333333333%}.mec-wrap .col-lg-3{width:25%}.mec-wrap .col-lg-2{width:16.666666666666664%}.mec-wrap .col-lg-1{width:8.333333333333332%}}#mec_woo_add_to_cart_btn{min-width:170px;margin-top:5px;text-align:center}.mec-breadcrumbs{border-radius:2px;padding:9px 15px 6px;font-size:11px;color:#8d8d8d;letter-spacing:0;text-transform:none;font-weight:500;margin:auto 15px 33px 15px;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.025)}.mec-breadcrumbs-modern{margin:auto 0 33px 0}.mec-breadcrumbs a{color:#000;padding-left:4px}.mec-breadcrumbs a:hover{text-decoration:underline}.mec-breadcrumbs i{font-size:8px;margin:0 0 0 4px}.mec-breadcrumbs .container{padding-left:20px}.mec-content-notification a{margin-left:5px}.mec-content-notification{background:#f7f7f7;padding:10px 10px 10px;border:1px solid #e8e8e8}.mec-content-notification p{margin-bottom:0}.mec-fes-form #mec-advanced-wraper div:first-child>ul{border:1px solid #cfeff5;width:auto;box-shadow:0 1px 4px -2px #cfeff5;display:block;margin:5px 0 10px;padding:5px 0;border-radius:2px}.mec-fes-form #mec-advanced-wraper div:first-child>ul:last-of-type{margin-bottom:35px}#mec-advanced-wraper div:first-child>ul span{display:none}#mec-advanced-wraper div:first-child>ul *{display:inline-block;background:#fff;font-size:12px;color:#717273;text-align:center}#mec-advanced-wraper div:first-child>ul>li{width:60px;font-weight:700;margin:0 10px 0 0;padding:4px 0;border-right:1px solid #cfeff5}#mec-advanced-wraper div:first-child>ul>ul>li{margin:0;padding:2px 10px;cursor:pointer;border-radius:2px;transition:all .18s ease}.mec-fes-form #mec-advanced-wraper div:first-child>ul>ul>li.mec-active,.mec-fes-form #mec-advanced-wraper div:first-child>ul>ul>li:hover{background:#40d9f1!important;box-shadow:0 1px 9px -3px #40d9f1;color:#fff!important}.mec-search-bar-wrap .mec-search-form .mec-text-input-search{width:83%}.mec-search-bar-wrap .mec-search-form .mec-ajax-search-result .mec-text-input-search{width:100%;float:none}.mec-search-bar-wrap input#mec-search-bar-input{width:calc(100% - 84%);margin-left:11px;background:#40d9f1;Color:#fff;font-weight:400}.mec-text-input-search+input#mec-search-bar-input{margin-left:-3px}.mec-search-bar-wrap input#mec-search-bar-input:hover{background:#000}.mec-wrap.mec-search-bar-wrap .mec-totalcal-box input{float:none}@media(max-width:768px){.mec-search-bar-wrap .mec-search-form .mec-text-input-search{display:inline-block}}@media(max-width:480px){.mec-search-bar-wrap .mec-search-form .mec-text-input-search{width:64%}.mec-search-bar-wrap input#mec-search-bar-input{width:calc(100% - 67%)}}.mec-wrap.mec-search-bar-wrap .mec-totalcal-box{overflow:visible}.mec-ajax-search-result{position:relative}.mec-search-bar-wrap.mec-wrap .mec-totalcal-box input[type=text]{width:calc(100% - 36px)}.mec-search-bar-wrap.mec-wrap .mec-totalcal-box input[type=text]:focus{border-color:#efefef}div#mec-ajax-search-result-wrap{position:absolute;top:100%;opacity:0;visibility:hidden;width:calc(100% - 2px);min-height:50px;left:0;right:0;padding:0 10px;z-index:9999;transition:all .3s ease}.mec-ajax-search-result-events{background:#fff;padding:10px 20px;border:1px solid #efefef;border-top:none}.mec-ajax-search-result-events article:first-of-type{border:none}article.mec-search-bar-result{text-align:left;margin-bottom:0;padding-bottom:25px;padding-top:26px;border-top:1px solid #efefef;transition:all .33s ease;clear:both}.mec-search-bar-result .mec-event-list-search-bar-date{width:64px;height:64px;margin-right:10px;font-size:11px;text-transform:uppercase;float:left;text-align:center;padding-top:2px}.mec-search-bar-result .mec-event-list-search-bar-date span{font-size:40px;line-height:30px;font-weight:700;display:block;margin-bottom:6px;letter-spacing:1px}.mec-search-bar-result .mec-event-image{float:left;margin-right:20px;width:65px;height:auto}.mec-search-bar-result .mec-event-time{font-size:11px;line-height:1.1;margin:0}.mec-search-bar-result .mec-event-time i{color:#40d9f1;float:none;width:unset;height:unset;font-size:inherit;margin-right:3px;border:none;padding:0}.mec-search-bar-result .mec-event-title{font-size:13px;padding:0;margin:10px 0 8px;font-weight:700;text-transform:uppercase}.mec-search-bar-result .mec-event-title a{text-decoration:none;color:#494949;transition:color .3s ease}.mec-search-bar-result .mec-event-detail{font-size:13px;line-height:1.3;font-family:Roboto,sans-serif;color:#9a9a9a;margin-bottom:0}.mec-wrap.mec-modern-search-bar .mec-totalcal-box{background:rgba(255,255,255,.87);border:none;padding:35px;border-radius:3px;box-shadow:0 3px 13px rgba(0,0,0,.4);position:relative}.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=search],.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=text]{height:58px;background:rgba(255,255,255,.99);border-radius:2px;box-shadow:0 4px 8px rgba(0,0,0,.1) inset;border:1px solid #ccc;width:100%;padding-left:45px;padding-right:13px;font-size:16px}.mec-wrap.mec-modern-search-bar .mec-totalcal-box .mec-text-input-search i{position:absolute;background:0 0;border:none;font-size:21px;left:15px;top:calc(50% - 19px);color:#40d9f1}.mec-wrap.mec-modern-search-bar .mec-text-input-search{position:relative;height:58px}.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=submit]{height:58px;border:none;border-radius:2px;background:#fc4a1a;font-size:17px;font-weight:700!important}.mec-wrap.mec-modern-search-bar .mec-text-input-search+input#mec-search-bar-input{margin-left:0}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{height:45px;background:rgba(255,255,255,.99);border-radius:2px;box-shadow:0 4px 8px rgba(0,0,0,.1) inset;border:1px solid #ccc;padding-right:13px;font-size:16px;border-left:0}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap i{height:45px;background:#ffff;border-radius:2px 0 0 2px;box-shadow:none;border:1px solid #ccc;font-size:15px;padding-top:14px;border-right:0;color:#40d9f1;margin-right:-1px}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap{min-height:64px}@media(max-width:768px){.mec-wrap.mec-modern-search-bar .mec-search-form .mec-text-input-search{width:70%}.mec-wrap.mec-modern-search-bar input#mec-search-bar-input{width:calc(100% - 72%)}}@media(max-width:480px){.mec-wrap.mec-modern-search-bar input#mec-search-bar-input{width:92%;padding:0 10px;position:relative;display:block;margin-left:11px}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-text-input-search{width:100%;margin-bottom:20px}.mec-wrap.mec-modern-search-bar .mec-text-input-search+input#mec-search-bar-input{margin-left:10px}}.mec-related-events-wrap{margin-top:50px}.mec-related-events-wrap h3.mec-rec-events-title:before{content:"";background:#2c2f34;width:46px;height:4px;position:absolute;top:59px;left:0}.mec-related-events-wrap h3.mec-rec-events-title{font-size:21px;font-weight:600;padding:17px 0;margin-bottom:28px;text-transform:uppercase;border-bottom:1px solid #e8e8e8;position:relative}.mec-related-event-post figure{margin:0}.mec-related-event-post figure img{width:100%}.mec-related-event-content{background-color:#fff;margin:-27px 30px 15px;position:relative;max-width:90%;padding:13px 21px 16px 19px}.mec-related-event-content h5 a{font-size:16px;color:#121212;font-weight:600;transition:all .3s ease}.mec-fes-form-cntt #mec-organizer-payments ul{list-style:none;background:0 0;margin:0}.mec-fes-form-cntt #mec-organizer-payments ul li h4{background:0 0;letter-spacing:.2px;display:inline-block;padding-left:0!important;padding-bottom:10px!important;margin:0;margin-bottom:1px;letter-spacing:1px;text-transform:capitalize;padding-top:1px}.mec-fes-form-cntt #mec-organizer-payments ul>li{width:100%;display:inline-block;vertical-align:top;padding:0;margin:0}#mec-login-form.mec-login-form{width:100%;background:#fff;padding:20px;margin:0 auto;text-align:center;position:relative}#mec-login-form.mec-login-form .mec-login-input{display:block;width:286px;margin:0 auto;margin-bottom:12px}#mec-login-form.mec-login-form .mec-login-forgotpassword{display:inline-block}.mec-login-forgotpassword a{color:#000}#mec-login-form.mec-login-form .mec-login-submit{float:right;text-align:right;width:49%;padding-right:2px}#mec-login-form.mec-login-form .mec-login-input input{border:none;box-shadow:none;background:#fff;color:#ccc;border-left:1px solid #e6e6e6;padding:0;height:100%;background-image:none!important;padding-left:10px;padding-right:0;width:222px;margin-left:0;clear:none;float:left}#mec-login-form.mec-login-form .mec-login-input label{border:1px solid #e6e6e6;height:52px;display:inline-block;padding:0;border-radius:3px;overflow:hidden;box-shadow:0 2px 4px rgba(0,0,0,.04)}#mec-login-form.mec-login-form .mec-login-input label i{padding:15px 13px 17px 16px;vertical-align:middle;font-size:20px;width:50px;color:#c5cad0;background:#fafafa;margin-right:0;float:left}#mec-login-form.mec-login-form .mec-login-forgotpassword{float:left;width:49%;text-align:left;padding-top:10px;font-size:13px;padding-left:2px}#mec-login-form.mec-login-form button{width:120px;height:44px;border:none;color:#fff;border-radius:3px;font-size:12px;font-weight:700;letter-spacing:1px;text-transform:uppercase;transition:all .22s ease;margin:0;min-width:unset}.mec-login-form button{box-shadow:0 4px 22px -7px #40d9f1;background-color:#40d9f1}#mec-login-form.mec-login-form button:hover{background:#222;box-shadow:0 3px 14px -4px #333}#mec-login-form.mec-login-form .mec-login-form-footer{width:286px;margin:0 auto;margin-top:20px;clear:both;position:relative;display:block;min-height:50px}#mec-login-form.mec-login-form .mec-ajax-login-loading{position:absolute;background:#ffffffc2;left:0;right:0;top:0;bottom:0}#mec-login-form.mec-login-form .lds-ripple{position:absolute;width:64px;height:64px;top:calc(50% - 23px);left:calc(50% - 23px)}#mec-login-form.mec-login-form .lds-ripple div{position:absolute;border:4px solid #40d9f1;opacity:1;border-radius:50%;animation:lds-ripple 1.2s cubic-bezier(0,.2,.1,.8) infinite}#mec-login-form.mec-login-form .lds-ripple div:nth-child(2){animation-delay:-.5s}#mec-login-form.mec-login-form .mec-ajax-login-loading-text{position:absolute;min-width:200px;top:calc(50% - 18px);left:calc(50% - 124px);color:#fff;padding:10px 22px;border-radius:3px;background:#fff;height:47px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text strong{color:#3fcc60}#mec-login-form.mec-login-form .mec-ajax-login-loading-text strong:before{content:"";position:absolute;top:8px;left:1px;border-right:2px solid #3fcc60;border-bottom:2px solid #3acb5c;transform:rotate(45deg);transform-origin:0 100%;color:#000;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards;width:8px;height:14px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong:after{content:"";position:absolute;top:14px;left:5px;border-bottom:2px solid #ff5d39;transform:rotate(45deg);transform-origin:0 100%;color:#000;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards;width:14px;height:4px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong{color:#ff5d39}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong:before{border-color:#ff5d39;border-bottom:none}@keyframes lds-ripple{0%{top:28px;left:28px;width:0;height:0;opacity:1}100%{top:-1px;left:-1px;width:58px;height:58px;opacity:0}}.mec-book-form-gateway-checkout [id*=mec_do_transaction_stripe_] .mec-form-row:first-child{margin-bottom:20px}.mec-events-meta-group-booking .StripeElement{box-sizing:border-box;height:40px;padding:10px 12px;border:1px solid transparent;border-radius:4px;background-color:#fff;box-shadow:0 1px 3px 0 #e6ebf1;-webkit-transition:box-shadow 150ms ease;transition:box-shadow 150ms ease;margin-bottom:20px;background:#fff}.mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text]{box-sizing:border-box;height:40px;padding:10px 12px;border:0!important;border-radius:4px;background-color:#fff;box-shadow:0 1px 3px 0 #e6ebf1!important;-webkit-transition:box-shadow 150ms ease;transition:box-shadow 150ms ease;margin-bottom:20px;background:#fff!important}.mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text]:focus{outline:0}.mec-events-meta-group-booking .StripeElement--focus{box-shadow:0 1px 3px 0 #cfd7df}.mec-events-meta-group-booking .StripeElement--invalid{border-color:#fa755a}.mec-events-meta-group-booking .StripeElement--webkit-autofill{background-color:#fefde5!important}.mec-booking-tab-content .button,.mec-booking-tab-content .mec-reg-field-add-option,.mec-fes-form .mec-form-row .button:not(.wp-color-result),.mec-fes-form input[type=file],ul#mec_reg_form_fields li .mec_reg_field_remove{height:40px;margin-top:1px;text-decoration:none;font-size:14px;line-height:34px!important;margin:0;padding:0 15px 1px!important;text-transform:none;letter-spacing:0;font-weight:600;color:#40d9f1;background:#fff;border-radius:3px;margin-right:8px;border:2px solid #cfeff5;box-shadow:0 2px 6px -3px #cfeff5}.mec-booking-tab-content .button:hover,.mec-booking-tab-content .mec-reg-field-add-option:hover,.mec-fes-form .mec-form-row .button:not(.wp-color-result):hover{background:#40d9f1;color:#fff;border-color:#40d9f1;box-shadow:0 2px 6px -3px #40d9f1}.mec-fes-form .mec-form-row input+button.button{vertical-align:top}.mec-fes-form .mec-form-row .quicktags-toolbar input.button.button-small{border-width:1px;padding:0 7px;color:#80c6d2;font-weight:400;margin:1px;transform:none}.mec-fes-form input[type=file]{max-width:166px;text-align:center;height:44px;transition:all .2s ease;border-radius:5px!important;border:2px dashed #b8e9f3}.mec-fes-form input[type=file]:hover{box-shadow:0 2px 16px -3px #cfeff5}.mec-fes-form input[type=file]::-webkit-file-upload-button{visibility:hidden;width:1px;height:38px}.mec-fes-form input[type=file]::-moz-file-upload-button{visibility:hidden;width:1px;height:38px}.mec-fes-form .mec-meta-box-fields>label{padding:0}#mec_reg_form_fields li{list-style:none}ul#mec_reg_form_fields{padding:0;margin:0}ul#mec_reg_form_fields li{background:#f8feff;margin:6px -20px;padding:15px 25px 10px;width:auto;font-size:13px;border-top:1px solid #e8fafd;border-bottom:1px solid #e8fafd;position:relative}ul#mec_reg_form_fields li .mec_reg_field_remove{position:absolute;right:10px;top:10px;margin:0;padding:6px 8px!important;font-size:11px;line-height:12px!important;min-height:10px;height:auto;display:block;cursor:pointer;color:#ea6485;border-color:#ffd2dd;letter-spacing:.4px}ul#mec_reg_form_fields li .mec_reg_field_remove:hover{background:#ea6485;color:#fff;border-color:#ea6485;box-shadow:0 2px 6px -3px #ea6485}#mec_reg_form_fields input[type=checkbox],#mec_reg_form_fields input[type=radio],.mec-form-row input[type=checkbox],.mec-form-row input[type=radio]{background-color:#fff;border:1px solid #cfeff5;box-shadow:0 1px 3px -1px #cfeff5;padding:9px;border-radius:3px;min-width:24px;min-height:24px;display:inline-block!important;vertical-align:middle;float:none;transition:all .18s ease;outline:0;margin:1px 4px 4px 0;text-align:left;cursor:pointer;-webkit-appearance:none;-moz-appearance:none}#mec_reg_form_fields input[type=checkbox]:focus,#mec_reg_form_fields input[type=radio]:focus,.mec-form-row input[type=checkbox]:focus,.mec-form-row input[type=radio]:focus{outline:0}#mec_reg_form_fields input[type=radio],.mec-form-row input[type=radio]{-webkit-appearance:none;border-radius:20px!important;min-width:20px;min-height:20px;margin:0 0 4px 0;vertical-align:middle}#mec_reg_form_fields input[type=checkbox]:hover,#mec_reg_form_fields input[type=radio]:hover,.mec-form-row input[type=checkbox]:hover,.mec-form-row input[type=radio]:hover{border-color:#40d9f1}#mec_reg_form_fields input[type=checkbox]:checked,#mec_reg_form_fields input[type=radio]:checked,.mec-fes-form .mec-form-row input[type=checkbox]:checked,.mec-fes-form .mec-form-row input[type=radio]:checked{box-shadow:0 1px 6px -2px #40d9f1;border-color:#40d9f1;background:#40d9f1!important;border-radius:2px;position:relative}.mec-form-row input[type=radio]:checked{box-shadow:0 1px 6px -2px #40d9f1,inset 0 0 0 3px #fff!important}#mec_reg_form_fields input[type=checkbox]:checked::before,.mec-form-row input[type=checkbox]:checked:before{content:"";font:normal;position:absolute;top:12px;left:5px;margin:0;vertical-align:middle;line-height:1;border-right:2px solid #fff!important;border-bottom:2px solid #fff!important;transform:rotate(45deg);transform-origin:0 100%;color:#fff;transition:all .2s ease;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards}@keyframes checkbox-check{0%{width:0;height:0;border-color:#fff;transform:translate3d(0,0,0) rotate(45deg)}33%{width:6px;height:0;transform:translate3d(0,0,0) rotate(45deg)}100%{width:6px;height:12px;border-color:#fff;transform:translate3d(0,-12px,0) rotate(45deg)}}#mec_reg_form_field_types .button{position:relative;outline:0;border-radius:50px;padding:2px 21px 2px 31px!important;line-height:1;font-size:11px;font-weight:600;color:#40d9f1;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 2px 6px -3px #40d9f1;border:2px solid #cfeff5}#mec_fes_location_remove_image_button,#mec_fes_organizer_remove_image_button,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button,#mec_meta_box_tickets_form [id^=mec_ticket_row] button,#mec_reg_form_field_types .button.red{color:#ea6485;box-shadow:0 2px 6px -3px #ea6485;background:#fff;border-color:#ffd2dd}#mec_fes_location_remove_image_button:hover,#mec_fes_organizer_remove_image_button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button:hover,#mec_meta_box_tickets_form [id^=mec_ticket_row] button:hover,#mec_reg_form_field_types .button.red:hover{background:#ea6485;color:#fff}#mec_reg_form_field_types .button:before{position:absolute;left:12px;color:#40d9f1;content:"\e095";font-family:simple-line-icons;font-size:13px;display:inline-block}#mec_reg_form_field_types .button.red:before{color:#ea6485}#mec_reg_form_field_types .button.red:hover:before,#mec_reg_form_field_types .button:hover:before{color:#fff}#mec_fes_location_remove_image_button:hover,#mec_fes_organizer_remove_image_button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button:hover,#mec_meta_box_tickets_form [id^=mec_ticket_row] button:hover,#mec_price_per_dates_container .button:hover,#mec_reg_form_field_types .button.red:hover{color:#fff;border:2px solid #ea6485}#mec_taxes_fees_container_toggle [id^=mec_remove_fee_button],#mec_ticket_variations_list [id^=mec_remove_ticket_variation_button]{color:#ea6485;border-color:#ffd2dd}#mec_taxes_fees_container_toggle [id^=mec_remove_fee_button]:hover,#mec_ticket_variations_list [id^=mec_remove_ticket_variation_button]:hover{color:#fff;border:2px solid #ea6485;background:#ea6485}#mec_fees_list [id^=mec_remove_fee_button],#mec_meta_box_ticket_variations_form .mec-form-row [id^=mec_remove_ticket_variation_button]{margin-left:14px!important}#mec_meta_box_hourly_schedule_days .mec-add-hourly-schedule-button{line-height:10px!important}#mec_meta_box_tickets_form [id^=mec_ticket_row] .mec_add_price_date_button{color:#40d9f1;box-shadow:0 2px 6px -3px #40d9f1;border:2px solid #cfeff5}#mec_meta_box_tickets_form [id^=mec_ticket_row] .mec_add_price_date_button:hover,#mec_reg_form_field_types .button:hover{color:#fff;border:2px solid #40d9f1;background:#40d9f1}.mec-form-row input+span.mec-tooltip,.mec-form-row select+span.mec-tooltip{bottom:10px}.mec-form-row label+span.mec-tooltip{bottom:8px}.mec-form-row textarea+span.mec-tooltip{bottom:auto;vertical-align:top;top:12px}.mec-form-row span+span.mec-tooltip{bottom:0;vertical-align:middle}.mec-form-row .mec-col-8 input[type=text],.mec-form-row .mec-col-8 select,.mec-form-row .mec-col-8 span.mec-archive-skins{vertical-align:top}.mec-form-row input:disabled{opacity:.6;background:#f6f6f6}.mec-form-row p{font-size:12px!important;line-height:18px!important;color:#97b2bb!important}.mec-form-row p.description{font-style:italic}.ui-datepicker.ui-widget{border:1px solid #e8e8e8;box-shadow:0 1px 9px rgba(0,0,0,.12);font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif}table.ui-datepicker-calendar{margin-bottom:0}.ui-datepicker-calendar th{font-weight:700;color:#4a4b4c}.ui-datepicker-calendar td,.ui-datepicker-calendar th,.ui-datepicker-calendar tr{border:none}.ui-datepicker.ui-widget select{font-weight:600;font-size:12px;display:inline-block;border-radius:2px;padding:2px 10px;margin:5px 3px;width:auto;min-height:20px;height:26px;border:1px solid #e3e3e3;box-shadow:inset 0 1px 3px rgba(0,0,0,.04)}.ui-datepicker.ui-widget table{border-spacing:2px;border:none}.ui-datepicker.ui-widget td,.ui-datepicker.ui-widget tr{padding:0;background:0 0!important}.ui-datepicker.ui-widget td a{color:#9a9b9c;font-weight:600;width:30px;height:30px;line-height:30px;display:inline-block;border-radius:33px;padding:0;background:#fff;transition:all .2s ease}.ui-datepicker.ui-widget td a.ui-state-active,.ui-datepicker.ui-widget td a:hover{background:#40d9f1;color:#fff}.ui-datepicker.ui-widget .ui-datepicker-next,.ui-datepicker.ui-widget .ui-datepicker-prev{color:#40d9f1;width:30px;height:30px;line-height:30px;display:inline-block;text-align:center;border-radius:33px;background:#ecfcff;transition:all .2s ease}.ui-datepicker.ui-widget .ui-datepicker-next:hover,.ui-datepicker.ui-widget .ui-datepicker-prev:hover{background:#fff;box-shadow:0 0 7px -3px rgba(0,0,0,.4)}.mec-fes-form .mec-tooltip .dashicons-before:before{color:#40d9f1}.mec-fes-form button[type=submit].mec-fes-sub-button{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;border-radius:3px;background:#40d9f1;color:#fff;height:54px;font-size:17px;font-weight:700;box-shadow:0 2px 8px -4px #40d9f1;display:block;transition:all .28s ease;text-transform:uppercase;margin:20px 0 0;padding:14px 20px;border:0;cursor:pointer;text-align:center;letter-spacing:.1em;line-height:1}.mec-fes-form button[type=submit].mec-fes-sub-button:hover{box-shadow:0 2px 12px -2px #40d9f1}.mec-fes-form button[type=submit].mec-fes-sub-button:focus{margin-bottom:-2px;background:#1dc2dc}.mec-fes-form .mec-title span.mec-dashicons{color:#40d9f1;float:left;margin-right:5px}.mec-fes-form .mec-tooltip .box h5{padding:14px 2px}#mec_fes_form,.mec-fes-form-top-actions{max-width:838px;margin:0 auto}@media only screen and (min-width:961px){.mec-fes-form .mec-fes-form-cntt{width:calc(100% - 300px);float:left;padding-right:20px;max-width:538px;display:block}.mec-fes-form .mec-fes-form-sdbr{width:300px}}.mec-fes-form .quicktags-toolbar,.mec-fes-form div.mce-toolbar-grp{background:#ecfcff;border-bottom:1px solid #cfeff5;box-shadow:0 1px 0 1px #cfeff5}.mec-fes-form .quicktags-toolbar{margin-right:-1px;border-top:1px solid #cfeff5}.mec-fes-form div.mce-statusbar{border-top-color:#cfeff5}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-listbox{border:1px solid #cfeff5;border-radius:3px}.mec-fes-form .mce-tinymce.mce-container.mce-panel{border:1px solid #cfeff5;box-shadow:0 2px 6px -3px #cfeff5;border-radius:2px 0 2px 2px}.mec-fes-form .wp-editor-tools .wp-media-buttons{transform:translateY(-6px);margin-top:-6px}.mec-fes-form .wp-editor-tabs{padding-right:0;margin-right:-2px}.mec-fes-form .wp-editor-tabs .wp-switch-editor{border-radius:3px 3px 0 0;border-color:#cfeff5;background:#fff;color:#96b8bd;border-bottom:1px solid #ecfcff}.mec-fes-form .html-active .switch-html,.mec-fes-form .tmce-active .switch-tmce,.mec-fes-form .wp-editor-tabs .wp-switch-editor:active{background:#ecfcff;color:#40d9f1}.mec-fes-form .wp-editor-container,.mec-fes-form div.mce-edit-area.mce-panel{border:none;box-shadow:none}.mec-fes-form .wp-editor-container textarea.wp-editor-area{max-width:100%}.mec-fes-form .mce-toolbar .mce-listbox button{font-size:12px;line-height:22px;color:#798f96}.mec-fes-form .mce-toolbar .mce-ico{color:#627f88}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-active,.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn:active,.mec-fes-form .qt-dfw.active{background:#fff;border-color:#40d9f1;box-shadow:inset 0 2px 6px -3px rgba(106,231,255,.7)}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-active .mce-ico{color:#40d9f1}body .mce-menu .mce-menu-item.mce-active.mce-menu-item-normal,body .mce-menu .mce-menu-item.mce-selected,body .mce-menu .mce-menu-item:focus,body .mce-menu .mce-menu-item:hover,body.mce-menu .mce-menu-item.mce-active.mce-menu-item-preview{background:#40d9f1;color:#fff}.mec-fes-form .mec-not-in-days-day{display:inline-block;padding:4px 32px 4px 15px;border-radius:33px;border:1px solid #cfeff5;box-shadow:0 1px 3px -1px #cfeff5;background:#fbfeff;color:#40d9f1;vertical-align:top}.mec-fes-form .mec-not-in-days-remove{display:inline-block;padding:0 1px 0 0;margin-left:-30px;vertical-align:sub;background:#ff918a;color:#fff;font-family:cursive;width:21px;height:21px;line-height:17px;text-align:center;border-radius:20px;cursor:pointer}.mec-fes-list ul li .mec-event-status{float:left;margin-right:10px;margin-left:0;font-size:11px;font-weight:400;letter-spacing:.3px;border-radius:3px;padding:4px 8px}.mec-fes-form .post-status.mec-book-confirmed:before,.mec-fes-list ul li .mec-event-status.mec-book-confirmed:before{content:"";margin:0;vertical-align:middle;line-height:1;border-right:2px solid #fff!important;border-bottom:2px solid #fff!important;transform:rotate(45deg);color:#fff;width:6px;height:12px;float:left;margin-right:6px}.mec-fes-list ul li .mec-fes-event-export a:before,.mec-fes-list ul li .mec-fes-event-remove:before,.mec-fes-list ul li .mec-fes-event-view a:before,.mec-fes-list-top-actions a:before{content:"\e054";font-family:simple-line-icons;font-size:13px;vertical-align:middle}.mec-fes-list ul li .mec-fes-event-view a:before{content:"\e087"}.mec-fes-list-top-actions a:before{content:"\e095";font-weight:400;margin-right:6px}.mec-fes-list ul li .mec-fes-event-export a:before{content:"\e083"}.mec-fes-form .post-status{border-radius:20px}.mec-fes-form .post-status.mec-book-confirmed:before{height:20px;width:9px;margin:3px 10px}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker-calendar th{height:auto;padding:0}.ui-datepicker .ui-datepicker-calendar td a,.ui-datepicker-calendar th{font-size:14px;line-height:30px}.mec-fes-form .description{font-size:16px}.mec-fes-form input[type=file]{text-align:left}.mec-fes-export-wrapper{width:640px;background:#f8feff;padding:40px 25px}.mec-fes-export-wrapper .mec-fes-btn-date{font-size:16px;line-height:44px;overflow:hidden}.mec-fes-export-wrapper .date-messgae{font-family:sans-serif;padding:2px 18px}.mec-fes-list ul li .mec-event-export-csv,.mec-fes-list ul li .mec-event-export-excel{font-size:12px;border:1px solid #40d9f1;padding:1px 4px;background:rgba(141,229,243,.18);border-radius:4px;color:#40d9f1;font-family:sans-serif;cursor:pointer;display:inline-block;height:26px;line-height:22px}.mec-export-badge{font-size:11px;color:#40d9f1;width:auto;height:24px;line-height:25px;display:inline-block;padding:0 8px;text-align:center;border-radius:3px;background:#ecfcff;transition:all .2s ease}.mec-fes-list ul li .mec-fes-event-export{font-size:11px;background:#f7f7f7;float:right;margin-left:5px}.mec-fes-list ul li .mec-fes-event-export:hover{cursor:pointer;background:#90f0e0;border-color:#4dc8cc}.mec-fes-export-wrapper ul{padding:0;width:100%;text-align:center}.mec-fes-export-wrapper ul li{list-style:none;display:inline-block;width:30%;padding:10px 15px 10px 32px;border-radius:3px;margin-bottom:15px;border:1px solid #cfeff5;box-shadow:0 2px 6px -4px #cfeff5;background:#fff;line-height:normal;margin-right:10px;position:relative;cursor:pointer;font-size:13px;line-height:1;transition:all .2s ease}.mec-fes-export-wrapper ul li:nth-child(3n+0){margin-right:0}.mec-fes-export-wrapper ul li:hover{box-shadow:0 2px 16px -1px #c6e8ef}.mec-fes-export-wrapper ul li:before{content:"";position:absolute;display:inline-block;background:#fff;width:15px;height:15px;margin:-1px 0 0 5px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32);border-radius:50%;left:9px;top:calc(50% - 7px)}.mec-fes-export-wrapper ul li.fes-export-date-active{color:#40d9f1}.mec-fes-export-wrapper ul li.fes-export-date-active:before{width:15px;height:15px;border:6px solid #40d9f1;background:#fff;box-shadow:0 3px 16px -3px #40d9f1}.mec-fes-btn-export{margin-left:15px;margin-top:12px}.mec-fes-btn-export span{position:relative;border:none;border-radius:3px;color:#fff!important;display:inline-block;font-size:13px;line-height:1;text-transform:none;font-weight:400;text-decoration:none;cursor:pointer;margin-right:4px;line-height:1;letter-spacing:0;padding:15px 22px;background:#39c36e;box-shadow:0 1px 7px -3px #39c36e!important;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;cursor:pointer;margin-left:6px}.mec-fes-btn-export span:hover{background:#222}.mec-event-export-excel:before,span.mec-event-export-csv:before{content:"\e083";font-family:simple-line-icons;font-size:13px;vertical-align:middle;margin-right:7px;margin-top:-1px;display:inline-block}.mec-fes-list .wn-p-t-right{min-width:170px;max-width:200px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#000;color:#fff;font-weight:400;font-size:14px;letter-spacing:.5px;line-height:1.5;position:absolute;z-index:99999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #535a61;visibility:hidden;opacity:0;transition:opacity .23s;padding:5px 10px 6px;border-radius:8px;text-align:center;font-style:normal}.mec-fes-list .mec-fes-event-export:hover .wn-p-t-right,.mec-fes-list .mec-fes-event-remove:hover .wn-p-t-right,.mec-fes-list .mec-fes-event-view:hover .wn-p-t-right{visibility:visible;opacity:1}.mec-fes-list .wn-p-t-right i{position:absolute!important;top:100%;right:50%;margin-top:-6px!important;margin-right:-6px!important;width:12px;height:24px;overflow:hidden;transform:rotate(-90deg)}.mec-fes-list .wn-p-t-right i:after{content:'';position:absolute;width:12px;height:12px;left:0;top:50%;transform:translate(50%,-50%) rotate(-45deg);background-color:#000;box-shadow:0 8px 9px -4px #535a61}.mec-fes-form .select2-container{min-height:38px;box-sizing:border-box;margin-bottom:8px;padding:0 6px;border-radius:2px;border:1px solid #ddd;box-shadow:inset 0 1px 6px rgba(0,0,0,.07);background-color:#fff;color:#32373c;outline:0;transition:50ms border-color ease-in-out;min-width:200px;font-size:14px}.mec-fes-form .select2-selection{border:none;background:0 0;padding-top:2px;width:100%;height:100%}.mec-fes-form .select2-container--default.select2-container--focus .select2-selection{border:none!important;outline:0}.mec-fes-form .select2-container--default .select2-selection--single .select2-selection__arrow{top:5px;right:4px}.select2-results{font-size:14px}.mec-fes-category-children,.mec-fes-category-children .mec-fes-category-children{padding-left:24px}.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:#dedede;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 #dedede;border-radius:50px;font-size:15px;padding:12px 27px}.mec-timeline-event-date{position:relative}.mec-timeline-events-container .mec-timeline-event-date:before{content:'';width:10px;height:10px;position:absolute;background:#40d9f1;border-radius:50px;top:8px;left:-23px;z-index:99}.mec-timeline-events-container .mec-timeline-event-date:after{content:'';width:20px;height:20px;position:absolute;background:rgba(64,217,241,.3);border-radius:50px;top:3px;left:-28px}.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-past-event.mec-timeline-event{margin:50px 0}}@media(max-width:1023px){.mec-past-event.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 .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-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-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}.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}.mec-wrap .mec-label-normal{display:none}
|
1 |
+
.lity-container,.mec-wrap,.mec-wrap div:not([class^=elementor-]){font-family:Montserrat,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif}.entry-content .mec-wrap h1,.entry-content .mec-wrap h2,.entry-content .mec-wrap h3,.entry-content .mec-wrap h4,.entry-content .mec-wrap h5,.entry-content .mec-wrap h6,.mec-wrap h1,.mec-wrap h2,.mec-wrap h3,.mec-wrap h4,.mec-wrap h5,.mec-wrap h6{font-family:Montserrat,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;color:#171c24;font-weight:300;font-style:inherit;letter-spacing:normal;clear:none}.mec-wrap h1{font-size:50px;line-height:1.16;margin-bottom:12px;letter-spacing:-1px}.mec-wrap h2{font-size:36px;line-height:1.14;margin-bottom:10px}.mec-wrap h3{font-size:28px;line-height:1.2;margin-bottom:8px}.mec-wrap h4{font-size:24px;line-height:1.2;margin-bottom:10px}.mec-wrap h5{font-size:18px;line-height:1.3;margin-bottom:7px}.mec-wrap h6{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-wrap .subheader{color:#849098}.mec-wrap h1 strong{font-weight:700}.mec-wrap p{margin:0 0 20px 0;color:#616161;font-size:14px;line-height:1.8}.mec-wrap .mec-event-article .mec-color-hover{box-shadow:none;border:none}.mec-wrap abbr,.mec-wrap acronym{cursor:auto;border:none}.entry-content .mec-wrap a{box-shadow:none}.mec-wrap .button,.mec-wrap a.button:not(.owl-dot),.mec-wrap button:not(.owl-dot),.mec-wrap input[type=button],.mec-wrap input[type=reset],.mec-wrap input[type=submit]{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#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-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}@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{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;font-family:Roboto,sans-serif}.mec-event-grid-minimal .mec-event-date:hover{color:#fff}.mec-event-grid-minimal .mec-event-date:hover span{color:#fff}.mec-event-list-classic .mec-event-article{padding:12px 0;margin-bottom:20px}.mec-event-list-classic .mec-event-image{float:left;width:86px;margin-right:20px}.mec-event-list-classic .mec-event-date,.mec-event-list-classic .mec-event-time{font-weight:400;font-size:13px;letter-spacing:0;line-height:18px;text-align:left;display:initial;margin-right:12px}.mec-event-list-classic .mec-event-time .mec-time-details,.mec-event-list-classic .mec-event-time i{display:inline;margin-right:3px}.mec-event-list-classic .mec-event-date span{font-weight:500;margin-bottom:6px}.mec-event-list-classic .mec-event-title{font-size:15px;margin:10px 0 12px;font-weight:700;text-transform:uppercase}.mec-event-list-classic .mec-event-title a{color:#494949;transition:color .3s ease}.mec-event-list-classic .mec-event-detail{color:#777;font-weight:400;line-height:12px;font-size:12px;overflow:hidden}.mec-event-list-classic a.magicmore{padding:10px 16px;color:#fff;background:#222;letter-spacing:2px;font-size:11px}.mec-event-list-classic a.magicmore:after{content:"";display:none}.mec-event-list-classic a.magicmore:hover{color:#40d9f1}.mec-event-grid-simple .mec-event-article{position:relative;margin-bottom:30px}.mec-event-grid-simple .mec-event-article:after{border-right:1px solid #e6e6e6;height:60px;position:absolute;top:50%;margin-top:-30px;right:-1px}.mec-event-grid-simple .row div:last-child .mec-event-article:after{border:none}.mec-event-grid-simple .row{margin:15px 0 30px;text-align:center}.mec-event-grid-simple .mec-event-date{padding:0;margin:0;text-transform:capitalize;font-size:12px;font-weight:700}.mec-event-grid-simple .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;line-height:21px;font-size:15px;padding-top:5px;text-transform:uppercase;transition:color .37s ease}.mec-event-grid-simple .mec-event-title a{color:#494949;transition:color .3s ease}.mec-event-grid-simple .mec-event-detail{font-family:Roboto,sans-serif;font-weight:400;line-height:1;letter-spacing:0;font-size:13px;color:#777}.mec-event-grid-simple:hover .mec-event-title{color:#40d9f1}.mec-event-grid-simple:hover .mec-event-date{background:0 0}.event-last:after{display:none}@media only screen and (max-width:767px){.mec-event-grid-simple .mec-event-article{padding-bottom:20px;margin-bottom:20px;border-bottom:1px solid #eee}.mec-event-grid-simple .mec-event-article:after{border:none}}.mec-event-grid-novel .mec-event-article{position:relative;margin-bottom:30px;padding:60px 5% 60px 7%;border:1px solid rgba(255,255,255,.12);border-radius:10px;background-color:#0050fd;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease;z-index:1}.mec-event-grid-novel .mec-event-article .novel-grad-bg{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:10px;opacity:0;z-index:-1;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease}.mec-event-grid-novel .mec-event-article:hover{-webkit-box-shadow:0 13px 36px 0 rgba(0,0,0,.23);box-shadow:0 13px 36px 0 rgba(0,0,0,.23);border-color:transparent}.mec-event-grid-novel .mec-event-article:hover .novel-grad-bg{background-image:-webkit-gradient(linear,left top,right top,from(#262e32),to(#0e1015));background-image:-webkit-linear-gradient(left,#262e32 0,#0e1015 100%);background-image:-o-linear-gradient(left,#262e32 0,#0e1015 100%);background-image:linear-gradient(90deg,#262e32 0,#0e1015 100%);opacity:1}.mec-event-grid-novel .mec-event-image{float:left;width:150px;height:150px}.mec-event-grid-novel .mec-event-image img{width:150px;height:150px;border-radius:50%}.mec-event-grid-novel .mec-event-detail-wrap{margin-left:200px}.mec-event-grid-novel .mec-event-content h4{position:relative;margin-bottom:10px;display:inline-block}.mec-event-grid-novel .mec-event-content h4 a{font-size:24px;line-height:35px;color:#fafcff}.mec-event-grid-novel .mec-event-content h4::before{content:'';position:absolute;top:8px;left:-30px;width:17px;height:17px;background:#5cd0ed;opacity:.4;border-radius:50%}.mec-event-grid-novel .mec-event-content h4::after{content:'';position:absolute;top:12px;left:-26px;width:9px;height:9px;background:#5cd0ed;border-radius:50%}.mec-event-grid-novel .mec-event-address,.mec-event-grid-novel .mec-event-detail,.mec-event-grid-novel .mec-event-month{position:relative;padding-left:35px;font-size:15px;line-height:30px;color:rgba(255,255,255,.4)}.mec-event-grid-novel .mec-event-address::before,.mec-event-grid-novel .mec-event-detail::before,.mec-event-grid-novel .mec-event-month::before{position:absolute;top:6px;left:6px;font-size:17px;font-family:simple-line-icons;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1}.mec-event-grid-novel .mec-event-month::before{content:"\e075"}.mec-event-grid-novel .mec-event-detail::before{content:"\e081"}.mec-event-grid-novel .mec-event-address::before{content:"\e096"}.mec-event-grid-novel .mec-event-footer{clear:both;padding:20px 0;border-top:none;background:0 0}.mec-event-grid-novel .mec-event-footer .mec-booking-button{right:auto;left:0;height:42px;width:148px;padding:0 20px;font-size:14px;font-weight:400;line-height:42px;text-align:center;color:#fff;background:0 0;border-color:rgba(255,255,255,.1);border-radius:50px}.mec-event-grid-novel .mec-event-footer .mec-booking-button:hover{background-color:rgba(255,255,255,.1)}.mec-event-grid-novel .mec-event-sharing-wrap{left:175px;cursor:pointer}.mec-event-grid-novel .mec-event-sharing-wrap>li{border-color:rgba(255,255,255,.1);border-radius:50%}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing{top:-5px;left:0;padding:5px 10px 2px 50px;min-width:150px;width:inherit;height:37px;background-color:rgba(255,255,255,.1);-webkit-box-shadow:none;box-shadow:none;border:none;border-radius:50px}.mec-event-grid-novel .mec-event-sharing-wrap:hover>li{background-color:rgba(255,255,255,.1)}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing::after,.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing::before{display:none}.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon,.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon a,.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li i{display:inline}.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon a{padding:0 10px}.mec-event-grid-novel .mec-event-sharing-wrap>li a{color:#fff}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li a{color:rgba(255,255,255,.4)}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li a:hover{color:rgba(255,255,255,1)}@media only screen and (max-width:1200px){.mec-event-grid-novel .row .col-md-6.col-sm-6{width:100%;float:none}.mec-event-grid-novel .mec-event-image{float:none;margin-top:-20px;margin-bottom:20px}.mec-event-grid-novel .mec-event-detail-wrap{margin-left:20px}.mec-event-grid-novel .mec-event-footer{margin-top:30px}}@media only screen and (max-width:767px){.mec-event-grid-novel .mec-event-footer{margin-top:0;padding-top:30px;margin-bottom:24px}.mec-event-grid-novel .mec-event-footer .mec-booking-button{display:block;position:relative}.mec-event-grid-novel .mec-event-sharing-wrap{left:0;bottom:-55px}.mec-event-grid-novel .mec-event-content h4 a{font-size:20px;line-height:1.3}}.mec-event-cover-modern{position:relative}.mec-event-cover-modern .mec-event-cover-a{background:0 0;position:absolute;color:#fff;bottom:0;left:0;text-decoration:none}.mec-event-cover-modern .mec-event-cover-a .mec-event-overlay{transition:all .5s;opacity:.8;width:100%;height:100%;position:absolute}.mec-event-cover-modern .mec-event-cover-a:hover .mec-event-overlay{opacity:1}.mec-event-cover-modern .mec-event-detail{padding:40px;position:relative}.mec-event-cover-modern .mec-event-cover-a:hover .mec-event-tag{color:#333;transition:all .5s}.mec-event-cover-modern .mec-event-cover-a .mec-event-title:hover{text-decoration:underline}.mec-event-cover-modern .mec-event-tag{background:#fff;display:inline-block;padding:5px 9px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:24px}.mec-event-cover-modern .mec-event-date{text-transform:uppercase;font-size:17px;font-weight:300}.mec-event-cover-modern .mec-event-title{color:#fff;text-transform:uppercase;font-size:40px;font-weight:700;margin:6px 0}.mec-event-cover-modern .mec-event-place{font-weight:400;font-size:18px;font-family:Roboto,sans-serif}@media only screen and (max-width:767px){.mec-event-cover-modern .mec-event-cover-a{width:100%}}.mec-event-cover-classic{position:relative;overflow:hidden;background:#fff;padding:6px;border:1px solid #e8e8e8}.mec-event-cover-classic .mec-event-overlay{position:absolute;left:6px;right:6px;bottom:6px;top:6px;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-cover-classic:hover .mec-event-overlay{background-color:rgba(36,36,36,.6)}.mec-event-cover-classic .mec-event-content{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out}.mec-event-cover-classic .mec-event-date{font-size:14px;text-transform:uppercase;font-weight:400;line-height:1.6}.mec-event-cover-classic .mec-event-date span{display:block;font-weight:700;font-size:16px}.mec-event-cover-classic .mec-event-title{color:#fff;margin:20px 0 38px;font-size:24px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-cover-classic .mec-btn-wrapper{text-align:left}.mec-event-cover-classic .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-cover-classic .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:12px 20px;letter-spacing:3px;font-size:12px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-cover-classic .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-cover-classic .mec-event-image img{min-width:100%}@media only screen and (max-width:960px){.mec-event-cover-classic .mec-event-content{padding:20px}.mec-event-cover-classic .mec-event-button{font-size:11px;padding:7px 10px;letter-spacing:1px}.mec-event-cover-classic .mec-event-title{font-size:19px;margin:15px 0 25px}.mec-event-cover-classic .mec-event-date{font-size:12px}}@media only screen and (max-width:767px){.mec-event-cover-classic{margin-bottom:30px}}@media only screen and (max-width:479px){.mec-event-cover-classic .mec-event-content{padding:15px;font-size:15px}.mec-event-cover-classic .mec-event-title{font-size:15px;margin:10px 0}.mec-event-cover-classic .mec-event-button{font-size:10px;padding:6px;letter-spacing:1px}.mec-event-cover-classic .mec-event-icon{padding:10px}}.mec-load-more-wrap{text-align:center;display:block;width:100%;padding-top:20px;text-align:center;position:relative}.mec-load-more-button{box-shadow:none;transition:all .21s ease;font-size:12px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:2px solid #e8e8e8;border-radius:50px;padding:0 28px;margin-bottom:20px;cursor:pointer;line-height:40px;font-family:Montserrat,Helvetica,Arial,sans-serif;height:42px;display:inline-block}.mec-load-more-button:hover{background:#191919;color:#fff;border-color:#191919}.mec-load-more-loading{content:url(../img/ajax-loader.gif);cursor:wait;background:0 0;border-style:none}.mec-load-more-loading:hover{background:0 0}.mec-modal-preloader,.mec-month-navigator-loading{width:100%;height:100%;background:no-repeat rgba(255,255,255,.88) url(../img/ajax-loader.gif) center;border-style:none;position:fixed;left:0;right:0;bottom:0;top:0;z-index:9}.mec-event-calendar-classic .mec-calendar-side .mec-calendar-table{min-height:1024px}.mec-calendar-side .mec-calendar-table{min-height:450px}.mec-skin-weekly-view-events-container.mec-month-navigator-loading{margin-top:0}.mec-calendar.mec-event-calendar-classic .mec-calendar-side{display:block}.mec-skin-daily-view-events-container.mec-month-navigator-loading{margin-top:0}@media only screen and (min-width:961px){.mec-wrap.mec-sm959 .mec-calendar-side .mec-calendar-table{min-height:1px}}@media only screen and (max-width:479px){.mec-calendar-side .mec-calendar-table{min-height:1px}}.mec-event-cover-clean{position:relative;border:1px solid #e6e6e6;padding:8px}.mec-event-cover-clean .mec-event-overlay{height:100%;background-color:rgba(36,36,36,.4);position:absolute;width:100%;left:0;border:8px solid #fff;top:0;transition:all .5s ease-in-out}.mec-event-cover-clean .mec-event-content{color:#fff;position:absolute;bottom:20px;padding:40px 60px;transition:all .5s ease-in-out}.mec-event-cover-clean .mec-event-title{color:#fff;font-weight:700;margin:46px 0 19px;font-size:29px;text-transform:uppercase;text-shadow:0 0 1px rgba(0,0,0,.5)}.mec-event-cover-clean .mec-event-title a{color:#fff;transition:all .5s;text-decoration:none;outline:0;border:none;box-shadow:none}.mec-event-cover-clean .mec-event-title a:hover{text-decoration:underline}.mec-event-cover-clean .mec-event-date{position:absolute;top:-20px;right:60px;color:#fff;width:60px;padding:14px 10px;z-index:1}.mec-event-cover-clean .mec-event-date div{text-align:center;text-transform:uppercase;letter-spacing:1px;line-height:16px}.mec-event-cover-clean .mec-event-date .dday{padding-bottom:15px;border-bottom:1px solid rgba(255,255,255,.5);margin-bottom:13px;font-size:24px}.mec-event-cover-clean .mec-event-date .dmonth{letter-spacing:2px}.mec-event-cover-clean .mec-event-place{font-size:18px;font-family:Roboto,sans-serif}.mec-event-cover-clean .mec-event-image img{width:100%}@media only screen and (max-width:768px){.mec-event-cover-clean .mec-event-content{padding:20px;bottom:5px}.mec-event-cover-clean .mec-event-title{font-size:23px}.mec-event-cover-clean .mec-event-date{right:20px;padding:10px;width:50px}}@media only screen and (max-width:479px){.mec-event-cover-clean .mec-event-content{padding:10px}.mec-event-cover-clean .mec-event-title{font-size:19px;padding-right:25px}.mec-event-cover-clean .mec-event-date{right:-20px;top:-10px}.mec-event-cover-clean .mec-event-detail{font-size:12px}}.mec-month-divider{text-align:center;margin:60px 0 40px 0}.widget .mec-month-divider{margin:10px 0}.mec-month-divider span{text-transform:uppercase;font-size:22px;font-weight:700;padding-bottom:5px;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative}.mec-month-divider span:before{border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-30px;left:50%;width:60px}.widget .mec-month-divider span{font-size:13px}.mec-event-list-standard .mec-events-pagination{margin-top:60px;border-top:4px solid #ebebeb;min-height:80px;padding-top:20px}.mec-event-list-standard .mec-events-pagination .mec-events-pag-previous{float:left;margin-left:0}.mec-event-list-standard .mec-events-pagination .mec-events-pag-next{float:right;margin-right:0}.mec-event-list-standard .mec-event-article{position:relative;display:block;margin-bottom:25px;border:1px solid #e9e9e9;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-list-standard .mec-topsec{display:table;width:100%}.mec-event-list-standard .col-md-3.mec-event-image-wrap{padding-left:0}.mec-event-list-standard .mec-event-content{padding-top:15px;padding-right:30px}.mec-event-list-standard .mec-event-title{font-size:29px;font-weight:700;letter-spacing:-1px;margin:0 0 10px}.mec-event-list-standard .mec-event-title a{color:#292929;transition:color .3s ease}.mec-event-list-standard .mec-col-table-c{display:table-cell;height:100%;vertical-align:middle;float:none!important}.mec-event-list-standard .mec-col-table-c.mec-event-meta-wrap{padding-top:15px}.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{vertical-align:top}.mec-topsec .mec-event-image{line-height:1px}.mec-event-list-standard .mec-event-meta-wrap{border-left:1px solid #eee}.mec-event-list-standard .mec-time-details{text-transform:uppercase;font-size:11px;font-weight:300;padding-top:0;text-align:left;padding-left:30px}.mec-event-list-standard .mec-event-meta .mec-event-address{font-style:normal;letter-spacing:0;font-size:13px;color:#8a8a8a}.mec-event-list-standard .mec-event-meta span.mec-event-d,.mec-event-list-standard .mec-event-meta span.mec-event-m{font-size:17px;font-weight:700;padding-right:6px;color:#444;text-transform:uppercase}.mec-event-list-standard .mec-date-details,.mec-event-list-standard .mec-time-details,.mec-event-list-standard .mec-venue-details{position:relative;padding-left:28px;margin-bottom:10px}.mec-event-list-standard .mec-date-details:before,.mec-event-list-standard .mec-time-details:before,.mec-event-list-standard .mec-venue-details:before{content:"\f041";font-family:fontawesome;position:absolute;left:6px;font-size:15px}.mec-event-list-standard .mec-date-details:before{content:"\f073"}.mec-event-list-standard .mec-time-details:before{content:"\f017"}.mec-event-list-minimal .mec-event-title a{color:#292929;transition:color .3s ease}.mec-event-meta-wrap .mec-price-details{margin-bottom:10px}.mec-price-details i{margin-right:5px;vertical-align:text-top}.mec-event-meta-wrap .mec-event-meta .mec-price-details i:before{font-size:15px}@media only screen and (max-width:960px){.mec-event-list-standard .mec-topsec{display:block}.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:block;width:40%}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{display:block;min-height:230px}.mec-event-list-standard .mec-event-meta-wrap{display:block;border-left:none;border-top:1px solid #eee;width:100%;float:none;padding-top:20px}}@media only screen and (min-width:480px) and (max-width:960px){.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:table-cell}}@media only screen and (max-width:479px){.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap img{float:none;width:100%;padding:0}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{padding:10px 10px 10px 30px}}.mec-wrap .mec-events-cal-links{margin-bottom:0}.mec-single-event #mec-wrap{padding:0;margin-top:35px}.mec-wrap .mec-single-title{margin-top:0;margin-bottom:30px;font-weight:700;font-size:33px}.mec-single-event .mec-event-content{padding:40px 0 30px;margin-bottom:10px}.mec-single-event .mec-events-meta-group-booking,.mec-single-event .mec-frontbox{margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-wrap #main-content{overflow:hidden;padding-top:35px}.mec-single-event .mec-map-get-direction-address-cnt{position:relative}.mec-single-event .mec-map-get-direction-address-cnt input.mec-map-get-direction-address{width:100%;height:46px;padding:13px 10px;margin-bottom:0;background:#fcfcfc;border:1px solid #e0e0e0;border-radius:0;box-shadow:inset 0 2px 5px rgba(0,0,0,.081)}.mec-single-event .mec-map-get-direction-address-cnt input.mec-map-get-direction-address:focus{color:#444;background:#fff;border-color:#b0b0b0;box-shadow:0 0 3px rgba(0,0,0,.2)}.mec-single-event .mec-map-get-direction-btn-cnt input{width:100%}.mec-single-event .mec-map-get-direction-reset{position:absolute;z-index:2;top:5px;right:10px;font-size:11px;cursor:pointer}.mec-events-meta-group-tags{margin-top:20px}.mec-events-meta-group-tags a{display:inline-block;color:#444;font-size:11px;text-transform:uppercase;letter-spacing:1.5px;font-weight:500;padding:3px 7px;border:1px solid #ddd;border-radius:2px;background:#fff;margin:1px 3px}.mec-events-meta-group-tags a:hover{text-decoration:underline;background:#f9f9f9}.mec-local-time-details li{list-style:none}.mec-single-event:not(.mec-single-modern) .mec-local-time-details{background:#f7f7f7;padding:12px 14px 8px;margin-bottom:12px;vertical-align:baseline;position:relative;border:none}.mec-single-event:not(.mec-single-modern) .mec-local-time-details ul{margin:0;padding-left:35px}.mec-single-event:not(.mec-single-modern) .mec-local-time-details h3{border:none;padding-left:15px}.mec-single-event:not(.mec-single-modern) .mec-local-time-details h3:before{display:none}.mec-single-event.mec-single-modern i.mec-sl-speedometer{display:none}.mec-single-event .mec-events-meta-group-booking{padding-bottom:30px}.mec-single-event .mec-events-meta-group-booking ul{list-style:none;margin-left:0;padding-left:0}.mec-single-event .mec-events-meta-group-booking ul li{padding:0;list-style:none;margin-top:40px}.mec-single-event .mec-events-meta-group-booking h4{margin-bottom:20px;font-size:23px;font-weight:700}.mec-single-event .mec-events-meta-group-booking li h4{font-size:19px}.mec-single-event .mec-events-meta-group-booking button,.mec-single-event .mec-events-meta-group-booking input{border-radius:0;margin-bottom:6px}.mec-single-event .mec-events-meta-group-booking button{min-width: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}button#mec-book-form-back-btn-step-3{float:none}.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}.mec-single-event .mec-book-first,.mec-single-event .mec-event-tickets-list{padding-left:15px;padding-right:15px}.mec-single-event label.mec-fill-attendees{margin-left:15px!important}.mec-single-event .mec-events-meta-group-booking .mec-event-ticket-available{display:block;margin-bottom:20px;margin-top:-17px;font-size:11px;color:#8a8a8a}.mec-single-event .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.mec-single-event .mec-events-meta-group-booking form{margin:0}.mec-single-event .mec-events-meta-group-booking h5 span,.mec-single-event .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;display:block;clear:none;padding:5px 1em 3px 0}.mec-single-event .mec-events-meta-group-booking h5 span{display:inline-block}.mec-single-event .mec-events-meta-group-booking h5 span.mec-ticket-variation-name{padding-right:5px;text-transform:capitalize}.mec-single-event .mec-events-meta-group-booking input::-webkit-input-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input:-moz-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:330px;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both}.wbmec-mandatory{padding-left:5px;font-size:14px}.mec-single-event .mec-events-meta-group-booking .mec-red-notification input,.mec-single-event .mec-events-meta-group-booking .mec-red-notification select,.mec-single-event .mec-events-meta-group-booking .mec-red-notification textarea{border:1px solid #ff3c3c}.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=checkbox],.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=radio]{outline:1px solid #ff3c3c}.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}@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}.mec-calendar .mec-calendar-table .mec-no-event{display:none}.mec-calendar .mec-calendar-table-head dt{font-weight:700;text-transform:uppercase;font-size:15px}.mec-calendar .mec-calendar-row dt:hover{background:#f4f4f4}.mec-calendar .mec-table-nullday{color:#cacaca}.mec-calendar.mec-box-calendar .mec-table-nullday:last-child{border-right:1px solid #eaeaea}.mec-calendar .mec-next-month:hover,.mec-calendar .mec-prev-month:hover{background:#f4f4f4}.mec-calendar .mec-selected-day,.mec-calendar .mec-selected-day:hover{background:#40d9f1;color:#fff}.mec-calendar .mec-selected-day a{color:#fff}.mec-calendar .mec-has-event{position:relative}.mec-calendar .mec-calendar-row dt.mec-has-event:hover{background:#40d9f1}.mec-calendar .mec-has-event a{cursor:pointer;display:block;width:100%;height:100%;border-radius:50%;color:#4d4d4d;transition:all .25s ease;text-decoration:none;box-shadow:none}.mec-calendar .mec-calendar-row dt.mec-has-event.mec-selected-day a,.mec-calendar .mec-calendar-row dt.mec-has-event:hover a{color:#fff}.mec-calendar .mec-has-event:after{background-color:#40d9f1;border-radius:50%;display:block;content:'';width:8px;height:8px;bottom:14px;left:50%;margin:-4px 0 0 -4px;position:absolute;transition:all .25s ease}.mec-calendar .mec-calendar-row dt.mec-has-event:hover:after{background-color:#fff}.mec-calendar .mec-has-event.mec-selected-day:after{display:none}.mec-calendar .mec-event-article{text-align:left;margin-bottom:0;padding-bottom:25px;padding-top:26px;border-top:1px solid #efefef;transition:all .33s ease}.mec-calendar .mec-event-article:hover{background-color:#fafafa}.mec-calendar .mec-event-article .mec-event-time{font-size:11px;line-height:1.1;margin:0}.mec-calendar .mec-event-article .mec-event-title{font-size:13px;padding:0;margin:10px 0 8px;font-weight:700;text-transform:uppercase}.mec-calendar .mec-event-article .mec-event-title a{text-decoration:none;color:#494949;transition:color .3s ease}.mec-calendar .mec-event-article .mec-event-title a:hover{color:#40d9f1}.mec-calendar .mec-event-article .mec-event-image,.mec-calendar .mec-event-list-classic .mec-event-image img{width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-image{float:left;margin-right:20px;width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-detail{font-size:13px;line-height:1.3;font-family:Roboto,sans-serif;color:#9a9a9a;margin-bottom:0}.mec-calendar .mec-calendar-side .mec-next-month,.mec-calendar .mec-calendar-side .mec-previous-month{cursor:pointer;position:absolute;top:0;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;color:#a9a9a9;font-size:12px;letter-spacing:1px;text-transform:uppercase;padding-left:10px;padding-right:10px;border:1px solid #efefef;border-top:none;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease}.mec-calendar .mec-calendar-side .mec-next-month i,.mec-calendar .mec-calendar-side .mec-previous-month i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-calendar .mec-calendar-side .mec-next-month:hover,.mec-calendar .mec-calendar-side .mec-previous-month:hover{background-color:#f9f9f9;color:#40d9f1}.mec-calendar .mec-calendar-side .mec-previous-month{left:0;border-bottom-right-radius:6px;border-left:none}.mec-calendar .mec-calendar-side .mec-next-month{right:0;border-bottom-left-radius:6px;border-right:none}@media only screen and (min-width:961px){.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-side{width:370px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-header{position:relative;width:350px;margin-top:30px;margin-bottom:20px;padding-top:20px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) dt{width:50px;height:50px;line-height:50px}.mec-wrap.mec-sm959 .mec-calendar.mec-event-calendar-classic dl dt{height:110px}}@media only screen and (max-width:1200px){.mec-calendar .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-calendar .mec-calendar-side{width:370px}.mec-calendar .mec-calendar-header{position:relative;width:350px;margin-top:30px}.mec-calendar dt{width:50px;height:50px;line-height:50px}}@media only screen and (max-width:767px){.mec-calendar .mec-calendar-header h2{font-size:18px}.mec-calendar .mec-calendar-topsec{width:100%}.mec-calendar .mec-calendar-side{width:100%;display:block;padding:30px}.mec-calendar .mec-calendar-header{width:auto}.mec-calendar .mec-calendar-events-side{width:100%;display:block;height:100%;border-left:none;border-top:1px solid #efefef;padding:20px}.mec-calendar dl{width:100%}.mec-calendar dt{width:14%;height:60px;line-height:60px;border-radius:50px}}@media only screen and (max-width:479px){.mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-calendar .mec-calendar-header h2{font-size:16px;margin-top:33px}.mec-calendar dt{height:38px;line-height:38px}.mec-calendar .mec-event-list-classic .mec-event-detail,.mec-calendar .mec-event-list-classic .mec-event-title{font-size:12px}.mec-calendar .mec-event-list-classic .mec-event-time{font-size:10px}}.mec-box-calendar.mec-calendar .mec-has-event a,.mec-box-calendar.mec-calendar dt{border-radius:0}.mec-box-calendar.mec-calendar .mec-calendar-header{margin-top:2px;margin-bottom:30px}.mec-box-calendar.mec-calendar dt{border-bottom:1px solid #eaeaea;border-left:1px solid #eaeaea}.mec-box-calendar.mec-calendar dl dt:last-child{border-right:1px solid #eaeaea}.mec-box-calendar.mec-calendar .mec-calendar-table-head dt{border-top:1px solid #eaeaea;background-color:#f8f8f8}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{background-color:#f4f4f4}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{border-radius:2px;top:40px;border:1px solid #eee;height:30px;line-height:30px;z-index:1}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:60px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:60px}.mec-box-calendar.mec-calendar .mec-calendar-side{box-shadow:none}.mec-box-calendar.mec-calendar .mec-calendar-events-side{border:none}.mec-box-calendar.mec-calendar .mec-calendar-events-side .mec-table-side-day{border-radius:2px}.mec-box-calendar.mec-calendar h4.mec-month-label{position:relative;width:560px;margin-top:2px;margin-bottom:30px;text-transform:uppercase;font-size:22px;font-weight:700;color:#333}.mec-widget .mec-box-calendar.mec-calendar h4.mec-month-label{width:100%;margin-top:8px;font-size:13px}@media only screen and (max-width:1200px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:42px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:42px}.mec-calendar .mec-calendar-header h2{font-size:17px;margin-top:7px}}@media only screen and (max-width:767px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{top:28px;font-size:10px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:30px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:30px}.mec-calendar .mec-calendar-header h2{font-size:15px}}@media only screen and (max-width:479px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{top:16px;font-size:0;padding:4px 0;text-align:center;min-width:33px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:10px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:10px}.mec-box-calendar.mec-calendar .mec-calendar-header h2{font-size:12px;margin-top:15px}.mec-box-calendar.mec-calendar .mec-event-image{margin-right:12px}}.mec-calendar.mec-event-calendar-classic,.mec-calendar.mec-event-calendar-classic .mec-calendar-side{border:none;padding:0;width:100%;height:100%;box-shadow:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-side{display:block}.mec-calendar.mec-event-calendar-classic .mec-calendar-header,.mec-calendar.mec-event-calendar-classic dl{width:100%}.mec-calendar.mec-event-calendar-classic dl dt{width:15%;height:136px;line-height:1.2;text-align:left;padding:5px 7px;position:relative}.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{height:30px!important}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{top:0}.mec-calendar.mec-event-calendar-classic .mec-has-event:after{bottom:auto;top:24px;left:7px;margin:0}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{left:0}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month{right:0}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{text-align:left;background:#fafafa;border:1px solid #eaeaea;border-top:none;padding:10px 20px}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{display:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-event-article:hover{background-color:#fcfcfc}.mec-calendar.mec-event-calendar-classic .mec-selected-day,.mec-calendar.mec-event-calendar-classic dt.mec-selected-day:hover{color:#40d9f1;font-weight:700;background:#fafafa;border-bottom:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-day,.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{display:inline-block;margin:0;margin-bottom:15px;font-weight:700}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-day{margin-left:4px}.mec-calendar.mec-event-calendar-classic .mec-calendar-row dt.mec-has-event a{color:#4d4d4d}.mec-calendar.mec-event-calendar-classic .mec-calendar-row dt.mec-has-event:not(.mec-selected-day):hover a{color:#fff}@media only screen and (max-width:1200px){.mec-calendar.mec-event-calendar-classic dl dt{height:100px}}@media only screen and (max-width:767px){.mec-calendar.mec-event-calendar-classic dl dt{height:40px}}@media only screen and (max-width:479px){.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{padding:10px}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-header h2{font-size:13px;margin-top:8px}}.mec-calendar .mec-event-article.mec-single-event-novel{padding:4px 8px;min-height:25px;margin:0 -4px;border-radius:0}.mec-calendar .mec-event-article.mec-single-event-novel h4{margin:0;font-size:10px;line-height:18px}.mec-calendar.mec-event-container-novel dl dt{padding:3px}.mec-calendar.mec-event-calendar-classic .mec-calendar-novel-selected-day{display:inline-block;padding:4px;margin-left:1px}.mec-calendar.mec-event-calendar-classic .mec-selected-day .mec-calendar-novel-selected-day{color:#fff}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-selected-day,.mec-calendar.mec-event-calendar-classic.mec-event-container-novel dt.mec-selected-day:hover{border-bottom:1px solid #eaeaea}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-calendar-side .mec-calendar-table{min-height:auto}.mec-single-event-novel.light h4{color:#000!important}.mec-single-event-novel.dark h4{color:#fff!important}@media only screen and (max-width:768px){.mec-calendar .mec-event-article.mec-single-event-novel{padding:0;min-height:5px}.mec-calendar .mec-event-article.mec-single-event-novel h4{display:block;font-size:9px}}.mec-event-container-simple .event-single-content-simple{display:none}.mec-event-calendar-classic.mec-event-container-simple .mec-calendar-side .mec-calendar-table{min-height:unset}.mec-event-container-simple .mec-monthly-tooltip h4{font-size:13px;font-weight:500;margin:0;color:#444}.mec-event-container-simple .mec-monthly-tooltip h4:hover{text-decoration:underline;color:#111}.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple{border-bottom:1px dashed #e3e3e3;padding:10px 2px;display:block}.mec-calendar.mec-event-container-simple dl dt.mec-calendar-day{font-size:30px;color:#000}.mec-calendar.mec-event-container-simple .mec-calendar-row dt:hover{background:unset}.mec-calendar.mec-event-container-simple .mec-calendar-row dt,.mec-calendar.mec-event-container-simple .mec-calendar-row dt:last-child,.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt,.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt:last-child{border-width:2px}.mec-calendar.mec-event-container-simple dl dt.mec-selected-day,.mec-calendar.mec-event-container-simple dl dt.mec-selected-day:hover{border-bottom:2px solid #40d9f1;background:unset}.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt{line-height:36px}@media (max-width:768px){.mec-calendar.mec-event-container-simple{overflow-x:scroll}.mec-calendar.mec-event-container-simple .mec-calendar-side{min-width: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{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 input[type=email],.mec-fes-form input[type=number],.mec-fes-form input[type=password],.mec-fes-form input[type=tel],.mec-fes-form input[type=text],.mec-fes-form select,.mec-fes-form textarea{min-width:inherit;width:auto;display:inline;min-height:30px;font-size:13px;padding:10px;margin-bottom:20px;clear:both;background:#fff;border:1px solid #cfeff5;box-shadow:0 2px 5px rgba(207,239,245,.38) inset;border-radius:3px;height:40px;max-width:280px;color:#798f96;font-family:inherit}.mec-fes-form input{background:#fff!important;border-radius:3px!important;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important}.mec-fes-form textarea{height:80px}.mec-fes-form input::-webkit-input-placeholder{color:#798f96}.mec-fes-form input::-moz-placeholder{color:#798f96}.mec-fes-form input:-ms-input-placeholder{color:#798f96}.mec-fes-form input:-moz-placeholder{color:#798f96}#mec_more_info_target{width:100%}@media only screen and (min-width:961px){.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form textarea{width:100%;display:inline-block}}@media only screen and (max-width:768px){.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form textarea{width:100%}}.mec-fes-form input[type=text]#mec_fes_title{padding:5px 10px;min-height:32px;height:50px;background:#fff!important;max-width:100%;font-size:19px;font-weight:400}.mec-fes-form input[type=checkbox],.mec-fes-form input[type=radio]{display:inline!important;float:left;margin:5px 5px 0 0}.mec-fes-form input[type=email]:focus,.mec-fes-form input[type=number]:focus,.mec-fes-form input[type=password]:focus,.mec-fes-form input[type=tel]:focus,.mec-fes-form input[type=text]:focus,.mec-fes-form select:focus,.mec-fes-form textarea:focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-form-row .mec-color{cursor:pointer}.mec-form-row.mec-available-color-row span{margin:10px;width:14px;height:14px;display:inline-block;margin-right:6px;border-radius:20px 20px 20px 20px;vertical-align:middle}.mec-form-row.mec-available-color-row span:first-of-type{margin-left:0}.mec-fes-form.mec-fes-form .mec-tooltip{display:inline}.mec-fes-form-cntt .dashicons-editor-help{display:block}.mec-fes-form .mec-tooltip:hover:after,.mec-fes-form .mec-tooltip:hover:before{display:none}.mec-fes-form.mec-fes-form .mec-tooltip{display:inline-flex;bottom:7px}.mec-fes-form .mec-tooltip .box{min-width:300px;max-width:600px;display:inline-block;left:26px;top:50%;transform:translateY(-50%);padding:0;margin-top:8px;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.3;position:absolute;z-index:9999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s}#webnus-dashboard .mec-fes-form .mec-tooltip .box p,.mec-fes-form .mec-tooltip .box p{color:#fff;font-size:14px;line-height:1.3;margin:0}.mec-fes-form .mec-tooltip:hover .box{visibility:visible;opacity:1}.mec-fes-form .mec-tooltip:hover .box{padding:20px;border-radius:8px}.mec-fes-form .mec-tooltip .box h5{color:#fff;font-size:17px;font-weight:600;margin:-30px -20px;padding:20px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #32363a;border-radius:6px 6px 0 0;z-index:9999}#webnus-dashboard .mec-fes-form .mec-tooltip .box p a,.mec-fes-form .mec-tooltip .box p a{color:#40d9f1;margin-top:10px;margin-left:0;font-weight:400;position:relative;text-decoration:none;display:block;width:max-content}.mec-fes-form .mec-tooltip .box a:hover{color:#f90}.mec-fes-form .mec-tooltip .box:after{display:block;position:absolute!important;top:100%!important;right:50%!important;margin-top:-6px!important;margin-right:-6px!important;width:12px!important;height:24px!important;overflow:hidden!important;transform:rotate(-90deg)!important}.mec-fes-form .mec-tooltip .box:before{display:block;content:''!important;position:absolute!important;width:12px;height:12px;left:-10px!important;top:50%!important;transform:translate(50%,-50%) rotate(-45deg)!important;background-color:#535a61!important;box-shadow:0 8px 9px -4px #535a61!important;z-index:0!important}.mec-fes-form .mec-tooltip .box.top{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-fes-form .mec-tooltip .box.top:after{top:50%!important;right:100%!important}.mec-fes-form .mec-tooltip .box.top:before{left:50%!important;top:100%!important}.mec-fes-form .mec-tooltip .box.bottom{left:50%;top:auto;bottom:0;transform:translate(-50%,100%);margin-bottom:-20px;margin-left:-10px}.mec-fes-form .mec-tooltip .box.bottom:after{top:0!important;right:50%!important;background-color:#3a3f44!important}.mec-fes-form .mec-tooltip .box.bottom:before{left:50%!important;top:-7px!important;transform:translateX(-50%);background-color:#3a3f44!important}.mec-fes-form .mec-tooltip .box.left{left:auto;right:26px;top:50%;transform:translateY(-50%)}.mec-fes-form .mec-tooltip .box.left:before{right:0!important;left:auto!important;top:50%!important}.mec-fes-form .mec-tooltip{display:inline-block;position:relative;margin-right:10px;cursor:help;bottom:5px;left:3px}.mec-fes-form .mec-tooltip:last-child{margin-right:0}.mec-fes-form .mec-tooltip:hover:after{background:#313130;border-radius:5px;bottom:24px;color:#fff;content:attr(title);left:-75px;padding:10px;position:absolute;z-index:98;width:240px}.mec-fes-form .mec-tooltip:hover:before{border:solid;border-color:#313130 transparent;border-width:6px 6px 0;bottom:18px;content:"";left:30%;position:absolute;z-index:99}.mec-fes-form .mec-tooltip .dashicons-before:before{font-size:24px;color:#008aff;line-height:37px}.mec-fes-form .mec-tooltip a:focus{box-shadow:none}.mec-form-row .bootstrap_unvalid{display:block;border:2px solid red;position:relative;display:inline-block;border-bottom:1px dotted #000}.mec-fes-form .mec-tooltiptext{visibility:hidden;width:120px;background-color:red;color:#fff;text-align:center;border-radius:6px;padding:5px 0;position:absolute;z-index:1}.mec-fes-form .mec-tooltip .content p a{display:none}@media only screen and (min-width:961px){.mec-fes-form .mec-fes-form-cntt,.mec-fes-form .mec-fes-form-sdbr{width:68%;float:left;padding-right:20px}.mec-fes-form .mec-fes-form-sdbr{width:32%;padding-right:0;padding-left:20px}.mec-fes-submit-mobile{display:none}}.mec-fes-form .mec-meta-box-fields{padding:0 20px 20px;border:1px solid #cfeff5;margin-bottom:20px!important;box-shadow:0 2px 6px -3px #cfeff5;border-radius:3px;background:#fff}.mec-fes-form .mec-meta-box-fields h4{margin:0 -20px;font-size:15px;font-weight:600;letter-spacing:0;color:#40d9f1;text-transform:capitalize;padding:15px 20px;background:#ecfcff;margin-bottom:20px;border-radius:3px}.mec-fes-sub-button{width:100%}.mec-available-color-row span.color-selected{border:3px solid #fff;box-sizing:content-box;box-shadow:0 0 0 2px #40d9f1,0 2px 8px -1px #40d9f1}.mec-fes-loading:before{content:url(../img/ajax-loader.gif);background:0 0;border-style:none;display:block;margin-left:47%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:190px;margin-right:1.4%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-1,.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-2{width:120px;margin-right:10px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].widefat{width:100%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row{border-bottom:none;padding-bottom:10px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-6{width:39%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row button{margin-right:0;padding:9px 26px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row button.mec-add-hourly-schedule-button{font-size:12px;height:30px;line-height:25px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row .description{display:inline-block;border-left:1px dashed #bfcacc;margin-left:12px;line-height:28px;padding-left:12px;margin-top:5px;font-style:italic}@media only screen and (max-width:768px){.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:100%!important}}#mec_fes_form_message{max-width:838px;margin:10px auto;display:block!important;text-align:center}.mec-wrap .mec-totalcal-box{position:relative;border:1px solid #efefef;padding:20px 5px;margin:0 0 20px;background:#fafafa;overflow:hidden;box-shadow:0 3px 2px 0 rgba(0,0,0,.012);min-height:78px}.mec-wrap .mec-totalcal-box i{float:left;margin:0;width:36px;height:36px;background:#fff;border:1px solid #efefef;text-align:center;padding:10px 0;font-size:15px;color:#888}.mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-wrap .mec-totalcal-box input,.mec-wrap .mec-totalcal-box select{width:auto;min-height:36px;height:36px;line-height:36px;background:#fff;font-size:13px;color:#777;border:1px solid #efefef;margin:0 0 0 -1px;float:left;padding:0 5px;font-family:Roboto,Helvetica,Arial,sans-serif}.mec-wrap .mec-totalcal-box input[type=submit]{cursor:pointer;padding:0 16px;text-transform:uppercase;font-size:11px;font-family:Montserrat,Helvetica,Arial,sans-serif;transition:all .21s ease}.mec-wrap .mec-totalcal-box input[type=submit]:hover{background:#222;color:#fff}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{display:inline-block;text-transform:uppercase;font-family:Montserrat,Helvetica,Arial,sans-serif;font-size:11px;padding:0 12px;cursor:pointer}.mec-wrap .mec-totalcal-box .mec-totalcal-view span:hover{color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected{color:#fff;background:#40d9f1;border-color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view{text-align:right;float:right}.mec-wrap .mec-totalcal-box input[type=search]{width:calc(100% - 36px)}@media only screen and (min-width:961px) and (max-width:1200px){.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-3,.mec-wrap .mec-totalcal-box .col-md-4,.mec-wrap .mec-totalcal-box .col-md-5{width:100%;float:none;padding-bottom:20px;clear:both;overflow:hidden}}@media only screen and (min-width:768px) and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-4{position:relative;right:10px;top:20px;width:initial}.mec-wrap .mec-totalcal-box .col-md-5{padding-bottom:0}.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:767px){.mec-wrap .mec-totalcal-box .mec-totalcal-view{float:none}.mec-wrap .mec-totalcal-box .col-md-4{padding-bottom:0}}@media only screen and (max-width:479px){.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 8px;font-size:10px}.mec-wrap .mec-totalcal-box input[type=submit]{padding:0 10px;font-size:10px}}@media only screen and (min-width:961px){.mec-wrap .mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5,.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-3{width:100%;float:none;padding-bottom:20px;clear:both;overflow:hidden}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-4{position:absolute;right:10px;top:20px;width:initial}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5{padding-bottom:0;width:100%}}@media (min-width:961px) and (max-width:1200px){.mec-full-calendar-wrap .mec-totalcal-box{padding:20px 20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{padding-bottom:20px!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{min-width:calc(30% - 10px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3:last-child select{min-width:calc(50% - 19px)}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view{margin-right:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:10px;text-align:center}}@media (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box{padding:20px 20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{padding-bottom:10px!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px);margin-bottom:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view{margin-right:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:10px;text-align:center}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:100%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:absolute;top:20px}}@media (min-width:780px) and (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:absolute;top:20px}}@media(max-width:780px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{width:calc(50% - 18px)!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:unset;padding-right:0}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:20%;text-align:center;font-size:10px}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 7px;margin-top:20px}}@media(max-width:480px){.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:20%;text-align:center;font-size:10px}}.mec-search-form{padding:20px 10px}.mec-search-form .mec-dropdown-wrap{display:table;width:100%}.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{padding:0 10px;float:left;min-height:55px}.mec-search-form .mec-date-search,.mec-search-form .mec-text-input-search{width:50%;min-height:36px;display:block}.mec-full-calendar-wrap .mec-search-form .mec-date-search,.mec-full-calendar-wrap .mec-search-form .mec-text-input-search{width:100%}.mec-full-calendar-wrap .mec-search-form .col-md-3,.mec-full-calendar-wrap .mec-search-form .col-md-5,.mec-full-calendar-wrap .mec-search-form .col-md-6,.mec-full-calendar-wrap .mec-search-form .col-md-8{padding:0}.mec-widget .mec-search-form .mec-date-search,.mec-widget .mec-search-form .mec-text-input-search{width:100%}.mec-widget .mec-search-form .mec-text-input-search{margin-top:10px}.mec-search-form .mec-date-search{clear:left}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:table-cell;float:none}.mec-widget .mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block}.mec-wrap .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{width:calc(100% - 36px);margin-bottom:20px}.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 106px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}@media only screen and (max-width:767px){.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{width:100%;float:none}.mec-search-form .mec-date-search{min-height:55px}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:50%;float:left}}@media only screen and (max-width:960px){.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 124px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}}@media only screen and (max-width:479px){.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:100%;float:none}}.ui-datepicker{background-color:#fff;border:1px solid #66afe9;border-radius:4px;box-shadow:0 0 8px rgba(102,175,233,.6);display:none;margin-top:4px;padding:10px;width:240px}.ui-datepicker a,.ui-datepicker a:hover{text-decoration:none;cursor:pointer}.ui-datepicker a:hover,.ui-datepicker td:hover a{color:#2c6396;-webkit-transition:color .1s ease-in-out;-moz-transition:color .1s ease-in-out;-o-transition:color .1s ease-in-out;transition:color .1s ease-in-out}.ui-datepicker .ui-datepicker-header{margin-bottom:4px;text-align:center}.ui-datepicker .ui-datepicker-title{font-weight:700}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{cursor:default;font-family:dashicons;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;height:20px;line-height:1.4;margin-top:2px;width:20px}.ui-datepicker .ui-datepicker-prev{float:left;text-align:left}.ui-datepicker .ui-datepicker-next{float:right;text-align:center}.ui-datepicker .ui-datepicker-prev:before{content:"\f341"}.ui-datepicker .ui-datepicker-next:before{content:"\f345"}.ui-datepicker .ui-icon{display:none}.ui-datepicker .ui-datepicker-calendar{table-layout:fixed;width:100%}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker .ui-datepicker-calendar th{text-align:center;padding:4px 0}.ui-datepicker .ui-datepicker-calendar td{border-radius:4px;-webkit-transition:background-color .1s ease-in-out,color .1s ease-in-out;-moz-transition:background-color .1s ease-in-out,color .1s ease-in-out;-o-transition:background-color .1s ease-in-out,color .1s ease-in-out;transition:background-color .1s ease-in-out,color .1s ease-in-out}.ui-datepicker .ui-datepicker-calendar td:hover{background-color:#eee;cursor:pointer}.ui-datepicker .ui-datepicker-calendar td a{text-decoration:none}.ui-datepicker .ui-datepicker-current-day{background-color:#4289cc}.ui-datepicker .ui-datepicker-current-day a{color:#fff}.ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover{background-color:#fff;cursor:default}.mec-owl-theme .owl-dots .owl-dot{border:none}.event-carousel-type1-head .mec-event-image{position:relative;min-height:150px}.event-carousel-type1-head .mec-event-image img{width:100%}.mec-event-carousel-content .mec-event-carousel-title a{transition:all .2s ease}.event-carousel-type1-head .mec-event-date-carousel{position:absolute;top:25px;left:1px;font-size:41px;width:160px;color:#fff;font-weight:500;background-color:#40d9f1;padding-left:21px;height:97px;line-height:2.3;padding-right:85px}.event-carousel-type1-head .mec-event-date-carousel:after{content:"";position:absolute;display:inline-block;z-index:-1;bottom:-13px;left:5px;width:0;border-width:13px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.event-carousel-type1-head .mec-event-date-info{font-size:12px;font-weight:300;position:absolute;top:27px;left:75px}.event-carousel-type1-head .mec-event-date-info-year{font-size:12px;font-weight:300;position:absolute;top:45px;left:75px}.mec-event-carousel-content{border:1px solid #e8e8e8;border-top:none;margin-top:-5px;padding:34px 9px 11px 37px}.mec-event-carousel-content .mec-event-carousel-title a{font-size:23px;font-weight:500;color:#000;letter-spacing:-1px}.mec-event-carousel-content p{font-size:14px;color:#7a7272;font-weight:300}.mec-owl-crousel-skin-type1 .owl-item .mec-event-article{padding:0 19px}.mec-event-carousel-type1 .owl-page.active span{background-color:#00aeef;height:14px;width:14px}.mec-event-carousel-type1 .mec-event-carousel-content{margin-bottom:15px;box-shadow:0 1px 2px rgba(0,0,0,.04);transition:all .27s ease}.mec-event-carousel-type1 .mec-event-carousel-content:hover{box-shadow:0 0 35px rgba(0,0,0,.07)}@media only screen and (min-width:768px) and (max-width:1000px),(min-width:270px) and (max-width:448px){.event-carousel-type1-head .mec-event-date-carousel{font-size:25px;line-height:2.5;padding-right:70px;height:64px;width:120px}.event-carousel-type1-head .mec-event-date-carousel:after{left:7px}.event-carousel-type1-head .mec-event-date-info{font-size:10px;top:13px;left:55px}.event-carousel-type1-head .mec-event-date-info-year{font-size:10px;top:25px;left:55px}.event-carousel-type1-head .mec-event-date-carousel:after{top:48px}}.event-carousel-type2-head{background:#fff;border:1px solid #e6e6e6}.event-carousel-type2-head .mec-event-carousel-content-type2{margin-top:15px;min-height:182px}.event-carousel-type2-head .mec-event-carousel-content-type2 .mec-event-date-info{font-size:15px;color:#9a9a9a;font-weight:300}.event-carousel-type2-head .mec-event-carousel-content-type2 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-carousel-content-type2 .mec-event-carousel-title a{color:inherit}.mec-event-carousel-type2 .event-carousel-type2-head .mec-event-carousel-content-type2 p{font-size:16px;font-weight:300;color:#444}.event-carousel-type2-head .mec-event-footer-carousel-type2{margin-top:33px;position:relative}.mec-event-carousel-type2 .mec-event-footer-carousel-type2 .mec-event-sharing-wrap{left:0}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-event-sharing-wrap>li{border:none;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button{border:1px solid #e4e4e4;float:right;padding:7px 23px 7px;font-size:12px;text-transform:uppercase;color:#707070;font-weight:500;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button:hover{color:#fff}.mec-event-article .event-carousel-type2-head{padding:10%;margin-right:-1px}.mec-event-carousel-type2 .mec-owl-carousel .owl-wrapper-outer{border-right:1px solid #e6e6e6}.mec-wrap .mec-event-carousel-type2 .owl-next,.mec-wrap .mec-event-carousel-type2 .owl-prev,.mec-wrap .mec-event-carousel-type3 .owl-next,.mec-wrap .mec-event-carousel-type3 .owl-prev,.mec-wrap .mec-event-carousel-type4 .owl-next,.mec-wrap .mec-event-carousel-type4 .owl-prev{transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:47%;background-color:transparent!important}.mec-event-carousel-type2 .owl-next{right:-60px}.mec-event-carousel-type2 .owl-prev{left:-60px}.mec-event-carousel-type2 .owl-next i,.mec-event-carousel-type2 .owl-prev i,.mec-event-carousel-type3 .owl-next i,.mec-event-carousel-type3 .owl-prev i,.mec-event-carousel-type4 .owl-next i,.mec-event-carousel-type4 .owl-prev i{font-size:40px;color:#282828}.mec-event-carousel-type2 .owl-next i:hover,.mec-event-carousel-type2 .owl-prev i:hover,.mec-event-carousel-type3 .owl-next i:hover,.mec-event-carousel-type3 .owl-prev i:hover{color:#000;cursor:pointer}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}@media only screen and (min-width:320px) and (max-width:768px){.mec-event-carousel-type2 .owl-next,.mec-event-carousel-type2 .owl-prev,.mec-event-carousel-type3 .owl-next,.mec-event-carousel-type3 .owl-prev,.mec-event-carousel-type4 .owl-next,.mec-event-carousel-type4 .owl-prev{position:initial;top:100%}}.mec-event-carousel-type3 .mec-event-article{margin:0 10px}.event-carousel-type3-head .mec-event-image,.event-carousel-type3-head .mec-event-image img{width:100%;height:auto}.event-carousel-type3-head .mec-event-footer-carousel-type3{background:#fff;display:inline-block;width:calc(100% - 40px);margin-top:-74px;position:relative;margin-left:20px;margin-right:20px;margin-bottom:6px;padding:8% 11%;box-shadow:0 2px 10px -2px rgba(0,0,0,.2)}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button{border:1px solid #e4e4e4;text-transform:uppercase;float:right;padding:7px 23px 7px;font-size:12px;color:#707070;font-weight:500}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button:hover{color:#fff}.mec-event-footer-carousel-type3 span{font-size:15px;color:#9a9a9a;font-weight:300;display:block;margin-top:30px}.mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:29px;font-weight:700}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-footer-carousel-type3 .mec-event-carousel-title a{color:inherit}.event-carousel-type3-head .mec-event-footer-carousel-type3 p{font-size:16px;font-weight:300;color:#444!important;margin-bottom:36px}.mec-event-carousel-type3 .owl-next{right:-70px}.mec-event-carousel-type3 .owl-prev{left:-70px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap{left:11%}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}.event-carousel-type3-head .mec-end-date-label{display:inline;margin-left:2px}.event-carousel-type4-head.clearfix{position:relative;overflow:hidden;background:#fff}.event-carousel-type4-head .mec-event-overlay{position:absolute;left:0;right:0;bottom:0;top:0;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-hover-carousel-type4{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out;opacity:0;visibility:hidden}.mec-event-carousel-type4 .mec-event-article{margin:0 10px}.mec-event-carousel-type4 .mec-event-article:hover .mec-event-hover-carousel-type4{opacity:1;visibility:visible}.mec-event-hover-carousel-type4 .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-hover-carousel-type4 .mec-event-date{font-size:11px;text-transform:uppercase;font-weight:400;line-height:1.6}.mec-event-hover-carousel-type4 .mec-event-date span{display:block;font-weight:700;font-size:14px}.mec-event-hover-carousel-type4 .mec-event-title{color:#fff;margin:20px 0 38px;font-size:16px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-hover-carousel-type4 .mec-btn-wrapper{text-align:left}.mec-event-hover-carousel-type4 .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:10px 14px;letter-spacing:1.5px;font-size:11px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-hover-carousel-type4 .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-carousel-type4 .owl-next{right:-70px}.mec-event-carousel-type4 .owl-prev{left:-70px}.mec-carousel-type4-head{margin-bottom:25px}.mec-carousel-type4-head-title{padding:0 11px;text-align:left;font-weight:700;font-size:20px;color:#000}.mec-carousel-type4-head-link{text-align:right;padding:0 11px}.mec-carousel-type4-head-link a{background:#222;color:#fff;padding:10px 38px;transition:all .3s ease}.mec-carousel-type4-head-link a:hover,.mec-carousel-type4-head-link a:visited{color:#fff}@media (max-width:960px){.mec-event-carousel-type4 .owl-stage{left:-50px}}.mec-wrap .mec-event-countdown-style1{color:#fff;padding:0!important;display:table;background:#437df9}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1{z-index:5;padding:50px 1% 50px 4%;display:table-cell;float:none;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2{background-color:rgba(0,0,0,.05);height:100%;padding-top:0;display:table-cell;float:none;position:relative;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{background-color:#f8f8f8;display:table-cell;float:none;text-align:center;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style1 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{content:"";position:absolute;display:inline-block;z-index:1;top:50%;margin-top:-11px;right:-24px;width:0;border-width:12px;border-style:solid;border-color:transparent transparent transparent #4077ed}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style1 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto}.mec-event-countdown-style1 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style1 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (min-width:1200px){.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%}}@media (max-width:960px){.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%;transform:rotate(90deg)}}@media (max-width:480px){.mec-event-countdown-style1 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{padding:10px 5px;min-width:50px;margin:3px 1px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:8px}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{display:inline}}.mec-wrap .mec-event-countdown-style2{color:#fff;padding:30px 0;background:#437df9;max-width:600px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part3{width:100%;float:none;vertical-align:middle;padding:50px 10% 50px 10%}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2{padding-top:12%;padding-bottom:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style2 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date-place{text-align:left;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 8px}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#222;background:#fff;transition:all .24s ease}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button:hover{background:#222;color:#fff}.mec-event-countdown-style2 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0}.mec-event-countdown-style2 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style2 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (max-width:767px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:80px;padding:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:26px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:11px}}@media only screen and (max-width:479px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:40px;padding:15px 10px;margin:2px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:20px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:9px}}@media (max-width:380px){.mec-event-countdown-style2 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{padding:10px 4px;margin:4px 1px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:7px}}.mec-wrap .mec-event-countdown-style3{color:#fff;padding:0;background:#282828;display:table;width:100%}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1{width:68%;padding:50px 1% 50px 4%;vertical-align:middle;display:table-cell;position:relative}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:32%;display:table-cell;position:relative;padding-bottom:0;padding-top:0}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 img{width:100%;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{font-weight:300;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{color:#fff;font-size:36px;letter-spacing:-2px;font-weight:700;line-height:1;margin-top:-10px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style3 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style3 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto;position:absolute;top:40px;right:20px}.mec-event-countdown-style3 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style3 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:11px;color:#888;margin:8px 0 0;line-height:1}.mec-event-countdown-style3 .mec-event-date{width:176px;height:96px;background:#40d9f1;color:#fff;font-size:13px;position:absolute;left:-27px;top:146px}.mec-event-countdown-style3 .mec-event-date:after{content:"";position:absolute;display:inline-block;z-index:1;bottom:-18px;left:8px;width:0;border-width:19px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:50px;position:absolute;top:36px;left:12px;letter-spacing:-3px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:80px;top:26px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:80px;top:45px}.mec-event-countdown-style3 .mec-event-countdown-part-details{padding-top:35px;margin-bottom:50px;min-height:100px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-title{font-size:17px;color:#fff;line-height:1.4;padding-right:20px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link{color:#fff;font-size:12px;position:relative;padding-left:22px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link:before{content:"";display:inline-block;width:18px;border-top:1px solid #fff;position:absolute;left:0;top:8px}.mec-event-countdown-style3 .mec-event-title-link{position:absolute;left:190px;top:152px}.event-carousel-type1-head .mec-event-date-carousel:before,.mec-event-countdown-style3 .mec-event-date:before{content:'';position:absolute;left:0;bottom:0;z-index:2;width:100%;height:96px;background:0 0;display:inline-block;box-shadow:0 5px 5px rgba(0,0,0,.12)}@media only screen and (min-width:960px){.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown li{padding:10px}.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:31px}}@media (max-width:959px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:100%;display:block}.mec-event-countdown-style3 .mec-event-title-link{top:190px}.mec-event-countdown-style3 .mec-event-countdown{top:96px}.mec-event-countdown-style3 .mec-event-date{left:0;top:190px}.mec-event-countdown-style3 .mec-event-date:after{display:none}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{display:inline}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:150px}}@media (max-width:767px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:26px;letter-spacing:-1px}.mec-event-countdown-style3 .mec-event-title-link{left:130px}.mec-event-countdown-style3 .mec-event-date{width:120px;font-size:10px;height:63px}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:36px;top:20px;left:4px;letter-spacing:-2px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:52px;top:12px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:52px;top:28px}}@media (max-width:380px){.mec-event-countdown-style3 .mec-event-title-link{left:10px;top:260px}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:300px}.mec-event-countdown-style3 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:10px 5px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:8px}}.mec-slider-t1-wrap{width:100%;padding:60px 90px;background:#f7f7f7;min-height:560px;position:relative}.mec-slider-t1{height:500px;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t1 .mec-event-article{position:relative;height:500px}.mec-slider-t1 .mec-slider-t1-img{position:relative;background-size:cover!important;background-position:center!important;width:50%;height:100%;float:right;margin:0;overflow:hidden}.mec-slider-t1 .mec-slider-t1-content{width:50%;float:left;height:100%;background:#fff;padding:6%}.mec-slider-t1-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t1-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:54px;height:54px;line-height:48px;border-radius:0;text-align:center;background:#fff;box-shadow:0 2px 11px 0 rgba(0,0,0,.045);transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-27px;cursor:pointer}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 29px 0 rgba(0,0,0,.095)}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:12px;color:#282828;transition:all .21s ease}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{font-size:13px;color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t1{margin:0 auto;max-width:900px}}@media only screen and (max-width:960px){.mec-slider-t1 .mec-slider-t1-content,.mec-slider-t1 .mec-slider-t1-img{width:100%;float:none}.mec-slider-t1 .mec-slider-t1-img{height:300px}.mec-slider-t1,.mec-slider-t1 .mec-event-article{height:auto}}@media only screen and (max-width:768px){.mec-slider-t1-wrap{padding:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:10px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}}@media only screen and (max-width:479px){.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t2-wrap{width:100%;padding:0;background:#fff;min-height:600px;position:relative}.mec-slider-t2 .mec-event-article{height:600px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t2 .mec-slider-t2-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:70%;height:100%;margin:0;overflow:hidden}.mec-slider-t2 .mec-slider-t2-content{width:50%;position:absolute;right:0;top:60px;bottom:60px;padding:5%}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern *{color:#fff}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-content,.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t2-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:84px;cursor:pointer}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}.mec-wrap.colorskin-custom .mec-slider-t2 .mec-event-article .mec-event-date.mec-color{color:#fff}@media only screen and (min-width:961px){.mec-slider-t2{margin:0 auto;max-width:1200px}}@media only screen and (max-width:960px){.mec-slider-t2 .mec-slider-t2-content,.mec-slider-t2 .mec-slider-t2-img{width:100%;float:none;position:static}.mec-slider-t2 .mec-slider-t2-img{height:300px}.mec-slider-t2 .mec-event-article{height:auto}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px}}@media only screen and (max-width:479px){.mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:22px}}.mec-slider-t3-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t3 .mec-event-article{height:700px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t3 .mec-slider-t3-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;opacity:.68;z-index:1}.mec-slider-t3 .mec-slider-t3-content{width:50%;height:auto;vertical-align:middle;display:table;position:absolute;left:0;top: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-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}body .featherlight .featherlight-content{background:0 0;overflow:unset;z-index:9999}body .featherlight .featherlight-close-icon{position:fixed;top:40px;right:40px;background:0 0;color:#fff;border:1px solid #fff;border-radius:0}body .featherlight .featherlight-close-icon:hover{background:#fff;color:#000;border:1px solid #000}@media (max-width:320px){.mec-wrap span.flip-clock-divider{width:20px}.mec-single-event .mec-events-meta-group-countdown{padding:15px 12%}}@media (max-width:414px){.mec-wrap span.flip-clock-divider{width:30px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 7%}}@media (max-width:480px){.mec-wrap span.flip-clock-divider{width:7px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 1%}}@media(max-width:1366px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:20px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 15px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:48px}}@media(max-width:1280px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:14px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:15px 10px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:38px}}@media(min-width:961px) and (max-width:1024px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:7px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:15px 5px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:14px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul li a div{font-size:30px}}@media(max-width:640px){body .mec-modal-wrap .mec-single-modal.featherlight-close-icon{top:14px;right:14px}}@media(max-width:480px){.featherlight .featherlight-content,body .mec-modal-wrap{max-width:100%}body .mec-modal-wrap.flip-clock-divider .flip-clock-label{display:block}}@media (max-width:414px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:50px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 65px}body .featherlight-content .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 2px 20px 2px!important}body .featherlight-content .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:3px!important}}@media (max-width:375px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:50px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 45px}}@media (max-width:320px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:20px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 40px}}.mec-events-toggle{max-width:960px;margin-left:auto;margin-right:auto}.mec-events-toggle .mec-toggle-item{border:1px solid #e4e4e4;margin-bottom:15px;box-shadow:0 10px 15px #f3f3f3}.mec-events-toggle .mec-toggle-item-inner{cursor:pointer;position:relative;padding:30px 60px 30px 15px;background:#fff;transition:all .3s ease;min-height:100px;display:table;width:100%;border-collapse:separate}.mec-events-toggle .mec-toggle-item-inner:hover{background:#fbfbfb}.mec-toggle-item-col{width:200px;border-right:1px solid #e3e3e3;margin-right:15px;display:table-cell;padding-right:5px}.mec-toggle-item-col .mec-event-date{font-size:38px;line-height:40px;float:left;margin-right:8px}.mec-toggle-item-col .mec-event-month,.mec-toggle-item-col .mec-time-details{text-transform:uppercase;font-size:12px;line-height:14px;padding-top:4px;font-weight:700}.mec-toggle-item-col .mec-event-detail{font-size:10px}.mec-toggle-item-col .mec-event-day{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:35px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-events-toggle .mec-toggle-title{color:#000;font-size:23px;font-weight:600;margin-bottom:0;transition:all .3s ease;display:table-cell;text-align:left;max-width:calc(100% - 200px);padding-left:15px;vertical-align:middle}.mec-events-toggle .mec-toggle-item-inner span.event-color{width:5px;height:100%;position:absolute;left:-1px;top:0;bottom:0;border-radius:0;margin:0}.mec-events-toggle .mec-toggle-item-inner i{position:absolute;font-size:30px;right:25px;top:50%;transform:translate(0,-50%);cursor:pointer}.mec-events-toggle .mec-toggle-item.is-open i.mec-sl-plus:before{content:"\e615"}.mec-events-toggle .mec-toggle-item.is-open .mec-toggle-title{background:#f8f8f8;cursor:pointer}.mec-events-toggle .mec-toggle-content{border-top:1px solid #e4e4e4}.mec-events-toggle .mec-toggle-content .mec-modal-wrap{margin:0;max-width:100%;box-shadow:none}.mec-events-toggle .mec-toggle-content .mec-modal-wrap .mec-single-event{margin:0}.mec-events-toggle .mec-toggle-content .mec-single-event-bar,.mec-events-toggle .mec-toggle-content h1.mec-single-title{display:none}.mec-events-toggle .media-links a{margin-bottom:0}.mec-events-toggle .mec-toggle-content .mec-toggle-meta{margin-bottom:14px}.mec-events-toggle #mec_speakers_details.mec-frontbox{padding:0;margin:0}.mec-events-toggle .mec-toggle-item h3.mec-speakers{border:none;text-align:left}.mec-events-toggle .mec-toggle-item h3.mec-speakers:before{content:"\e063";font-family:simple-line-icons;border:none;position:relative;display:inline-block;left:unset;bottom:unset;font-size:22px;font-weight:400;padding:0 11px 0 28px;vertical-align:middle}@media only screen and (max-width:767px){.mec-toggle-item-inner .mec-toggle-item-col{float:none;width:100%;border-right:none;margin-bottom:5px;display:block;max-width:100%;padding-left:15px}.mec-events-toggle .mec-toggle-title{display:block;width:100%;max-width:100%}}.mec-events-agenda-wrap{margin:10px 0;border:1px solid #e9e9e9;padding-left:20px;box-shadow:0 2px 2px rgba(0,0,0,.03)}.mec-events-agenda{padding:0;border-bottom:1px solid #e9e9e9;overflow:hidden}.mec-agenda-date-wrap{width:210px;padding-top:15px;float:left;font-size:13px}.mec-agenda-date-wrap i,.mec-agenda-event i{font-size:11px;color:#aaa;margin-right:4px;margin-left:1px}.mec-agenda-event i{vertical-align:middle;margin-right:1px}.mec-agenda-events-wrap{float:left;width:calc(100% - 210px);background:#f9f9f9;padding:15px}.mec-agenda-time{font-size:11px;color:#707070;padding-right:10px;width:138px;display:inline-block}.mec-agenda-event-title{position:relative;padding-left:14px}.mec-agenda-event-title a{font-family:Roboto,Montserrat,Helvetica,Arial,sans-serif;font-size:14px;font-weight:600;color:#333}.mec-agenda-event-title span.event-color{width:9px;height:9px;position:absolute;left:0;top:4px;margin:0}.mec-agenda-date-wrap span.mec-agenda-day{color:#aaa;font-size:12px}@media only screen and (max-width:767px){.mec-agenda-date-wrap,.mec-agenda-events-wrap{float:none;width:100%}.mec-events-agenda span.mec-agenda-event-title{display:block;width:100%}.mec-agenda-event-title span.event-color{top:7px}.mec-agenda-event-title a{font-size:13px}}.mec-yearly-view-wrap{margin:0 0 15px;border:1px solid #e6e6e6;box-shadow:0 2px 4px rgba(0,0,0,.04);border-bottom-width:4px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar{max-width:100%;width:232px;padding:10px;background:#fff;margin:10px;display:inline-block}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar dl dt{transition:none;height:30px;width:30px;line-height:30px;border-radius:0;font-size:12px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar .mec-calendar-events-sec{padding:10px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar .mec-has-event:after{width:4px;height:4px;bottom:3px;margin-left:-2px}.mec-yearly-view-wrap .mec-calendar-side .mec-calendar-table{min-height:200px}.mec-calendar.mec-yearly-calendar .mec-calendar-table-head dl dt{background:#f9f9f9;font-size:13px}.mec-calendar.mec-yearly-calendar .mec-calendar-table-title{text-align:center;font-size:15px;font-weight:700;color:#222;margin-top:-5px;padding-bottom:5px}.mec-yearly-view-wrap .mec-yearly-calendar-sec{min-height:200px;width:538px;overflow:hidden;float:left;background:#f8f8f8;padding:15px}.mec-yearly-view-wrap .mec-yearly-agenda-sec{min-height:200px;width:calc(100% - 538px);float:left;padding:0 0 0 20px;overflow:hidden}.mec-yearly-view-wrap .mec-yearly-title-sec{position:relative;padding:15px;text-align:center;border-bottom:1px solid #e6e6e6;box-shadow:0 1px 3px rgba(0,0,0,.02)}.mec-yearly-view-wrap .mec-yearly-title-sec h2{font-size:30px;line-height:40px;color:#333;margin:0;font-weight:700}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year,.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{position:absolute;top:50%;margin-top:-15px;min-width:30px;height:30px;line-height:30px;padding:0 8px;text-align:center;background:#fff;color:#666;font-size:14px;border:1px solid #eee;border-radius:2px;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease;cursor:pointer}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{right:auto;left:20px;padding-right:14px}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year{left:auto;right:20px;padding-left:14px}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year i,.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-yearly-view-wrap .mec-events-agenda.mec-selected{box-shadow:-10px 0 0 0 #fffcf2,0 -1px 0 #fbebb6;background:#fffcf2;border-color:#fbebb6;color:#f9af29}@media only screen and (max-width:959px){.mec-yearly-view-wrap .mec-yearly-calendar-sec{width:268px;padding:10px 5px}.mec-yearly-view-wrap .mec-yearly-agenda-sec{width:calc(100% - 268px);padding:0 0 0 10px}}@media only screen and (max-width:767px){.mec-yearly-view-wrap .mec-yearly-agenda-sec,.mec-yearly-view-wrap .mec-yearly-calendar-sec{width:100%;float:none}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar{width:auto}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar dl dt{width:14.2%}.mec-yearly-view-wrap .mec-yearly-title-sec h2{font-size:25px}}.mec-yearly-view-wrap .mec-agenda-event i,.mec-yearly-view-wrap .mec-agenda-time{display:none}@media only screen and (min-width:768px){.mec-yearly-view-wrap .mec-events-agenda-wrap{margin-top:0;border:none;padding-left:0;box-shadow:none}.mec-yearly-view-wrap .mec-agenda-date-wrap{width:174px;font-size:11px;padding-top:10px}.mec-yearly-view-wrap .mec-agenda-events-wrap{width:calc(100% - 174px);padding:10px}.mec-yearly-view-wrap .mec-agenda-event-title a{font-size:13px}.mec-yearly-view-wrap .mec-agenda-event-title span.event-color{width:8px;height:8px}.mec-yearly-view-wrap .mec-agenda-date-wrap span.mec-agenda-day{font-size:11px}.mec-yearly-view-wrap .mec-yearly-calendar-sec{box-shadow:-2px 0 5px rgba(0,0,0,.03) inset}}@media only screen and (max-width:1200px){.mec-yearly-view-wrap .mec-agenda-event-title a{font-size:12px;padding-right:6px}}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table{padding-bottom:10px;border-bottom:none}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt:hover{cursor:pointer}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-has-no-event,.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-has-no-event:hover{color:#bbb;cursor:default}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-day-active{background:#40d9f1;color:#fff;position:relative}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-day-active:after{content:'';position:absolute;display:block;bottom:-20px;left:50%;margin-left:-10px;width:0;border-width:10px;border-style:solid;border-color:#40d9f1 transparent transparent transparent}.mec-timetable-events-list{padding:10px 20px;border:none;margin:0}.mec-timetable-events-list .mec-timetable-event{padding:10px 0;border-bottom:1px dashed #ddd}.mec-timetable-events-list .mec-timetable-event:last-child{border:none}.mec-timetable-event .mec-timetable-event-span{font-size:12px;color:#444;padding-right:30px;line-height:22px}.mec-timetable-events-list .mec-timetable-event i{font-size:13px;color:#aaa;margin-right:3px;vertical-align:baseline}.mec-timetable-event .mec-timetable-event-span a{color:#333}.mec-timetable-event .mec-timetable-event-time{font-size:11px}.mec-timetable-event .mec-timetable-event-time i{vertical-align:text-bottom}.mec-timetable-event .mec-timetable-event-title{font-size:13px}.mec-timetable-event .mec-timetable-event-title .event-color{width:10px;height:10px}.mec-timetable-events-list .mec-timetable-event.mec-util-hidden{display:none}.mec-timetable-events-list.mec-util-hidden{display:none}@media only screen and (min-width:768px){.mec-timetable-events-list{display:table;width:100%;margin:10px 0 20px}.mec-timetable-events-list .mec-timetable-event{display:table-row;padding:0;border:none;background:#fff}.mec-timetable-events-list .mec-timetable-event:hover{background:#fafafa}.mec-timetable-event .mec-timetable-event-span{display:table-cell;padding:10px 15px;border-bottom:1px solid #ebebeb}.mec-timetable-events-list .mec-timetable-event:last-child .mec-timetable-event-span{border-bottom:none}}@media only screen and (max-width:767px){.mec-timetable-event .mec-timetable-event-title{display:block;width:100%;padding:5px 0 10px;font-weight:700}}.mec-timetable-t2-wrap{border:1px solid #e6e6e6;background:#fafafa;padding:0 15px 15px;overflow:hidden;box-shadow:0 3px 2px 0 rgba(0,0,0,.012)}.mec-timetable-t2-col{width:20%;float:left;min-height:20px;padding-right:1px;background:0 0}.mec-ttt2-title{background:#fafafa;color:#333;font-size:13px;font-weight:600;text-transform:uppercase;letter-spacing:1px;text-align:center;padding:25px 10px 10px;margin-bottom:1px}.mec-timetable-t2-col .mec-event-article{position:relative}.mec-timetable-t2-col .mec-event-article .event-color{position:absolute;width:auto;height:auto;left:0;right:0;top:0;bottom:0;margin:0;z-index:1;border-radius:2px}.mec-timetable-t2-content{position:relative;z-index:2;color:#fff;padding:15px 15px 20px;text-align:left;height:130px;margin-bottom:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title{line-height:22px;margin-bottom:13px;white-space:nowrap;padding-right:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title a{color:#fff;font-size:15px;font-weight:600;white-space:nowrap;overflow:hidden}.mec-timetable-t2-content div{color:#fff;font-size:11px;font-weight:400;line-height:19px;white-space:nowrap}.mec-timetable-t2-content div i{font-size:12px;margin-right:4px}@media only screen and (max-width:960px){.mec-timetable-t2-col{width:100%;float:none}}@media(min-width:961px){.mec-timetable-col-7{width:14.28%}.mec-timetable-col-6{width:16.6666%}}.mec-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-timetable-wrap article .mec-fc-style,.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article.mec-event-cover-modern .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{font-size:9px;letter-spacing:.5px;text-transform:uppercase;background:#04de78;padding:2px 7px;color:#fff;position:relative;margin-left:5px;border-radius:2px}.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-modern.mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-minimal article .mec-fc-style:before,.mec-event-grid-simple article .mec-fc-style:before,.mec-timetable-wrap article .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article .mec-fc-style:before,.mec-wrap .mec-event-list-modern article .mec-fc-style:before,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style:before{width:0;height:0;border-top:4px solid transparent!important;border-right:5px solid;border-bottom:4px solid transparent;margin:0;top:50%;left:-4px;transform:translateY(-4.5px);position:absolute;content:'';color:#04de78}.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-event-grid-classic article.mec-label-canceled:before,.mec-event-grid-classic article.mec-label-featured:before,.mec-event-grid-minimal article.mec-label-canceled:before,.mec-event-grid-minimal article.mec-label-featured:before,.mec-event-grid-simple article.mec-label-canceled:before,.mec-event-grid-simple article.mec-label-featured:before,.mec-timetable-wrap article.mec-label-canceled:before,.mec-timetable-wrap article.mec-label-featured:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled:before,.mec-wrap .mec-event-list-accordion article.mec-label-featured:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled:before,.mec-wrap .mec-event-list-modern article.mec-label-featured:before{display:none}.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{top:-3px;font-size:11px;margin-left:10px}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style:before,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-canceled:before,.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-featured:before{-ms-transform:none;-webkit-transform:none;transform:none;-webkit-transition:none;transition:none;top:271px;right:0}.mec-timetable-wrap article .mec-fc-style{top:-2px;font-size:10px}.mec-wrap article.mec-event-cover-modern .mec-fc-style{padding:5px 9px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:24px;display:inline-block;border-radius:2px}.mec-skin-grid-events-container .mec-wrap .mec-event-grid-clean .mec-event-article:before{-ms-transform:none;-webkit-transform:none;transform:none!important;-webkit-transition:none;transition:none;top:22px!important;right:22px!important;padding:0 10px!important}.mec-event-grid-minimal article .mec-fc-style,.mec-event-grid-simple article .mec-fc-style{top:-4px;font-size:10px;margin-left:10px}.mec-event-grid-classic article .mec-fc-style{padding:5px 20px;font-size:12px;margin-top:8px;display:inline-block}.mec-hourly-schedule-speaker-info{background:#fff;padding:30px;border:1px solid #e6e6e6;max-width:740px;width:740px;margin-left:-110px}.mec-hourly-schedule-speaker-thumbnail{float:left;max-width:30%;width:30%}.mec-hourly-schedule-speaker-name{font-weight:700;font-size:26px;line-height:1.2;color:#333;text-transform:uppercase}.mec-hourly-schedule-speaker-details{float:left;width:69%;padding-left:25px}.mec-hourly-schedule-speaker-job-title{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-hourly-schedule-speaker-description{font-size:14px;font-weight:400;color:#6d7683;line-height:1.7;text-align:left}.mec-hourly-schedule-speaker-contact-information a i{color:#6b6b6b;background:#ebebeb;line-height:29px;margin:9px 7px 9px 0;width:30px;height:30px;display:inline-block;text-align:center;transition:all .2s ease;font-size:15px;cursor:pointer;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-content button[type=submit]{position:relative;border:none;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;min-width:170px;margin-top:5px;border-radius:0;margin-bottom:6px}.lity-content button[type=submit]:hover{background:#222}.lity-content .mec-book-tickets-container li{list-style:none}.lity-content .mec-events-meta-group-booking #mec_book_payment_form h4,.lity-content .mec-events-meta-group-booking li h4{font-size:19px;font-weight:700}.lity-content .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li{width:50%}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li:nth-child(even){border:none}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li span{display:block}.lity-content .mec-events-meta-group-booking button[type=submit]:after{display:none;font-family:simple-line-icons;content:"\e098";margin-left:4px;-webkit-animation:rotating 1.2s linear infinite;-moz-animation:rotating 1.2s linear infinite;-ms-animation:rotating 1.2s linear infinite;-o-animation:rotating 1.2s linear infinite;animation:rotating 1.2s linear infinite}.lity-content .mec-events-meta-group-booking button[type=submit].loading:after{display:inline-block}@media only screen and (max-width:480px){.lity-content .mec-events-meta-group-booking{padding:20px;width:340px;margin:0 auto}}.mec-events-meta-group-booking{position:relative}.mec-cover-loader:after{content:'';position:absolute;top:0;right:0;left:0;bottom:0;background:rgba(255,255,255,.5);z-index:99999}.mec-loader{background:rgba(0,0,0,0);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);z-index:9}.mec-loader,.mec-loader:after{border-radius:50%;width:5em;height:5em;z-index:999999999999}.mec-loader{font-size:10px;text-indent:-9999em;border-top:.5em solid rgba(0,0,0,.2);border-right:.5em solid rgba(0,0,0,.2);border-bottom:.5em solid rgba(0,0,0,.2);border-left:.5em solid #fff;-webkit-transform:translateZ(0);-ms-transform:translateZ(0);transform:translateZ(0);-webkit-animation:mecloader 1.1s infinite linear;animation:mecloader 1.1s infinite linear}@-webkit-keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.mec-google-recaptcha{margin:0 0 20px 16px}.mec-wrap *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap :after,.mec-wrap :before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap .clearfix:after,.mec-wrap .clearfix:before{content:'\0020';display:block;overflow:hidden;visibility:hidden;width:0;height:0}.mec-wrap .clearfix:after{clear:both}.mec-wrap .clearfix{zoom:1}.mec-wrap .clear,.mec-wrap .clr{clear:both;display:block;overflow:hidden;visibility:hidden}.mec-wrap .clr{visibility:visible;overflow:visible}.mec-container [class*=col-] img{max-width:100%}.mec-container{margin-right:auto;margin-left:auto;padding-left:10px;padding-right:10px}.mec-container:after,.mec-container:before{content:" ";display:table}.mec-container:after{clear:both}@media only screen and (max-width:479px){.mec-container{width:300px}}@media only screen and (min-width:480px) and (max-width:767px){.mec-container{width:420px}}@media only screen and (min-width:768px) and (max-width:960px){.mec-container{width:768px}}@media only screen and (min-width:961px){.mec-container{width:960px}}@media only screen and (min-width:1200px){.mec-container{width:1196px;padding-left:15px;padding-right:15px}}@media only screen and (min-width:1921px){.mec-container{max-width:1690px}}.mec-wrap .row{margin-left:-10px;margin-right:-10px}.mec-wrap .row:after,.mec-wrap .row:before{content:" ";display:table}.mec-wrap .row:after{clear:both}.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{position:relative;min-height:1px;padding-left:10px;padding-right:10px}@media only screen and (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{padding-left:15px;padding-right:15px}.mec-wrap .row{margin-left:-15px;margin-right:-15px}}.mec-container [class*=col-].alpha{padding-left:0}.mec-container [class*=col-].omega{padding-right:0}.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{float:left}.mec-wrap .col-xs-12{width:100%}.mec-wrap .col-xs-11{width:91.66666666666666%}.mec-wrap .col-xs-10{width:83.33333333333334%}.mec-wrap .col-xs-9{width:75%}.mec-wrap .col-xs-8{width:66.66666666666666%}.mec-wrap .col-xs-7{width:58.333333333333336%}.mec-wrap .col-xs-6{width:50%}.mec-wrap .col-xs-5{width:41.66666666666667%}.mec-wrap .col-xs-4{width:33.33333333333333%}.mec-wrap .col-xs-3{width:25%}.mec-wrap .col-xs-2{width:16.666666666666664%}.mec-wrap .col-xs-1{width:8.333333333333332%}@media (min-width:768px){.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9{float:left}.mec-wrap .col-sm-12{width:100%}.mec-wrap .col-sm-11{width:91.66666666666666%}.mec-wrap .col-sm-10{width:83.33333333333334%}.mec-wrap .col-sm-9{width:75%}.mec-wrap .col-sm-8{width:66.66666666666666%}.mec-wrap .col-sm-7{width:58.333333333333336%}.mec-wrap .col-sm-6{width:50%}.mec-wrap .col-sm-5{width:41.66666666666667%}.mec-wrap .col-sm-4{width:33.33333333333333%}.mec-wrap .col-sm-3{width:25%}.mec-wrap .col-sm-2{width:16.666666666666664%}.mec-wrap .col-sm-1{width:8.333333333333332%}}@media (min-width:961px){.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9{float:left}.mec-wrap .col-md-12{width:100%}.mec-wrap .col-md-11{width:91.66666666666666%}.mec-wrap .col-md-10{width:83.33333333333334%}.mec-wrap .col-md-9{width:75%}.mec-wrap .col-md-8{width:66.66666666666666%}.mec-wrap .col-md-7{width:58.333333333333336%}.mec-wrap .col-md-6{width:50%}.mec-wrap .col-md-5{width:41.66666666666667%}.mec-wrap .col-md-4{width:33.33333333333333%}.mec-wrap .col-md-3{width:25%}.mec-wrap .col-md-2{width:16.666666666666664%}.mec-wrap .col-md-1{width:8.333333333333332%}}@media (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9{float:left}.mec-wrap .col-lg-12{width:100%}.mec-wrap .col-lg-11{width:91.66666666666666%}.mec-wrap .col-lg-10{width:83.33333333333334%}.mec-wrap .col-lg-9{width:75%}.mec-wrap .col-lg-8{width:66.66666666666666%}.mec-wrap .col-lg-7{width:58.333333333333336%}.mec-wrap .col-lg-6{width:50%}.mec-wrap .col-lg-5{width:41.66666666666667%}.mec-wrap .col-lg-4{width:33.33333333333333%}.mec-wrap .col-lg-3{width:25%}.mec-wrap .col-lg-2{width:16.666666666666664%}.mec-wrap .col-lg-1{width:8.333333333333332%}}#mec_woo_add_to_cart_btn{min-width:170px;margin-top:5px;text-align:center}.mec-breadcrumbs{border-radius:2px;padding:9px 15px 6px;font-size:11px;color:#8d8d8d;letter-spacing:0;text-transform:none;font-weight:500;margin:auto 15px 33px 15px;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.025)}.mec-breadcrumbs-modern{margin:auto 0 33px 0}.mec-breadcrumbs a{color:#000;padding-left:4px}.mec-breadcrumbs a:hover{text-decoration:underline}.mec-breadcrumbs i{font-size:8px;margin:0 0 0 4px}.mec-breadcrumbs .container{padding-left:20px}.mec-content-notification a{margin-left:5px}.mec-content-notification{background:#f7f7f7;padding:10px 10px 10px;border:1px solid #e8e8e8}.mec-content-notification p{margin-bottom:0}.mec-fes-form #mec-advanced-wraper div:first-child>ul{border:1px solid #cfeff5;width:auto;box-shadow:0 1px 4px -2px #cfeff5;display:block;margin:5px 0 10px;padding:5px 0;border-radius:2px}.mec-fes-form #mec-advanced-wraper div:first-child>ul:last-of-type{margin-bottom:35px}#mec-advanced-wraper div:first-child>ul span{display:none}#mec-advanced-wraper div:first-child>ul *{display:inline-block;background:#fff;font-size:12px;color:#717273;text-align:center}#mec-advanced-wraper div:first-child>ul>li{width:60px;font-weight:700;margin:0 10px 0 0;padding:4px 0;border-right:1px solid #cfeff5}#mec-advanced-wraper div:first-child>ul>ul>li{margin:0;padding:2px 10px;cursor:pointer;border-radius:2px;transition:all .18s ease}.mec-fes-form #mec-advanced-wraper div:first-child>ul>ul>li.mec-active,.mec-fes-form #mec-advanced-wraper div:first-child>ul>ul>li:hover{background:#40d9f1!important;box-shadow:0 1px 9px -3px #40d9f1;color:#fff!important}.mec-search-bar-wrap .mec-search-form .mec-text-input-search{width:83%}.mec-search-bar-wrap .mec-search-form .mec-ajax-search-result .mec-text-input-search{width:100%;float:none}.mec-search-bar-wrap input#mec-search-bar-input{width:calc(100% - 84%);margin-left:11px;background:#40d9f1;Color:#fff;font-weight:400}.mec-text-input-search+input#mec-search-bar-input{margin-left:-3px}.mec-search-bar-wrap input#mec-search-bar-input:hover{background:#000}.mec-wrap.mec-search-bar-wrap .mec-totalcal-box input{float:none}@media(max-width:768px){.mec-search-bar-wrap .mec-search-form .mec-text-input-search{display:inline-block}}@media(max-width:480px){.mec-search-bar-wrap .mec-search-form .mec-text-input-search{width:64%}.mec-search-bar-wrap input#mec-search-bar-input{width:calc(100% - 67%)}}.mec-wrap.mec-search-bar-wrap .mec-totalcal-box{overflow:visible}.mec-ajax-search-result{position:relative}.mec-search-bar-wrap.mec-wrap .mec-totalcal-box input[type=text]{width:calc(100% - 36px)}.mec-search-bar-wrap.mec-wrap .mec-totalcal-box input[type=text]:focus{border-color:#efefef}div#mec-ajax-search-result-wrap{position:absolute;top:100%;opacity:0;visibility:hidden;width:calc(100% - 2px);min-height:50px;left:0;right:0;padding:0 10px;z-index:9999;transition:all .3s ease}.mec-ajax-search-result-events{background:#fff;padding:10px 20px;border:1px solid #efefef;border-top:none}.mec-ajax-search-result-events article:first-of-type{border:none}article.mec-search-bar-result{text-align:left;margin-bottom:0;padding-bottom:25px;padding-top:26px;border-top:1px solid #efefef;transition:all .33s ease;clear:both}.mec-search-bar-result .mec-event-list-search-bar-date{width:64px;height:64px;margin-right:10px;font-size:11px;text-transform:uppercase;float:left;text-align:center;padding-top:2px}.mec-search-bar-result .mec-event-list-search-bar-date span{font-size:40px;line-height:30px;font-weight:700;display:block;margin-bottom:6px;letter-spacing:1px}.mec-search-bar-result .mec-event-image{float:left;margin-right:20px;width:65px;height:auto}.mec-search-bar-result .mec-event-time{font-size:11px;line-height:1.1;margin:0}.mec-search-bar-result .mec-event-time i{color:#40d9f1;float:none;width:unset;height:unset;font-size:inherit;margin-right:3px;border:none;padding:0}.mec-search-bar-result .mec-event-title{font-size:13px;padding:0;margin:10px 0 8px;font-weight:700;text-transform:uppercase}.mec-search-bar-result .mec-event-title a{text-decoration:none;color:#494949;transition:color .3s ease}.mec-search-bar-result .mec-event-detail{font-size:13px;line-height:1.3;font-family:Roboto,sans-serif;color:#9a9a9a;margin-bottom:0}.mec-wrap.mec-modern-search-bar .mec-totalcal-box{background:rgba(255,255,255,.87);border:none;padding:35px;border-radius:3px;box-shadow:0 3px 13px rgba(0,0,0,.4);position:relative}.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=search],.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=text]{height:58px;background:rgba(255,255,255,.99);border-radius:2px;box-shadow:0 4px 8px rgba(0,0,0,.1) inset;border:1px solid #ccc;width:100%;padding-left:45px;padding-right:13px;font-size:16px}.mec-wrap.mec-modern-search-bar .mec-totalcal-box .mec-text-input-search i{position:absolute;background:0 0;border:none;font-size:21px;left:15px;top:calc(50% - 19px);color:#40d9f1}.mec-wrap.mec-modern-search-bar .mec-text-input-search{position:relative;height:58px}.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=submit]{height:58px;border:none;border-radius:2px;background:#fc4a1a;font-size:17px;font-weight:700!important}.mec-wrap.mec-modern-search-bar .mec-text-input-search+input#mec-search-bar-input{margin-left:0}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{height:45px;background:rgba(255,255,255,.99);border-radius:2px;box-shadow:0 4px 8px rgba(0,0,0,.1) inset;border:1px solid #ccc;padding-right:13px;font-size:16px;border-left:0}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap i{height:45px;background:#ffff;border-radius:2px 0 0 2px;box-shadow:none;border:1px solid #ccc;font-size:15px;padding-top:14px;border-right:0;color:#40d9f1;margin-right:-1px}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap{min-height:64px}@media(max-width:768px){.mec-wrap.mec-modern-search-bar .mec-search-form .mec-text-input-search{width:70%}.mec-wrap.mec-modern-search-bar input#mec-search-bar-input{width:calc(100% - 72%)}}@media(max-width:480px){.mec-wrap.mec-modern-search-bar input#mec-search-bar-input{width:92%;padding:0 10px;position:relative;display:block;margin-left:11px}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-text-input-search{width:100%;margin-bottom:20px}.mec-wrap.mec-modern-search-bar .mec-text-input-search+input#mec-search-bar-input{margin-left:10px}}.mec-related-events-wrap{margin-top:50px}.mec-related-events-wrap h3.mec-rec-events-title:before{content:"";background:#2c2f34;width:46px;height:4px;position:absolute;top:59px;left:0}.mec-related-events-wrap h3.mec-rec-events-title{font-size:21px;font-weight:600;padding:17px 0;margin-bottom:28px;text-transform:uppercase;border-bottom:1px solid #e8e8e8;position:relative}.mec-related-event-post figure{margin:0}.mec-related-event-post figure img{width:100%}.mec-related-event-content{background-color:#fff;margin:-27px 30px 15px;position:relative;max-width:90%;padding:13px 21px 16px 19px}.mec-related-event-content h5 a{font-size:16px;color:#121212;font-weight:600;transition:all .3s ease}.mec-fes-form-cntt #mec-organizer-payments ul{list-style:none;background:0 0;margin:0}.mec-fes-form-cntt #mec-organizer-payments ul li h4{background:0 0;letter-spacing:.2px;display:inline-block;padding-left:0!important;padding-bottom:10px!important;margin:0;margin-bottom:1px;letter-spacing:1px;text-transform:capitalize;padding-top:1px}.mec-fes-form-cntt #mec-organizer-payments ul>li{width:100%;display:inline-block;vertical-align:top;padding:0;margin:0}#mec-login-form.mec-login-form{width:100%;background:#fff;padding:20px;margin:0 auto;text-align:center;position:relative}#mec-login-form.mec-login-form .mec-login-input{display:block;width:286px;margin:0 auto;margin-bottom:12px}#mec-login-form.mec-login-form .mec-login-forgotpassword{display:inline-block}.mec-login-forgotpassword a{color:#000}#mec-login-form.mec-login-form .mec-login-submit{float:right;text-align:right;width:49%;padding-right:2px}#mec-login-form.mec-login-form .mec-login-input input{border:none;box-shadow:none;background:#fff;color:#ccc;border-left:1px solid #e6e6e6;padding:0;height:100%;background-image:none!important;padding-left:10px;padding-right:0;width:222px;margin-left:0;clear:none;float:left}#mec-login-form.mec-login-form .mec-login-input label{border:1px solid #e6e6e6;height:52px;display:inline-block;padding:0;border-radius:3px;overflow:hidden;box-shadow:0 2px 4px rgba(0,0,0,.04)}#mec-login-form.mec-login-form .mec-login-input label i{padding:15px 13px 17px 16px;vertical-align:middle;font-size:20px;width:50px;color:#c5cad0;background:#fafafa;margin-right:0;float:left}#mec-login-form.mec-login-form .mec-login-forgotpassword{float:left;width:49%;text-align:left;padding-top:10px;font-size:13px;padding-left:2px}#mec-login-form.mec-login-form button{width:120px;height:44px;border:none;color:#fff;border-radius:3px;font-size:12px;font-weight:700;letter-spacing:1px;text-transform:uppercase;transition:all .22s ease;margin:0;min-width:unset}.mec-login-form button{box-shadow:0 4px 22px -7px #40d9f1;background-color:#40d9f1}#mec-login-form.mec-login-form button:hover{background:#222;box-shadow:0 3px 14px -4px #333}#mec-login-form.mec-login-form .mec-login-form-footer{width:286px;margin:0 auto;margin-top:20px;clear:both;position:relative;display:block;min-height:50px}#mec-login-form.mec-login-form .mec-ajax-login-loading{position:absolute;background:#ffffffc2;left:0;right:0;top:0;bottom:0}#mec-login-form.mec-login-form .lds-ripple{position:absolute;width:64px;height:64px;top:calc(50% - 23px);left:calc(50% - 23px)}#mec-login-form.mec-login-form .lds-ripple div{position:absolute;border:4px solid #40d9f1;opacity:1;border-radius:50%;animation:lds-ripple 1.2s cubic-bezier(0,.2,.1,.8) infinite}#mec-login-form.mec-login-form .lds-ripple div:nth-child(2){animation-delay:-.5s}#mec-login-form.mec-login-form .mec-ajax-login-loading-text{position:absolute;min-width:200px;top:calc(50% - 18px);left:calc(50% - 124px);color:#fff;padding:10px 22px;border-radius:3px;background:#fff;height:47px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text strong{color:#3fcc60}#mec-login-form.mec-login-form .mec-ajax-login-loading-text strong:before{content:"";position:absolute;top:8px;left:1px;border-right:2px solid #3fcc60;border-bottom:2px solid #3acb5c;transform:rotate(45deg);transform-origin:0 100%;color:#000;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards;width:8px;height:14px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong:after{content:"";position:absolute;top:14px;left:5px;border-bottom:2px solid #ff5d39;transform:rotate(45deg);transform-origin:0 100%;color:#000;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards;width:14px;height:4px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong{color:#ff5d39}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong:before{border-color:#ff5d39;border-bottom:none}@keyframes lds-ripple{0%{top:28px;left:28px;width:0;height:0;opacity:1}100%{top:-1px;left:-1px;width:58px;height:58px;opacity:0}}.mec-book-form-gateway-checkout [id*=mec_do_transaction_stripe_] .mec-form-row:first-child{margin-bottom:20px}.mec-events-meta-group-booking .StripeElement{box-sizing:border-box;height:40px;padding:10px 12px;border:1px solid transparent;border-radius:4px;background-color:#fff;box-shadow:0 1px 3px 0 #e6ebf1;-webkit-transition:box-shadow 150ms ease;transition:box-shadow 150ms ease;margin-bottom:20px;background:#fff}.mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text]{box-sizing:border-box;height:40px;padding:10px 12px;border:0!important;border-radius:4px;background-color:#fff;box-shadow:0 1px 3px 0 #e6ebf1!important;-webkit-transition:box-shadow 150ms ease;transition:box-shadow 150ms ease;margin-bottom:20px;background:#fff!important}.mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text]:focus{outline:0}.mec-events-meta-group-booking .StripeElement--focus{box-shadow:0 1px 3px 0 #cfd7df}.mec-events-meta-group-booking .StripeElement--invalid{border-color:#fa755a}.mec-events-meta-group-booking .StripeElement--webkit-autofill{background-color:#fefde5!important}.mec-booking-tab-content .button,.mec-booking-tab-content .mec-reg-field-add-option,.mec-fes-form .mec-form-row .button:not(.wp-color-result),.mec-fes-form input[type=file],ul#mec_reg_form_fields li .mec_reg_field_remove{height:40px;margin-top:1px;text-decoration:none;font-size:14px;line-height:34px!important;margin:0;padding:0 15px 1px!important;text-transform:none;letter-spacing:0;font-weight:600;color:#40d9f1;background:#fff;border-radius:3px;margin-right:8px;border:2px solid #cfeff5;box-shadow:0 2px 6px -3px #cfeff5}.mec-booking-tab-content .button:hover,.mec-booking-tab-content .mec-reg-field-add-option:hover,.mec-fes-form .mec-form-row .button:not(.wp-color-result):hover{background:#40d9f1;color:#fff;border-color:#40d9f1;box-shadow:0 2px 6px -3px #40d9f1}.mec-fes-form .mec-form-row input+button.button{vertical-align:top}.mec-fes-form .mec-form-row .quicktags-toolbar input.button.button-small{border-width:1px;padding:0 7px;color:#80c6d2;font-weight:400;margin:1px;transform:none}.mec-fes-form input[type=file]{max-width:166px;text-align:center;height:44px;transition:all .2s ease;border-radius:5px!important;border:2px dashed #b8e9f3}.mec-fes-form input[type=file]:hover{box-shadow:0 2px 16px -3px #cfeff5}.mec-fes-form input[type=file]::-webkit-file-upload-button{visibility:hidden;width:1px;height:38px}.mec-fes-form input[type=file]::-moz-file-upload-button{visibility:hidden;width:1px;height:38px}.mec-fes-form .mec-meta-box-fields>label{padding:0}#mec_reg_form_fields li{list-style:none}ul#mec_reg_form_fields{padding:0;margin:0}ul#mec_reg_form_fields li{background:#f8feff;margin:6px -20px;padding:15px 25px 10px;width:auto;font-size:13px;border-top:1px solid #e8fafd;border-bottom:1px solid #e8fafd;position:relative}ul#mec_reg_form_fields li .mec_reg_field_remove{position:absolute;right:10px;top:10px;margin:0;padding:6px 8px!important;font-size:11px;line-height:12px!important;min-height:10px;height:auto;display:block;cursor:pointer;color:#ea6485;border-color:#ffd2dd;letter-spacing:.4px}ul#mec_reg_form_fields li .mec_reg_field_remove:hover{background:#ea6485;color:#fff;border-color:#ea6485;box-shadow:0 2px 6px -3px #ea6485}#mec_reg_form_fields input[type=checkbox],#mec_reg_form_fields input[type=radio],.mec-form-row input[type=checkbox],.mec-form-row input[type=radio]{background-color:#fff;border:1px solid #cfeff5;box-shadow:0 1px 3px -1px #cfeff5;padding:9px;border-radius:3px;min-width:24px;min-height:24px;display:inline-block!important;vertical-align:middle;float:none;transition:all .18s ease;outline:0;margin:1px 4px 4px 0;text-align:left;cursor:pointer;-webkit-appearance:none;-moz-appearance:none}#mec_reg_form_fields input[type=checkbox]:focus,#mec_reg_form_fields input[type=radio]:focus,.mec-form-row input[type=checkbox]:focus,.mec-form-row input[type=radio]:focus{outline:0}#mec_reg_form_fields input[type=radio],.mec-form-row input[type=radio]{-webkit-appearance:none;border-radius:20px!important;min-width:20px;min-height:20px;margin:0 0 4px 0;vertical-align:middle}#mec_reg_form_fields input[type=checkbox]:hover,#mec_reg_form_fields input[type=radio]:hover,.mec-form-row input[type=checkbox]:hover,.mec-form-row input[type=radio]:hover{border-color:#40d9f1}#mec_reg_form_fields input[type=checkbox]:checked,#mec_reg_form_fields input[type=radio]:checked,.mec-fes-form .mec-form-row input[type=checkbox]:checked,.mec-fes-form .mec-form-row input[type=radio]:checked{box-shadow:0 1px 6px -2px #40d9f1;border-color:#40d9f1;background:#40d9f1!important;border-radius:2px;position:relative}.mec-form-row input[type=radio]:checked{box-shadow:0 1px 6px -2px #40d9f1,inset 0 0 0 3px #fff!important}#mec_reg_form_fields input[type=checkbox]:checked::before,.mec-form-row input[type=checkbox]:checked:before{content:"";font:normal;position:absolute;top:12px;left:5px;margin:0;vertical-align:middle;line-height:1;border-right:2px solid #fff!important;border-bottom:2px solid #fff!important;transform:rotate(45deg);transform-origin:0 100%;color:#fff;transition:all .2s ease;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards}@keyframes checkbox-check{0%{width:0;height:0;border-color:#fff;transform:translate3d(0,0,0) rotate(45deg)}33%{width:6px;height:0;transform:translate3d(0,0,0) rotate(45deg)}100%{width:6px;height:12px;border-color:#fff;transform:translate3d(0,-12px,0) rotate(45deg)}}#mec_reg_form_field_types .button{position:relative;outline:0;border-radius:50px;padding:2px 21px 2px 31px!important;line-height:1;font-size:11px;font-weight:600;color:#40d9f1;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 2px 6px -3px #40d9f1;border:2px solid #cfeff5}#mec_fes_location_remove_image_button,#mec_fes_organizer_remove_image_button,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button,#mec_meta_box_tickets_form [id^=mec_ticket_row] button,#mec_reg_form_field_types .button.red{color:#ea6485;box-shadow:0 2px 6px -3px #ea6485;background:#fff;border-color:#ffd2dd}#mec_fes_location_remove_image_button:hover,#mec_fes_organizer_remove_image_button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button:hover,#mec_meta_box_tickets_form [id^=mec_ticket_row] button:hover,#mec_reg_form_field_types .button.red:hover{background:#ea6485;color:#fff}#mec_reg_form_field_types .button:before{position:absolute;left:12px;color:#40d9f1;content:"\e095";font-family:simple-line-icons;font-size:13px;display:inline-block}#mec_reg_form_field_types .button.red:before{color:#ea6485}#mec_reg_form_field_types .button.red:hover:before,#mec_reg_form_field_types .button:hover:before{color:#fff}#mec_fes_location_remove_image_button:hover,#mec_fes_organizer_remove_image_button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button:hover,#mec_meta_box_tickets_form [id^=mec_ticket_row] button:hover,#mec_price_per_dates_container .button:hover,#mec_reg_form_field_types .button.red:hover{color:#fff;border:2px solid #ea6485}#mec_taxes_fees_container_toggle [id^=mec_remove_fee_button],#mec_ticket_variations_list [id^=mec_remove_ticket_variation_button]{color:#ea6485;border-color:#ffd2dd}#mec_taxes_fees_container_toggle [id^=mec_remove_fee_button]:hover,#mec_ticket_variations_list [id^=mec_remove_ticket_variation_button]:hover{color:#fff;border:2px solid #ea6485;background:#ea6485}#mec_fees_list [id^=mec_remove_fee_button],#mec_meta_box_ticket_variations_form .mec-form-row [id^=mec_remove_ticket_variation_button]{margin-left:14px!important}#mec_meta_box_hourly_schedule_days .mec-add-hourly-schedule-button{line-height:10px!important}#mec_meta_box_tickets_form [id^=mec_ticket_row] .mec_add_price_date_button{color:#40d9f1;box-shadow:0 2px 6px -3px #40d9f1;border:2px solid #cfeff5}#mec_meta_box_tickets_form [id^=mec_ticket_row] .mec_add_price_date_button:hover,#mec_reg_form_field_types .button:hover{color:#fff;border:2px solid #40d9f1;background:#40d9f1}.mec-form-row input+span.mec-tooltip,.mec-form-row select+span.mec-tooltip{bottom:10px}.mec-form-row label+span.mec-tooltip{bottom:8px}.mec-form-row textarea+span.mec-tooltip{bottom:auto;vertical-align:top;top:12px}.mec-form-row span+span.mec-tooltip{bottom:0;vertical-align:middle}.mec-form-row .mec-col-8 input[type=text],.mec-form-row .mec-col-8 select,.mec-form-row .mec-col-8 span.mec-archive-skins{vertical-align:top}.mec-form-row input:disabled{opacity:.6;background:#f6f6f6}.mec-form-row p{font-size:12px!important;line-height:18px!important;color:#97b2bb!important}.mec-form-row p.description{font-style:italic}.ui-datepicker.ui-widget{border:1px solid #e8e8e8;box-shadow:0 1px 9px rgba(0,0,0,.12);font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif}table.ui-datepicker-calendar{margin-bottom:0}.ui-datepicker-calendar th{font-weight:700;color:#4a4b4c}.ui-datepicker-calendar td,.ui-datepicker-calendar th,.ui-datepicker-calendar tr{border:none}.ui-datepicker.ui-widget select{font-weight:600;font-size:12px;display:inline-block;border-radius:2px;padding:2px 10px;margin:5px 3px;width:auto;min-height:20px;height:26px;border:1px solid #e3e3e3;box-shadow:inset 0 1px 3px rgba(0,0,0,.04)}.ui-datepicker.ui-widget table{border-spacing:2px;border:none}.ui-datepicker.ui-widget td,.ui-datepicker.ui-widget tr{padding:0;background:0 0!important}.ui-datepicker.ui-widget td a{color:#9a9b9c;font-weight:600;width:30px;height:30px;line-height:30px;display:inline-block;border-radius:33px;padding:0;background:#fff;transition:all .2s ease}.ui-datepicker.ui-widget td a.ui-state-active,.ui-datepicker.ui-widget td a:hover{background:#40d9f1;color:#fff}.ui-datepicker.ui-widget .ui-datepicker-next,.ui-datepicker.ui-widget .ui-datepicker-prev{color:#40d9f1;width:30px;height:30px;line-height:30px;display:inline-block;text-align:center;border-radius:33px;background:#ecfcff;transition:all .2s ease}.ui-datepicker.ui-widget .ui-datepicker-next:hover,.ui-datepicker.ui-widget .ui-datepicker-prev:hover{background:#fff;box-shadow:0 0 7px -3px rgba(0,0,0,.4)}.mec-fes-form .mec-tooltip .dashicons-before:before{color:#40d9f1}.mec-fes-form button[type=submit].mec-fes-sub-button{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;border-radius:3px;background:#40d9f1;color:#fff;height:54px;font-size:17px;font-weight:700;box-shadow:0 2px 8px -4px #40d9f1;display:block;transition:all .28s ease;text-transform:uppercase;margin:20px 0 0;padding:14px 20px;border:0;cursor:pointer;text-align:center;letter-spacing:.1em;line-height:1}.mec-fes-form button[type=submit].mec-fes-sub-button:hover{box-shadow:0 2px 12px -2px #40d9f1}.mec-fes-form button[type=submit].mec-fes-sub-button:focus{margin-bottom:-2px;background:#1dc2dc}.mec-fes-form .mec-title span.mec-dashicons{color:#40d9f1;float:left;margin-right:5px}.mec-fes-form .mec-tooltip .box h5{padding:14px 2px}#mec_fes_form,.mec-fes-form-top-actions{max-width:838px;margin:0 auto}@media only screen and (min-width:961px){.mec-fes-form .mec-fes-form-cntt{width:calc(100% - 300px);float:left;padding-right:20px;max-width:538px;display:block}.mec-fes-form .mec-fes-form-sdbr{width:300px}}.mec-fes-form .quicktags-toolbar,.mec-fes-form div.mce-toolbar-grp{background:#ecfcff;border-bottom:1px solid #cfeff5;box-shadow:0 1px 0 1px #cfeff5}.mec-fes-form .quicktags-toolbar{margin-right:-1px;border-top:1px solid #cfeff5}.mec-fes-form div.mce-statusbar{border-top-color:#cfeff5}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-listbox{border:1px solid #cfeff5;border-radius:3px}.mec-fes-form .mce-tinymce.mce-container.mce-panel{border:1px solid #cfeff5;box-shadow:0 2px 6px -3px #cfeff5;border-radius:2px 0 2px 2px}.mec-fes-form .wp-editor-tools .wp-media-buttons{transform:translateY(-6px);margin-top:-6px}.mec-fes-form .wp-editor-tabs{padding-right:0;margin-right:-2px}.mec-fes-form .wp-editor-tabs .wp-switch-editor{border-radius:3px 3px 0 0;border-color:#cfeff5;background:#fff;color:#96b8bd;border-bottom:1px solid #ecfcff}.mec-fes-form .html-active .switch-html,.mec-fes-form .tmce-active .switch-tmce,.mec-fes-form .wp-editor-tabs .wp-switch-editor:active{background:#ecfcff;color:#40d9f1}.mec-fes-form .wp-editor-container,.mec-fes-form div.mce-edit-area.mce-panel{border:none;box-shadow:none}.mec-fes-form .wp-editor-container textarea.wp-editor-area{max-width:100%}.mec-fes-form .mce-toolbar .mce-listbox button{font-size:12px;line-height:22px;color:#798f96}.mec-fes-form .mce-toolbar .mce-ico{color:#627f88}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-active,.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn:active,.mec-fes-form .qt-dfw.active{background:#fff;border-color:#40d9f1;box-shadow:inset 0 2px 6px -3px rgba(106,231,255,.7)}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-active .mce-ico{color:#40d9f1}body .mce-menu .mce-menu-item.mce-active.mce-menu-item-normal,body .mce-menu .mce-menu-item.mce-selected,body .mce-menu .mce-menu-item:focus,body .mce-menu .mce-menu-item:hover,body.mce-menu .mce-menu-item.mce-active.mce-menu-item-preview{background:#40d9f1;color:#fff}.mec-fes-form .mec-not-in-days-day{display:inline-block;padding:4px 32px 4px 15px;border-radius:33px;border:1px solid #cfeff5;box-shadow:0 1px 3px -1px #cfeff5;background:#fbfeff;color:#40d9f1;vertical-align:top}.mec-fes-form .mec-not-in-days-remove{display:inline-block;padding:0 1px 0 0;margin-left:-30px;vertical-align:sub;background:#ff918a;color:#fff;font-family:cursive;width:21px;height:21px;line-height:17px;text-align:center;border-radius:20px;cursor:pointer}.mec-fes-list ul li .mec-event-status{float:left;margin-right:10px;margin-left:0;font-size:11px;font-weight:400;letter-spacing:.3px;border-radius:3px;padding:4px 8px}.mec-fes-form .post-status.mec-book-confirmed:before,.mec-fes-list ul li .mec-event-status.mec-book-confirmed:before{content:"";margin:0;vertical-align:middle;line-height:1;border-right:2px solid #fff!important;border-bottom:2px solid #fff!important;transform:rotate(45deg);color:#fff;width:6px;height:12px;float:left;margin-right:6px}.mec-fes-list ul li .mec-fes-event-export a:before,.mec-fes-list ul li .mec-fes-event-remove:before,.mec-fes-list ul li .mec-fes-event-view a:before,.mec-fes-list-top-actions a:before{content:"\e054";font-family:simple-line-icons;font-size:13px;vertical-align:middle}.mec-fes-list ul li .mec-fes-event-view a:before{content:"\e087"}.mec-fes-list-top-actions a:before{content:"\e095";font-weight:400;margin-right:6px}.mec-fes-list ul li .mec-fes-event-export a:before{content:"\e083"}.mec-fes-form .post-status{border-radius:20px}.mec-fes-form .post-status.mec-book-confirmed:before{height:20px;width:9px;margin:3px 10px}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker-calendar th{height:auto;padding:0}.ui-datepicker .ui-datepicker-calendar td a,.ui-datepicker-calendar th{font-size:14px;line-height:30px}.mec-fes-form .description{font-size:16px}.mec-fes-form input[type=file]{text-align:left}.mec-fes-export-wrapper{width:640px;background:#f8feff;padding:40px 25px}.mec-fes-export-wrapper .mec-fes-btn-date{font-size:16px;line-height:44px;overflow:hidden}.mec-fes-export-wrapper .date-messgae{font-family:sans-serif;padding:2px 18px}.mec-fes-list ul li .mec-event-export-csv,.mec-fes-list ul li .mec-event-export-excel{font-size:12px;border:1px solid #40d9f1;padding:1px 4px;background:rgba(141,229,243,.18);border-radius:4px;color:#40d9f1;font-family:sans-serif;cursor:pointer;display:inline-block;height:26px;line-height:22px}.mec-export-badge{font-size:11px;color:#40d9f1;width:auto;height:24px;line-height:25px;display:inline-block;padding:0 8px;text-align:center;border-radius:3px;background:#ecfcff;transition:all .2s ease}.mec-fes-list ul li .mec-fes-event-export{font-size:11px;background:#f7f7f7;float:right;margin-left:5px}.mec-fes-list ul li .mec-fes-event-export:hover{cursor:pointer;background:#90f0e0;border-color:#4dc8cc}.mec-fes-export-wrapper ul{padding:0;width:100%;text-align:center}.mec-fes-export-wrapper ul li{list-style:none;display:inline-block;width:30%;padding:10px 15px 10px 32px;border-radius:3px;margin-bottom:15px;border:1px solid #cfeff5;box-shadow:0 2px 6px -4px #cfeff5;background:#fff;line-height:normal;margin-right:10px;position:relative;cursor:pointer;font-size:13px;line-height:1;transition:all .2s ease}.mec-fes-export-wrapper ul li:nth-child(3n+0){margin-right:0}.mec-fes-export-wrapper ul li:hover{box-shadow:0 2px 16px -1px #c6e8ef}.mec-fes-export-wrapper ul li:before{content:"";position:absolute;display:inline-block;background:#fff;width:15px;height:15px;margin:-1px 0 0 5px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32);border-radius:50%;left:9px;top:calc(50% - 7px)}.mec-fes-export-wrapper ul li.fes-export-date-active{color:#40d9f1}.mec-fes-export-wrapper ul li.fes-export-date-active:before{width:15px;height:15px;border:6px solid #40d9f1;background:#fff;box-shadow:0 3px 16px -3px #40d9f1}.mec-fes-btn-export{margin-left:15px;margin-top:12px}.mec-fes-btn-export span{position:relative;border:none;border-radius:3px;color:#fff!important;display:inline-block;font-size:13px;line-height:1;text-transform:none;font-weight:400;text-decoration:none;cursor:pointer;margin-right:4px;line-height:1;letter-spacing:0;padding:15px 22px;background:#39c36e;box-shadow:0 1px 7px -3px #39c36e!important;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;cursor:pointer;margin-left:6px}.mec-fes-btn-export span:hover{background:#222}.mec-event-export-excel:before,span.mec-event-export-csv:before{content:"\e083";font-family:simple-line-icons;font-size:13px;vertical-align:middle;margin-right:7px;margin-top:-1px;display:inline-block}.mec-fes-list .wn-p-t-right{min-width:170px;max-width:200px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#000;color:#fff;font-weight:400;font-size:14px;letter-spacing:.5px;line-height:1.5;position:absolute;z-index:99999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #535a61;visibility:hidden;opacity:0;transition:opacity .23s;padding:5px 10px 6px;border-radius:8px;text-align:center;font-style:normal}.mec-fes-list .mec-fes-event-export:hover .wn-p-t-right,.mec-fes-list .mec-fes-event-remove:hover .wn-p-t-right,.mec-fes-list .mec-fes-event-view:hover .wn-p-t-right{visibility:visible;opacity:1}.mec-fes-list .wn-p-t-right i{position:absolute!important;top:100%;right:50%;margin-top:-6px!important;margin-right:-6px!important;width:12px;height:24px;overflow:hidden;transform:rotate(-90deg)}.mec-fes-list .wn-p-t-right i:after{content:'';position:absolute;width:12px;height:12px;left:0;top:50%;transform:translate(50%,-50%) rotate(-45deg);background-color:#000;box-shadow:0 8px 9px -4px #535a61}.mec-fes-form .select2-container{min-height:38px;box-sizing:border-box;margin-bottom:8px;padding:0 6px;border-radius:2px;border:1px solid #ddd;box-shadow:inset 0 1px 6px rgba(0,0,0,.07);background-color:#fff;color:#32373c;outline:0;transition:50ms border-color ease-in-out;min-width:200px;font-size:14px}.mec-fes-form .select2-selection{border:none;background:0 0;padding-top:2px;width:100%;height:100%}.mec-fes-form .select2-container--default.select2-container--focus .select2-selection{border:none!important;outline:0}.mec-fes-form .select2-container--default .select2-selection--single .select2-selection__arrow{top:5px;right:4px}.select2-results{font-size:14px}.mec-fes-category-children,.mec-fes-category-children .mec-fes-category-children{padding-left:24px}.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:#dedede;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 #dedede;border-radius:50px;font-size:15px;padding:12px 27px}.mec-timeline-event-date{position:relative}.mec-timeline-events-container .mec-timeline-event-date:before{content:'';width:10px;height:10px;position:absolute;background:#40d9f1;border-radius:50px;top:8px;left:-23px;z-index:99}.mec-timeline-events-container .mec-timeline-event-date:after{content:'';width:20px;height:20px;position:absolute;background:rgba(64,217,241,.3);border-radius:50px;top:3px;left:-28px}.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-past-event.mec-timeline-event{margin:50px 0}}@media(max-width:1023px){.mec-past-event.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 .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-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-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}.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}.mec-wrap .mec-label-normal{display:none}
|
Binary file
|
@@ -653,7 +653,11 @@ function mec_send_email_check_all(Context)
|
|
653 |
// TinyMce Plugins
|
654 |
if(jQuery('.mec-fes-form').length < 1)
|
655 |
{
|
656 |
-
|
|
|
|
|
|
|
|
|
657 |
var menu = new Array();
|
658 |
if (items && typeof tinymce !== 'undefined') {
|
659 |
tinymce.PluginManager.add('mec_mce_buttons', function (editor, url) {
|
653 |
// TinyMce Plugins
|
654 |
if(jQuery('.mec-fes-form').length < 1)
|
655 |
{
|
656 |
+
if (typeof mec_admin_localize === "undefined") {
|
657 |
+
var items = '';
|
658 |
+
} else {
|
659 |
+
var items = JSON.parse(mec_admin_localize.mce_items);
|
660 |
+
}
|
661 |
var menu = new Array();
|
662 |
if (items && typeof tinymce !== 'undefined') {
|
663 |
tinymce.PluginManager.add('mec_mce_buttons', function (editor, url) {
|
@@ -94,6 +94,9 @@ var mecSingleEventDisplayer = {
|
|
94 |
$("#mec_sf_event_type_2_" + settings.id).on('change', function (e) {
|
95 |
search();
|
96 |
});
|
|
|
|
|
|
|
97 |
|
98 |
if (settings.fields && settings.fields != null && settings.fields.length > 0) {
|
99 |
for (var k in settings.fields) {
|
@@ -115,6 +118,7 @@ var mecSingleEventDisplayer = {
|
|
115 |
var year = $("#mec_sf_year_" + settings.id).length ? $("#mec_sf_year_" + settings.id).val() : '';
|
116 |
var event_type = $("#mec_sf_event_type_" + settings.id).length ? $("#mec_sf_event_type_" + settings.id).val() : '';
|
117 |
var event_type_2 = $("#mec_sf_event_type_2_" + settings.id).length ? $("#mec_sf_event_type_2_" + settings.id).val() : '';
|
|
|
118 |
|
119 |
if (year === 'none' && month === 'none') {
|
120 |
year = '';
|
@@ -131,7 +135,7 @@ var mecSingleEventDisplayer = {
|
|
131 |
}
|
132 |
}
|
133 |
|
134 |
-
var atts = settings.atts + '&sf[s]=' + s + '&sf[month]=' + month + '&sf[year]=' + year + '&sf[category]=' + category + '&sf[location]=' + location + '&sf[organizer]=' + organizer + '&sf[speaker]=' + speaker + '&sf[tag]=' + tag + '&sf[label]=' + label + '&sf[event_type]=' + event_type + '&sf[event_type_2]=' + event_type_2 + addation_attr;
|
135 |
settings.callback(atts);
|
136 |
}
|
137 |
};
|
94 |
$("#mec_sf_event_type_2_" + settings.id).on('change', function (e) {
|
95 |
search();
|
96 |
});
|
97 |
+
$("#mec_sf_attribute_" + settings.id).on('change', function (e) {
|
98 |
+
search();
|
99 |
+
});
|
100 |
|
101 |
if (settings.fields && settings.fields != null && settings.fields.length > 0) {
|
102 |
for (var k in settings.fields) {
|
118 |
var year = $("#mec_sf_year_" + settings.id).length ? $("#mec_sf_year_" + settings.id).val() : '';
|
119 |
var event_type = $("#mec_sf_event_type_" + settings.id).length ? $("#mec_sf_event_type_" + settings.id).val() : '';
|
120 |
var event_type_2 = $("#mec_sf_event_type_2_" + settings.id).length ? $("#mec_sf_event_type_2_" + settings.id).val() : '';
|
121 |
+
var attribute = $("#mec_sf_attribute_" + settings.id).length ? $("#mec_sf_attribute_" + settings.id).val() : '';
|
122 |
|
123 |
if (year === 'none' && month === 'none') {
|
124 |
year = '';
|
135 |
}
|
136 |
}
|
137 |
|
138 |
+
var atts = settings.atts + '&sf[s]=' + s + '&sf[month]=' + month + '&sf[year]=' + year + '&sf[category]=' + category + '&sf[location]=' + location + '&sf[organizer]=' + organizer + '&sf[speaker]=' + speaker + '&sf[tag]=' + tag + '&sf[label]=' + label + '&sf[event_type]=' + event_type + '&sf[event_type_2]=' + event_type_2 + '&sf[attribute]=' + attribute + addation_attr;
|
139 |
settings.callback(atts);
|
140 |
}
|
141 |
};
|
@@ -1,4 +1,22 @@
|
|
1 |
-
v 5.1.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
- Added: An option to disable "Auto Confirmation" for Pay Locally gateway (pro)
|
3 |
- Added: Used coupons in booking details view and booking invoice (pro)
|
4 |
- Added: An option to save Start and End dates of Google calendar import
|
1 |
+
v 5.1.6 – 18 February 2020
|
2 |
+
- Added: Occurrence to related events module
|
3 |
+
- Added: Order time column to the CSV Export (pro)
|
4 |
+
- Added: Some strings to WPML compatibility (pro)
|
5 |
+
- Fixed: HTML tag in bulk email (pro)
|
6 |
+
- Fixed: "Thank You Page" in PayPal Express gateway (pro)
|
7 |
+
- Fixed: Day light saving for booking module
|
8 |
+
- Fixed: A duplicate booking in free bookings (pro)
|
9 |
+
- Fixed: A duplicate booking in Stripe gateway (pro)
|
10 |
+
- Fixed: "mec_admin_localize" error when tinymce exists in pages.
|
11 |
+
- Fixed: A canvas issue in map module of list and grid skins (pro)
|
12 |
+
- Fixed: Required file field of booking module (pro)
|
13 |
+
- Fixed: Content position on slider view type 3
|
14 |
+
- Fixed: Container on the category archive pages
|
15 |
+
- Fixed: Structured Data
|
16 |
+
- Fixed: Some warnings in PHP 7.4 (pro)
|
17 |
+
- Updated: German translation (Thanks to Marius Kreyßel)
|
18 |
+
|
19 |
+
v 5.1.5 – 12 February 2020
|
20 |
- Added: An option to disable "Auto Confirmation" for Pay Locally gateway (pro)
|
21 |
- Added: Used coupons in booking details view and booking invoice (pro)
|
22 |
- Added: An option to save Start and End dates of Google calendar import
|
Binary file
|
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar Lite\n"
|
4 |
-
"POT-Creation-Date: 2020-02-
|
5 |
-
"PO-Revision-Date: 2020-02-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: cs_CZ\n"
|
@@ -73,7 +73,7 @@ msgstr "Barva události"
|
|
73 |
msgid "Settings"
|
74 |
msgstr "Nastavení"
|
75 |
|
76 |
-
#: app/features/contextual.php:62 app/features/events.php:
|
77 |
#: app/features/mec/booking.php:448 app/features/mec/support.php:29
|
78 |
#: app/libraries/main.php:560
|
79 |
msgid "Booking Form"
|
@@ -315,29 +315,29 @@ msgstr "Zobrazit událost"
|
|
315 |
msgid "No events found in Trash!"
|
316 |
msgstr "V koši nebyly nalezeny žádné události!"
|
317 |
|
318 |
-
#: app/features/events.php:182 app/features/events.php:
|
319 |
#: app/features/mec/meta_boxes/display_options.php:959
|
320 |
#: app/features/mec/meta_boxes/search_form.php:31
|
321 |
#: app/features/mec/meta_boxes/search_form.php:93
|
322 |
#: app/features/mec/meta_boxes/search_form.php:155
|
323 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
324 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
325 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
326 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
327 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
328 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
329 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
330 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
331 |
#: app/features/mec/settings.php:808 app/features/mec/single.php:232
|
332 |
#: app/features/search.php:68 app/libraries/main.php:5335
|
333 |
-
#: app/libraries/skins.php:865 app/skins/single.php:
|
334 |
#: app/skins/single/default.php:192 app/skins/single/default.php:415
|
335 |
#: app/skins/single/m1.php:184 app/skins/single/m2.php:110
|
336 |
#: app/skins/single/modern.php:118
|
337 |
msgid "Category"
|
338 |
msgstr "Kategorie"
|
339 |
|
340 |
-
#: app/features/events.php:183 app/features/events.php:
|
341 |
#: app/features/fes/form.php:757 app/features/mec.php:403
|
342 |
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5334
|
343 |
msgid "Categories"
|
@@ -427,8 +427,8 @@ msgstr "Datum a čas"
|
|
427 |
msgid "Event Repeating"
|
428 |
msgstr "Opakování události"
|
429 |
|
430 |
-
#: app/features/events.php:333 app/features/events.php:
|
431 |
-
#: app/features/mec/settings.php:718 app/skins/single.php:
|
432 |
msgid "Hourly Schedule"
|
433 |
msgstr "Hodinový rozvrh"
|
434 |
|
@@ -444,35 +444,35 @@ msgstr "Umístění"
|
|
444 |
msgid "Links"
|
445 |
msgstr "Odkaz"
|
446 |
|
447 |
-
#: app/features/events.php:336 app/features/events.php:
|
448 |
-
#: app/features/events.php:
|
449 |
#: app/features/ix.php:3506 app/features/ix.php:3547
|
450 |
#: app/features/mec/meta_boxes/display_options.php:962
|
451 |
#: app/features/mec/meta_boxes/search_form.php:45
|
452 |
#: app/features/mec/meta_boxes/search_form.php:107
|
453 |
#: app/features/mec/meta_boxes/search_form.php:169
|
454 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
455 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
456 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
457 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
458 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
459 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
460 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
461 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
462 |
#: app/features/mec/settings.php:820 app/features/mec/single.php:236
|
463 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
464 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
465 |
#: app/features/organizers.php:271 app/features/search.php:78
|
466 |
#: app/libraries/main.php:5341 app/libraries/skins.php:917
|
467 |
-
#: app/skins/single.php:
|
468 |
#: app/skins/single/default.php:440 app/skins/single/m1.php:99
|
469 |
#: app/skins/single/m2.php:25 app/skins/single/modern.php:34
|
470 |
msgid "Organizer"
|
471 |
msgstr "Organizátor"
|
472 |
|
473 |
-
#: app/features/events.php:337 app/features/events.php:
|
474 |
#: app/features/fes/form.php:730 app/libraries/main.php:5368
|
475 |
-
#: app/skins/single.php:
|
476 |
#: app/skins/single/default.php:349 app/skins/single/m1.php:58
|
477 |
#: app/skins/single/modern.php:213
|
478 |
msgid "Cost"
|
@@ -486,8 +486,8 @@ msgstr "Poznámka pro recenzenta"
|
|
486 |
msgid "Guest Data"
|
487 |
msgstr "Údaje hosta"
|
488 |
|
489 |
-
#: app/features/events.php:461 app/features/events.php:
|
490 |
-
#: app/features/events.php:
|
491 |
#: app/features/fes/form.php:689 app/features/labels.php:178
|
492 |
#: app/features/mec/booking.php:45 app/features/organizers.php:279
|
493 |
#: app/features/profile/profile.php:180 app/libraries/notifications.php:1117
|
@@ -495,8 +495,8 @@ msgstr "Údaje hosta"
|
|
495 |
msgid "Name"
|
496 |
msgstr "Jméno"
|
497 |
|
498 |
-
#: app/features/events.php:462 app/features/events.php:
|
499 |
-
#: app/features/events.php:
|
500 |
#: app/features/fes.php:223 app/features/fes/form.php:685
|
501 |
#: app/features/mec/booking.php:57 app/features/mec/booking.php:499
|
502 |
#: app/features/organizers.php:111 app/features/organizers.php:152
|
@@ -504,8 +504,8 @@ msgstr "Jméno"
|
|
504 |
#: app/features/speakers.php:196 app/libraries/main.php:1547
|
505 |
#: app/libraries/main.php:1616 app/libraries/main.php:2843
|
506 |
#: app/libraries/notifications.php:1118 app/modules/booking/steps/form.php:46
|
507 |
-
#: app/modules/booking/steps/form.php:83 app/skins/single.php:
|
508 |
-
#: app/skins/single.php:
|
509 |
#: app/skins/single/default.php:457 app/skins/single/m1.php:116
|
510 |
#: app/skins/single/m2.php:42 app/skins/single/modern.php:51
|
511 |
msgid "Email"
|
@@ -516,8 +516,8 @@ msgid "Date and Time"
|
|
516 |
msgstr "Datum a čas"
|
517 |
|
518 |
#: app/features/events.php:473 app/features/events.php:479
|
519 |
-
#: app/features/events.php:
|
520 |
-
#: app/features/events.php:
|
521 |
#: app/features/fes/form.php:251 app/features/ix.php:3506
|
522 |
#: app/features/ix.php:3547 app/features/ix/import_g_calendar.php:38
|
523 |
#: app/features/mec/dashboard.php:401
|
@@ -540,46 +540,46 @@ msgid "Start Date"
|
|
540 |
msgstr "Počátečná den"
|
541 |
|
542 |
#: app/features/events.php:551 app/features/events.php:643
|
543 |
-
#: app/features/events.php:
|
544 |
-
#: app/features/events.php:
|
545 |
#: app/features/fes/form.php:279 app/features/fes/form.php:319
|
546 |
msgid "AM"
|
547 |
msgstr "dop."
|
548 |
|
549 |
#: app/features/events.php:558 app/features/events.php:650
|
550 |
-
#: app/features/events.php:
|
551 |
-
#: app/features/events.php:
|
552 |
#: app/features/fes/form.php:280 app/features/fes/form.php:320
|
553 |
msgid "PM"
|
554 |
msgstr "odp."
|
555 |
|
556 |
#: app/features/events.php:565 app/features/events.php:570
|
557 |
-
#: app/features/events.php:
|
558 |
-
#: app/features/events.php:
|
559 |
#: app/features/fes/form.php:291 app/features/ix.php:3506
|
560 |
#: app/features/ix.php:3547 app/features/ix/import_g_calendar.php:44
|
561 |
#: app/features/mec/dashboard.php:402
|
562 |
msgid "End Date"
|
563 |
msgstr "Konečný den"
|
564 |
|
565 |
-
#: app/features/events.php:
|
566 |
msgid "All Day Event"
|
567 |
msgstr "Celodenní událost"
|
568 |
|
569 |
-
#: app/features/events.php:
|
570 |
msgid "Hide Event Time"
|
571 |
msgstr "Skrýt čas události"
|
572 |
|
573 |
-
#: app/features/events.php:
|
574 |
msgid "Hide Event End Time"
|
575 |
msgstr "Skrýt čas ukončení události"
|
576 |
|
577 |
-
#: app/features/events.php:
|
578 |
#: app/features/fes/form.php:336
|
579 |
msgid "Time Comment"
|
580 |
msgstr "Časový komentář"
|
581 |
|
582 |
-
#: app/features/events.php:
|
583 |
msgid ""
|
584 |
"It shows next to event time on single event page. You can insert Timezone "
|
585 |
"etc. in this field."
|
@@ -587,14 +587,14 @@ msgstr ""
|
|
587 |
"Zobrazuje se vedle času události na stránce jedné události. Do tohoto pole "
|
588 |
"můžete vložit časové pásmo atd."
|
589 |
|
590 |
-
#: app/features/events.php:
|
591 |
-
#: app/features/events.php:
|
592 |
-
#: app/features/events.php:
|
593 |
-
#: app/features/events.php:
|
594 |
-
#: app/features/events.php:
|
595 |
-
#: app/features/events.php:
|
596 |
-
#: app/features/events.php:
|
597 |
-
#: app/features/events.php:
|
598 |
#: app/features/fes/form.php:641 app/features/locations.php:301
|
599 |
#: app/features/mec/booking.php:108 app/features/mec/booking.php:158
|
600 |
#: app/features/mec/booking.php:171 app/features/mec/booking.php:187
|
@@ -660,110 +660,110 @@ msgstr ""
|
|
660 |
#: app/features/mec/single.php:125 app/features/mec/single.php:178
|
661 |
#: app/features/mec/styling.php:203 app/features/mec/styling.php:220
|
662 |
#: app/features/mec/styling.php:233 app/features/organizers.php:272
|
663 |
-
#: app/skins/single.php:
|
664 |
#: app/skins/single/default.php:364 app/skins/single/m1.php:206
|
665 |
#: app/skins/single/m2.php:133 app/skins/single/modern.php:141
|
666 |
msgid "Read More"
|
667 |
msgstr "Číst více"
|
668 |
|
669 |
-
#: app/features/events.php:
|
670 |
msgid "Repeating"
|
671 |
msgstr "Opakování"
|
672 |
|
673 |
-
#: app/features/events.php:
|
674 |
msgid "Event Repeating (Recurring events)"
|
675 |
msgstr "Opakování události (opakující se události)"
|
676 |
|
677 |
-
#: app/features/events.php:
|
678 |
msgid "Repeats"
|
679 |
msgstr "Opakování"
|
680 |
|
681 |
-
#: app/features/events.php:
|
682 |
#: app/features/mec/dashboard.php:404
|
683 |
#: app/skins/default_full_calendar/tpl.php:69
|
684 |
#: app/skins/full_calendar/tpl.php:110
|
685 |
msgid "Daily"
|
686 |
msgstr "Děnně"
|
687 |
|
688 |
-
#: app/features/events.php:
|
689 |
msgid "Every Weekday"
|
690 |
msgstr "Každý všední den"
|
691 |
|
692 |
-
#: app/features/events.php:
|
693 |
msgid "Every Weekend"
|
694 |
msgstr "Každý víkend"
|
695 |
|
696 |
-
#: app/features/events.php:
|
697 |
msgid "Certain Weekdays"
|
698 |
msgstr "Určité pracovní dny"
|
699 |
|
700 |
-
#: app/features/events.php:
|
701 |
#: app/skins/default_full_calendar/tpl.php:68
|
702 |
#: app/skins/full_calendar/tpl.php:109
|
703 |
msgid "Weekly"
|
704 |
msgstr "Týdně"
|
705 |
|
706 |
-
#: app/features/events.php:
|
707 |
#: app/features/mec/dashboard.php:405
|
708 |
#: app/skins/default_full_calendar/tpl.php:67
|
709 |
#: app/skins/full_calendar/tpl.php:108
|
710 |
msgid "Monthly"
|
711 |
msgstr "Měsíčně"
|
712 |
|
713 |
-
#: app/features/events.php:
|
714 |
#: app/features/mec/dashboard.php:406
|
715 |
#: app/skins/default_full_calendar/tpl.php:66
|
716 |
#: app/skins/full_calendar/tpl.php:107
|
717 |
msgid "Yearly"
|
718 |
msgstr "Ročně"
|
719 |
|
720 |
-
#: app/features/events.php:
|
721 |
msgid "Custom Days"
|
722 |
msgstr "Vlastní dny"
|
723 |
|
724 |
-
#: app/features/events.php:
|
725 |
msgid "Advanced"
|
726 |
msgstr "Pokročilé"
|
727 |
|
728 |
-
#: app/features/events.php:
|
729 |
msgid "Repeat Interval"
|
730 |
msgstr "Interval opakování"
|
731 |
|
732 |
-
#: app/features/events.php:
|
733 |
msgid "Repeat interval"
|
734 |
msgstr "Interval opakování"
|
735 |
|
736 |
-
#: app/features/events.php:
|
737 |
msgid "Week Days"
|
738 |
msgstr "Dny v týdnu"
|
739 |
|
740 |
-
#: app/features/events.php:
|
741 |
-
#: app/features/events.php:
|
742 |
#: app/features/fes/form.php:377 app/features/ix/import_f_calendar.php:42
|
743 |
#: app/features/ix/import_g_calendar.php:51
|
744 |
#: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
|
745 |
msgid "Start"
|
746 |
msgstr "Začátek"
|
747 |
|
748 |
-
#: app/features/events.php:
|
749 |
-
#: app/features/events.php:
|
750 |
#: app/features/fes/form.php:378
|
751 |
msgid "End"
|
752 |
msgstr "Konec"
|
753 |
|
754 |
-
#: app/features/events.php:
|
755 |
-
#: app/features/events.php:
|
756 |
-
#: app/features/events.php:
|
757 |
-
#: app/features/events.php:
|
758 |
#: app/features/fes/form.php:379 app/features/fes/form.php:855
|
759 |
msgid "Add"
|
760 |
msgstr "Přidat"
|
761 |
|
762 |
-
#: app/features/events.php:
|
763 |
msgid "Custom Days Repeating"
|
764 |
msgstr "Opakování vlastních dnů"
|
765 |
|
766 |
-
#: app/features/events.php:
|
767 |
msgid ""
|
768 |
"Add certain days to event occurrence dates. If you have single day event, "
|
769 |
"start and end date should be the same, If you have multiple day event the "
|
@@ -773,49 +773,49 @@ msgstr ""
|
|
773 |
"datum zahájení a ukončení by mělo být stejné. Pokud máte vícedenní událost, "
|
774 |
"datum zahájení a ukončení musí odpovídat počátečnímu datu."
|
775 |
|
776 |
-
#: app/features/events.php:
|
777 |
msgid "First"
|
778 |
msgstr "První"
|
779 |
|
780 |
-
#: app/features/events.php:
|
781 |
msgid "Second"
|
782 |
msgstr "Druhá"
|
783 |
|
784 |
-
#: app/features/events.php:
|
785 |
msgid "Third"
|
786 |
msgstr "Třetí"
|
787 |
|
788 |
-
#: app/features/events.php:
|
789 |
msgid "Fourth"
|
790 |
msgstr "Čtvrtá"
|
791 |
|
792 |
-
#: app/features/events.php:
|
793 |
msgid "Last"
|
794 |
msgstr "Poslední"
|
795 |
|
796 |
-
#: app/features/events.php:
|
797 |
msgid "Ends Repeat"
|
798 |
msgstr "Ukončení opakování"
|
799 |
|
800 |
-
#: app/features/events.php:
|
801 |
msgid "Never"
|
802 |
msgstr "Nikdy"
|
803 |
|
804 |
# Možná Zapnuto
|
805 |
-
#: app/features/events.php:
|
806 |
msgid "On"
|
807 |
msgstr "Na"
|
808 |
|
809 |
-
#: app/features/events.php:
|
810 |
msgid "After"
|
811 |
msgstr "Po"
|
812 |
|
813 |
-
#: app/features/events.php:
|
814 |
#: app/features/fes/form.php:637 app/features/fes/form.php:640
|
815 |
msgid "Occurrences times"
|
816 |
msgstr "Časy výskytu"
|
817 |
|
818 |
-
#: app/features/events.php:
|
819 |
msgid ""
|
820 |
"The event will finish after certain repeats. For example if you set it to "
|
821 |
"10, the event will finish after 10 repeats."
|
@@ -823,39 +823,39 @@ msgstr ""
|
|
823 |
"Událost bude ukončena po určitých opakováních. Pokud například nastavíte "
|
824 |
"hodnotu 10, událost skončí po 10 opakováních."
|
825 |
|
826 |
-
#: app/features/events.php:
|
827 |
#, fuzzy
|
828 |
#| msgid "Next Occurrence of Other Events"
|
829 |
msgid "Show only one occurrence of this event"
|
830 |
msgstr "Další výskyt dalších událostí"
|
831 |
|
832 |
-
#: app/features/events.php:
|
833 |
-
#: app/features/events.php:
|
834 |
#: app/features/ix.php:3506 app/features/ix.php:3547
|
835 |
#: app/features/mec/settings.php:664 app/libraries/main.php:5367
|
836 |
#: app/widgets/single.php:103
|
837 |
msgid "Event Cost"
|
838 |
msgstr "Cena události"
|
839 |
|
840 |
-
#: app/features/events.php:
|
841 |
msgid "Exceptional Days (Exclude Dates)"
|
842 |
msgstr "Výjimečné dny (vyjma dat)"
|
843 |
|
844 |
-
#: app/features/events.php:
|
845 |
msgid "Exclude certain days"
|
846 |
msgstr "Vyloučit určité dny"
|
847 |
|
848 |
-
#: app/features/events.php:
|
849 |
#: app/features/fes.php:223 app/features/mec/booking.php:500
|
850 |
#: app/features/profile/profile.php:53 app/libraries/main.php:2253
|
851 |
-
#: app/libraries/main.php:2901 app/modules/booking/steps/tickets.php:
|
852 |
-
#: app/modules/next-event/details.php:93 app/skins/single.php:
|
853 |
#: app/skins/single/default.php:85 app/skins/single/default.php:308
|
854 |
#: app/skins/single/m1.php:20 app/skins/single/modern.php:175
|
855 |
msgid "Date"
|
856 |
msgstr "Datum"
|
857 |
|
858 |
-
#: app/features/events.php:
|
859 |
msgid ""
|
860 |
"Exclude certain days from event occurrence dates. Please note that you can "
|
861 |
"exclude only single day occurrences and you cannot exclude one day from "
|
@@ -865,15 +865,15 @@ msgstr ""
|
|
865 |
"můžete vyloučit pouze výskyty za jeden den a nelze vyloučit jeden den z "
|
866 |
"vícedenních výskytů."
|
867 |
|
868 |
-
#: app/features/events.php:
|
869 |
msgid "Day 1"
|
870 |
msgstr "Den 1"
|
871 |
|
872 |
-
#: app/features/events.php:
|
873 |
msgid "Add Day"
|
874 |
msgstr "Přidat den"
|
875 |
|
876 |
-
#: app/features/events.php:
|
877 |
msgid ""
|
878 |
"Add new days for schedule. For example if your event is multiple days, you "
|
879 |
"can add a different schedule for each day!"
|
@@ -881,28 +881,28 @@ msgstr ""
|
|
881 |
"Přidat nové dny pro rozvrh. Pokud je například vaše akce vícedenní, můžete "
|
882 |
"pro každý den přidat jiný rozvrh!"
|
883 |
|
884 |
-
#: app/features/events.php:
|
885 |
#, php-format
|
886 |
msgid "Day %s"
|
887 |
msgstr "Den %s"
|
888 |
|
889 |
-
#: app/features/events.php:
|
890 |
-
#: app/features/events.php:
|
891 |
-
#: app/features/events.php:
|
892 |
-
#: app/features/events.php:
|
893 |
-
#: app/features/events.php:
|
894 |
#: app/features/fes/form.php:236 app/features/ix.php:3506
|
895 |
#: app/features/ix.php:3547 app/features/mec/booking.php:384
|
896 |
#: app/features/mec/booking.php:416 app/features/mec/styling.php:115
|
897 |
msgid "Title"
|
898 |
msgstr "Název"
|
899 |
|
900 |
-
#: app/features/events.php:
|
901 |
-
#: app/features/events.php:
|
902 |
-
#: app/features/events.php:
|
903 |
-
#: app/features/events.php:
|
904 |
-
#: app/features/events.php:
|
905 |
-
#: app/features/events.php:
|
906 |
#: app/features/mec/booking.php:327 app/features/mec/booking.php:356
|
907 |
#: app/features/mec/booking.php:407 app/features/mec/booking.php:439
|
908 |
#: app/libraries/main.php:2762 app/libraries/main.php:2792
|
@@ -915,28 +915,28 @@ msgstr "Název"
|
|
915 |
msgid "Remove"
|
916 |
msgstr "Odstranit"
|
917 |
|
918 |
-
#: app/features/events.php:
|
919 |
msgid "Add new hourly schedule row"
|
920 |
msgstr "Přidejte nový řádek rozvrhu hodin"
|
921 |
|
922 |
-
#: app/features/events.php:
|
923 |
-
#: app/features/events.php:
|
924 |
msgid "From e.g. 8:15"
|
925 |
msgstr "Od např. 8:15"
|
926 |
|
927 |
-
#: app/features/events.php:
|
928 |
-
#: app/features/events.php:
|
929 |
msgid "To e.g. 8:45"
|
930 |
msgstr "Do např. 8:45"
|
931 |
|
932 |
-
#: app/features/events.php:
|
933 |
-
#: app/features/events.php:
|
934 |
-
#: app/features/events.php:
|
935 |
msgid "Description"
|
936 |
msgstr "Popis"
|
937 |
|
938 |
-
#: app/features/events.php:
|
939 |
-
#: app/features/events.php:
|
940 |
#: app/features/mec.php:411 app/features/mec/modules.php:52
|
941 |
#: app/features/mec/settings.php:712 app/features/speakers.php:62
|
942 |
#: app/libraries/main.php:565 app/libraries/main.php:5342
|
@@ -944,26 +944,26 @@ msgstr "Popis"
|
|
944 |
msgid "Speakers"
|
945 |
msgstr "Řečníci"
|
946 |
|
947 |
-
#: app/features/events.php:
|
948 |
msgid "New Day"
|
949 |
msgstr "Nový den"
|
950 |
|
951 |
-
#: app/features/events.php:
|
952 |
#: app/features/mec/settings.php:658
|
953 |
msgid "Event Links"
|
954 |
msgstr "Odkazy na událost"
|
955 |
|
956 |
-
#: app/features/events.php:
|
957 |
#: app/features/fes/form.php:706 app/libraries/main.php:5365
|
958 |
msgid "Event Link"
|
959 |
msgstr "Odkaz na událost"
|
960 |
|
961 |
-
#: app/features/events.php:
|
962 |
#: app/features/fes/form.php:707 app/features/fes/form.php:712
|
963 |
msgid "eg. http://yoursite.com/your-event"
|
964 |
msgstr "např. http://yoursite.com/vase-udalost"
|
965 |
|
966 |
-
#: app/features/events.php:
|
967 |
msgid ""
|
968 |
"If you fill it, it will be replaced instead of default event page link. "
|
969 |
"Insert full link including http(s):// - Also, if you use advertising URL, "
|
@@ -973,32 +973,32 @@ msgstr ""
|
|
973 |
"Vložte úplný odkaz včetně http (s): // - Pokud používáte reklamní adresu "
|
974 |
"URL, můžete také použít zkracovač URL"
|
975 |
|
976 |
-
#: app/features/events.php:
|
977 |
msgid "URL Shortener"
|
978 |
msgstr "Zkracovač URL"
|
979 |
|
980 |
-
#: app/features/events.php:
|
981 |
#: app/features/fes/form.php:711 app/libraries/main.php:5366
|
982 |
-
#: app/skins/single.php:
|
983 |
#: app/skins/single/default.php:363 app/skins/single/m1.php:205
|
984 |
#: app/skins/single/m2.php:132 app/skins/single/modern.php:140
|
985 |
#: app/widgets/single.php:107
|
986 |
msgid "More Info"
|
987 |
msgstr "Více info"
|
988 |
|
989 |
-
#: app/features/events.php:
|
990 |
msgid "More Information"
|
991 |
msgstr "Více informací"
|
992 |
|
993 |
-
#: app/features/events.php:
|
994 |
msgid "Current Window"
|
995 |
msgstr "Aktuální okno"
|
996 |
|
997 |
-
#: app/features/events.php:
|
998 |
msgid "New Window"
|
999 |
msgstr "Nové okno"
|
1000 |
|
1001 |
-
#: app/features/events.php:
|
1002 |
msgid ""
|
1003 |
"If you fill it, it will be shown in event details page as an optional link. "
|
1004 |
"Insert full link including http(s)://"
|
@@ -1006,18 +1006,18 @@ msgstr ""
|
|
1006 |
"Pokud ji vyplníte, zobrazí se jako volitelný odkaz na stránce s podrobnostmi "
|
1007 |
"o události. Vložte celý odkaz včetně http (s): //"
|
1008 |
|
1009 |
-
#: app/features/events.php:
|
1010 |
msgid "Total booking limits"
|
1011 |
msgstr "Celkové limity rezervace"
|
1012 |
|
1013 |
-
#: app/features/events.php:
|
1014 |
-
#: app/features/events.php:
|
1015 |
-
#: app/modules/booking/steps/tickets.php:
|
1016 |
#: app/skins/available_spot/tpl.php:158
|
1017 |
msgid "Unlimited"
|
1018 |
msgstr "Neomezené"
|
1019 |
|
1020 |
-
#: app/features/events.php:
|
1021 |
msgid ""
|
1022 |
"If you want to set a limit to all tickets, uncheck this checkbox and put a "
|
1023 |
"limitation number."
|
@@ -1025,33 +1025,33 @@ msgstr ""
|
|
1025 |
"Pokud chcete nastavit limit na všechny lístky, zrušte zaškrtnutí tohoto "
|
1026 |
"políčka a zadejte číslo omezení."
|
1027 |
|
1028 |
-
#: app/features/events.php:
|
1029 |
msgid "Read About A Booking System"
|
1030 |
msgstr "Přečtěte si o rezervačním systému"
|
1031 |
|
1032 |
-
#: app/features/events.php:
|
1033 |
msgid "100"
|
1034 |
msgstr "100"
|
1035 |
|
1036 |
-
#: app/features/events.php:
|
1037 |
msgid "Total user booking limits"
|
1038 |
msgstr "Celkové limity rezervace uživatelů"
|
1039 |
|
1040 |
-
#: app/features/events.php:
|
1041 |
-
#: app/features/events.php:
|
1042 |
msgid "Inherit from global options"
|
1043 |
msgstr "Zdědí z globálních možností"
|
1044 |
|
1045 |
-
#: app/features/events.php:
|
1046 |
msgid "12"
|
1047 |
msgstr "12"
|
1048 |
|
1049 |
-
#: app/features/events.php:
|
1050 |
-
#: app/libraries/main.php:5370 app/modules/booking/steps/tickets.php:
|
1051 |
msgid "Tickets"
|
1052 |
msgstr "Vstupenky"
|
1053 |
|
1054 |
-
#: app/features/events.php:
|
1055 |
msgid ""
|
1056 |
"You're translating an event so MEC will use the original event for tickets "
|
1057 |
"and booking. You can only translate the ticket name and description. Please "
|
@@ -1061,131 +1061,131 @@ msgstr ""
|
|
1061 |
"vstupenek a rezervace. Můžete přeložit pouze název a popis vstupenky. Prosím "
|
1062 |
"definujte určité vstupenky, které jste definovali v původní události."
|
1063 |
|
1064 |
-
#: app/features/events.php:
|
1065 |
#, fuzzy
|
1066 |
#| msgid "Ticket"
|
1067 |
msgid "Add Ticket"
|
1068 |
msgstr "Vstupenka"
|
1069 |
|
1070 |
-
#: app/features/events.php:
|
1071 |
msgid "Ticket Name"
|
1072 |
msgstr "Název vstupenky"
|
1073 |
|
1074 |
-
#: app/features/events.php:
|
1075 |
-
#: app/features/events.php:
|
1076 |
#: app/features/ix.php:3506 app/features/ix.php:3547
|
1077 |
msgid "Start Time"
|
1078 |
msgstr "Začátek"
|
1079 |
|
1080 |
-
#: app/features/events.php:
|
1081 |
-
#: app/features/events.php:
|
1082 |
#: app/features/ix.php:3506 app/features/ix.php:3547
|
1083 |
msgid "End Time"
|
1084 |
msgstr "Konec"
|
1085 |
|
1086 |
-
#: app/features/events.php:
|
1087 |
-
#: app/features/events.php:
|
1088 |
-
#: app/features/events.php:
|
1089 |
-
#: app/features/events.php:
|
1090 |
-
#: app/features/events.php:
|
1091 |
-
#: app/features/events.php:
|
1092 |
#: app/features/mec/booking.php:391 app/features/mec/booking.php:420
|
1093 |
#: app/features/mec/booking.php:423
|
1094 |
msgid "Price"
|
1095 |
msgstr "Cena"
|
1096 |
|
1097 |
-
#: app/features/events.php:
|
1098 |
msgid "Insert 0 for free ticket. Only numbers please."
|
1099 |
msgstr "Vložte 0 pro vstupenku zdarma. Prosím pouze čísla."
|
1100 |
|
1101 |
-
#: app/features/events.php:
|
1102 |
-
#: app/features/events.php:
|
1103 |
msgid "Price Label"
|
1104 |
msgstr "Cenový štítek"
|
1105 |
|
1106 |
-
#: app/features/events.php:
|
1107 |
msgid "For showing on website. e.g. $15"
|
1108 |
msgstr "Pro zobrazení na webu. např. 15 $"
|
1109 |
|
1110 |
-
#: app/features/events.php:
|
1111 |
msgid "Available Tickets"
|
1112 |
msgstr "Dostupné vstupenky"
|
1113 |
|
1114 |
-
#: app/features/events.php:
|
1115 |
#, fuzzy
|
1116 |
#| msgid "Maximum Per Ticket"
|
1117 |
msgid "Minimum Ticket e.g. 3"
|
1118 |
msgstr "Maximum na jednu vstupenku"
|
1119 |
|
1120 |
-
#: app/features/events.php:
|
1121 |
#, fuzzy
|
1122 |
#| msgid "Maximum Per Ticket"
|
1123 |
msgid "MinimumTicket"
|
1124 |
msgstr "Maximum na jednu vstupenku"
|
1125 |
|
1126 |
-
#: app/features/events.php:
|
1127 |
msgid "Set a number for the minimum ticket reservation"
|
1128 |
msgstr ""
|
1129 |
|
1130 |
-
#: app/features/events.php:
|
1131 |
msgid "e.g. 0"
|
1132 |
msgstr ""
|
1133 |
|
1134 |
-
#: app/features/events.php:
|
1135 |
#, fuzzy
|
1136 |
#| msgid "Days"
|
1137 |
msgid "Day"
|
1138 |
msgstr "Dny"
|
1139 |
|
1140 |
-
#: app/features/events.php:
|
1141 |
msgid "Hour"
|
1142 |
msgstr ""
|
1143 |
|
1144 |
-
#: app/features/events.php:
|
1145 |
#, php-format
|
1146 |
msgid "Stop selling ticket %s before event start."
|
1147 |
msgstr ""
|
1148 |
|
1149 |
-
#: app/features/events.php:
|
1150 |
msgid "Price per Date"
|
1151 |
msgstr "Cena za datum"
|
1152 |
|
1153 |
-
#: app/features/events.php:
|
1154 |
-
#: app/features/events.php:
|
1155 |
#: app/features/mec/meta_boxes/display_options.php:960
|
1156 |
#: app/features/mec/meta_boxes/search_form.php:66
|
1157 |
#: app/features/mec/meta_boxes/search_form.php:128
|
1158 |
#: app/features/mec/meta_boxes/search_form.php:190
|
1159 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1160 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1161 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1162 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1163 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1164 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1165 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1166 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1167 |
#: app/features/mec/settings.php:840 app/features/mec/single.php:250
|
1168 |
#: app/libraries/skins.php:995
|
1169 |
msgid "Label"
|
1170 |
msgstr "Štítek"
|
1171 |
|
1172 |
-
#: app/features/events.php:
|
1173 |
msgid "Fees"
|
1174 |
msgstr "Poplatky"
|
1175 |
|
1176 |
-
#: app/features/events.php:
|
1177 |
#: app/features/mec/booking.php:307 app/features/mec/booking.php:336
|
1178 |
msgid "Fee Title"
|
1179 |
msgstr "Název poplatku"
|
1180 |
|
1181 |
-
#: app/features/events.php:
|
1182 |
-
#: app/features/events.php:
|
1183 |
#: app/features/mec/booking.php:311 app/features/mec/booking.php:314
|
1184 |
#: app/features/mec/booking.php:340 app/features/mec/booking.php:343
|
1185 |
msgid "Amount"
|
1186 |
msgstr "Množství"
|
1187 |
|
1188 |
-
#: app/features/events.php:
|
1189 |
#: app/features/mec/booking.php:315 app/features/mec/booking.php:344
|
1190 |
msgid ""
|
1191 |
"Fee amount, considered as fixed amount if you set the type to amount "
|
@@ -1194,85 +1194,85 @@ msgstr ""
|
|
1194 |
"Výše poplatku, je považovaná za pevnou částku, pokud nastavíte typ na částku "
|
1195 |
"odpovídající procentuální hodnotě"
|
1196 |
|
1197 |
-
#: app/features/events.php:
|
1198 |
#: app/features/mec/booking.php:322 app/features/mec/booking.php:351
|
1199 |
msgid "Percent"
|
1200 |
msgstr "Procent"
|
1201 |
|
1202 |
-
#: app/features/events.php:
|
1203 |
#: app/features/mec/booking.php:323 app/features/mec/booking.php:352
|
1204 |
msgid "Amount (Per Ticket)"
|
1205 |
msgstr "Částka (za vstupenku)"
|
1206 |
|
1207 |
-
#: app/features/events.php:
|
1208 |
#: app/features/mec/booking.php:324 app/features/mec/booking.php:353
|
1209 |
msgid "Amount (Per Booking)"
|
1210 |
msgstr "Částka (za rezervaci)"
|
1211 |
|
1212 |
-
#: app/features/events.php:
|
1213 |
msgid "Ticket Variations / Options"
|
1214 |
msgstr "Varianty vstupenky / možnosti"
|
1215 |
|
1216 |
-
#: app/features/events.php:
|
1217 |
#: app/features/mec/booking.php:392 app/features/mec/booking.php:424
|
1218 |
msgid "Option Price"
|
1219 |
msgstr "Možnosti ceny"
|
1220 |
|
1221 |
-
#: app/features/events.php:
|
1222 |
-
#: app/features/events.php:
|
1223 |
#: app/features/mec/booking.php:398 app/features/mec/booking.php:401
|
1224 |
#: app/features/mec/booking.php:430 app/features/mec/booking.php:433
|
1225 |
msgid "Maximum Per Ticket"
|
1226 |
msgstr "Maximum na jednu vstupenku"
|
1227 |
|
1228 |
-
#: app/features/events.php:
|
1229 |
#: app/features/mec/booking.php:402 app/features/mec/booking.php:434
|
1230 |
msgid "Maximum Per Ticket. Leave it blank for unlimited."
|
1231 |
msgstr "Maximum na jednu vstupenku. Ponechte to prázdné pro neomezené."
|
1232 |
|
1233 |
-
#: app/features/events.php:
|
1234 |
#: app/libraries/main.php:2784
|
1235 |
msgid "MEC Name"
|
1236 |
msgstr "MEC Jméno"
|
1237 |
|
1238 |
-
#: app/features/events.php:
|
1239 |
#: app/libraries/main.php:2813
|
1240 |
msgid "MEC Email"
|
1241 |
msgstr "MEC Email"
|
1242 |
|
1243 |
-
#: app/features/events.php:
|
1244 |
#: app/libraries/main.php:2754
|
1245 |
msgid "Text"
|
1246 |
msgstr "Text"
|
1247 |
|
1248 |
-
#: app/features/events.php:
|
1249 |
#: app/features/organizers.php:103 app/features/organizers.php:148
|
1250 |
#: app/features/speakers.php:119 app/features/speakers.php:192
|
1251 |
#: app/features/speakers.php:271 app/libraries/main.php:2930
|
1252 |
msgid "Tel"
|
1253 |
msgstr "Tel"
|
1254 |
|
1255 |
-
#: app/features/events.php:
|
1256 |
#: app/libraries/main.php:2872
|
1257 |
msgid "File"
|
1258 |
msgstr "Soubor"
|
1259 |
|
1260 |
-
#: app/features/events.php:
|
1261 |
#: app/libraries/main.php:2959
|
1262 |
msgid "Textarea"
|
1263 |
msgstr "Plocha textu"
|
1264 |
|
1265 |
-
#: app/features/events.php:
|
1266 |
#: app/libraries/main.php:3012
|
1267 |
msgid "Checkboxes"
|
1268 |
msgstr "Zatržítko"
|
1269 |
|
1270 |
-
#: app/features/events.php:
|
1271 |
#: app/libraries/main.php:3056
|
1272 |
msgid "Radio Buttons"
|
1273 |
msgstr "Přepínače"
|
1274 |
|
1275 |
-
#: app/features/events.php:
|
1276 |
#: app/features/mec/meta_boxes/search_form.php:34
|
1277 |
#: app/features/mec/meta_boxes/search_form.php:41
|
1278 |
#: app/features/mec/meta_boxes/search_form.php:48
|
@@ -1294,100 +1294,100 @@ msgstr "Přepínače"
|
|
1294 |
#: app/features/mec/meta_boxes/search_form.php:186
|
1295 |
#: app/features/mec/meta_boxes/search_form.php:193
|
1296 |
#: app/features/mec/meta_boxes/search_form.php:200
|
1297 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1298 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1299 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1300 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1301 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1302 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1303 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1304 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1305 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1306 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1307 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1308 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1309 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1310 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1311 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1312 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1313 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1314 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1315 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1316 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1317 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1318 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1319 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1320 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1321 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1322 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1323 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1324 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1325 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1326 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1327 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1328 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1329 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1330 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1331 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1332 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1333 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1334 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1335 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1336 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1337 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1338 |
-
#: app/features/mec/meta_boxes/search_form.php:578
|
1339 |
#: app/features/mec/meta_boxes/search_form.php:585
|
1340 |
#: app/features/mec/meta_boxes/search_form.php:592
|
1341 |
#: app/features/mec/meta_boxes/search_form.php:599
|
1342 |
#: app/features/mec/meta_boxes/search_form.php:606
|
1343 |
#: app/features/mec/meta_boxes/search_form.php:613
|
1344 |
#: app/features/mec/meta_boxes/search_form.php:620
|
1345 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1346 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1347 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1348 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1349 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1350 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1351 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
|
|
1352 |
msgid "Dropdown"
|
1353 |
msgstr "Rozbalovací"
|
1354 |
|
1355 |
-
#: app/features/events.php:
|
1356 |
#: app/libraries/main.php:3147
|
1357 |
msgid "Agreement"
|
1358 |
msgstr "Smlouva"
|
1359 |
|
1360 |
-
#: app/features/events.php:
|
1361 |
#: app/libraries/main.php:2988
|
1362 |
msgid "Paragraph"
|
1363 |
msgstr "Paragraf"
|
1364 |
|
1365 |
-
#: app/features/events.php:
|
1366 |
-
#: app/features/events.php:
|
1367 |
#, php-format
|
1368 |
msgid "Show all %s"
|
1369 |
msgstr "Ukázat všechny %s"
|
1370 |
|
1371 |
-
#: app/features/events.php:
|
1372 |
msgid "labels"
|
1373 |
msgstr "štítky"
|
1374 |
|
1375 |
-
#: app/features/events.php:
|
1376 |
msgid "locations"
|
1377 |
msgstr "umístění"
|
1378 |
|
1379 |
-
#: app/features/events.php:
|
1380 |
msgid "organizers"
|
1381 |
msgstr "organizátoři"
|
1382 |
|
1383 |
-
#: app/features/events.php:
|
1384 |
#, fuzzy
|
1385 |
#| msgid "Attendees Limit"
|
1386 |
msgid "Attendees List"
|
1387 |
msgstr "Limit účastníků"
|
1388 |
|
1389 |
-
#: app/features/events.php:
|
1390 |
-
#: app/features/events.php:
|
1391 |
#: app/features/ix.php:3547 app/features/locations.php:58
|
1392 |
#: app/features/locations.php:232 app/features/locations.php:289
|
1393 |
#: app/features/locations.php:291 app/features/locations.php:300
|
@@ -1395,94 +1395,94 @@ msgstr "Limit účastníků"
|
|
1395 |
#: app/features/mec/meta_boxes/search_form.php:38
|
1396 |
#: app/features/mec/meta_boxes/search_form.php:100
|
1397 |
#: app/features/mec/meta_boxes/search_form.php:162
|
1398 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1399 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1400 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1401 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1402 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1403 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1404 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1405 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1406 |
#: app/features/mec/settings.php:814 app/features/mec/single.php:240
|
1407 |
#: app/features/search.php:73 app/libraries/main.php:2247
|
1408 |
#: app/libraries/main.php:5339 app/libraries/skins.php:891
|
1409 |
-
#: app/skins/single.php:
|
1410 |
#: app/skins/single/default.php:176 app/skins/single/default.php:399
|
1411 |
#: app/skins/single/m1.php:169 app/skins/single/m2.php:95
|
1412 |
#: app/skins/single/modern.php:102
|
1413 |
msgid "Location"
|
1414 |
msgstr "Umístění"
|
1415 |
|
1416 |
-
#: app/features/events.php:
|
1417 |
msgid "Repeat"
|
1418 |
msgstr "Opakovat"
|
1419 |
|
1420 |
-
#: app/features/events.php:
|
1421 |
msgid "Author"
|
1422 |
msgstr "Autor"
|
1423 |
|
1424 |
-
#: app/features/events.php:
|
1425 |
msgid "iCal Export"
|
1426 |
msgstr "iCal Export"
|
1427 |
|
1428 |
-
#: app/features/events.php:
|
1429 |
msgid "CSV Export"
|
1430 |
msgstr "CSV Export"
|
1431 |
|
1432 |
-
#: app/features/events.php:
|
1433 |
msgid "MS Excel Export"
|
1434 |
msgstr "MS Excel Export"
|
1435 |
|
1436 |
-
#: app/features/events.php:
|
1437 |
msgid "XML Export"
|
1438 |
msgstr "XML Export"
|
1439 |
|
1440 |
-
#: app/features/events.php:
|
1441 |
msgid "JSON Export"
|
1442 |
msgstr "JSON Export"
|
1443 |
|
1444 |
-
#: app/features/events.php:
|
1445 |
-
#: app/features/events.php:
|
1446 |
msgid "Duplicate"
|
1447 |
msgstr "Duplikát"
|
1448 |
|
1449 |
-
#: app/features/events.php:
|
1450 |
#: app/features/fes.php:223 app/features/ix.php:3506 app/features/ix.php:3547
|
1451 |
#: app/features/labels.php:177 app/features/locations.php:231
|
1452 |
#: app/features/organizers.php:203 app/features/speakers.php:268
|
1453 |
msgid "ID"
|
1454 |
msgstr "ID"
|
1455 |
|
1456 |
-
#: app/features/events.php:
|
1457 |
#: app/features/ix.php:3506 app/features/ix.php:3547
|
1458 |
msgid "Link"
|
1459 |
msgstr "Odkaz"
|
1460 |
|
1461 |
-
#: app/features/events.php:
|
1462 |
#, php-format
|
1463 |
msgid "%s Tel"
|
1464 |
msgstr "%s Tel"
|
1465 |
|
1466 |
-
#: app/features/events.php:
|
1467 |
#, php-format
|
1468 |
msgid "%s Email"
|
1469 |
msgstr "%s Email"
|
1470 |
|
1471 |
-
#: app/features/events.php:
|
1472 |
#: app/features/profile/profile.php:186 app/libraries/main.php:2282
|
1473 |
#: app/libraries/main.php:5369
|
1474 |
msgid "Ticket"
|
1475 |
msgstr "Vstupenka"
|
1476 |
|
1477 |
-
#: app/features/events.php:
|
1478 |
msgid "Variations"
|
1479 |
msgstr "Variace"
|
1480 |
|
1481 |
-
#: app/features/events.php:
|
1482 |
msgid "Unknown"
|
1483 |
msgstr "Neznámý"
|
1484 |
|
1485 |
-
#: app/features/events.php:
|
1486 |
#, fuzzy
|
1487 |
#| msgid "Attendees Form"
|
1488 |
msgid "No Attendees Found!"
|
@@ -1519,6 +1519,12 @@ msgstr "Prosím %s/%s v pořadí pro správu událostí."
|
|
1519 |
msgid "The event removed!"
|
1520 |
msgstr "Událost byla odebrána!"
|
1521 |
|
|
|
|
|
|
|
|
|
|
|
|
|
1522 |
#: app/features/fes.php:223 app/libraries/main.php:2259
|
1523 |
msgid "Transaction ID"
|
1524 |
msgstr "ID transakce"
|
@@ -1647,7 +1653,7 @@ msgstr "Odebrat obrázek"
|
|
1647 |
#: app/features/fes/form.php:783 app/features/labels.php:61
|
1648 |
#: app/features/labels.php:221 app/features/mec.php:404
|
1649 |
#: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:5336
|
1650 |
-
#: app/skins/single.php:
|
1651 |
#: app/skins/single/default.php:378 app/skins/single/m1.php:73
|
1652 |
#: app/skins/single/modern.php:228
|
1653 |
msgid "Labels"
|
@@ -2440,7 +2446,7 @@ msgstr "Vybrané a zrušené události můžete zobrazit jiným stylem!"
|
|
2440 |
|
2441 |
#: app/features/labels.php:180 app/features/locations.php:234
|
2442 |
#: app/features/organizers.php:206 app/features/speakers.php:272
|
2443 |
-
#: app/modules/booking/steps/tickets.php:
|
2444 |
msgid "Count"
|
2445 |
msgstr "Spočítat"
|
2446 |
|
@@ -2658,6 +2664,16 @@ msgstr "MEC - podpora"
|
|
2658 |
msgid "Report"
|
2659 |
msgstr "Export"
|
2660 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2661 |
#: app/features/mec.php:440
|
2662 |
msgid "Add Shortcode"
|
2663 |
msgstr "Přidat zkrácený kód"
|
@@ -2694,19 +2710,19 @@ msgstr "Filtrovat možnosti"
|
|
2694 |
msgid "Search Form"
|
2695 |
msgstr "Vyhledávací formulář"
|
2696 |
|
2697 |
-
#: app/features/mec.php:
|
2698 |
msgid "Display content's images as Popup"
|
2699 |
msgstr "Zobrazit obrázky obsahu jako vyskakovací okno"
|
2700 |
|
2701 |
-
#: app/features/mec.php:
|
2702 |
msgid "Single Event Display Method"
|
2703 |
msgstr "Metoda zobrazení jedné události"
|
2704 |
|
2705 |
-
#: app/features/mec.php:
|
2706 |
msgid "Separate Window"
|
2707 |
msgstr "Samostatné okno"
|
2708 |
|
2709 |
-
#: app/features/mec.php:
|
2710 |
msgid "Modal 1"
|
2711 |
msgstr "Modal 1"
|
2712 |
|
@@ -3025,7 +3041,7 @@ msgstr "Ohodnoťe doplněk ★★★★★"
|
|
3025 |
msgid "Update"
|
3026 |
msgstr "Aktualizovat"
|
3027 |
|
3028 |
-
#: app/features/mec/dashboard.php:96 app/features/mec/go-pro.php:
|
3029 |
#, php-format
|
3030 |
msgid ""
|
3031 |
"You're using %s version of Modern Events Calendar. To use advanced booking "
|
@@ -3036,16 +3052,16 @@ msgstr ""
|
|
3036 |
"pokročilý rezervační systém, moderní vzhledy jako Agenda, Rozvrh, Roční "
|
3037 |
"pohled, Dostupná místa atd., Měli byste upgradovat na verzi Pro."
|
3038 |
|
3039 |
-
#: app/features/mec/dashboard.php:96 app/features/mec/go-pro.php:
|
3040 |
msgid "lite"
|
3041 |
msgstr " omezenou"
|
3042 |
|
3043 |
-
#: app/features/mec/dashboard.php:99 app/features/mec/go-pro.php:
|
3044 |
#: app/features/mec/support.php:126
|
3045 |
msgid "GO PREMIUM"
|
3046 |
msgstr "PŘEJÍT NA PREMIUM"
|
3047 |
|
3048 |
-
#: app/features/mec/dashboard.php:102 app/features/mec/go-pro.php:
|
3049 |
#, php-format
|
3050 |
msgid ""
|
3051 |
"Easily get a discount coupon by rating us on %s or following and reposting "
|
@@ -3054,11 +3070,11 @@ msgstr ""
|
|
3054 |
"Jednoduše získejte slevový kupón tím, že nás ohodnocíte na% s nebo poté a "
|
3055 |
"uložíte nás na sociální média. Stačí poslat screenshot do % s a obdržíte % s"
|
3056 |
|
3057 |
-
#: app/features/mec/dashboard.php:102 app/features/mec/go-pro.php:
|
3058 |
msgid "WordPress"
|
3059 |
msgstr "WordPress"
|
3060 |
|
3061 |
-
#: app/features/mec/dashboard.php:102 app/features/mec/go-pro.php:
|
3062 |
msgid "Copouns!"
|
3063 |
msgstr "Kupóny!"
|
3064 |
|
@@ -3143,10 +3159,6 @@ msgstr "Celkový prodej %s"
|
|
3143 |
msgid "Change Log"
|
3144 |
msgstr "Změna logu"
|
3145 |
|
3146 |
-
#: app/features/mec/go-pro.php:9
|
3147 |
-
msgid "Go Pro"
|
3148 |
-
msgstr ""
|
3149 |
-
|
3150 |
#: app/features/mec/ie.php:21
|
3151 |
msgid ""
|
3152 |
"Insert your backup files below and press import to restore your site's "
|
@@ -4075,54 +4087,53 @@ msgstr "Zobrazit vyhledávací formulář"
|
|
4075 |
#: app/features/mec/meta_boxes/search_form.php:192
|
4076 |
#: app/features/mec/meta_boxes/search_form.php:199
|
4077 |
#: app/features/mec/meta_boxes/search_form.php:206
|
4078 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4079 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4080 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4081 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4082 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4083 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4084 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4085 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4086 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4087 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4088 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4089 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4090 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4091 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4092 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4093 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4094 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4095 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4096 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4097 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4098 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4099 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4100 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4101 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4102 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4103 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4104 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4105 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4106 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4107 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4108 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4109 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4110 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4111 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4112 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4113 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4114 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4115 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4116 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4117 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4118 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4119 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4120 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4121 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4122 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4123 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4124 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4125 |
-
#: app/features/mec/meta_boxes/search_form.php:577
|
4126 |
#: app/features/mec/meta_boxes/search_form.php:584
|
4127 |
#: app/features/mec/meta_boxes/search_form.php:591
|
4128 |
#: app/features/mec/meta_boxes/search_form.php:598
|
@@ -4130,14 +4141,15 @@ msgstr "Zobrazit vyhledávací formulář"
|
|
4130 |
#: app/features/mec/meta_boxes/search_form.php:612
|
4131 |
#: app/features/mec/meta_boxes/search_form.php:619
|
4132 |
#: app/features/mec/meta_boxes/search_form.php:626
|
4133 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4134 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4135 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4136 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4137 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4138 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4139 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4140 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
|
|
4141 |
#: app/features/mec/modules.php:125 app/features/mec/settings.php:101
|
4142 |
#: app/features/mec/settings.php:421
|
4143 |
msgid "Disabled"
|
@@ -4146,14 +4158,14 @@ msgstr "Zakázaný"
|
|
4146 |
#: app/features/mec/meta_boxes/search_form.php:52
|
4147 |
#: app/features/mec/meta_boxes/search_form.php:114
|
4148 |
#: app/features/mec/meta_boxes/search_form.php:176
|
4149 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4150 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4151 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4152 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4153 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4154 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4155 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4156 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4157 |
#: app/features/mec/settings.php:827 app/features/mec/single.php:245
|
4158 |
#: app/features/search.php:83 app/features/speakers.php:61
|
4159 |
#: app/features/speakers.php:269 app/libraries/main.php:5343
|
@@ -4164,14 +4176,14 @@ msgstr "Řečník"
|
|
4164 |
#: app/features/mec/meta_boxes/search_form.php:59
|
4165 |
#: app/features/mec/meta_boxes/search_form.php:121
|
4166 |
#: app/features/mec/meta_boxes/search_form.php:183
|
4167 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4168 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4169 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4170 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4171 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4172 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4173 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4174 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4175 |
#: app/features/mec/settings.php:834 app/features/mec/single.php:254
|
4176 |
#: app/features/search.php:88 app/libraries/skins.php:969
|
4177 |
msgid "Tag"
|
@@ -4180,50 +4192,50 @@ msgstr "Štítek"
|
|
4180 |
#: app/features/mec/meta_boxes/search_form.php:73
|
4181 |
#: app/features/mec/meta_boxes/search_form.php:135
|
4182 |
#: app/features/mec/meta_boxes/search_form.php:197
|
4183 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4184 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4185 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4186 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4187 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4188 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4189 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4190 |
msgid "Month Filter"
|
4191 |
msgstr "Měsíční filtr"
|
4192 |
|
4193 |
#: app/features/mec/meta_boxes/search_form.php:80
|
4194 |
#: app/features/mec/meta_boxes/search_form.php:142
|
4195 |
#: app/features/mec/meta_boxes/search_form.php:204
|
4196 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4197 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4198 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4199 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4200 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4201 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4202 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4203 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4204 |
msgid "Text Search"
|
4205 |
msgstr "Vyhledat text"
|
4206 |
|
4207 |
#: app/features/mec/meta_boxes/search_form.php:83
|
4208 |
#: app/features/mec/meta_boxes/search_form.php:145
|
4209 |
#: app/features/mec/meta_boxes/search_form.php:207
|
4210 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4211 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4212 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4213 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4214 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4215 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4216 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4217 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4218 |
msgid "Text Input"
|
4219 |
msgstr "Zadávání textu"
|
4220 |
|
4221 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4222 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4223 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4224 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4225 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4226 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4227 |
msgid "No Search Options"
|
4228 |
msgstr "Žádné možnosti vyhledávání"
|
4229 |
|
@@ -6390,7 +6402,7 @@ msgid "eg. https://webnus.net"
|
|
6390 |
msgstr "např. https://webnus.net"
|
6391 |
|
6392 |
#: app/features/organizers.php:312 app/libraries/main.php:5371
|
6393 |
-
#: app/skins/single.php:
|
6394 |
msgid "Other Organizers"
|
6395 |
msgstr "Další organizátoři"
|
6396 |
|
@@ -6449,7 +6461,7 @@ msgid "Prev"
|
|
6449 |
msgstr ""
|
6450 |
|
6451 |
#: app/features/popup/shortcode.php:373 app/modules/booking/steps/form.php:179
|
6452 |
-
#: app/modules/booking/steps/tickets.php:
|
6453 |
#: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:234
|
6454 |
msgid "Next"
|
6455 |
msgstr "Další"
|
@@ -6533,7 +6545,7 @@ msgstr "Žádný výsledek vyhledávání."
|
|
6533 |
#: app/features/search_bar/search_result.php:11
|
6534 |
#: app/libraries/notifications.php:951 app/libraries/render.php:488
|
6535 |
#: app/modules/local-time/details.php:48 app/modules/next-event/details.php:104
|
6536 |
-
#: app/skins/single.php:160 app/skins/single.php:
|
6537 |
#: app/skins/single/default.php:108 app/skins/single/default.php:331
|
6538 |
#: app/skins/single/m1.php:43 app/skins/single/modern.php:198
|
6539 |
#, fuzzy
|
@@ -6617,12 +6629,12 @@ msgstr ""
|
|
6617 |
msgid "%s Price"
|
6618 |
msgstr "%s Cena"
|
6619 |
|
6620 |
-
#: app/libraries/book.php:
|
6621 |
msgid "Discount"
|
6622 |
msgstr "Sleva"
|
6623 |
|
6624 |
-
#: app/libraries/book.php:
|
6625 |
-
#: app/modules/booking/default.php:
|
6626 |
msgid "Download Invoice"
|
6627 |
msgstr "Stáhnout fakturu"
|
6628 |
|
@@ -7236,8 +7248,8 @@ msgstr "Registrační tlačítko"
|
|
7236 |
#: app/skins/grid/render.php:124 app/skins/grid/render.php:171
|
7237 |
#: app/skins/grid/render.php:215 app/skins/grid/render.php:244
|
7238 |
#: app/skins/list/render.php:109 app/skins/list/render.php:195
|
7239 |
-
#: app/skins/masonry/render.php:188 app/skins/single.php:
|
7240 |
-
#: app/skins/single.php:
|
7241 |
#: app/skins/single/default.php:262 app/skins/single/default.php:483
|
7242 |
#: app/skins/single/default.php:485 app/skins/single/m1.php:140
|
7243 |
#: app/skins/single/m1.php:142 app/skins/single/m2.php:66
|
@@ -7452,21 +7464,21 @@ msgstr "Vyplňte informace o dalších účastnících, jako v prvním formulá
|
|
7452 |
msgid "Thanks for your booking."
|
7453 |
msgstr "Děkujeme za vaši rezervaci."
|
7454 |
|
7455 |
-
#: app/modules/booking/steps/tickets.php:
|
7456 |
msgid "Book Event"
|
7457 |
msgstr "Rezervovat událost"
|
7458 |
|
7459 |
-
#: app/modules/booking/steps/tickets.php:
|
7460 |
#, php-format
|
7461 |
msgid "Available %s: <span>%s</span>"
|
7462 |
msgstr "K dispozici %s: <span>%s</span>"
|
7463 |
|
7464 |
-
#: app/modules/booking/steps/tickets.php:
|
7465 |
#, php-format
|
7466 |
msgid "The %s ticket sales has stopped!"
|
7467 |
msgstr ""
|
7468 |
|
7469 |
-
#: app/modules/booking/steps/tickets.php:
|
7470 |
#, php-format
|
7471 |
msgid "The %s ticket is sold out. You can try another ticket or another date."
|
7472 |
msgstr ""
|
@@ -7480,15 +7492,15 @@ msgstr "Událost je ukončena."
|
|
7480 |
msgid "The event is ongoing."
|
7481 |
msgstr "Událost právě probíhá."
|
7482 |
|
7483 |
-
#: app/modules/googlemap/details.php:
|
7484 |
msgid "Address from ..."
|
7485 |
msgstr "Adresa od ..."
|
7486 |
|
7487 |
-
#: app/modules/googlemap/details.php:
|
7488 |
msgid "Get Directions"
|
7489 |
msgstr "Získat směr"
|
7490 |
|
7491 |
-
#: app/modules/links/details.php:17 app/skins/single.php:
|
7492 |
msgid "Share this event"
|
7493 |
msgstr "Sdílet tuto událost"
|
7494 |
|
@@ -7515,7 +7527,7 @@ msgstr "Další výskyt"
|
|
7515 |
msgid "Go to occurrence page"
|
7516 |
msgstr "Přejít na stránku výskytu"
|
7517 |
|
7518 |
-
#: app/modules/next-event/details.php:98 app/skins/single.php:
|
7519 |
#: app/skins/single/default.php:102 app/skins/single/default.php:325
|
7520 |
#: app/skins/single/m1.php:37 app/skins/single/modern.php:192
|
7521 |
msgid "Time"
|
@@ -7572,15 +7584,15 @@ msgstr "Viditelnost"
|
|
7572 |
#: app/skins/agenda/tpl.php:66 app/skins/agenda/tpl.php:70
|
7573 |
#: app/skins/carousel/tpl.php:46 app/skins/custom/tpl.php:62
|
7574 |
#: app/skins/custom/tpl.php:66 app/skins/grid/tpl.php:62
|
7575 |
-
#: app/skins/grid/tpl.php:66 app/skins/list/tpl.php:
|
7576 |
-
#: app/skins/list/tpl.php:
|
7577 |
#: app/skins/masonry/tpl.php:66 app/skins/slider/tpl.php:44
|
7578 |
#: app/skins/timeline/tpl.php:56 app/skins/timeline/tpl.php:60
|
7579 |
msgid "No event found!"
|
7580 |
msgstr "Nebyla nalezena žádná událost!"
|
7581 |
|
7582 |
#: app/skins/agenda/tpl.php:75 app/skins/custom/tpl.php:71
|
7583 |
-
#: app/skins/grid/tpl.php:71 app/skins/list/tpl.php:
|
7584 |
#: app/skins/masonry/tpl.php:71 app/skins/timeline/tpl.php:65
|
7585 |
#: app/skins/yearly_view/render.php:124
|
7586 |
msgid "Load More"
|
@@ -7637,31 +7649,31 @@ msgstr "Událost pro %s"
|
|
7637 |
msgid "No Events"
|
7638 |
msgstr "Žádné události"
|
7639 |
|
7640 |
-
#: app/skins/single.php:
|
7641 |
msgid "Home"
|
7642 |
msgstr "Domů"
|
7643 |
|
7644 |
-
#: app/skins/single.php:
|
7645 |
#: app/skins/single/m1.php:261 app/skins/single/m2.php:182
|
7646 |
#: app/skins/single/modern.php:270
|
7647 |
msgid "Sold out!"
|
7648 |
msgstr "Vyprodáno!"
|
7649 |
|
7650 |
-
#: app/skins/single.php:
|
7651 |
#: app/skins/single/default.php:227 app/skins/single/default.php:450
|
7652 |
#: app/skins/single/m1.php:109 app/skins/single/m2.php:35
|
7653 |
#: app/skins/single/modern.php:44
|
7654 |
msgid "Phone"
|
7655 |
msgstr "Telefon"
|
7656 |
|
7657 |
-
#: app/skins/single.php:
|
7658 |
#: app/skins/single/default.php:241 app/skins/single/default.php:464
|
7659 |
#: app/skins/single/m1.php:123 app/skins/single/m2.php:49
|
7660 |
#: app/skins/single/modern.php:58
|
7661 |
msgid "Website"
|
7662 |
msgstr "Webová stránka"
|
7663 |
|
7664 |
-
#: app/skins/single.php:
|
7665 |
msgid "Speakers:"
|
7666 |
msgstr "Řečník:"
|
7667 |
|
@@ -7847,11 +7859,6 @@ msgstr "http://webnus.net"
|
|
7847 |
#~ msgid "Book Date"
|
7848 |
#~ msgstr "Styl rezervace"
|
7849 |
|
7850 |
-
#, fuzzy
|
7851 |
-
#~| msgid "End Time"
|
7852 |
-
#~ msgid "Order Time"
|
7853 |
-
#~ msgstr "Konec"
|
7854 |
-
|
7855 |
#, fuzzy
|
7856 |
#~| msgid "Ticket"
|
7857 |
#~ msgid " - Ticket"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar Lite\n"
|
4 |
+
"POT-Creation-Date: 2020-02-18 15:15+0330\n"
|
5 |
+
"PO-Revision-Date: 2020-02-18 15:17+0330\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: cs_CZ\n"
|
73 |
msgid "Settings"
|
74 |
msgstr "Nastavení"
|
75 |
|
76 |
+
#: app/features/contextual.php:62 app/features/events.php:2452
|
77 |
#: app/features/mec/booking.php:448 app/features/mec/support.php:29
|
78 |
#: app/libraries/main.php:560
|
79 |
msgid "Booking Form"
|
315 |
msgid "No events found in Trash!"
|
316 |
msgstr "V koši nebyly nalezeny žádné události!"
|
317 |
|
318 |
+
#: app/features/events.php:182 app/features/events.php:3301
|
319 |
#: app/features/mec/meta_boxes/display_options.php:959
|
320 |
#: app/features/mec/meta_boxes/search_form.php:31
|
321 |
#: app/features/mec/meta_boxes/search_form.php:93
|
322 |
#: app/features/mec/meta_boxes/search_form.php:155
|
323 |
+
#: app/features/mec/meta_boxes/search_form.php:217
|
324 |
+
#: app/features/mec/meta_boxes/search_form.php:279
|
325 |
+
#: app/features/mec/meta_boxes/search_form.php:341
|
326 |
+
#: app/features/mec/meta_boxes/search_form.php:403
|
327 |
+
#: app/features/mec/meta_boxes/search_form.php:458
|
328 |
+
#: app/features/mec/meta_boxes/search_form.php:520
|
329 |
+
#: app/features/mec/meta_boxes/search_form.php:582
|
330 |
+
#: app/features/mec/meta_boxes/search_form.php:680
|
331 |
#: app/features/mec/settings.php:808 app/features/mec/single.php:232
|
332 |
#: app/features/search.php:68 app/libraries/main.php:5335
|
333 |
+
#: app/libraries/skins.php:865 app/skins/single.php:570
|
334 |
#: app/skins/single/default.php:192 app/skins/single/default.php:415
|
335 |
#: app/skins/single/m1.php:184 app/skins/single/m2.php:110
|
336 |
#: app/skins/single/modern.php:118
|
337 |
msgid "Category"
|
338 |
msgstr "Kategorie"
|
339 |
|
340 |
+
#: app/features/events.php:183 app/features/events.php:3256
|
341 |
#: app/features/fes/form.php:757 app/features/mec.php:403
|
342 |
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5334
|
343 |
msgid "Categories"
|
427 |
msgid "Event Repeating"
|
428 |
msgstr "Opakování události"
|
429 |
|
430 |
+
#: app/features/events.php:333 app/features/events.php:1269
|
431 |
+
#: app/features/mec/settings.php:718 app/skins/single.php:957
|
432 |
msgid "Hourly Schedule"
|
433 |
msgstr "Hodinový rozvrh"
|
434 |
|
444 |
msgid "Links"
|
445 |
msgstr "Odkaz"
|
446 |
|
447 |
+
#: app/features/events.php:336 app/features/events.php:3303
|
448 |
+
#: app/features/events.php:3494 app/features/events.php:3536
|
449 |
#: app/features/ix.php:3506 app/features/ix.php:3547
|
450 |
#: app/features/mec/meta_boxes/display_options.php:962
|
451 |
#: app/features/mec/meta_boxes/search_form.php:45
|
452 |
#: app/features/mec/meta_boxes/search_form.php:107
|
453 |
#: app/features/mec/meta_boxes/search_form.php:169
|
454 |
+
#: app/features/mec/meta_boxes/search_form.php:231
|
455 |
+
#: app/features/mec/meta_boxes/search_form.php:293
|
456 |
+
#: app/features/mec/meta_boxes/search_form.php:355
|
457 |
+
#: app/features/mec/meta_boxes/search_form.php:417
|
458 |
+
#: app/features/mec/meta_boxes/search_form.php:472
|
459 |
+
#: app/features/mec/meta_boxes/search_form.php:534
|
460 |
+
#: app/features/mec/meta_boxes/search_form.php:596
|
461 |
+
#: app/features/mec/meta_boxes/search_form.php:694
|
462 |
#: app/features/mec/settings.php:820 app/features/mec/single.php:236
|
463 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
464 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
465 |
#: app/features/organizers.php:271 app/features/search.php:78
|
466 |
#: app/libraries/main.php:5341 app/libraries/skins.php:917
|
467 |
+
#: app/skins/single.php:816 app/skins/single/default.php:217
|
468 |
#: app/skins/single/default.php:440 app/skins/single/m1.php:99
|
469 |
#: app/skins/single/m2.php:25 app/skins/single/modern.php:34
|
470 |
msgid "Organizer"
|
471 |
msgstr "Organizátor"
|
472 |
|
473 |
+
#: app/features/events.php:337 app/features/events.php:1155
|
474 |
#: app/features/fes/form.php:730 app/libraries/main.php:5368
|
475 |
+
#: app/skins/single.php:593 app/skins/single/default.php:126
|
476 |
#: app/skins/single/default.php:349 app/skins/single/m1.php:58
|
477 |
#: app/skins/single/modern.php:213
|
478 |
msgid "Cost"
|
486 |
msgid "Guest Data"
|
487 |
msgstr "Údaje hosta"
|
488 |
|
489 |
+
#: app/features/events.php:461 app/features/events.php:2434
|
490 |
+
#: app/features/events.php:3783 app/features/fes.php:223
|
491 |
#: app/features/fes/form.php:689 app/features/labels.php:178
|
492 |
#: app/features/mec/booking.php:45 app/features/organizers.php:279
|
493 |
#: app/features/profile/profile.php:180 app/libraries/notifications.php:1117
|
495 |
msgid "Name"
|
496 |
msgstr "Jméno"
|
497 |
|
498 |
+
#: app/features/events.php:462 app/features/events.php:2445
|
499 |
+
#: app/features/events.php:2521 app/features/events.php:3786
|
500 |
#: app/features/fes.php:223 app/features/fes/form.php:685
|
501 |
#: app/features/mec/booking.php:57 app/features/mec/booking.php:499
|
502 |
#: app/features/organizers.php:111 app/features/organizers.php:152
|
504 |
#: app/features/speakers.php:196 app/libraries/main.php:1547
|
505 |
#: app/libraries/main.php:1616 app/libraries/main.php:2843
|
506 |
#: app/libraries/notifications.php:1118 app/modules/booking/steps/form.php:46
|
507 |
+
#: app/modules/booking/steps/form.php:83 app/skins/single.php:833
|
508 |
+
#: app/skins/single.php:888 app/skins/single/default.php:234
|
509 |
#: app/skins/single/default.php:457 app/skins/single/m1.php:116
|
510 |
#: app/skins/single/m2.php:42 app/skins/single/modern.php:51
|
511 |
msgid "Email"
|
516 |
msgstr "Datum a čas"
|
517 |
|
518 |
#: app/features/events.php:473 app/features/events.php:479
|
519 |
+
#: app/features/events.php:3304 app/features/events.php:3494
|
520 |
+
#: app/features/events.php:3536 app/features/fes/form.php:247
|
521 |
#: app/features/fes/form.php:251 app/features/ix.php:3506
|
522 |
#: app/features/ix.php:3547 app/features/ix/import_g_calendar.php:38
|
523 |
#: app/features/mec/dashboard.php:401
|
540 |
msgstr "Počátečná den"
|
541 |
|
542 |
#: app/features/events.php:551 app/features/events.php:643
|
543 |
+
#: app/features/events.php:1707 app/features/events.php:1766
|
544 |
+
#: app/features/events.php:1959 app/features/events.php:1998
|
545 |
#: app/features/fes/form.php:279 app/features/fes/form.php:319
|
546 |
msgid "AM"
|
547 |
msgstr "dop."
|
548 |
|
549 |
#: app/features/events.php:558 app/features/events.php:650
|
550 |
+
#: app/features/events.php:1714 app/features/events.php:1773
|
551 |
+
#: app/features/events.php:1960 app/features/events.php:1999
|
552 |
#: app/features/fes/form.php:280 app/features/fes/form.php:320
|
553 |
msgid "PM"
|
554 |
msgstr "odp."
|
555 |
|
556 |
#: app/features/events.php:565 app/features/events.php:570
|
557 |
+
#: app/features/events.php:3305 app/features/events.php:3494
|
558 |
+
#: app/features/events.php:3536 app/features/fes/form.php:287
|
559 |
#: app/features/fes/form.php:291 app/features/ix.php:3506
|
560 |
#: app/features/ix.php:3547 app/features/ix/import_g_calendar.php:44
|
561 |
#: app/features/mec/dashboard.php:402
|
562 |
msgid "End Date"
|
563 |
msgstr "Konečný den"
|
564 |
|
565 |
+
#: app/features/events.php:665 app/features/fes/form.php:326
|
566 |
msgid "All Day Event"
|
567 |
msgstr "Celodenní událost"
|
568 |
|
569 |
+
#: app/features/events.php:675 app/features/fes/form.php:329
|
570 |
msgid "Hide Event Time"
|
571 |
msgstr "Skrýt čas události"
|
572 |
|
573 |
+
#: app/features/events.php:685 app/features/fes/form.php:332
|
574 |
msgid "Hide Event End Time"
|
575 |
msgstr "Skrýt čas ukončení události"
|
576 |
|
577 |
+
#: app/features/events.php:690 app/features/events.php:694
|
578 |
#: app/features/fes/form.php:336
|
579 |
msgid "Time Comment"
|
580 |
msgstr "Časový komentář"
|
581 |
|
582 |
+
#: app/features/events.php:695 app/features/fes/form.php:337
|
583 |
msgid ""
|
584 |
"It shows next to event time on single event page. You can insert Timezone "
|
585 |
"etc. in this field."
|
587 |
"Zobrazuje se vedle času události na stránce jedné události. Do tohoto pole "
|
588 |
"můžete vložit časové pásmo atd."
|
589 |
|
590 |
+
#: app/features/events.php:697 app/features/events.php:818
|
591 |
+
#: app/features/events.php:1118 app/features/events.php:1195
|
592 |
+
#: app/features/events.php:1494 app/features/events.php:1586
|
593 |
+
#: app/features/events.php:1794 app/features/events.php:1809
|
594 |
+
#: app/features/events.php:2018 app/features/events.php:2031
|
595 |
+
#: app/features/events.php:2182 app/features/events.php:2218
|
596 |
+
#: app/features/events.php:2316 app/features/events.php:2331
|
597 |
+
#: app/features/events.php:2361 app/features/events.php:2374
|
598 |
#: app/features/fes/form.php:641 app/features/locations.php:301
|
599 |
#: app/features/mec/booking.php:108 app/features/mec/booking.php:158
|
600 |
#: app/features/mec/booking.php:171 app/features/mec/booking.php:187
|
660 |
#: app/features/mec/single.php:125 app/features/mec/single.php:178
|
661 |
#: app/features/mec/styling.php:203 app/features/mec/styling.php:220
|
662 |
#: app/features/mec/styling.php:233 app/features/organizers.php:272
|
663 |
+
#: app/skins/single.php:678 app/skins/single/default.php:141
|
664 |
#: app/skins/single/default.php:364 app/skins/single/m1.php:206
|
665 |
#: app/skins/single/m2.php:133 app/skins/single/modern.php:141
|
666 |
msgid "Read More"
|
667 |
msgstr "Číst více"
|
668 |
|
669 |
+
#: app/features/events.php:705
|
670 |
msgid "Repeating"
|
671 |
msgstr "Opakování"
|
672 |
|
673 |
+
#: app/features/events.php:714
|
674 |
msgid "Event Repeating (Recurring events)"
|
675 |
msgstr "Opakování události (opakující se události)"
|
676 |
|
677 |
+
#: app/features/events.php:718 app/features/fes/form.php:347
|
678 |
msgid "Repeats"
|
679 |
msgstr "Opakování"
|
680 |
|
681 |
+
#: app/features/events.php:726 app/features/fes/form.php:349
|
682 |
#: app/features/mec/dashboard.php:404
|
683 |
#: app/skins/default_full_calendar/tpl.php:69
|
684 |
#: app/skins/full_calendar/tpl.php:110
|
685 |
msgid "Daily"
|
686 |
msgstr "Děnně"
|
687 |
|
688 |
+
#: app/features/events.php:733 app/features/fes/form.php:350
|
689 |
msgid "Every Weekday"
|
690 |
msgstr "Každý všední den"
|
691 |
|
692 |
+
#: app/features/events.php:740 app/features/fes/form.php:351
|
693 |
msgid "Every Weekend"
|
694 |
msgstr "Každý víkend"
|
695 |
|
696 |
+
#: app/features/events.php:747 app/features/fes/form.php:352
|
697 |
msgid "Certain Weekdays"
|
698 |
msgstr "Určité pracovní dny"
|
699 |
|
700 |
+
#: app/features/events.php:754 app/features/fes/form.php:353
|
701 |
#: app/skins/default_full_calendar/tpl.php:68
|
702 |
#: app/skins/full_calendar/tpl.php:109
|
703 |
msgid "Weekly"
|
704 |
msgstr "Týdně"
|
705 |
|
706 |
+
#: app/features/events.php:761 app/features/fes/form.php:354
|
707 |
#: app/features/mec/dashboard.php:405
|
708 |
#: app/skins/default_full_calendar/tpl.php:67
|
709 |
#: app/skins/full_calendar/tpl.php:108
|
710 |
msgid "Monthly"
|
711 |
msgstr "Měsíčně"
|
712 |
|
713 |
+
#: app/features/events.php:768 app/features/fes/form.php:355
|
714 |
#: app/features/mec/dashboard.php:406
|
715 |
#: app/skins/default_full_calendar/tpl.php:66
|
716 |
#: app/skins/full_calendar/tpl.php:107
|
717 |
msgid "Yearly"
|
718 |
msgstr "Ročně"
|
719 |
|
720 |
+
#: app/features/events.php:775 app/features/fes/form.php:356
|
721 |
msgid "Custom Days"
|
722 |
msgstr "Vlastní dny"
|
723 |
|
724 |
+
#: app/features/events.php:782 app/features/fes/form.php:357
|
725 |
msgid "Advanced"
|
726 |
msgstr "Pokročilé"
|
727 |
|
728 |
+
#: app/features/events.php:787 app/features/fes/form.php:361
|
729 |
msgid "Repeat Interval"
|
730 |
msgstr "Interval opakování"
|
731 |
|
732 |
+
#: app/features/events.php:789 app/features/fes/form.php:362
|
733 |
msgid "Repeat interval"
|
734 |
msgstr "Interval opakování"
|
735 |
|
736 |
+
#: app/features/events.php:793 app/features/fes/form.php:365
|
737 |
msgid "Week Days"
|
738 |
msgstr "Dny v týdnu"
|
739 |
|
740 |
+
#: app/features/events.php:808 app/features/events.php:1878
|
741 |
+
#: app/features/events.php:1906 app/features/events.php:2086
|
742 |
#: app/features/fes/form.php:377 app/features/ix/import_f_calendar.php:42
|
743 |
#: app/features/ix/import_g_calendar.php:51
|
744 |
#: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
|
745 |
msgid "Start"
|
746 |
msgstr "Začátek"
|
747 |
|
748 |
+
#: app/features/events.php:810 app/features/events.php:1882
|
749 |
+
#: app/features/events.php:1910 app/features/events.php:2090
|
750 |
#: app/features/fes/form.php:378
|
751 |
msgid "End"
|
752 |
msgstr "Konec"
|
753 |
|
754 |
+
#: app/features/events.php:812 app/features/events.php:1189
|
755 |
+
#: app/features/events.php:1300 app/features/events.php:1405
|
756 |
+
#: app/features/events.php:1861 app/features/events.php:2075
|
757 |
+
#: app/features/events.php:2155 app/features/events.php:2288
|
758 |
#: app/features/fes/form.php:379 app/features/fes/form.php:855
|
759 |
msgid "Add"
|
760 |
msgstr "Přidat"
|
761 |
|
762 |
+
#: app/features/events.php:815
|
763 |
msgid "Custom Days Repeating"
|
764 |
msgstr "Opakování vlastních dnů"
|
765 |
|
766 |
+
#: app/features/events.php:816
|
767 |
msgid ""
|
768 |
"Add certain days to event occurrence dates. If you have single day event, "
|
769 |
"start and end date should be the same, If you have multiple day event the "
|
773 |
"datum zahájení a ukončení by mělo být stejné. Pokud máte vícedenní událost, "
|
774 |
"datum zahájení a ukončení musí odpovídat počátečnímu datu."
|
775 |
|
776 |
+
#: app/features/events.php:852 app/features/fes/form.php:405
|
777 |
msgid "First"
|
778 |
msgstr "První"
|
779 |
|
780 |
+
#: app/features/events.php:894 app/features/fes/form.php:447
|
781 |
msgid "Second"
|
782 |
msgstr "Druhá"
|
783 |
|
784 |
+
#: app/features/events.php:936 app/features/fes/form.php:489
|
785 |
msgid "Third"
|
786 |
msgstr "Třetí"
|
787 |
|
788 |
+
#: app/features/events.php:978 app/features/fes/form.php:531
|
789 |
msgid "Fourth"
|
790 |
msgstr "Čtvrtá"
|
791 |
|
792 |
+
#: app/features/events.php:1020 app/features/fes/form.php:573
|
793 |
msgid "Last"
|
794 |
msgstr "Poslední"
|
795 |
|
796 |
+
#: app/features/events.php:1067 app/features/fes/form.php:619
|
797 |
msgid "Ends Repeat"
|
798 |
msgstr "Ukončení opakování"
|
799 |
|
800 |
+
#: app/features/events.php:1079 app/features/fes/form.php:623
|
801 |
msgid "Never"
|
802 |
msgstr "Nikdy"
|
803 |
|
804 |
# Možná Zapnuto
|
805 |
+
#: app/features/events.php:1091 app/features/fes/form.php:628
|
806 |
msgid "On"
|
807 |
msgstr "Na"
|
808 |
|
809 |
+
#: app/features/events.php:1107 app/features/fes/form.php:635
|
810 |
msgid "After"
|
811 |
msgstr "Po"
|
812 |
|
813 |
+
#: app/features/events.php:1111 app/features/events.php:1115
|
814 |
#: app/features/fes/form.php:637 app/features/fes/form.php:640
|
815 |
msgid "Occurrences times"
|
816 |
msgstr "Časy výskytu"
|
817 |
|
818 |
+
#: app/features/events.php:1116 app/features/fes/form.php:641
|
819 |
msgid ""
|
820 |
"The event will finish after certain repeats. For example if you set it to "
|
821 |
"10, the event will finish after 10 repeats."
|
823 |
"Událost bude ukončena po určitých opakováních. Pokud například nastavíte "
|
824 |
"hodnotu 10, událost skončí po 10 opakováních."
|
825 |
|
826 |
+
#: app/features/events.php:1131 app/features/fes/form.php:654
|
827 |
#, fuzzy
|
828 |
#| msgid "Next Occurrence of Other Events"
|
829 |
msgid "Show only one occurrence of this event"
|
830 |
msgstr "Další výskyt dalších událostí"
|
831 |
|
832 |
+
#: app/features/events.php:1151 app/features/events.php:3494
|
833 |
+
#: app/features/events.php:3536 app/features/fes/form.php:727
|
834 |
#: app/features/ix.php:3506 app/features/ix.php:3547
|
835 |
#: app/features/mec/settings.php:664 app/libraries/main.php:5367
|
836 |
#: app/widgets/single.php:103
|
837 |
msgid "Event Cost"
|
838 |
msgstr "Cena události"
|
839 |
|
840 |
+
#: app/features/events.php:1176
|
841 |
msgid "Exceptional Days (Exclude Dates)"
|
842 |
msgstr "Výjimečné dny (vyjma dat)"
|
843 |
|
844 |
+
#: app/features/events.php:1182 app/features/events.php:1192
|
845 |
msgid "Exclude certain days"
|
846 |
msgstr "Vyloučit určité dny"
|
847 |
|
848 |
+
#: app/features/events.php:1187 app/features/events.php:2522
|
849 |
#: app/features/fes.php:223 app/features/mec/booking.php:500
|
850 |
#: app/features/profile/profile.php:53 app/libraries/main.php:2253
|
851 |
+
#: app/libraries/main.php:2901 app/modules/booking/steps/tickets.php:23
|
852 |
+
#: app/modules/next-event/details.php:93 app/skins/single.php:652
|
853 |
#: app/skins/single/default.php:85 app/skins/single/default.php:308
|
854 |
#: app/skins/single/m1.php:20 app/skins/single/modern.php:175
|
855 |
msgid "Date"
|
856 |
msgstr "Datum"
|
857 |
|
858 |
+
#: app/features/events.php:1193
|
859 |
msgid ""
|
860 |
"Exclude certain days from event occurrence dates. Please note that you can "
|
861 |
"exclude only single day occurrences and you cannot exclude one day from "
|
865 |
"můžete vyloučit pouze výskyty za jeden den a nelze vyloučit jeden den z "
|
866 |
"vícedenních výskytů."
|
867 |
|
868 |
+
#: app/features/events.php:1247 app/libraries/render.php:506
|
869 |
msgid "Day 1"
|
870 |
msgstr "Den 1"
|
871 |
|
872 |
+
#: app/features/events.php:1273
|
873 |
msgid "Add Day"
|
874 |
msgstr "Přidat den"
|
875 |
|
876 |
+
#: app/features/events.php:1274
|
877 |
msgid ""
|
878 |
"Add new days for schedule. For example if your event is multiple days, you "
|
879 |
"can add a different schedule for each day!"
|
881 |
"Přidat nové dny pro rozvrh. Pokud je například vaše akce vícedenní, můžete "
|
882 |
"pro každý den přidat jiný rozvrh!"
|
883 |
|
884 |
+
#: app/features/events.php:1281
|
885 |
#, php-format
|
886 |
msgid "Day %s"
|
887 |
msgstr "Den %s"
|
888 |
|
889 |
+
#: app/features/events.php:1285 app/features/events.php:1324
|
890 |
+
#: app/features/events.php:1359 app/features/events.php:1391
|
891 |
+
#: app/features/events.php:1420 app/features/events.php:2303
|
892 |
+
#: app/features/events.php:2350 app/features/events.php:3300
|
893 |
+
#: app/features/events.php:3494 app/features/events.php:3536
|
894 |
#: app/features/fes/form.php:236 app/features/ix.php:3506
|
895 |
#: app/features/ix.php:3547 app/features/mec/booking.php:384
|
896 |
#: app/features/mec/booking.php:416 app/features/mec/styling.php:115
|
897 |
msgid "Title"
|
898 |
msgstr "Název"
|
899 |
|
900 |
+
#: app/features/events.php:1294 app/features/events.php:1331
|
901 |
+
#: app/features/events.php:1364 app/features/events.php:1399
|
902 |
+
#: app/features/events.php:1425 app/features/events.php:1892
|
903 |
+
#: app/features/events.php:1918 app/features/events.php:2096
|
904 |
+
#: app/features/events.php:2195 app/features/events.php:2231
|
905 |
+
#: app/features/events.php:2338 app/features/events.php:2380
|
906 |
#: app/features/mec/booking.php:327 app/features/mec/booking.php:356
|
907 |
#: app/features/mec/booking.php:407 app/features/mec/booking.php:439
|
908 |
#: app/libraries/main.php:2762 app/libraries/main.php:2792
|
915 |
msgid "Remove"
|
916 |
msgstr "Odstranit"
|
917 |
|
918 |
+
#: app/features/events.php:1301 app/features/events.php:1406
|
919 |
msgid "Add new hourly schedule row"
|
920 |
msgstr "Přidejte nový řádek rozvrhu hodin"
|
921 |
|
922 |
+
#: app/features/events.php:1316 app/features/events.php:1353
|
923 |
+
#: app/features/events.php:1415
|
924 |
msgid "From e.g. 8:15"
|
925 |
msgstr "Od např. 8:15"
|
926 |
|
927 |
+
#: app/features/events.php:1320 app/features/events.php:1356
|
928 |
+
#: app/features/events.php:1417
|
929 |
msgid "To e.g. 8:45"
|
930 |
msgstr "Do např. 8:45"
|
931 |
|
932 |
+
#: app/features/events.php:1328 app/features/events.php:1362
|
933 |
+
#: app/features/events.php:1423 app/features/events.php:1782
|
934 |
+
#: app/features/events.php:2007
|
935 |
msgid "Description"
|
936 |
msgstr "Popis"
|
937 |
|
938 |
+
#: app/features/events.php:1334 app/features/events.php:1367
|
939 |
+
#: app/features/events.php:1428 app/features/fes/form.php:851
|
940 |
#: app/features/mec.php:411 app/features/mec/modules.php:52
|
941 |
#: app/features/mec/settings.php:712 app/features/speakers.php:62
|
942 |
#: app/libraries/main.php:565 app/libraries/main.php:5342
|
944 |
msgid "Speakers"
|
945 |
msgstr "Řečníci"
|
946 |
|
947 |
+
#: app/features/events.php:1387 app/features/events.php:1395
|
948 |
msgid "New Day"
|
949 |
msgstr "Nový den"
|
950 |
|
951 |
+
#: app/features/events.php:1459 app/features/fes/form.php:704
|
952 |
#: app/features/mec/settings.php:658
|
953 |
msgid "Event Links"
|
954 |
msgstr "Odkazy na událost"
|
955 |
|
956 |
+
#: app/features/events.php:1462 app/features/events.php:1468
|
957 |
#: app/features/fes/form.php:706 app/libraries/main.php:5365
|
958 |
msgid "Event Link"
|
959 |
msgstr "Odkaz na událost"
|
960 |
|
961 |
+
#: app/features/events.php:1465 app/features/events.php:1481
|
962 |
#: app/features/fes/form.php:707 app/features/fes/form.php:712
|
963 |
msgid "eg. http://yoursite.com/your-event"
|
964 |
msgstr "např. http://yoursite.com/vase-udalost"
|
965 |
|
966 |
+
#: app/features/events.php:1469
|
967 |
msgid ""
|
968 |
"If you fill it, it will be replaced instead of default event page link. "
|
969 |
"Insert full link including http(s):// - Also, if you use advertising URL, "
|
973 |
"Vložte úplný odkaz včetně http (s): // - Pokud používáte reklamní adresu "
|
974 |
"URL, můžete také použít zkracovač URL"
|
975 |
|
976 |
+
#: app/features/events.php:1471
|
977 |
msgid "URL Shortener"
|
978 |
msgstr "Zkracovač URL"
|
979 |
|
980 |
+
#: app/features/events.php:1478 app/features/events.php:1491
|
981 |
#: app/features/fes/form.php:711 app/libraries/main.php:5366
|
982 |
+
#: app/skins/single.php:677 app/skins/single/default.php:140
|
983 |
#: app/skins/single/default.php:363 app/skins/single/m1.php:205
|
984 |
#: app/skins/single/m2.php:132 app/skins/single/modern.php:140
|
985 |
#: app/widgets/single.php:107
|
986 |
msgid "More Info"
|
987 |
msgstr "Více info"
|
988 |
|
989 |
+
#: app/features/events.php:1484 app/features/fes/form.php:713
|
990 |
msgid "More Information"
|
991 |
msgstr "Více informací"
|
992 |
|
993 |
+
#: app/features/events.php:1486 app/features/fes/form.php:715
|
994 |
msgid "Current Window"
|
995 |
msgstr "Aktuální okno"
|
996 |
|
997 |
+
#: app/features/events.php:1487 app/features/fes/form.php:716
|
998 |
msgid "New Window"
|
999 |
msgstr "Nové okno"
|
1000 |
|
1001 |
+
#: app/features/events.php:1492 app/features/fes/form.php:718
|
1002 |
msgid ""
|
1003 |
"If you fill it, it will be shown in event details page as an optional link. "
|
1004 |
"Insert full link including http(s)://"
|
1006 |
"Pokud ji vyplníte, zobrazí se jako volitelný odkaz na stránce s podrobnostmi "
|
1007 |
"o události. Vložte celý odkaz včetně http (s): //"
|
1008 |
|
1009 |
+
#: app/features/events.php:1567 app/features/events.php:1582
|
1010 |
msgid "Total booking limits"
|
1011 |
msgstr "Celkové limity rezervace"
|
1012 |
|
1013 |
+
#: app/features/events.php:1579 app/features/events.php:1830
|
1014 |
+
#: app/features/events.php:2045 app/modules/booking/default.php:85
|
1015 |
+
#: app/modules/booking/steps/tickets.php:43
|
1016 |
#: app/skins/available_spot/tpl.php:158
|
1017 |
msgid "Unlimited"
|
1018 |
msgstr "Neomezené"
|
1019 |
|
1020 |
+
#: app/features/events.php:1585
|
1021 |
msgid ""
|
1022 |
"If you want to set a limit to all tickets, uncheck this checkbox and put a "
|
1023 |
"limitation number."
|
1025 |
"Pokud chcete nastavit limit na všechny lístky, zrušte zaškrtnutí tohoto "
|
1026 |
"políčka a zadejte číslo omezení."
|
1027 |
|
1028 |
+
#: app/features/events.php:1587
|
1029 |
msgid "Read About A Booking System"
|
1030 |
msgstr "Přečtěte si o rezervačním systému"
|
1031 |
|
1032 |
+
#: app/features/events.php:1595
|
1033 |
msgid "100"
|
1034 |
msgstr "100"
|
1035 |
|
1036 |
+
#: app/features/events.php:1600
|
1037 |
msgid "Total user booking limits"
|
1038 |
msgstr "Celkové limity rezervace uživatelů"
|
1039 |
|
1040 |
+
#: app/features/events.php:1612 app/features/events.php:2144
|
1041 |
+
#: app/features/events.php:2276 app/features/events.php:2464
|
1042 |
msgid "Inherit from global options"
|
1043 |
msgstr "Zdědí z globálních možností"
|
1044 |
|
1045 |
+
#: app/features/events.php:1615
|
1046 |
msgid "12"
|
1047 |
msgstr "12"
|
1048 |
|
1049 |
+
#: app/features/events.php:1634 app/libraries/book.php:60
|
1050 |
+
#: app/libraries/main.php:5370 app/modules/booking/steps/tickets.php:43
|
1051 |
msgid "Tickets"
|
1052 |
msgstr "Vstupenky"
|
1053 |
|
1054 |
+
#: app/features/events.php:1637
|
1055 |
msgid ""
|
1056 |
"You're translating an event so MEC will use the original event for tickets "
|
1057 |
"and booking. You can only translate the ticket name and description. Please "
|
1061 |
"vstupenek a rezervace. Můžete přeložit pouze název a popis vstupenky. Prosím "
|
1062 |
"definujte určité vstupenky, které jste definovali v původní události."
|
1063 |
|
1064 |
+
#: app/features/events.php:1642
|
1065 |
#, fuzzy
|
1066 |
#| msgid "Ticket"
|
1067 |
msgid "Add Ticket"
|
1068 |
msgstr "Vstupenka"
|
1069 |
|
1070 |
+
#: app/features/events.php:1656 app/features/events.php:1932
|
1071 |
msgid "Ticket Name"
|
1072 |
msgstr "Název vstupenky"
|
1073 |
|
1074 |
+
#: app/features/events.php:1661 app/features/events.php:1936
|
1075 |
+
#: app/features/events.php:3494 app/features/events.php:3536
|
1076 |
#: app/features/ix.php:3506 app/features/ix.php:3547
|
1077 |
msgid "Start Time"
|
1078 |
msgstr "Začátek"
|
1079 |
|
1080 |
+
#: app/features/events.php:1720 app/features/events.php:1966
|
1081 |
+
#: app/features/events.php:3494 app/features/events.php:3536
|
1082 |
#: app/features/ix.php:3506 app/features/ix.php:3547
|
1083 |
msgid "End Time"
|
1084 |
msgstr "Konec"
|
1085 |
|
1086 |
+
#: app/features/events.php:1787 app/features/events.php:1791
|
1087 |
+
#: app/features/events.php:1886 app/features/events.php:1913
|
1088 |
+
#: app/features/events.php:2012 app/features/events.php:2015
|
1089 |
+
#: app/features/events.php:2092 app/features/events.php:2309
|
1090 |
+
#: app/features/events.php:2313 app/features/events.php:2355
|
1091 |
+
#: app/features/events.php:2358 app/features/mec/booking.php:388
|
1092 |
#: app/features/mec/booking.php:391 app/features/mec/booking.php:420
|
1093 |
#: app/features/mec/booking.php:423
|
1094 |
msgid "Price"
|
1095 |
msgstr "Cena"
|
1096 |
|
1097 |
+
#: app/features/events.php:1792 app/features/events.php:2016
|
1098 |
msgid "Insert 0 for free ticket. Only numbers please."
|
1099 |
msgstr "Vložte 0 pro vstupenku zdarma. Prosím pouze čísla."
|
1100 |
|
1101 |
+
#: app/features/events.php:1801 app/features/events.php:1806
|
1102 |
+
#: app/features/events.php:2025 app/features/events.php:2028
|
1103 |
msgid "Price Label"
|
1104 |
msgstr "Cenový štítek"
|
1105 |
|
1106 |
+
#: app/features/events.php:1807 app/features/events.php:2029
|
1107 |
msgid "For showing on website. e.g. $15"
|
1108 |
msgstr "Pro zobrazení na webu. např. 15 $"
|
1109 |
|
1110 |
+
#: app/features/events.php:1817 app/features/events.php:2039
|
1111 |
msgid "Available Tickets"
|
1112 |
msgstr "Dostupné vstupenky"
|
1113 |
|
1114 |
+
#: app/features/events.php:1834 app/features/events.php:2049
|
1115 |
#, fuzzy
|
1116 |
#| msgid "Maximum Per Ticket"
|
1117 |
msgid "Minimum Ticket e.g. 3"
|
1118 |
msgstr "Maximum na jednu vstupenku"
|
1119 |
|
1120 |
+
#: app/features/events.php:1837 app/features/events.php:2052
|
1121 |
#, fuzzy
|
1122 |
#| msgid "Maximum Per Ticket"
|
1123 |
msgid "MinimumTicket"
|
1124 |
msgstr "Maximum na jednu vstupenku"
|
1125 |
|
1126 |
+
#: app/features/events.php:1839 app/features/events.php:2054
|
1127 |
msgid "Set a number for the minimum ticket reservation"
|
1128 |
msgstr ""
|
1129 |
|
1130 |
+
#: app/features/events.php:1847 app/features/events.php:2062
|
1131 |
msgid "e.g. 0"
|
1132 |
msgstr ""
|
1133 |
|
1134 |
+
#: app/features/events.php:1849 app/features/events.php:2064
|
1135 |
#, fuzzy
|
1136 |
#| msgid "Days"
|
1137 |
msgid "Day"
|
1138 |
msgstr "Dny"
|
1139 |
|
1140 |
+
#: app/features/events.php:1850 app/features/events.php:2065
|
1141 |
msgid "Hour"
|
1142 |
msgstr ""
|
1143 |
|
1144 |
+
#: app/features/events.php:1852 app/features/events.php:2067
|
1145 |
#, php-format
|
1146 |
msgid "Stop selling ticket %s before event start."
|
1147 |
msgstr ""
|
1148 |
|
1149 |
+
#: app/features/events.php:1859 app/features/events.php:2073
|
1150 |
msgid "Price per Date"
|
1151 |
msgstr "Cena za datum"
|
1152 |
|
1153 |
+
#: app/features/events.php:1890 app/features/events.php:1916
|
1154 |
+
#: app/features/events.php:2094 app/features/labels.php:60
|
1155 |
#: app/features/mec/meta_boxes/display_options.php:960
|
1156 |
#: app/features/mec/meta_boxes/search_form.php:66
|
1157 |
#: app/features/mec/meta_boxes/search_form.php:128
|
1158 |
#: app/features/mec/meta_boxes/search_form.php:190
|
1159 |
+
#: app/features/mec/meta_boxes/search_form.php:252
|
1160 |
+
#: app/features/mec/meta_boxes/search_form.php:314
|
1161 |
+
#: app/features/mec/meta_boxes/search_form.php:376
|
1162 |
+
#: app/features/mec/meta_boxes/search_form.php:438
|
1163 |
+
#: app/features/mec/meta_boxes/search_form.php:493
|
1164 |
+
#: app/features/mec/meta_boxes/search_form.php:555
|
1165 |
+
#: app/features/mec/meta_boxes/search_form.php:617
|
1166 |
+
#: app/features/mec/meta_boxes/search_form.php:715
|
1167 |
#: app/features/mec/settings.php:840 app/features/mec/single.php:250
|
1168 |
#: app/libraries/skins.php:995
|
1169 |
msgid "Label"
|
1170 |
msgstr "Štítek"
|
1171 |
|
1172 |
+
#: app/features/events.php:2132
|
1173 |
msgid "Fees"
|
1174 |
msgstr "Poplatky"
|
1175 |
|
1176 |
+
#: app/features/events.php:2169 app/features/events.php:2207
|
1177 |
#: app/features/mec/booking.php:307 app/features/mec/booking.php:336
|
1178 |
msgid "Fee Title"
|
1179 |
msgstr "Název poplatku"
|
1180 |
|
1181 |
+
#: app/features/events.php:2175 app/features/events.php:2179
|
1182 |
+
#: app/features/events.php:2212 app/features/events.php:2215
|
1183 |
#: app/features/mec/booking.php:311 app/features/mec/booking.php:314
|
1184 |
#: app/features/mec/booking.php:340 app/features/mec/booking.php:343
|
1185 |
msgid "Amount"
|
1186 |
msgstr "Množství"
|
1187 |
|
1188 |
+
#: app/features/events.php:2180 app/features/events.php:2216
|
1189 |
#: app/features/mec/booking.php:315 app/features/mec/booking.php:344
|
1190 |
msgid ""
|
1191 |
"Fee amount, considered as fixed amount if you set the type to amount "
|
1194 |
"Výše poplatku, je považovaná za pevnou částku, pokud nastavíte typ na částku "
|
1195 |
"odpovídající procentuální hodnotě"
|
1196 |
|
1197 |
+
#: app/features/events.php:2189 app/features/events.php:2225
|
1198 |
#: app/features/mec/booking.php:322 app/features/mec/booking.php:351
|
1199 |
msgid "Percent"
|
1200 |
msgstr "Procent"
|
1201 |
|
1202 |
+
#: app/features/events.php:2190 app/features/events.php:2226
|
1203 |
#: app/features/mec/booking.php:323 app/features/mec/booking.php:352
|
1204 |
msgid "Amount (Per Ticket)"
|
1205 |
msgstr "Částka (za vstupenku)"
|
1206 |
|
1207 |
+
#: app/features/events.php:2191 app/features/events.php:2227
|
1208 |
#: app/features/mec/booking.php:324 app/features/mec/booking.php:353
|
1209 |
msgid "Amount (Per Booking)"
|
1210 |
msgstr "Částka (za rezervaci)"
|
1211 |
|
1212 |
+
#: app/features/events.php:2264 app/features/mec/settings.php:736
|
1213 |
msgid "Ticket Variations / Options"
|
1214 |
msgstr "Varianty vstupenky / možnosti"
|
1215 |
|
1216 |
+
#: app/features/events.php:2314 app/features/events.php:2359
|
1217 |
#: app/features/mec/booking.php:392 app/features/mec/booking.php:424
|
1218 |
msgid "Option Price"
|
1219 |
msgstr "Možnosti ceny"
|
1220 |
|
1221 |
+
#: app/features/events.php:2324 app/features/events.php:2328
|
1222 |
+
#: app/features/events.php:2368 app/features/events.php:2371
|
1223 |
#: app/features/mec/booking.php:398 app/features/mec/booking.php:401
|
1224 |
#: app/features/mec/booking.php:430 app/features/mec/booking.php:433
|
1225 |
msgid "Maximum Per Ticket"
|
1226 |
msgstr "Maximum na jednu vstupenku"
|
1227 |
|
1228 |
+
#: app/features/events.php:2329 app/features/events.php:2372
|
1229 |
#: app/features/mec/booking.php:402 app/features/mec/booking.php:434
|
1230 |
msgid "Maximum Per Ticket. Leave it blank for unlimited."
|
1231 |
msgstr "Maximum na jednu vstupenku. Ponechte to prázdné pro neomezené."
|
1232 |
|
1233 |
+
#: app/features/events.php:2518 app/features/mec/booking.php:496
|
1234 |
#: app/libraries/main.php:2784
|
1235 |
msgid "MEC Name"
|
1236 |
msgstr "MEC Jméno"
|
1237 |
|
1238 |
+
#: app/features/events.php:2519 app/features/mec/booking.php:497
|
1239 |
#: app/libraries/main.php:2813
|
1240 |
msgid "MEC Email"
|
1241 |
msgstr "MEC Email"
|
1242 |
|
1243 |
+
#: app/features/events.php:2520 app/features/mec/booking.php:498
|
1244 |
#: app/libraries/main.php:2754
|
1245 |
msgid "Text"
|
1246 |
msgstr "Text"
|
1247 |
|
1248 |
+
#: app/features/events.php:2523 app/features/mec/booking.php:501
|
1249 |
#: app/features/organizers.php:103 app/features/organizers.php:148
|
1250 |
#: app/features/speakers.php:119 app/features/speakers.php:192
|
1251 |
#: app/features/speakers.php:271 app/libraries/main.php:2930
|
1252 |
msgid "Tel"
|
1253 |
msgstr "Tel"
|
1254 |
|
1255 |
+
#: app/features/events.php:2524 app/features/mec/booking.php:502
|
1256 |
#: app/libraries/main.php:2872
|
1257 |
msgid "File"
|
1258 |
msgstr "Soubor"
|
1259 |
|
1260 |
+
#: app/features/events.php:2525 app/features/mec/booking.php:503
|
1261 |
#: app/libraries/main.php:2959
|
1262 |
msgid "Textarea"
|
1263 |
msgstr "Plocha textu"
|
1264 |
|
1265 |
+
#: app/features/events.php:2526 app/features/mec/booking.php:504
|
1266 |
#: app/libraries/main.php:3012
|
1267 |
msgid "Checkboxes"
|
1268 |
msgstr "Zatržítko"
|
1269 |
|
1270 |
+
#: app/features/events.php:2527 app/features/mec/booking.php:505
|
1271 |
#: app/libraries/main.php:3056
|
1272 |
msgid "Radio Buttons"
|
1273 |
msgstr "Přepínače"
|
1274 |
|
1275 |
+
#: app/features/events.php:2528 app/features/mec/booking.php:506
|
1276 |
#: app/features/mec/meta_boxes/search_form.php:34
|
1277 |
#: app/features/mec/meta_boxes/search_form.php:41
|
1278 |
#: app/features/mec/meta_boxes/search_form.php:48
|
1294 |
#: app/features/mec/meta_boxes/search_form.php:186
|
1295 |
#: app/features/mec/meta_boxes/search_form.php:193
|
1296 |
#: app/features/mec/meta_boxes/search_form.php:200
|
1297 |
+
#: app/features/mec/meta_boxes/search_form.php:220
|
1298 |
+
#: app/features/mec/meta_boxes/search_form.php:227
|
1299 |
+
#: app/features/mec/meta_boxes/search_form.php:234
|
1300 |
+
#: app/features/mec/meta_boxes/search_form.php:241
|
1301 |
+
#: app/features/mec/meta_boxes/search_form.php:248
|
1302 |
+
#: app/features/mec/meta_boxes/search_form.php:255
|
1303 |
+
#: app/features/mec/meta_boxes/search_form.php:262
|
1304 |
+
#: app/features/mec/meta_boxes/search_form.php:282
|
1305 |
+
#: app/features/mec/meta_boxes/search_form.php:289
|
1306 |
+
#: app/features/mec/meta_boxes/search_form.php:296
|
1307 |
+
#: app/features/mec/meta_boxes/search_form.php:303
|
1308 |
+
#: app/features/mec/meta_boxes/search_form.php:310
|
1309 |
+
#: app/features/mec/meta_boxes/search_form.php:317
|
1310 |
+
#: app/features/mec/meta_boxes/search_form.php:324
|
1311 |
+
#: app/features/mec/meta_boxes/search_form.php:344
|
1312 |
+
#: app/features/mec/meta_boxes/search_form.php:351
|
1313 |
+
#: app/features/mec/meta_boxes/search_form.php:358
|
1314 |
+
#: app/features/mec/meta_boxes/search_form.php:365
|
1315 |
+
#: app/features/mec/meta_boxes/search_form.php:372
|
1316 |
+
#: app/features/mec/meta_boxes/search_form.php:379
|
1317 |
+
#: app/features/mec/meta_boxes/search_form.php:386
|
1318 |
+
#: app/features/mec/meta_boxes/search_form.php:406
|
1319 |
+
#: app/features/mec/meta_boxes/search_form.php:413
|
1320 |
+
#: app/features/mec/meta_boxes/search_form.php:420
|
1321 |
+
#: app/features/mec/meta_boxes/search_form.php:427
|
1322 |
+
#: app/features/mec/meta_boxes/search_form.php:434
|
1323 |
+
#: app/features/mec/meta_boxes/search_form.php:441
|
1324 |
+
#: app/features/mec/meta_boxes/search_form.php:461
|
1325 |
+
#: app/features/mec/meta_boxes/search_form.php:468
|
1326 |
+
#: app/features/mec/meta_boxes/search_form.php:475
|
1327 |
+
#: app/features/mec/meta_boxes/search_form.php:482
|
1328 |
+
#: app/features/mec/meta_boxes/search_form.php:489
|
1329 |
+
#: app/features/mec/meta_boxes/search_form.php:496
|
1330 |
+
#: app/features/mec/meta_boxes/search_form.php:503
|
1331 |
+
#: app/features/mec/meta_boxes/search_form.php:523
|
1332 |
+
#: app/features/mec/meta_boxes/search_form.php:530
|
1333 |
+
#: app/features/mec/meta_boxes/search_form.php:537
|
1334 |
+
#: app/features/mec/meta_boxes/search_form.php:544
|
1335 |
+
#: app/features/mec/meta_boxes/search_form.php:551
|
1336 |
+
#: app/features/mec/meta_boxes/search_form.php:558
|
1337 |
+
#: app/features/mec/meta_boxes/search_form.php:565
|
|
|
1338 |
#: app/features/mec/meta_boxes/search_form.php:585
|
1339 |
#: app/features/mec/meta_boxes/search_form.php:592
|
1340 |
#: app/features/mec/meta_boxes/search_form.php:599
|
1341 |
#: app/features/mec/meta_boxes/search_form.php:606
|
1342 |
#: app/features/mec/meta_boxes/search_form.php:613
|
1343 |
#: app/features/mec/meta_boxes/search_form.php:620
|
1344 |
+
#: app/features/mec/meta_boxes/search_form.php:627
|
1345 |
+
#: app/features/mec/meta_boxes/search_form.php:683
|
1346 |
+
#: app/features/mec/meta_boxes/search_form.php:690
|
1347 |
+
#: app/features/mec/meta_boxes/search_form.php:697
|
1348 |
+
#: app/features/mec/meta_boxes/search_form.php:704
|
1349 |
+
#: app/features/mec/meta_boxes/search_form.php:711
|
1350 |
+
#: app/features/mec/meta_boxes/search_form.php:718
|
1351 |
+
#: app/features/mec/meta_boxes/search_form.php:725 app/libraries/main.php:3100
|
1352 |
msgid "Dropdown"
|
1353 |
msgstr "Rozbalovací"
|
1354 |
|
1355 |
+
#: app/features/events.php:2529 app/features/mec/booking.php:507
|
1356 |
#: app/libraries/main.php:3147
|
1357 |
msgid "Agreement"
|
1358 |
msgstr "Smlouva"
|
1359 |
|
1360 |
+
#: app/features/events.php:2530 app/features/mec/booking.php:508
|
1361 |
#: app/libraries/main.php:2988
|
1362 |
msgid "Paragraph"
|
1363 |
msgstr "Paragraf"
|
1364 |
|
1365 |
+
#: app/features/events.php:3202 app/features/events.php:3220
|
1366 |
+
#: app/features/events.php:3238 app/features/events.php:3256
|
1367 |
#, php-format
|
1368 |
msgid "Show all %s"
|
1369 |
msgstr "Ukázat všechny %s"
|
1370 |
|
1371 |
+
#: app/features/events.php:3202
|
1372 |
msgid "labels"
|
1373 |
msgstr "štítky"
|
1374 |
|
1375 |
+
#: app/features/events.php:3220
|
1376 |
msgid "locations"
|
1377 |
msgstr "umístění"
|
1378 |
|
1379 |
+
#: app/features/events.php:3238
|
1380 |
msgid "organizers"
|
1381 |
msgstr "organizátoři"
|
1382 |
|
1383 |
+
#: app/features/events.php:3272
|
1384 |
#, fuzzy
|
1385 |
#| msgid "Attendees Limit"
|
1386 |
msgid "Attendees List"
|
1387 |
msgstr "Limit účastníků"
|
1388 |
|
1389 |
+
#: app/features/events.php:3302 app/features/events.php:3494
|
1390 |
+
#: app/features/events.php:3536 app/features/ix.php:3506
|
1391 |
#: app/features/ix.php:3547 app/features/locations.php:58
|
1392 |
#: app/features/locations.php:232 app/features/locations.php:289
|
1393 |
#: app/features/locations.php:291 app/features/locations.php:300
|
1395 |
#: app/features/mec/meta_boxes/search_form.php:38
|
1396 |
#: app/features/mec/meta_boxes/search_form.php:100
|
1397 |
#: app/features/mec/meta_boxes/search_form.php:162
|
1398 |
+
#: app/features/mec/meta_boxes/search_form.php:224
|
1399 |
+
#: app/features/mec/meta_boxes/search_form.php:286
|
1400 |
+
#: app/features/mec/meta_boxes/search_form.php:348
|
1401 |
+
#: app/features/mec/meta_boxes/search_form.php:410
|
1402 |
+
#: app/features/mec/meta_boxes/search_form.php:465
|
1403 |
+
#: app/features/mec/meta_boxes/search_form.php:527
|
1404 |
+
#: app/features/mec/meta_boxes/search_form.php:589
|
1405 |
+
#: app/features/mec/meta_boxes/search_form.php:687
|
1406 |
#: app/features/mec/settings.php:814 app/features/mec/single.php:240
|
1407 |
#: app/features/search.php:73 app/libraries/main.php:2247
|
1408 |
#: app/libraries/main.php:5339 app/libraries/skins.php:891
|
1409 |
+
#: app/skins/single.php:497 app/skins/single.php:934
|
1410 |
#: app/skins/single/default.php:176 app/skins/single/default.php:399
|
1411 |
#: app/skins/single/m1.php:169 app/skins/single/m2.php:95
|
1412 |
#: app/skins/single/modern.php:102
|
1413 |
msgid "Location"
|
1414 |
msgstr "Umístění"
|
1415 |
|
1416 |
+
#: app/features/events.php:3307
|
1417 |
msgid "Repeat"
|
1418 |
msgstr "Opakovat"
|
1419 |
|
1420 |
+
#: app/features/events.php:3308
|
1421 |
msgid "Author"
|
1422 |
msgstr "Autor"
|
1423 |
|
1424 |
+
#: app/features/events.php:3429 app/features/events.php:3430
|
1425 |
msgid "iCal Export"
|
1426 |
msgstr "iCal Export"
|
1427 |
|
1428 |
+
#: app/features/events.php:3432 app/features/events.php:3433
|
1429 |
msgid "CSV Export"
|
1430 |
msgstr "CSV Export"
|
1431 |
|
1432 |
+
#: app/features/events.php:3435 app/features/events.php:3436
|
1433 |
msgid "MS Excel Export"
|
1434 |
msgstr "MS Excel Export"
|
1435 |
|
1436 |
+
#: app/features/events.php:3438 app/features/events.php:3439
|
1437 |
msgid "XML Export"
|
1438 |
msgstr "XML Export"
|
1439 |
|
1440 |
+
#: app/features/events.php:3441 app/features/events.php:3442
|
1441 |
msgid "JSON Export"
|
1442 |
msgstr "JSON Export"
|
1443 |
|
1444 |
+
#: app/features/events.php:3444 app/features/events.php:3445
|
1445 |
+
#: app/features/events.php:3627
|
1446 |
msgid "Duplicate"
|
1447 |
msgstr "Duplikát"
|
1448 |
|
1449 |
+
#: app/features/events.php:3494 app/features/events.php:3536
|
1450 |
#: app/features/fes.php:223 app/features/ix.php:3506 app/features/ix.php:3547
|
1451 |
#: app/features/labels.php:177 app/features/locations.php:231
|
1452 |
#: app/features/organizers.php:203 app/features/speakers.php:268
|
1453 |
msgid "ID"
|
1454 |
msgstr "ID"
|
1455 |
|
1456 |
+
#: app/features/events.php:3494 app/features/events.php:3536
|
1457 |
#: app/features/ix.php:3506 app/features/ix.php:3547
|
1458 |
msgid "Link"
|
1459 |
msgstr "Odkaz"
|
1460 |
|
1461 |
+
#: app/features/events.php:3494 app/features/events.php:3536
|
1462 |
#, php-format
|
1463 |
msgid "%s Tel"
|
1464 |
msgstr "%s Tel"
|
1465 |
|
1466 |
+
#: app/features/events.php:3494 app/features/events.php:3536
|
1467 |
#, php-format
|
1468 |
msgid "%s Email"
|
1469 |
msgstr "%s Email"
|
1470 |
|
1471 |
+
#: app/features/events.php:3789 app/features/fes.php:223
|
1472 |
#: app/features/profile/profile.php:186 app/libraries/main.php:2282
|
1473 |
#: app/libraries/main.php:5369
|
1474 |
msgid "Ticket"
|
1475 |
msgstr "Vstupenka"
|
1476 |
|
1477 |
+
#: app/features/events.php:3792 app/features/profile/profile.php:189
|
1478 |
msgid "Variations"
|
1479 |
msgstr "Variace"
|
1480 |
|
1481 |
+
#: app/features/events.php:3807 app/features/fes.php:303
|
1482 |
msgid "Unknown"
|
1483 |
msgstr "Neznámý"
|
1484 |
|
1485 |
+
#: app/features/events.php:3840
|
1486 |
#, fuzzy
|
1487 |
#| msgid "Attendees Form"
|
1488 |
msgid "No Attendees Found!"
|
1519 |
msgid "The event removed!"
|
1520 |
msgstr "Událost byla odebrána!"
|
1521 |
|
1522 |
+
#: app/features/fes.php:223
|
1523 |
+
#, fuzzy
|
1524 |
+
#| msgid "End Time"
|
1525 |
+
msgid "Order Time"
|
1526 |
+
msgstr "Konec"
|
1527 |
+
|
1528 |
#: app/features/fes.php:223 app/libraries/main.php:2259
|
1529 |
msgid "Transaction ID"
|
1530 |
msgstr "ID transakce"
|
1653 |
#: app/features/fes/form.php:783 app/features/labels.php:61
|
1654 |
#: app/features/labels.php:221 app/features/mec.php:404
|
1655 |
#: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:5336
|
1656 |
+
#: app/skins/single.php:706 app/skins/single/default.php:155
|
1657 |
#: app/skins/single/default.php:378 app/skins/single/m1.php:73
|
1658 |
#: app/skins/single/modern.php:228
|
1659 |
msgid "Labels"
|
2446 |
|
2447 |
#: app/features/labels.php:180 app/features/locations.php:234
|
2448 |
#: app/features/organizers.php:206 app/features/speakers.php:272
|
2449 |
+
#: app/modules/booking/steps/tickets.php:41
|
2450 |
msgid "Count"
|
2451 |
msgstr "Spočítat"
|
2452 |
|
2664 |
msgid "Report"
|
2665 |
msgstr "Export"
|
2666 |
|
2667 |
+
#: app/features/mec.php:421
|
2668 |
+
#, fuzzy
|
2669 |
+
#| msgid "MEC - Support"
|
2670 |
+
msgid "MEC - Go Pro"
|
2671 |
+
msgstr "MEC - podpora"
|
2672 |
+
|
2673 |
+
#: app/features/mec.php:421 app/features/mec/go-pro.php:9
|
2674 |
+
msgid "Go Pro"
|
2675 |
+
msgstr ""
|
2676 |
+
|
2677 |
#: app/features/mec.php:440
|
2678 |
msgid "Add Shortcode"
|
2679 |
msgstr "Přidat zkrácený kód"
|
2710 |
msgid "Search Form"
|
2711 |
msgstr "Vyhledávací formulář"
|
2712 |
|
2713 |
+
#: app/features/mec.php:898
|
2714 |
msgid "Display content's images as Popup"
|
2715 |
msgstr "Zobrazit obrázky obsahu jako vyskakovací okno"
|
2716 |
|
2717 |
+
#: app/features/mec.php:912 app/features/popup/shortcode.php:300
|
2718 |
msgid "Single Event Display Method"
|
2719 |
msgstr "Metoda zobrazení jedné události"
|
2720 |
|
2721 |
+
#: app/features/mec.php:917 app/features/popup/shortcode.php:304
|
2722 |
msgid "Separate Window"
|
2723 |
msgstr "Samostatné okno"
|
2724 |
|
2725 |
+
#: app/features/mec.php:918 app/features/popup/shortcode.php:308
|
2726 |
msgid "Modal 1"
|
2727 |
msgstr "Modal 1"
|
2728 |
|
3041 |
msgid "Update"
|
3042 |
msgstr "Aktualizovat"
|
3043 |
|
3044 |
+
#: app/features/mec/dashboard.php:96 app/features/mec/go-pro.php:65
|
3045 |
#, php-format
|
3046 |
msgid ""
|
3047 |
"You're using %s version of Modern Events Calendar. To use advanced booking "
|
3052 |
"pokročilý rezervační systém, moderní vzhledy jako Agenda, Rozvrh, Roční "
|
3053 |
"pohled, Dostupná místa atd., Měli byste upgradovat na verzi Pro."
|
3054 |
|
3055 |
+
#: app/features/mec/dashboard.php:96 app/features/mec/go-pro.php:65
|
3056 |
msgid "lite"
|
3057 |
msgstr " omezenou"
|
3058 |
|
3059 |
+
#: app/features/mec/dashboard.php:99 app/features/mec/go-pro.php:68
|
3060 |
#: app/features/mec/support.php:126
|
3061 |
msgid "GO PREMIUM"
|
3062 |
msgstr "PŘEJÍT NA PREMIUM"
|
3063 |
|
3064 |
+
#: app/features/mec/dashboard.php:102 app/features/mec/go-pro.php:71
|
3065 |
#, php-format
|
3066 |
msgid ""
|
3067 |
"Easily get a discount coupon by rating us on %s or following and reposting "
|
3070 |
"Jednoduše získejte slevový kupón tím, že nás ohodnocíte na% s nebo poté a "
|
3071 |
"uložíte nás na sociální média. Stačí poslat screenshot do % s a obdržíte % s"
|
3072 |
|
3073 |
+
#: app/features/mec/dashboard.php:102 app/features/mec/go-pro.php:71
|
3074 |
msgid "WordPress"
|
3075 |
msgstr "WordPress"
|
3076 |
|
3077 |
+
#: app/features/mec/dashboard.php:102 app/features/mec/go-pro.php:71
|
3078 |
msgid "Copouns!"
|
3079 |
msgstr "Kupóny!"
|
3080 |
|
3159 |
msgid "Change Log"
|
3160 |
msgstr "Změna logu"
|
3161 |
|
|
|
|
|
|
|
|
|
3162 |
#: app/features/mec/ie.php:21
|
3163 |
msgid ""
|
3164 |
"Insert your backup files below and press import to restore your site's "
|
4087 |
#: app/features/mec/meta_boxes/search_form.php:192
|
4088 |
#: app/features/mec/meta_boxes/search_form.php:199
|
4089 |
#: app/features/mec/meta_boxes/search_form.php:206
|
4090 |
+
#: app/features/mec/meta_boxes/search_form.php:219
|
4091 |
+
#: app/features/mec/meta_boxes/search_form.php:226
|
4092 |
+
#: app/features/mec/meta_boxes/search_form.php:233
|
4093 |
+
#: app/features/mec/meta_boxes/search_form.php:240
|
4094 |
+
#: app/features/mec/meta_boxes/search_form.php:247
|
4095 |
+
#: app/features/mec/meta_boxes/search_form.php:254
|
4096 |
+
#: app/features/mec/meta_boxes/search_form.php:261
|
4097 |
+
#: app/features/mec/meta_boxes/search_form.php:268
|
4098 |
+
#: app/features/mec/meta_boxes/search_form.php:281
|
4099 |
+
#: app/features/mec/meta_boxes/search_form.php:288
|
4100 |
+
#: app/features/mec/meta_boxes/search_form.php:295
|
4101 |
+
#: app/features/mec/meta_boxes/search_form.php:302
|
4102 |
+
#: app/features/mec/meta_boxes/search_form.php:309
|
4103 |
+
#: app/features/mec/meta_boxes/search_form.php:316
|
4104 |
+
#: app/features/mec/meta_boxes/search_form.php:323
|
4105 |
+
#: app/features/mec/meta_boxes/search_form.php:330
|
4106 |
+
#: app/features/mec/meta_boxes/search_form.php:343
|
4107 |
+
#: app/features/mec/meta_boxes/search_form.php:350
|
4108 |
+
#: app/features/mec/meta_boxes/search_form.php:357
|
4109 |
+
#: app/features/mec/meta_boxes/search_form.php:364
|
4110 |
+
#: app/features/mec/meta_boxes/search_form.php:371
|
4111 |
+
#: app/features/mec/meta_boxes/search_form.php:378
|
4112 |
+
#: app/features/mec/meta_boxes/search_form.php:385
|
4113 |
+
#: app/features/mec/meta_boxes/search_form.php:392
|
4114 |
+
#: app/features/mec/meta_boxes/search_form.php:405
|
4115 |
+
#: app/features/mec/meta_boxes/search_form.php:412
|
4116 |
+
#: app/features/mec/meta_boxes/search_form.php:419
|
4117 |
+
#: app/features/mec/meta_boxes/search_form.php:426
|
4118 |
+
#: app/features/mec/meta_boxes/search_form.php:433
|
4119 |
+
#: app/features/mec/meta_boxes/search_form.php:440
|
4120 |
+
#: app/features/mec/meta_boxes/search_form.php:447
|
4121 |
+
#: app/features/mec/meta_boxes/search_form.php:460
|
4122 |
+
#: app/features/mec/meta_boxes/search_form.php:467
|
4123 |
+
#: app/features/mec/meta_boxes/search_form.php:474
|
4124 |
+
#: app/features/mec/meta_boxes/search_form.php:481
|
4125 |
+
#: app/features/mec/meta_boxes/search_form.php:488
|
4126 |
+
#: app/features/mec/meta_boxes/search_form.php:495
|
4127 |
+
#: app/features/mec/meta_boxes/search_form.php:502
|
4128 |
+
#: app/features/mec/meta_boxes/search_form.php:509
|
4129 |
+
#: app/features/mec/meta_boxes/search_form.php:522
|
4130 |
+
#: app/features/mec/meta_boxes/search_form.php:529
|
4131 |
+
#: app/features/mec/meta_boxes/search_form.php:536
|
4132 |
+
#: app/features/mec/meta_boxes/search_form.php:543
|
4133 |
+
#: app/features/mec/meta_boxes/search_form.php:550
|
4134 |
+
#: app/features/mec/meta_boxes/search_form.php:557
|
4135 |
+
#: app/features/mec/meta_boxes/search_form.php:564
|
4136 |
+
#: app/features/mec/meta_boxes/search_form.php:571
|
|
|
4137 |
#: app/features/mec/meta_boxes/search_form.php:584
|
4138 |
#: app/features/mec/meta_boxes/search_form.php:591
|
4139 |
#: app/features/mec/meta_boxes/search_form.php:598
|
4141 |
#: app/features/mec/meta_boxes/search_form.php:612
|
4142 |
#: app/features/mec/meta_boxes/search_form.php:619
|
4143 |
#: app/features/mec/meta_boxes/search_form.php:626
|
4144 |
+
#: app/features/mec/meta_boxes/search_form.php:633
|
4145 |
+
#: app/features/mec/meta_boxes/search_form.php:682
|
4146 |
+
#: app/features/mec/meta_boxes/search_form.php:689
|
4147 |
+
#: app/features/mec/meta_boxes/search_form.php:696
|
4148 |
+
#: app/features/mec/meta_boxes/search_form.php:703
|
4149 |
+
#: app/features/mec/meta_boxes/search_form.php:710
|
4150 |
+
#: app/features/mec/meta_boxes/search_form.php:717
|
4151 |
+
#: app/features/mec/meta_boxes/search_form.php:724
|
4152 |
+
#: app/features/mec/meta_boxes/search_form.php:731
|
4153 |
#: app/features/mec/modules.php:125 app/features/mec/settings.php:101
|
4154 |
#: app/features/mec/settings.php:421
|
4155 |
msgid "Disabled"
|
4158 |
#: app/features/mec/meta_boxes/search_form.php:52
|
4159 |
#: app/features/mec/meta_boxes/search_form.php:114
|
4160 |
#: app/features/mec/meta_boxes/search_form.php:176
|
4161 |
+
#: app/features/mec/meta_boxes/search_form.php:238
|
4162 |
+
#: app/features/mec/meta_boxes/search_form.php:300
|
4163 |
+
#: app/features/mec/meta_boxes/search_form.php:362
|
4164 |
+
#: app/features/mec/meta_boxes/search_form.php:424
|
4165 |
+
#: app/features/mec/meta_boxes/search_form.php:479
|
4166 |
+
#: app/features/mec/meta_boxes/search_form.php:541
|
4167 |
+
#: app/features/mec/meta_boxes/search_form.php:603
|
4168 |
+
#: app/features/mec/meta_boxes/search_form.php:701
|
4169 |
#: app/features/mec/settings.php:827 app/features/mec/single.php:245
|
4170 |
#: app/features/search.php:83 app/features/speakers.php:61
|
4171 |
#: app/features/speakers.php:269 app/libraries/main.php:5343
|
4176 |
#: app/features/mec/meta_boxes/search_form.php:59
|
4177 |
#: app/features/mec/meta_boxes/search_form.php:121
|
4178 |
#: app/features/mec/meta_boxes/search_form.php:183
|
4179 |
+
#: app/features/mec/meta_boxes/search_form.php:245
|
4180 |
+
#: app/features/mec/meta_boxes/search_form.php:307
|
4181 |
+
#: app/features/mec/meta_boxes/search_form.php:369
|
4182 |
+
#: app/features/mec/meta_boxes/search_form.php:431
|
4183 |
+
#: app/features/mec/meta_boxes/search_form.php:486
|
4184 |
+
#: app/features/mec/meta_boxes/search_form.php:548
|
4185 |
+
#: app/features/mec/meta_boxes/search_form.php:610
|
4186 |
+
#: app/features/mec/meta_boxes/search_form.php:708
|
4187 |
#: app/features/mec/settings.php:834 app/features/mec/single.php:254
|
4188 |
#: app/features/search.php:88 app/libraries/skins.php:969
|
4189 |
msgid "Tag"
|
4192 |
#: app/features/mec/meta_boxes/search_form.php:73
|
4193 |
#: app/features/mec/meta_boxes/search_form.php:135
|
4194 |
#: app/features/mec/meta_boxes/search_form.php:197
|
4195 |
+
#: app/features/mec/meta_boxes/search_form.php:259
|
4196 |
+
#: app/features/mec/meta_boxes/search_form.php:321
|
4197 |
+
#: app/features/mec/meta_boxes/search_form.php:383
|
4198 |
+
#: app/features/mec/meta_boxes/search_form.php:500
|
4199 |
+
#: app/features/mec/meta_boxes/search_form.php:562
|
4200 |
+
#: app/features/mec/meta_boxes/search_form.php:624
|
4201 |
+
#: app/features/mec/meta_boxes/search_form.php:722
|
4202 |
msgid "Month Filter"
|
4203 |
msgstr "Měsíční filtr"
|
4204 |
|
4205 |
#: app/features/mec/meta_boxes/search_form.php:80
|
4206 |
#: app/features/mec/meta_boxes/search_form.php:142
|
4207 |
#: app/features/mec/meta_boxes/search_form.php:204
|
4208 |
+
#: app/features/mec/meta_boxes/search_form.php:266
|
4209 |
+
#: app/features/mec/meta_boxes/search_form.php:328
|
4210 |
+
#: app/features/mec/meta_boxes/search_form.php:390
|
4211 |
+
#: app/features/mec/meta_boxes/search_form.php:445
|
4212 |
+
#: app/features/mec/meta_boxes/search_form.php:507
|
4213 |
+
#: app/features/mec/meta_boxes/search_form.php:569
|
4214 |
+
#: app/features/mec/meta_boxes/search_form.php:631
|
4215 |
+
#: app/features/mec/meta_boxes/search_form.php:729
|
4216 |
msgid "Text Search"
|
4217 |
msgstr "Vyhledat text"
|
4218 |
|
4219 |
#: app/features/mec/meta_boxes/search_form.php:83
|
4220 |
#: app/features/mec/meta_boxes/search_form.php:145
|
4221 |
#: app/features/mec/meta_boxes/search_form.php:207
|
4222 |
+
#: app/features/mec/meta_boxes/search_form.php:269
|
4223 |
+
#: app/features/mec/meta_boxes/search_form.php:331
|
4224 |
+
#: app/features/mec/meta_boxes/search_form.php:393
|
4225 |
+
#: app/features/mec/meta_boxes/search_form.php:448
|
4226 |
+
#: app/features/mec/meta_boxes/search_form.php:510
|
4227 |
+
#: app/features/mec/meta_boxes/search_form.php:572
|
4228 |
+
#: app/features/mec/meta_boxes/search_form.php:634
|
4229 |
+
#: app/features/mec/meta_boxes/search_form.php:732
|
4230 |
msgid "Text Input"
|
4231 |
msgstr "Zadávání textu"
|
4232 |
|
4233 |
+
#: app/features/mec/meta_boxes/search_form.php:643
|
4234 |
+
#: app/features/mec/meta_boxes/search_form.php:649
|
4235 |
+
#: app/features/mec/meta_boxes/search_form.php:655
|
4236 |
+
#: app/features/mec/meta_boxes/search_form.php:661
|
4237 |
+
#: app/features/mec/meta_boxes/search_form.php:667
|
4238 |
+
#: app/features/mec/meta_boxes/search_form.php:673
|
4239 |
msgid "No Search Options"
|
4240 |
msgstr "Žádné možnosti vyhledávání"
|
4241 |
|
6402 |
msgstr "např. https://webnus.net"
|
6403 |
|
6404 |
#: app/features/organizers.php:312 app/libraries/main.php:5371
|
6405 |
+
#: app/skins/single.php:866
|
6406 |
msgid "Other Organizers"
|
6407 |
msgstr "Další organizátoři"
|
6408 |
|
6461 |
msgstr ""
|
6462 |
|
6463 |
#: app/features/popup/shortcode.php:373 app/modules/booking/steps/form.php:179
|
6464 |
+
#: app/modules/booking/steps/tickets.php:77 app/skins/countdown/tpl.php:145
|
6465 |
#: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:234
|
6466 |
msgid "Next"
|
6467 |
msgstr "Další"
|
6545 |
#: app/features/search_bar/search_result.php:11
|
6546 |
#: app/libraries/notifications.php:951 app/libraries/render.php:488
|
6547 |
#: app/modules/local-time/details.php:48 app/modules/next-event/details.php:104
|
6548 |
+
#: app/skins/single.php:160 app/skins/single.php:757
|
6549 |
#: app/skins/single/default.php:108 app/skins/single/default.php:331
|
6550 |
#: app/skins/single/m1.php:43 app/skins/single/modern.php:198
|
6551 |
#, fuzzy
|
6629 |
msgid "%s Price"
|
6630 |
msgstr "%s Cena"
|
6631 |
|
6632 |
+
#: app/libraries/book.php:602
|
6633 |
msgid "Discount"
|
6634 |
msgstr "Sleva"
|
6635 |
|
6636 |
+
#: app/libraries/book.php:694 app/modules/booking/default.php:316
|
6637 |
+
#: app/modules/booking/default.php:415
|
6638 |
msgid "Download Invoice"
|
6639 |
msgstr "Stáhnout fakturu"
|
6640 |
|
7248 |
#: app/skins/grid/render.php:124 app/skins/grid/render.php:171
|
7249 |
#: app/skins/grid/render.php:215 app/skins/grid/render.php:244
|
7250 |
#: app/skins/list/render.php:109 app/skins/list/render.php:195
|
7251 |
+
#: app/skins/masonry/render.php:188 app/skins/single.php:778
|
7252 |
+
#: app/skins/single.php:781 app/skins/single/default.php:260
|
7253 |
#: app/skins/single/default.php:262 app/skins/single/default.php:483
|
7254 |
#: app/skins/single/default.php:485 app/skins/single/m1.php:140
|
7255 |
#: app/skins/single/m1.php:142 app/skins/single/m2.php:66
|
7464 |
msgid "Thanks for your booking."
|
7465 |
msgstr "Děkujeme za vaši rezervaci."
|
7466 |
|
7467 |
+
#: app/modules/booking/steps/tickets.php:21
|
7468 |
msgid "Book Event"
|
7469 |
msgstr "Rezervovat událost"
|
7470 |
|
7471 |
+
#: app/modules/booking/steps/tickets.php:43
|
7472 |
#, php-format
|
7473 |
msgid "Available %s: <span>%s</span>"
|
7474 |
msgstr "K dispozici %s: <span>%s</span>"
|
7475 |
|
7476 |
+
#: app/modules/booking/steps/tickets.php:47
|
7477 |
#, php-format
|
7478 |
msgid "The %s ticket sales has stopped!"
|
7479 |
msgstr ""
|
7480 |
|
7481 |
+
#: app/modules/booking/steps/tickets.php:48
|
7482 |
#, php-format
|
7483 |
msgid "The %s ticket is sold out. You can try another ticket or another date."
|
7484 |
msgstr ""
|
7492 |
msgid "The event is ongoing."
|
7493 |
msgstr "Událost právě probíhá."
|
7494 |
|
7495 |
+
#: app/modules/googlemap/details.php:124
|
7496 |
msgid "Address from ..."
|
7497 |
msgstr "Adresa od ..."
|
7498 |
|
7499 |
+
#: app/modules/googlemap/details.php:128
|
7500 |
msgid "Get Directions"
|
7501 |
msgstr "Získat směr"
|
7502 |
|
7503 |
+
#: app/modules/links/details.php:17 app/skins/single.php:465
|
7504 |
msgid "Share this event"
|
7505 |
msgstr "Sdílet tuto událost"
|
7506 |
|
7527 |
msgid "Go to occurrence page"
|
7528 |
msgstr "Přejít na stránku výskytu"
|
7529 |
|
7530 |
+
#: app/modules/next-event/details.php:98 app/skins/single.php:751
|
7531 |
#: app/skins/single/default.php:102 app/skins/single/default.php:325
|
7532 |
#: app/skins/single/m1.php:37 app/skins/single/modern.php:192
|
7533 |
msgid "Time"
|
7584 |
#: app/skins/agenda/tpl.php:66 app/skins/agenda/tpl.php:70
|
7585 |
#: app/skins/carousel/tpl.php:46 app/skins/custom/tpl.php:62
|
7586 |
#: app/skins/custom/tpl.php:66 app/skins/grid/tpl.php:62
|
7587 |
+
#: app/skins/grid/tpl.php:66 app/skins/list/tpl.php:68
|
7588 |
+
#: app/skins/list/tpl.php:72 app/skins/masonry/tpl.php:62
|
7589 |
#: app/skins/masonry/tpl.php:66 app/skins/slider/tpl.php:44
|
7590 |
#: app/skins/timeline/tpl.php:56 app/skins/timeline/tpl.php:60
|
7591 |
msgid "No event found!"
|
7592 |
msgstr "Nebyla nalezena žádná událost!"
|
7593 |
|
7594 |
#: app/skins/agenda/tpl.php:75 app/skins/custom/tpl.php:71
|
7595 |
+
#: app/skins/grid/tpl.php:71 app/skins/list/tpl.php:77
|
7596 |
#: app/skins/masonry/tpl.php:71 app/skins/timeline/tpl.php:65
|
7597 |
#: app/skins/yearly_view/render.php:124
|
7598 |
msgid "Load More"
|
7649 |
msgid "No Events"
|
7650 |
msgstr "Žádné události"
|
7651 |
|
7652 |
+
#: app/skins/single.php:209
|
7653 |
msgid "Home"
|
7654 |
msgstr "Domů"
|
7655 |
|
7656 |
+
#: app/skins/single.php:548 app/skins/single/default.php:51
|
7657 |
#: app/skins/single/m1.php:261 app/skins/single/m2.php:182
|
7658 |
#: app/skins/single/modern.php:270
|
7659 |
msgid "Sold out!"
|
7660 |
msgstr "Vyprodáno!"
|
7661 |
|
7662 |
+
#: app/skins/single.php:826 app/skins/single.php:881
|
7663 |
#: app/skins/single/default.php:227 app/skins/single/default.php:450
|
7664 |
#: app/skins/single/m1.php:109 app/skins/single/m2.php:35
|
7665 |
#: app/skins/single/modern.php:44
|
7666 |
msgid "Phone"
|
7667 |
msgstr "Telefon"
|
7668 |
|
7669 |
+
#: app/skins/single.php:840 app/skins/single.php:895
|
7670 |
#: app/skins/single/default.php:241 app/skins/single/default.php:464
|
7671 |
#: app/skins/single/m1.php:123 app/skins/single/m2.php:49
|
7672 |
#: app/skins/single/modern.php:58
|
7673 |
msgid "Website"
|
7674 |
msgstr "Webová stránka"
|
7675 |
|
7676 |
+
#: app/skins/single.php:971
|
7677 |
msgid "Speakers:"
|
7678 |
msgstr "Řečník:"
|
7679 |
|
7859 |
#~ msgid "Book Date"
|
7860 |
#~ msgstr "Styl rezervace"
|
7861 |
|
|
|
|
|
|
|
|
|
|
|
7862 |
#, fuzzy
|
7863 |
#~| msgid "Ticket"
|
7864 |
#~ msgid " - Ticket"
|
Binary file
|
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: ME Calender\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2020-02-
|
6 |
-
"PO-Revision-Date: 2020-02-
|
7 |
"Last-Translator: Jogon <koenig@kafinanz.de>\n"
|
8 |
"Language-Team: German\n"
|
9 |
"Language: de_DE\n"
|
@@ -56,10 +56,8 @@ msgid "Modern Events Calendar (MEC)"
|
|
56 |
msgstr "Moderner Event Kalender "
|
57 |
|
58 |
#: app/addons/elementor/shortcode.php:78
|
59 |
-
#, fuzzy
|
60 |
-
#| msgid "General Options"
|
61 |
msgid "General"
|
62 |
-
msgstr "
|
63 |
|
64 |
#: app/addons/elementor/shortcode.php:87
|
65 |
#, fuzzy
|
@@ -79,7 +77,7 @@ msgstr "Farbe der Veranstaltung"
|
|
79 |
msgid "Settings"
|
80 |
msgstr "Einstellungen"
|
81 |
|
82 |
-
#: app/features/contextual.php:62 app/features/events.php:
|
83 |
#: app/features/mec/booking.php:448 app/features/mec/support.php:29
|
84 |
#: app/libraries/main.php:560
|
85 |
msgid "Booking Form"
|
@@ -310,7 +308,7 @@ msgstr "Alle Veranstaltungen"
|
|
310 |
|
311 |
#: app/features/events.php:163
|
312 |
msgid "Edit Event"
|
313 |
-
msgstr ""
|
314 |
|
315 |
#: app/features/events.php:164 app/features/fes/list.php:82
|
316 |
msgid "View Event"
|
@@ -320,29 +318,29 @@ msgstr "Veranstaltung ansehen"
|
|
320 |
msgid "No events found in Trash!"
|
321 |
msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
|
322 |
|
323 |
-
#: app/features/events.php:182 app/features/events.php:
|
324 |
#: app/features/mec/meta_boxes/display_options.php:959
|
325 |
#: app/features/mec/meta_boxes/search_form.php:31
|
326 |
#: app/features/mec/meta_boxes/search_form.php:93
|
327 |
#: app/features/mec/meta_boxes/search_form.php:155
|
328 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
329 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
330 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
331 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
332 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
333 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
334 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
335 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
336 |
#: app/features/mec/settings.php:808 app/features/mec/single.php:232
|
337 |
#: app/features/search.php:68 app/libraries/main.php:5335
|
338 |
-
#: app/libraries/skins.php:865 app/skins/single.php:
|
339 |
#: app/skins/single/default.php:192 app/skins/single/default.php:415
|
340 |
#: app/skins/single/m1.php:184 app/skins/single/m2.php:110
|
341 |
#: app/skins/single/modern.php:118
|
342 |
msgid "Category"
|
343 |
msgstr "Kategorie"
|
344 |
|
345 |
-
#: app/features/events.php:183 app/features/events.php:
|
346 |
#: app/features/fes/form.php:757 app/features/mec.php:403
|
347 |
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5334
|
348 |
msgid "Categories"
|
@@ -423,8 +421,6 @@ msgid "FES Details"
|
|
423 |
msgstr "Veranstaltungsdetails"
|
424 |
|
425 |
#: app/features/events.php:330
|
426 |
-
#, fuzzy
|
427 |
-
#| msgid "Date and Time"
|
428 |
msgid "Date And Time"
|
429 |
msgstr "Datum und Uhrzeit"
|
430 |
|
@@ -432,52 +428,48 @@ msgstr "Datum und Uhrzeit"
|
|
432 |
msgid "Event Repeating"
|
433 |
msgstr "Wiederholende Veranstaltung"
|
434 |
|
435 |
-
#: app/features/events.php:333 app/features/events.php:
|
436 |
-
#: app/features/mec/settings.php:718 app/skins/single.php:
|
437 |
msgid "Hourly Schedule"
|
438 |
msgstr "Stundenplan"
|
439 |
|
440 |
#: app/features/events.php:334
|
441 |
-
#, fuzzy
|
442 |
-
#| msgid "Location"
|
443 |
msgid "Location/Venue"
|
444 |
msgstr "Ort"
|
445 |
|
446 |
#: app/features/events.php:335
|
447 |
-
#, fuzzy
|
448 |
-
#| msgid "Link"
|
449 |
msgid "Links"
|
450 |
-
msgstr "
|
451 |
|
452 |
-
#: app/features/events.php:336 app/features/events.php:
|
453 |
-
#: app/features/events.php:
|
454 |
#: app/features/ix.php:3506 app/features/ix.php:3547
|
455 |
#: app/features/mec/meta_boxes/display_options.php:962
|
456 |
#: app/features/mec/meta_boxes/search_form.php:45
|
457 |
#: app/features/mec/meta_boxes/search_form.php:107
|
458 |
#: app/features/mec/meta_boxes/search_form.php:169
|
459 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
460 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
461 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
462 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
463 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
464 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
465 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
466 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
467 |
#: app/features/mec/settings.php:820 app/features/mec/single.php:236
|
468 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
469 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
470 |
#: app/features/organizers.php:271 app/features/search.php:78
|
471 |
#: app/libraries/main.php:5341 app/libraries/skins.php:917
|
472 |
-
#: app/skins/single.php:
|
473 |
#: app/skins/single/default.php:440 app/skins/single/m1.php:99
|
474 |
#: app/skins/single/m2.php:25 app/skins/single/modern.php:34
|
475 |
msgid "Organizer"
|
476 |
msgstr "Veranstalter"
|
477 |
|
478 |
-
#: app/features/events.php:337 app/features/events.php:
|
479 |
#: app/features/fes/form.php:730 app/libraries/main.php:5368
|
480 |
-
#: app/skins/single.php:
|
481 |
#: app/skins/single/default.php:349 app/skins/single/m1.php:58
|
482 |
#: app/skins/single/modern.php:213
|
483 |
msgid "Cost"
|
@@ -491,8 +483,8 @@ msgstr "Zusätzliche Anmerkungen zum Event "
|
|
491 |
msgid "Guest Data"
|
492 |
msgstr "Gäste Daten"
|
493 |
|
494 |
-
#: app/features/events.php:461 app/features/events.php:
|
495 |
-
#: app/features/events.php:
|
496 |
#: app/features/fes/form.php:689 app/features/labels.php:178
|
497 |
#: app/features/mec/booking.php:45 app/features/organizers.php:279
|
498 |
#: app/features/profile/profile.php:180 app/libraries/notifications.php:1117
|
@@ -500,8 +492,8 @@ msgstr "Gäste Daten"
|
|
500 |
msgid "Name"
|
501 |
msgstr "Name"
|
502 |
|
503 |
-
#: app/features/events.php:462 app/features/events.php:
|
504 |
-
#: app/features/events.php:
|
505 |
#: app/features/fes.php:223 app/features/fes/form.php:685
|
506 |
#: app/features/mec/booking.php:57 app/features/mec/booking.php:499
|
507 |
#: app/features/organizers.php:111 app/features/organizers.php:152
|
@@ -509,20 +501,20 @@ msgstr "Name"
|
|
509 |
#: app/features/speakers.php:196 app/libraries/main.php:1547
|
510 |
#: app/libraries/main.php:1616 app/libraries/main.php:2843
|
511 |
#: app/libraries/notifications.php:1118 app/modules/booking/steps/form.php:46
|
512 |
-
#: app/modules/booking/steps/form.php:83 app/skins/single.php:
|
513 |
-
#: app/skins/single.php:
|
514 |
#: app/skins/single/default.php:457 app/skins/single/m1.php:116
|
515 |
#: app/skins/single/m2.php:42 app/skins/single/modern.php:51
|
516 |
msgid "Email"
|
517 |
-
msgstr "
|
518 |
|
519 |
#: app/features/events.php:470 app/features/fes/form.php:243
|
520 |
msgid "Date and Time"
|
521 |
msgstr "Datum und Uhrzeit"
|
522 |
|
523 |
#: app/features/events.php:473 app/features/events.php:479
|
524 |
-
#: app/features/events.php:
|
525 |
-
#: app/features/events.php:
|
526 |
#: app/features/fes/form.php:251 app/features/ix.php:3506
|
527 |
#: app/features/ix.php:3547 app/features/ix/import_g_calendar.php:38
|
528 |
#: app/features/mec/dashboard.php:401
|
@@ -545,46 +537,46 @@ msgid "Start Date"
|
|
545 |
msgstr "Start Datum"
|
546 |
|
547 |
#: app/features/events.php:551 app/features/events.php:643
|
548 |
-
#: app/features/events.php:
|
549 |
-
#: app/features/events.php:
|
550 |
#: app/features/fes/form.php:279 app/features/fes/form.php:319
|
551 |
msgid "AM"
|
552 |
msgstr "AM"
|
553 |
|
554 |
#: app/features/events.php:558 app/features/events.php:650
|
555 |
-
#: app/features/events.php:
|
556 |
-
#: app/features/events.php:
|
557 |
#: app/features/fes/form.php:280 app/features/fes/form.php:320
|
558 |
msgid "PM"
|
559 |
msgstr "PM"
|
560 |
|
561 |
#: app/features/events.php:565 app/features/events.php:570
|
562 |
-
#: app/features/events.php:
|
563 |
-
#: app/features/events.php:
|
564 |
#: app/features/fes/form.php:291 app/features/ix.php:3506
|
565 |
#: app/features/ix.php:3547 app/features/ix/import_g_calendar.php:44
|
566 |
#: app/features/mec/dashboard.php:402
|
567 |
msgid "End Date"
|
568 |
msgstr "Ende Datum"
|
569 |
|
570 |
-
#: app/features/events.php:
|
571 |
msgid "All Day Event"
|
572 |
msgstr "Ganztägige Veranstaltung"
|
573 |
|
574 |
-
#: app/features/events.php:
|
575 |
msgid "Hide Event Time"
|
576 |
msgstr "Event / Veranstaltungszeit verbergen"
|
577 |
|
578 |
-
#: app/features/events.php:
|
579 |
msgid "Hide Event End Time"
|
580 |
msgstr "Ende-Zeit der Veranstaltung verbergen"
|
581 |
|
582 |
-
#: app/features/events.php:
|
583 |
#: app/features/fes/form.php:336
|
584 |
msgid "Time Comment"
|
585 |
msgstr "z.B. MEZ "
|
586 |
|
587 |
-
#: app/features/events.php:
|
588 |
#, fuzzy
|
589 |
#| msgid ""
|
590 |
#| "It shows next to event time on calendar. You can insert Timezone etc. in "
|
@@ -596,14 +588,14 @@ msgstr ""
|
|
596 |
"Neben der Zeit im Kalender wird diese Angabe angezeigt. In diesem Feld "
|
597 |
"können Sie z.B. eine Zeitzone wie z.B. \"MEZ\" usw. einfügen. "
|
598 |
|
599 |
-
#: app/features/events.php:
|
600 |
-
#: app/features/events.php:
|
601 |
-
#: app/features/events.php:
|
602 |
-
#: app/features/events.php:
|
603 |
-
#: app/features/events.php:
|
604 |
-
#: app/features/events.php:
|
605 |
-
#: app/features/events.php:
|
606 |
-
#: app/features/events.php:
|
607 |
#: app/features/fes/form.php:641 app/features/locations.php:301
|
608 |
#: app/features/mec/booking.php:108 app/features/mec/booking.php:158
|
609 |
#: app/features/mec/booking.php:171 app/features/mec/booking.php:187
|
@@ -669,176 +661,158 @@ msgstr ""
|
|
669 |
#: app/features/mec/single.php:125 app/features/mec/single.php:178
|
670 |
#: app/features/mec/styling.php:203 app/features/mec/styling.php:220
|
671 |
#: app/features/mec/styling.php:233 app/features/organizers.php:272
|
672 |
-
#: app/skins/single.php:
|
673 |
#: app/skins/single/default.php:364 app/skins/single/m1.php:206
|
674 |
#: app/skins/single/m2.php:133 app/skins/single/modern.php:141
|
675 |
msgid "Read More"
|
676 |
msgstr "Mehr lesen"
|
677 |
|
678 |
-
#: app/features/events.php:
|
679 |
-
#, fuzzy
|
680 |
-
#| msgid "Repeat"
|
681 |
msgid "Repeating"
|
682 |
msgstr "Wiederholen"
|
683 |
|
684 |
-
#: app/features/events.php:
|
685 |
-
#, fuzzy
|
686 |
-
#| msgid "Event Repeating"
|
687 |
msgid "Event Repeating (Recurring events)"
|
688 |
msgstr "Wiederholende Veranstaltung"
|
689 |
|
690 |
-
#: app/features/events.php:
|
691 |
msgid "Repeats"
|
692 |
msgstr "Wiederholend"
|
693 |
|
694 |
-
#: app/features/events.php:
|
695 |
#: app/features/mec/dashboard.php:404
|
696 |
#: app/skins/default_full_calendar/tpl.php:69
|
697 |
#: app/skins/full_calendar/tpl.php:110
|
698 |
msgid "Daily"
|
699 |
msgstr "Täglich"
|
700 |
|
701 |
-
#: app/features/events.php:
|
702 |
msgid "Every Weekday"
|
703 |
msgstr "An jedem Wochentag"
|
704 |
|
705 |
-
#: app/features/events.php:
|
706 |
msgid "Every Weekend"
|
707 |
msgstr "An jedem Wochenende"
|
708 |
|
709 |
-
#: app/features/events.php:
|
710 |
msgid "Certain Weekdays"
|
711 |
msgstr "Bestimmte Wochentage"
|
712 |
|
713 |
-
#: app/features/events.php:
|
714 |
#: app/skins/default_full_calendar/tpl.php:68
|
715 |
#: app/skins/full_calendar/tpl.php:109
|
716 |
msgid "Weekly"
|
717 |
msgstr "Wöchentlich"
|
718 |
|
719 |
-
#: app/features/events.php:
|
720 |
#: app/features/mec/dashboard.php:405
|
721 |
#: app/skins/default_full_calendar/tpl.php:67
|
722 |
#: app/skins/full_calendar/tpl.php:108
|
723 |
msgid "Monthly"
|
724 |
msgstr "Monatlich"
|
725 |
|
726 |
-
#: app/features/events.php:
|
727 |
#: app/features/mec/dashboard.php:406
|
728 |
#: app/skins/default_full_calendar/tpl.php:66
|
729 |
#: app/skins/full_calendar/tpl.php:107
|
730 |
msgid "Yearly"
|
731 |
msgstr "Jährlich"
|
732 |
|
733 |
-
#: app/features/events.php:
|
734 |
msgid "Custom Days"
|
735 |
msgstr "Benutzerdefinierte Tage"
|
736 |
|
737 |
-
#: app/features/events.php:
|
738 |
-
#, fuzzy
|
739 |
-
#| msgid "Advanced Method"
|
740 |
msgid "Advanced"
|
741 |
-
msgstr "
|
742 |
|
743 |
-
#: app/features/events.php:
|
744 |
msgid "Repeat Interval"
|
745 |
msgstr "Wiederholungsintervall"
|
746 |
|
747 |
-
#: app/features/events.php:
|
748 |
msgid "Repeat interval"
|
749 |
msgstr "Wiederholungsintervall"
|
750 |
|
751 |
-
#: app/features/events.php:
|
752 |
msgid "Week Days"
|
753 |
msgstr "Wochentage"
|
754 |
|
755 |
-
#: app/features/events.php:
|
756 |
-
#: app/features/events.php:
|
757 |
#: app/features/fes/form.php:377 app/features/ix/import_f_calendar.php:42
|
758 |
#: app/features/ix/import_g_calendar.php:51
|
759 |
#: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
|
760 |
msgid "Start"
|
761 |
msgstr "Start"
|
762 |
|
763 |
-
#: app/features/events.php:
|
764 |
-
#: app/features/events.php:
|
765 |
#: app/features/fes/form.php:378
|
766 |
-
#, fuzzy
|
767 |
-
#| msgid "Enabled"
|
768 |
msgid "End"
|
769 |
-
msgstr "
|
770 |
|
771 |
-
#: app/features/events.php:
|
772 |
-
#: app/features/events.php:
|
773 |
-
#: app/features/events.php:
|
774 |
-
#: app/features/events.php:
|
775 |
#: app/features/fes/form.php:379 app/features/fes/form.php:855
|
776 |
msgid "Add"
|
777 |
msgstr "Hinzufügen"
|
778 |
|
779 |
-
#: app/features/events.php:
|
780 |
-
#, fuzzy
|
781 |
-
#| msgid "Custom Days"
|
782 |
msgid "Custom Days Repeating"
|
783 |
-
msgstr "Benutzerdefinierte Tage"
|
784 |
|
785 |
-
#: app/features/events.php:
|
786 |
msgid ""
|
787 |
"Add certain days to event occurrence dates. If you have single day event, "
|
788 |
"start and end date should be the same, If you have multiple day event the "
|
789 |
"start and end dates must be commensurate with the initial date."
|
790 |
msgstr ""
|
791 |
|
792 |
-
#: app/features/events.php:
|
793 |
-
#, fuzzy
|
794 |
-
#| msgid "First name"
|
795 |
msgid "First"
|
796 |
-
msgstr "
|
797 |
|
798 |
-
#: app/features/events.php:
|
799 |
-
#, fuzzy
|
800 |
-
#| msgid "second"
|
801 |
msgid "Second"
|
802 |
-
msgstr "
|
803 |
|
804 |
-
#: app/features/events.php:
|
805 |
-
#, fuzzy
|
806 |
-
#| msgid "Third Party"
|
807 |
msgid "Third"
|
808 |
-
msgstr "
|
809 |
|
810 |
-
#: app/features/events.php:
|
811 |
msgid "Fourth"
|
812 |
-
msgstr ""
|
813 |
|
814 |
-
#: app/features/events.php:
|
815 |
-
#, fuzzy
|
816 |
-
#| msgid "Last name"
|
817 |
msgid "Last"
|
818 |
-
msgstr "
|
819 |
|
820 |
-
#: app/features/events.php:
|
821 |
msgid "Ends Repeat"
|
822 |
msgstr "Wiederholung endet"
|
823 |
|
824 |
-
#: app/features/events.php:
|
825 |
msgid "Never"
|
826 |
msgstr "Niemals"
|
827 |
|
828 |
-
#: app/features/events.php:
|
829 |
msgid "On"
|
830 |
msgstr "Am"
|
831 |
|
832 |
-
#: app/features/events.php:
|
833 |
msgid "After"
|
834 |
msgstr "Nach"
|
835 |
|
836 |
-
#: app/features/events.php:
|
837 |
#: app/features/fes/form.php:637 app/features/fes/form.php:640
|
838 |
msgid "Occurrences times"
|
839 |
msgstr " mal vorkommen"
|
840 |
|
841 |
-
#: app/features/events.php:
|
842 |
msgid ""
|
843 |
"The event will finish after certain repeats. For example if you set it to "
|
844 |
"10, the event will finish after 10 repeats."
|
@@ -846,14 +820,14 @@ msgstr ""
|
|
846 |
"Das Event ist nach einer bestimmten Anzahl von Wiederholungen zu Ende. Zum "
|
847 |
"Beispiel: Bei Eingabe von 10 wird das Event nach 10 Wiederholungen beendet"
|
848 |
|
849 |
-
#: app/features/events.php:
|
850 |
#, fuzzy
|
851 |
#| msgid "Next Occurrence of Other Events"
|
852 |
msgid "Show only one occurrence of this event"
|
853 |
msgstr "Nächstes Auftreten von anderen Events."
|
854 |
|
855 |
-
#: app/features/events.php:
|
856 |
-
#: app/features/events.php:
|
857 |
#: app/features/ix.php:3506 app/features/ix.php:3547
|
858 |
#: app/features/mec/settings.php:664 app/libraries/main.php:5367
|
859 |
#: app/widgets/single.php:103
|
@@ -861,69 +835,69 @@ msgid "Event Cost"
|
|
861 |
msgstr ""
|
862 |
"Bruttopreis des Events in Euro, 0 für kostenlos oder z.B. 39, ohne €-Zeichen"
|
863 |
|
864 |
-
#: app/features/events.php:
|
865 |
#, fuzzy
|
866 |
#| msgid "Exceptional Days"
|
867 |
msgid "Exceptional Days (Exclude Dates)"
|
868 |
msgstr "Herausgenommene Tage "
|
869 |
|
870 |
-
#: app/features/events.php:
|
871 |
msgid "Exclude certain days"
|
872 |
msgstr "Ausschluss bestimmter Tage"
|
873 |
|
874 |
-
#: app/features/events.php:
|
875 |
#: app/features/fes.php:223 app/features/mec/booking.php:500
|
876 |
#: app/features/profile/profile.php:53 app/libraries/main.php:2253
|
877 |
-
#: app/libraries/main.php:2901 app/modules/booking/steps/tickets.php:
|
878 |
-
#: app/modules/next-event/details.php:93 app/skins/single.php:
|
879 |
#: app/skins/single/default.php:85 app/skins/single/default.php:308
|
880 |
#: app/skins/single/m1.php:20 app/skins/single/modern.php:175
|
881 |
msgid "Date"
|
882 |
msgstr "Datum"
|
883 |
|
884 |
-
#: app/features/events.php:
|
885 |
msgid ""
|
886 |
"Exclude certain days from event occurrence dates. Please note that you can "
|
887 |
"exclude only single day occurrences and you cannot exclude one day from "
|
888 |
"multiple day occurrences."
|
889 |
msgstr ""
|
890 |
|
891 |
-
#: app/features/events.php:
|
892 |
msgid "Day 1"
|
893 |
-
msgstr ""
|
894 |
|
895 |
-
#: app/features/events.php:
|
896 |
msgid "Add Day"
|
897 |
-
msgstr ""
|
898 |
|
899 |
-
#: app/features/events.php:
|
900 |
msgid ""
|
901 |
"Add new days for schedule. For example if your event is multiple days, you "
|
902 |
"can add a different schedule for each day!"
|
903 |
msgstr ""
|
904 |
|
905 |
-
#: app/features/events.php:
|
906 |
#, php-format
|
907 |
msgid "Day %s"
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: app/features/events.php:
|
911 |
-
#: app/features/events.php:
|
912 |
-
#: app/features/events.php:
|
913 |
-
#: app/features/events.php:
|
914 |
-
#: app/features/events.php:
|
915 |
#: app/features/fes/form.php:236 app/features/ix.php:3506
|
916 |
#: app/features/ix.php:3547 app/features/mec/booking.php:384
|
917 |
#: app/features/mec/booking.php:416 app/features/mec/styling.php:115
|
918 |
msgid "Title"
|
919 |
msgstr "Titel"
|
920 |
|
921 |
-
#: app/features/events.php:
|
922 |
-
#: app/features/events.php:
|
923 |
-
#: app/features/events.php:
|
924 |
-
#: app/features/events.php:
|
925 |
-
#: app/features/events.php:
|
926 |
-
#: app/features/events.php:
|
927 |
#: app/features/mec/booking.php:327 app/features/mec/booking.php:356
|
928 |
#: app/features/mec/booking.php:407 app/features/mec/booking.php:439
|
929 |
#: app/libraries/main.php:2762 app/libraries/main.php:2792
|
@@ -936,57 +910,55 @@ msgstr "Titel"
|
|
936 |
msgid "Remove"
|
937 |
msgstr "Entfernen"
|
938 |
|
939 |
-
#: app/features/events.php:
|
940 |
msgid "Add new hourly schedule row"
|
941 |
msgstr "Neue Stundenplan-Zeile hinzufügen"
|
942 |
|
943 |
-
#: app/features/events.php:
|
944 |
-
#: app/features/events.php:
|
945 |
msgid "From e.g. 8:15"
|
946 |
msgstr "Von z.B. 08:15 Uhr"
|
947 |
|
948 |
-
#: app/features/events.php:
|
949 |
-
#: app/features/events.php:
|
950 |
msgid "To e.g. 8:45"
|
951 |
msgstr "bis zum Beispiel 08:45 Uhr"
|
952 |
|
953 |
-
#: app/features/events.php:
|
954 |
-
#: app/features/events.php:
|
955 |
-
#: app/features/events.php:
|
956 |
msgid "Description"
|
957 |
msgstr "Beschreibung"
|
958 |
|
959 |
-
#: app/features/events.php:
|
960 |
-
#: app/features/events.php:
|
961 |
#: app/features/mec.php:411 app/features/mec/modules.php:52
|
962 |
#: app/features/mec/settings.php:712 app/features/speakers.php:62
|
963 |
#: app/libraries/main.php:565 app/libraries/main.php:5342
|
964 |
#: app/modules/speakers/details.php:18
|
965 |
msgid "Speakers"
|
966 |
-
msgstr ""
|
967 |
|
968 |
-
#: app/features/events.php:
|
969 |
-
#, fuzzy
|
970 |
-
#| msgid "Week Days"
|
971 |
msgid "New Day"
|
972 |
-
msgstr "
|
973 |
|
974 |
-
#: app/features/events.php:
|
975 |
#: app/features/mec/settings.php:658
|
976 |
msgid "Event Links"
|
977 |
msgstr "Veranstaltungslinks"
|
978 |
|
979 |
-
#: app/features/events.php:
|
980 |
#: app/features/fes/form.php:706 app/libraries/main.php:5365
|
981 |
msgid "Event Link"
|
982 |
msgstr "Veranstaltungslink"
|
983 |
|
984 |
-
#: app/features/events.php:
|
985 |
#: app/features/fes/form.php:707 app/features/fes/form.php:712
|
986 |
msgid "eg. http://yoursite.com/your-event"
|
987 |
-
msgstr "z.B. http://
|
988 |
|
989 |
-
#: app/features/events.php:
|
990 |
#, fuzzy
|
991 |
#| msgid ""
|
992 |
#| "If you fill it, it will be replaced instead of default event page link. "
|
@@ -1000,32 +972,32 @@ msgstr ""
|
|
1000 |
"dieser durch einen neuen link ersetzt werden. Vollständigen Link einfügen, "
|
1001 |
"einschließlich http(s)://"
|
1002 |
|
1003 |
-
#: app/features/events.php:
|
1004 |
msgid "URL Shortener"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
-
#: app/features/events.php:
|
1008 |
#: app/features/fes/form.php:711 app/libraries/main.php:5366
|
1009 |
-
#: app/skins/single.php:
|
1010 |
#: app/skins/single/default.php:363 app/skins/single/m1.php:205
|
1011 |
#: app/skins/single/m2.php:132 app/skins/single/modern.php:140
|
1012 |
#: app/widgets/single.php:107
|
1013 |
msgid "More Info"
|
1014 |
msgstr "Mehr Informationen"
|
1015 |
|
1016 |
-
#: app/features/events.php:
|
1017 |
msgid "More Information"
|
1018 |
msgstr "z.B. Noch mehr Informationen "
|
1019 |
|
1020 |
-
#: app/features/events.php:
|
1021 |
msgid "Current Window"
|
1022 |
msgstr "Aktuelles Fenster"
|
1023 |
|
1024 |
-
#: app/features/events.php:
|
1025 |
msgid "New Window"
|
1026 |
msgstr "Neues Fenster"
|
1027 |
|
1028 |
-
#: app/features/events.php:
|
1029 |
msgid ""
|
1030 |
"If you fill it, it will be shown in event details page as an optional link. "
|
1031 |
"Insert full link including http(s)://"
|
@@ -1036,187 +1008,177 @@ msgstr ""
|
|
1036 |
"Text angezeigt werden soll: zum Beispiel: Noch mehr Informationen oder Hier "
|
1037 |
"zur Anmeldung (z.B. bei Webinaren sinnvoll) "
|
1038 |
|
1039 |
-
#: app/features/events.php:
|
1040 |
msgid "Total booking limits"
|
1041 |
msgstr "Gesamt Verfügbare Plätze"
|
1042 |
|
1043 |
-
#: app/features/events.php:
|
1044 |
-
#: app/features/events.php:
|
1045 |
-
#: app/modules/booking/steps/tickets.php:
|
1046 |
#: app/skins/available_spot/tpl.php:158
|
1047 |
msgid "Unlimited"
|
1048 |
msgstr "Unlimitiert"
|
1049 |
|
1050 |
-
#: app/features/events.php:
|
1051 |
msgid ""
|
1052 |
"If you want to set a limit to all tickets, uncheck this checkbox and put a "
|
1053 |
"limitation number."
|
1054 |
msgstr ""
|
1055 |
|
1056 |
-
#: app/features/events.php:
|
1057 |
#, fuzzy
|
1058 |
#| msgid "Choose your single event style."
|
1059 |
msgid "Read About A Booking System"
|
1060 |
msgstr "Wählen Sie Ihren Single Event Stil"
|
1061 |
|
1062 |
-
#: app/features/events.php:
|
1063 |
msgid "100"
|
1064 |
msgstr "z.B. 100"
|
1065 |
|
1066 |
-
#: app/features/events.php:
|
1067 |
#, fuzzy
|
1068 |
#| msgid "Total booking limits"
|
1069 |
msgid "Total user booking limits"
|
1070 |
msgstr "Gesamt Verfügbare Plätze"
|
1071 |
|
1072 |
-
#: app/features/events.php:
|
1073 |
-
#: app/features/events.php:
|
1074 |
msgid "Inherit from global options"
|
1075 |
msgstr "Aus den globalen Einstellungen übernehmen"
|
1076 |
|
1077 |
-
#: app/features/events.php:
|
1078 |
msgid "12"
|
1079 |
-
msgstr ""
|
1080 |
|
1081 |
-
#: app/features/events.php:
|
1082 |
-
#: app/libraries/main.php:5370 app/modules/booking/steps/tickets.php:
|
1083 |
msgid "Tickets"
|
1084 |
msgstr "Tickets"
|
1085 |
|
1086 |
-
#: app/features/events.php:
|
1087 |
msgid ""
|
1088 |
"You're translating an event so MEC will use the original event for tickets "
|
1089 |
"and booking. You can only translate the ticket name and description. Please "
|
1090 |
"define exact tickets that you defined in the original event here."
|
1091 |
msgstr ""
|
1092 |
|
1093 |
-
#: app/features/events.php:
|
1094 |
-
#, fuzzy
|
1095 |
-
#| msgid "Ticket"
|
1096 |
msgid "Add Ticket"
|
1097 |
-
msgstr "Ticket"
|
1098 |
|
1099 |
-
#: app/features/events.php:
|
1100 |
msgid "Ticket Name"
|
1101 |
msgstr "Ticket Name"
|
1102 |
|
1103 |
-
#: app/features/events.php:
|
1104 |
-
#: app/features/events.php:
|
1105 |
#: app/features/ix.php:3506 app/features/ix.php:3547
|
1106 |
msgid "Start Time"
|
1107 |
msgstr "Uhrzeit des Beginns"
|
1108 |
|
1109 |
-
#: app/features/events.php:
|
1110 |
-
#: app/features/events.php:
|
1111 |
#: app/features/ix.php:3506 app/features/ix.php:3547
|
1112 |
msgid "End Time"
|
1113 |
msgstr "Uhrzeit Ende"
|
1114 |
|
1115 |
-
#: app/features/events.php:
|
1116 |
-
#: app/features/events.php:
|
1117 |
-
#: app/features/events.php:
|
1118 |
-
#: app/features/events.php:
|
1119 |
-
#: app/features/events.php:
|
1120 |
-
#: app/features/events.php:
|
1121 |
#: app/features/mec/booking.php:391 app/features/mec/booking.php:420
|
1122 |
#: app/features/mec/booking.php:423
|
1123 |
msgid "Price"
|
1124 |
msgstr "Preis"
|
1125 |
|
1126 |
-
#: app/features/events.php:
|
1127 |
msgid "Insert 0 for free ticket. Only numbers please."
|
1128 |
msgstr "Bitte 0 für kostenloses Ticket eingeben. Bitte nur Zahlen eintragen"
|
1129 |
|
1130 |
-
#: app/features/events.php:
|
1131 |
-
#: app/features/events.php:
|
1132 |
msgid "Price Label"
|
1133 |
msgstr "Preisschild"
|
1134 |
|
1135 |
-
#: app/features/events.php:
|
1136 |
msgid "For showing on website. e.g. $15"
|
1137 |
msgstr "Um das auf der Webseite anzuzeigen zum Beispiel 15 €"
|
1138 |
|
1139 |
-
#: app/features/events.php:
|
1140 |
msgid "Available Tickets"
|
1141 |
msgstr "Verfügbare Tickets: %s "
|
1142 |
|
1143 |
-
#: app/features/events.php:
|
1144 |
-
#, fuzzy
|
1145 |
-
#| msgid "Amount (Per Ticket)"
|
1146 |
msgid "Minimum Ticket e.g. 3"
|
1147 |
-
msgstr "
|
1148 |
|
1149 |
-
#: app/features/events.php:
|
1150 |
-
#, fuzzy
|
1151 |
-
#| msgid "Amount (Per Ticket)"
|
1152 |
msgid "MinimumTicket"
|
1153 |
-
msgstr "
|
1154 |
|
1155 |
-
#: app/features/events.php:
|
1156 |
msgid "Set a number for the minimum ticket reservation"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
-
#: app/features/events.php:
|
1160 |
msgid "e.g. 0"
|
1161 |
-
msgstr ""
|
1162 |
|
1163 |
-
#: app/features/events.php:
|
1164 |
-
#, fuzzy
|
1165 |
-
#| msgid "Days"
|
1166 |
msgid "Day"
|
1167 |
-
msgstr "
|
1168 |
|
1169 |
-
#: app/features/events.php:
|
1170 |
msgid "Hour"
|
1171 |
-
msgstr ""
|
1172 |
|
1173 |
-
#: app/features/events.php:
|
1174 |
#, php-format
|
1175 |
msgid "Stop selling ticket %s before event start."
|
1176 |
msgstr ""
|
1177 |
|
1178 |
-
#: app/features/events.php:
|
1179 |
-
#, fuzzy
|
1180 |
-
#| msgid "Price Label"
|
1181 |
msgid "Price per Date"
|
1182 |
-
msgstr "
|
1183 |
|
1184 |
-
#: app/features/events.php:
|
1185 |
-
#: app/features/events.php:
|
1186 |
#: app/features/mec/meta_boxes/display_options.php:960
|
1187 |
#: app/features/mec/meta_boxes/search_form.php:66
|
1188 |
#: app/features/mec/meta_boxes/search_form.php:128
|
1189 |
#: app/features/mec/meta_boxes/search_form.php:190
|
1190 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1191 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1192 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1193 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1194 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1195 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1196 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1197 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1198 |
#: app/features/mec/settings.php:840 app/features/mec/single.php:250
|
1199 |
#: app/libraries/skins.php:995
|
1200 |
msgid "Label"
|
1201 |
msgstr "Label"
|
1202 |
|
1203 |
-
#: app/features/events.php:
|
1204 |
msgid "Fees"
|
1205 |
msgstr "Gebühren"
|
1206 |
|
1207 |
-
#: app/features/events.php:
|
1208 |
#: app/features/mec/booking.php:307 app/features/mec/booking.php:336
|
1209 |
msgid "Fee Title"
|
1210 |
msgstr "Gebühren Name"
|
1211 |
|
1212 |
-
#: app/features/events.php:
|
1213 |
-
#: app/features/events.php:
|
1214 |
#: app/features/mec/booking.php:311 app/features/mec/booking.php:314
|
1215 |
#: app/features/mec/booking.php:340 app/features/mec/booking.php:343
|
1216 |
msgid "Amount"
|
1217 |
msgstr "Betrag"
|
1218 |
|
1219 |
-
#: app/features/events.php:
|
1220 |
#: app/features/mec/booking.php:315 app/features/mec/booking.php:344
|
1221 |
msgid ""
|
1222 |
"Fee amount, considered as fixed amount if you set the type to amount "
|
@@ -1225,93 +1187,85 @@ msgstr ""
|
|
1225 |
"Gebührenbetrag, gilt als fester Betrag, wenn Sie die Art auf Betrag setzen, "
|
1226 |
"sonst als Prozentsatz"
|
1227 |
|
1228 |
-
#: app/features/events.php:
|
1229 |
#: app/features/mec/booking.php:322 app/features/mec/booking.php:351
|
1230 |
msgid "Percent"
|
1231 |
msgstr "Prozent"
|
1232 |
|
1233 |
-
#: app/features/events.php:
|
1234 |
#: app/features/mec/booking.php:323 app/features/mec/booking.php:352
|
1235 |
msgid "Amount (Per Ticket)"
|
1236 |
msgstr "Betrag (pro Ticket)"
|
1237 |
|
1238 |
-
#: app/features/events.php:
|
1239 |
#: app/features/mec/booking.php:324 app/features/mec/booking.php:353
|
1240 |
msgid "Amount (Per Booking)"
|
1241 |
msgstr "Betrag (pro Buchung)"
|
1242 |
|
1243 |
-
#: app/features/events.php:
|
1244 |
msgid "Ticket Variations / Options"
|
1245 |
msgstr ""
|
1246 |
|
1247 |
-
#: app/features/events.php:
|
1248 |
#: app/features/mec/booking.php:392 app/features/mec/booking.php:424
|
1249 |
-
#, fuzzy
|
1250 |
-
#| msgid "Option"
|
1251 |
msgid "Option Price"
|
1252 |
-
msgstr "
|
1253 |
|
1254 |
-
#: app/features/events.php:
|
1255 |
-
#: app/features/events.php:
|
1256 |
#: app/features/mec/booking.php:398 app/features/mec/booking.php:401
|
1257 |
#: app/features/mec/booking.php:430 app/features/mec/booking.php:433
|
1258 |
-
#, fuzzy
|
1259 |
-
#| msgid "Amount (Per Ticket)"
|
1260 |
msgid "Maximum Per Ticket"
|
1261 |
-
msgstr "
|
1262 |
|
1263 |
-
#: app/features/events.php:
|
1264 |
#: app/features/mec/booking.php:402 app/features/mec/booking.php:434
|
1265 |
msgid "Maximum Per Ticket. Leave it blank for unlimited."
|
1266 |
-
msgstr ""
|
1267 |
|
1268 |
-
#: app/features/events.php:
|
1269 |
#: app/libraries/main.php:2784
|
1270 |
-
#, fuzzy
|
1271 |
-
#| msgid "Name"
|
1272 |
msgid "MEC Name"
|
1273 |
-
msgstr "Name"
|
1274 |
|
1275 |
-
#: app/features/events.php:
|
1276 |
#: app/libraries/main.php:2813
|
1277 |
-
#, fuzzy
|
1278 |
-
#| msgid "Email"
|
1279 |
msgid "MEC Email"
|
1280 |
-
msgstr "Email"
|
1281 |
|
1282 |
-
#: app/features/events.php:
|
1283 |
#: app/libraries/main.php:2754
|
1284 |
msgid "Text"
|
1285 |
msgstr "Text"
|
1286 |
|
1287 |
-
#: app/features/events.php:
|
1288 |
#: app/features/organizers.php:103 app/features/organizers.php:148
|
1289 |
#: app/features/speakers.php:119 app/features/speakers.php:192
|
1290 |
#: app/features/speakers.php:271 app/libraries/main.php:2930
|
1291 |
msgid "Tel"
|
1292 |
msgstr "Tel"
|
1293 |
|
1294 |
-
#: app/features/events.php:
|
1295 |
#: app/libraries/main.php:2872
|
1296 |
msgid "File"
|
1297 |
-
msgstr ""
|
1298 |
|
1299 |
-
#: app/features/events.php:
|
1300 |
#: app/libraries/main.php:2959
|
1301 |
msgid "Textarea"
|
1302 |
msgstr "Textbereich"
|
1303 |
|
1304 |
-
#: app/features/events.php:
|
1305 |
#: app/libraries/main.php:3012
|
1306 |
msgid "Checkboxes"
|
1307 |
msgstr "Checkboxes"
|
1308 |
|
1309 |
-
#: app/features/events.php:
|
1310 |
#: app/libraries/main.php:3056
|
1311 |
msgid "Radio Buttons"
|
1312 |
msgstr "Radio Buttons"
|
1313 |
|
1314 |
-
#: app/features/events.php:
|
1315 |
#: app/features/mec/meta_boxes/search_form.php:34
|
1316 |
#: app/features/mec/meta_boxes/search_form.php:41
|
1317 |
#: app/features/mec/meta_boxes/search_form.php:48
|
@@ -1333,100 +1287,98 @@ msgstr "Radio Buttons"
|
|
1333 |
#: app/features/mec/meta_boxes/search_form.php:186
|
1334 |
#: app/features/mec/meta_boxes/search_form.php:193
|
1335 |
#: app/features/mec/meta_boxes/search_form.php:200
|
1336 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1337 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1338 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1339 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1340 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1341 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1342 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1343 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1344 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1345 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1346 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1347 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1348 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1349 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1350 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1351 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1352 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1353 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1354 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1355 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1356 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1357 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1358 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1359 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1360 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1361 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1362 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1363 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1364 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1365 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1366 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1367 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1368 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1369 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1370 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1371 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1372 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1373 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1374 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1375 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1376 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1377 |
-
#: app/features/mec/meta_boxes/search_form.php:578
|
1378 |
#: app/features/mec/meta_boxes/search_form.php:585
|
1379 |
#: app/features/mec/meta_boxes/search_form.php:592
|
1380 |
#: app/features/mec/meta_boxes/search_form.php:599
|
1381 |
#: app/features/mec/meta_boxes/search_form.php:606
|
1382 |
#: app/features/mec/meta_boxes/search_form.php:613
|
1383 |
#: app/features/mec/meta_boxes/search_form.php:620
|
1384 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1385 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1386 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1387 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1388 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1389 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1390 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
|
|
1391 |
msgid "Dropdown"
|
1392 |
msgstr "Dropdown"
|
1393 |
|
1394 |
-
#: app/features/events.php:
|
1395 |
#: app/libraries/main.php:3147
|
1396 |
msgid "Agreement"
|
1397 |
msgstr "Zustimmung"
|
1398 |
|
1399 |
-
#: app/features/events.php:
|
1400 |
#: app/libraries/main.php:2988
|
1401 |
msgid "Paragraph"
|
1402 |
msgstr "Absatz"
|
1403 |
|
1404 |
-
#: app/features/events.php:
|
1405 |
-
#: app/features/events.php:
|
1406 |
#, php-format
|
1407 |
msgid "Show all %s"
|
1408 |
msgstr "Zeige alle %s"
|
1409 |
|
1410 |
-
#: app/features/events.php:
|
1411 |
msgid "labels"
|
1412 |
msgstr "Labels + Eventstatus"
|
1413 |
|
1414 |
-
#: app/features/events.php:
|
1415 |
msgid "locations"
|
1416 |
msgstr "Orte"
|
1417 |
|
1418 |
-
#: app/features/events.php:
|
1419 |
msgid "organizers"
|
1420 |
msgstr "Veranstalter"
|
1421 |
|
1422 |
-
#: app/features/events.php:
|
1423 |
-
#, fuzzy
|
1424 |
-
#| msgid "Attendees Limit"
|
1425 |
msgid "Attendees List"
|
1426 |
-
msgstr "Teilnehmer
|
1427 |
|
1428 |
-
#: app/features/events.php:
|
1429 |
-
#: app/features/events.php:
|
1430 |
#: app/features/ix.php:3547 app/features/locations.php:58
|
1431 |
#: app/features/locations.php:232 app/features/locations.php:289
|
1432 |
#: app/features/locations.php:291 app/features/locations.php:300
|
@@ -1434,100 +1386,96 @@ msgstr "Teilnehmer Limit, maximale Anzahl"
|
|
1434 |
#: app/features/mec/meta_boxes/search_form.php:38
|
1435 |
#: app/features/mec/meta_boxes/search_form.php:100
|
1436 |
#: app/features/mec/meta_boxes/search_form.php:162
|
1437 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1438 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1439 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1440 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1441 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1442 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1443 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1444 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1445 |
#: app/features/mec/settings.php:814 app/features/mec/single.php:240
|
1446 |
#: app/features/search.php:73 app/libraries/main.php:2247
|
1447 |
#: app/libraries/main.php:5339 app/libraries/skins.php:891
|
1448 |
-
#: app/skins/single.php:
|
1449 |
#: app/skins/single/default.php:176 app/skins/single/default.php:399
|
1450 |
#: app/skins/single/m1.php:169 app/skins/single/m2.php:95
|
1451 |
#: app/skins/single/modern.php:102
|
1452 |
msgid "Location"
|
1453 |
msgstr "Ort"
|
1454 |
|
1455 |
-
#: app/features/events.php:
|
1456 |
msgid "Repeat"
|
1457 |
msgstr "Wiederholen"
|
1458 |
|
1459 |
-
#: app/features/events.php:
|
1460 |
msgid "Author"
|
1461 |
msgstr "Autor"
|
1462 |
|
1463 |
-
#: app/features/events.php:
|
1464 |
msgid "iCal Export"
|
1465 |
msgstr "ical Export"
|
1466 |
|
1467 |
-
#: app/features/events.php:
|
1468 |
msgid "CSV Export"
|
1469 |
msgstr "CSV Export"
|
1470 |
|
1471 |
-
#: app/features/events.php:
|
1472 |
msgid "MS Excel Export"
|
1473 |
msgstr "MS Excel Export"
|
1474 |
|
1475 |
-
#: app/features/events.php:
|
1476 |
msgid "XML Export"
|
1477 |
msgstr "XML Export"
|
1478 |
|
1479 |
-
#: app/features/events.php:
|
1480 |
msgid "JSON Export"
|
1481 |
msgstr "JSON Export"
|
1482 |
|
1483 |
-
#: app/features/events.php:
|
1484 |
-
#: app/features/events.php:
|
1485 |
msgid "Duplicate"
|
1486 |
msgstr "Kopie"
|
1487 |
|
1488 |
-
#: app/features/events.php:
|
1489 |
#: app/features/fes.php:223 app/features/ix.php:3506 app/features/ix.php:3547
|
1490 |
#: app/features/labels.php:177 app/features/locations.php:231
|
1491 |
#: app/features/organizers.php:203 app/features/speakers.php:268
|
1492 |
msgid "ID"
|
1493 |
msgstr "ID"
|
1494 |
|
1495 |
-
#: app/features/events.php:
|
1496 |
#: app/features/ix.php:3506 app/features/ix.php:3547
|
1497 |
msgid "Link"
|
1498 |
msgstr "Link"
|
1499 |
|
1500 |
-
#: app/features/events.php:
|
1501 |
#, php-format
|
1502 |
msgid "%s Tel"
|
1503 |
msgstr "%s Tel"
|
1504 |
|
1505 |
-
#: app/features/events.php:
|
1506 |
#, php-format
|
1507 |
msgid "%s Email"
|
1508 |
msgstr "%s Email"
|
1509 |
|
1510 |
-
#: app/features/events.php:
|
1511 |
#: app/features/profile/profile.php:186 app/libraries/main.php:2282
|
1512 |
#: app/libraries/main.php:5369
|
1513 |
msgid "Ticket"
|
1514 |
msgstr "Ticket"
|
1515 |
|
1516 |
-
#: app/features/events.php:
|
1517 |
-
#, fuzzy
|
1518 |
-
#| msgid "Verification"
|
1519 |
msgid "Variations"
|
1520 |
-
msgstr "
|
1521 |
|
1522 |
-
#: app/features/events.php:
|
1523 |
msgid "Unknown"
|
1524 |
msgstr "Unbekannt"
|
1525 |
|
1526 |
-
#: app/features/events.php:
|
1527 |
-
#, fuzzy
|
1528 |
-
#| msgid "Attendees Form"
|
1529 |
msgid "No Attendees Found!"
|
1530 |
-
msgstr "
|
1531 |
|
1532 |
#: app/features/fes.php:87
|
1533 |
#, php-format
|
@@ -1562,19 +1510,21 @@ msgstr "Bitte %s/%s um Veranstaltungen managen zu können."
|
|
1562 |
msgid "The event removed!"
|
1563 |
msgstr "Die Veranstaltung wurde entfernt."
|
1564 |
|
|
|
|
|
|
|
|
|
1565 |
#: app/features/fes.php:223 app/libraries/main.php:2259
|
1566 |
msgid "Transaction ID"
|
1567 |
msgstr "Transaktions-ID"
|
1568 |
|
1569 |
#: app/features/fes.php:223
|
1570 |
msgid "Total Price"
|
1571 |
-
msgstr ""
|
1572 |
|
1573 |
#: app/features/fes.php:223
|
1574 |
-
#, fuzzy
|
1575 |
-
#| msgid "Verification"
|
1576 |
msgid "Ticket Variation"
|
1577 |
-
msgstr "
|
1578 |
|
1579 |
#: app/features/fes.php:223
|
1580 |
msgid "Confirmation"
|
@@ -1607,8 +1557,6 @@ msgid "The event published."
|
|
1607 |
msgstr "Die Veranstaltung wurde veröffentlicht."
|
1608 |
|
1609 |
#: app/features/fes/form.php:169
|
1610 |
-
#, fuzzy
|
1611 |
-
#| msgid "Go back to events list."
|
1612 |
msgid "Go back to events list"
|
1613 |
msgstr "Zurück zur Liste der Veranstaltungen"
|
1614 |
|
@@ -1694,7 +1642,7 @@ msgstr "Bild entfernen"
|
|
1694 |
#: app/features/fes/form.php:783 app/features/labels.php:61
|
1695 |
#: app/features/labels.php:221 app/features/mec.php:404
|
1696 |
#: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:5336
|
1697 |
-
#: app/skins/single.php:
|
1698 |
#: app/skins/single/default.php:378 app/skins/single/m1.php:73
|
1699 |
#: app/skins/single/modern.php:228
|
1700 |
msgid "Labels"
|
@@ -1711,14 +1659,12 @@ msgstr ""
|
|
1711 |
"Geben Sie die gewünschten Tags (Schlagworte) durch ein Komma separiert ein"
|
1712 |
|
1713 |
#: app/features/fes/form.php:853
|
1714 |
-
#, fuzzy
|
1715 |
-
#| msgid "No Search Options"
|
1716 |
msgid "Speakers Names"
|
1717 |
-
msgstr "
|
1718 |
|
1719 |
#: app/features/fes/form.php:854
|
1720 |
msgid "Separate names with commas Similar Justin, Cris"
|
1721 |
-
msgstr ""
|
1722 |
|
1723 |
#: app/features/fes/form.php:872
|
1724 |
msgid "Submit"
|
@@ -1733,16 +1679,12 @@ msgid "Add new"
|
|
1733 |
msgstr "Neu hinzufügen"
|
1734 |
|
1735 |
#: app/features/fes/list.php:80
|
1736 |
-
#, fuzzy
|
1737 |
-
#| msgid "Download Invoice"
|
1738 |
msgid "Download Attendees"
|
1739 |
-
msgstr "
|
1740 |
|
1741 |
#: app/features/fes/list.php:84
|
1742 |
-
#, fuzzy
|
1743 |
-
#| msgid "featured event"
|
1744 |
msgid "Remove Event"
|
1745 |
-
msgstr "
|
1746 |
|
1747 |
#: app/features/fes/list.php:175
|
1748 |
#, php-format
|
@@ -1764,7 +1706,7 @@ msgstr ""
|
|
1764 |
|
1765 |
#: app/features/ix.php:204
|
1766 |
msgid "The file type should be XML or ICS."
|
1767 |
-
msgstr ""
|
1768 |
|
1769 |
#: app/features/ix.php:213
|
1770 |
msgid "An error occurred during the file upload! Please check permissions!"
|
@@ -1772,7 +1714,7 @@ msgstr ""
|
|
1772 |
|
1773 |
#: app/features/ix.php:221
|
1774 |
msgid "The events are imported successfully!"
|
1775 |
-
msgstr ""
|
1776 |
|
1777 |
#: app/features/ix.php:943
|
1778 |
msgid "Third Party plugin is not installed and activated!"
|
@@ -2047,10 +1989,8 @@ msgid "Checking ..."
|
|
2047 |
msgstr "Überprüfung"
|
2048 |
|
2049 |
#: app/features/ix/export_g_calendar.php:134
|
2050 |
-
#, fuzzy
|
2051 |
-
#| msgid "Importing ..."
|
2052 |
msgid "Exporting ..."
|
2053 |
-
msgstr "
|
2054 |
|
2055 |
#: app/features/ix/import.php:21
|
2056 |
msgid "Import MEC XML Feed"
|
@@ -2069,7 +2009,7 @@ msgstr ""
|
|
2069 |
|
2070 |
#: app/features/ix/import.php:29 app/features/ix/import.php:42
|
2071 |
msgid "Upload & Import"
|
2072 |
-
msgstr ""
|
2073 |
|
2074 |
#: app/features/ix/import.php:33
|
2075 |
msgid "Import .ics File"
|
@@ -2112,7 +2052,7 @@ msgstr ""
|
|
2112 |
#: app/features/mec/modules.php:70 app/features/mec/modules.php:212
|
2113 |
#: app/features/mec/modules.php:229
|
2114 |
msgid "Pro version of Modern Events Calendar"
|
2115 |
-
msgstr ""
|
2116 |
|
2117 |
#: app/features/ix/import_f_calendar.php:22
|
2118 |
msgid "The Facebook SDK requires PHP version 5.4 or higher."
|
@@ -2158,7 +2098,7 @@ msgstr ""
|
|
2158 |
#: app/features/ix/import_f_calendar.php:65 app/features/ix/thirdparty.php:58
|
2159 |
#, php-format
|
2160 |
msgid "Event Title: %s"
|
2161 |
-
msgstr "Event
|
2162 |
|
2163 |
#: app/features/ix/import_f_calendar.php:72
|
2164 |
#: app/features/ix/import_g_calendar.php:87
|
@@ -2252,7 +2192,7 @@ msgstr "API Schlüssel"
|
|
2252 |
|
2253 |
#: app/features/ix/import_meetup.php:32
|
2254 |
msgid "Group URL"
|
2255 |
-
msgstr ""
|
2256 |
|
2257 |
#: app/features/ix/import_meetup.php:35
|
2258 |
#, php-format
|
@@ -2470,7 +2410,7 @@ msgstr ""
|
|
2470 |
#: app/features/organizers.php:77 app/features/speakers.php:80
|
2471 |
#, php-format
|
2472 |
msgid "← Back to %s"
|
2473 |
-
msgstr ""
|
2474 |
|
2475 |
#: app/features/labels.php:103 app/features/labels.php:134
|
2476 |
#: app/features/labels.php:179
|
@@ -2497,7 +2437,7 @@ msgstr "Style"
|
|
2497 |
|
2498 |
#: app/features/labels.php:116 app/features/labels.php:141
|
2499 |
msgid "Normal"
|
2500 |
-
msgstr ""
|
2501 |
|
2502 |
#: app/features/labels.php:117 app/features/labels.php:142
|
2503 |
#: app/skins/agenda/render.php:39 app/skins/available_spot/tpl.php:39
|
@@ -2510,10 +2450,8 @@ msgstr ""
|
|
2510 |
#: app/skins/tile/render.php:37 app/skins/timeline/render.php:44
|
2511 |
#: app/skins/timetable/render.php:35 app/skins/timetable/render.php:144
|
2512 |
#: app/skins/weekly_view/render.php:33 app/skins/yearly_view/render.php:48
|
2513 |
-
#, fuzzy
|
2514 |
-
#| msgid "Featured Image"
|
2515 |
msgid "Featured"
|
2516 |
-
msgstr "
|
2517 |
|
2518 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2519 |
#: app/libraries/main.php:5585 app/skins/agenda/render.php:43
|
@@ -2536,7 +2474,7 @@ msgstr ""
|
|
2536 |
|
2537 |
#: app/features/labels.php:180 app/features/locations.php:234
|
2538 |
#: app/features/organizers.php:206 app/features/speakers.php:272
|
2539 |
-
#: app/modules/booking/steps/tickets.php:
|
2540 |
msgid "Count"
|
2541 |
msgstr "Zähler"
|
2542 |
|
@@ -2665,10 +2603,8 @@ msgid "Don't show map in single event page"
|
|
2665 |
msgstr "Karte in Einzelansicht nicht anzeigen"
|
2666 |
|
2667 |
#: app/features/locations.php:359 app/libraries/main.php:5372
|
2668 |
-
#, fuzzy
|
2669 |
-
#| msgid "Locations"
|
2670 |
msgid "Other Locations"
|
2671 |
-
msgstr "Orte"
|
2672 |
|
2673 |
#: app/features/locations.php:361
|
2674 |
#, fuzzy
|
@@ -2692,7 +2628,7 @@ msgstr ""
|
|
2692 |
|
2693 |
#: app/features/mec.php:186
|
2694 |
msgid "Troubleshooting"
|
2695 |
-
msgstr ""
|
2696 |
|
2697 |
#: app/features/mec.php:256 app/libraries/notifications.php:937
|
2698 |
#, php-format
|
@@ -2706,22 +2642,16 @@ msgid ""
|
|
2706 |
msgstr ""
|
2707 |
|
2708 |
#: app/features/mec.php:286
|
2709 |
-
#, fuzzy
|
2710 |
-
#| msgid "Your booking cannot verify!"
|
2711 |
msgid "Your options field can not be empty!"
|
2712 |
-
msgstr "
|
2713 |
|
2714 |
#: app/features/mec.php:292
|
2715 |
-
#, fuzzy
|
2716 |
-
#| msgid "Your booking successfully verified."
|
2717 |
msgid "Your options imported successfuly."
|
2718 |
-
msgstr "Ihre
|
2719 |
|
2720 |
#: app/features/mec.php:385
|
2721 |
-
#, fuzzy
|
2722 |
-
#| msgid "Support"
|
2723 |
msgid "MEC - Support"
|
2724 |
-
msgstr "Support"
|
2725 |
|
2726 |
#: app/features/mec.php:385 app/features/mec/support-page.php:9
|
2727 |
#: app/features/mec/support.php:80 app/features/mec/support.php:93
|
@@ -2744,14 +2674,12 @@ msgid "MEC - Settings"
|
|
2744 |
msgstr "MEC - Einstellungen"
|
2745 |
|
2746 |
#: app/features/mec.php:416
|
2747 |
-
#, fuzzy
|
2748 |
-
#| msgid "MEC - Settings"
|
2749 |
msgid "MEC - Addons"
|
2750 |
-
msgstr "MEC -
|
2751 |
|
2752 |
#: app/features/mec.php:416 app/features/mec/addons.php:22
|
2753 |
msgid "Addons"
|
2754 |
-
msgstr ""
|
2755 |
|
2756 |
#: app/features/mec.php:419
|
2757 |
#, fuzzy
|
@@ -2765,6 +2693,16 @@ msgstr "Support"
|
|
2765 |
msgid "Report"
|
2766 |
msgstr "Export"
|
2767 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2768 |
#: app/features/mec.php:440
|
2769 |
msgid "Add Shortcode"
|
2770 |
msgstr "Shortcode hinzufügen"
|
@@ -2801,19 +2739,19 @@ msgstr "Filteroptionen"
|
|
2801 |
msgid "Search Form"
|
2802 |
msgstr "Suche Formular"
|
2803 |
|
2804 |
-
#: app/features/mec.php:
|
2805 |
msgid "Display content's images as Popup"
|
2806 |
msgstr ""
|
2807 |
|
2808 |
-
#: app/features/mec.php:
|
2809 |
msgid "Single Event Display Method"
|
2810 |
msgstr "Single Event Anzeigemethode"
|
2811 |
|
2812 |
-
#: app/features/mec.php:
|
2813 |
msgid "Separate Window"
|
2814 |
msgstr "Separates Fenster"
|
2815 |
|
2816 |
-
#: app/features/mec.php:
|
2817 |
msgid "Modal 1"
|
2818 |
msgstr "Modal 1"
|
2819 |
|
@@ -2825,7 +2763,7 @@ msgstr "Version"
|
|
2825 |
|
2826 |
#: app/features/mec/addons.php:82
|
2827 |
msgid "Coming Soon"
|
2828 |
-
msgstr ""
|
2829 |
|
2830 |
#: app/features/mec/addons.php:93
|
2831 |
msgid ""
|
@@ -2838,10 +2776,8 @@ msgstr ""
|
|
2838 |
#: app/features/mec/modules.php:23 app/features/mec/notifications.php:12
|
2839 |
#: app/features/mec/settings.php:37 app/features/mec/single.php:15
|
2840 |
#: app/features/mec/styling.php:35
|
2841 |
-
#, fuzzy
|
2842 |
-
#| msgid "Search %s"
|
2843 |
msgid "Search..."
|
2844 |
-
msgstr "Suche
|
2845 |
|
2846 |
#: app/features/mec/booking.php:72 app/features/mec/booking.php:514
|
2847 |
#: app/features/mec/booking.php:594 app/features/mec/booking.php:603
|
@@ -2900,16 +2836,12 @@ msgid "Limit"
|
|
2900 |
msgstr "Limit"
|
2901 |
|
2902 |
#: app/features/mec/booking.php:117
|
2903 |
-
#, fuzzy
|
2904 |
-
#| msgid "Default is 6"
|
2905 |
msgid "Default is empty"
|
2906 |
-
msgstr "
|
2907 |
|
2908 |
#: app/features/mec/booking.php:120
|
2909 |
-
#, fuzzy
|
2910 |
-
#| msgid "Booking Form"
|
2911 |
msgid "Booking Limit"
|
2912 |
-
msgstr "
|
2913 |
|
2914 |
#: app/features/mec/booking.php:121
|
2915 |
msgid ""
|
@@ -2933,7 +2865,7 @@ msgstr "Buchungsformular"
|
|
2933 |
|
2934 |
#: app/features/mec/booking.php:136
|
2935 |
msgid "Minutes (e.g 5)"
|
2936 |
-
msgstr ""
|
2937 |
|
2938 |
#: app/features/mec/booking.php:140
|
2939 |
msgid ""
|
@@ -2957,14 +2889,12 @@ msgstr ""
|
|
2957 |
|
2958 |
#: app/features/mec/booking.php:165 app/features/mec/booking.php:170
|
2959 |
#: app/features/mec/settings.php:627 app/features/mec/settings.php:632
|
2960 |
-
#, fuzzy
|
2961 |
-
#| msgid "Thank You Page"
|
2962 |
msgid "Thank You Page Time Interval"
|
2963 |
-
msgstr "Danke Seite"
|
2964 |
|
2965 |
#: app/features/mec/booking.php:167 app/features/mec/settings.php:629
|
2966 |
msgid "2000 mean 2 seconds"
|
2967 |
-
msgstr ""
|
2968 |
|
2969 |
#: app/features/mec/booking.php:171 app/features/mec/settings.php:633
|
2970 |
msgid ""
|
@@ -2989,16 +2919,12 @@ msgstr ""
|
|
2989 |
"Buchungsformular anwenden."
|
2990 |
|
2991 |
#: app/features/mec/booking.php:200
|
2992 |
-
#, fuzzy
|
2993 |
-
#| msgid "Download Invoice"
|
2994 |
msgid "Enable Invoice"
|
2995 |
-
msgstr "
|
2996 |
|
2997 |
#: app/features/mec/booking.php:211
|
2998 |
-
#, fuzzy
|
2999 |
-
#| msgid "Enable booking notification"
|
3000 |
msgid "Enable Booking for Ongoing Events"
|
3001 |
-
msgstr "
|
3002 |
|
3003 |
#: app/features/mec/booking.php:216
|
3004 |
msgid "Email verification"
|
@@ -3056,10 +2982,8 @@ msgid "Ticket Variations & Options"
|
|
3056 |
msgstr ""
|
3057 |
|
3058 |
#: app/features/mec/booking.php:373
|
3059 |
-
#, fuzzy
|
3060 |
-
#| msgid "Enable coupons module"
|
3061 |
msgid "Enable ticket options module"
|
3062 |
-
msgstr "
|
3063 |
|
3064 |
#: app/features/mec/booking.php:378
|
3065 |
msgid "Add Variation / Option"
|
@@ -3093,7 +3017,7 @@ msgstr "Gesichert"
|
|
3093 |
#: app/features/mec/settings.php:1050 app/features/mec/single.php:293
|
3094 |
#: app/features/mec/styles.php:61 app/features/mec/styling.php:297
|
3095 |
msgid "Settings Saved!"
|
3096 |
-
msgstr ""
|
3097 |
|
3098 |
#: app/features/mec/booking.php:636 app/features/mec/booking.php:658
|
3099 |
#: app/features/mec/modules.php:396 app/features/mec/modules.php:418
|
@@ -3121,23 +3045,19 @@ msgid "%s - Most Powerful & Easy to Use Events Management System"
|
|
3121 |
msgstr ""
|
3122 |
|
3123 |
#: app/features/mec/dashboard.php:63
|
3124 |
-
#, fuzzy
|
3125 |
-
#| msgid "Modern Events Calendar"
|
3126 |
msgid "Modern Events Calendar (Lite)"
|
3127 |
-
msgstr "Moderner Event Kalender "
|
3128 |
|
3129 |
#: app/features/mec/dashboard.php:65 app/libraries/factory.php:199
|
3130 |
msgctxt "plugin rate"
|
3131 |
msgid "Rate the plugin ★★★★★"
|
3132 |
-
msgstr ""
|
3133 |
|
3134 |
#: app/features/mec/dashboard.php:70
|
3135 |
-
#, fuzzy
|
3136 |
-
#| msgid "Update %s"
|
3137 |
msgid "Update"
|
3138 |
-
msgstr "Update
|
3139 |
|
3140 |
-
#: app/features/mec/dashboard.php:96 app/features/mec/go-pro.php:
|
3141 |
#, php-format
|
3142 |
msgid ""
|
3143 |
"You're using %s version of Modern Events Calendar. To use advanced booking "
|
@@ -3145,37 +3065,33 @@ msgid ""
|
|
3145 |
"Spots, etc you should upgrade to the Pro version."
|
3146 |
msgstr ""
|
3147 |
|
3148 |
-
#: app/features/mec/dashboard.php:96 app/features/mec/go-pro.php:
|
3149 |
msgid "lite"
|
3150 |
msgstr ""
|
3151 |
|
3152 |
-
#: app/features/mec/dashboard.php:99 app/features/mec/go-pro.php:
|
3153 |
#: app/features/mec/support.php:126
|
3154 |
msgid "GO PREMIUM"
|
3155 |
msgstr ""
|
3156 |
|
3157 |
-
#: app/features/mec/dashboard.php:102 app/features/mec/go-pro.php:
|
3158 |
#, php-format
|
3159 |
msgid ""
|
3160 |
"Easily get a discount coupon by rating us on %s or following and reposting "
|
3161 |
"us on social media. Just send a screenshot to %s and you'll receive the %s"
|
3162 |
msgstr ""
|
3163 |
|
3164 |
-
#: app/features/mec/dashboard.php:102 app/features/mec/go-pro.php:
|
3165 |
-
#, fuzzy
|
3166 |
-
#| msgid "Address"
|
3167 |
msgid "WordPress"
|
3168 |
-
msgstr "
|
3169 |
|
3170 |
-
#: app/features/mec/dashboard.php:102 app/features/mec/go-pro.php:
|
3171 |
msgid "Copouns!"
|
3172 |
-
msgstr ""
|
3173 |
|
3174 |
#: app/features/mec/dashboard.php:131
|
3175 |
-
#, fuzzy
|
3176 |
-
#| msgid "Modern Events Calendar"
|
3177 |
msgid "Getting started with Modern Events Calendar"
|
3178 |
-
msgstr "
|
3179 |
|
3180 |
#: app/features/mec/dashboard.php:132
|
3181 |
msgid ""
|
@@ -3184,16 +3100,12 @@ msgid ""
|
|
3184 |
msgstr ""
|
3185 |
|
3186 |
#: app/features/mec/dashboard.php:148 app/features/mec/dashboard.php:172
|
3187 |
-
#, fuzzy
|
3188 |
-
#| msgid "MEC Activation"
|
3189 |
msgid "MEC Activate"
|
3190 |
-
msgstr "MEC
|
3191 |
|
3192 |
#: app/features/mec/dashboard.php:154 app/features/mec/dashboard.php:236
|
3193 |
-
#, fuzzy
|
3194 |
-
#| msgid "MEC Activation"
|
3195 |
msgid "Activate Addons"
|
3196 |
-
msgstr "MEC
|
3197 |
|
3198 |
#: app/features/mec/dashboard.php:162 app/features/mec/dashboard.php:245
|
3199 |
msgid "You cannot access this section."
|
@@ -3254,10 +3166,6 @@ msgstr "Alle Verkäufe (%s)"
|
|
3254 |
msgid "Change Log"
|
3255 |
msgstr "Änderungsprotokoll"
|
3256 |
|
3257 |
-
#: app/features/mec/go-pro.php:9
|
3258 |
-
msgid "Go Pro"
|
3259 |
-
msgstr ""
|
3260 |
-
|
3261 |
#: app/features/mec/ie.php:21
|
3262 |
msgid ""
|
3263 |
"Insert your backup files below and press import to restore your site's "
|
@@ -3275,16 +3183,12 @@ msgid "Please paste your options here"
|
|
3275 |
msgstr ""
|
3276 |
|
3277 |
#: app/features/mec/ie.php:27
|
3278 |
-
#, fuzzy
|
3279 |
-
#| msgid "Import Options"
|
3280 |
msgid "Import Settings"
|
3281 |
-
msgstr "
|
3282 |
|
3283 |
#: app/features/mec/ie.php:37
|
3284 |
-
#, fuzzy
|
3285 |
-
#| msgid "Download Invoice"
|
3286 |
msgid "Download Settings"
|
3287 |
-
msgstr "
|
3288 |
|
3289 |
#: app/features/mec/messages.php:28 app/features/mec/support.php:66
|
3290 |
#: app/libraries/main.php:795
|
@@ -3675,10 +3579,8 @@ msgstr ""
|
|
3675 |
|
3676 |
#: app/features/mec/meta_boxes/display_options.php:260
|
3677 |
#: app/features/mec/meta_boxes/display_options.php:1373
|
3678 |
-
#, fuzzy
|
3679 |
-
#| msgid "Default value is \"d F Y\""
|
3680 |
msgid "Default value is \"d F Y"
|
3681 |
-
msgstr "Standardwert ist \"d (Tag) F Y (Jahr)\" "
|
3682 |
|
3683 |
#: app/features/mec/meta_boxes/display_options.php:272
|
3684 |
msgid "Default values are d and F"
|
@@ -3751,10 +3653,8 @@ msgstr "Tagesansicht"
|
|
3751 |
|
3752 |
#: app/features/mec/meta_boxes/display_options.php:496
|
3753 |
#: app/features/popup/shortcode.php:136
|
3754 |
-
#, fuzzy
|
3755 |
-
#| msgid "Modern Style"
|
3756 |
msgid "Monthly Style"
|
3757 |
-
msgstr "
|
3758 |
|
3759 |
#: app/features/mec/meta_boxes/display_options.php:536
|
3760 |
#, php-format
|
@@ -3839,16 +3739,12 @@ msgid "Number of Days"
|
|
3839 |
msgstr ""
|
3840 |
|
3841 |
#: app/features/mec/meta_boxes/display_options.php:841
|
3842 |
-
#, fuzzy
|
3843 |
-
#| msgid "Start"
|
3844 |
msgid "Week Start"
|
3845 |
-
msgstr "Start"
|
3846 |
|
3847 |
#: app/features/mec/meta_boxes/display_options.php:843
|
3848 |
-
#, fuzzy
|
3849 |
-
#| msgid "Inherit from global options"
|
3850 |
msgid "Inherite from WordPress options"
|
3851 |
-
msgstr "Aus den globalen Einstellungen übernehmen"
|
3852 |
|
3853 |
#: app/features/mec/meta_boxes/display_options.php:858
|
3854 |
msgid "1:00"
|
@@ -4163,11 +4059,11 @@ msgstr ""
|
|
4163 |
#: app/features/mec/meta_boxes/filter.php:204
|
4164 |
#: app/features/popup/shortcode.php:336
|
4165 |
msgid "only"
|
4166 |
-
msgstr ""
|
4167 |
|
4168 |
#: app/features/mec/meta_boxes/filter.php:204
|
4169 |
msgid "older"
|
4170 |
-
msgstr ""
|
4171 |
|
4172 |
#: app/features/mec/meta_boxes/filter.php:212
|
4173 |
#: app/features/popup/shortcode.php:346
|
@@ -4207,54 +4103,53 @@ msgstr "Such Formular anzeigen"
|
|
4207 |
#: app/features/mec/meta_boxes/search_form.php:192
|
4208 |
#: app/features/mec/meta_boxes/search_form.php:199
|
4209 |
#: app/features/mec/meta_boxes/search_form.php:206
|
4210 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4211 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4212 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4213 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4214 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4215 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4216 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4217 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4218 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4219 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4220 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4221 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4222 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4223 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4224 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4225 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4226 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4227 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4228 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4229 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4230 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4231 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4232 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4233 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4234 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4235 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4236 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4237 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4238 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4239 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4240 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4241 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4242 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4243 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4244 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4245 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4246 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4247 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4248 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4249 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4250 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4251 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4252 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4253 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4254 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4255 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4256 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4257 |
-
#: app/features/mec/meta_boxes/search_form.php:577
|
4258 |
#: app/features/mec/meta_boxes/search_form.php:584
|
4259 |
#: app/features/mec/meta_boxes/search_form.php:591
|
4260 |
#: app/features/mec/meta_boxes/search_form.php:598
|
@@ -4262,14 +4157,15 @@ msgstr "Such Formular anzeigen"
|
|
4262 |
#: app/features/mec/meta_boxes/search_form.php:612
|
4263 |
#: app/features/mec/meta_boxes/search_form.php:619
|
4264 |
#: app/features/mec/meta_boxes/search_form.php:626
|
4265 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4266 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4267 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4268 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4269 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4270 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4271 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4272 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
|
|
4273 |
#: app/features/mec/modules.php:125 app/features/mec/settings.php:101
|
4274 |
#: app/features/mec/settings.php:421
|
4275 |
msgid "Disabled"
|
@@ -4278,94 +4174,90 @@ msgstr "Deaktiviert"
|
|
4278 |
#: app/features/mec/meta_boxes/search_form.php:52
|
4279 |
#: app/features/mec/meta_boxes/search_form.php:114
|
4280 |
#: app/features/mec/meta_boxes/search_form.php:176
|
4281 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4282 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4283 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4284 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4285 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4286 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4287 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4288 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4289 |
#: app/features/mec/settings.php:827 app/features/mec/single.php:245
|
4290 |
#: app/features/search.php:83 app/features/speakers.php:61
|
4291 |
#: app/features/speakers.php:269 app/libraries/main.php:5343
|
4292 |
#: app/libraries/skins.php:943
|
4293 |
msgid "Speaker"
|
4294 |
-
msgstr ""
|
4295 |
|
4296 |
#: app/features/mec/meta_boxes/search_form.php:59
|
4297 |
#: app/features/mec/meta_boxes/search_form.php:121
|
4298 |
#: app/features/mec/meta_boxes/search_form.php:183
|
4299 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4300 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4301 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4302 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4303 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4304 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4305 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4306 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4307 |
#: app/features/mec/settings.php:834 app/features/mec/single.php:254
|
4308 |
#: app/features/search.php:88 app/libraries/skins.php:969
|
4309 |
-
#, fuzzy
|
4310 |
-
#| msgid "Tags"
|
4311 |
msgid "Tag"
|
4312 |
-
msgstr "
|
4313 |
|
4314 |
#: app/features/mec/meta_boxes/search_form.php:73
|
4315 |
#: app/features/mec/meta_boxes/search_form.php:135
|
4316 |
#: app/features/mec/meta_boxes/search_form.php:197
|
4317 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4318 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4319 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4320 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4321 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4322 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4323 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4324 |
msgid "Month Filter"
|
4325 |
msgstr "Monatsfilter"
|
4326 |
|
4327 |
#: app/features/mec/meta_boxes/search_form.php:80
|
4328 |
#: app/features/mec/meta_boxes/search_form.php:142
|
4329 |
#: app/features/mec/meta_boxes/search_form.php:204
|
4330 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4331 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4332 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4333 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4334 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4335 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4336 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4337 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4338 |
msgid "Text Search"
|
4339 |
msgstr "Textsuche"
|
4340 |
|
4341 |
#: app/features/mec/meta_boxes/search_form.php:83
|
4342 |
#: app/features/mec/meta_boxes/search_form.php:145
|
4343 |
#: app/features/mec/meta_boxes/search_form.php:207
|
4344 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4345 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4346 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4347 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4348 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4349 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4350 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4351 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4352 |
msgid "Text Input"
|
4353 |
msgstr "Text eingeben"
|
4354 |
|
4355 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4356 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4357 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4358 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4359 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4360 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4361 |
msgid "No Search Options"
|
4362 |
msgstr "Keine Suchoptionen"
|
4363 |
|
4364 |
#: app/features/mec/modules.php:43
|
4365 |
-
#, fuzzy
|
4366 |
-
#| msgid "No Search Options"
|
4367 |
msgid "Speakers Options"
|
4368 |
-
msgstr "
|
4369 |
|
4370 |
#: app/features/mec/modules.php:49
|
4371 |
#, fuzzy
|
@@ -4456,10 +4348,8 @@ msgstr ""
|
|
4456 |
"Checken Sie es nur wenn ein anderes plugin/Thema die Google Maps API lädt."
|
4457 |
|
4458 |
#: app/features/mec/modules.php:168 app/libraries/main.php:567
|
4459 |
-
#, fuzzy
|
4460 |
-
#| msgid "Import Options"
|
4461 |
msgid "Export Options"
|
4462 |
-
msgstr "
|
4463 |
|
4464 |
#: app/features/mec/modules.php:172
|
4465 |
msgid ""
|
@@ -4737,10 +4627,8 @@ msgstr "Gebuchtes Datum der Veranstaltung"
|
|
4737 |
#: app/features/mec/notifications.php:407
|
4738 |
#: app/features/mec/notifications.php:505
|
4739 |
#: app/features/mec/notifications.php:613
|
4740 |
-
#, fuzzy
|
4741 |
-
#| msgid "Booked date of event"
|
4742 |
msgid "Booked time of event"
|
4743 |
-
msgstr "
|
4744 |
|
4745 |
#: app/features/mec/notifications.php:108
|
4746 |
#: app/features/mec/notifications.php:201
|
@@ -4758,7 +4646,7 @@ msgstr "Buchungspreis"
|
|
4758 |
#: app/features/mec/notifications.php:507
|
4759 |
#: app/features/mec/notifications.php:615
|
4760 |
msgid "Date and time of placing booking"
|
4761 |
-
msgstr ""
|
4762 |
|
4763 |
#: app/features/mec/notifications.php:110
|
4764 |
#: app/features/mec/notifications.php:203
|
@@ -4808,8 +4696,6 @@ msgstr "Titel der Veranstaltung"
|
|
4808 |
#: app/features/mec/notifications.php:414
|
4809 |
#: app/features/mec/notifications.php:512
|
4810 |
#: app/features/mec/notifications.php:620
|
4811 |
-
#, fuzzy
|
4812 |
-
#| msgid "Event Link"
|
4813 |
msgid "Event link"
|
4814 |
msgstr "Veranstaltungslink"
|
4815 |
|
@@ -4818,20 +4704,16 @@ msgstr "Veranstaltungslink"
|
|
4818 |
#: app/features/mec/notifications.php:304
|
4819 |
#: app/features/mec/notifications.php:717
|
4820 |
#: app/features/mec/notifications.php:800
|
4821 |
-
#, fuzzy
|
4822 |
-
#| msgid "Start Date"
|
4823 |
msgid "Event Start Date"
|
4824 |
-
msgstr "Start Datum"
|
4825 |
|
4826 |
#: app/features/mec/notifications.php:116
|
4827 |
#: app/features/mec/notifications.php:209
|
4828 |
#: app/features/mec/notifications.php:305
|
4829 |
#: app/features/mec/notifications.php:718
|
4830 |
#: app/features/mec/notifications.php:801
|
4831 |
-
#, fuzzy
|
4832 |
-
#| msgid "End Date"
|
4833 |
msgid "Event End Date"
|
4834 |
-
msgstr "
|
4835 |
|
4836 |
#: app/features/mec/notifications.php:117
|
4837 |
#: app/features/mec/notifications.php:210
|
@@ -4895,10 +4777,8 @@ msgstr "Adresse der gebuchten Veranstaltung"
|
|
4895 |
#: app/features/mec/notifications.php:421
|
4896 |
#: app/features/mec/notifications.php:519
|
4897 |
#: app/features/mec/notifications.php:627
|
4898 |
-
#, fuzzy
|
4899 |
-
#| msgid "Organizer name of booked event"
|
4900 |
msgid "Featured image of booked event"
|
4901 |
-
msgstr "
|
4902 |
|
4903 |
#: app/features/mec/notifications.php:124
|
4904 |
#: app/features/mec/notifications.php:423
|
@@ -4921,7 +4801,7 @@ msgstr "Rechnungslink"
|
|
4921 |
#: app/features/mec/notifications.php:522
|
4922 |
#: app/features/mec/notifications.php:630
|
4923 |
msgid "Total Attendees"
|
4924 |
-
msgstr ""
|
4925 |
|
4926 |
#: app/features/mec/notifications.php:127
|
4927 |
#: app/features/mec/notifications.php:219
|
@@ -4929,17 +4809,13 @@ msgstr ""
|
|
4929 |
#: app/features/mec/notifications.php:425
|
4930 |
#: app/features/mec/notifications.php:523
|
4931 |
#: app/features/mec/notifications.php:631
|
4932 |
-
#, fuzzy
|
4933 |
-
#| msgid "Amount (Per Ticket)"
|
4934 |
msgid "Amount of Booked Tickets"
|
4935 |
-
msgstr "
|
4936 |
|
4937 |
#: app/features/mec/notifications.php:128
|
4938 |
#: app/features/mec/notifications.php:220
|
4939 |
#: app/features/mec/notifications.php:317
|
4940 |
#: app/features/mec/notifications.php:632
|
4941 |
-
#, fuzzy
|
4942 |
-
#| msgid "Ticket Name"
|
4943 |
msgid "Ticket name"
|
4944 |
msgstr "Ticket Name"
|
4945 |
|
@@ -4947,19 +4823,15 @@ msgstr "Ticket Name"
|
|
4947 |
#: app/features/mec/notifications.php:221
|
4948 |
#: app/features/mec/notifications.php:318
|
4949 |
#: app/features/mec/notifications.php:633
|
4950 |
-
#, fuzzy
|
4951 |
-
#| msgid "Ticket Name"
|
4952 |
msgid "Ticket time"
|
4953 |
-
msgstr "Ticket
|
4954 |
|
4955 |
#: app/features/mec/notifications.php:130
|
4956 |
#: app/features/mec/notifications.php:222
|
4957 |
#: app/features/mec/notifications.php:319
|
4958 |
#: app/features/mec/notifications.php:634
|
4959 |
-
#, fuzzy
|
4960 |
-
#| msgid "Download Invoice"
|
4961 |
msgid "Download ICS file"
|
4962 |
-
msgstr "Download
|
4963 |
|
4964 |
#: app/features/mec/notifications.php:138 app/libraries/main.php:578
|
4965 |
msgid "Booking Verification"
|
@@ -4982,7 +4854,7 @@ msgstr ""
|
|
4982 |
|
4983 |
#: app/features/mec/notifications.php:284
|
4984 |
msgid "Send One Single Email Only To First Attendee"
|
4985 |
-
msgstr ""
|
4986 |
|
4987 |
#: app/features/mec/notifications.php:313
|
4988 |
#: app/features/mec/notifications.php:628
|
@@ -4990,16 +4862,12 @@ msgid "Booking cancellation link."
|
|
4990 |
msgstr "Link zur Stornierung der Buchung"
|
4991 |
|
4992 |
#: app/features/mec/notifications.php:326 app/libraries/main.php:580
|
4993 |
-
#, fuzzy
|
4994 |
-
#| msgid "Booking cancellation link."
|
4995 |
msgid "Booking Cancellation"
|
4996 |
-
msgstr "
|
4997 |
|
4998 |
#: app/features/mec/notifications.php:330
|
4999 |
-
#, fuzzy
|
5000 |
-
#| msgid "Enable new event notification"
|
5001 |
msgid "Enable cancellation notification"
|
5002 |
-
msgstr "Benachrichtigung bei
|
5003 |
|
5004 |
#: app/features/mec/notifications.php:334
|
5005 |
#, fuzzy
|
@@ -5013,16 +4881,12 @@ msgstr ""
|
|
5013 |
|
5014 |
#: app/features/mec/notifications.php:387
|
5015 |
#: app/features/mec/notifications.php:654
|
5016 |
-
#, fuzzy
|
5017 |
-
#| msgid "Send the email to event organizer"
|
5018 |
msgid "Send the email to admin"
|
5019 |
-
msgstr "Sendet
|
5020 |
|
5021 |
#: app/features/mec/notifications.php:395
|
5022 |
-
#, fuzzy
|
5023 |
-
#| msgid "Send the email to event organizer"
|
5024 |
msgid "Send the email to booking user"
|
5025 |
-
msgstr "Sendet
|
5026 |
|
5027 |
#: app/features/mec/notifications.php:422
|
5028 |
#: app/features/mec/notifications.php:520
|
@@ -5031,13 +4895,11 @@ msgstr "Admin-link zur Buchungsverwaltung"
|
|
5031 |
|
5032 |
#: app/features/mec/notifications.php:432 app/libraries/main.php:582
|
5033 |
msgid "Admin"
|
5034 |
-
msgstr ""
|
5035 |
|
5036 |
#: app/features/mec/notifications.php:436
|
5037 |
-
#, fuzzy
|
5038 |
-
#| msgid "Enable booking notification"
|
5039 |
msgid "Enable admin notification"
|
5040 |
-
msgstr "Buchungsbenachrichtigung aktivieren"
|
5041 |
|
5042 |
#: app/features/mec/notifications.php:440
|
5043 |
msgid "It sends to admin to notify him/her that a new booking received."
|
@@ -5098,10 +4960,8 @@ msgstr "Titel der Veranstaltung"
|
|
5098 |
|
5099 |
#: app/features/mec/notifications.php:716
|
5100 |
#: app/features/mec/notifications.php:799
|
5101 |
-
#, fuzzy
|
5102 |
-
#| msgid "Title of event"
|
5103 |
msgid "Link of event"
|
5104 |
-
msgstr "
|
5105 |
|
5106 |
#: app/features/mec/notifications.php:719
|
5107 |
#: app/features/mec/notifications.php:802
|
@@ -5120,16 +4980,12 @@ msgid "Admin events management link."
|
|
5120 |
msgstr "Admin-link zur Veranstaltungsverwaltung"
|
5121 |
|
5122 |
#: app/features/mec/notifications.php:733 app/libraries/main.php:584
|
5123 |
-
#, fuzzy
|
5124 |
-
#| msgid "The event published."
|
5125 |
msgid "User Event Publishing"
|
5126 |
-
msgstr "
|
5127 |
|
5128 |
#: app/features/mec/notifications.php:737
|
5129 |
-
#, fuzzy
|
5130 |
-
#| msgid "Enable new event notification"
|
5131 |
msgid "Enable user event publishing notification"
|
5132 |
-
msgstr "Benachrichtigung bei neuen Veranstaltungen aktivieren"
|
5133 |
|
5134 |
#: app/features/mec/notifications.php:741
|
5135 |
#, fuzzy
|
@@ -5144,61 +5000,49 @@ msgstr ""
|
|
5144 |
"Übermittlung oder dem Backend versandt."
|
5145 |
|
5146 |
#: app/features/mec/report.php:12
|
5147 |
-
#, fuzzy
|
5148 |
-
#| msgid "Booking Form"
|
5149 |
msgid "Booking Report"
|
5150 |
-
msgstr "
|
5151 |
|
5152 |
#: app/features/mec/report.php:45
|
5153 |
-
#, fuzzy
|
5154 |
-
#| msgid "Organizer Email"
|
5155 |
msgid "Send Email"
|
5156 |
-
msgstr "
|
5157 |
|
5158 |
#: app/features/mec/report.php:47
|
5159 |
-
#, fuzzy
|
5160 |
-
#| msgid "%s Email"
|
5161 |
msgid "Bulk Email"
|
5162 |
-
msgstr "
|
5163 |
|
5164 |
#: app/features/mec/report.php:48
|
5165 |
#, php-format
|
5166 |
msgid "You are sending email to %s attendees"
|
5167 |
-
msgstr ""
|
5168 |
|
5169 |
#: app/features/mec/report.php:53
|
5170 |
-
#, fuzzy
|
5171 |
-
#| msgid "No Search Options"
|
5172 |
msgid "Attendee Name"
|
5173 |
-
msgstr "
|
5174 |
|
5175 |
#: app/features/mec/report.php:57
|
5176 |
msgid "Loading..."
|
5177 |
-
msgstr ""
|
5178 |
|
5179 |
#: app/features/mec/report.php:58
|
5180 |
msgid "Emails successfully sent"
|
5181 |
-
msgstr ""
|
5182 |
|
5183 |
#: app/features/mec/report.php:59
|
5184 |
msgid "No user selected!"
|
5185 |
-
msgstr ""
|
5186 |
|
5187 |
#: app/features/mec/report.php:60
|
5188 |
-
#, fuzzy
|
5189 |
-
#| msgid "Your booking cannot verify!"
|
5190 |
msgid "Email subject cannot be empty!"
|
5191 |
-
msgstr "
|
5192 |
|
5193 |
#: app/features/mec/report.php:61
|
5194 |
-
#, fuzzy
|
5195 |
-
#| msgid "Your booking cannot verify!"
|
5196 |
msgid "Email content cannot be empty!"
|
5197 |
-
msgstr "
|
5198 |
|
5199 |
#: app/features/mec/report.php:62
|
5200 |
msgid "There was an error please try again!"
|
5201 |
-
msgstr ""
|
5202 |
|
5203 |
#: app/features/mec/settings.php:59 app/features/mec/settings.php:69
|
5204 |
msgid "Hide Events"
|
@@ -5267,17 +5111,15 @@ msgstr "Keine Suchoptionen"
|
|
5267 |
|
5268 |
#: app/features/mec/settings.php:112
|
5269 |
msgid "e.g. Webnus"
|
5270 |
-
msgstr ""
|
5271 |
|
5272 |
#: app/features/mec/settings.php:119
|
5273 |
-
#, fuzzy
|
5274 |
-
#| msgid "Organizer Email"
|
5275 |
msgid "Sender Email"
|
5276 |
-
msgstr "
|
5277 |
|
5278 |
#: app/features/mec/settings.php:122
|
5279 |
msgid "e.g. info@webnus.biz"
|
5280 |
-
msgstr ""
|
5281 |
|
5282 |
#: app/features/mec/settings.php:128
|
5283 |
msgid "Exclude Date Suffix"
|
@@ -5344,31 +5186,31 @@ msgstr ""
|
|
5344 |
|
5345 |
#: app/features/mec/settings.php:201 app/features/mec/settings.php:213
|
5346 |
msgid "Midnight Hour"
|
5347 |
-
msgstr ""
|
5348 |
|
5349 |
#: app/features/mec/settings.php:204
|
5350 |
msgid "12 AM"
|
5351 |
-
msgstr ""
|
5352 |
|
5353 |
#: app/features/mec/settings.php:205
|
5354 |
msgid "1 AM"
|
5355 |
-
msgstr ""
|
5356 |
|
5357 |
#: app/features/mec/settings.php:206
|
5358 |
msgid "2 AM"
|
5359 |
-
msgstr ""
|
5360 |
|
5361 |
#: app/features/mec/settings.php:207
|
5362 |
msgid "3 AM"
|
5363 |
-
msgstr ""
|
5364 |
|
5365 |
#: app/features/mec/settings.php:208
|
5366 |
msgid "4 AM"
|
5367 |
-
msgstr ""
|
5368 |
|
5369 |
#: app/features/mec/settings.php:209
|
5370 |
msgid "5 AM"
|
5371 |
-
msgstr ""
|
5372 |
|
5373 |
#: app/features/mec/settings.php:214
|
5374 |
msgid ""
|
@@ -5428,8 +5270,6 @@ msgid "Modern Style"
|
|
5428 |
msgstr "Moderner Stil"
|
5429 |
|
5430 |
#: app/features/mec/settings.php:305 app/features/mec/settings.php:379
|
5431 |
-
#, fuzzy
|
5432 |
-
#| msgid "Colorful"
|
5433 |
msgid "colorful"
|
5434 |
msgstr "Farbenfroh"
|
5435 |
|
@@ -5465,7 +5305,7 @@ msgstr ""
|
|
5465 |
|
5466 |
#: app/features/mec/settings.php:404
|
5467 |
msgid "Expired Events"
|
5468 |
-
msgstr ""
|
5469 |
|
5470 |
#: app/features/mec/settings.php:409
|
5471 |
msgid "Default value is Upcoming Events"
|
@@ -5548,11 +5388,11 @@ msgstr "Position des Währungssymbols"
|
|
5548 |
|
5549 |
#: app/features/mec/settings.php:497
|
5550 |
msgid "Before $10"
|
5551 |
-
msgstr "Vor
|
5552 |
|
5553 |
#: app/features/mec/settings.php:498
|
5554 |
msgid "After 10$"
|
5555 |
-
msgstr "Nach 10
|
5556 |
|
5557 |
#: app/features/mec/settings.php:503
|
5558 |
msgid "Thousand Separator"
|
@@ -5618,10 +5458,6 @@ msgid "Add/Edit Events Page"
|
|
5618 |
msgstr "Veranstaltungsseite hinzufügen/bearbeiten"
|
5619 |
|
5620 |
#: app/features/mec/settings.php:618
|
5621 |
-
#, fuzzy
|
5622 |
-
#| msgid ""
|
5623 |
-
#| "User redirects to this page after booking. Leave it empty if you want to "
|
5624 |
-
#| "disable it."
|
5625 |
msgid ""
|
5626 |
"User redirects to this page after new event submission. Leave it empty if "
|
5627 |
"you want to disable it."
|
@@ -5702,7 +5538,7 @@ msgstr ""
|
|
5702 |
|
5703 |
#: app/features/mec/settings.php:774 app/libraries/main.php:537
|
5704 |
msgid "User Profile"
|
5705 |
-
msgstr ""
|
5706 |
|
5707 |
#: app/features/mec/settings.php:776
|
5708 |
#, php-format
|
@@ -5712,10 +5548,8 @@ msgid ""
|
|
5712 |
msgstr ""
|
5713 |
|
5714 |
#: app/features/mec/settings.php:781 app/libraries/main.php:538
|
5715 |
-
#, fuzzy
|
5716 |
-
#| msgid "Search Form"
|
5717 |
msgid "Search Bar"
|
5718 |
-
msgstr "Suche
|
5719 |
|
5720 |
#: app/features/mec/settings.php:783
|
5721 |
#, php-format
|
@@ -5744,10 +5578,8 @@ msgid "Modern Type"
|
|
5744 |
msgstr "Moderner Stil"
|
5745 |
|
5746 |
#: app/features/mec/settings.php:804
|
5747 |
-
#, fuzzy
|
5748 |
-
#| msgid "Search Form"
|
5749 |
msgid "Search bar fields"
|
5750 |
-
msgstr "
|
5751 |
|
5752 |
#: app/features/mec/settings.php:846
|
5753 |
#, fuzzy
|
@@ -5812,7 +5644,7 @@ msgstr "Mailchimp Integration deaktivieren"
|
|
5812 |
|
5813 |
#: app/features/mec/settings.php:947
|
5814 |
msgid "Group ID"
|
5815 |
-
msgstr ""
|
5816 |
|
5817 |
#: app/features/mec/settings.php:956 app/libraries/main.php:542
|
5818 |
#, fuzzy
|
@@ -5925,15 +5757,15 @@ msgstr ""
|
|
5925 |
|
5926 |
#: app/features/mec/single.php:102
|
5927 |
msgid "Disable Block Editor (Gutenberg)"
|
5928 |
-
msgstr ""
|
5929 |
|
5930 |
#: app/features/mec/single.php:105
|
5931 |
msgid "Disable Block Editor"
|
5932 |
-
msgstr ""
|
5933 |
|
5934 |
#: app/features/mec/single.php:109
|
5935 |
msgid "Block Editor"
|
5936 |
-
msgstr ""
|
5937 |
|
5938 |
#: app/features/mec/single.php:110
|
5939 |
msgid ""
|
@@ -6026,8 +5858,6 @@ msgid "Enable Description For Other Organizers."
|
|
6026 |
msgstr ""
|
6027 |
|
6028 |
#: app/features/mec/single.php:209
|
6029 |
-
#, fuzzy
|
6030 |
-
#| msgid "Additional Organizers"
|
6031 |
msgid "Additional locations"
|
6032 |
msgstr "Zusätzliche Organisatoren"
|
6033 |
|
@@ -6045,10 +5875,8 @@ msgstr ""
|
|
6045 |
|
6046 |
#: app/features/mec/single.php:219 app/libraries/main.php:552
|
6047 |
#: app/skins/single.php:163
|
6048 |
-
#, fuzzy
|
6049 |
-
#| msgid "featured event"
|
6050 |
msgid "Related Events"
|
6051 |
-
msgstr "
|
6052 |
|
6053 |
#: app/features/mec/single.php:223
|
6054 |
msgid "Display related events based on taxonomy in single event page."
|
@@ -6201,7 +6029,7 @@ msgstr ""
|
|
6201 |
|
6202 |
#: app/features/mec/support-page.php:75
|
6203 |
msgid "Quick Setup"
|
6204 |
-
msgstr ""
|
6205 |
|
6206 |
#: app/features/mec/support-page.php:79
|
6207 |
#, fuzzy
|
@@ -6211,7 +6039,7 @@ msgstr "Download Rechnung\n"
|
|
6211 |
|
6212 |
#: app/features/mec/support-page.php:80
|
6213 |
msgid "Install and Activate the Plugin"
|
6214 |
-
msgstr ""
|
6215 |
|
6216 |
#: app/features/mec/support-page.php:81
|
6217 |
#, fuzzy
|
@@ -6224,7 +6052,7 @@ msgstr "Neue Veranstaltung hinzufügen"
|
|
6224 |
#: app/features/mec/support-page.php:155 app/features/mec/support-page.php:172
|
6225 |
#: app/features/mec/support-page.php:189 app/features/mec/support-page.php:206
|
6226 |
msgid "Watch Video"
|
6227 |
-
msgstr ""
|
6228 |
|
6229 |
#: app/features/mec/support-page.php:92
|
6230 |
#, fuzzy
|
@@ -6234,7 +6062,7 @@ msgstr "MEC Aktivierung"
|
|
6234 |
|
6235 |
#: app/features/mec/support-page.php:96
|
6236 |
msgid "Login to Dashboard"
|
6237 |
-
msgstr ""
|
6238 |
|
6239 |
#: app/features/mec/support-page.php:97
|
6240 |
msgid "Get the License Key"
|
@@ -6242,7 +6070,7 @@ msgstr ""
|
|
6242 |
|
6243 |
#: app/features/mec/support-page.php:98
|
6244 |
msgid "Activate the plugin"
|
6245 |
-
msgstr ""
|
6246 |
|
6247 |
#: app/features/mec/support-page.php:113
|
6248 |
#, fuzzy
|
@@ -6352,7 +6180,7 @@ msgstr "Filteroptionen"
|
|
6352 |
|
6353 |
#: app/features/mec/support-page.php:217
|
6354 |
msgid "FAQ"
|
6355 |
-
msgstr ""
|
6356 |
|
6357 |
#: app/features/mec/support-page.php:221
|
6358 |
msgid "How should I update plugin?"
|
@@ -6499,10 +6327,8 @@ msgid ""
|
|
6499 |
msgstr ""
|
6500 |
|
6501 |
#: app/features/mec/support-page.php:279
|
6502 |
-
#, fuzzy
|
6503 |
-
#| msgid "Add New Shortcode"
|
6504 |
msgid "Create a support ticket"
|
6505 |
-
msgstr "
|
6506 |
|
6507 |
#: app/features/mec/support.php:52 app/libraries/main.php:781
|
6508 |
msgid "Styling Options"
|
@@ -6641,7 +6467,7 @@ msgid "eg. https://webnus.net"
|
|
6641 |
msgstr "http://webnus.net"
|
6642 |
|
6643 |
#: app/features/organizers.php:312 app/libraries/main.php:5371
|
6644 |
-
#: app/skins/single.php:
|
6645 |
msgid "Other Organizers"
|
6646 |
msgstr "Andere Veranstalter"
|
6647 |
|
@@ -6669,10 +6495,8 @@ msgid "Shortcode name is required"
|
|
6669 |
msgstr ""
|
6670 |
|
6671 |
#: app/features/popup/shortcode.php:313
|
6672 |
-
#, fuzzy
|
6673 |
-
#| msgid "Single Event Style"
|
6674 |
msgid "Select Event"
|
6675 |
-
msgstr "
|
6676 |
|
6677 |
#: app/features/popup/shortcode.php:336
|
6678 |
#, fuzzy, php-format
|
@@ -6701,7 +6525,7 @@ msgid "Prev"
|
|
6701 |
msgstr ""
|
6702 |
|
6703 |
#: app/features/popup/shortcode.php:373 app/modules/booking/steps/form.php:179
|
6704 |
-
#: app/modules/booking/steps/tickets.php:
|
6705 |
#: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:234
|
6706 |
msgid "Next"
|
6707 |
msgstr "Weiter"
|
@@ -6719,10 +6543,8 @@ msgid "Please %s/%s in order to see your bookings / profile."
|
|
6719 |
msgstr "Um neue Veranstaltungen einzugeben, bitte %s/%s"
|
6720 |
|
6721 |
#: app/features/profile/profile.php:18 app/libraries/main.php:2150
|
6722 |
-
#, fuzzy
|
6723 |
-
#| msgid "Your booking cannot be canceled."
|
6724 |
msgid "Your booking already canceled!"
|
6725 |
-
msgstr "Ihre Buchung
|
6726 |
|
6727 |
#: app/features/profile/profile.php:47 app/features/profile/profile.php:177
|
6728 |
msgid "#"
|
@@ -6747,10 +6569,8 @@ msgid "Map"
|
|
6747 |
msgstr ""
|
6748 |
|
6749 |
#: app/features/profile/profile.php:68
|
6750 |
-
#, fuzzy
|
6751 |
-
#| msgid "Canceled"
|
6752 |
msgid "Cancel"
|
6753 |
-
msgstr "
|
6754 |
|
6755 |
#: app/features/profile/profile.php:96
|
6756 |
msgid "N/A"
|
@@ -6771,15 +6591,15 @@ msgstr "label"
|
|
6771 |
|
6772 |
#: app/features/search.php:128
|
6773 |
msgid "Please enter at least 3 characters and try again"
|
6774 |
-
msgstr ""
|
6775 |
|
6776 |
#: app/features/search_bar/search_bar.php:32
|
6777 |
msgid "Please enter at least 3 characters"
|
6778 |
-
msgstr ""
|
6779 |
|
6780 |
#: app/features/search_bar/search_bar.php:34
|
6781 |
msgid "Search results will show here"
|
6782 |
-
msgstr ""
|
6783 |
|
6784 |
#: app/features/search_bar/search_bar.php:45
|
6785 |
#, fuzzy
|
@@ -6789,41 +6609,35 @@ msgstr "Suche %s"
|
|
6789 |
|
6790 |
#: app/features/search_bar/search_noresult.php:1
|
6791 |
msgid "No search result."
|
6792 |
-
msgstr ""
|
6793 |
|
6794 |
#: app/features/search_bar/search_result.php:11
|
6795 |
#: app/libraries/notifications.php:951 app/libraries/render.php:488
|
6796 |
#: app/modules/local-time/details.php:48 app/modules/next-event/details.php:104
|
6797 |
-
#: app/skins/single.php:160 app/skins/single.php:
|
6798 |
#: app/skins/single/default.php:108 app/skins/single/default.php:331
|
6799 |
#: app/skins/single/m1.php:43 app/skins/single/modern.php:198
|
6800 |
#, fuzzy
|
6801 |
-
#| msgid "
|
6802 |
msgid "All Day"
|
6803 |
-
msgstr "
|
6804 |
|
6805 |
#: app/features/speakers.php:111 app/features/speakers.php:188
|
6806 |
#: app/features/speakers.php:270
|
6807 |
-
#, fuzzy
|
6808 |
-
#| msgid "Title"
|
6809 |
msgid "Job Title"
|
6810 |
-
msgstr "Titel"
|
6811 |
|
6812 |
#: app/features/speakers.php:114 app/features/speakers.php:189
|
6813 |
msgid "Insert speaker job title."
|
6814 |
msgstr ""
|
6815 |
|
6816 |
#: app/features/speakers.php:122 app/features/speakers.php:193
|
6817 |
-
#, fuzzy
|
6818 |
-
#| msgid "Insert organizer phone number."
|
6819 |
msgid "Insert speaker phone number."
|
6820 |
-
msgstr "Veranstalter Telefonnummer
|
6821 |
|
6822 |
#: app/features/speakers.php:130 app/features/speakers.php:197
|
6823 |
-
#, fuzzy
|
6824 |
-
#| msgid "Insert organizer email address."
|
6825 |
msgid "Insert speaker email address."
|
6826 |
-
msgstr "Veranstalter Email-Adresse
|
6827 |
|
6828 |
#: app/features/speakers.php:135 app/features/speakers.php:200
|
6829 |
#, fuzzy
|
@@ -6892,12 +6706,12 @@ msgstr ""
|
|
6892 |
msgid "%s Price"
|
6893 |
msgstr "%s Preis"
|
6894 |
|
6895 |
-
#: app/libraries/book.php:
|
6896 |
msgid "Discount"
|
6897 |
msgstr "Rabatt"
|
6898 |
|
6899 |
-
#: app/libraries/book.php:
|
6900 |
-
#: app/modules/booking/default.php:
|
6901 |
msgid "Download Invoice"
|
6902 |
msgstr "Download Rechnung"
|
6903 |
|
@@ -7078,10 +6892,8 @@ msgid "Upload Field"
|
|
7078 |
msgstr "Bild hochladen/hinzufügen"
|
7079 |
|
7080 |
#: app/libraries/main.php:551
|
7081 |
-
#, fuzzy
|
7082 |
-
#| msgid "Additional Organizers"
|
7083 |
msgid "Additional Locations"
|
7084 |
-
msgstr "Zusätzliche
|
7085 |
|
7086 |
#: app/libraries/main.php:635
|
7087 |
#, fuzzy
|
@@ -7239,10 +7051,8 @@ msgid "Custom Shortcode"
|
|
7239 |
msgstr "Shortcode"
|
7240 |
|
7241 |
#: app/libraries/main.php:2130
|
7242 |
-
#, fuzzy
|
7243 |
-
#| msgid "Your booking successfully verified."
|
7244 |
msgid "Your booking already verified!"
|
7245 |
-
msgstr "Ihre Buchung wurde
|
7246 |
|
7247 |
#: app/libraries/main.php:2135
|
7248 |
msgid "Your booking successfully verified."
|
@@ -7269,16 +7079,12 @@ msgid "You returned from payment gateway successfully."
|
|
7269 |
msgstr "Sie sind vom Bezahlungs-Gateway erfolgreich zurückgekehrt."
|
7270 |
|
7271 |
#: app/libraries/main.php:2180
|
7272 |
-
#, fuzzy
|
7273 |
-
#| msgid "Cannot find the booking!"
|
7274 |
msgid "Cannot find the invoice!"
|
7275 |
-
msgstr "
|
7276 |
|
7277 |
#: app/libraries/main.php:2180
|
7278 |
-
#, fuzzy
|
7279 |
-
#| msgid "Booking is invalid."
|
7280 |
msgid "Invoice is invalid."
|
7281 |
-
msgstr "Buchung ist ungültig."
|
7282 |
|
7283 |
#: app/libraries/main.php:2200
|
7284 |
msgid ""
|
@@ -7286,14 +7092,12 @@ msgid ""
|
|
7286 |
msgstr ""
|
7287 |
|
7288 |
#: app/libraries/main.php:2200
|
7289 |
-
#, fuzzy
|
7290 |
-
#| msgid "Booking Confirmation"
|
7291 |
msgid "Booking Not Confirmed."
|
7292 |
-
msgstr "
|
7293 |
|
7294 |
#: app/libraries/main.php:2206
|
7295 |
msgid "Cannot find the booking!"
|
7296 |
-
msgstr "
|
7297 |
|
7298 |
#: app/libraries/main.php:2206
|
7299 |
msgid "Booking is invalid."
|
@@ -7327,14 +7131,10 @@ msgid "Gateway"
|
|
7327 |
msgstr "Gateway"
|
7328 |
|
7329 |
#: app/libraries/main.php:2348
|
7330 |
-
#, fuzzy
|
7331 |
-
#| msgid "Payment"
|
7332 |
msgid "Payment Time"
|
7333 |
-
msgstr "Bezahlung"
|
7334 |
|
7335 |
#: app/libraries/main.php:2409
|
7336 |
-
#, fuzzy
|
7337 |
-
#| msgid "Request is invalid!"
|
7338 |
msgid "Request is not valid."
|
7339 |
msgstr "Die Anfrage ist ungültig!"
|
7340 |
|
@@ -7405,8 +7205,6 @@ msgid "Free"
|
|
7405 |
msgstr "kostenfrei"
|
7406 |
|
7407 |
#: app/libraries/main.php:3816 app/libraries/main.php:5599
|
7408 |
-
#, fuzzy
|
7409 |
-
#| msgid "M.E. Calendar"
|
7410 |
msgid "M.E. Calender"
|
7411 |
msgstr "M.E. Calender"
|
7412 |
|
@@ -7525,8 +7323,8 @@ msgstr "Register Button"
|
|
7525 |
#: app/skins/grid/render.php:124 app/skins/grid/render.php:171
|
7526 |
#: app/skins/grid/render.php:215 app/skins/grid/render.php:244
|
7527 |
#: app/skins/list/render.php:109 app/skins/list/render.php:195
|
7528 |
-
#: app/skins/masonry/render.php:188 app/skins/single.php:
|
7529 |
-
#: app/skins/single.php:
|
7530 |
#: app/skins/single/default.php:262 app/skins/single/default.php:483
|
7531 |
#: app/skins/single/default.php:485 app/skins/single/m1.php:140
|
7532 |
#: app/skins/single/m1.php:142 app/skins/single/m2.php:66
|
@@ -7595,16 +7393,12 @@ msgid "Event Espresso"
|
|
7595 |
msgstr "Keine Suchoptionen"
|
7596 |
|
7597 |
#: app/libraries/main.php:5461
|
7598 |
-
#, fuzzy
|
7599 |
-
#| msgid "Event Repeating"
|
7600 |
msgid "Events Manager (Recurring)"
|
7601 |
msgstr "Wiederholende Veranstaltung"
|
7602 |
|
7603 |
#: app/libraries/main.php:5462
|
7604 |
-
#, fuzzy
|
7605 |
-
#| msgid "Modern Events Calendar"
|
7606 |
msgid "Events Manager (Single)"
|
7607 |
-
msgstr "Moderner Event Kalender
|
7608 |
|
7609 |
#: app/libraries/main.php:5536 app/libraries/main.php:5556
|
7610 |
msgid "Confirmed"
|
@@ -7628,16 +7422,12 @@ msgid "Skin controller does not exist."
|
|
7628 |
msgstr "Skin contoller existiert nicht."
|
7629 |
|
7630 |
#: app/libraries/main.php:5905
|
7631 |
-
#, fuzzy
|
7632 |
-
#| msgid "Sold out!"
|
7633 |
msgid "Sold Out"
|
7634 |
-
msgstr "
|
7635 |
|
7636 |
#: app/libraries/main.php:5913
|
7637 |
-
#, fuzzy
|
7638 |
-
#| msgid "Ticket"
|
7639 |
msgid "Last Few Tickets"
|
7640 |
-
msgstr "
|
7641 |
|
7642 |
#: app/libraries/notifications.php:60
|
7643 |
msgid "Please verify your email."
|
@@ -7652,10 +7442,8 @@ msgid "Your booking is confirmed."
|
|
7652 |
msgstr "Ihre Buchung wurde bestätigt."
|
7653 |
|
7654 |
#: app/libraries/notifications.php:439
|
7655 |
-
#, fuzzy
|
7656 |
-
#| msgid "Your booking cannot be canceled."
|
7657 |
msgid "booking canceled."
|
7658 |
-
msgstr "Ihre Buchung
|
7659 |
|
7660 |
#: app/libraries/notifications.php:514
|
7661 |
msgid "A new booking is received."
|
@@ -7666,8 +7454,6 @@ msgid "A new event is added."
|
|
7666 |
msgstr "Eine neue Veranstaltung wurde hinzugefügt."
|
7667 |
|
7668 |
#: app/libraries/notifications.php:807
|
7669 |
-
#, fuzzy
|
7670 |
-
#| msgid "The event published."
|
7671 |
msgid "Your event is published."
|
7672 |
msgstr "Die Veranstaltung wurde veröffentlicht."
|
7673 |
|
@@ -7693,10 +7479,8 @@ msgid "No"
|
|
7693 |
msgstr "Nein"
|
7694 |
|
7695 |
#: app/libraries/skins.php:1015
|
7696 |
-
#, fuzzy
|
7697 |
-
#| msgid "Select All"
|
7698 |
msgid "Select"
|
7699 |
-
msgstr "
|
7700 |
|
7701 |
#: app/modules/attendees-list/details.php:36
|
7702 |
msgid "Event Attendees"
|
@@ -7707,8 +7491,6 @@ msgid "No attendee found! Be the first one to book!"
|
|
7707 |
msgstr "Keine Teilnehmer gefunden! Seien Sie der erste Teilnehmer der bucht!"
|
7708 |
|
7709 |
#: app/modules/attendees-list/details.php:56
|
7710 |
-
#, fuzzy
|
7711 |
-
#| msgid "Tickets"
|
7712 |
msgid "tickets"
|
7713 |
msgstr "Tickets"
|
7714 |
|
@@ -7727,49 +7509,46 @@ msgstr "Gutschein verwenden"
|
|
7727 |
#: app/modules/booking/steps/checkout.php:69
|
7728 |
#: app/modules/booking/steps/form.php:180
|
7729 |
msgid "Back"
|
7730 |
-
msgstr ""
|
7731 |
|
7732 |
#: app/modules/booking/steps/checkout.php:77
|
7733 |
msgid "Free Booking"
|
7734 |
msgstr "Kostenlose Buchung"
|
7735 |
|
7736 |
#: app/modules/booking/steps/form.php:52
|
7737 |
-
#, fuzzy
|
7738 |
-
#| msgid "Attendees Form"
|
7739 |
msgid "Attendee's Form"
|
7740 |
msgstr "Teilnahmeformular"
|
7741 |
|
7742 |
#: app/modules/booking/steps/form.php:165
|
7743 |
-
#, fuzzy
|
7744 |
-
#| msgid "Fill other attendees's information like the first form."
|
7745 |
msgid "Fill other attendees information like the first form."
|
7746 |
msgstr ""
|
7747 |
-
"
|
|
|
7748 |
|
7749 |
#: app/modules/booking/steps/message.php:7
|
7750 |
msgid "Thanks for your booking."
|
7751 |
msgstr "Vielen Dank für Ihre Buchung."
|
7752 |
|
7753 |
-
#: app/modules/booking/steps/tickets.php:
|
7754 |
msgid "Book Event"
|
7755 |
msgstr "Veranstaltung buchen"
|
7756 |
|
7757 |
-
#: app/modules/booking/steps/tickets.php:
|
7758 |
#, php-format
|
7759 |
msgid "Available %s: <span>%s</span>"
|
7760 |
msgstr "Verfügbar %s: <span>%s</span>"
|
7761 |
|
7762 |
-
#: app/modules/booking/steps/tickets.php:
|
7763 |
#, php-format
|
7764 |
msgid "The %s ticket sales has stopped!"
|
7765 |
msgstr ""
|
7766 |
|
7767 |
-
#: app/modules/booking/steps/tickets.php:
|
7768 |
#, php-format
|
7769 |
msgid "The %s ticket is sold out. You can try another ticket or another date."
|
7770 |
msgstr ""
|
7771 |
-
"
|
7772 |
-
"
|
7773 |
|
7774 |
#: app/modules/countdown/details.php:53
|
7775 |
msgid "The event is finished."
|
@@ -7779,15 +7558,15 @@ msgstr "Das Event ist beendet"
|
|
7779 |
msgid "The event is ongoing."
|
7780 |
msgstr "Die Veranstaltung ist im Gange."
|
7781 |
|
7782 |
-
#: app/modules/googlemap/details.php:
|
7783 |
msgid "Address from ..."
|
7784 |
msgstr "Adresse von..."
|
7785 |
|
7786 |
-
#: app/modules/googlemap/details.php:
|
7787 |
msgid "Get Directions"
|
7788 |
msgstr "Wegbeschreibung"
|
7789 |
|
7790 |
-
#: app/modules/links/details.php:17 app/skins/single.php:
|
7791 |
msgid "Share this event"
|
7792 |
msgstr "Diese Veranstaltung teilen"
|
7793 |
|
@@ -7814,7 +7593,7 @@ msgstr "Nächstes Event"
|
|
7814 |
msgid "Go to occurrence page"
|
7815 |
msgstr "Zum Event"
|
7816 |
|
7817 |
-
#: app/modules/next-event/details.php:98 app/skins/single.php:
|
7818 |
#: app/skins/single/default.php:102 app/skins/single/default.php:325
|
7819 |
#: app/skins/single/m1.php:37 app/skins/single/modern.php:192
|
7820 |
msgid "Time"
|
@@ -7825,10 +7604,8 @@ msgid " °C"
|
|
7825 |
msgstr " °C"
|
7826 |
|
7827 |
#: app/modules/weather/details.php:49 app/modules/weather/details.php:53
|
7828 |
-
#, fuzzy
|
7829 |
-
#| msgid " °C"
|
7830 |
msgid " °F"
|
7831 |
-
msgstr " °
|
7832 |
|
7833 |
#: app/modules/weather/details.php:60
|
7834 |
msgid "°Imperial"
|
@@ -7873,15 +7650,15 @@ msgstr "Sichtbarkeit"
|
|
7873 |
#: app/skins/agenda/tpl.php:66 app/skins/agenda/tpl.php:70
|
7874 |
#: app/skins/carousel/tpl.php:46 app/skins/custom/tpl.php:62
|
7875 |
#: app/skins/custom/tpl.php:66 app/skins/grid/tpl.php:62
|
7876 |
-
#: app/skins/grid/tpl.php:66 app/skins/list/tpl.php:
|
7877 |
-
#: app/skins/list/tpl.php:
|
7878 |
#: app/skins/masonry/tpl.php:66 app/skins/slider/tpl.php:44
|
7879 |
#: app/skins/timeline/tpl.php:56 app/skins/timeline/tpl.php:60
|
7880 |
msgid "No event found!"
|
7881 |
msgstr "Keine Veranstaltung gefunden"
|
7882 |
|
7883 |
#: app/skins/agenda/tpl.php:75 app/skins/custom/tpl.php:71
|
7884 |
-
#: app/skins/grid/tpl.php:71 app/skins/list/tpl.php:
|
7885 |
#: app/skins/masonry/tpl.php:71 app/skins/timeline/tpl.php:65
|
7886 |
#: app/skins/yearly_view/render.php:124
|
7887 |
msgid "Load More"
|
@@ -7898,10 +7675,8 @@ msgid "EVENT DETAIL"
|
|
7898 |
msgstr "VERANSTALTUNGSDETAILS"
|
7899 |
|
7900 |
#: app/skins/carousel/render.php:230
|
7901 |
-
#, fuzzy
|
7902 |
-
#| msgid "All Events"
|
7903 |
msgid "View All Events"
|
7904 |
-
msgstr "
|
7905 |
|
7906 |
#: app/skins/countdown/tpl.php:145 app/skins/countdown/tpl.php:189
|
7907 |
#: app/skins/countdown/tpl.php:234
|
@@ -7940,35 +7715,33 @@ msgstr "Veranstaltungen für %s"
|
|
7940 |
msgid "No Events"
|
7941 |
msgstr "Keine Veranstaltungen"
|
7942 |
|
7943 |
-
#: app/skins/single.php:
|
7944 |
msgid "Home"
|
7945 |
msgstr ""
|
7946 |
|
7947 |
-
#: app/skins/single.php:
|
7948 |
#: app/skins/single/m1.php:261 app/skins/single/m2.php:182
|
7949 |
#: app/skins/single/modern.php:270
|
7950 |
msgid "Sold out!"
|
7951 |
msgstr "Ausverkauft!"
|
7952 |
|
7953 |
-
#: app/skins/single.php:
|
7954 |
#: app/skins/single/default.php:227 app/skins/single/default.php:450
|
7955 |
#: app/skins/single/m1.php:109 app/skins/single/m2.php:35
|
7956 |
#: app/skins/single/modern.php:44
|
7957 |
msgid "Phone"
|
7958 |
msgstr "Phone"
|
7959 |
|
7960 |
-
#: app/skins/single.php:
|
7961 |
#: app/skins/single/default.php:241 app/skins/single/default.php:464
|
7962 |
#: app/skins/single/m1.php:123 app/skins/single/m2.php:49
|
7963 |
#: app/skins/single/modern.php:58
|
7964 |
msgid "Website"
|
7965 |
msgstr "Website"
|
7966 |
|
7967 |
-
#: app/skins/single.php:
|
7968 |
-
#, fuzzy
|
7969 |
-
#| msgid "No Search Options"
|
7970 |
msgid "Speakers:"
|
7971 |
-
msgstr "
|
7972 |
|
7973 |
#: app/skins/single/default.php:69 app/skins/single/m1.php:278
|
7974 |
#: app/skins/single/m2.php:199 app/skins/single/modern.php:288
|
@@ -8023,22 +7796,16 @@ msgid "To manage event details page elements."
|
|
8023 |
msgstr ""
|
8024 |
|
8025 |
#: app/widgets/single.php:95
|
8026 |
-
#, fuzzy
|
8027 |
-
#| msgid "Date Time Module : "
|
8028 |
msgid "Date Time Module"
|
8029 |
-
msgstr "Datum Zeit
|
8030 |
|
8031 |
#: app/widgets/single.php:111
|
8032 |
-
#, fuzzy
|
8033 |
-
#| msgid "Event Labels"
|
8034 |
msgid "Event Label"
|
8035 |
-
msgstr "Event
|
8036 |
|
8037 |
#: app/widgets/single.php:127
|
8038 |
-
#, fuzzy
|
8039 |
-
#| msgid "No Search Options"
|
8040 |
msgid "Event Speakers"
|
8041 |
-
msgstr "
|
8042 |
|
8043 |
#: app/widgets/single.php:135
|
8044 |
#, fuzzy
|
@@ -8047,8 +7814,6 @@ msgid "Attendees Module"
|
|
8047 |
msgstr "Teilnehmermodul"
|
8048 |
|
8049 |
#: app/widgets/single.php:139
|
8050 |
-
#, fuzzy
|
8051 |
-
#| msgid "Next Pervious Module : "
|
8052 |
msgid "Next Previous Module"
|
8053 |
msgstr "Nächstes vorheriges Modul"
|
8054 |
|
@@ -8070,9 +7835,9 @@ msgstr "Google Karte:"
|
|
8070 |
|
8071 |
#. Plugin Name of the plugin/theme
|
8072 |
#, fuzzy
|
8073 |
-
#| msgid "Modern Events Calendar"
|
8074 |
msgid "Modern Events Calendar Lite"
|
8075 |
-
msgstr "Moderner Event Kalender "
|
8076 |
|
8077 |
#. Plugin URI of the plugin/theme
|
8078 |
#, fuzzy
|
@@ -8153,58 +7918,48 @@ msgstr "http://webnus.net"
|
|
8153 |
#~ msgid "It will create a new booking under \"Pay Locally\" gateway."
|
8154 |
#~ msgstr "Es wird eine neue Buchung unter \"Pay Locally\" Gateway erstellt."
|
8155 |
|
8156 |
-
#, fuzzy
|
8157 |
-
#~| msgid "Support Forum"
|
8158 |
#~ msgid "Go to Edit Form"
|
8159 |
-
#~ msgstr "
|
8160 |
|
8161 |
-
#, fuzzy
|
8162 |
-
#~| msgid "Booking cancellation link."
|
8163 |
#~ msgid "Cancellation Date"
|
8164 |
-
#~ msgstr "
|
|
|
|
|
|
|
8165 |
|
8166 |
-
#, fuzzy
|
8167 |
-
#~| msgid "Edit Bookings"
|
8168 |
#~ msgid "Edit Booking"
|
8169 |
-
#~ msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8170 |
|
8171 |
-
#, fuzzy
|
8172 |
-
#~| msgid "Attendee"
|
8173 |
#~ msgid "Add Attendee"
|
8174 |
-
#~ msgstr "Teilnehmer"
|
8175 |
|
8176 |
-
#, fuzzy
|
8177 |
-
#~| msgid "Event Attendees"
|
8178 |
#~ msgid "Remove Attendee"
|
8179 |
-
#~ msgstr "
|
8180 |
|
8181 |
#~ msgid "Book Date"
|
8182 |
#~ msgstr "Buchungsdatum"
|
8183 |
|
8184 |
-
#, fuzzy
|
8185 |
-
#~| msgid "End Time"
|
8186 |
-
#~ msgid "Order Time"
|
8187 |
-
#~ msgstr "Uhrzeit Ende"
|
8188 |
-
|
8189 |
-
#, fuzzy
|
8190 |
-
#~| msgid "Ticket"
|
8191 |
#~ msgid " - Ticket"
|
8192 |
-
#~ msgstr "Ticket"
|
8193 |
|
8194 |
-
#, fuzzy
|
8195 |
-
#~| msgid "End Time"
|
8196 |
#~ msgid "Order Date"
|
8197 |
-
#~ msgstr "
|
|
|
|
|
|
|
8198 |
|
8199 |
-
#, fuzzy
|
8200 |
-
#~| msgid "Start of Current Month"
|
8201 |
#~ msgid "Current Month"
|
8202 |
-
#~ msgstr "
|
8203 |
|
8204 |
-
#, fuzzy
|
8205 |
-
#~| msgid "Current Week"
|
8206 |
#~ msgid "Current Year"
|
8207 |
-
#~ msgstr "
|
8208 |
|
8209 |
#~ msgid "Confirm"
|
8210 |
#~ msgstr "Bestätigen"
|
@@ -8212,16 +7967,17 @@ msgstr "http://webnus.net"
|
|
8212 |
#~ msgid "Reject"
|
8213 |
#~ msgstr "Ablehnen"
|
8214 |
|
8215 |
-
|
8216 |
-
|
|
|
8217 |
#~ msgid "Uploaded file type is not valid."
|
8218 |
-
#~ msgstr "
|
8219 |
|
8220 |
#~ msgid "Invalid request."
|
8221 |
#~ msgstr "Ungültige Anforderung"
|
8222 |
|
8223 |
#~ msgid "Please select some tickets!"
|
8224 |
-
#~ msgstr "Bitte
|
8225 |
|
8226 |
#~ msgid "Captcha is invalid. Please try again."
|
8227 |
#~ msgstr ""
|
@@ -8244,10 +8000,8 @@ msgstr "http://webnus.net"
|
|
8244 |
#~ "Kein Ticket für zukünftige Termine für dieses Event gefunden! Bitte "
|
8245 |
#~ "versuchen Sie eine andere Veranstaltung."
|
8246 |
|
8247 |
-
#, fuzzy
|
8248 |
-
#~| msgid "Email of attendee"
|
8249 |
#~ msgid "Number of Attendees"
|
8250 |
-
#~ msgstr "
|
8251 |
|
8252 |
#~ msgid "Attendee Information"
|
8253 |
#~ msgstr "Teilnehmerinformationen"
|
@@ -8279,10 +8033,8 @@ msgstr "http://webnus.net"
|
|
8279 |
#~ msgid "Search Coupons"
|
8280 |
#~ msgstr "Gutscheine suchen"
|
8281 |
|
8282 |
-
#, fuzzy
|
8283 |
-
#~| msgid "Search Coupons"
|
8284 |
#~ msgid "← Back to Coupons"
|
8285 |
-
#~ msgstr "
|
8286 |
|
8287 |
#~ msgid "Discount Type"
|
8288 |
#~ msgstr "Rabatt-Art"
|
@@ -8336,10 +8088,11 @@ msgstr "http://webnus.net"
|
|
8336 |
#~ msgid "There is no attendee for booking!"
|
8337 |
#~ msgstr "Es gibt keinen Teilnehmer für die Buchung!"
|
8338 |
|
8339 |
-
|
8340 |
-
|
|
|
8341 |
#~ msgid "Unknown Error!"
|
8342 |
-
#~ msgstr "
|
8343 |
|
8344 |
#~ msgid "MEC Transaction ID: %s"
|
8345 |
#~ msgstr "Transaktions-ID: %s"
|
@@ -8381,19 +8134,21 @@ msgstr "http://webnus.net"
|
|
8381 |
#~ msgid "Fee Type"
|
8382 |
#~ msgstr "Alles Auswählen"
|
8383 |
|
8384 |
-
#, fuzzy
|
8385 |
-
#~| msgid "Percent"
|
8386 |
#~ msgid "Per"
|
8387 |
-
#~ msgstr "
|
8388 |
|
8389 |
-
#, fuzzy
|
8390 |
-
#~| msgid "Get Directions"
|
8391 |
#~ msgid "Redirection Page"
|
8392 |
-
#~ msgstr "
|
|
|
|
|
|
|
8393 |
|
8394 |
#~ msgid "Waiting for getting response from gateway."
|
8395 |
#~ msgstr "Warte auf Antwort des Gateways."
|
8396 |
|
|
|
|
|
|
|
8397 |
#~ msgid "Pay Locally"
|
8398 |
#~ msgstr "Vor Ort bezahlen"
|
8399 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: ME Calender\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2020-02-18 15:15+0330\n"
|
6 |
+
"PO-Revision-Date: 2020-02-18 15:17+0330\n"
|
7 |
"Last-Translator: Jogon <koenig@kafinanz.de>\n"
|
8 |
"Language-Team: German\n"
|
9 |
"Language: de_DE\n"
|
56 |
msgstr "Moderner Event Kalender "
|
57 |
|
58 |
#: app/addons/elementor/shortcode.php:78
|
|
|
|
|
59 |
msgid "General"
|
60 |
+
msgstr "Allgemein"
|
61 |
|
62 |
#: app/addons/elementor/shortcode.php:87
|
63 |
#, fuzzy
|
77 |
msgid "Settings"
|
78 |
msgstr "Einstellungen"
|
79 |
|
80 |
+
#: app/features/contextual.php:62 app/features/events.php:2452
|
81 |
#: app/features/mec/booking.php:448 app/features/mec/support.php:29
|
82 |
#: app/libraries/main.php:560
|
83 |
msgid "Booking Form"
|
308 |
|
309 |
#: app/features/events.php:163
|
310 |
msgid "Edit Event"
|
311 |
+
msgstr "Event Bearbeiten"
|
312 |
|
313 |
#: app/features/events.php:164 app/features/fes/list.php:82
|
314 |
msgid "View Event"
|
318 |
msgid "No events found in Trash!"
|
319 |
msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
|
320 |
|
321 |
+
#: app/features/events.php:182 app/features/events.php:3301
|
322 |
#: app/features/mec/meta_boxes/display_options.php:959
|
323 |
#: app/features/mec/meta_boxes/search_form.php:31
|
324 |
#: app/features/mec/meta_boxes/search_form.php:93
|
325 |
#: app/features/mec/meta_boxes/search_form.php:155
|
326 |
+
#: app/features/mec/meta_boxes/search_form.php:217
|
327 |
+
#: app/features/mec/meta_boxes/search_form.php:279
|
328 |
+
#: app/features/mec/meta_boxes/search_form.php:341
|
329 |
+
#: app/features/mec/meta_boxes/search_form.php:403
|
330 |
+
#: app/features/mec/meta_boxes/search_form.php:458
|
331 |
+
#: app/features/mec/meta_boxes/search_form.php:520
|
332 |
+
#: app/features/mec/meta_boxes/search_form.php:582
|
333 |
+
#: app/features/mec/meta_boxes/search_form.php:680
|
334 |
#: app/features/mec/settings.php:808 app/features/mec/single.php:232
|
335 |
#: app/features/search.php:68 app/libraries/main.php:5335
|
336 |
+
#: app/libraries/skins.php:865 app/skins/single.php:570
|
337 |
#: app/skins/single/default.php:192 app/skins/single/default.php:415
|
338 |
#: app/skins/single/m1.php:184 app/skins/single/m2.php:110
|
339 |
#: app/skins/single/modern.php:118
|
340 |
msgid "Category"
|
341 |
msgstr "Kategorie"
|
342 |
|
343 |
+
#: app/features/events.php:183 app/features/events.php:3256
|
344 |
#: app/features/fes/form.php:757 app/features/mec.php:403
|
345 |
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5334
|
346 |
msgid "Categories"
|
421 |
msgstr "Veranstaltungsdetails"
|
422 |
|
423 |
#: app/features/events.php:330
|
|
|
|
|
424 |
msgid "Date And Time"
|
425 |
msgstr "Datum und Uhrzeit"
|
426 |
|
428 |
msgid "Event Repeating"
|
429 |
msgstr "Wiederholende Veranstaltung"
|
430 |
|
431 |
+
#: app/features/events.php:333 app/features/events.php:1269
|
432 |
+
#: app/features/mec/settings.php:718 app/skins/single.php:957
|
433 |
msgid "Hourly Schedule"
|
434 |
msgstr "Stundenplan"
|
435 |
|
436 |
#: app/features/events.php:334
|
|
|
|
|
437 |
msgid "Location/Venue"
|
438 |
msgstr "Ort"
|
439 |
|
440 |
#: app/features/events.php:335
|
|
|
|
|
441 |
msgid "Links"
|
442 |
+
msgstr "Links"
|
443 |
|
444 |
+
#: app/features/events.php:336 app/features/events.php:3303
|
445 |
+
#: app/features/events.php:3494 app/features/events.php:3536
|
446 |
#: app/features/ix.php:3506 app/features/ix.php:3547
|
447 |
#: app/features/mec/meta_boxes/display_options.php:962
|
448 |
#: app/features/mec/meta_boxes/search_form.php:45
|
449 |
#: app/features/mec/meta_boxes/search_form.php:107
|
450 |
#: app/features/mec/meta_boxes/search_form.php:169
|
451 |
+
#: app/features/mec/meta_boxes/search_form.php:231
|
452 |
+
#: app/features/mec/meta_boxes/search_form.php:293
|
453 |
+
#: app/features/mec/meta_boxes/search_form.php:355
|
454 |
+
#: app/features/mec/meta_boxes/search_form.php:417
|
455 |
+
#: app/features/mec/meta_boxes/search_form.php:472
|
456 |
+
#: app/features/mec/meta_boxes/search_form.php:534
|
457 |
+
#: app/features/mec/meta_boxes/search_form.php:596
|
458 |
+
#: app/features/mec/meta_boxes/search_form.php:694
|
459 |
#: app/features/mec/settings.php:820 app/features/mec/single.php:236
|
460 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
461 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
462 |
#: app/features/organizers.php:271 app/features/search.php:78
|
463 |
#: app/libraries/main.php:5341 app/libraries/skins.php:917
|
464 |
+
#: app/skins/single.php:816 app/skins/single/default.php:217
|
465 |
#: app/skins/single/default.php:440 app/skins/single/m1.php:99
|
466 |
#: app/skins/single/m2.php:25 app/skins/single/modern.php:34
|
467 |
msgid "Organizer"
|
468 |
msgstr "Veranstalter"
|
469 |
|
470 |
+
#: app/features/events.php:337 app/features/events.php:1155
|
471 |
#: app/features/fes/form.php:730 app/libraries/main.php:5368
|
472 |
+
#: app/skins/single.php:593 app/skins/single/default.php:126
|
473 |
#: app/skins/single/default.php:349 app/skins/single/m1.php:58
|
474 |
#: app/skins/single/modern.php:213
|
475 |
msgid "Cost"
|
483 |
msgid "Guest Data"
|
484 |
msgstr "Gäste Daten"
|
485 |
|
486 |
+
#: app/features/events.php:461 app/features/events.php:2434
|
487 |
+
#: app/features/events.php:3783 app/features/fes.php:223
|
488 |
#: app/features/fes/form.php:689 app/features/labels.php:178
|
489 |
#: app/features/mec/booking.php:45 app/features/organizers.php:279
|
490 |
#: app/features/profile/profile.php:180 app/libraries/notifications.php:1117
|
492 |
msgid "Name"
|
493 |
msgstr "Name"
|
494 |
|
495 |
+
#: app/features/events.php:462 app/features/events.php:2445
|
496 |
+
#: app/features/events.php:2521 app/features/events.php:3786
|
497 |
#: app/features/fes.php:223 app/features/fes/form.php:685
|
498 |
#: app/features/mec/booking.php:57 app/features/mec/booking.php:499
|
499 |
#: app/features/organizers.php:111 app/features/organizers.php:152
|
501 |
#: app/features/speakers.php:196 app/libraries/main.php:1547
|
502 |
#: app/libraries/main.php:1616 app/libraries/main.php:2843
|
503 |
#: app/libraries/notifications.php:1118 app/modules/booking/steps/form.php:46
|
504 |
+
#: app/modules/booking/steps/form.php:83 app/skins/single.php:833
|
505 |
+
#: app/skins/single.php:888 app/skins/single/default.php:234
|
506 |
#: app/skins/single/default.php:457 app/skins/single/m1.php:116
|
507 |
#: app/skins/single/m2.php:42 app/skins/single/modern.php:51
|
508 |
msgid "Email"
|
509 |
+
msgstr "E-Mail"
|
510 |
|
511 |
#: app/features/events.php:470 app/features/fes/form.php:243
|
512 |
msgid "Date and Time"
|
513 |
msgstr "Datum und Uhrzeit"
|
514 |
|
515 |
#: app/features/events.php:473 app/features/events.php:479
|
516 |
+
#: app/features/events.php:3304 app/features/events.php:3494
|
517 |
+
#: app/features/events.php:3536 app/features/fes/form.php:247
|
518 |
#: app/features/fes/form.php:251 app/features/ix.php:3506
|
519 |
#: app/features/ix.php:3547 app/features/ix/import_g_calendar.php:38
|
520 |
#: app/features/mec/dashboard.php:401
|
537 |
msgstr "Start Datum"
|
538 |
|
539 |
#: app/features/events.php:551 app/features/events.php:643
|
540 |
+
#: app/features/events.php:1707 app/features/events.php:1766
|
541 |
+
#: app/features/events.php:1959 app/features/events.php:1998
|
542 |
#: app/features/fes/form.php:279 app/features/fes/form.php:319
|
543 |
msgid "AM"
|
544 |
msgstr "AM"
|
545 |
|
546 |
#: app/features/events.php:558 app/features/events.php:650
|
547 |
+
#: app/features/events.php:1714 app/features/events.php:1773
|
548 |
+
#: app/features/events.php:1960 app/features/events.php:1999
|
549 |
#: app/features/fes/form.php:280 app/features/fes/form.php:320
|
550 |
msgid "PM"
|
551 |
msgstr "PM"
|
552 |
|
553 |
#: app/features/events.php:565 app/features/events.php:570
|
554 |
+
#: app/features/events.php:3305 app/features/events.php:3494
|
555 |
+
#: app/features/events.php:3536 app/features/fes/form.php:287
|
556 |
#: app/features/fes/form.php:291 app/features/ix.php:3506
|
557 |
#: app/features/ix.php:3547 app/features/ix/import_g_calendar.php:44
|
558 |
#: app/features/mec/dashboard.php:402
|
559 |
msgid "End Date"
|
560 |
msgstr "Ende Datum"
|
561 |
|
562 |
+
#: app/features/events.php:665 app/features/fes/form.php:326
|
563 |
msgid "All Day Event"
|
564 |
msgstr "Ganztägige Veranstaltung"
|
565 |
|
566 |
+
#: app/features/events.php:675 app/features/fes/form.php:329
|
567 |
msgid "Hide Event Time"
|
568 |
msgstr "Event / Veranstaltungszeit verbergen"
|
569 |
|
570 |
+
#: app/features/events.php:685 app/features/fes/form.php:332
|
571 |
msgid "Hide Event End Time"
|
572 |
msgstr "Ende-Zeit der Veranstaltung verbergen"
|
573 |
|
574 |
+
#: app/features/events.php:690 app/features/events.php:694
|
575 |
#: app/features/fes/form.php:336
|
576 |
msgid "Time Comment"
|
577 |
msgstr "z.B. MEZ "
|
578 |
|
579 |
+
#: app/features/events.php:695 app/features/fes/form.php:337
|
580 |
#, fuzzy
|
581 |
#| msgid ""
|
582 |
#| "It shows next to event time on calendar. You can insert Timezone etc. in "
|
588 |
"Neben der Zeit im Kalender wird diese Angabe angezeigt. In diesem Feld "
|
589 |
"können Sie z.B. eine Zeitzone wie z.B. \"MEZ\" usw. einfügen. "
|
590 |
|
591 |
+
#: app/features/events.php:697 app/features/events.php:818
|
592 |
+
#: app/features/events.php:1118 app/features/events.php:1195
|
593 |
+
#: app/features/events.php:1494 app/features/events.php:1586
|
594 |
+
#: app/features/events.php:1794 app/features/events.php:1809
|
595 |
+
#: app/features/events.php:2018 app/features/events.php:2031
|
596 |
+
#: app/features/events.php:2182 app/features/events.php:2218
|
597 |
+
#: app/features/events.php:2316 app/features/events.php:2331
|
598 |
+
#: app/features/events.php:2361 app/features/events.php:2374
|
599 |
#: app/features/fes/form.php:641 app/features/locations.php:301
|
600 |
#: app/features/mec/booking.php:108 app/features/mec/booking.php:158
|
601 |
#: app/features/mec/booking.php:171 app/features/mec/booking.php:187
|
661 |
#: app/features/mec/single.php:125 app/features/mec/single.php:178
|
662 |
#: app/features/mec/styling.php:203 app/features/mec/styling.php:220
|
663 |
#: app/features/mec/styling.php:233 app/features/organizers.php:272
|
664 |
+
#: app/skins/single.php:678 app/skins/single/default.php:141
|
665 |
#: app/skins/single/default.php:364 app/skins/single/m1.php:206
|
666 |
#: app/skins/single/m2.php:133 app/skins/single/modern.php:141
|
667 |
msgid "Read More"
|
668 |
msgstr "Mehr lesen"
|
669 |
|
670 |
+
#: app/features/events.php:705
|
|
|
|
|
671 |
msgid "Repeating"
|
672 |
msgstr "Wiederholen"
|
673 |
|
674 |
+
#: app/features/events.php:714
|
|
|
|
|
675 |
msgid "Event Repeating (Recurring events)"
|
676 |
msgstr "Wiederholende Veranstaltung"
|
677 |
|
678 |
+
#: app/features/events.php:718 app/features/fes/form.php:347
|
679 |
msgid "Repeats"
|
680 |
msgstr "Wiederholend"
|
681 |
|
682 |
+
#: app/features/events.php:726 app/features/fes/form.php:349
|
683 |
#: app/features/mec/dashboard.php:404
|
684 |
#: app/skins/default_full_calendar/tpl.php:69
|
685 |
#: app/skins/full_calendar/tpl.php:110
|
686 |
msgid "Daily"
|
687 |
msgstr "Täglich"
|
688 |
|
689 |
+
#: app/features/events.php:733 app/features/fes/form.php:350
|
690 |
msgid "Every Weekday"
|
691 |
msgstr "An jedem Wochentag"
|
692 |
|
693 |
+
#: app/features/events.php:740 app/features/fes/form.php:351
|
694 |
msgid "Every Weekend"
|
695 |
msgstr "An jedem Wochenende"
|
696 |
|
697 |
+
#: app/features/events.php:747 app/features/fes/form.php:352
|
698 |
msgid "Certain Weekdays"
|
699 |
msgstr "Bestimmte Wochentage"
|
700 |
|
701 |
+
#: app/features/events.php:754 app/features/fes/form.php:353
|
702 |
#: app/skins/default_full_calendar/tpl.php:68
|
703 |
#: app/skins/full_calendar/tpl.php:109
|
704 |
msgid "Weekly"
|
705 |
msgstr "Wöchentlich"
|
706 |
|
707 |
+
#: app/features/events.php:761 app/features/fes/form.php:354
|
708 |
#: app/features/mec/dashboard.php:405
|
709 |
#: app/skins/default_full_calendar/tpl.php:67
|
710 |
#: app/skins/full_calendar/tpl.php:108
|
711 |
msgid "Monthly"
|
712 |
msgstr "Monatlich"
|
713 |
|
714 |
+
#: app/features/events.php:768 app/features/fes/form.php:355
|
715 |
#: app/features/mec/dashboard.php:406
|
716 |
#: app/skins/default_full_calendar/tpl.php:66
|
717 |
#: app/skins/full_calendar/tpl.php:107
|
718 |
msgid "Yearly"
|
719 |
msgstr "Jährlich"
|
720 |
|
721 |
+
#: app/features/events.php:775 app/features/fes/form.php:356
|
722 |
msgid "Custom Days"
|
723 |
msgstr "Benutzerdefinierte Tage"
|
724 |
|
725 |
+
#: app/features/events.php:782 app/features/fes/form.php:357
|
|
|
|
|
726 |
msgid "Advanced"
|
727 |
+
msgstr "Fortgeschritten"
|
728 |
|
729 |
+
#: app/features/events.php:787 app/features/fes/form.php:361
|
730 |
msgid "Repeat Interval"
|
731 |
msgstr "Wiederholungsintervall"
|
732 |
|
733 |
+
#: app/features/events.php:789 app/features/fes/form.php:362
|
734 |
msgid "Repeat interval"
|
735 |
msgstr "Wiederholungsintervall"
|
736 |
|
737 |
+
#: app/features/events.php:793 app/features/fes/form.php:365
|
738 |
msgid "Week Days"
|
739 |
msgstr "Wochentage"
|
740 |
|
741 |
+
#: app/features/events.php:808 app/features/events.php:1878
|
742 |
+
#: app/features/events.php:1906 app/features/events.php:2086
|
743 |
#: app/features/fes/form.php:377 app/features/ix/import_f_calendar.php:42
|
744 |
#: app/features/ix/import_g_calendar.php:51
|
745 |
#: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
|
746 |
msgid "Start"
|
747 |
msgstr "Start"
|
748 |
|
749 |
+
#: app/features/events.php:810 app/features/events.php:1882
|
750 |
+
#: app/features/events.php:1910 app/features/events.php:2090
|
751 |
#: app/features/fes/form.php:378
|
|
|
|
|
752 |
msgid "End"
|
753 |
+
msgstr "Ende"
|
754 |
|
755 |
+
#: app/features/events.php:812 app/features/events.php:1189
|
756 |
+
#: app/features/events.php:1300 app/features/events.php:1405
|
757 |
+
#: app/features/events.php:1861 app/features/events.php:2075
|
758 |
+
#: app/features/events.php:2155 app/features/events.php:2288
|
759 |
#: app/features/fes/form.php:379 app/features/fes/form.php:855
|
760 |
msgid "Add"
|
761 |
msgstr "Hinzufügen"
|
762 |
|
763 |
+
#: app/features/events.php:815
|
|
|
|
|
764 |
msgid "Custom Days Repeating"
|
765 |
+
msgstr "Benutzerdefinierte Wiederholende Tage"
|
766 |
|
767 |
+
#: app/features/events.php:816
|
768 |
msgid ""
|
769 |
"Add certain days to event occurrence dates. If you have single day event, "
|
770 |
"start and end date should be the same, If you have multiple day event the "
|
771 |
"start and end dates must be commensurate with the initial date."
|
772 |
msgstr ""
|
773 |
|
774 |
+
#: app/features/events.php:852 app/features/fes/form.php:405
|
|
|
|
|
775 |
msgid "First"
|
776 |
+
msgstr "Erster"
|
777 |
|
778 |
+
#: app/features/events.php:894 app/features/fes/form.php:447
|
|
|
|
|
779 |
msgid "Second"
|
780 |
+
msgstr "Zweiter"
|
781 |
|
782 |
+
#: app/features/events.php:936 app/features/fes/form.php:489
|
|
|
|
|
783 |
msgid "Third"
|
784 |
+
msgstr "Dritter"
|
785 |
|
786 |
+
#: app/features/events.php:978 app/features/fes/form.php:531
|
787 |
msgid "Fourth"
|
788 |
+
msgstr "Vierte"
|
789 |
|
790 |
+
#: app/features/events.php:1020 app/features/fes/form.php:573
|
|
|
|
|
791 |
msgid "Last"
|
792 |
+
msgstr "Letzter"
|
793 |
|
794 |
+
#: app/features/events.php:1067 app/features/fes/form.php:619
|
795 |
msgid "Ends Repeat"
|
796 |
msgstr "Wiederholung endet"
|
797 |
|
798 |
+
#: app/features/events.php:1079 app/features/fes/form.php:623
|
799 |
msgid "Never"
|
800 |
msgstr "Niemals"
|
801 |
|
802 |
+
#: app/features/events.php:1091 app/features/fes/form.php:628
|
803 |
msgid "On"
|
804 |
msgstr "Am"
|
805 |
|
806 |
+
#: app/features/events.php:1107 app/features/fes/form.php:635
|
807 |
msgid "After"
|
808 |
msgstr "Nach"
|
809 |
|
810 |
+
#: app/features/events.php:1111 app/features/events.php:1115
|
811 |
#: app/features/fes/form.php:637 app/features/fes/form.php:640
|
812 |
msgid "Occurrences times"
|
813 |
msgstr " mal vorkommen"
|
814 |
|
815 |
+
#: app/features/events.php:1116 app/features/fes/form.php:641
|
816 |
msgid ""
|
817 |
"The event will finish after certain repeats. For example if you set it to "
|
818 |
"10, the event will finish after 10 repeats."
|
820 |
"Das Event ist nach einer bestimmten Anzahl von Wiederholungen zu Ende. Zum "
|
821 |
"Beispiel: Bei Eingabe von 10 wird das Event nach 10 Wiederholungen beendet"
|
822 |
|
823 |
+
#: app/features/events.php:1131 app/features/fes/form.php:654
|
824 |
#, fuzzy
|
825 |
#| msgid "Next Occurrence of Other Events"
|
826 |
msgid "Show only one occurrence of this event"
|
827 |
msgstr "Nächstes Auftreten von anderen Events."
|
828 |
|
829 |
+
#: app/features/events.php:1151 app/features/events.php:3494
|
830 |
+
#: app/features/events.php:3536 app/features/fes/form.php:727
|
831 |
#: app/features/ix.php:3506 app/features/ix.php:3547
|
832 |
#: app/features/mec/settings.php:664 app/libraries/main.php:5367
|
833 |
#: app/widgets/single.php:103
|
835 |
msgstr ""
|
836 |
"Bruttopreis des Events in Euro, 0 für kostenlos oder z.B. 39, ohne €-Zeichen"
|
837 |
|
838 |
+
#: app/features/events.php:1176
|
839 |
#, fuzzy
|
840 |
#| msgid "Exceptional Days"
|
841 |
msgid "Exceptional Days (Exclude Dates)"
|
842 |
msgstr "Herausgenommene Tage "
|
843 |
|
844 |
+
#: app/features/events.php:1182 app/features/events.php:1192
|
845 |
msgid "Exclude certain days"
|
846 |
msgstr "Ausschluss bestimmter Tage"
|
847 |
|
848 |
+
#: app/features/events.php:1187 app/features/events.php:2522
|
849 |
#: app/features/fes.php:223 app/features/mec/booking.php:500
|
850 |
#: app/features/profile/profile.php:53 app/libraries/main.php:2253
|
851 |
+
#: app/libraries/main.php:2901 app/modules/booking/steps/tickets.php:23
|
852 |
+
#: app/modules/next-event/details.php:93 app/skins/single.php:652
|
853 |
#: app/skins/single/default.php:85 app/skins/single/default.php:308
|
854 |
#: app/skins/single/m1.php:20 app/skins/single/modern.php:175
|
855 |
msgid "Date"
|
856 |
msgstr "Datum"
|
857 |
|
858 |
+
#: app/features/events.php:1193
|
859 |
msgid ""
|
860 |
"Exclude certain days from event occurrence dates. Please note that you can "
|
861 |
"exclude only single day occurrences and you cannot exclude one day from "
|
862 |
"multiple day occurrences."
|
863 |
msgstr ""
|
864 |
|
865 |
+
#: app/features/events.php:1247 app/libraries/render.php:506
|
866 |
msgid "Day 1"
|
867 |
+
msgstr "Tag 1"
|
868 |
|
869 |
+
#: app/features/events.php:1273
|
870 |
msgid "Add Day"
|
871 |
+
msgstr "Tag hinzufügen"
|
872 |
|
873 |
+
#: app/features/events.php:1274
|
874 |
msgid ""
|
875 |
"Add new days for schedule. For example if your event is multiple days, you "
|
876 |
"can add a different schedule for each day!"
|
877 |
msgstr ""
|
878 |
|
879 |
+
#: app/features/events.php:1281
|
880 |
#, php-format
|
881 |
msgid "Day %s"
|
882 |
msgstr ""
|
883 |
|
884 |
+
#: app/features/events.php:1285 app/features/events.php:1324
|
885 |
+
#: app/features/events.php:1359 app/features/events.php:1391
|
886 |
+
#: app/features/events.php:1420 app/features/events.php:2303
|
887 |
+
#: app/features/events.php:2350 app/features/events.php:3300
|
888 |
+
#: app/features/events.php:3494 app/features/events.php:3536
|
889 |
#: app/features/fes/form.php:236 app/features/ix.php:3506
|
890 |
#: app/features/ix.php:3547 app/features/mec/booking.php:384
|
891 |
#: app/features/mec/booking.php:416 app/features/mec/styling.php:115
|
892 |
msgid "Title"
|
893 |
msgstr "Titel"
|
894 |
|
895 |
+
#: app/features/events.php:1294 app/features/events.php:1331
|
896 |
+
#: app/features/events.php:1364 app/features/events.php:1399
|
897 |
+
#: app/features/events.php:1425 app/features/events.php:1892
|
898 |
+
#: app/features/events.php:1918 app/features/events.php:2096
|
899 |
+
#: app/features/events.php:2195 app/features/events.php:2231
|
900 |
+
#: app/features/events.php:2338 app/features/events.php:2380
|
901 |
#: app/features/mec/booking.php:327 app/features/mec/booking.php:356
|
902 |
#: app/features/mec/booking.php:407 app/features/mec/booking.php:439
|
903 |
#: app/libraries/main.php:2762 app/libraries/main.php:2792
|
910 |
msgid "Remove"
|
911 |
msgstr "Entfernen"
|
912 |
|
913 |
+
#: app/features/events.php:1301 app/features/events.php:1406
|
914 |
msgid "Add new hourly schedule row"
|
915 |
msgstr "Neue Stundenplan-Zeile hinzufügen"
|
916 |
|
917 |
+
#: app/features/events.php:1316 app/features/events.php:1353
|
918 |
+
#: app/features/events.php:1415
|
919 |
msgid "From e.g. 8:15"
|
920 |
msgstr "Von z.B. 08:15 Uhr"
|
921 |
|
922 |
+
#: app/features/events.php:1320 app/features/events.php:1356
|
923 |
+
#: app/features/events.php:1417
|
924 |
msgid "To e.g. 8:45"
|
925 |
msgstr "bis zum Beispiel 08:45 Uhr"
|
926 |
|
927 |
+
#: app/features/events.php:1328 app/features/events.php:1362
|
928 |
+
#: app/features/events.php:1423 app/features/events.php:1782
|
929 |
+
#: app/features/events.php:2007
|
930 |
msgid "Description"
|
931 |
msgstr "Beschreibung"
|
932 |
|
933 |
+
#: app/features/events.php:1334 app/features/events.php:1367
|
934 |
+
#: app/features/events.php:1428 app/features/fes/form.php:851
|
935 |
#: app/features/mec.php:411 app/features/mec/modules.php:52
|
936 |
#: app/features/mec/settings.php:712 app/features/speakers.php:62
|
937 |
#: app/libraries/main.php:565 app/libraries/main.php:5342
|
938 |
#: app/modules/speakers/details.php:18
|
939 |
msgid "Speakers"
|
940 |
+
msgstr "Sprecher"
|
941 |
|
942 |
+
#: app/features/events.php:1387 app/features/events.php:1395
|
|
|
|
|
943 |
msgid "New Day"
|
944 |
+
msgstr "Neuer Tag"
|
945 |
|
946 |
+
#: app/features/events.php:1459 app/features/fes/form.php:704
|
947 |
#: app/features/mec/settings.php:658
|
948 |
msgid "Event Links"
|
949 |
msgstr "Veranstaltungslinks"
|
950 |
|
951 |
+
#: app/features/events.php:1462 app/features/events.php:1468
|
952 |
#: app/features/fes/form.php:706 app/libraries/main.php:5365
|
953 |
msgid "Event Link"
|
954 |
msgstr "Veranstaltungslink"
|
955 |
|
956 |
+
#: app/features/events.php:1465 app/features/events.php:1481
|
957 |
#: app/features/fes/form.php:707 app/features/fes/form.php:712
|
958 |
msgid "eg. http://yoursite.com/your-event"
|
959 |
+
msgstr "z.B. http://yoursite.com/your-event"
|
960 |
|
961 |
+
#: app/features/events.php:1469
|
962 |
#, fuzzy
|
963 |
#| msgid ""
|
964 |
#| "If you fill it, it will be replaced instead of default event page link. "
|
972 |
"dieser durch einen neuen link ersetzt werden. Vollständigen Link einfügen, "
|
973 |
"einschließlich http(s)://"
|
974 |
|
975 |
+
#: app/features/events.php:1471
|
976 |
msgid "URL Shortener"
|
977 |
msgstr ""
|
978 |
|
979 |
+
#: app/features/events.php:1478 app/features/events.php:1491
|
980 |
#: app/features/fes/form.php:711 app/libraries/main.php:5366
|
981 |
+
#: app/skins/single.php:677 app/skins/single/default.php:140
|
982 |
#: app/skins/single/default.php:363 app/skins/single/m1.php:205
|
983 |
#: app/skins/single/m2.php:132 app/skins/single/modern.php:140
|
984 |
#: app/widgets/single.php:107
|
985 |
msgid "More Info"
|
986 |
msgstr "Mehr Informationen"
|
987 |
|
988 |
+
#: app/features/events.php:1484 app/features/fes/form.php:713
|
989 |
msgid "More Information"
|
990 |
msgstr "z.B. Noch mehr Informationen "
|
991 |
|
992 |
+
#: app/features/events.php:1486 app/features/fes/form.php:715
|
993 |
msgid "Current Window"
|
994 |
msgstr "Aktuelles Fenster"
|
995 |
|
996 |
+
#: app/features/events.php:1487 app/features/fes/form.php:716
|
997 |
msgid "New Window"
|
998 |
msgstr "Neues Fenster"
|
999 |
|
1000 |
+
#: app/features/events.php:1492 app/features/fes/form.php:718
|
1001 |
msgid ""
|
1002 |
"If you fill it, it will be shown in event details page as an optional link. "
|
1003 |
"Insert full link including http(s)://"
|
1008 |
"Text angezeigt werden soll: zum Beispiel: Noch mehr Informationen oder Hier "
|
1009 |
"zur Anmeldung (z.B. bei Webinaren sinnvoll) "
|
1010 |
|
1011 |
+
#: app/features/events.php:1567 app/features/events.php:1582
|
1012 |
msgid "Total booking limits"
|
1013 |
msgstr "Gesamt Verfügbare Plätze"
|
1014 |
|
1015 |
+
#: app/features/events.php:1579 app/features/events.php:1830
|
1016 |
+
#: app/features/events.php:2045 app/modules/booking/default.php:85
|
1017 |
+
#: app/modules/booking/steps/tickets.php:43
|
1018 |
#: app/skins/available_spot/tpl.php:158
|
1019 |
msgid "Unlimited"
|
1020 |
msgstr "Unlimitiert"
|
1021 |
|
1022 |
+
#: app/features/events.php:1585
|
1023 |
msgid ""
|
1024 |
"If you want to set a limit to all tickets, uncheck this checkbox and put a "
|
1025 |
"limitation number."
|
1026 |
msgstr ""
|
1027 |
|
1028 |
+
#: app/features/events.php:1587
|
1029 |
#, fuzzy
|
1030 |
#| msgid "Choose your single event style."
|
1031 |
msgid "Read About A Booking System"
|
1032 |
msgstr "Wählen Sie Ihren Single Event Stil"
|
1033 |
|
1034 |
+
#: app/features/events.php:1595
|
1035 |
msgid "100"
|
1036 |
msgstr "z.B. 100"
|
1037 |
|
1038 |
+
#: app/features/events.php:1600
|
1039 |
#, fuzzy
|
1040 |
#| msgid "Total booking limits"
|
1041 |
msgid "Total user booking limits"
|
1042 |
msgstr "Gesamt Verfügbare Plätze"
|
1043 |
|
1044 |
+
#: app/features/events.php:1612 app/features/events.php:2144
|
1045 |
+
#: app/features/events.php:2276 app/features/events.php:2464
|
1046 |
msgid "Inherit from global options"
|
1047 |
msgstr "Aus den globalen Einstellungen übernehmen"
|
1048 |
|
1049 |
+
#: app/features/events.php:1615
|
1050 |
msgid "12"
|
1051 |
+
msgstr "12"
|
1052 |
|
1053 |
+
#: app/features/events.php:1634 app/libraries/book.php:60
|
1054 |
+
#: app/libraries/main.php:5370 app/modules/booking/steps/tickets.php:43
|
1055 |
msgid "Tickets"
|
1056 |
msgstr "Tickets"
|
1057 |
|
1058 |
+
#: app/features/events.php:1637
|
1059 |
msgid ""
|
1060 |
"You're translating an event so MEC will use the original event for tickets "
|
1061 |
"and booking. You can only translate the ticket name and description. Please "
|
1062 |
"define exact tickets that you defined in the original event here."
|
1063 |
msgstr ""
|
1064 |
|
1065 |
+
#: app/features/events.php:1642
|
|
|
|
|
1066 |
msgid "Add Ticket"
|
1067 |
+
msgstr "Ticket hinzufügen"
|
1068 |
|
1069 |
+
#: app/features/events.php:1656 app/features/events.php:1932
|
1070 |
msgid "Ticket Name"
|
1071 |
msgstr "Ticket Name"
|
1072 |
|
1073 |
+
#: app/features/events.php:1661 app/features/events.php:1936
|
1074 |
+
#: app/features/events.php:3494 app/features/events.php:3536
|
1075 |
#: app/features/ix.php:3506 app/features/ix.php:3547
|
1076 |
msgid "Start Time"
|
1077 |
msgstr "Uhrzeit des Beginns"
|
1078 |
|
1079 |
+
#: app/features/events.php:1720 app/features/events.php:1966
|
1080 |
+
#: app/features/events.php:3494 app/features/events.php:3536
|
1081 |
#: app/features/ix.php:3506 app/features/ix.php:3547
|
1082 |
msgid "End Time"
|
1083 |
msgstr "Uhrzeit Ende"
|
1084 |
|
1085 |
+
#: app/features/events.php:1787 app/features/events.php:1791
|
1086 |
+
#: app/features/events.php:1886 app/features/events.php:1913
|
1087 |
+
#: app/features/events.php:2012 app/features/events.php:2015
|
1088 |
+
#: app/features/events.php:2092 app/features/events.php:2309
|
1089 |
+
#: app/features/events.php:2313 app/features/events.php:2355
|
1090 |
+
#: app/features/events.php:2358 app/features/mec/booking.php:388
|
1091 |
#: app/features/mec/booking.php:391 app/features/mec/booking.php:420
|
1092 |
#: app/features/mec/booking.php:423
|
1093 |
msgid "Price"
|
1094 |
msgstr "Preis"
|
1095 |
|
1096 |
+
#: app/features/events.php:1792 app/features/events.php:2016
|
1097 |
msgid "Insert 0 for free ticket. Only numbers please."
|
1098 |
msgstr "Bitte 0 für kostenloses Ticket eingeben. Bitte nur Zahlen eintragen"
|
1099 |
|
1100 |
+
#: app/features/events.php:1801 app/features/events.php:1806
|
1101 |
+
#: app/features/events.php:2025 app/features/events.php:2028
|
1102 |
msgid "Price Label"
|
1103 |
msgstr "Preisschild"
|
1104 |
|
1105 |
+
#: app/features/events.php:1807 app/features/events.php:2029
|
1106 |
msgid "For showing on website. e.g. $15"
|
1107 |
msgstr "Um das auf der Webseite anzuzeigen zum Beispiel 15 €"
|
1108 |
|
1109 |
+
#: app/features/events.php:1817 app/features/events.php:2039
|
1110 |
msgid "Available Tickets"
|
1111 |
msgstr "Verfügbare Tickets: %s "
|
1112 |
|
1113 |
+
#: app/features/events.php:1834 app/features/events.php:2049
|
|
|
|
|
1114 |
msgid "Minimum Ticket e.g. 3"
|
1115 |
+
msgstr "Ticket minimum z.B. 3"
|
1116 |
|
1117 |
+
#: app/features/events.php:1837 app/features/events.php:2052
|
|
|
|
|
1118 |
msgid "MinimumTicket"
|
1119 |
+
msgstr "Ticket minimum"
|
1120 |
|
1121 |
+
#: app/features/events.php:1839 app/features/events.php:2054
|
1122 |
msgid "Set a number for the minimum ticket reservation"
|
1123 |
msgstr ""
|
1124 |
|
1125 |
+
#: app/features/events.php:1847 app/features/events.php:2062
|
1126 |
msgid "e.g. 0"
|
1127 |
+
msgstr "z.B. 0"
|
1128 |
|
1129 |
+
#: app/features/events.php:1849 app/features/events.php:2064
|
|
|
|
|
1130 |
msgid "Day"
|
1131 |
+
msgstr "Tag"
|
1132 |
|
1133 |
+
#: app/features/events.php:1850 app/features/events.php:2065
|
1134 |
msgid "Hour"
|
1135 |
+
msgstr "Stunde"
|
1136 |
|
1137 |
+
#: app/features/events.php:1852 app/features/events.php:2067
|
1138 |
#, php-format
|
1139 |
msgid "Stop selling ticket %s before event start."
|
1140 |
msgstr ""
|
1141 |
|
1142 |
+
#: app/features/events.php:1859 app/features/events.php:2073
|
|
|
|
|
1143 |
msgid "Price per Date"
|
1144 |
+
msgstr "Preis pro Datum"
|
1145 |
|
1146 |
+
#: app/features/events.php:1890 app/features/events.php:1916
|
1147 |
+
#: app/features/events.php:2094 app/features/labels.php:60
|
1148 |
#: app/features/mec/meta_boxes/display_options.php:960
|
1149 |
#: app/features/mec/meta_boxes/search_form.php:66
|
1150 |
#: app/features/mec/meta_boxes/search_form.php:128
|
1151 |
#: app/features/mec/meta_boxes/search_form.php:190
|
1152 |
+
#: app/features/mec/meta_boxes/search_form.php:252
|
1153 |
+
#: app/features/mec/meta_boxes/search_form.php:314
|
1154 |
+
#: app/features/mec/meta_boxes/search_form.php:376
|
1155 |
+
#: app/features/mec/meta_boxes/search_form.php:438
|
1156 |
+
#: app/features/mec/meta_boxes/search_form.php:493
|
1157 |
+
#: app/features/mec/meta_boxes/search_form.php:555
|
1158 |
+
#: app/features/mec/meta_boxes/search_form.php:617
|
1159 |
+
#: app/features/mec/meta_boxes/search_form.php:715
|
1160 |
#: app/features/mec/settings.php:840 app/features/mec/single.php:250
|
1161 |
#: app/libraries/skins.php:995
|
1162 |
msgid "Label"
|
1163 |
msgstr "Label"
|
1164 |
|
1165 |
+
#: app/features/events.php:2132
|
1166 |
msgid "Fees"
|
1167 |
msgstr "Gebühren"
|
1168 |
|
1169 |
+
#: app/features/events.php:2169 app/features/events.php:2207
|
1170 |
#: app/features/mec/booking.php:307 app/features/mec/booking.php:336
|
1171 |
msgid "Fee Title"
|
1172 |
msgstr "Gebühren Name"
|
1173 |
|
1174 |
+
#: app/features/events.php:2175 app/features/events.php:2179
|
1175 |
+
#: app/features/events.php:2212 app/features/events.php:2215
|
1176 |
#: app/features/mec/booking.php:311 app/features/mec/booking.php:314
|
1177 |
#: app/features/mec/booking.php:340 app/features/mec/booking.php:343
|
1178 |
msgid "Amount"
|
1179 |
msgstr "Betrag"
|
1180 |
|
1181 |
+
#: app/features/events.php:2180 app/features/events.php:2216
|
1182 |
#: app/features/mec/booking.php:315 app/features/mec/booking.php:344
|
1183 |
msgid ""
|
1184 |
"Fee amount, considered as fixed amount if you set the type to amount "
|
1187 |
"Gebührenbetrag, gilt als fester Betrag, wenn Sie die Art auf Betrag setzen, "
|
1188 |
"sonst als Prozentsatz"
|
1189 |
|
1190 |
+
#: app/features/events.php:2189 app/features/events.php:2225
|
1191 |
#: app/features/mec/booking.php:322 app/features/mec/booking.php:351
|
1192 |
msgid "Percent"
|
1193 |
msgstr "Prozent"
|
1194 |
|
1195 |
+
#: app/features/events.php:2190 app/features/events.php:2226
|
1196 |
#: app/features/mec/booking.php:323 app/features/mec/booking.php:352
|
1197 |
msgid "Amount (Per Ticket)"
|
1198 |
msgstr "Betrag (pro Ticket)"
|
1199 |
|
1200 |
+
#: app/features/events.php:2191 app/features/events.php:2227
|
1201 |
#: app/features/mec/booking.php:324 app/features/mec/booking.php:353
|
1202 |
msgid "Amount (Per Booking)"
|
1203 |
msgstr "Betrag (pro Buchung)"
|
1204 |
|
1205 |
+
#: app/features/events.php:2264 app/features/mec/settings.php:736
|
1206 |
msgid "Ticket Variations / Options"
|
1207 |
msgstr ""
|
1208 |
|
1209 |
+
#: app/features/events.php:2314 app/features/events.php:2359
|
1210 |
#: app/features/mec/booking.php:392 app/features/mec/booking.php:424
|
|
|
|
|
1211 |
msgid "Option Price"
|
1212 |
+
msgstr "Preis Optionen"
|
1213 |
|
1214 |
+
#: app/features/events.php:2324 app/features/events.php:2328
|
1215 |
+
#: app/features/events.php:2368 app/features/events.php:2371
|
1216 |
#: app/features/mec/booking.php:398 app/features/mec/booking.php:401
|
1217 |
#: app/features/mec/booking.php:430 app/features/mec/booking.php:433
|
|
|
|
|
1218 |
msgid "Maximum Per Ticket"
|
1219 |
+
msgstr "Maximum pro Ticket"
|
1220 |
|
1221 |
+
#: app/features/events.php:2329 app/features/events.php:2372
|
1222 |
#: app/features/mec/booking.php:402 app/features/mec/booking.php:434
|
1223 |
msgid "Maximum Per Ticket. Leave it blank for unlimited."
|
1224 |
+
msgstr "Maximum pro Ticket. Leerlassen für unendlich."
|
1225 |
|
1226 |
+
#: app/features/events.php:2518 app/features/mec/booking.php:496
|
1227 |
#: app/libraries/main.php:2784
|
|
|
|
|
1228 |
msgid "MEC Name"
|
1229 |
+
msgstr "MEC Name"
|
1230 |
|
1231 |
+
#: app/features/events.php:2519 app/features/mec/booking.php:497
|
1232 |
#: app/libraries/main.php:2813
|
|
|
|
|
1233 |
msgid "MEC Email"
|
1234 |
+
msgstr "MEC Email"
|
1235 |
|
1236 |
+
#: app/features/events.php:2520 app/features/mec/booking.php:498
|
1237 |
#: app/libraries/main.php:2754
|
1238 |
msgid "Text"
|
1239 |
msgstr "Text"
|
1240 |
|
1241 |
+
#: app/features/events.php:2523 app/features/mec/booking.php:501
|
1242 |
#: app/features/organizers.php:103 app/features/organizers.php:148
|
1243 |
#: app/features/speakers.php:119 app/features/speakers.php:192
|
1244 |
#: app/features/speakers.php:271 app/libraries/main.php:2930
|
1245 |
msgid "Tel"
|
1246 |
msgstr "Tel"
|
1247 |
|
1248 |
+
#: app/features/events.php:2524 app/features/mec/booking.php:502
|
1249 |
#: app/libraries/main.php:2872
|
1250 |
msgid "File"
|
1251 |
+
msgstr "Datei"
|
1252 |
|
1253 |
+
#: app/features/events.php:2525 app/features/mec/booking.php:503
|
1254 |
#: app/libraries/main.php:2959
|
1255 |
msgid "Textarea"
|
1256 |
msgstr "Textbereich"
|
1257 |
|
1258 |
+
#: app/features/events.php:2526 app/features/mec/booking.php:504
|
1259 |
#: app/libraries/main.php:3012
|
1260 |
msgid "Checkboxes"
|
1261 |
msgstr "Checkboxes"
|
1262 |
|
1263 |
+
#: app/features/events.php:2527 app/features/mec/booking.php:505
|
1264 |
#: app/libraries/main.php:3056
|
1265 |
msgid "Radio Buttons"
|
1266 |
msgstr "Radio Buttons"
|
1267 |
|
1268 |
+
#: app/features/events.php:2528 app/features/mec/booking.php:506
|
1269 |
#: app/features/mec/meta_boxes/search_form.php:34
|
1270 |
#: app/features/mec/meta_boxes/search_form.php:41
|
1271 |
#: app/features/mec/meta_boxes/search_form.php:48
|
1287 |
#: app/features/mec/meta_boxes/search_form.php:186
|
1288 |
#: app/features/mec/meta_boxes/search_form.php:193
|
1289 |
#: app/features/mec/meta_boxes/search_form.php:200
|
1290 |
+
#: app/features/mec/meta_boxes/search_form.php:220
|
1291 |
+
#: app/features/mec/meta_boxes/search_form.php:227
|
1292 |
+
#: app/features/mec/meta_boxes/search_form.php:234
|
1293 |
+
#: app/features/mec/meta_boxes/search_form.php:241
|
1294 |
+
#: app/features/mec/meta_boxes/search_form.php:248
|
1295 |
+
#: app/features/mec/meta_boxes/search_form.php:255
|
1296 |
+
#: app/features/mec/meta_boxes/search_form.php:262
|
1297 |
+
#: app/features/mec/meta_boxes/search_form.php:282
|
1298 |
+
#: app/features/mec/meta_boxes/search_form.php:289
|
1299 |
+
#: app/features/mec/meta_boxes/search_form.php:296
|
1300 |
+
#: app/features/mec/meta_boxes/search_form.php:303
|
1301 |
+
#: app/features/mec/meta_boxes/search_form.php:310
|
1302 |
+
#: app/features/mec/meta_boxes/search_form.php:317
|
1303 |
+
#: app/features/mec/meta_boxes/search_form.php:324
|
1304 |
+
#: app/features/mec/meta_boxes/search_form.php:344
|
1305 |
+
#: app/features/mec/meta_boxes/search_form.php:351
|
1306 |
+
#: app/features/mec/meta_boxes/search_form.php:358
|
1307 |
+
#: app/features/mec/meta_boxes/search_form.php:365
|
1308 |
+
#: app/features/mec/meta_boxes/search_form.php:372
|
1309 |
+
#: app/features/mec/meta_boxes/search_form.php:379
|
1310 |
+
#: app/features/mec/meta_boxes/search_form.php:386
|
1311 |
+
#: app/features/mec/meta_boxes/search_form.php:406
|
1312 |
+
#: app/features/mec/meta_boxes/search_form.php:413
|
1313 |
+
#: app/features/mec/meta_boxes/search_form.php:420
|
1314 |
+
#: app/features/mec/meta_boxes/search_form.php:427
|
1315 |
+
#: app/features/mec/meta_boxes/search_form.php:434
|
1316 |
+
#: app/features/mec/meta_boxes/search_form.php:441
|
1317 |
+
#: app/features/mec/meta_boxes/search_form.php:461
|
1318 |
+
#: app/features/mec/meta_boxes/search_form.php:468
|
1319 |
+
#: app/features/mec/meta_boxes/search_form.php:475
|
1320 |
+
#: app/features/mec/meta_boxes/search_form.php:482
|
1321 |
+
#: app/features/mec/meta_boxes/search_form.php:489
|
1322 |
+
#: app/features/mec/meta_boxes/search_form.php:496
|
1323 |
+
#: app/features/mec/meta_boxes/search_form.php:503
|
1324 |
+
#: app/features/mec/meta_boxes/search_form.php:523
|
1325 |
+
#: app/features/mec/meta_boxes/search_form.php:530
|
1326 |
+
#: app/features/mec/meta_boxes/search_form.php:537
|
1327 |
+
#: app/features/mec/meta_boxes/search_form.php:544
|
1328 |
+
#: app/features/mec/meta_boxes/search_form.php:551
|
1329 |
+
#: app/features/mec/meta_boxes/search_form.php:558
|
1330 |
+
#: app/features/mec/meta_boxes/search_form.php:565
|
|
|
1331 |
#: app/features/mec/meta_boxes/search_form.php:585
|
1332 |
#: app/features/mec/meta_boxes/search_form.php:592
|
1333 |
#: app/features/mec/meta_boxes/search_form.php:599
|
1334 |
#: app/features/mec/meta_boxes/search_form.php:606
|
1335 |
#: app/features/mec/meta_boxes/search_form.php:613
|
1336 |
#: app/features/mec/meta_boxes/search_form.php:620
|
1337 |
+
#: app/features/mec/meta_boxes/search_form.php:627
|
1338 |
+
#: app/features/mec/meta_boxes/search_form.php:683
|
1339 |
+
#: app/features/mec/meta_boxes/search_form.php:690
|
1340 |
+
#: app/features/mec/meta_boxes/search_form.php:697
|
1341 |
+
#: app/features/mec/meta_boxes/search_form.php:704
|
1342 |
+
#: app/features/mec/meta_boxes/search_form.php:711
|
1343 |
+
#: app/features/mec/meta_boxes/search_form.php:718
|
1344 |
+
#: app/features/mec/meta_boxes/search_form.php:725 app/libraries/main.php:3100
|
1345 |
msgid "Dropdown"
|
1346 |
msgstr "Dropdown"
|
1347 |
|
1348 |
+
#: app/features/events.php:2529 app/features/mec/booking.php:507
|
1349 |
#: app/libraries/main.php:3147
|
1350 |
msgid "Agreement"
|
1351 |
msgstr "Zustimmung"
|
1352 |
|
1353 |
+
#: app/features/events.php:2530 app/features/mec/booking.php:508
|
1354 |
#: app/libraries/main.php:2988
|
1355 |
msgid "Paragraph"
|
1356 |
msgstr "Absatz"
|
1357 |
|
1358 |
+
#: app/features/events.php:3202 app/features/events.php:3220
|
1359 |
+
#: app/features/events.php:3238 app/features/events.php:3256
|
1360 |
#, php-format
|
1361 |
msgid "Show all %s"
|
1362 |
msgstr "Zeige alle %s"
|
1363 |
|
1364 |
+
#: app/features/events.php:3202
|
1365 |
msgid "labels"
|
1366 |
msgstr "Labels + Eventstatus"
|
1367 |
|
1368 |
+
#: app/features/events.php:3220
|
1369 |
msgid "locations"
|
1370 |
msgstr "Orte"
|
1371 |
|
1372 |
+
#: app/features/events.php:3238
|
1373 |
msgid "organizers"
|
1374 |
msgstr "Veranstalter"
|
1375 |
|
1376 |
+
#: app/features/events.php:3272
|
|
|
|
|
1377 |
msgid "Attendees List"
|
1378 |
+
msgstr "Teilnehmer Liste"
|
1379 |
|
1380 |
+
#: app/features/events.php:3302 app/features/events.php:3494
|
1381 |
+
#: app/features/events.php:3536 app/features/ix.php:3506
|
1382 |
#: app/features/ix.php:3547 app/features/locations.php:58
|
1383 |
#: app/features/locations.php:232 app/features/locations.php:289
|
1384 |
#: app/features/locations.php:291 app/features/locations.php:300
|
1386 |
#: app/features/mec/meta_boxes/search_form.php:38
|
1387 |
#: app/features/mec/meta_boxes/search_form.php:100
|
1388 |
#: app/features/mec/meta_boxes/search_form.php:162
|
1389 |
+
#: app/features/mec/meta_boxes/search_form.php:224
|
1390 |
+
#: app/features/mec/meta_boxes/search_form.php:286
|
1391 |
+
#: app/features/mec/meta_boxes/search_form.php:348
|
1392 |
+
#: app/features/mec/meta_boxes/search_form.php:410
|
1393 |
+
#: app/features/mec/meta_boxes/search_form.php:465
|
1394 |
+
#: app/features/mec/meta_boxes/search_form.php:527
|
1395 |
+
#: app/features/mec/meta_boxes/search_form.php:589
|
1396 |
+
#: app/features/mec/meta_boxes/search_form.php:687
|
1397 |
#: app/features/mec/settings.php:814 app/features/mec/single.php:240
|
1398 |
#: app/features/search.php:73 app/libraries/main.php:2247
|
1399 |
#: app/libraries/main.php:5339 app/libraries/skins.php:891
|
1400 |
+
#: app/skins/single.php:497 app/skins/single.php:934
|
1401 |
#: app/skins/single/default.php:176 app/skins/single/default.php:399
|
1402 |
#: app/skins/single/m1.php:169 app/skins/single/m2.php:95
|
1403 |
#: app/skins/single/modern.php:102
|
1404 |
msgid "Location"
|
1405 |
msgstr "Ort"
|
1406 |
|
1407 |
+
#: app/features/events.php:3307
|
1408 |
msgid "Repeat"
|
1409 |
msgstr "Wiederholen"
|
1410 |
|
1411 |
+
#: app/features/events.php:3308
|
1412 |
msgid "Author"
|
1413 |
msgstr "Autor"
|
1414 |
|
1415 |
+
#: app/features/events.php:3429 app/features/events.php:3430
|
1416 |
msgid "iCal Export"
|
1417 |
msgstr "ical Export"
|
1418 |
|
1419 |
+
#: app/features/events.php:3432 app/features/events.php:3433
|
1420 |
msgid "CSV Export"
|
1421 |
msgstr "CSV Export"
|
1422 |
|
1423 |
+
#: app/features/events.php:3435 app/features/events.php:3436
|
1424 |
msgid "MS Excel Export"
|
1425 |
msgstr "MS Excel Export"
|
1426 |
|
1427 |
+
#: app/features/events.php:3438 app/features/events.php:3439
|
1428 |
msgid "XML Export"
|
1429 |
msgstr "XML Export"
|
1430 |
|
1431 |
+
#: app/features/events.php:3441 app/features/events.php:3442
|
1432 |
msgid "JSON Export"
|
1433 |
msgstr "JSON Export"
|
1434 |
|
1435 |
+
#: app/features/events.php:3444 app/features/events.php:3445
|
1436 |
+
#: app/features/events.php:3627
|
1437 |
msgid "Duplicate"
|
1438 |
msgstr "Kopie"
|
1439 |
|
1440 |
+
#: app/features/events.php:3494 app/features/events.php:3536
|
1441 |
#: app/features/fes.php:223 app/features/ix.php:3506 app/features/ix.php:3547
|
1442 |
#: app/features/labels.php:177 app/features/locations.php:231
|
1443 |
#: app/features/organizers.php:203 app/features/speakers.php:268
|
1444 |
msgid "ID"
|
1445 |
msgstr "ID"
|
1446 |
|
1447 |
+
#: app/features/events.php:3494 app/features/events.php:3536
|
1448 |
#: app/features/ix.php:3506 app/features/ix.php:3547
|
1449 |
msgid "Link"
|
1450 |
msgstr "Link"
|
1451 |
|
1452 |
+
#: app/features/events.php:3494 app/features/events.php:3536
|
1453 |
#, php-format
|
1454 |
msgid "%s Tel"
|
1455 |
msgstr "%s Tel"
|
1456 |
|
1457 |
+
#: app/features/events.php:3494 app/features/events.php:3536
|
1458 |
#, php-format
|
1459 |
msgid "%s Email"
|
1460 |
msgstr "%s Email"
|
1461 |
|
1462 |
+
#: app/features/events.php:3789 app/features/fes.php:223
|
1463 |
#: app/features/profile/profile.php:186 app/libraries/main.php:2282
|
1464 |
#: app/libraries/main.php:5369
|
1465 |
msgid "Ticket"
|
1466 |
msgstr "Ticket"
|
1467 |
|
1468 |
+
#: app/features/events.php:3792 app/features/profile/profile.php:189
|
|
|
|
|
1469 |
msgid "Variations"
|
1470 |
+
msgstr "Variationen"
|
1471 |
|
1472 |
+
#: app/features/events.php:3807 app/features/fes.php:303
|
1473 |
msgid "Unknown"
|
1474 |
msgstr "Unbekannt"
|
1475 |
|
1476 |
+
#: app/features/events.php:3840
|
|
|
|
|
1477 |
msgid "No Attendees Found!"
|
1478 |
+
msgstr "Keine Teilnehmer gefunden!"
|
1479 |
|
1480 |
#: app/features/fes.php:87
|
1481 |
#, php-format
|
1510 |
msgid "The event removed!"
|
1511 |
msgstr "Die Veranstaltung wurde entfernt."
|
1512 |
|
1513 |
+
#: app/features/fes.php:223
|
1514 |
+
msgid "Order Time"
|
1515 |
+
msgstr "Uhrzeit Bestellung"
|
1516 |
+
|
1517 |
#: app/features/fes.php:223 app/libraries/main.php:2259
|
1518 |
msgid "Transaction ID"
|
1519 |
msgstr "Transaktions-ID"
|
1520 |
|
1521 |
#: app/features/fes.php:223
|
1522 |
msgid "Total Price"
|
1523 |
+
msgstr "Gesamt Preis"
|
1524 |
|
1525 |
#: app/features/fes.php:223
|
|
|
|
|
1526 |
msgid "Ticket Variation"
|
1527 |
+
msgstr "Ticket Variationen"
|
1528 |
|
1529 |
#: app/features/fes.php:223
|
1530 |
msgid "Confirmation"
|
1557 |
msgstr "Die Veranstaltung wurde veröffentlicht."
|
1558 |
|
1559 |
#: app/features/fes/form.php:169
|
|
|
|
|
1560 |
msgid "Go back to events list"
|
1561 |
msgstr "Zurück zur Liste der Veranstaltungen"
|
1562 |
|
1642 |
#: app/features/fes/form.php:783 app/features/labels.php:61
|
1643 |
#: app/features/labels.php:221 app/features/mec.php:404
|
1644 |
#: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:5336
|
1645 |
+
#: app/skins/single.php:706 app/skins/single/default.php:155
|
1646 |
#: app/skins/single/default.php:378 app/skins/single/m1.php:73
|
1647 |
#: app/skins/single/modern.php:228
|
1648 |
msgid "Labels"
|
1659 |
"Geben Sie die gewünschten Tags (Schlagworte) durch ein Komma separiert ein"
|
1660 |
|
1661 |
#: app/features/fes/form.php:853
|
|
|
|
|
1662 |
msgid "Speakers Names"
|
1663 |
+
msgstr "Sprecher Namen"
|
1664 |
|
1665 |
#: app/features/fes/form.php:854
|
1666 |
msgid "Separate names with commas Similar Justin, Cris"
|
1667 |
+
msgstr "Unterteile Namen mit Kommas. z.B. Hans, Maier"
|
1668 |
|
1669 |
#: app/features/fes/form.php:872
|
1670 |
msgid "Submit"
|
1679 |
msgstr "Neu hinzufügen"
|
1680 |
|
1681 |
#: app/features/fes/list.php:80
|
|
|
|
|
1682 |
msgid "Download Attendees"
|
1683 |
+
msgstr "Teilnehmer Herunterladen"
|
1684 |
|
1685 |
#: app/features/fes/list.php:84
|
|
|
|
|
1686 |
msgid "Remove Event"
|
1687 |
+
msgstr "Veranstaltung Entfernen"
|
1688 |
|
1689 |
#: app/features/fes/list.php:175
|
1690 |
#, php-format
|
1706 |
|
1707 |
#: app/features/ix.php:204
|
1708 |
msgid "The file type should be XML or ICS."
|
1709 |
+
msgstr "Der Datei Typ muss XML oder ICS sein."
|
1710 |
|
1711 |
#: app/features/ix.php:213
|
1712 |
msgid "An error occurred during the file upload! Please check permissions!"
|
1714 |
|
1715 |
#: app/features/ix.php:221
|
1716 |
msgid "The events are imported successfully!"
|
1717 |
+
msgstr "Die Events wurden erfolgreich importiert!"
|
1718 |
|
1719 |
#: app/features/ix.php:943
|
1720 |
msgid "Third Party plugin is not installed and activated!"
|
1989 |
msgstr "Überprüfung"
|
1990 |
|
1991 |
#: app/features/ix/export_g_calendar.php:134
|
|
|
|
|
1992 |
msgid "Exporting ..."
|
1993 |
+
msgstr "Exportieren…"
|
1994 |
|
1995 |
#: app/features/ix/import.php:21
|
1996 |
msgid "Import MEC XML Feed"
|
2009 |
|
2010 |
#: app/features/ix/import.php:29 app/features/ix/import.php:42
|
2011 |
msgid "Upload & Import"
|
2012 |
+
msgstr "Hochladen & Importieren"
|
2013 |
|
2014 |
#: app/features/ix/import.php:33
|
2015 |
msgid "Import .ics File"
|
2052 |
#: app/features/mec/modules.php:70 app/features/mec/modules.php:212
|
2053 |
#: app/features/mec/modules.php:229
|
2054 |
msgid "Pro version of Modern Events Calendar"
|
2055 |
+
msgstr "Pro Version vom Modernen Event Calendar"
|
2056 |
|
2057 |
#: app/features/ix/import_f_calendar.php:22
|
2058 |
msgid "The Facebook SDK requires PHP version 5.4 or higher."
|
2098 |
#: app/features/ix/import_f_calendar.php:65 app/features/ix/thirdparty.php:58
|
2099 |
#, php-format
|
2100 |
msgid "Event Title: %s"
|
2101 |
+
msgstr "Event Titel: %s"
|
2102 |
|
2103 |
#: app/features/ix/import_f_calendar.php:72
|
2104 |
#: app/features/ix/import_g_calendar.php:87
|
2192 |
|
2193 |
#: app/features/ix/import_meetup.php:32
|
2194 |
msgid "Group URL"
|
2195 |
+
msgstr "Gruppen URL"
|
2196 |
|
2197 |
#: app/features/ix/import_meetup.php:35
|
2198 |
#, php-format
|
2410 |
#: app/features/organizers.php:77 app/features/speakers.php:80
|
2411 |
#, php-format
|
2412 |
msgid "← Back to %s"
|
2413 |
+
msgstr "← Zurück zu %s"
|
2414 |
|
2415 |
#: app/features/labels.php:103 app/features/labels.php:134
|
2416 |
#: app/features/labels.php:179
|
2437 |
|
2438 |
#: app/features/labels.php:116 app/features/labels.php:141
|
2439 |
msgid "Normal"
|
2440 |
+
msgstr "Normal"
|
2441 |
|
2442 |
#: app/features/labels.php:117 app/features/labels.php:142
|
2443 |
#: app/skins/agenda/render.php:39 app/skins/available_spot/tpl.php:39
|
2450 |
#: app/skins/tile/render.php:37 app/skins/timeline/render.php:44
|
2451 |
#: app/skins/timetable/render.php:35 app/skins/timetable/render.php:144
|
2452 |
#: app/skins/weekly_view/render.php:33 app/skins/yearly_view/render.php:48
|
|
|
|
|
2453 |
msgid "Featured"
|
2454 |
+
msgstr "Vorgeschlagen"
|
2455 |
|
2456 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2457 |
#: app/libraries/main.php:5585 app/skins/agenda/render.php:43
|
2474 |
|
2475 |
#: app/features/labels.php:180 app/features/locations.php:234
|
2476 |
#: app/features/organizers.php:206 app/features/speakers.php:272
|
2477 |
+
#: app/modules/booking/steps/tickets.php:41
|
2478 |
msgid "Count"
|
2479 |
msgstr "Zähler"
|
2480 |
|
2603 |
msgstr "Karte in Einzelansicht nicht anzeigen"
|
2604 |
|
2605 |
#: app/features/locations.php:359 app/libraries/main.php:5372
|
|
|
|
|
2606 |
msgid "Other Locations"
|
2607 |
+
msgstr "Andere Orte"
|
2608 |
|
2609 |
#: app/features/locations.php:361
|
2610 |
#, fuzzy
|
2628 |
|
2629 |
#: app/features/mec.php:186
|
2630 |
msgid "Troubleshooting"
|
2631 |
+
msgstr "Problembehebung"
|
2632 |
|
2633 |
#: app/features/mec.php:256 app/libraries/notifications.php:937
|
2634 |
#, php-format
|
2642 |
msgstr ""
|
2643 |
|
2644 |
#: app/features/mec.php:286
|
|
|
|
|
2645 |
msgid "Your options field can not be empty!"
|
2646 |
+
msgstr "Ihr Optionen Feld darf nicht leer sein!"
|
2647 |
|
2648 |
#: app/features/mec.php:292
|
|
|
|
|
2649 |
msgid "Your options imported successfuly."
|
2650 |
+
msgstr "Ihre Einstellungen wurden erfolgreich importiert."
|
2651 |
|
2652 |
#: app/features/mec.php:385
|
|
|
|
|
2653 |
msgid "MEC - Support"
|
2654 |
+
msgstr "MEC - Support"
|
2655 |
|
2656 |
#: app/features/mec.php:385 app/features/mec/support-page.php:9
|
2657 |
#: app/features/mec/support.php:80 app/features/mec/support.php:93
|
2674 |
msgstr "MEC - Einstellungen"
|
2675 |
|
2676 |
#: app/features/mec.php:416
|
|
|
|
|
2677 |
msgid "MEC - Addons"
|
2678 |
+
msgstr "MEC - Erweiterungen"
|
2679 |
|
2680 |
#: app/features/mec.php:416 app/features/mec/addons.php:22
|
2681 |
msgid "Addons"
|
2682 |
+
msgstr "Erweiterungen"
|
2683 |
|
2684 |
#: app/features/mec.php:419
|
2685 |
#, fuzzy
|
2693 |
msgid "Report"
|
2694 |
msgstr "Export"
|
2695 |
|
2696 |
+
#: app/features/mec.php:421
|
2697 |
+
#, fuzzy
|
2698 |
+
#| msgid "Support"
|
2699 |
+
msgid "MEC - Go Pro"
|
2700 |
+
msgstr "Support"
|
2701 |
+
|
2702 |
+
#: app/features/mec.php:421 app/features/mec/go-pro.php:9
|
2703 |
+
msgid "Go Pro"
|
2704 |
+
msgstr ""
|
2705 |
+
|
2706 |
#: app/features/mec.php:440
|
2707 |
msgid "Add Shortcode"
|
2708 |
msgstr "Shortcode hinzufügen"
|
2739 |
msgid "Search Form"
|
2740 |
msgstr "Suche Formular"
|
2741 |
|
2742 |
+
#: app/features/mec.php:898
|
2743 |
msgid "Display content's images as Popup"
|
2744 |
msgstr ""
|
2745 |
|
2746 |
+
#: app/features/mec.php:912 app/features/popup/shortcode.php:300
|
2747 |
msgid "Single Event Display Method"
|
2748 |
msgstr "Single Event Anzeigemethode"
|
2749 |
|
2750 |
+
#: app/features/mec.php:917 app/features/popup/shortcode.php:304
|
2751 |
msgid "Separate Window"
|
2752 |
msgstr "Separates Fenster"
|
2753 |
|
2754 |
+
#: app/features/mec.php:918 app/features/popup/shortcode.php:308
|
2755 |
msgid "Modal 1"
|
2756 |
msgstr "Modal 1"
|
2757 |
|
2763 |
|
2764 |
#: app/features/mec/addons.php:82
|
2765 |
msgid "Coming Soon"
|
2766 |
+
msgstr "Erscheint bald"
|
2767 |
|
2768 |
#: app/features/mec/addons.php:93
|
2769 |
msgid ""
|
2776 |
#: app/features/mec/modules.php:23 app/features/mec/notifications.php:12
|
2777 |
#: app/features/mec/settings.php:37 app/features/mec/single.php:15
|
2778 |
#: app/features/mec/styling.php:35
|
|
|
|
|
2779 |
msgid "Search..."
|
2780 |
+
msgstr "Suche…"
|
2781 |
|
2782 |
#: app/features/mec/booking.php:72 app/features/mec/booking.php:514
|
2783 |
#: app/features/mec/booking.php:594 app/features/mec/booking.php:603
|
2836 |
msgstr "Limit"
|
2837 |
|
2838 |
#: app/features/mec/booking.php:117
|
|
|
|
|
2839 |
msgid "Default is empty"
|
2840 |
+
msgstr "Standart ist leer "
|
2841 |
|
2842 |
#: app/features/mec/booking.php:120
|
|
|
|
|
2843 |
msgid "Booking Limit"
|
2844 |
+
msgstr "Buchungs Limit"
|
2845 |
|
2846 |
#: app/features/mec/booking.php:121
|
2847 |
msgid ""
|
2865 |
|
2866 |
#: app/features/mec/booking.php:136
|
2867 |
msgid "Minutes (e.g 5)"
|
2868 |
+
msgstr "Minuten (z.B. 5)"
|
2869 |
|
2870 |
#: app/features/mec/booking.php:140
|
2871 |
msgid ""
|
2889 |
|
2890 |
#: app/features/mec/booking.php:165 app/features/mec/booking.php:170
|
2891 |
#: app/features/mec/settings.php:627 app/features/mec/settings.php:632
|
|
|
|
|
2892 |
msgid "Thank You Page Time Interval"
|
2893 |
+
msgstr "Dauer bis zur Weiterleitung auf die Danke Seite"
|
2894 |
|
2895 |
#: app/features/mec/booking.php:167 app/features/mec/settings.php:629
|
2896 |
msgid "2000 mean 2 seconds"
|
2897 |
+
msgstr "2000 bedeutet 2 Sekunden"
|
2898 |
|
2899 |
#: app/features/mec/booking.php:171 app/features/mec/settings.php:633
|
2900 |
msgid ""
|
2919 |
"Buchungsformular anwenden."
|
2920 |
|
2921 |
#: app/features/mec/booking.php:200
|
|
|
|
|
2922 |
msgid "Enable Invoice"
|
2923 |
+
msgstr "Rechnungen aktivieren"
|
2924 |
|
2925 |
#: app/features/mec/booking.php:211
|
|
|
|
|
2926 |
msgid "Enable Booking for Ongoing Events"
|
2927 |
+
msgstr "Aktiviere Buchung für bereits laufende Events"
|
2928 |
|
2929 |
#: app/features/mec/booking.php:216
|
2930 |
msgid "Email verification"
|
2982 |
msgstr ""
|
2983 |
|
2984 |
#: app/features/mec/booking.php:373
|
|
|
|
|
2985 |
msgid "Enable ticket options module"
|
2986 |
+
msgstr "Ticket Optionen aktivieren"
|
2987 |
|
2988 |
#: app/features/mec/booking.php:378
|
2989 |
msgid "Add Variation / Option"
|
3017 |
#: app/features/mec/settings.php:1050 app/features/mec/single.php:293
|
3018 |
#: app/features/mec/styles.php:61 app/features/mec/styling.php:297
|
3019 |
msgid "Settings Saved!"
|
3020 |
+
msgstr "Einstellungen gespeichert!"
|
3021 |
|
3022 |
#: app/features/mec/booking.php:636 app/features/mec/booking.php:658
|
3023 |
#: app/features/mec/modules.php:396 app/features/mec/modules.php:418
|
3045 |
msgstr ""
|
3046 |
|
3047 |
#: app/features/mec/dashboard.php:63
|
|
|
|
|
3048 |
msgid "Modern Events Calendar (Lite)"
|
3049 |
+
msgstr "Moderner Event Kalender (Lite)"
|
3050 |
|
3051 |
#: app/features/mec/dashboard.php:65 app/libraries/factory.php:199
|
3052 |
msgctxt "plugin rate"
|
3053 |
msgid "Rate the plugin ★★★★★"
|
3054 |
+
msgstr "Bewerte das Plugin ★★★★★"
|
3055 |
|
3056 |
#: app/features/mec/dashboard.php:70
|
|
|
|
|
3057 |
msgid "Update"
|
3058 |
+
msgstr "Update"
|
3059 |
|
3060 |
+
#: app/features/mec/dashboard.php:96 app/features/mec/go-pro.php:65
|
3061 |
#, php-format
|
3062 |
msgid ""
|
3063 |
"You're using %s version of Modern Events Calendar. To use advanced booking "
|
3065 |
"Spots, etc you should upgrade to the Pro version."
|
3066 |
msgstr ""
|
3067 |
|
3068 |
+
#: app/features/mec/dashboard.php:96 app/features/mec/go-pro.php:65
|
3069 |
msgid "lite"
|
3070 |
msgstr ""
|
3071 |
|
3072 |
+
#: app/features/mec/dashboard.php:99 app/features/mec/go-pro.php:68
|
3073 |
#: app/features/mec/support.php:126
|
3074 |
msgid "GO PREMIUM"
|
3075 |
msgstr ""
|
3076 |
|
3077 |
+
#: app/features/mec/dashboard.php:102 app/features/mec/go-pro.php:71
|
3078 |
#, php-format
|
3079 |
msgid ""
|
3080 |
"Easily get a discount coupon by rating us on %s or following and reposting "
|
3081 |
"us on social media. Just send a screenshot to %s and you'll receive the %s"
|
3082 |
msgstr ""
|
3083 |
|
3084 |
+
#: app/features/mec/dashboard.php:102 app/features/mec/go-pro.php:71
|
|
|
|
|
3085 |
msgid "WordPress"
|
3086 |
+
msgstr "WordPress"
|
3087 |
|
3088 |
+
#: app/features/mec/dashboard.php:102 app/features/mec/go-pro.php:71
|
3089 |
msgid "Copouns!"
|
3090 |
+
msgstr "Gutscheine!"
|
3091 |
|
3092 |
#: app/features/mec/dashboard.php:131
|
|
|
|
|
3093 |
msgid "Getting started with Modern Events Calendar"
|
3094 |
+
msgstr "Lege los mit dem Modernen Event Kalender "
|
3095 |
|
3096 |
#: app/features/mec/dashboard.php:132
|
3097 |
msgid ""
|
3100 |
msgstr ""
|
3101 |
|
3102 |
#: app/features/mec/dashboard.php:148 app/features/mec/dashboard.php:172
|
|
|
|
|
3103 |
msgid "MEC Activate"
|
3104 |
+
msgstr "MEC Aktivieren"
|
3105 |
|
3106 |
#: app/features/mec/dashboard.php:154 app/features/mec/dashboard.php:236
|
|
|
|
|
3107 |
msgid "Activate Addons"
|
3108 |
+
msgstr "MEC Erweiterungen Aktivieren"
|
3109 |
|
3110 |
#: app/features/mec/dashboard.php:162 app/features/mec/dashboard.php:245
|
3111 |
msgid "You cannot access this section."
|
3166 |
msgid "Change Log"
|
3167 |
msgstr "Änderungsprotokoll"
|
3168 |
|
|
|
|
|
|
|
|
|
3169 |
#: app/features/mec/ie.php:21
|
3170 |
msgid ""
|
3171 |
"Insert your backup files below and press import to restore your site's "
|
3183 |
msgstr ""
|
3184 |
|
3185 |
#: app/features/mec/ie.php:27
|
|
|
|
|
3186 |
msgid "Import Settings"
|
3187 |
+
msgstr "Einstellungen Importieren"
|
3188 |
|
3189 |
#: app/features/mec/ie.php:37
|
|
|
|
|
3190 |
msgid "Download Settings"
|
3191 |
+
msgstr "Einstellungen Herunterladen"
|
3192 |
|
3193 |
#: app/features/mec/messages.php:28 app/features/mec/support.php:66
|
3194 |
#: app/libraries/main.php:795
|
3579 |
|
3580 |
#: app/features/mec/meta_boxes/display_options.php:260
|
3581 |
#: app/features/mec/meta_boxes/display_options.php:1373
|
|
|
|
|
3582 |
msgid "Default value is \"d F Y"
|
3583 |
+
msgstr "Standardwert ist \"d (Tag) F (Monat) Y (Jahr)\" "
|
3584 |
|
3585 |
#: app/features/mec/meta_boxes/display_options.php:272
|
3586 |
msgid "Default values are d and F"
|
3653 |
|
3654 |
#: app/features/mec/meta_boxes/display_options.php:496
|
3655 |
#: app/features/popup/shortcode.php:136
|
|
|
|
|
3656 |
msgid "Monthly Style"
|
3657 |
+
msgstr "Monatsansicht"
|
3658 |
|
3659 |
#: app/features/mec/meta_boxes/display_options.php:536
|
3660 |
#, php-format
|
3739 |
msgstr ""
|
3740 |
|
3741 |
#: app/features/mec/meta_boxes/display_options.php:841
|
|
|
|
|
3742 |
msgid "Week Start"
|
3743 |
+
msgstr "Wochen Start"
|
3744 |
|
3745 |
#: app/features/mec/meta_boxes/display_options.php:843
|
|
|
|
|
3746 |
msgid "Inherite from WordPress options"
|
3747 |
+
msgstr "Aus den globalen WordPress Einstellungen übernehmen"
|
3748 |
|
3749 |
#: app/features/mec/meta_boxes/display_options.php:858
|
3750 |
msgid "1:00"
|
4059 |
#: app/features/mec/meta_boxes/filter.php:204
|
4060 |
#: app/features/popup/shortcode.php:336
|
4061 |
msgid "only"
|
4062 |
+
msgstr "nur"
|
4063 |
|
4064 |
#: app/features/mec/meta_boxes/filter.php:204
|
4065 |
msgid "older"
|
4066 |
+
msgstr "Älter"
|
4067 |
|
4068 |
#: app/features/mec/meta_boxes/filter.php:212
|
4069 |
#: app/features/popup/shortcode.php:346
|
4103 |
#: app/features/mec/meta_boxes/search_form.php:192
|
4104 |
#: app/features/mec/meta_boxes/search_form.php:199
|
4105 |
#: app/features/mec/meta_boxes/search_form.php:206
|
4106 |
+
#: app/features/mec/meta_boxes/search_form.php:219
|
4107 |
+
#: app/features/mec/meta_boxes/search_form.php:226
|
4108 |
+
#: app/features/mec/meta_boxes/search_form.php:233
|
4109 |
+
#: app/features/mec/meta_boxes/search_form.php:240
|
4110 |
+
#: app/features/mec/meta_boxes/search_form.php:247
|
4111 |
+
#: app/features/mec/meta_boxes/search_form.php:254
|
4112 |
+
#: app/features/mec/meta_boxes/search_form.php:261
|
4113 |
+
#: app/features/mec/meta_boxes/search_form.php:268
|
4114 |
+
#: app/features/mec/meta_boxes/search_form.php:281
|
4115 |
+
#: app/features/mec/meta_boxes/search_form.php:288
|
4116 |
+
#: app/features/mec/meta_boxes/search_form.php:295
|
4117 |
+
#: app/features/mec/meta_boxes/search_form.php:302
|
4118 |
+
#: app/features/mec/meta_boxes/search_form.php:309
|
4119 |
+
#: app/features/mec/meta_boxes/search_form.php:316
|
4120 |
+
#: app/features/mec/meta_boxes/search_form.php:323
|
4121 |
+
#: app/features/mec/meta_boxes/search_form.php:330
|
4122 |
+
#: app/features/mec/meta_boxes/search_form.php:343
|
4123 |
+
#: app/features/mec/meta_boxes/search_form.php:350
|
4124 |
+
#: app/features/mec/meta_boxes/search_form.php:357
|
4125 |
+
#: app/features/mec/meta_boxes/search_form.php:364
|
4126 |
+
#: app/features/mec/meta_boxes/search_form.php:371
|
4127 |
+
#: app/features/mec/meta_boxes/search_form.php:378
|
4128 |
+
#: app/features/mec/meta_boxes/search_form.php:385
|
4129 |
+
#: app/features/mec/meta_boxes/search_form.php:392
|
4130 |
+
#: app/features/mec/meta_boxes/search_form.php:405
|
4131 |
+
#: app/features/mec/meta_boxes/search_form.php:412
|
4132 |
+
#: app/features/mec/meta_boxes/search_form.php:419
|
4133 |
+
#: app/features/mec/meta_boxes/search_form.php:426
|
4134 |
+
#: app/features/mec/meta_boxes/search_form.php:433
|
4135 |
+
#: app/features/mec/meta_boxes/search_form.php:440
|
4136 |
+
#: app/features/mec/meta_boxes/search_form.php:447
|
4137 |
+
#: app/features/mec/meta_boxes/search_form.php:460
|
4138 |
+
#: app/features/mec/meta_boxes/search_form.php:467
|
4139 |
+
#: app/features/mec/meta_boxes/search_form.php:474
|
4140 |
+
#: app/features/mec/meta_boxes/search_form.php:481
|
4141 |
+
#: app/features/mec/meta_boxes/search_form.php:488
|
4142 |
+
#: app/features/mec/meta_boxes/search_form.php:495
|
4143 |
+
#: app/features/mec/meta_boxes/search_form.php:502
|
4144 |
+
#: app/features/mec/meta_boxes/search_form.php:509
|
4145 |
+
#: app/features/mec/meta_boxes/search_form.php:522
|
4146 |
+
#: app/features/mec/meta_boxes/search_form.php:529
|
4147 |
+
#: app/features/mec/meta_boxes/search_form.php:536
|
4148 |
+
#: app/features/mec/meta_boxes/search_form.php:543
|
4149 |
+
#: app/features/mec/meta_boxes/search_form.php:550
|
4150 |
+
#: app/features/mec/meta_boxes/search_form.php:557
|
4151 |
+
#: app/features/mec/meta_boxes/search_form.php:564
|
4152 |
+
#: app/features/mec/meta_boxes/search_form.php:571
|
|
|
4153 |
#: app/features/mec/meta_boxes/search_form.php:584
|
4154 |
#: app/features/mec/meta_boxes/search_form.php:591
|
4155 |
#: app/features/mec/meta_boxes/search_form.php:598
|
4157 |
#: app/features/mec/meta_boxes/search_form.php:612
|
4158 |
#: app/features/mec/meta_boxes/search_form.php:619
|
4159 |
#: app/features/mec/meta_boxes/search_form.php:626
|
4160 |
+
#: app/features/mec/meta_boxes/search_form.php:633
|
4161 |
+
#: app/features/mec/meta_boxes/search_form.php:682
|
4162 |
+
#: app/features/mec/meta_boxes/search_form.php:689
|
4163 |
+
#: app/features/mec/meta_boxes/search_form.php:696
|
4164 |
+
#: app/features/mec/meta_boxes/search_form.php:703
|
4165 |
+
#: app/features/mec/meta_boxes/search_form.php:710
|
4166 |
+
#: app/features/mec/meta_boxes/search_form.php:717
|
4167 |
+
#: app/features/mec/meta_boxes/search_form.php:724
|
4168 |
+
#: app/features/mec/meta_boxes/search_form.php:731
|
4169 |
#: app/features/mec/modules.php:125 app/features/mec/settings.php:101
|
4170 |
#: app/features/mec/settings.php:421
|
4171 |
msgid "Disabled"
|
4174 |
#: app/features/mec/meta_boxes/search_form.php:52
|
4175 |
#: app/features/mec/meta_boxes/search_form.php:114
|
4176 |
#: app/features/mec/meta_boxes/search_form.php:176
|
4177 |
+
#: app/features/mec/meta_boxes/search_form.php:238
|
4178 |
+
#: app/features/mec/meta_boxes/search_form.php:300
|
4179 |
+
#: app/features/mec/meta_boxes/search_form.php:362
|
4180 |
+
#: app/features/mec/meta_boxes/search_form.php:424
|
4181 |
+
#: app/features/mec/meta_boxes/search_form.php:479
|
4182 |
+
#: app/features/mec/meta_boxes/search_form.php:541
|
4183 |
+
#: app/features/mec/meta_boxes/search_form.php:603
|
4184 |
+
#: app/features/mec/meta_boxes/search_form.php:701
|
4185 |
#: app/features/mec/settings.php:827 app/features/mec/single.php:245
|
4186 |
#: app/features/search.php:83 app/features/speakers.php:61
|
4187 |
#: app/features/speakers.php:269 app/libraries/main.php:5343
|
4188 |
#: app/libraries/skins.php:943
|
4189 |
msgid "Speaker"
|
4190 |
+
msgstr "Sprecher"
|
4191 |
|
4192 |
#: app/features/mec/meta_boxes/search_form.php:59
|
4193 |
#: app/features/mec/meta_boxes/search_form.php:121
|
4194 |
#: app/features/mec/meta_boxes/search_form.php:183
|
4195 |
+
#: app/features/mec/meta_boxes/search_form.php:245
|
4196 |
+
#: app/features/mec/meta_boxes/search_form.php:307
|
4197 |
+
#: app/features/mec/meta_boxes/search_form.php:369
|
4198 |
+
#: app/features/mec/meta_boxes/search_form.php:431
|
4199 |
+
#: app/features/mec/meta_boxes/search_form.php:486
|
4200 |
+
#: app/features/mec/meta_boxes/search_form.php:548
|
4201 |
+
#: app/features/mec/meta_boxes/search_form.php:610
|
4202 |
+
#: app/features/mec/meta_boxes/search_form.php:708
|
4203 |
#: app/features/mec/settings.php:834 app/features/mec/single.php:254
|
4204 |
#: app/features/search.php:88 app/libraries/skins.php:969
|
|
|
|
|
4205 |
msgid "Tag"
|
4206 |
+
msgstr "Schlagwort"
|
4207 |
|
4208 |
#: app/features/mec/meta_boxes/search_form.php:73
|
4209 |
#: app/features/mec/meta_boxes/search_form.php:135
|
4210 |
#: app/features/mec/meta_boxes/search_form.php:197
|
4211 |
+
#: app/features/mec/meta_boxes/search_form.php:259
|
4212 |
+
#: app/features/mec/meta_boxes/search_form.php:321
|
4213 |
+
#: app/features/mec/meta_boxes/search_form.php:383
|
4214 |
+
#: app/features/mec/meta_boxes/search_form.php:500
|
4215 |
+
#: app/features/mec/meta_boxes/search_form.php:562
|
4216 |
+
#: app/features/mec/meta_boxes/search_form.php:624
|
4217 |
+
#: app/features/mec/meta_boxes/search_form.php:722
|
4218 |
msgid "Month Filter"
|
4219 |
msgstr "Monatsfilter"
|
4220 |
|
4221 |
#: app/features/mec/meta_boxes/search_form.php:80
|
4222 |
#: app/features/mec/meta_boxes/search_form.php:142
|
4223 |
#: app/features/mec/meta_boxes/search_form.php:204
|
4224 |
+
#: app/features/mec/meta_boxes/search_form.php:266
|
4225 |
+
#: app/features/mec/meta_boxes/search_form.php:328
|
4226 |
+
#: app/features/mec/meta_boxes/search_form.php:390
|
4227 |
+
#: app/features/mec/meta_boxes/search_form.php:445
|
4228 |
+
#: app/features/mec/meta_boxes/search_form.php:507
|
4229 |
+
#: app/features/mec/meta_boxes/search_form.php:569
|
4230 |
+
#: app/features/mec/meta_boxes/search_form.php:631
|
4231 |
+
#: app/features/mec/meta_boxes/search_form.php:729
|
4232 |
msgid "Text Search"
|
4233 |
msgstr "Textsuche"
|
4234 |
|
4235 |
#: app/features/mec/meta_boxes/search_form.php:83
|
4236 |
#: app/features/mec/meta_boxes/search_form.php:145
|
4237 |
#: app/features/mec/meta_boxes/search_form.php:207
|
4238 |
+
#: app/features/mec/meta_boxes/search_form.php:269
|
4239 |
+
#: app/features/mec/meta_boxes/search_form.php:331
|
4240 |
+
#: app/features/mec/meta_boxes/search_form.php:393
|
4241 |
+
#: app/features/mec/meta_boxes/search_form.php:448
|
4242 |
+
#: app/features/mec/meta_boxes/search_form.php:510
|
4243 |
+
#: app/features/mec/meta_boxes/search_form.php:572
|
4244 |
+
#: app/features/mec/meta_boxes/search_form.php:634
|
4245 |
+
#: app/features/mec/meta_boxes/search_form.php:732
|
4246 |
msgid "Text Input"
|
4247 |
msgstr "Text eingeben"
|
4248 |
|
4249 |
+
#: app/features/mec/meta_boxes/search_form.php:643
|
4250 |
+
#: app/features/mec/meta_boxes/search_form.php:649
|
4251 |
+
#: app/features/mec/meta_boxes/search_form.php:655
|
4252 |
+
#: app/features/mec/meta_boxes/search_form.php:661
|
4253 |
+
#: app/features/mec/meta_boxes/search_form.php:667
|
4254 |
+
#: app/features/mec/meta_boxes/search_form.php:673
|
4255 |
msgid "No Search Options"
|
4256 |
msgstr "Keine Suchoptionen"
|
4257 |
|
4258 |
#: app/features/mec/modules.php:43
|
|
|
|
|
4259 |
msgid "Speakers Options"
|
4260 |
+
msgstr "Sprecher Optionen"
|
4261 |
|
4262 |
#: app/features/mec/modules.php:49
|
4263 |
#, fuzzy
|
4348 |
"Checken Sie es nur wenn ein anderes plugin/Thema die Google Maps API lädt."
|
4349 |
|
4350 |
#: app/features/mec/modules.php:168 app/libraries/main.php:567
|
|
|
|
|
4351 |
msgid "Export Options"
|
4352 |
+
msgstr "Export Optionen"
|
4353 |
|
4354 |
#: app/features/mec/modules.php:172
|
4355 |
msgid ""
|
4627 |
#: app/features/mec/notifications.php:407
|
4628 |
#: app/features/mec/notifications.php:505
|
4629 |
#: app/features/mec/notifications.php:613
|
|
|
|
|
4630 |
msgid "Booked time of event"
|
4631 |
+
msgstr "Gebuchte Zeit der Veranstaltung"
|
4632 |
|
4633 |
#: app/features/mec/notifications.php:108
|
4634 |
#: app/features/mec/notifications.php:201
|
4646 |
#: app/features/mec/notifications.php:507
|
4647 |
#: app/features/mec/notifications.php:615
|
4648 |
msgid "Date and time of placing booking"
|
4649 |
+
msgstr "Datum und Uhrzeit der Buchung"
|
4650 |
|
4651 |
#: app/features/mec/notifications.php:110
|
4652 |
#: app/features/mec/notifications.php:203
|
4696 |
#: app/features/mec/notifications.php:414
|
4697 |
#: app/features/mec/notifications.php:512
|
4698 |
#: app/features/mec/notifications.php:620
|
|
|
|
|
4699 |
msgid "Event link"
|
4700 |
msgstr "Veranstaltungslink"
|
4701 |
|
4704 |
#: app/features/mec/notifications.php:304
|
4705 |
#: app/features/mec/notifications.php:717
|
4706 |
#: app/features/mec/notifications.php:800
|
|
|
|
|
4707 |
msgid "Event Start Date"
|
4708 |
+
msgstr "Event Start Datum "
|
4709 |
|
4710 |
#: app/features/mec/notifications.php:116
|
4711 |
#: app/features/mec/notifications.php:209
|
4712 |
#: app/features/mec/notifications.php:305
|
4713 |
#: app/features/mec/notifications.php:718
|
4714 |
#: app/features/mec/notifications.php:801
|
|
|
|
|
4715 |
msgid "Event End Date"
|
4716 |
+
msgstr "Event End Datum"
|
4717 |
|
4718 |
#: app/features/mec/notifications.php:117
|
4719 |
#: app/features/mec/notifications.php:210
|
4777 |
#: app/features/mec/notifications.php:421
|
4778 |
#: app/features/mec/notifications.php:519
|
4779 |
#: app/features/mec/notifications.php:627
|
|
|
|
|
4780 |
msgid "Featured image of booked event"
|
4781 |
+
msgstr "Vorschau Bild des gebuchten Events"
|
4782 |
|
4783 |
#: app/features/mec/notifications.php:124
|
4784 |
#: app/features/mec/notifications.php:423
|
4801 |
#: app/features/mec/notifications.php:522
|
4802 |
#: app/features/mec/notifications.php:630
|
4803 |
msgid "Total Attendees"
|
4804 |
+
msgstr "Alle Teilnehmer"
|
4805 |
|
4806 |
#: app/features/mec/notifications.php:127
|
4807 |
#: app/features/mec/notifications.php:219
|
4809 |
#: app/features/mec/notifications.php:425
|
4810 |
#: app/features/mec/notifications.php:523
|
4811 |
#: app/features/mec/notifications.php:631
|
|
|
|
|
4812 |
msgid "Amount of Booked Tickets"
|
4813 |
+
msgstr "Anzahl gebuchter Tickets"
|
4814 |
|
4815 |
#: app/features/mec/notifications.php:128
|
4816 |
#: app/features/mec/notifications.php:220
|
4817 |
#: app/features/mec/notifications.php:317
|
4818 |
#: app/features/mec/notifications.php:632
|
|
|
|
|
4819 |
msgid "Ticket name"
|
4820 |
msgstr "Ticket Name"
|
4821 |
|
4823 |
#: app/features/mec/notifications.php:221
|
4824 |
#: app/features/mec/notifications.php:318
|
4825 |
#: app/features/mec/notifications.php:633
|
|
|
|
|
4826 |
msgid "Ticket time"
|
4827 |
+
msgstr "Ticket Uhrzeit"
|
4828 |
|
4829 |
#: app/features/mec/notifications.php:130
|
4830 |
#: app/features/mec/notifications.php:222
|
4831 |
#: app/features/mec/notifications.php:319
|
4832 |
#: app/features/mec/notifications.php:634
|
|
|
|
|
4833 |
msgid "Download ICS file"
|
4834 |
+
msgstr "Download ICS Datei"
|
4835 |
|
4836 |
#: app/features/mec/notifications.php:138 app/libraries/main.php:578
|
4837 |
msgid "Booking Verification"
|
4854 |
|
4855 |
#: app/features/mec/notifications.php:284
|
4856 |
msgid "Send One Single Email Only To First Attendee"
|
4857 |
+
msgstr "Nur ein E-Mail zum ersten Teilnehmer senden"
|
4858 |
|
4859 |
#: app/features/mec/notifications.php:313
|
4860 |
#: app/features/mec/notifications.php:628
|
4862 |
msgstr "Link zur Stornierung der Buchung"
|
4863 |
|
4864 |
#: app/features/mec/notifications.php:326 app/libraries/main.php:580
|
|
|
|
|
4865 |
msgid "Booking Cancellation"
|
4866 |
+
msgstr "Buchung stornieren"
|
4867 |
|
4868 |
#: app/features/mec/notifications.php:330
|
|
|
|
|
4869 |
msgid "Enable cancellation notification"
|
4870 |
+
msgstr "Benachrichtigung bei stornierter Buchung"
|
4871 |
|
4872 |
#: app/features/mec/notifications.php:334
|
4873 |
#, fuzzy
|
4881 |
|
4882 |
#: app/features/mec/notifications.php:387
|
4883 |
#: app/features/mec/notifications.php:654
|
|
|
|
|
4884 |
msgid "Send the email to admin"
|
4885 |
+
msgstr "Sendet die E-Mail zum Admin"
|
4886 |
|
4887 |
#: app/features/mec/notifications.php:395
|
|
|
|
|
4888 |
msgid "Send the email to booking user"
|
4889 |
+
msgstr "Sendet die Email zum Buchungs "
|
4890 |
|
4891 |
#: app/features/mec/notifications.php:422
|
4892 |
#: app/features/mec/notifications.php:520
|
4895 |
|
4896 |
#: app/features/mec/notifications.php:432 app/libraries/main.php:582
|
4897 |
msgid "Admin"
|
4898 |
+
msgstr "Admin"
|
4899 |
|
4900 |
#: app/features/mec/notifications.php:436
|
|
|
|
|
4901 |
msgid "Enable admin notification"
|
4902 |
+
msgstr "Buchungsbenachrichtigung aktivieren (Admin)"
|
4903 |
|
4904 |
#: app/features/mec/notifications.php:440
|
4905 |
msgid "It sends to admin to notify him/her that a new booking received."
|
4960 |
|
4961 |
#: app/features/mec/notifications.php:716
|
4962 |
#: app/features/mec/notifications.php:799
|
|
|
|
|
4963 |
msgid "Link of event"
|
4964 |
+
msgstr "Link der Veranstaltung"
|
4965 |
|
4966 |
#: app/features/mec/notifications.php:719
|
4967 |
#: app/features/mec/notifications.php:802
|
4980 |
msgstr "Admin-link zur Veranstaltungsverwaltung"
|
4981 |
|
4982 |
#: app/features/mec/notifications.php:733 app/libraries/main.php:584
|
|
|
|
|
4983 |
msgid "User Event Publishing"
|
4984 |
+
msgstr "Nutzer Event wurde veröffentlicht."
|
4985 |
|
4986 |
#: app/features/mec/notifications.php:737
|
|
|
|
|
4987 |
msgid "Enable user event publishing notification"
|
4988 |
+
msgstr "Benachrichtigung bei neuen Nutzer Veranstaltungen aktivieren"
|
4989 |
|
4990 |
#: app/features/mec/notifications.php:741
|
4991 |
#, fuzzy
|
5000 |
"Übermittlung oder dem Backend versandt."
|
5001 |
|
5002 |
#: app/features/mec/report.php:12
|
|
|
|
|
5003 |
msgid "Booking Report"
|
5004 |
+
msgstr "Buchungs Zusammenfassung"
|
5005 |
|
5006 |
#: app/features/mec/report.php:45
|
|
|
|
|
5007 |
msgid "Send Email"
|
5008 |
+
msgstr "E-Mail senden"
|
5009 |
|
5010 |
#: app/features/mec/report.php:47
|
|
|
|
|
5011 |
msgid "Bulk Email"
|
5012 |
+
msgstr "Massen E-Mail"
|
5013 |
|
5014 |
#: app/features/mec/report.php:48
|
5015 |
#, php-format
|
5016 |
msgid "You are sending email to %s attendees"
|
5017 |
+
msgstr "Sie senden E-mails an %s Teilnehmer"
|
5018 |
|
5019 |
#: app/features/mec/report.php:53
|
|
|
|
|
5020 |
msgid "Attendee Name"
|
5021 |
+
msgstr "Name des Veranstalters"
|
5022 |
|
5023 |
#: app/features/mec/report.php:57
|
5024 |
msgid "Loading..."
|
5025 |
+
msgstr "Laden…"
|
5026 |
|
5027 |
#: app/features/mec/report.php:58
|
5028 |
msgid "Emails successfully sent"
|
5029 |
+
msgstr "E-Mail erfolgreich gesendet"
|
5030 |
|
5031 |
#: app/features/mec/report.php:59
|
5032 |
msgid "No user selected!"
|
5033 |
+
msgstr "Kein Nutzer ausgewählt"
|
5034 |
|
5035 |
#: app/features/mec/report.php:60
|
|
|
|
|
5036 |
msgid "Email subject cannot be empty!"
|
5037 |
+
msgstr "E-Mail Betreff darf nicht leer sein!"
|
5038 |
|
5039 |
#: app/features/mec/report.php:61
|
|
|
|
|
5040 |
msgid "Email content cannot be empty!"
|
5041 |
+
msgstr "E-Mail Inhalt darf nicht leer sein!"
|
5042 |
|
5043 |
#: app/features/mec/report.php:62
|
5044 |
msgid "There was an error please try again!"
|
5045 |
+
msgstr "Es ist ein Fehler aufgetreten, bitte erneut Versuchen!"
|
5046 |
|
5047 |
#: app/features/mec/settings.php:59 app/features/mec/settings.php:69
|
5048 |
msgid "Hide Events"
|
5111 |
|
5112 |
#: app/features/mec/settings.php:112
|
5113 |
msgid "e.g. Webnus"
|
5114 |
+
msgstr "z.B. Webnus"
|
5115 |
|
5116 |
#: app/features/mec/settings.php:119
|
|
|
|
|
5117 |
msgid "Sender Email"
|
5118 |
+
msgstr "Absender (E-Mail)"
|
5119 |
|
5120 |
#: app/features/mec/settings.php:122
|
5121 |
msgid "e.g. info@webnus.biz"
|
5122 |
+
msgstr "z.B. info@webnus.biz"
|
5123 |
|
5124 |
#: app/features/mec/settings.php:128
|
5125 |
msgid "Exclude Date Suffix"
|
5186 |
|
5187 |
#: app/features/mec/settings.php:201 app/features/mec/settings.php:213
|
5188 |
msgid "Midnight Hour"
|
5189 |
+
msgstr "Mitternacht"
|
5190 |
|
5191 |
#: app/features/mec/settings.php:204
|
5192 |
msgid "12 AM"
|
5193 |
+
msgstr "00:00"
|
5194 |
|
5195 |
#: app/features/mec/settings.php:205
|
5196 |
msgid "1 AM"
|
5197 |
+
msgstr "01:00"
|
5198 |
|
5199 |
#: app/features/mec/settings.php:206
|
5200 |
msgid "2 AM"
|
5201 |
+
msgstr "02:00"
|
5202 |
|
5203 |
#: app/features/mec/settings.php:207
|
5204 |
msgid "3 AM"
|
5205 |
+
msgstr "03:00"
|
5206 |
|
5207 |
#: app/features/mec/settings.php:208
|
5208 |
msgid "4 AM"
|
5209 |
+
msgstr "04:00"
|
5210 |
|
5211 |
#: app/features/mec/settings.php:209
|
5212 |
msgid "5 AM"
|
5213 |
+
msgstr "05:00"
|
5214 |
|
5215 |
#: app/features/mec/settings.php:214
|
5216 |
msgid ""
|
5270 |
msgstr "Moderner Stil"
|
5271 |
|
5272 |
#: app/features/mec/settings.php:305 app/features/mec/settings.php:379
|
|
|
|
|
5273 |
msgid "colorful"
|
5274 |
msgstr "Farbenfroh"
|
5275 |
|
5305 |
|
5306 |
#: app/features/mec/settings.php:404
|
5307 |
msgid "Expired Events"
|
5308 |
+
msgstr "Abgelaufene Events"
|
5309 |
|
5310 |
#: app/features/mec/settings.php:409
|
5311 |
msgid "Default value is Upcoming Events"
|
5388 |
|
5389 |
#: app/features/mec/settings.php:497
|
5390 |
msgid "Before $10"
|
5391 |
+
msgstr "Vor €10"
|
5392 |
|
5393 |
#: app/features/mec/settings.php:498
|
5394 |
msgid "After 10$"
|
5395 |
+
msgstr "Nach 10€"
|
5396 |
|
5397 |
#: app/features/mec/settings.php:503
|
5398 |
msgid "Thousand Separator"
|
5458 |
msgstr "Veranstaltungsseite hinzufügen/bearbeiten"
|
5459 |
|
5460 |
#: app/features/mec/settings.php:618
|
|
|
|
|
|
|
|
|
5461 |
msgid ""
|
5462 |
"User redirects to this page after new event submission. Leave it empty if "
|
5463 |
"you want to disable it."
|
5538 |
|
5539 |
#: app/features/mec/settings.php:774 app/libraries/main.php:537
|
5540 |
msgid "User Profile"
|
5541 |
+
msgstr "Benutzer Profil"
|
5542 |
|
5543 |
#: app/features/mec/settings.php:776
|
5544 |
#, php-format
|
5548 |
msgstr ""
|
5549 |
|
5550 |
#: app/features/mec/settings.php:781 app/libraries/main.php:538
|
|
|
|
|
5551 |
msgid "Search Bar"
|
5552 |
+
msgstr "Suche"
|
5553 |
|
5554 |
#: app/features/mec/settings.php:783
|
5555 |
#, php-format
|
5578 |
msgstr "Moderner Stil"
|
5579 |
|
5580 |
#: app/features/mec/settings.php:804
|
|
|
|
|
5581 |
msgid "Search bar fields"
|
5582 |
+
msgstr "Such Felder"
|
5583 |
|
5584 |
#: app/features/mec/settings.php:846
|
5585 |
#, fuzzy
|
5644 |
|
5645 |
#: app/features/mec/settings.php:947
|
5646 |
msgid "Group ID"
|
5647 |
+
msgstr "Gruppen ID "
|
5648 |
|
5649 |
#: app/features/mec/settings.php:956 app/libraries/main.php:542
|
5650 |
#, fuzzy
|
5757 |
|
5758 |
#: app/features/mec/single.php:102
|
5759 |
msgid "Disable Block Editor (Gutenberg)"
|
5760 |
+
msgstr "Deaktiviere den Block Editor (Gutenberg)"
|
5761 |
|
5762 |
#: app/features/mec/single.php:105
|
5763 |
msgid "Disable Block Editor"
|
5764 |
+
msgstr "Deaktiviere den Block Editor"
|
5765 |
|
5766 |
#: app/features/mec/single.php:109
|
5767 |
msgid "Block Editor"
|
5768 |
+
msgstr "Block Editor"
|
5769 |
|
5770 |
#: app/features/mec/single.php:110
|
5771 |
msgid ""
|
5858 |
msgstr ""
|
5859 |
|
5860 |
#: app/features/mec/single.php:209
|
|
|
|
|
5861 |
msgid "Additional locations"
|
5862 |
msgstr "Zusätzliche Organisatoren"
|
5863 |
|
5875 |
|
5876 |
#: app/features/mec/single.php:219 app/libraries/main.php:552
|
5877 |
#: app/skins/single.php:163
|
|
|
|
|
5878 |
msgid "Related Events"
|
5879 |
+
msgstr "Vorgeschlagene Veranstaltungen"
|
5880 |
|
5881 |
#: app/features/mec/single.php:223
|
5882 |
msgid "Display related events based on taxonomy in single event page."
|
6029 |
|
6030 |
#: app/features/mec/support-page.php:75
|
6031 |
msgid "Quick Setup"
|
6032 |
+
msgstr "Schnell Einrichtung"
|
6033 |
|
6034 |
#: app/features/mec/support-page.php:79
|
6035 |
#, fuzzy
|
6039 |
|
6040 |
#: app/features/mec/support-page.php:80
|
6041 |
msgid "Install and Activate the Plugin"
|
6042 |
+
msgstr "Installiere und Aktiviere das Plugin"
|
6043 |
|
6044 |
#: app/features/mec/support-page.php:81
|
6045 |
#, fuzzy
|
6052 |
#: app/features/mec/support-page.php:155 app/features/mec/support-page.php:172
|
6053 |
#: app/features/mec/support-page.php:189 app/features/mec/support-page.php:206
|
6054 |
msgid "Watch Video"
|
6055 |
+
msgstr "Video anschauen"
|
6056 |
|
6057 |
#: app/features/mec/support-page.php:92
|
6058 |
#, fuzzy
|
6062 |
|
6063 |
#: app/features/mec/support-page.php:96
|
6064 |
msgid "Login to Dashboard"
|
6065 |
+
msgstr "Ins Dashboard einloggen"
|
6066 |
|
6067 |
#: app/features/mec/support-page.php:97
|
6068 |
msgid "Get the License Key"
|
6070 |
|
6071 |
#: app/features/mec/support-page.php:98
|
6072 |
msgid "Activate the plugin"
|
6073 |
+
msgstr "Aktiviere das Plugin"
|
6074 |
|
6075 |
#: app/features/mec/support-page.php:113
|
6076 |
#, fuzzy
|
6180 |
|
6181 |
#: app/features/mec/support-page.php:217
|
6182 |
msgid "FAQ"
|
6183 |
+
msgstr "FAQ"
|
6184 |
|
6185 |
#: app/features/mec/support-page.php:221
|
6186 |
msgid "How should I update plugin?"
|
6327 |
msgstr ""
|
6328 |
|
6329 |
#: app/features/mec/support-page.php:279
|
|
|
|
|
6330 |
msgid "Create a support ticket"
|
6331 |
+
msgstr "Erstelle ein Support-Ticket"
|
6332 |
|
6333 |
#: app/features/mec/support.php:52 app/libraries/main.php:781
|
6334 |
msgid "Styling Options"
|
6467 |
msgstr "http://webnus.net"
|
6468 |
|
6469 |
#: app/features/organizers.php:312 app/libraries/main.php:5371
|
6470 |
+
#: app/skins/single.php:866
|
6471 |
msgid "Other Organizers"
|
6472 |
msgstr "Andere Veranstalter"
|
6473 |
|
6495 |
msgstr ""
|
6496 |
|
6497 |
#: app/features/popup/shortcode.php:313
|
|
|
|
|
6498 |
msgid "Select Event"
|
6499 |
+
msgstr "Event Auswählen"
|
6500 |
|
6501 |
#: app/features/popup/shortcode.php:336
|
6502 |
#, fuzzy, php-format
|
6525 |
msgstr ""
|
6526 |
|
6527 |
#: app/features/popup/shortcode.php:373 app/modules/booking/steps/form.php:179
|
6528 |
+
#: app/modules/booking/steps/tickets.php:77 app/skins/countdown/tpl.php:145
|
6529 |
#: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:234
|
6530 |
msgid "Next"
|
6531 |
msgstr "Weiter"
|
6543 |
msgstr "Um neue Veranstaltungen einzugeben, bitte %s/%s"
|
6544 |
|
6545 |
#: app/features/profile/profile.php:18 app/libraries/main.php:2150
|
|
|
|
|
6546 |
msgid "Your booking already canceled!"
|
6547 |
+
msgstr "Ihre Buchung wurde bereits storniert."
|
6548 |
|
6549 |
#: app/features/profile/profile.php:47 app/features/profile/profile.php:177
|
6550 |
msgid "#"
|
6569 |
msgstr ""
|
6570 |
|
6571 |
#: app/features/profile/profile.php:68
|
|
|
|
|
6572 |
msgid "Cancel"
|
6573 |
+
msgstr "Abbrechen"
|
6574 |
|
6575 |
#: app/features/profile/profile.php:96
|
6576 |
msgid "N/A"
|
6591 |
|
6592 |
#: app/features/search.php:128
|
6593 |
msgid "Please enter at least 3 characters and try again"
|
6594 |
+
msgstr "Bitte geben Sie mindestens 3 Zeichen ein und Versuchen Sie es erneut"
|
6595 |
|
6596 |
#: app/features/search_bar/search_bar.php:32
|
6597 |
msgid "Please enter at least 3 characters"
|
6598 |
+
msgstr "Mindestens 3 Zeichen eingeben"
|
6599 |
|
6600 |
#: app/features/search_bar/search_bar.php:34
|
6601 |
msgid "Search results will show here"
|
6602 |
+
msgstr "Suchergebnis erscheinen hier"
|
6603 |
|
6604 |
#: app/features/search_bar/search_bar.php:45
|
6605 |
#, fuzzy
|
6609 |
|
6610 |
#: app/features/search_bar/search_noresult.php:1
|
6611 |
msgid "No search result."
|
6612 |
+
msgstr "Kein Suchergebnis"
|
6613 |
|
6614 |
#: app/features/search_bar/search_result.php:11
|
6615 |
#: app/libraries/notifications.php:951 app/libraries/render.php:488
|
6616 |
#: app/modules/local-time/details.php:48 app/modules/next-event/details.php:104
|
6617 |
+
#: app/skins/single.php:160 app/skins/single.php:757
|
6618 |
#: app/skins/single/default.php:108 app/skins/single/default.php:331
|
6619 |
#: app/skins/single/m1.php:43 app/skins/single/modern.php:198
|
6620 |
#, fuzzy
|
6621 |
+
#| msgid "Add Day"
|
6622 |
msgid "All Day"
|
6623 |
+
msgstr "Tag hinzufügen"
|
6624 |
|
6625 |
#: app/features/speakers.php:111 app/features/speakers.php:188
|
6626 |
#: app/features/speakers.php:270
|
|
|
|
|
6627 |
msgid "Job Title"
|
6628 |
+
msgstr "Job Titel"
|
6629 |
|
6630 |
#: app/features/speakers.php:114 app/features/speakers.php:189
|
6631 |
msgid "Insert speaker job title."
|
6632 |
msgstr ""
|
6633 |
|
6634 |
#: app/features/speakers.php:122 app/features/speakers.php:193
|
|
|
|
|
6635 |
msgid "Insert speaker phone number."
|
6636 |
+
msgstr "Veranstalter Telefonnummer hinzufügen"
|
6637 |
|
6638 |
#: app/features/speakers.php:130 app/features/speakers.php:197
|
|
|
|
|
6639 |
msgid "Insert speaker email address."
|
6640 |
+
msgstr "Veranstalter Email-Adresse hinzufügen"
|
6641 |
|
6642 |
#: app/features/speakers.php:135 app/features/speakers.php:200
|
6643 |
#, fuzzy
|
6706 |
msgid "%s Price"
|
6707 |
msgstr "%s Preis"
|
6708 |
|
6709 |
+
#: app/libraries/book.php:602
|
6710 |
msgid "Discount"
|
6711 |
msgstr "Rabatt"
|
6712 |
|
6713 |
+
#: app/libraries/book.php:694 app/modules/booking/default.php:316
|
6714 |
+
#: app/modules/booking/default.php:415
|
6715 |
msgid "Download Invoice"
|
6716 |
msgstr "Download Rechnung"
|
6717 |
|
6892 |
msgstr "Bild hochladen/hinzufügen"
|
6893 |
|
6894 |
#: app/libraries/main.php:551
|
|
|
|
|
6895 |
msgid "Additional Locations"
|
6896 |
+
msgstr "Zusätzliche Locations"
|
6897 |
|
6898 |
#: app/libraries/main.php:635
|
6899 |
#, fuzzy
|
7051 |
msgstr "Shortcode"
|
7052 |
|
7053 |
#: app/libraries/main.php:2130
|
|
|
|
|
7054 |
msgid "Your booking already verified!"
|
7055 |
+
msgstr "Ihre Buchung wurde bereits verifiziert."
|
7056 |
|
7057 |
#: app/libraries/main.php:2135
|
7058 |
msgid "Your booking successfully verified."
|
7079 |
msgstr "Sie sind vom Bezahlungs-Gateway erfolgreich zurückgekehrt."
|
7080 |
|
7081 |
#: app/libraries/main.php:2180
|
|
|
|
|
7082 |
msgid "Cannot find the invoice!"
|
7083 |
+
msgstr "Die Buchung kann nicht gefunden werden."
|
7084 |
|
7085 |
#: app/libraries/main.php:2180
|
|
|
|
|
7086 |
msgid "Invoice is invalid."
|
7087 |
+
msgstr "Die Buchung ist ungültig."
|
7088 |
|
7089 |
#: app/libraries/main.php:2200
|
7090 |
msgid ""
|
7092 |
msgstr ""
|
7093 |
|
7094 |
#: app/libraries/main.php:2200
|
|
|
|
|
7095 |
msgid "Booking Not Confirmed."
|
7096 |
+
msgstr "Die Buchung ist nicht Bestätigt."
|
7097 |
|
7098 |
#: app/libraries/main.php:2206
|
7099 |
msgid "Cannot find the booking!"
|
7100 |
+
msgstr "Die Buchung kann nicht gefunden werden!"
|
7101 |
|
7102 |
#: app/libraries/main.php:2206
|
7103 |
msgid "Booking is invalid."
|
7131 |
msgstr "Gateway"
|
7132 |
|
7133 |
#: app/libraries/main.php:2348
|
|
|
|
|
7134 |
msgid "Payment Time"
|
7135 |
+
msgstr "Bezahlung "
|
7136 |
|
7137 |
#: app/libraries/main.php:2409
|
|
|
|
|
7138 |
msgid "Request is not valid."
|
7139 |
msgstr "Die Anfrage ist ungültig!"
|
7140 |
|
7205 |
msgstr "kostenfrei"
|
7206 |
|
7207 |
#: app/libraries/main.php:3816 app/libraries/main.php:5599
|
|
|
|
|
7208 |
msgid "M.E. Calender"
|
7209 |
msgstr "M.E. Calender"
|
7210 |
|
7323 |
#: app/skins/grid/render.php:124 app/skins/grid/render.php:171
|
7324 |
#: app/skins/grid/render.php:215 app/skins/grid/render.php:244
|
7325 |
#: app/skins/list/render.php:109 app/skins/list/render.php:195
|
7326 |
+
#: app/skins/masonry/render.php:188 app/skins/single.php:778
|
7327 |
+
#: app/skins/single.php:781 app/skins/single/default.php:260
|
7328 |
#: app/skins/single/default.php:262 app/skins/single/default.php:483
|
7329 |
#: app/skins/single/default.php:485 app/skins/single/m1.php:140
|
7330 |
#: app/skins/single/m1.php:142 app/skins/single/m2.php:66
|
7393 |
msgstr "Keine Suchoptionen"
|
7394 |
|
7395 |
#: app/libraries/main.php:5461
|
|
|
|
|
7396 |
msgid "Events Manager (Recurring)"
|
7397 |
msgstr "Wiederholende Veranstaltung"
|
7398 |
|
7399 |
#: app/libraries/main.php:5462
|
|
|
|
|
7400 |
msgid "Events Manager (Single)"
|
7401 |
+
msgstr "Moderner Event Kalender"
|
7402 |
|
7403 |
#: app/libraries/main.php:5536 app/libraries/main.php:5556
|
7404 |
msgid "Confirmed"
|
7422 |
msgstr "Skin contoller existiert nicht."
|
7423 |
|
7424 |
#: app/libraries/main.php:5905
|
|
|
|
|
7425 |
msgid "Sold Out"
|
7426 |
+
msgstr "Ausgebucht"
|
7427 |
|
7428 |
#: app/libraries/main.php:5913
|
|
|
|
|
7429 |
msgid "Last Few Tickets"
|
7430 |
+
msgstr "Nur noch wenige Tickets verfügbar."
|
7431 |
|
7432 |
#: app/libraries/notifications.php:60
|
7433 |
msgid "Please verify your email."
|
7442 |
msgstr "Ihre Buchung wurde bestätigt."
|
7443 |
|
7444 |
#: app/libraries/notifications.php:439
|
|
|
|
|
7445 |
msgid "booking canceled."
|
7446 |
+
msgstr "Ihre Buchung wurde storniert"
|
7447 |
|
7448 |
#: app/libraries/notifications.php:514
|
7449 |
msgid "A new booking is received."
|
7454 |
msgstr "Eine neue Veranstaltung wurde hinzugefügt."
|
7455 |
|
7456 |
#: app/libraries/notifications.php:807
|
|
|
|
|
7457 |
msgid "Your event is published."
|
7458 |
msgstr "Die Veranstaltung wurde veröffentlicht."
|
7459 |
|
7479 |
msgstr "Nein"
|
7480 |
|
7481 |
#: app/libraries/skins.php:1015
|
|
|
|
|
7482 |
msgid "Select"
|
7483 |
+
msgstr "Auswählen"
|
7484 |
|
7485 |
#: app/modules/attendees-list/details.php:36
|
7486 |
msgid "Event Attendees"
|
7491 |
msgstr "Keine Teilnehmer gefunden! Seien Sie der erste Teilnehmer der bucht!"
|
7492 |
|
7493 |
#: app/modules/attendees-list/details.php:56
|
|
|
|
|
7494 |
msgid "tickets"
|
7495 |
msgstr "Tickets"
|
7496 |
|
7509 |
#: app/modules/booking/steps/checkout.php:69
|
7510 |
#: app/modules/booking/steps/form.php:180
|
7511 |
msgid "Back"
|
7512 |
+
msgstr "Zurück"
|
7513 |
|
7514 |
#: app/modules/booking/steps/checkout.php:77
|
7515 |
msgid "Free Booking"
|
7516 |
msgstr "Kostenlose Buchung"
|
7517 |
|
7518 |
#: app/modules/booking/steps/form.php:52
|
|
|
|
|
7519 |
msgid "Attendee's Form"
|
7520 |
msgstr "Teilnahmeformular"
|
7521 |
|
7522 |
#: app/modules/booking/steps/form.php:165
|
|
|
|
|
7523 |
msgid "Fill other attendees information like the first form."
|
7524 |
msgstr ""
|
7525 |
+
"Teilnehmer Informationen für die weiteren Tickets übernehmen. (Das Ticket "
|
7526 |
+
"ist nicht an einen Namen gebunden)"
|
7527 |
|
7528 |
#: app/modules/booking/steps/message.php:7
|
7529 |
msgid "Thanks for your booking."
|
7530 |
msgstr "Vielen Dank für Ihre Buchung."
|
7531 |
|
7532 |
+
#: app/modules/booking/steps/tickets.php:21
|
7533 |
msgid "Book Event"
|
7534 |
msgstr "Veranstaltung buchen"
|
7535 |
|
7536 |
+
#: app/modules/booking/steps/tickets.php:43
|
7537 |
#, php-format
|
7538 |
msgid "Available %s: <span>%s</span>"
|
7539 |
msgstr "Verfügbar %s: <span>%s</span>"
|
7540 |
|
7541 |
+
#: app/modules/booking/steps/tickets.php:47
|
7542 |
#, php-format
|
7543 |
msgid "The %s ticket sales has stopped!"
|
7544 |
msgstr ""
|
7545 |
|
7546 |
+
#: app/modules/booking/steps/tickets.php:48
|
7547 |
#, php-format
|
7548 |
msgid "The %s ticket is sold out. You can try another ticket or another date."
|
7549 |
msgstr ""
|
7550 |
+
"Der % s ist am gewählten Termin bereits ausgebucht. Bitte anderes Datum "
|
7551 |
+
"wählen. "
|
7552 |
|
7553 |
#: app/modules/countdown/details.php:53
|
7554 |
msgid "The event is finished."
|
7558 |
msgid "The event is ongoing."
|
7559 |
msgstr "Die Veranstaltung ist im Gange."
|
7560 |
|
7561 |
+
#: app/modules/googlemap/details.php:124
|
7562 |
msgid "Address from ..."
|
7563 |
msgstr "Adresse von..."
|
7564 |
|
7565 |
+
#: app/modules/googlemap/details.php:128
|
7566 |
msgid "Get Directions"
|
7567 |
msgstr "Wegbeschreibung"
|
7568 |
|
7569 |
+
#: app/modules/links/details.php:17 app/skins/single.php:465
|
7570 |
msgid "Share this event"
|
7571 |
msgstr "Diese Veranstaltung teilen"
|
7572 |
|
7593 |
msgid "Go to occurrence page"
|
7594 |
msgstr "Zum Event"
|
7595 |
|
7596 |
+
#: app/modules/next-event/details.php:98 app/skins/single.php:751
|
7597 |
#: app/skins/single/default.php:102 app/skins/single/default.php:325
|
7598 |
#: app/skins/single/m1.php:37 app/skins/single/modern.php:192
|
7599 |
msgid "Time"
|
7604 |
msgstr " °C"
|
7605 |
|
7606 |
#: app/modules/weather/details.php:49 app/modules/weather/details.php:53
|
|
|
|
|
7607 |
msgid " °F"
|
7608 |
+
msgstr " °F"
|
7609 |
|
7610 |
#: app/modules/weather/details.php:60
|
7611 |
msgid "°Imperial"
|
7650 |
#: app/skins/agenda/tpl.php:66 app/skins/agenda/tpl.php:70
|
7651 |
#: app/skins/carousel/tpl.php:46 app/skins/custom/tpl.php:62
|
7652 |
#: app/skins/custom/tpl.php:66 app/skins/grid/tpl.php:62
|
7653 |
+
#: app/skins/grid/tpl.php:66 app/skins/list/tpl.php:68
|
7654 |
+
#: app/skins/list/tpl.php:72 app/skins/masonry/tpl.php:62
|
7655 |
#: app/skins/masonry/tpl.php:66 app/skins/slider/tpl.php:44
|
7656 |
#: app/skins/timeline/tpl.php:56 app/skins/timeline/tpl.php:60
|
7657 |
msgid "No event found!"
|
7658 |
msgstr "Keine Veranstaltung gefunden"
|
7659 |
|
7660 |
#: app/skins/agenda/tpl.php:75 app/skins/custom/tpl.php:71
|
7661 |
+
#: app/skins/grid/tpl.php:71 app/skins/list/tpl.php:77
|
7662 |
#: app/skins/masonry/tpl.php:71 app/skins/timeline/tpl.php:65
|
7663 |
#: app/skins/yearly_view/render.php:124
|
7664 |
msgid "Load More"
|
7675 |
msgstr "VERANSTALTUNGSDETAILS"
|
7676 |
|
7677 |
#: app/skins/carousel/render.php:230
|
|
|
|
|
7678 |
msgid "View All Events"
|
7679 |
+
msgstr "Zeige alle Veranstaltungen"
|
7680 |
|
7681 |
#: app/skins/countdown/tpl.php:145 app/skins/countdown/tpl.php:189
|
7682 |
#: app/skins/countdown/tpl.php:234
|
7715 |
msgid "No Events"
|
7716 |
msgstr "Keine Veranstaltungen"
|
7717 |
|
7718 |
+
#: app/skins/single.php:209
|
7719 |
msgid "Home"
|
7720 |
msgstr ""
|
7721 |
|
7722 |
+
#: app/skins/single.php:548 app/skins/single/default.php:51
|
7723 |
#: app/skins/single/m1.php:261 app/skins/single/m2.php:182
|
7724 |
#: app/skins/single/modern.php:270
|
7725 |
msgid "Sold out!"
|
7726 |
msgstr "Ausverkauft!"
|
7727 |
|
7728 |
+
#: app/skins/single.php:826 app/skins/single.php:881
|
7729 |
#: app/skins/single/default.php:227 app/skins/single/default.php:450
|
7730 |
#: app/skins/single/m1.php:109 app/skins/single/m2.php:35
|
7731 |
#: app/skins/single/modern.php:44
|
7732 |
msgid "Phone"
|
7733 |
msgstr "Phone"
|
7734 |
|
7735 |
+
#: app/skins/single.php:840 app/skins/single.php:895
|
7736 |
#: app/skins/single/default.php:241 app/skins/single/default.php:464
|
7737 |
#: app/skins/single/m1.php:123 app/skins/single/m2.php:49
|
7738 |
#: app/skins/single/modern.php:58
|
7739 |
msgid "Website"
|
7740 |
msgstr "Website"
|
7741 |
|
7742 |
+
#: app/skins/single.php:971
|
|
|
|
|
7743 |
msgid "Speakers:"
|
7744 |
+
msgstr "Veranstalter"
|
7745 |
|
7746 |
#: app/skins/single/default.php:69 app/skins/single/m1.php:278
|
7747 |
#: app/skins/single/m2.php:199 app/skins/single/modern.php:288
|
7796 |
msgstr ""
|
7797 |
|
7798 |
#: app/widgets/single.php:95
|
|
|
|
|
7799 |
msgid "Date Time Module"
|
7800 |
+
msgstr "Datum Zeit Modul:"
|
7801 |
|
7802 |
#: app/widgets/single.php:111
|
|
|
|
|
7803 |
msgid "Event Label"
|
7804 |
+
msgstr "Event Label"
|
7805 |
|
7806 |
#: app/widgets/single.php:127
|
|
|
|
|
7807 |
msgid "Event Speakers"
|
7808 |
+
msgstr "Event Veranstalter"
|
7809 |
|
7810 |
#: app/widgets/single.php:135
|
7811 |
#, fuzzy
|
7814 |
msgstr "Teilnehmermodul"
|
7815 |
|
7816 |
#: app/widgets/single.php:139
|
|
|
|
|
7817 |
msgid "Next Previous Module"
|
7818 |
msgstr "Nächstes vorheriges Modul"
|
7819 |
|
7835 |
|
7836 |
#. Plugin Name of the plugin/theme
|
7837 |
#, fuzzy
|
7838 |
+
#| msgid "Modern Events Calendar (Lite)"
|
7839 |
msgid "Modern Events Calendar Lite"
|
7840 |
+
msgstr "Moderner Event Kalender (Lite)"
|
7841 |
|
7842 |
#. Plugin URI of the plugin/theme
|
7843 |
#, fuzzy
|
7918 |
#~ msgid "It will create a new booking under \"Pay Locally\" gateway."
|
7919 |
#~ msgstr "Es wird eine neue Buchung unter \"Pay Locally\" Gateway erstellt."
|
7920 |
|
|
|
|
|
7921 |
#~ msgid "Go to Edit Form"
|
7922 |
+
#~ msgstr "Gehe zum Bearbeitungs Feld"
|
7923 |
|
|
|
|
|
7924 |
#~ msgid "Cancellation Date"
|
7925 |
+
#~ msgstr "Datum Stornierung"
|
7926 |
+
|
7927 |
+
#~ msgid "Attachments"
|
7928 |
+
#~ msgstr "Anhänge"
|
7929 |
|
|
|
|
|
7930 |
#~ msgid "Edit Booking"
|
7931 |
+
#~ msgstr "Buchung ändern"
|
7932 |
+
|
7933 |
+
#~ msgid "Do not edit the booking unless it is really needed!"
|
7934 |
+
#~ msgstr ""
|
7935 |
+
#~ "Bearbeite die Buchungs Informationen nur, wenn es wirklich nötig ist!"
|
7936 |
+
|
7937 |
+
#~ msgid "I need to edit the booking details"
|
7938 |
+
#~ msgstr "Ich muss die Buchungs Informationen bearbeiten"
|
7939 |
|
|
|
|
|
7940 |
#~ msgid "Add Attendee"
|
7941 |
+
#~ msgstr "Teilnehmer hinzufügen"
|
7942 |
|
|
|
|
|
7943 |
#~ msgid "Remove Attendee"
|
7944 |
+
#~ msgstr "Teilnehmer entfernen"
|
7945 |
|
7946 |
#~ msgid "Book Date"
|
7947 |
#~ msgstr "Buchungsdatum"
|
7948 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7949 |
#~ msgid " - Ticket"
|
7950 |
+
#~ msgstr "- Ticket"
|
7951 |
|
|
|
|
|
7952 |
#~ msgid "Order Date"
|
7953 |
+
#~ msgstr "Datum Bestellung"
|
7954 |
+
|
7955 |
+
#~ msgid "Yesterday"
|
7956 |
+
#~ msgstr "Gestern"
|
7957 |
|
|
|
|
|
7958 |
#~ msgid "Current Month"
|
7959 |
+
#~ msgstr "Aktueller Monat"
|
7960 |
|
|
|
|
|
7961 |
#~ msgid "Current Year"
|
7962 |
+
#~ msgstr "Aktuelles Jahr"
|
7963 |
|
7964 |
#~ msgid "Confirm"
|
7965 |
#~ msgstr "Bestätigen"
|
7967 |
#~ msgid "Reject"
|
7968 |
#~ msgstr "Ablehnen"
|
7969 |
|
7970 |
+
#~ msgid "Uploaded file size exceeds the maximum allowed size."
|
7971 |
+
#~ msgstr "Die hochgeladene Datei ist zu groß."
|
7972 |
+
|
7973 |
#~ msgid "Uploaded file type is not valid."
|
7974 |
+
#~ msgstr "Der hochgeladene Dateityp ist nicht korrekt."
|
7975 |
|
7976 |
#~ msgid "Invalid request."
|
7977 |
#~ msgstr "Ungültige Anforderung"
|
7978 |
|
7979 |
#~ msgid "Please select some tickets!"
|
7980 |
+
#~ msgstr "Bitte Tickets auswählen!"
|
7981 |
|
7982 |
#~ msgid "Captcha is invalid. Please try again."
|
7983 |
#~ msgstr ""
|
8000 |
#~ "Kein Ticket für zukünftige Termine für dieses Event gefunden! Bitte "
|
8001 |
#~ "versuchen Sie eine andere Veranstaltung."
|
8002 |
|
|
|
|
|
8003 |
#~ msgid "Number of Attendees"
|
8004 |
+
#~ msgstr "Anzahl Teilnehmer"
|
8005 |
|
8006 |
#~ msgid "Attendee Information"
|
8007 |
#~ msgstr "Teilnehmerinformationen"
|
8033 |
#~ msgid "Search Coupons"
|
8034 |
#~ msgstr "Gutscheine suchen"
|
8035 |
|
|
|
|
|
8036 |
#~ msgid "← Back to Coupons"
|
8037 |
+
#~ msgstr "← Zurück zu den Gutscheinen"
|
8038 |
|
8039 |
#~ msgid "Discount Type"
|
8040 |
#~ msgstr "Rabatt-Art"
|
8088 |
#~ msgid "There is no attendee for booking!"
|
8089 |
#~ msgstr "Es gibt keinen Teilnehmer für die Buchung!"
|
8090 |
|
8091 |
+
#~ msgid "Your payment needs to get confirmed!"
|
8092 |
+
#~ msgstr "Ihre Buchung muss bestätigt werden!"
|
8093 |
+
|
8094 |
#~ msgid "Unknown Error!"
|
8095 |
+
#~ msgstr "Unbekannter Fehler!"
|
8096 |
|
8097 |
#~ msgid "MEC Transaction ID: %s"
|
8098 |
#~ msgstr "Transaktions-ID: %s"
|
8134 |
#~ msgid "Fee Type"
|
8135 |
#~ msgstr "Alles Auswählen"
|
8136 |
|
|
|
|
|
8137 |
#~ msgid "Per"
|
8138 |
+
#~ msgstr "Pro"
|
8139 |
|
|
|
|
|
8140 |
#~ msgid "Redirection Page"
|
8141 |
+
#~ msgstr "Weiterleitungs Seite "
|
8142 |
+
|
8143 |
+
#~ msgid "Connect Your Account"
|
8144 |
+
#~ msgstr "Account verbinden"
|
8145 |
|
8146 |
#~ msgid "Waiting for getting response from gateway."
|
8147 |
#~ msgstr "Warte auf Antwort des Gateways."
|
8148 |
|
8149 |
+
#~ msgid "User get connected sucessfully!"
|
8150 |
+
#~ msgstr "Nutzer wurde erfolgreich verbunden!"
|
8151 |
+
|
8152 |
#~ msgid "Pay Locally"
|
8153 |
#~ msgstr "Vor Ort bezahlen"
|
8154 |
|
Binary file
|
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: modern-events-calendar\n"
|
4 |
-
"POT-Creation-Date: 2020-02-
|
5 |
-
"PO-Revision-Date: 2020-02-
|
6 |
"Last-Translator: Howard <howard@realtyna.com>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: en_US\n"
|
@@ -67,7 +67,7 @@ msgstr ""
|
|
67 |
msgid "Settings"
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: app/features/contextual.php:62 app/features/events.php:
|
71 |
#: app/features/mec/booking.php:448 app/features/mec/support.php:29
|
72 |
#: app/libraries/main.php:560
|
73 |
msgid "Booking Form"
|
@@ -284,29 +284,29 @@ msgstr ""
|
|
284 |
msgid "No events found in Trash!"
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: app/features/events.php:182 app/features/events.php:
|
288 |
#: app/features/mec/meta_boxes/display_options.php:959
|
289 |
#: app/features/mec/meta_boxes/search_form.php:31
|
290 |
#: app/features/mec/meta_boxes/search_form.php:93
|
291 |
#: app/features/mec/meta_boxes/search_form.php:155
|
292 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
293 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
294 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
295 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
296 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
297 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
298 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
299 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
300 |
#: app/features/mec/settings.php:808 app/features/mec/single.php:232
|
301 |
#: app/features/search.php:68 app/libraries/main.php:5335
|
302 |
-
#: app/libraries/skins.php:865 app/skins/single.php:
|
303 |
#: app/skins/single/default.php:192 app/skins/single/default.php:415
|
304 |
#: app/skins/single/m1.php:184 app/skins/single/m2.php:110
|
305 |
#: app/skins/single/modern.php:118
|
306 |
msgid "Category"
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: app/features/events.php:183 app/features/events.php:
|
310 |
#: app/features/fes/form.php:757 app/features/mec.php:403
|
311 |
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5334
|
312 |
msgid "Categories"
|
@@ -392,8 +392,8 @@ msgstr ""
|
|
392 |
msgid "Event Repeating"
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: app/features/events.php:333 app/features/events.php:
|
396 |
-
#: app/features/mec/settings.php:718 app/skins/single.php:
|
397 |
msgid "Hourly Schedule"
|
398 |
msgstr ""
|
399 |
|
@@ -405,35 +405,35 @@ msgstr ""
|
|
405 |
msgid "Links"
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: app/features/events.php:336 app/features/events.php:
|
409 |
-
#: app/features/events.php:
|
410 |
#: app/features/ix.php:3506 app/features/ix.php:3547
|
411 |
#: app/features/mec/meta_boxes/display_options.php:962
|
412 |
#: app/features/mec/meta_boxes/search_form.php:45
|
413 |
#: app/features/mec/meta_boxes/search_form.php:107
|
414 |
#: app/features/mec/meta_boxes/search_form.php:169
|
415 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
416 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
417 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
418 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
419 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
420 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
421 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
422 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
423 |
#: app/features/mec/settings.php:820 app/features/mec/single.php:236
|
424 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
425 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
426 |
#: app/features/organizers.php:271 app/features/search.php:78
|
427 |
#: app/libraries/main.php:5341 app/libraries/skins.php:917
|
428 |
-
#: app/skins/single.php:
|
429 |
#: app/skins/single/default.php:440 app/skins/single/m1.php:99
|
430 |
#: app/skins/single/m2.php:25 app/skins/single/modern.php:34
|
431 |
msgid "Organizer"
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: app/features/events.php:337 app/features/events.php:
|
435 |
#: app/features/fes/form.php:730 app/libraries/main.php:5368
|
436 |
-
#: app/skins/single.php:
|
437 |
#: app/skins/single/default.php:349 app/skins/single/m1.php:58
|
438 |
#: app/skins/single/modern.php:213
|
439 |
msgid "Cost"
|
@@ -447,8 +447,8 @@ msgstr ""
|
|
447 |
msgid "Guest Data"
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: app/features/events.php:461 app/features/events.php:
|
451 |
-
#: app/features/events.php:
|
452 |
#: app/features/fes/form.php:689 app/features/labels.php:178
|
453 |
#: app/features/mec/booking.php:45 app/features/organizers.php:279
|
454 |
#: app/features/profile/profile.php:180 app/libraries/notifications.php:1117
|
@@ -456,8 +456,8 @@ msgstr ""
|
|
456 |
msgid "Name"
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: app/features/events.php:462 app/features/events.php:
|
460 |
-
#: app/features/events.php:
|
461 |
#: app/features/fes.php:223 app/features/fes/form.php:685
|
462 |
#: app/features/mec/booking.php:57 app/features/mec/booking.php:499
|
463 |
#: app/features/organizers.php:111 app/features/organizers.php:152
|
@@ -465,8 +465,8 @@ msgstr ""
|
|
465 |
#: app/features/speakers.php:196 app/libraries/main.php:1547
|
466 |
#: app/libraries/main.php:1616 app/libraries/main.php:2843
|
467 |
#: app/libraries/notifications.php:1118 app/modules/booking/steps/form.php:46
|
468 |
-
#: app/modules/booking/steps/form.php:83 app/skins/single.php:
|
469 |
-
#: app/skins/single.php:
|
470 |
#: app/skins/single/default.php:457 app/skins/single/m1.php:116
|
471 |
#: app/skins/single/m2.php:42 app/skins/single/modern.php:51
|
472 |
msgid "Email"
|
@@ -477,8 +477,8 @@ msgid "Date and Time"
|
|
477 |
msgstr ""
|
478 |
|
479 |
#: app/features/events.php:473 app/features/events.php:479
|
480 |
-
#: app/features/events.php:
|
481 |
-
#: app/features/events.php:
|
482 |
#: app/features/fes/form.php:251 app/features/ix.php:3506
|
483 |
#: app/features/ix.php:3547 app/features/ix/import_g_calendar.php:38
|
484 |
#: app/features/mec/dashboard.php:401
|
@@ -501,59 +501,59 @@ msgid "Start Date"
|
|
501 |
msgstr ""
|
502 |
|
503 |
#: app/features/events.php:551 app/features/events.php:643
|
504 |
-
#: app/features/events.php:
|
505 |
-
#: app/features/events.php:
|
506 |
#: app/features/fes/form.php:279 app/features/fes/form.php:319
|
507 |
msgid "AM"
|
508 |
msgstr ""
|
509 |
|
510 |
#: app/features/events.php:558 app/features/events.php:650
|
511 |
-
#: app/features/events.php:
|
512 |
-
#: app/features/events.php:
|
513 |
#: app/features/fes/form.php:280 app/features/fes/form.php:320
|
514 |
msgid "PM"
|
515 |
msgstr ""
|
516 |
|
517 |
#: app/features/events.php:565 app/features/events.php:570
|
518 |
-
#: app/features/events.php:
|
519 |
-
#: app/features/events.php:
|
520 |
#: app/features/fes/form.php:291 app/features/ix.php:3506
|
521 |
#: app/features/ix.php:3547 app/features/ix/import_g_calendar.php:44
|
522 |
#: app/features/mec/dashboard.php:402
|
523 |
msgid "End Date"
|
524 |
msgstr ""
|
525 |
|
526 |
-
#: app/features/events.php:
|
527 |
msgid "All Day Event"
|
528 |
msgstr ""
|
529 |
|
530 |
-
#: app/features/events.php:
|
531 |
msgid "Hide Event Time"
|
532 |
msgstr ""
|
533 |
|
534 |
-
#: app/features/events.php:
|
535 |
msgid "Hide Event End Time"
|
536 |
msgstr ""
|
537 |
|
538 |
-
#: app/features/events.php:
|
539 |
#: app/features/fes/form.php:336
|
540 |
msgid "Time Comment"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: app/features/events.php:
|
544 |
msgid ""
|
545 |
"It shows next to event time on single event page. You can insert Timezone "
|
546 |
"etc. in this field."
|
547 |
msgstr ""
|
548 |
|
549 |
-
#: app/features/events.php:
|
550 |
-
#: app/features/events.php:
|
551 |
-
#: app/features/events.php:
|
552 |
-
#: app/features/events.php:
|
553 |
-
#: app/features/events.php:
|
554 |
-
#: app/features/events.php:
|
555 |
-
#: app/features/events.php:
|
556 |
-
#: app/features/events.php:
|
557 |
#: app/features/fes/form.php:641 app/features/locations.php:301
|
558 |
#: app/features/mec/booking.php:108 app/features/mec/booking.php:158
|
559 |
#: app/features/mec/booking.php:171 app/features/mec/booking.php:187
|
@@ -619,236 +619,236 @@ msgstr ""
|
|
619 |
#: app/features/mec/single.php:125 app/features/mec/single.php:178
|
620 |
#: app/features/mec/styling.php:203 app/features/mec/styling.php:220
|
621 |
#: app/features/mec/styling.php:233 app/features/organizers.php:272
|
622 |
-
#: app/skins/single.php:
|
623 |
#: app/skins/single/default.php:364 app/skins/single/m1.php:206
|
624 |
#: app/skins/single/m2.php:133 app/skins/single/modern.php:141
|
625 |
msgid "Read More"
|
626 |
msgstr ""
|
627 |
|
628 |
-
#: app/features/events.php:
|
629 |
msgid "Repeating"
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: app/features/events.php:
|
633 |
msgid "Event Repeating (Recurring events)"
|
634 |
msgstr ""
|
635 |
|
636 |
-
#: app/features/events.php:
|
637 |
msgid "Repeats"
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: app/features/events.php:
|
641 |
#: app/features/mec/dashboard.php:404
|
642 |
#: app/skins/default_full_calendar/tpl.php:69
|
643 |
#: app/skins/full_calendar/tpl.php:110
|
644 |
msgid "Daily"
|
645 |
msgstr ""
|
646 |
|
647 |
-
#: app/features/events.php:
|
648 |
msgid "Every Weekday"
|
649 |
msgstr ""
|
650 |
|
651 |
-
#: app/features/events.php:
|
652 |
msgid "Every Weekend"
|
653 |
msgstr ""
|
654 |
|
655 |
-
#: app/features/events.php:
|
656 |
msgid "Certain Weekdays"
|
657 |
msgstr ""
|
658 |
|
659 |
-
#: app/features/events.php:
|
660 |
#: app/skins/default_full_calendar/tpl.php:68
|
661 |
#: app/skins/full_calendar/tpl.php:109
|
662 |
msgid "Weekly"
|
663 |
msgstr ""
|
664 |
|
665 |
-
#: app/features/events.php:
|
666 |
#: app/features/mec/dashboard.php:405
|
667 |
#: app/skins/default_full_calendar/tpl.php:67
|
668 |
#: app/skins/full_calendar/tpl.php:108
|
669 |
msgid "Monthly"
|
670 |
msgstr ""
|
671 |
|
672 |
-
#: app/features/events.php:
|
673 |
#: app/features/mec/dashboard.php:406
|
674 |
#: app/skins/default_full_calendar/tpl.php:66
|
675 |
#: app/skins/full_calendar/tpl.php:107
|
676 |
msgid "Yearly"
|
677 |
msgstr ""
|
678 |
|
679 |
-
#: app/features/events.php:
|
680 |
msgid "Custom Days"
|
681 |
msgstr ""
|
682 |
|
683 |
-
#: app/features/events.php:
|
684 |
msgid "Advanced"
|
685 |
msgstr ""
|
686 |
|
687 |
-
#: app/features/events.php:
|
688 |
msgid "Repeat Interval"
|
689 |
msgstr ""
|
690 |
|
691 |
-
#: app/features/events.php:
|
692 |
msgid "Repeat interval"
|
693 |
msgstr ""
|
694 |
|
695 |
-
#: app/features/events.php:
|
696 |
msgid "Week Days"
|
697 |
msgstr ""
|
698 |
|
699 |
-
#: app/features/events.php:
|
700 |
-
#: app/features/events.php:
|
701 |
#: app/features/fes/form.php:377 app/features/ix/import_f_calendar.php:42
|
702 |
#: app/features/ix/import_g_calendar.php:51
|
703 |
#: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
|
704 |
msgid "Start"
|
705 |
msgstr ""
|
706 |
|
707 |
-
#: app/features/events.php:
|
708 |
-
#: app/features/events.php:
|
709 |
#: app/features/fes/form.php:378
|
710 |
msgid "End"
|
711 |
msgstr ""
|
712 |
|
713 |
-
#: app/features/events.php:
|
714 |
-
#: app/features/events.php:
|
715 |
-
#: app/features/events.php:
|
716 |
-
#: app/features/events.php:
|
717 |
#: app/features/fes/form.php:379 app/features/fes/form.php:855
|
718 |
msgid "Add"
|
719 |
msgstr ""
|
720 |
|
721 |
-
#: app/features/events.php:
|
722 |
msgid "Custom Days Repeating"
|
723 |
msgstr ""
|
724 |
|
725 |
-
#: app/features/events.php:
|
726 |
msgid ""
|
727 |
"Add certain days to event occurrence dates. If you have single day event, "
|
728 |
"start and end date should be the same, If you have multiple day event the "
|
729 |
"start and end dates must be commensurate with the initial date."
|
730 |
msgstr ""
|
731 |
|
732 |
-
#: app/features/events.php:
|
733 |
msgid "First"
|
734 |
msgstr ""
|
735 |
|
736 |
-
#: app/features/events.php:
|
737 |
msgid "Second"
|
738 |
msgstr ""
|
739 |
|
740 |
-
#: app/features/events.php:
|
741 |
msgid "Third"
|
742 |
msgstr ""
|
743 |
|
744 |
-
#: app/features/events.php:
|
745 |
msgid "Fourth"
|
746 |
msgstr ""
|
747 |
|
748 |
-
#: app/features/events.php:
|
749 |
msgid "Last"
|
750 |
msgstr ""
|
751 |
|
752 |
-
#: app/features/events.php:
|
753 |
msgid "Ends Repeat"
|
754 |
msgstr ""
|
755 |
|
756 |
-
#: app/features/events.php:
|
757 |
msgid "Never"
|
758 |
msgstr ""
|
759 |
|
760 |
-
#: app/features/events.php:
|
761 |
msgid "On"
|
762 |
msgstr ""
|
763 |
|
764 |
-
#: app/features/events.php:
|
765 |
msgid "After"
|
766 |
msgstr ""
|
767 |
|
768 |
-
#: app/features/events.php:
|
769 |
#: app/features/fes/form.php:637 app/features/fes/form.php:640
|
770 |
msgid "Occurrences times"
|
771 |
msgstr ""
|
772 |
|
773 |
-
#: app/features/events.php:
|
774 |
msgid ""
|
775 |
"The event will finish after certain repeats. For example if you set it to "
|
776 |
"10, the event will finish after 10 repeats."
|
777 |
msgstr ""
|
778 |
|
779 |
-
#: app/features/events.php:
|
780 |
msgid "Show only one occurrence of this event"
|
781 |
msgstr ""
|
782 |
|
783 |
-
#: app/features/events.php:
|
784 |
-
#: app/features/events.php:
|
785 |
#: app/features/ix.php:3506 app/features/ix.php:3547
|
786 |
#: app/features/mec/settings.php:664 app/libraries/main.php:5367
|
787 |
#: app/widgets/single.php:103
|
788 |
msgid "Event Cost"
|
789 |
msgstr ""
|
790 |
|
791 |
-
#: app/features/events.php:
|
792 |
msgid "Exceptional Days (Exclude Dates)"
|
793 |
msgstr ""
|
794 |
|
795 |
-
#: app/features/events.php:
|
796 |
msgid "Exclude certain days"
|
797 |
msgstr ""
|
798 |
|
799 |
-
#: app/features/events.php:
|
800 |
#: app/features/fes.php:223 app/features/mec/booking.php:500
|
801 |
#: app/features/profile/profile.php:53 app/libraries/main.php:2253
|
802 |
-
#: app/libraries/main.php:2901 app/modules/booking/steps/tickets.php:
|
803 |
-
#: app/modules/next-event/details.php:93 app/skins/single.php:
|
804 |
#: app/skins/single/default.php:85 app/skins/single/default.php:308
|
805 |
#: app/skins/single/m1.php:20 app/skins/single/modern.php:175
|
806 |
msgid "Date"
|
807 |
msgstr ""
|
808 |
|
809 |
-
#: app/features/events.php:
|
810 |
msgid ""
|
811 |
"Exclude certain days from event occurrence dates. Please note that you can "
|
812 |
"exclude only single day occurrences and you cannot exclude one day from "
|
813 |
"multiple day occurrences."
|
814 |
msgstr ""
|
815 |
|
816 |
-
#: app/features/events.php:
|
817 |
msgid "Day 1"
|
818 |
msgstr ""
|
819 |
|
820 |
-
#: app/features/events.php:
|
821 |
msgid "Add Day"
|
822 |
msgstr ""
|
823 |
|
824 |
-
#: app/features/events.php:
|
825 |
msgid ""
|
826 |
"Add new days for schedule. For example if your event is multiple days, you "
|
827 |
"can add a different schedule for each day!"
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: app/features/events.php:
|
831 |
#, php-format
|
832 |
msgid "Day %s"
|
833 |
msgstr ""
|
834 |
|
835 |
-
#: app/features/events.php:
|
836 |
-
#: app/features/events.php:
|
837 |
-
#: app/features/events.php:
|
838 |
-
#: app/features/events.php:
|
839 |
-
#: app/features/events.php:
|
840 |
#: app/features/fes/form.php:236 app/features/ix.php:3506
|
841 |
#: app/features/ix.php:3547 app/features/mec/booking.php:384
|
842 |
#: app/features/mec/booking.php:416 app/features/mec/styling.php:115
|
843 |
msgid "Title"
|
844 |
msgstr ""
|
845 |
|
846 |
-
#: app/features/events.php:
|
847 |
-
#: app/features/events.php:
|
848 |
-
#: app/features/events.php:
|
849 |
-
#: app/features/events.php:
|
850 |
-
#: app/features/events.php:
|
851 |
-
#: app/features/events.php:
|
852 |
#: app/features/mec/booking.php:327 app/features/mec/booking.php:356
|
853 |
#: app/features/mec/booking.php:407 app/features/mec/booking.php:439
|
854 |
#: app/libraries/main.php:2762 app/libraries/main.php:2792
|
@@ -861,28 +861,28 @@ msgstr ""
|
|
861 |
msgid "Remove"
|
862 |
msgstr ""
|
863 |
|
864 |
-
#: app/features/events.php:
|
865 |
msgid "Add new hourly schedule row"
|
866 |
msgstr ""
|
867 |
|
868 |
-
#: app/features/events.php:
|
869 |
-
#: app/features/events.php:
|
870 |
msgid "From e.g. 8:15"
|
871 |
msgstr ""
|
872 |
|
873 |
-
#: app/features/events.php:
|
874 |
-
#: app/features/events.php:
|
875 |
msgid "To e.g. 8:45"
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: app/features/events.php:
|
879 |
-
#: app/features/events.php:
|
880 |
-
#: app/features/events.php:
|
881 |
msgid "Description"
|
882 |
msgstr ""
|
883 |
|
884 |
-
#: app/features/events.php:
|
885 |
-
#: app/features/events.php:
|
886 |
#: app/features/mec.php:411 app/features/mec/modules.php:52
|
887 |
#: app/features/mec/settings.php:712 app/features/speakers.php:62
|
888 |
#: app/libraries/main.php:565 app/libraries/main.php:5342
|
@@ -890,315 +890,315 @@ msgstr ""
|
|
890 |
msgid "Speakers"
|
891 |
msgstr ""
|
892 |
|
893 |
-
#: app/features/events.php:
|
894 |
msgid "New Day"
|
895 |
msgstr ""
|
896 |
|
897 |
-
#: app/features/events.php:
|
898 |
#: app/features/mec/settings.php:658
|
899 |
msgid "Event Links"
|
900 |
msgstr ""
|
901 |
|
902 |
-
#: app/features/events.php:
|
903 |
#: app/features/fes/form.php:706 app/libraries/main.php:5365
|
904 |
msgid "Event Link"
|
905 |
msgstr ""
|
906 |
|
907 |
-
#: app/features/events.php:
|
908 |
#: app/features/fes/form.php:707 app/features/fes/form.php:712
|
909 |
msgid "eg. http://yoursite.com/your-event"
|
910 |
msgstr ""
|
911 |
|
912 |
-
#: app/features/events.php:
|
913 |
msgid ""
|
914 |
"If you fill it, it will be replaced instead of default event page link. "
|
915 |
"Insert full link including http(s):// - Also, if you use advertising URL, "
|
916 |
"can use URL Shortener"
|
917 |
msgstr ""
|
918 |
|
919 |
-
#: app/features/events.php:
|
920 |
msgid "URL Shortener"
|
921 |
msgstr ""
|
922 |
|
923 |
-
#: app/features/events.php:
|
924 |
#: app/features/fes/form.php:711 app/libraries/main.php:5366
|
925 |
-
#: app/skins/single.php:
|
926 |
#: app/skins/single/default.php:363 app/skins/single/m1.php:205
|
927 |
#: app/skins/single/m2.php:132 app/skins/single/modern.php:140
|
928 |
#: app/widgets/single.php:107
|
929 |
msgid "More Info"
|
930 |
msgstr ""
|
931 |
|
932 |
-
#: app/features/events.php:
|
933 |
msgid "More Information"
|
934 |
msgstr ""
|
935 |
|
936 |
-
#: app/features/events.php:
|
937 |
msgid "Current Window"
|
938 |
msgstr ""
|
939 |
|
940 |
-
#: app/features/events.php:
|
941 |
msgid "New Window"
|
942 |
msgstr ""
|
943 |
|
944 |
-
#: app/features/events.php:
|
945 |
msgid ""
|
946 |
"If you fill it, it will be shown in event details page as an optional link. "
|
947 |
"Insert full link including http(s)://"
|
948 |
msgstr ""
|
949 |
|
950 |
-
#: app/features/events.php:
|
951 |
msgid "Total booking limits"
|
952 |
msgstr ""
|
953 |
|
954 |
-
#: app/features/events.php:
|
955 |
-
#: app/features/events.php:
|
956 |
-
#: app/modules/booking/steps/tickets.php:
|
957 |
#: app/skins/available_spot/tpl.php:158
|
958 |
msgid "Unlimited"
|
959 |
msgstr ""
|
960 |
|
961 |
-
#: app/features/events.php:
|
962 |
msgid ""
|
963 |
"If you want to set a limit to all tickets, uncheck this checkbox and put a "
|
964 |
"limitation number."
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: app/features/events.php:
|
968 |
msgid "Read About A Booking System"
|
969 |
msgstr ""
|
970 |
|
971 |
-
#: app/features/events.php:
|
972 |
msgid "100"
|
973 |
msgstr ""
|
974 |
|
975 |
-
#: app/features/events.php:
|
976 |
msgid "Total user booking limits"
|
977 |
msgstr ""
|
978 |
|
979 |
-
#: app/features/events.php:
|
980 |
-
#: app/features/events.php:
|
981 |
msgid "Inherit from global options"
|
982 |
msgstr ""
|
983 |
|
984 |
-
#: app/features/events.php:
|
985 |
msgid "12"
|
986 |
msgstr ""
|
987 |
|
988 |
-
#: app/features/events.php:
|
989 |
-
#: app/libraries/main.php:5370 app/modules/booking/steps/tickets.php:
|
990 |
msgid "Tickets"
|
991 |
msgstr ""
|
992 |
|
993 |
-
#: app/features/events.php:
|
994 |
msgid ""
|
995 |
"You're translating an event so MEC will use the original event for tickets "
|
996 |
"and booking. You can only translate the ticket name and description. Please "
|
997 |
"define exact tickets that you defined in the original event here."
|
998 |
msgstr ""
|
999 |
|
1000 |
-
#: app/features/events.php:
|
1001 |
msgid "Add Ticket"
|
1002 |
msgstr ""
|
1003 |
|
1004 |
-
#: app/features/events.php:
|
1005 |
msgid "Ticket Name"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
-
#: app/features/events.php:
|
1009 |
-
#: app/features/events.php:
|
1010 |
#: app/features/ix.php:3506 app/features/ix.php:3547
|
1011 |
msgid "Start Time"
|
1012 |
msgstr ""
|
1013 |
|
1014 |
-
#: app/features/events.php:
|
1015 |
-
#: app/features/events.php:
|
1016 |
#: app/features/ix.php:3506 app/features/ix.php:3547
|
1017 |
msgid "End Time"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
-
#: app/features/events.php:
|
1021 |
-
#: app/features/events.php:
|
1022 |
-
#: app/features/events.php:
|
1023 |
-
#: app/features/events.php:
|
1024 |
-
#: app/features/events.php:
|
1025 |
-
#: app/features/events.php:
|
1026 |
#: app/features/mec/booking.php:391 app/features/mec/booking.php:420
|
1027 |
#: app/features/mec/booking.php:423
|
1028 |
msgid "Price"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
-
#: app/features/events.php:
|
1032 |
msgid "Insert 0 for free ticket. Only numbers please."
|
1033 |
msgstr ""
|
1034 |
|
1035 |
-
#: app/features/events.php:
|
1036 |
-
#: app/features/events.php:
|
1037 |
msgid "Price Label"
|
1038 |
msgstr ""
|
1039 |
|
1040 |
-
#: app/features/events.php:
|
1041 |
msgid "For showing on website. e.g. $15"
|
1042 |
msgstr ""
|
1043 |
|
1044 |
-
#: app/features/events.php:
|
1045 |
msgid "Available Tickets"
|
1046 |
msgstr ""
|
1047 |
|
1048 |
-
#: app/features/events.php:
|
1049 |
msgid "Minimum Ticket e.g. 3"
|
1050 |
msgstr ""
|
1051 |
|
1052 |
-
#: app/features/events.php:
|
1053 |
msgid "MinimumTicket"
|
1054 |
msgstr ""
|
1055 |
|
1056 |
-
#: app/features/events.php:
|
1057 |
msgid "Set a number for the minimum ticket reservation"
|
1058 |
msgstr ""
|
1059 |
|
1060 |
-
#: app/features/events.php:
|
1061 |
msgid "e.g. 0"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
-
#: app/features/events.php:
|
1065 |
msgid "Day"
|
1066 |
msgstr ""
|
1067 |
|
1068 |
-
#: app/features/events.php:
|
1069 |
msgid "Hour"
|
1070 |
msgstr ""
|
1071 |
|
1072 |
-
#: app/features/events.php:
|
1073 |
#, php-format
|
1074 |
msgid "Stop selling ticket %s before event start."
|
1075 |
msgstr ""
|
1076 |
|
1077 |
-
#: app/features/events.php:
|
1078 |
msgid "Price per Date"
|
1079 |
msgstr ""
|
1080 |
|
1081 |
-
#: app/features/events.php:
|
1082 |
-
#: app/features/events.php:
|
1083 |
#: app/features/mec/meta_boxes/display_options.php:960
|
1084 |
#: app/features/mec/meta_boxes/search_form.php:66
|
1085 |
#: app/features/mec/meta_boxes/search_form.php:128
|
1086 |
#: app/features/mec/meta_boxes/search_form.php:190
|
1087 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1088 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1089 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1090 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1091 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1092 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1093 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1094 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1095 |
#: app/features/mec/settings.php:840 app/features/mec/single.php:250
|
1096 |
#: app/libraries/skins.php:995
|
1097 |
msgid "Label"
|
1098 |
msgstr ""
|
1099 |
|
1100 |
-
#: app/features/events.php:
|
1101 |
msgid "Fees"
|
1102 |
msgstr ""
|
1103 |
|
1104 |
-
#: app/features/events.php:
|
1105 |
#: app/features/mec/booking.php:307 app/features/mec/booking.php:336
|
1106 |
msgid "Fee Title"
|
1107 |
msgstr ""
|
1108 |
|
1109 |
-
#: app/features/events.php:
|
1110 |
-
#: app/features/events.php:
|
1111 |
#: app/features/mec/booking.php:311 app/features/mec/booking.php:314
|
1112 |
#: app/features/mec/booking.php:340 app/features/mec/booking.php:343
|
1113 |
msgid "Amount"
|
1114 |
msgstr ""
|
1115 |
|
1116 |
-
#: app/features/events.php:
|
1117 |
#: app/features/mec/booking.php:315 app/features/mec/booking.php:344
|
1118 |
msgid ""
|
1119 |
"Fee amount, considered as fixed amount if you set the type to amount "
|
1120 |
"otherwise considered as percentage"
|
1121 |
msgstr ""
|
1122 |
|
1123 |
-
#: app/features/events.php:
|
1124 |
#: app/features/mec/booking.php:322 app/features/mec/booking.php:351
|
1125 |
msgid "Percent"
|
1126 |
msgstr ""
|
1127 |
|
1128 |
-
#: app/features/events.php:
|
1129 |
#: app/features/mec/booking.php:323 app/features/mec/booking.php:352
|
1130 |
msgid "Amount (Per Ticket)"
|
1131 |
msgstr ""
|
1132 |
|
1133 |
-
#: app/features/events.php:
|
1134 |
#: app/features/mec/booking.php:324 app/features/mec/booking.php:353
|
1135 |
msgid "Amount (Per Booking)"
|
1136 |
msgstr ""
|
1137 |
|
1138 |
-
#: app/features/events.php:
|
1139 |
msgid "Ticket Variations / Options"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
-
#: app/features/events.php:
|
1143 |
#: app/features/mec/booking.php:392 app/features/mec/booking.php:424
|
1144 |
msgid "Option Price"
|
1145 |
msgstr ""
|
1146 |
|
1147 |
-
#: app/features/events.php:
|
1148 |
-
#: app/features/events.php:
|
1149 |
#: app/features/mec/booking.php:398 app/features/mec/booking.php:401
|
1150 |
#: app/features/mec/booking.php:430 app/features/mec/booking.php:433
|
1151 |
msgid "Maximum Per Ticket"
|
1152 |
msgstr ""
|
1153 |
|
1154 |
-
#: app/features/events.php:
|
1155 |
#: app/features/mec/booking.php:402 app/features/mec/booking.php:434
|
1156 |
msgid "Maximum Per Ticket. Leave it blank for unlimited."
|
1157 |
msgstr ""
|
1158 |
|
1159 |
-
#: app/features/events.php:
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: modern-events-calendar\n"
|
4 |
+
"POT-Creation-Date: 2020-02-18 15:15+0330\n"
|
5 |
+
"PO-Revision-Date: 2020-02-18 15:17+0330\n"
|
6 |
"Last-Translator: Howard <howard@realtyna.com>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: en_US\n"
|
67 |
msgid "Settings"
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: app/features/contextual.php:62 app/features/events.php:2452
|
71 |
#: app/features/mec/booking.php:448 app/features/mec/support.php:29
|
72 |
#: app/libraries/main.php:560
|
73 |
msgid "Booking Form"
|
284 |
msgid "No events found in Trash!"
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: app/features/events.php:182 app/features/events.php:3301
|
288 |
#: app/features/mec/meta_boxes/display_options.php:959
|
289 |
#: app/features/mec/meta_boxes/search_form.php:31
|
290 |
#: app/features/mec/meta_boxes/search_form.php:93
|
291 |
#: app/features/mec/meta_boxes/search_form.php:155
|
292 |
+
#: app/features/mec/meta_boxes/search_form.php:217
|
293 |
+
#: app/features/mec/meta_boxes/search_form.php:279
|
294 |
+
#: app/features/mec/meta_boxes/search_form.php:341
|
295 |
+
#: app/features/mec/meta_boxes/search_form.php:403
|
296 |
+
#: app/features/mec/meta_boxes/search_form.php:458
|
297 |
+
#: app/features/mec/meta_boxes/search_form.php:520
|
298 |
+
#: app/features/mec/meta_boxes/search_form.php:582
|
299 |
+
#: app/features/mec/meta_boxes/search_form.php:680
|
300 |
#: app/features/mec/settings.php:808 app/features/mec/single.php:232
|
301 |
#: app/features/search.php:68 app/libraries/main.php:5335
|
302 |
+
#: app/libraries/skins.php:865 app/skins/single.php:570
|
303 |
#: app/skins/single/default.php:192 app/skins/single/default.php:415
|
304 |
#: app/skins/single/m1.php:184 app/skins/single/m2.php:110
|
305 |
#: app/skins/single/modern.php:118
|
306 |
msgid "Category"
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: app/features/events.php:183 app/features/events.php:3256
|
310 |
#: app/features/fes/form.php:757 app/features/mec.php:403
|
311 |
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5334
|
312 |
msgid "Categories"
|
392 |
msgid "Event Repeating"
|
393 |
msgstr ""
|
394 |
|
395 |
+
#: app/features/events.php:333 app/features/events.php:1269
|
396 |
+
#: app/features/mec/settings.php:718 app/skins/single.php:957
|
397 |
msgid "Hourly Schedule"
|
398 |
msgstr ""
|
399 |
|
405 |
msgid "Links"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: app/features/events.php:336 app/features/events.php:3303
|
409 |
+
#: app/features/events.php:3494 app/features/events.php:3536
|
410 |
#: app/features/ix.php:3506 app/features/ix.php:3547
|
411 |
#: app/features/mec/meta_boxes/display_options.php:962
|
412 |
#: app/features/mec/meta_boxes/search_form.php:45
|
413 |
#: app/features/mec/meta_boxes/search_form.php:107
|
414 |
#: app/features/mec/meta_boxes/search_form.php:169
|
415 |
+
#: app/features/mec/meta_boxes/search_form.php:231
|
416 |
+
#: app/features/mec/meta_boxes/search_form.php:293
|
417 |
+
#: app/features/mec/meta_boxes/search_form.php:355
|
418 |
+
#: app/features/mec/meta_boxes/search_form.php:417
|
419 |
+
#: app/features/mec/meta_boxes/search_form.php:472
|
420 |
+
#: app/features/mec/meta_boxes/search_form.php:534
|
421 |
+
#: app/features/mec/meta_boxes/search_form.php:596
|
422 |
+
#: app/features/mec/meta_boxes/search_form.php:694
|
423 |
#: app/features/mec/settings.php:820 app/features/mec/single.php:236
|
424 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
425 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
426 |
#: app/features/organizers.php:271 app/features/search.php:78
|
427 |
#: app/libraries/main.php:5341 app/libraries/skins.php:917
|
428 |
+
#: app/skins/single.php:816 app/skins/single/default.php:217
|
429 |
#: app/skins/single/default.php:440 app/skins/single/m1.php:99
|
430 |
#: app/skins/single/m2.php:25 app/skins/single/modern.php:34
|
431 |
msgid "Organizer"
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: app/features/events.php:337 app/features/events.php:1155
|
435 |
#: app/features/fes/form.php:730 app/libraries/main.php:5368
|
436 |
+
#: app/skins/single.php:593 app/skins/single/default.php:126
|
437 |
#: app/skins/single/default.php:349 app/skins/single/m1.php:58
|
438 |
#: app/skins/single/modern.php:213
|
439 |
msgid "Cost"
|
447 |
msgid "Guest Data"
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: app/features/events.php:461 app/features/events.php:2434
|
451 |
+
#: app/features/events.php:3783 app/features/fes.php:223
|
452 |
#: app/features/fes/form.php:689 app/features/labels.php:178
|
453 |
#: app/features/mec/booking.php:45 app/features/organizers.php:279
|
454 |
#: app/features/profile/profile.php:180 app/libraries/notifications.php:1117
|
456 |
msgid "Name"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: app/features/events.php:462 app/features/events.php:2445
|
460 |
+
#: app/features/events.php:2521 app/features/events.php:3786
|
461 |
#: app/features/fes.php:223 app/features/fes/form.php:685
|
462 |
#: app/features/mec/booking.php:57 app/features/mec/booking.php:499
|
463 |
#: app/features/organizers.php:111 app/features/organizers.php:152
|
465 |
#: app/features/speakers.php:196 app/libraries/main.php:1547
|
466 |
#: app/libraries/main.php:1616 app/libraries/main.php:2843
|
467 |
#: app/libraries/notifications.php:1118 app/modules/booking/steps/form.php:46
|
468 |
+
#: app/modules/booking/steps/form.php:83 app/skins/single.php:833
|
469 |
+
#: app/skins/single.php:888 app/skins/single/default.php:234
|
470 |
#: app/skins/single/default.php:457 app/skins/single/m1.php:116
|
471 |
#: app/skins/single/m2.php:42 app/skins/single/modern.php:51
|
472 |
msgid "Email"
|
477 |
msgstr ""
|
478 |
|
479 |
#: app/features/events.php:473 app/features/events.php:479
|
480 |
+
#: app/features/events.php:3304 app/features/events.php:3494
|
481 |
+
#: app/features/events.php:3536 app/features/fes/form.php:247
|
482 |
#: app/features/fes/form.php:251 app/features/ix.php:3506
|
483 |
#: app/features/ix.php:3547 app/features/ix/import_g_calendar.php:38
|
484 |
#: app/features/mec/dashboard.php:401
|
501 |
msgstr ""
|
502 |
|
503 |
#: app/features/events.php:551 app/features/events.php:643
|
504 |
+
#: app/features/events.php:1707 app/features/events.php:1766
|
505 |
+
#: app/features/events.php:1959 app/features/events.php:1998
|
506 |
#: app/features/fes/form.php:279 app/features/fes/form.php:319
|
507 |
msgid "AM"
|
508 |
msgstr ""
|
509 |
|
510 |
#: app/features/events.php:558 app/features/events.php:650
|
511 |
+
#: app/features/events.php:1714 app/features/events.php:1773
|
512 |
+
#: app/features/events.php:1960 app/features/events.php:1999
|
513 |
#: app/features/fes/form.php:280 app/features/fes/form.php:320
|
514 |
msgid "PM"
|
515 |
msgstr ""
|
516 |
|
517 |
#: app/features/events.php:565 app/features/events.php:570
|
518 |
+
#: app/features/events.php:3305 app/features/events.php:3494
|
519 |
+
#: app/features/events.php:3536 app/features/fes/form.php:287
|
520 |
#: app/features/fes/form.php:291 app/features/ix.php:3506
|
521 |
#: app/features/ix.php:3547 app/features/ix/import_g_calendar.php:44
|
522 |
#: app/features/mec/dashboard.php:402
|
523 |
msgid "End Date"
|
524 |
msgstr ""
|
525 |
|
526 |
+
#: app/features/events.php:665 app/features/fes/form.php:326
|
527 |
msgid "All Day Event"
|
528 |
msgstr ""
|
529 |
|
530 |
+
#: app/features/events.php:675 app/features/fes/form.php:329
|
531 |
msgid "Hide Event Time"
|
532 |
msgstr ""
|
533 |
|
534 |
+
#: app/features/events.php:685 app/features/fes/form.php:332
|
535 |
msgid "Hide Event End Time"
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: app/features/events.php:690 app/features/events.php:694
|
539 |
#: app/features/fes/form.php:336
|
540 |
msgid "Time Comment"
|
541 |
msgstr ""
|
542 |
|
543 |
+
#: app/features/events.php:695 app/features/fes/form.php:337
|
544 |
msgid ""
|
545 |
"It shows next to event time on single event page. You can insert Timezone "
|
546 |
"etc. in this field."
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: app/features/events.php:697 app/features/events.php:818
|
550 |
+
#: app/features/events.php:1118 app/features/events.php:1195
|
551 |
+
#: app/features/events.php:1494 app/features/events.php:1586
|
552 |
+
#: app/features/events.php:1794 app/features/events.php:1809
|
553 |
+
#: app/features/events.php:2018 app/features/events.php:2031
|
554 |
+
#: app/features/events.php:2182 app/features/events.php:2218
|
555 |
+
#: app/features/events.php:2316 app/features/events.php:2331
|
556 |
+
#: app/features/events.php:2361 app/features/events.php:2374
|
557 |
#: app/features/fes/form.php:641 app/features/locations.php:301
|
558 |
#: app/features/mec/booking.php:108 app/features/mec/booking.php:158
|
559 |
#: app/features/mec/booking.php:171 app/features/mec/booking.php:187
|
619 |
#: app/features/mec/single.php:125 app/features/mec/single.php:178
|
620 |
#: app/features/mec/styling.php:203 app/features/mec/styling.php:220
|
621 |
#: app/features/mec/styling.php:233 app/features/organizers.php:272
|
622 |
+
#: app/skins/single.php:678 app/skins/single/default.php:141
|
623 |
#: app/skins/single/default.php:364 app/skins/single/m1.php:206
|
624 |
#: app/skins/single/m2.php:133 app/skins/single/modern.php:141
|
625 |
msgid "Read More"
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: app/features/events.php:705
|
629 |
msgid "Repeating"
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: app/features/events.php:714
|
633 |
msgid "Event Repeating (Recurring events)"
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: app/features/events.php:718 app/features/fes/form.php:347
|
637 |
msgid "Repeats"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: app/features/events.php:726 app/features/fes/form.php:349
|
641 |
#: app/features/mec/dashboard.php:404
|
642 |
#: app/skins/default_full_calendar/tpl.php:69
|
643 |
#: app/skins/full_calendar/tpl.php:110
|
644 |
msgid "Daily"
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: app/features/events.php:733 app/features/fes/form.php:350
|
648 |
msgid "Every Weekday"
|
649 |
msgstr ""
|
650 |
|
651 |
+
#: app/features/events.php:740 app/features/fes/form.php:351
|
652 |
msgid "Every Weekend"
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: app/features/events.php:747 app/features/fes/form.php:352
|
656 |
msgid "Certain Weekdays"
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: app/features/events.php:754 app/features/fes/form.php:353
|
660 |
#: app/skins/default_full_calendar/tpl.php:68
|
661 |
#: app/skins/full_calendar/tpl.php:109
|
662 |
msgid "Weekly"
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: app/features/events.php:761 app/features/fes/form.php:354
|
666 |
#: app/features/mec/dashboard.php:405
|
667 |
#: app/skins/default_full_calendar/tpl.php:67
|
668 |
#: app/skins/full_calendar/tpl.php:108
|
669 |
msgid "Monthly"
|
670 |
msgstr ""
|
671 |
|
672 |
+
#: app/features/events.php:768 app/features/fes/form.php:355
|
673 |
#: app/features/mec/dashboard.php:406
|
674 |
#: app/skins/default_full_calendar/tpl.php:66
|
675 |
#: app/skins/full_calendar/tpl.php:107
|
676 |
msgid "Yearly"
|
677 |
msgstr ""
|
678 |
|
679 |
+
#: app/features/events.php:775 app/features/fes/form.php:356
|
680 |
msgid "Custom Days"
|
681 |
msgstr ""
|
682 |
|
683 |
+
#: app/features/events.php:782 app/features/fes/form.php:357
|
684 |
msgid "Advanced"
|
685 |
msgstr ""
|
686 |
|
687 |
+
#: app/features/events.php:787 app/features/fes/form.php:361
|
688 |
msgid "Repeat Interval"
|
689 |
msgstr ""
|
690 |
|
691 |
+
#: app/features/events.php:789 app/features/fes/form.php:362
|
692 |
msgid "Repeat interval"
|
693 |
msgstr ""
|
694 |
|
695 |
+
#: app/features/events.php:793 app/features/fes/form.php:365
|
696 |
msgid "Week Days"
|
697 |
msgstr ""
|
698 |
|
699 |
+
#: app/features/events.php:808 app/features/events.php:1878
|
700 |
+
#: app/features/events.php:1906 app/features/events.php:2086
|
701 |
#: app/features/fes/form.php:377 app/features/ix/import_f_calendar.php:42
|
702 |
#: app/features/ix/import_g_calendar.php:51
|
703 |
#: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
|
704 |
msgid "Start"
|
705 |
msgstr ""
|
706 |
|
707 |
+
#: app/features/events.php:810 app/features/events.php:1882
|
708 |
+
#: app/features/events.php:1910 app/features/events.php:2090
|
709 |
#: app/features/fes/form.php:378
|
710 |
msgid "End"
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: app/features/events.php:812 app/features/events.php:1189
|
714 |
+
#: app/features/events.php:1300 app/features/events.php:1405
|
715 |
+
#: app/features/events.php:1861 app/features/events.php:2075
|
716 |
+
#: app/features/events.php:2155 app/features/events.php:2288
|
717 |
#: app/features/fes/form.php:379 app/features/fes/form.php:855
|
718 |
msgid "Add"
|
719 |
msgstr ""
|
720 |
|
721 |
+
#: app/features/events.php:815
|
722 |
msgid "Custom Days Repeating"
|
723 |
msgstr ""
|
724 |
|
725 |
+
#: app/features/events.php:816
|
726 |
msgid ""
|
727 |
"Add certain days to event occurrence dates. If you have single day event, "
|
728 |
"start and end date should be the same, If you have multiple day event the "
|
729 |
"start and end dates must be commensurate with the initial date."
|
730 |
msgstr ""
|
731 |
|
732 |
+
#: app/features/events.php:852 app/features/fes/form.php:405
|
733 |
msgid "First"
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: app/features/events.php:894 app/features/fes/form.php:447
|
737 |
msgid "Second"
|
738 |
msgstr ""
|
739 |
|
740 |
+
#: app/features/events.php:936 app/features/fes/form.php:489
|
741 |
msgid "Third"
|
742 |
msgstr ""
|
743 |
|
744 |
+
#: app/features/events.php:978 app/features/fes/form.php:531
|
745 |
msgid "Fourth"
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: app/features/events.php:1020 app/features/fes/form.php:573
|
749 |
msgid "Last"
|
750 |
msgstr ""
|
751 |
|
752 |
+
#: app/features/events.php:1067 app/features/fes/form.php:619
|
753 |
msgid "Ends Repeat"
|
754 |
msgstr ""
|
755 |
|
756 |
+
#: app/features/events.php:1079 app/features/fes/form.php:623
|
757 |
msgid "Never"
|
758 |
msgstr ""
|
759 |
|
760 |
+
#: app/features/events.php:1091 app/features/fes/form.php:628
|
761 |
msgid "On"
|
762 |
msgstr ""
|
763 |
|
764 |
+
#: app/features/events.php:1107 app/features/fes/form.php:635
|
765 |
msgid "After"
|
766 |
msgstr ""
|
767 |
|
768 |
+
#: app/features/events.php:1111 app/features/events.php:1115
|
769 |
#: app/features/fes/form.php:637 app/features/fes/form.php:640
|
770 |
msgid "Occurrences times"
|
771 |
msgstr ""
|
772 |
|
773 |
+
#: app/features/events.php:1116 app/features/fes/form.php:641
|
774 |
msgid ""
|
775 |
"The event will finish after certain repeats. For example if you set it to "
|
776 |
"10, the event will finish after 10 repeats."
|
777 |
msgstr ""
|
778 |
|
779 |
+
#: app/features/events.php:1131 app/features/fes/form.php:654
|
780 |
msgid "Show only one occurrence of this event"
|
781 |
msgstr ""
|
782 |
|
783 |
+
#: app/features/events.php:1151 app/features/events.php:3494
|
784 |
+
#: app/features/events.php:3536 app/features/fes/form.php:727
|
785 |
#: app/features/ix.php:3506 app/features/ix.php:3547
|
786 |
#: app/features/mec/settings.php:664 app/libraries/main.php:5367
|
787 |
#: app/widgets/single.php:103
|
788 |
msgid "Event Cost"
|
789 |
msgstr ""
|
790 |
|
791 |
+
#: app/features/events.php:1176
|
792 |
msgid "Exceptional Days (Exclude Dates)"
|
793 |
msgstr ""
|
794 |
|
795 |
+
#: app/features/events.php:1182 app/features/events.php:1192
|
796 |
msgid "Exclude certain days"
|
797 |
msgstr ""
|
798 |
|
799 |
+
#: app/features/events.php:1187 app/features/events.php:2522
|
800 |
#: app/features/fes.php:223 app/features/mec/booking.php:500
|
801 |
#: app/features/profile/profile.php:53 app/libraries/main.php:2253
|
802 |
+
#: app/libraries/main.php:2901 app/modules/booking/steps/tickets.php:23
|
803 |
+
#: app/modules/next-event/details.php:93 app/skins/single.php:652
|
804 |
#: app/skins/single/default.php:85 app/skins/single/default.php:308
|
805 |
#: app/skins/single/m1.php:20 app/skins/single/modern.php:175
|
806 |
msgid "Date"
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: app/features/events.php:1193
|
810 |
msgid ""
|
811 |
"Exclude certain days from event occurrence dates. Please note that you can "
|
812 |
"exclude only single day occurrences and you cannot exclude one day from "
|
813 |
"multiple day occurrences."
|
814 |
msgstr ""
|
815 |
|
816 |
+
#: app/features/events.php:1247 app/libraries/render.php:506
|
817 |
msgid "Day 1"
|
818 |
msgstr ""
|
819 |
|
820 |
+
#: app/features/events.php:1273
|
821 |
msgid "Add Day"
|
822 |
msgstr ""
|
823 |
|
824 |
+
#: app/features/events.php:1274
|
825 |
msgid ""
|
826 |
"Add new days for schedule. For example if your event is multiple days, you "
|
827 |
"can add a different schedule for each day!"
|
828 |
msgstr ""
|
829 |
|
830 |
+
#: app/features/events.php:1281
|
831 |
#, php-format
|
832 |
msgid "Day %s"
|
833 |
msgstr ""
|
834 |
|
835 |
+
#: app/features/events.php:1285 app/features/events.php:1324
|
836 |
+
#: app/features/events.php:1359 app/features/events.php:1391
|
837 |
+
#: app/features/events.php:1420 app/features/events.php:2303
|
838 |
+
#: app/features/events.php:2350 app/features/events.php:3300
|
839 |
+
#: app/features/events.php:3494 app/features/events.php:3536
|
840 |
#: app/features/fes/form.php:236 app/features/ix.php:3506
|
841 |
#: app/features/ix.php:3547 app/features/mec/booking.php:384
|
842 |
#: app/features/mec/booking.php:416 app/features/mec/styling.php:115
|
843 |
msgid "Title"
|
844 |
msgstr ""
|
845 |
|
846 |
+
#: app/features/events.php:1294 app/features/events.php:1331
|
847 |
+
#: app/features/events.php:1364 app/features/events.php:1399
|
848 |
+
#: app/features/events.php:1425 app/features/events.php:1892
|
849 |
+
#: app/features/events.php:1918 app/features/events.php:2096
|
850 |
+
#: app/features/events.php:2195 app/features/events.php:2231
|
851 |
+
#: app/features/events.php:2338 app/features/events.php:2380
|
852 |
#: app/features/mec/booking.php:327 app/features/mec/booking.php:356
|
853 |
#: app/features/mec/booking.php:407 app/features/mec/booking.php:439
|
854 |
#: app/libraries/main.php:2762 app/libraries/main.php:2792
|
861 |
msgid "Remove"
|
862 |
msgstr ""
|
863 |
|
864 |
+
#: app/features/events.php:1301 app/features/events.php:1406
|
865 |
msgid "Add new hourly schedule row"
|
866 |
msgstr ""
|
867 |
|
868 |
+
#: app/features/events.php:1316 app/features/events.php:1353
|
869 |
+
#: app/features/events.php:1415
|
870 |
msgid "From e.g. 8:15"
|
871 |
msgstr ""
|
872 |
|
873 |
+
#: app/features/events.php:1320 app/features/events.php:1356
|
874 |
+
#: app/features/events.php:1417
|
875 |
msgid "To e.g. 8:45"
|
876 |
msgstr ""
|
877 |
|
878 |
+
#: app/features/events.php:1328 app/features/events.php:1362
|
879 |
+
#: app/features/events.php:1423 app/features/events.php:1782
|
880 |
+
#: app/features/events.php:2007
|
881 |
msgid "Description"
|
882 |
msgstr ""
|
883 |
|
884 |
+
#: app/features/events.php:1334 app/features/events.php:1367
|
885 |
+
#: app/features/events.php:1428 app/features/fes/form.php:851
|
886 |
#: app/features/mec.php:411 app/features/mec/modules.php:52
|
887 |
#: app/features/mec/settings.php:712 app/features/speakers.php:62
|
888 |
#: app/libraries/main.php:565 app/libraries/main.php:5342
|
890 |
msgid "Speakers"
|
891 |
msgstr ""
|
892 |
|
893 |
+
#: app/features/events.php:1387 app/features/events.php:1395
|
894 |
msgid "New Day"
|
895 |
msgstr ""
|
896 |
|
897 |
+
#: app/features/events.php:1459 app/features/fes/form.php:704
|
898 |
#: app/features/mec/settings.php:658
|
899 |
msgid "Event Links"
|
900 |
msgstr ""
|
901 |
|
902 |
+
#: app/features/events.php:1462 app/features/events.php:1468
|
903 |
#: app/features/fes/form.php:706 app/libraries/main.php:5365
|
904 |
msgid "Event Link"
|
905 |
msgstr ""
|
906 |
|
907 |
+
#: app/features/events.php:1465 app/features/events.php:1481
|
908 |
#: app/features/fes/form.php:707 app/features/fes/form.php:712
|
909 |
msgid "eg. http://yoursite.com/your-event"
|
910 |
msgstr ""
|
911 |
|
912 |
+
#: app/features/events.php:1469
|
913 |
msgid ""
|
914 |
"If you fill it, it will be replaced instead of default event page link. "
|
915 |
"Insert full link including http(s):// - Also, if you use advertising URL, "
|
916 |
"can use URL Shortener"
|
917 |
msgstr ""
|
918 |
|
919 |
+
#: app/features/events.php:1471
|
920 |
msgid "URL Shortener"
|
921 |
msgstr ""
|
922 |
|
923 |
+
#: app/features/events.php:1478 app/features/events.php:1491
|
924 |
#: app/features/fes/form.php:711 app/libraries/main.php:5366
|
925 |
+
#: app/skins/single.php:677 app/skins/single/default.php:140
|
926 |
#: app/skins/single/default.php:363 app/skins/single/m1.php:205
|
927 |
#: app/skins/single/m2.php:132 app/skins/single/modern.php:140
|
928 |
#: app/widgets/single.php:107
|
929 |
msgid "More Info"
|
930 |
msgstr ""
|
931 |
|
932 |
+
#: app/features/events.php:1484 app/features/fes/form.php:713
|
933 |
msgid "More Information"
|
934 |
msgstr ""
|
935 |
|
936 |
+
#: app/features/events.php:1486 app/features/fes/form.php:715
|
937 |
msgid "Current Window"
|
938 |
msgstr ""
|
939 |
|
940 |
+
#: app/features/events.php:1487 app/features/fes/form.php:716
|
941 |
msgid "New Window"
|
942 |
msgstr ""
|
943 |
|
944 |
+
#: app/features/events.php:1492 app/features/fes/form.php:718
|
945 |
msgid ""
|
946 |
"If you fill it, it will be shown in event details page as an optional link. "
|
947 |
"Insert full link including http(s)://"
|
948 |
msgstr ""
|
949 |
|
950 |
+
#: app/features/events.php:1567 app/features/events.php:1582
|
951 |
msgid "Total booking limits"
|
952 |
msgstr ""
|
953 |
|
954 |
+
#: app/features/events.php:1579 app/features/events.php:1830
|
955 |
+
#: app/features/events.php:2045 app/modules/booking/default.php:85
|
956 |
+
#: app/modules/booking/steps/tickets.php:43
|
957 |
#: app/skins/available_spot/tpl.php:158
|
958 |
msgid "Unlimited"
|
959 |
msgstr ""
|
960 |
|
961 |
+
#: app/features/events.php:1585
|
962 |
msgid ""
|
963 |
"If you want to set a limit to all tickets, uncheck this checkbox and put a "
|
964 |
"limitation number."
|
965 |
msgstr ""
|
966 |
|
967 |
+
#: app/features/events.php:1587
|
968 |
msgid "Read About A Booking System"
|
969 |
msgstr ""
|
970 |
|
971 |
+
#: app/features/events.php:1595
|
972 |
msgid "100"
|
973 |
msgstr ""
|
974 |
|
975 |
+
#: app/features/events.php:1600
|
976 |
msgid "Total user booking limits"
|
977 |
msgstr ""
|
978 |
|
979 |
+
#: app/features/events.php:1612 app/features/events.php:2144
|
980 |
+
#: app/features/events.php:2276 app/features/events.php:2464
|
981 |
msgid "Inherit from global options"
|
982 |
msgstr ""
|
983 |
|
984 |
+
#: app/features/events.php:1615
|
985 |
msgid "12"
|
986 |
msgstr ""
|
987 |
|
988 |
+
#: app/features/events.php:1634 app/libraries/book.php:60
|
989 |
+
#: app/libraries/main.php:5370 app/modules/booking/steps/tickets.php:43
|
990 |
msgid "Tickets"
|
991 |
msgstr ""
|
992 |
|
993 |
+
#: app/features/events.php:1637
|
994 |
msgid ""
|
995 |
"You're translating an event so MEC will use the original event for tickets "
|
996 |
"and booking. You can only translate the ticket name and description. Please "
|
997 |
"define exact tickets that you defined in the original event here."
|
998 |
msgstr ""
|
999 |
|
1000 |
+
#: app/features/events.php:1642
|
1001 |
msgid "Add Ticket"
|
1002 |
msgstr ""
|
1003 |
|
1004 |
+
#: app/features/events.php:1656 app/features/events.php:1932
|
1005 |
msgid "Ticket Name"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
+
#: app/features/events.php:1661 app/features/events.php:1936
|
1009 |
+
#: app/features/events.php:3494 app/features/events.php:3536
|
1010 |
#: app/features/ix.php:3506 app/features/ix.php:3547
|
1011 |
msgid "Start Time"
|
1012 |
msgstr ""
|
1013 |
|
1014 |
+
#: app/features/events.php:1720 app/features/events.php:1966
|
1015 |
+
#: app/features/events.php:3494 app/features/events.php:3536
|
1016 |
#: app/features/ix.php:3506 app/features/ix.php:3547
|
1017 |
msgid "End Time"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
+
#: app/features/events.php:1787 app/features/events.php:1791
|
1021 |
+
#: app/features/events.php:1886 app/features/events.php:1913
|
1022 |
+
#: app/features/events.php:2012 app/features/events.php:2015
|
1023 |
+
#: app/features/events.php:2092 app/features/events.php:2309
|
1024 |
+
#: app/features/events.php:2313 app/features/events.php:2355
|
1025 |
+
#: app/features/events.php:2358 app/features/mec/booking.php:388
|
1026 |
#: app/features/mec/booking.php:391 app/features/mec/booking.php:420
|
1027 |
#: app/features/mec/booking.php:423
|
1028 |
msgid "Price"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
+
#: app/features/events.php:1792 app/features/events.php:2016
|
1032 |
msgid "Insert 0 for free ticket. Only numbers please."
|
1033 |
msgstr ""
|
1034 |
|
1035 |
+
#: app/features/events.php:1801 app/features/events.php:1806
|
1036 |
+
#: app/features/events.php:2025 app/features/events.php:2028
|
1037 |
msgid "Price Label"
|
1038 |
msgstr ""
|
1039 |
|
1040 |
+
#: app/features/events.php:1807 app/features/events.php:2029
|
1041 |
msgid "For showing on website. e.g. $15"
|
1042 |
msgstr ""
|
1043 |
|
1044 |
+
#: app/features/events.php:1817 app/features/events.php:2039
|
1045 |
msgid "Available Tickets"
|
1046 |
msgstr ""
|
1047 |
|
1048 |
+
#: app/features/events.php:1834 app/features/events.php:2049
|
1049 |
msgid "Minimum Ticket e.g. 3"
|
1050 |
msgstr ""
|
1051 |
|
1052 |
+
#: app/features/events.php:1837 app/features/events.php:2052
|
1053 |
msgid "MinimumTicket"
|
1054 |
msgstr ""
|
1055 |
|
1056 |
+
#: app/features/events.php:1839 app/features/events.php:2054
|
1057 |
msgid "Set a number for the minimum ticket reservation"
|
1058 |
msgstr ""
|
1059 |
|
1060 |
+
#: app/features/events.php:1847 app/features/events.php:2062
|
1061 |
msgid "e.g. 0"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
+
#: app/features/events.php:1849 app/features/events.php:2064
|
1065 |
msgid "Day"
|
1066 |
msgstr ""
|
1067 |
|
1068 |
+
#: app/features/events.php:1850 app/features/events.php:2065
|
1069 |
msgid "Hour"
|
1070 |
msgstr ""
|
1071 |
|
1072 |
+
#: app/features/events.php:1852 app/features/events.php:2067
|
1073 |
#, php-format
|
1074 |
msgid "Stop selling ticket %s before event start."
|
1075 |
msgstr ""
|
1076 |
|
1077 |
+
#: app/features/events.php:1859 app/features/events.php:2073
|
1078 |
msgid "Price per Date"
|
1079 |
msgstr ""
|
1080 |
|
1081 |
+
#: app/features/events.php:1890 app/features/events.php:1916
|
1082 |
+
#: app/features/events.php:2094 app/features/labels.php:60
|
1083 |
#: app/features/mec/meta_boxes/display_options.php:960
|
1084 |
#: app/features/mec/meta_boxes/search_form.php:66
|
1085 |
#: app/features/mec/meta_boxes/search_form.php:128
|
1086 |
#: app/features/mec/meta_boxes/search_form.php:190
|
1087 |
+
#: app/features/mec/meta_boxes/search_form.php:252
|
1088 |
+
#: app/features/mec/meta_boxes/search_form.php:314
|
1089 |
+
#: app/features/mec/meta_boxes/search_form.php:376
|
1090 |
+
#: app/features/mec/meta_boxes/search_form.php:438
|
1091 |
+
#: app/features/mec/meta_boxes/search_form.php:493
|
1092 |
+
#: app/features/mec/meta_boxes/search_form.php:555
|
1093 |
+
#: app/features/mec/meta_boxes/search_form.php:617
|
1094 |
+
#: app/features/mec/meta_boxes/search_form.php:715
|
1095 |
#: app/features/mec/settings.php:840 app/features/mec/single.php:250
|
1096 |
#: app/libraries/skins.php:995
|
1097 |
msgid "Label"
|
1098 |
msgstr ""
|
1099 |
|
1100 |
+
#: app/features/events.php:2132
|
1101 |
msgid "Fees"
|
1102 |
msgstr ""
|
1103 |
|
1104 |
+
#: app/features/events.php:2169 app/features/events.php:2207
|
1105 |
#: app/features/mec/booking.php:307 app/features/mec/booking.php:336
|
1106 |
msgid "Fee Title"
|
1107 |
msgstr ""
|
1108 |
|
1109 |
+
#: app/features/events.php:2175 app/features/events.php:2179
|
1110 |
+
#: app/features/events.php:2212 app/features/events.php:2215
|
1111 |
#: app/features/mec/booking.php:311 app/features/mec/booking.php:314
|
1112 |
#: app/features/mec/booking.php:340 app/features/mec/booking.php:343
|
1113 |
msgid "Amount"
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#: app/features/events.php:2180 app/features/events.php:2216
|
1117 |
#: app/features/mec/booking.php:315 app/features/mec/booking.php:344
|
1118 |
msgid ""
|
1119 |
"Fee amount, considered as fixed amount if you set the type to amount "
|
1120 |
"otherwise considered as percentage"
|
1121 |
msgstr ""
|
1122 |
|
1123 |
+
#: app/features/events.php:2189 app/features/events.php:2225
|
1124 |
#: app/features/mec/booking.php:322 app/features/mec/booking.php:351
|
1125 |
msgid "Percent"
|
1126 |
msgstr ""
|
1127 |
|
1128 |
+
#: app/features/events.php:2190 app/features/events.php:2226
|
1129 |
#: app/features/mec/booking.php:323 app/features/mec/booking.php:352
|
1130 |
msgid "Amount (Per Ticket)"
|
1131 |
msgstr ""
|
1132 |
|
1133 |
+
#: app/features/events.php:2191 app/features/events.php:2227
|
1134 |
#: app/features/mec/booking.php:324 app/features/mec/booking.php:353
|
1135 |
msgid "Amount (Per Booking)"
|
1136 |
msgstr ""
|
1137 |
|
1138 |
+
#: app/features/events.php:2264 app/features/mec/settings.php:736
|
1139 |
msgid "Ticket Variations / Options"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
+
#: app/features/events.php:2314 app/features/events.php:2359
|
1143 |
#: app/features/mec/booking.php:392 app/features/mec/booking.php:424
|
1144 |
msgid "Option Price"
|
1145 |
msgstr ""
|
1146 |
|
1147 |
+
#: app/features/events.php:2324 app/features/events.php:2328
|
1148 |
+
#: app/features/events.php:2368 app/features/events.php:2371
|
1149 |
#: app/features/mec/booking.php:398 app/features/mec/booking.php:401
|
1150 |
#: app/features/mec/booking.php:430 app/features/mec/booking.php:433
|
1151 |
msgid "Maximum Per Ticket"
|
1152 |
msgstr ""
|
1153 |
|
1154 |
+
#: app/features/events.php:2329 app/features/events.php:2372
|
1155 |
#: app/features/mec/booking.php:402 app/features/mec/booking.php:434
|
1156 |
msgid "Maximum Per Ticket. Leave it blank for unlimited."
|
1157 |
msgstr ""
|
1158 |
|
1159 |
+
#: app/features/events.php:25
|