Version Description
7 October 2020 = - Added: An option to change the countdown method per event - Added: A new option to WooCommerce system to disable/enable MEC booking form (pro) - Added: A new ability to resend booking verification email (pro) - Added: An ability to resend booking confirmation email (pro) - Added: An option to disable/enable payment gateways per event (pro) - Added: Next/Previous module - Improved: The WooCommerce system to automatically load event featured image if the ticket product doesnt have any image (pro) - Improved: The WooCommerce system to consider coupon and price after discount (pro) - Improved: The WooCommerce system to display booking date next to the ticket name (pro) - Fixed: An issue in showing date labels - Fixed: An issue in yearly view to automatically load the event if hidden (pro) - Fixed: An issue in the default value of repeat interval - Fixed: A jQuery issue
Release Info
Developer | webnus |
Plugin | Modern Events Calendar Lite |
Version | 5.12.6 |
Comparing to | |
See all releases |
Code changes from version 5.12.5 to 5.12.6
- app/features/events.php +62 -10
- app/features/fes.php +2 -0
- app/features/fes/form.php +17 -0
- app/features/mec/booking.php +36 -4
- app/features/mec/single.php +42 -0
- app/features/update.php +32 -2
- app/features/wc.php +30 -0
- app/libraries/main.php +43 -8
- app/libraries/notifications.php +4 -3
- app/libraries/skins.php +87 -86
- app/libraries/wc.php +120 -21
- app/modules/booking/steps/checkout.php +13 -1
- app/modules/booking/steps/tickets.php +7 -3
- app/modules/countdown/details.php +6 -1
- app/skins/countdown/tpl.php +7 -2
- app/skins/single.php +126 -0
- app/skins/single/default.php +6 -2
- app/skins/single/modern.php +2 -0
- assets/css/frontend.css +62 -0
- assets/css/frontend.min.css +1 -1
- assets/js/backend.js +3 -3
- assets/js/frontend.js +43 -28
- assets/sql/install.sql +4 -3
- assets/sql/tables.sql +4 -3
- changelog.txt +16 -1
- languages/modern-events-calendar-lite-cs_CZ.mo +0 -0
- languages/modern-events-calendar-lite-cs_CZ.po +792 -683
- languages/modern-events-calendar-lite-de_DE.mo +0 -0
- languages/modern-events-calendar-lite-de_DE.po +780 -682
- languages/modern-events-calendar-lite-en_US.mo +0 -0
- languages/modern-events-calendar-lite-en_US.po +29 -28
@@ -463,6 +463,7 @@ class MEC_feature_events extends MEC_base
|
|
463 |
|
464 |
$repeat_status = get_post_meta($post->ID, 'mec_repeat_status', true);
|
465 |
$repeat_type = get_post_meta($post->ID, 'mec_repeat_type', true);
|
|
|
466 |
|
467 |
$repeat_interval = get_post_meta($post->ID, 'mec_repeat_interval', true);
|
468 |
if(trim($repeat_interval) == '' and in_array($repeat_type, array('daily', 'weekly'))) $repeat_interval = 1;
|
@@ -490,25 +491,28 @@ class MEC_feature_events extends MEC_base
|
|
490 |
|
491 |
$event_timezone = get_post_meta($post->ID, 'mec_timezone', true);
|
492 |
if(trim($event_timezone) == '') $event_timezone = 'global';
|
|
|
|
|
|
|
493 |
?>
|
494 |
<div class="mec-meta-box-fields" id="mec-date-time">
|
495 |
-
<?php if
|
496 |
<div id="mec_meta_box_fes_form" class="mec-event-tab-content">
|
497 |
<?php endif; ?>
|
498 |
-
<?php if
|
499 |
<div class="mec-event-note">
|
500 |
<h4><?php _e('Note for reviewer', 'modern-events-calendar-lite'); ?></h4>
|
501 |
<p><?php echo $note; ?></p>
|
502 |
</div>
|
503 |
<?php endif; ?>
|
504 |
-
<?php if
|
505 |
<div class="mec-guest-data">
|
506 |
<h4><?php _e('Guest Data', 'modern-events-calendar-lite'); ?></h4>
|
507 |
<p><strong><?php _e('Name', 'modern-events-calendar-lite'); ?>:</strong> <?php echo $fes_guest_name; ?></p>
|
508 |
<p><strong><?php _e('Email', 'modern-events-calendar-lite'); ?>:</strong> <?php echo $fes_guest_email; ?></p>
|
509 |
</div>
|
510 |
<?php endif; ?>
|
511 |
-
<?php if
|
512 |
</div>
|
513 |
<?php endif; ?>
|
514 |
<?php do_action('start_mec_custom_fields', $post); ?>
|
@@ -622,6 +626,19 @@ class MEC_feature_events extends MEC_base
|
|
622 |
</div>
|
623 |
<?php endif; ?>
|
624 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
625 |
</div>
|
626 |
<div id="mec_meta_box_repeat_form" class="mec-event-tab-content">
|
627 |
<h4><?php _e('Repeating', 'modern-events-calendar-lite'); ?></h4>
|
@@ -715,7 +732,7 @@ class MEC_feature_events extends MEC_base
|
|
715 |
<label class="mec-col-3"><?php _e('Week Days', 'modern-events-calendar-lite'); ?></label>
|
716 |
<?php
|
717 |
$weekdays = $this->main->get_weekday_i18n_labels();
|
718 |
-
foreach($weekdays as $weekday)
|
719 |
?>
|
720 |
<label>
|
721 |
<input type="checkbox" name="mec[date][repeat][certain_weekdays][]"
|
@@ -1534,9 +1551,11 @@ class MEC_feature_events extends MEC_base
|
|
1534 |
<div class="mec-form-row">
|
1535 |
<label class="mec-col-2"
|
1536 |
for="mec_read_more_link"><?php echo $this->main->m('read_more_link', __('Event Link', 'modern-events-calendar-lite')); ?></label>
|
1537 |
-
<input class="mec-col-
|
1538 |
value="<?php echo esc_attr($read_more); ?>"
|
1539 |
placeholder="<?php _e('eg. http://yoursite.com/your-event', 'modern-events-calendar-lite'); ?>"/>
|
|
|
|
|
1540 |
<span class="mec-tooltip">
|
1541 |
<div class="box top">
|
1542 |
<h5 class="title"><?php _e('Event Link', 'modern-events-calendar-lite'); ?></h5>
|
@@ -1550,7 +1569,7 @@ class MEC_feature_events extends MEC_base
|
|
1550 |
<div class="mec-form-row">
|
1551 |
<label class="mec-col-2"
|
1552 |
for="mec_more_info_link"><?php echo $this->main->m('more_info_link', __('More Info', 'modern-events-calendar-lite')); ?></label>
|
1553 |
-
<input class="mec-col-
|
1554 |
value="<?php echo esc_attr($more_info); ?>"
|
1555 |
placeholder="<?php _e('eg. http://yoursite.com/your-event', 'modern-events-calendar-lite'); ?>"/>
|
1556 |
<input class="mec-col-2" type="text" name="mec[more_info_title]" id="mec_more_info_title"
|
@@ -1582,17 +1601,17 @@ class MEC_feature_events extends MEC_base
|
|
1582 |
*/
|
1583 |
public function meta_box_booking($post)
|
1584 |
{
|
1585 |
-
$gateway_settings = $this->main->get_gateways_options()
|
1586 |
?>
|
1587 |
<div class="mec-add-booking-tabs-wrap">
|
1588 |
<div class="mec-add-booking-tabs-left">
|
1589 |
<a class="mec-add-booking-tabs-link mec-tab-active" data-href="mec_meta_box_booking_options_form_1" href="#"><?php echo esc_html__('Booking Options','modern-events-calendar-lite'); ?></a>
|
1590 |
<a class="mec-add-booking-tabs-link" data-href="mec_meta_box_booking_options_form_2" href="#"><?php echo esc_html__('Total User Booking Limits','modern-events-calendar-lite'); ?></a>
|
1591 |
<a class="mec-add-booking-tabs-link" data-href="mec-tickets" href="#"><?php echo esc_html__('Tickets','modern-events-calendar-lite'); ?></a>
|
1592 |
-
<?php if(isset($this->settings['taxes_fees_status']) and $this->settings['taxes_fees_status'])
|
1593 |
<a class="mec-add-booking-tabs-link" data-href="mec-fees" href="#"><?php echo esc_html__('Fees','modern-events-calendar-lite'); ?></a>
|
1594 |
<?php endif; ?>
|
1595 |
-
<?php if(isset($this->settings['ticket_variations_status']) and $this->settings['ticket_variations_status'])
|
1596 |
<a class="mec-add-booking-tabs-link" data-href="mec-ticket-variations" href="#"><?php echo esc_html__('Ticket Variations / Options','modern-events-calendar-lite'); ?></a>
|
1597 |
<?php endif; ?>
|
1598 |
<a class="mec-add-booking-tabs-link" data-href="mec-reg-fields" href="#"><?php echo esc_html__('Booking Form','modern-events-calendar-lite'); ?></a>
|
@@ -1602,6 +1621,9 @@ class MEC_feature_events extends MEC_base
|
|
1602 |
<?php if(isset($this->settings['downloadable_file_status']) and $this->settings['downloadable_file_status']): ?>
|
1603 |
<a class="mec-add-booking-tabs-link" data-href="mec-downloadable-file" href="#"><?php echo esc_html__('Downloadable File','modern-events-calendar-lite'); ?></a>
|
1604 |
<?php endif; ?>
|
|
|
|
|
|
|
1605 |
<?php do_action('add_event_booking_sections_left_menu'); ?>
|
1606 |
</div>
|
1607 |
<div class="mec-add-booking-tabs-right">
|
@@ -1642,6 +1664,16 @@ class MEC_feature_events extends MEC_base
|
|
1642 |
|
1643 |
global $wp_roles;
|
1644 |
$roles = $wp_roles->get_names();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1645 |
?>
|
1646 |
<div id="mec-booking">
|
1647 |
<div class="mec-meta-box-fields mec-booking-tab-content mec-tab-active" id="mec_meta_box_booking_options_form_1">
|
@@ -1727,6 +1759,24 @@ class MEC_feature_events extends MEC_base
|
|
1727 |
value="<?php echo esc_attr($bookings_user_limit); ?>" placeholder="<?php _e('12', 'modern-events-calendar-lite'); ?>"/>
|
1728 |
</div>
|
1729 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1730 |
</div>
|
1731 |
<?php
|
1732 |
}
|
@@ -2763,6 +2813,7 @@ class MEC_feature_events extends MEC_base
|
|
2763 |
$hide_end_time = isset($date['hide_end_time']) ? 1 : 0;
|
2764 |
$comment = isset($date['comment']) ? $date['comment'] : '';
|
2765 |
$timezone = (isset($_mec['timezone']) and trim($_mec['timezone']) != '') ? sanitize_text_field($_mec['timezone']) : 'global';
|
|
|
2766 |
|
2767 |
// Set start time and end time if event is all day
|
2768 |
if($allday == 1)
|
@@ -2818,6 +2869,7 @@ class MEC_feature_events extends MEC_base
|
|
2818 |
update_post_meta($post_id, 'mec_hide_end_time', $hide_end_time);
|
2819 |
update_post_meta($post_id, 'mec_comment', $comment);
|
2820 |
update_post_meta($post_id, 'mec_timezone', $timezone);
|
|
|
2821 |
|
2822 |
do_action('update_custom_post_meta', $date, $post_id);
|
2823 |
|
463 |
|
464 |
$repeat_status = get_post_meta($post->ID, 'mec_repeat_status', true);
|
465 |
$repeat_type = get_post_meta($post->ID, 'mec_repeat_type', true);
|
466 |
+
if(trim($repeat_type) == '') $repeat_type = 'daily';
|
467 |
|
468 |
$repeat_interval = get_post_meta($post->ID, 'mec_repeat_interval', true);
|
469 |
if(trim($repeat_interval) == '' and in_array($repeat_type, array('daily', 'weekly'))) $repeat_interval = 1;
|
491 |
|
492 |
$event_timezone = get_post_meta($post->ID, 'mec_timezone', true);
|
493 |
if(trim($event_timezone) == '') $event_timezone = 'global';
|
494 |
+
|
495 |
+
$countdown_method = get_post_meta($post->ID, 'mec_countdown_method', true);
|
496 |
+
if(trim($countdown_method) == '') $countdown_method = 'global';
|
497 |
?>
|
498 |
<div class="mec-meta-box-fields" id="mec-date-time">
|
499 |
+
<?php if(($note_visibility and trim($note)) || (trim($fes_guest_email) and trim($fes_guest_name))): ?>
|
500 |
<div id="mec_meta_box_fes_form" class="mec-event-tab-content">
|
501 |
<?php endif; ?>
|
502 |
+
<?php if($note_visibility and trim($note)): ?>
|
503 |
<div class="mec-event-note">
|
504 |
<h4><?php _e('Note for reviewer', 'modern-events-calendar-lite'); ?></h4>
|
505 |
<p><?php echo $note; ?></p>
|
506 |
</div>
|
507 |
<?php endif; ?>
|
508 |
+
<?php if(trim($fes_guest_email) and trim($fes_guest_name)): ?>
|
509 |
<div class="mec-guest-data">
|
510 |
<h4><?php _e('Guest Data', 'modern-events-calendar-lite'); ?></h4>
|
511 |
<p><strong><?php _e('Name', 'modern-events-calendar-lite'); ?>:</strong> <?php echo $fes_guest_name; ?></p>
|
512 |
<p><strong><?php _e('Email', 'modern-events-calendar-lite'); ?>:</strong> <?php echo $fes_guest_email; ?></p>
|
513 |
</div>
|
514 |
<?php endif; ?>
|
515 |
+
<?php if(($note_visibility and trim($note)) || (trim($fes_guest_email) and trim($fes_guest_name))): ?>
|
516 |
</div>
|
517 |
<?php endif; ?>
|
518 |
<?php do_action('start_mec_custom_fields', $post); ?>
|
626 |
</div>
|
627 |
<?php endif; ?>
|
628 |
|
629 |
+
<?php if(isset($this->settings['countdown_status']) and $this->settings['countdown_status']): ?>
|
630 |
+
<h4><?php _e('Countdown Method', 'modern-events-calendar-lite'); ?></h4>
|
631 |
+
<div class="mec-form-row">
|
632 |
+
<div class="mec-col-4">
|
633 |
+
<select name="mec[countdown_method]" id="mec_countdown_method" title="<?php esc_attr_e('Countdown Method', 'modern-events-calendar-lite'); ?>">
|
634 |
+
<option value="global" <?php if('global' == $countdown_method) echo 'selected="selected"'; ?>><?php _e('Inherit from global options', 'modern-events-calendar-lite'); ?></option>
|
635 |
+
<option value="start" <?php if('start' == $countdown_method) echo 'selected="selected"'; ?>><?php _e('Count to Event Start', 'modern-events-calendar-lite'); ?></option>
|
636 |
+
<option value="end" <?php if('end' == $countdown_method) echo 'selected="selected"'; ?>><?php _e('Count to Event End', 'modern-events-calendar-lite'); ?></option>
|
637 |
+
</select>
|
638 |
+
</div>
|
639 |
+
</div>
|
640 |
+
<?php endif; ?>
|
641 |
+
|
642 |
</div>
|
643 |
<div id="mec_meta_box_repeat_form" class="mec-event-tab-content">
|
644 |
<h4><?php _e('Repeating', 'modern-events-calendar-lite'); ?></h4>
|
732 |
<label class="mec-col-3"><?php _e('Week Days', 'modern-events-calendar-lite'); ?></label>
|
733 |
<?php
|
734 |
$weekdays = $this->main->get_weekday_i18n_labels();
|
735 |
+
foreach($weekdays as $weekday):
|
736 |
?>
|
737 |
<label>
|
738 |
<input type="checkbox" name="mec[date][repeat][certain_weekdays][]"
|
1551 |
<div class="mec-form-row">
|
1552 |
<label class="mec-col-2"
|
1553 |
for="mec_read_more_link"><?php echo $this->main->m('read_more_link', __('Event Link', 'modern-events-calendar-lite')); ?></label>
|
1554 |
+
<input class="mec-col-7" type="text" name="mec[read_more]" id="mec_read_more_link"
|
1555 |
value="<?php echo esc_attr($read_more); ?>"
|
1556 |
placeholder="<?php _e('eg. http://yoursite.com/your-event', 'modern-events-calendar-lite'); ?>"/>
|
1557 |
+
<?php do_action('extra_event_link', $post->ID); ?>
|
1558 |
+
|
1559 |
<span class="mec-tooltip">
|
1560 |
<div class="box top">
|
1561 |
<h5 class="title"><?php _e('Event Link', 'modern-events-calendar-lite'); ?></h5>
|
1569 |
<div class="mec-form-row">
|
1570 |
<label class="mec-col-2"
|
1571 |
for="mec_more_info_link"><?php echo $this->main->m('more_info_link', __('More Info', 'modern-events-calendar-lite')); ?></label>
|
1572 |
+
<input class="mec-col-3" type="text" name="mec[more_info]" id="mec_more_info_link"
|
1573 |
value="<?php echo esc_attr($more_info); ?>"
|
1574 |
placeholder="<?php _e('eg. http://yoursite.com/your-event', 'modern-events-calendar-lite'); ?>"/>
|
1575 |
<input class="mec-col-2" type="text" name="mec[more_info_title]" id="mec_more_info_title"
|
1601 |
*/
|
1602 |
public function meta_box_booking($post)
|
1603 |
{
|
1604 |
+
$gateway_settings = $this->main->get_gateways_options();
|
1605 |
?>
|
1606 |
<div class="mec-add-booking-tabs-wrap">
|
1607 |
<div class="mec-add-booking-tabs-left">
|
1608 |
<a class="mec-add-booking-tabs-link mec-tab-active" data-href="mec_meta_box_booking_options_form_1" href="#"><?php echo esc_html__('Booking Options','modern-events-calendar-lite'); ?></a>
|
1609 |
<a class="mec-add-booking-tabs-link" data-href="mec_meta_box_booking_options_form_2" href="#"><?php echo esc_html__('Total User Booking Limits','modern-events-calendar-lite'); ?></a>
|
1610 |
<a class="mec-add-booking-tabs-link" data-href="mec-tickets" href="#"><?php echo esc_html__('Tickets','modern-events-calendar-lite'); ?></a>
|
1611 |
+
<?php if(isset($this->settings['taxes_fees_status']) and $this->settings['taxes_fees_status']): ?>
|
1612 |
<a class="mec-add-booking-tabs-link" data-href="mec-fees" href="#"><?php echo esc_html__('Fees','modern-events-calendar-lite'); ?></a>
|
1613 |
<?php endif; ?>
|
1614 |
+
<?php if(isset($this->settings['ticket_variations_status']) and $this->settings['ticket_variations_status']): ?>
|
1615 |
<a class="mec-add-booking-tabs-link" data-href="mec-ticket-variations" href="#"><?php echo esc_html__('Ticket Variations / Options','modern-events-calendar-lite'); ?></a>
|
1616 |
<?php endif; ?>
|
1617 |
<a class="mec-add-booking-tabs-link" data-href="mec-reg-fields" href="#"><?php echo esc_html__('Booking Form','modern-events-calendar-lite'); ?></a>
|
1621 |
<?php if(isset($this->settings['downloadable_file_status']) and $this->settings['downloadable_file_status']): ?>
|
1622 |
<a class="mec-add-booking-tabs-link" data-href="mec-downloadable-file" href="#"><?php echo esc_html__('Downloadable File','modern-events-calendar-lite'); ?></a>
|
1623 |
<?php endif; ?>
|
1624 |
+
<?php if(isset($gateway_settings['gateways_per_event']) and $gateway_settings['gateways_per_event']): ?>
|
1625 |
+
<a class="mec-add-booking-tabs-link" data-href="mec_meta_box_booking_options_form_gateways_per_event" href="#"><?php echo esc_html__('Payment Gateways','modern-events-calendar-lite'); ?></a>
|
1626 |
+
<?php endif; ?>
|
1627 |
<?php do_action('add_event_booking_sections_left_menu'); ?>
|
1628 |
</div>
|
1629 |
<div class="mec-add-booking-tabs-right">
|
1664 |
|
1665 |
global $wp_roles;
|
1666 |
$roles = $wp_roles->get_names();
|
1667 |
+
|
1668 |
+
$gateway_settings = $this->main->get_gateways_options();
|
1669 |
+
$gateways = $this->main->get_gateways();
|
1670 |
+
|
1671 |
+
$enableds_gateways = array();
|
1672 |
+
foreach($gateways as $gateway)
|
1673 |
+
{
|
1674 |
+
if(!$gateway->enabled()) continue;
|
1675 |
+
$enableds_gateways[] = $gateway;
|
1676 |
+
}
|
1677 |
?>
|
1678 |
<div id="mec-booking">
|
1679 |
<div class="mec-meta-box-fields mec-booking-tab-content mec-tab-active" id="mec_meta_box_booking_options_form_1">
|
1759 |
value="<?php echo esc_attr($bookings_user_limit); ?>" placeholder="<?php _e('12', 'modern-events-calendar-lite'); ?>"/>
|
1760 |
</div>
|
1761 |
</div>
|
1762 |
+
|
1763 |
+
<?php if(isset($gateway_settings['gateways_per_event']) and $gateway_settings['gateways_per_event']): ?>
|
1764 |
+
<div class="mec-meta-box-fields mec-booking-tab-content" id="mec_meta_box_booking_options_form_gateways_per_event">
|
1765 |
+
<h4 class="mec-title"><?php _e('Disabled Gateways', 'modern-events-calendar-lite'); ?></h4>
|
1766 |
+
<p class="description"><?php esc_html_e("You can disable some of the following payment gateways by checking them otherwise they will be enabled.", 'modern-events-calendar-lite'); ?></p>
|
1767 |
+
|
1768 |
+
<?php foreach($enableds_gateways as $g): ?>
|
1769 |
+
<div class="mec-form-row" style="margin-bottom: 0;">
|
1770 |
+
<label class="mec-col-4">
|
1771 |
+
<input type="hidden" name="mec[booking][gateways_<?php echo $g->id(); ?>_disabled]" value="0"/>
|
1772 |
+
<input type="checkbox" value="1" name="mec[booking][gateways_<?php echo $g->id(); ?>_disabled]" <?php echo (isset($booking_options['gateways_'.$g->id().'_disabled']) and $booking_options['gateways_'.$g->id().'_disabled']) ? 'checked="checked"' : ''; ?> />
|
1773 |
+
<?php echo $g->title(); ?>
|
1774 |
+
</label>
|
1775 |
+
</div>
|
1776 |
+
<?php endforeach; ?>
|
1777 |
+
|
1778 |
+
</div>
|
1779 |
+
<?php endif; ?>
|
1780 |
</div>
|
1781 |
<?php
|
1782 |
}
|
2813 |
$hide_end_time = isset($date['hide_end_time']) ? 1 : 0;
|
2814 |
$comment = isset($date['comment']) ? $date['comment'] : '';
|
2815 |
$timezone = (isset($_mec['timezone']) and trim($_mec['timezone']) != '') ? sanitize_text_field($_mec['timezone']) : 'global';
|
2816 |
+
$countdown_method = (isset($_mec['countdown_method']) and trim($_mec['countdown_method']) != '') ? sanitize_text_field($_mec['countdown_method']) : 'global';
|
2817 |
|
2818 |
// Set start time and end time if event is all day
|
2819 |
if($allday == 1)
|
2869 |
update_post_meta($post_id, 'mec_hide_end_time', $hide_end_time);
|
2870 |
update_post_meta($post_id, 'mec_comment', $comment);
|
2871 |
update_post_meta($post_id, 'mec_timezone', $timezone);
|
2872 |
+
update_post_meta($post_id, 'mec_countdown_method', $countdown_method);
|
2873 |
|
2874 |
do_action('update_custom_post_meta', $date, $post_id);
|
2875 |
|
@@ -693,6 +693,7 @@ class MEC_feature_fes extends MEC_base
|
|
693 |
$hide_end_time = isset($date['hide_end_time']) ? 1 : 0;
|
694 |
$comment = isset($date['comment']) ? $date['comment'] : '';
|
695 |
$timezone = (isset($mec['timezone']) and trim($mec['timezone']) != '') ? sanitize_text_field($mec['timezone']) : 'global';
|
|
|
696 |
|
697 |
// Set start time and end time if event is all day
|
698 |
if($allday == 1)
|
@@ -762,6 +763,7 @@ class MEC_feature_fes extends MEC_base
|
|
762 |
update_post_meta($post_id, 'mec_hide_end_time', $hide_end_time);
|
763 |
update_post_meta($post_id, 'mec_comment', $comment);
|
764 |
update_post_meta($post_id, 'mec_timezone', $timezone);
|
|
|
765 |
update_post_meta($post_id, 'mec_repeat_status', $repeat_status);
|
766 |
update_post_meta($post_id, 'mec_repeat_type', $repeat_type);
|
767 |
update_post_meta($post_id, 'mec_repeat_interval', $repeat_interval);
|
693 |
$hide_end_time = isset($date['hide_end_time']) ? 1 : 0;
|
694 |
$comment = isset($date['comment']) ? $date['comment'] : '';
|
695 |
$timezone = (isset($mec['timezone']) and trim($mec['timezone']) != '') ? sanitize_text_field($mec['timezone']) : 'global';
|
696 |
+
$countdown_method = (isset($mec['countdown_method']) and trim($mec['countdown_method']) != '') ? sanitize_text_field($mec['countdown_method']) : 'global';
|
697 |
|
698 |
// Set start time and end time if event is all day
|
699 |
if($allday == 1)
|
763 |
update_post_meta($post_id, 'mec_hide_end_time', $hide_end_time);
|
764 |
update_post_meta($post_id, 'mec_comment', $comment);
|
765 |
update_post_meta($post_id, 'mec_timezone', $timezone);
|
766 |
+
update_post_meta($post_id, 'mec_countdown_method', $countdown_method);
|
767 |
update_post_meta($post_id, 'mec_repeat_status', $repeat_status);
|
768 |
update_post_meta($post_id, 'mec_repeat_type', $repeat_type);
|
769 |
update_post_meta($post_id, 'mec_repeat_interval', $repeat_interval);
|
@@ -221,6 +221,7 @@ $this->factory->params('footer', $javascript);
|
|
221 |
|
222 |
$repeat_status = get_post_meta($post_id, 'mec_repeat_status', true);
|
223 |
$repeat_type = get_post_meta($post_id, 'mec_repeat_type', true);
|
|
|
224 |
|
225 |
$repeat_interval = get_post_meta($post_id, 'mec_repeat_interval', true);
|
226 |
if(trim($repeat_interval) == '' and in_array($repeat_type, array('daily', 'weekly'))) $repeat_interval = 1;
|
@@ -245,6 +246,9 @@ $this->factory->params('footer', $javascript);
|
|
245 |
|
246 |
$event_timezone = get_post_meta($post->ID, 'mec_timezone', true);
|
247 |
if(trim($event_timezone) == '') $event_timezone = 'global';
|
|
|
|
|
|
|
248 |
?>
|
249 |
|
250 |
<div class="mec-fes-form-cntt">
|
@@ -343,6 +347,19 @@ $this->factory->params('footer', $javascript);
|
|
343 |
</div>
|
344 |
<?php endif; ?>
|
345 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
346 |
</div>
|
347 |
<div id="mec_meta_box_repeat_form">
|
348 |
<div class="mec-form-row">
|
221 |
|
222 |
$repeat_status = get_post_meta($post_id, 'mec_repeat_status', true);
|
223 |
$repeat_type = get_post_meta($post_id, 'mec_repeat_type', true);
|
224 |
+
if(trim($repeat_type) == '') $repeat_type = 'daily';
|
225 |
|
226 |
$repeat_interval = get_post_meta($post_id, 'mec_repeat_interval', true);
|
227 |
if(trim($repeat_interval) == '' and in_array($repeat_type, array('daily', 'weekly'))) $repeat_interval = 1;
|
246 |
|
247 |
$event_timezone = get_post_meta($post->ID, 'mec_timezone', true);
|
248 |
if(trim($event_timezone) == '') $event_timezone = 'global';
|
249 |
+
|
250 |
+
$countdown_method = get_post_meta($post->ID, 'mec_countdown_method', true);
|
251 |
+
if(trim($countdown_method) == '') $countdown_method = 'global';
|
252 |
?>
|
253 |
|
254 |
<div class="mec-fes-form-cntt">
|
347 |
</div>
|
348 |
<?php endif; ?>
|
349 |
|
350 |
+
<?php if(isset($this->settings['countdown_status']) and $this->settings['countdown_status']): ?>
|
351 |
+
<h4><?php _e('Countdown Method', 'modern-events-calendar-lite'); ?></h4>
|
352 |
+
<div class="mec-form-row">
|
353 |
+
<div class="mec-col-4">
|
354 |
+
<select name="mec[countdown_method]" id="mec_countdown_method" title="<?php esc_attr_e('Countdown Method', 'modern-events-calendar-lite'); ?>">
|
355 |
+
<option value="global" <?php if('global' == $countdown_method) echo 'selected="selected"'; ?>><?php _e('Inherit from global options', 'modern-events-calendar-lite'); ?></option>
|
356 |
+
<option value="start" <?php if('start' == $countdown_method) echo 'selected="selected"'; ?>><?php _e('Count to Event Start', 'modern-events-calendar-lite'); ?></option>
|
357 |
+
<option value="end" <?php if('end' == $countdown_method) echo 'selected="selected"'; ?>><?php _e('Count to Event End', 'modern-events-calendar-lite'); ?></option>
|
358 |
+
</select>
|
359 |
+
</div>
|
360 |
+
</div>
|
361 |
+
<?php endif; ?>
|
362 |
+
|
363 |
</div>
|
364 |
<div id="mec_meta_box_repeat_form">
|
365 |
<div class="mec-form-row">
|
@@ -804,7 +804,7 @@ $gateways_options = $this->main->get_gateways_options();
|
|
804 |
<input type="hidden" name="mec[settings][wc_status]" value="0" />
|
805 |
<input id="mec_gateways_wc_status" onchange="jQuery('#mec_payment_options_wrapper, #mec_gateways_wc_status_guide').toggleClass('w-hidden');" value="1" type="checkbox" name="mec[settings][wc_status]" <?php if(isset($settings['wc_status']) and $settings['wc_status']) echo 'checked="checked"'; ?> /> <?php _e('Use WooCommerce as Payment System', 'modern-events-calendar-lite'); ?>
|
806 |
</label>
|
807 |
-
<p><?php esc_html_e("By enabling this feature, tickets will be added to
|
808 |
<div id="mec_gateways_wc_status_guide" class="<?php if(!isset($settings['wc_status']) or (isset($settings['wc_status']) and !$settings['wc_status'])) echo 'w-hidden'; ?>">
|
809 |
<p><?php esc_html_e("You cannot use following MEC features so you should use WooCommerc and its addons if you need them.", 'modern-events-calendar-lite'); ?></p>
|
810 |
<ul>
|
@@ -815,8 +815,8 @@ $gateways_options = $this->main->get_gateways_options();
|
|
815 |
<li><?php esc_html_e('Taxes / Fees', 'modern-events-calendar-lite'); ?></li>
|
816 |
</ul>
|
817 |
|
818 |
-
<div class="mec-form-row">
|
819 |
-
<label class="mec-col-3" for="mec_gateways_wc_autoorder_complete"><?php _e('Automatically complete
|
820 |
<div class="mec-col-4">
|
821 |
<select id="mec_gateways_wc_autoorder_complete" name="mec[settings][wc_autoorder_complete]">
|
822 |
<option value="1" <?php echo((isset($settings['wc_autoorder_complete']) and $settings['wc_autoorder_complete'] == '1') ? 'selected="selected"' : ''); ?>><?php _e('Enabled', 'modern-events-calendar-lite'); ?></option>
|
@@ -824,7 +824,7 @@ $gateways_options = $this->main->get_gateways_options();
|
|
824 |
</select>
|
825 |
<span class="mec-tooltip">
|
826 |
<div class="box top">
|
827 |
-
<h5 class="title"><?php _e('Auto
|
828 |
<div class="content"><p><?php esc_attr_e('It applies only to the orders that are related to MEC.', 'modern-events-calendar-lite'); ?>
|
829 |
<a href="https://webnus.net/dox/modern-events-calendar/woocommerce/" target="_blank"><?php _e('Read More', 'modern-events-calendar-lite'); ?></a></p></div>
|
830 |
</div>
|
@@ -841,6 +841,23 @@ $gateways_options = $this->main->get_gateways_options();
|
|
841 |
</select>
|
842 |
</div>
|
843 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
844 |
</div>
|
845 |
</div>
|
846 |
</div>
|
@@ -871,6 +888,21 @@ $gateways_options = $this->main->get_gateways_options();
|
|
871 |
</span>
|
872 |
</div>
|
873 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
874 |
</div>
|
875 |
<div class="mec-form-row">
|
876 |
<?php wp_nonce_field('mec_options_form'); ?>
|
804 |
<input type="hidden" name="mec[settings][wc_status]" value="0" />
|
805 |
<input id="mec_gateways_wc_status" onchange="jQuery('#mec_payment_options_wrapper, #mec_gateways_wc_status_guide').toggleClass('w-hidden');" value="1" type="checkbox" name="mec[settings][wc_status]" <?php if(isset($settings['wc_status']) and $settings['wc_status']) echo 'checked="checked"'; ?> /> <?php _e('Use WooCommerce as Payment System', 'modern-events-calendar-lite'); ?>
|
806 |
</label>
|
807 |
+
<p><?php esc_html_e("By enabling this feature, tickets will be added to WooCommerce cart and all payment process would be done by WooCommerce so all of MEC payment related modules will be disabled. To configure your desired gateways and booking fields etc, you need to configure WooCommerce on your website.", 'modern-events-calendar-lite'); ?></p>
|
808 |
<div id="mec_gateways_wc_status_guide" class="<?php if(!isset($settings['wc_status']) or (isset($settings['wc_status']) and !$settings['wc_status'])) echo 'w-hidden'; ?>">
|
809 |
<p><?php esc_html_e("You cannot use following MEC features so you should use WooCommerc and its addons if you need them.", 'modern-events-calendar-lite'); ?></p>
|
810 |
<ul>
|
815 |
<li><?php esc_html_e('Taxes / Fees', 'modern-events-calendar-lite'); ?></li>
|
816 |
</ul>
|
817 |
|
818 |
+
<div class="mec-form-row" style="margin-top: 40px;">
|
819 |
+
<label class="mec-col-3" for="mec_gateways_wc_autoorder_complete"><?php _e('Automatically complete WooCommerce orders', 'modern-events-calendar-lite'); ?></label>
|
820 |
<div class="mec-col-4">
|
821 |
<select id="mec_gateways_wc_autoorder_complete" name="mec[settings][wc_autoorder_complete]">
|
822 |
<option value="1" <?php echo((isset($settings['wc_autoorder_complete']) and $settings['wc_autoorder_complete'] == '1') ? 'selected="selected"' : ''); ?>><?php _e('Enabled', 'modern-events-calendar-lite'); ?></option>
|
824 |
</select>
|
825 |
<span class="mec-tooltip">
|
826 |
<div class="box top">
|
827 |
+
<h5 class="title"><?php _e('Auto WooCommerce orders', 'modern-events-calendar-lite'); ?></h5>
|
828 |
<div class="content"><p><?php esc_attr_e('It applies only to the orders that are related to MEC.', 'modern-events-calendar-lite'); ?>
|
829 |
<a href="https://webnus.net/dox/modern-events-calendar/woocommerce/" target="_blank"><?php _e('Read More', 'modern-events-calendar-lite'); ?></a></p></div>
|
830 |
</div>
|
841 |
</select>
|
842 |
</div>
|
843 |
</div>
|
844 |
+
<div class="mec-form-row">
|
845 |
+
<label class="mec-col-3" for="mec_gateways_wc_booking_form"><?php _e('MEC Booking Form', 'modern-events-calendar-lite'); ?></label>
|
846 |
+
<div class="mec-col-4">
|
847 |
+
<select id="mec_gateways_wc_booking_form" name="mec[settings][wc_booking_form]">
|
848 |
+
<option value="0" <?php echo((isset($settings['wc_booking_form']) and $settings['wc_booking_form'] == '0') ? 'selected="selected"' : ''); ?>><?php _e('Disabled', 'modern-events-calendar-lite'); ?></option>
|
849 |
+
<option value="1" <?php echo((isset($settings['wc_booking_form']) and $settings['wc_booking_form'] == '1') ? 'selected="selected"' : ''); ?>><?php _e('Enabled', 'modern-events-calendar-lite'); ?></option>
|
850 |
+
</select>
|
851 |
+
<span class="mec-tooltip">
|
852 |
+
<div class="box top">
|
853 |
+
<h5 class="title"><?php _e('Booking Form', 'modern-events-calendar-lite'); ?></h5>
|
854 |
+
<div class="content"><p><?php esc_attr_e('If enabled then users should fill the booking form in MEC and then they will be redirected to checkout.', 'modern-events-calendar-lite'); ?>
|
855 |
+
<a href="https://webnus.net/dox/modern-events-calendar/woocommerce/" target="_blank"><?php _e('Read More', 'modern-events-calendar-lite'); ?></a></p></div>
|
856 |
+
</div>
|
857 |
+
<i title="" class="dashicons-before dashicons-editor-help"></i>
|
858 |
+
</span>
|
859 |
+
</div>
|
860 |
+
</div>
|
861 |
</div>
|
862 |
</div>
|
863 |
</div>
|
888 |
</span>
|
889 |
</div>
|
890 |
</div>
|
891 |
+
<div class="mec-form-row">
|
892 |
+
<div class="mec-col-4">
|
893 |
+
<label>
|
894 |
+
<input type="hidden" name="mec[gateways][gateways_per_event]" value="0" />
|
895 |
+
<input id="mec_gateways_op_status" value="1" type="checkbox" name="mec[gateways][gateways_per_event]" <?php if(isset($gateways_options['gateways_per_event']) and $gateways_options['gateways_per_event']) echo 'checked="checked"'; ?> /> <?php _e('Disable / Enable payment gateways per event', 'modern-events-calendar-lite'); ?>
|
896 |
+
</label>
|
897 |
+
<span class="mec-tooltip">
|
898 |
+
<div class="box">
|
899 |
+
<h5 class="title"><?php _e('Payment Gateways Per Event', 'modern-events-calendar-lite'); ?></h5>
|
900 |
+
<div class="content"><p><?php esc_attr_e("By enabling this module, users are able to disable / enable payment gateways per event", 'modern-events-calendar-lite'); ?></p></div>
|
901 |
+
</div>
|
902 |
+
<i title="" class="dashicons-before dashicons-editor-help"></i>
|
903 |
+
</span>
|
904 |
+
</div>
|
905 |
+
</div>
|
906 |
</div>
|
907 |
<div class="mec-form-row">
|
908 |
<?php wp_nonce_field('mec_options_form'); ?>
|
@@ -356,6 +356,48 @@ $event_fields = $this->main->get_event_fields();
|
|
356 |
</div>
|
357 |
</div>
|
358 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
359 |
<div id="per_occurrences" class="mec-options-fields">
|
360 |
<h4 class="mec-form-subtitle"><?php _e('Edit Per Occurrences', 'modern-events-calendar-lite'); ?></h4>
|
361 |
<div class="mec-form-row">
|
356 |
</div>
|
357 |
</div>
|
358 |
|
359 |
+
<div id="next_previous_events" class="mec-options-fields">
|
360 |
+
<h4 class="mec-form-subtitle"><?php _e('Next / Previous Events', 'modern-events-calendar-lite'); ?></h4>
|
361 |
+
<div class="mec-form-row">
|
362 |
+
<label>
|
363 |
+
<input type="hidden" name="mec[settings][next_previous_events]" value="0" />
|
364 |
+
<input onchange="jQuery('#mec_next_previous_events_container_toggle').toggle();" value="1" type="checkbox" name="mec[settings][next_previous_events]" <?php if(isset($settings['next_previous_events']) and $settings['next_previous_events']) echo 'checked="checked"'; ?> /> <?php _e('Display next / previous events based on taxonomy in single event page.', 'modern-events-calendar-lite'); ?>
|
365 |
+
</label>
|
366 |
+
</div>
|
367 |
+
<div id="mec_next_previous_events_container_toggle" class="<?php if((isset($settings['next_previous_events']) and !$settings['next_previous_events']) or !isset($settings['next_previous_events'])) echo 'mec-util-hidden'; ?>">
|
368 |
+
|
369 |
+
<div class="mec-form-row" style="margin-top:20px;">
|
370 |
+
<label style="margin-right:20px;" for="mec_settings_countdown_list"><?php _e('Select Taxonomies:', 'modern-events-calendar-lite'); ?></label>
|
371 |
+
<label style="margin-right:20px; margin-bottom: 20px;">
|
372 |
+
<input type="hidden" name="mec[settings][next_previous_events_category]" value="0" />
|
373 |
+
<input value="1" type="checkbox" name="mec[settings][next_previous_events_category]" <?php if(isset($settings['next_previous_events_category']) and $settings['next_previous_events_category']) echo 'checked="checked"'; ?> /> <?php _e('Category', 'modern-events-calendar-lite'); ?>
|
374 |
+
</label>
|
375 |
+
<label style="margin-right:20px;">
|
376 |
+
<input type="hidden" name="mec[settings][next_previous_events_organizer]" value="0" />
|
377 |
+
<input value="1" type="checkbox" name="mec[settings][next_previous_events_organizer]" <?php if(isset($settings['next_previous_events_organizer']) and $settings['next_previous_events_organizer']) echo 'checked="checked"'; ?> /> <?php _e('Organizer', 'modern-events-calendar-lite'); ?>
|
378 |
+
</label>
|
379 |
+
<label style="margin-right:20px;">
|
380 |
+
<input type="hidden" name="mec[settings][next_previous_events_location]" value="0" />
|
381 |
+
<input value="1" type="checkbox" name="mec[settings][next_previous_events_location]" <?php if(isset($settings['next_previous_events_location']) and $settings['next_previous_events_location']) echo 'checked="checked"'; ?> /> <?php _e('Location', 'modern-events-calendar-lite'); ?>
|
382 |
+
</label>
|
383 |
+
<?php if(isset($settings['speakers_status']) and $settings['speakers_status']) : ?>
|
384 |
+
<label style="margin-right:20px;">
|
385 |
+
<input type="hidden" name="mec[settings][next_previous_events_speaker]" value="0" />
|
386 |
+
<input value="1" type="checkbox" name="mec[settings][next_previous_events_speaker]" <?php if(isset($settings['next_previous_events_speaker']) and $settings['next_previous_events_speaker']) echo 'checked="checked"'; ?> /> <?php _e('Speaker', 'modern-events-calendar-lite'); ?>
|
387 |
+
</label>
|
388 |
+
<?php endif; ?>
|
389 |
+
<label style="margin-right:20px;">
|
390 |
+
<input type="hidden" name="mec[settings][next_previous_events_label]" value="0" />
|
391 |
+
<input value="1" type="checkbox" name="mec[settings][next_previous_events_label]" <?php if(isset($settings['next_previous_events_label']) and $settings['next_previous_events_label']) echo 'checked="checked"'; ?> /> <?php _e('Label', 'modern-events-calendar-lite'); ?>
|
392 |
+
</label>
|
393 |
+
<label style="margin-right:20px;">
|
394 |
+
<input type="hidden" name="mec[settings][next_previous_events_tag]" value="0" />
|
395 |
+
<input value="1" type="checkbox" name="mec[settings][next_previous_events_tag]" <?php if(isset($settings['next_previous_events_tag']) and $settings['next_previous_events_tag']) echo 'checked="checked"'; ?> /> <?php _e('Tag', 'modern-events-calendar-lite'); ?>
|
396 |
+
</label>
|
397 |
+
</div>
|
398 |
+
</div>
|
399 |
+
</div>
|
400 |
+
|
401 |
<div id="per_occurrences" class="mec-options-fields">
|
402 |
<h4 class="mec-form-subtitle"><?php _e('Edit Per Occurrences', 'modern-events-calendar-lite'); ?></h4>
|
403 |
<div class="mec-form-row">
|
@@ -66,6 +66,7 @@ class MEC_feature_update extends MEC_base
|
|
66 |
if(version_compare($version, '5.7.1', '<')) $this->version571();
|
67 |
if(version_compare($version, '5.10.0', '<')) $this->version5100();
|
68 |
if(version_compare($version, '5.11.0', '<')) $this->version5110();
|
|
|
69 |
|
70 |
// Update to latest version to prevent running the code twice
|
71 |
update_option('mec_version', $this->main->get_version());
|
@@ -416,14 +417,43 @@ class MEC_feature_update extends MEC_base
|
|
416 |
`id` int(10) NOT NULL,
|
417 |
`first_name` varchar(255) NOT NULL,
|
418 |
`last_name` varchar(255) NOT NULL,
|
419 |
-
`email` varchar(
|
420 |
`reg` TEXT NULL DEFAULT NULL,
|
421 |
`created_at` datetime DEFAULT NULL,
|
422 |
`updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP
|
423 |
) DEFAULT CHARSET=[:CHARSET:] COLLATE=[:COLLATE:];");
|
424 |
|
425 |
-
$this->db->q("ALTER TABLE `#__mec_users` ADD PRIMARY KEY (`id`)
|
426 |
$this->db->q("ALTER TABLE `#__mec_users` MODIFY `id` int NOT NULL AUTO_INCREMENT;");
|
427 |
$this->db->q("ALTER TABLE `#__mec_users` AUTO_INCREMENT=1000000;");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
428 |
}
|
429 |
}
|
66 |
if(version_compare($version, '5.7.1', '<')) $this->version571();
|
67 |
if(version_compare($version, '5.10.0', '<')) $this->version5100();
|
68 |
if(version_compare($version, '5.11.0', '<')) $this->version5110();
|
69 |
+
if(version_compare($version, '5.12.6', '<')) $this->version5126();
|
70 |
|
71 |
// Update to latest version to prevent running the code twice
|
72 |
update_option('mec_version', $this->main->get_version());
|
417 |
`id` int(10) NOT NULL,
|
418 |
`first_name` varchar(255) NOT NULL,
|
419 |
`last_name` varchar(255) NOT NULL,
|
420 |
+
`email` varchar(127) NOT NULL,
|
421 |
`reg` TEXT NULL DEFAULT NULL,
|
422 |
`created_at` datetime DEFAULT NULL,
|
423 |
`updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP
|
424 |
) DEFAULT CHARSET=[:CHARSET:] COLLATE=[:COLLATE:];");
|
425 |
|
426 |
+
$this->db->q("ALTER TABLE `#__mec_users` ADD PRIMARY KEY (`id`);");
|
427 |
$this->db->q("ALTER TABLE `#__mec_users` MODIFY `id` int NOT NULL AUTO_INCREMENT;");
|
428 |
$this->db->q("ALTER TABLE `#__mec_users` AUTO_INCREMENT=1000000;");
|
429 |
+
$this->db->q("ALTER TABLE `#__mec_users` ADD UNIQUE KEY `email` (`email`);");
|
430 |
+
}
|
431 |
+
|
432 |
+
public function version5126()
|
433 |
+
{
|
434 |
+
$all = $this->db->select("SELECT * FROM `#__mec_users`", 'loadAssoc');
|
435 |
+
$zeros = $this->db->select("SELECT * FROM `#__mec_users` WHERE `id`='0'", 'loadAssoc');
|
436 |
+
|
437 |
+
if( is_array($all) )
|
438 |
+
{
|
439 |
+
if(!count($all))
|
440 |
+
{
|
441 |
+
$this->db->q("DROP TABLE `#__mec_users`");
|
442 |
+
$this->version5110();
|
443 |
+
}
|
444 |
+
elseif(count($zeros))
|
445 |
+
{
|
446 |
+
$this->db->q("TRUNCATE `#__mec_users`");
|
447 |
+
$this->db->q("ALTER TABLE `#__mec_users` CHANGE `email` `email` VARCHAR(127) NOT NULL;");
|
448 |
+
$this->db->q("ALTER TABLE `#__mec_users` ADD PRIMARY KEY (`id`);");
|
449 |
+
$this->db->q("ALTER TABLE `#__mec_users` MODIFY `id` int NOT NULL AUTO_INCREMENT;");
|
450 |
+
$this->db->q("ALTER TABLE `#__mec_users` AUTO_INCREMENT=1000000;");
|
451 |
+
$this->db->q("ALTER TABLE `#__mec_users` ADD UNIQUE KEY `email` (`email`);");
|
452 |
+
}
|
453 |
+
else
|
454 |
+
{
|
455 |
+
$this->db->q("ALTER TABLE `#__mec_users` CHANGE `email` `email` VARCHAR(127) NOT NULL;");
|
456 |
+
}
|
457 |
+
}
|
458 |
}
|
459 |
}
|
@@ -72,6 +72,8 @@ class MEC_feature_wc extends MEC_base
|
|
72 |
|
73 |
$this->factory->filter('woocommerce_order_item_display_meta_key', array($this, 'display_key'), 10, 2);
|
74 |
$this->factory->filter('woocommerce_order_item_display_meta_value', array($this, 'display_value'), 10, 2);
|
|
|
|
|
75 |
}
|
76 |
|
77 |
public function display_key($display_key, $meta)
|
@@ -102,4 +104,32 @@ class MEC_feature_wc extends MEC_base
|
|
102 |
|
103 |
return $display_value;
|
104 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
105 |
}
|
72 |
|
73 |
$this->factory->filter('woocommerce_order_item_display_meta_key', array($this, 'display_key'), 10, 2);
|
74 |
$this->factory->filter('woocommerce_order_item_display_meta_value', array($this, 'display_value'), 10, 2);
|
75 |
+
$this->factory->filter('woocommerce_cart_item_name', array($this, 'display_name'), 10, 2);
|
76 |
+
$this->factory->filter('woocommerce_cart_item_thumbnail', array($this, 'display_thumbnail'), 10, 2);
|
77 |
}
|
78 |
|
79 |
public function display_key($display_key, $meta)
|
104 |
|
105 |
return $display_value;
|
106 |
}
|
107 |
+
|
108 |
+
public function display_name($name, $item)
|
109 |
+
{
|
110 |
+
if(!isset($item['mec_event_id']) or (isset($item['mec_event_id']) and !trim($item['mec_event_id']))) return $name;
|
111 |
+
if(!isset($item['mec_date']) or (isset($item['mec_date']) and !trim($item['mec_date']))) return $name;
|
112 |
+
|
113 |
+
$timestamps = explode(':', $item['mec_date']);
|
114 |
+
|
115 |
+
$date_format = (isset($this->settings['booking_date_format1']) and trim($this->settings['booking_date_format1'])) ? $this->settings['booking_date_format1'] : get_option('date_format');
|
116 |
+
$start_date = date($date_format, $timestamps[0]);
|
117 |
+
|
118 |
+
$name .= ' ('.$start_date.')';
|
119 |
+
return $name;
|
120 |
+
}
|
121 |
+
|
122 |
+
public function display_thumbnail($image, $item)
|
123 |
+
{
|
124 |
+
if(!isset($item['mec_event_id']) or (isset($item['mec_event_id']) and !trim($item['mec_event_id']))) return $image;
|
125 |
+
if(!isset($item['product_id']) or (isset($item['product_id']) and !trim($item['product_id']))) return $image;
|
126 |
+
|
127 |
+
$product_id = $item['product_id'];
|
128 |
+
if(has_post_thumbnail($product_id)) return $image;
|
129 |
+
|
130 |
+
$event_id = $item['mec_event_id'];
|
131 |
+
if(has_post_thumbnail($event_id)) return get_the_post_thumbnail($event_id);
|
132 |
+
|
133 |
+
return $image;
|
134 |
+
}
|
135 |
}
|
@@ -558,6 +558,7 @@ class MEC_main extends MEC_base
|
|
558 |
__('Additional Organizers', 'modern-events-calendar-lite') => 'additional_organizers',
|
559 |
__('Additional Locations', 'modern-events-calendar-lite') => 'additional_locations',
|
560 |
__('Related Events', 'modern-events-calendar-lite') => 'related_events',
|
|
|
561 |
), $active_menu);
|
562 |
|
563 |
$booking = apply_filters('mec-settings-item-booking', array(
|
@@ -2380,7 +2381,10 @@ class MEC_main extends MEC_base
|
|
2380 |
*/
|
2381 |
public function get_version()
|
2382 |
{
|
2383 |
-
|
|
|
|
|
|
|
2384 |
}
|
2385 |
|
2386 |
/**
|
@@ -4022,7 +4026,11 @@ class MEC_main extends MEC_base
|
|
4022 |
$date = $event->date;
|
4023 |
$start_date = (isset($date['start']) and isset($date['start']['date'])) ? $date['start']['date'] : date('Y-m-d');
|
4024 |
|
4025 |
-
$
|
|
|
|
|
|
|
|
|
4026 |
|
4027 |
// The event is Expired/Passed
|
4028 |
if($this->is_past($start_date, date('Y-m-d')) and !$ongoing) return false;
|
@@ -4580,9 +4588,10 @@ class MEC_main extends MEC_base
|
|
4580 |
* @param array $end
|
4581 |
* @param string $format
|
4582 |
* @param string $separator
|
|
|
4583 |
* @return string
|
4584 |
*/
|
4585 |
-
public function date_label($start, $end, $format, $separator = ' - ')
|
4586 |
{
|
4587 |
$start_datetime = $start['date'];
|
4588 |
$end_datetime = $end['date'];
|
@@ -4636,7 +4645,33 @@ class MEC_main extends MEC_base
|
|
4636 |
$end_date = date_i18n($format, $end_timestamp);
|
4637 |
|
4638 |
if($start_date == $end_date) return '<span class="mec-start-date-label" itemprop="startDate">' . $start_date . '</span>';
|
4639 |
-
else
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4640 |
}
|
4641 |
}
|
4642 |
|
@@ -5761,7 +5796,7 @@ class MEC_main extends MEC_base
|
|
5761 |
/**
|
5762 |
* Get Next event based on datetime of current event
|
5763 |
* @param array $atts
|
5764 |
-
* @return
|
5765 |
*/
|
5766 |
public function get_next_event($atts = array())
|
5767 |
{
|
@@ -5779,7 +5814,7 @@ class MEC_main extends MEC_base
|
|
5779 |
$events = $list->events;
|
5780 |
$key = key($events);
|
5781 |
|
5782 |
-
return (isset($events[$key][0]) ? $events[$key][0] :
|
5783 |
}
|
5784 |
|
5785 |
/**
|
@@ -7349,9 +7384,9 @@ class MEC_main extends MEC_base
|
|
7349 |
else return array_key_last($arr);
|
7350 |
}
|
7351 |
|
7352 |
-
public function is_day_first()
|
7353 |
{
|
7354 |
-
$format = get_option('date_format');
|
7355 |
$chars = str_split($format);
|
7356 |
|
7357 |
$status = true;
|
558 |
__('Additional Organizers', 'modern-events-calendar-lite') => 'additional_organizers',
|
559 |
__('Additional Locations', 'modern-events-calendar-lite') => 'additional_locations',
|
560 |
__('Related Events', 'modern-events-calendar-lite') => 'related_events',
|
561 |
+
__('Next / Previous Events', 'modern-events-calendar-lite') => 'next_previous_events',
|
562 |
), $active_menu);
|
563 |
|
564 |
$booking = apply_filters('mec-settings-item-booking', array(
|
2381 |
*/
|
2382 |
public function get_version()
|
2383 |
{
|
2384 |
+
$version = MEC_VERSION;
|
2385 |
+
|
2386 |
+
if(defined('WP_DEBUG') and WP_DEBUG) $version .= '.'.time();
|
2387 |
+
return $version;
|
2388 |
}
|
2389 |
|
2390 |
/**
|
4026 |
$date = $event->date;
|
4027 |
$start_date = (isset($date['start']) and isset($date['start']['date'])) ? $date['start']['date'] : date('Y-m-d');
|
4028 |
|
4029 |
+
$countdown_method = get_post_meta($event->ID, 'mec_countdown_method', true);
|
4030 |
+
if(trim($countdown_method) == '') $countdown_method = 'global';
|
4031 |
+
|
4032 |
+
if($countdown_method == 'global') $ongoing = (isset($settings['hide_time_method']) and trim($settings['hide_time_method']) == 'end') ? true : false;
|
4033 |
+
else $ongoing = ($countdown_method == 'end') ? true : false;
|
4034 |
|
4035 |
// The event is Expired/Passed
|
4036 |
if($this->is_past($start_date, date('Y-m-d')) and !$ongoing) return false;
|
4588 |
* @param array $end
|
4589 |
* @param string $format
|
4590 |
* @param string $separator
|
4591 |
+
* @param boolean $minify
|
4592 |
* @return string
|
4593 |
*/
|
4594 |
+
public function date_label($start, $end, $format, $separator = ' - ', $minify = true)
|
4595 |
{
|
4596 |
$start_datetime = $start['date'];
|
4597 |
$end_datetime = $end['date'];
|
4645 |
$end_date = date_i18n($format, $end_timestamp);
|
4646 |
|
4647 |
if($start_date == $end_date) return '<span class="mec-start-date-label" itemprop="startDate">' . $start_date . '</span>';
|
4648 |
+
else
|
4649 |
+
{
|
4650 |
+
$start_m = date('m', $start_timestamp);
|
4651 |
+
$end_m = date('m', $end_timestamp);
|
4652 |
+
|
4653 |
+
// Same Month but Different Days
|
4654 |
+
if($minify and $start_m == $end_m and date('d', $start_timestamp) != date('d', $end_timestamp))
|
4655 |
+
{
|
4656 |
+
$day_format = 'j';
|
4657 |
+
if(strpos($format, 'l') !== false) $day_format = 'l';
|
4658 |
+
elseif(strpos($format, 'd') !== false) $day_format = 'd';
|
4659 |
+
elseif(strpos($format, 'D') !== false) $day_format = 'D';
|
4660 |
+
|
4661 |
+
$month_format = 'F';
|
4662 |
+
if(strpos($format, 'm') !== false) $month_format = 'm';
|
4663 |
+
elseif(strpos($format, 'M') !== false) $month_format = 'M';
|
4664 |
+
elseif(strpos($format, 'n') !== false) $month_format = 'n';
|
4665 |
+
|
4666 |
+
$start_d = date_i18n($day_format, $start_timestamp);
|
4667 |
+
$end_d = date_i18n($day_format, $end_timestamp);
|
4668 |
+
|
4669 |
+
$start_m = date_i18n($month_format, $start_timestamp);
|
4670 |
+
|
4671 |
+
return '<span class="mec-start-date-label" itemprop="startDate">' .($this->is_day_first($format) ? ($start_d . ' - ' . $end_d . ' ' . $start_m) : ($start_m .' '. $start_d . ' - ' . $end_d)). '</span>';
|
4672 |
+
}
|
4673 |
+
else return '<span class="mec-start-date-label" itemprop="startDate">'.date_i18n($format, $start_timestamp).'</span><span class="mec-end-date-label" itemprop="endDate">'.$separator.date_i18n($format, $end_timestamp).'</span>';
|
4674 |
+
}
|
4675 |
}
|
4676 |
}
|
4677 |
|
5796 |
/**
|
5797 |
* Get Next event based on datetime of current event
|
5798 |
* @param array $atts
|
5799 |
+
* @return object
|
5800 |
*/
|
5801 |
public function get_next_event($atts = array())
|
5802 |
{
|
5814 |
$events = $list->events;
|
5815 |
$key = key($events);
|
5816 |
|
5817 |
+
return (isset($events[$key][0]) ? $events[$key][0] : (new stdClass()));
|
5818 |
}
|
5819 |
|
5820 |
/**
|
7384 |
else return array_key_last($arr);
|
7385 |
}
|
7386 |
|
7387 |
+
public function is_day_first($format = NULL)
|
7388 |
{
|
7389 |
+
if(!trim($format)) $format = get_option('date_format');
|
7390 |
$chars = str_split($format);
|
7391 |
|
7392 |
$status = true;
|
@@ -44,9 +44,10 @@ class MEC_notifications extends MEC_base
|
|
44 |
* Send email verification notification
|
45 |
* @author Webnus <info@webnus.biz>
|
46 |
* @param int $book_id
|
|
|
47 |
* @return boolean
|
48 |
*/
|
49 |
-
public function email_verification($book_id)
|
50 |
{
|
51 |
$booker = $this->u->booking($book_id);
|
52 |
if(!isset($booker->user_email)) return false;
|
@@ -54,10 +55,10 @@ class MEC_notifications extends MEC_base
|
|
54 |
$price = get_post_meta($book_id, 'mec_price', true);
|
55 |
|
56 |
// Auto verification for free bookings is enabled so don't send the verification email
|
57 |
-
if($price <= 0 and isset($this->settings['booking_auto_verify_free']) and $this->settings['booking_auto_verify_free'] == 1) return false;
|
58 |
|
59 |
// Auto verification for paid bookings is enabled so don't send the verification email
|
60 |
-
if($price > 0 and isset($this->settings['booking_auto_verify_paid']) and $this->settings['booking_auto_verify_paid'] == 1) return false;
|
61 |
|
62 |
// Event ID
|
63 |
$event_id = get_post_meta($book_id, 'mec_event_id', true);
|
44 |
* Send email verification notification
|
45 |
* @author Webnus <info@webnus.biz>
|
46 |
* @param int $book_id
|
47 |
+
* @param string $mode
|
48 |
* @return boolean
|
49 |
*/
|
50 |
+
public function email_verification($book_id, $mode = 'auto')
|
51 |
{
|
52 |
$booker = $this->u->booking($book_id);
|
53 |
if(!isset($booker->user_email)) return false;
|
55 |
$price = get_post_meta($book_id, 'mec_price', true);
|
56 |
|
57 |
// Auto verification for free bookings is enabled so don't send the verification email
|
58 |
+
if($mode == 'auto' and $price <= 0 and isset($this->settings['booking_auto_verify_free']) and $this->settings['booking_auto_verify_free'] == 1) return false;
|
59 |
|
60 |
// Auto verification for paid bookings is enabled so don't send the verification email
|
61 |
+
if($mode == 'auto' and $price > 0 and isset($this->settings['booking_auto_verify_paid']) and $this->settings['booking_auto_verify_paid'] == 1) return false;
|
62 |
|
63 |
// Event ID
|
64 |
$event_id = get_post_meta($book_id, 'mec_event_id', true);
|
@@ -13,28 +13,28 @@ class MEC_skins extends MEC_base
|
|
13 |
* @var string
|
14 |
*/
|
15 |
public $skin = 'list';
|
16 |
-
|
17 |
/**
|
18 |
* @var array
|
19 |
*/
|
20 |
public $atts = array();
|
21 |
-
|
22 |
/**
|
23 |
* @var array
|
24 |
*/
|
25 |
public $args = array();
|
26 |
-
|
27 |
/**
|
28 |
* @var int
|
29 |
*/
|
30 |
public $maximum_dates = 6;
|
31 |
-
|
32 |
/**
|
33 |
* Offset for don't load duplicated events in list/grid views on load more action
|
34 |
* @var int
|
35 |
*/
|
36 |
public $offset = 0;
|
37 |
-
|
38 |
/**
|
39 |
* Offset for next load more action
|
40 |
* @var int
|
@@ -46,7 +46,7 @@ class MEC_skins extends MEC_base
|
|
46 |
* @var int
|
47 |
*/
|
48 |
public $booking_button = 0;
|
49 |
-
|
50 |
/**
|
51 |
* Single Event Display Method
|
52 |
* @var string
|
@@ -115,38 +115,38 @@ class MEC_skins extends MEC_base
|
|
115 |
{
|
116 |
// MEC factory library
|
117 |
$this->factory = $this->getFactory();
|
118 |
-
|
119 |
// MEC main library
|
120 |
$this->main = $this->getMain();
|
121 |
-
|
122 |
// MEC file library
|
123 |
$this->file = $this->getFile();
|
124 |
-
|
125 |
// MEC db library
|
126 |
$this->db = $this->getDB();
|
127 |
-
|
128 |
// MEC render library
|
129 |
$this->render = $this->getRender();
|
130 |
-
|
131 |
// MEC request library
|
132 |
$this->request = $this->getRequest();
|
133 |
|
134 |
// MEC Settings
|
135 |
$this->settings = $this->main->get_settings();
|
136 |
-
|
137 |
// Found Events
|
138 |
$this->found = 0;
|
139 |
-
|
140 |
// How to show multiple days events
|
141 |
$this->multiple_days_method = $this->main->get_multiple_days_method();
|
142 |
-
|
143 |
// Hide event on start or on end
|
144 |
$this->hide_time_method = $this->main->get_hide_time_method();
|
145 |
|
146 |
// Cache
|
147 |
$this->cache = $this->getCache();
|
148 |
}
|
149 |
-
|
150 |
/**
|
151 |
* Registers skin actions into WordPress hooks
|
152 |
* @author Webnus <info@webnus.biz>
|
@@ -154,7 +154,7 @@ class MEC_skins extends MEC_base
|
|
154 |
public function actions()
|
155 |
{
|
156 |
}
|
157 |
-
|
158 |
/**
|
159 |
* Loads all skins
|
160 |
* @author Webnus <info@webnus.biz>
|
@@ -163,7 +163,7 @@ class MEC_skins extends MEC_base
|
|
163 |
{
|
164 |
// MEC add filters
|
165 |
$this->factory->filter('posts_join', array($this, 'join'), 10, 2);
|
166 |
-
|
167 |
$skins = $this->main->get_skins();
|
168 |
foreach($skins as $skin=>$skin_name)
|
169 |
{
|
@@ -183,15 +183,15 @@ class MEC_skins extends MEC_base
|
|
183 |
// init the actions
|
184 |
$SKO->actions();
|
185 |
}
|
186 |
-
|
187 |
// Init Single Skin
|
188 |
include_once MEC::import('app.skins.single', true, true);
|
189 |
-
|
190 |
// Register the actions
|
191 |
$SKO = new MEC_skin_single();
|
192 |
$SKO->actions();
|
193 |
}
|
194 |
-
|
195 |
/**
|
196 |
* Get path of one skin file
|
197 |
* @author Webnus <info@webnus.biz>
|
@@ -202,7 +202,7 @@ class MEC_skins extends MEC_base
|
|
202 |
{
|
203 |
return MEC::import('app.skins.'.$this->skin.'.'.$file, true, true);
|
204 |
}
|
205 |
-
|
206 |
/**
|
207 |
* Returns path of skin tpl
|
208 |
* @author Webnus <info@webnus.biz>
|
@@ -211,7 +211,7 @@ class MEC_skins extends MEC_base
|
|
211 |
public function get_tpl_path()
|
212 |
{
|
213 |
$path = $this->get_path('tpl');
|
214 |
-
|
215 |
// Apply filters
|
216 |
$settings = $this->main->get_settings();
|
217 |
|
@@ -219,10 +219,10 @@ class MEC_skins extends MEC_base
|
|
219 |
else $filtered_path = apply_filters('mec_get_skin_tpl_path', $this->skin, $this->style);
|
220 |
|
221 |
if($filtered_path != $this->skin and $this->file->exists($filtered_path)) $path = $filtered_path;
|
222 |
-
|
223 |
return $path;
|
224 |
}
|
225 |
-
|
226 |
/**
|
227 |
* Returns path of skin render file
|
228 |
* @author Webnus <info@webnus.biz>
|
@@ -231,14 +231,14 @@ class MEC_skins extends MEC_base
|
|
231 |
public function get_render_path()
|
232 |
{
|
233 |
$path = $this->get_path('render');
|
234 |
-
|
235 |
// Apply filters
|
236 |
$filtered_path = apply_filters('mec_get_skin_render_path', $this->skin);
|
237 |
if($filtered_path != $this->skin and $this->file->exists($filtered_path)) $path = $filtered_path;
|
238 |
-
|
239 |
return $path;
|
240 |
}
|
241 |
-
|
242 |
/**
|
243 |
* Returns calendar file path of calendar views
|
244 |
* @author Webnus <info@webnus.biz>
|
@@ -248,14 +248,14 @@ class MEC_skins extends MEC_base
|
|
248 |
public function get_calendar_path($style = 'calendar')
|
249 |
{
|
250 |
$path = $this->get_path($style);
|
251 |
-
|
252 |
// Apply filters
|
253 |
$filtered_path = apply_filters('mec_get_skin_calendar_path', $this->skin);
|
254 |
if($filtered_path != $this->skin and $this->file->exists($filtered_path)) $path = $filtered_path;
|
255 |
-
|
256 |
return $path;
|
257 |
}
|
258 |
-
|
259 |
/**
|
260 |
* Generates skin output
|
261 |
* @author Webnus <info@webnus.biz>
|
@@ -270,12 +270,12 @@ class MEC_skins extends MEC_base
|
|
270 |
|
271 |
// Include needed assets for loading single event details page
|
272 |
if($this->sed_method) $this->main->load_sed_assets();
|
273 |
-
|
274 |
ob_start();
|
275 |
include $this->get_tpl_path();
|
276 |
return ob_get_clean();
|
277 |
}
|
278 |
-
|
279 |
/**
|
280 |
* Returns keyword query for adding to WP_Query
|
281 |
* @author Webnus <info@webnus.biz>
|
@@ -287,7 +287,7 @@ class MEC_skins extends MEC_base
|
|
287 |
if(isset($this->atts['s']) and trim($this->atts['s']) != '') return $this->atts['s'];
|
288 |
else return NULL;
|
289 |
}
|
290 |
-
|
291 |
/**
|
292 |
* Returns taxonomy query for adding to WP_Query
|
293 |
* @author Webnus <info@webnus.biz>
|
@@ -296,7 +296,7 @@ class MEC_skins extends MEC_base
|
|
296 |
public function tax_query()
|
297 |
{
|
298 |
$tax_query = array('relation'=>'AND');
|
299 |
-
|
300 |
// Add event label to filter
|
301 |
if(isset($this->atts['label']) and trim($this->atts['label'], ', ') != '')
|
302 |
{
|
@@ -306,7 +306,7 @@ class MEC_skins extends MEC_base
|
|
306 |
'terms'=>explode(',', trim($this->atts['label'], ', '))
|
307 |
);
|
308 |
}
|
309 |
-
|
310 |
// Add event category to filter
|
311 |
if(isset($this->atts['category']) and trim($this->atts['category'], ', ') != '')
|
312 |
{
|
@@ -337,7 +337,7 @@ class MEC_skins extends MEC_base
|
|
337 |
'terms'=>$get_locations_id,
|
338 |
);
|
339 |
}
|
340 |
-
|
341 |
// Add event organizer to filter
|
342 |
if(isset($this->atts['organizer']) and trim($this->atts['organizer'], ', ') != '')
|
343 |
{
|
@@ -378,10 +378,10 @@ class MEC_skins extends MEC_base
|
|
378 |
}
|
379 |
|
380 |
$tax_query = apply_filters('mec_map_tax_query', $tax_query, $this->atts);
|
381 |
-
|
382 |
return $tax_query;
|
383 |
}
|
384 |
-
|
385 |
/**
|
386 |
* Returns meta query for adding to WP_Query
|
387 |
* @author Webnus <info@webnus.biz>
|
@@ -393,10 +393,10 @@ class MEC_skins extends MEC_base
|
|
393 |
$meta_query['relation'] = 'AND';
|
394 |
|
395 |
$meta_query = apply_filters('mec_map_meta_query', $meta_query, $this->atts);
|
396 |
-
|
397 |
return $meta_query;
|
398 |
}
|
399 |
-
|
400 |
/**
|
401 |
* Returns tag query for adding to WP_Query
|
402 |
* @author Webnus <info@webnus.biz>
|
@@ -424,10 +424,10 @@ class MEC_skins extends MEC_base
|
|
424 |
}
|
425 |
}
|
426 |
}
|
427 |
-
|
428 |
return trim($tag, ', ');
|
429 |
}
|
430 |
-
|
431 |
/**
|
432 |
* Returns author query for adding to WP_Query
|
433 |
* @author Webnus <info@webnus.biz>
|
@@ -436,16 +436,16 @@ class MEC_skins extends MEC_base
|
|
436 |
public function author_query()
|
437 |
{
|
438 |
$author = '';
|
439 |
-
|
440 |
// Add event authors to filter
|
441 |
if(isset($this->atts['author']) and trim($this->atts['author'], ', ') != '')
|
442 |
{
|
443 |
$author = $this->atts['author'];
|
444 |
}
|
445 |
-
|
446 |
return $author;
|
447 |
}
|
448 |
-
|
449 |
/**
|
450 |
* Set the current day for filtering events in WP_Query
|
451 |
* @author Webnus <info@webnus.biz>
|
@@ -455,18 +455,18 @@ class MEC_skins extends MEC_base
|
|
455 |
public function setToday($today = NULL)
|
456 |
{
|
457 |
if(is_null($today)) $today = date('Y-m-d');
|
458 |
-
|
459 |
$this->args['mec-today'] = $today;
|
460 |
$this->args['mec-now'] = strtotime($this->args['mec-today']);
|
461 |
-
|
462 |
$this->args['mec-year'] = date('Y', $this->args['mec-now']);
|
463 |
$this->args['mec-month'] = date('m', $this->args['mec-now']);
|
464 |
$this->args['mec-day'] = date('d', $this->args['mec-now']);
|
465 |
-
|
466 |
$this->args['mec-week'] = (int) ((date('d', $this->args['mec-now']) - 1) / 7) + 1;
|
467 |
$this->args['mec-weekday'] = date('N', $this->args['mec-now']);
|
468 |
}
|
469 |
-
|
470 |
/**
|
471 |
* Join MEC table with WP_Query for filtering the events
|
472 |
* @author Webnus <info@webnus.biz>
|
@@ -574,7 +574,7 @@ class MEC_skins extends MEC_base
|
|
574 |
if($this->hide_time_method == 'end' and $now >= $mec_date->tend) continue;
|
575 |
}
|
576 |
|
577 |
-
if
|
578 |
{
|
579 |
// Hide Shown Events on AJAX
|
580 |
if(defined('DOING_AJAX') and DOING_AJAX and $s != $e and $s < strtotime($start) and !$this->show_only_expired_events) continue;
|
@@ -663,7 +663,7 @@ class MEC_skins extends MEC_base
|
|
663 |
|
664 |
return $dates;
|
665 |
}
|
666 |
-
|
667 |
/**
|
668 |
* Perform the search
|
669 |
* @author Webnus <info@webnus.biz>
|
@@ -718,7 +718,7 @@ class MEC_skins extends MEC_base
|
|
718 |
// Continue to load rest of events in the first date
|
719 |
if($i === 0 and $this->start_date === $date) $this->args['offset'] = $this->offset;
|
720 |
// Load all events in the rest of dates
|
721 |
-
else
|
722 |
{
|
723 |
$this->offset = 0;
|
724 |
$this->args['offset'] = 0;
|
@@ -795,7 +795,7 @@ class MEC_skins extends MEC_base
|
|
795 |
|
796 |
return $events;
|
797 |
}
|
798 |
-
|
799 |
/**
|
800 |
* Run the search command
|
801 |
* @author Webnus <info@webnus.biz>
|
@@ -806,7 +806,7 @@ class MEC_skins extends MEC_base
|
|
806 |
// Events! :)
|
807 |
return $this->events = $this->search();
|
808 |
}
|
809 |
-
|
810 |
/**
|
811 |
* Draw Monthly Calendar
|
812 |
* @author Webnus <info@webnus.biz>
|
@@ -819,7 +819,7 @@ class MEC_skins extends MEC_base
|
|
819 |
public function draw_monthly_calendar($year, $month, $events = array(), $style = 'calendar')
|
820 |
{
|
821 |
$calendar_path = $this->get_calendar_path($style);
|
822 |
-
|
823 |
// Generate Month
|
824 |
ob_start();
|
825 |
include $calendar_path;
|
@@ -847,7 +847,7 @@ class MEC_skins extends MEC_base
|
|
847 |
|
848 |
return trim($classes);
|
849 |
}
|
850 |
-
|
851 |
/**
|
852 |
* Generates Search Form
|
853 |
* @author Webnus <info@webnus.biz>
|
@@ -857,7 +857,7 @@ class MEC_skins extends MEC_base
|
|
857 |
{
|
858 |
// If no fields specified
|
859 |
if(!count($this->sf_options)) return '';
|
860 |
-
|
861 |
$display_style = $fields = $end_div = '';
|
862 |
$first_row = 'not-started';
|
863 |
$display_form = array();
|
@@ -892,10 +892,10 @@ class MEC_skins extends MEC_base
|
|
892 |
|
893 |
$form = '';
|
894 |
if(trim($fields) && (in_array('dropdown', $display_form) || in_array('text_input', $display_form) || in_array('address_input', $display_form))) $form .= '<div id="mec_search_form_'.$this->id.'" class="mec-search-form mec-totalcal-box">'.$fields.'</div>';
|
895 |
-
|
896 |
return $form;
|
897 |
}
|
898 |
-
|
899 |
/**
|
900 |
* Generate a certain search field
|
901 |
* @author Webnus <info@webnus.biz>
|
@@ -906,13 +906,13 @@ class MEC_skins extends MEC_base
|
|
906 |
public function sf_search_field($field, $options)
|
907 |
{
|
908 |
$type = isset($options['type']) ? $options['type'] : '';
|
909 |
-
|
910 |
// Field is disabled
|
911 |
if(!trim($type)) return '';
|
912 |
|
913 |
// Status of Speakers Feature
|
914 |
$speakers_status = (!isset($this->settings['speakers_status']) or (isset($this->settings['speakers_status']) and !$this->settings['speakers_status'])) ? false : true;
|
915 |
-
|
916 |
$output = '';
|
917 |
if($field == 'category')
|
918 |
{
|
@@ -920,7 +920,7 @@ class MEC_skins extends MEC_base
|
|
920 |
{
|
921 |
$output .= '<div class="mec-dropdown-search">
|
922 |
<i class="mec-sl-folder"></i>';
|
923 |
-
|
924 |
$output .= wp_dropdown_categories(array
|
925 |
(
|
926 |
'echo'=>false,
|
@@ -936,7 +936,7 @@ class MEC_skins extends MEC_base
|
|
936 |
'order'=>'ASC',
|
937 |
'show_count'=>0,
|
938 |
));
|
939 |
-
|
940 |
$output .= '</div>';
|
941 |
}
|
942 |
}
|
@@ -946,7 +946,7 @@ class MEC_skins extends MEC_base
|
|
946 |
{
|
947 |
$output .= '<div class="mec-dropdown-search">
|
948 |
<i class="mec-sl-location-pin"></i>';
|
949 |
-
|
950 |
$output .= wp_dropdown_categories(array
|
951 |
(
|
952 |
'echo'=>false,
|
@@ -962,7 +962,7 @@ class MEC_skins extends MEC_base
|
|
962 |
'order'=>'ASC',
|
963 |
'show_count'=>0,
|
964 |
));
|
965 |
-
|
966 |
$output .= '</div>';
|
967 |
}
|
968 |
}
|
@@ -972,7 +972,7 @@ class MEC_skins extends MEC_base
|
|
972 |
{
|
973 |
$output .= '<div class="mec-dropdown-search">
|
974 |
<i class="mec-sl-user"></i>';
|
975 |
-
|
976 |
$output .= wp_dropdown_categories(array
|
977 |
(
|
978 |
'echo'=>false,
|
@@ -988,7 +988,7 @@ class MEC_skins extends MEC_base
|
|
988 |
'order'=>'ASC',
|
989 |
'show_count'=>0,
|
990 |
));
|
991 |
-
|
992 |
$output .= '</div>';
|
993 |
}
|
994 |
}
|
@@ -998,7 +998,7 @@ class MEC_skins extends MEC_base
|
|
998 |
{
|
999 |
$output .= '<div class="mec-dropdown-search">
|
1000 |
<i class="mec-sl-microphone"></i>';
|
1001 |
-
|
1002 |
$output .= wp_dropdown_categories(array
|
1003 |
(
|
1004 |
'echo'=>false,
|
@@ -1014,7 +1014,7 @@ class MEC_skins extends MEC_base
|
|
1014 |
'order'=>'ASC',
|
1015 |
'show_count'=>0,
|
1016 |
));
|
1017 |
-
|
1018 |
$output .= '</div>';
|
1019 |
}
|
1020 |
}
|
@@ -1024,7 +1024,7 @@ class MEC_skins extends MEC_base
|
|
1024 |
{
|
1025 |
$output .= '<div class="mec-dropdown-search">
|
1026 |
<i class="mec-sl-tag"></i>';
|
1027 |
-
|
1028 |
$output .= wp_dropdown_categories(array
|
1029 |
(
|
1030 |
'echo'=>false,
|
@@ -1040,7 +1040,7 @@ class MEC_skins extends MEC_base
|
|
1040 |
'order'=>'ASC',
|
1041 |
'show_count'=>0,
|
1042 |
));
|
1043 |
-
|
1044 |
$output .= '</div>';
|
1045 |
}
|
1046 |
}
|
@@ -1050,7 +1050,7 @@ class MEC_skins extends MEC_base
|
|
1050 |
{
|
1051 |
$output .= '<div class="mec-dropdown-search">
|
1052 |
<i class="mec-sl-pin"></i>';
|
1053 |
-
|
1054 |
$output .= wp_dropdown_categories(array
|
1055 |
(
|
1056 |
'echo'=>false,
|
@@ -1066,7 +1066,7 @@ class MEC_skins extends MEC_base
|
|
1066 |
'order'=>'ASC',
|
1067 |
'show_count'=>0,
|
1068 |
));
|
1069 |
-
|
1070 |
$output .= '</div>';
|
1071 |
}
|
1072 |
}
|
@@ -1150,7 +1150,7 @@ class MEC_skins extends MEC_base
|
|
1150 |
$output = apply_filters('mec_search_fields_to_box', $output, $field, $type, $this->atts, $this->id);
|
1151 |
return $output;
|
1152 |
}
|
1153 |
-
|
1154 |
public function sf_apply($atts, $sf = array(), $apply_sf_date = 1)
|
1155 |
{
|
1156 |
// Return normal atts if sf is empty
|
@@ -1161,13 +1161,13 @@ class MEC_skins extends MEC_base
|
|
1161 |
|
1162 |
// Apply Address Search Query
|
1163 |
if(isset($sf['address'])) $atts['address'] = $sf['address'];
|
1164 |
-
|
1165 |
// Apply Category Query
|
1166 |
if(isset($sf['category']) and trim($sf['category'])) $atts['category'] = $sf['category'];
|
1167 |
-
|
1168 |
// Apply Location Query
|
1169 |
if(isset($sf['location']) and trim($sf['location'])) $atts['location'] = $sf['location'];
|
1170 |
-
|
1171 |
// Apply Organizer Query
|
1172 |
if(isset($sf['organizer']) and trim($sf['organizer'])) $atts['organizer'] = $sf['organizer'];
|
1173 |
|
@@ -1176,25 +1176,25 @@ class MEC_skins extends MEC_base
|
|
1176 |
|
1177 |
// Apply tag Query
|
1178 |
if(isset($sf['tag']) and trim($sf['tag'])) $atts['tag'] = $sf['tag'];
|
1179 |
-
|
1180 |
// Apply Label Query
|
1181 |
if(isset($sf['label']) and trim($sf['label'])) $atts['label'] = $sf['label'];
|
1182 |
-
|
1183 |
// Apply SF Date or Not
|
1184 |
if($apply_sf_date == 1)
|
1185 |
{
|
1186 |
// Apply Month of Month Filter
|
1187 |
if(isset($sf['month']) and trim($sf['month'])) $this->request->setVar('mec_month', $sf['month']);
|
1188 |
-
|
1189 |
// Apply Year of Month Filter
|
1190 |
if(isset($sf['year']) and trim($sf['year'])) $this->request->setVar('mec_year', $sf['year']);
|
1191 |
-
|
1192 |
// Apply to Start Date
|
1193 |
if(isset($sf['month']) and trim($sf['month']) and isset($sf['year']) and trim($sf['year']))
|
1194 |
{
|
1195 |
$start_date = $sf['year'].'-'.$sf['month'].'-'.(isset($sf['day']) ? $sf['day'] : '01');
|
1196 |
$this->request->setVar('mec_start_date', $start_date);
|
1197 |
-
|
1198 |
$skins = $this->main->get_skins();
|
1199 |
foreach($skins as $skin=>$label)
|
1200 |
{
|
@@ -1203,12 +1203,12 @@ class MEC_skins extends MEC_base
|
|
1203 |
}
|
1204 |
}
|
1205 |
}
|
1206 |
-
|
1207 |
$atts = apply_filters('add_to_search_box_query', $atts, $sf );
|
1208 |
-
|
1209 |
return $atts;
|
1210 |
}
|
1211 |
-
|
1212 |
/**
|
1213 |
* Get Locations ID
|
1214 |
* @param string $address
|
@@ -1244,7 +1244,7 @@ class MEC_skins extends MEC_base
|
|
1244 |
return ($a_timestamp > $b_timestamp) ? +1 : -1;
|
1245 |
}
|
1246 |
|
1247 |
-
public function booking_button($event, $type = 'button')
|
1248 |
{
|
1249 |
if(!$this->booking_button) return '';
|
1250 |
if(!$this->main->can_show_booking_module($event)) return '';
|
@@ -1290,6 +1290,7 @@ class MEC_skins extends MEC_base
|
|
1290 |
elseif($method == 'no') return $title;
|
1291 |
|
1292 |
$target = ($method == 'new' ? 'target="_blank"' : '');
|
|
|
1293 |
return '<a '.($class ? 'class="'.$class.'"' : '').' '.($attributes ? $attributes : '').' data-event-id="'.$event->data->ID.'" href="'.$this->main->get_event_date_permalink($event, $event->date['start']['date']).'" '.$target.'>'.$title.'</a>';
|
1294 |
}
|
1295 |
}
|
13 |
* @var string
|
14 |
*/
|
15 |
public $skin = 'list';
|
16 |
+
|
17 |
/**
|
18 |
* @var array
|
19 |
*/
|
20 |
public $atts = array();
|
21 |
+
|
22 |
/**
|
23 |
* @var array
|
24 |
*/
|
25 |
public $args = array();
|
26 |
+
|
27 |
/**
|
28 |
* @var int
|
29 |
*/
|
30 |
public $maximum_dates = 6;
|
31 |
+
|
32 |
/**
|
33 |
* Offset for don't load duplicated events in list/grid views on load more action
|
34 |
* @var int
|
35 |
*/
|
36 |
public $offset = 0;
|
37 |
+
|
38 |
/**
|
39 |
* Offset for next load more action
|
40 |
* @var int
|
46 |
* @var int
|
47 |
*/
|
48 |
public $booking_button = 0;
|
49 |
+
|
50 |
/**
|
51 |
* Single Event Display Method
|
52 |
* @var string
|
115 |
{
|
116 |
// MEC factory library
|
117 |
$this->factory = $this->getFactory();
|
118 |
+
|
119 |
// MEC main library
|
120 |
$this->main = $this->getMain();
|
121 |
+
|
122 |
// MEC file library
|
123 |
$this->file = $this->getFile();
|
124 |
+
|
125 |
// MEC db library
|
126 |
$this->db = $this->getDB();
|
127 |
+
|
128 |
// MEC render library
|
129 |
$this->render = $this->getRender();
|
130 |
+
|
131 |
// MEC request library
|
132 |
$this->request = $this->getRequest();
|
133 |
|
134 |
// MEC Settings
|
135 |
$this->settings = $this->main->get_settings();
|
136 |
+
|
137 |
// Found Events
|
138 |
$this->found = 0;
|
139 |
+
|
140 |
// How to show multiple days events
|
141 |
$this->multiple_days_method = $this->main->get_multiple_days_method();
|
142 |
+
|
143 |
// Hide event on start or on end
|
144 |
$this->hide_time_method = $this->main->get_hide_time_method();
|
145 |
|
146 |
// Cache
|
147 |
$this->cache = $this->getCache();
|
148 |
}
|
149 |
+
|
150 |
/**
|
151 |
* Registers skin actions into WordPress hooks
|
152 |
* @author Webnus <info@webnus.biz>
|
154 |
public function actions()
|
155 |
{
|
156 |
}
|
157 |
+
|
158 |
/**
|
159 |
* Loads all skins
|
160 |
* @author Webnus <info@webnus.biz>
|
163 |
{
|
164 |
// MEC add filters
|
165 |
$this->factory->filter('posts_join', array($this, 'join'), 10, 2);
|
166 |
+
|
167 |
$skins = $this->main->get_skins();
|
168 |
foreach($skins as $skin=>$skin_name)
|
169 |
{
|
183 |
// init the actions
|
184 |
$SKO->actions();
|
185 |
}
|
186 |
+
|
187 |
// Init Single Skin
|
188 |
include_once MEC::import('app.skins.single', true, true);
|
189 |
+
|
190 |
// Register the actions
|
191 |
$SKO = new MEC_skin_single();
|
192 |
$SKO->actions();
|
193 |
}
|
194 |
+
|
195 |
/**
|
196 |
* Get path of one skin file
|
197 |
* @author Webnus <info@webnus.biz>
|
202 |
{
|
203 |
return MEC::import('app.skins.'.$this->skin.'.'.$file, true, true);
|
204 |
}
|
205 |
+
|
206 |
/**
|
207 |
* Returns path of skin tpl
|
208 |
* @author Webnus <info@webnus.biz>
|
211 |
public function get_tpl_path()
|
212 |
{
|
213 |
$path = $this->get_path('tpl');
|
214 |
+
|
215 |
// Apply filters
|
216 |
$settings = $this->main->get_settings();
|
217 |
|
219 |
else $filtered_path = apply_filters('mec_get_skin_tpl_path', $this->skin, $this->style);
|
220 |
|
221 |
if($filtered_path != $this->skin and $this->file->exists($filtered_path)) $path = $filtered_path;
|
222 |
+
|
223 |
return $path;
|
224 |
}
|
225 |
+
|
226 |
/**
|
227 |
* Returns path of skin render file
|
228 |
* @author Webnus <info@webnus.biz>
|
231 |
public function get_render_path()
|
232 |
{
|
233 |
$path = $this->get_path('render');
|
234 |
+
|
235 |
// Apply filters
|
236 |
$filtered_path = apply_filters('mec_get_skin_render_path', $this->skin);
|
237 |
if($filtered_path != $this->skin and $this->file->exists($filtered_path)) $path = $filtered_path;
|
238 |
+
|
239 |
return $path;
|
240 |
}
|
241 |
+
|
242 |
/**
|
243 |
* Returns calendar file path of calendar views
|
244 |
* @author Webnus <info@webnus.biz>
|
248 |
public function get_calendar_path($style = 'calendar')
|
249 |
{
|
250 |
$path = $this->get_path($style);
|
251 |
+
|
252 |
// Apply filters
|
253 |
$filtered_path = apply_filters('mec_get_skin_calendar_path', $this->skin);
|
254 |
if($filtered_path != $this->skin and $this->file->exists($filtered_path)) $path = $filtered_path;
|
255 |
+
|
256 |
return $path;
|
257 |
}
|
258 |
+
|
259 |
/**
|
260 |
* Generates skin output
|
261 |
* @author Webnus <info@webnus.biz>
|
270 |
|
271 |
// Include needed assets for loading single event details page
|
272 |
if($this->sed_method) $this->main->load_sed_assets();
|
273 |
+
|
274 |
ob_start();
|
275 |
include $this->get_tpl_path();
|
276 |
return ob_get_clean();
|
277 |
}
|
278 |
+
|
279 |
/**
|
280 |
* Returns keyword query for adding to WP_Query
|
281 |
* @author Webnus <info@webnus.biz>
|
287 |
if(isset($this->atts['s']) and trim($this->atts['s']) != '') return $this->atts['s'];
|
288 |
else return NULL;
|
289 |
}
|
290 |
+
|
291 |
/**
|
292 |
* Returns taxonomy query for adding to WP_Query
|
293 |
* @author Webnus <info@webnus.biz>
|
296 |
public function tax_query()
|
297 |
{
|
298 |
$tax_query = array('relation'=>'AND');
|
299 |
+
|
300 |
// Add event label to filter
|
301 |
if(isset($this->atts['label']) and trim($this->atts['label'], ', ') != '')
|
302 |
{
|
306 |
'terms'=>explode(',', trim($this->atts['label'], ', '))
|
307 |
);
|
308 |
}
|
309 |
+
|
310 |
// Add event category to filter
|
311 |
if(isset($this->atts['category']) and trim($this->atts['category'], ', ') != '')
|
312 |
{
|
337 |
'terms'=>$get_locations_id,
|
338 |
);
|
339 |
}
|
340 |
+
|
341 |
// Add event organizer to filter
|
342 |
if(isset($this->atts['organizer']) and trim($this->atts['organizer'], ', ') != '')
|
343 |
{
|
378 |
}
|
379 |
|
380 |
$tax_query = apply_filters('mec_map_tax_query', $tax_query, $this->atts);
|
381 |
+
|
382 |
return $tax_query;
|
383 |
}
|
384 |
+
|
385 |
/**
|
386 |
* Returns meta query for adding to WP_Query
|
387 |
* @author Webnus <info@webnus.biz>
|
393 |
$meta_query['relation'] = 'AND';
|
394 |
|
395 |
$meta_query = apply_filters('mec_map_meta_query', $meta_query, $this->atts);
|
396 |
+
|
397 |
return $meta_query;
|
398 |
}
|
399 |
+
|
400 |
/**
|
401 |
* Returns tag query for adding to WP_Query
|
402 |
* @author Webnus <info@webnus.biz>
|
424 |
}
|
425 |
}
|
426 |
}
|
427 |
+
|
428 |
return trim($tag, ', ');
|
429 |
}
|
430 |
+
|
431 |
/**
|
432 |
* Returns author query for adding to WP_Query
|
433 |
* @author Webnus <info@webnus.biz>
|
436 |
public function author_query()
|
437 |
{
|
438 |
$author = '';
|
439 |
+
|
440 |
// Add event authors to filter
|
441 |
if(isset($this->atts['author']) and trim($this->atts['author'], ', ') != '')
|
442 |
{
|
443 |
$author = $this->atts['author'];
|
444 |
}
|
445 |
+
|
446 |
return $author;
|
447 |
}
|
448 |
+
|
449 |
/**
|
450 |
* Set the current day for filtering events in WP_Query
|
451 |
* @author Webnus <info@webnus.biz>
|
455 |
public function setToday($today = NULL)
|
456 |
{
|
457 |
if(is_null($today)) $today = date('Y-m-d');
|
458 |
+
|
459 |
$this->args['mec-today'] = $today;
|
460 |
$this->args['mec-now'] = strtotime($this->args['mec-today']);
|
461 |
+
|
462 |
$this->args['mec-year'] = date('Y', $this->args['mec-now']);
|
463 |
$this->args['mec-month'] = date('m', $this->args['mec-now']);
|
464 |
$this->args['mec-day'] = date('d', $this->args['mec-now']);
|
465 |
+
|
466 |
$this->args['mec-week'] = (int) ((date('d', $this->args['mec-now']) - 1) / 7) + 1;
|
467 |
$this->args['mec-weekday'] = date('N', $this->args['mec-now']);
|
468 |
}
|
469 |
+
|
470 |
/**
|
471 |
* Join MEC table with WP_Query for filtering the events
|
472 |
* @author Webnus <info@webnus.biz>
|
574 |
if($this->hide_time_method == 'end' and $now >= $mec_date->tend) continue;
|
575 |
}
|
576 |
|
577 |
+
if (($this->multiple_days_method == 'first_day' or ($this->multiple_days_method == 'first_day_listgrid' and in_array($this->skin, array('list', 'grid', 'slider', 'carousel', 'agenda', 'tile')))))
|
578 |
{
|
579 |
// Hide Shown Events on AJAX
|
580 |
if(defined('DOING_AJAX') and DOING_AJAX and $s != $e and $s < strtotime($start) and !$this->show_only_expired_events) continue;
|
663 |
|
664 |
return $dates;
|
665 |
}
|
666 |
+
|
667 |
/**
|
668 |
* Perform the search
|
669 |
* @author Webnus <info@webnus.biz>
|
718 |
// Continue to load rest of events in the first date
|
719 |
if($i === 0 and $this->start_date === $date) $this->args['offset'] = $this->offset;
|
720 |
// Load all events in the rest of dates
|
721 |
+
else
|
722 |
{
|
723 |
$this->offset = 0;
|
724 |
$this->args['offset'] = 0;
|
795 |
|
796 |
return $events;
|
797 |
}
|
798 |
+
|
799 |
/**
|
800 |
* Run the search command
|
801 |
* @author Webnus <info@webnus.biz>
|
806 |
// Events! :)
|
807 |
return $this->events = $this->search();
|
808 |
}
|
809 |
+
|
810 |
/**
|
811 |
* Draw Monthly Calendar
|
812 |
* @author Webnus <info@webnus.biz>
|
819 |
public function draw_monthly_calendar($year, $month, $events = array(), $style = 'calendar')
|
820 |
{
|
821 |
$calendar_path = $this->get_calendar_path($style);
|
822 |
+
|
823 |
// Generate Month
|
824 |
ob_start();
|
825 |
include $calendar_path;
|
847 |
|
848 |
return trim($classes);
|
849 |
}
|
850 |
+
|
851 |
/**
|
852 |
* Generates Search Form
|
853 |
* @author Webnus <info@webnus.biz>
|
857 |
{
|
858 |
// If no fields specified
|
859 |
if(!count($this->sf_options)) return '';
|
860 |
+
|
861 |
$display_style = $fields = $end_div = '';
|
862 |
$first_row = 'not-started';
|
863 |
$display_form = array();
|
892 |
|
893 |
$form = '';
|
894 |
if(trim($fields) && (in_array('dropdown', $display_form) || in_array('text_input', $display_form) || in_array('address_input', $display_form))) $form .= '<div id="mec_search_form_'.$this->id.'" class="mec-search-form mec-totalcal-box">'.$fields.'</div>';
|
895 |
+
|
896 |
return $form;
|
897 |
}
|
898 |
+
|
899 |
/**
|
900 |
* Generate a certain search field
|
901 |
* @author Webnus <info@webnus.biz>
|
906 |
public function sf_search_field($field, $options)
|
907 |
{
|
908 |
$type = isset($options['type']) ? $options['type'] : '';
|
909 |
+
|
910 |
// Field is disabled
|
911 |
if(!trim($type)) return '';
|
912 |
|
913 |
// Status of Speakers Feature
|
914 |
$speakers_status = (!isset($this->settings['speakers_status']) or (isset($this->settings['speakers_status']) and !$this->settings['speakers_status'])) ? false : true;
|
915 |
+
|
916 |
$output = '';
|
917 |
if($field == 'category')
|
918 |
{
|
920 |
{
|
921 |
$output .= '<div class="mec-dropdown-search">
|
922 |
<i class="mec-sl-folder"></i>';
|
923 |
+
|
924 |
$output .= wp_dropdown_categories(array
|
925 |
(
|
926 |
'echo'=>false,
|
936 |
'order'=>'ASC',
|
937 |
'show_count'=>0,
|
938 |
));
|
939 |
+
|
940 |
$output .= '</div>';
|
941 |
}
|
942 |
}
|
946 |
{
|
947 |
$output .= '<div class="mec-dropdown-search">
|
948 |
<i class="mec-sl-location-pin"></i>';
|
949 |
+
|
950 |
$output .= wp_dropdown_categories(array
|
951 |
(
|
952 |
'echo'=>false,
|
962 |
'order'=>'ASC',
|
963 |
'show_count'=>0,
|
964 |
));
|
965 |
+
|
966 |
$output .= '</div>';
|
967 |
}
|
968 |
}
|
972 |
{
|
973 |
$output .= '<div class="mec-dropdown-search">
|
974 |
<i class="mec-sl-user"></i>';
|
975 |
+
|
976 |
$output .= wp_dropdown_categories(array
|
977 |
(
|
978 |
'echo'=>false,
|
988 |
'order'=>'ASC',
|
989 |
'show_count'=>0,
|
990 |
));
|
991 |
+
|
992 |
$output .= '</div>';
|
993 |
}
|
994 |
}
|
998 |
{
|
999 |
$output .= '<div class="mec-dropdown-search">
|
1000 |
<i class="mec-sl-microphone"></i>';
|
1001 |
+
|
1002 |
$output .= wp_dropdown_categories(array
|
1003 |
(
|
1004 |
'echo'=>false,
|
1014 |
'order'=>'ASC',
|
1015 |
'show_count'=>0,
|
1016 |
));
|
1017 |
+
|
1018 |
$output .= '</div>';
|
1019 |
}
|
1020 |
}
|
1024 |
{
|
1025 |
$output .= '<div class="mec-dropdown-search">
|
1026 |
<i class="mec-sl-tag"></i>';
|
1027 |
+
|
1028 |
$output .= wp_dropdown_categories(array
|
1029 |
(
|
1030 |
'echo'=>false,
|
1040 |
'order'=>'ASC',
|
1041 |
'show_count'=>0,
|
1042 |
));
|
1043 |
+
|
1044 |
$output .= '</div>';
|
1045 |
}
|
1046 |
}
|
1050 |
{
|
1051 |
$output .= '<div class="mec-dropdown-search">
|
1052 |
<i class="mec-sl-pin"></i>';
|
1053 |
+
|
1054 |
$output .= wp_dropdown_categories(array
|
1055 |
(
|
1056 |
'echo'=>false,
|
1066 |
'order'=>'ASC',
|
1067 |
'show_count'=>0,
|
1068 |
));
|
1069 |
+
|
1070 |
$output .= '</div>';
|
1071 |
}
|
1072 |
}
|
1150 |
$output = apply_filters('mec_search_fields_to_box', $output, $field, $type, $this->atts, $this->id);
|
1151 |
return $output;
|
1152 |
}
|
1153 |
+
|
1154 |
public function sf_apply($atts, $sf = array(), $apply_sf_date = 1)
|
1155 |
{
|
1156 |
// Return normal atts if sf is empty
|
1161 |
|
1162 |
// Apply Address Search Query
|
1163 |
if(isset($sf['address'])) $atts['address'] = $sf['address'];
|
1164 |
+
|
1165 |
// Apply Category Query
|
1166 |
if(isset($sf['category']) and trim($sf['category'])) $atts['category'] = $sf['category'];
|
1167 |
+
|
1168 |
// Apply Location Query
|
1169 |
if(isset($sf['location']) and trim($sf['location'])) $atts['location'] = $sf['location'];
|
1170 |
+
|
1171 |
// Apply Organizer Query
|
1172 |
if(isset($sf['organizer']) and trim($sf['organizer'])) $atts['organizer'] = $sf['organizer'];
|
1173 |
|
1176 |
|
1177 |
// Apply tag Query
|
1178 |
if(isset($sf['tag']) and trim($sf['tag'])) $atts['tag'] = $sf['tag'];
|
1179 |
+
|
1180 |
// Apply Label Query
|
1181 |
if(isset($sf['label']) and trim($sf['label'])) $atts['label'] = $sf['label'];
|
1182 |
+
|
1183 |
// Apply SF Date or Not
|
1184 |
if($apply_sf_date == 1)
|
1185 |
{
|
1186 |
// Apply Month of Month Filter
|
1187 |
if(isset($sf['month']) and trim($sf['month'])) $this->request->setVar('mec_month', $sf['month']);
|
1188 |
+
|
1189 |
// Apply Year of Month Filter
|
1190 |
if(isset($sf['year']) and trim($sf['year'])) $this->request->setVar('mec_year', $sf['year']);
|
1191 |
+
|
1192 |
// Apply to Start Date
|
1193 |
if(isset($sf['month']) and trim($sf['month']) and isset($sf['year']) and trim($sf['year']))
|
1194 |
{
|
1195 |
$start_date = $sf['year'].'-'.$sf['month'].'-'.(isset($sf['day']) ? $sf['day'] : '01');
|
1196 |
$this->request->setVar('mec_start_date', $start_date);
|
1197 |
+
|
1198 |
$skins = $this->main->get_skins();
|
1199 |
foreach($skins as $skin=>$label)
|
1200 |
{
|
1203 |
}
|
1204 |
}
|
1205 |
}
|
1206 |
+
|
1207 |
$atts = apply_filters('add_to_search_box_query', $atts, $sf );
|
1208 |
+
|
1209 |
return $atts;
|
1210 |
}
|
1211 |
+
|
1212 |
/**
|
1213 |
* Get Locations ID
|
1214 |
* @param string $address
|
1244 |
return ($a_timestamp > $b_timestamp) ? +1 : -1;
|
1245 |
}
|
1246 |
|
1247 |
+
public function booking_button($event, $type = 'button')
|
1248 |
{
|
1249 |
if(!$this->booking_button) return '';
|
1250 |
if(!$this->main->can_show_booking_module($event)) return '';
|
1290 |
elseif($method == 'no') return $title;
|
1291 |
|
1292 |
$target = ($method == 'new' ? 'target="_blank"' : '');
|
1293 |
+
$target = apply_filters('mec_event_link_change_target' , $target, $event->data->ID);
|
1294 |
return '<a '.($class ? 'class="'.$class.'"' : '').' '.($attributes ? $attributes : '').' data-event-id="'.$event->data->ID.'" href="'.$this->main->get_event_date_permalink($event, $event->date['start']['date']).'" '.$target.'>'.$title.'</a>';
|
1295 |
}
|
1296 |
}
|
@@ -20,30 +20,58 @@ class MEC_wc extends MEC_base
|
|
20 |
{
|
21 |
$db = $this->getDB();
|
22 |
|
23 |
-
|
|
|
24 |
{
|
25 |
-
$
|
26 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
|
28 |
-
|
29 |
|
30 |
-
|
31 |
-
|
32 |
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
|
38 |
-
|
39 |
-
|
40 |
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
|
|
47 |
}
|
48 |
|
49 |
return $this;
|
@@ -183,7 +211,7 @@ class MEC_wc extends MEC_base
|
|
183 |
$date = wc_get_order_item_meta($item_id, 'mec_date', true);
|
184 |
$transaction_id = wc_get_order_item_meta($item_id, 'mec_transaction_id', true);
|
185 |
|
186 |
-
if(!trim($event_id) or !trim($date)
|
187 |
if(!isset($mec[$event_id])) $mec[$event_id] = array('date' => '', 'product_ids' => array(), 'transaction_id' => '');
|
188 |
|
189 |
$mec[$event_id]['date'] = $date;
|
@@ -210,13 +238,81 @@ class MEC_wc extends MEC_base
|
|
210 |
$book_ids = array();
|
211 |
foreach($mec as $event_id => $b)
|
212 |
{
|
213 |
-
$transaction_id = $b['transaction_id'];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
214 |
|
215 |
// Transaction
|
216 |
$transaction = $book->get_transaction($transaction_id);
|
217 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
218 |
// Attendees
|
219 |
-
$attendees = isset($transaction['tickets']) ? $transaction['tickets'] :
|
220 |
|
221 |
$attention_date = isset($transaction['date']) ? $transaction['date'] : '';
|
222 |
$attention_times = explode(':', $attention_date);
|
@@ -261,6 +357,9 @@ class MEC_wc extends MEC_base
|
|
261 |
update_post_meta($book_id, 'mec_gateway_label', $gateway->label());
|
262 |
update_post_meta($book_id, 'mec_order_id', $order_id);
|
263 |
|
|
|
|
|
|
|
264 |
$book_ids[] = $book_id;
|
265 |
|
266 |
// Fires after completely creating a new booking
|
20 |
{
|
21 |
$db = $this->getDB();
|
22 |
|
23 |
+
// Added to cart after ticket selection
|
24 |
+
if(!$transaction_id)
|
25 |
{
|
26 |
+
foreach($tickets as $ticket_id => $count)
|
27 |
+
{
|
28 |
+
if(trim($ticket_id) == '') continue;
|
29 |
+
|
30 |
+
$ticket_key = $event_id.':'.$ticket_id;
|
31 |
+
|
32 |
+
// Get Product ID
|
33 |
+
$product_id = $db->select("SELECT `post_id` FROM `#__postmeta` WHERE `meta_key`='mec_ticket' AND `meta_value`='".$ticket_key."'", 'loadResult');
|
34 |
+
|
35 |
+
// Create Product if Doesn't Exists
|
36 |
+
if(!$product_id) $product_id = $this->create($event_id, $ticket_id);
|
37 |
+
// Update Existing Product
|
38 |
+
else $this->update($product_id, $event_id, $ticket_id);
|
39 |
+
|
40 |
+
// Add to Cart
|
41 |
+
WC()->cart->add_to_cart($product_id, $count, 0, array(), array(
|
42 |
+
'mec_event_id' => $event_id,
|
43 |
+
'mec_date' => $date,
|
44 |
+
));
|
45 |
+
}
|
46 |
+
}
|
47 |
+
// Added to cart after MEC booking form
|
48 |
+
else
|
49 |
+
{
|
50 |
+
foreach($tickets as $info)
|
51 |
+
{
|
52 |
+
$ticket_id = isset($info['id']) ? $info['id'] : '';
|
53 |
+
if(trim($ticket_id) == '') continue;
|
54 |
|
55 |
+
$ticket_key = $event_id.':'.$ticket_id;
|
56 |
|
57 |
+
// Get Product ID
|
58 |
+
$product_id = $db->select("SELECT `post_id` FROM `#__postmeta` WHERE `meta_key`='mec_ticket' AND `meta_value`='".$ticket_key."'", 'loadResult');
|
59 |
|
60 |
+
// Create Product if Doesn't Exists
|
61 |
+
if(!$product_id) $product_id = $this->create($event_id, $ticket_id);
|
62 |
+
// Update Existing Product
|
63 |
+
else $this->update($product_id, $event_id, $ticket_id);
|
64 |
|
65 |
+
// Ticket Count
|
66 |
+
$count = isset($info['count']) ? $info['count'] : 1;
|
67 |
|
68 |
+
// Add to Cart
|
69 |
+
WC()->cart->add_to_cart($product_id, $count, 0, array(), array(
|
70 |
+
'mec_event_id' => $event_id,
|
71 |
+
'mec_date' => $date,
|
72 |
+
'mec_transaction_id' => $transaction_id,
|
73 |
+
));
|
74 |
+
}
|
75 |
}
|
76 |
|
77 |
return $this;
|
211 |
$date = wc_get_order_item_meta($item_id, 'mec_date', true);
|
212 |
$transaction_id = wc_get_order_item_meta($item_id, 'mec_transaction_id', true);
|
213 |
|
214 |
+
if(!trim($event_id) or !trim($date)) continue;
|
215 |
if(!isset($mec[$event_id])) $mec[$event_id] = array('date' => '', 'product_ids' => array(), 'transaction_id' => '');
|
216 |
|
217 |
$mec[$event_id]['date'] = $date;
|
238 |
$book_ids = array();
|
239 |
foreach($mec as $event_id => $b)
|
240 |
{
|
241 |
+
$transaction_id = isset($b['transaction_id']) ? $b['transaction_id'] : 0;
|
242 |
+
|
243 |
+
$tickets = array();
|
244 |
+
if(!$transaction_id)
|
245 |
+
{
|
246 |
+
$date = $b['date'];
|
247 |
+
$product_ids = $b['product_ids'];
|
248 |
+
|
249 |
+
$event_tickets = get_post_meta($event_id, 'mec_tickets', true);
|
250 |
+
|
251 |
+
$raw_tickets = array();
|
252 |
+
foreach($product_ids as $product_id)
|
253 |
+
{
|
254 |
+
$key = get_post_meta($product_id, 'mec_ticket', true);
|
255 |
+
if(!trim($key)) continue;
|
256 |
+
|
257 |
+
list($e, $mec_ticket_id) = explode(':', $key);
|
258 |
+
|
259 |
+
if(!isset($raw_tickets[$mec_ticket_id])) $raw_tickets[$mec_ticket_id] = 1;
|
260 |
+
else $raw_tickets[$mec_ticket_id] += 1;
|
261 |
+
|
262 |
+
$ticket = array();
|
263 |
+
$ticket['name'] = $order->get_formatted_billing_full_name();
|
264 |
+
$ticket['email'] = $order->get_billing_email();
|
265 |
+
$ticket['id'] = $mec_ticket_id;
|
266 |
+
$ticket['count'] = 1;
|
267 |
+
$ticket['reg'] = array();
|
268 |
+
$ticket['variations'] = array();
|
269 |
+
|
270 |
+
$tickets[] = $ticket;
|
271 |
+
}
|
272 |
+
|
273 |
+
// Calculate price of bookings
|
274 |
+
$price_details = $book->get_price_details($raw_tickets, $event_id, $event_tickets, array(), false);
|
275 |
+
|
276 |
+
$booking = array();
|
277 |
+
$booking['tickets'] = $tickets;
|
278 |
+
$booking['first_for_all'] = 1;
|
279 |
+
$booking['date'] = $date;
|
280 |
+
$booking['event_id'] = $event_id;
|
281 |
+
$booking['price_details'] = $price_details;
|
282 |
+
$booking['total'] = $price_details['total'];
|
283 |
+
$booking['discount'] = 0;
|
284 |
+
$booking['price'] = $price_details['total'];
|
285 |
+
$booking['coupon'] = NULL;
|
286 |
+
|
287 |
+
// Save Transaction
|
288 |
+
$transaction_id = $book->temporary($booking);
|
289 |
+
}
|
290 |
|
291 |
// Transaction
|
292 |
$transaction = $book->get_transaction($transaction_id);
|
293 |
|
294 |
+
// Apply Coupon
|
295 |
+
$coupons = $order->get_coupon_codes();
|
296 |
+
if(count($coupons))
|
297 |
+
{
|
298 |
+
$wc_discount = $order->get_total_discount();
|
299 |
+
|
300 |
+
$transaction['price_details']['details'][] = array(
|
301 |
+
'amount' => $wc_discount,
|
302 |
+
'description' => __('Discount by WC Coupon', 'modern-events-calendar-lite'),
|
303 |
+
'type' => 'discount',
|
304 |
+
'coupon' => implode(', ', $coupons)
|
305 |
+
);
|
306 |
+
|
307 |
+
$transaction['discount'] = $wc_discount;
|
308 |
+
$transaction['price'] = $order->get_total();
|
309 |
+
$transaction['coupon'] = implode(', ', $coupons);
|
310 |
+
|
311 |
+
$book->update_transaction($transaction_id, $transaction);
|
312 |
+
}
|
313 |
+
|
314 |
// Attendees
|
315 |
+
$attendees = isset($transaction['tickets']) ? $transaction['tickets'] : $tickets;
|
316 |
|
317 |
$attention_date = isset($transaction['date']) ? $transaction['date'] : '';
|
318 |
$attention_times = explode(':', $attention_date);
|
357 |
update_post_meta($book_id, 'mec_gateway_label', $gateway->label());
|
358 |
update_post_meta($book_id, 'mec_order_id', $order_id);
|
359 |
|
360 |
+
// Add WC coupon code
|
361 |
+
if(count($coupons)) update_post_meta($book_id, 'mec_coupon_code', implode(', ', $coupons));
|
362 |
+
|
363 |
$book_ids[] = $book_id;
|
364 |
|
365 |
// Fires after completely creating a new booking
|
@@ -10,10 +10,22 @@ defined('MECEXEC') or die();
|
|
10 |
$event_id = $event->ID;
|
11 |
$gateways = $this->main->get_gateways();
|
12 |
|
|
|
|
|
|
|
|
|
|
|
13 |
$active_gateways = array();
|
14 |
foreach($gateways as $gateway)
|
15 |
{
|
16 |
if(!$gateway->enabled()) continue;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
$active_gateways[] = $gateway;
|
18 |
|
19 |
// When Stripe Connect is enabled and organizer is connected then skip other gateways
|
@@ -94,7 +106,7 @@ if($mecFluentEnable)
|
|
94 |
<?php if(isset($this->settings['coupons_status']) and $this->settings['coupons_status']): ?>
|
95 |
<div class="mec-book-form-coupon">
|
96 |
<form id="mec_book_form_coupon<?php echo $uniqueid; ?>" onsubmit="mec_book_apply_coupon<?php echo $uniqueid; ?>(); return false;">
|
97 |
-
<input type="text" name="coupon" placeholder="<?php esc_attr_e('Discount Coupon', 'modern-events-calendar-lite'); ?>" />
|
98 |
<input type="hidden" name="transaction_id" value="<?php echo $transaction_id; ?>" />
|
99 |
<input type="hidden" name="action" value="mec_apply_coupon" />
|
100 |
<?php wp_nonce_field('mec_apply_coupon_'.$transaction_id); ?>
|
10 |
$event_id = $event->ID;
|
11 |
$gateways = $this->main->get_gateways();
|
12 |
|
13 |
+
$booking_options = get_post_meta($event_id, 'mec_booking', true);
|
14 |
+
if(!is_array($booking_options)) $booking_options = array();
|
15 |
+
|
16 |
+
$gateway_settings = $this->main->get_gateways_options();
|
17 |
+
|
18 |
$active_gateways = array();
|
19 |
foreach($gateways as $gateway)
|
20 |
{
|
21 |
if(!$gateway->enabled()) continue;
|
22 |
+
|
23 |
+
// Gateway is disabled per event
|
24 |
+
if(isset($gateway_settings['gateways_per_event']) and $gateway_settings['gateways_per_event'])
|
25 |
+
{
|
26 |
+
if(isset($booking_options['gateways_'.$gateway->id().'_disabled']) and $booking_options['gateways_'.$gateway->id().'_disabled']) continue;
|
27 |
+
}
|
28 |
+
|
29 |
$active_gateways[] = $gateway;
|
30 |
|
31 |
// When Stripe Connect is enabled and organizer is connected then skip other gateways
|
106 |
<?php if(isset($this->settings['coupons_status']) and $this->settings['coupons_status']): ?>
|
107 |
<div class="mec-book-form-coupon">
|
108 |
<form id="mec_book_form_coupon<?php echo $uniqueid; ?>" onsubmit="mec_book_apply_coupon<?php echo $uniqueid; ?>(); return false;">
|
109 |
+
<input type="text" name="coupon" title="<?php esc_attr_e('Discount Coupon'); ?>" placeholder="<?php esc_attr_e('Discount Coupon', 'modern-events-calendar-lite'); ?>" />
|
110 |
<input type="hidden" name="transaction_id" value="<?php echo $transaction_id; ?>" />
|
111 |
<input type="hidden" name="action" value="mec_apply_coupon" />
|
112 |
<?php wp_nonce_field('mec_apply_coupon_'.$transaction_id); ?>
|
@@ -10,6 +10,10 @@ $event_id = $event->ID;
|
|
10 |
$tickets = isset($event->data->tickets) ? $event->data->tickets : array();
|
11 |
$dates = isset($event->dates) ? $event->dates : array($event->date);
|
12 |
|
|
|
|
|
|
|
|
|
13 |
if($ticket_id)
|
14 |
{
|
15 |
$new_tickets = array();
|
@@ -95,7 +99,7 @@ if($total_spots > 0) $available_spots = min($available_spots, $total_spots);
|
|
95 |
<select class="mec-custom-nice-select" name="book[date]" id="mec_book_form_date<?php echo $uniqueid; ?>" onchange="mec_get_tickets_availability<?php echo $uniqueid; ?>(<?php echo $event_id; ?>, this.value);">
|
96 |
<?php foreach($dates as $date): ?>
|
97 |
<option value="<?php echo $book->timestamp($date['start'], $date['end']); ?>">
|
98 |
-
<?php echo strip_tags($this->date_label($date['start'], $date['end'], $date_format)); ?>
|
99 |
</option>
|
100 |
<?php endforeach; ?>
|
101 |
</select>
|
@@ -103,7 +107,7 @@ if($total_spots > 0) $available_spots = min($available_spots, $total_spots);
|
|
103 |
<?php elseif($book_all_occurrences): ?>
|
104 |
<p class="mec-next-occ-booking-p">
|
105 |
<?php esc_html_e('By booking this event you can attend all occurrences. Some of them are listed below but there might be more.', 'modern-events-calendar-lite'); ?>
|
106 |
-
<div class="mec-next-occ-booking"><?php foreach($dates as $date) echo $this->date_label($date['start'], $date['end'], $date_format)."<br>"; ?></div>
|
107 |
</p>
|
108 |
<input type="hidden" name="book[date]" id="mec_book_form_date<?php echo $uniqueid; ?>" value="<?php echo $book->timestamp($dates[0]['start'], $dates[0]['end']); ?>">
|
109 |
<?php else: ?>
|
@@ -164,7 +168,7 @@ if($total_spots > 0) $available_spots = min($available_spots, $total_spots);
|
|
164 |
<input type="hidden" name="uniqueid" value="<?php echo $uniqueid; ?>" />
|
165 |
<input type="hidden" name="step" value="1" />
|
166 |
<?php wp_nonce_field('mec_book_form_'.$event_id); ?>
|
167 |
-
<button id="mec-book-form-btn-step-1" <?php if($available_spots == '0') echo 'style="display: none;"'; ?> type="submit" onclick="mec_book_form_back_btn_cache(this, <?php echo $uniqueid; ?>);"><?php echo __('Next', 'modern-events-calendar-lite'); ?></button>
|
168 |
</form>
|
169 |
<?php if($from_shortcode): ?>
|
170 |
<style>.nice-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}.nice-select:hover{border-color:#dbdbdb}.nice-select.open,.nice-select:active,.nice-select:focus{border-color:#999}.nice-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}.nice-select.open:after{-webkit-transform:rotate(-135deg);-ms-transform:rotate(-135deg);transform:rotate(-135deg)}.nice-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)}.nice-select.disabled{border-color:#ededed;color:#999;pointer-events:none}.nice-select.disabled:after{border-color:#ccc}.nice-select.wide{width:100%}.nice-select.wide .list{left:0!important;right:0!important}.nice-select.right{float:right}.nice-select.right .list{left:auto;right:0}.nice-select.small{font-size:12px;height:36px;line-height:34px}.nice-select.small:after{height:4px;width:4px}.nice-select.small .option{line-height:34px;min-height:34px}.nice-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}.nice-select .list:hover .option:not(:hover){background-color:transparent!important}.nice-select .option{cursor:pointer;font-weight:400;line-height:40px;list-style:none;min-height:40px;outline:0;padding-left:18px;padding-right:29px;text-align:left;-webkit-transition:all .2s;transition:all .2s}.nice-select .option.focus,.nice-select .option.selected.focus,.nice-select .option:hover{background-color:#f6f6f6}.nice-select .option.selected{font-weight:700}.nice-select .option.disabled{background-color:transparent;color:#999;cursor:default}.no-csspointerevents .nice-select .list{display:none}.no-csspointerevents .nice-select.open .list{display:block}</style>
|
10 |
$tickets = isset($event->data->tickets) ? $event->data->tickets : array();
|
11 |
$dates = isset($event->dates) ? $event->dates : array($event->date);
|
12 |
|
13 |
+
// WC System
|
14 |
+
$WC_status = (isset($settings['wc_status']) and $settings['wc_status'] and class_exists('WooCommerce')) ? true : false;
|
15 |
+
$WC_booking_form = (isset($settings['wc_booking_form']) and $settings['wc_booking_form']) ? true : false;
|
16 |
+
|
17 |
if($ticket_id)
|
18 |
{
|
19 |
$new_tickets = array();
|
99 |
<select class="mec-custom-nice-select" name="book[date]" id="mec_book_form_date<?php echo $uniqueid; ?>" onchange="mec_get_tickets_availability<?php echo $uniqueid; ?>(<?php echo $event_id; ?>, this.value);">
|
100 |
<?php foreach($dates as $date): ?>
|
101 |
<option value="<?php echo $book->timestamp($date['start'], $date['end']); ?>">
|
102 |
+
<?php echo strip_tags($this->date_label($date['start'], $date['end'], $date_format, ' - ', false)); ?>
|
103 |
</option>
|
104 |
<?php endforeach; ?>
|
105 |
</select>
|
107 |
<?php elseif($book_all_occurrences): ?>
|
108 |
<p class="mec-next-occ-booking-p">
|
109 |
<?php esc_html_e('By booking this event you can attend all occurrences. Some of them are listed below but there might be more.', 'modern-events-calendar-lite'); ?>
|
110 |
+
<div class="mec-next-occ-booking"><?php foreach($dates as $date) echo $this->date_label($date['start'], $date['end'], $date_format, ' - ', false)."<br>"; ?></div>
|
111 |
</p>
|
112 |
<input type="hidden" name="book[date]" id="mec_book_form_date<?php echo $uniqueid; ?>" value="<?php echo $book->timestamp($dates[0]['start'], $dates[0]['end']); ?>">
|
113 |
<?php else: ?>
|
168 |
<input type="hidden" name="uniqueid" value="<?php echo $uniqueid; ?>" />
|
169 |
<input type="hidden" name="step" value="1" />
|
170 |
<?php wp_nonce_field('mec_book_form_'.$event_id); ?>
|
171 |
+
<button id="mec-book-form-btn-step-1" <?php if($available_spots == '0') echo 'style="display: none;"'; ?> type="submit" onclick="mec_book_form_back_btn_cache(this, <?php echo $uniqueid; ?>);"><?php echo (($WC_status and !$WC_booking_form) ? __('Add to Cart', 'modern-events-calendar-lite') : __('Next', 'modern-events-calendar-lite')); ?></button>
|
172 |
</form>
|
173 |
<?php if($from_shortcode): ?>
|
174 |
<style>.nice-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}.nice-select:hover{border-color:#dbdbdb}.nice-select.open,.nice-select:active,.nice-select:focus{border-color:#999}.nice-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}.nice-select.open:after{-webkit-transform:rotate(-135deg);-ms-transform:rotate(-135deg);transform:rotate(-135deg)}.nice-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)}.nice-select.disabled{border-color:#ededed;color:#999;pointer-events:none}.nice-select.disabled:after{border-color:#ccc}.nice-select.wide{width:100%}.nice-select.wide .list{left:0!important;right:0!important}.nice-select.right{float:right}.nice-select.right .list{left:auto;right:0}.nice-select.small{font-size:12px;height:36px;line-height:34px}.nice-select.small:after{height:4px;width:4px}.nice-select.small .option{line-height:34px;min-height:34px}.nice-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}.nice-select .list:hover .option:not(:hover){background-color:transparent!important}.nice-select .option{cursor:pointer;font-weight:400;line-height:40px;list-style:none;min-height:40px;outline:0;padding-left:18px;padding-right:29px;text-align:left;-webkit-transition:all .2s;transition:all .2s}.nice-select .option.focus,.nice-select .option.selected.focus,.nice-select .option:hover{background-color:#f6f6f6}.nice-select .option.selected{font-weight:700}.nice-select .option.disabled{background-color:transparent;color:#999;cursor:default}.no-csspointerevents .nice-select .list{display:none}.no-csspointerevents .nice-select.open .list{display:block}</style>
|
@@ -3,6 +3,7 @@
|
|
3 |
defined('MECEXEC') or die();
|
4 |
|
5 |
/** @var MEC_main $this */
|
|
|
6 |
|
7 |
// MEC Settings
|
8 |
$settings = $this->get_settings();
|
@@ -45,7 +46,11 @@ $d1 = new DateTime($start_time);
|
|
45 |
$d2 = new DateTime(current_time("D M j Y G:i:s"));
|
46 |
$d3 = new DateTime($end_time);
|
47 |
|
48 |
-
$
|
|
|
|
|
|
|
|
|
49 |
|
50 |
if($d3 < $d2)
|
51 |
{
|
3 |
defined('MECEXEC') or die();
|
4 |
|
5 |
/** @var MEC_main $this */
|
6 |
+
/** @var MEC_factory $factory */
|
7 |
|
8 |
// MEC Settings
|
9 |
$settings = $this->get_settings();
|
46 |
$d2 = new DateTime(current_time("D M j Y G:i:s"));
|
47 |
$d3 = new DateTime($end_time);
|
48 |
|
49 |
+
$countdown_method = get_post_meta($event->ID, 'mec_countdown_method', true);
|
50 |
+
if(trim($countdown_method) == '') $countdown_method = 'global';
|
51 |
+
|
52 |
+
if($countdown_method == 'global') $ongoing = (isset($settings['hide_time_method']) and trim($settings['hide_time_method']) == 'end') ? true : false;
|
53 |
+
else $ongoing = ($countdown_method == 'end') ? true : false;
|
54 |
|
55 |
if($d3 < $d2)
|
56 |
{
|
@@ -70,8 +70,13 @@ $d1 = new DateTime($start_time);
|
|
70 |
$d2 = new DateTime(current_time("D M j Y G:i:s"));
|
71 |
$d3 = new DateTime($end_time);
|
72 |
|
73 |
-
$
|
74 |
-
if($
|
|
|
|
|
|
|
|
|
|
|
75 |
|
76 |
// Skip if event is ongoing
|
77 |
if($d1 < $d2 and !$ongoing) return;
|
70 |
$d2 = new DateTime(current_time("D M j Y G:i:s"));
|
71 |
$d3 = new DateTime($end_time);
|
72 |
|
73 |
+
$countdown_method = get_post_meta($event->ID, 'mec_countdown_method', true);
|
74 |
+
if(trim($countdown_method) == '') $countdown_method = 'global';
|
75 |
+
|
76 |
+
if($countdown_method == 'global') $ongoing = (isset($settings['hide_time_method']) and trim($settings['hide_time_method']) == 'end') ? true : false;
|
77 |
+
else $ongoing = ($countdown_method == 'end') ? true : false;
|
78 |
+
|
79 |
+
if($ongoing and $d3 < $d2) $ongoing = false;
|
80 |
|
81 |
// Skip if event is ongoing
|
82 |
if($d1 < $d2 and !$ongoing) return;
|
@@ -204,6 +204,127 @@ class MEC_skin_single extends MEC_skins
|
|
204 |
wp_reset_postdata();
|
205 |
}
|
206 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
207 |
/**
|
208 |
* Fluent Related Post in Single
|
209 |
* @author Webnus <info@webnus.biz>
|
@@ -559,10 +680,15 @@ class MEC_skin_single extends MEC_skins
|
|
559 |
// Get event
|
560 |
public function get_event_mec($event_ID)
|
561 |
{
|
|
|
|
|
|
|
|
|
562 |
/// Original Event ID for Multilingual Websites
|
563 |
$original_event_id = $this->main->get_original_event($event_ID);
|
564 |
|
565 |
$events = array();
|
|
|
566 |
$rendered = $this->render->data($event_ID, (isset($this->atts['content']) ? $this->atts['content'] : ''));
|
567 |
|
568 |
// Event Repeat Type
|
204 |
wp_reset_postdata();
|
205 |
}
|
206 |
|
207 |
+
public function display_next_previous_events($event)
|
208 |
+
{
|
209 |
+
if(!isset($this->settings['next_previous_events'])) return;
|
210 |
+
if(isset($this->settings['next_previous_events']) && $this->settings['next_previous_events'] != '1') return;
|
211 |
+
|
212 |
+
if(is_numeric($event)) $event_id = $event;
|
213 |
+
elseif(is_object($event) and isset($event->ID)) $event_id = $event->ID;
|
214 |
+
else return;
|
215 |
+
|
216 |
+
$date = $event->date;
|
217 |
+
$timestamp = (isset($date['start']) and isset($date['start']['timestamp'])) ? $date['start']['timestamp'] : NULL;
|
218 |
+
|
219 |
+
$args = array(
|
220 |
+
'post_type' => 'mec-events',
|
221 |
+
'posts_per_page' => -1,
|
222 |
+
'post_status' => 'publish',
|
223 |
+
'orderby' => 'ASC',
|
224 |
+
'tax_query' => array(),
|
225 |
+
);
|
226 |
+
|
227 |
+
if(isset($this->settings['next_previous_events_category']) && $this->settings['next_previous_events_category'] == 1)
|
228 |
+
{
|
229 |
+
$post_terms = wp_get_object_terms($event_id, 'mec_category', array('fields'=>'slugs'));
|
230 |
+
$args['tax_query'][] = array(
|
231 |
+
'taxonomy' => 'mec_category',
|
232 |
+
'field' => 'slug',
|
233 |
+
'terms' => $post_terms
|
234 |
+
);
|
235 |
+
}
|
236 |
+
|
237 |
+
if(isset($this->settings['next_previous_events_organizer']) && $this->settings['next_previous_events_organizer'] == 1)
|
238 |
+
{
|
239 |
+
$post_terms = wp_get_object_terms($event_id, 'mec_organizer', array('fields'=>'slugs'));
|
240 |
+
$args['tax_query'][] = array(
|
241 |
+
'taxonomy' => 'mec_organizer',
|
242 |
+
'field' => 'slug',
|
243 |
+
'terms' => $post_terms
|
244 |
+
);
|
245 |
+
}
|
246 |
+
|
247 |
+
if(isset($this->settings['next_previous_events_location']) && $this->settings['next_previous_events_location'] == 1)
|
248 |
+
{
|
249 |
+
$post_terms = wp_get_object_terms($event_id, 'mec_location', array('fields'=>'slugs'));
|
250 |
+
$args['tax_query'][] = array(
|
251 |
+
'taxonomy' => 'mec_location',
|
252 |
+
'field' => 'slug',
|
253 |
+
'terms' => $post_terms
|
254 |
+
);
|
255 |
+
}
|
256 |
+
|
257 |
+
if(isset($this->settings['next_previous_events_speaker']) && $this->settings['next_previous_events_speaker'] == 1)
|
258 |
+
{
|
259 |
+
$post_terms = wp_get_object_terms($event_id, 'mec_speaker', array('fields'=>'slugs'));
|
260 |
+
$args['tax_query'][] = array(
|
261 |
+
'taxonomy' => 'mec_speaker',
|
262 |
+
'field' => 'slug',
|
263 |
+
'terms' => $post_terms
|
264 |
+
);
|
265 |
+
}
|
266 |
+
|
267 |
+
if(isset($this->settings['next_previous_events_label']) && $this->settings['next_previous_events_label'] == 1)
|
268 |
+
{
|
269 |
+
$post_terms = wp_get_object_terms($event_id, 'mec_label', array('fields'=>'slugs'));
|
270 |
+
$args['tax_query'][] = array(
|
271 |
+
'taxonomy' => 'mec_label',
|
272 |
+
'field' => 'slug',
|
273 |
+
'terms' => $post_terms
|
274 |
+
);
|
275 |
+
}
|
276 |
+
|
277 |
+
if(isset($this->settings['next_previous_events_tag']) && $this->settings['next_previous_events_tag'] == 1)
|
278 |
+
{
|
279 |
+
$post_terms = wp_get_object_terms($event_id, 'post_tag', array('fields'=>'slugs'));
|
280 |
+
$args['tax_query'][] = array(
|
281 |
+
'taxonomy' => 'post_tag',
|
282 |
+
'field' => 'slug',
|
283 |
+
'terms' => $post_terms
|
284 |
+
);
|
285 |
+
}
|
286 |
+
|
287 |
+
$args['tax_query']['relation'] = 'OR';
|
288 |
+
$args = apply_filters('mec_next_previous_query', $args, $event_id);
|
289 |
+
|
290 |
+
$IDs = array();
|
291 |
+
|
292 |
+
$query = new WP_Query($args);
|
293 |
+
if($query->have_posts())
|
294 |
+
{
|
295 |
+
while($query->have_posts())
|
296 |
+
{
|
297 |
+
$query->the_post();
|
298 |
+
$IDs[] = get_the_ID();
|
299 |
+
}
|
300 |
+
}
|
301 |
+
|
302 |
+
wp_reset_postdata();
|
303 |
+
|
304 |
+
// No Event Found!
|
305 |
+
if(!count($IDs)) return;
|
306 |
+
|
307 |
+
$p = $this->db->select("SELECT `post_id`, `tstart` FROM `#__mec_dates` WHERE `tstart`<'".$timestamp."' AND `post_id` IN (".implode(',', $IDs).") ORDER BY `tstart` DESC LIMIT 1", 'loadAssoc');
|
308 |
+
$n = $this->db->select("SELECT `post_id`, `tstart` FROM `#__mec_dates` WHERE `tstart`>'".$timestamp."' AND `post_id` IN (".implode(',', $IDs).") ORDER BY `tstart` ASC LIMIT 1", 'loadAssoc');
|
309 |
+
|
310 |
+
// No Event Found!
|
311 |
+
if(!isset($p['post_id']) and !isset($n['post_id'])) return;
|
312 |
+
|
313 |
+
echo '<ul class="mec-next-previous-events">';
|
314 |
+
|
315 |
+
if($p['post_id'])
|
316 |
+
{
|
317 |
+
echo '<li class="mec-previous-event"><a class="mec-color mec-bg-color-hover mec-border-color" href="'.$this->main->get_event_date_permalink(get_permalink($p['post_id']), date('Y-m-d', $p['tstart'])).'"><i class="mec-fa-long-arrow-left"></i>'. __('PRV Event', 'modern-events-calendar-lite') .'</a></li>';
|
318 |
+
}
|
319 |
+
|
320 |
+
if($n['post_id'])
|
321 |
+
{
|
322 |
+
echo '<li class="mec-next-event"><a class="mec-color mec-bg-color-hover mec-border-color" href="'.$this->main->get_event_date_permalink(get_permalink($n['post_id']), date('Y-m-d', $n['tstart'])).'">'. __('NXT Event', 'modern-events-calendar-lite') .'<i class="mec-fa-long-arrow-right"></i></a></li>';
|
323 |
+
}
|
324 |
+
|
325 |
+
echo '</ul>';
|
326 |
+
}
|
327 |
+
|
328 |
/**
|
329 |
* Fluent Related Post in Single
|
330 |
* @author Webnus <info@webnus.biz>
|
680 |
// Get event
|
681 |
public function get_event_mec($event_ID)
|
682 |
{
|
683 |
+
if(get_post_type( $event_ID ) != 'mec-events') {
|
684 |
+
return false;
|
685 |
+
}
|
686 |
+
|
687 |
/// Original Event ID for Multilingual Websites
|
688 |
$original_event_id = $this->main->get_original_event($event_ID);
|
689 |
|
690 |
$events = array();
|
691 |
+
|
692 |
$rendered = $this->render->data($event_ID, (isset($this->atts['content']) ? $this->atts['content'] : ''));
|
693 |
|
694 |
// Event Repeat Type
|
@@ -556,7 +556,10 @@ $bookings_limit_for_users = isset($booking_options['bookings_limit_for_users'])
|
|
556 |
</div>
|
557 |
<?php endif; ?>
|
558 |
</article>
|
|
|
559 |
<?php $this->display_related_posts_widget($event->ID); ?>
|
|
|
|
|
560 |
</div>
|
561 |
<?php
|
562 |
// MEC Schema
|
@@ -564,7 +567,7 @@ $bookings_limit_for_users = isset($booking_options['bookings_limit_for_users'])
|
|
564 |
?>
|
565 |
<script>
|
566 |
// Fix modal speaker in some themes
|
567 |
-
jQuery(
|
568 |
{
|
569 |
e.preventDefault();
|
570 |
var id = jQuery(this).attr('href');
|
@@ -572,7 +575,8 @@ jQuery( ".mec-speaker-avatar a" ).click(function(e)
|
|
572 |
});
|
573 |
|
574 |
// Fix modal booking in some themes
|
575 |
-
jQuery(window).on('load', function()
|
|
|
576 |
jQuery( ".mec-booking-button.mec-booking-data-lity" ).click(function(e)
|
577 |
{
|
578 |
e.preventDefault();
|
556 |
</div>
|
557 |
<?php endif; ?>
|
558 |
</article>
|
559 |
+
|
560 |
<?php $this->display_related_posts_widget($event->ID); ?>
|
561 |
+
<?php $this->display_next_previous_events($event); ?>
|
562 |
+
|
563 |
</div>
|
564 |
<?php
|
565 |
// MEC Schema
|
567 |
?>
|
568 |
<script>
|
569 |
// Fix modal speaker in some themes
|
570 |
+
jQuery(".mec-speaker-avatar a").click(function(e)
|
571 |
{
|
572 |
e.preventDefault();
|
573 |
var id = jQuery(this).attr('href');
|
575 |
});
|
576 |
|
577 |
// Fix modal booking in some themes
|
578 |
+
jQuery(window).on('load', function()
|
579 |
+
{
|
580 |
jQuery( ".mec-booking-button.mec-booking-data-lity" ).click(function(e)
|
581 |
{
|
582 |
e.preventDefault();
|
@@ -322,6 +322,8 @@ if(is_plugin_active('schema-markup-rich-snippets/schema-markup-rich-snippets.php
|
|
322 |
</article>
|
323 |
|
324 |
<?php $this->display_related_posts_widget($event->ID); ?>
|
|
|
|
|
325 |
</div>
|
326 |
<?php
|
327 |
// MEC Schema
|
322 |
</article>
|
323 |
|
324 |
<?php $this->display_related_posts_widget($event->ID); ?>
|
325 |
+
<?php $this->display_next_previous_events($event); ?>
|
326 |
+
|
327 |
</div>
|
328 |
<?php
|
329 |
// MEC Schema
|
@@ -14693,6 +14693,68 @@ article.mec-search-bar-result {
|
|
14693 |
transition: all 0.3s ease;
|
14694 |
}
|
14695 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14696 |
/* Fronrend Organizer Payment */
|
14697 |
.mec-fes-form-cntt #mec-organizer-payments ul {
|
14698 |
list-style: none;
|
14693 |
transition: all 0.3s ease;
|
14694 |
}
|
14695 |
|
14696 |
+
/* Next / Previous Events */
|
14697 |
+
.mec-next-previous-events {
|
14698 |
+
width: 100%;
|
14699 |
+
display: block;
|
14700 |
+
padding: 0;
|
14701 |
+
}
|
14702 |
+
|
14703 |
+
.mec-next-previous-events li {
|
14704 |
+
list-style: none;
|
14705 |
+
width: 50%;
|
14706 |
+
display: inline-block;
|
14707 |
+
margin: 40px 0 40px;
|
14708 |
+
}
|
14709 |
+
|
14710 |
+
.mec-next-previous-events li a {
|
14711 |
+
padding: 9px 14px 9px 14px;
|
14712 |
+
border: 1px solid #000;
|
14713 |
+
transition: .3s;
|
14714 |
+
}
|
14715 |
+
|
14716 |
+
.mec-next-previous-events li a:hover {
|
14717 |
+
color: #fff;
|
14718 |
+
}
|
14719 |
+
|
14720 |
+
.mec-previous-event {
|
14721 |
+
float: left;
|
14722 |
+
text-align: left;
|
14723 |
+
}
|
14724 |
+
|
14725 |
+
.mec-next-event {
|
14726 |
+
float: right;
|
14727 |
+
text-align: right;
|
14728 |
+
}
|
14729 |
+
|
14730 |
+
.mec-next-previous-events .mec-previous-event i {
|
14731 |
+
padding-right: 20px;
|
14732 |
+
}
|
14733 |
+
|
14734 |
+
.mec-next-previous-events .mec-next-event i {
|
14735 |
+
padding-left: 20px;
|
14736 |
+
}
|
14737 |
+
|
14738 |
+
@media(max-width: 480px) {
|
14739 |
+
.mec-next-previous-events li {
|
14740 |
+
list-style: none;
|
14741 |
+
width: 100%;
|
14742 |
+
display: block;
|
14743 |
+
margin: 10px 0;
|
14744 |
+
float: unset;
|
14745 |
+
}
|
14746 |
+
|
14747 |
+
.mec-next-previous-events li a {
|
14748 |
+
width: 100%;
|
14749 |
+
max-width: 100%;
|
14750 |
+
float: unset;
|
14751 |
+
display: block;
|
14752 |
+
text-align: center;
|
14753 |
+
font-size: 16px;
|
14754 |
+
}
|
14755 |
+
}
|
14756 |
+
|
14757 |
+
|
14758 |
/* Fronrend Organizer Payment */
|
14759 |
.mec-fes-form-cntt #mec-organizer-payments ul {
|
14760 |
list-style: none;
|
@@ -1 +1 @@
|
|
1 |
-
.lity-container,.mec-wrap,.mec-wrap div:not([class^=elementor-]){font-family:Montserrat,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif}.entry-content .mec-wrap h1,.entry-content .mec-wrap h2,.entry-content .mec-wrap h3,.entry-content .mec-wrap h4,.entry-content .mec-wrap h5,.entry-content .mec-wrap h6,.mec-wrap h1,.mec-wrap h2,.mec-wrap h3,.mec-wrap h4,.mec-wrap h5,.mec-wrap h6{font-family:Montserrat,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;color:#171c24;font-weight:300;font-style:inherit;letter-spacing:normal;clear:none}.mec-wrap h1{font-size:50px;line-height:1.16;margin-bottom:12px;letter-spacing:-1px}.mec-wrap h2{font-size:36px;line-height:1.14;margin-bottom:10px}.mec-wrap h3{font-size:28px;line-height:1.2;margin-bottom:8px}.mec-wrap h4{font-size:24px;line-height:1.2;margin-bottom:10px}.mec-wrap h5{font-size:18px;line-height:1.3;margin-bottom:7px}.mec-wrap h6{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-wrap .subheader{color:#849098}.mec-wrap h1 strong{font-weight:700}.mec-wrap p{margin:0 0 20px 0;color:#616161;font-size:14px;line-height:1.8}.mec-wrap .mec-event-article .mec-color-hover{box-shadow:none;border:none}.mec-wrap abbr,.mec-wrap acronym{cursor:auto;border:none}.entry-content .mec-wrap a{box-shadow:none}.mec-wrap .button,.mec-wrap a.button:not(.owl-dot),.mec-wrap button:not(.owl-dot):not(.gm-control-active),.mec-wrap input[type=button],.mec-wrap input[type=reset],.mec-wrap input[type=submit]{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#24ca4f;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease}.mec-wrap .button:hover,.mec-wrap a.button:hover,.mec-wrap button:hover,.mec-wrap input[type=button]:hover,.mec-wrap input[type=reset]:hover,.mec-wrap input[type=submit]:hover{background:#222;color:#fff}.mec-wrap #mec_woo_add_to_cart_btn_r{min-width:155px;margin-top:5px;border-radius:2px;box-shadow:0 2px 1px rgba(0,0,0,.08);float:left;text-align:center}.mec-booking-form-container button{display:block}.vertical-space,.vertical-space1,.vertical-space2,.vertical-space3,.vertical-space4,.vertical-space5{display:block;width:100%;margin:0;clear:both;border:0 none;height:20px}.vertical-space2{height:40px}.vertical-space3{height:60px}.vertical-space4{height:80px}.vertical-space5{height:100px}@media only screen and (max-width:479px){.vertical-space,.vertical-space1{height:8px}.vertical-space2{height:14px}.vertical-space3{height:28px}.vertical-space4{height:40px}.vertical-space5{height:60px}}@media only screen and (max-width:960px){.vertical-space,.vertical-space1{height:12px}.vertical-space2{height:18px}.vertical-space3{height:36px}.vertical-space4{height:50px}.vertical-space5{height:80px}}.mec-wrap abbr{cursor:auto;border-bottom:0}@-webkit-keyframes rotating{from{-ms-transform:rotate(0);-moz-transform:rotate(0);-webkit-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}to{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes rotating{from{-ms-transform:rotate(0);-moz-transform:rotate(0);-webkit-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}to{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}.mec-wrap{font:14px/25px sans-serif;font-family:Montserrat,Helvetica,Arial,sans-serif;font-weight:400;color:#626262}.mec-wrap .mec-events a{border-bottom:none}.mec-wrap .mec-container a{box-shadow:none}.mec-event-content p{font-family:Roboto,sans-serif;font-weight:300}.mec-wrap .mec-clear:after,.mec-wrap .mec-clear:before{content:" ";display:table}.mec-wrap .mec-clear:after{clear:both}.mec-events-button{background:#fff;padding:12px 34px;font-size:13px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;margin-right:10px;transition:.3s}.mec-wrap .mec-events-button:hover{color:#fff}.mec-no-event{display:none}#mec-active-current{display:block}.current-hide #mec-active-current{display:none!important}.mec-event-grid-classic .mec-event-article{position:relative;border:2px solid #e3e3e3;box-shadow:0 2px 0 0 rgba(0,0,0,.016);margin-bottom:30px;max-width:none}.mec-event-grid-classic .mec-event-content{background:#fff;color:#767676;padding:0 20px 5px;text-align:center;min-height:125px}.mec-event-grid-classic .mec-event-title{color:#202020;margin:10px 0;font-weight:700;font-size:20px;letter-spacing:1px;text-transform:uppercase}.mec-event-grid-classic .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-classic .mec-event-date{font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:1px;color:#fff;padding:3px 20px;margin:0 -20px 20px -20px;text-align:center}.mec-event-grid-classic .mec-event-content p{font-size:15px;color:#8a8a8a}.mec-event-grid-classic .mec-event-detail{display:none}.mec-event-grid-classic img{margin-bottom:0;width:100%}.mec-event-footer{position:relative;border-top:1px solid #efefef;padding:20px;min-height:80px;margin:0;background:#fafafa}.mec-event-sharing-wrap{left:15px;position:absolute;list-style:none;margin:0;padding-left:0}.mec-event-sharing-wrap .mec-event-sharing{position:absolute;padding:8px 0 2px;left:-6px;bottom:54px;margin:0;margin-top:6px;border-radius:5px;width:50px;visibility:hidden;opacity:0;border:1px solid #e2e2e2;background:#fff;box-shadow:0 0 9px 0 rgba(0,0,0,.06);z-index:99;-webkit-transition:all .18s ease;transition:all .18s ease}.mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-sharing-wrap .mec-event-sharing:before{content:'';display:block;position:absolute;bottom:-10px;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-event-sharing-wrap .mec-event-sharing:before{bottom:-21px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-sharing-wrap .mec-event-sharing:after{bottom:-19px;border-color:#fff transparent transparent transparent}.mec-event-sharing-wrap:hover .mec-event-sharing{opacity:1;visibility:visible}.mec-event-sharing-wrap li{text-align:center;border:0;display:block;margin-right:2px;overflow:hidden;margin:0 auto 6px;width:38px}.mec-event-sharing-wrap:hover>li{cursor:pointer;background-color:#40d9f1}.mec-event-sharing-wrap:hover li a{color:#fff}.mec-event-sharing-wrap>li:first-of-type{border:1px solid #d9d9d9}.mec-event-sharing-wrap li a,.mec-event-sharing-wrap:hover li ul li a{border:none;color:#767676}.mec-event-sharing-wrap li i{width:36px;height:36px;display:table-cell;vertical-align:middle}.mec-event-sharing-wrap li svg{height:16px}.mec-event-sharing-wrap .mec-event-sharing li a{display:block}.mec-event-sharing-wrap .mec-event-sharing li:hover a{color:#40d9f1}.mec-event-sharing .mec-event-share:hover .event-sharing-icon{background:#40d9f1;border-width:0 1px 0;cursor:pointer}.mec-event-sharing .mec-event-map{border-width:1px 0 1px}.mec-event-footer .mec-booking-button{box-shadow:none;transition:all .21s ease;font-size:11px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:1px solid #e8e8e8;position:absolute;top:20px;right:15px;padding:0 16px;line-height:37px;height:38px}.mec-event-footer .mec-booking-button:hover{background:#191919;color:#fff;border-color:#191919}@media only screen and (max-width:960px){.mec-event-grid-classic{margin-bottom:30px}}.mec-widget .mec-event-grid-classic.mec-owl-carousel{padding:36px 0 16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav{margin:5px 0;width:100%;position:absolute;top:15px;padding:0}.mec-skin-grid-container.mec-widget{padding-top:18px}.mec-widget .mec-event-grid-classic.mec-owl-carousel{padding:20px 0 16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav{margin:0;width:100%;position:absolute;top:0;padding:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav div{position:absolute;background:#fff;line-height:0;width:34px;height:26px;padding:6px;text-align:center;margin-top:-17px;border-radius:3px;border:1px solid #e2e2e2;text-align:center;box-shadow:0 2px 0 0 rgba(0,0,0,.028);transition:all .33s ease}.mec-skin-grid-container .mec-categories{padding:0}.mec-skin-grid-container .mec-categories li{list-style:none}.mec-skin-grid-container .mec-categories li a{color:#000;line-height:24px;text-align:left;transition:all .23s ease;-webkit-transition:all .23s ease}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav .owl-next{right:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav .owl-prev{left:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-sharing{display:none}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-footer{text-align:center}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-footer .mec-booking-button{position:static;padding:11px 16px}.widget .mec-event-footer ul.mec-event-sharing-wrap li a.mec-event-share-icon{padding:0}@media screen and (min-width:56.875em){.mec-widget .mec-month-container dl{margin-bottom:0}}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-footer{text-align:right}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-sharing-wrap{left:5px;padding-left:5px}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-sharing-wrap .mec-event-sharing{left:0}.mec-widget .mec-event-sharing-wrap .mec-event-sharing{position:absolute;top:auto;bottom:52px;margin:0;margin-top:0;border-radius:5px}.mec-widget .mec-event-sharing-wrap .mec-event-sharing:after{top:auto;bottom:-17px;border-color:#fff transparent transparent transparent}.mec-widget .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-18px;border-color:#e2e2e2 transparent transparent transparent}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav button{position:absolute;background:#fff;padding:6px;margin-top:-17px;border-radius:3px;border:1px solid #e2e2e2;box-shadow:0 2px 0 0 rgba(0,0,0,.028)}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav button:hover{background:#40d9f1;border-color:#40d9f1}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav button:hover i{color:#fff}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-booking-button{width:40%;float:right;color:#202020;height:36px;line-height:16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-booking-button:hover{color:#fff}.mec-widget .mec-event-list-modern .col-md-2.col-sm-2,.mec-widget .mec-event-list-modern .col-md-6.col-sm-6{padding:0;width:100%;display:block;position:unset}.mec-widget .mec-event-list-modern .col-md-4.col-sm-4 .mec-booking-button{width:80%;height:46px;line-height:22px;padding:11px 20px;float:right}.mec-widget .mec-event-list-modern .col-md-4.col-sm-4.mec-btn-wrapper{top:auto;bottom:5%}@media (max-width:480px){.mec-widget .mec-event-list-modern .col-md-4.col-sm-4{padding:0}.mec-widget .mec-event-list-modern .col-md-4.col-sm-4 .mec-booking-button{width:100%}}.mec-event-grid-clean{margin-bottom:10px;max-width:none}.mec-event-grid-clean .mec-event-article{margin-bottom:30px;position:relative;border:1px solid #e2e2e2;text-align:center;padding:15px 15px 0;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-clean .mec-event-content{background:#fff;color:#767676;padding:25px 16px 0;text-align:left}.mec-event-grid-clean .mec-event-title{color:#202020;margin:0 0 10px 0;font-weight:700;font-size:21px;text-transform:capitalize}.mec-event-grid-clean .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-clean .mec-event-date{font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:1px;background-color:#40d9f1;color:#fff;padding:3px 0;margin:0;text-align:center}.mec-event-grid-clean .mec-event-content p{font-size:15px;color:#9a9a9a;line-height:1.54}.mec-event-grid-clean img{margin-bottom:0;width:100%}.mec-event-grid-clean .event-grid-t2-head{margin-bottom:10px;color:#fff;padding:9px 14px 6px;text-align:left}.mec-event-grid-clean .event-grid-t2-head .mec-event-date{font-size:50px;line-height:50px;float:left;margin-right:11px}.mec-event-grid-clean .event-grid-t2-head .mec-event-month{text-transform:uppercase;font-size:17px;line-height:20px;padding-top:4px}.mec-event-grid-clean .event-grid-t2-head .mec-event-detail{font-size:12px}.mec-event-grid-clean .event-grid-t2-head .mec-categories li a{margin-bottom:10px;color:#fff}.mec-event-grid-clean .event-grid-t2-head .mec-categories li a:hover{color:#000}.mec-event-grid-clean .mec-event-sharing-wrap{left:0;padding-left:0}.mec-event-grid-clean .mec-event-footer{position:relative;border-top:2px solid;padding:20px 0;margin:0 14px;text-align:left;background:0 0}.mec-event-grid-clean .mec-event-footer .mec-booking-button{right:0}.mec-event-grid-clean .row{margin-bottom:30px}.mec-event-grid-modern{margin-bottom:10px;max-width:none}.mec-event-grid-modern .mec-event-article{position:relative;border:1px solid #e2e2e2;text-align:center;margin-bottom:30px;padding:45px 15px 10px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-modern .mec-event-content{background:#fff;color:#767676;padding:35px 15px 10px;text-align:left}.mec-event-grid-modern .mec-event-title{color:#202020;margin:0 0 10px 0;font-weight:700;font-size:24px;text-transform:none;letter-spacing:-1px}.mec-event-grid-modern .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-modern .mec-event-content p{font-size:15px;color:#9a9a9a;line-height:1.54}.mec-event-grid-modern img{margin-bottom:0;width:100%}.mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:9px 14px 6px;text-align:left}.mec-event-grid-modern .event-grid-modern-head .mec-event-date{font-size:50px;line-height:50px;float:left;margin-right:11px}.mec-event-grid-modern .event-grid-modern-head .mec-event-month{text-transform:uppercase;font-size:17px;line-height:20px;padding-top:4px}.mec-event-grid-modern .event-grid-modern-head .mec-event-detail{font-size:12px}.mec-event-grid-modern .event-grid-modern-head .mec-event-day{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:35px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-event-grid-modern .mec-event-footer{position:relative;height:90px;padding:20px 0;border:none;margin:0 14px;text-align:left;background:0 0}.mec-event-grid-modern .mec-event-footer .mec-booking-button{right:auto;left:0}.mec-event-grid-modern .mec-event-sharing-wrap{left:auto;right:0;padding-left:0}.mec-event-grid-modern .mec-event-sharing{left:auto;right:-6px}.mec-event-grid-modern .mec-event-sharing-wrap li{border-radius:55px}.mec-event-grid-modern .row{margin-bottom:0}@media only screen and (max-width:479px){.mec-event-grid-modern .mec-event-article{padding-bottom:30px}.mec-event-grid-modern .mec-event-sharing{top:60px;left:0;right:auto}.mec-event-grid-modern .mec-event-footer .mec-booking-button{top:0}}span.mec-event-title-soldout{font-size:8px;font-weight:700;letter-spacing:.5px;text-transform:uppercase;background:#e63360;color:#fff;padding:3px 8px;line-height:1;border-radius:15px;white-space:nowrap;vertical-align:middle}.mec-event-grid-colorful .mec-event-article{min-height:400px;border:none;box-shadow:none;background:#40d9f1;padding-top:25px;margin:0;color:#fff}.mec-event-grid-colorful .mec-event-content{background:0 0}.mec-event-grid-colorful .event-grid-modern-head,.mec-event-grid-colorful .event-grid-modern-head .mec-event-date,.mec-event-grid-colorful .event-grid-modern-head .mec-event-day,.mec-event-grid-colorful .mec-event-content p,.mec-event-grid-colorful .mec-event-sharing-wrap>li>a,.mec-event-grid-colorful .mec-event-title a{color:#fff}.mec-event-grid-colorful .mec-event-footer .mec-booking-button{border:none}.mec-event-grid-colorful .mec-event-sharing-wrap>li{border-color:#fff}.mec-event-grid-colorful .mec-event-sharing-wrap:hover>li{background:#333;border-color:#333}.mec-event-grid-colorful .mec-event-title a.mec-color-hover:hover{color:#fff;text-decoration:underline}.mec-event-grid-colorful .mec-event-title .event-color{display:none}.mec-event-grid-colorful div[class^=col-md-]{padding:0 1px 1px 0;margin:0}.mec-event-grid-colorful .mec-event-article .mec-time-details{color:#fff}@media only screen and (min-width:768px){.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-day{font-size:26px}.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-month{font-size:15px}.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-date{font-size:50px}.mec-wrap.mec-sm959.mec-event-grid-colorful .mec-event-title{font-size:21px}.mec-wrap.mec-sm959.mec-event-grid-colorful .mec-event-content p{font-size:13px}}@media only screen and (min-width:768px) and (max-width:1200px){.mec-wrap.mec-sm959.mec-event-grid-colorful div[class^=col-md-]{width:50%}}.mec-event-list-minimal .mec-event-article{border-bottom:1px solid #efefef;padding:24px 0 16px}.mec-event-list-minimal .mec-wrap .col-md-9{padding:0}.mec-event-list-minimal .mec-event-date{position:relative;float:left;margin-right:30px;color:#fff;width:52px;padding:6px 4px 3px;text-align:center;text-transform:uppercase;border-radius:3px}.mec-event-list-minimal .mec-event-date span{display:block;font-size:24px;font-weight:700;text-align:center;margin-bottom:4px}.mec-event-list-minimal .mec-event-date:after{display:block;content:"";position:absolute;width:50px;left:1px;top:1px;height:34px;background:rgba(255,255,255,.1);box-shadow:0 4px 4px rgba(0,0,0,.02)}.mec-event-list-minimal .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;font-size:18px;text-transform:uppercase;letter-spacing:0;padding-top:10px}.mec-event-list-minimal .mec-event-detail,.mec-event-list-minimal .mec-time-details{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;font-family:Roboto,sans-serif}.mec-event-list-minimal .btn-wrapper{text-align:right;padding-right:0;padding-top:6px}.mec-event-list-minimal .btn-wrapper .mec-detail-button{border-bottom:0;margin-bottom:14px;margin-right:0;box-shadow:none}.mec-event-list-minimal a.mec-detail-button{text-align:center;display:inline-block;background:#ededed;color:#191919;padding:12px;border-radius:2px;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:2px;transition:all .24s ease}.mec-event-list-minimal a.mec-detail-button:hover{background:#292929;color:#fff}.vc_col-sm-4 .mec-event-list-minimal .mec-event-date,.vc_col-sm-6 .mec-event-list-minimal .mec-event-date{margin-right:12px}.vc_col-sm-4 .mec-event-list-minimal .mec-event-title,.vc_col-sm-6 .mec-event-list-minimal .mec-event-title{font-size:15px;letter-spacing:2px}@media only screen and (min-width:480px) and (max-width:767px){.mec-event-list-minimal .btn-wrapper{padding-left:0}.mec-event-list-minimal .mec-event-date{margin-right:10px}}@media only screen and (max-width:767px){.mec-event-list-minimal .btn-wrapper .mec-detail-button{display:block;text-align:center;margin:0;margin-top:16px;padding:8px}.mec-event-list-minimal .btn-wrapper{margin:12px 0}}@media only screen and (max-width:479px){.mec-event-list-minimal .mec-event-date{float:none;width:100%;margin-bottom:8px}.mec-event-list-minimal .mec-event-date span{display:inline;padding-right:25px;margin-right:7px;font-size:inherit}.mec-event-list-minimal .mec-event-date:after{width:45%;box-shadow:4px 0 4px rgba(0,0,0,.02)}.mec-event-list-minimal .btn-wrapper{text-align:center;padding-left:0}.mec-event-list-minimal{text-align:center}.mec-event-list-minimal .mec-event-detail{margin-bottom:10px}}.mec-wrap .mec-event-list-modern .mec-event-title{margin-top:0;margin-bottom:10px}.mec-event-list-modern .mec-event-article{border-bottom:1px solid #efefef;padding:30px 0 10px}.mec-event-list-modern .mec-event-article:last-child{border-bottom:none}.mec-event-list-modern .mec-event-title a{color:#191919;transition:all .24s ease;box-shadow:none}.mec-event-list-modern .mec-event-date{text-transform:uppercase;padding:10px 0}.mec-event-list-modern .mec-event-date .event-d{font-size:48px;display:table-cell;padding:10px 0 0}.mec-event-list-modern .mec-event-date .event-f{font-size:13px;display:table-cell;vertical-align:middle;padding-left:7px;font-weight:500;letter-spacing:3px;color:#777}.mec-event-list-modern .mec-event-detail{font-weight:300;color:#8a8a8a}.mec-event-list-modern .mec-event-detail .mec-time-details{display:inline}.mec-event-list-modern .mec-event-date .event-da{margin-top:9px;color:silver;font-size:28px;font-weight:100;text-transform:uppercase;letter-spacing:-1px;text-align:left}.mec-event-list-modern .mec-btn-wrapper .mec-booking-button{border-radius:1px;letter-spacing:2px;border:1px solid #e6e6e6;color:#333;background-color:#fff;padding:13px 20px;font-weight:700;font-size:11px;box-shadow:0 2px 0 0 rgba(0,0,0,.016);transition:all .28s ease}.mec-event-list-modern .mec-btn-wrapper .mec-booking-button:hover{border-color:#222;background:#222;color:#fff}.mec-event-list-modern .mec-event-title{font-weight:700;font-size:20px;text-transform:uppercase;letter-spacing:1px}.mec-event-list-modern .mec-event-detail{color:#9a9a9a;font-size:15px;font-weight:300;line-height:25px;font-family:Roboto,sans-serif}.mec-event-list-modern .mec-btn-wrapper{text-align:right;padding:10px 0;text-transform:uppercase}.mec-event-list-modern .mec-event-sharing{position:relative;margin:10px 0}.mec-event-list-modern .mec-event-sharing>li{display:inline-block;border:none;border-radius:50%;margin-right:3px}.mec-event-list-modern .mec-event-sharing>li:hover{display:inline-block}.mec-event-list-modern .mec-event-sharing>li:hover a i{color:#fff;background:#40d9f1;border-color:#40d9f1}.mec-event-list-modern .mec-event-sharing>li i{width:36px;display:inline-block;line-height:35px;color:#767676;text-align:center;border-radius:50%;border:1px solid #ddd;font-size:14px}.mec-event-list-modern .mec-event-sharing .mec-event-share:hover .mec-event-sharing-icon{background:#40d9f1;border-color:#40d9f1;cursor:pointer;border-radius:50%}.mec-event-list-modern .mec-event-sharing li:hover a i{background:#40d9f1}@media only screen and (min-width:768px){.mec-event-list-modern .mec-event-article{position:relative;min-height:160px;overflow:hidden}.mec-event-list-modern .col-md-2.col-sm-2{width:210px;position:absolute;left:0;top:20px}.mec-event-list-modern .col-md-4.col-sm-4.mec-btn-wrapper{width:180px;padding:0;position:absolute;right:0;top:30%}.mec-event-list-modern .col-md-6.col-sm-6{width:100%;padding-left:225px;padding-right:195px}}@media only screen and (max-width:767px){.mec-event-list-modern .mec-btn-wrapper .mec-booking-button{letter-spacing:1px;border:1px solid #e1e1e1;padding:8px 16px}.mec-event-list-modern .mec-btn-wrapper{padding:0 0 12px}.mec-event-list-modern .mec-event-sharing{margin-bottom:0}}.mec-event-grid-minimal .mec-event-article{margin:15px 0;min-height:80px;display:table}.mec-event-grid-minimal .event-detail-wrap{display:table-cell;vertical-align:middle}.mec-event-grid-minimal .mec-event-date{width:70px;float:left;margin-right:20px;padding:12px 16px 10px;text-align:center;text-transform:uppercase;border-radius:4px;border:1px solid #e6e6e6;transition:all .37s ease-in-out;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-minimal .mec-event-date span{display:block;font-size:24px;font-weight:700;text-align:center;margin-bottom:4px;color:#2a2a2a;transition:color .3s ease}.mec-event-grid-minimal .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;line-height:21px;font-size:16px;text-transform:uppercase;transition:color .3s ease}.mec-event-grid-minimal .mec-event-title a{color:#191919;transition:color .3s ease}.mec-event-grid-minimal .mec-event-detail,.mec-event-grid-minimal .mec-time-details{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;font-family:Roboto,sans-serif;margin-bottom:5px}.mec-event-grid-minimal .mec-event-date:hover{color:#fff}.mec-event-grid-minimal .mec-event-date:hover span{color:#fff}.mec-wrap .mec-event-grid-minimal .mec-event-date:hover{color:#fff}.mec-event-list-classic .mec-event-article{padding:12px 0;margin-bottom:20px}.mec-event-list-classic .mec-event-image{float:left;width:86px;margin-right:20px}.mec-event-list-classic .mec-event-date,.mec-event-list-classic .mec-event-time{font-weight:400;font-size:13px;letter-spacing:0;line-height:18px;text-align:left;display:initial;margin-right:12px}.mec-event-list-classic .mec-event-time .mec-time-details,.mec-event-list-classic .mec-event-time i{display:inline;margin-right:3px}.mec-event-list-classic .mec-event-date span{font-weight:500;margin-bottom:6px}.mec-event-list-classic .mec-event-title{font-size:15px;margin:10px 0 12px;font-weight:700;text-transform:uppercase}.mec-event-list-classic .mec-event-title a{color:#494949;transition:color .3s ease}.mec-event-list-classic .mec-event-detail{color:#777;font-weight:400;line-height:12px;font-size:12px;overflow:hidden}.mec-event-list-classic a.magicmore{padding:10px 16px;color:#fff;background:#222;letter-spacing:2px;font-size:11px}.mec-event-list-classic a.magicmore:after{content:"";display:none}.mec-event-list-classic a.magicmore:hover{color:#40d9f1}.mec-event-grid-simple .mec-event-article{position:relative;margin-bottom:30px}.mec-event-grid-simple .mec-event-article:after{border-right:1px solid #e6e6e6;height:60px;position:absolute;top:50%;margin-top:-30px;right:-1px}.mec-event-grid-simple .row div:last-child .mec-event-article:after{border:none}.mec-event-grid-simple .row{margin:15px 0 30px;text-align:center}.mec-event-grid-simple .mec-event-date{padding:0;margin:0;text-transform:capitalize;font-size:12px;font-weight:700}.mec-event-grid-simple .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;line-height:21px;font-size:15px;padding-top:5px;text-transform:uppercase;transition:color .37s ease}.mec-event-grid-simple .mec-event-title a{color:#494949;transition:color .3s ease}.mec-event-grid-simple .mec-event-detail{font-family:Roboto,sans-serif;font-weight:400;line-height:1;letter-spacing:0;font-size:13px;color:#777}.mec-event-grid-simple:hover .mec-event-title{color:#40d9f1}.mec-event-grid-simple:hover .mec-event-date{background:0 0}.event-last:after{display:none}@media only screen and (max-width:767px){.mec-event-grid-simple .mec-event-article{padding-bottom:20px;margin-bottom:20px;border-bottom:1px solid #eee}.mec-event-grid-simple .mec-event-article:after{border:none}}.mec-event-grid-novel .mec-event-article{position:relative;margin-bottom:30px;padding:60px 5% 60px 7%;border:1px solid rgba(255,255,255,.12);border-radius:10px;background-color:#0050fd;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease;z-index:1}.mec-event-grid-novel .mec-event-article .novel-grad-bg{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:10px;opacity:0;z-index:-1;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease}.mec-event-grid-novel .mec-event-article:hover{-webkit-box-shadow:0 13px 36px 0 rgba(0,0,0,.23);box-shadow:0 13px 36px 0 rgba(0,0,0,.23);border-color:transparent}.mec-event-grid-novel .mec-event-article:hover .novel-grad-bg{background-image:-webkit-gradient(linear,left top,right top,from(#262e32),to(#0e1015));background-image:-webkit-linear-gradient(left,#262e32 0,#0e1015 100%);background-image:-o-linear-gradient(left,#262e32 0,#0e1015 100%);background-image:linear-gradient(90deg,#262e32 0,#0e1015 100%);opacity:1}.mec-event-grid-novel .mec-event-image{float:left;width:150px;height:150px}.mec-event-grid-novel .mec-event-image img{width:150px;height:150px;border-radius:50%}.mec-event-grid-novel .mec-event-detail-wrap{margin-left:200px}.mec-event-grid-novel .mec-event-content h4{position:relative;margin-bottom:10px;display:inline-block}.mec-event-grid-novel .mec-event-content h4 a{font-size:24px;line-height:35px;color:#fafcff}.mec-event-grid-novel .mec-event-content h4::before{content:'';position:absolute;top:8px;left:-30px;width:17px;height:17px;background:#5cd0ed;opacity:.4;border-radius:50%}.mec-event-grid-novel .mec-event-content h4::after{content:'';position:absolute;top:12px;left:-26px;width:9px;height:9px;background:#5cd0ed;border-radius:50%}.mec-skin-grid-container .mec-event-grid-novel .mec-categories li a{color:#fff}.mec-event-grid-novel .mec-event-address,.mec-event-grid-novel .mec-event-detail,.mec-event-grid-novel .mec-event-month,.mec-event-grid-novel .mec-local-time-details{position:relative;padding-left:35px;font-size:15px;line-height:30px;color:rgba(255,255,255,.4)}.mec-event-grid-novel .mec-event-address::before,.mec-event-grid-novel .mec-event-detail::before,.mec-event-grid-novel .mec-event-month::before,.mec-event-grid-novel .mec-local-time-details:before{position:absolute;top:6px;left:6px;font-size:17px;font-family:simple-line-icons;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1}.mec-event-grid-novel .mec-local-time-details::before{content:"\e007"}.mec-event-grid-novel .mec-event-month::before{content:"\e075"}.mec-event-grid-novel .mec-event-detail::before{content:"\e081"}.mec-event-grid-novel .mec-event-address::before{content:"\e096"}.mec-event-grid-novel .mec-event-footer{clear:both;padding:20px 0;border-top:none;background:0 0}.mec-event-grid-novel .mec-event-footer .mec-booking-button{right:auto;left:0;height:42px;width:148px;padding:0 20px;font-size:14px;font-weight:400;line-height:42px;text-align:center;color:#fff;background:0 0;border-color:rgba(255,255,255,.1);border-radius:50px}.mec-event-grid-novel .mec-event-footer .mec-booking-button:hover{background-color:rgba(255,255,255,.1)}.mec-event-grid-novel .mec-event-sharing-wrap{left:175px;cursor:pointer;padding-left:0}.mec-event-grid-novel .mec-event-sharing-wrap>li{border-color:rgba(255,255,255,.1);border-radius:50%}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing{top:-5px;left:0;padding:5px 10px 2px 50px;min-width:150px;width:inherit;height:37px;background-color:rgba(255,255,255,.1);-webkit-box-shadow:none;box-shadow:none;border:none;border-radius:50px}.mec-event-grid-novel .mec-event-sharing-wrap:hover>li{background-color:rgba(255,255,255,.1)}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing::after,.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing::before{display:none}.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon,.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon a,.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li i{display:inline}.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon a{padding:0 10px}.mec-event-grid-novel .mec-event-sharing-wrap>li a{color:#fff}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li a{color:rgba(255,255,255,.4)}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li a:hover{color:rgba(255,255,255,1)}@media only screen and (max-width:1200px){.mec-event-grid-novel .row .col-md-6.col-sm-6{width:100%;float:none}.mec-event-grid-novel .mec-event-image{float:none;margin-top:-20px;margin-bottom:20px}.mec-event-grid-novel .mec-event-detail-wrap{margin-left:20px}.mec-event-grid-novel .mec-event-footer{margin-top:30px}}@media only screen and (max-width:767px){.mec-event-grid-novel .mec-event-footer{margin-top:0;padding-top:30px;margin-bottom:24px}.mec-event-grid-novel .mec-event-footer .mec-booking-button{display:block;position:relative}.mec-event-grid-novel .mec-event-sharing-wrap{left:0;bottom:-55px;padding-left:0}.mec-event-grid-novel .mec-event-content h4 a{font-size:20px;line-height:1.3}}.mec-event-grid-novel .mec-event-sharing-wrap{padding-left:0}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing{width:fit-content;z-index:999999}@media(min-width:1280px){.mec-event-grid-novel .col-md-4.col-sm-4 .mec-event-article img{width:100px;height:100px}.mec-event-grid-novel .col-md-4.col-sm-4 .mec-event-detail-wrap{margin-left:150px}}@media(min-width:760px) and (max-width:1024px){.mec-event-grid-novel .col-md-4.col-sm-4{width:100%}.mec-event-grid-novel .mec-event-image{float:left}.mec-event-grid-novel .col-md-4.col-sm-4 .mec-event-article img{width:100px;height:100px}}.mec-event-cover-modern{position:relative}.mec-event-cover-modern .mec-event-cover-a{background:0 0;position:absolute;color:#fff;bottom:0;left:0;text-decoration:none}.mec-event-cover-modern .mec-event-cover-a .mec-event-overlay{transition:all .5s;opacity:.8;width:100%;height:100%;position:absolute}.mec-event-cover-modern .mec-event-cover-a:hover .mec-event-overlay{opacity:1}.mec-event-cover-modern .mec-event-detail{padding:40px;position:relative}.mec-event-cover-modern .mec-event-cover-a:hover .mec-event-tag{color:#333;transition:all .5s}.mec-event-cover-modern .mec-event-cover-a .mec-event-title:hover{text-decoration:underline}.mec-event-cover-modern .mec-event-tag{background:#fff;display:inline-block;padding:5px 9px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:24px}.mec-event-cover-modern .mec-event-date{text-transform:uppercase;font-size:17px;font-weight:300}.mec-event-cover-modern .mec-event-title{color:#fff;text-transform:uppercase;font-size:40px;font-weight:700;margin:6px 0}.mec-event-cover-modern .mec-event-place{font-weight:400;font-size:18px;font-family:Roboto,sans-serif}@media only screen and (max-width:767px){.mec-event-cover-modern .mec-event-cover-a{width:100%}}.mec-event-cover-classic{position:relative;overflow:hidden;background:#fff;padding:6px;border:1px solid #e8e8e8}.mec-event-cover-classic .mec-event-overlay{position:absolute;left:6px;right:6px;bottom:6px;top:6px;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-cover-classic:hover .mec-event-overlay{background-color:rgba(36,36,36,.6)}.mec-event-cover-classic .mec-event-content{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out}.mec-event-cover-classic .mec-event-date{font-size:14px;text-transform:uppercase;font-weight:400;line-height:1.6}.mec-event-cover-classic .mec-event-date span{display:block;font-weight:700;font-size:16px}.mec-event-cover-classic .mec-event-title{color:#fff;margin:20px 0 38px;font-size:24px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-cover-classic .mec-btn-wrapper{text-align:left}.mec-event-cover-classic .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-cover-classic .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:12px 20px;letter-spacing:3px;font-size:12px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-cover-classic .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-cover-classic .mec-event-image img{min-width:100%}@media only screen and (max-width:960px){.mec-event-cover-classic .mec-event-content{padding:20px}.mec-event-cover-classic .mec-event-button{font-size:11px;padding:7px 10px;letter-spacing:1px}.mec-event-cover-classic .mec-event-title{font-size:19px;margin:15px 0 25px}.mec-event-cover-classic .mec-event-date{font-size:12px}}@media only screen and (max-width:767px){.mec-event-cover-classic{margin-bottom:30px}}@media only screen and (max-width:479px){.mec-event-cover-classic .mec-event-content{padding:15px;font-size:15px}.mec-event-cover-classic .mec-event-title{font-size:15px;margin:10px 0}.mec-event-cover-classic .mec-event-button{font-size:10px;padding:6px;letter-spacing:1px}.mec-event-cover-classic .mec-event-icon{padding:10px}}.mec-load-more-wrap{text-align:center;display:block;width:100%;padding-top:20px;text-align:center;position:relative}.mec-load-more-button{box-shadow:none;transition:all .21s ease;font-size:12px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:2px solid #e8e8e8;border-radius:50px;padding:0 28px;margin-bottom:20px;cursor:pointer;line-height:40px;font-family:Montserrat,Helvetica,Arial,sans-serif;height:42px;display:inline-block}.mec-load-more-button:hover{background:#191919;color:#fff;border-color:#191919}.mec-load-more-loading{content:url(../img/ajax-loader.gif);cursor:wait;background:0 0;border-style:none}.mec-load-more-loading:hover{background:0 0}.mec-modal-preloader,.mec-month-navigator-loading{width:100%;height:100%;background:no-repeat rgba(255,255,255,.88) url(../img/ajax-loader.gif) center;border-style:none;position:fixed;left:0;right:0;bottom:0;top:0;z-index:9}.mec-event-calendar-classic .mec-calendar-side .mec-calendar-table{min-height:1024px}.mec-calendar-side .mec-calendar-table{min-height:450px}.mec-skin-weekly-view-events-container.mec-month-navigator-loading{margin-top:0}.mec-calendar.mec-event-calendar-classic .mec-calendar-side{display:block}.mec-skin-daily-view-events-container.mec-month-navigator-loading{margin-top:0}@media only screen and (min-width:961px){.mec-wrap.mec-sm959 .mec-calendar-side .mec-calendar-table{min-height:1px}}@media only screen and (max-width:479px){.mec-calendar-side .mec-calendar-table{min-height:1px}}.mec-event-cover-clean{position:relative;border:1px solid #e6e6e6;padding:8px}.mec-event-cover-clean .mec-event-overlay{height:100%;background-color:rgba(36,36,36,.4);position:absolute;width:100%;left:0;border:8px solid #fff;top:0;transition:all .5s ease-in-out}.mec-event-cover-clean .mec-event-content{color:#fff;position:absolute;bottom:20px;padding:40px 60px;transition:all .5s ease-in-out}.mec-event-cover-clean .mec-event-title{color:#fff;font-weight:700;margin:46px 0 19px;font-size:29px;text-transform:uppercase;text-shadow:0 0 1px rgba(0,0,0,.5)}.mec-event-cover-clean .mec-event-title a{color:#fff;transition:all .5s;text-decoration:none;outline:0;border:none;box-shadow:none}.mec-event-cover-clean .mec-event-title a:hover{text-decoration:underline}.mec-event-cover-clean .mec-event-date{position:absolute;top:-20px;right:60px;color:#fff;width:60px;padding:14px 10px;z-index:1}.mec-event-cover-clean .mec-event-date div{text-align:center;text-transform:uppercase;letter-spacing:1px;line-height:16px}.mec-event-cover-clean .mec-event-date .dday{padding-bottom:15px;border-bottom:1px solid rgba(255,255,255,.5);margin-bottom:13px;font-size:24px}.mec-event-cover-clean .mec-event-date .dmonth{letter-spacing:2px}.mec-event-cover-clean .mec-event-place{font-size:18px;font-family:Roboto,sans-serif}.mec-event-cover-clean .mec-event-image img{width:100%}@media only screen and (max-width:768px){.mec-event-cover-clean .mec-event-content{padding:20px;bottom:5px}.mec-event-cover-clean .mec-event-title{font-size:23px}.mec-event-cover-clean .mec-event-date{right:20px;padding:10px;width:50px}}@media only screen and (max-width:479px){.mec-event-cover-clean .mec-event-content{padding:10px}.mec-event-cover-clean .mec-event-title{font-size:19px;padding-right:25px}.mec-event-cover-clean .mec-event-date{right:-20px;top:-10px}.mec-event-cover-clean .mec-event-detail{font-size:12px}}.mec-month-divider{text-align:center;margin:60px 0 40px 0}.widget .mec-month-divider{margin:10px 0}.mec-month-divider span{text-transform:uppercase;font-size:22px;font-weight:700;padding-bottom:5px;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative}.mec-month-divider span:before{border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-30px;left:50%;width:60px}.widget .mec-month-divider span{font-size:13px}.mec-event-list-standard .mec-events-pagination{margin-top:60px;border-top:4px solid #ebebeb;min-height:80px;padding-top:20px}.mec-event-list-standard .mec-events-pagination .mec-events-pag-previous{float:left;margin-left:0}.mec-event-list-standard .mec-events-pagination .mec-events-pag-next{float:right;margin-right:0}.mec-event-list-standard .mec-event-article{position:relative;display:block;margin-bottom:25px;border:1px solid #e9e9e9;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-list-standard .mec-topsec{display:table;width:100%}.mec-event-list-standard .col-md-3.mec-event-image-wrap{padding-left:0}.mec-event-list-standard .mec-event-content{padding-top:15px;padding-right:30px}.mec-event-list-standard .mec-event-title{font-size:29px;font-weight:700;letter-spacing:-1px;margin:0 0 10px}.mec-event-list-standard .mec-event-title a{color:#292929;transition:color .3s ease}.mec-event-list-standard .mec-col-table-c{display:table-cell;height:100%;vertical-align:middle;float:none!important}.mec-event-list-standard .mec-col-table-c.mec-event-meta-wrap{padding-top:15px}.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{vertical-align:top}.mec-topsec .mec-event-image{line-height:1px}.mec-event-list-standard .mec-event-meta-wrap{border-left:1px solid #eee}.mec-event-list-standard .mec-time-details{text-transform:uppercase;font-size:11px;font-weight:300;padding-top:0;text-align:left;padding-left:30px}.mec-event-list-standard .mec-event-meta .mec-event-address{font-style:normal;letter-spacing:0;font-size:13px;color:#8a8a8a}.mec-event-list-standard .mec-event-meta span.mec-event-d,.mec-event-list-standard .mec-event-meta span.mec-event-m{font-size:17px;font-weight:700;padding-right:6px;color:#444;text-transform:uppercase}.mec-event-list-standard .mec-date-details,.mec-event-list-standard .mec-local-time-details,.mec-event-list-standard .mec-time-details,.mec-event-list-standard .mec-venue-details{position:relative;padding-left:28px;margin-bottom:10px}.mec-event-list-standard .mec-date-details:before,.mec-event-list-standard .mec-local-time-details:before,.mec-event-list-standard .mec-time-details:before,.mec-event-list-standard .mec-venue-details:before{content:"\f041";font-family:fontawesome;position:absolute;left:6px;font-size:15px}.mec-event-list-standard .mec-date-details:before{content:"\f073"}.mec-event-list-standard .mec-time-details:before{content:"\f017"}.mec-event-list-standard .mec-local-time-details:before{content:"\f0ac"}.mec-event-list-standard .mec-local-time-details .mec-local-title{display:block}.mec-event-list-standard .mec-local-time-details .mec-local-date,.mec-event-list-standard .mec-local-time-details .mec-local-time{font-style:normal;letter-spacing:0;font-size:11px;color:#8a8a8a;font-weight:300;line-height:1.6}.mec-event-list-minimal .mec-event-title a{color:#292929;transition:color .3s ease}.mec-event-meta-wrap .mec-price-details{margin-bottom:10px}.mec-price-details i{margin-right:4px;vertical-align:text-top}.mec-event-meta-wrap .mec-event-meta .mec-price-details i:before{font-size:15px}.mec-event-list-standard .mec-price-details{text-transform:uppercase;font-size:11px;font-weight:300}.mec-event-list-standard .mec-price-details i{margin-left:6px}.mec-month-side .mec-price-details{margin-left:2px}.mec-event-article .mec-price-details i,.mec-month-side .mec-price-details i,.tooltipster-sidetip.tooltipster-shadow .tooltipster-content .mec-price-details i{padding-top:4px;vertical-align:unset}.mec-event-list-standard ul.mec-categories{position:relative;padding-left:28px;margin-bottom:10px}.mec-event-list-standard ul.mec-categories li.mec-category a:before{font-size:16px!important;content:"\f105";position:absolute;font-family:fontawesome;left:8px;font-size:15px}@media only screen and (max-width:960px){.mec-event-list-standard .mec-topsec{display:block}.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:block;width:40%}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{display:block;min-height:230px}.mec-event-list-standard .mec-event-meta-wrap{display:block;border-left:none;border-top:1px solid #eee;width:100%;float:none;padding-top:20px}}@media only screen and (min-width:480px) and (max-width:960px){.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:table-cell}}@media only screen and (max-width:479px){.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap img{float:none;width:100%;padding:0}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{padding:10px 10px 10px 30px}}.mec-localtime-details{color:#777;font-weight:400;line-height:12px;font-size:12px}.mec-localtime-details .mec-localdate,.mec-localtime-details .mec-localtime,.mec-localtime-details .mec-localtitle{display:inline-block}.mec-localtime-details .mec-start-date-label{padding-right:5px}.mec-localtime-details .mec-localtime{padding-left:5px}.mec-event-list-minimal .mec-localtime-details{display:inline-flex;font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;padding-left:9px}.mec-event-grid-classic .mec-localtime-details,.mec-event-grid-clean .mec-localtime-details{color:#fff;font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:-.02em;color:#fff;padding:0 0;line-height:18px;margin-top:-3px}.mec-event-grid-clean .mec-localtime-details,.mec-event-grid-colorful .mec-localtime-details,.tooltipster-box .mec-localtime-details{line-height:22px;padding-top:10px}.mec-event-grid-colorful .mec-localtime-details{color:#fff}.mec-event-grid-classic .mec-localtime-details{text-align:center}.mec-event-grid-minimal .mec-localtime-details{line-height:22px}.mec-wrap .mec-yearly-view-wrap .mec-localtime-wrap i{display:inline-block;margin-left:-1px}.mec-timetable-t2-content .mec-local-time-details{padding-left:19px}.mec-timetable-t2-content .mec-local-time-details{position:relative}.mec-timetable-t2-content .mec-local-time-details:before{content:"\e007";font-family:simple-line-icons;position:absolute;font-size:12px;margin-right:4px;left:0}.mec-masonry .mec-masonry-col6 .mec-localtime-details{margin-top:10px;line-height:21px}.mec-masonry .mec-masonry-col6 .mec-localtime-details i{height:auto}.mec-event-cover-classic .mec-localtime-details{color:#fff;margin-top:12px}.mec-event-cover-classic .mec-localtime-details i{padding-right:8px}.mec-event-cover-clean .mec-localtime-details{color:#fff;margin-bottom:20px}.mec-event-cover-modern .mec-localtime-details{color:#fff;margin:10px 0;font-weight:400;font-size:18px}.mec-event-countdown-style1 .mec-localtime-details,.mec-event-countdown-style2 .mec-localtime-details,.mec-event-countdown-style3 .mec-localtime-details{color:#fff;padding:8px 5px 0;font-size:14px;line-height:25px}.mec-event-countdown-style1 .mec-localtime-details{text-align:center}.mec-event-hover-carousel-type4 .mec-localtime-details{display:block;color:#fff;font-size:11px}.mec-event-footer-carousel-type3 .mec-localtime-details .mec-localdate,.mec-event-footer-carousel-type3 .mec-localtime-details .mec-localtime,.mec-event-footer-carousel-type3 .mec-localtime-details .mec-localtitle,.mec-event-footer-carousel-type3 .mec-localtime-details span{display:inline-flex;line-height:20px;text-align:left;margin:0!important;font-size:12px;color:#777;line-height:28px}.mec-owl-crousel-skin-type1 .mec-localtime-details{margin-top:-7px;margin-bottom:12px}.mec-wrap .mec-slider-t5 .mec-localtime-details{margin-top:14px;line-height:20px}.mec-wrap .mec-slider-t5 .mec-localtime-details i{font-size:18px;height:20px}.mec-timeline-event-local-time{background:rgba(64,217,241,.11);display:inline-block;padding:7px 20px 11px;border-radius:20px;line-height:1.24}.mec-timeline-event-local-time .mec-localtime-details{font-size:13px;font-weight:500;vertical-align:middle;margin-left:6px;color:inherit;line-height:24px}.mec-timeline-event-local-time .mec-localtime-details i{font-size:17px;vertical-align:middle;margin-left:-7px;padding-right:3px}.mec-booking-modal{background-color:#e6f7ff}.mec-booking-modal .mec-booking-shortcode .mec-book-form-gateway-label input[type=radio]:before{top:-1px}.mec-modal-booking-button{box-shadow:none;transition:all .21s ease;font-size:11px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:1px solid #e8e8e8;padding:12px 16px;line-height:37px;height:38px;margin:12px 0}.mec-modal-booking-button:hover{background:#191919;color:#fff;border-color:#191919}.mec-modal-booking-button.mec-mb-icon i{font-size:14px}.mec-event-list-classic .mec-modal-booking-button{height:0;line-height:1;margin:7px 0 0;display:inline-table;letter-spacing:0;padding:12px 14px}.mec-event-grid-novel ul.mec-categories{position:relative;line-height:30px;font-size:15px}.mec-event-grid-novel ul.mec-categories li.mec-category a{padding-left:35px;color:rgba(255,255,255,.4);line-height:30px;font-size:15px}.mec-event-grid-novel ul.mec-categories li.mec-category a:before{font-size:16px!important;content:"\f105";position:absolute;font-family:fontawesome;left:8px;font-size:15px;color:rgba(255,255,255,.4)}.mec-calendar-events-side .mec-modal-booking-button,.mec-event-container-classic .mec-modal-booking-button,.mec-event-grid-minimal .mec-modal-booking-button,.mec-event-list-minimal .mec-modal-booking-button,.mec-timetable-t2-col .mec-modal-booking-button{margin:0;color:#282828;font-size:12px;transition:all .5s ease;-webkit-transition:all .5s ease;position:relative;padding:0 0 0 24px;background:0 0;text-align:left;display:inline;border:0;font-weight:700}.mec-timetable-t2-col .mec-modal-booking-button{color:#fff;padding-left:19px}.mec-timetable-t2-col .mec-modal-booking-button:hover{color:#282828}.mec-event-list-minimal .mec-modal-booking-button{margin:0 4px 0 84px}.mec-calendar-events-side .mec-modal-booking-button:before,.mec-event-container-classic .mec-modal-booking-button:before,.mec-event-grid-minimal .mec-modal-booking-button:before,.mec-event-list-minimal .mec-modal-booking-button:before{content:'';position:absolute;background:#7a7272;width:18px;height:1px;left:0;top:45%;transition:all .1s ease;-webkit-transition:all .1s ease}.mec-skin-carousel-container .mec-modal-booking-button{line-height:70px}.mec-event-list-modern .mec-modal-booking-button.mec-mb-icon{border-radius:1px;letter-spacing:2px;border:1px solid #e6e6e6;color:#333;background-color:#fff;padding:13px 12px 13px 14px;font-weight:700;box-shadow:0 2px 0 0 rgba(0,0,0,.016);transition:all .28s ease;line-height:unset}.mec-event-list-modern .mec-modal-booking-button.mec-mb-icon:hover{border-color:#222;background:#222;color:#fff}.mec-event-footer .mec-modal-booking-button,.mec-skin-carousel-container .mec-event-footer-carousel-type2 .mec-modal-booking-button{position:absolute;top:20px;right:125px;margin:0;padding:0 16px;line-height:37px}.mec-skin-carousel-container .mec-event-footer-carousel-type2 .mec-modal-booking-button{top:0;line-height:41px;height:41px;right:121px}.mec-skin-carousel-container .mec-event-footer-carousel-type3 .mec-modal-booking-button{line-height:18px;font-size:12px;letter-spacing:0;float:right;height:41px;margin:0 12px 0 0}.mec-skin-carousel-container .mec-owl-crousel-skin-type4 .mec-modal-booking-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:10px 14px;letter-spacing:1.5px;font-size:11px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none;margin:0 0 0 12px}.mec-skin-carousel-container .mec-owl-crousel-skin-type4 .mec-modal-booking-button:hover{color:#191919;background-color:#fff;border:2px #fff solid}.mec-event-grid-modern .mec-event-footer .mec-modal-booking-button{right:auto;left:110px}.mec-event-grid-simple .mec-modal-booking-button,.mec-events-agenda .mec-modal-booking-button{margin:0;font-size:12px;transition:all .5s ease;-webkit-transition:all .5s ease;position:relative;padding:0;background:0 0;text-align:left;display:inline;border:0;font-weight:700}.mec-events-agenda .mec-modal-booking-button{display:block;height:unset;padding-left:173px;line-height:14px;margin-bottom:7px}.mec-yearly-view-wrap .mec-modal-booking-button{margin:0;padding-left:14px;text-transform:capitalize}.mec-event-grid-novel .mec-event-footer .mec-modal-booking-button.mec-mb-icon{right:auto;left:238px;width:36px;height:36px;display:table-cell;vertical-align:middle;padding:0 10px;border-color:rgba(255,255,255,.1);background-color:rgba(0,0,0,0);color:#fff;border-radius:36px}.mec-event-grid-novel .mec-event-footer .mec-modal-booking-button.mec-mb-icon:hover{background-color:rgba(255,255,255,.1)}.mec-event-grid-simple .mec-modal-booking-button:hover,.mec-events-agenda .mec-modal-booking-button:hover,.mec-events-yearlu .mec-modal-booking-button:hover{color:#191919}.mec-event-masonry .mec-event-footer .mec-modal-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05);right:auto;left:155px}.mec-timeline-event .mec-modal-booking-button{position:absolute;top:0;right:0;display:inline-block;padding:7px 20px 7px;line-height:22px;height:unset;border:unset;text-transform:capitalize;font-weight:500;font-size:13px;letter-spacing:0;margin:0;border-radius:0 0 0 10px}.mec-timeline-event .mec-modal-booking-button:hover{background:#191919;color:#fff}.mec-skin-daily-view-events-container .mec-modal-booking-button,.mec-weekly-view-dates-events .mec-event-article .mec-modal-booking-button{position:absolute;top:50%;transform:translateY(-50%);right:15px;line-height:26px;height:49px;border:unset;text-align:center;display:inline-block;background:#ededed;color:#191919;padding:12px;border-radius:2px;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:2px;transition:all .24s ease;margin:0}.mec-skin-daily-view-events-container .mec-modal-booking-button:hover,.mec-weekly-view-dates-events .mec-event-article .mec-modal-booking-button:hover{background:#292929;color:#fff}@media(max-width:1023px){.mec-skin-daily-view-events-container .mec-modal-booking-button,.mec-weekly-view-dates-events .mec-event-article .mec-modal-booking-button{position:relative;top:unset;transform:unset;margin:14px 16px 0;padding:8px;line-height:20px;height:35px}}@media(max-width:768px){.featherlight .featherlight-inner{width:100%}.mec-events-agenda .mec-modal-booking-button{padding:0}}@media(max-width:480px){.mec-booking-modal .mec-events-meta-group-booking-shortcode{padding:20px}.mec-booking-modal .mec-booking-shortcode .mec-book-reg-field-mec_email,.mec-booking-modal .mec-booking-shortcode .mec-book-reg-field-name{width:100%}.mec-booking-modal .mec-booking-shortcode button#mec-book-form-btn-step-2{margin-left:20px}.mec-booking-modal .mec-booking-shortcode .mec-click-pay button[type=submit]{bottom:22px}.mec-calendar-events-side .mec-modal-booking-button:before,.mec-event-container-classic .mec-modal-booking-button:before,.mec-event-grid-minimal .mec-modal-booking-button:before,.mec-event-list-minimal .mec-modal-booking-button:before{display:none}.mec-calendar-events-side .mec-modal-booking-button,.mec-event-container-classic .mec-modal-booking-button,.mec-event-grid-minimal .mec-modal-booking-button,.mec-event-list-minimal .mec-modal-booking-button,.mec-timetable-t2-col .mec-modal-booking-button{margin:0;padding:0}.mec-event-grid-modern .mec-event-footer .mec-booking-button{top:20px}}.mec-wrap .mec-events-cal-links{margin-bottom:0}.mec-single-event #mec-wrap{padding:0;margin-top:35px}.mec-wrap .mec-single-title{margin-top:0;margin-bottom:30px;font-weight:700;font-size:33px}.mec-single-event .mec-event-content{padding:40px 0 30px;margin-bottom:10px}.mec-single-event .mec-events-meta-group-booking,.mec-single-event .mec-frontbox{margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-wrap #main-content{overflow:hidden;padding-top:35px}.mec-single-event .mec-map-get-direction-address-cnt{position:relative}.mec-single-event .mec-map-get-direction-address-cnt input.mec-map-get-direction-address{width:100%;height:46px;padding:13px 10px;margin-bottom:0;background:#fcfcfc;border:1px solid #e0e0e0;border-radius:0;box-shadow:inset 0 2px 5px rgba(0,0,0,.081)}.mec-single-event .mec-map-get-direction-address-cnt input.mec-map-get-direction-address:focus{color:#444;background:#fff;border-color:#b0b0b0;box-shadow:0 0 3px rgba(0,0,0,.2)}.mec-single-event .mec-map-get-direction-btn-cnt input{width:100%}.mec-single-event .mec-map-get-direction-reset{position:absolute;z-index:2;top:5px;right:10px;font-size:11px;cursor:pointer}.mec-events-meta-group-tags{margin-top:20px}.mec-events-meta-group-tags a{display:inline-block;color:#444;font-size:11px;text-transform:uppercase;letter-spacing:1.5px;font-weight:500;padding:3px 7px;border:1px solid #ddd;border-radius:2px;background:#fff;margin:1px 3px}.mec-events-meta-group-tags a:hover{text-decoration:underline;background:#f9f9f9}.mec-local-time-details li{list-style:none}.mec-single-event:not(.mec-single-modern) .mec-local-time-details{background:#f7f7f7;padding:12px 14px 8px;margin-bottom:12px;vertical-align:baseline;position:relative;border:none}.mec-single-event:not(.mec-single-modern) .mec-local-time-details ul{margin:0;padding-left:35px}.mec-single-event:not(.mec-single-modern) .mec-local-time-details h3{border:none;padding-left:15px}.mec-single-event:not(.mec-single-modern) .mec-local-time-details h3:before{display:none}.mec-single-event.mec-single-modern i.mec-sl-speedometer{display:none}.mec-single-event .mec-events-meta-group-booking{padding-bottom:30px}.mec-single-event .mec-events-meta-group-booking ul{list-style:none;margin-left:0;padding-left:0}.mec-single-event .mec-booking .mec-book-bfixed-fields-container{padding-left:15px}.mec-single-event .mec-events-meta-group-booking ul li{padding:0;list-style:none;margin-top:40px}.mec-single-event .mec-events-meta-group-booking h4{margin-bottom:20px;font-size:23px;font-weight:700}.mec-single-event .mec-events-meta-group-booking li h4{font-size:19px}.mec-single-event .mec-events-meta-group-booking button,.mec-single-event .mec-events-meta-group-booking input{border-radius:0;margin-bottom:6px}.mec-single-event .mec-events-meta-group-booking button{min-width:155px;margin-top:5px;margin-left:10px;border-radius:2px;box-shadow:0 2px 1px rgba(0,0,0,.08)}.mec-single-event .mec-events-meta-group-booking button.mec-book-form-back-button{background:#c4cace;float:left}.mec-single-event .mec-events-meta-group-booking button.mec-book-form-back-button:hover{background:#000}.mec-single-event .mec-events-meta-group-booking button.mec-book-form-next-button{float:left;margin-left:0}button#mec-book-form-back-btn-step-3{float:none}.mec-next-occ-booking,.mec-next-occ-booking-p{padding-left:15px}.mec-book-username-password-wrapper{padding:0 15px}.lity-container .mec-next-occ-booking,.lity-container .mec-next-occ-booking-p{padding-left:0}.mec-single-event .mec-events-meta-group-booking .mec-click-pay{max-width:350px}.mec-single-event .mec-events-meta-group-booking .mec-click-pay #mec_woo_add_to_cart_btn_r,.mec-single-event .mec-events-meta-group-booking .mec-click-pay button.mec-book-form-next-button{float:right}.mec-single-event .mec-events-meta-group-booking .mec-click-pay #mec_woo_add_to_cart_btn_r:hover,.mec-single-event .mec-events-meta-group-booking .mec-click-pay button.mec-book-form-next-button:hover{background:#000}.lity-container .mec-click-pay{max-width:400px}.lity-container .mec-book-form-btn-wrap button.mec-book-form-next-button,.lity-container .mec-click-pay #mec_woo_add_to_cart_btn_r{float:right}.lity-container button.mec-book-form-next-button{float:right}.lity-container .mec-click-pay #mec_woo_add_to_cart_btn_r:hover,.lity-container .mec-click-pay button.mec-book-form-next-button:hover{background:#000}.mec-single-event .mec-events-meta-group-booking .mec-click-next{float:right;position:relative;width:calc(100% - 186px)}.lity-container .mec-click-next{float:right;position:relative;width:calc(100% - 186px)}.mec-single-event .mec-book-form-coupon button{margin-left:0}.mec-single-event .mec-book-form-gateway-checkout button{margin-left:0}.mec-single-event .mec-single-event .mec-book-form-gateway-checkout button{margin-right:20px}.lity-content .mec-book-form-back-button{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-right:10px;line-height:1;padding:18px 20px 16px;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;min-width:170px;margin-top:5px;border-radius:0;margin-bottom:6px;background:#c4cace}.lity-content .mec-book-form-back-button:hover{background:#000}.lity-content button#mec-book-form-back-btn-step-3{float:none}.lity-content .mec-book-form-next-button{float:left}.lity-content .mec-book-bfixed-fields-container{list-style:none;padding-left:0}.mec-single-event .mec-book-first,.mec-single-event .mec-book-form-gateways,.mec-single-event .mec-book-form-price,.mec-single-event .mec-event-tickets-list,.mec-single-event form.mec-click-next{padding-left:0;padding-right:0}.mec-single-event label.mec-fill-attendees{margin-left:0}.mec-wrap .mec-events-meta-group-booking #mec-book-form-back-btn-step-2,.mec-wrap .mec-events-meta-group-booking #mec-book-form-back-btn-step-3,.mec-wrap .mec-events-meta-group-booking #mec-book-form-btn-step-1{margin-left:0}.mec-wrap .mec-booking-form-container .col-md-12{padding-left:0}.mec-wrap .mec-events-meta-group-booking .mec-wrap-checkout.row{margin:0}.mec-wrap .mec-wrap-checkout .mec-book-form-gateways .mec-book-form-gateway-label{padding-left:3px}.mec-wrap p.mec-gateway-comment{margin-top:20px}.mec-single-event .mec-events-meta-group-booking .mec-event-ticket-available{display:block;margin-bottom:20px;margin-top:-17px;font-size:11px;color:#8a8a8a}.mec-single-event .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.mec-single-event .mec-events-meta-group-booking form{margin:0}.mec-single-event .mec-events-meta-group-booking h5 span,.mec-single-event .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;display:block;clear:none;padding:5px 1em 3px 0}.mec-single-event .mec-events-meta-group-booking h5 span{display:inline-block}.mec-single-event .mec-events-meta-group-booking h5 span.mec-ticket-variation-name{padding-right:5px;text-transform:capitalize}.mec-single-event .mec-events-meta-group-booking input::-webkit-input-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input:-moz-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:330px;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both}.wbmec-mandatory{padding-left:5px;font-size:14px}.mec-single-event .mec-events-meta-group-booking .mec-red-notification input,.mec-single-event .mec-events-meta-group-booking .mec-red-notification select,.mec-single-event .mec-events-meta-group-booking .mec-red-notification textarea{border:1px solid #ff3c3c!important}.lity .mec-events-meta-group-booking .mec-red-notification input[type=checkbox],.lity .mec-events-meta-group-booking .mec-red-notification input[type=radio],.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=checkbox],.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=radio]{outline:1px solid #ff3c3c!important}.lity .mec-book-ticket-container .mec-red-notification input,.lity .mec-book-ticket-container .mec-red-notification select,.lity .mec-book-ticket-container .mec-red-notification textarea{border:1px solid #ff3c3c!important}@media only screen and (max-width:479px){.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{width:100%}}.mec-single-event .mec-events-meta-group-booking input[type=email]:focus,.mec-single-event .mec-events-meta-group-booking input[type=number]:focus,.mec-single-event .mec-events-meta-group-booking input[type=password]:focus,.mec-single-event .mec-events-meta-group-booking input[type=tel]:focus,.mec-single-event .mec-events-meta-group-booking input[type=text]:.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking select:focus,.mec-single-event .mec-events-meta-group-booking textarea:focus,focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-single-event .mec-events-meta-group-booking input[type=checkbox],.mec-single-event .mec-events-meta-group-booking input[type=radio]{margin-right:6px;margin-top:5px;min-height:20px;clear:none;margin:0 0 0 2px}.lity-container .mec-events-meta-group-booking input[type=radio]:before,.mec-single-event .mec-events-meta-group-booking input[type=radio]:before{content:"";display:inline-block;background:#fff;border-radius:18px;width:18px;height:18px;margin:-1px 0 0 -3px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32)}.lity-container .mec-events-meta-group-booking input[type=radio]:checked:before,.mec-single-event .mec-events-meta-group-booking input[type=radio]:checked:before{border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff}.lity-container .mec-events-meta-group-booking input[type=radio],.mec-single-event .mec-events-meta-group-booking input[type=radio]{min-height:0;margin:0;margin-right:6px}.mec-single-event .mec-events-meta-group-booking input[type=checkbox]{float:left}.lity-container .mec-events-meta-group-booking .mec_book_first_for_all,.mec-single-event .mec-events-meta-group-booking .mec_book_first_for_all{display:none}.mec-events-meta-group-booking ul.mec-book-price-details{list-style:none;border:1px solid #eee;padding:0;overflow:hidden}.mec-events-meta-group-booking ul.mec-book-price-details li{font-size:15px;color:#a9a9a9;list-style:none;padding:13px 18px;margin:0;float:left;border-right:1px solid #eee}.mec-events-meta-group-booking ul.mec-book-price-details li:last-child{border-right:none}.mec-events-meta-group-booking ul.mec-book-price-details li span.mec-book-price-detail-amount{font-weight:700;font-size:21px;color:#222}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label{height:14px;width:14px;background-color:transparent;border:1px solid #d4d4d4;position:relative;display:inline-block;-moz-transition:border-color ease .2s;-o-transition:border-color ease .2s;-webkit-transition:border-color ease .2s;transition:border-color ease .2s;cursor:pointer;box-shadow:0 2px 16px -2px rgba(0,0,0,.2);vertical-align:middle;margin-right:3px;margin-top:-2px}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label{border-color:#008aff;box-shadow:0 2px 14px -3px #008aff}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:after,.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:before,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:after,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:before{position:absolute;height:0;width:1px;background-color:#008aff;display:inline-block;-moz-transform-origin:left top;-ms-transform-origin:left top;-o-transform-origin:left top;-webkit-transform-origin:left top;transform-origin:left top;content:'';-webkit-transition:opacity ease .5;-moz-transition:opacity ease .5;transition:opacity ease .5}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:before,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:before{top:8px;left:7px;box-shadow:0 0 0 2px #fff;-moz-transform:rotate(-145deg);-ms-transform:rotate(-145deg);-o-transform:rotate(-145deg);-webkit-transform:rotate(-145deg);transform:rotate(-145deg)}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::before,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::before{height:12px;-moz-animation:dothatopcheck .16s ease 0s forwards;-o-animation:dothatopcheck .16s ease 0s forwards;-webkit-animation:dothatopcheck .16s ease 0s forwards;animation:dothatopcheck .16s ease 0s forwards}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:after,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:after{top:6px;left:3px;-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::after,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::after{-moz-animation:dothabottomcheck 80ms ease 0s forwards;-o-animation:dothabottomcheck 80ms ease 0s forwards;-webkit-animation:dothabottomcheck 80ms ease 0s forwards;animation:dothabottomcheck 80ms ease 0s forwards;height:4px}.mec-single-event .mec-events-meta-group-booking button[type=submit]:after,.mec-single-event a.button:after{display:none;font-family:simple-line-icons;content:"\e098";margin-left:4px;-webkit-animation:rotating 1.2s linear infinite;-moz-animation:rotating 1.2s linear infinite;-ms-animation:rotating 1.2s linear infinite;-o-animation:rotating 1.2s linear infinite;animation:rotating 1.2s linear infinite}.mec-single-event .mec-events-meta-group-booking button[type=submit].loading:after,.mec-single-event a.button.loading:after{display:inline-block}.mec-single-event .mec-event-export-module{display:block}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul{display:table;width:100%}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li{display:table-cell}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li:last-child{text-align:right}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a:hover{color:#fff}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul{padding-left:0;margin:15px 5px}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting{padding-left:0;margin:0}.mec-ticket-price{margin-left:10px;font-size:13px;font-weight:300}.mec-book-reg-field-checkbox label,.mec-book-reg-field-radio label{line-height:1.36}.mec-book-reg-field-checkbox input[type=checkbox],.mec-book-reg-field-radio input[type=radio]{float:left;margin-right:5px!important}.mec-ticket-available-spots .mec-event-ticket-description,.mec-ticket-available-spots .mec-event-ticket-price{font-size:11px}.mec-book-ticket-container .mec-reg-mandatory:nth-child(2) label:after,.mec-book-ticket-container .mec-reg-mandatory:nth-child(3) label:after,.mec-book-ticket-container .wbmec-mandatory{content:"";color:red;width:50px;height:50px;font-size:14px;padding-left:5px}@media only screen and (max-width:767px){.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li{width:100%;min-height:40px;margin-bottom:15px;text-align:center;float:none;display:block}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a{width:100%;padding-left:0;padding-right:0;text-align:center;display:block;font-size:12px}}.mec-single-event .mec-events-meta-group{margin-bottom:0}@media only screen and (max-width:767px){.mec-single-event .mec-events-meta-group-booking{margin-bottom:30px}}.mec-single-event .mec-event-meta dt,.mec-single-event .mec-event-meta h3{text-transform:uppercase;font-size:16px;font-weight:700;padding-bottom:5px;display:inline;color:#000;padding-left:10px}.mec-single-event .mec-event-meta h6{text-transform:uppercase;font-size:13px;padding-bottom:5px;display:inline;color:#222;padding-left:0}.mec-single-event .mec-event-meta .mec-events-event-categories a,.mec-single-event .mec-event-meta dd{font-size:14px;color:#8d8d8d}.mec-single-event .mec-event-meta .mec-location dd.author{color:#3c3b3b}.mec-single-event .mec-event-meta dd{margin:0;padding-left:35px}.mec-single-event .mec-event-meta dd.mec-events-event-categories{min-height:35px;line-height:35px}@media only screen and (max-width:480px){.single-mec-events .lity-container{width:100%}.single-mec-events .lity-content .mec-events-meta-group-booking{padding:20px;width:85%;margin:0 auto}}.mec-single-event .mec-event-meta dd.mec-events-event-categories:first-of-type{padding-top:5px}.mec-single-event .mec-event-meta dd.mec-events-event-categories:last-of-type{border-bottom:0}.mec-single-event .mec-event-meta dd a{color:#8d8d8d;transition:all .2s ease}.mec-single-event .mec-event-meta dd a i:before{font-size:16px!important}.mec-single-event .mec-event-meta dd a i{margin-right:8px}.mec-single-event .mec-event-meta dl{margin-bottom:0}.mec-single-event .mec-event-meta .mec-events-event-cost{font-size:18px}.mec-single-event .mec-event-meta .mec-events-address{color:#a9a9a9;margin-bottom:3px}.mec-single-event .mec-event-meta .mec-events-meta-group-venue .author{margin-bottom:0;color:#8d8d8d;font-size:13px}.mec-single-event .mec-events-event-image{margin-bottom:0}.mec-single-event h2.mec-single-event-title{margin-bottom:30px;font-weight:700;font-size:33px}.mec-single-event .mec-booking-button{border-bottom:none;letter-spacing:.5px;line-height:48px;height:76px;transition:all .5s ease;color:#fff;padding:16px;display:block;text-align:center;font-size:16px;border-radius:2px;box-shadow:0 1px 2px rgba(0,0,0,.15)}.mec-single-event .mec-booking-button:hover{background-color:#101010!important}.mec-single-event .mec-event-tags a{display:inline-block;color:#444;font-size:11px;text-transform:uppercase;letter-spacing:1.5px;font-weight:500;padding:3px 7px;border:1px solid #ddd;border-radius:2px;background:#fff;margin:1px 3px}.mec-single-event .mec-event-tags:before{font-size:24px;color:#303030;margin-right:5px;content:"\f02c";font-family:fontawesome}.mec-single-event .mec-event-tags{padding-top:13px}.mec-single-event .mec-event-sharing{margin:30px 0 10px}.mec-region.mec-events-abbr,.mec-single-event .mec-street-address{font-style:normal;font-size:13px}.mec-events-meta-group.mec-events-meta-group-venue:before,.mec-single-event-date:before,.mec-single-event-time:before{color:#40d9f1}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-event-social h3{text-transform:uppercase;font-size:15px;font-weight:700;padding-bottom:5px;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative}.mec-single-event .mec-social-single:before{padding:13px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:39px}.mec-single-event .mec-event-social .event-sharing{margin-top:30px}.mec-single-event .mec-event-social ul{list-style:none;margin-left:0}.mec-single-event .mec-event-social li.mec-event-social-icon{display:inline-block}.mec-single-event .mec-event-social li.mec-event-social-icon a{display:inline-block;color:#fff;width:40px;height:40px;padding:9px;font-size:16px;margin-right:5px;margin-bottom:5px}.mec-single-event .mec-event-social a.facebook{background:#3b5996}.mec-single-event .mec-event-social a.facebook:hover{background:#28385c}.mec-single-event .mec-event-social a.twitter{background:#00acee}.mec-single-event .mec-event-social a.twitter:hover{background:#0087bd}.mec-single-event .mec-event-social a.vimeo{background:#0dadd6}.mec-single-event .mec-event-social a.vimeo:hover{background:#0a85a3}.mec-single-event .mec-event-social a.dribble{background:#d53e68}.mec-single-event .mec-event-social a.dribble:hover{background:#bf4c78}.mec-single-event .mec-event-social a.youtube{background:#cb322c}.mec-single-event .mec-event-social a.youtube:hover{background:#992622}.mec-single-event .mec-event-social a.pinterest{background:#cb2027}.mec-single-event .mec-event-social a.pinterest:hover{background:#99181d}.mec-single-event .mec-event-social a.google{background:#c3391c}.mec-single-event .mec-event-social a.google:hover{background:#99181f}.mec-single-event .mec-event-social a.linkedin{background:#0073b2}.mec-single-event .mec-event-social a.linkedin:hover{background:#005380}.mec-single-event .mec-event-social a.email{background:#ff5d5e}.mec-single-event .mec-event-social a.email:hover{background:#cc4949}.mec-single-event .mec-event-social a.vk{background:#5b88bd}.mec-single-event .mec-event-social a.vk:hover{background:#3d608a}.mec-single-event .mec-event-social a.tumblr{background:#34465d}.mec-single-event .mec-event-social a.tumblr:hover{background:#273649}.mec-single-event .mec-event-social a.telegram{background:#08c}.mec-single-event .mec-event-social a.telegram:hover{background:#1076be}.mec-single-event .mec-event-social a.whatsapp{background:#25d366}.mec-single-event .mec-event-social a.whatsapp:hover{background:#23ac55}.mec-single-event .mec-event-social a.flipboard{background:#e12828}.mec-single-event .mec-event-social a.flipboard:hover{background:#af1e1e}.mec-single-event .mec-event-social a.pocket{background:#ef4056}.mec-single-event .mec-event-social a.pocket:hover{background:#8d1717}.mec-single-event .mec-event-social a.reddit{background:#ff5700}.mec-single-event .mec-event-social a.reddit:hover{background:#c94909}.mec-single-event .mec-event-social a.flipboard svg,.mec-single-event .mec-event-social a.telegram svg{height:16px}.mec-single-event .mec-event-social li.mec-event-social-icon a svg{display:unset}.mec-single-event .mec-event-social a.rss{background:#f29a1d}.mec-single-event .mec-event-social a.rss:hover{background:#cc7400}.mec-single-event .mec-event-social a.instagram{background:#457399}.mec-single-event .mec-event-social a.instagram:hover{background:#2e4d66}.mec-single-event .mec-event-social a.linkedin{background:#457399}.mec-single-event .mec-event-social a.linkedin:hover{background:#2e4d66}.mec-single-event .mec-event-social a.other-social{background:#ff5d5e}.mec-single-event .mec-event-social a.other-social:hover{background:#cc4949}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4,.mec-single-event .mec-frontbox-title,.mec-single-event .mec-wrap-checkout h4{text-transform:uppercase;font-size:15px;font-weight:700;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative;text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4:before,.mec-single-event .mec-frontbox-title:before,.mec-single-event .mec-wrap-checkout h4:before{padding:1px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-35px;left:50%}.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-month],.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-year]{width:47%!important;margin-right:12px;margin-top:5px;display:inline-block!important}@media(max-width:768px){.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-month],.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-year]{width:100%!important;margin-right:0;display:block!important}}.mec-event-meta i:before{font-size:20px;vertical-align:middle}.mec-event-meta .mec-single-event-additional-organizers i:before,.mec-event-meta .mec-single-event-organizer i:before{font-size:14px;vertical-align:baseline}#mec-wrap .mec-events-day-time-slot .mec-events-content{float:left;width:33%;padding:0 15px}#mec-wrap .mec-events-day-time-slot .mec-events-event-image{padding-left:0}#mec-events-content .mec-events-abbr{color:#8d8d8d;font-size:14px}.mec-single-event .mec-events-content{margin-bottom:30px}.mec-single-event .mec-organizer-url a{word-wrap:break-word}.mec-single-event #headline{margin:0 0 10px}.mec-single-event #headline h2{padding:0}.mec-single-event .mec-events-meta-group.mec-events-meta-group-gmap .mec-events-venue-map{margin-top:0;padding:8px;border:1px solid #e5e5e5;border-radius:7px}#mec-events-gmap-0{height:325px!important}.mec-events-list .mec-events-day-time-slot .mec-events-event-meta{width:33%;float:left;padding:40px;height:auto;margin:0}.mec-events-day-time-slot .mec-events-content.description.entry-summary{font-size:15px;font-weight:300;color:#8d8d8d}.mec-events-day-time-slot .type-mec_events h2{font-size:28px;padding-bottom:20px}.mec-events-day .mec-events-day-time-slot .type-mec_events{margin:0}.mec-events-day .mec-events-day-time-slot h5{background-color:#8d8d8d}.mec-single-event .mec-event-meta .mec-single-event-additional-organizers .mec-events-single-section-title,.mec-single-event .mec-event-meta .mec-single-event-organizer .mec-events-single-section-title,.mec-single-event .mec-events-meta-date h3{padding-left:0;margin:10px;display:inline-block}.mec-single-event .mec-events-meta-date h3{width:100%}.mec-single-event .mec-events-event-image{border:0}.mec-single-event .mec-events-venue-map{padding:0}.mec-event-cost,.mec-event-more-info,.mec-event-website,.mec-events-meta-date,.mec-single-event-additional-organizers,.mec-single-event-category,.mec-single-event-date,.mec-single-event-label,.mec-single-event-location,.mec-single-event-organizer,.mec-single-event-time{background:#f7f7f7;padding:12px 14px 8px;margin-bottom:12px;vertical-align:baseline;position:relative}.mec-single-event .mec-events-meta-date dd,.mec-single-event .mec-single-event-additional-organizers dd,.mec-single-event .mec-single-event-organizer dd{padding-left:0;margin-bottom:10px}.mec-single-event .mec-events-meta-date dd span,.mec-single-event .mec-single-event-additional-organizers dd span,.mec-single-event .mec-single-event-organizer dd span{display:block;padding-left:12px;color:#8d8d8d}.mec-single-event .mec-events-meta-date i,.mec-single-event .mec-single-event-additional-organizers i,.mec-single-event .mec-single-event-organizer i{margin-right:10px;margin-left:12px}.mec-events-meta-group.mec-events-meta-group-venue dl{margin-bottom:0}address.mec-events-address{line-height:19px;font-style:normal;font-size:12px}.mec-single-event .mec-event-content dt{margin-top:5px}.mec-single-event .mec-single-event-additional-organizers .mec-single-event-additional-organizer{margin-bottom:15px;padding-bottom:5px;border-bottom:1px solid #e4e4e4}.mec-single-event .mec-single-event-additional-organizers .mec-single-event-additional-organizer:last-child{margin-bottom:0;padding-bottom:0;border:none}.mec-event-schedule-content{border-left:4px solid #f0f0f0;padding-top:10px;margin-top:30px;margin-left:25px;margin-bottom:20px;color:#8a8a8a}.mec-event-schedule-content dl{padding-left:24px;font-size:12px;position:relative;margin-bottom:35px}.mec-event-schedule-content dl:before{content:'';display:block;position:absolute;left:0;top:4px;width:20px;height:0;border-top:4px solid #f0f0f0}.mec-event-schedule-content dl dt{margin:0 0 10px;line-height:1.16}.mec-event-schedule-content dl dt.mec-schedule-title{font-size:13px;color:#5a5a5a;font-weight:700}.mec-event-schedule-content dl dt.mec-schedule-description{font-weight:300}.mec-event-schedule-content .mec-schedule-speakers{background:#f7f7f7;padding:10px}.mec-wrap .mec-event-schedule-content h6{font-size:13px;color:#5a5a5a;font-weight:700;display:inline-block}.mec-wrap .mec-event-schedule-content a{font-weight:400;color:#5a5a5a;transition:all .1s ease}.single-mec-events .mec-speakers-details ul{padding:0}.mec-single-event .mec-speakers-details ul li{list-style:none;background:#f7f7f7;padding:5px 5px 18px 5px;margin-top:14px}.mec-single-event .mec-speakers-details ul li a{-webkit-transition:.2s all ease;transition:.2s all ease}.mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a img{float:left;border-radius:50%;transition:.2s all ease;border:2px solid transparent;width:68px;height:68px}.mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a:hover img{border-color:#40d9f1}.mec-single-event .mec-speakers-details ul li .mec-speaker-name{display:inline-block;margin-top:10px;font-size:15px;line-height:1.8;text-transform:capitalize;font-weight:700;padding-left:8px}.mec-single-event .mec-speakers-details ul li .mec-speaker-job-title{display:block;font-size:12px;margin-top:-1px;padding-left:75px;color:#888}.mec-single-event-location img,.mec-single-event-organizer img{margin-bottom:10px;width:100%}.mec-qrcode-details{text-align:center}.mec-time-comment{font-size:11px}.mec-wrap .mec-attendees-list-details p{font-weight:300;margin:20px 0 0 0;color:#8d8d8d}.mec-wrap .mec-attendees-list-details li{list-style:none;display:block;margin-top:15px}.mec-wrap .mec-attendees-list-details li .mec-attendee-avatar{display:inline-block}.mec-wrap .mec-attendees-list-details li .mec-attendee-profile-link{display:inline-block;vertical-align:top;margin-left:10px}.mec-attendees-list-details ul{margin-bottom:0}.mec-attendees-list-details .mec-attendee-profile-link a{color:#8d8d8d;display:block}.mec-attendees-list-details .mec-attendee-profile-link span{display:inline-block;color:#000;vertical-align:middle;cursor:pointer}.mec-attendees-list-details span.mec-attendee-profile-ticket-number{border-radius:50px;width:20px;height:20px;font-size:12px;text-align:center;color:#fff;margin-right:4px;line-height:20px}#wrap .mec-attendees-list-details span.mec-attendee-profile-ticket-number{line-height:19px}.mec-attendees-list-details .mec-attendee-profile-link span i{vertical-align:middle;font-size:9px;font-weight:700;margin-left:5px}.mec-attendees-list-details .mec-attendees-toggle{border:1px solid #e6e6e6;background:#fafafa;padding:15px 15px 0;border-radius:3px;margin:12px 0 20px 52px;position:relative;font-size:13px;box-shadow:0 3px 1px 0 rgba(0,0,0,.02)}.mec-attendees-list-details .mec-attendees-toggle:after,.mec-attendees-list-details .mec-attendees-toggle:before{content:'';display:block;position:absolute;left:50px;width:0;height:0;border-style:solid;border-width:10px}.mec-attendees-list-details .mec-attendees-toggle:after{top:-20px;border-color:transparent transparent #fafafa transparent}.mec-attendees-list-details .mec-attendees-toggle:before{top:-21px;border-color:transparent transparent #e1e1e1 transparent}.mec-attendees-list-details .mec-attendees-toggle .mec-attendees-item{padding-bottom:15px}.mec-attendees-list-details .mec-attendee-avatar img{border-radius:3px}.mec-attendee-avatar-sec{float:left;width:50px;margin-right:12px}.mec-attendee-profile-name-sec,.mec-attendee-profile-ticket-sec{float:left;width:calc(100% - 62px);margin-top:3px}.mec-calendar{margin-bottom:20px;border:1px solid #e8e8e8;width:100%;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-calendar .mec-calendar-topsec{display:table;background:#fff}.mec-calendar .mec-calendar-topsec .mec-calendar-events-sec{display:none}.mec-calendar .mec-calendar-side{width:590px;display:table-cell;padding:40px;position:relative;text-align:center;box-shadow:0 1px 5px 6px rgba(0,0,0,.005) inset}.mec-calendar .mec-calendar-events-side{display:table-cell;height:100%;border-left:1px solid #efefef;padding:40px;width:100%}.mec-calendar .mec-calendar-events-side .mec-table-side-day{width:46px;height:46px;margin:0 auto 20px;position:relative;text-align:center;line-height:46px;border:1px solid #40d9f1;border-radius:50%;font-size:12px;font-weight:600;padding:0}.mec-calendar .mec-calendar-events-side .mec-table-side-title{text-align:center;font-size:11px;text-transform:uppercase;letter-spacing:3px;margin-bottom:14px}.mec-calendar .mec-calendar-header{position:relative;width:560px;margin-top:8px;margin-bottom:16px}.mec-calendar .mec-calendar-header h2{text-transform:uppercase;font-size:22px;font-weight:700;color:#333}.mec-calendar .mec-event-footer{width:auto;min-height:60px}.mec-calendar dl{display:table;margin:0;border:none;padding:0;table-layout:fixed}.mec-calendar dt{display:table-cell;transition:all .66s ease;color:#4d4d4d;background:#fff;border-radius:44px;font-size:14px;width:80px;height:80px;line-height:80px;text-align:center}.excerpt-wrap .mec-wrap dt,.nv-content-wrap .mec-wrap dt{display:table-cell}.mec-calendar .mec-calendar-table .mec-no-event{display:none}.mec-calendar .mec-calendar-table-head dt{font-weight:700;text-transform:uppercase;font-size:15px}.mec-calendar .mec-calendar-row dt:hover{background:#f4f4f4}.mec-calendar .mec-table-nullday{color:#cacaca}.mec-calendar.mec-box-calendar .mec-table-nullday:last-child{border-right:1px solid #eaeaea}.mec-calendar .mec-next-month:hover,.mec-calendar .mec-prev-month:hover{background:#f4f4f4}.mec-calendar .mec-selected-day,.mec-calendar .mec-selected-day:hover{background:#40d9f1;color:#fff}.mec-calendar .mec-selected-day a{color:#fff}.mec-calendar .mec-has-event{position:relative}.mec-calendar .mec-calendar-row dt.mec-has-event:hover{background:#40d9f1}.mec-calendar .mec-has-event a{cursor:pointer;display:block;width:100%;height:100%;border-radius:50%;color:#4d4d4d;transition:all .25s ease;text-decoration:none;box-shadow:none}.mec-calendar .mec-calendar-row dt.mec-has-event.mec-selected-day a,.mec-calendar .mec-calendar-row dt.mec-has-event:hover a{color:#fff}.mec-calendar .mec-has-event:after{background-color:#40d9f1;border-radius:50%;display:block;content:'';width:8px;height:8px;bottom:14px;left:50%;margin:-4px 0 0 -4px;position:absolute;transition:all .25s ease}.mec-calendar .mec-calendar-row dt.mec-has-event:hover:after{background-color:#fff}.mec-calendar .mec-has-event.mec-selected-day:after{display:none}.mec-calendar .mec-event-article{text-align:left;margin-bottom:0;padding-bottom:25px;padding-top:26px;border-top:1px solid #efefef;transition:all .33s ease}.mec-calendar .mec-event-article:hover{background-color:#fafafa}.mec-calendar .mec-event-article .mec-event-time{font-size:11px;line-height:1.1;margin:0}.mec-calendar .mec-event-article .mec-event-title{font-size:13px;padding:0;margin:10px 0 8px;font-weight:700;text-transform:uppercase}.mec-calendar .mec-event-article .mec-event-title a{text-decoration:none;color:#494949;transition:color .3s ease}.mec-calendar .mec-event-article .mec-event-title a:hover{color:#40d9f1}.mec-calendar .mec-event-article .mec-event-image,.mec-calendar .mec-event-list-classic .mec-event-image img{width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-image{float:left;margin-right:20px;width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-detail,.mec-calendar .mec-event-article .mec-localtime-details div{font-size:13px;line-height:1.3;font-family:Roboto,sans-serif;color:#9a9a9a;margin-bottom:0}.mec-calendar .mec-calendar-side .mec-next-month,.mec-calendar .mec-calendar-side .mec-previous-month{cursor:pointer;position:absolute;top:0;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;color:#a9a9a9;font-size:12px;letter-spacing:1px;text-transform:uppercase;padding-left:10px;padding-right:10px;border:1px solid #efefef;border-top:none;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease}.mec-calendar .mec-calendar-side .mec-next-month i,.mec-calendar .mec-calendar-side .mec-previous-month i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-calendar .mec-calendar-side .mec-next-month:hover,.mec-calendar .mec-calendar-side .mec-previous-month:hover{background-color:#f9f9f9;color:#40d9f1}.mec-calendar .mec-calendar-side .mec-previous-month{left:0;border-bottom-right-radius:6px;border-left:none}.mec-calendar .mec-calendar-side .mec-next-month{right:0;border-bottom-left-radius:6px;border-right:none}@media only screen and (min-width:961px){.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-side{width:370px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-header{position:relative;width:350px;margin-top:30px;margin-bottom:20px;padding-top:20px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) dt{width:50px;height:50px;line-height:50px}.mec-wrap.mec-sm959 .mec-calendar.mec-event-calendar-classic dl dt{height:110px}}@media only screen and (max-width:1200px){.mec-calendar .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-calendar .mec-calendar-side{width:370px}.mec-calendar .mec-calendar-header{position:relative;width:350px;margin-top:30px}.mec-calendar dt{width:50px;height:50px;line-height:50px}}@media only screen and (max-width:767px){.mec-calendar .mec-calendar-header h2{font-size:18px}.mec-calendar .mec-calendar-topsec{width:100%}.mec-calendar .mec-calendar-side{width:100%;display:block;padding:30px}.mec-calendar .mec-calendar-header{width:auto}.mec-calendar .mec-calendar-events-side{width:100%;display:block;height:100%;border-left:none;border-top:1px solid #efefef;padding:20px}.mec-calendar dl{width:100%}.mec-calendar dt{width:14%;height:60px;line-height:60px;border-radius:50px}}@media only screen and (max-width:479px){.mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-calendar .mec-calendar-header h2{font-size:16px;margin-top:33px}.mec-calendar dt{height:38px;line-height:38px}.mec-calendar .mec-event-list-classic .mec-event-detail,.mec-calendar .mec-event-list-classic .mec-event-title{font-size:12px}.mec-calendar .mec-event-list-classic .mec-event-time{font-size:10px}}.mec-box-calendar.mec-calendar .mec-has-event a,.mec-box-calendar.mec-calendar dt{border-radius:0}.mec-box-calendar.mec-calendar .mec-calendar-header{margin-top:2px;margin-bottom:30px}.mec-box-calendar.mec-calendar dt{border-bottom:1px solid #eaeaea;border-left:1px solid #eaeaea}.mec-box-calendar.mec-calendar dl dt:last-child{border-right:1px solid #eaeaea}.mec-box-calendar.mec-calendar .mec-calendar-table-head dt{border-top:1px solid #eaeaea;background-color:#f8f8f8}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{background-color:#f4f4f4}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{border-radius:2px;top:40px;border:1px solid #eee;height:30px;line-height:30px;z-index:1}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:60px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:60px}.mec-box-calendar.mec-calendar .mec-calendar-side{box-shadow:none}.mec-box-calendar.mec-calendar .mec-calendar-events-side{border:none}.mec-box-calendar.mec-calendar .mec-calendar-events-side .mec-table-side-day{border-radius:2px}.mec-box-calendar.mec-calendar h4.mec-month-label{position:relative;width:560px;margin-top:2px;margin-bottom:30px;text-transform:uppercase;font-size:22px;font-weight:700;color:#333}.mec-widget .mec-box-calendar.mec-calendar h4.mec-month-label{width:100%;margin-top:8px;font-size:13px}@media only screen and (max-width:1200px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:42px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:42px}.mec-calendar .mec-calendar-header h2{font-size:17px;margin-top:7px}}@media only screen and (max-width:767px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{top:28px;font-size:10px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:30px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:30px}.mec-calendar .mec-calendar-header h2{font-size:15px}}@media only screen and (max-width:479px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{top:16px;font-size:0;padding:4px 0;text-align:center;min-width:33px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:10px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:10px}.mec-box-calendar.mec-calendar .mec-calendar-header h2{font-size:12px;margin-top:15px}.mec-box-calendar.mec-calendar .mec-event-image{margin-right:12px}}.mec-calendar.mec-event-calendar-classic,.mec-calendar.mec-event-calendar-classic .mec-calendar-side{border:none;padding:0;width:100%;height:100%;box-shadow:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-side{display:block}.mec-calendar.mec-event-calendar-classic .mec-calendar-header,.mec-calendar.mec-event-calendar-classic dl{width:100%}.mec-calendar.mec-event-calendar-classic dl dt{width:15%;height:136px;line-height:1.2;text-align:left;padding:5px 7px;position:relative}.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{height:30px!important}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{top:0}.mec-calendar.mec-event-calendar-classic .mec-has-event:after{bottom:auto;top:24px;left:7px;margin:0}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{left:0}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month{right:0}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{text-align:left;background:#fafafa;border:1px solid #eaeaea;border-top:none;padding:10px 20px}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{display:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-event-article:hover{background-color:#fcfcfc}.mec-calendar.mec-event-calendar-classic .mec-selected-day,.mec-calendar.mec-event-calendar-classic dt.mec-selected-day:hover{color:#40d9f1;font-weight:700;background:#fafafa;border-bottom:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-day,.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{display:inline-block;margin:0;margin-bottom:15px;font-weight:700}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-day{margin-left:4px}.mec-calendar.mec-event-calendar-classic .mec-calendar-row dt.mec-has-event a{color:#4d4d4d}.mec-calendar.mec-event-calendar-classic .mec-calendar-row dt.mec-has-event:not(.mec-selected-day):hover a{color:#fff}@media only screen and (max-width:1200px){.mec-calendar.mec-event-calendar-classic dl dt{height:100px}}@media only screen and (max-width:767px){.mec-calendar.mec-event-calendar-classic dl dt{height:40px}}@media only screen and (max-width:479px){.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{padding:10px}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-header h2{font-size:13px;margin-top:8px}}.mec-calendar .mec-event-article.mec-single-event-novel{padding:4px 8px;min-height:25px;margin:0 -4px;border-radius:0}.mec-calendar .mec-event-article.mec-single-event-novel h4{margin:0;font-size:10px;line-height:18px}.mec-calendar.mec-event-container-novel dl dt{padding:3px}.mec-calendar.mec-event-calendar-classic .mec-calendar-novel-selected-day{display:inline-block;padding:4px;margin-left:1px}.mec-calendar.mec-event-calendar-classic .mec-selected-day .mec-calendar-novel-selected-day{color:#fff}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-selected-day,.mec-calendar.mec-event-calendar-classic.mec-event-container-novel dt.mec-selected-day:hover{border-bottom:1px solid #eaeaea}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-calendar-side .mec-calendar-table{min-height:auto}.mec-single-event-novel.light h4{color:#000!important}.mec-single-event-novel.dark h4{color:#fff!important}@media only screen and (max-width:768px){.mec-calendar .mec-event-article.mec-single-event-novel{padding:0;min-height:5px}.mec-calendar .mec-event-article.mec-single-event-novel h4{display:block;font-size:9px}}.mec-event-container-simple .event-single-content-simple{display:none}.mec-event-calendar-classic.mec-event-container-simple .mec-calendar-side .mec-calendar-table{min-height:unset}.mec-event-container-simple .mec-monthly-tooltip h4{font-size:13px;font-weight:500;margin:0;color:#444}.mec-event-container-simple .mec-monthly-tooltip h4:hover{text-decoration:underline;color:#111}.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple{border-bottom:1px dashed #e3e3e3;padding:10px 2px;display:block}.mec-calendar.mec-event-container-simple dl dt.mec-calendar-day{font-size:30px;color:#000}.mec-calendar.mec-event-container-simple .mec-calendar-row dt:hover{background:unset}.mec-calendar.mec-event-container-simple .mec-calendar-row dt,.mec-calendar.mec-event-container-simple .mec-calendar-row dt:last-child,.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt,.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt:last-child{border-width:2px}.mec-calendar.mec-event-container-simple dl dt.mec-selected-day,.mec-calendar.mec-event-container-simple dl dt.mec-selected-day:hover{border-bottom:2px solid #40d9f1;background:unset}.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt{line-height:36px}@media (max-width:768px){.mec-calendar.mec-event-container-simple{overflow-x:scroll}.mec-calendar.mec-event-container-simple .mec-calendar-side{min-width:100%}.mec-event-container-simple .mec-monthly-tooltip h4{font-size:12px}.mec-calendar-side{min-width:600px!important;overflow-x:scroll}}.mec-wrap.colorskin-custom .mec-calendar.mec-event-container-simple .mec-selected-day:hover{background:#f4f4f4}.mec-event-container-simple .mec-calendar-day .mec-monthly-tooltip.event-single-link-simple:last-of-type{border:none}.mec-tooltip-event-title{font-size:16px;font-weight:700;color:#000;margin-bottom:2px}.mec-tooltip-event-time,.tooltipster-sidetip.tooltipster-shadow .tooltipster-content .mec-price-details{font-size:12px;color:#888;margin-bottom:8px;margin-top:5px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-content{padding:17px}.mec-tooltip-event-content{clear:both}.mec-tooltip-event-featured{float:left;margin-right:13px;margin-bottom:1px}.mec-tooltip-event-featured img{max-width:120px}.mec-tooltip-event-desc{font-size:14px;color:#444;line-height:18px}.mec-tooltip-event-desc p{font-size:13px;line-height:1.4;margin-bottom:10px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-box{border-radius:3px!important;border:1px solid #e2e3e4!important;background:#fff!important;box-shadow:0 -1px 30px -2px rgba(0,0,0,.15)!important}.tooltipster-box .mec-tooltip-event-desc{margin-bottom:12px}.tooltipster-sidetip .tooltipster-arrow{overflow:visible!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-border{border-width:12px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-right .tooltipster-arrow-border{border-right-color:#e2e3e4!important}.tooltipster-sidetip .tooltipster-arrow-border{left:-12px!important;z-index:9999999999!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-background{display:block!important}.tooltipster-sidetip .tooltipster-arrow-background{border-width:11px!important;z-index:99999999999!important}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background{left:-9px!important;top:1px!important;border-right-color:#fff!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background{border-top-color:#fff!important;left:0!important;top:-1px!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border{left:-1px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-top .tooltipster-arrow-border{border-top-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{left:-1px!important;top:-11px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{border-bottom-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background{top:-9px!important;border-bottom-color:#fff!important}.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background{border-left-color:#fff!important;left:-2px!important;top:0!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-left .tooltipster-arrow-border{border-left-color:#e2e3e4!important;left:-1px!important;top:-1px!important}@media (max-width:780px){.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4{word-break:break-all;font-size:13px}}@media (max-width:320px){.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4{font-size:10px}}.mec-calendar.mec-calendar-daily .mec-calendar-day-events .mec-event-article{padding-left:15px;padding-right:15px;position:relative}.mec-calendar.mec-calendar-daily .mec-calendar-a-month{text-align:center;background-color:#fff;border-bottom:2px solid #f4f4f4;position:relative}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{color:#444;font-size:18px;line-height:1.2;padding:15px 0 11px;margin:0;font-weight:700;letter-spacing:1px;text-transform:uppercase;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-top{text-align:center;padding:10px 0;position:relative;background-color:#fafafa}.mec-calendar.mec-calendar-daily .mec-next-month,.mec-calendar.mec-calendar-daily .mec-previous-month{position:absolute;top:50%;left:50%;margin-top:-25px;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;border:1px solid #e2e2e2;border-radius:50px;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month i,.mec-calendar.mec-calendar-daily .mec-previous-month i{font-size:14px;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month:hover,.mec-calendar.mec-calendar-daily .mec-previous-month:hover{border-color:#d0d0d0;color:#444;box-shadow:0 2px 5px 0 rgba(0,0,0,.075)}.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-150px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:100px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month{min-height:28px;height:28px;line-height:28px;width:28px;margin-top:-14px;border-radius:3px}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2,.mec-calendar.mec-calendar-daily .mec-calendar-d-top h3{margin-top:9px;color:#b9b9b9;font-family:Roboto,sans-serif;font-size:30px;font-weight:100;text-transform:uppercase;margin-bottom:12px;line-height:1}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2{font-size:81px;color:#444;margin-bottom:10px;line-height:1.1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table{overflow:hidden;background:#fff;min-height:60px;border-top:1px solid #e6e6e6;border-bottom:2px solid #f3f3f3;padding:0 50px;position:relative}@media only screen and (min-width:479px){.mec-calendar.mec-calendar-daily .mec-calendar-d-table{padding:0 55px}}.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl{width:1310px;display:block}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{display:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl.mec-weekly-view-week-active{display:block}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt{display:block;background:#fff;width:42px;height:60px;line-height:60px;text-align:center;float:left;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6;border-radius:0}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day:hover,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt:hover{background:#fafafa;box-shadow:0 2px 5px 0 rgba(0,0,0,.065) inset;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day{cursor:default;background:#fff;color:#c1c1c1;line-height:59px;text-align:center;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-has-event{cursor:pointer;font-weight:700;color:#4a4a4a}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-daily-view-day-active,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt.mec-table-d-current{font-size:18px;font-weight:700;background:#fafafa;color:#40d9f1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-prev{float:none;font-size:14px;width:55px;position:absolute;top:0;left:0;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next{left:auto;right:0;border-left:1px solid #e6e6e6;border-right:none}.mec-calendar.mec-calendar-daily .mec-today-container .mec-today-count{font-size:12px;color:#888;text-align:center}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}}.widget .mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}.widget .mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.widget .mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-util-hidden{display:none}.mec-daily-view-date-events,.mec-weekly-view-date-events{list-style:none;margin:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table{padding:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{width:calc(100% - 1px)}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt{width:14.286%;height:70px;line-height:normal;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:hover{background:#fff;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:last-child{border-right:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:12px;font-weight:700;text-transform:uppercase;display:block;margin:15px 0 6px}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-prev{display:none}ul.mec-weekly-view-dates-events,ul.mec-weekly-view-dates-events li{padding:0;margin:0;line-height:initial}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:64px;height:64px;margin-right:10px;font-size:11px;text-transform:uppercase;float:left;text-align:center;padding-top:2px}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:40px;line-height:30px;font-weight:700;display:block;margin-bottom:6px;letter-spacing:1px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-previous-month{margin-left:0;left:12px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-next-month{margin-left:0;left:auto;right:12px}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}}.widget .mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}.mec-week-events-container .mec-weekly-view-dates-events li.mec-no-event-found{list-style:none!important}li.mec-no-event-found .mec-event-title{text-align:center}.mec-widget .mec-calendar{max-width:100%}.mec-widget .mec-calendar dl dt,.mec-wrap.mec-sm959.mec-widget .mec-calendar.mec-event-calendar-classic dl dt{height:40px}.mec-widget .mec-calendar .mec-calendar-events-sec{padding:10px}.mec-widget .mec-calendar .mec-calendar-header h2{font-size:13px;margin-top:8px}.mec-widget .mec-calendar .mec-event-list-classic .mec-event-image{margin-right:12px}.mec-widget .mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-widget .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{font-size:14px}.mec-widget .mec-calendar .mec-event-article .mec-event-image{margin-right:11px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-header{margin-bottom:20px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{font-size:0;padding:4px 0;text-align:center;min-width:33px}.mec-widget .mec-event-calendar-classic .mec-calendar-side .mec-calendar-table{min-height:200px}.mec-widget .mec-event-list-classic{margin-bottom:8px;padding:8px 0}.mec-widget .mec-event-list-classic .mec-event-article{margin-bottom:0;padding:10px 0;position:relative;min-height:86px;padding-left:80px}.mec-widget .mec-event-list-classic .mec-event-date{font-size:10px;line-height:14px;text-transform:uppercase}.mec-widget .mec-event-list-classic .mec-event-title{font-size:13px}.mec-widget .mec-event-list-classic .mec-event-detail{font-size:11px}.mec-widget .mec-event-list-classic .mec-event-image{width:68px;position:absolute;left:0}.mec-event-list-classic .mec-event-image img{width:100%}.mec-widget .mec-event-list-classic .mec-event-detail{overflow:visible}.event-color{width:14px;display:inline-block;height:14px;margin-left:5px;border-radius:50%}.mec-map-lightbox-wp{width:580px;padding:15px 15px 0;background-color:#fff}.mec-map-view-event-detail.mec-event-detail{width:580px;background-color:#e9e9e9;padding:8px 15px}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-article{padding:0 0 15px;margin:0}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-image{width:70px;margin-right:15px}.mec-marker-infowindow-wp{padding:10px}.mec-marker-infowindow-wp .mec-marker-infowindow-count{width:60px;height:60px;display:block;text-align:center;line-height:60px;border:1px solid #40d9f1;border-radius:50%;font-size:32px;color:#40d9f1;float:left;margin-right:11px}.mec-marker-infowindow-wp .mec-marker-infowindow-content{overflow:hidden;padding-top:6px}.mec-marker-infowindow-wp .mec-marker-infowindow-content span{display:block;color:#222}.mec-marker-infowindow-wp .mec-marker-infowindow-content span:first-child{font-size:15px;font-weight:700}.mec-marker-wrap{display:inline-block;width:35px;height:35px;margin:15px 0 0 4px;border-radius:50% 50% 50% 0;background:#00cae9;animation-name:mec-map-bounce;animation-fill-mode:both;animation-duration:1s;border:3px solid #fff;cursor:pointer}.mec-marker-wrap .mec-marker{margin-top:5px;display:block;-webkit-transform:rotate(45deg);transform:rotate(45deg);text-align:center;color:#fff;font-size:17px}.mec-marker-wrap .mec-marker-pulse-wrap{-webkit-transform:rotate(45deg);transform:rotate(45deg);display:inline-block;margin-left:-11px;margin-top:0}.mec-marker-wrap .mec-marker-pulse{display:inline-block;background:#c5c5c5;border-radius:50%;height:14px;width:14px;-webkit-transform:rotateX(55deg);transform:rotateX(55deg);z-index:-2}.mec-marker-wrap .mec-marker-pulse:after{content:"";border-radius:50%;height:40px;width:40px;position:absolute;margin:-13px 0 0 -13px;animation:pulsate 1s ease-out;animation-iteration-count:infinite;opacity:0;box-shadow:0 0 1px 2px #00cae9;animation-delay:1.1s}@keyframes pulsate{0%{transform:scale(.1,.1);opacity:0}50%{opacity:1}100%{transform:scale(1.2,1.2);opacity:0}}@keyframes mec-map-bounce{0%{opacity:0;transform:translateY(-2000px) rotate(-45deg)}60%{opacity:1;transform:translateY(30px) rotate(-45deg)}80%{transform:translateY(-10px) rotate(-45deg)}100%{transform:translateY(0) rotate(-45deg)}}.mec-skin-grid-container .mec-skin-map-container,.mec-skin-list-container .mec-skin-map-container{margin-bottom:20px}.mec-single-event{margin-top:10px}.mec-single-event .mec-events-meta-group-countdown{color:#c9c9c9;text-align:center;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-events-meta-group-countdown .countdown-w{text-align:center;font-size:36px;margin:0 auto;padding:40px 0 0;position:relative;display:table;table-layout:fixed}.mec-events-meta-group-countdown .countdown-w .icon-w{font-size:24px}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:15px;font-weight:300;letter-spacing:1px;text-transform:uppercase;position:relative}.mec-events-meta-group-countdown .countdown-w .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px;width:190px;font-size:72px;transition:all .3s ease-in-out;line-height:1.2}.mec-events-meta-group-countdown .countdown-w .block-w.done-w{border:0 none}.mec-events-meta-group-countdown .countdown-w .block-w li{font-size:50px}.mec-events-meta-group-countdown .countdown-w span{padding:24px 0 20px}.mec-events-meta-group-countdown .countdown-w .div-d{display:none}.mec-events-meta-group-countdown .countdown-w .countdown-message{display:none}.mec-events-meta-group-countdown .countdown-w .block-w i{display:none}#countdown{list-style:none;margin-bottom:0;margin-top:0;margin-left:0;padding-left:0}.mec-events-meta-group-countdown .mec-end-counts h3{display:inherit;text-align:center;font-size:16px;right:50%}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:23px}@media (min-width:481px) and (max-width:768px){.mec-events-meta-group-countdown .countdown-w{padding:0}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:12px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:34px}}@media (min-width:320px) and (max-width:480px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:10px}.mec-events-meta-group-countdown .countdown-w span{font-size:28px}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:16px}}@media (max-width:320px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:9px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:22px}}.info-msg,.mec-error,.mec-success,.warning-msg{margin:10px 0;padding:10px;border-radius:3px 3px 3px 3px;font-size:13px}.info-msg{color:#059;background-color:#bef}.mec-success{color:#0dbf52;background-color:#cef7ce}.warning-msg{color:#9f6000;background-color:#feefb3}.mec-error{color:#d8000c;background-color:#ffbaba}.mec-fes-form,.mec-fes-list{background:#f8feff;padding:30px 3%;color:#798f96;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important}.mec-fes-list .mec-fes-list-top-actions,.mec-fes-list ul{margin:0 auto 15px;max-width:960px;list-style:none}.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}#wrap .mec-fes-form input+label{padding-top:0}.mec-fes-form .post-status{float:right!important;margin:0 5px;color:#fff;padding:0 10px;border-radius:12px;font-style:italic;font-size:18px}.mec-fes-form #mec-event-data input[type=date],.mec-fes-form input[type=email],.mec-fes-form input[type=number],.mec-fes-form input[type=password],.mec-fes-form input[type=tel],.mec-fes-form input[type=text],.mec-fes-form input[type=url],.mec-fes-form select,.mec-fes-form textarea{min-width:inherit;width:auto;display:inline;min-height:30px;font-size:13px;padding:10px;margin-bottom:20px;clear:both;background:#fff;border:1px solid #cfeff5;box-shadow:0 2px 5px rgba(207,239,245,.38) inset;border-radius:3px;height:40px;max-width:280px;color:#798f96;font-family:inherit}#mec_fes_form input[type=date]::-webkit-calendar-picker-indicator,.lity-content #mec_fes_form input[type=date]::-webkit-calendar-picker-indicator,.lity-content .mec-events-meta-group-booking input[type=date]::-webkit-calendar-picker-indicator,.mec-single-event .mec-events-meta-group-booking input[type=date]::-webkit-calendar-picker-indicator{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQ1IDc5LjE2MzQ5OSwgMjAxOC8wOC8xMy0xNjo0MDoyMiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTkgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjA0QjQ2N0QwQjQ4MzExRUE4RDdFREZDRTUxMUVERTM5IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjA0QjQ2N0QxQjQ4MzExRUE4RDdFREZDRTUxMUVERTM5Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6MDRCNDY3Q0VCNDgzMTFFQThEN0VERkNFNTExRURFMzkiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MDRCNDY3Q0ZCNDgzMTFFQThEN0VERkNFNTExRURFMzkiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz6WW71PAAAGIklEQVR42qRXS28bVRQ+586Mx3ZC1DSpVFojRU2CqMIGiSKxAVoUduzoDjYIlhU/Av4AYsdjRXfkD0Cjom6QqIqEqEhRo1aRkkZpkpY6j7GduQ++c2dsj1+BlInGztxvzj3nfudpPlM/otc2W2QjJmU0rZ0uUytUpBxNnN9p/FYhctF0+XUi2nPGkX7WJOfwxNRzqXxtbfI4eUvm7xY1o4iiI0d/vFiisL2BgTAz0yvbCRnLhP0uNEtqrgUseZRcwPPvJewaldSA8o48vo+Tj0U+CnrkOgZwvkEzEmGm1PF9fzK5Y3U/YlllsjRUv19zXl7571HyAjooc/kmYerpcmPO0Mfa0SyxEtji44ynOjPuayjecd7M46/MQOdGyIs9ThnzMLD0XRrwIdeetmoLm41fWiG95Ar792tydLLrOPkAlpW027hbG3+T37lf/5EtvYcXUuhfBjWp9wHRBO63c5lbEkQj2B92uaHy4l2EAQ66GFgbmiD4id/9q661ooAtf8rsvmUEilAHEqcgtJvvNq3YPTkJA8PksT9ZFxD8+4my9pvAOqOMxIMoJHfPZoJkJNiYat3duOac6hxt1N3GR8lnt0O623s+c2CVZEGaZ8Oks1mElvxu7hGYaQjpHLpH3q/YFQE7Oh5Y6gFTaHhAXlasxmoWpZO5L9Ow4DTv+UBZBAkWNO+CqhkbSOzaXWWyzY+n3WcACdVscnklz5CHYsmv1L/RyUJ/cs7zdT3Ey8pTgw/QgNNuS4XjNMvffwvBNmwDH+pdeZ3J+1qDdW15vS0iBhjZWzF9ge8HWl7zNLluYhP/9/jvFANXyL+ufF4jZvOCZsK8isp77+sixf10n7QQjJT39bBtjzdA5chtLG61n7kgk6UvDy29z4HL4c/ifkN0hYV+cA3Bc7stKAfossgSSF06+3HOu8QovE8eThDlv4pu1TbUOpqySDNUKMSDQRIo6QgVRHbFcID1mCITUGgNKLI9uBbcCC59xUi+DsiHBq0XOLb3utqOUYV+LglH9XJASRAsRNqt4xHVj59Exqw3AlrYi0PaiwNqBKoX12Y9iQSP/GkD4xZC0yt/GPFCvZzhUBoMtmPftRwMEEtpupy2auzadLraXtlNoXLhKQYLbjrWRx0cXNf24wxPSmWw5aZPNXSNOi5ytXqZpjTwSqs3PsJi0I61LG29EFG9GtyaeqgvxU17TrAkDjbvnq/eKcTYrbcemi5eHoI/OLgUt7r4n+cqd04llmZ3mjBSDQ4kYtERLLz4OKGt0xGKA9+RgiSGSRV7+UlCVvka72lEvHRx04vLGW2f/PzTBk3VtddRrGlhMXVaIdME5sLJ3ZQOTPQBNqj58uzcxsXtZEkqmQ7IB9ihLeA2x6FQqyG4cRuvbh8uNZSigzBCALhBBtrjkwjjQItQ+kPXWY6eBuEi/lmOlC8kvTh38ZLH3QC+y+GiIl4OqbeZ9RggQZgcVIXe1ep48jPkz/oGw7x1yoytIq1o59AH1Wp1rNHBSXA9tip87zYyvFzpx8dXLVTvqySvhUMNsN6+1ERrrNQVQs57H4K6cR35GrapffICb16RpO7glOHrrQyvjHXxQHB0/j1ugV0LpcFwAzS4n6hiZoIvEp2znwcSigfGJhxpMmseLc0dvFjcvRuLvdEdNyl2+0DOALwE863TM/jnJqhfQa6v4AfJzUNOZ/aVlhqIUpoO4PuU4XFsqFrSM866m9hxBXSvWPx/wHpGqA96Vfa5AH9HnMjYNI96dbkwaVzcCw/nAK+xHzp4Hp89eD04nENzX6v4cYrnrVWXXQF/Fh7MQfWasmogCNsmaT+qwD0g4gYsuYqnWlboeKMUumUr86LycxdwdRUb+zQTvAzcgL0jLXFkbkQUX5UKyFTE2bvZD0a5B8SAUu6dPf+7AInssja2VPSZRud2Ni/NKse5M2VQqkO4BxSzZLmV8Wwpa8S9OHsK3X6+Lc7F/JidOwvkc7z3FbIgzd7smy1c35TEg7NGrg6Ucs88UsCliOLHH1+Td8HYFl++W//QxfT9iSee/3lJWy5X6aMwtK3rTVWJUU4/g4GzdLLp73ku8cEDxNmXUZhc/0eAAQAVgX0RHvvILQAAAABJRU5ErkJggg==);background-position:center;background-size:cover;width:10px;height:12px;display:block}.mec-fes-form input{background:#fff!important;border-radius:3px!important;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important}.mec-fes-form textarea{height:80px}.mec-fes-form input::-webkit-input-placeholder{color:#798f96}.mec-fes-form input::-moz-placeholder{color:#798f96}.mec-fes-form input:-ms-input-placeholder{color:#798f96}.mec-fes-form input:-moz-placeholder{color:#798f96}#mec-excerpt .mec-form-row .widefat{max-width:100%}#mec_more_info_target{width:100%}@media only screen and (min-width:961px){.mec-fes-form #mec-event-data input[type=date],.mec-fes-form #mec-event-data select,.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=tel],.mec-fes-form input[type=text],.mec-fes-form input[type=url],.mec-fes-form textarea{width:100%;display:inline-block}}@media only screen and (max-width:768px){.mec-fes-form #mec-event-data input[type=date],.mec-fes-form #mec-event-data select,.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form input[type=url],.mec-fes-form textarea{width:100%}}.mec-fes-form input[type=text]#mec_fes_title{padding:5px 10px;min-height:32px;height:50px;background:#fff!important;max-width:100%;font-size:19px;font-weight:400}.mec-fes-form input[type=checkbox],.mec-fes-form input[type=radio]{display:inline!important;float:left;margin:5px 5px 0 0}.mec-fes-form input[type=email]:focus,.mec-fes-form input[type=number]:focus,.mec-fes-form input[type=password]:focus,.mec-fes-form input[type=tel]:focus,.mec-fes-form input[type=text]:focus,.mec-fes-form input[type=url]:focus,.mec-fes-form select:focus,.mec-fes-form textarea:focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-form-row .mec-color{cursor:pointer}.mec-form-row.mec-available-color-row span{margin:10px;width:14px;height:14px;display:inline-block;margin-right:6px;border-radius:20px 20px 20px 20px;vertical-align:middle}.mec-form-row.mec-available-color-row span:first-of-type{margin-left:0}.mec-fes-form.mec-fes-form .mec-tooltip{display:inline}.mec-fes-form-cntt .dashicons-editor-help{display:block}.mec-fes-form .mec-tooltip:hover:after,.mec-fes-form .mec-tooltip:hover:before{display:none}.mec-fes-form.mec-fes-form .mec-tooltip{display:inline-flex;bottom:7px}.mec-fes-form .mec-tooltip .box{min-width:300px;max-width:600px;display:inline-block;left:26px;top:50%;transform:translateY(-50%);padding:0;margin-top:8px;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.3;position:absolute;z-index:9999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s}#webnus-dashboard .mec-fes-form .mec-tooltip .box p,.mec-fes-form .mec-tooltip .box p{color:#fff;font-size:14px;line-height:1.3;margin:0}.mec-fes-form .mec-tooltip:hover .box{visibility:visible;opacity:1}.mec-fes-form .mec-tooltip:hover .box{padding:20px;border-radius:8px}.mec-fes-form .mec-tooltip .box h5{color:#fff;font-size:17px;font-weight:600;margin:-30px -20px;padding:20px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #32363a;border-radius:6px 6px 0 0;z-index:9999}#webnus-dashboard .mec-fes-form .mec-tooltip .box p a,.mec-fes-form .mec-tooltip .box p a{color:#40d9f1;margin-top:10px;margin-left:0;font-weight:400;position:relative;text-decoration:none;display:block;width:max-content}.mec-fes-form .mec-tooltip .box a:hover{color:#f90}.mec-fes-form .mec-tooltip .box:after{display:block;position:absolute!important;top:100%!important;right:50%!important;margin-top:-6px!important;margin-right:-6px!important;width:12px!important;height:24px!important;overflow:hidden!important;transform:rotate(-90deg)!important}.mec-fes-form .mec-tooltip .box:before{display:block;content:''!important;position:absolute!important;width:12px;height:12px;left:-10px!important;top:50%!important;transform:translate(50%,-50%) rotate(-45deg)!important;background-color:#535a61!important;box-shadow:0 8px 9px -4px #535a61!important;z-index:0!important}.mec-fes-form .mec-tooltip .box.top{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-fes-form .mec-tooltip .box.top:after{top:50%!important;right:100%!important}.mec-fes-form .mec-tooltip .box.top:before{left:50%!important;top:100%!important}.mec-fes-form .mec-tooltip .box.bottom{left:50%;top:auto;bottom:0;transform:translate(-50%,100%);margin-bottom:-20px;margin-left:-10px}.mec-fes-form .mec-tooltip .box.bottom:after{top:0!important;right:50%!important;background-color:#3a3f44!important}.mec-fes-form .mec-tooltip .box.bottom:before{left:50%!important;top:-7px!important;transform:translateX(-50%);background-color:#3a3f44!important}.mec-fes-form .mec-tooltip .box.left{left:auto;right:26px;top:50%;transform:translateY(-50%)}.mec-fes-form .mec-tooltip .box.left:before{right:0!important;left:auto!important;top:50%!important}.mec-fes-form .mec-tooltip{display:inline-block;position:relative;margin-right:10px;cursor:help;bottom:5px;left:3px}.mec-fes-form .mec-tooltip:last-child{margin-right:0}.mec-fes-form .mec-tooltip:hover:after{background:#313130;border-radius:5px;bottom:24px;color:#fff;content:attr(title);left:-75px;padding:10px;position:absolute;z-index:98;width:240px}.mec-fes-form .mec-tooltip:hover:before{border:solid;border-color:#313130 transparent;border-width:6px 6px 0;bottom:18px;content:"";left:30%;position:absolute;z-index:99}.mec-fes-form .mec-tooltip .dashicons-before:before{font-size:24px;color:#008aff;line-height:37px}.mec-fes-form .mec-tooltip a:focus{box-shadow:none}.mec-form-row .bootstrap_unvalid{display:block;border:2px solid red;position:relative;display:inline-block;border-bottom:1px dotted #000}.mec-fes-form .mec-tooltiptext{visibility:hidden;width:120px;background-color:red;color:#fff;text-align:center;border-radius:6px;padding:5px 0;position:absolute;z-index:1}.mec-fes-form .mec-tooltip .content p a{display:none}@media only screen and (min-width:961px){.mec-fes-form .mec-fes-form-cntt,.mec-fes-form .mec-fes-form-sdbr{width:68%;float:left;padding-right:20px}.mec-fes-form .mec-fes-form-sdbr{width:32%;padding-right:0;padding-left:20px}.mec-fes-submit-mobile{display:none}}.mec-fes-form .mec-meta-box-fields{padding:0 20px 20px;border:1px solid #cfeff5;margin-bottom:20px!important;box-shadow:0 2px 6px -3px #cfeff5;border-radius:3px;background:#fff}.mec-fes-form .mec-meta-box-fields h4{margin:0 -20px;font-size:15px;font-weight:600;letter-spacing:0;color:#40d9f1;text-transform:capitalize;padding:15px 20px;background:#ecfcff;margin-bottom:20px;border-radius:3px}.mec-fes-sub-button{width:100%}.mec-available-color-row span.color-selected{border:3px solid #fff;box-sizing:content-box;box-shadow:0 0 0 2px #40d9f1,0 2px 8px -1px #40d9f1}.mec-fes-loading:before{content:url(../img/ajax-loader.gif);background:0 0;border-style:none;display:block;margin-left:47%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:190px;margin-right:1.4%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-1,.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-2{width:120px;margin-right:10px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].widefat{width:100%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row{border-bottom:none;padding-bottom:10px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-6{width:39%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row button{margin-right:0;padding:9px 26px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row button.mec-add-hourly-schedule-button{font-size:12px;height:30px;line-height:25px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row .description{display:inline-block;border-left:1px dashed #bfcacc;margin-left:12px;line-height:28px;padding-left:12px;margin-top:5px;font-style:italic}@media only screen and (max-width:768px){.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:100%!important}}#mec_fes_form_message{max-width:838px;margin:10px auto;display:block!important;text-align:center}.mec-wrap .mec-totalcal-box{position:relative;border:1px solid #efefef;padding:20px 5px;margin:0 0 20px;background:#fafafa;overflow:hidden;box-shadow:0 3px 2px 0 rgba(0,0,0,.012);min-height:78px}.mec-wrap .mec-totalcal-box i{float:left;margin:0;width:36px;height:36px;background:#fff;border:1px solid #efefef;text-align:center;padding:10px 0;font-size:15px;color:#888}.mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-wrap .mec-totalcal-box input,.mec-wrap .mec-totalcal-box select{width:auto;min-height:36px;height:36px;line-height:36px;background:#fff;font-size:13px;color:#777;border:1px solid #efefef;margin:0 0 0 -1px;float:left;padding:0 5px;font-family:Roboto,Helvetica,Arial,sans-serif}.mec-wrap .mec-totalcal-box input[type=submit]{cursor:pointer;padding:0 16px;text-transform:uppercase;font-size:11px;font-family:Montserrat,Helvetica,Arial,sans-serif;transition:all .21s ease}.mec-wrap .mec-totalcal-box input[type=submit]:hover{background:#222;color:#fff}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{display:inline-block;text-transform:uppercase;font-family:Montserrat,Helvetica,Arial,sans-serif;font-size:11px;padding:0 12px;cursor:pointer}.mec-wrap .mec-totalcal-box .mec-totalcal-view span:hover{color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected{color:#fff;background:#40d9f1;border-color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view{text-align:right;float:right}.mec-wrap .mec-totalcal-box input[type=search]{width:calc(100% - 36px)}.mec-full-calendar-wrap .mec-search-form .col-md-7{padding:0}@media only screen and (min-width:961px) and (max-width:1200px){.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-3,.mec-wrap .mec-totalcal-box .col-md-4,.mec-wrap .mec-totalcal-box .col-md-5{width:100%;float:none;clear:both;overflow:hidden}.mec-full-calendar-wrap .mec-search-form .col-md-3,.mec-full-calendar-wrap .mec-search-form .col-md-4,.mec-full-calendar-wrap .mec-search-form .col-md-5{display:block;max-width:100%;padding:0;margin:0 0 10px 0}.mec-full-calendar-wrap .mec-search-form .col-md-3{padding-bottom:10px!important}.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 106px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}.mec-wrap .mec-totalcal-box .mec-totalcal-view{float:none}}@media only screen and (min-width:768px) and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-4{position:relative;width:initial}.mec-wrap .mec-totalcal-box .col-md-5{padding-bottom:0}.mec-full-calendar-wrap .mec-search-form .col-md-5{margin-top:20px}.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:767px){.mec-wrap .mec-totalcal-box .mec-totalcal-view{float:none}.mec-wrap .mec-totalcal-box .col-md-4{padding-bottom:0}}@media only screen and (max-width:479px){.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 8px;font-size:10px}.mec-wrap .mec-totalcal-box input[type=submit]{padding:0 10px;font-size:10px}}@media only screen and (min-width:961px){.mec-wrap .mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5,.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-3{padding-bottom:20px;clear:both;overflow:hidden}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5{right:10px;width:initial}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-4{padding-bottom:0;width:100%}}@media (min-width:961px) and (max-width:1200px){.mec-full-calendar-wrap .mec-totalcal-box{padding:15px 10px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 10px}.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-address-search,.mec-search-form .mec-text-input-search{padding:0 4px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4,.mec-full-calendar-wrap .mec-totalcal-box .col-md-5{padding-bottom:20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{min-width:calc(30% - 10px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3:last-child select{min-width:calc(50% - 19px)}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:9px;text-align:center}}@media only screen and (max-width:1200px){.post-type-archive-mec-events .mec-totalcal-box .col-md-3,.post-type-archive-mec-events .mec-totalcal-box .col-md-4{width:100%;padding:0}.post-type-archive-mec-events .mec-totalcal-box select:last-child{min-width:auto}.post-type-archive-mec-events .mec-totalcal-box .col-md-5{position:relative;float:right;max-width:100%;left:0;top:20px;width:100%!important;display:block;clear:both}.post-type-archive-mec-events .mec-totalcal-box .mec-totalcal-view{max-width:100%;width:100%}.post-type-archive-mec-events .mec-totalcal-box .mec-totalcal-view span{width:20.1%;font-size:10px}}@media only screen and (max-width:960px){.post-type-archive-mec-events .mec-totalcal-box .col-md-5{top:10px}}@media only screen and (max-width:760px){.post-type-archive-mec-events .mec-totalcal-box .col-md-5{top:0!important}}@media only screen and (max-width:480px){.post-type-archive-mec-events .mec-totalcal-box .mec-totalcal-view span{font-size:8px}}@media (min-width:1201px) and (max-width:1280px){.mec-full-calendar-wrap .mec-totalcal-view span{font-size:9px;padding:0 10px}}@media (min-width:761px) and (max-width:1200px){.mec-full-calendar-wrap .mec-search-form .mec-dropdown-wrap .mec-dropdown-search{width:33.3333%;display:block;float:left}.mec-full-calendar-wrap .mec-search-form .col-md-4 .mec-text-input-search{padding:0;margin-bottom:20px}.mec-full-calendar-wrap .mec-search-form .col-md-3{width:100%}.mec-full-calendar-wrap .mec-search-form .mec-date-search select:last-child{min-width:70px;width:70px}.mec-full-calendar-wrap .mec-search-form .col-md-5{float:right;padding:0 0 10px 0}.mec-full-calendar-wrap .mec-totalcal-view span{font-size:11px}}@media (max-width:760px){.mec-full-calendar-wrap .mec-search-form .col-md-3{width:100%}.mec-full-calendar-wrap .mec-search-form .mec-date-search select:last-child{min-width:70px;width:70px}.mec-full-calendar-wrap .mec-search-form .col-md-5{float:right;padding:0 0 10px 0}.mec-full-calendar-wrap .mec-totalcal-view span{font-size:11px}}@media (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box{padding:20px 20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{padding-bottom:10px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px);margin-bottom:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view{margin-left:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:10px;text-align:center}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:100%}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:14.3%;text-align:center;font-size:10px;margin-right:-1px}}@media(max-width:780px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{width:calc(50% - 18px)!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:unset;padding-right:0}.mec-full-calendar-wrap .mec-search-form .col-md-3,.mec-full-calendar-wrap .mec-search-form .col-md-4,.mec-full-calendar-wrap .mec-search-form .col-md-5{margin:0;padding:0}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 7px;margin-top:20px}}@media(max-width:480px){.mec-full-calendar-wrap .mec-totalcal-box{padding:15px 10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:13.5%;text-align:center;font-size:11px}}@media(max-width:411px){.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:12%;font-size:10px}}@media(max-width:320px){.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:22.5%;font-size:11px}}.mec-totalcalview-selected:hover{color:#fff!important}.mec-search-form{padding:20px 10px}.mec-search-form .mec-dropdown-wrap{display:table;width:100%}.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{padding:0 10px;float:left;min-height:55px}.mec-search-form .mec-date-search,.mec-search-form .mec-text-input-search{width:50%;min-height:36px;display:block}.mec-full-calendar-wrap .mec-search-form .mec-date-search,.mec-full-calendar-wrap .mec-search-form .mec-text-input-search{width:100%}.mec-full-calendar-wrap .mec-search-form .col-md-3,.mec-full-calendar-wrap .mec-search-form .col-md-6,.mec-full-calendar-wrap .mec-search-form .col-md-8{padding:0}.mec-widget .mec-search-form .mec-date-search,.mec-widget .mec-search-form .mec-text-input-search{width:100%}.mec-widget .mec-search-form .mec-text-input-search{margin-top:10px}.mec-search-form .mec-date-search{clear:left}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:table-cell;float:none}.mec-widget .mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block}.mec-wrap .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{width:calc(100% - 36px);margin-bottom:20px}.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 106px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}@media only screen and (max-width:781px){.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{width:100%;float:none}.mec-search-form .mec-date-search{min-height:55px}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:50%;float:left}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3{margin-bottom:0;padding-bottom:0!important}}@media only screen and (max-width:479px){.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:100%;float:none}}@media only screen and (min-width:961px) and (max-width:1200px){.post-type-archive-mec-events .mec-totalcal-box .col-md-3,.post-type-archive-mec-events .mec-totalcal-box .col-md-4,.post-type-archive-mec-events .mec-totalcal-box .col-md-5{max-width:100%;width:100%}.post-type-archive-mec-events .mec-totalcal-box .col-md-4{padding:0 10px}.post-type-archive-mec-events .mec-totalcal-box .col-md-4 .mec-text-input-search{margin:0}.post-type-archive-mec-events .mec-totalcal-box .col-md-5{margin-bottom:20px;padding:0 10px 10px 10px}}@media only screen and (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-4,.post-type-archive-mec-events .mec-totalcal-box .col-md-4{padding:0 10px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{margin-bottom:0}.post-type-archive-mec-events .mec-totalcal-box .col-md-4 .mec-text-input-search{margin:0}.post-type-archive-mec-events .mec-totalcal-box .mec-totalcal-view{padding-right:15px}.mec-full-calendar-wrap .mec-search-form .col-md-5{margin-bottom:0}.post-type-archive-mec-events .mec-totalcal-box .col-md-5{padding:0}}@media only screen and (max-width:780px){.post-type-archive-mec-events .mec-totalcal-box .mec-totalcal-view span{margin-top:10px;margin-bottom:10px}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{margin-top:0}}@media only screen and (max-width:760px){.post-type-archive-mec-events .mec-totalcal-box .mec-totalcal-view span{margin-top:20px;margin-bottom:0}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{margin-top:20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4,.post-type-archive-mec-events .mec-totalcal-box .col-md-4{padding:0}}@media only screen and (max-width:1200px){.post-type-archive-mec-events .mec-full-calendar-wrap .mec-totalcal-view span{width:14.333%;font-size:8px}}@media only screen and (min-width:320px) and (max-width:960px){.post-type-archive-mec-events .mec-search-form .col-md-5 span{width:20%!important}}.mec-search-form .mec-text-address-search{float:left;width:100%;padding:0 10px;margin-bottom:20px}.ui-datepicker{background-color:#fff;border:1px solid #66afe9;border-radius:4px;box-shadow:0 0 8px rgba(102,175,233,.6);display:none;margin-top:4px;padding:10px;width:240px}.ui-datepicker a,.ui-datepicker a:hover{text-decoration:none;cursor:pointer}.ui-datepicker a:hover,.ui-datepicker td:hover a{color:#2c6396;-webkit-transition:color .1s ease-in-out;-moz-transition:color .1s ease-in-out;-o-transition:color .1s ease-in-out;transition:color .1s ease-in-out}.ui-datepicker .ui-datepicker-header{margin-bottom:4px;text-align:center}.ui-datepicker .ui-datepicker-title{font-weight:700}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{cursor:default;font-family:dashicons;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;height:20px;line-height:1.4;margin-top:2px;width:20px}.ui-datepicker .ui-datepicker-prev{float:left;text-align:left}.ui-datepicker .ui-datepicker-next{float:right;text-align:center}.ui-datepicker .ui-datepicker-prev:before{content:"\f341"}.ui-datepicker .ui-datepicker-next:before{content:"\f345"}.ui-datepicker .ui-icon{display:none}.ui-datepicker .ui-datepicker-calendar{table-layout:fixed;width:100%}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker .ui-datepicker-calendar th{text-align:center;padding:4px 0}.ui-datepicker .ui-datepicker-calendar td{border-radius:4px;-webkit-transition:background-color .1s ease-in-out,color .1s ease-in-out;-moz-transition:background-color .1s ease-in-out,color .1s ease-in-out;-o-transition:background-color .1s ease-in-out,color .1s ease-in-out;transition:background-color .1s ease-in-out,color .1s ease-in-out}.ui-datepicker .ui-datepicker-calendar td:hover{background-color:#eee;cursor:pointer}.ui-datepicker .ui-datepicker-calendar td a{text-decoration:none}.ui-datepicker .ui-datepicker-current-day{background-color:#4289cc}.ui-datepicker .ui-datepicker-current-day a{color:#fff}.ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover{background-color:#fff;cursor:default}.mec-owl-theme .owl-dots .owl-dot{border:none}.event-carousel-type1-head .mec-event-image{position:relative;min-height:150px}.event-carousel-type1-head .mec-event-image img{width:100%}.mec-event-carousel-content .mec-event-carousel-title a{transition:all .2s ease}.event-carousel-type1-head .mec-event-date-carousel{position:absolute;top:25px;left:1px;font-size:41px;width:160px;color:#fff;font-weight:500;background-color:#40d9f1;padding-left:21px;height:97px;line-height:2.3;padding-right:85px}.event-carousel-type1-head .mec-event-date-carousel:after{content:"";position:absolute;display:inline-block;z-index:-1;bottom:-13px;left:5px;width:0;border-width:13px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.event-carousel-type1-head .mec-event-date-info{font-size:12px;font-weight:300;position:absolute;top:27px;left:75px}.event-carousel-type1-head .mec-event-date-info-year{font-size:12px;font-weight:300;position:absolute;top:45px;left:75px}.mec-event-carousel-content{border:1px solid #e8e8e8;border-top:none;margin-top:-5px;padding:34px 9px 11px 37px}.mec-event-carousel-content .mec-event-carousel-title a{font-size:23px;font-weight:500;color:#000;letter-spacing:-1px}.mec-event-carousel-content p{font-size:14px;color:#7a7272;font-weight:300}.mec-owl-crousel-skin-type1 .owl-item .mec-event-article{padding:0 19px}.mec-event-carousel-type1 .owl-page.active span{background-color:#00aeef;height:14px;width:14px}.mec-event-carousel-type1 .mec-event-carousel-content{margin-bottom:15px;box-shadow:0 1px 2px rgba(0,0,0,.04);transition:all .27s ease}.mec-event-carousel-type1 .mec-event-carousel-content:hover{box-shadow:0 0 35px rgba(0,0,0,.07)}@media only screen and (min-width:768px) and (max-width:1000px),(min-width:270px) and (max-width:448px){.event-carousel-type1-head .mec-event-date-carousel{font-size:25px;line-height:2.5;padding-right:70px;height:64px;width:120px}.event-carousel-type1-head .mec-event-date-carousel:after{left:7px}.event-carousel-type1-head .mec-event-date-info{font-size:10px;top:13px;left:55px}.event-carousel-type1-head .mec-event-date-info-year{font-size:10px;top:25px;left:55px}.event-carousel-type1-head .mec-event-date-carousel:after{top:48px}}.event-carousel-type2-head{background:#fff;border:1px solid #e6e6e6}.event-carousel-type2-head .mec-event-carousel-content-type2{margin-top:15px;min-height:182px}.event-carousel-type2-head .mec-event-carousel-content-type2 .mec-event-date-info{font-size:15px;color:#9a9a9a;font-weight:300}.event-carousel-type2-head .mec-event-carousel-content-type2 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-carousel-content-type2 .mec-event-carousel-title a{color:inherit}.mec-event-carousel-type2 .event-carousel-type2-head .mec-event-carousel-content-type2 p{font-size:16px;font-weight:300;color:#444}.event-carousel-type2-head .mec-event-footer-carousel-type2{margin-top:33px;position:relative}.mec-event-carousel-type2 .mec-event-footer-carousel-type2 .mec-event-sharing-wrap{padding-left:0;left:0}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-event-sharing-wrap>li{border:none;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button{border:1px solid #e4e4e4;float:right;padding:7px 23px 7px;font-size:12px;text-transform:uppercase;color:#707070;font-weight:500;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button:hover{color:#fff}.mec-event-article .event-carousel-type2-head{padding:10%;margin-right:-1px}.mec-event-carousel-type2 .mec-owl-carousel .owl-wrapper-outer{border-right:1px solid #e6e6e6}.mec-wrap .mec-event-carousel-type2 .owl-next,.mec-wrap .mec-event-carousel-type2 .owl-prev,.mec-wrap .mec-event-carousel-type3 .owl-next,.mec-wrap .mec-event-carousel-type3 .owl-prev,.mec-wrap .mec-event-carousel-type4 .owl-next,.mec-wrap .mec-event-carousel-type4 .owl-prev{transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:47%;background-color:transparent!important}.mec-event-carousel-type2 .owl-next{right:-60px}.mec-event-carousel-type2 .owl-prev{left:-60px}.mec-event-carousel-type2 .owl-next i,.mec-event-carousel-type2 .owl-prev i,.mec-event-carousel-type3 .owl-next i,.mec-event-carousel-type3 .owl-prev i,.mec-event-carousel-type4 .owl-next i,.mec-event-carousel-type4 .owl-prev i{font-size:40px;color:#282828}.mec-event-carousel-type2 .owl-next i:hover,.mec-event-carousel-type2 .owl-prev i:hover,.mec-event-carousel-type3 .owl-next i:hover,.mec-event-carousel-type3 .owl-prev i:hover{color:#000;cursor:pointer}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}@media only screen and (min-width:320px) and (max-width:768px){.mec-event-carousel-type2 .owl-next,.mec-event-carousel-type2 .owl-prev,.mec-event-carousel-type3 .owl-next,.mec-event-carousel-type3 .owl-prev,.mec-event-carousel-type4 .owl-next,.mec-event-carousel-type4 .owl-prev{position:initial;top:100%}}.mec-event-carousel-type3 .mec-event-article{margin:0 10px}.event-carousel-type3-head .mec-event-image,.event-carousel-type3-head .mec-event-image img{width:100%;height:auto}.event-carousel-type3-head .mec-event-footer-carousel-type3{background:#fff;display:inline-block;width:calc(100% - 40px);margin-top:-74px;position:relative;margin-left:20px;margin-right:20px;margin-bottom:6px;padding:8% 11%;box-shadow:0 2px 10px -2px rgba(0,0,0,.2)}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button{border:1px solid #e4e4e4;text-transform:uppercase;float:right;padding:7px 23px 7px;font-size:12px;color:#707070;font-weight:500}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button:hover{color:#fff}.mec-event-footer-carousel-type3 span{font-size:15px;color:#9a9a9a;font-weight:300;display:block;margin-top:30px}.mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:29px;font-weight:700}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-footer-carousel-type3 .mec-event-carousel-title a{color:inherit}.event-carousel-type3-head .mec-event-footer-carousel-type3 p{font-size:16px;font-weight:300;color:#444!important;margin-bottom:36px}.mec-event-carousel-type3 .owl-next{right:-70px}.mec-event-carousel-type3 .owl-prev{left:-70px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap{left:11%}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}.event-carousel-type3-head .mec-end-date-label{display:inline;margin-left:2px}.event-carousel-type4-head.clearfix{position:relative;overflow:hidden;background:#fff}.event-carousel-type4-head .mec-event-overlay{position:absolute;left:0;right:0;bottom:0;top:0;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-hover-carousel-type4{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out;opacity:0;visibility:hidden}.mec-event-carousel-type4 .mec-event-article{margin:0 10px}.mec-event-carousel-type4 .mec-event-article:hover .mec-event-hover-carousel-type4{opacity:1;visibility:visible}.mec-event-hover-carousel-type4 .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-hover-carousel-type4 .mec-event-date{font-size:11px;text-transform:uppercase;font-weight:400;line-height:1.6}.mec-event-hover-carousel-type4 .mec-event-date span{display:block;font-weight:700;font-size:14px}.mec-event-hover-carousel-type4 .mec-event-title{color:#fff;margin:20px 0 38px;font-size:16px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-hover-carousel-type4 .mec-btn-wrapper{text-align:left}.mec-event-hover-carousel-type4 .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:10px 14px;letter-spacing:1.5px;font-size:11px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-hover-carousel-type4 .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-carousel-type4 .owl-next{right:-70px}.mec-event-carousel-type4 .owl-prev{left:-70px}.mec-carousel-type4-head{margin-bottom:25px}.mec-carousel-type4-head-title{padding:0 11px;text-align:left;font-weight:700;font-size:20px;color:#000}.mec-carousel-type4-head-link{text-align:right;padding:0 11px}.mec-carousel-type4-head-link a{background:#222;color:#fff;padding:10px 38px;transition:all .3s ease}.mec-carousel-type4-head-link a:hover,.mec-carousel-type4-head-link a:visited{color:#fff}@media (max-width:960px){.mec-event-carousel-type4 .owl-stage{left:-50px}}.mec-wrap .mec-event-countdown-style1{color:#fff;padding:0!important;display:table;background:#437df9}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1{z-index:5;padding:50px 1% 50px 4%;display:table-cell;float:none;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2{background-color:rgba(0,0,0,.05);height:100%;padding-top:0;display:table-cell;float:none;position:relative;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{background-color:#f8f8f8;display:table-cell;float:none;text-align:center;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style1 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{content:"";position:absolute;display:inline-block;z-index:1;top:50%;margin-top:-11px;right:-24px;width:0;border-width:12px;border-style:solid;border-color:transparent transparent transparent #4077ed}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style1 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto}.mec-event-countdown-style1 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style1 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (min-width:1200px){.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%}}@media (max-width:960px){.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%;transform:rotate(90deg)}}@media (max-width:480px){.mec-event-countdown-style1 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{padding:10px 5px;min-width:50px;margin:3px 1px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:8px}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{display:inline}}.mec-wrap .mec-event-countdown-style2{color:#fff;padding:30px 0;background:#437df9;max-width:600px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part3{width:100%;float:none;vertical-align:middle;padding:50px 10% 50px 10%}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2{padding-top:12%;padding-bottom:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style2 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date-place{text-align:left;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 8px}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#222;background:#fff;transition:all .24s ease}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button:hover{background:#222;color:#fff}.mec-event-countdown-style2 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0}.mec-event-countdown-style2 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style2 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (max-width:767px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:80px;padding:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:26px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:11px}}@media only screen and (max-width:479px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:40px;padding:15px 10px;margin:2px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:20px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:9px}}@media (max-width:380px){.mec-event-countdown-style2 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{padding:10px 4px;margin:4px 1px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:7px}}.mec-wrap .mec-event-countdown-style3{color:#fff;padding:0;background:#282828;display:table;width:100%}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1{width:68%;padding:50px 1% 50px 4%;vertical-align:middle;display:table-cell;position:relative}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:32%;display:table-cell;position:relative;padding-bottom:0;padding-top:0}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 img{width:100%;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{font-weight:300;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{color:#fff;font-size:36px;letter-spacing:-2px;font-weight:700;line-height:1;margin-top:-10px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style3 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style3 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto;position:absolute;top:40px;right:20px}.mec-event-countdown-style3 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style3 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:11px;color:#888;margin:8px 0 0;line-height:1}.mec-event-countdown-style3 .mec-event-date{width:176px;height:96px;background:#40d9f1;color:#fff;font-size:13px;position:absolute;left:-27px;top:146px}.mec-event-countdown-style3 .mec-event-date:after{content:"";position:absolute;display:inline-block;z-index:1;bottom:-18px;left:8px;width:0;border-width:19px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:50px;position:absolute;top:36px;left:12px;letter-spacing:-3px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:80px;top:26px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:80px;top:45px}.mec-event-countdown-style3 .mec-event-countdown-part-details{padding-top:35px;margin-bottom:50px;min-height:100px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-title{font-size:17px;color:#fff;line-height:1.4;padding-right:20px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link{color:#fff;font-size:12px;position:relative;padding-left:22px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link:before{content:"";display:inline-block;width:18px;border-top:1px solid #fff;position:absolute;left:0;top:8px}.mec-event-countdown-style3 .mec-event-title-link{position:absolute;left:190px;top:152px}.event-carousel-type1-head .mec-event-date-carousel:before,.mec-event-countdown-style3 .mec-event-date:before{content:'';position:absolute;left:0;bottom:0;z-index:2;width:100%;height:96px;background:0 0;display:inline-block;box-shadow:0 5px 5px rgba(0,0,0,.12)}@media only screen and (min-width:960px){.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown li{padding:10px}.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:31px}}@media (max-width:959px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:100%;display:block}.mec-event-countdown-style3 .mec-event-title-link{top:190px}.mec-event-countdown-style3 .mec-event-countdown{top:96px}.mec-event-countdown-style3 .mec-event-date{left:0;top:190px}.mec-event-countdown-style3 .mec-event-date:after{display:none}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{display:inline}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:150px}}@media (max-width:767px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:26px;letter-spacing:-1px}.mec-event-countdown-style3 .mec-event-title-link{left:130px}.mec-event-countdown-style3 .mec-event-date{width:120px;font-size:10px;height:63px}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:36px;top:20px;left:4px;letter-spacing:-2px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:52px;top:12px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:52px;top:28px}}@media (max-width:380px){.mec-event-countdown-style3 .mec-event-title-link{left:10px;top:260px}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:300px}.mec-event-countdown-style3 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:10px 5px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:8px}}.mec-slider-t1-wrap{width:100%;padding:60px 90px;background:#f7f7f7;min-height:560px;position:relative}.mec-slider-t1{height:500px;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t1 .mec-event-article{position:relative;height:500px}.mec-slider-t1 .mec-slider-t1-img{position:relative;background-size:cover!important;background-position:center!important;width:50%;height:100%;float:right;margin:0;overflow:hidden}.mec-slider-t1 .mec-slider-t1-content{width:50%;float:left;height:100%;background:#fff;padding:6%}.mec-slider-t1-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t1-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:54px;height:54px;line-height:48px;border-radius:0;text-align:center;background:#fff;box-shadow:0 2px 11px 0 rgba(0,0,0,.045);transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-27px;cursor:pointer}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 29px 0 rgba(0,0,0,.095)}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:12px;color:#282828;transition:all .21s ease}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{font-size:13px;color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t1{margin:0 auto;max-width:900px}}@media only screen and (max-width:960px){.mec-slider-t1 .mec-slider-t1-content,.mec-slider-t1 .mec-slider-t1-img{width:100%;float:none}.mec-slider-t1 .mec-slider-t1-img{height:300px}.mec-slider-t1,.mec-slider-t1 .mec-event-article{height:auto}}@media only screen and (max-width:768px){.mec-slider-t1-wrap{padding:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:10px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}}@media only screen and (max-width:479px){.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t2-wrap{width:100%;padding:0;background:#fff;min-height:600px;position:relative}.mec-slider-t2 .mec-event-article{height:600px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t2 .mec-slider-t2-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:70%;height:100%;margin:0;overflow:hidden}.mec-slider-t2 .mec-slider-t2-content{width:50%;position:absolute;right:0;top:60px;bottom:60px;padding:5%}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern *{color:#fff}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-content,.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t2-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:84px;cursor:pointer}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}.mec-wrap.colorskin-custom .mec-slider-t2 .mec-event-article .mec-event-date.mec-color{color:#fff}@media only screen and (min-width:961px){.mec-slider-t2{margin:0 auto;max-width:1200px}}@media only screen and (max-width:960px){.mec-slider-t2 .mec-slider-t2-content,.mec-slider-t2 .mec-slider-t2-img{width:100%;float:none;position:static}.mec-slider-t2 .mec-slider-t2-img{height:300px}.mec-slider-t2 .mec-event-article{height:auto}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px}}@media only screen and (max-width:479px){.mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:22px}}.mec-slider-t3-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t3 .mec-event-article{height:700px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t3 .mec-slider-t3-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;opacity:.68;z-index:1}.mec-slider-t3 .mec-slider-t3-content{width:50%;height:auto;vertical-align:middle;display:table;position:absolute;left:0;top:50%;transform:translateY(-50%);bottom:0;padding:0 2% 0 7%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t3 .mec-slider-t3-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-content,.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-slider-t3-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t3-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{border-color:#40d9f1}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-22px;cursor:pointer}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next{right:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:50px;font-weight:300}.mec-slider-t3-content.mec-event-grid-modern .mec-event-description{font-size:19px}}@media only screen and (max-width:767px){.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}}@media only screen and (max-width:479px){.mec-slider-t3 .mec-slider-t3-content{width:100%}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t4-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t4 .mec-event-article{height:700px;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t4 .mec-slider-t4-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;z-index:1}.mec-slider-t4 .mec-slider-t4-content{width:auto;max-width:700px;background:rgba(37,37,37,.94)!important;height:auto;vertical-align:middle;display:table;position:absolute;left:8%;top:19%;padding:3%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t4 .mec-slider-t4-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-content,.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:13px;padding:0 42px;line-height:49px;height:50px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t4-content.mec-event-grid-modern .mec-slider-t4-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next{right:60px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{right:112px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:767px){.mec-slider-t4 .mec-slider-t4-content{width:100%;left:0;top:auto;bottom:0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t5-wrap{width:auto;max-width:570px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-slider-t5{height:auto;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t5 .mec-event-article{position:relative;height:auto}.mec-slider-t5 .mec-slider-t5-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:300px;float:none;margin:0;overflow:hidden}.mec-slider-t5 .mec-slider-t5-content{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-slider-t5 .mec-events-content p{margin-bottom:20px}.mec-slider-t5-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t5-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t5 .mec-slider-t5-col6{width:50%;float:left;height:100%}.mec-slider-t5 .mec-slider-t5-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-slider-t5 .mec-slider-t5-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-slider-t5 .mec-slider-t5-col6 address{font-size:12px;margin-bottom:0}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t5-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:768px){.mec-slider-t5 .mec-slider-t5-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-single-modern .mec-events-event-image{text-align:center}.mec-single-modern .mec-events-event-image img{width:100%}.mec-single-modern .mec-single-event-bar{background-color:#f7f7f7;margin:20px 0 0;padding:15px;display:table;width:100%}.mec-single-modern .mec-single-event-bar>div{display:table-cell}.mec-single-modern .mec-single-event-bar>div i{font-size:20px;vertical-align:middle}.mec-single-modern .mec-single-event-bar>div .mec-time-comment{font-size:12px;color:#999}.mec-single-modern .mec-single-event-bar>div h3{text-transform:uppercase;font-size:16px;font-weight:700;padding-bottom:5px;display:inline;color:#000;padding-left:10px}.mec-single-modern .mec-single-event-bar>div dd{font-size:14px;color:#8d8d8d;padding-left:34px;margin-bottom:0}.mec-single-modern .col-md-4 .mec-frontbox{margin-top:-50px;margin-bottom:70px;padding:20px;border:none;background:#f7f7f7;box-shadow:none}.mec-single-modern .col-md-4.mec-no-image .mec-frontbox{margin-top:20px}.mec-next-occurrence li{list-style:none}@media only screen and (min-width:960px){.mec-single-modern .col-md-4 .mec-frontbox{margin-left:20px}}@media only screen and (max-width:960px){.mec-single-modern .mec-single-event-bar>div{display:block}}.lity-content>div{overflow:auto}.mec-next-event-details li{list-style:none;margin-top:20px}.mec-next-event-details h6{text-transform:uppercase;font-size:13px;padding-bottom:5px;display:inline;color:#222;padding-left:0}.mec-next-event-details abbr{display:block;padding-left:12px;color:#8d8d8d}.mec-next-event-details i{margin-right:10px;margin-left:12px}.mec-next-event-details i:before{color:#40d9f1}.mec-next-event-details a{text-align:center;display:block;background:#fff;padding:6px 0;font-size:11px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;transition:.3s}.mec-single-modal.mec-single-modern .mec-single-title{text-align:center;padding:15px 10px 0}.admin-bar .mec-single-modal.mec-single-modern .mec-single-title{padding-top:40px}.mec-single-modal.mec-single-modern .mec-single-event-bar{padding:5px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div dd{font-size:13px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div h3{font-size:15px}@media only screen and (min-width:960px){.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-left:0}}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-top:10px;margin-bottom:10px}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox.mec-event-meta{padding:0}.mec-single-modal .mec-event-meta dd.mec-organizer-email a,.mec-single-modal .mec-event-meta dd.mec-organizer-url a{font-size:12px;display:block}.mec-organizer-description p{padding-left:12px}.mec-modal-wrap{max-width:60vw;max-height:90vh!important;background:#fff;box-shadow:0 1px 55px rgba(0,0,0,.5);overflow-x:hidden!important}@media(max-width:1023px){.mec-modal-wrap{max-width:80vw}}.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li,.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a.mec-events-button{display:block;text-align:center}.mec-holding-status-expired{color:#d8000c}.mec-holding-status-ongoing{color:#0dbf52}body .featherlight .featherlight-content{background:0 0;overflow:unset;z-index:9999}body .featherlight .featherlight-close-icon{position:fixed;top:40px;right:40px;background:0 0;color:#fff;border:1px solid #fff;border-radius:0}body .featherlight .featherlight-close-icon:hover{background:#fff;color:#000;border:1px solid #000}@media (max-width:320px){.mec-wrap span.flip-clock-divider{width:20px}.mec-single-event .mec-events-meta-group-countdown{padding:15px 12%}}@media (max-width:414px){.mec-wrap span.flip-clock-divider{width:30px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 7%}}@media (max-width:480px){body .featherlight .featherlight-content{width:95%}.mec-wrap span.flip-clock-divider{width:7px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 1%}body .featherlight .featherlight-close-icon{color:#000;border-color:#000}}@media(max-width:1366px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:20px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 15px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:48px}}@media(max-width:1280px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:14px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:15px 10px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:38px}}@media(min-width:961px) and (max-width:1024px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:7px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:15px 5px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:14px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul li a div{font-size:30px}}@media(max-width:640px){body .mec-modal-wrap .mec-single-modal.featherlight-close-icon{top:14px;right:14px}}@media(max-width:480px){.featherlight .featherlight-content,body .mec-modal-wrap{max-width:100%}body .mec-modal-wrap.flip-clock-divider .flip-clock-label{display:block}}@media (max-width:414px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:50px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 65px}body .featherlight-content .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 2px 20px 2px!important}body .featherlight-content .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:3px!important}}@media (max-width:375px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:50px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 45px}}@media (max-width:320px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:20px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 40px}}.mec-single-event-bar dd{margin-left:0}.mec-events-toggle{max-width:960px;margin-left:auto;margin-right:auto}.mec-events-toggle .mec-toggle-item{border:1px solid #e4e4e4;margin-bottom:15px;box-shadow:0 10px 15px #f3f3f3}.mec-events-toggle .mec-toggle-item-inner{cursor:pointer;position:relative;padding:30px 60px 30px 15px;background:#fff;transition:all .3s ease;min-height:100px;display:table;width:100%;border-collapse:separate}.mec-events-toggle .mec-toggle-item-inner:hover{background:#fbfbfb}.mec-toggle-item-col{width:200px;border-right:1px solid #e3e3e3;margin-right:15px;display:table-cell;padding-right:5px}.mec-toggle-item-col .mec-event-date{font-size:38px;line-height:40px;float:left;margin-right:8px}.mec-toggle-item-col .mec-event-month,.mec-toggle-item-col .mec-time-details{text-transform:uppercase;font-size:12px;line-height:14px;padding-top:4px;font-weight:700}.mec-toggle-item-col .mec-event-detail{font-size:10px}.mec-toggle-item-col .mec-event-day{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:35px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-events-toggle .mec-toggle-title{color:#000;font-size:23px;font-weight:600;margin-bottom:0;transition:all .3s ease;display:table-cell;text-align:left;max-width:calc(100% - 200px);padding-left:15px;vertical-align:middle}.mec-events-toggle .mec-toggle-item-inner span.event-color{width:5px;height:100%;position:absolute;left:-1px;top:0;bottom:0;border-radius:0;margin:0}.mec-events-toggle .mec-toggle-item-inner i{position:absolute;font-size:30px;right:25px;top:50%;transform:translate(0,-50%);cursor:pointer}.mec-events-toggle .mec-toggle-item.is-open i.mec-sl-plus:before{content:"\e615"}.mec-events-toggle .mec-toggle-item.is-open .mec-toggle-title{background:#f8f8f8;cursor:pointer}.mec-events-toggle .mec-toggle-content{border-top:1px solid #e4e4e4}.mec-events-toggle .mec-toggle-content .mec-modal-wrap{margin:0;max-width:100%;box-shadow:none}.mec-events-toggle .mec-toggle-content .mec-modal-wrap .mec-single-event{margin:0}.mec-events-toggle .mec-toggle-content .mec-single-event-bar,.mec-events-toggle .mec-toggle-content h1.mec-single-title{display:none}.mec-events-toggle .media-links a{margin-bottom:0}.mec-events-toggle .mec-toggle-content .mec-toggle-meta{margin-bottom:14px}.mec-events-toggle #mec_speakers_details.mec-frontbox{padding:0;margin:0}.mec-events-toggle .mec-toggle-item h3.mec-speakers{border:none;text-align:left}.mec-events-toggle .mec-toggle-item h3.mec-speakers:before{content:"\e063";font-family:simple-line-icons;border:none;position:relative;display:inline-block;left:unset;bottom:unset;font-size:22px;font-weight:400;padding:0 11px 0 28px;vertical-align:middle}@media only screen and (max-width:767px){.mec-toggle-item-inner .mec-toggle-item-col{float:none;width:100%;border-right:none;margin-bottom:5px;display:block;max-width:100%;padding-left:15px}.mec-events-toggle .mec-toggle-title{display:block;width:100%;max-width:100%}}.mec-events-agenda-wrap{margin:10px 0;border:1px solid #e9e9e9;padding-left:20px;box-shadow:0 2px 2px rgba(0,0,0,.03)}.mec-events-agenda{padding:0;border-bottom:1px solid #e9e9e9;overflow:hidden}.mec-agenda-date-wrap{width:210px;padding-top:15px;float:left;font-size:13px}.mec-agenda-date-wrap i,.mec-agenda-event i{font-size:11px;color:#aaa;margin-right:4px;margin-left:1px}.mec-agenda-event i{vertical-align:middle;margin-right:1px}.mec-agenda-events-wrap{float:left;width:calc(100% - 210px);background:#f9f9f9;padding:15px}.mec-agenda-time{font-size:11px;color:#707070;padding-right:10px;width:138px;display:inline-block}.mec-agenda-event-title{position:relative;padding-left:14px}.mec-agenda-event-title a{font-family:Roboto,Montserrat,Helvetica,Arial,sans-serif;font-size:14px;font-weight:600;color:#333}.mec-agenda-event-title span.event-color{width:9px;height:9px;position:absolute;left:0;top:4px;margin:0}.mec-agenda-date-wrap span.mec-agenda-day{color:#aaa;font-size:12px}@media only screen and (max-width:767px){.mec-agenda-date-wrap,.mec-agenda-events-wrap{float:none;width:100%}.mec-events-agenda span.mec-agenda-event-title{display:block;width:100%}.mec-agenda-event-title span.event-color{top:7px}.mec-agenda-event-title a{font-size:13px}}.mec-yearly-view-wrap{margin:0 0 15px;border:1px solid #e6e6e6;box-shadow:0 2px 4px rgba(0,0,0,.04);border-bottom-width:4px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar{max-width:100%;width:232px;padding:10px;background:#fff;margin:10px;display:inline-block}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar dl dt{transition:none;height:30px;width:30px;line-height:30px;border-radius:0;font-size:12px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar .mec-calendar-events-sec{padding:10px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar .mec-has-event:after{width:4px;height:4px;bottom:3px;margin-left:-2px}.mec-yearly-view-wrap .mec-calendar-side .mec-calendar-table{min-height:200px}.mec-calendar.mec-yearly-calendar .mec-calendar-table-head dl dt{background:#f9f9f9;font-size:13px}.mec-calendar.mec-yearly-calendar .mec-calendar-table-title{text-align:center;font-size:15px;font-weight:700;color:#222;margin-top:-5px;padding-bottom:5px}.mec-yearly-view-wrap .mec-yearly-calendar-sec{min-height:200px;width:538px;overflow:hidden;float:left;background:#f8f8f8;padding:15px}.mec-yearly-view-wrap .mec-yearly-agenda-sec{min-height:200px;width:calc(100% - 538px);float:left;padding:0 0 0 20px;overflow:hidden}.mec-yearly-view-wrap .mec-yearly-title-sec{position:relative;padding:15px;text-align:center;border-bottom:1px solid #e6e6e6;box-shadow:0 1px 3px rgba(0,0,0,.02)}.mec-yearly-view-wrap .mec-yearly-title-sec h2{font-size:30px;line-height:40px;color:#333;margin:0;font-weight:700}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year,.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{position:absolute;top:50%;margin-top:-15px;min-width:30px;height:30px;line-height:30px;padding:0 8px;text-align:center;background:#fff;color:#666;font-size:14px;border:1px solid #eee;border-radius:2px;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease;cursor:pointer}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{right:auto;left:20px;padding-right:14px}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year{left:auto;right:20px;padding-left:14px}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year i,.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-yearly-view-wrap .mec-events-agenda.mec-selected{box-shadow:-10px 0 0 0 #fffcf2,0 -1px 0 #fbebb6;background:#fffcf2;border-color:#fbebb6;color:#f9af29}@media only screen and (max-width:959px){.mec-yearly-view-wrap .mec-yearly-calendar-sec{width:268px;padding:10px 5px}.mec-yearly-view-wrap .mec-yearly-agenda-sec{width:calc(100% - 268px);padding:0 0 0 10px}}@media only screen and (max-width:767px){.mec-yearly-view-wrap .mec-yearly-agenda-sec,.mec-yearly-view-wrap .mec-yearly-calendar-sec{width:100%;float:none}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar{width:auto}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar dl dt{width:14.2%}.mec-yearly-view-wrap .mec-yearly-title-sec h2{font-size:25px}}.mec-yearly-view-wrap .mec-agenda-event i,.mec-yearly-view-wrap .mec-agenda-time{display:none}@media only screen and (min-width:768px){.mec-yearly-view-wrap .mec-events-agenda-wrap{margin-top:0;border:none;padding-left:0;box-shadow:none}.mec-yearly-view-wrap .mec-agenda-date-wrap{width:174px;font-size:11px;padding-top:10px}.mec-yearly-view-wrap .mec-agenda-events-wrap{width:calc(100% - 174px);padding:10px}.mec-yearly-view-wrap .mec-agenda-event-title a{font-size:13px}.mec-yearly-view-wrap .mec-agenda-event-title span.event-color{width:8px;height:8px}.mec-yearly-view-wrap .mec-agenda-date-wrap span.mec-agenda-day{font-size:11px}.mec-yearly-view-wrap .mec-yearly-calendar-sec{box-shadow:-2px 0 5px rgba(0,0,0,.03) inset}}@media only screen and (max-width:1200px){.mec-yearly-view-wrap .mec-agenda-event-title a{font-size:12px;padding-right:6px}}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table{padding-bottom:10px;border-bottom:none}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt:hover{cursor:pointer}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-has-no-event,.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-has-no-event:hover{color:#bbb;cursor:default}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-day-active{background:#40d9f1;color:#fff;position:relative}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-day-active:after{content:'';position:absolute;display:block;bottom:-20px;left:50%;margin-left:-10px;width:0;border-width:10px;border-style:solid;border-color:#40d9f1 transparent transparent transparent}.mec-timetable-events-list{padding:10px 20px;border:none;margin:0}.mec-timetable-events-list .mec-timetable-event{padding:10px 0;border-bottom:1px dashed #ddd}.mec-timetable-events-list .mec-timetable-event:last-child{border:none}.mec-timetable-event .mec-timetable-event-span{font-size:12px;color:#444;padding-right:30px;line-height:22px}.mec-timetable-events-list .mec-timetable-event i{font-size:13px;color:#aaa;margin-right:3px;vertical-align:baseline}.mec-timetable-event .mec-timetable-event-span a{color:#333}.mec-timetable-event .mec-timetable-event-time{font-size:11px}.mec-timetable-event .mec-timetable-event-time i{vertical-align:text-bottom}.mec-timetable-event .mec-timetable-event-title{font-size:13px}.mec-timetable-event .mec-timetable-event-title .event-color{width:10px;height:10px}.mec-timetable-events-list .mec-timetable-event.mec-util-hidden{display:none}.mec-timetable-events-list.mec-util-hidden{display:none}@media only screen and (min-width:768px){.mec-timetable-events-list{display:table;width:100%;margin:10px 0 20px}.mec-timetable-events-list .mec-timetable-event{display:table-row;padding:0;border:none;background:#fff}.mec-timetable-events-list .mec-timetable-event:hover{background:#fafafa}.mec-timetable-event .mec-timetable-event-span{display:table-cell;padding:10px 15px;border-bottom:1px solid #ebebeb}.mec-timetable-events-list .mec-timetable-event:last-child .mec-timetable-event-span{border-bottom:none}}@media only screen and (max-width:767px){.mec-timetable-event .mec-timetable-event-title{display:block;width:100%;padding:5px 0 10px;font-weight:700}}.mec-timetable-t2-wrap{border:1px solid #e6e6e6;background:#fafafa;padding:0 15px 15px;overflow:hidden;box-shadow:0 3px 2px 0 rgba(0,0,0,.012)}.mec-timetable-t2-col{width:20%;float:left;min-height:20px;padding-right:1px;background:0 0}.mec-ttt2-title{background:#fafafa;color:#333;font-size:13px;font-weight:600;text-transform:uppercase;letter-spacing:1px;text-align:center;padding:25px 10px 10px;margin-bottom:1px}.mec-timetable-t2-col .mec-event-article{position:relative}.mec-timetable-t2-col .mec-event-article .event-color{position:absolute;width:auto;height:auto;left:0;right:0;top:0;bottom:0;margin:0;z-index:1;border-radius:2px}.mec-timetable-t2-content{position:relative;z-index:2;color:#fff;padding:15px 15px 20px;text-align:left;height:185px;margin-bottom:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title{line-height:22px;margin-bottom:13px;white-space:nowrap;padding-right:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title a{color:#fff;font-size:15px;font-weight:600;white-space:pre-line;overflow:hidden}.mec-timetable-t2-content div{color:#fff;font-size:11px;font-weight:400;line-height:19px;white-space:nowrap}.mec-timetable-t2-content div i{font-size:12px;margin-right:4px}@media only screen and (max-width:960px){.mec-timetable-t2-col{width:100%;float:none}}@media(min-width:961px){.mec-timetable-col-7{width:14.28%}.mec-timetable-col-6{width:16.6666%}}.mec-timetable-t3-wrap td{position:relative;padding:0}.mec-timetable-t3-wrap td a{width:100%;display:block;min-height:110px}.mec-weather-box{padding:15px 0}.mec-weather-head{min-height:90px;padding:5px 0;clear:both;overflow:hidden;margin-bottom:25px;border-radius:10px;background:#238af5;position:relative}.mec-weather-icon-box{float:left;width:80px;height:80px;border-radius:10px;overflow:hidden;background:#238af5}.mec-weather-icon{width:80px;height:80px;display:inline-block;border-radius:10px}.mec-weather-summary{float:left;width:calc(100% - 80px);padding-left:10px;margin:10px 0;height:60px}.mec-weather-summary-report{font-size:15px;color:rgba(255,255,255,.68);margin-bottom:6px}.mec-weather-summary-temp{font-family:Roboto,Sans-serif;font-weight:300;color:#fff;font-size:29px;line-height:1}.degrees-mode{background:rgba(0,0,0,.2);cursor:pointer;font-weight:300;font-size:18px;padding:4px 5px;line-height:1;color:#fff;position:absolute;border-radius:8px;bottom:16px;left:16px}.mec-weather-extras{width:auto;padding:10px 15px 0 15px;float:right;min-height:80px;color:#fff;font-size:13px;line-height:1}.mec-weather-extras{width:auto;padding:10px 15px 0 15px;float:right;min-height:80px;color:#fff;font-size:13px;line-height:1}.mec-weather-extras div{line-height:20px;height:20px}.mec-weather-extras span{color:rgba(255,255,255,.68);font-size:12px;text-transform:uppercase}.mec-weather-extras var{font-size:11px;letter-spacing:.4px}.mec-weather-icon.clear-day,.mec-weather-icon.clear-night{background-image:url(../img/mec-weather-icon-01.png)}.mec-weather-icon.partly-sunny-day,.mec-weather-icon.partly-sunny-night{background-image:url(../img/mec-weather-icon-02.png)}.mec-weather-icon.partly-cloudy-day,.mec-weather-icon.partly-cloudy-night{background-image:url(../img/mec-weather-icon-03.png)}.mec-weather-icon.cloudy,.mec-weather-icon.fog,.mec-weather-icon.wind{background-image:url(../img/mec-weather-icon-04.png)}.mec-weather-icon.thunderstorm{background-image:url(../img/mec-weather-icon-05.png)}.mec-weather-icon.rain{background-image:url(../img/mec-weather-icon-06.png)}.mec-weather-icon.hail,.mec-weather-icon.sleet,.mec-weather-icon.snow{background-image:url(../img/mec-weather-icon-07.png)}.mec-av-spot-wrap{width:auto;max-width:1200px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-av-spot{height:auto;border:1px solid #eee;box-shadow:0 6px 12px -4px rgba(0,0,0,.05)}.mec-av-spot .mec-event-article{position:relative;height:auto}.mec-av-spot .mec-av-spot-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:330px;float:none;margin:0;overflow:hidden}.mec-av-spot .mec-av-spot-content,.mec-av-spot .mec-av-spot-head{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-av-spot .mec-av-spot-head{background:#222;color:#fff;min-height:80px}.mec-av-spot .mec-av-spot-head .mec-av-spot-box{padding-top:25px;font-size:13px;color:#ddd}.mec-av-spot .mec-av-spot-head .mec-av-spot-box span{color:#40d9f1;font-size:40px;font-weight:700;font-style:italic}.mec-av-spot .mec-av-spot-head .mec-event-countdown{text-align:center;padding-top:10px;display:table;table-layout:fixed;margin:0 auto;float:right}.mec-av-spot .mec-av-spot-head .mec-event-countdown li{display:table-cell;padding:10px 20px;position:relative;height:60px}.mec-av-spot .mec-av-spot-head .mec-event-countdown p{margin-bottom:0}.mec-av-spot .mec-events-content p{margin-bottom:20px}.mec-av-spot-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-av-spot-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-av-spot-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-av-spot .mec-av-spot-col6{width:50%;float:left;height:100%}.mec-av-spot .mec-av-spot-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-av-spot .mec-av-spot-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-av-spot .mec-av-spot-col6 address{font-size:12px;margin-bottom:0}.mec-av-spot-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-av-spot-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05)}@media only screen and (max-width:768px){.mec-av-spot .mec-av-spot-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-av-spot-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-events-masonry-wrap{display:block;width:auto}.mec-masonry-item-wrap{width:calc(33.33% - 30px);padding:0;margin:0 15px 30px;min-height:10px;position:relative}.isotope-item{z-index:2}.isotope-hidden.isotope-item{pointer-events:none;z-index:1}.isotope,.isotope .isotope-item{-webkit-transition-duration:.8s;-moz-transition-duration:.8s;transition-duration:.8s}.isotope{-webkit-transition-property:height,width;-moz-transition-property:height,width;transition-property:height,width}.isotope .isotope-item{-webkit-transition-property:-webkit-transform,opacity;-moz-transition-property:-moz-transform,opacity;transition-property:transform,opacity}.mec-events-masonry-cats{padding:10px;margin-bottom:25px;text-align:center;clear:both;list-style:none outside none}.mec-events-masonry-cats a{border-radius:2px;padding:6px 12px;font-size:13px;line-height:1.2;color:#333;font-weight:400;margin-top:0!important;text-align:center;display:inline-block;width:auto;border:2px solid transparent;transition:all .2s ease}.mec-events-masonry-cats a:hover{border-color:#40d9f1;color:#333}.mec-events-masonry-cats a.mec-masonry-cat-selected{border:2px solid #40d9f1;color:#40d9f1}.mec-masonry{background:#f7f7f7;height:auto;border:1px solid #eee;box-shadow:0 6px 12px -4px rgba(0,0,0,.05)}.mec-masonry .mec-event-article{position:relative;height:auto}.mec-masonry .mec-masonry-img{position:relative;width:100%;height:auto;float:none;margin:0;overflow:hidden}.mec-masonry .mec-masonry-img img{width:100%}.mec-masonry .mec-masonry-content,.mec-masonry .mec-masonry-head{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-masonry .mec-events-content p{margin-bottom:20px}.mec-masonry-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-masonry-item-wrap .mec-event-grid-modern .event-grid-modern-head{min-height:79px;margin-bottom:10px;padding:14px 5%;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-masonry-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-masonry-content.mec-event-grid-modern .mec-event-content{padding-top:20px}.mec-masonry-content.mec-event-grid-modern .mec-event-footer{height:auto}.mec-masonry .mec-masonry-col6 .mec-event-date{font-size:52px;letter-spacing:-2px;line-height:41px;vertical-align:top}.mec-masonry .mec-masonry-col6{width:50%;float:left;height:100%}.mec-masonry .mec-masonry-col6 i{font-size:24px;float:left;margin-right:7px;height:50px}.mec-masonry .mec-masonry-col6 .mec-event-month,.mec-masonry .mec-masonry-col6 h6{text-transform:capitalize;font-size:15px;padding:4px 0;display:inline;color:#444}.mec-masonry .mec-masonry-col6 .mec-event-detail,.mec-masonry .mec-masonry-col6 address{font-size:11px;margin-bottom:0}.mec-masonry-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-masonry-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05)}@media only screen and (max-width:960px){.mec-masonry-item-wrap{width:calc(50% - 30px)}}@media only screen and (max-width:768px){.mec-masonry .mec-masonry-col6{width:100%;margin:10px 0}.mec-masonry-item-wrap{width:calc(100% - 30px)}}@media only screen and (max-width:479px){.mec-masonry-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.btn-wrapper{text-align:center}.countdown-wrapper .btn-wrapper{padding-top:10px;padding-right:0}.countdown-wrapper h5.countdown-message{letter-spacing:5px;font-weight:500;font-size:18px}.blox.dar .countdown-wrapper p,.countdown-wrapper p{color:#888}.countdown-wrapper a.button.black{float:right;margin-right:0}.mec-wrap .threedaydigits .days .flip-clock-label{right:-100px}@media only screen and (min-width:320px) and (max-width:767px){.mec-wrap .flip-clock-wrapper ul{width:29px!important}.mec-wrap .flip-clock-wrapper ul li a div div.inn{font-size:25px!important}.mec-wrap .flip-clock-divider .flip-clock-label{left:0;font-weight:300}.mec-wrap span.flip-clock-divider{width:12px}}@media only screen and (min-width:320px) and (max-width:480px){.mec-wrap .flip-clock-wrapper ul{width:29px!important}.mec-wrap .flip-clock-wrapper ul li a div div.inn{font-size:25px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}.mec-wrap span.flip-clock-divider:first-child{width:0}.mec-wrap span.flip-clock-divider{width:20px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 18%}}@media screen and (min-width:960px) and (max-width:1200px){.mec-wrap .threedaydigits ul{height:50px;width:47px}}@media screen and (min-width:480px) and (max-width:768px){.mec-wrap .threedaydigits ul{height:48px;width:26px!important}.mec-wrap .threedaydigits .flip-clock-label{font-size:8px;left:-8px}}@media screen and (min-width:320px) and (max-width:480px){.mec-wrap .threedaydigits ul{height:48px;width:22px!important}}.mec-wrap .flip-clock-wrapper *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;-o-box-sizing:border-box;box-sizing:border-box;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden}.mec-wrap .flip-clock-wrapper a{cursor:pointer;text-decoration:none;color:#ccc}.mec-wrap .flip-clock-wrapper a:hover{color:#fff}.mec-wrap .flip-clock-wrapper ul{list-style:none}.flip-clock-wrapper.clearfix:after,.mec-wrap .flip-clock-wrapper.clearfix:before{content:" ";display:table}.mec-wrap .flip-clock-wrapper.clearfix:after{clear:both}.mec-wrap .flip-clock-wrapper{font:normal 11px "helvetica neue",helvetica,sans-serif;-webkit-user-select:none}.mec-wrap .flip-clock-meridium{background:0 0!important;box-shadow:0 0 0!important;font-size:36px!important}.mec-wrap .flip-clock-meridium a{color:#313333}.mec-wrap .flip-clock-wrapper{text-align:center;position:relative;display:inline-block;padding-bottom:10px}.flip-clock-wrapper:after,.mec-wrap .flip-clock-wrapper:before{content:" ";display:table}.mec-wrap .flip-clock-wrapper:after{clear:both}.mec-wrap .flip-clock-wrapper ul{position:relative;float:left;margin:2px;width:50px;height:50px;font-size:80px;font-weight:700;line-height:87px;border-radius:3px;background:rgba(0,0,0,.21)}.mec-wrap .flip-clock-wrapper ul li{z-index:1;position:absolute;left:0;top:0;width:100%;height:100%;line-height:54px;text-decoration:none!important}.mec-wrap .flip-clock-wrapper ul li:first-child{z-index:2}.mec-wrap .flip-clock-wrapper ul li a{display:block;height:100%;-webkit-perspective:200px;-moz-perspective:200px;perspective:200px;margin:0!important;overflow:visible!important;cursor:default!important}.mec-wrap .flip-clock-wrapper ul li a div{z-index:1;position:absolute;left:0;width:100%;height:50%;font-size:80px;overflow:hidden;outline:1px solid transparent}.mec-wrap .flip-clock-wrapper ul li a div .shadow{position:absolute;width:100%;height:100%;z-index:2}.mec-wrap .flip-clock-wrapper ul li a div.up{-webkit-transform-origin:50% 100%;-moz-transform-origin:50% 100%;-ms-transform-origin:50% 100%;-o-transform-origin:50% 100%;transform-origin:50% 100%;top:0}.mec-wrap .flip-clock-wrapper ul li a div.up:after{content:"";position:absolute;top:24px;left:0;z-index:5;width:100%;height:3px;background-color:rgba(0,0,0,.12)}.mec-wrap .flip-clock-wrapper ul li a div.down{-webkit-transform-origin:50% 0;-moz-transform-origin:50% 0;-ms-transform-origin:50% 0;-o-transform-origin:50% 0;transform-origin:50% 0;bottom:0;border-bottom-left-radius:3px;border-bottom-right-radius:3px}.mec-wrap .flip-clock-wrapper ul li a div div.inn{position:absolute;left:0;z-index:1;width:100%;height:200%;color:#fff;text-shadow:0 0 2px rgba(0,0,0,.25);text-align:center;background-color:#40d9f1;border-radius:3px;font-size:48px}.mec-wrap .flip-clock-wrapper ul li a div.up div.inn{top:0}.mec-wrap .flip-clock-wrapper ul li a div.down div.inn{bottom:0}.mec-wrap .flip-clock-wrapper ul.play li.flip-clock-before{z-index:3}.mec-wrap .flip-clock-wrapper .flip{box-shadow:0 2px 5px rgba(0,0,0,.17)}.mec-wrap .flip-clock-wrapper ul.play li.flip-clock-active{-webkit-animation:asd .5s .5s linear both;-moz-animation:asd .5s .5s linear both;animation:asd .5s .5s linear both;z-index:5}.mec-wrap .flip-clock-divider{float:left;display:inline-block;position:relative;width:18px;height:62px}.mec-wrap .flip-clock-divider:first-child{width:0}.mec-wrap .flip-clock-dot{display:none;background:#323434;width:10px;height:10px;position:absolute;border-radius:50%;box-shadow:0 0 5px rgba(0,0,0,.5);left:5px}.mec-wrap .flip-clock-divider .flip-clock-label{position:absolute;bottom:-1.5em;right:-71px;color:#101010;font-weight:700;text-shadow:none;text-transform:uppercase}.mec-wrap .blox.dark .flip-clock-divider .flip-clock-label{color:#8a8a8a}.mec-wrap .flip-clock-divider.seconds .flip-clock-label{right:-82px}.mec-wrap .flip-clock-dot.top{top:30px}.mec-wrap .flip-clock-dot.bottom{bottom:30px}@-webkit-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@-moz-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@-o-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}.flip-clock-wrapper ul.play li.flip-clock-active .down{z-index:2;-webkit-animation:turn .5s .5s linear both;-moz-animation:turn .5s .5s linear both;animation:turn .5s .5s linear both}@-webkit-keyframes turn{0%{-webkit-transform:rotatex(90deg)}100%{-webkit-transform:rotatex(0)}}@-moz-keyframes turn{0%{-moz-transform:rotatex(90deg)}100%{-moz-transform:rotatex(0)}}@-o-keyframes turn{0%{-o-transform:rotatex(90deg)}100%{-o-transform:rotatex(0)}}@keyframes turn{0%{transform:rotatex(90deg)}100%{transform:rotatex(0)}}.flip-clock-wrapper ul.play li.flip-clock-before .up{z-index:2;-webkit-animation:turn2 .5s linear both;-moz-animation:turn2 .5s linear both;animation:turn2 .5s linear both}@-webkit-keyframes turn2{0%{-webkit-transform:rotatex(0)}100%{-webkit-transform:rotatex(-90deg)}}@-moz-keyframes turn2{0%{-moz-transform:rotatex(0)}100%{-moz-transform:rotatex(-90deg)}}@-o-keyframes turn2{0%{-o-transform:rotatex(0)}100%{-o-transform:rotatex(-90deg)}}@keyframes turn2{0%{transform:rotatex(0)}100%{transform:rotatex(-90deg)}}.flip-clock-wrapper ul li.flip-clock-active{z-index:3}.flip-clock-wrapper ul.play li.flip-clock-before .up .shadow{background:-moz-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.1)),color-stop(100%,rgba(64,64,64,.68)));background:linear,top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;background:-o-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-ms-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:linear,to bottom,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;-webkit-animation:show .5s linear both;-moz-animation:show .5s linear both;animation:show .5s linear both}.flip-clock-wrapper ul.play li.flip-clock-active .up .shadow{background:-moz-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.1)),color-stop(100%,rgba(64,64,64,.68)));background:linear,top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;background:-o-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-ms-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:linear,to bottom,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;-webkit-animation:hide .5s .3s linear both;-moz-animation:hide .5s .3s linear both;animation:hide .5s .3s linear both}.flip-clock-wrapper ul.play li.flip-clock-before .down .shadow{background:-moz-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(64,64,64,.68)),color-stop(100%,rgba(0,0,0,.1)));background:linear,top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;background:-o-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-ms-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:linear,to bottom,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;-webkit-animation:show .5s linear both;-moz-animation:show .5s linear both;animation:show .5s linear both}.flip-clock-wrapper ul.play li.flip-clock-active .down .shadow{background:-moz-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(64,64,64,.68)),color-stop(100%,rgba(0,0,0,.1)));background:linear,top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;background:-o-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-ms-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:linear,to bottom,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;-webkit-animation:hide .5s .3s linear both;-moz-animation:hide .5s .3s linear both;animation:hide .5s .2s linear both}@-webkit-keyframes show{0%{opacity:0}100%{opacity:1}}@-moz-keyframes show{0%{opacity:0}100%{opacity:1}}@-o-keyframes show{0%{opacity:0}100%{opacity:1}}@keyframes show{0%{opacity:0}100%{opacity:1}}@-webkit-keyframes hide{0%{opacity:1}100%{opacity:0}}@-moz-keyframes hide{0%{opacity:1}100%{opacity:0}}@-o-keyframes hide{0%{opacity:1}100%{opacity:0}}@keyframes hide{0%{opacity:1}100%{opacity:0}}@font-face{font-family:simple-line-icons;src:url(../fonts/Simple-Line-Icons.eot?v=2.3.1);src:url(../fonts/Simple-Line-Icons.eot?v=2.3.1#iefix) format('embedded-opentype'),url(../fonts/Simple-Line-Icons.woff2?v=2.3.1) format('woff2'),url(../fonts/Simple-Line-Icons.woff?v=2.3.1) format('woff'),url(../fonts/Simple-Line-Icons.ttf?v=2.3.1) format('truetype'),url(../fonts/Simple-Line-Icons.svg?v=2.3.1#simple-line-icons) format('svg');font-weight:400;font-style:normal}[class*=mec-sl-]{font-family:simple-line-icons;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.mec-sl-facebook:before{content:"\e00b"}.mec-sl-twitter:before{content:"\e009"}.mec-sl-google-plus:before{content:"\e60d"}.mec-sl-angle-left:before{content:"\e605"}.mec-sl-angle-right:before{content:"\e606"}.mec-sl-calendar:before{content:"\e075"}.mec-sl-clock-o:before{content:"\e081"}.mec-sl-home:before{content:"\e069"}.mec-sl-phone:before{content:"\e600"}.mec-sl-envelope:before{content:"\e086"}.mec-sl-sitemap:before{content:"\e037"}.mec-sl-map-marker:before{content:"\e096"}.mec-sl-floder:before{content:"\e089"}.mec-sl-wallet:before{content:"\e02a"}.mec-color,.mec-color-before :before,.mec-color-hover:hover,.mec-wrap .mec-color,.mec-wrap .mec-color-before :before,.mec-wrap .mec-color-hover:hover{color:#40d9f1}.mec-bg-color,.mec-bg-color-hover:hover,.mec-wrap .mec-bg-color,.mec-wrap .mec-bg-color-hover:hover{background-color:#40d9f1}.mec-border-color,.mec-border-color-hover:hover,.mec-wrap .mec-border-color,.mec-wrap .mec-border-color-hover:hover{border-color:#40d9f1}.mec-toggle-month-divider.mec-skin-list-events-container{border:1px solid #e8e8e8;margin-bottom:30px;background:#f8f8f8;box-shadow:0 2px 18px -1px rgba(0,0,0,.1);border-radius:2px}.mec-toggle-month-divider .mec-month-divider{margin:0;text-align:left;background:#fff;position:relative;cursor:pointer;border-top:1px solid #e8e8e8}.mec-toggle-month-divider .mec-month-divider span{padding:20px;border-bottom:1px solid #e8e8e8}.mec-toggle-month-divider .mec-month-divider i{position:absolute;right:20px;top:24px;font-size:20px;cursor:pointer}.mec-toggle-month-divider .mec-month-divider span:before{display:none}.mec-toggle-month-divider .mec-month-divider+article{margin-top:20px}.mec-toggle-month-divider .mec-wrap .mec-month-divider:first-of-type{border-top:none}.mec-toggle-month-divider .mec-event-list-accordion .mec-month-divider:not(:first-of-type)~article{display:none}.mec-skin-list-events-container:not(.mec-toggle-month-divider) .mec-month-divider i{display:none}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-month{display:inline-block;padding-top:0}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-date{font-size:14px;line-height:14px;float:none;display:inline-block;margin-right:0;font-weight:700}.mec-events-toggle .mec-toogle-inner-month-divider.mec-toggle-item-inner{padding:20px 60px 30px 15px}.mec-toogle-inner-month-divider .mec-toggle-month-inner-image{float:left;clear:right;width:100px;margin-right:20px;margin-left:10px}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-detail{margin-top:-6px}.mec-toogle-inner-month-divider .mec-toggle-item-col{float:none;width:100%;margin-top:10px;display:block;border:none}.mec-events-toggle .mec-toogle-inner-month-divider .mec-toggle-title{font-size:19px;display:block;padding-top:10px}@media only screen and (max-width:768px){.mec-events-toggle .mec-toogle-inner-month-divider .mec-toggle-title{font-size:14px;padding-top:0}.mec-toogle-inner-month-divider .mec-toggle-item-col{margin-top:0}.mec-toogle-inner-month-divider .mec-toggle-month-inner-image{width:70px}}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled:before,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-featured:before{z-index:1;position:absolute;top:25px;right:-37px;font-size:11px;letter-spacing:1px;text-transform:uppercase;background:#04de78;padding:2px 40px;color:#fff;-ms-transform:rotate(45deg);-webkit-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:.5s cubic-bezier(.25,.5,.06,.85);transition:.5s cubic-bezier(.25,.5,.06,.85);content:attr(data-style)}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-featured{overflow:hidden;position:relative}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled:before{background:#de0404}.mec-daily-view-date-events article:before,ul.mec-weekly-view-dates-events article:before{padding:7px 40px!important;top:27px!important}.mec-event-grid-classic article .mec-fc-style,.mec-event-grid-minimal article .mec-fc-style,.mec-event-grid-simple article .mec-fc-style,.mec-timeline-event .mec-fc-style,.mec-timetable-wrap article .mec-fc-style,.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article.mec-event-cover-modern .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{font-size:9px;letter-spacing:.5px;text-transform:uppercase;background:#04de78;padding:2px 7px;color:#fff;position:relative;margin-left:5px;border-radius:2px}.mec-timeline-event.mec-label-canceled .mec-fc-style,.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-modern.mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-minimal article .mec-fc-style:before,.mec-event-grid-simple article .mec-fc-style:before,.mec-timeline-event .mec-fc-style:before,.mec-timetable-wrap article .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article .mec-fc-style:before,.mec-wrap .mec-event-list-modern article .mec-fc-style:before,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style:before{width:0;height:0;border-top:4px solid transparent!important;border-right:5px solid;border-bottom:4px solid transparent;margin:0;top:50%;left:-4px;transform:translateY(-4.5px);position:absolute;content:'';color:#04de78}.mec-timeline-event.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-event-grid-classic article.mec-label-canceled:before,.mec-event-grid-classic article.mec-label-featured:before,.mec-event-grid-minimal article.mec-label-canceled:before,.mec-event-grid-minimal article.mec-label-featured:before,.mec-event-grid-simple article.mec-label-canceled:before,.mec-event-grid-simple article.mec-label-featured:before,.mec-timetable-wrap article.mec-label-canceled:before,.mec-timetable-wrap article.mec-label-featured:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled:before,.mec-wrap .mec-event-list-accordion article.mec-label-featured:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled:before,.mec-wrap .mec-event-list-modern article.mec-label-featured:before{display:none}.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{top:-3px;font-size:11px;white-space:nowrap}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style:before,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-canceled:before,.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-featured:before{-ms-transform:none;-webkit-transform:none;transform:none;-webkit-transition:none;transition:none;top:271px;right:0}.mec-timetable-wrap article .mec-fc-style{top:-2px;font-size:10px}.mec-wrap article.mec-event-cover-modern .mec-fc-style{padding:5px 9px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:24px;display:inline-block;border-radius:2px}.mec-skin-grid-events-container .mec-wrap .mec-event-grid-clean .mec-event-article:before{-ms-transform:none;-webkit-transform:none;transform:none!important;-webkit-transition:none;transition:none;top:22px!important;right:22px!important;padding:0 10px!important}.mec-event-grid-minimal article .mec-fc-style,.mec-event-grid-simple article .mec-fc-style{top:-4px;font-size:10px;margin-left:10px}.mec-event-grid-classic article .mec-fc-style{padding:5px 20px;font-size:12px;margin-top:8px;display:inline-block}ul.mec-categories{padding:0}ul.mec-categories li.mec-category{list-style:none}ul.mec-categories li.mec-category a{font-weight:400;color:#626262;font-size:13px;text-align:left;transition:all .23s ease;-webkit-transition:all .23s ease}.mec-hourly-schedule-speaker-info{background:#fff;padding:30px;border:1px solid #e6e6e6;max-width:740px;width:740px;margin-left:-110px}.mec-hourly-schedule-speaker-thumbnail{float:left;max-width:30%;width:30%}.mec-hourly-schedule-speaker-name{font-weight:700;font-size:26px;line-height:1.2;color:#333;text-transform:uppercase}.mec-hourly-schedule-speaker-details{float:left;width:69%;padding-left:25px}.mec-hourly-schedule-speaker-job-title{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-hourly-schedule-speaker-description{font-size:14px;font-weight:400;color:#6d7683;line-height:1.7;text-align:left}.mec-hourly-schedule-speaker-contact-information a i{color:#6b6b6b;background:#ebebeb;line-height:29px;margin:9px 7px 9px 0;width:30px;height:30px;display:inline-block;text-align:center;transition:all .2s ease;font-size:15px;cursor:pointer;border-radius:3px}.mec-hourly-schedule-speaker-contact-information a i:hover{background:#222;color:#fff}@media only screen and (max-width:479px){.mec-hourly-schedule-speaker-thumbnail{float:none;max-width:none;margin-right:0;margin-bottom:15px;width:100%}.mec-hourly-schedule-speaker-thumbnail img{width:100%}.mec-hourly-schedule-speaker-details{padding-left:0}.mec-hourly-schedule-speaker-info{width:90%;margin:0 auto}}.mec-profile .mec-profile-bookings{border:2px solid #e6e6e6;text-align:center}.mec-profile .mec-profile-bookings tbody tr:first-child{background:#f7f7f7;font-weight:700;text-transform:capitalize}.mec-profile .mec-profile-bookings tbody tr{border-bottom:1px solid #e6e6e6;font-size:14px}.mec-profile .mec-profile-bookings tbody tr td{border:1px solid #e6e6e6;padding:10px;text-align:center;word-break:initial}.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:53%;text-align:left}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8) i{color:#fe686a}.mec-profile .mec-event-status{padding:5px 10px;color:#fff;border-radius:2px;font-size:12px;line-height:12px;letter-spacing:.4px}.mec-profile .mec-event-status.mec-book-confirmed{background:#50d477}.mec-profile .mec-event-status.mec-book-pending{background:#fcbe69}.mec-profile .mec-event-status.mec-book-rejected{background:#fe686a}.mec-profile .mec-event-date{font-size:12px;color:#888}.mec-event-date,.mec-event-status{text-align:center}.mec-event-date .mec-tooltip,.mec-event-status .mec-tooltip{position:relative;width:fit-content;margin:auto}.mec-profile i{font-size:15px;color:#008aff;vertical-align:text-bottom;margin-right:4px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{min-width:250px;max-width:300px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#000;color:#fff;font-weight:400;font-size:14px;letter-spacing:.5px;line-height:1.5;position:absolute;z-index:99999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #535a61;padding:5px 10px 6px;border-radius:8px;text-align:center;font-style:normal;opacity:0;visibility:hidden;display:none}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{font-size:13px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;letter-spacing:1.1px;font-weight:500}.mec-event-date .mec-tooltip:hover .box:after,.mec-event-status .mec-tooltip:hover .box:after{content:'';position:absolute;width:12px;height:12px;left:calc(50% - 12px);bottom:-12px;transform:translate(50%,-50%) rotate(-45deg);background-color:#000;box-shadow:0 8px 9px -4px #535a61}.mec-event-status .mec-tooltip .box{min-width:100px}.mec-event-status.mec-book-confirmed .mec-tooltip .box,.mec-event-status.mec-book-confirmed .mec-tooltip:hover .box:after{background-color:#50d477}.mec-event-status.mec-book-rejected .mec-tooltip .box,.mec-event-status.mec-book-rejected .mec-tooltip:hover .box:after{background-color:#fe686a}.mec-event-status.mec-book-pending .mec-tooltip .box,.mec-event-status.mec-book-pending .mec-tooltip:hover .box:after{background-color:#fcbe69}.mec-event-date .mec-tooltip:hover .box,.mec-event-status .mec-tooltip:hover .box{opacity:1;visibility:visible;display:block}.mec-profile .mec-event-status{padding:0}.mec-profile .mec-booking-number-of-attendees{font-size:13px;color:#888}.mec-profile .mec-booking-number-of-attendees i,.mec-profile .mec-profile-bookings-view-invoice i{font-size:15px;color:#008aff;vertical-align:text-bottom;margin-right:4px}.mec-booking-attendees{background:#fff;padding:10px}.mec-booking-attendees{width:850px;text-align:center}.mec-booking-attendees-wrapper{border:2px solid #e6e6e6;font-size:14px}.mec-booking-attendees-head{display:table;width:100%;background:#f7f7f7;border-bottom:1px solid #e6e6e6;font-weight:700}.mec-booking-attendees-head span,.mec-booking-attendees-head-content>span{vertical-align:middle;display:table-cell;padding:7px;border-right:1px solid #e6e6e6;font-size:12px}.mec-booking-attendees-head-content{display:table;width:100%;border-bottom:1px solid #e6e6e6}.mec-booking-attendees-wrapper .mec-booking-attendees-head-content:last-child{border:none}.mec-booking-attendees-head span:nth-child(1),.mec-booking-attendees-head-content>span:nth-child(1){width:4%}.mec-booking-attendees-head span:nth-child(2),.mec-booking-attendees-head-content>span:nth-child(2){width:20%}.mec-booking-attendees-head span:nth-child(3),.mec-booking-attendees-head-content>span:nth-child(3){width:24%}.mec-booking-attendees-head span:nth-child(4),.mec-booking-attendees-head-content>span:nth-child(4){width:26%}.mec-booking-attendees-head span:nth-child(5),.mec-booking-attendees-head-content>span:nth-child(5){width:26%}@media only screen and (max-width:759px){.mec-booking-attendees{width:470px}.mec-booking-attendees-head span,.mec-booking-attendees-head-content>span{word-break:break-all}}@media(max-width:1366px){.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:6%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:40%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:12%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:8%}}@media(max-width:1024px){.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:30%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:15%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:10%}}@media(max-width:780px){.mec-profile .mec-profile-bookings tbody tr,.mec-profile i{font-size:12px}.mec-event-date .mec-tooltip .box{min-width:200px}.mec-event-status .mec-tooltip .box{min-width:90px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{padding:4px 5px!important}.mec-profile .mec-profile-bookings tbody tr{font-size:12px}}@media(max-width:480px){.mec-profile .mec-booking-number-of-attendees,.mec-profile .mec-profile-bookings tbody tr,.mec-profile i{font-size:8px!important}.mec-profile .mec-profile-bookings tbody tr td{padding:3px}.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:19%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:12%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:18%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:13%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:13%}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{font-size:8px}.mec-event-date .mec-tooltip .box{min-width:75px}.mec-event-status .mec-tooltip .box{min-width:70px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{padding:4px 5px!important}}.mec-woo-booking-checkout{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;border-radius:0;margin-bottom:6px;min-width:170px;margin-top:5px;text-align:center}.mec-woo-booking-checkout:hover{background:#222;color:#fff}.mec-woo-booking-checkout:focus,.mec-woo-booking-checkout:visited{color:#fff}.single-mec-events .lity-container{max-width:480px;width:480px}.lity-content .mec-events-meta-group-booking{width:100%;padding:20px 50px;background:#fff}.lity-content .mec-events-meta-group-booking .mec-booking form>h4{text-transform:uppercase;font-size:15px;font-weight:700;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative;text-align:center;line-height:1.2;margin-bottom:10px}.lity-content .mec-events-meta-group-booking .mec-booking form>h4:before{padding:1px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-35px;left:50%}.lity-content .mec-events-meta-group-booking .mec-event-ticket-available,.lity-content .mec-events-meta-group-booking .mec-event-ticket-name,.lity-content .mec-events-meta-group-booking .mec-event-ticket-price,.lity-content .mec-events-meta-group-booking .mec-ticket-variation-name,.lity-content .mec-events-meta-group-booking .mec-ticket-variation-price,.lity-content .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;clear:none;padding:5px 1em 3px 0;display:inline-block}.lity-content .mec-events-meta-group-booking .mec-event-ticket-available{margin-bottom:12px}.lity-content .mec-events-meta-group-booking select{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both;font-family:Montserrat,Helvetica,Arial,sans-serif}.lity-content .mec-events-meta-group-booking input[type=email]{color:#888;border:1px solid #e1e1e1;font-size:14px;display:block;width:100%;outline:0}.lity-content .mec-events-meta-group-booking input{margin-bottom:10px!important}.lity-content .mec-book-ticket-variation h5{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:0;clear:none;padding:5px 1em 3px 0;display:inline-block;text-transform:capitalize;font-family:Montserrat,Helvetica,Arial,sans-serif}.lity-content ul.mec-book-tickets-container{padding:0}.lity-content .mec-events-meta-group-booking input[type=email],.lity-content .mec-events-meta-group-booking input[type=number],.lity-content .mec-events-meta-group-booking input[type=text]{outline:0;font-family:Montserrat,Helvetica,Arial,sans-serif;display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both;margin-bottom:2px!important}.lity-container .mec-click-pay #mec_woo_add_to_cart_btn_r,.lity-content button[type=submit]{position:relative;border:none;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;min-width:170px;margin-top:5px;border-radius:0;margin-bottom:6px}.lity-content button[type=submit]:hover{background:#222}.lity-content .mec-book-tickets-container li{list-style:none}.lity-content .mec-events-meta-group-booking #mec_book_payment_form h4,.lity-content .mec-events-meta-group-booking li h4{font-size:19px;font-weight:700}.lity-content .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li{width:50%}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li:nth-child(even){border:none}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li span{display:block}.lity-content .mec-events-meta-group-booking button[type=submit]:after{display:none;font-family:simple-line-icons;content:"\e098";margin-left:4px;-webkit-animation:rotating 1.2s linear infinite;-moz-animation:rotating 1.2s linear infinite;-ms-animation:rotating 1.2s linear infinite;-o-animation:rotating 1.2s linear infinite;animation:rotating 1.2s linear infinite}.lity-content .mec-events-meta-group-booking button[type=submit].loading:after{display:inline-block}@media only screen and (max-width:480px){.lity-content .mec-events-meta-group-booking{padding:20px;width:340px;margin:0 auto}}.mec-events-meta-group-booking{position:relative}.mec-cover-loader:after{content:'';position:absolute;top:0;right:0;left:0;bottom:0;background:rgba(255,255,255,.5);z-index:99999}.mec-loader{background:rgba(0,0,0,0);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);z-index:9}.mec-loader,.mec-loader:after{border-radius:50%;width:5em;height:5em;z-index:999999999999}.mec-loader{font-size:10px;text-indent:-9999em;border-top:.5em solid rgba(0,0,0,.2);border-right:.5em solid rgba(0,0,0,.2);border-bottom:.5em solid rgba(0,0,0,.2);border-left:.5em solid #fff;-webkit-transform:translateZ(0);-ms-transform:translateZ(0);transform:translateZ(0);-webkit-animation:mecloader 1.1s infinite linear;animation:mecloader 1.1s infinite linear}@-webkit-keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.mec-google-recaptcha{margin:0 0 20px 16px}.mec-wrap *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap :after,.mec-wrap :before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap .clearfix:after,.mec-wrap .clearfix:before{content:'\0020';display:block;overflow:hidden;visibility:hidden;width:0;height:0}.mec-wrap .clearfix:after{clear:both}.mec-wrap .clearfix{zoom:1}.mec-wrap .clear,.mec-wrap .clr{clear:both;display:block;overflow:hidden;visibility:hidden}.mec-wrap .clr{visibility:visible;overflow:visible}.mec-container [class*=col-] img{max-width:100%}.mec-container{margin-right:auto;margin-left:auto;padding-left:10px;padding-right:10px}.mec-container:after,.mec-container:before{content:" ";display:table}.mec-container:after{clear:both}@media only screen and (max-width:479px){.mec-container{width:300px}}@media only screen and (min-width:480px) and (max-width:767px){.mec-container{width:420px}}@media only screen and (min-width:768px) and (max-width:960px){.mec-container{width:768px}}@media only screen and (min-width:961px){.mec-container{width:960px}}@media only screen and (min-width:1200px){.mec-container{width:1196px;padding-left:15px;padding-right:15px}}@media only screen and (min-width:1921px){.mec-container{max-width:1690px}}.mec-wrap .row{margin-left:-10px;margin-right:-10px}.mec-wrap .row:after,.mec-wrap .row:before{content:" ";display:table}.mec-wrap .row:after{clear:both}.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{position:relative;min-height:1px;padding-left:10px;padding-right:10px}@media only screen and (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{padding-left:15px;padding-right:15px}.mec-wrap .row{margin-left:-15px;margin-right:-15px}}.mec-container [class*=col-].alpha{padding-left:0}.mec-container [class*=col-].omega{padding-right:0}.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{float:left}.mec-wrap .col-xs-12{width:100%}.mec-wrap .col-xs-11{width:91.66666666666666%}.mec-wrap .col-xs-10{width:83.33333333333334%}.mec-wrap .col-xs-9{width:75%}.mec-wrap .col-xs-8{width:66.66666666666666%}.mec-wrap .col-xs-7{width:58.333333333333336%}.mec-wrap .col-xs-6{width:50%}.mec-wrap .col-xs-5{width:41.66666666666667%}.mec-wrap .col-xs-4{width:33.33333333333333%}.mec-wrap .col-xs-3{width:25%}.mec-wrap .col-xs-2{width:16.666666666666664%}.mec-wrap .col-xs-1{width:8.333333333333332%}@media (min-width:768px){.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9{float:left}.mec-wrap .col-sm-12{width:100%}.mec-wrap .col-sm-11{width:91.66666666666666%}.mec-wrap .col-sm-10{width:83.33333333333334%}.mec-wrap .col-sm-9{width:75%}.mec-wrap .col-sm-8{width:66.66666666666666%}.mec-wrap .col-sm-7{width:58.333333333333336%}.mec-wrap .col-sm-6{width:50%}.mec-wrap .col-sm-5{width:41.66666666666667%}.mec-wrap .col-sm-4{width:33.33333333333333%}.mec-wrap .col-sm-3{width:25%}.mec-wrap .col-sm-2{width:16.666666666666664%}.mec-wrap .col-sm-1{width:8.333333333333332%}}@media (min-width:961px){.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9{float:left}.mec-wrap .col-md-12{width:100%}.mec-wrap .col-md-11{width:91.66666666666666%}.mec-wrap .col-md-10{width:83.33333333333334%}.mec-wrap .col-md-9{width:75%}.mec-wrap .col-md-8{width:66.66666666666666%}.mec-wrap .col-md-7{width:58.333333333333336%}.mec-wrap .col-md-6{width:50%}.mec-wrap .col-md-5{width:41.66666666666667%}.mec-wrap .col-md-4{width:33.33333333333333%}.mec-wrap .col-md-3{width:25%}.mec-wrap .col-md-2{width:16.666666666666664%}.mec-wrap .col-md-1{width:8.333333333333332%}}@media (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9{float:left}.mec-wrap .col-lg-12{width:100%}.mec-wrap .col-lg-11{width:91.66666666666666%}.mec-wrap .col-lg-10{width:83.33333333333334%}.mec-wrap .col-lg-9{width:75%}.mec-wrap .col-lg-8{width:66.66666666666666%}.mec-wrap .col-lg-7{width:58.333333333333336%}.mec-wrap .col-lg-6{width:50%}.mec-wrap .col-lg-5{width:41.66666666666667%}.mec-wrap .col-lg-4{width:33.33333333333333%}.mec-wrap .col-lg-3{width:25%}.mec-wrap .col-lg-2{width:16.666666666666664%}.mec-wrap .col-lg-1{width:8.333333333333332%}}#mec_woo_add_to_cart_btn{min-width:170px;margin-top:5px;text-align:center}.mec-breadcrumbs{border-radius:2px;padding:9px 15px 6px;font-size:11px;color:#8d8d8d;letter-spacing:0;text-transform:none;font-weight:500;margin:auto 15px 33px 15px;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.025)}.mec-breadcrumbs-modern{margin:auto 0 33px 0}.mec-breadcrumbs a{color:#000;padding-left:4px}.mec-breadcrumbs a:hover{text-decoration:underline}.mec-breadcrumbs i{font-size:8px;margin:0 0 0 4px}.mec-breadcrumbs .container{padding-left:20px}.mec-content-notification a{margin-left:5px}.mec-content-notification{background:#f7f7f7;padding:10px 10px 10px;border:1px solid #e8e8e8}.mec-content-notification p{margin-bottom:0}.mec-fes-form #mec-advanced-wraper div:first-child>ul{border:1px solid #cfeff5;width:auto;box-shadow:0 1px 4px -2px #cfeff5;display:block;margin:5px 0 10px;padding:5px 0;border-radius:2px}.mec-fes-form #mec-advanced-wraper div:first-child>ul:last-of-type{margin-bottom:35px}#mec-advanced-wraper div:first-child>ul span{display:none}#mec-advanced-wraper div:first-child>ul *{display:inline-block;background:#fff;font-size:12px;color:#717273;text-align:center}#mec-advanced-wraper div:first-child>ul>li{width:60px;font-weight:700;margin:0 10px 0 0;padding:4px 0;border-right:1px solid #cfeff5}#mec-advanced-wraper div:first-child>ul>ul>li{margin:0;padding:2px 10px;cursor:pointer;border-radius:2px;transition:all .18s ease}.mec-fes-form #mec-advanced-wraper div:first-child>ul>ul>li.mec-active,.mec-fes-form #mec-advanced-wraper div:first-child>ul>ul>li:hover{background:#40d9f1!important;box-shadow:0 1px 9px -3px #40d9f1;color:#fff!important}.mec-search-bar-wrap .mec-search-form .mec-text-input-search{width:83%}.mec-search-bar-wrap .mec-search-form .mec-ajax-search-result .mec-text-input-search{width:100%;float:none}.mec-search-bar-wrap input#mec-search-bar-input{width:calc(100% - 84%);margin-left:11px;background:#40d9f1;Color:#fff;font-weight:400}.mec-text-input-search+input#mec-search-bar-input{margin-left:-3px}.mec-search-bar-wrap input#mec-search-bar-input:hover{background:#000}.mec-wrap.mec-search-bar-wrap .mec-totalcal-box input{float:none}@media(max-width:768px){.mec-search-bar-wrap .mec-search-form .mec-text-input-search{display:inline-block}}@media(max-width:480px){.mec-search-bar-wrap .mec-search-form .mec-text-input-search{width:64%}.mec-search-bar-wrap input#mec-search-bar-input{width:calc(100% - 67%)}}.mec-wrap.mec-search-bar-wrap .mec-totalcal-box{overflow:visible}.mec-ajax-search-result{position:relative}.mec-search-bar-wrap.mec-wrap .mec-totalcal-box input[type=text]{width:calc(100% - 36px)}.mec-search-bar-wrap.mec-wrap .mec-totalcal-box input[type=text]:focus{border-color:#efefef}div#mec-ajax-search-result-wrap{position:absolute;top:100%;opacity:0;visibility:hidden;width:calc(100% - 2px);min-height:50px;left:0;right:0;padding:0 10px;z-index:9999;transition:all .3s ease}.mec-ajax-search-result-events{background:#fff;padding:10px 20px;border:1px solid #efefef;border-top:none}.mec-ajax-search-result-events article:first-of-type{border:none}article.mec-search-bar-result{text-align:left;margin-bottom:0;padding-bottom:25px;padding-top:26px;border-top:1px solid #efefef;transition:all .33s ease;clear:both}.mec-search-bar-result .mec-event-list-search-bar-date{width:64px;height:64px;margin-right:10px;font-size:11px;text-transform:uppercase;float:left;text-align:center;padding-top:2px}.mec-search-bar-result .mec-event-list-search-bar-date span{font-size:40px;line-height:30px;font-weight:700;display:block;margin-bottom:6px;letter-spacing:1px}.mec-search-bar-result .mec-event-image{float:left;margin-right:20px;width:65px;height:auto}.mec-search-bar-result .mec-event-time{font-size:11px;line-height:1.1;margin:0}.mec-search-bar-result .mec-event-time i{color:#40d9f1;float:none;width:unset;height:unset;font-size:inherit;margin-right:3px;border:none;padding:0}.mec-search-bar-result .mec-event-title{font-size:13px;padding:0;margin:10px 0 8px;font-weight:700;text-transform:uppercase}.mec-search-bar-result .mec-event-title a{text-decoration:none;color:#494949;transition:color .3s ease}.mec-search-bar-result .mec-event-detail{font-size:13px;line-height:1.3;font-family:Roboto,sans-serif;color:#9a9a9a;margin-bottom:0}.mec-wrap.mec-modern-search-bar .mec-totalcal-box{background:rgba(255,255,255,.87);border:none;padding:35px;border-radius:3px;box-shadow:0 3px 13px rgba(0,0,0,.4);position:relative}.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=search],.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=text]{height:58px;background:rgba(255,255,255,.99);border-radius:2px;box-shadow:0 4px 8px rgba(0,0,0,.1) inset;border:1px solid #ccc;width:100%;padding-left:45px;padding-right:13px;font-size:16px}.mec-wrap.mec-modern-search-bar .mec-totalcal-box .mec-text-input-search i{position:absolute;background:0 0;border:none;font-size:21px;left:15px;top:calc(50% - 19px);color:#40d9f1}.mec-wrap.mec-modern-search-bar .mec-text-input-search{position:relative;height:58px}.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=submit]{height:58px;border:none;border-radius:2px;background:#fc4a1a;font-size:17px;font-weight:700!important}.mec-wrap.mec-modern-search-bar .mec-text-input-search+input#mec-search-bar-input{margin-left:0}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{height:45px;background:rgba(255,255,255,.99);border-radius:2px;box-shadow:0 4px 8px rgba(0,0,0,.1) inset;border:1px solid #ccc;padding-right:13px;font-size:16px;border-left:0}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap i{height:45px;background:#ffff;border-radius:2px 0 0 2px;box-shadow:none;border:1px solid #ccc;font-size:15px;padding-top:14px;border-right:0;color:#40d9f1;margin-right:-1px}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap{min-height:64px}@media(max-width:768px){.mec-wrap.mec-modern-search-bar .mec-search-form .mec-text-input-search{width:70%}.mec-wrap.mec-modern-search-bar input#mec-search-bar-input{width:calc(100% - 72%)}}@media(max-width:480px){.mec-wrap.mec-modern-search-bar input#mec-search-bar-input{width:92%;padding:0 10px;position:relative;display:block;margin-left:11px}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-text-input-search{width:100%;margin-bottom:20px}.mec-wrap.mec-modern-search-bar .mec-text-input-search+input#mec-search-bar-input{margin-left:10px}}.mec-related-events{margin-right:-15px;margin-left:-15px}.mec-related-events-wrap{margin-top:50px}.mec-related-events-wrap h3.mec-rec-events-title:before{content:"";background:#2c2f34;width:46px;height:4px;position:absolute;top:59px;left:0}.mec-related-events-wrap h3.mec-rec-events-title{font-size:21px;font-weight:600;padding:17px 0;margin-bottom:28px;text-transform:uppercase;border-bottom:1px solid #e8e8e8;position:relative}.mec-related-event-post figure{margin:0}.mec-related-event-post figure img{width:100%}.mec-related-event-content{background-color:#fff;margin:-27px 30px 15px;position:relative;max-width:90%;padding:13px 21px 16px 19px}.mec-related-event-content h5 a{font-size:16px;color:#121212;font-weight:600;transition:all .3s ease}.mec-fes-form-cntt #mec-organizer-payments ul{list-style:none;background:0 0;margin:0}.mec-fes-form-cntt #mec-organizer-payments ul li h4{background:0 0;letter-spacing:.2px;display:inline-block;padding-left:0!important;padding-bottom:10px!important;margin:0;margin-bottom:1px;letter-spacing:1px;text-transform:capitalize;padding-top:1px}.mec-fes-form-cntt #mec-organizer-payments ul>li{width:100%;display:inline-block;vertical-align:top;padding:0;margin:0}#mec-login-form.mec-login-form{width:100%;background:#fff;padding:20px;margin:0 auto;text-align:center;position:relative}#mec-login-form.mec-login-form .mec-login-input{display:block;width:286px;margin:0 auto;margin-bottom:12px}#mec-login-form.mec-login-form .mec-login-forgotpassword{display:inline-block}.mec-login-forgotpassword a{color:#000}#mec-login-form.mec-login-form .mec-login-submit{float:right;text-align:right;width:49%;padding-right:2px}#mec-login-form.mec-login-form .mec-login-input input{border:none;box-shadow:none;background:#fff;color:#ccc;border-left:1px solid #e6e6e6;padding:0;height:100%;background-image:none!important;padding-left:10px;padding-right:0;width:222px;margin-left:0;clear:none;float:left}#mec-login-form.mec-login-form .mec-login-input label{border:1px solid #e6e6e6;height:52px;display:inline-block;padding:0;border-radius:3px;overflow:hidden;box-shadow:0 2px 4px rgba(0,0,0,.04)}#mec-login-form.mec-login-form .mec-login-input label i{padding:15px 13px 17px 16px;vertical-align:middle;font-size:20px;width:50px;color:#c5cad0;background:#fafafa;margin-right:0;float:left}#mec-login-form.mec-login-form .mec-login-forgotpassword{float:left;width:49%;text-align:left;padding-top:10px;font-size:13px;padding-left:2px}#mec-login-form.mec-login-form button{width:120px;height:44px;border:none;color:#fff;border-radius:3px;font-size:12px;font-weight:700;letter-spacing:1px;text-transform:uppercase;transition:all .22s ease;margin:0;min-width:unset}.mec-login-form button{box-shadow:0 4px 22px -7px #40d9f1;background-color:#40d9f1}#mec-login-form.mec-login-form button:hover{background:#222;box-shadow:0 3px 14px -4px #333}#mec-login-form.mec-login-form .mec-login-form-footer{width:286px;margin:0 auto;margin-top:20px;clear:both;position:relative;display:block;min-height:50px}#mec-login-form.mec-login-form .mec-ajax-login-loading{position:absolute;background:#ffffffc2;left:0;right:0;top:0;bottom:0}#mec-login-form.mec-login-form .lds-ripple{position:absolute;width:64px;height:64px;top:calc(50% - 23px);left:calc(50% - 23px)}#mec-login-form.mec-login-form .lds-ripple div{position:absolute;border:4px solid #40d9f1;opacity:1;border-radius:50%;animation:lds-ripple 1.2s cubic-bezier(0,.2,.1,.8) infinite}#mec-login-form.mec-login-form .lds-ripple div:nth-child(2){animation-delay:-.5s}#mec-login-form.mec-login-form .mec-ajax-login-loading-text{position:absolute;min-width:200px;top:calc(50% - 18px);left:calc(50% - 124px);color:#fff;padding:10px 22px;border-radius:3px;background:#fff;height:47px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text strong{color:#3fcc60}#mec-login-form.mec-login-form .mec-ajax-login-loading-text strong:before{content:"";position:absolute;top:8px;left:1px;border-right:2px solid #3fcc60;border-bottom:2px solid #3acb5c;transform:rotate(45deg);transform-origin:0 100%;color:#000;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards;width:8px;height:14px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong:after{content:"";position:absolute;top:14px;left:5px;border-bottom:2px solid #ff5d39;transform:rotate(45deg);transform-origin:0 100%;color:#000;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards;width:14px;height:4px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong{color:#ff5d39}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong:before{border-color:#ff5d39;border-bottom:none}@keyframes lds-ripple{0%{top:28px;left:28px;width:0;height:0;opacity:1}100%{top:-1px;left:-1px;width:58px;height:58px;opacity:0}}.mec-book-form-gateway-checkout [id*=mec_do_transaction_stripe_] .mec-form-row:first-child{margin-bottom:20px}.mec-events-meta-group-booking .StripeElement{box-sizing:border-box;height:40px;padding:10px 12px;border:1px solid transparent;border-radius:4px;background-color:#fff;box-shadow:0 1px 3px 0 #e6ebf1;-webkit-transition:box-shadow 150ms ease;transition:box-shadow 150ms ease;margin-bottom:20px;background:#fff}.mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text]{box-sizing:border-box;height:40px;padding:10px 12px;border:0!important;border-radius:4px;background-color:#fff;box-shadow:0 1px 3px 0 #e6ebf1!important;-webkit-transition:box-shadow 150ms ease;transition:box-shadow 150ms ease;margin-bottom:20px;background:#fff!important}.mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text]:focus{outline:0}.mec-events-meta-group-booking .StripeElement--focus{box-shadow:0 1px 3px 0 #cfd7df}.mec-events-meta-group-booking .StripeElement--invalid{border-color:#fa755a}.mec-events-meta-group-booking .StripeElement--webkit-autofill{background-color:#fefde5!important}.mec-booking-tab-content .button,.mec-booking-tab-content .mec-bfixed-field-add-option,.mec-booking-tab-content .mec-reg-field-add-option,.mec-fes-form .mec-form-row .button:not(.wp-color-result),.mec-fes-form input[type=file],ul#mec_bfixed_form_fields li .mec_bfixed_field_remove,ul#mec_reg_form_fields li .mec_reg_field_remove{height:40px;margin-top:1px;text-decoration:none;font-size:14px;line-height:34px!important;margin:0;padding:0 15px 1px!important;text-transform:none;letter-spacing:0;font-weight:600;color:#40d9f1;background:#fff;border-radius:3px;margin-right:8px;border:2px solid #cfeff5;box-shadow:0 2px 6px -3px #cfeff5}.mec-booking-tab-content .button:hover,.mec-booking-tab-content .mec-bfixed-field-add-option:hover,.mec-booking-tab-content .mec-reg-field-add-option:hover,.mec-fes-form .mec-form-row .button:not(.wp-color-result):hover{background:#40d9f1;color:#fff;border-color:#40d9f1;box-shadow:0 2px 6px -3px #40d9f1}.mec-fes-form .mec-form-row input+button.button{vertical-align:top}.mec-fes-form .mec-form-row .quicktags-toolbar input.button.button-small{border-width:1px;padding:0 7px;color:#80c6d2;font-weight:400;margin:1px;transform:none}.mec-fes-form input[type=file]{max-width:166px;text-align:center;height:44px;transition:all .2s ease;border-radius:5px!important;border:2px dashed #b8e9f3}.mec-fes-form input[type=file]:hover{box-shadow:0 2px 16px -3px #cfeff5}.mec-fes-form input[type=file]::-webkit-file-upload-button{visibility:hidden;width:1px;height:38px}.mec-fes-form input[type=file]::-moz-file-upload-button{visibility:hidden;width:1px;height:38px}.mec-fes-form .mec-meta-box-fields>label{padding:0}#mec_bfixed_form_fields li,#mec_reg_form_fields li{list-style:none}ul#mec_bfixed_form_fields,ul#mec_reg_form_fields{padding:0;margin:0}ul#mec_bfixed_form_fields li,ul#mec_reg_form_fields li{background:#f8feff;margin:6px -20px;padding:15px 25px 10px;width:auto;font-size:13px;border-top:1px solid #e8fafd;border-bottom:1px solid #e8fafd;position:relative}ul#mec_bfixed_form_fields li .mec_bfixed_field_remove,ul#mec_reg_form_fields li .mec_reg_field_remove{position:absolute;right:10px;top:10px;margin:0;padding:6px 8px!important;font-size:11px;line-height:12px!important;min-height:10px;height:auto;display:block;cursor:pointer;color:#ea6485;border-color:#ffd2dd;letter-spacing:.4px}ul#mec_bfixed_form_fields li .mec_bfixed_field_remove:hover,ul#mec_reg_form_fields li .mec_reg_field_remove:hover{background:#ea6485;color:#fff;border-color:#ea6485;box-shadow:0 2px 6px -3px #ea6485}#mec_bfixed_form_fields input[type=checkbox],#mec_bfixed_form_fields input[type=radio],#mec_reg_form_fields input[type=checkbox],#mec_reg_form_fields input[type=radio],.mec-form-row input[type=checkbox],.mec-form-row input[type=radio]{background-color:#fff;border:1px solid #cfeff5;box-shadow:0 1px 3px -1px #cfeff5;padding:9px;border-radius:3px;min-width:24px;min-height:24px;display:inline-block!important;vertical-align:middle;float:none;transition:all .18s ease;outline:0;margin:1px 4px 4px 0;text-align:left;cursor:pointer;-webkit-appearance:none;-moz-appearance:none}#mec_bfixed_form_fields input[type=checkbox]:focus,#mec_bfixed_form_fields input[type=radio]:focus,#mec_reg_form_fields input[type=checkbox]:focus,#mec_reg_form_fields input[type=radio]:focus,.mec-form-row input[type=checkbox]:focus,.mec-form-row input[type=radio]:focus{outline:0}#mec_bfixed_form_fields input[type=radio],#mec_reg_form_fields input[type=radio],.mec-form-row input[type=radio]{-webkit-appearance:none;border-radius:20px!important;min-width:20px;min-height:20px;margin:0 0 4px 0;vertical-align:middle}#mec_bfixed_form_fields input[type=checkbox]:hover,#mec_bfixed_form_fields input[type=radio]:hover,#mec_reg_form_fields input[type=checkbox]:hover,#mec_reg_form_fields input[type=radio]:hover,.mec-form-row input[type=checkbox]:hover,.mec-form-row input[type=radio]:hover{border-color:#40d9f1}#mec_bfixed_form_fields input[type=checkbox]:checked,#mec_bfixed_form_fields input[type=radio]:checked,#mec_reg_form_fields input[type=checkbox]:checked,#mec_reg_form_fields input[type=radio]:checked,.mec-fes-form .mec-form-row input[type=checkbox]:checked,.mec-fes-form .mec-form-row input[type=radio]:checked{box-shadow:0 1px 6px -2px #40d9f1;border-color:#40d9f1;background:#40d9f1!important;border-radius:2px;position:relative}.mec-form-row input[type=radio]:checked{box-shadow:0 1px 6px -2px #40d9f1,inset 0 0 0 3px #fff!important}#mec_bfixed_form_fields input[type=checkbox]:checked::before,#mec_reg_form_fields input[type=checkbox]:checked::before,.mec-form-row input[type=checkbox]:checked:before{content:"";font:normal;position:absolute;top:12px;left:5px;margin:0;vertical-align:middle;line-height:1;border-right:2px solid #fff!important;border-bottom:2px solid #fff!important;transform:rotate(45deg);transform-origin:0 100%;color:#fff;transition:all .2s ease;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards}@keyframes checkbox-check{0%{width:0;height:0;border-color:#fff;transform:translate3d(0,0,0) rotate(45deg)}33%{width:6px;height:0;transform:translate3d(0,0,0) rotate(45deg)}100%{width:6px;height:12px;border-color:#fff;transform:translate3d(0,-12px,0) rotate(45deg)}}#wrap #mec-event-data input[type=radio]{position:relative}#wrap #mec-event-data input[type=radio]:empty::before{display:none}#mec_bfixed_form_field_types .button,#mec_reg_form_field_types .button{position:relative;outline:0;border-radius:50px;padding:2px 21px 2px 31px!important;line-height:1;font-size:11px;font-weight:600;color:#40d9f1;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 2px 6px -3px #40d9f1;border:2px solid #cfeff5}#mec_fes_location_remove_image_button,#mec_fes_organizer_remove_image_button,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button,#mec_meta_box_tickets_form [id^=mec_ticket_row] button,#mec_reg_form_field_types .button.red{color:#ea6485;box-shadow:0 2px 6px -3px #ea6485;background:#fff;border-color:#ffd2dd}#mec_fes_location_remove_image_button:hover,#mec_fes_organizer_remove_image_button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button:hover,#mec_meta_box_tickets_form [id^=mec_ticket_row] button:hover,#mec_reg_form_field_types .button.red:hover{background:#ea6485;color:#fff}#mec_bfixed_form_field_types .button:before,#mec_reg_form_field_types .button:before{position:absolute;left:12px;color:#40d9f1;content:"\e095";font-family:simple-line-icons;font-size:13px;display:inline-block}#mec_reg_form_field_types .button.red:before{color:#ea6485}#mec_bfixed_form_field_types .button:hover:before,#mec_reg_form_field_types .button.red:hover:before,#mec_reg_form_field_types .button:hover:before{color:#fff}#mec_fes_location_remove_image_button:hover,#mec_fes_organizer_remove_image_button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button:hover,#mec_meta_box_tickets_form [id^=mec_ticket_row] button:hover,#mec_price_per_dates_container .button:hover,#mec_reg_form_field_types .button.red:hover{color:#fff;border:2px solid #ea6485}#mec_taxes_fees_container_toggle [id^=mec_remove_fee_button],#mec_ticket_variations_list [id^=mec_remove_ticket_variation_button]{color:#ea6485;border-color:#ffd2dd}#mec_taxes_fees_container_toggle [id^=mec_remove_fee_button]:hover,#mec_ticket_variations_list [id^=mec_remove_ticket_variation_button]:hover{color:#fff;border:2px solid #ea6485;background:#ea6485}#mec_fees_list [id^=mec_remove_fee_button],#mec_meta_box_ticket_variations_form .mec-form-row [id^=mec_remove_ticket_variation_button]{margin-left:14px!important}#mec_meta_box_hourly_schedule_days .mec-add-hourly-schedule-button{line-height:10px!important}#mec_meta_box_tickets_form [id^=mec_ticket_row] .mec_add_price_date_button{color:#40d9f1;box-shadow:0 2px 6px -3px #40d9f1;border:2px solid #cfeff5}#mec_meta_box_tickets_form [id^=mec_ticket_row] .mec_add_price_date_button:hover,#mec_reg_form_field_types .button:hover{color:#fff;border:2px solid #40d9f1;background:#40d9f1}.mec-fes-form #mec_bfixed_form_fields span.mec_bfixed_field_sort,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_sort{font-size:0;color:#fff;padding-left:20px}.mec-fes-form #mec_bfixed_form_fields .mec_bfixed_field_option_sort,.mec-fes-form #mec_reg_form_fields .mec_reg_field_options,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_option_sort{font-size:0}.mec-fes-form #mec_bfixed_form_fields span.mec_bfixed_field_option_sort:before,.mec-fes-form #mec_bfixed_form_fields span.mec_bfixed_field_sort:before,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_option_sort:before,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_options:before,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_sort:before{position:absolute;left:px;top:12px;width:80px;height:20px;display:block;cursor:move;font-family:simple-line-icons;content:"\e023";font-size:18px;color:#888}.mec-fes-form #mec_bfixed_form_fields span.mec_bfixed_field_option_sort:before,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_option_sort:before,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_options:before{font-size:13px;left:2px;top:26px;width:14px;height:14px}.mec-fes-form #mec_bfixed_form_fields .mec_bfixed_field_options,.mec-fes-form #mec_reg_form_fields .mec_reg_field_options{margin-top:20px}.mec-fes-form #mec_fes_form #mec_bfixed_form_fields .mec_bfixed_notification_placeholder{font-size:0}.mec-form-row input+span.mec-tooltip,.mec-form-row select+span.mec-tooltip{bottom:10px}.mec-form-row label+span.mec-tooltip{bottom:8px}.mec-form-row textarea+span.mec-tooltip{bottom:auto;vertical-align:top;top:12px}.mec-form-row span+span.mec-tooltip{bottom:0;vertical-align:middle}.mec-form-row .mec-col-8 input[type=text],.mec-form-row .mec-col-8 select,.mec-form-row .mec-col-8 span.mec-archive-skins{vertical-align:top}.mec-form-row input:disabled{opacity:.6;background:#f6f6f6}.mec-form-row p{font-size:12px!important;line-height:18px!important;color:#97b2bb!important}.mec-form-row p.description{font-style:italic}.ui-datepicker.ui-widget{border:1px solid #e8e8e8;box-shadow:0 1px 9px rgba(0,0,0,.12);font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif}table.ui-datepicker-calendar{margin-bottom:0}.ui-datepicker-calendar th{font-weight:700;color:#4a4b4c}.ui-datepicker-calendar td,.ui-datepicker-calendar th,.ui-datepicker-calendar tr{border:none}.ui-datepicker.ui-widget select{font-weight:600;font-size:12px;display:inline-block;border-radius:2px;padding:2px 10px;margin:5px 3px;width:auto;min-height:20px;height:26px;border:1px solid #e3e3e3;box-shadow:inset 0 1px 3px rgba(0,0,0,.04)}.ui-datepicker.ui-widget table{border-spacing:2px;border:none}.ui-datepicker.ui-widget td,.ui-datepicker.ui-widget tr{padding:0;background:0 0!important}.ui-datepicker.ui-widget td a{color:#9a9b9c;font-weight:600;width:30px;height:30px;line-height:30px;display:inline-block;border-radius:33px;padding:0;background:#fff;transition:all .2s ease}.ui-datepicker.ui-widget td a.ui-state-active,.ui-datepicker.ui-widget td a:hover{background:#40d9f1;color:#fff}.ui-datepicker.ui-widget .ui-datepicker-next,.ui-datepicker.ui-widget .ui-datepicker-prev{color:#40d9f1;width:30px;height:30px;line-height:30px;display:inline-block;text-align:center;border-radius:33px;background:#ecfcff;transition:all .2s ease}.ui-datepicker.ui-widget .ui-datepicker-next:hover,.ui-datepicker.ui-widget .ui-datepicker-prev:hover{background:#fff;box-shadow:0 0 7px -3px rgba(0,0,0,.4)}.mec-fes-form .mec-tooltip .dashicons-before:before{color:#40d9f1}.mec-fes-form button[type=submit].mec-fes-sub-button{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;border-radius:3px;background:#40d9f1;color:#fff;height:54px;font-size:17px;font-weight:700;box-shadow:0 2px 8px -4px #40d9f1;display:block;transition:all .28s ease;text-transform:uppercase;margin:20px 0 0;padding:14px 20px;border:0;cursor:pointer;text-align:center;letter-spacing:.1em;line-height:1}.mec-fes-form button[type=submit].mec-fes-sub-button:hover{box-shadow:0 2px 12px -2px #40d9f1}.mec-fes-form button[type=submit].mec-fes-sub-button:focus{margin-bottom:-2px;background:#1dc2dc}.mec-fes-form .mec-title span.mec-dashicons{color:#40d9f1;float:left;margin-right:5px}.mec-fes-form .mec-tooltip .box h5{padding:14px 2px}#mec_fes_form,.mec-fes-form-top-actions{max-width:838px;margin:0 auto}@media only screen and (min-width:961px){.mec-fes-form .mec-fes-form-cntt{width:calc(100% - 300px);float:left;padding-right:20px;max-width:538px;display:block}.mec-fes-form .mec-fes-form-sdbr{width:300px}}.mec-fes-form .quicktags-toolbar,.mec-fes-form div.mce-toolbar-grp{background:#ecfcff;border-bottom:1px solid #cfeff5;box-shadow:0 1px 0 1px #cfeff5}.mec-fes-form .quicktags-toolbar{margin-right:-1px;border-top:1px solid #cfeff5}.mec-fes-form div.mce-statusbar{border-top-color:#cfeff5}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-listbox{border:1px solid #cfeff5;border-radius:3px}.mec-fes-form .mce-tinymce.mce-container.mce-panel{border:1px solid #cfeff5;box-shadow:0 2px 6px -3px #cfeff5;border-radius:2px 0 2px 2px}.mec-fes-form .wp-editor-tools .wp-media-buttons{transform:translateY(-6px);margin-top:-6px}.mec-fes-form .wp-editor-tabs{padding-right:0;margin-right:-2px}.mec-fes-form .wp-editor-tabs .wp-switch-editor{border-radius:3px 3px 0 0;border-color:#cfeff5;background:#fff;color:#96b8bd;border-bottom:1px solid #ecfcff}.mec-fes-form .html-active .switch-html,.mec-fes-form .tmce-active .switch-tmce,.mec-fes-form .wp-editor-tabs .wp-switch-editor:active{background:#ecfcff;color:#40d9f1}.mec-fes-form .wp-editor-container,.mec-fes-form div.mce-edit-area.mce-panel{border:none;box-shadow:none}.mec-fes-form .wp-editor-container textarea.wp-editor-area{max-width:100%}.mec-fes-form .mce-toolbar .mce-listbox button{font-size:12px;line-height:22px;color:#798f96}.mec-fes-form .mce-toolbar .mce-ico{color:#627f88}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-active,.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn:active,.mec-fes-form .qt-dfw.active{background:#fff;border-color:#40d9f1;box-shadow:inset 0 2px 6px -3px rgba(106,231,255,.7)}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-active .mce-ico{color:#40d9f1}body .mce-menu .mce-menu-item.mce-active.mce-menu-item-normal,body .mce-menu .mce-menu-item.mce-selected,body .mce-menu .mce-menu-item:focus,body .mce-menu .mce-menu-item:hover,body.mce-menu .mce-menu-item.mce-active.mce-menu-item-preview{background:#40d9f1;color:#fff}.mec-fes-form .mec-not-in-days-day{display:inline-block;padding:4px 32px 4px 15px;border-radius:33px;border:1px solid #cfeff5;box-shadow:0 1px 3px -1px #cfeff5;background:#fbfeff;color:#40d9f1;vertical-align:top}.mec-fes-form .mec-not-in-days-remove{display:inline-block;padding:0 1px 0 0;margin-left:-30px;vertical-align:sub;background:#ff918a;color:#fff;font-family:cursive;width:21px;height:21px;line-height:17px;text-align:center;border-radius:20px;cursor:pointer}.mec-fes-list ul li .mec-event-status{float:left;margin-right:10px;margin-left:0;font-size:11px;font-weight:400;letter-spacing:.3px;border-radius:3px;padding:4px 8px}.mec-fes-form .post-status.mec-book-confirmed:before,.mec-fes-list ul li .mec-event-status.mec-book-confirmed:before{content:"";margin:0;vertical-align:middle;line-height:1;border-right:2px solid #fff!important;border-bottom:2px solid #fff!important;transform:rotate(45deg);color:#fff;width:6px;height:12px;float:left;margin-right:6px}.mec-fes-list ul li .mec-fes-event-export a:before,.mec-fes-list ul li .mec-fes-event-remove:before,.mec-fes-list ul li .mec-fes-event-view a:before,.mec-fes-list-top-actions a:before{content:"\e054";font-family:simple-line-icons;font-size:13px;vertical-align:middle}.mec-fes-list ul li .mec-fes-event-view a:before{content:"\e087"}.mec-fes-list-top-actions a:before{content:"\e095";font-weight:400;margin-right:6px}.mec-fes-list ul li .mec-fes-event-export a:before{content:"\e083"}.mec-fes-form .post-status{border-radius:20px}.mec-fes-form .post-status.mec-book-confirmed:before{height:20px;width:9px;margin:3px 10px}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker-calendar th{height:auto;padding:0}.ui-datepicker .ui-datepicker-calendar td a,.ui-datepicker-calendar th{font-size:14px;line-height:30px}.mec-fes-form .description{font-size:16px}.mec-fes-form input[type=file]{text-align:left}.mec-fes-export-wrapper{width:640px;background:#f8feff;padding:40px 25px}.mec-fes-export-wrapper .mec-fes-btn-date{font-size:16px;line-height:44px;overflow:hidden}.mec-fes-export-wrapper .date-messgae{font-family:sans-serif;padding:2px 18px}.mec-fes-list ul li .mec-event-export-csv,.mec-fes-list ul li .mec-event-export-excel{font-size:12px;border:1px solid #40d9f1;padding:1px 4px;background:rgba(141,229,243,.18);border-radius:4px;color:#40d9f1;font-family:sans-serif;cursor:pointer;display:inline-block;height:26px;line-height:22px}.mec-export-badge{font-size:11px;color:#40d9f1;width:auto;height:24px;line-height:25px;display:inline-block;padding:0 8px;text-align:center;border-radius:3px;background:#ecfcff;transition:all .2s ease}.mec-fes-list ul li .mec-fes-event-export{font-size:11px;background:#f7f7f7;float:right;margin-left:5px}.mec-fes-list ul li .mec-fes-event-export:hover{cursor:pointer;background:#90f0e0;border-color:#4dc8cc}.mec-fes-export-wrapper ul{padding:0;width:100%;text-align:center}.mec-fes-export-wrapper ul li{list-style:none;display:inline-block;width:30%;padding:10px 15px 10px 32px;border-radius:3px;margin-bottom:15px;border:1px solid #cfeff5;box-shadow:0 2px 6px -4px #cfeff5;background:#fff;line-height:normal;margin-right:10px;position:relative;cursor:pointer;font-size:13px;line-height:1;transition:all .2s ease}.mec-fes-export-wrapper ul li:nth-child(3n+0){margin-right:0}.mec-fes-export-wrapper ul li:hover{box-shadow:0 2px 16px -1px #c6e8ef}.mec-fes-export-wrapper ul li:before{content:"";position:absolute;display:inline-block;background:#fff;width:15px;height:15px;margin:-1px 0 0 5px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32);border-radius:50%;left:9px;top:calc(50% - 7px)}.mec-fes-export-wrapper ul li.fes-export-date-active{color:#40d9f1}.mec-fes-export-wrapper ul li.fes-export-date-active:before{width:15px;height:15px;border:6px solid #40d9f1;background:#fff;box-shadow:0 3px 16px -3px #40d9f1}.mec-fes-btn-export{margin-left:15px;margin-top:12px}.mec-fes-btn-export span{position:relative;border:none;border-radius:3px;color:#fff!important;display:inline-block;font-size:13px;line-height:1;text-transform:none;font-weight:400;text-decoration:none;cursor:pointer;margin-right:4px;line-height:1;letter-spacing:0;padding:15px 22px;background:#39c36e;box-shadow:0 1px 7px -3px #39c36e!important;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;cursor:pointer;margin-left:6px}.mec-fes-btn-export span:hover{background:#222}.mec-event-export-excel:before,span.mec-event-export-csv:before{content:"\e083";font-family:simple-line-icons;font-size:13px;vertical-align:middle;margin-right:7px;margin-top:-1px;display:inline-block}.mec-fes-list .wn-p-t-right{min-width:170px;max-width:200px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#000;color:#fff;font-weight:400;font-size:14px;letter-spacing:.5px;line-height:1.5;position:absolute;z-index:99999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #535a61;visibility:hidden;opacity:0;transition:opacity .23s;padding:5px 10px 6px;border-radius:8px;text-align:center;font-style:normal}.mec-fes-list .mec-fes-event-export:hover .wn-p-t-right,.mec-fes-list .mec-fes-event-remove:hover .wn-p-t-right,.mec-fes-list .mec-fes-event-view:hover .wn-p-t-right{visibility:visible;opacity:1}.mec-fes-list .wn-p-t-right i{position:absolute!important;top:100%;right:50%;margin-top:-6px!important;margin-right:-6px!important;width:12px;height:24px;overflow:hidden;transform:rotate(-90deg)}.mec-fes-list .wn-p-t-right i:after{content:'';position:absolute;width:12px;height:12px;left:0;top:50%;transform:translate(50%,-50%) rotate(-45deg);background-color:#000;box-shadow:0 8px 9px -4px #535a61}.mec-fes-form .select2-container{min-height:38px;box-sizing:border-box;margin-bottom:8px;padding:0 6px;border-radius:2px;border:1px solid #ddd;box-shadow:inset 0 1px 6px rgba(0,0,0,.07);background-color:#fff;color:#32373c;outline:0;transition:50ms border-color ease-in-out;min-width:200px;font-size:14px}.mec-fes-form .select2-selection{border:none;background:0 0;padding-top:2px;width:100%;height:100%}.mec-fes-form .select2-container--default.select2-container--focus .select2-selection{border:none!important;outline:0}.mec-fes-form .select2-container--default .select2-selection--single .select2-selection__arrow{top:5px;right:4px}.select2-results{font-size:14px}.mec-fes-category-children,.mec-fes-category-children .mec-fes-category-children{padding-left:24px}.mec-wrap .mec-timeline-events-container a,.mec-wrap .mec-timeline-events-container div,.mec-wrap .mec-timeline-events-container h4,.mec-wrap .mec-timeline-events-container p,.mec-wrap .mec-timeline-events-container span{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important}.mec-timeline-events-container{margin-left:19px;padding-top:20px;padding-bottom:9px}.mec-events-timeline-wrap{position:relative;display:block;overflow:visible;padding-left:95px}.mec-events-timeline-wrap:before{width:1px;content:'';height:100%;position:absolute;background:#b8f5ff;left:95px}.mec-timeline-month-divider+.mec-timeline-events-container{padding-top:110px}.mec-timeline-right-content{float:right;width:300px}.mec-timeline-left-content{float:left;width:calc(100% - 300px);padding-left:15px;padding-right:15px;position:relative}.mec-timeline-month-divider{position:absolute;display:block;background:#fff;right:calc(100% - 95px);left:0;width:190px;text-align:center;border:1px solid #b8f5ff;border-radius:50px;font-size:15px;padding:12px 27px;color:#40d9f1}.mec-timeline-event-date{position:relative}.mec-timeline-events-container .mec-timeline-event-date:before{content:'';width:11px;height:11px;position:absolute;background:#40d9f1;border-radius:50px;top:8px;left:-24px;z-index:9}.mec-timeline-events-container .mec-timeline-event-date:after{content:'';width:21px;height:21px;position:absolute;background:rgba(64,217,241,.3);border-radius:50px;top:3px;left:-29px}.mec-timeline-event-date{float:left;width:17%;margin-top:27px}.mec-timeline-event-content{float:left;width:82%;background:#fff;box-shadow:0 10px 30px 0 rgba(0,0,0,.1);border-radius:10px;overflow:visible;position:relative}.mec-timeline-main-content{padding:23px 30px}.mec-timeline-main-content h4{margin-bottom:15px}.mec-timeline-main-content h4 a{font-size:25px;font-weight:700;color:#000;line-height:33px;text-decoration:none}.mec-timeline-main-content p{font-size:15px;color:#515151;line-height:24px;margin-bottom:36px}a.mec-timeline-readmore{width:100%;display:block;text-align:center;color:#fff;text-decoration:none;line-height:52px;font-size:17px;font-weight:700;-webkit-transition:all .2s ease;transition:all .2s ease;border-radius:0 0 10px 10px}a.mec-timeline-readmore:hover{background:#222;color:#fff}.mec-timeline-event-time .mec-time-details{display:inline-block;margin-left:7px;font-size:13px;line-height:13px;font-weight:500}.mec-timeline-event-time i{vertical-align:middle}.mec-timeline-event-time{background:rgba(64,217,241,.11);display:inline-block;padding:4px 20px 8px;border-radius:50px}.mec-timeline-event-location address{font-style:normal;margin-bottom:0}.mec-timeline-event-location address span{font-size:13px;font-weight:500;vertical-align:middle;margin-left:6px}.mec-timeline-event-location address i{font-size:17px;vertical-align:middle}.mec-timeline-event-location{background:rgba(64,217,241,.11);display:inline-block;padding:7px 20px 11px;border-radius:20px;line-height:1.24}.mec-timeline-event-details+.mec-timeline-event-details{margin-top:12px}.mec-timeline-event-content .col-md-4{padding:0}.mec-timeline-event-content:after{content:'';display:block;position:absolute;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-timeline-event-content:after{top:30px;border-color:transparent #fff transparent transparent;left:-10px}.mec-timeline-event-image img{border-radius:0 10px 0 0;width:100%}.mec-timeline-event-image a{display:block;line-height:0}a.mec-timeline-readmore i{vertical-align:middle;margin-left:10px;font-size:9px}.mec-wrap .mec-timeline-event-content a.mec-timeline-readmore:hover{background:#444}@media(min-width:1024px){.mec-timeline-event{margin:50px 0}}@media(max-width:1023px){.mec-timeline-event{margin:25px 0}.mec-events-timeline-wrap{padding-left:20px}.mec-events-timeline-wrap:before{left:20px}}@media (max-width:1200px) and (min-width:992px){.mec-timeline-event-content{width:81%}.mec-timeline-event-date{width:18%}}@media (max-width:992px){.mec-timeline-left-content,.mec-timeline-right-content{float:none;width:100%;text-align:center}.mec-timeline-right-content .mec-timeline-event-image{text-align:center}.mec-timeline-right-content .mec-timeline-event-image img{max-width:300px;border-radius:10px;margin-top:35px}}@media (max-width:440px){.mec-timeline-right-content .mec-timeline-event-image img{margin-top:0}}@media (max-width:320px){.mec-timeline-event-content,.mec-timeline-event-date{float:none;width:100%}.mec-timeline-event-date{margin-bottom:8px}.mec-timeline-event-content:after{display:none}.mec-timeline-main-content{padding:23px 0}.mec-timeline-main-content p{font-size:13px}.mec-timeline-main-content h4 a{font-size:23px;line-height:24px}.mec-time-details span{font-size:11px}.mec-timeline-event-location address span{font-size:12px}a.mec-timeline-readmore{line-height:44px;font-size:14px}}.mec-event-tile-view article.mec-tile-item{height:400px;margin:15px 0;border-radius:22px;padding:35px 25px;position:relative;color:#fff;background-size:cover!important;background-position:center!important;box-shadow:0 2px 9px rgba(0,0,0,.25);transition:all .22s ease}.mec-event-tile-view article.mec-tile-item:hover{box-shadow:0 4px 19px rgba(0,0,0,.5)}.mec-event-tile-view article.mec-tile-item div{position:relative;z-index:3}.mec-event-tile-view article.mec-tile-item:after,.mec-event-tile-view article.mec-tile-item:before{position:absolute;background:-moz-linear-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);background:-webkit-gradient(left top,right top,color-stop(0,rgba(0,0,0,.35)),color-stop(65%,rgba(0,0,0,.48)),color-stop(100%,rgba(0,0,0,.72)));background:-webkit-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);background:linear-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);content:"";left:0;right:0;bottom:0;top:0;width:100%;height:100%;display:block;border-radius:22px;z-index:1}.mec-event-tile-view article.mec-tile-item:after{background-color:inherit;background-image:none;top:35px;bottom:auto;height:40px;border-radius:0 3px 3px 0;width:97px;z-index:2;box-shadow:2px 1px 7px rgba(0,0,0,.1)}.mec-event-tile-view article.mec-tile-item .event-tile-view-head{padding:8px 3px;font-size:16px;font-weight:700;margin-bottom:50px;text-transform:uppercase}.mec-event-tile-view article.mec-tile-item .event-tile-view-head>div{display:inline}.mec-event-tile-view article.mec-tile-item .mec-event-time{color:#d6d6d6;font-size:15px;font-weight:400;line-height:1;padding-top:4px;position:absolute;right:1px;top:10px}.mec-event-tile-view article.mec-tile-item .mec-event-time i{vertical-align:baseline;font-size:14px;float:left}.mec-event-tile-view article.mec-tile-item i{margin-right:5px}.mec-event-tile-view article.mec-tile-item .mec-event-title{color:#fff;font-weight:700;font-size:23px;padding-top:12px}.mec-event-tile-view article.mec-tile-item .mec-event-title a{color:#fff}.mec-event-tile-view article.mec-tile-item .mec-event-title a:hover{text-decoration:underline}.mec-event-tile-view article.mec-tile-item .mec-event-content{position:absolute;bottom:25px;left:25px;right:25px}.mec-event-tile-view article.mec-label-canceled:before,.mec-event-tile-view article.mec-label-featured:before{height:auto}.mec-skin-tile-month-navigator-container{position:relative;text-align:center;font-size:12px;height:80px;background:#f7f7f7;padding:28px;border-radius:11px;margin-bottom:20px}.mec-skin-tile-month-navigator-container:after,.mec-skin-tile-month-navigator-container:before{content:'';display:block;position:absolute;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-skin-tile-month-navigator-container:after{bottom:-20px;border-color:#f7f7f7 transparent transparent transparent}.mec-skin-tile-month-navigator-container:before{bottom:-21px;border-color:#fff transparent transparent transparent}@media only screen and (max-width:480px){.mec-skin-tile-month-navigator-container{height:110px;padding-top:68px}}.mec-skin-tile-month-navigator-container h2{font-size:23px;font-weight:700}.mec-skin-tile-month-navigator-container .mec-next-month,.mec-skin-tile-month-navigator-container .mec-previous-month{position:absolute;top:28px;left:20px;cursor:pointer;padding:3px 12px;line-height:23px;background:#fff;border-radius:32px;box-shadow:0 1px 3px rgba(0,0,0,.02);transition:all .22s ease}.mec-skin-tile-month-navigator-container .mec-next-month{left:auto;right:20px}.mec-skin-tile-month-navigator-container .mec-next-month:hover,.mec-skin-tile-month-navigator-container .mec-previous-month:hover{box-shadow:0 2px 5px rgba(0,0,0,.1);color:#000}.mec-wrap .mec-event-tile-view article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view article.mec-label-featured:before{position:absolute;bottom:auto;text-align:center;right:auto;font-size:10px}.mec-event-tile-view article.mec-tile-item .mec-tile-overlay{position:absolute;background:-moz-linear-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);background:-webkit-gradient(left top,right top,color-stop(0,rgba(0,0,0,.35)),color-stop(65%,rgba(0,0,0,.48)),color-stop(100%,rgba(0,0,0,.72)));background:-webkit-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);background:linear-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);content:"";left:0;right:0;bottom:0;top:0;width:100%;height:100%;display:block;border-radius:22px;z-index:1}.mec-wrap .mec-event-tile-view .col-md-3 article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view .col-md-3 article.mec-label-featured:before{top:12px;left:103px;z-index:9}.mec-wrap .mec-event-tile-view .col-md-4 article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view .col-md-4 article.mec-label-featured:before{top:18px;left:125px}.mec-wrap .mec-event-tile-view .col-md-6 article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view .col-md-6 article.mec-label-featured:before{top:20px;left:200px}@media (max-width:960px){.mec-wrap .mec-event-tile-view .col-sm-3{width:50%}}@media (max-width:480px){.mec-wrap .mec-event-tile-view .col-sm-3{width:100%}}.mec-event-tile-view article.mec-tile-item.tile-multipleday-event:after{width:165px}.mec-event-tile-view .col-md-6.col-sm-6 article.mec-label-canceled:before{top:100px;left:140px}.mec-event-tile-view .col-md-4.col-sm-4 article.mec-label-canceled:before{top:20px;left:140px}@media (min-width:761px) and (max-width:1200px){.mec-event-tile-view .col-md-3.col-sm-3{width:50%}.mec-event-tile-view .col-md-6.col-sm-6 article.mec-label-canceled:before{top:80px;left:90px}.mec-event-tile-view .col-md-4.col-sm-4 article.mec-label-canceled:before{top:40px;left:70px}.mec-event-tile-view .col-md-3.col-sm-3 article.mec-label-canceled:before{top:90px;left:110px}}@media (min-width:761px) and (max-width:1024px){.mec-event-tile-view .col-md-4.col-sm-4{width:50%}.mec-event-tile-view .col-md-4.col-sm-4:nth-child(1n+3){width:100%}}@media (max-width:760px){.mec-event-tile-view .col-md-3.col-sm-3{width:100%}.mec-event-tile-view .col-md-4.col-sm-4{width:100%}}@media (max-width:480px){.mec-event-tile-view .col-md-6.col-sm-6 article.mec-label-canceled:before{top:100px;left:80px}}.mec-wrap .mec-cancellation-reason span,.mec-wrap .mec-labels-normal .mec-label-normal{position:relative;top:-3px;font-size:11px;font-weight:300;margin-left:10px;line-height:1.9;letter-spacing:1px;color:#fff;padding:2px 7px;border-radius:2px;white-space:nowrap}.mec-agenda-event-title .mec-labels-normal .mec-label-normal,.mec-timetable-event .mec-labels-normal .mec-label-normal,.tooltipster-box .mec-labels-normal .mec-label-normal{font-size:9px;letter-spacing:.5px;text-transform:uppercase;padding:2px 7px;color:#fff;position:relative;margin-left:5px;border-radius:2px;top:0}.mec-av-spot .mec-labels-normal .mec-label-normal,.mec-event-countdown-part1 .mec-labels-normal .mec-label-normal,.mec-event-countdown-part2 .mec-labels-normal .mec-label-normal,.mec-event-cover-modern .mec-labels-normal .mec-label-normal,.mec-masonry-content .mec-labels-normal .mec-label-normal,.mec-owl-carousel:not(.mec-slider-t1) .mec-labels-normal .mec-label-normal,.mec-tile-item .mec-labels-normal .mec-label-normal,.mec-timeline-event .mec-labels-normal .mec-label-normal,.tooltipster-box .mec-labels-normal .mec-label-normal{margin:0 5px 0 0}.mec-event-countdown-style3 .mec-labels-normal .mec-label-normal{margin:0 0 0 5px}.mec-event-footer-carousel-type3 .mec-labels-normal .mec-label-normal{display:inline}.mec-event-carousel-type4 .mec-fc-style{display:none}.mec-event-carousel-type4 .mec-labels-normal{top:-20px;position:relative}.mec-wrap .mec-cancellation-reason{display:inline-block}.mec-wrap .mec-cancellation-reason span{line-height:1.3;background:#eb3450;text-transform:none;display:inline-block;white-space:nowrap}.mec-wrap .mec-event-list-accordion .mec-cancellation-reason span,.mec-wrap .mec-event-list-accordion .mec-labels-normal .mec-label-normal{top:7px}.mec-agenda-event-title .mec-cancellation-reason span,.mec-timetable-event .mec-cancellation-reason span,.tooltipster-box .mec-cancellation-reason span{font-size:9px;letter-spacing:.5px;text-transform:uppercase;padding:2px 7px;color:#fff;position:relative;margin-left:5px;border-radius:2px;top:0}.mec-wrap .mec-event-container-novel .mec-cancellation-reason span,.mec-wrap .mec-event-container-novel .mec-labels-normal .mec-label-normal{white-space:inherit;margin-left:0}.mec-wrap .mec-event-container-simple .mec-cancellation-reason span,.mec-wrap .mec-event-container-simple .mec-labels-normal .mec-label-normal{top:-12px;white-space:inherit;margin-left:0}.mec-av-spot .mec-cancellation-reason span,.mec-event-countdown-part1 .mec-cancellation-reason span,.mec-event-countdown-part2 .mec-cancellation-reason span,.mec-event-cover-modern .mec-cancellation-reason span,.mec-masonry-content .mec-cancellation-reason span,.mec-owl-carousel:not(.mec-slider-t1) .mec-cancellation-reason span,.mec-tile-item .mec-cancellation-reason span,.mec-timeline-event .mec-cancellation-reason span,.tooltipster-box .mec-cancellation-reason span{margin:0 5px 0 0}.mec-owl-carousel .mec-event-footer-carousel-type3 span.mec-labels-normal{margin-top:0}.mec-wrap .mec-single-event .mec-cancellation-reason span{margin:0;padding:6px 12px;font-size:14px;font-weight:700}.featherlight-content .mec-cancellation-reason{display:block;width:100%;text-align:center;margin-top:20px;margin-bottom:-10px}.mec-event-data-fields{margin-bottom:30px}.mec-event-data-fields ul.mec-event-data-field-items{overflow:hidden;padding-top:10px;padding-left:0}.mec-event-data-fields .mec-event-data-field-item{list-style:none;margin-bottom:10px;border-bottom:1px dashed #e3e3e3;padding-bottom:7px;width:50%;float:left}.mec-event-data-fields .mec-event-data-field-item .mec-event-data-field-value{margin:0 0 20px 0;color:#616161;font-size:14px;line-height:1.8}.mec-event-data-fields .mec-event-data-field-item:last-child{border:none;width:100%}.mec-event-data-fields .mec-event-data-field-item .mec-event-data-field-name{text-transform:none;font-size:13px;font-weight:600;padding-bottom:5px;color:#313131;width:100%;padding-bottom:10px;position:relative;letter-spacing:-.2px}@media (max-width:768px){.mec-event-data-fields .mec-event-data-field-item{width:100%}}.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-modal-preloader,.mec-dark-mode .mec-month-navigator-loading{background-color:rgba(40,40,40,.88)}.mec-dark-mode .event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button,.mec-dark-mode .mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt,.mec-dark-mode .mec-calendar .mec-calendar-row dt:hover,.mec-dark-mode .mec-event-footer .mec-booking-button,.mec-dark-mode .mec-event-grid-classic .mec-event-content,.mec-dark-mode .mec-event-schedule-content .mec-schedule-speakers,.mec-dark-mode .mec-events-meta-group-tags a:hover,.mec-dark-mode .mec-events-toggle .mec-toggle-content .mec-modal-wrap,.mec-dark-mode .mec-fes-form .mec-meta-box-fields,.mec-dark-mode .mec-hourly-schedule-speaker-contact-information a i,.mec-dark-mode .mec-map-view-event-detail.mec-event-detail,.mec-dark-mode .mec-next-event-details a,.mec-dark-mode .mec-single-event .mec-event-exporting .mec-export-details a:hover,.mec-dark-mode .mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-dark-mode .mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev,.mec-dark-mode .mec-timetable-events-list .mec-timetable-event,.mec-dark-mode .mec-wrap .button,.mec-dark-mode .mec-wrap a.button:not(.owl-dot):hover,.mec-dark-mode .mec-wrap button:not(.owl-dot):hover,.mec-dark-mode .mec-wrap input[type=button]:hover,.mec-dark-mode .mec-wrap input[type=reset]:hover,.mec-dark-mode .mec-wrap input[type=submit]:hover{background-color:#1f1f1f;color:#d2d2d2}.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table,.mec-dark-mode .mec-skin-tile-month-navigator-container{background:#282828}.mec-dark-mode .mec-skin-tile-month-navigator-container:after{border-color:#282828 transparent transparent transparent}.mec-dark-mode .mec-event-grid-novel .mec-event-article,body.mec-dark-mode .mec-single-modern .mec-single-event-bar{background-color:#282828;color:#d2d2d2}.mec-dark-mode .event-carousel-type2-head,.mec-dark-mode .mec-box-calendar.mec-calendar .mec-calendar-table-head dt,.mec-dark-mode .mec-calendar .mec-calendar-side .mec-next-month,.mec-dark-mode .mec-calendar .mec-calendar-side .mec-previous-month,.mec-dark-mode .mec-calendar .mec-event-article:hover,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table a,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-prev,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-next-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-previous-month,.mec-dark-mode .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-event-article:hover,.mec-dark-mode .mec-calendar.mec-event-calendar-classic .mec-selected-day,.mec-dark-mode .mec-calendar.mec-event-calendar-classic dt.mec-selected-day:hover,.mec-dark-mode .mec-calendar.mec-yearly-calendar .mec-calendar-table-head dl dt,.mec-dark-mode .mec-event-carousel-content,.mec-dark-mode .mec-event-cost,.mec-dark-mode .mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button,.mec-dark-mode .mec-event-footer,.mec-dark-mode .mec-event-grid-classic .mec-event-content .mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-dark-mode .mec-event-list-minimal a.mec-detail-button,.mec-dark-mode .mec-event-list-modern .mec-btn-wrapper .mec-booking-button,.mec-dark-mode .mec-event-list-standard .mec-topsec,.mec-dark-mode .mec-event-more-info,.mec-dark-mode .mec-event-website,.mec-dark-mode .mec-events-agenda-wrap,.mec-dark-mode .mec-events-meta-date,.mec-dark-mode .mec-events-meta-group-tags a,.mec-dark-mode .mec-events-toggle .mec-toggle-item-inner,.mec-dark-mode .mec-fes-form,.mec-dark-mode .mec-fes-form input[type=email],.mec-dark-mode .mec-fes-form input[type=number],.mec-dark-mode .mec-fes-form input[type=password],.mec-dark-mode .mec-fes-form input[type=tel],.mec-dark-mode .mec-fes-form input[type=text],.mec-dark-mode .mec-fes-form select,.mec-dark-mode .mec-fes-form textarea,.mec-dark-mode .mec-fes-list,.mec-dark-mode .mec-hourly-schedule-speaker-info,.mec-dark-mode .mec-load-more-button,.mec-dark-mode .mec-map-lightbox-wp,.mec-dark-mode .mec-masonry-item-wrap .mec-event-grid-modern .event-grid-modern-head,.mec-dark-mode .mec-related-event-content,.mec-dark-mode .mec-single-event .mec-event-exporting .mec-export-details a,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=date],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=email],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=number],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=password],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=text],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking select,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking textarea,.mec-dark-mode .mec-single-event .mec-events-meta-group-countdown,.mec-dark-mode .mec-single-event .mec-frontbox,.mec-dark-mode .mec-single-event .mec-speakers-details ul li,.mec-dark-mode .mec-single-event-additional-organizers,.mec-dark-mode .mec-single-event-category,.mec-dark-mode .mec-single-event-date,.mec-dark-mode .mec-single-event-label,.mec-dark-mode .mec-single-event-location,.mec-dark-mode .mec-single-event-organizer,.mec-dark-mode .mec-single-event-time,.mec-dark-mode .mec-single-modern .col-md-4 .mec-frontbox,.mec-dark-mode .mec-slider-t1-wrap,.mec-dark-mode .mec-timetable-events-list .mec-timetable-event,.mec-dark-mode .mec-timetable-t2-wrap,.mec-dark-mode .mec-ttt2-title,.mec-dark-mode .mec-wrap .mec-event-countdown-style1,.mec-dark-mode .mec-wrap .mec-event-countdown-style2,.mec-dark-mode .mec-wrap .mec-totalcal-box,.mec-dark-mode .mec-wrap .mec-totalcal-box i,.mec-dark-mode .mec-wrap .mec-totalcal-box input,.mec-dark-mode .mec-wrap .mec-totalcal-box select,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year:hover,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year:hover,.mec-dark-mode.mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-dark-mode.mec-wrap .mec-totalcal-box i,.mec-dark-mode.mec-wrap .mec-totalcal-box input,.mec-dark-mode.mec-wrap .mec-totalcal-box select{background-color:#282828}.mec-dark-mode .event-carousel-type2-head,.mec-dark-mode .event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button,.mec-dark-mode .mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-dark-mode .mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month,.mec-dark-mode .mec-box-calendar.mec-calendar .mec-calendar-table-head dt,.mec-dark-mode .mec-box-calendar.mec-calendar dt,.mec-dark-mode .mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt,.mec-dark-mode .mec-breadcrumbs,.mec-dark-mode .mec-calendar .mec-calendar-side .mec-next-month,.mec-dark-mode .mec-calendar .mec-calendar-side .mec-previous-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table a,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-prev .mec-calendar.mec-calendar-daily .mec-calendar-a-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-next-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-previous-month,.mec-dark-mode .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec,.mec-dark-mode .mec-event-carousel-content,.mec-dark-mode .mec-event-footer,.mec-dark-mode .mec-event-footer .mec-booking-button,.mec-dark-mode .mec-event-list-minimal .mec-event-article,.mec-dark-mode .mec-event-list-minimal a.mec-detail-button,.mec-dark-mode .mec-event-list-modern .mec-btn-wrapper .mec-booking-button,.mec-dark-mode .mec-event-list-modern .mec-event-article,.mec-dark-mode .mec-event-list-standard .mec-event-article,.mec-dark-mode .mec-event-list-standard .mec-event-meta-wrap,.mec-dark-mode .mec-event-list-standard .mec-topsec,.mec-dark-mode .mec-event-schedule-content,.mec-dark-mode .mec-event-schedule-content dl:before,.mec-dark-mode .mec-events-agenda-wrap,.mec-dark-mode .mec-events-meta-group-booking ul.mec-book-price-details,.mec-dark-mode .mec-events-meta-group-booking ul.mec-book-price-details li,.mec-dark-mode .mec-events-meta-group-tags a,.mec-dark-mode .mec-events-toggle .mec-toggle-content,.mec-dark-mode .mec-events-toggle .mec-toggle-item,.mec-dark-mode .mec-events-toggle .mec-toggle-item-inner,.mec-dark-mode .mec-fes-form .mec-meta-box-fields,.mec-dark-mode .mec-fes-form input[type=email],.mec-dark-mode .mec-fes-form input[type=number],.mec-dark-mode .mec-fes-form input[type=password],.mec-dark-mode .mec-fes-form input[type=tel],.mec-dark-mode .mec-fes-form input[type=text],.mec-dark-mode .mec-fes-form select,.mec-dark-mode .mec-fes-form textarea,.mec-dark-mode .mec-hourly-schedule-speaker-info,.mec-dark-mode .mec-load-more-button,.mec-dark-mode .mec-masonry-item-wrap .mec-event-grid-modern .event-grid-modern-head,.mec-dark-mode .mec-next-event-details a,.mec-dark-mode .mec-related-events-wrap h3.mec-rec-events-title,.mec-dark-mode .mec-single-event .mec-event-exporting .mec-export-details a:hover,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking form>h4,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=date],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=email],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=number],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=password],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=text],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking select,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking textarea,.mec-dark-mode .mec-single-event .mec-events-meta-group-countdown,.mec-dark-mode .mec-single-event .mec-frontbox,.mec-dark-mode .mec-single-event .mec-frontbox-title,.mec-dark-mode .mec-timetable-t2-wrap,.mec-dark-mode .mec-wrap .mec-totalcal-box,.mec-dark-mode .mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-dark-mode .mec-wrap .mec-totalcal-box i,.mec-dark-mode .mec-wrap .mec-totalcal-box input,.mec-dark-mode .mec-wrap .mec-totalcal-box select,.mec-dark-mode .mec-yearly-view-wrap,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec{border-color:#353535}.mec-dark-mode .entry-content .mec-wrap h1,.mec-dark-mode .entry-content .mec-wrap h2,.mec-dark-mode .entry-content .mec-wrap h3,.mec-dark-mode .entry-content .mec-wrap h4,.mec-dark-mode .entry-content .mec-wrap h5,.mec-dark-mode .entry-content .mec-wrap h6,.mec-dark-mode .mec-breadcrumbs a,.mec-dark-mode .mec-calendar .mec-event-article .mec-event-title a,.mec-dark-mode .mec-calendar dt,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-has-event,.mec-dark-mode .mec-calendar.mec-event-container-simple dl dt.mec-calendar-day,.mec-dark-mode .mec-event-carousel-content .mec-event-carousel-title a,.mec-dark-mode .mec-event-content p,.mec-dark-mode .mec-event-grid-classic .mec-event-title a,.mec-dark-mode .mec-event-grid-clean .mec-event-title a,.mec-dark-mode .mec-event-grid-minimal .mec-event-date span,.mec-dark-mode .mec-event-grid-minimal .mec-event-title a,.mec-dark-mode .mec-event-grid-modern .mec-event-title a,.mec-dark-mode .mec-event-grid-simple .mec-event-title a,.mec-dark-mode .mec-event-list-classic .mec-event-title a,.mec-dark-mode .mec-event-list-minimal .mec-event-title a,.mec-dark-mode .mec-event-list-minimal a.mec-detail-button,.mec-dark-mode .mec-event-list-modern .mec-btn-wrapper .mec-booking-button,.mec-dark-mode .mec-event-list-standard .mec-event-title a,.mec-dark-mode .mec-events-meta-group-booking ul.mec-book-price-details li,.mec-dark-mode .mec-events-meta-group-booking ul.mec-book-price-details li span.mec-book-price-detail-amount,.mec-dark-mode .mec-events-meta-group-tags a,.mec-dark-mode .mec-events-toggle .mec-toggle-item-inner i,.mec-dark-mode .mec-fes-form,.mec-dark-mode .mec-fes-form input[type=email],.mec-dark-mode .mec-fes-form input[type=number],.mec-dark-mode .mec-fes-form input[type=password],.mec-dark-mode .mec-fes-form input[type=tel],.mec-dark-mode .mec-fes-form input[type=text],.mec-dark-mode .mec-fes-form label,.mec-dark-mode .mec-fes-form select,.mec-dark-mode .mec-fes-form textarea,.mec-dark-mode .mec-fes-list,.mec-dark-mode .mec-hourly-schedule-speaker-contact-information a i,.mec-dark-mode .mec-hourly-schedule-speaker-description,.mec-dark-mode .mec-hourly-schedule-speaker-name,.mec-dark-mode .mec-load-more-button,.mec-dark-mode .mec-next-event-details abbr,.mec-dark-mode .mec-related-event-content h5 a,.mec-dark-mode .mec-related-event-content span,.mec-dark-mode .mec-single-event .mec-event-meta dt,.mec-dark-mode .mec-single-event .mec-event-meta h3,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking form>h4,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking h5 span,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=date],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=email],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=number],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=password],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=text],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking label,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking select,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking textarea,.mec-dark-mode .mec-single-event .mec-frontbox-title,.mec-dark-mode .mec-single-event .mec-speakers-details ul li .mec-speaker-job-title,.mec-dark-mode .mec-single-modern .mec-single-event-bar>div h3,.mec-dark-mode .mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-dark-mode .mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev i,.mec-dark-mode .mec-timeline-main-content h4 a,.mec-dark-mode .mec-timetable-event .mec-timetable-event-time,.mec-dark-mode .mec-timetable-events-list .mec-timetable-event span a,.mec-dark-mode .mec-tooltip-event-title,.mec-dark-mode .mec-ttt2-title,.mec-dark-mode .mec-wrap,.mec-dark-mode .mec-wrap .mec-event-list-modern .mec-event-title a,.mec-dark-mode .mec-wrap .mec-event-schedule-content a,.mec-dark-mode .mec-wrap .mec-single-title,.mec-dark-mode .mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-dark-mode .mec-wrap .mec-totalcal-box input,.mec-dark-mode .mec-wrap .mec-totalcal-box select,.mec-dark-mode .mec-wrap h1,.mec-dark-mode .mec-wrap h2,.mec-dark-mode .mec-wrap h3,.mec-dark-mode .mec-wrap h4,.mec-dark-mode .mec-wrap h5,.mec-dark-mode .mec-wrap h6,.mec-dark-mode .mec-wrap p{color:#d2d2d2}.mec-dark-mode .mec-breadcrumbs a:hover,.mec-dark-mode .mec-calendar .mec-event-article .mec-event-title a:hover,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-has-event:hover,.mec-dark-mode .mec-event-footer .mec-booking-button:hover,.mec-dark-mode .mec-event-grid-classic .mec-event-title a:hover,.mec-dark-mode .mec-event-grid-minimal .mec-event-date:hover,.mec-dark-mode .mec-event-grid-minimal .mec-event-title a:hover,.mec-dark-mode .mec-event-list-classic .mec-event-title a:hover,.mec-dark-mode .mec-event-list-minimal .mec-event-title a:hover,.mec-dark-mode .mec-event-list-minimal a.mec-detail-button:hover,.mec-dark-mode .mec-event-list-modern .mec-btn-wrapper .mec-booking-button:hover,.mec-dark-mode .mec-event-list-standard .mec-event-title a:hover,.mec-dark-mode .mec-single-event .mec-event-meta dd a:hover,.mec-dark-mode .mec-wrap .mec-event-list-modern .mec-event-title a:hover,.mec-dark-mode .mec-wrap .mec-totalcal-box .mec-totalcal-view span:hover,.mec-dark-mode .mec-wrap a:hover{color:#fff}.mec-dark-mode .lity-container .mec-events-meta-group-booking input[type=radio]:before,.mec-dark-mode .mec-related-events-wrap h3.mec-rec-events-title:before,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=checkbox],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=radio]:before{background-color:#c4cace}.mec-dark-mode .lity-container .mec-events-meta-group-booking input[type=radio]:before,.mec-dark-mode .mec-month-divider span,.mec-dark-mode .mec-related-events-wrap h3.mec-rec-events-title:before,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=checkbox],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=radio]:before{border-color:#d2d2d2}.mec-dark-mode .event-carousel-type3-head .mec-event-footer-carousel-type3,.mec-dark-mode .mec-agenda-events-wrap,.mec-dark-mode .mec-av-spot .mec-av-spot-content,.mec-dark-mode .mec-av-spot .mec-av-spot-head,.mec-dark-mode .mec-av-spot-wrap .mec-event-grid-modern .event-grid-modern-head,.mec-dark-mode .mec-calendar .mec-calendar-side .mec-next-month:hover,.mec-dark-mode .mec-calendar .mec-calendar-side .mec-previous-month:hover,.mec-dark-mode .mec-calendar .mec-calendar-topsec,.mec-dark-mode .mec-calendar .mec-event-article:hover,.mec-dark-mode .mec-calendar dt,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-has-event:hover,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table a:hover,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-top,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-next-month:hover,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-previous-month:hover,.mec-dark-mode .mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:hover,.mec-dark-mode .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec,.mec-dark-mode .mec-event-cover-classic,.mec-dark-mode .mec-event-footer .mec-booking-button:hover,.mec-dark-mode .mec-event-grid-clean .mec-event-article,.mec-dark-mode .mec-event-grid-clean .mec-event-content,.mec-dark-mode .mec-event-grid-modern .mec-event-article,.mec-dark-mode .mec-event-grid-modern .mec-event-content,.mec-dark-mode .mec-event-list-minimal a.mec-detail-button:hover,.mec-dark-mode .mec-event-list-modern .mec-btn-wrapper .mec-booking-button:hover,.mec-dark-mode .mec-event-sharing-wrap .mec-event-sharing,.mec-dark-mode .mec-events-toggle .mec-toggle-item-inner:hover,.mec-dark-mode .mec-hourly-schedule-speaker-contact-information a:hover i,.mec-dark-mode .mec-masonry .mec-masonry-content,.mec-dark-mode .mec-masonry .mec-masonry-head,.mec-dark-mode .mec-slider-t1 .mec-slider-t1-content,.mec-dark-mode .mec-slider-t5 .mec-slider-t5-content,.mec-dark-mode .mec-slider-t5-wrap,.mec-dark-mode .mec-slider-t5-wrap .mec-event-grid-modern .event-grid-modern-head,.mec-dark-mode .mec-timeline-event-content,.mec-dark-mode .mec-timeline-month-divider,.mec-dark-mode .mec-timetable-events-list .mec-timetable-event:hover,.mec-dark-mode .mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3,.mec-dark-mode .mec-wrap .mec-totalcal-box,.mec-dark-mode .mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-calendar-sec,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year,.mec-dark-mode .tooltipster-sidetip .tooltipster-content{background:#191919}.mec-dark-mode .event-carousel-type3-head .mec-event-footer-carousel-type3,.mec-dark-mode .event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button,.mec-dark-mode .mec-av-spot,.mec-dark-mode .mec-av-spot-wrap .mec-event-grid-modern .event-grid-modern-head,.mec-dark-mode .mec-box-calendar.mec-calendar dl dt:last-child,.mec-dark-mode .mec-calendar,.mec-dark-mode .mec-calendar .mec-event-article,.mec-dark-mode .mec-calendar.mec-box-calendar .mec-table-nullday:last-child,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-next-month:hover,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-previous-month:hover,.mec-dark-mode .mec-event-cover-classic,.mec-dark-mode .mec-event-cover-clean,.mec-dark-mode .mec-event-grid-classic .mec-event-article,.mec-dark-mode .mec-event-grid-clean .mec-event-article,.mec-dark-mode .mec-event-grid-modern .mec-event-article,.mec-dark-mode .mec-event-sharing-wrap .mec-event-sharing,.mec-dark-mode .mec-event-sharing-wrap .mec-event-sharing:after,.mec-dark-mode .mec-event-sharing-wrap>li:first-of-type,.mec-dark-mode .mec-events-agenda,.mec-dark-mode .mec-fes-form .mec-meta-box-fields,.mec-dark-mode .mec-masonry,.mec-dark-mode .mec-slider-t5-wrap .mec-event-grid-modern .event-grid-modern-head,.mec-dark-mode .mec-timeline-month-divider,.mec-dark-mode .mec-wrap .mec-totalcal-box,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{border-color:#353535}.mec-dark-mode .mec-event-sharing-wrap .mec-event-sharing:after{border-color:#191919 transparent transparent transparent}.mec-dark-mode .mec-event-sharing-wrap .mec-event-sharing:before{border-color:#353535 transparent transparent transparent}.mec-dark-mode .mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text],.mec-dark-mode .mec-events-meta-group-booking .StripeElement,.mec-dark-mode .mec-slider-t2 .mec-event-article{background:#1f1f1f!important;border:1px solid #353535!important;box-shadow:none!important;color:#d2d2d2!important}.mec-dark-mode .CardField CardField--ltr .__PrivateStripeElement .InputContainer input{color:#d2d2d2!important}.mec-dark-mode .mec-events-toggle .mec-toggle-item{border:1px solid #e4e4e4;box-shadow:0 10px 15px #282828}.mec-dark-mode .mec-agenda-events-wrap .mec-event-grid-colorful .mec-event-content{background-color:transparent}.mec-dark-mode .mec-calendar .mec-calendar-side{box-shadow:0 1px 5px 6px rgba(255,255,255,.005) inset}.mec-dark-mode .tooltipster-sidetip.tooltipster-shadow .tooltipster-box{border:1px solid #282828!important}.mec-dark-mode .mec-timeline-event-content:after{border-color:transparent #191919 transparent transparent}.mec-dark-mode .mec-fes-form .mec-meta-box-fields{box-shadow:0 2px 6px -3px #353535}.mec-dark-mode .mec-fes-form .mec-meta-box-fields h4{color:#d2d2d2;background:#000}.mec-dark-mode .mec-fes-form input[type=email],.mec-dark-mode .mec-fes-form input[type=number],.mec-dark-mode .mec-fes-form input[type=password],.mec-dark-mode .mec-fes-form input[type=tel],.mec-dark-mode .mec-fes-form input[type=text],.mec-dark-mode .mec-fes-form select,.mec-dark-mode .mec-fes-form textarea{box-shadow:0 2px 5px rgba(0,0,0,.38) inset}.mec-dark-mode .mec-fes-form input{background:#353535!important;color:#d2d2d2!important}.mec-dark-mode .mec-booking-tab-content .button:hover,.mec-dark-mode .mec-booking-tab-content .mec-reg-field-add-option:hover,.mec-dark-mode .mec-fes-form .mec-form-row .button:not(.wp-color-result):hover{background:#353535;color:#d2d2d2;border-color:#353535;box-shadow:0 2px 6px -3px #353535}.mec-dark-mode .mec-booking-tab-content .button,.mec-dark-mode .mec-booking-tab-content .mec-reg-field-add-option,.mec-dark-mode .mec-fes-form .mec-form-row .button:not(.wp-color-result),.mec-dark-mode .mec-fes-form input[type=file],.mec-dark-mode ul#mec_reg_form_fields li .mec_reg_field_remove{color:#d2d2d2;background:#282828;border:2px solid #353535;box-shadow:0 2px 6px -3px #353535}.mec-dark-mode #mec_reg_form_fields input[type=checkbox],.mec-dark-mode #mec_reg_form_fields input[type=radio],.mec-dark-mode .mec-form-row input[type=checkbox],.mec-dark-mode .mec-form-row input[type=radio]{background-color:#000;border:1px solid #353535;box-shadow:0 1px 3px -1px #353535}.mec-dark-mode .mec-fes-form .select2-container{border:1px solid #353535;background-color:#282828;color:#d2d2d2}.mec-events-meta-group-booking-shortcode{background-color:#e6f7ff;padding:40px;position:relative}.mec-booking-shortcode .mec-event-tickets-list.mec-sell-all-occurrences{width:100%}.mec-booking-shortcode .mec-book-reg-field-mec_email{width:48%;display:inline-block;margin-right:30px}.mec-booking-shortcode .mec-book-reg-field-name{width:48%;display:inline-block}.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-expiration-date-month{width:48%;display:inline-block;vertical-align:top;margin-right:30px}.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-cvv2{width:48%;display:inline-block}.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-expiration-date-month .nice-select{width:48%;display:inline-block}.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-expiration-date-month label{width:100%}.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-expiration-date-month .nice-select:first-of-type{margin-right:10px}.mec-booking-shortcode .mec-form-row.mec-name-stripe,.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-card-type,.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-first-name{width:48%;vertical-align:top;display:inline-block;margin-right:30px}.mec-booking-shortcode .mec-form-row.mec-email-stripe,.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-cc-number,.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-last-name{width:48%;display:inline-block}.mec-events-meta-group-booking .mec-booking-shortcode .StripeElement{height:56px;padding:19px 12px 0;max-width:420px}.mec-booking-shortcode .nice-select,.mec-booking-shortcode input{float:none;border:1px solid #c7ebfb!important;border-radius:3px;background-color:#fff;height:41px;line-height:39px;padding-left:15px;padding-right:15px;margin:0;margin-bottom:24px!important;color:#00acf8;font-size:14px;font-weight:400;box-shadow:none!important;min-height:unset;min-width:unset;padding-top:0;padding-bottom:0}.mec-booking-shortcode .mec-gateway-message.mec-success{margin-bottom:-20px;font-size:14px}.mec-booking-shortcode .mec-form-row.mec-name-stripe{margin-bottom:0!important}.mec-booking-shortcode .mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text],.mec-events-meta-group-booking .mec-booking-shortcode .StripeElement{border:1px solid #c7ebfb!important;border-radius:3px;box-shadow:none!important}.mec-booking-shortcode .nice-select ul{width:100%}.mec-booking-shortcode .mec-event-ticket-name,.mec-booking-shortcode .mec-event-ticket-price,.mec-booking-shortcode .mec-ticket-variation-name,.mec-booking-shortcode .mec-ticket-variation-price,.mec-booking-shortcode label{font-size:14px;line-height:19px;font-weight:400;color:#00acf8;padding-right:5px;margin:0 0 4px!important}.mec-booking-shortcode span.mec-event-ticket-available{margin-top:-22px!important;margin-bottom:28px!important;display:block;font-size:11px;letter-spacing:.5px;font-weight:300;color:#80abbf}.mec-booking-shortcode button{background-color:#00acf8;border-radius:2px;box-shadow:0 2px 2px rgba(0,172,248,.27);font-weight:500;font-size:11px;letter-spacing:.5px;margin:0;min-width:116px;padding:16px 15px 14px;float:none;position:relative;border:none;color:#fff;display:inline-block}.mec-booking-shortcode .mec-booking-form-container ul li{list-style:none}.mec-booking-shortcode .mec-booking-form-container ul{padding:0}.mec-events-meta-group-booking-shortcode .mec-error{background-color:#ff017e;color:#fff;margin:20px 0 0;padding:10px 15px;border-radius:3px}.mec-booking-shortcode .mec-book-ticket-variation h5{margin:0 0 4px}.mec-booking-shortcode .mec-book-available-tickets-details-header{border-bottom:2px solid #00acf8}.mec-booking-shortcode .mec-book-available-tickets-details-header,.mec-booking-shortcode .mec-book-available-tickets-details-item,.mec-booking-shortcode .mec-book-price-detail{display:-webkit-box;display:flex;flex-wrap:wrap}.mec-booking-shortcode .mec-book-available-tickets-details-header span,.mec-booking-shortcode .mec-book-available-tickets-details-item span,.mec-booking-shortcode .mec-book-price-detail span{-webkit-box-flex:1.97;flex:1.97 1.97 0;min-height:1px;font-size:14px;line-height:22px;color:#616264;font-weight:500;padding-bottom:20px;padding-top:20px}.mec-booking-shortcode .mec-book-available-tickets-details span:nth-of-type(2),.mec-booking-shortcode .mec-book-available-tickets-details-item span:nth-of-type(2),.mec-booking-shortcode .mec-book-price-detail span:nth-of-type(2){-webkit-box-flex:1;flex:1 1 0}.mec-booking-shortcode .mec-book-available-tickets-details span:last-child,.mec-booking-shortcode .mec-book-available-tickets-details-item span:last-child,.mec-booking-shortcode .mec-book-price-detail span:last-child{-webkit-box-flex:1.085;flex:1.085 1.085 0}.mec-booking-shortcode .mec-book-available-tickets-details-header span{padding-bottom:11px}.mec-booking-shortcode .mec-book-available-tickets-details-item span{font-weight:400;font-size:12px}.mec-booking-shortcode span.mec-book-price-detail-amount,.mec-booking-shortcode span.mec-book-price-detail-description{font-size:14px;line-height:22px;font-weight:500;padding:6px 0;color:#000}.mec-booking-shortcode span.mec-book-price-detail-amount{color:#777}.mec-booking-shortcode .mec-book-form-gateways label{cursor:pointer}.mec-booking-shortcode .mec-book-form-gateways label{cursor:pointer}.mec-booking-shortcode span.mec-book-price-detail-description{padding:6px 13px 6px 0;font-size:14px;font-weight:400;color:#00acf8}.mec-booking-shortcode ul.mec-book-price-details li{border-right:1px solid #c7ebfb!important}.mec-booking-shortcode span.mec-book-price-total{font-size:22px;line-height:22px;font-weight:700;color:#2bbc10;margin-top:20px;margin-bottom:35px;display:inline-block}.mec-booking-shortcode ul.mec-book-price-details{border:1px solid #c7ebfb!important;border-radius:3px;box-shadow:none!important}.mec-booking-shortcode span.mec-book-price-total-description{font-size:18px;line-height:22px;font-weight:700;color:#000}.mec-booking-shortcode span.mec-book-price-total-amount{font-size:22px;line-height:22px;font-weight:700;color:#2bbc10}.mec-booking-shortcode .mec-book-form-price{clear:both;position:relative}.mec-booking-shortcode .mec-book-form-gateway-label input[type=radio]:after{content:"";display:inline-block;width:7px;height:7px;background-color:#fff;border-radius:50%;cursor:pointer;position:absolute;top:4px;left:3px}.mec-booking-shortcode .mec-book-form-gateway-label input[type=radio]:before{box-shadow:none;border:2px solid #a8e4ff;width:17px;height:17px;position:absolute;top:-9px;left:-2px;margin:0;content:"";display:inline-block;background:#fff;border-radius:18px;cursor:pointer;position:relative}.mec-booking-shortcode .mec-book-form-gateway-label{-webkit-box-flex:0;flex:0 0 50%;margin-bottom:14px;padding-right:15px}.mec-booking-shortcode .mec-book-form-gateways{display:-webkit-box;display:flex;flex-wrap:wrap;margin-bottom:20px}.mec-booking-shortcode .mec-book-form-gateway-checkout{-webkit-box-flex:0;flex:0 0 100%;max-width:100%}.mec-booking-shortcode input::-webkit-input-placeholder,.mec-booking-shortcode textarea::-webkit-input-placeholder{color:#afe6ff}.mec-booking-shortcode input::-moz-placeholder,.mec-booking-shortcode textarea::-moz-placeholder{color:#afe6ff}.mec-booking-shortcode input:-ms-input-placeholder,.mec-booking-shortcode textarea:-ms-input-placeholder{color:#afe6ff}.mec-booking-shortcode input:-moz-placeholder,.mec-booking-shortcode textarea:-moz-placeholder{color:#afe6ff}.mec-booking-shortcode input[type=radio]:checked:before{border:2px solid #a8e4ff;box-shadow:none}.mec-booking-shortcode input[type=radio]:checked:after{background-color:#00acf8}.mec-booking-shortcode .mec-book-form-gateway-label label input{position:relative;cursor:pointer;margin:0!important;height:auto;margin-right:4px!important}.mec-booking-shortcode .mec-click-pay button[type=submit]{position:absolute;left:190px;bottom:40px}.mec-booking-shortcode button#mec-book-form-btn-step-2{margin-left:30px}.mec-booking-shortcode .mec-ticket-name{display:inline-block;background-color:#fff;border-radius:3px;font-size:12px;line-height:12px;font-weight:400;color:#00acf8;padding:8px 13px;letter-spacing:0}.mec-booking-shortcode .mec_book_first_for_all{display:none}.mec-booking-shortcode li.mec-first-for-all-wrapper{margin-bottom:20px}.mec-booking-shortcode label.wn-checkbox-label:before{display:inline-block;-moz-transform-origin:left top;-ms-transform-origin:left top;-o-transform-origin:left top;-webkit-transform-origin:left top;transform-origin:left top;content:'';-webkit-transition:opacity ease .5;-moz-transition:opacity ease .5;transition:opacity ease .5;position:absolute;background-color:#00acf8;width:2px;-webkit-transform:rotate(-138deg);transform:rotate(-138deg)}.mec-booking-shortcode label.wn-checkbox-label{position:relative;display:inline-block;-moz-transition:border-color ease .2s;-o-transition:border-color ease .2s;-webkit-transition:border-color ease .2s;transition:border-color ease .2s;cursor:pointer;vertical-align:middle;font-size:14px;line-height:19px;font-weight:400;color:#00acf8;margin:0 0 4px!important;padding:0;background-color:#fff;border:2px solid #a8e4ff;width:17px;height:17px;border-radius:3px;margin-right:9px!important;box-shadow:none}.mec-booking-shortcode label.wn-checkbox-label:after{-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);transform:rotate(-45deg);-moz-animation:dothabottomcheck 80ms ease 0s forwards;-o-animation:dothabottomcheck 80ms ease 0s forwards;-webkit-animation:dothabottomcheck 80ms ease 0s forwards;animation:dothabottomcheck 80ms ease 0s forwards;content:'';display:inline-block;-moz-transform-origin:left top;-ms-transform-origin:left top;-o-transform-origin:left top;-webkit-transform-origin:left top;transform-origin:left top;content:'';-webkit-transition:opacity ease .5;-moz-transition:opacity ease .5;transition:opacity ease .5;position:absolute;background-color:#00acf8;width:2px}.mec-booking-shortcode input[type=checkbox]:checked+.wn-checkbox-label::after{height:5px;left:2px;top:7px;-moz-animation:dothatopcheck .16s ease 0s forwards;-o-animation:dothatopcheck .16s ease 0s forwards;-webkit-animation:dothatopcheck .16s ease 0s forwards;animation:dothatopcheck .16s ease 0s forwards}.mec-booking-shortcode input[type=checkbox]:checked+.wn-checkbox-label::before{height:6px;left:7px;top:9px;-moz-animation:dothatopcheck .16s ease 0s forwards;-o-animation:dothatopcheck .16s ease 0s forwards;-webkit-animation:dothatopcheck .16s ease 0s forwards;animation:dothatopcheck .16s ease 0s forwards}.mec-booking-shortcode button[type=button],.mec-booking-shortcode button[type=submit]{font-weight:500;font-size:13px;letter-spacing:.5px;line-height:16px;outline:0}.mec-booking-shortcode button.mec-book-form-back-button{background-color:#afe6ff;box-shadow:0 2px 2px rgba(175,230,255,.27)}.mec-booking-shortcode button[type=button]:hover,.mec-booking-shortcode button[type=submit]:hover{background-color:#000;text-decoration:none;box-shadow:0 4px 10px rgba(1,2,4,.32)}.mec-booking-shortcode a.button:after,.mec-booking-shortcode button[type=submit]:after{display:none;width:13px;height:13px;border-top:0;border-right:.1em solid #f0f1f1;border-bottom:.1em solid #fbfbfb;border-left:.1em solid #fff;content:"";-webkit-transform:translateZ(0);-ms-transform:translateZ(0);transform:translateZ(0);-webkit-animation:mecloader 1.1s infinite linear;animation:mecloader 1.1s infinite linear;background:rgba(0,0,0,0);position:absolute;top:18px;right:20px;border-radius:50%;z-index:999999999999}.mec-booking-shortcode a.button.loading:after,.mec-booking-shortcode button[type=submit].loading:after{display:block}.mec-booking-shortcode .mec-book-form-coupon{margin-bottom:35px}
|
1 |
+
.lity-container,.mec-wrap,.mec-wrap div:not([class^=elementor-]){font-family:Montserrat,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif}.entry-content .mec-wrap h1,.entry-content .mec-wrap h2,.entry-content .mec-wrap h3,.entry-content .mec-wrap h4,.entry-content .mec-wrap h5,.entry-content .mec-wrap h6,.mec-wrap h1,.mec-wrap h2,.mec-wrap h3,.mec-wrap h4,.mec-wrap h5,.mec-wrap h6{font-family:Montserrat,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;color:#171c24;font-weight:300;font-style:inherit;letter-spacing:normal;clear:none}.mec-wrap h1{font-size:50px;line-height:1.16;margin-bottom:12px;letter-spacing:-1px}.mec-wrap h2{font-size:36px;line-height:1.14;margin-bottom:10px}.mec-wrap h3{font-size:28px;line-height:1.2;margin-bottom:8px}.mec-wrap h4{font-size:24px;line-height:1.2;margin-bottom:10px}.mec-wrap h5{font-size:18px;line-height:1.3;margin-bottom:7px}.mec-wrap h6{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-wrap .subheader{color:#849098}.mec-wrap h1 strong{font-weight:700}.mec-wrap p{margin:0 0 20px 0;color:#616161;font-size:14px;line-height:1.8}.mec-wrap .mec-event-article .mec-color-hover{box-shadow:none;border:none}.mec-wrap abbr,.mec-wrap acronym{cursor:auto;border:none}.entry-content .mec-wrap a{box-shadow:none}.mec-wrap .button,.mec-wrap a.button:not(.owl-dot),.mec-wrap button:not(.owl-dot):not(.gm-control-active),.mec-wrap input[type=button],.mec-wrap input[type=reset],.mec-wrap input[type=submit]{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#24ca4f;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease}.mec-wrap .button:hover,.mec-wrap a.button:hover,.mec-wrap button:hover,.mec-wrap input[type=button]:hover,.mec-wrap input[type=reset]:hover,.mec-wrap input[type=submit]:hover{background:#222;color:#fff}.mec-wrap #mec_woo_add_to_cart_btn_r{min-width:155px;margin-top:5px;border-radius:2px;box-shadow:0 2px 1px rgba(0,0,0,.08);float:left;text-align:center}.mec-booking-form-container button{display:block}.vertical-space,.vertical-space1,.vertical-space2,.vertical-space3,.vertical-space4,.vertical-space5{display:block;width:100%;margin:0;clear:both;border:0 none;height:20px}.vertical-space2{height:40px}.vertical-space3{height:60px}.vertical-space4{height:80px}.vertical-space5{height:100px}@media only screen and (max-width:479px){.vertical-space,.vertical-space1{height:8px}.vertical-space2{height:14px}.vertical-space3{height:28px}.vertical-space4{height:40px}.vertical-space5{height:60px}}@media only screen and (max-width:960px){.vertical-space,.vertical-space1{height:12px}.vertical-space2{height:18px}.vertical-space3{height:36px}.vertical-space4{height:50px}.vertical-space5{height:80px}}.mec-wrap abbr{cursor:auto;border-bottom:0}@-webkit-keyframes rotating{from{-ms-transform:rotate(0);-moz-transform:rotate(0);-webkit-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}to{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes rotating{from{-ms-transform:rotate(0);-moz-transform:rotate(0);-webkit-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}to{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}.mec-wrap{font:14px/25px sans-serif;font-family:Montserrat,Helvetica,Arial,sans-serif;font-weight:400;color:#626262}.mec-wrap .mec-events a{border-bottom:none}.mec-wrap .mec-container a{box-shadow:none}.mec-event-content p{font-family:Roboto,sans-serif;font-weight:300}.mec-wrap .mec-clear:after,.mec-wrap .mec-clear:before{content:" ";display:table}.mec-wrap .mec-clear:after{clear:both}.mec-events-button{background:#fff;padding:12px 34px;font-size:13px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;margin-right:10px;transition:.3s}.mec-wrap .mec-events-button:hover{color:#fff}.mec-no-event{display:none}#mec-active-current{display:block}.current-hide #mec-active-current{display:none!important}.mec-event-grid-classic .mec-event-article{position:relative;border:2px solid #e3e3e3;box-shadow:0 2px 0 0 rgba(0,0,0,.016);margin-bottom:30px;max-width:none}.mec-event-grid-classic .mec-event-content{background:#fff;color:#767676;padding:0 20px 5px;text-align:center;min-height:125px}.mec-event-grid-classic .mec-event-title{color:#202020;margin:10px 0;font-weight:700;font-size:20px;letter-spacing:1px;text-transform:uppercase}.mec-event-grid-classic .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-classic .mec-event-date{font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:1px;color:#fff;padding:3px 20px;margin:0 -20px 20px -20px;text-align:center}.mec-event-grid-classic .mec-event-content p{font-size:15px;color:#8a8a8a}.mec-event-grid-classic .mec-event-detail{display:none}.mec-event-grid-classic img{margin-bottom:0;width:100%}.mec-event-footer{position:relative;border-top:1px solid #efefef;padding:20px;min-height:80px;margin:0;background:#fafafa}.mec-event-sharing-wrap{left:15px;position:absolute;list-style:none;margin:0;padding-left:0}.mec-event-sharing-wrap .mec-event-sharing{position:absolute;padding:8px 0 2px;left:-6px;bottom:54px;margin:0;margin-top:6px;border-radius:5px;width:50px;visibility:hidden;opacity:0;border:1px solid #e2e2e2;background:#fff;box-shadow:0 0 9px 0 rgba(0,0,0,.06);z-index:99;-webkit-transition:all .18s ease;transition:all .18s ease}.mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-sharing-wrap .mec-event-sharing:before{content:'';display:block;position:absolute;bottom:-10px;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-event-sharing-wrap .mec-event-sharing:before{bottom:-21px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-sharing-wrap .mec-event-sharing:after{bottom:-19px;border-color:#fff transparent transparent transparent}.mec-event-sharing-wrap:hover .mec-event-sharing{opacity:1;visibility:visible}.mec-event-sharing-wrap li{text-align:center;border:0;display:block;margin-right:2px;overflow:hidden;margin:0 auto 6px;width:38px}.mec-event-sharing-wrap:hover>li{cursor:pointer;background-color:#40d9f1}.mec-event-sharing-wrap:hover li a{color:#fff}.mec-event-sharing-wrap>li:first-of-type{border:1px solid #d9d9d9}.mec-event-sharing-wrap li a,.mec-event-sharing-wrap:hover li ul li a{border:none;color:#767676}.mec-event-sharing-wrap li i{width:36px;height:36px;display:table-cell;vertical-align:middle}.mec-event-sharing-wrap li svg{height:16px}.mec-event-sharing-wrap .mec-event-sharing li a{display:block}.mec-event-sharing-wrap .mec-event-sharing li:hover a{color:#40d9f1}.mec-event-sharing .mec-event-share:hover .event-sharing-icon{background:#40d9f1;border-width:0 1px 0;cursor:pointer}.mec-event-sharing .mec-event-map{border-width:1px 0 1px}.mec-event-footer .mec-booking-button{box-shadow:none;transition:all .21s ease;font-size:11px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:1px solid #e8e8e8;position:absolute;top:20px;right:15px;padding:0 16px;line-height:37px;height:38px}.mec-event-footer .mec-booking-button:hover{background:#191919;color:#fff;border-color:#191919}@media only screen and (max-width:960px){.mec-event-grid-classic{margin-bottom:30px}}.mec-widget .mec-event-grid-classic.mec-owl-carousel{padding:36px 0 16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav{margin:5px 0;width:100%;position:absolute;top:15px;padding:0}.mec-skin-grid-container.mec-widget{padding-top:18px}.mec-widget .mec-event-grid-classic.mec-owl-carousel{padding:20px 0 16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav{margin:0;width:100%;position:absolute;top:0;padding:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav div{position:absolute;background:#fff;line-height:0;width:34px;height:26px;padding:6px;text-align:center;margin-top:-17px;border-radius:3px;border:1px solid #e2e2e2;text-align:center;box-shadow:0 2px 0 0 rgba(0,0,0,.028);transition:all .33s ease}.mec-skin-grid-container .mec-categories{padding:0}.mec-skin-grid-container .mec-categories li{list-style:none}.mec-skin-grid-container .mec-categories li a{color:#000;line-height:24px;text-align:left;transition:all .23s ease;-webkit-transition:all .23s ease}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav .owl-next{right:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav .owl-prev{left:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-sharing{display:none}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-footer{text-align:center}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-footer .mec-booking-button{position:static;padding:11px 16px}.widget .mec-event-footer ul.mec-event-sharing-wrap li a.mec-event-share-icon{padding:0}@media screen and (min-width:56.875em){.mec-widget .mec-month-container dl{margin-bottom:0}}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-footer{text-align:right}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-sharing-wrap{left:5px;padding-left:5px}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-sharing-wrap .mec-event-sharing{left:0}.mec-widget .mec-event-sharing-wrap .mec-event-sharing{position:absolute;top:auto;bottom:52px;margin:0;margin-top:0;border-radius:5px}.mec-widget .mec-event-sharing-wrap .mec-event-sharing:after{top:auto;bottom:-17px;border-color:#fff transparent transparent transparent}.mec-widget .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-18px;border-color:#e2e2e2 transparent transparent transparent}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav button{position:absolute;background:#fff;padding:6px;margin-top:-17px;border-radius:3px;border:1px solid #e2e2e2;box-shadow:0 2px 0 0 rgba(0,0,0,.028)}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav button:hover{background:#40d9f1;border-color:#40d9f1}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav button:hover i{color:#fff}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-booking-button{width:40%;float:right;color:#202020;height:36px;line-height:16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-booking-button:hover{color:#fff}.mec-widget .mec-event-list-modern .col-md-2.col-sm-2,.mec-widget .mec-event-list-modern .col-md-6.col-sm-6{padding:0;width:100%;display:block;position:unset}.mec-widget .mec-event-list-modern .col-md-4.col-sm-4 .mec-booking-button{width:80%;height:46px;line-height:22px;padding:11px 20px;float:right}.mec-widget .mec-event-list-modern .col-md-4.col-sm-4.mec-btn-wrapper{top:auto;bottom:5%}@media (max-width:480px){.mec-widget .mec-event-list-modern .col-md-4.col-sm-4{padding:0}.mec-widget .mec-event-list-modern .col-md-4.col-sm-4 .mec-booking-button{width:100%}}.mec-event-grid-clean{margin-bottom:10px;max-width:none}.mec-event-grid-clean .mec-event-article{margin-bottom:30px;position:relative;border:1px solid #e2e2e2;text-align:center;padding:15px 15px 0;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-clean .mec-event-content{background:#fff;color:#767676;padding:25px 16px 0;text-align:left}.mec-event-grid-clean .mec-event-title{color:#202020;margin:0 0 10px 0;font-weight:700;font-size:21px;text-transform:capitalize}.mec-event-grid-clean .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-clean .mec-event-date{font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:1px;background-color:#40d9f1;color:#fff;padding:3px 0;margin:0;text-align:center}.mec-event-grid-clean .mec-event-content p{font-size:15px;color:#9a9a9a;line-height:1.54}.mec-event-grid-clean img{margin-bottom:0;width:100%}.mec-event-grid-clean .event-grid-t2-head{margin-bottom:10px;color:#fff;padding:9px 14px 6px;text-align:left}.mec-event-grid-clean .event-grid-t2-head .mec-event-date{font-size:50px;line-height:50px;float:left;margin-right:11px}.mec-event-grid-clean .event-grid-t2-head .mec-event-month{text-transform:uppercase;font-size:17px;line-height:20px;padding-top:4px}.mec-event-grid-clean .event-grid-t2-head .mec-event-detail{font-size:12px}.mec-event-grid-clean .event-grid-t2-head .mec-categories li a{margin-bottom:10px;color:#fff}.mec-event-grid-clean .event-grid-t2-head .mec-categories li a:hover{color:#000}.mec-event-grid-clean .mec-event-sharing-wrap{left:0;padding-left:0}.mec-event-grid-clean .mec-event-footer{position:relative;border-top:2px solid;padding:20px 0;margin:0 14px;text-align:left;background:0 0}.mec-event-grid-clean .mec-event-footer .mec-booking-button{right:0}.mec-event-grid-clean .row{margin-bottom:30px}.mec-event-grid-modern{margin-bottom:10px;max-width:none}.mec-event-grid-modern .mec-event-article{position:relative;border:1px solid #e2e2e2;text-align:center;margin-bottom:30px;padding:45px 15px 10px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-modern .mec-event-content{background:#fff;color:#767676;padding:35px 15px 10px;text-align:left}.mec-event-grid-modern .mec-event-title{color:#202020;margin:0 0 10px 0;font-weight:700;font-size:24px;text-transform:none;letter-spacing:-1px}.mec-event-grid-modern .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-modern .mec-event-content p{font-size:15px;color:#9a9a9a;line-height:1.54}.mec-event-grid-modern img{margin-bottom:0;width:100%}.mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:9px 14px 6px;text-align:left}.mec-event-grid-modern .event-grid-modern-head .mec-event-date{font-size:50px;line-height:50px;float:left;margin-right:11px}.mec-event-grid-modern .event-grid-modern-head .mec-event-month{text-transform:uppercase;font-size:17px;line-height:20px;padding-top:4px}.mec-event-grid-modern .event-grid-modern-head .mec-event-detail{font-size:12px}.mec-event-grid-modern .event-grid-modern-head .mec-event-day{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:35px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-event-grid-modern .mec-event-footer{position:relative;height:90px;padding:20px 0;border:none;margin:0 14px;text-align:left;background:0 0}.mec-event-grid-modern .mec-event-footer .mec-booking-button{right:auto;left:0}.mec-event-grid-modern .mec-event-sharing-wrap{left:auto;right:0;padding-left:0}.mec-event-grid-modern .mec-event-sharing{left:auto;right:-6px}.mec-event-grid-modern .mec-event-sharing-wrap li{border-radius:55px}.mec-event-grid-modern .row{margin-bottom:0}@media only screen and (max-width:479px){.mec-event-grid-modern .mec-event-article{padding-bottom:30px}.mec-event-grid-modern .mec-event-sharing{top:60px;left:0;right:auto}.mec-event-grid-modern .mec-event-footer .mec-booking-button{top:0}}span.mec-event-title-soldout{font-size:8px;font-weight:700;letter-spacing:.5px;text-transform:uppercase;background:#e63360;color:#fff;padding:3px 8px;line-height:1;border-radius:15px;white-space:nowrap;vertical-align:middle}.mec-event-grid-colorful .mec-event-article{min-height:400px;border:none;box-shadow:none;background:#40d9f1;padding-top:25px;margin:0;color:#fff}.mec-event-grid-colorful .mec-event-content{background:0 0}.mec-event-grid-colorful .event-grid-modern-head,.mec-event-grid-colorful .event-grid-modern-head .mec-event-date,.mec-event-grid-colorful .event-grid-modern-head .mec-event-day,.mec-event-grid-colorful .mec-event-content p,.mec-event-grid-colorful .mec-event-sharing-wrap>li>a,.mec-event-grid-colorful .mec-event-title a{color:#fff}.mec-event-grid-colorful .mec-event-footer .mec-booking-button{border:none}.mec-event-grid-colorful .mec-event-sharing-wrap>li{border-color:#fff}.mec-event-grid-colorful .mec-event-sharing-wrap:hover>li{background:#333;border-color:#333}.mec-event-grid-colorful .mec-event-title a.mec-color-hover:hover{color:#fff;text-decoration:underline}.mec-event-grid-colorful .mec-event-title .event-color{display:none}.mec-event-grid-colorful div[class^=col-md-]{padding:0 1px 1px 0;margin:0}.mec-event-grid-colorful .mec-event-article .mec-time-details{color:#fff}@media only screen and (min-width:768px){.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-day{font-size:26px}.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-month{font-size:15px}.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-date{font-size:50px}.mec-wrap.mec-sm959.mec-event-grid-colorful .mec-event-title{font-size:21px}.mec-wrap.mec-sm959.mec-event-grid-colorful .mec-event-content p{font-size:13px}}@media only screen and (min-width:768px) and (max-width:1200px){.mec-wrap.mec-sm959.mec-event-grid-colorful div[class^=col-md-]{width:50%}}.mec-event-list-minimal .mec-event-article{border-bottom:1px solid #efefef;padding:24px 0 16px}.mec-event-list-minimal .mec-wrap .col-md-9{padding:0}.mec-event-list-minimal .mec-event-date{position:relative;float:left;margin-right:30px;color:#fff;width:52px;padding:6px 4px 3px;text-align:center;text-transform:uppercase;border-radius:3px}.mec-event-list-minimal .mec-event-date span{display:block;font-size:24px;font-weight:700;text-align:center;margin-bottom:4px}.mec-event-list-minimal .mec-event-date:after{display:block;content:"";position:absolute;width:50px;left:1px;top:1px;height:34px;background:rgba(255,255,255,.1);box-shadow:0 4px 4px rgba(0,0,0,.02)}.mec-event-list-minimal .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;font-size:18px;text-transform:uppercase;letter-spacing:0;padding-top:10px}.mec-event-list-minimal .mec-event-detail,.mec-event-list-minimal .mec-time-details{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;font-family:Roboto,sans-serif}.mec-event-list-minimal .btn-wrapper{text-align:right;padding-right:0;padding-top:6px}.mec-event-list-minimal .btn-wrapper .mec-detail-button{border-bottom:0;margin-bottom:14px;margin-right:0;box-shadow:none}.mec-event-list-minimal a.mec-detail-button{text-align:center;display:inline-block;background:#ededed;color:#191919;padding:12px;border-radius:2px;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:2px;transition:all .24s ease}.mec-event-list-minimal a.mec-detail-button:hover{background:#292929;color:#fff}.vc_col-sm-4 .mec-event-list-minimal .mec-event-date,.vc_col-sm-6 .mec-event-list-minimal .mec-event-date{margin-right:12px}.vc_col-sm-4 .mec-event-list-minimal .mec-event-title,.vc_col-sm-6 .mec-event-list-minimal .mec-event-title{font-size:15px;letter-spacing:2px}@media only screen and (min-width:480px) and (max-width:767px){.mec-event-list-minimal .btn-wrapper{padding-left:0}.mec-event-list-minimal .mec-event-date{margin-right:10px}}@media only screen and (max-width:767px){.mec-event-list-minimal .btn-wrapper .mec-detail-button{display:block;text-align:center;margin:0;margin-top:16px;padding:8px}.mec-event-list-minimal .btn-wrapper{margin:12px 0}}@media only screen and (max-width:479px){.mec-event-list-minimal .mec-event-date{float:none;width:100%;margin-bottom:8px}.mec-event-list-minimal .mec-event-date span{display:inline;padding-right:25px;margin-right:7px;font-size:inherit}.mec-event-list-minimal .mec-event-date:after{width:45%;box-shadow:4px 0 4px rgba(0,0,0,.02)}.mec-event-list-minimal .btn-wrapper{text-align:center;padding-left:0}.mec-event-list-minimal{text-align:center}.mec-event-list-minimal .mec-event-detail{margin-bottom:10px}}.mec-wrap .mec-event-list-modern .mec-event-title{margin-top:0;margin-bottom:10px}.mec-event-list-modern .mec-event-article{border-bottom:1px solid #efefef;padding:30px 0 10px}.mec-event-list-modern .mec-event-article:last-child{border-bottom:none}.mec-event-list-modern .mec-event-title a{color:#191919;transition:all .24s ease;box-shadow:none}.mec-event-list-modern .mec-event-date{text-transform:uppercase;padding:10px 0}.mec-event-list-modern .mec-event-date .event-d{font-size:48px;display:table-cell;padding:10px 0 0}.mec-event-list-modern .mec-event-date .event-f{font-size:13px;display:table-cell;vertical-align:middle;padding-left:7px;font-weight:500;letter-spacing:3px;color:#777}.mec-event-list-modern .mec-event-detail{font-weight:300;color:#8a8a8a}.mec-event-list-modern .mec-event-detail .mec-time-details{display:inline}.mec-event-list-modern .mec-event-date .event-da{margin-top:9px;color:silver;font-size:28px;font-weight:100;text-transform:uppercase;letter-spacing:-1px;text-align:left}.mec-event-list-modern .mec-btn-wrapper .mec-booking-button{border-radius:1px;letter-spacing:2px;border:1px solid #e6e6e6;color:#333;background-color:#fff;padding:13px 20px;font-weight:700;font-size:11px;box-shadow:0 2px 0 0 rgba(0,0,0,.016);transition:all .28s ease}.mec-event-list-modern .mec-btn-wrapper .mec-booking-button:hover{border-color:#222;background:#222;color:#fff}.mec-event-list-modern .mec-event-title{font-weight:700;font-size:20px;text-transform:uppercase;letter-spacing:1px}.mec-event-list-modern .mec-event-detail{color:#9a9a9a;font-size:15px;font-weight:300;line-height:25px;font-family:Roboto,sans-serif}.mec-event-list-modern .mec-btn-wrapper{text-align:right;padding:10px 0;text-transform:uppercase}.mec-event-list-modern .mec-event-sharing{position:relative;margin:10px 0}.mec-event-list-modern .mec-event-sharing>li{display:inline-block;border:none;border-radius:50%;margin-right:3px}.mec-event-list-modern .mec-event-sharing>li:hover{display:inline-block}.mec-event-list-modern .mec-event-sharing>li:hover a i{color:#fff;background:#40d9f1;border-color:#40d9f1}.mec-event-list-modern .mec-event-sharing>li i{width:36px;display:inline-block;line-height:35px;color:#767676;text-align:center;border-radius:50%;border:1px solid #ddd;font-size:14px}.mec-event-list-modern .mec-event-sharing .mec-event-share:hover .mec-event-sharing-icon{background:#40d9f1;border-color:#40d9f1;cursor:pointer;border-radius:50%}.mec-event-list-modern .mec-event-sharing li:hover a i{background:#40d9f1}@media only screen and (min-width:768px){.mec-event-list-modern .mec-event-article{position:relative;min-height:160px;overflow:hidden}.mec-event-list-modern .col-md-2.col-sm-2{width:210px;position:absolute;left:0;top:20px}.mec-event-list-modern .col-md-4.col-sm-4.mec-btn-wrapper{width:180px;padding:0;position:absolute;right:0;top:30%}.mec-event-list-modern .col-md-6.col-sm-6{width:100%;padding-left:225px;padding-right:195px}}@media only screen and (max-width:767px){.mec-event-list-modern .mec-btn-wrapper .mec-booking-button{letter-spacing:1px;border:1px solid #e1e1e1;padding:8px 16px}.mec-event-list-modern .mec-btn-wrapper{padding:0 0 12px}.mec-event-list-modern .mec-event-sharing{margin-bottom:0}}.mec-event-grid-minimal .mec-event-article{margin:15px 0;min-height:80px;display:table}.mec-event-grid-minimal .event-detail-wrap{display:table-cell;vertical-align:middle}.mec-event-grid-minimal .mec-event-date{width:70px;float:left;margin-right:20px;padding:12px 16px 10px;text-align:center;text-transform:uppercase;border-radius:4px;border:1px solid #e6e6e6;transition:all .37s ease-in-out;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-minimal .mec-event-date span{display:block;font-size:24px;font-weight:700;text-align:center;margin-bottom:4px;color:#2a2a2a;transition:color .3s ease}.mec-event-grid-minimal .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;line-height:21px;font-size:16px;text-transform:uppercase;transition:color .3s ease}.mec-event-grid-minimal .mec-event-title a{color:#191919;transition:color .3s ease}.mec-event-grid-minimal .mec-event-detail,.mec-event-grid-minimal .mec-time-details{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;font-family:Roboto,sans-serif;margin-bottom:5px}.mec-event-grid-minimal .mec-event-date:hover{color:#fff}.mec-event-grid-minimal .mec-event-date:hover span{color:#fff}.mec-wrap .mec-event-grid-minimal .mec-event-date:hover{color:#fff}.mec-event-list-classic .mec-event-article{padding:12px 0;margin-bottom:20px}.mec-event-list-classic .mec-event-image{float:left;width:86px;margin-right:20px}.mec-event-list-classic .mec-event-date,.mec-event-list-classic .mec-event-time{font-weight:400;font-size:13px;letter-spacing:0;line-height:18px;text-align:left;display:initial;margin-right:12px}.mec-event-list-classic .mec-event-time .mec-time-details,.mec-event-list-classic .mec-event-time i{display:inline;margin-right:3px}.mec-event-list-classic .mec-event-date span{font-weight:500;margin-bottom:6px}.mec-event-list-classic .mec-event-title{font-size:15px;margin:10px 0 12px;font-weight:700;text-transform:uppercase}.mec-event-list-classic .mec-event-title a{color:#494949;transition:color .3s ease}.mec-event-list-classic .mec-event-detail{color:#777;font-weight:400;line-height:12px;font-size:12px;overflow:hidden}.mec-event-list-classic a.magicmore{padding:10px 16px;color:#fff;background:#222;letter-spacing:2px;font-size:11px}.mec-event-list-classic a.magicmore:after{content:"";display:none}.mec-event-list-classic a.magicmore:hover{color:#40d9f1}.mec-event-grid-simple .mec-event-article{position:relative;margin-bottom:30px}.mec-event-grid-simple .mec-event-article:after{border-right:1px solid #e6e6e6;height:60px;position:absolute;top:50%;margin-top:-30px;right:-1px}.mec-event-grid-simple .row div:last-child .mec-event-article:after{border:none}.mec-event-grid-simple .row{margin:15px 0 30px;text-align:center}.mec-event-grid-simple .mec-event-date{padding:0;margin:0;text-transform:capitalize;font-size:12px;font-weight:700}.mec-event-grid-simple .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;line-height:21px;font-size:15px;padding-top:5px;text-transform:uppercase;transition:color .37s ease}.mec-event-grid-simple .mec-event-title a{color:#494949;transition:color .3s ease}.mec-event-grid-simple .mec-event-detail{font-family:Roboto,sans-serif;font-weight:400;line-height:1;letter-spacing:0;font-size:13px;color:#777}.mec-event-grid-simple:hover .mec-event-title{color:#40d9f1}.mec-event-grid-simple:hover .mec-event-date{background:0 0}.event-last:after{display:none}@media only screen and (max-width:767px){.mec-event-grid-simple .mec-event-article{padding-bottom:20px;margin-bottom:20px;border-bottom:1px solid #eee}.mec-event-grid-simple .mec-event-article:after{border:none}}.mec-event-grid-novel .mec-event-article{position:relative;margin-bottom:30px;padding:60px 5% 60px 7%;border:1px solid rgba(255,255,255,.12);border-radius:10px;background-color:#0050fd;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease;z-index:1}.mec-event-grid-novel .mec-event-article .novel-grad-bg{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:10px;opacity:0;z-index:-1;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease}.mec-event-grid-novel .mec-event-article:hover{-webkit-box-shadow:0 13px 36px 0 rgba(0,0,0,.23);box-shadow:0 13px 36px 0 rgba(0,0,0,.23);border-color:transparent}.mec-event-grid-novel .mec-event-article:hover .novel-grad-bg{background-image:-webkit-gradient(linear,left top,right top,from(#262e32),to(#0e1015));background-image:-webkit-linear-gradient(left,#262e32 0,#0e1015 100%);background-image:-o-linear-gradient(left,#262e32 0,#0e1015 100%);background-image:linear-gradient(90deg,#262e32 0,#0e1015 100%);opacity:1}.mec-event-grid-novel .mec-event-image{float:left;width:150px;height:150px}.mec-event-grid-novel .mec-event-image img{width:150px;height:150px;border-radius:50%}.mec-event-grid-novel .mec-event-detail-wrap{margin-left:200px}.mec-event-grid-novel .mec-event-content h4{position:relative;margin-bottom:10px;display:inline-block}.mec-event-grid-novel .mec-event-content h4 a{font-size:24px;line-height:35px;color:#fafcff}.mec-event-grid-novel .mec-event-content h4::before{content:'';position:absolute;top:8px;left:-30px;width:17px;height:17px;background:#5cd0ed;opacity:.4;border-radius:50%}.mec-event-grid-novel .mec-event-content h4::after{content:'';position:absolute;top:12px;left:-26px;width:9px;height:9px;background:#5cd0ed;border-radius:50%}.mec-skin-grid-container .mec-event-grid-novel .mec-categories li a{color:#fff}.mec-event-grid-novel .mec-event-address,.mec-event-grid-novel .mec-event-detail,.mec-event-grid-novel .mec-event-month,.mec-event-grid-novel .mec-local-time-details{position:relative;padding-left:35px;font-size:15px;line-height:30px;color:rgba(255,255,255,.4)}.mec-event-grid-novel .mec-event-address::before,.mec-event-grid-novel .mec-event-detail::before,.mec-event-grid-novel .mec-event-month::before,.mec-event-grid-novel .mec-local-time-details:before{position:absolute;top:6px;left:6px;font-size:17px;font-family:simple-line-icons;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1}.mec-event-grid-novel .mec-local-time-details::before{content:"\e007"}.mec-event-grid-novel .mec-event-month::before{content:"\e075"}.mec-event-grid-novel .mec-event-detail::before{content:"\e081"}.mec-event-grid-novel .mec-event-address::before{content:"\e096"}.mec-event-grid-novel .mec-event-footer{clear:both;padding:20px 0;border-top:none;background:0 0}.mec-event-grid-novel .mec-event-footer .mec-booking-button{right:auto;left:0;height:42px;width:148px;padding:0 20px;font-size:14px;font-weight:400;line-height:42px;text-align:center;color:#fff;background:0 0;border-color:rgba(255,255,255,.1);border-radius:50px}.mec-event-grid-novel .mec-event-footer .mec-booking-button:hover{background-color:rgba(255,255,255,.1)}.mec-event-grid-novel .mec-event-sharing-wrap{left:175px;cursor:pointer;padding-left:0}.mec-event-grid-novel .mec-event-sharing-wrap>li{border-color:rgba(255,255,255,.1);border-radius:50%}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing{top:-5px;left:0;padding:5px 10px 2px 50px;min-width:150px;width:inherit;height:37px;background-color:rgba(255,255,255,.1);-webkit-box-shadow:none;box-shadow:none;border:none;border-radius:50px}.mec-event-grid-novel .mec-event-sharing-wrap:hover>li{background-color:rgba(255,255,255,.1)}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing::after,.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing::before{display:none}.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon,.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon a,.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li i{display:inline}.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon a{padding:0 10px}.mec-event-grid-novel .mec-event-sharing-wrap>li a{color:#fff}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li a{color:rgba(255,255,255,.4)}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li a:hover{color:rgba(255,255,255,1)}@media only screen and (max-width:1200px){.mec-event-grid-novel .row .col-md-6.col-sm-6{width:100%;float:none}.mec-event-grid-novel .mec-event-image{float:none;margin-top:-20px;margin-bottom:20px}.mec-event-grid-novel .mec-event-detail-wrap{margin-left:20px}.mec-event-grid-novel .mec-event-footer{margin-top:30px}}@media only screen and (max-width:767px){.mec-event-grid-novel .mec-event-footer{margin-top:0;padding-top:30px;margin-bottom:24px}.mec-event-grid-novel .mec-event-footer .mec-booking-button{display:block;position:relative}.mec-event-grid-novel .mec-event-sharing-wrap{left:0;bottom:-55px;padding-left:0}.mec-event-grid-novel .mec-event-content h4 a{font-size:20px;line-height:1.3}}.mec-event-grid-novel .mec-event-sharing-wrap{padding-left:0}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing{width:fit-content;z-index:999999}@media(min-width:1280px){.mec-event-grid-novel .col-md-4.col-sm-4 .mec-event-article img{width:100px;height:100px}.mec-event-grid-novel .col-md-4.col-sm-4 .mec-event-detail-wrap{margin-left:150px}}@media(min-width:760px) and (max-width:1024px){.mec-event-grid-novel .col-md-4.col-sm-4{width:100%}.mec-event-grid-novel .mec-event-image{float:left}.mec-event-grid-novel .col-md-4.col-sm-4 .mec-event-article img{width:100px;height:100px}}.mec-event-cover-modern{position:relative}.mec-event-cover-modern .mec-event-cover-a{background:0 0;position:absolute;color:#fff;bottom:0;left:0;text-decoration:none}.mec-event-cover-modern .mec-event-cover-a .mec-event-overlay{transition:all .5s;opacity:.8;width:100%;height:100%;position:absolute}.mec-event-cover-modern .mec-event-cover-a:hover .mec-event-overlay{opacity:1}.mec-event-cover-modern .mec-event-detail{padding:40px;position:relative}.mec-event-cover-modern .mec-event-cover-a:hover .mec-event-tag{color:#333;transition:all .5s}.mec-event-cover-modern .mec-event-cover-a .mec-event-title:hover{text-decoration:underline}.mec-event-cover-modern .mec-event-tag{background:#fff;display:inline-block;padding:5px 9px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:24px}.mec-event-cover-modern .mec-event-date{text-transform:uppercase;font-size:17px;font-weight:300}.mec-event-cover-modern .mec-event-title{color:#fff;text-transform:uppercase;font-size:40px;font-weight:700;margin:6px 0}.mec-event-cover-modern .mec-event-place{font-weight:400;font-size:18px;font-family:Roboto,sans-serif}@media only screen and (max-width:767px){.mec-event-cover-modern .mec-event-cover-a{width:100%}}.mec-event-cover-classic{position:relative;overflow:hidden;background:#fff;padding:6px;border:1px solid #e8e8e8}.mec-event-cover-classic .mec-event-overlay{position:absolute;left:6px;right:6px;bottom:6px;top:6px;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-cover-classic:hover .mec-event-overlay{background-color:rgba(36,36,36,.6)}.mec-event-cover-classic .mec-event-content{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out}.mec-event-cover-classic .mec-event-date{font-size:14px;text-transform:uppercase;font-weight:400;line-height:1.6}.mec-event-cover-classic .mec-event-date span{display:block;font-weight:700;font-size:16px}.mec-event-cover-classic .mec-event-title{color:#fff;margin:20px 0 38px;font-size:24px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-cover-classic .mec-btn-wrapper{text-align:left}.mec-event-cover-classic .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-cover-classic .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:12px 20px;letter-spacing:3px;font-size:12px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-cover-classic .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-cover-classic .mec-event-image img{min-width:100%}@media only screen and (max-width:960px){.mec-event-cover-classic .mec-event-content{padding:20px}.mec-event-cover-classic .mec-event-button{font-size:11px;padding:7px 10px;letter-spacing:1px}.mec-event-cover-classic .mec-event-title{font-size:19px;margin:15px 0 25px}.mec-event-cover-classic .mec-event-date{font-size:12px}}@media only screen and (max-width:767px){.mec-event-cover-classic{margin-bottom:30px}}@media only screen and (max-width:479px){.mec-event-cover-classic .mec-event-content{padding:15px;font-size:15px}.mec-event-cover-classic .mec-event-title{font-size:15px;margin:10px 0}.mec-event-cover-classic .mec-event-button{font-size:10px;padding:6px;letter-spacing:1px}.mec-event-cover-classic .mec-event-icon{padding:10px}}.mec-load-more-wrap{text-align:center;display:block;width:100%;padding-top:20px;text-align:center;position:relative}.mec-load-more-button{box-shadow:none;transition:all .21s ease;font-size:12px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:2px solid #e8e8e8;border-radius:50px;padding:0 28px;margin-bottom:20px;cursor:pointer;line-height:40px;font-family:Montserrat,Helvetica,Arial,sans-serif;height:42px;display:inline-block}.mec-load-more-button:hover{background:#191919;color:#fff;border-color:#191919}.mec-load-more-loading{content:url(../img/ajax-loader.gif);cursor:wait;background:0 0;border-style:none}.mec-load-more-loading:hover{background:0 0}.mec-modal-preloader,.mec-month-navigator-loading{width:100%;height:100%;background:no-repeat rgba(255,255,255,.88) url(../img/ajax-loader.gif) center;border-style:none;position:fixed;left:0;right:0;bottom:0;top:0;z-index:9}.mec-event-calendar-classic .mec-calendar-side .mec-calendar-table{min-height:1024px}.mec-calendar-side .mec-calendar-table{min-height:450px}.mec-skin-weekly-view-events-container.mec-month-navigator-loading{margin-top:0}.mec-calendar.mec-event-calendar-classic .mec-calendar-side{display:block}.mec-skin-daily-view-events-container.mec-month-navigator-loading{margin-top:0}@media only screen and (min-width:961px){.mec-wrap.mec-sm959 .mec-calendar-side .mec-calendar-table{min-height:1px}}@media only screen and (max-width:479px){.mec-calendar-side .mec-calendar-table{min-height:1px}}.mec-event-cover-clean{position:relative;border:1px solid #e6e6e6;padding:8px}.mec-event-cover-clean .mec-event-overlay{height:100%;background-color:rgba(36,36,36,.4);position:absolute;width:100%;left:0;border:8px solid #fff;top:0;transition:all .5s ease-in-out}.mec-event-cover-clean .mec-event-content{color:#fff;position:absolute;bottom:20px;padding:40px 60px;transition:all .5s ease-in-out}.mec-event-cover-clean .mec-event-title{color:#fff;font-weight:700;margin:46px 0 19px;font-size:29px;text-transform:uppercase;text-shadow:0 0 1px rgba(0,0,0,.5)}.mec-event-cover-clean .mec-event-title a{color:#fff;transition:all .5s;text-decoration:none;outline:0;border:none;box-shadow:none}.mec-event-cover-clean .mec-event-title a:hover{text-decoration:underline}.mec-event-cover-clean .mec-event-date{position:absolute;top:-20px;right:60px;color:#fff;width:60px;padding:14px 10px;z-index:1}.mec-event-cover-clean .mec-event-date div{text-align:center;text-transform:uppercase;letter-spacing:1px;line-height:16px}.mec-event-cover-clean .mec-event-date .dday{padding-bottom:15px;border-bottom:1px solid rgba(255,255,255,.5);margin-bottom:13px;font-size:24px}.mec-event-cover-clean .mec-event-date .dmonth{letter-spacing:2px}.mec-event-cover-clean .mec-event-place{font-size:18px;font-family:Roboto,sans-serif}.mec-event-cover-clean .mec-event-image img{width:100%}@media only screen and (max-width:768px){.mec-event-cover-clean .mec-event-content{padding:20px;bottom:5px}.mec-event-cover-clean .mec-event-title{font-size:23px}.mec-event-cover-clean .mec-event-date{right:20px;padding:10px;width:50px}}@media only screen and (max-width:479px){.mec-event-cover-clean .mec-event-content{padding:10px}.mec-event-cover-clean .mec-event-title{font-size:19px;padding-right:25px}.mec-event-cover-clean .mec-event-date{right:-20px;top:-10px}.mec-event-cover-clean .mec-event-detail{font-size:12px}}.mec-month-divider{text-align:center;margin:60px 0 40px 0}.widget .mec-month-divider{margin:10px 0}.mec-month-divider span{text-transform:uppercase;font-size:22px;font-weight:700;padding-bottom:5px;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative}.mec-month-divider span:before{border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-30px;left:50%;width:60px}.widget .mec-month-divider span{font-size:13px}.mec-event-list-standard .mec-events-pagination{margin-top:60px;border-top:4px solid #ebebeb;min-height:80px;padding-top:20px}.mec-event-list-standard .mec-events-pagination .mec-events-pag-previous{float:left;margin-left:0}.mec-event-list-standard .mec-events-pagination .mec-events-pag-next{float:right;margin-right:0}.mec-event-list-standard .mec-event-article{position:relative;display:block;margin-bottom:25px;border:1px solid #e9e9e9;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-list-standard .mec-topsec{display:table;width:100%}.mec-event-list-standard .col-md-3.mec-event-image-wrap{padding-left:0}.mec-event-list-standard .mec-event-content{padding-top:15px;padding-right:30px}.mec-event-list-standard .mec-event-title{font-size:29px;font-weight:700;letter-spacing:-1px;margin:0 0 10px}.mec-event-list-standard .mec-event-title a{color:#292929;transition:color .3s ease}.mec-event-list-standard .mec-col-table-c{display:table-cell;height:100%;vertical-align:middle;float:none!important}.mec-event-list-standard .mec-col-table-c.mec-event-meta-wrap{padding-top:15px}.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{vertical-align:top}.mec-topsec .mec-event-image{line-height:1px}.mec-event-list-standard .mec-event-meta-wrap{border-left:1px solid #eee}.mec-event-list-standard .mec-time-details{text-transform:uppercase;font-size:11px;font-weight:300;padding-top:0;text-align:left;padding-left:30px}.mec-event-list-standard .mec-event-meta .mec-event-address{font-style:normal;letter-spacing:0;font-size:13px;color:#8a8a8a}.mec-event-list-standard .mec-event-meta span.mec-event-d,.mec-event-list-standard .mec-event-meta span.mec-event-m{font-size:17px;font-weight:700;padding-right:6px;color:#444;text-transform:uppercase}.mec-event-list-standard .mec-date-details,.mec-event-list-standard .mec-local-time-details,.mec-event-list-standard .mec-time-details,.mec-event-list-standard .mec-venue-details{position:relative;padding-left:28px;margin-bottom:10px}.mec-event-list-standard .mec-date-details:before,.mec-event-list-standard .mec-local-time-details:before,.mec-event-list-standard .mec-time-details:before,.mec-event-list-standard .mec-venue-details:before{content:"\f041";font-family:fontawesome;position:absolute;left:6px;font-size:15px}.mec-event-list-standard .mec-date-details:before{content:"\f073"}.mec-event-list-standard .mec-time-details:before{content:"\f017"}.mec-event-list-standard .mec-local-time-details:before{content:"\f0ac"}.mec-event-list-standard .mec-local-time-details .mec-local-title{display:block}.mec-event-list-standard .mec-local-time-details .mec-local-date,.mec-event-list-standard .mec-local-time-details .mec-local-time{font-style:normal;letter-spacing:0;font-size:11px;color:#8a8a8a;font-weight:300;line-height:1.6}.mec-event-list-minimal .mec-event-title a{color:#292929;transition:color .3s ease}.mec-event-meta-wrap .mec-price-details{margin-bottom:10px}.mec-price-details i{margin-right:4px;vertical-align:text-top}.mec-event-meta-wrap .mec-event-meta .mec-price-details i:before{font-size:15px}.mec-event-list-standard .mec-price-details{text-transform:uppercase;font-size:11px;font-weight:300}.mec-event-list-standard .mec-price-details i{margin-left:6px}.mec-month-side .mec-price-details{margin-left:2px}.mec-event-article .mec-price-details i,.mec-month-side .mec-price-details i,.tooltipster-sidetip.tooltipster-shadow .tooltipster-content .mec-price-details i{padding-top:4px;vertical-align:unset}.mec-event-list-standard ul.mec-categories{position:relative;padding-left:28px;margin-bottom:10px}.mec-event-list-standard ul.mec-categories li.mec-category a:before{font-size:16px!important;content:"\f105";position:absolute;font-family:fontawesome;left:8px;font-size:15px}@media only screen and (max-width:960px){.mec-event-list-standard .mec-topsec{display:block}.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:block;width:40%}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{display:block;min-height:230px}.mec-event-list-standard .mec-event-meta-wrap{display:block;border-left:none;border-top:1px solid #eee;width:100%;float:none;padding-top:20px}}@media only screen and (min-width:480px) and (max-width:960px){.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:table-cell}}@media only screen and (max-width:479px){.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap img{float:none;width:100%;padding:0}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{padding:10px 10px 10px 30px}}.mec-localtime-details{color:#777;font-weight:400;line-height:12px;font-size:12px}.mec-localtime-details .mec-localdate,.mec-localtime-details .mec-localtime,.mec-localtime-details .mec-localtitle{display:inline-block}.mec-localtime-details .mec-start-date-label{padding-right:5px}.mec-localtime-details .mec-localtime{padding-left:5px}.mec-event-list-minimal .mec-localtime-details{display:inline-flex;font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;padding-left:9px}.mec-event-grid-classic .mec-localtime-details,.mec-event-grid-clean .mec-localtime-details{color:#fff;font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:-.02em;color:#fff;padding:0 0;line-height:18px;margin-top:-3px}.mec-event-grid-clean .mec-localtime-details,.mec-event-grid-colorful .mec-localtime-details,.tooltipster-box .mec-localtime-details{line-height:22px;padding-top:10px}.mec-event-grid-colorful .mec-localtime-details{color:#fff}.mec-event-grid-classic .mec-localtime-details{text-align:center}.mec-event-grid-minimal .mec-localtime-details{line-height:22px}.mec-wrap .mec-yearly-view-wrap .mec-localtime-wrap i{display:inline-block;margin-left:-1px}.mec-timetable-t2-content .mec-local-time-details{padding-left:19px}.mec-timetable-t2-content .mec-local-time-details{position:relative}.mec-timetable-t2-content .mec-local-time-details:before{content:"\e007";font-family:simple-line-icons;position:absolute;font-size:12px;margin-right:4px;left:0}.mec-masonry .mec-masonry-col6 .mec-localtime-details{margin-top:10px;line-height:21px}.mec-masonry .mec-masonry-col6 .mec-localtime-details i{height:auto}.mec-event-cover-classic .mec-localtime-details{color:#fff;margin-top:12px}.mec-event-cover-classic .mec-localtime-details i{padding-right:8px}.mec-event-cover-clean .mec-localtime-details{color:#fff;margin-bottom:20px}.mec-event-cover-modern .mec-localtime-details{color:#fff;margin:10px 0;font-weight:400;font-size:18px}.mec-event-countdown-style1 .mec-localtime-details,.mec-event-countdown-style2 .mec-localtime-details,.mec-event-countdown-style3 .mec-localtime-details{color:#fff;padding:8px 5px 0;font-size:14px;line-height:25px}.mec-event-countdown-style1 .mec-localtime-details{text-align:center}.mec-event-hover-carousel-type4 .mec-localtime-details{display:block;color:#fff;font-size:11px}.mec-event-footer-carousel-type3 .mec-localtime-details .mec-localdate,.mec-event-footer-carousel-type3 .mec-localtime-details .mec-localtime,.mec-event-footer-carousel-type3 .mec-localtime-details .mec-localtitle,.mec-event-footer-carousel-type3 .mec-localtime-details span{display:inline-flex;line-height:20px;text-align:left;margin:0!important;font-size:12px;color:#777;line-height:28px}.mec-owl-crousel-skin-type1 .mec-localtime-details{margin-top:-7px;margin-bottom:12px}.mec-wrap .mec-slider-t5 .mec-localtime-details{margin-top:14px;line-height:20px}.mec-wrap .mec-slider-t5 .mec-localtime-details i{font-size:18px;height:20px}.mec-timeline-event-local-time{background:rgba(64,217,241,.11);display:inline-block;padding:7px 20px 11px;border-radius:20px;line-height:1.24}.mec-timeline-event-local-time .mec-localtime-details{font-size:13px;font-weight:500;vertical-align:middle;margin-left:6px;color:inherit;line-height:24px}.mec-timeline-event-local-time .mec-localtime-details i{font-size:17px;vertical-align:middle;margin-left:-7px;padding-right:3px}.mec-booking-modal{background-color:#e6f7ff}.mec-booking-modal .mec-booking-shortcode .mec-book-form-gateway-label input[type=radio]:before{top:-1px}.mec-modal-booking-button{box-shadow:none;transition:all .21s ease;font-size:11px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:1px solid #e8e8e8;padding:12px 16px;line-height:37px;height:38px;margin:12px 0}.mec-modal-booking-button:hover{background:#191919;color:#fff;border-color:#191919}.mec-modal-booking-button.mec-mb-icon i{font-size:14px}.mec-event-list-classic .mec-modal-booking-button{height:0;line-height:1;margin:7px 0 0;display:inline-table;letter-spacing:0;padding:12px 14px}.mec-event-grid-novel ul.mec-categories{position:relative;line-height:30px;font-size:15px}.mec-event-grid-novel ul.mec-categories li.mec-category a{padding-left:35px;color:rgba(255,255,255,.4);line-height:30px;font-size:15px}.mec-event-grid-novel ul.mec-categories li.mec-category a:before{font-size:16px!important;content:"\f105";position:absolute;font-family:fontawesome;left:8px;font-size:15px;color:rgba(255,255,255,.4)}.mec-calendar-events-side .mec-modal-booking-button,.mec-event-container-classic .mec-modal-booking-button,.mec-event-grid-minimal .mec-modal-booking-button,.mec-event-list-minimal .mec-modal-booking-button,.mec-timetable-t2-col .mec-modal-booking-button{margin:0;color:#282828;font-size:12px;transition:all .5s ease;-webkit-transition:all .5s ease;position:relative;padding:0 0 0 24px;background:0 0;text-align:left;display:inline;border:0;font-weight:700}.mec-timetable-t2-col .mec-modal-booking-button{color:#fff;padding-left:19px}.mec-timetable-t2-col .mec-modal-booking-button:hover{color:#282828}.mec-event-list-minimal .mec-modal-booking-button{margin:0 4px 0 84px}.mec-calendar-events-side .mec-modal-booking-button:before,.mec-event-container-classic .mec-modal-booking-button:before,.mec-event-grid-minimal .mec-modal-booking-button:before,.mec-event-list-minimal .mec-modal-booking-button:before{content:'';position:absolute;background:#7a7272;width:18px;height:1px;left:0;top:45%;transition:all .1s ease;-webkit-transition:all .1s ease}.mec-skin-carousel-container .mec-modal-booking-button{line-height:70px}.mec-event-list-modern .mec-modal-booking-button.mec-mb-icon{border-radius:1px;letter-spacing:2px;border:1px solid #e6e6e6;color:#333;background-color:#fff;padding:13px 12px 13px 14px;font-weight:700;box-shadow:0 2px 0 0 rgba(0,0,0,.016);transition:all .28s ease;line-height:unset}.mec-event-list-modern .mec-modal-booking-button.mec-mb-icon:hover{border-color:#222;background:#222;color:#fff}.mec-event-footer .mec-modal-booking-button,.mec-skin-carousel-container .mec-event-footer-carousel-type2 .mec-modal-booking-button{position:absolute;top:20px;right:125px;margin:0;padding:0 16px;line-height:37px}.mec-skin-carousel-container .mec-event-footer-carousel-type2 .mec-modal-booking-button{top:0;line-height:41px;height:41px;right:121px}.mec-skin-carousel-container .mec-event-footer-carousel-type3 .mec-modal-booking-button{line-height:18px;font-size:12px;letter-spacing:0;float:right;height:41px;margin:0 12px 0 0}.mec-skin-carousel-container .mec-owl-crousel-skin-type4 .mec-modal-booking-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:10px 14px;letter-spacing:1.5px;font-size:11px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none;margin:0 0 0 12px}.mec-skin-carousel-container .mec-owl-crousel-skin-type4 .mec-modal-booking-button:hover{color:#191919;background-color:#fff;border:2px #fff solid}.mec-event-grid-modern .mec-event-footer .mec-modal-booking-button{right:auto;left:110px}.mec-event-grid-simple .mec-modal-booking-button,.mec-events-agenda .mec-modal-booking-button{margin:0;font-size:12px;transition:all .5s ease;-webkit-transition:all .5s ease;position:relative;padding:0;background:0 0;text-align:left;display:inline;border:0;font-weight:700}.mec-events-agenda .mec-modal-booking-button{display:block;height:unset;padding-left:173px;line-height:14px;margin-bottom:7px}.mec-yearly-view-wrap .mec-modal-booking-button{margin:0;padding-left:14px;text-transform:capitalize}.mec-event-grid-novel .mec-event-footer .mec-modal-booking-button.mec-mb-icon{right:auto;left:238px;width:36px;height:36px;display:table-cell;vertical-align:middle;padding:0 10px;border-color:rgba(255,255,255,.1);background-color:rgba(0,0,0,0);color:#fff;border-radius:36px}.mec-event-grid-novel .mec-event-footer .mec-modal-booking-button.mec-mb-icon:hover{background-color:rgba(255,255,255,.1)}.mec-event-grid-simple .mec-modal-booking-button:hover,.mec-events-agenda .mec-modal-booking-button:hover,.mec-events-yearlu .mec-modal-booking-button:hover{color:#191919}.mec-event-masonry .mec-event-footer .mec-modal-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05);right:auto;left:155px}.mec-timeline-event .mec-modal-booking-button{position:absolute;top:0;right:0;display:inline-block;padding:7px 20px 7px;line-height:22px;height:unset;border:unset;text-transform:capitalize;font-weight:500;font-size:13px;letter-spacing:0;margin:0;border-radius:0 0 0 10px}.mec-timeline-event .mec-modal-booking-button:hover{background:#191919;color:#fff}.mec-skin-daily-view-events-container .mec-modal-booking-button,.mec-weekly-view-dates-events .mec-event-article .mec-modal-booking-button{position:absolute;top:50%;transform:translateY(-50%);right:15px;line-height:26px;height:49px;border:unset;text-align:center;display:inline-block;background:#ededed;color:#191919;padding:12px;border-radius:2px;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:2px;transition:all .24s ease;margin:0}.mec-skin-daily-view-events-container .mec-modal-booking-button:hover,.mec-weekly-view-dates-events .mec-event-article .mec-modal-booking-button:hover{background:#292929;color:#fff}@media(max-width:1023px){.mec-skin-daily-view-events-container .mec-modal-booking-button,.mec-weekly-view-dates-events .mec-event-article .mec-modal-booking-button{position:relative;top:unset;transform:unset;margin:14px 16px 0;padding:8px;line-height:20px;height:35px}}@media(max-width:768px){.featherlight .featherlight-inner{width:100%}.mec-events-agenda .mec-modal-booking-button{padding:0}}@media(max-width:480px){.mec-booking-modal .mec-events-meta-group-booking-shortcode{padding:20px}.mec-booking-modal .mec-booking-shortcode .mec-book-reg-field-mec_email,.mec-booking-modal .mec-booking-shortcode .mec-book-reg-field-name{width:100%}.mec-booking-modal .mec-booking-shortcode button#mec-book-form-btn-step-2{margin-left:20px}.mec-booking-modal .mec-booking-shortcode .mec-click-pay button[type=submit]{bottom:22px}.mec-calendar-events-side .mec-modal-booking-button:before,.mec-event-container-classic .mec-modal-booking-button:before,.mec-event-grid-minimal .mec-modal-booking-button:before,.mec-event-list-minimal .mec-modal-booking-button:before{display:none}.mec-calendar-events-side .mec-modal-booking-button,.mec-event-container-classic .mec-modal-booking-button,.mec-event-grid-minimal .mec-modal-booking-button,.mec-event-list-minimal .mec-modal-booking-button,.mec-timetable-t2-col .mec-modal-booking-button{margin:0;padding:0}.mec-event-grid-modern .mec-event-footer .mec-booking-button{top:20px}}.mec-wrap .mec-events-cal-links{margin-bottom:0}.mec-single-event #mec-wrap{padding:0;margin-top:35px}.mec-wrap .mec-single-title{margin-top:0;margin-bottom:30px;font-weight:700;font-size:33px}.mec-single-event .mec-event-content{padding:40px 0 30px;margin-bottom:10px}.mec-single-event .mec-events-meta-group-booking,.mec-single-event .mec-frontbox{margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-wrap #main-content{overflow:hidden;padding-top:35px}.mec-single-event .mec-map-get-direction-address-cnt{position:relative}.mec-single-event .mec-map-get-direction-address-cnt input.mec-map-get-direction-address{width:100%;height:46px;padding:13px 10px;margin-bottom:0;background:#fcfcfc;border:1px solid #e0e0e0;border-radius:0;box-shadow:inset 0 2px 5px rgba(0,0,0,.081)}.mec-single-event .mec-map-get-direction-address-cnt input.mec-map-get-direction-address:focus{color:#444;background:#fff;border-color:#b0b0b0;box-shadow:0 0 3px rgba(0,0,0,.2)}.mec-single-event .mec-map-get-direction-btn-cnt input{width:100%}.mec-single-event .mec-map-get-direction-reset{position:absolute;z-index:2;top:5px;right:10px;font-size:11px;cursor:pointer}.mec-events-meta-group-tags{margin-top:20px}.mec-events-meta-group-tags a{display:inline-block;color:#444;font-size:11px;text-transform:uppercase;letter-spacing:1.5px;font-weight:500;padding:3px 7px;border:1px solid #ddd;border-radius:2px;background:#fff;margin:1px 3px}.mec-events-meta-group-tags a:hover{text-decoration:underline;background:#f9f9f9}.mec-local-time-details li{list-style:none}.mec-single-event:not(.mec-single-modern) .mec-local-time-details{background:#f7f7f7;padding:12px 14px 8px;margin-bottom:12px;vertical-align:baseline;position:relative;border:none}.mec-single-event:not(.mec-single-modern) .mec-local-time-details ul{margin:0;padding-left:35px}.mec-single-event:not(.mec-single-modern) .mec-local-time-details h3{border:none;padding-left:15px}.mec-single-event:not(.mec-single-modern) .mec-local-time-details h3:before{display:none}.mec-single-event.mec-single-modern i.mec-sl-speedometer{display:none}.mec-single-event .mec-events-meta-group-booking{padding-bottom:30px}.mec-single-event .mec-events-meta-group-booking ul{list-style:none;margin-left:0;padding-left:0}.mec-single-event .mec-booking .mec-book-bfixed-fields-container{padding-left:15px}.mec-single-event .mec-events-meta-group-booking ul li{padding:0;list-style:none;margin-top:40px}.mec-single-event .mec-events-meta-group-booking h4{margin-bottom:20px;font-size:23px;font-weight:700}.mec-single-event .mec-events-meta-group-booking li h4{font-size:19px}.mec-single-event .mec-events-meta-group-booking button,.mec-single-event .mec-events-meta-group-booking input{border-radius:0;margin-bottom:6px}.mec-single-event .mec-events-meta-group-booking button{min-width:155px;margin-top:5px;margin-left:10px;border-radius:2px;box-shadow:0 2px 1px rgba(0,0,0,.08)}.mec-single-event .mec-events-meta-group-booking button.mec-book-form-back-button{background:#c4cace;float:left}.mec-single-event .mec-events-meta-group-booking button.mec-book-form-back-button:hover{background:#000}.mec-single-event .mec-events-meta-group-booking button.mec-book-form-next-button{float:left;margin-left:0}button#mec-book-form-back-btn-step-3{float:none}.mec-next-occ-booking,.mec-next-occ-booking-p{padding-left:15px}.mec-book-username-password-wrapper{padding:0 15px}.lity-container .mec-next-occ-booking,.lity-container .mec-next-occ-booking-p{padding-left:0}.mec-single-event .mec-events-meta-group-booking .mec-click-pay{max-width:350px}.mec-single-event .mec-events-meta-group-booking .mec-click-pay #mec_woo_add_to_cart_btn_r,.mec-single-event .mec-events-meta-group-booking .mec-click-pay button.mec-book-form-next-button{float:right}.mec-single-event .mec-events-meta-group-booking .mec-click-pay #mec_woo_add_to_cart_btn_r:hover,.mec-single-event .mec-events-meta-group-booking .mec-click-pay button.mec-book-form-next-button:hover{background:#000}.lity-container .mec-click-pay{max-width:400px}.lity-container .mec-book-form-btn-wrap button.mec-book-form-next-button,.lity-container .mec-click-pay #mec_woo_add_to_cart_btn_r{float:right}.lity-container button.mec-book-form-next-button{float:right}.lity-container .mec-click-pay #mec_woo_add_to_cart_btn_r:hover,.lity-container .mec-click-pay button.mec-book-form-next-button:hover{background:#000}.mec-single-event .mec-events-meta-group-booking .mec-click-next{float:right;position:relative;width:calc(100% - 186px)}.lity-container .mec-click-next{float:right;position:relative;width:calc(100% - 186px)}.mec-single-event .mec-book-form-coupon button{margin-left:0}.mec-single-event .mec-book-form-gateway-checkout button{margin-left:0}.mec-single-event .mec-single-event .mec-book-form-gateway-checkout button{margin-right:20px}.lity-content .mec-book-form-back-button{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-right:10px;line-height:1;padding:18px 20px 16px;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;min-width:170px;margin-top:5px;border-radius:0;margin-bottom:6px;background:#c4cace}.lity-content .mec-book-form-back-button:hover{background:#000}.lity-content button#mec-book-form-back-btn-step-3{float:none}.lity-content .mec-book-form-next-button{float:left}.lity-content .mec-book-bfixed-fields-container{list-style:none;padding-left:0}.mec-single-event .mec-book-first,.mec-single-event .mec-book-form-gateways,.mec-single-event .mec-book-form-price,.mec-single-event .mec-event-tickets-list,.mec-single-event form.mec-click-next{padding-left:0;padding-right:0}.mec-single-event label.mec-fill-attendees{margin-left:0}.mec-wrap .mec-events-meta-group-booking #mec-book-form-back-btn-step-2,.mec-wrap .mec-events-meta-group-booking #mec-book-form-back-btn-step-3,.mec-wrap .mec-events-meta-group-booking #mec-book-form-btn-step-1{margin-left:0}.mec-wrap .mec-booking-form-container .col-md-12{padding-left:0}.mec-wrap .mec-events-meta-group-booking .mec-wrap-checkout.row{margin:0}.mec-wrap .mec-wrap-checkout .mec-book-form-gateways .mec-book-form-gateway-label{padding-left:3px}.mec-wrap p.mec-gateway-comment{margin-top:20px}.mec-single-event .mec-events-meta-group-booking .mec-event-ticket-available{display:block;margin-bottom:20px;margin-top:-17px;font-size:11px;color:#8a8a8a}.mec-single-event .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.mec-single-event .mec-events-meta-group-booking form{margin:0}.mec-single-event .mec-events-meta-group-booking h5 span,.mec-single-event .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;display:block;clear:none;padding:5px 1em 3px 0}.mec-single-event .mec-events-meta-group-booking h5 span{display:inline-block}.mec-single-event .mec-events-meta-group-booking h5 span.mec-ticket-variation-name{padding-right:5px;text-transform:capitalize}.mec-single-event .mec-events-meta-group-booking input::-webkit-input-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input:-moz-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:330px;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both}.wbmec-mandatory{padding-left:5px;font-size:14px}.mec-single-event .mec-events-meta-group-booking .mec-red-notification input,.mec-single-event .mec-events-meta-group-booking .mec-red-notification select,.mec-single-event .mec-events-meta-group-booking .mec-red-notification textarea{border:1px solid #ff3c3c!important}.lity .mec-events-meta-group-booking .mec-red-notification input[type=checkbox],.lity .mec-events-meta-group-booking .mec-red-notification input[type=radio],.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=checkbox],.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=radio]{outline:1px solid #ff3c3c!important}.lity .mec-book-ticket-container .mec-red-notification input,.lity .mec-book-ticket-container .mec-red-notification select,.lity .mec-book-ticket-container .mec-red-notification textarea{border:1px solid #ff3c3c!important}@media only screen and (max-width:479px){.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{width:100%}}.mec-single-event .mec-events-meta-group-booking input[type=email]:focus,.mec-single-event .mec-events-meta-group-booking input[type=number]:focus,.mec-single-event .mec-events-meta-group-booking input[type=password]:focus,.mec-single-event .mec-events-meta-group-booking input[type=tel]:focus,.mec-single-event .mec-events-meta-group-booking input[type=text]:.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking select:focus,.mec-single-event .mec-events-meta-group-booking textarea:focus,focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-single-event .mec-events-meta-group-booking input[type=checkbox],.mec-single-event .mec-events-meta-group-booking input[type=radio]{margin-right:6px;margin-top:5px;min-height:20px;clear:none;margin:0 0 0 2px}.lity-container .mec-events-meta-group-booking input[type=radio]:before,.mec-single-event .mec-events-meta-group-booking input[type=radio]:before{content:"";display:inline-block;background:#fff;border-radius:18px;width:18px;height:18px;margin:-1px 0 0 -3px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32)}.lity-container .mec-events-meta-group-booking input[type=radio]:checked:before,.mec-single-event .mec-events-meta-group-booking input[type=radio]:checked:before{border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff}.lity-container .mec-events-meta-group-booking input[type=radio],.mec-single-event .mec-events-meta-group-booking input[type=radio]{min-height:0;margin:0;margin-right:6px}.mec-single-event .mec-events-meta-group-booking input[type=checkbox]{float:left}.lity-container .mec-events-meta-group-booking .mec_book_first_for_all,.mec-single-event .mec-events-meta-group-booking .mec_book_first_for_all{display:none}.mec-events-meta-group-booking ul.mec-book-price-details{list-style:none;border:1px solid #eee;padding:0;overflow:hidden}.mec-events-meta-group-booking ul.mec-book-price-details li{font-size:15px;color:#a9a9a9;list-style:none;padding:13px 18px;margin:0;float:left;border-right:1px solid #eee}.mec-events-meta-group-booking ul.mec-book-price-details li:last-child{border-right:none}.mec-events-meta-group-booking ul.mec-book-price-details li span.mec-book-price-detail-amount{font-weight:700;font-size:21px;color:#222}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label{height:14px;width:14px;background-color:transparent;border:1px solid #d4d4d4;position:relative;display:inline-block;-moz-transition:border-color ease .2s;-o-transition:border-color ease .2s;-webkit-transition:border-color ease .2s;transition:border-color ease .2s;cursor:pointer;box-shadow:0 2px 16px -2px rgba(0,0,0,.2);vertical-align:middle;margin-right:3px;margin-top:-2px}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label{border-color:#008aff;box-shadow:0 2px 14px -3px #008aff}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:after,.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:before,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:after,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:before{position:absolute;height:0;width:1px;background-color:#008aff;display:inline-block;-moz-transform-origin:left top;-ms-transform-origin:left top;-o-transform-origin:left top;-webkit-transform-origin:left top;transform-origin:left top;content:'';-webkit-transition:opacity ease .5;-moz-transition:opacity ease .5;transition:opacity ease .5}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:before,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:before{top:8px;left:7px;box-shadow:0 0 0 2px #fff;-moz-transform:rotate(-145deg);-ms-transform:rotate(-145deg);-o-transform:rotate(-145deg);-webkit-transform:rotate(-145deg);transform:rotate(-145deg)}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::before,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::before{height:12px;-moz-animation:dothatopcheck .16s ease 0s forwards;-o-animation:dothatopcheck .16s ease 0s forwards;-webkit-animation:dothatopcheck .16s ease 0s forwards;animation:dothatopcheck .16s ease 0s forwards}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:after,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:after{top:6px;left:3px;-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::after,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::after{-moz-animation:dothabottomcheck 80ms ease 0s forwards;-o-animation:dothabottomcheck 80ms ease 0s forwards;-webkit-animation:dothabottomcheck 80ms ease 0s forwards;animation:dothabottomcheck 80ms ease 0s forwards;height:4px}.mec-single-event .mec-events-meta-group-booking button[type=submit]:after,.mec-single-event a.button:after{display:none;font-family:simple-line-icons;content:"\e098";margin-left:4px;-webkit-animation:rotating 1.2s linear infinite;-moz-animation:rotating 1.2s linear infinite;-ms-animation:rotating 1.2s linear infinite;-o-animation:rotating 1.2s linear infinite;animation:rotating 1.2s linear infinite}.mec-single-event .mec-events-meta-group-booking button[type=submit].loading:after,.mec-single-event a.button.loading:after{display:inline-block}.mec-single-event .mec-event-export-module{display:block}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul{display:table;width:100%}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li{display:table-cell}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li:last-child{text-align:right}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a:hover{color:#fff}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul{padding-left:0;margin:15px 5px}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting{padding-left:0;margin:0}.mec-ticket-price{margin-left:10px;font-size:13px;font-weight:300}.mec-book-reg-field-checkbox label,.mec-book-reg-field-radio label{line-height:1.36}.mec-book-reg-field-checkbox input[type=checkbox],.mec-book-reg-field-radio input[type=radio]{float:left;margin-right:5px!important}.mec-ticket-available-spots .mec-event-ticket-description,.mec-ticket-available-spots .mec-event-ticket-price{font-size:11px}.mec-book-ticket-container .mec-reg-mandatory:nth-child(2) label:after,.mec-book-ticket-container .mec-reg-mandatory:nth-child(3) label:after,.mec-book-ticket-container .wbmec-mandatory{content:"";color:red;width:50px;height:50px;font-size:14px;padding-left:5px}@media only screen and (max-width:767px){.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li{width:100%;min-height:40px;margin-bottom:15px;text-align:center;float:none;display:block}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a{width:100%;padding-left:0;padding-right:0;text-align:center;display:block;font-size:12px}}.mec-single-event .mec-events-meta-group{margin-bottom:0}@media only screen and (max-width:767px){.mec-single-event .mec-events-meta-group-booking{margin-bottom:30px}}.mec-single-event .mec-event-meta dt,.mec-single-event .mec-event-meta h3{text-transform:uppercase;font-size:16px;font-weight:700;padding-bottom:5px;display:inline;color:#000;padding-left:10px}.mec-single-event .mec-event-meta h6{text-transform:uppercase;font-size:13px;padding-bottom:5px;display:inline;color:#222;padding-left:0}.mec-single-event .mec-event-meta .mec-events-event-categories a,.mec-single-event .mec-event-meta dd{font-size:14px;color:#8d8d8d}.mec-single-event .mec-event-meta .mec-location dd.author{color:#3c3b3b}.mec-single-event .mec-event-meta dd{margin:0;padding-left:35px}.mec-single-event .mec-event-meta dd.mec-events-event-categories{min-height:35px;line-height:35px}@media only screen and (max-width:480px){.single-mec-events .lity-container{width:100%}.single-mec-events .lity-content .mec-events-meta-group-booking{padding:20px;width:85%;margin:0 auto}}.mec-single-event .mec-event-meta dd.mec-events-event-categories:first-of-type{padding-top:5px}.mec-single-event .mec-event-meta dd.mec-events-event-categories:last-of-type{border-bottom:0}.mec-single-event .mec-event-meta dd a{color:#8d8d8d;transition:all .2s ease}.mec-single-event .mec-event-meta dd a i:before{font-size:16px!important}.mec-single-event .mec-event-meta dd a i{margin-right:8px}.mec-single-event .mec-event-meta dl{margin-bottom:0}.mec-single-event .mec-event-meta .mec-events-event-cost{font-size:18px}.mec-single-event .mec-event-meta .mec-events-address{color:#a9a9a9;margin-bottom:3px}.mec-single-event .mec-event-meta .mec-events-meta-group-venue .author{margin-bottom:0;color:#8d8d8d;font-size:13px}.mec-single-event .mec-events-event-image{margin-bottom:0}.mec-single-event h2.mec-single-event-title{margin-bottom:30px;font-weight:700;font-size:33px}.mec-single-event .mec-booking-button{border-bottom:none;letter-spacing:.5px;line-height:48px;height:76px;transition:all .5s ease;color:#fff;padding:16px;display:block;text-align:center;font-size:16px;border-radius:2px;box-shadow:0 1px 2px rgba(0,0,0,.15)}.mec-single-event .mec-booking-button:hover{background-color:#101010!important}.mec-single-event .mec-event-tags a{display:inline-block;color:#444;font-size:11px;text-transform:uppercase;letter-spacing:1.5px;font-weight:500;padding:3px 7px;border:1px solid #ddd;border-radius:2px;background:#fff;margin:1px 3px}.mec-single-event .mec-event-tags:before{font-size:24px;color:#303030;margin-right:5px;content:"\f02c";font-family:fontawesome}.mec-single-event .mec-event-tags{padding-top:13px}.mec-single-event .mec-event-sharing{margin:30px 0 10px}.mec-region.mec-events-abbr,.mec-single-event .mec-street-address{font-style:normal;font-size:13px}.mec-events-meta-group.mec-events-meta-group-venue:before,.mec-single-event-date:before,.mec-single-event-time:before{color:#40d9f1}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-event-social h3{text-transform:uppercase;font-size:15px;font-weight:700;padding-bottom:5px;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative}.mec-single-event .mec-social-single:before{padding:13px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:39px}.mec-single-event .mec-event-social .event-sharing{margin-top:30px}.mec-single-event .mec-event-social ul{list-style:none;margin-left:0}.mec-single-event .mec-event-social li.mec-event-social-icon{display:inline-block}.mec-single-event .mec-event-social li.mec-event-social-icon a{display:inline-block;color:#fff;width:40px;height:40px;padding:9px;font-size:16px;margin-right:5px;margin-bottom:5px}.mec-single-event .mec-event-social a.facebook{background:#3b5996}.mec-single-event .mec-event-social a.facebook:hover{background:#28385c}.mec-single-event .mec-event-social a.twitter{background:#00acee}.mec-single-event .mec-event-social a.twitter:hover{background:#0087bd}.mec-single-event .mec-event-social a.vimeo{background:#0dadd6}.mec-single-event .mec-event-social a.vimeo:hover{background:#0a85a3}.mec-single-event .mec-event-social a.dribble{background:#d53e68}.mec-single-event .mec-event-social a.dribble:hover{background:#bf4c78}.mec-single-event .mec-event-social a.youtube{background:#cb322c}.mec-single-event .mec-event-social a.youtube:hover{background:#992622}.mec-single-event .mec-event-social a.pinterest{background:#cb2027}.mec-single-event .mec-event-social a.pinterest:hover{background:#99181d}.mec-single-event .mec-event-social a.google{background:#c3391c}.mec-single-event .mec-event-social a.google:hover{background:#99181f}.mec-single-event .mec-event-social a.linkedin{background:#0073b2}.mec-single-event .mec-event-social a.linkedin:hover{background:#005380}.mec-single-event .mec-event-social a.email{background:#ff5d5e}.mec-single-event .mec-event-social a.email:hover{background:#cc4949}.mec-single-event .mec-event-social a.vk{background:#5b88bd}.mec-single-event .mec-event-social a.vk:hover{background:#3d608a}.mec-single-event .mec-event-social a.tumblr{background:#34465d}.mec-single-event .mec-event-social a.tumblr:hover{background:#273649}.mec-single-event .mec-event-social a.telegram{background:#08c}.mec-single-event .mec-event-social a.telegram:hover{background:#1076be}.mec-single-event .mec-event-social a.whatsapp{background:#25d366}.mec-single-event .mec-event-social a.whatsapp:hover{background:#23ac55}.mec-single-event .mec-event-social a.flipboard{background:#e12828}.mec-single-event .mec-event-social a.flipboard:hover{background:#af1e1e}.mec-single-event .mec-event-social a.pocket{background:#ef4056}.mec-single-event .mec-event-social a.pocket:hover{background:#8d1717}.mec-single-event .mec-event-social a.reddit{background:#ff5700}.mec-single-event .mec-event-social a.reddit:hover{background:#c94909}.mec-single-event .mec-event-social a.flipboard svg,.mec-single-event .mec-event-social a.telegram svg{height:16px}.mec-single-event .mec-event-social li.mec-event-social-icon a svg{display:unset}.mec-single-event .mec-event-social a.rss{background:#f29a1d}.mec-single-event .mec-event-social a.rss:hover{background:#cc7400}.mec-single-event .mec-event-social a.instagram{background:#457399}.mec-single-event .mec-event-social a.instagram:hover{background:#2e4d66}.mec-single-event .mec-event-social a.linkedin{background:#457399}.mec-single-event .mec-event-social a.linkedin:hover{background:#2e4d66}.mec-single-event .mec-event-social a.other-social{background:#ff5d5e}.mec-single-event .mec-event-social a.other-social:hover{background:#cc4949}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4,.mec-single-event .mec-frontbox-title,.mec-single-event .mec-wrap-checkout h4{text-transform:uppercase;font-size:15px;font-weight:700;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative;text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4:before,.mec-single-event .mec-frontbox-title:before,.mec-single-event .mec-wrap-checkout h4:before{padding:1px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-35px;left:50%}.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-month],.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-year]{width:47%!important;margin-right:12px;margin-top:5px;display:inline-block!important}@media(max-width:768px){.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-month],.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-year]{width:100%!important;margin-right:0;display:block!important}}.mec-event-meta i:before{font-size:20px;vertical-align:middle}.mec-event-meta .mec-single-event-additional-organizers i:before,.mec-event-meta .mec-single-event-organizer i:before{font-size:14px;vertical-align:baseline}#mec-wrap .mec-events-day-time-slot .mec-events-content{float:left;width:33%;padding:0 15px}#mec-wrap .mec-events-day-time-slot .mec-events-event-image{padding-left:0}#mec-events-content .mec-events-abbr{color:#8d8d8d;font-size:14px}.mec-single-event .mec-events-content{margin-bottom:30px}.mec-single-event .mec-organizer-url a{word-wrap:break-word}.mec-single-event #headline{margin:0 0 10px}.mec-single-event #headline h2{padding:0}.mec-single-event .mec-events-meta-group.mec-events-meta-group-gmap .mec-events-venue-map{margin-top:0;padding:8px;border:1px solid #e5e5e5;border-radius:7px}#mec-events-gmap-0{height:325px!important}.mec-events-list .mec-events-day-time-slot .mec-events-event-meta{width:33%;float:left;padding:40px;height:auto;margin:0}.mec-events-day-time-slot .mec-events-content.description.entry-summary{font-size:15px;font-weight:300;color:#8d8d8d}.mec-events-day-time-slot .type-mec_events h2{font-size:28px;padding-bottom:20px}.mec-events-day .mec-events-day-time-slot .type-mec_events{margin:0}.mec-events-day .mec-events-day-time-slot h5{background-color:#8d8d8d}.mec-single-event .mec-event-meta .mec-single-event-additional-organizers .mec-events-single-section-title,.mec-single-event .mec-event-meta .mec-single-event-organizer .mec-events-single-section-title,.mec-single-event .mec-events-meta-date h3{padding-left:0;margin:10px;display:inline-block}.mec-single-event .mec-events-meta-date h3{width:100%}.mec-single-event .mec-events-event-image{border:0}.mec-single-event .mec-events-venue-map{padding:0}.mec-event-cost,.mec-event-more-info,.mec-event-website,.mec-events-meta-date,.mec-single-event-additional-organizers,.mec-single-event-category,.mec-single-event-date,.mec-single-event-label,.mec-single-event-location,.mec-single-event-organizer,.mec-single-event-time{background:#f7f7f7;padding:12px 14px 8px;margin-bottom:12px;vertical-align:baseline;position:relative}.mec-single-event .mec-events-meta-date dd,.mec-single-event .mec-single-event-additional-organizers dd,.mec-single-event .mec-single-event-organizer dd{padding-left:0;margin-bottom:10px}.mec-single-event .mec-events-meta-date dd span,.mec-single-event .mec-single-event-additional-organizers dd span,.mec-single-event .mec-single-event-organizer dd span{display:block;padding-left:12px;color:#8d8d8d}.mec-single-event .mec-events-meta-date i,.mec-single-event .mec-single-event-additional-organizers i,.mec-single-event .mec-single-event-organizer i{margin-right:10px;margin-left:12px}.mec-events-meta-group.mec-events-meta-group-venue dl{margin-bottom:0}address.mec-events-address{line-height:19px;font-style:normal;font-size:12px}.mec-single-event .mec-event-content dt{margin-top:5px}.mec-single-event .mec-single-event-additional-organizers .mec-single-event-additional-organizer{margin-bottom:15px;padding-bottom:5px;border-bottom:1px solid #e4e4e4}.mec-single-event .mec-single-event-additional-organizers .mec-single-event-additional-organizer:last-child{margin-bottom:0;padding-bottom:0;border:none}.mec-event-schedule-content{border-left:4px solid #f0f0f0;padding-top:10px;margin-top:30px;margin-left:25px;margin-bottom:20px;color:#8a8a8a}.mec-event-schedule-content dl{padding-left:24px;font-size:12px;position:relative;margin-bottom:35px}.mec-event-schedule-content dl:before{content:'';display:block;position:absolute;left:0;top:4px;width:20px;height:0;border-top:4px solid #f0f0f0}.mec-event-schedule-content dl dt{margin:0 0 10px;line-height:1.16}.mec-event-schedule-content dl dt.mec-schedule-title{font-size:13px;color:#5a5a5a;font-weight:700}.mec-event-schedule-content dl dt.mec-schedule-description{font-weight:300}.mec-event-schedule-content .mec-schedule-speakers{background:#f7f7f7;padding:10px}.mec-wrap .mec-event-schedule-content h6{font-size:13px;color:#5a5a5a;font-weight:700;display:inline-block}.mec-wrap .mec-event-schedule-content a{font-weight:400;color:#5a5a5a;transition:all .1s ease}.single-mec-events .mec-speakers-details ul{padding:0}.mec-single-event .mec-speakers-details ul li{list-style:none;background:#f7f7f7;padding:5px 5px 18px 5px;margin-top:14px}.mec-single-event .mec-speakers-details ul li a{-webkit-transition:.2s all ease;transition:.2s all ease}.mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a img{float:left;border-radius:50%;transition:.2s all ease;border:2px solid transparent;width:68px;height:68px}.mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a:hover img{border-color:#40d9f1}.mec-single-event .mec-speakers-details ul li .mec-speaker-name{display:inline-block;margin-top:10px;font-size:15px;line-height:1.8;text-transform:capitalize;font-weight:700;padding-left:8px}.mec-single-event .mec-speakers-details ul li .mec-speaker-job-title{display:block;font-size:12px;margin-top:-1px;padding-left:75px;color:#888}.mec-single-event-location img,.mec-single-event-organizer img{margin-bottom:10px;width:100%}.mec-qrcode-details{text-align:center}.mec-time-comment{font-size:11px}.mec-wrap .mec-attendees-list-details p{font-weight:300;margin:20px 0 0 0;color:#8d8d8d}.mec-wrap .mec-attendees-list-details li{list-style:none;display:block;margin-top:15px}.mec-wrap .mec-attendees-list-details li .mec-attendee-avatar{display:inline-block}.mec-wrap .mec-attendees-list-details li .mec-attendee-profile-link{display:inline-block;vertical-align:top;margin-left:10px}.mec-attendees-list-details ul{margin-bottom:0}.mec-attendees-list-details .mec-attendee-profile-link a{color:#8d8d8d;display:block}.mec-attendees-list-details .mec-attendee-profile-link span{display:inline-block;color:#000;vertical-align:middle;cursor:pointer}.mec-attendees-list-details span.mec-attendee-profile-ticket-number{border-radius:50px;width:20px;height:20px;font-size:12px;text-align:center;color:#fff;margin-right:4px;line-height:20px}#wrap .mec-attendees-list-details span.mec-attendee-profile-ticket-number{line-height:19px}.mec-attendees-list-details .mec-attendee-profile-link span i{vertical-align:middle;font-size:9px;font-weight:700;margin-left:5px}.mec-attendees-list-details .mec-attendees-toggle{border:1px solid #e6e6e6;background:#fafafa;padding:15px 15px 0;border-radius:3px;margin:12px 0 20px 52px;position:relative;font-size:13px;box-shadow:0 3px 1px 0 rgba(0,0,0,.02)}.mec-attendees-list-details .mec-attendees-toggle:after,.mec-attendees-list-details .mec-attendees-toggle:before{content:'';display:block;position:absolute;left:50px;width:0;height:0;border-style:solid;border-width:10px}.mec-attendees-list-details .mec-attendees-toggle:after{top:-20px;border-color:transparent transparent #fafafa transparent}.mec-attendees-list-details .mec-attendees-toggle:before{top:-21px;border-color:transparent transparent #e1e1e1 transparent}.mec-attendees-list-details .mec-attendees-toggle .mec-attendees-item{padding-bottom:15px}.mec-attendees-list-details .mec-attendee-avatar img{border-radius:3px}.mec-attendee-avatar-sec{float:left;width:50px;margin-right:12px}.mec-attendee-profile-name-sec,.mec-attendee-profile-ticket-sec{float:left;width:calc(100% - 62px);margin-top:3px}.mec-calendar{margin-bottom:20px;border:1px solid #e8e8e8;width:100%;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-calendar .mec-calendar-topsec{display:table;background:#fff}.mec-calendar .mec-calendar-topsec .mec-calendar-events-sec{display:none}.mec-calendar .mec-calendar-side{width:590px;display:table-cell;padding:40px;position:relative;text-align:center;box-shadow:0 1px 5px 6px rgba(0,0,0,.005) inset}.mec-calendar .mec-calendar-events-side{display:table-cell;height:100%;border-left:1px solid #efefef;padding:40px;width:100%}.mec-calendar .mec-calendar-events-side .mec-table-side-day{width:46px;height:46px;margin:0 auto 20px;position:relative;text-align:center;line-height:46px;border:1px solid #40d9f1;border-radius:50%;font-size:12px;font-weight:600;padding:0}.mec-calendar .mec-calendar-events-side .mec-table-side-title{text-align:center;font-size:11px;text-transform:uppercase;letter-spacing:3px;margin-bottom:14px}.mec-calendar .mec-calendar-header{position:relative;width:560px;margin-top:8px;margin-bottom:16px}.mec-calendar .mec-calendar-header h2{text-transform:uppercase;font-size:22px;font-weight:700;color:#333}.mec-calendar .mec-event-footer{width:auto;min-height:60px}.mec-calendar dl{display:table;margin:0;border:none;padding:0;table-layout:fixed}.mec-calendar dt{display:table-cell;transition:all .66s ease;color:#4d4d4d;background:#fff;border-radius:44px;font-size:14px;width:80px;height:80px;line-height:80px;text-align:center}.excerpt-wrap .mec-wrap dt,.nv-content-wrap .mec-wrap dt{display:table-cell}.mec-calendar .mec-calendar-table .mec-no-event{display:none}.mec-calendar .mec-calendar-table-head dt{font-weight:700;text-transform:uppercase;font-size:15px}.mec-calendar .mec-calendar-row dt:hover{background:#f4f4f4}.mec-calendar .mec-table-nullday{color:#cacaca}.mec-calendar.mec-box-calendar .mec-table-nullday:last-child{border-right:1px solid #eaeaea}.mec-calendar .mec-next-month:hover,.mec-calendar .mec-prev-month:hover{background:#f4f4f4}.mec-calendar .mec-selected-day,.mec-calendar .mec-selected-day:hover{background:#40d9f1;color:#fff}.mec-calendar .mec-selected-day a{color:#fff}.mec-calendar .mec-has-event{position:relative}.mec-calendar .mec-calendar-row dt.mec-has-event:hover{background:#40d9f1}.mec-calendar .mec-has-event a{cursor:pointer;display:block;width:100%;height:100%;border-radius:50%;color:#4d4d4d;transition:all .25s ease;text-decoration:none;box-shadow:none}.mec-calendar .mec-calendar-row dt.mec-has-event.mec-selected-day a,.mec-calendar .mec-calendar-row dt.mec-has-event:hover a{color:#fff}.mec-calendar .mec-has-event:after{background-color:#40d9f1;border-radius:50%;display:block;content:'';width:8px;height:8px;bottom:14px;left:50%;margin:-4px 0 0 -4px;position:absolute;transition:all .25s ease}.mec-calendar .mec-calendar-row dt.mec-has-event:hover:after{background-color:#fff}.mec-calendar .mec-has-event.mec-selected-day:after{display:none}.mec-calendar .mec-event-article{text-align:left;margin-bottom:0;padding-bottom:25px;padding-top:26px;border-top:1px solid #efefef;transition:all .33s ease}.mec-calendar .mec-event-article:hover{background-color:#fafafa}.mec-calendar .mec-event-article .mec-event-time{font-size:11px;line-height:1.1;margin:0}.mec-calendar .mec-event-article .mec-event-title{font-size:13px;padding:0;margin:10px 0 8px;font-weight:700;text-transform:uppercase}.mec-calendar .mec-event-article .mec-event-title a{text-decoration:none;color:#494949;transition:color .3s ease}.mec-calendar .mec-event-article .mec-event-title a:hover{color:#40d9f1}.mec-calendar .mec-event-article .mec-event-image,.mec-calendar .mec-event-list-classic .mec-event-image img{width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-image{float:left;margin-right:20px;width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-detail,.mec-calendar .mec-event-article .mec-localtime-details div{font-size:13px;line-height:1.3;font-family:Roboto,sans-serif;color:#9a9a9a;margin-bottom:0}.mec-calendar .mec-calendar-side .mec-next-month,.mec-calendar .mec-calendar-side .mec-previous-month{cursor:pointer;position:absolute;top:0;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;color:#a9a9a9;font-size:12px;letter-spacing:1px;text-transform:uppercase;padding-left:10px;padding-right:10px;border:1px solid #efefef;border-top:none;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease}.mec-calendar .mec-calendar-side .mec-next-month i,.mec-calendar .mec-calendar-side .mec-previous-month i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-calendar .mec-calendar-side .mec-next-month:hover,.mec-calendar .mec-calendar-side .mec-previous-month:hover{background-color:#f9f9f9;color:#40d9f1}.mec-calendar .mec-calendar-side .mec-previous-month{left:0;border-bottom-right-radius:6px;border-left:none}.mec-calendar .mec-calendar-side .mec-next-month{right:0;border-bottom-left-radius:6px;border-right:none}@media only screen and (min-width:961px){.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-side{width:370px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-header{position:relative;width:350px;margin-top:30px;margin-bottom:20px;padding-top:20px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) dt{width:50px;height:50px;line-height:50px}.mec-wrap.mec-sm959 .mec-calendar.mec-event-calendar-classic dl dt{height:110px}}@media only screen and (max-width:1200px){.mec-calendar .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-calendar .mec-calendar-side{width:370px}.mec-calendar .mec-calendar-header{position:relative;width:350px;margin-top:30px}.mec-calendar dt{width:50px;height:50px;line-height:50px}}@media only screen and (max-width:767px){.mec-calendar .mec-calendar-header h2{font-size:18px}.mec-calendar .mec-calendar-topsec{width:100%}.mec-calendar .mec-calendar-side{width:100%;display:block;padding:30px}.mec-calendar .mec-calendar-header{width:auto}.mec-calendar .mec-calendar-events-side{width:100%;display:block;height:100%;border-left:none;border-top:1px solid #efefef;padding:20px}.mec-calendar dl{width:100%}.mec-calendar dt{width:14%;height:60px;line-height:60px;border-radius:50px}}@media only screen and (max-width:479px){.mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-calendar .mec-calendar-header h2{font-size:16px;margin-top:33px}.mec-calendar dt{height:38px;line-height:38px}.mec-calendar .mec-event-list-classic .mec-event-detail,.mec-calendar .mec-event-list-classic .mec-event-title{font-size:12px}.mec-calendar .mec-event-list-classic .mec-event-time{font-size:10px}}.mec-box-calendar.mec-calendar .mec-has-event a,.mec-box-calendar.mec-calendar dt{border-radius:0}.mec-box-calendar.mec-calendar .mec-calendar-header{margin-top:2px;margin-bottom:30px}.mec-box-calendar.mec-calendar dt{border-bottom:1px solid #eaeaea;border-left:1px solid #eaeaea}.mec-box-calendar.mec-calendar dl dt:last-child{border-right:1px solid #eaeaea}.mec-box-calendar.mec-calendar .mec-calendar-table-head dt{border-top:1px solid #eaeaea;background-color:#f8f8f8}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{background-color:#f4f4f4}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{border-radius:2px;top:40px;border:1px solid #eee;height:30px;line-height:30px;z-index:1}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:60px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:60px}.mec-box-calendar.mec-calendar .mec-calendar-side{box-shadow:none}.mec-box-calendar.mec-calendar .mec-calendar-events-side{border:none}.mec-box-calendar.mec-calendar .mec-calendar-events-side .mec-table-side-day{border-radius:2px}.mec-box-calendar.mec-calendar h4.mec-month-label{position:relative;width:560px;margin-top:2px;margin-bottom:30px;text-transform:uppercase;font-size:22px;font-weight:700;color:#333}.mec-widget .mec-box-calendar.mec-calendar h4.mec-month-label{width:100%;margin-top:8px;font-size:13px}@media only screen and (max-width:1200px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:42px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:42px}.mec-calendar .mec-calendar-header h2{font-size:17px;margin-top:7px}}@media only screen and (max-width:767px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{top:28px;font-size:10px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:30px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:30px}.mec-calendar .mec-calendar-header h2{font-size:15px}}@media only screen and (max-width:479px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{top:16px;font-size:0;padding:4px 0;text-align:center;min-width:33px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:10px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:10px}.mec-box-calendar.mec-calendar .mec-calendar-header h2{font-size:12px;margin-top:15px}.mec-box-calendar.mec-calendar .mec-event-image{margin-right:12px}}.mec-calendar.mec-event-calendar-classic,.mec-calendar.mec-event-calendar-classic .mec-calendar-side{border:none;padding:0;width:100%;height:100%;box-shadow:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-side{display:block}.mec-calendar.mec-event-calendar-classic .mec-calendar-header,.mec-calendar.mec-event-calendar-classic dl{width:100%}.mec-calendar.mec-event-calendar-classic dl dt{width:15%;height:136px;line-height:1.2;text-align:left;padding:5px 7px;position:relative}.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{height:30px!important}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{top:0}.mec-calendar.mec-event-calendar-classic .mec-has-event:after{bottom:auto;top:24px;left:7px;margin:0}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{left:0}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month{right:0}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{text-align:left;background:#fafafa;border:1px solid #eaeaea;border-top:none;padding:10px 20px}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{display:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-event-article:hover{background-color:#fcfcfc}.mec-calendar.mec-event-calendar-classic .mec-selected-day,.mec-calendar.mec-event-calendar-classic dt.mec-selected-day:hover{color:#40d9f1;font-weight:700;background:#fafafa;border-bottom:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-day,.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{display:inline-block;margin:0;margin-bottom:15px;font-weight:700}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-day{margin-left:4px}.mec-calendar.mec-event-calendar-classic .mec-calendar-row dt.mec-has-event a{color:#4d4d4d}.mec-calendar.mec-event-calendar-classic .mec-calendar-row dt.mec-has-event:not(.mec-selected-day):hover a{color:#fff}@media only screen and (max-width:1200px){.mec-calendar.mec-event-calendar-classic dl dt{height:100px}}@media only screen and (max-width:767px){.mec-calendar.mec-event-calendar-classic dl dt{height:40px}}@media only screen and (max-width:479px){.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{padding:10px}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-header h2{font-size:13px;margin-top:8px}}.mec-calendar .mec-event-article.mec-single-event-novel{padding:4px 8px;min-height:25px;margin:0 -4px;border-radius:0}.mec-calendar .mec-event-article.mec-single-event-novel h4{margin:0;font-size:10px;line-height:18px}.mec-calendar.mec-event-container-novel dl dt{padding:3px}.mec-calendar.mec-event-calendar-classic .mec-calendar-novel-selected-day{display:inline-block;padding:4px;margin-left:1px}.mec-calendar.mec-event-calendar-classic .mec-selected-day .mec-calendar-novel-selected-day{color:#fff}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-selected-day,.mec-calendar.mec-event-calendar-classic.mec-event-container-novel dt.mec-selected-day:hover{border-bottom:1px solid #eaeaea}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-calendar-side .mec-calendar-table{min-height:auto}.mec-single-event-novel.light h4{color:#000!important}.mec-single-event-novel.dark h4{color:#fff!important}@media only screen and (max-width:768px){.mec-calendar .mec-event-article.mec-single-event-novel{padding:0;min-height:5px}.mec-calendar .mec-event-article.mec-single-event-novel h4{display:block;font-size:9px}}.mec-event-container-simple .event-single-content-simple{display:none}.mec-event-calendar-classic.mec-event-container-simple .mec-calendar-side .mec-calendar-table{min-height:unset}.mec-event-container-simple .mec-monthly-tooltip h4{font-size:13px;font-weight:500;margin:0;color:#444}.mec-event-container-simple .mec-monthly-tooltip h4:hover{text-decoration:underline;color:#111}.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple{border-bottom:1px dashed #e3e3e3;padding:10px 2px;display:block}.mec-calendar.mec-event-container-simple dl dt.mec-calendar-day{font-size:30px;color:#000}.mec-calendar.mec-event-container-simple .mec-calendar-row dt:hover{background:unset}.mec-calendar.mec-event-container-simple .mec-calendar-row dt,.mec-calendar.mec-event-container-simple .mec-calendar-row dt:last-child,.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt,.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt:last-child{border-width:2px}.mec-calendar.mec-event-container-simple dl dt.mec-selected-day,.mec-calendar.mec-event-container-simple dl dt.mec-selected-day:hover{border-bottom:2px solid #40d9f1;background:unset}.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt{line-height:36px}@media (max-width:768px){.mec-calendar.mec-event-container-simple{overflow-x:scroll}.mec-calendar.mec-event-container-simple .mec-calendar-side{min-width:100%}.mec-event-container-simple .mec-monthly-tooltip h4{font-size:12px}.mec-calendar-side{min-width:600px!important;overflow-x:scroll}}.mec-wrap.colorskin-custom .mec-calendar.mec-event-container-simple .mec-selected-day:hover{background:#f4f4f4}.mec-event-container-simple .mec-calendar-day .mec-monthly-tooltip.event-single-link-simple:last-of-type{border:none}.mec-tooltip-event-title{font-size:16px;font-weight:700;color:#000;margin-bottom:2px}.mec-tooltip-event-time,.tooltipster-sidetip.tooltipster-shadow .tooltipster-content .mec-price-details{font-size:12px;color:#888;margin-bottom:8px;margin-top:5px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-content{padding:17px}.mec-tooltip-event-content{clear:both}.mec-tooltip-event-featured{float:left;margin-right:13px;margin-bottom:1px}.mec-tooltip-event-featured img{max-width:120px}.mec-tooltip-event-desc{font-size:14px;color:#444;line-height:18px}.mec-tooltip-event-desc p{font-size:13px;line-height:1.4;margin-bottom:10px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-box{border-radius:3px!important;border:1px solid #e2e3e4!important;background:#fff!important;box-shadow:0 -1px 30px -2px rgba(0,0,0,.15)!important}.tooltipster-box .mec-tooltip-event-desc{margin-bottom:12px}.tooltipster-sidetip .tooltipster-arrow{overflow:visible!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-border{border-width:12px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-right .tooltipster-arrow-border{border-right-color:#e2e3e4!important}.tooltipster-sidetip .tooltipster-arrow-border{left:-12px!important;z-index:9999999999!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-background{display:block!important}.tooltipster-sidetip .tooltipster-arrow-background{border-width:11px!important;z-index:99999999999!important}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background{left:-9px!important;top:1px!important;border-right-color:#fff!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background{border-top-color:#fff!important;left:0!important;top:-1px!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border{left:-1px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-top .tooltipster-arrow-border{border-top-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{left:-1px!important;top:-11px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{border-bottom-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background{top:-9px!important;border-bottom-color:#fff!important}.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background{border-left-color:#fff!important;left:-2px!important;top:0!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-left .tooltipster-arrow-border{border-left-color:#e2e3e4!important;left:-1px!important;top:-1px!important}@media (max-width:780px){.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4{word-break:break-all;font-size:13px}}@media (max-width:320px){.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4{font-size:10px}}.mec-calendar.mec-calendar-daily .mec-calendar-day-events .mec-event-article{padding-left:15px;padding-right:15px;position:relative}.mec-calendar.mec-calendar-daily .mec-calendar-a-month{text-align:center;background-color:#fff;border-bottom:2px solid #f4f4f4;position:relative}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{color:#444;font-size:18px;line-height:1.2;padding:15px 0 11px;margin:0;font-weight:700;letter-spacing:1px;text-transform:uppercase;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-top{text-align:center;padding:10px 0;position:relative;background-color:#fafafa}.mec-calendar.mec-calendar-daily .mec-next-month,.mec-calendar.mec-calendar-daily .mec-previous-month{position:absolute;top:50%;left:50%;margin-top:-25px;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;border:1px solid #e2e2e2;border-radius:50px;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month i,.mec-calendar.mec-calendar-daily .mec-previous-month i{font-size:14px;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month:hover,.mec-calendar.mec-calendar-daily .mec-previous-month:hover{border-color:#d0d0d0;color:#444;box-shadow:0 2px 5px 0 rgba(0,0,0,.075)}.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-150px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:100px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month{min-height:28px;height:28px;line-height:28px;width:28px;margin-top:-14px;border-radius:3px}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2,.mec-calendar.mec-calendar-daily .mec-calendar-d-top h3{margin-top:9px;color:#b9b9b9;font-family:Roboto,sans-serif;font-size:30px;font-weight:100;text-transform:uppercase;margin-bottom:12px;line-height:1}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2{font-size:81px;color:#444;margin-bottom:10px;line-height:1.1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table{overflow:hidden;background:#fff;min-height:60px;border-top:1px solid #e6e6e6;border-bottom:2px solid #f3f3f3;padding:0 50px;position:relative}@media only screen and (min-width:479px){.mec-calendar.mec-calendar-daily .mec-calendar-d-table{padding:0 55px}}.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl{width:1310px;display:block}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{display:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl.mec-weekly-view-week-active{display:block}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt{display:block;background:#fff;width:42px;height:60px;line-height:60px;text-align:center;float:left;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6;border-radius:0}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day:hover,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt:hover{background:#fafafa;box-shadow:0 2px 5px 0 rgba(0,0,0,.065) inset;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day{cursor:default;background:#fff;color:#c1c1c1;line-height:59px;text-align:center;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-has-event{cursor:pointer;font-weight:700;color:#4a4a4a}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-daily-view-day-active,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt.mec-table-d-current{font-size:18px;font-weight:700;background:#fafafa;color:#40d9f1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-prev{float:none;font-size:14px;width:55px;position:absolute;top:0;left:0;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next{left:auto;right:0;border-left:1px solid #e6e6e6;border-right:none}.mec-calendar.mec-calendar-daily .mec-today-container .mec-today-count{font-size:12px;color:#888;text-align:center}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}}.widget .mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}.widget .mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.widget .mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-util-hidden{display:none}.mec-daily-view-date-events,.mec-weekly-view-date-events{list-style:none;margin:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table{padding:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{width:calc(100% - 1px)}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt{width:14.286%;height:70px;line-height:normal;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:hover{background:#fff;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:last-child{border-right:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:12px;font-weight:700;text-transform:uppercase;display:block;margin:15px 0 6px}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-prev{display:none}ul.mec-weekly-view-dates-events,ul.mec-weekly-view-dates-events li{padding:0;margin:0;line-height:initial}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:64px;height:64px;margin-right:10px;font-size:11px;text-transform:uppercase;float:left;text-align:center;padding-top:2px}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:40px;line-height:30px;font-weight:700;display:block;margin-bottom:6px;letter-spacing:1px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-previous-month{margin-left:0;left:12px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-next-month{margin-left:0;left:auto;right:12px}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}}.widget .mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}.mec-week-events-container .mec-weekly-view-dates-events li.mec-no-event-found{list-style:none!important}li.mec-no-event-found .mec-event-title{text-align:center}.mec-widget .mec-calendar{max-width:100%}.mec-widget .mec-calendar dl dt,.mec-wrap.mec-sm959.mec-widget .mec-calendar.mec-event-calendar-classic dl dt{height:40px}.mec-widget .mec-calendar .mec-calendar-events-sec{padding:10px}.mec-widget .mec-calendar .mec-calendar-header h2{font-size:13px;margin-top:8px}.mec-widget .mec-calendar .mec-event-list-classic .mec-event-image{margin-right:12px}.mec-widget .mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-widget .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{font-size:14px}.mec-widget .mec-calendar .mec-event-article .mec-event-image{margin-right:11px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-header{margin-bottom:20px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{font-size:0;padding:4px 0;text-align:center;min-width:33px}.mec-widget .mec-event-calendar-classic .mec-calendar-side .mec-calendar-table{min-height:200px}.mec-widget .mec-event-list-classic{margin-bottom:8px;padding:8px 0}.mec-widget .mec-event-list-classic .mec-event-article{margin-bottom:0;padding:10px 0;position:relative;min-height:86px;padding-left:80px}.mec-widget .mec-event-list-classic .mec-event-date{font-size:10px;line-height:14px;text-transform:uppercase}.mec-widget .mec-event-list-classic .mec-event-title{font-size:13px}.mec-widget .mec-event-list-classic .mec-event-detail{font-size:11px}.mec-widget .mec-event-list-classic .mec-event-image{width:68px;position:absolute;left:0}.mec-event-list-classic .mec-event-image img{width:100%}.mec-widget .mec-event-list-classic .mec-event-detail{overflow:visible}.event-color{width:14px;display:inline-block;height:14px;margin-left:5px;border-radius:50%}.mec-map-lightbox-wp{width:580px;padding:15px 15px 0;background-color:#fff}.mec-map-view-event-detail.mec-event-detail{width:580px;background-color:#e9e9e9;padding:8px 15px}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-article{padding:0 0 15px;margin:0}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-image{width:70px;margin-right:15px}.mec-marker-infowindow-wp{padding:10px}.mec-marker-infowindow-wp .mec-marker-infowindow-count{width:60px;height:60px;display:block;text-align:center;line-height:60px;border:1px solid #40d9f1;border-radius:50%;font-size:32px;color:#40d9f1;float:left;margin-right:11px}.mec-marker-infowindow-wp .mec-marker-infowindow-content{overflow:hidden;padding-top:6px}.mec-marker-infowindow-wp .mec-marker-infowindow-content span{display:block;color:#222}.mec-marker-infowindow-wp .mec-marker-infowindow-content span:first-child{font-size:15px;font-weight:700}.mec-marker-wrap{display:inline-block;width:35px;height:35px;margin:15px 0 0 4px;border-radius:50% 50% 50% 0;background:#00cae9;animation-name:mec-map-bounce;animation-fill-mode:both;animation-duration:1s;border:3px solid #fff;cursor:pointer}.mec-marker-wrap .mec-marker{margin-top:5px;display:block;-webkit-transform:rotate(45deg);transform:rotate(45deg);text-align:center;color:#fff;font-size:17px}.mec-marker-wrap .mec-marker-pulse-wrap{-webkit-transform:rotate(45deg);transform:rotate(45deg);display:inline-block;margin-left:-11px;margin-top:0}.mec-marker-wrap .mec-marker-pulse{display:inline-block;background:#c5c5c5;border-radius:50%;height:14px;width:14px;-webkit-transform:rotateX(55deg);transform:rotateX(55deg);z-index:-2}.mec-marker-wrap .mec-marker-pulse:after{content:"";border-radius:50%;height:40px;width:40px;position:absolute;margin:-13px 0 0 -13px;animation:pulsate 1s ease-out;animation-iteration-count:infinite;opacity:0;box-shadow:0 0 1px 2px #00cae9;animation-delay:1.1s}@keyframes pulsate{0%{transform:scale(.1,.1);opacity:0}50%{opacity:1}100%{transform:scale(1.2,1.2);opacity:0}}@keyframes mec-map-bounce{0%{opacity:0;transform:translateY(-2000px) rotate(-45deg)}60%{opacity:1;transform:translateY(30px) rotate(-45deg)}80%{transform:translateY(-10px) rotate(-45deg)}100%{transform:translateY(0) rotate(-45deg)}}.mec-skin-grid-container .mec-skin-map-container,.mec-skin-list-container .mec-skin-map-container{margin-bottom:20px}.mec-single-event{margin-top:10px}.mec-single-event .mec-events-meta-group-countdown{color:#c9c9c9;text-align:center;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-events-meta-group-countdown .countdown-w{text-align:center;font-size:36px;margin:0 auto;padding:40px 0 0;position:relative;display:table;table-layout:fixed}.mec-events-meta-group-countdown .countdown-w .icon-w{font-size:24px}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:15px;font-weight:300;letter-spacing:1px;text-transform:uppercase;position:relative}.mec-events-meta-group-countdown .countdown-w .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px;width:190px;font-size:72px;transition:all .3s ease-in-out;line-height:1.2}.mec-events-meta-group-countdown .countdown-w .block-w.done-w{border:0 none}.mec-events-meta-group-countdown .countdown-w .block-w li{font-size:50px}.mec-events-meta-group-countdown .countdown-w span{padding:24px 0 20px}.mec-events-meta-group-countdown .countdown-w .div-d{display:none}.mec-events-meta-group-countdown .countdown-w .countdown-message{display:none}.mec-events-meta-group-countdown .countdown-w .block-w i{display:none}#countdown{list-style:none;margin-bottom:0;margin-top:0;margin-left:0;padding-left:0}.mec-events-meta-group-countdown .mec-end-counts h3{display:inherit;text-align:center;font-size:16px;right:50%}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:23px}@media (min-width:481px) and (max-width:768px){.mec-events-meta-group-countdown .countdown-w{padding:0}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:12px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:34px}}@media (min-width:320px) and (max-width:480px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:10px}.mec-events-meta-group-countdown .countdown-w span{font-size:28px}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:16px}}@media (max-width:320px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:9px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:22px}}.info-msg,.mec-error,.mec-success,.warning-msg{margin:10px 0;padding:10px;border-radius:3px 3px 3px 3px;font-size:13px}.info-msg{color:#059;background-color:#bef}.mec-success{color:#0dbf52;background-color:#cef7ce}.warning-msg{color:#9f6000;background-color:#feefb3}.mec-error{color:#d8000c;background-color:#ffbaba}.mec-fes-form,.mec-fes-list{background:#f8feff;padding:30px 3%;color:#798f96;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important}.mec-fes-list .mec-fes-list-top-actions,.mec-fes-list ul{margin:0 auto 15px;max-width:960px;list-style:none}.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}#wrap .mec-fes-form input+label{padding-top:0}.mec-fes-form .post-status{float:right!important;margin:0 5px;color:#fff;padding:0 10px;border-radius:12px;font-style:italic;font-size:18px}.mec-fes-form #mec-event-data input[type=date],.mec-fes-form input[type=email],.mec-fes-form input[type=number],.mec-fes-form input[type=password],.mec-fes-form input[type=tel],.mec-fes-form input[type=text],.mec-fes-form input[type=url],.mec-fes-form select,.mec-fes-form textarea{min-width:inherit;width:auto;display:inline;min-height:30px;font-size:13px;padding:10px;margin-bottom:20px;clear:both;background:#fff;border:1px solid #cfeff5;box-shadow:0 2px 5px rgba(207,239,245,.38) inset;border-radius:3px;height:40px;max-width:280px;color:#798f96;font-family:inherit}#mec_fes_form input[type=date]::-webkit-calendar-picker-indicator,.lity-content #mec_fes_form input[type=date]::-webkit-calendar-picker-indicator,.lity-content .mec-events-meta-group-booking input[type=date]::-webkit-calendar-picker-indicator,.mec-single-event .mec-events-meta-group-booking input[type=date]::-webkit-calendar-picker-indicator{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQ1IDc5LjE2MzQ5OSwgMjAxOC8wOC8xMy0xNjo0MDoyMiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTkgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjA0QjQ2N0QwQjQ4MzExRUE4RDdFREZDRTUxMUVERTM5IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjA0QjQ2N0QxQjQ4MzExRUE4RDdFREZDRTUxMUVERTM5Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6MDRCNDY3Q0VCNDgzMTFFQThEN0VERkNFNTExRURFMzkiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MDRCNDY3Q0ZCNDgzMTFFQThEN0VERkNFNTExRURFMzkiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz6WW71PAAAGIklEQVR42qRXS28bVRQ+586Mx3ZC1DSpVFojRU2CqMIGiSKxAVoUduzoDjYIlhU/Av4AYsdjRXfkD0Cjom6QqIqEqEhRo1aRkkZpkpY6j7GduQ++c2dsj1+BlInGztxvzj3nfudpPlM/otc2W2QjJmU0rZ0uUytUpBxNnN9p/FYhctF0+XUi2nPGkX7WJOfwxNRzqXxtbfI4eUvm7xY1o4iiI0d/vFiisL2BgTAz0yvbCRnLhP0uNEtqrgUseZRcwPPvJewaldSA8o48vo+Tj0U+CnrkOgZwvkEzEmGm1PF9fzK5Y3U/YlllsjRUv19zXl7571HyAjooc/kmYerpcmPO0Mfa0SyxEtji44ynOjPuayjecd7M46/MQOdGyIs9ThnzMLD0XRrwIdeetmoLm41fWiG95Ar792tydLLrOPkAlpW027hbG3+T37lf/5EtvYcXUuhfBjWp9wHRBO63c5lbEkQj2B92uaHy4l2EAQ66GFgbmiD4id/9q661ooAtf8rsvmUEilAHEqcgtJvvNq3YPTkJA8PksT9ZFxD8+4my9pvAOqOMxIMoJHfPZoJkJNiYat3duOac6hxt1N3GR8lnt0O623s+c2CVZEGaZ8Oks1mElvxu7hGYaQjpHLpH3q/YFQE7Oh5Y6gFTaHhAXlasxmoWpZO5L9Ow4DTv+UBZBAkWNO+CqhkbSOzaXWWyzY+n3WcACdVscnklz5CHYsmv1L/RyUJ/cs7zdT3Ey8pTgw/QgNNuS4XjNMvffwvBNmwDH+pdeZ3J+1qDdW15vS0iBhjZWzF9ge8HWl7zNLluYhP/9/jvFANXyL+ufF4jZvOCZsK8isp77+sixf10n7QQjJT39bBtjzdA5chtLG61n7kgk6UvDy29z4HL4c/ifkN0hYV+cA3Bc7stKAfossgSSF06+3HOu8QovE8eThDlv4pu1TbUOpqySDNUKMSDQRIo6QgVRHbFcID1mCITUGgNKLI9uBbcCC59xUi+DsiHBq0XOLb3utqOUYV+LglH9XJASRAsRNqt4xHVj59Exqw3AlrYi0PaiwNqBKoX12Y9iQSP/GkD4xZC0yt/GPFCvZzhUBoMtmPftRwMEEtpupy2auzadLraXtlNoXLhKQYLbjrWRx0cXNf24wxPSmWw5aZPNXSNOi5ytXqZpjTwSqs3PsJi0I61LG29EFG9GtyaeqgvxU17TrAkDjbvnq/eKcTYrbcemi5eHoI/OLgUt7r4n+cqd04llmZ3mjBSDQ4kYtERLLz4OKGt0xGKA9+RgiSGSRV7+UlCVvka72lEvHRx04vLGW2f/PzTBk3VtddRrGlhMXVaIdME5sLJ3ZQOTPQBNqj58uzcxsXtZEkqmQ7IB9ihLeA2x6FQqyG4cRuvbh8uNZSigzBCALhBBtrjkwjjQItQ+kPXWY6eBuEi/lmOlC8kvTh38ZLH3QC+y+GiIl4OqbeZ9RggQZgcVIXe1ep48jPkz/oGw7x1yoytIq1o59AH1Wp1rNHBSXA9tip87zYyvFzpx8dXLVTvqySvhUMNsN6+1ERrrNQVQs57H4K6cR35GrapffICb16RpO7glOHrrQyvjHXxQHB0/j1ugV0LpcFwAzS4n6hiZoIvEp2znwcSigfGJhxpMmseLc0dvFjcvRuLvdEdNyl2+0DOALwE863TM/jnJqhfQa6v4AfJzUNOZ/aVlhqIUpoO4PuU4XFsqFrSM866m9hxBXSvWPx/wHpGqA96Vfa5AH9HnMjYNI96dbkwaVzcCw/nAK+xHzp4Hp89eD04nENzX6v4cYrnrVWXXQF/Fh7MQfWasmogCNsmaT+qwD0g4gYsuYqnWlboeKMUumUr86LycxdwdRUb+zQTvAzcgL0jLXFkbkQUX5UKyFTE2bvZD0a5B8SAUu6dPf+7AInssja2VPSZRud2Ni/NKse5M2VQqkO4BxSzZLmV8Wwpa8S9OHsK3X6+Lc7F/JidOwvkc7z3FbIgzd7smy1c35TEg7NGrg6Ucs88UsCliOLHH1+Td8HYFl++W//QxfT9iSee/3lJWy5X6aMwtK3rTVWJUU4/g4GzdLLp73ku8cEDxNmXUZhc/0eAAQAVgX0RHvvILQAAAABJRU5ErkJggg==);background-position:center;background-size:cover;width:10px;height:12px;display:block}.mec-fes-form input{background:#fff!important;border-radius:3px!important;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important}.mec-fes-form textarea{height:80px}.mec-fes-form input::-webkit-input-placeholder{color:#798f96}.mec-fes-form input::-moz-placeholder{color:#798f96}.mec-fes-form input:-ms-input-placeholder{color:#798f96}.mec-fes-form input:-moz-placeholder{color:#798f96}#mec-excerpt .mec-form-row .widefat{max-width:100%}#mec_more_info_target{width:100%}@media only screen and (min-width:961px){.mec-fes-form #mec-event-data input[type=date],.mec-fes-form #mec-event-data select,.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=tel],.mec-fes-form input[type=text],.mec-fes-form input[type=url],.mec-fes-form textarea{width:100%;display:inline-block}}@media only screen and (max-width:768px){.mec-fes-form #mec-event-data input[type=date],.mec-fes-form #mec-event-data select,.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form input[type=url],.mec-fes-form textarea{width:100%}}.mec-fes-form input[type=text]#mec_fes_title{padding:5px 10px;min-height:32px;height:50px;background:#fff!important;max-width:100%;font-size:19px;font-weight:400}.mec-fes-form input[type=checkbox],.mec-fes-form input[type=radio]{display:inline!important;float:left;margin:5px 5px 0 0}.mec-fes-form input[type=email]:focus,.mec-fes-form input[type=number]:focus,.mec-fes-form input[type=password]:focus,.mec-fes-form input[type=tel]:focus,.mec-fes-form input[type=text]:focus,.mec-fes-form input[type=url]:focus,.mec-fes-form select:focus,.mec-fes-form textarea:focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-form-row .mec-color{cursor:pointer}.mec-form-row.mec-available-color-row span{margin:10px;width:14px;height:14px;display:inline-block;margin-right:6px;border-radius:20px 20px 20px 20px;vertical-align:middle}.mec-form-row.mec-available-color-row span:first-of-type{margin-left:0}.mec-fes-form.mec-fes-form .mec-tooltip{display:inline}.mec-fes-form-cntt .dashicons-editor-help{display:block}.mec-fes-form .mec-tooltip:hover:after,.mec-fes-form .mec-tooltip:hover:before{display:none}.mec-fes-form.mec-fes-form .mec-tooltip{display:inline-flex;bottom:7px}.mec-fes-form .mec-tooltip .box{min-width:300px;max-width:600px;display:inline-block;left:26px;top:50%;transform:translateY(-50%);padding:0;margin-top:8px;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.3;position:absolute;z-index:9999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s}#webnus-dashboard .mec-fes-form .mec-tooltip .box p,.mec-fes-form .mec-tooltip .box p{color:#fff;font-size:14px;line-height:1.3;margin:0}.mec-fes-form .mec-tooltip:hover .box{visibility:visible;opacity:1}.mec-fes-form .mec-tooltip:hover .box{padding:20px;border-radius:8px}.mec-fes-form .mec-tooltip .box h5{color:#fff;font-size:17px;font-weight:600;margin:-30px -20px;padding:20px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #32363a;border-radius:6px 6px 0 0;z-index:9999}#webnus-dashboard .mec-fes-form .mec-tooltip .box p a,.mec-fes-form .mec-tooltip .box p a{color:#40d9f1;margin-top:10px;margin-left:0;font-weight:400;position:relative;text-decoration:none;display:block;width:max-content}.mec-fes-form .mec-tooltip .box a:hover{color:#f90}.mec-fes-form .mec-tooltip .box:after{display:block;position:absolute!important;top:100%!important;right:50%!important;margin-top:-6px!important;margin-right:-6px!important;width:12px!important;height:24px!important;overflow:hidden!important;transform:rotate(-90deg)!important}.mec-fes-form .mec-tooltip .box:before{display:block;content:''!important;position:absolute!important;width:12px;height:12px;left:-10px!important;top:50%!important;transform:translate(50%,-50%) rotate(-45deg)!important;background-color:#535a61!important;box-shadow:0 8px 9px -4px #535a61!important;z-index:0!important}.mec-fes-form .mec-tooltip .box.top{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-fes-form .mec-tooltip .box.top:after{top:50%!important;right:100%!important}.mec-fes-form .mec-tooltip .box.top:before{left:50%!important;top:100%!important}.mec-fes-form .mec-tooltip .box.bottom{left:50%;top:auto;bottom:0;transform:translate(-50%,100%);margin-bottom:-20px;margin-left:-10px}.mec-fes-form .mec-tooltip .box.bottom:after{top:0!important;right:50%!important;background-color:#3a3f44!important}.mec-fes-form .mec-tooltip .box.bottom:before{left:50%!important;top:-7px!important;transform:translateX(-50%);background-color:#3a3f44!important}.mec-fes-form .mec-tooltip .box.left{left:auto;right:26px;top:50%;transform:translateY(-50%)}.mec-fes-form .mec-tooltip .box.left:before{right:0!important;left:auto!important;top:50%!important}.mec-fes-form .mec-tooltip{display:inline-block;position:relative;margin-right:10px;cursor:help;bottom:5px;left:3px}.mec-fes-form .mec-tooltip:last-child{margin-right:0}.mec-fes-form .mec-tooltip:hover:after{background:#313130;border-radius:5px;bottom:24px;color:#fff;content:attr(title);left:-75px;padding:10px;position:absolute;z-index:98;width:240px}.mec-fes-form .mec-tooltip:hover:before{border:solid;border-color:#313130 transparent;border-width:6px 6px 0;bottom:18px;content:"";left:30%;position:absolute;z-index:99}.mec-fes-form .mec-tooltip .dashicons-before:before{font-size:24px;color:#008aff;line-height:37px}.mec-fes-form .mec-tooltip a:focus{box-shadow:none}.mec-form-row .bootstrap_unvalid{display:block;border:2px solid red;position:relative;display:inline-block;border-bottom:1px dotted #000}.mec-fes-form .mec-tooltiptext{visibility:hidden;width:120px;background-color:red;color:#fff;text-align:center;border-radius:6px;padding:5px 0;position:absolute;z-index:1}.mec-fes-form .mec-tooltip .content p a{display:none}@media only screen and (min-width:961px){.mec-fes-form .mec-fes-form-cntt,.mec-fes-form .mec-fes-form-sdbr{width:68%;float:left;padding-right:20px}.mec-fes-form .mec-fes-form-sdbr{width:32%;padding-right:0;padding-left:20px}.mec-fes-submit-mobile{display:none}}.mec-fes-form .mec-meta-box-fields{padding:0 20px 20px;border:1px solid #cfeff5;margin-bottom:20px!important;box-shadow:0 2px 6px -3px #cfeff5;border-radius:3px;background:#fff}.mec-fes-form .mec-meta-box-fields h4{margin:0 -20px;font-size:15px;font-weight:600;letter-spacing:0;color:#40d9f1;text-transform:capitalize;padding:15px 20px;background:#ecfcff;margin-bottom:20px;border-radius:3px}.mec-fes-sub-button{width:100%}.mec-available-color-row span.color-selected{border:3px solid #fff;box-sizing:content-box;box-shadow:0 0 0 2px #40d9f1,0 2px 8px -1px #40d9f1}.mec-fes-loading:before{content:url(../img/ajax-loader.gif);background:0 0;border-style:none;display:block;margin-left:47%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:190px;margin-right:1.4%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-1,.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-2{width:120px;margin-right:10px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].widefat{width:100%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row{border-bottom:none;padding-bottom:10px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-6{width:39%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row button{margin-right:0;padding:9px 26px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row button.mec-add-hourly-schedule-button{font-size:12px;height:30px;line-height:25px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row .description{display:inline-block;border-left:1px dashed #bfcacc;margin-left:12px;line-height:28px;padding-left:12px;margin-top:5px;font-style:italic}@media only screen and (max-width:768px){.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:100%!important}}#mec_fes_form_message{max-width:838px;margin:10px auto;display:block!important;text-align:center}.mec-wrap .mec-totalcal-box{position:relative;border:1px solid #efefef;padding:20px 5px;margin:0 0 20px;background:#fafafa;overflow:hidden;box-shadow:0 3px 2px 0 rgba(0,0,0,.012);min-height:78px}.mec-wrap .mec-totalcal-box i{float:left;margin:0;width:36px;height:36px;background:#fff;border:1px solid #efefef;text-align:center;padding:10px 0;font-size:15px;color:#888}.mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-wrap .mec-totalcal-box input,.mec-wrap .mec-totalcal-box select{width:auto;min-height:36px;height:36px;line-height:36px;background:#fff;font-size:13px;color:#777;border:1px solid #efefef;margin:0 0 0 -1px;float:left;padding:0 5px;font-family:Roboto,Helvetica,Arial,sans-serif}.mec-wrap .mec-totalcal-box input[type=submit]{cursor:pointer;padding:0 16px;text-transform:uppercase;font-size:11px;font-family:Montserrat,Helvetica,Arial,sans-serif;transition:all .21s ease}.mec-wrap .mec-totalcal-box input[type=submit]:hover{background:#222;color:#fff}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{display:inline-block;text-transform:uppercase;font-family:Montserrat,Helvetica,Arial,sans-serif;font-size:11px;padding:0 12px;cursor:pointer}.mec-wrap .mec-totalcal-box .mec-totalcal-view span:hover{color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected{color:#fff;background:#40d9f1;border-color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view{text-align:right;float:right}.mec-wrap .mec-totalcal-box input[type=search]{width:calc(100% - 36px)}.mec-full-calendar-wrap .mec-search-form .col-md-7{padding:0}@media only screen and (min-width:961px) and (max-width:1200px){.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-3,.mec-wrap .mec-totalcal-box .col-md-4,.mec-wrap .mec-totalcal-box .col-md-5{width:100%;float:none;clear:both;overflow:hidden}.mec-full-calendar-wrap .mec-search-form .col-md-3,.mec-full-calendar-wrap .mec-search-form .col-md-4,.mec-full-calendar-wrap .mec-search-form .col-md-5{display:block;max-width:100%;padding:0;margin:0 0 10px 0}.mec-full-calendar-wrap .mec-search-form .col-md-3{padding-bottom:10px!important}.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 106px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}.mec-wrap .mec-totalcal-box .mec-totalcal-view{float:none}}@media only screen and (min-width:768px) and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-4{position:relative;width:initial}.mec-wrap .mec-totalcal-box .col-md-5{padding-bottom:0}.mec-full-calendar-wrap .mec-search-form .col-md-5{margin-top:20px}.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:767px){.mec-wrap .mec-totalcal-box .mec-totalcal-view{float:none}.mec-wrap .mec-totalcal-box .col-md-4{padding-bottom:0}}@media only screen and (max-width:479px){.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 8px;font-size:10px}.mec-wrap .mec-totalcal-box input[type=submit]{padding:0 10px;font-size:10px}}@media only screen and (min-width:961px){.mec-wrap .mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5,.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-3{padding-bottom:20px;clear:both;overflow:hidden}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5{right:10px;width:initial}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-4{padding-bottom:0;width:100%}}@media (min-width:961px) and (max-width:1200px){.mec-full-calendar-wrap .mec-totalcal-box{padding:15px 10px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 10px}.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-address-search,.mec-search-form .mec-text-input-search{padding:0 4px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4,.mec-full-calendar-wrap .mec-totalcal-box .col-md-5{padding-bottom:20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{min-width:calc(30% - 10px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3:last-child select{min-width:calc(50% - 19px)}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:9px;text-align:center}}@media only screen and (max-width:1200px){.post-type-archive-mec-events .mec-totalcal-box .col-md-3,.post-type-archive-mec-events .mec-totalcal-box .col-md-4{width:100%;padding:0}.post-type-archive-mec-events .mec-totalcal-box select:last-child{min-width:auto}.post-type-archive-mec-events .mec-totalcal-box .col-md-5{position:relative;float:right;max-width:100%;left:0;top:20px;width:100%!important;display:block;clear:both}.post-type-archive-mec-events .mec-totalcal-box .mec-totalcal-view{max-width:100%;width:100%}.post-type-archive-mec-events .mec-totalcal-box .mec-totalcal-view span{width:20.1%;font-size:10px}}@media only screen and (max-width:960px){.post-type-archive-mec-events .mec-totalcal-box .col-md-5{top:10px}}@media only screen and (max-width:760px){.post-type-archive-mec-events .mec-totalcal-box .col-md-5{top:0!important}}@media only screen and (max-width:480px){.post-type-archive-mec-events .mec-totalcal-box .mec-totalcal-view span{font-size:8px}}@media (min-width:1201px) and (max-width:1280px){.mec-full-calendar-wrap .mec-totalcal-view span{font-size:9px;padding:0 10px}}@media (min-width:761px) and (max-width:1200px){.mec-full-calendar-wrap .mec-search-form .mec-dropdown-wrap .mec-dropdown-search{width:33.3333%;display:block;float:left}.mec-full-calendar-wrap .mec-search-form .col-md-4 .mec-text-input-search{padding:0;margin-bottom:20px}.mec-full-calendar-wrap .mec-search-form .col-md-3{width:100%}.mec-full-calendar-wrap .mec-search-form .mec-date-search select:last-child{min-width:70px;width:70px}.mec-full-calendar-wrap .mec-search-form .col-md-5{float:right;padding:0 0 10px 0}.mec-full-calendar-wrap .mec-totalcal-view span{font-size:11px}}@media (max-width:760px){.mec-full-calendar-wrap .mec-search-form .col-md-3{width:100%}.mec-full-calendar-wrap .mec-search-form .mec-date-search select:last-child{min-width:70px;width:70px}.mec-full-calendar-wrap .mec-search-form .col-md-5{float:right;padding:0 0 10px 0}.mec-full-calendar-wrap .mec-totalcal-view span{font-size:11px}}@media (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box{padding:20px 20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{padding-bottom:10px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px);margin-bottom:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view{margin-left:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:10px;text-align:center}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:100%}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:14.3%;text-align:center;font-size:10px;margin-right:-1px}}@media(max-width:780px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{width:calc(50% - 18px)!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:unset;padding-right:0}.mec-full-calendar-wrap .mec-search-form .col-md-3,.mec-full-calendar-wrap .mec-search-form .col-md-4,.mec-full-calendar-wrap .mec-search-form .col-md-5{margin:0;padding:0}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 7px;margin-top:20px}}@media(max-width:480px){.mec-full-calendar-wrap .mec-totalcal-box{padding:15px 10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:13.5%;text-align:center;font-size:11px}}@media(max-width:411px){.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:12%;font-size:10px}}@media(max-width:320px){.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:22.5%;font-size:11px}}.mec-totalcalview-selected:hover{color:#fff!important}.mec-search-form{padding:20px 10px}.mec-search-form .mec-dropdown-wrap{display:table;width:100%}.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{padding:0 10px;float:left;min-height:55px}.mec-search-form .mec-date-search,.mec-search-form .mec-text-input-search{width:50%;min-height:36px;display:block}.mec-full-calendar-wrap .mec-search-form .mec-date-search,.mec-full-calendar-wrap .mec-search-form .mec-text-input-search{width:100%}.mec-full-calendar-wrap .mec-search-form .col-md-3,.mec-full-calendar-wrap .mec-search-form .col-md-6,.mec-full-calendar-wrap .mec-search-form .col-md-8{padding:0}.mec-widget .mec-search-form .mec-date-search,.mec-widget .mec-search-form .mec-text-input-search{width:100%}.mec-widget .mec-search-form .mec-text-input-search{margin-top:10px}.mec-search-form .mec-date-search{clear:left}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:table-cell;float:none}.mec-widget .mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block}.mec-wrap .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{width:calc(100% - 36px);margin-bottom:20px}.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 106px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}@media only screen and (max-width:781px){.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{width:100%;float:none}.mec-search-form .mec-date-search{min-height:55px}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:50%;float:left}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3{margin-bottom:0;padding-bottom:0!important}}@media only screen and (max-width:479px){.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:100%;float:none}}@media only screen and (min-width:961px) and (max-width:1200px){.post-type-archive-mec-events .mec-totalcal-box .col-md-3,.post-type-archive-mec-events .mec-totalcal-box .col-md-4,.post-type-archive-mec-events .mec-totalcal-box .col-md-5{max-width:100%;width:100%}.post-type-archive-mec-events .mec-totalcal-box .col-md-4{padding:0 10px}.post-type-archive-mec-events .mec-totalcal-box .col-md-4 .mec-text-input-search{margin:0}.post-type-archive-mec-events .mec-totalcal-box .col-md-5{margin-bottom:20px;padding:0 10px 10px 10px}}@media only screen and (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-4,.post-type-archive-mec-events .mec-totalcal-box .col-md-4{padding:0 10px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{margin-bottom:0}.post-type-archive-mec-events .mec-totalcal-box .col-md-4 .mec-text-input-search{margin:0}.post-type-archive-mec-events .mec-totalcal-box .mec-totalcal-view{padding-right:15px}.mec-full-calendar-wrap .mec-search-form .col-md-5{margin-bottom:0}.post-type-archive-mec-events .mec-totalcal-box .col-md-5{padding:0}}@media only screen and (max-width:780px){.post-type-archive-mec-events .mec-totalcal-box .mec-totalcal-view span{margin-top:10px;margin-bottom:10px}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{margin-top:0}}@media only screen and (max-width:760px){.post-type-archive-mec-events .mec-totalcal-box .mec-totalcal-view span{margin-top:20px;margin-bottom:0}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{margin-top:20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4,.post-type-archive-mec-events .mec-totalcal-box .col-md-4{padding:0}}@media only screen and (max-width:1200px){.post-type-archive-mec-events .mec-full-calendar-wrap .mec-totalcal-view span{width:14.333%;font-size:8px}}@media only screen and (min-width:320px) and (max-width:960px){.post-type-archive-mec-events .mec-search-form .col-md-5 span{width:20%!important}}.mec-search-form .mec-text-address-search{float:left;width:100%;padding:0 10px;margin-bottom:20px}.ui-datepicker{background-color:#fff;border:1px solid #66afe9;border-radius:4px;box-shadow:0 0 8px rgba(102,175,233,.6);display:none;margin-top:4px;padding:10px;width:240px}.ui-datepicker a,.ui-datepicker a:hover{text-decoration:none;cursor:pointer}.ui-datepicker a:hover,.ui-datepicker td:hover a{color:#2c6396;-webkit-transition:color .1s ease-in-out;-moz-transition:color .1s ease-in-out;-o-transition:color .1s ease-in-out;transition:color .1s ease-in-out}.ui-datepicker .ui-datepicker-header{margin-bottom:4px;text-align:center}.ui-datepicker .ui-datepicker-title{font-weight:700}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{cursor:default;font-family:dashicons;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;height:20px;line-height:1.4;margin-top:2px;width:20px}.ui-datepicker .ui-datepicker-prev{float:left;text-align:left}.ui-datepicker .ui-datepicker-next{float:right;text-align:center}.ui-datepicker .ui-datepicker-prev:before{content:"\f341"}.ui-datepicker .ui-datepicker-next:before{content:"\f345"}.ui-datepicker .ui-icon{display:none}.ui-datepicker .ui-datepicker-calendar{table-layout:fixed;width:100%}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker .ui-datepicker-calendar th{text-align:center;padding:4px 0}.ui-datepicker .ui-datepicker-calendar td{border-radius:4px;-webkit-transition:background-color .1s ease-in-out,color .1s ease-in-out;-moz-transition:background-color .1s ease-in-out,color .1s ease-in-out;-o-transition:background-color .1s ease-in-out,color .1s ease-in-out;transition:background-color .1s ease-in-out,color .1s ease-in-out}.ui-datepicker .ui-datepicker-calendar td:hover{background-color:#eee;cursor:pointer}.ui-datepicker .ui-datepicker-calendar td a{text-decoration:none}.ui-datepicker .ui-datepicker-current-day{background-color:#4289cc}.ui-datepicker .ui-datepicker-current-day a{color:#fff}.ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover{background-color:#fff;cursor:default}.mec-owl-theme .owl-dots .owl-dot{border:none}.event-carousel-type1-head .mec-event-image{position:relative;min-height:150px}.event-carousel-type1-head .mec-event-image img{width:100%}.mec-event-carousel-content .mec-event-carousel-title a{transition:all .2s ease}.event-carousel-type1-head .mec-event-date-carousel{position:absolute;top:25px;left:1px;font-size:41px;width:160px;color:#fff;font-weight:500;background-color:#40d9f1;padding-left:21px;height:97px;line-height:2.3;padding-right:85px}.event-carousel-type1-head .mec-event-date-carousel:after{content:"";position:absolute;display:inline-block;z-index:-1;bottom:-13px;left:5px;width:0;border-width:13px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.event-carousel-type1-head .mec-event-date-info{font-size:12px;font-weight:300;position:absolute;top:27px;left:75px}.event-carousel-type1-head .mec-event-date-info-year{font-size:12px;font-weight:300;position:absolute;top:45px;left:75px}.mec-event-carousel-content{border:1px solid #e8e8e8;border-top:none;margin-top:-5px;padding:34px 9px 11px 37px}.mec-event-carousel-content .mec-event-carousel-title a{font-size:23px;font-weight:500;color:#000;letter-spacing:-1px}.mec-event-carousel-content p{font-size:14px;color:#7a7272;font-weight:300}.mec-owl-crousel-skin-type1 .owl-item .mec-event-article{padding:0 19px}.mec-event-carousel-type1 .owl-page.active span{background-color:#00aeef;height:14px;width:14px}.mec-event-carousel-type1 .mec-event-carousel-content{margin-bottom:15px;box-shadow:0 1px 2px rgba(0,0,0,.04);transition:all .27s ease}.mec-event-carousel-type1 .mec-event-carousel-content:hover{box-shadow:0 0 35px rgba(0,0,0,.07)}@media only screen and (min-width:768px) and (max-width:1000px),(min-width:270px) and (max-width:448px){.event-carousel-type1-head .mec-event-date-carousel{font-size:25px;line-height:2.5;padding-right:70px;height:64px;width:120px}.event-carousel-type1-head .mec-event-date-carousel:after{left:7px}.event-carousel-type1-head .mec-event-date-info{font-size:10px;top:13px;left:55px}.event-carousel-type1-head .mec-event-date-info-year{font-size:10px;top:25px;left:55px}.event-carousel-type1-head .mec-event-date-carousel:after{top:48px}}.event-carousel-type2-head{background:#fff;border:1px solid #e6e6e6}.event-carousel-type2-head .mec-event-carousel-content-type2{margin-top:15px;min-height:182px}.event-carousel-type2-head .mec-event-carousel-content-type2 .mec-event-date-info{font-size:15px;color:#9a9a9a;font-weight:300}.event-carousel-type2-head .mec-event-carousel-content-type2 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-carousel-content-type2 .mec-event-carousel-title a{color:inherit}.mec-event-carousel-type2 .event-carousel-type2-head .mec-event-carousel-content-type2 p{font-size:16px;font-weight:300;color:#444}.event-carousel-type2-head .mec-event-footer-carousel-type2{margin-top:33px;position:relative}.mec-event-carousel-type2 .mec-event-footer-carousel-type2 .mec-event-sharing-wrap{padding-left:0;left:0}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-event-sharing-wrap>li{border:none;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button{border:1px solid #e4e4e4;float:right;padding:7px 23px 7px;font-size:12px;text-transform:uppercase;color:#707070;font-weight:500;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button:hover{color:#fff}.mec-event-article .event-carousel-type2-head{padding:10%;margin-right:-1px}.mec-event-carousel-type2 .mec-owl-carousel .owl-wrapper-outer{border-right:1px solid #e6e6e6}.mec-wrap .mec-event-carousel-type2 .owl-next,.mec-wrap .mec-event-carousel-type2 .owl-prev,.mec-wrap .mec-event-carousel-type3 .owl-next,.mec-wrap .mec-event-carousel-type3 .owl-prev,.mec-wrap .mec-event-carousel-type4 .owl-next,.mec-wrap .mec-event-carousel-type4 .owl-prev{transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:47%;background-color:transparent!important}.mec-event-carousel-type2 .owl-next{right:-60px}.mec-event-carousel-type2 .owl-prev{left:-60px}.mec-event-carousel-type2 .owl-next i,.mec-event-carousel-type2 .owl-prev i,.mec-event-carousel-type3 .owl-next i,.mec-event-carousel-type3 .owl-prev i,.mec-event-carousel-type4 .owl-next i,.mec-event-carousel-type4 .owl-prev i{font-size:40px;color:#282828}.mec-event-carousel-type2 .owl-next i:hover,.mec-event-carousel-type2 .owl-prev i:hover,.mec-event-carousel-type3 .owl-next i:hover,.mec-event-carousel-type3 .owl-prev i:hover{color:#000;cursor:pointer}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}@media only screen and (min-width:320px) and (max-width:768px){.mec-event-carousel-type2 .owl-next,.mec-event-carousel-type2 .owl-prev,.mec-event-carousel-type3 .owl-next,.mec-event-carousel-type3 .owl-prev,.mec-event-carousel-type4 .owl-next,.mec-event-carousel-type4 .owl-prev{position:initial;top:100%}}.mec-event-carousel-type3 .mec-event-article{margin:0 10px}.event-carousel-type3-head .mec-event-image,.event-carousel-type3-head .mec-event-image img{width:100%;height:auto}.event-carousel-type3-head .mec-event-footer-carousel-type3{background:#fff;display:inline-block;width:calc(100% - 40px);margin-top:-74px;position:relative;margin-left:20px;margin-right:20px;margin-bottom:6px;padding:8% 11%;box-shadow:0 2px 10px -2px rgba(0,0,0,.2)}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button{border:1px solid #e4e4e4;text-transform:uppercase;float:right;padding:7px 23px 7px;font-size:12px;color:#707070;font-weight:500}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button:hover{color:#fff}.mec-event-footer-carousel-type3 span{font-size:15px;color:#9a9a9a;font-weight:300;display:block;margin-top:30px}.mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:29px;font-weight:700}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-footer-carousel-type3 .mec-event-carousel-title a{color:inherit}.event-carousel-type3-head .mec-event-footer-carousel-type3 p{font-size:16px;font-weight:300;color:#444!important;margin-bottom:36px}.mec-event-carousel-type3 .owl-next{right:-70px}.mec-event-carousel-type3 .owl-prev{left:-70px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap{left:11%}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}.event-carousel-type3-head .mec-end-date-label{display:inline;margin-left:2px}.event-carousel-type4-head.clearfix{position:relative;overflow:hidden;background:#fff}.event-carousel-type4-head .mec-event-overlay{position:absolute;left:0;right:0;bottom:0;top:0;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-hover-carousel-type4{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out;opacity:0;visibility:hidden}.mec-event-carousel-type4 .mec-event-article{margin:0 10px}.mec-event-carousel-type4 .mec-event-article:hover .mec-event-hover-carousel-type4{opacity:1;visibility:visible}.mec-event-hover-carousel-type4 .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-hover-carousel-type4 .mec-event-date{font-size:11px;text-transform:uppercase;font-weight:400;line-height:1.6}.mec-event-hover-carousel-type4 .mec-event-date span{display:block;font-weight:700;font-size:14px}.mec-event-hover-carousel-type4 .mec-event-title{color:#fff;margin:20px 0 38px;font-size:16px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-hover-carousel-type4 .mec-btn-wrapper{text-align:left}.mec-event-hover-carousel-type4 .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:10px 14px;letter-spacing:1.5px;font-size:11px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-hover-carousel-type4 .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-carousel-type4 .owl-next{right:-70px}.mec-event-carousel-type4 .owl-prev{left:-70px}.mec-carousel-type4-head{margin-bottom:25px}.mec-carousel-type4-head-title{padding:0 11px;text-align:left;font-weight:700;font-size:20px;color:#000}.mec-carousel-type4-head-link{text-align:right;padding:0 11px}.mec-carousel-type4-head-link a{background:#222;color:#fff;padding:10px 38px;transition:all .3s ease}.mec-carousel-type4-head-link a:hover,.mec-carousel-type4-head-link a:visited{color:#fff}@media (max-width:960px){.mec-event-carousel-type4 .owl-stage{left:-50px}}.mec-wrap .mec-event-countdown-style1{color:#fff;padding:0!important;display:table;background:#437df9}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1{z-index:5;padding:50px 1% 50px 4%;display:table-cell;float:none;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2{background-color:rgba(0,0,0,.05);height:100%;padding-top:0;display:table-cell;float:none;position:relative;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{background-color:#f8f8f8;display:table-cell;float:none;text-align:center;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style1 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{content:"";position:absolute;display:inline-block;z-index:1;top:50%;margin-top:-11px;right:-24px;width:0;border-width:12px;border-style:solid;border-color:transparent transparent transparent #4077ed}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style1 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto}.mec-event-countdown-style1 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style1 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (min-width:1200px){.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%}}@media (max-width:960px){.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%;transform:rotate(90deg)}}@media (max-width:480px){.mec-event-countdown-style1 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{padding:10px 5px;min-width:50px;margin:3px 1px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:8px}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{display:inline}}.mec-wrap .mec-event-countdown-style2{color:#fff;padding:30px 0;background:#437df9;max-width:600px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part3{width:100%;float:none;vertical-align:middle;padding:50px 10% 50px 10%}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2{padding-top:12%;padding-bottom:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style2 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date-place{text-align:left;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 8px}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#222;background:#fff;transition:all .24s ease}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button:hover{background:#222;color:#fff}.mec-event-countdown-style2 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0}.mec-event-countdown-style2 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style2 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (max-width:767px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:80px;padding:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:26px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:11px}}@media only screen and (max-width:479px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:40px;padding:15px 10px;margin:2px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:20px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:9px}}@media (max-width:380px){.mec-event-countdown-style2 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{padding:10px 4px;margin:4px 1px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:7px}}.mec-wrap .mec-event-countdown-style3{color:#fff;padding:0;background:#282828;display:table;width:100%}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1{width:68%;padding:50px 1% 50px 4%;vertical-align:middle;display:table-cell;position:relative}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:32%;display:table-cell;position:relative;padding-bottom:0;padding-top:0}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 img{width:100%;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{font-weight:300;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{color:#fff;font-size:36px;letter-spacing:-2px;font-weight:700;line-height:1;margin-top:-10px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style3 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style3 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto;position:absolute;top:40px;right:20px}.mec-event-countdown-style3 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style3 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:11px;color:#888;margin:8px 0 0;line-height:1}.mec-event-countdown-style3 .mec-event-date{width:176px;height:96px;background:#40d9f1;color:#fff;font-size:13px;position:absolute;left:-27px;top:146px}.mec-event-countdown-style3 .mec-event-date:after{content:"";position:absolute;display:inline-block;z-index:1;bottom:-18px;left:8px;width:0;border-width:19px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:50px;position:absolute;top:36px;left:12px;letter-spacing:-3px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:80px;top:26px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:80px;top:45px}.mec-event-countdown-style3 .mec-event-countdown-part-details{padding-top:35px;margin-bottom:50px;min-height:100px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-title{font-size:17px;color:#fff;line-height:1.4;padding-right:20px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link{color:#fff;font-size:12px;position:relative;padding-left:22px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link:before{content:"";display:inline-block;width:18px;border-top:1px solid #fff;position:absolute;left:0;top:8px}.mec-event-countdown-style3 .mec-event-title-link{position:absolute;left:190px;top:152px}.event-carousel-type1-head .mec-event-date-carousel:before,.mec-event-countdown-style3 .mec-event-date:before{content:'';position:absolute;left:0;bottom:0;z-index:2;width:100%;height:96px;background:0 0;display:inline-block;box-shadow:0 5px 5px rgba(0,0,0,.12)}@media only screen and (min-width:960px){.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown li{padding:10px}.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:31px}}@media (max-width:959px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:100%;display:block}.mec-event-countdown-style3 .mec-event-title-link{top:190px}.mec-event-countdown-style3 .mec-event-countdown{top:96px}.mec-event-countdown-style3 .mec-event-date{left:0;top:190px}.mec-event-countdown-style3 .mec-event-date:after{display:none}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{display:inline}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:150px}}@media (max-width:767px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:26px;letter-spacing:-1px}.mec-event-countdown-style3 .mec-event-title-link{left:130px}.mec-event-countdown-style3 .mec-event-date{width:120px;font-size:10px;height:63px}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:36px;top:20px;left:4px;letter-spacing:-2px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:52px;top:12px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:52px;top:28px}}@media (max-width:380px){.mec-event-countdown-style3 .mec-event-title-link{left:10px;top:260px}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:300px}.mec-event-countdown-style3 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:10px 5px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:8px}}.mec-slider-t1-wrap{width:100%;padding:60px 90px;background:#f7f7f7;min-height:560px;position:relative}.mec-slider-t1{height:500px;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t1 .mec-event-article{position:relative;height:500px}.mec-slider-t1 .mec-slider-t1-img{position:relative;background-size:cover!important;background-position:center!important;width:50%;height:100%;float:right;margin:0;overflow:hidden}.mec-slider-t1 .mec-slider-t1-content{width:50%;float:left;height:100%;background:#fff;padding:6%}.mec-slider-t1-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t1-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:54px;height:54px;line-height:48px;border-radius:0;text-align:center;background:#fff;box-shadow:0 2px 11px 0 rgba(0,0,0,.045);transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-27px;cursor:pointer}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 29px 0 rgba(0,0,0,.095)}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:12px;color:#282828;transition:all .21s ease}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{font-size:13px;color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t1{margin:0 auto;max-width:900px}}@media only screen and (max-width:960px){.mec-slider-t1 .mec-slider-t1-content,.mec-slider-t1 .mec-slider-t1-img{width:100%;float:none}.mec-slider-t1 .mec-slider-t1-img{height:300px}.mec-slider-t1,.mec-slider-t1 .mec-event-article{height:auto}}@media only screen and (max-width:768px){.mec-slider-t1-wrap{padding:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:10px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}}@media only screen and (max-width:479px){.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t2-wrap{width:100%;padding:0;background:#fff;min-height:600px;position:relative}.mec-slider-t2 .mec-event-article{height:600px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t2 .mec-slider-t2-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:70%;height:100%;margin:0;overflow:hidden}.mec-slider-t2 .mec-slider-t2-content{width:50%;position:absolute;right:0;top:60px;bottom:60px;padding:5%}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern *{color:#fff}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-content,.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t2-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:84px;cursor:pointer}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}.mec-wrap.colorskin-custom .mec-slider-t2 .mec-event-article .mec-event-date.mec-color{color:#fff}@media only screen and (min-width:961px){.mec-slider-t2{margin:0 auto;max-width:1200px}}@media only screen and (max-width:960px){.mec-slider-t2 .mec-slider-t2-content,.mec-slider-t2 .mec-slider-t2-img{width:100%;float:none;position:static}.mec-slider-t2 .mec-slider-t2-img{height:300px}.mec-slider-t2 .mec-event-article{height:auto}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px}}@media only screen and (max-width:479px){.mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:22px}}.mec-slider-t3-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t3 .mec-event-article{height:700px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t3 .mec-slider-t3-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;opacity:.68;z-index:1}.mec-slider-t3 .mec-slider-t3-content{width:50%;height:auto;vertical-align:middle;display:table;position:absolute;left:0;top:50%;transform:translateY(-50%);bottom:0;padding:0 2% 0 7%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t3 .mec-slider-t3-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-content,.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-slider-t3-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t3-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{border-color:#40d9f1}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-22px;cursor:pointer}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next{right:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:50px;font-weight:300}.mec-slider-t3-content.mec-event-grid-modern .mec-event-description{font-size:19px}}@media only screen and (max-width:767px){.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}}@media only screen and (max-width:479px){.mec-slider-t3 .mec-slider-t3-content{width:100%}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t4-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t4 .mec-event-article{height:700px;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t4 .mec-slider-t4-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;z-index:1}.mec-slider-t4 .mec-slider-t4-content{width:auto;max-width:700px;background:rgba(37,37,37,.94)!important;height:auto;vertical-align:middle;display:table;position:absolute;left:8%;top:19%;padding:3%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t4 .mec-slider-t4-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-content,.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:13px;padding:0 42px;line-height:49px;height:50px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t4-content.mec-event-grid-modern .mec-slider-t4-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next{right:60px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{right:112px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:767px){.mec-slider-t4 .mec-slider-t4-content{width:100%;left:0;top:auto;bottom:0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t5-wrap{width:auto;max-width:570px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-slider-t5{height:auto;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t5 .mec-event-article{position:relative;height:auto}.mec-slider-t5 .mec-slider-t5-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:300px;float:none;margin:0;overflow:hidden}.mec-slider-t5 .mec-slider-t5-content{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-slider-t5 .mec-events-content p{margin-bottom:20px}.mec-slider-t5-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t5-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t5 .mec-slider-t5-col6{width:50%;float:left;height:100%}.mec-slider-t5 .mec-slider-t5-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-slider-t5 .mec-slider-t5-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-slider-t5 .mec-slider-t5-col6 address{font-size:12px;margin-bottom:0}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t5-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:768px){.mec-slider-t5 .mec-slider-t5-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-single-modern .mec-events-event-image{text-align:center}.mec-single-modern .mec-events-event-image img{width:100%}.mec-single-modern .mec-single-event-bar{background-color:#f7f7f7;margin:20px 0 0;padding:15px;display:table;width:100%}.mec-single-modern .mec-single-event-bar>div{display:table-cell}.mec-single-modern .mec-single-event-bar>div i{font-size:20px;vertical-align:middle}.mec-single-modern .mec-single-event-bar>div .mec-time-comment{font-size:12px;color:#999}.mec-single-modern .mec-single-event-bar>div h3{text-transform:uppercase;font-size:16px;font-weight:700;padding-bottom:5px;display:inline;color:#000;padding-left:10px}.mec-single-modern .mec-single-event-bar>div dd{font-size:14px;color:#8d8d8d;padding-left:34px;margin-bottom:0}.mec-single-modern .col-md-4 .mec-frontbox{margin-top:-50px;margin-bottom:70px;padding:20px;border:none;background:#f7f7f7;box-shadow:none}.mec-single-modern .col-md-4.mec-no-image .mec-frontbox{margin-top:20px}.mec-next-occurrence li{list-style:none}@media only screen and (min-width:960px){.mec-single-modern .col-md-4 .mec-frontbox{margin-left:20px}}@media only screen and (max-width:960px){.mec-single-modern .mec-single-event-bar>div{display:block}}.lity-content>div{overflow:auto}.mec-next-event-details li{list-style:none;margin-top:20px}.mec-next-event-details h6{text-transform:uppercase;font-size:13px;padding-bottom:5px;display:inline;color:#222;padding-left:0}.mec-next-event-details abbr{display:block;padding-left:12px;color:#8d8d8d}.mec-next-event-details i{margin-right:10px;margin-left:12px}.mec-next-event-details i:before{color:#40d9f1}.mec-next-event-details a{text-align:center;display:block;background:#fff;padding:6px 0;font-size:11px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;transition:.3s}.mec-single-modal.mec-single-modern .mec-single-title{text-align:center;padding:15px 10px 0}.admin-bar .mec-single-modal.mec-single-modern .mec-single-title{padding-top:40px}.mec-single-modal.mec-single-modern .mec-single-event-bar{padding:5px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div dd{font-size:13px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div h3{font-size:15px}@media only screen and (min-width:960px){.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-left:0}}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-top:10px;margin-bottom:10px}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox.mec-event-meta{padding:0}.mec-single-modal .mec-event-meta dd.mec-organizer-email a,.mec-single-modal .mec-event-meta dd.mec-organizer-url a{font-size:12px;display:block}.mec-organizer-description p{padding-left:12px}.mec-modal-wrap{max-width:60vw;max-height:90vh!important;background:#fff;box-shadow:0 1px 55px rgba(0,0,0,.5);overflow-x:hidden!important}@media(max-width:1023px){.mec-modal-wrap{max-width:80vw}}.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li,.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a.mec-events-button{display:block;text-align:center}.mec-holding-status-expired{color:#d8000c}.mec-holding-status-ongoing{color:#0dbf52}body .featherlight .featherlight-content{background:0 0;overflow:unset;z-index:9999}body .featherlight .featherlight-close-icon{position:fixed;top:40px;right:40px;background:0 0;color:#fff;border:1px solid #fff;border-radius:0}body .featherlight .featherlight-close-icon:hover{background:#fff;color:#000;border:1px solid #000}@media (max-width:320px){.mec-wrap span.flip-clock-divider{width:20px}.mec-single-event .mec-events-meta-group-countdown{padding:15px 12%}}@media (max-width:414px){.mec-wrap span.flip-clock-divider{width:30px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 7%}}@media (max-width:480px){body .featherlight .featherlight-content{width:95%}.mec-wrap span.flip-clock-divider{width:7px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 1%}body .featherlight .featherlight-close-icon{color:#000;border-color:#000}}@media(max-width:1366px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:20px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 15px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:48px}}@media(max-width:1280px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:14px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:15px 10px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:38px}}@media(min-width:961px) and (max-width:1024px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:7px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:15px 5px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:14px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul li a div{font-size:30px}}@media(max-width:640px){body .mec-modal-wrap .mec-single-modal.featherlight-close-icon{top:14px;right:14px}}@media(max-width:480px){.featherlight .featherlight-content,body .mec-modal-wrap{max-width:100%}body .mec-modal-wrap.flip-clock-divider .flip-clock-label{display:block}}@media (max-width:414px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:50px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 65px}body .featherlight-content .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 2px 20px 2px!important}body .featherlight-content .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:3px!important}}@media (max-width:375px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:50px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 45px}}@media (max-width:320px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:20px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 40px}}.mec-single-event-bar dd{margin-left:0}.mec-events-toggle{max-width:960px;margin-left:auto;margin-right:auto}.mec-events-toggle .mec-toggle-item{border:1px solid #e4e4e4;margin-bottom:15px;box-shadow:0 10px 15px #f3f3f3}.mec-events-toggle .mec-toggle-item-inner{cursor:pointer;position:relative;padding:30px 60px 30px 15px;background:#fff;transition:all .3s ease;min-height:100px;display:table;width:100%;border-collapse:separate}.mec-events-toggle .mec-toggle-item-inner:hover{background:#fbfbfb}.mec-toggle-item-col{width:200px;border-right:1px solid #e3e3e3;margin-right:15px;display:table-cell;padding-right:5px}.mec-toggle-item-col .mec-event-date{font-size:38px;line-height:40px;float:left;margin-right:8px}.mec-toggle-item-col .mec-event-month,.mec-toggle-item-col .mec-time-details{text-transform:uppercase;font-size:12px;line-height:14px;padding-top:4px;font-weight:700}.mec-toggle-item-col .mec-event-detail{font-size:10px}.mec-toggle-item-col .mec-event-day{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:35px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-events-toggle .mec-toggle-title{color:#000;font-size:23px;font-weight:600;margin-bottom:0;transition:all .3s ease;display:table-cell;text-align:left;max-width:calc(100% - 200px);padding-left:15px;vertical-align:middle}.mec-events-toggle .mec-toggle-item-inner span.event-color{width:5px;height:100%;position:absolute;left:-1px;top:0;bottom:0;border-radius:0;margin:0}.mec-events-toggle .mec-toggle-item-inner i{position:absolute;font-size:30px;right:25px;top:50%;transform:translate(0,-50%);cursor:pointer}.mec-events-toggle .mec-toggle-item.is-open i.mec-sl-plus:before{content:"\e615"}.mec-events-toggle .mec-toggle-item.is-open .mec-toggle-title{background:#f8f8f8;cursor:pointer}.mec-events-toggle .mec-toggle-content{border-top:1px solid #e4e4e4}.mec-events-toggle .mec-toggle-content .mec-modal-wrap{margin:0;max-width:100%;box-shadow:none}.mec-events-toggle .mec-toggle-content .mec-modal-wrap .mec-single-event{margin:0}.mec-events-toggle .mec-toggle-content .mec-single-event-bar,.mec-events-toggle .mec-toggle-content h1.mec-single-title{display:none}.mec-events-toggle .media-links a{margin-bottom:0}.mec-events-toggle .mec-toggle-content .mec-toggle-meta{margin-bottom:14px}.mec-events-toggle #mec_speakers_details.mec-frontbox{padding:0;margin:0}.mec-events-toggle .mec-toggle-item h3.mec-speakers{border:none;text-align:left}.mec-events-toggle .mec-toggle-item h3.mec-speakers:before{content:"\e063";font-family:simple-line-icons;border:none;position:relative;display:inline-block;left:unset;bottom:unset;font-size:22px;font-weight:400;padding:0 11px 0 28px;vertical-align:middle}@media only screen and (max-width:767px){.mec-toggle-item-inner .mec-toggle-item-col{float:none;width:100%;border-right:none;margin-bottom:5px;display:block;max-width:100%;padding-left:15px}.mec-events-toggle .mec-toggle-title{display:block;width:100%;max-width:100%}}.mec-events-agenda-wrap{margin:10px 0;border:1px solid #e9e9e9;padding-left:20px;box-shadow:0 2px 2px rgba(0,0,0,.03)}.mec-events-agenda{padding:0;border-bottom:1px solid #e9e9e9;overflow:hidden}.mec-agenda-date-wrap{width:210px;padding-top:15px;float:left;font-size:13px}.mec-agenda-date-wrap i,.mec-agenda-event i{font-size:11px;color:#aaa;margin-right:4px;margin-left:1px}.mec-agenda-event i{vertical-align:middle;margin-right:1px}.mec-agenda-events-wrap{float:left;width:calc(100% - 210px);background:#f9f9f9;padding:15px}.mec-agenda-time{font-size:11px;color:#707070;padding-right:10px;width:138px;display:inline-block}.mec-agenda-event-title{position:relative;padding-left:14px}.mec-agenda-event-title a{font-family:Roboto,Montserrat,Helvetica,Arial,sans-serif;font-size:14px;font-weight:600;color:#333}.mec-agenda-event-title span.event-color{width:9px;height:9px;position:absolute;left:0;top:4px;margin:0}.mec-agenda-date-wrap span.mec-agenda-day{color:#aaa;font-size:12px}@media only screen and (max-width:767px){.mec-agenda-date-wrap,.mec-agenda-events-wrap{float:none;width:100%}.mec-events-agenda span.mec-agenda-event-title{display:block;width:100%}.mec-agenda-event-title span.event-color{top:7px}.mec-agenda-event-title a{font-size:13px}}.mec-yearly-view-wrap{margin:0 0 15px;border:1px solid #e6e6e6;box-shadow:0 2px 4px rgba(0,0,0,.04);border-bottom-width:4px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar{max-width:100%;width:232px;padding:10px;background:#fff;margin:10px;display:inline-block}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar dl dt{transition:none;height:30px;width:30px;line-height:30px;border-radius:0;font-size:12px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar .mec-calendar-events-sec{padding:10px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar .mec-has-event:after{width:4px;height:4px;bottom:3px;margin-left:-2px}.mec-yearly-view-wrap .mec-calendar-side .mec-calendar-table{min-height:200px}.mec-calendar.mec-yearly-calendar .mec-calendar-table-head dl dt{background:#f9f9f9;font-size:13px}.mec-calendar.mec-yearly-calendar .mec-calendar-table-title{text-align:center;font-size:15px;font-weight:700;color:#222;margin-top:-5px;padding-bottom:5px}.mec-yearly-view-wrap .mec-yearly-calendar-sec{min-height:200px;width:538px;overflow:hidden;float:left;background:#f8f8f8;padding:15px}.mec-yearly-view-wrap .mec-yearly-agenda-sec{min-height:200px;width:calc(100% - 538px);float:left;padding:0 0 0 20px;overflow:hidden}.mec-yearly-view-wrap .mec-yearly-title-sec{position:relative;padding:15px;text-align:center;border-bottom:1px solid #e6e6e6;box-shadow:0 1px 3px rgba(0,0,0,.02)}.mec-yearly-view-wrap .mec-yearly-title-sec h2{font-size:30px;line-height:40px;color:#333;margin:0;font-weight:700}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year,.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{position:absolute;top:50%;margin-top:-15px;min-width:30px;height:30px;line-height:30px;padding:0 8px;text-align:center;background:#fff;color:#666;font-size:14px;border:1px solid #eee;border-radius:2px;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease;cursor:pointer}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{right:auto;left:20px;padding-right:14px}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year{left:auto;right:20px;padding-left:14px}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year i,.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-yearly-view-wrap .mec-events-agenda.mec-selected{box-shadow:-10px 0 0 0 #fffcf2,0 -1px 0 #fbebb6;background:#fffcf2;border-color:#fbebb6;color:#f9af29}@media only screen and (max-width:959px){.mec-yearly-view-wrap .mec-yearly-calendar-sec{width:268px;padding:10px 5px}.mec-yearly-view-wrap .mec-yearly-agenda-sec{width:calc(100% - 268px);padding:0 0 0 10px}}@media only screen and (max-width:767px){.mec-yearly-view-wrap .mec-yearly-agenda-sec,.mec-yearly-view-wrap .mec-yearly-calendar-sec{width:100%;float:none}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar{width:auto}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar dl dt{width:14.2%}.mec-yearly-view-wrap .mec-yearly-title-sec h2{font-size:25px}}.mec-yearly-view-wrap .mec-agenda-event i,.mec-yearly-view-wrap .mec-agenda-time{display:none}@media only screen and (min-width:768px){.mec-yearly-view-wrap .mec-events-agenda-wrap{margin-top:0;border:none;padding-left:0;box-shadow:none}.mec-yearly-view-wrap .mec-agenda-date-wrap{width:174px;font-size:11px;padding-top:10px}.mec-yearly-view-wrap .mec-agenda-events-wrap{width:calc(100% - 174px);padding:10px}.mec-yearly-view-wrap .mec-agenda-event-title a{font-size:13px}.mec-yearly-view-wrap .mec-agenda-event-title span.event-color{width:8px;height:8px}.mec-yearly-view-wrap .mec-agenda-date-wrap span.mec-agenda-day{font-size:11px}.mec-yearly-view-wrap .mec-yearly-calendar-sec{box-shadow:-2px 0 5px rgba(0,0,0,.03) inset}}@media only screen and (max-width:1200px){.mec-yearly-view-wrap .mec-agenda-event-title a{font-size:12px;padding-right:6px}}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table{padding-bottom:10px;border-bottom:none}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt:hover{cursor:pointer}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-has-no-event,.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-has-no-event:hover{color:#bbb;cursor:default}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-day-active{background:#40d9f1;color:#fff;position:relative}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-day-active:after{content:'';position:absolute;display:block;bottom:-20px;left:50%;margin-left:-10px;width:0;border-width:10px;border-style:solid;border-color:#40d9f1 transparent transparent transparent}.mec-timetable-events-list{padding:10px 20px;border:none;margin:0}.mec-timetable-events-list .mec-timetable-event{padding:10px 0;border-bottom:1px dashed #ddd}.mec-timetable-events-list .mec-timetable-event:last-child{border:none}.mec-timetable-event .mec-timetable-event-span{font-size:12px;color:#444;padding-right:30px;line-height:22px}.mec-timetable-events-list .mec-timetable-event i{font-size:13px;color:#aaa;margin-right:3px;vertical-align:baseline}.mec-timetable-event .mec-timetable-event-span a{color:#333}.mec-timetable-event .mec-timetable-event-time{font-size:11px}.mec-timetable-event .mec-timetable-event-time i{vertical-align:text-bottom}.mec-timetable-event .mec-timetable-event-title{font-size:13px}.mec-timetable-event .mec-timetable-event-title .event-color{width:10px;height:10px}.mec-timetable-events-list .mec-timetable-event.mec-util-hidden{display:none}.mec-timetable-events-list.mec-util-hidden{display:none}@media only screen and (min-width:768px){.mec-timetable-events-list{display:table;width:100%;margin:10px 0 20px}.mec-timetable-events-list .mec-timetable-event{display:table-row;padding:0;border:none;background:#fff}.mec-timetable-events-list .mec-timetable-event:hover{background:#fafafa}.mec-timetable-event .mec-timetable-event-span{display:table-cell;padding:10px 15px;border-bottom:1px solid #ebebeb}.mec-timetable-events-list .mec-timetable-event:last-child .mec-timetable-event-span{border-bottom:none}}@media only screen and (max-width:767px){.mec-timetable-event .mec-timetable-event-title{display:block;width:100%;padding:5px 0 10px;font-weight:700}}.mec-timetable-t2-wrap{border:1px solid #e6e6e6;background:#fafafa;padding:0 15px 15px;overflow:hidden;box-shadow:0 3px 2px 0 rgba(0,0,0,.012)}.mec-timetable-t2-col{width:20%;float:left;min-height:20px;padding-right:1px;background:0 0}.mec-ttt2-title{background:#fafafa;color:#333;font-size:13px;font-weight:600;text-transform:uppercase;letter-spacing:1px;text-align:center;padding:25px 10px 10px;margin-bottom:1px}.mec-timetable-t2-col .mec-event-article{position:relative}.mec-timetable-t2-col .mec-event-article .event-color{position:absolute;width:auto;height:auto;left:0;right:0;top:0;bottom:0;margin:0;z-index:1;border-radius:2px}.mec-timetable-t2-content{position:relative;z-index:2;color:#fff;padding:15px 15px 20px;text-align:left;height:185px;margin-bottom:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title{line-height:22px;margin-bottom:13px;white-space:nowrap;padding-right:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title a{color:#fff;font-size:15px;font-weight:600;white-space:pre-line;overflow:hidden}.mec-timetable-t2-content div{color:#fff;font-size:11px;font-weight:400;line-height:19px;white-space:nowrap}.mec-timetable-t2-content div i{font-size:12px;margin-right:4px}@media only screen and (max-width:960px){.mec-timetable-t2-col{width:100%;float:none}}@media(min-width:961px){.mec-timetable-col-7{width:14.28%}.mec-timetable-col-6{width:16.6666%}}.mec-timetable-t3-wrap td{position:relative;padding:0}.mec-timetable-t3-wrap td a{width:100%;display:block;min-height:110px}.mec-weather-box{padding:15px 0}.mec-weather-head{min-height:90px;padding:5px 0;clear:both;overflow:hidden;margin-bottom:25px;border-radius:10px;background:#238af5;position:relative}.mec-weather-icon-box{float:left;width:80px;height:80px;border-radius:10px;overflow:hidden;background:#238af5}.mec-weather-icon{width:80px;height:80px;display:inline-block;border-radius:10px}.mec-weather-summary{float:left;width:calc(100% - 80px);padding-left:10px;margin:10px 0;height:60px}.mec-weather-summary-report{font-size:15px;color:rgba(255,255,255,.68);margin-bottom:6px}.mec-weather-summary-temp{font-family:Roboto,Sans-serif;font-weight:300;color:#fff;font-size:29px;line-height:1}.degrees-mode{background:rgba(0,0,0,.2);cursor:pointer;font-weight:300;font-size:18px;padding:4px 5px;line-height:1;color:#fff;position:absolute;border-radius:8px;bottom:16px;left:16px}.mec-weather-extras{width:auto;padding:10px 15px 0 15px;float:right;min-height:80px;color:#fff;font-size:13px;line-height:1}.mec-weather-extras{width:auto;padding:10px 15px 0 15px;float:right;min-height:80px;color:#fff;font-size:13px;line-height:1}.mec-weather-extras div{line-height:20px;height:20px}.mec-weather-extras span{color:rgba(255,255,255,.68);font-size:12px;text-transform:uppercase}.mec-weather-extras var{font-size:11px;letter-spacing:.4px}.mec-weather-icon.clear-day,.mec-weather-icon.clear-night{background-image:url(../img/mec-weather-icon-01.png)}.mec-weather-icon.partly-sunny-day,.mec-weather-icon.partly-sunny-night{background-image:url(../img/mec-weather-icon-02.png)}.mec-weather-icon.partly-cloudy-day,.mec-weather-icon.partly-cloudy-night{background-image:url(../img/mec-weather-icon-03.png)}.mec-weather-icon.cloudy,.mec-weather-icon.fog,.mec-weather-icon.wind{background-image:url(../img/mec-weather-icon-04.png)}.mec-weather-icon.thunderstorm{background-image:url(../img/mec-weather-icon-05.png)}.mec-weather-icon.rain{background-image:url(../img/mec-weather-icon-06.png)}.mec-weather-icon.hail,.mec-weather-icon.sleet,.mec-weather-icon.snow{background-image:url(../img/mec-weather-icon-07.png)}.mec-av-spot-wrap{width:auto;max-width:1200px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-av-spot{height:auto;border:1px solid #eee;box-shadow:0 6px 12px -4px rgba(0,0,0,.05)}.mec-av-spot .mec-event-article{position:relative;height:auto}.mec-av-spot .mec-av-spot-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:330px;float:none;margin:0;overflow:hidden}.mec-av-spot .mec-av-spot-content,.mec-av-spot .mec-av-spot-head{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-av-spot .mec-av-spot-head{background:#222;color:#fff;min-height:80px}.mec-av-spot .mec-av-spot-head .mec-av-spot-box{padding-top:25px;font-size:13px;color:#ddd}.mec-av-spot .mec-av-spot-head .mec-av-spot-box span{color:#40d9f1;font-size:40px;font-weight:700;font-style:italic}.mec-av-spot .mec-av-spot-head .mec-event-countdown{text-align:center;padding-top:10px;display:table;table-layout:fixed;margin:0 auto;float:right}.mec-av-spot .mec-av-spot-head .mec-event-countdown li{display:table-cell;padding:10px 20px;position:relative;height:60px}.mec-av-spot .mec-av-spot-head .mec-event-countdown p{margin-bottom:0}.mec-av-spot .mec-events-content p{margin-bottom:20px}.mec-av-spot-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-av-spot-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-av-spot-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-av-spot .mec-av-spot-col6{width:50%;float:left;height:100%}.mec-av-spot .mec-av-spot-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-av-spot .mec-av-spot-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-av-spot .mec-av-spot-col6 address{font-size:12px;margin-bottom:0}.mec-av-spot-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-av-spot-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05)}@media only screen and (max-width:768px){.mec-av-spot .mec-av-spot-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-av-spot-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-events-masonry-wrap{display:block;width:auto}.mec-masonry-item-wrap{width:calc(33.33% - 30px);padding:0;margin:0 15px 30px;min-height:10px;position:relative}.isotope-item{z-index:2}.isotope-hidden.isotope-item{pointer-events:none;z-index:1}.isotope,.isotope .isotope-item{-webkit-transition-duration:.8s;-moz-transition-duration:.8s;transition-duration:.8s}.isotope{-webkit-transition-property:height,width;-moz-transition-property:height,width;transition-property:height,width}.isotope .isotope-item{-webkit-transition-property:-webkit-transform,opacity;-moz-transition-property:-moz-transform,opacity;transition-property:transform,opacity}.mec-events-masonry-cats{padding:10px;margin-bottom:25px;text-align:center;clear:both;list-style:none outside none}.mec-events-masonry-cats a{border-radius:2px;padding:6px 12px;font-size:13px;line-height:1.2;color:#333;font-weight:400;margin-top:0!important;text-align:center;display:inline-block;width:auto;border:2px solid transparent;transition:all .2s ease}.mec-events-masonry-cats a:hover{border-color:#40d9f1;color:#333}.mec-events-masonry-cats a.mec-masonry-cat-selected{border:2px solid #40d9f1;color:#40d9f1}.mec-masonry{background:#f7f7f7;height:auto;border:1px solid #eee;box-shadow:0 6px 12px -4px rgba(0,0,0,.05)}.mec-masonry .mec-event-article{position:relative;height:auto}.mec-masonry .mec-masonry-img{position:relative;width:100%;height:auto;float:none;margin:0;overflow:hidden}.mec-masonry .mec-masonry-img img{width:100%}.mec-masonry .mec-masonry-content,.mec-masonry .mec-masonry-head{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-masonry .mec-events-content p{margin-bottom:20px}.mec-masonry-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-masonry-item-wrap .mec-event-grid-modern .event-grid-modern-head{min-height:79px;margin-bottom:10px;padding:14px 5%;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-masonry-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-masonry-content.mec-event-grid-modern .mec-event-content{padding-top:20px}.mec-masonry-content.mec-event-grid-modern .mec-event-footer{height:auto}.mec-masonry .mec-masonry-col6 .mec-event-date{font-size:52px;letter-spacing:-2px;line-height:41px;vertical-align:top}.mec-masonry .mec-masonry-col6{width:50%;float:left;height:100%}.mec-masonry .mec-masonry-col6 i{font-size:24px;float:left;margin-right:7px;height:50px}.mec-masonry .mec-masonry-col6 .mec-event-month,.mec-masonry .mec-masonry-col6 h6{text-transform:capitalize;font-size:15px;padding:4px 0;display:inline;color:#444}.mec-masonry .mec-masonry-col6 .mec-event-detail,.mec-masonry .mec-masonry-col6 address{font-size:11px;margin-bottom:0}.mec-masonry-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-masonry-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05)}@media only screen and (max-width:960px){.mec-masonry-item-wrap{width:calc(50% - 30px)}}@media only screen and (max-width:768px){.mec-masonry .mec-masonry-col6{width:100%;margin:10px 0}.mec-masonry-item-wrap{width:calc(100% - 30px)}}@media only screen and (max-width:479px){.mec-masonry-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.btn-wrapper{text-align:center}.countdown-wrapper .btn-wrapper{padding-top:10px;padding-right:0}.countdown-wrapper h5.countdown-message{letter-spacing:5px;font-weight:500;font-size:18px}.blox.dar .countdown-wrapper p,.countdown-wrapper p{color:#888}.countdown-wrapper a.button.black{float:right;margin-right:0}.mec-wrap .threedaydigits .days .flip-clock-label{right:-100px}@media only screen and (min-width:320px) and (max-width:767px){.mec-wrap .flip-clock-wrapper ul{width:29px!important}.mec-wrap .flip-clock-wrapper ul li a div div.inn{font-size:25px!important}.mec-wrap .flip-clock-divider .flip-clock-label{left:0;font-weight:300}.mec-wrap span.flip-clock-divider{width:12px}}@media only screen and (min-width:320px) and (max-width:480px){.mec-wrap .flip-clock-wrapper ul{width:29px!important}.mec-wrap .flip-clock-wrapper ul li a div div.inn{font-size:25px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}.mec-wrap span.flip-clock-divider:first-child{width:0}.mec-wrap span.flip-clock-divider{width:20px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 18%}}@media screen and (min-width:960px) and (max-width:1200px){.mec-wrap .threedaydigits ul{height:50px;width:47px}}@media screen and (min-width:480px) and (max-width:768px){.mec-wrap .threedaydigits ul{height:48px;width:26px!important}.mec-wrap .threedaydigits .flip-clock-label{font-size:8px;left:-8px}}@media screen and (min-width:320px) and (max-width:480px){.mec-wrap .threedaydigits ul{height:48px;width:22px!important}}.mec-wrap .flip-clock-wrapper *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;-o-box-sizing:border-box;box-sizing:border-box;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden}.mec-wrap .flip-clock-wrapper a{cursor:pointer;text-decoration:none;color:#ccc}.mec-wrap .flip-clock-wrapper a:hover{color:#fff}.mec-wrap .flip-clock-wrapper ul{list-style:none}.flip-clock-wrapper.clearfix:after,.mec-wrap .flip-clock-wrapper.clearfix:before{content:" ";display:table}.mec-wrap .flip-clock-wrapper.clearfix:after{clear:both}.mec-wrap .flip-clock-wrapper{font:normal 11px "helvetica neue",helvetica,sans-serif;-webkit-user-select:none}.mec-wrap .flip-clock-meridium{background:0 0!important;box-shadow:0 0 0!important;font-size:36px!important}.mec-wrap .flip-clock-meridium a{color:#313333}.mec-wrap .flip-clock-wrapper{text-align:center;position:relative;display:inline-block;padding-bottom:10px}.flip-clock-wrapper:after,.mec-wrap .flip-clock-wrapper:before{content:" ";display:table}.mec-wrap .flip-clock-wrapper:after{clear:both}.mec-wrap .flip-clock-wrapper ul{position:relative;float:left;margin:2px;width:50px;height:50px;font-size:80px;font-weight:700;line-height:87px;border-radius:3px;background:rgba(0,0,0,.21)}.mec-wrap .flip-clock-wrapper ul li{z-index:1;position:absolute;left:0;top:0;width:100%;height:100%;line-height:54px;text-decoration:none!important}.mec-wrap .flip-clock-wrapper ul li:first-child{z-index:2}.mec-wrap .flip-clock-wrapper ul li a{display:block;height:100%;-webkit-perspective:200px;-moz-perspective:200px;perspective:200px;margin:0!important;overflow:visible!important;cursor:default!important}.mec-wrap .flip-clock-wrapper ul li a div{z-index:1;position:absolute;left:0;width:100%;height:50%;font-size:80px;overflow:hidden;outline:1px solid transparent}.mec-wrap .flip-clock-wrapper ul li a div .shadow{position:absolute;width:100%;height:100%;z-index:2}.mec-wrap .flip-clock-wrapper ul li a div.up{-webkit-transform-origin:50% 100%;-moz-transform-origin:50% 100%;-ms-transform-origin:50% 100%;-o-transform-origin:50% 100%;transform-origin:50% 100%;top:0}.mec-wrap .flip-clock-wrapper ul li a div.up:after{content:"";position:absolute;top:24px;left:0;z-index:5;width:100%;height:3px;background-color:rgba(0,0,0,.12)}.mec-wrap .flip-clock-wrapper ul li a div.down{-webkit-transform-origin:50% 0;-moz-transform-origin:50% 0;-ms-transform-origin:50% 0;-o-transform-origin:50% 0;transform-origin:50% 0;bottom:0;border-bottom-left-radius:3px;border-bottom-right-radius:3px}.mec-wrap .flip-clock-wrapper ul li a div div.inn{position:absolute;left:0;z-index:1;width:100%;height:200%;color:#fff;text-shadow:0 0 2px rgba(0,0,0,.25);text-align:center;background-color:#40d9f1;border-radius:3px;font-size:48px}.mec-wrap .flip-clock-wrapper ul li a div.up div.inn{top:0}.mec-wrap .flip-clock-wrapper ul li a div.down div.inn{bottom:0}.mec-wrap .flip-clock-wrapper ul.play li.flip-clock-before{z-index:3}.mec-wrap .flip-clock-wrapper .flip{box-shadow:0 2px 5px rgba(0,0,0,.17)}.mec-wrap .flip-clock-wrapper ul.play li.flip-clock-active{-webkit-animation:asd .5s .5s linear both;-moz-animation:asd .5s .5s linear both;animation:asd .5s .5s linear both;z-index:5}.mec-wrap .flip-clock-divider{float:left;display:inline-block;position:relative;width:18px;height:62px}.mec-wrap .flip-clock-divider:first-child{width:0}.mec-wrap .flip-clock-dot{display:none;background:#323434;width:10px;height:10px;position:absolute;border-radius:50%;box-shadow:0 0 5px rgba(0,0,0,.5);left:5px}.mec-wrap .flip-clock-divider .flip-clock-label{position:absolute;bottom:-1.5em;right:-71px;color:#101010;font-weight:700;text-shadow:none;text-transform:uppercase}.mec-wrap .blox.dark .flip-clock-divider .flip-clock-label{color:#8a8a8a}.mec-wrap .flip-clock-divider.seconds .flip-clock-label{right:-82px}.mec-wrap .flip-clock-dot.top{top:30px}.mec-wrap .flip-clock-dot.bottom{bottom:30px}@-webkit-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@-moz-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@-o-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}.flip-clock-wrapper ul.play li.flip-clock-active .down{z-index:2;-webkit-animation:turn .5s .5s linear both;-moz-animation:turn .5s .5s linear both;animation:turn .5s .5s linear both}@-webkit-keyframes turn{0%{-webkit-transform:rotatex(90deg)}100%{-webkit-transform:rotatex(0)}}@-moz-keyframes turn{0%{-moz-transform:rotatex(90deg)}100%{-moz-transform:rotatex(0)}}@-o-keyframes turn{0%{-o-transform:rotatex(90deg)}100%{-o-transform:rotatex(0)}}@keyframes turn{0%{transform:rotatex(90deg)}100%{transform:rotatex(0)}}.flip-clock-wrapper ul.play li.flip-clock-before .up{z-index:2;-webkit-animation:turn2 .5s linear both;-moz-animation:turn2 .5s linear both;animation:turn2 .5s linear both}@-webkit-keyframes turn2{0%{-webkit-transform:rotatex(0)}100%{-webkit-transform:rotatex(-90deg)}}@-moz-keyframes turn2{0%{-moz-transform:rotatex(0)}100%{-moz-transform:rotatex(-90deg)}}@-o-keyframes turn2{0%{-o-transform:rotatex(0)}100%{-o-transform:rotatex(-90deg)}}@keyframes turn2{0%{transform:rotatex(0)}100%{transform:rotatex(-90deg)}}.flip-clock-wrapper ul li.flip-clock-active{z-index:3}.flip-clock-wrapper ul.play li.flip-clock-before .up .shadow{background:-moz-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.1)),color-stop(100%,rgba(64,64,64,.68)));background:linear,top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;background:-o-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-ms-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:linear,to bottom,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;-webkit-animation:show .5s linear both;-moz-animation:show .5s linear both;animation:show .5s linear both}.flip-clock-wrapper ul.play li.flip-clock-active .up .shadow{background:-moz-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.1)),color-stop(100%,rgba(64,64,64,.68)));background:linear,top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;background:-o-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-ms-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:linear,to bottom,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;-webkit-animation:hide .5s .3s linear both;-moz-animation:hide .5s .3s linear both;animation:hide .5s .3s linear both}.flip-clock-wrapper ul.play li.flip-clock-before .down .shadow{background:-moz-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(64,64,64,.68)),color-stop(100%,rgba(0,0,0,.1)));background:linear,top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;background:-o-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-ms-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:linear,to bottom,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;-webkit-animation:show .5s linear both;-moz-animation:show .5s linear both;animation:show .5s linear both}.flip-clock-wrapper ul.play li.flip-clock-active .down .shadow{background:-moz-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(64,64,64,.68)),color-stop(100%,rgba(0,0,0,.1)));background:linear,top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;background:-o-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-ms-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:linear,to bottom,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;-webkit-animation:hide .5s .3s linear both;-moz-animation:hide .5s .3s linear both;animation:hide .5s .2s linear both}@-webkit-keyframes show{0%{opacity:0}100%{opacity:1}}@-moz-keyframes show{0%{opacity:0}100%{opacity:1}}@-o-keyframes show{0%{opacity:0}100%{opacity:1}}@keyframes show{0%{opacity:0}100%{opacity:1}}@-webkit-keyframes hide{0%{opacity:1}100%{opacity:0}}@-moz-keyframes hide{0%{opacity:1}100%{opacity:0}}@-o-keyframes hide{0%{opacity:1}100%{opacity:0}}@keyframes hide{0%{opacity:1}100%{opacity:0}}@font-face{font-family:simple-line-icons;src:url(../fonts/Simple-Line-Icons.eot?v=2.3.1);src:url(../fonts/Simple-Line-Icons.eot?v=2.3.1#iefix) format('embedded-opentype'),url(../fonts/Simple-Line-Icons.woff2?v=2.3.1) format('woff2'),url(../fonts/Simple-Line-Icons.woff?v=2.3.1) format('woff'),url(../fonts/Simple-Line-Icons.ttf?v=2.3.1) format('truetype'),url(../fonts/Simple-Line-Icons.svg?v=2.3.1#simple-line-icons) format('svg');font-weight:400;font-style:normal}[class*=mec-sl-]{font-family:simple-line-icons;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.mec-sl-facebook:before{content:"\e00b"}.mec-sl-twitter:before{content:"\e009"}.mec-sl-google-plus:before{content:"\e60d"}.mec-sl-angle-left:before{content:"\e605"}.mec-sl-angle-right:before{content:"\e606"}.mec-sl-calendar:before{content:"\e075"}.mec-sl-clock-o:before{content:"\e081"}.mec-sl-home:before{content:"\e069"}.mec-sl-phone:before{content:"\e600"}.mec-sl-envelope:before{content:"\e086"}.mec-sl-sitemap:before{content:"\e037"}.mec-sl-map-marker:before{content:"\e096"}.mec-sl-floder:before{content:"\e089"}.mec-sl-wallet:before{content:"\e02a"}.mec-color,.mec-color-before :before,.mec-color-hover:hover,.mec-wrap .mec-color,.mec-wrap .mec-color-before :before,.mec-wrap .mec-color-hover:hover{color:#40d9f1}.mec-bg-color,.mec-bg-color-hover:hover,.mec-wrap .mec-bg-color,.mec-wrap .mec-bg-color-hover:hover{background-color:#40d9f1}.mec-border-color,.mec-border-color-hover:hover,.mec-wrap .mec-border-color,.mec-wrap .mec-border-color-hover:hover{border-color:#40d9f1}.mec-toggle-month-divider.mec-skin-list-events-container{border:1px solid #e8e8e8;margin-bottom:30px;background:#f8f8f8;box-shadow:0 2px 18px -1px rgba(0,0,0,.1);border-radius:2px}.mec-toggle-month-divider .mec-month-divider{margin:0;text-align:left;background:#fff;position:relative;cursor:pointer;border-top:1px solid #e8e8e8}.mec-toggle-month-divider .mec-month-divider span{padding:20px;border-bottom:1px solid #e8e8e8}.mec-toggle-month-divider .mec-month-divider i{position:absolute;right:20px;top:24px;font-size:20px;cursor:pointer}.mec-toggle-month-divider .mec-month-divider span:before{display:none}.mec-toggle-month-divider .mec-month-divider+article{margin-top:20px}.mec-toggle-month-divider .mec-wrap .mec-month-divider:first-of-type{border-top:none}.mec-toggle-month-divider .mec-event-list-accordion .mec-month-divider:not(:first-of-type)~article{display:none}.mec-skin-list-events-container:not(.mec-toggle-month-divider) .mec-month-divider i{display:none}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-month{display:inline-block;padding-top:0}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-date{font-size:14px;line-height:14px;float:none;display:inline-block;margin-right:0;font-weight:700}.mec-events-toggle .mec-toogle-inner-month-divider.mec-toggle-item-inner{padding:20px 60px 30px 15px}.mec-toogle-inner-month-divider .mec-toggle-month-inner-image{float:left;clear:right;width:100px;margin-right:20px;margin-left:10px}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-detail{margin-top:-6px}.mec-toogle-inner-month-divider .mec-toggle-item-col{float:none;width:100%;margin-top:10px;display:block;border:none}.mec-events-toggle .mec-toogle-inner-month-divider .mec-toggle-title{font-size:19px;display:block;padding-top:10px}@media only screen and (max-width:768px){.mec-events-toggle .mec-toogle-inner-month-divider .mec-toggle-title{font-size:14px;padding-top:0}.mec-toogle-inner-month-divider .mec-toggle-item-col{margin-top:0}.mec-toogle-inner-month-divider .mec-toggle-month-inner-image{width:70px}}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled:before,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-featured:before{z-index:1;position:absolute;top:25px;right:-37px;font-size:11px;letter-spacing:1px;text-transform:uppercase;background:#04de78;padding:2px 40px;color:#fff;-ms-transform:rotate(45deg);-webkit-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:.5s cubic-bezier(.25,.5,.06,.85);transition:.5s cubic-bezier(.25,.5,.06,.85);content:attr(data-style)}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-featured{overflow:hidden;position:relative}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled:before{background:#de0404}.mec-daily-view-date-events article:before,ul.mec-weekly-view-dates-events article:before{padding:7px 40px!important;top:27px!important}.mec-event-grid-classic article .mec-fc-style,.mec-event-grid-minimal article .mec-fc-style,.mec-event-grid-simple article .mec-fc-style,.mec-timeline-event .mec-fc-style,.mec-timetable-wrap article .mec-fc-style,.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article.mec-event-cover-modern .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{font-size:9px;letter-spacing:.5px;text-transform:uppercase;background:#04de78;padding:2px 7px;color:#fff;position:relative;margin-left:5px;border-radius:2px}.mec-timeline-event.mec-label-canceled .mec-fc-style,.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-modern.mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-minimal article .mec-fc-style:before,.mec-event-grid-simple article .mec-fc-style:before,.mec-timeline-event .mec-fc-style:before,.mec-timetable-wrap article .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article .mec-fc-style:before,.mec-wrap .mec-event-list-modern article .mec-fc-style:before,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style:before{width:0;height:0;border-top:4px solid transparent!important;border-right:5px solid;border-bottom:4px solid transparent;margin:0;top:50%;left:-4px;transform:translateY(-4.5px);position:absolute;content:'';color:#04de78}.mec-timeline-event.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-event-grid-classic article.mec-label-canceled:before,.mec-event-grid-classic article.mec-label-featured:before,.mec-event-grid-minimal article.mec-label-canceled:before,.mec-event-grid-minimal article.mec-label-featured:before,.mec-event-grid-simple article.mec-label-canceled:before,.mec-event-grid-simple article.mec-label-featured:before,.mec-timetable-wrap article.mec-label-canceled:before,.mec-timetable-wrap article.mec-label-featured:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled:before,.mec-wrap .mec-event-list-accordion article.mec-label-featured:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled:before,.mec-wrap .mec-event-list-modern article.mec-label-featured:before{display:none}.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{top:-3px;font-size:11px;white-space:nowrap}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style:before,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-canceled:before,.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-featured:before{-ms-transform:none;-webkit-transform:none;transform:none;-webkit-transition:none;transition:none;top:271px;right:0}.mec-timetable-wrap article .mec-fc-style{top:-2px;font-size:10px}.mec-wrap article.mec-event-cover-modern .mec-fc-style{padding:5px 9px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:24px;display:inline-block;border-radius:2px}.mec-skin-grid-events-container .mec-wrap .mec-event-grid-clean .mec-event-article:before{-ms-transform:none;-webkit-transform:none;transform:none!important;-webkit-transition:none;transition:none;top:22px!important;right:22px!important;padding:0 10px!important}.mec-event-grid-minimal article .mec-fc-style,.mec-event-grid-simple article .mec-fc-style{top:-4px;font-size:10px;margin-left:10px}.mec-event-grid-classic article .mec-fc-style{padding:5px 20px;font-size:12px;margin-top:8px;display:inline-block}ul.mec-categories{padding:0}ul.mec-categories li.mec-category{list-style:none}ul.mec-categories li.mec-category a{font-weight:400;color:#626262;font-size:13px;text-align:left;transition:all .23s ease;-webkit-transition:all .23s ease}.mec-hourly-schedule-speaker-info{background:#fff;padding:30px;border:1px solid #e6e6e6;max-width:740px;width:740px;margin-left:-110px}.mec-hourly-schedule-speaker-thumbnail{float:left;max-width:30%;width:30%}.mec-hourly-schedule-speaker-name{font-weight:700;font-size:26px;line-height:1.2;color:#333;text-transform:uppercase}.mec-hourly-schedule-speaker-details{float:left;width:69%;padding-left:25px}.mec-hourly-schedule-speaker-job-title{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-hourly-schedule-speaker-description{font-size:14px;font-weight:400;color:#6d7683;line-height:1.7;text-align:left}.mec-hourly-schedule-speaker-contact-information a i{color:#6b6b6b;background:#ebebeb;line-height:29px;margin:9px 7px 9px 0;width:30px;height:30px;display:inline-block;text-align:center;transition:all .2s ease;font-size:15px;cursor:pointer;border-radius:3px}.mec-hourly-schedule-speaker-contact-information a i:hover{background:#222;color:#fff}@media only screen and (max-width:479px){.mec-hourly-schedule-speaker-thumbnail{float:none;max-width:none;margin-right:0;margin-bottom:15px;width:100%}.mec-hourly-schedule-speaker-thumbnail img{width:100%}.mec-hourly-schedule-speaker-details{padding-left:0}.mec-hourly-schedule-speaker-info{width:90%;margin:0 auto}}.mec-profile .mec-profile-bookings{border:2px solid #e6e6e6;text-align:center}.mec-profile .mec-profile-bookings tbody tr:first-child{background:#f7f7f7;font-weight:700;text-transform:capitalize}.mec-profile .mec-profile-bookings tbody tr{border-bottom:1px solid #e6e6e6;font-size:14px}.mec-profile .mec-profile-bookings tbody tr td{border:1px solid #e6e6e6;padding:10px;text-align:center;word-break:initial}.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:53%;text-align:left}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8) i{color:#fe686a}.mec-profile .mec-event-status{padding:5px 10px;color:#fff;border-radius:2px;font-size:12px;line-height:12px;letter-spacing:.4px}.mec-profile .mec-event-status.mec-book-confirmed{background:#50d477}.mec-profile .mec-event-status.mec-book-pending{background:#fcbe69}.mec-profile .mec-event-status.mec-book-rejected{background:#fe686a}.mec-profile .mec-event-date{font-size:12px;color:#888}.mec-event-date,.mec-event-status{text-align:center}.mec-event-date .mec-tooltip,.mec-event-status .mec-tooltip{position:relative;width:fit-content;margin:auto}.mec-profile i{font-size:15px;color:#008aff;vertical-align:text-bottom;margin-right:4px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{min-width:250px;max-width:300px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#000;color:#fff;font-weight:400;font-size:14px;letter-spacing:.5px;line-height:1.5;position:absolute;z-index:99999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #535a61;padding:5px 10px 6px;border-radius:8px;text-align:center;font-style:normal;opacity:0;visibility:hidden;display:none}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{font-size:13px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;letter-spacing:1.1px;font-weight:500}.mec-event-date .mec-tooltip:hover .box:after,.mec-event-status .mec-tooltip:hover .box:after{content:'';position:absolute;width:12px;height:12px;left:calc(50% - 12px);bottom:-12px;transform:translate(50%,-50%) rotate(-45deg);background-color:#000;box-shadow:0 8px 9px -4px #535a61}.mec-event-status .mec-tooltip .box{min-width:100px}.mec-event-status.mec-book-confirmed .mec-tooltip .box,.mec-event-status.mec-book-confirmed .mec-tooltip:hover .box:after{background-color:#50d477}.mec-event-status.mec-book-rejected .mec-tooltip .box,.mec-event-status.mec-book-rejected .mec-tooltip:hover .box:after{background-color:#fe686a}.mec-event-status.mec-book-pending .mec-tooltip .box,.mec-event-status.mec-book-pending .mec-tooltip:hover .box:after{background-color:#fcbe69}.mec-event-date .mec-tooltip:hover .box,.mec-event-status .mec-tooltip:hover .box{opacity:1;visibility:visible;display:block}.mec-profile .mec-event-status{padding:0}.mec-profile .mec-booking-number-of-attendees{font-size:13px;color:#888}.mec-profile .mec-booking-number-of-attendees i,.mec-profile .mec-profile-bookings-view-invoice i{font-size:15px;color:#008aff;vertical-align:text-bottom;margin-right:4px}.mec-booking-attendees{background:#fff;padding:10px}.mec-booking-attendees{width:850px;text-align:center}.mec-booking-attendees-wrapper{border:2px solid #e6e6e6;font-size:14px}.mec-booking-attendees-head{display:table;width:100%;background:#f7f7f7;border-bottom:1px solid #e6e6e6;font-weight:700}.mec-booking-attendees-head span,.mec-booking-attendees-head-content>span{vertical-align:middle;display:table-cell;padding:7px;border-right:1px solid #e6e6e6;font-size:12px}.mec-booking-attendees-head-content{display:table;width:100%;border-bottom:1px solid #e6e6e6}.mec-booking-attendees-wrapper .mec-booking-attendees-head-content:last-child{border:none}.mec-booking-attendees-head span:nth-child(1),.mec-booking-attendees-head-content>span:nth-child(1){width:4%}.mec-booking-attendees-head span:nth-child(2),.mec-booking-attendees-head-content>span:nth-child(2){width:20%}.mec-booking-attendees-head span:nth-child(3),.mec-booking-attendees-head-content>span:nth-child(3){width:24%}.mec-booking-attendees-head span:nth-child(4),.mec-booking-attendees-head-content>span:nth-child(4){width:26%}.mec-booking-attendees-head span:nth-child(5),.mec-booking-attendees-head-content>span:nth-child(5){width:26%}@media only screen and (max-width:759px){.mec-booking-attendees{width:470px}.mec-booking-attendees-head span,.mec-booking-attendees-head-content>span{word-break:break-all}}@media(max-width:1366px){.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:6%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:40%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:12%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:8%}}@media(max-width:1024px){.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:30%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:15%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:10%}}@media(max-width:780px){.mec-profile .mec-profile-bookings tbody tr,.mec-profile i{font-size:12px}.mec-event-date .mec-tooltip .box{min-width:200px}.mec-event-status .mec-tooltip .box{min-width:90px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{padding:4px 5px!important}.mec-profile .mec-profile-bookings tbody tr{font-size:12px}}@media(max-width:480px){.mec-profile .mec-booking-number-of-attendees,.mec-profile .mec-profile-bookings tbody tr,.mec-profile i{font-size:8px!important}.mec-profile .mec-profile-bookings tbody tr td{padding:3px}.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:19%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:12%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:18%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:13%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:13%}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{font-size:8px}.mec-event-date .mec-tooltip .box{min-width:75px}.mec-event-status .mec-tooltip .box{min-width:70px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{padding:4px 5px!important}}.mec-woo-booking-checkout{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;border-radius:0;margin-bottom:6px;min-width:170px;margin-top:5px;text-align:center}.mec-woo-booking-checkout:hover{background:#222;color:#fff}.mec-woo-booking-checkout:focus,.mec-woo-booking-checkout:visited{color:#fff}.single-mec-events .lity-container{max-width:480px;width:480px}.lity-content .mec-events-meta-group-booking{width:100%;padding:20px 50px;background:#fff}.lity-content .mec-events-meta-group-booking .mec-booking form>h4{text-transform:uppercase;font-size:15px;font-weight:700;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative;text-align:center;line-height:1.2;margin-bottom:10px}.lity-content .mec-events-meta-group-booking .mec-booking form>h4:before{padding:1px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-35px;left:50%}.lity-content .mec-events-meta-group-booking .mec-event-ticket-available,.lity-content .mec-events-meta-group-booking .mec-event-ticket-name,.lity-content .mec-events-meta-group-booking .mec-event-ticket-price,.lity-content .mec-events-meta-group-booking .mec-ticket-variation-name,.lity-content .mec-events-meta-group-booking .mec-ticket-variation-price,.lity-content .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;clear:none;padding:5px 1em 3px 0;display:inline-block}.lity-content .mec-events-meta-group-booking .mec-event-ticket-available{margin-bottom:12px}.lity-content .mec-events-meta-group-booking select{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both;font-family:Montserrat,Helvetica,Arial,sans-serif}.lity-content .mec-events-meta-group-booking input[type=email]{color:#888;border:1px solid #e1e1e1;font-size:14px;display:block;width:100%;outline:0}.lity-content .mec-events-meta-group-booking input{margin-bottom:10px!important}.lity-content .mec-book-ticket-variation h5{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:0;clear:none;padding:5px 1em 3px 0;display:inline-block;text-transform:capitalize;font-family:Montserrat,Helvetica,Arial,sans-serif}.lity-content ul.mec-book-tickets-container{padding:0}.lity-content .mec-events-meta-group-booking input[type=email],.lity-content .mec-events-meta-group-booking input[type=number],.lity-content .mec-events-meta-group-booking input[type=text]{outline:0;font-family:Montserrat,Helvetica,Arial,sans-serif;display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both;margin-bottom:2px!important}.lity-container .mec-click-pay #mec_woo_add_to_cart_btn_r,.lity-content button[type=submit]{position:relative;border:none;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;min-width:170px;margin-top:5px;border-radius:0;margin-bottom:6px}.lity-content button[type=submit]:hover{background:#222}.lity-content .mec-book-tickets-container li{list-style:none}.lity-content .mec-events-meta-group-booking #mec_book_payment_form h4,.lity-content .mec-events-meta-group-booking li h4{font-size:19px;font-weight:700}.lity-content .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li{width:50%}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li:nth-child(even){border:none}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li span{display:block}.lity-content .mec-events-meta-group-booking button[type=submit]:after{display:none;font-family:simple-line-icons;content:"\e098";margin-left:4px;-webkit-animation:rotating 1.2s linear infinite;-moz-animation:rotating 1.2s linear infinite;-ms-animation:rotating 1.2s linear infinite;-o-animation:rotating 1.2s linear infinite;animation:rotating 1.2s linear infinite}.lity-content .mec-events-meta-group-booking button[type=submit].loading:after{display:inline-block}@media only screen and (max-width:480px){.lity-content .mec-events-meta-group-booking{padding:20px;width:340px;margin:0 auto}}.mec-events-meta-group-booking{position:relative}.mec-cover-loader:after{content:'';position:absolute;top:0;right:0;left:0;bottom:0;background:rgba(255,255,255,.5);z-index:99999}.mec-loader{background:rgba(0,0,0,0);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);z-index:9}.mec-loader,.mec-loader:after{border-radius:50%;width:5em;height:5em;z-index:999999999999}.mec-loader{font-size:10px;text-indent:-9999em;border-top:.5em solid rgba(0,0,0,.2);border-right:.5em solid rgba(0,0,0,.2);border-bottom:.5em solid rgba(0,0,0,.2);border-left:.5em solid #fff;-webkit-transform:translateZ(0);-ms-transform:translateZ(0);transform:translateZ(0);-webkit-animation:mecloader 1.1s infinite linear;animation:mecloader 1.1s infinite linear}@-webkit-keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.mec-google-recaptcha{margin:0 0 20px 16px}.mec-wrap *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap :after,.mec-wrap :before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap .clearfix:after,.mec-wrap .clearfix:before{content:'\0020';display:block;overflow:hidden;visibility:hidden;width:0;height:0}.mec-wrap .clearfix:after{clear:both}.mec-wrap .clearfix{zoom:1}.mec-wrap .clear,.mec-wrap .clr{clear:both;display:block;overflow:hidden;visibility:hidden}.mec-wrap .clr{visibility:visible;overflow:visible}.mec-container [class*=col-] img{max-width:100%}.mec-container{margin-right:auto;margin-left:auto;padding-left:10px;padding-right:10px}.mec-container:after,.mec-container:before{content:" ";display:table}.mec-container:after{clear:both}@media only screen and (max-width:479px){.mec-container{width:300px}}@media only screen and (min-width:480px) and (max-width:767px){.mec-container{width:420px}}@media only screen and (min-width:768px) and (max-width:960px){.mec-container{width:768px}}@media only screen and (min-width:961px){.mec-container{width:960px}}@media only screen and (min-width:1200px){.mec-container{width:1196px;padding-left:15px;padding-right:15px}}@media only screen and (min-width:1921px){.mec-container{max-width:1690px}}.mec-wrap .row{margin-left:-10px;margin-right:-10px}.mec-wrap .row:after,.mec-wrap .row:before{content:" ";display:table}.mec-wrap .row:after{clear:both}.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{position:relative;min-height:1px;padding-left:10px;padding-right:10px}@media only screen and (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{padding-left:15px;padding-right:15px}.mec-wrap .row{margin-left:-15px;margin-right:-15px}}.mec-container [class*=col-].alpha{padding-left:0}.mec-container [class*=col-].omega{padding-right:0}.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{float:left}.mec-wrap .col-xs-12{width:100%}.mec-wrap .col-xs-11{width:91.66666666666666%}.mec-wrap .col-xs-10{width:83.33333333333334%}.mec-wrap .col-xs-9{width:75%}.mec-wrap .col-xs-8{width:66.66666666666666%}.mec-wrap .col-xs-7{width:58.333333333333336%}.mec-wrap .col-xs-6{width:50%}.mec-wrap .col-xs-5{width:41.66666666666667%}.mec-wrap .col-xs-4{width:33.33333333333333%}.mec-wrap .col-xs-3{width:25%}.mec-wrap .col-xs-2{width:16.666666666666664%}.mec-wrap .col-xs-1{width:8.333333333333332%}@media (min-width:768px){.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9{float:left}.mec-wrap .col-sm-12{width:100%}.mec-wrap .col-sm-11{width:91.66666666666666%}.mec-wrap .col-sm-10{width:83.33333333333334%}.mec-wrap .col-sm-9{width:75%}.mec-wrap .col-sm-8{width:66.66666666666666%}.mec-wrap .col-sm-7{width:58.333333333333336%}.mec-wrap .col-sm-6{width:50%}.mec-wrap .col-sm-5{width:41.66666666666667%}.mec-wrap .col-sm-4{width:33.33333333333333%}.mec-wrap .col-sm-3{width:25%}.mec-wrap .col-sm-2{width:16.666666666666664%}.mec-wrap .col-sm-1{width:8.333333333333332%}}@media (min-width:961px){.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9{float:left}.mec-wrap .col-md-12{width:100%}.mec-wrap .col-md-11{width:91.66666666666666%}.mec-wrap .col-md-10{width:83.33333333333334%}.mec-wrap .col-md-9{width:75%}.mec-wrap .col-md-8{width:66.66666666666666%}.mec-wrap .col-md-7{width:58.333333333333336%}.mec-wrap .col-md-6{width:50%}.mec-wrap .col-md-5{width:41.66666666666667%}.mec-wrap .col-md-4{width:33.33333333333333%}.mec-wrap .col-md-3{width:25%}.mec-wrap .col-md-2{width:16.666666666666664%}.mec-wrap .col-md-1{width:8.333333333333332%}}@media (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9{float:left}.mec-wrap .col-lg-12{width:100%}.mec-wrap .col-lg-11{width:91.66666666666666%}.mec-wrap .col-lg-10{width:83.33333333333334%}.mec-wrap .col-lg-9{width:75%}.mec-wrap .col-lg-8{width:66.66666666666666%}.mec-wrap .col-lg-7{width:58.333333333333336%}.mec-wrap .col-lg-6{width:50%}.mec-wrap .col-lg-5{width:41.66666666666667%}.mec-wrap .col-lg-4{width:33.33333333333333%}.mec-wrap .col-lg-3{width:25%}.mec-wrap .col-lg-2{width:16.666666666666664%}.mec-wrap .col-lg-1{width:8.333333333333332%}}#mec_woo_add_to_cart_btn{min-width:170px;margin-top:5px;text-align:center}.mec-breadcrumbs{border-radius:2px;padding:9px 15px 6px;font-size:11px;color:#8d8d8d;letter-spacing:0;text-transform:none;font-weight:500;margin:auto 15px 33px 15px;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.025)}.mec-breadcrumbs-modern{margin:auto 0 33px 0}.mec-breadcrumbs a{color:#000;padding-left:4px}.mec-breadcrumbs a:hover{text-decoration:underline}.mec-breadcrumbs i{font-size:8px;margin:0 0 0 4px}.mec-breadcrumbs .container{padding-left:20px}.mec-content-notification a{margin-left:5px}.mec-content-notification{background:#f7f7f7;padding:10px 10px 10px;border:1px solid #e8e8e8}.mec-content-notification p{margin-bottom:0}.mec-fes-form #mec-advanced-wraper div:first-child>ul{border:1px solid #cfeff5;width:auto;box-shadow:0 1px 4px -2px #cfeff5;display:block;margin:5px 0 10px;padding:5px 0;border-radius:2px}.mec-fes-form #mec-advanced-wraper div:first-child>ul:last-of-type{margin-bottom:35px}#mec-advanced-wraper div:first-child>ul span{display:none}#mec-advanced-wraper div:first-child>ul *{display:inline-block;background:#fff;font-size:12px;color:#717273;text-align:center}#mec-advanced-wraper div:first-child>ul>li{width:60px;font-weight:700;margin:0 10px 0 0;padding:4px 0;border-right:1px solid #cfeff5}#mec-advanced-wraper div:first-child>ul>ul>li{margin:0;padding:2px 10px;cursor:pointer;border-radius:2px;transition:all .18s ease}.mec-fes-form #mec-advanced-wraper div:first-child>ul>ul>li.mec-active,.mec-fes-form #mec-advanced-wraper div:first-child>ul>ul>li:hover{background:#40d9f1!important;box-shadow:0 1px 9px -3px #40d9f1;color:#fff!important}.mec-search-bar-wrap .mec-search-form .mec-text-input-search{width:83%}.mec-search-bar-wrap .mec-search-form .mec-ajax-search-result .mec-text-input-search{width:100%;float:none}.mec-search-bar-wrap input#mec-search-bar-input{width:calc(100% - 84%);margin-left:11px;background:#40d9f1;Color:#fff;font-weight:400}.mec-text-input-search+input#mec-search-bar-input{margin-left:-3px}.mec-search-bar-wrap input#mec-search-bar-input:hover{background:#000}.mec-wrap.mec-search-bar-wrap .mec-totalcal-box input{float:none}@media(max-width:768px){.mec-search-bar-wrap .mec-search-form .mec-text-input-search{display:inline-block}}@media(max-width:480px){.mec-search-bar-wrap .mec-search-form .mec-text-input-search{width:64%}.mec-search-bar-wrap input#mec-search-bar-input{width:calc(100% - 67%)}}.mec-wrap.mec-search-bar-wrap .mec-totalcal-box{overflow:visible}.mec-ajax-search-result{position:relative}.mec-search-bar-wrap.mec-wrap .mec-totalcal-box input[type=text]{width:calc(100% - 36px)}.mec-search-bar-wrap.mec-wrap .mec-totalcal-box input[type=text]:focus{border-color:#efefef}div#mec-ajax-search-result-wrap{position:absolute;top:100%;opacity:0;visibility:hidden;width:calc(100% - 2px);min-height:50px;left:0;right:0;padding:0 10px;z-index:9999;transition:all .3s ease}.mec-ajax-search-result-events{background:#fff;padding:10px 20px;border:1px solid #efefef;border-top:none}.mec-ajax-search-result-events article:first-of-type{border:none}article.mec-search-bar-result{text-align:left;margin-bottom:0;padding-bottom:25px;padding-top:26px;border-top:1px solid #efefef;transition:all .33s ease;clear:both}.mec-search-bar-result .mec-event-list-search-bar-date{width:64px;height:64px;margin-right:10px;font-size:11px;text-transform:uppercase;float:left;text-align:center;padding-top:2px}.mec-search-bar-result .mec-event-list-search-bar-date span{font-size:40px;line-height:30px;font-weight:700;display:block;margin-bottom:6px;letter-spacing:1px}.mec-search-bar-result .mec-event-image{float:left;margin-right:20px;width:65px;height:auto}.mec-search-bar-result .mec-event-time{font-size:11px;line-height:1.1;margin:0}.mec-search-bar-result .mec-event-time i{color:#40d9f1;float:none;width:unset;height:unset;font-size:inherit;margin-right:3px;border:none;padding:0}.mec-search-bar-result .mec-event-title{font-size:13px;padding:0;margin:10px 0 8px;font-weight:700;text-transform:uppercase}.mec-search-bar-result .mec-event-title a{text-decoration:none;color:#494949;transition:color .3s ease}.mec-search-bar-result .mec-event-detail{font-size:13px;line-height:1.3;font-family:Roboto,sans-serif;color:#9a9a9a;margin-bottom:0}.mec-wrap.mec-modern-search-bar .mec-totalcal-box{background:rgba(255,255,255,.87);border:none;padding:35px;border-radius:3px;box-shadow:0 3px 13px rgba(0,0,0,.4);position:relative}.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=search],.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=text]{height:58px;background:rgba(255,255,255,.99);border-radius:2px;box-shadow:0 4px 8px rgba(0,0,0,.1) inset;border:1px solid #ccc;width:100%;padding-left:45px;padding-right:13px;font-size:16px}.mec-wrap.mec-modern-search-bar .mec-totalcal-box .mec-text-input-search i{position:absolute;background:0 0;border:none;font-size:21px;left:15px;top:calc(50% - 19px);color:#40d9f1}.mec-wrap.mec-modern-search-bar .mec-text-input-search{position:relative;height:58px}.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=submit]{height:58px;border:none;border-radius:2px;background:#fc4a1a;font-size:17px;font-weight:700!important}.mec-wrap.mec-modern-search-bar .mec-text-input-search+input#mec-search-bar-input{margin-left:0}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{height:45px;background:rgba(255,255,255,.99);border-radius:2px;box-shadow:0 4px 8px rgba(0,0,0,.1) inset;border:1px solid #ccc;padding-right:13px;font-size:16px;border-left:0}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap i{height:45px;background:#ffff;border-radius:2px 0 0 2px;box-shadow:none;border:1px solid #ccc;font-size:15px;padding-top:14px;border-right:0;color:#40d9f1;margin-right:-1px}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap{min-height:64px}@media(max-width:768px){.mec-wrap.mec-modern-search-bar .mec-search-form .mec-text-input-search{width:70%}.mec-wrap.mec-modern-search-bar input#mec-search-bar-input{width:calc(100% - 72%)}}@media(max-width:480px){.mec-wrap.mec-modern-search-bar input#mec-search-bar-input{width:92%;padding:0 10px;position:relative;display:block;margin-left:11px}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-text-input-search{width:100%;margin-bottom:20px}.mec-wrap.mec-modern-search-bar .mec-text-input-search+input#mec-search-bar-input{margin-left:10px}}.mec-related-events{margin-right:-15px;margin-left:-15px}.mec-related-events-wrap{margin-top:50px}.mec-related-events-wrap h3.mec-rec-events-title:before{content:"";background:#2c2f34;width:46px;height:4px;position:absolute;top:59px;left:0}.mec-related-events-wrap h3.mec-rec-events-title{font-size:21px;font-weight:600;padding:17px 0;margin-bottom:28px;text-transform:uppercase;border-bottom:1px solid #e8e8e8;position:relative}.mec-related-event-post figure{margin:0}.mec-related-event-post figure img{width:100%}.mec-related-event-content{background-color:#fff;margin:-27px 30px 15px;position:relative;max-width:90%;padding:13px 21px 16px 19px}.mec-related-event-content h5 a{font-size:16px;color:#121212;font-weight:600;transition:all .3s ease}.mec-next-previous-events{width:100%;display:block;padding:0}.mec-next-previous-events li{list-style:none;width:50%;display:inline-block;margin:40px 0 40px}.mec-next-previous-events li a{padding:9px 14px 9px 14px;border:1px solid #000;transition:.3s}.mec-next-previous-events li a:hover{color:#fff}.mec-previous-event{float:left;text-align:left}.mec-next-event{float:right;text-align:right}.mec-next-previous-events .mec-previous-event i{padding-right:20px}.mec-next-previous-events .mec-next-event i{padding-left:20px}@media(max-width:480px){.mec-next-previous-events li{list-style:none;width:100%;display:block;margin:10px 0;float:unset}.mec-next-previous-events li a{width:100%;max-width:100%;float:unset;display:block;text-align:center;font-size:16px}}.mec-fes-form-cntt #mec-organizer-payments ul{list-style:none;background:0 0;margin:0}.mec-fes-form-cntt #mec-organizer-payments ul li h4{background:0 0;letter-spacing:.2px;display:inline-block;padding-left:0!important;padding-bottom:10px!important;margin:0;margin-bottom:1px;letter-spacing:1px;text-transform:capitalize;padding-top:1px}.mec-fes-form-cntt #mec-organizer-payments ul>li{width:100%;display:inline-block;vertical-align:top;padding:0;margin:0}#mec-login-form.mec-login-form{width:100%;background:#fff;padding:20px;margin:0 auto;text-align:center;position:relative}#mec-login-form.mec-login-form .mec-login-input{display:block;width:286px;margin:0 auto;margin-bottom:12px}#mec-login-form.mec-login-form .mec-login-forgotpassword{display:inline-block}.mec-login-forgotpassword a{color:#000}#mec-login-form.mec-login-form .mec-login-submit{float:right;text-align:right;width:49%;padding-right:2px}#mec-login-form.mec-login-form .mec-login-input input{border:none;box-shadow:none;background:#fff;color:#ccc;border-left:1px solid #e6e6e6;padding:0;height:100%;background-image:none!important;padding-left:10px;padding-right:0;width:222px;margin-left:0;clear:none;float:left}#mec-login-form.mec-login-form .mec-login-input label{border:1px solid #e6e6e6;height:52px;display:inline-block;padding:0;border-radius:3px;overflow:hidden;box-shadow:0 2px 4px rgba(0,0,0,.04)}#mec-login-form.mec-login-form .mec-login-input label i{padding:15px 13px 17px 16px;vertical-align:middle;font-size:20px;width:50px;color:#c5cad0;background:#fafafa;margin-right:0;float:left}#mec-login-form.mec-login-form .mec-login-forgotpassword{float:left;width:49%;text-align:left;padding-top:10px;font-size:13px;padding-left:2px}#mec-login-form.mec-login-form button{width:120px;height:44px;border:none;color:#fff;border-radius:3px;font-size:12px;font-weight:700;letter-spacing:1px;text-transform:uppercase;transition:all .22s ease;margin:0;min-width:unset}.mec-login-form button{box-shadow:0 4px 22px -7px #40d9f1;background-color:#40d9f1}#mec-login-form.mec-login-form button:hover{background:#222;box-shadow:0 3px 14px -4px #333}#mec-login-form.mec-login-form .mec-login-form-footer{width:286px;margin:0 auto;margin-top:20px;clear:both;position:relative;display:block;min-height:50px}#mec-login-form.mec-login-form .mec-ajax-login-loading{position:absolute;background:#ffffffc2;left:0;right:0;top:0;bottom:0}#mec-login-form.mec-login-form .lds-ripple{position:absolute;width:64px;height:64px;top:calc(50% - 23px);left:calc(50% - 23px)}#mec-login-form.mec-login-form .lds-ripple div{position:absolute;border:4px solid #40d9f1;opacity:1;border-radius:50%;animation:lds-ripple 1.2s cubic-bezier(0,.2,.1,.8) infinite}#mec-login-form.mec-login-form .lds-ripple div:nth-child(2){animation-delay:-.5s}#mec-login-form.mec-login-form .mec-ajax-login-loading-text{position:absolute;min-width:200px;top:calc(50% - 18px);left:calc(50% - 124px);color:#fff;padding:10px 22px;border-radius:3px;background:#fff;height:47px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text strong{color:#3fcc60}#mec-login-form.mec-login-form .mec-ajax-login-loading-text strong:before{content:"";position:absolute;top:8px;left:1px;border-right:2px solid #3fcc60;border-bottom:2px solid #3acb5c;transform:rotate(45deg);transform-origin:0 100%;color:#000;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards;width:8px;height:14px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong:after{content:"";position:absolute;top:14px;left:5px;border-bottom:2px solid #ff5d39;transform:rotate(45deg);transform-origin:0 100%;color:#000;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards;width:14px;height:4px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong{color:#ff5d39}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong:before{border-color:#ff5d39;border-bottom:none}@keyframes lds-ripple{0%{top:28px;left:28px;width:0;height:0;opacity:1}100%{top:-1px;left:-1px;width:58px;height:58px;opacity:0}}.mec-book-form-gateway-checkout [id*=mec_do_transaction_stripe_] .mec-form-row:first-child{margin-bottom:20px}.mec-events-meta-group-booking .StripeElement{box-sizing:border-box;height:40px;padding:10px 12px;border:1px solid transparent;border-radius:4px;background-color:#fff;box-shadow:0 1px 3px 0 #e6ebf1;-webkit-transition:box-shadow 150ms ease;transition:box-shadow 150ms ease;margin-bottom:20px;background:#fff}.mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text]{box-sizing:border-box;height:40px;padding:10px 12px;border:0!important;border-radius:4px;background-color:#fff;box-shadow:0 1px 3px 0 #e6ebf1!important;-webkit-transition:box-shadow 150ms ease;transition:box-shadow 150ms ease;margin-bottom:20px;background:#fff!important}.mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text]:focus{outline:0}.mec-events-meta-group-booking .StripeElement--focus{box-shadow:0 1px 3px 0 #cfd7df}.mec-events-meta-group-booking .StripeElement--invalid{border-color:#fa755a}.mec-events-meta-group-booking .StripeElement--webkit-autofill{background-color:#fefde5!important}.mec-booking-tab-content .button,.mec-booking-tab-content .mec-bfixed-field-add-option,.mec-booking-tab-content .mec-reg-field-add-option,.mec-fes-form .mec-form-row .button:not(.wp-color-result),.mec-fes-form input[type=file],ul#mec_bfixed_form_fields li .mec_bfixed_field_remove,ul#mec_reg_form_fields li .mec_reg_field_remove{height:40px;margin-top:1px;text-decoration:none;font-size:14px;line-height:34px!important;margin:0;padding:0 15px 1px!important;text-transform:none;letter-spacing:0;font-weight:600;color:#40d9f1;background:#fff;border-radius:3px;margin-right:8px;border:2px solid #cfeff5;box-shadow:0 2px 6px -3px #cfeff5}.mec-booking-tab-content .button:hover,.mec-booking-tab-content .mec-bfixed-field-add-option:hover,.mec-booking-tab-content .mec-reg-field-add-option:hover,.mec-fes-form .mec-form-row .button:not(.wp-color-result):hover{background:#40d9f1;color:#fff;border-color:#40d9f1;box-shadow:0 2px 6px -3px #40d9f1}.mec-fes-form .mec-form-row input+button.button{vertical-align:top}.mec-fes-form .mec-form-row .quicktags-toolbar input.button.button-small{border-width:1px;padding:0 7px;color:#80c6d2;font-weight:400;margin:1px;transform:none}.mec-fes-form input[type=file]{max-width:166px;text-align:center;height:44px;transition:all .2s ease;border-radius:5px!important;border:2px dashed #b8e9f3}.mec-fes-form input[type=file]:hover{box-shadow:0 2px 16px -3px #cfeff5}.mec-fes-form input[type=file]::-webkit-file-upload-button{visibility:hidden;width:1px;height:38px}.mec-fes-form input[type=file]::-moz-file-upload-button{visibility:hidden;width:1px;height:38px}.mec-fes-form .mec-meta-box-fields>label{padding:0}#mec_bfixed_form_fields li,#mec_reg_form_fields li{list-style:none}ul#mec_bfixed_form_fields,ul#mec_reg_form_fields{padding:0;margin:0}ul#mec_bfixed_form_fields li,ul#mec_reg_form_fields li{background:#f8feff;margin:6px -20px;padding:15px 25px 10px;width:auto;font-size:13px;border-top:1px solid #e8fafd;border-bottom:1px solid #e8fafd;position:relative}ul#mec_bfixed_form_fields li .mec_bfixed_field_remove,ul#mec_reg_form_fields li .mec_reg_field_remove{position:absolute;right:10px;top:10px;margin:0;padding:6px 8px!important;font-size:11px;line-height:12px!important;min-height:10px;height:auto;display:block;cursor:pointer;color:#ea6485;border-color:#ffd2dd;letter-spacing:.4px}ul#mec_bfixed_form_fields li .mec_bfixed_field_remove:hover,ul#mec_reg_form_fields li .mec_reg_field_remove:hover{background:#ea6485;color:#fff;border-color:#ea6485;box-shadow:0 2px 6px -3px #ea6485}#mec_bfixed_form_fields input[type=checkbox],#mec_bfixed_form_fields input[type=radio],#mec_reg_form_fields input[type=checkbox],#mec_reg_form_fields input[type=radio],.mec-form-row input[type=checkbox],.mec-form-row input[type=radio]{background-color:#fff;border:1px solid #cfeff5;box-shadow:0 1px 3px -1px #cfeff5;padding:9px;border-radius:3px;min-width:24px;min-height:24px;display:inline-block!important;vertical-align:middle;float:none;transition:all .18s ease;outline:0;margin:1px 4px 4px 0;text-align:left;cursor:pointer;-webkit-appearance:none;-moz-appearance:none}#mec_bfixed_form_fields input[type=checkbox]:focus,#mec_bfixed_form_fields input[type=radio]:focus,#mec_reg_form_fields input[type=checkbox]:focus,#mec_reg_form_fields input[type=radio]:focus,.mec-form-row input[type=checkbox]:focus,.mec-form-row input[type=radio]:focus{outline:0}#mec_bfixed_form_fields input[type=radio],#mec_reg_form_fields input[type=radio],.mec-form-row input[type=radio]{-webkit-appearance:none;border-radius:20px!important;min-width:20px;min-height:20px;margin:0 0 4px 0;vertical-align:middle}#mec_bfixed_form_fields input[type=checkbox]:hover,#mec_bfixed_form_fields input[type=radio]:hover,#mec_reg_form_fields input[type=checkbox]:hover,#mec_reg_form_fields input[type=radio]:hover,.mec-form-row input[type=checkbox]:hover,.mec-form-row input[type=radio]:hover{border-color:#40d9f1}#mec_bfixed_form_fields input[type=checkbox]:checked,#mec_bfixed_form_fields input[type=radio]:checked,#mec_reg_form_fields input[type=checkbox]:checked,#mec_reg_form_fields input[type=radio]:checked,.mec-fes-form .mec-form-row input[type=checkbox]:checked,.mec-fes-form .mec-form-row input[type=radio]:checked{box-shadow:0 1px 6px -2px #40d9f1;border-color:#40d9f1;background:#40d9f1!important;border-radius:2px;position:relative}.mec-form-row input[type=radio]:checked{box-shadow:0 1px 6px -2px #40d9f1,inset 0 0 0 3px #fff!important}#mec_bfixed_form_fields input[type=checkbox]:checked::before,#mec_reg_form_fields input[type=checkbox]:checked::before,.mec-form-row input[type=checkbox]:checked:before{content:"";font:normal;position:absolute;top:12px;left:5px;margin:0;vertical-align:middle;line-height:1;border-right:2px solid #fff!important;border-bottom:2px solid #fff!important;transform:rotate(45deg);transform-origin:0 100%;color:#fff;transition:all .2s ease;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards}@keyframes checkbox-check{0%{width:0;height:0;border-color:#fff;transform:translate3d(0,0,0) rotate(45deg)}33%{width:6px;height:0;transform:translate3d(0,0,0) rotate(45deg)}100%{width:6px;height:12px;border-color:#fff;transform:translate3d(0,-12px,0) rotate(45deg)}}#wrap #mec-event-data input[type=radio]{position:relative}#wrap #mec-event-data input[type=radio]:empty::before{display:none}#mec_bfixed_form_field_types .button,#mec_reg_form_field_types .button{position:relative;outline:0;border-radius:50px;padding:2px 21px 2px 31px!important;line-height:1;font-size:11px;font-weight:600;color:#40d9f1;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 2px 6px -3px #40d9f1;border:2px solid #cfeff5}#mec_fes_location_remove_image_button,#mec_fes_organizer_remove_image_button,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button,#mec_meta_box_tickets_form [id^=mec_ticket_row] button,#mec_reg_form_field_types .button.red{color:#ea6485;box-shadow:0 2px 6px -3px #ea6485;background:#fff;border-color:#ffd2dd}#mec_fes_location_remove_image_button:hover,#mec_fes_organizer_remove_image_button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button:hover,#mec_meta_box_tickets_form [id^=mec_ticket_row] button:hover,#mec_reg_form_field_types .button.red:hover{background:#ea6485;color:#fff}#mec_bfixed_form_field_types .button:before,#mec_reg_form_field_types .button:before{position:absolute;left:12px;color:#40d9f1;content:"\e095";font-family:simple-line-icons;font-size:13px;display:inline-block}#mec_reg_form_field_types .button.red:before{color:#ea6485}#mec_bfixed_form_field_types .button:hover:before,#mec_reg_form_field_types .button.red:hover:before,#mec_reg_form_field_types .button:hover:before{color:#fff}#mec_fes_location_remove_image_button:hover,#mec_fes_organizer_remove_image_button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button:hover,#mec_meta_box_tickets_form [id^=mec_ticket_row] button:hover,#mec_price_per_dates_container .button:hover,#mec_reg_form_field_types .button.red:hover{color:#fff;border:2px solid #ea6485}#mec_taxes_fees_container_toggle [id^=mec_remove_fee_button],#mec_ticket_variations_list [id^=mec_remove_ticket_variation_button]{color:#ea6485;border-color:#ffd2dd}#mec_taxes_fees_container_toggle [id^=mec_remove_fee_button]:hover,#mec_ticket_variations_list [id^=mec_remove_ticket_variation_button]:hover{color:#fff;border:2px solid #ea6485;background:#ea6485}#mec_fees_list [id^=mec_remove_fee_button],#mec_meta_box_ticket_variations_form .mec-form-row [id^=mec_remove_ticket_variation_button]{margin-left:14px!important}#mec_meta_box_hourly_schedule_days .mec-add-hourly-schedule-button{line-height:10px!important}#mec_meta_box_tickets_form [id^=mec_ticket_row] .mec_add_price_date_button{color:#40d9f1;box-shadow:0 2px 6px -3px #40d9f1;border:2px solid #cfeff5}#mec_meta_box_tickets_form [id^=mec_ticket_row] .mec_add_price_date_button:hover,#mec_reg_form_field_types .button:hover{color:#fff;border:2px solid #40d9f1;background:#40d9f1}.mec-fes-form #mec_bfixed_form_fields span.mec_bfixed_field_sort,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_sort{font-size:0;color:#fff;padding-left:20px}.mec-fes-form #mec_bfixed_form_fields .mec_bfixed_field_option_sort,.mec-fes-form #mec_reg_form_fields .mec_reg_field_options,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_option_sort{font-size:0}.mec-fes-form #mec_bfixed_form_fields span.mec_bfixed_field_option_sort:before,.mec-fes-form #mec_bfixed_form_fields span.mec_bfixed_field_sort:before,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_option_sort:before,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_options:before,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_sort:before{position:absolute;left:px;top:12px;width:80px;height:20px;display:block;cursor:move;font-family:simple-line-icons;content:"\e023";font-size:18px;color:#888}.mec-fes-form #mec_bfixed_form_fields span.mec_bfixed_field_option_sort:before,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_option_sort:before,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_options:before{font-size:13px;left:2px;top:26px;width:14px;height:14px}.mec-fes-form #mec_bfixed_form_fields .mec_bfixed_field_options,.mec-fes-form #mec_reg_form_fields .mec_reg_field_options{margin-top:20px}.mec-fes-form #mec_fes_form #mec_bfixed_form_fields .mec_bfixed_notification_placeholder{font-size:0}.mec-form-row input+span.mec-tooltip,.mec-form-row select+span.mec-tooltip{bottom:10px}.mec-form-row label+span.mec-tooltip{bottom:8px}.mec-form-row textarea+span.mec-tooltip{bottom:auto;vertical-align:top;top:12px}.mec-form-row span+span.mec-tooltip{bottom:0;vertical-align:middle}.mec-form-row .mec-col-8 input[type=text],.mec-form-row .mec-col-8 select,.mec-form-row .mec-col-8 span.mec-archive-skins{vertical-align:top}.mec-form-row input:disabled{opacity:.6;background:#f6f6f6}.mec-form-row p{font-size:12px!important;line-height:18px!important;color:#97b2bb!important}.mec-form-row p.description{font-style:italic}.ui-datepicker.ui-widget{border:1px solid #e8e8e8;box-shadow:0 1px 9px rgba(0,0,0,.12);font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif}table.ui-datepicker-calendar{margin-bottom:0}.ui-datepicker-calendar th{font-weight:700;color:#4a4b4c}.ui-datepicker-calendar td,.ui-datepicker-calendar th,.ui-datepicker-calendar tr{border:none}.ui-datepicker.ui-widget select{font-weight:600;font-size:12px;display:inline-block;border-radius:2px;padding:2px 10px;margin:5px 3px;width:auto;min-height:20px;height:26px;border:1px solid #e3e3e3;box-shadow:inset 0 1px 3px rgba(0,0,0,.04)}.ui-datepicker.ui-widget table{border-spacing:2px;border:none}.ui-datepicker.ui-widget td,.ui-datepicker.ui-widget tr{padding:0;background:0 0!important}.ui-datepicker.ui-widget td a{color:#9a9b9c;font-weight:600;width:30px;height:30px;line-height:30px;display:inline-block;border-radius:33px;padding:0;background:#fff;transition:all .2s ease}.ui-datepicker.ui-widget td a.ui-state-active,.ui-datepicker.ui-widget td a:hover{background:#40d9f1;color:#fff}.ui-datepicker.ui-widget .ui-datepicker-next,.ui-datepicker.ui-widget .ui-datepicker-prev{color:#40d9f1;width:30px;height:30px;line-height:30px;display:inline-block;text-align:center;border-radius:33px;background:#ecfcff;transition:all .2s ease}.ui-datepicker.ui-widget .ui-datepicker-next:hover,.ui-datepicker.ui-widget .ui-datepicker-prev:hover{background:#fff;box-shadow:0 0 7px -3px rgba(0,0,0,.4)}.mec-fes-form .mec-tooltip .dashicons-before:before{color:#40d9f1}.mec-fes-form button[type=submit].mec-fes-sub-button{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;border-radius:3px;background:#40d9f1;color:#fff;height:54px;font-size:17px;font-weight:700;box-shadow:0 2px 8px -4px #40d9f1;display:block;transition:all .28s ease;text-transform:uppercase;margin:20px 0 0;padding:14px 20px;border:0;cursor:pointer;text-align:center;letter-spacing:.1em;line-height:1}.mec-fes-form button[type=submit].mec-fes-sub-button:hover{box-shadow:0 2px 12px -2px #40d9f1}.mec-fes-form button[type=submit].mec-fes-sub-button:focus{margin-bottom:-2px;background:#1dc2dc}.mec-fes-form .mec-title span.mec-dashicons{color:#40d9f1;float:left;margin-right:5px}.mec-fes-form .mec-tooltip .box h5{padding:14px 2px}#mec_fes_form,.mec-fes-form-top-actions{max-width:838px;margin:0 auto}@media only screen and (min-width:961px){.mec-fes-form .mec-fes-form-cntt{width:calc(100% - 300px);float:left;padding-right:20px;max-width:538px;display:block}.mec-fes-form .mec-fes-form-sdbr{width:300px}}.mec-fes-form .quicktags-toolbar,.mec-fes-form div.mce-toolbar-grp{background:#ecfcff;border-bottom:1px solid #cfeff5;box-shadow:0 1px 0 1px #cfeff5}.mec-fes-form .quicktags-toolbar{margin-right:-1px;border-top:1px solid #cfeff5}.mec-fes-form div.mce-statusbar{border-top-color:#cfeff5}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-listbox{border:1px solid #cfeff5;border-radius:3px}.mec-fes-form .mce-tinymce.mce-container.mce-panel{border:1px solid #cfeff5;box-shadow:0 2px 6px -3px #cfeff5;border-radius:2px 0 2px 2px}.mec-fes-form .wp-editor-tools .wp-media-buttons{transform:translateY(-6px);margin-top:-6px}.mec-fes-form .wp-editor-tabs{padding-right:0;margin-right:-2px}.mec-fes-form .wp-editor-tabs .wp-switch-editor{border-radius:3px 3px 0 0;border-color:#cfeff5;background:#fff;color:#96b8bd;border-bottom:1px solid #ecfcff}.mec-fes-form .html-active .switch-html,.mec-fes-form .tmce-active .switch-tmce,.mec-fes-form .wp-editor-tabs .wp-switch-editor:active{background:#ecfcff;color:#40d9f1}.mec-fes-form .wp-editor-container,.mec-fes-form div.mce-edit-area.mce-panel{border:none;box-shadow:none}.mec-fes-form .wp-editor-container textarea.wp-editor-area{max-width:100%}.mec-fes-form .mce-toolbar .mce-listbox button{font-size:12px;line-height:22px;color:#798f96}.mec-fes-form .mce-toolbar .mce-ico{color:#627f88}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-active,.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn:active,.mec-fes-form .qt-dfw.active{background:#fff;border-color:#40d9f1;box-shadow:inset 0 2px 6px -3px rgba(106,231,255,.7)}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-active .mce-ico{color:#40d9f1}body .mce-menu .mce-menu-item.mce-active.mce-menu-item-normal,body .mce-menu .mce-menu-item.mce-selected,body .mce-menu .mce-menu-item:focus,body .mce-menu .mce-menu-item:hover,body.mce-menu .mce-menu-item.mce-active.mce-menu-item-preview{background:#40d9f1;color:#fff}.mec-fes-form .mec-not-in-days-day{display:inline-block;padding:4px 32px 4px 15px;border-radius:33px;border:1px solid #cfeff5;box-shadow:0 1px 3px -1px #cfeff5;background:#fbfeff;color:#40d9f1;vertical-align:top}.mec-fes-form .mec-not-in-days-remove{display:inline-block;padding:0 1px 0 0;margin-left:-30px;vertical-align:sub;background:#ff918a;color:#fff;font-family:cursive;width:21px;height:21px;line-height:17px;text-align:center;border-radius:20px;cursor:pointer}.mec-fes-list ul li .mec-event-status{float:left;margin-right:10px;margin-left:0;font-size:11px;font-weight:400;letter-spacing:.3px;border-radius:3px;padding:4px 8px}.mec-fes-form .post-status.mec-book-confirmed:before,.mec-fes-list ul li .mec-event-status.mec-book-confirmed:before{content:"";margin:0;vertical-align:middle;line-height:1;border-right:2px solid #fff!important;border-bottom:2px solid #fff!important;transform:rotate(45deg);color:#fff;width:6px;height:12px;float:left;margin-right:6px}.mec-fes-list ul li .mec-fes-event-export a:before,.mec-fes-list ul li .mec-fes-event-remove:before,.mec-fes-list ul li .mec-fes-event-view a:before,.mec-fes-list-top-actions a:before{content:"\e054";font-family:simple-line-icons;font-size:13px;vertical-align:middle}.mec-fes-list ul li .mec-fes-event-view a:before{content:"\e087"}.mec-fes-list-top-actions a:before{content:"\e095";font-weight:400;margin-right:6px}.mec-fes-list ul li .mec-fes-event-export a:before{content:"\e083"}.mec-fes-form .post-status{border-radius:20px}.mec-fes-form .post-status.mec-book-confirmed:before{height:20px;width:9px;margin:3px 10px}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker-calendar th{height:auto;padding:0}.ui-datepicker .ui-datepicker-calendar td a,.ui-datepicker-calendar th{font-size:14px;line-height:30px}.mec-fes-form .description{font-size:16px}.mec-fes-form input[type=file]{text-align:left}.mec-fes-export-wrapper{width:640px;background:#f8feff;padding:40px 25px}.mec-fes-export-wrapper .mec-fes-btn-date{font-size:16px;line-height:44px;overflow:hidden}.mec-fes-export-wrapper .date-messgae{font-family:sans-serif;padding:2px 18px}.mec-fes-list ul li .mec-event-export-csv,.mec-fes-list ul li .mec-event-export-excel{font-size:12px;border:1px solid #40d9f1;padding:1px 4px;background:rgba(141,229,243,.18);border-radius:4px;color:#40d9f1;font-family:sans-serif;cursor:pointer;display:inline-block;height:26px;line-height:22px}.mec-export-badge{font-size:11px;color:#40d9f1;width:auto;height:24px;line-height:25px;display:inline-block;padding:0 8px;text-align:center;border-radius:3px;background:#ecfcff;transition:all .2s ease}.mec-fes-list ul li .mec-fes-event-export{font-size:11px;background:#f7f7f7;float:right;margin-left:5px}.mec-fes-list ul li .mec-fes-event-export:hover{cursor:pointer;background:#90f0e0;border-color:#4dc8cc}.mec-fes-export-wrapper ul{padding:0;width:100%;text-align:center}.mec-fes-export-wrapper ul li{list-style:none;display:inline-block;width:30%;padding:10px 15px 10px 32px;border-radius:3px;margin-bottom:15px;border:1px solid #cfeff5;box-shadow:0 2px 6px -4px #cfeff5;background:#fff;line-height:normal;margin-right:10px;position:relative;cursor:pointer;font-size:13px;line-height:1;transition:all .2s ease}.mec-fes-export-wrapper ul li:nth-child(3n+0){margin-right:0}.mec-fes-export-wrapper ul li:hover{box-shadow:0 2px 16px -1px #c6e8ef}.mec-fes-export-wrapper ul li:before{content:"";position:absolute;display:inline-block;background:#fff;width:15px;height:15px;margin:-1px 0 0 5px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32);border-radius:50%;left:9px;top:calc(50% - 7px)}.mec-fes-export-wrapper ul li.fes-export-date-active{color:#40d9f1}.mec-fes-export-wrapper ul li.fes-export-date-active:before{width:15px;height:15px;border:6px solid #40d9f1;background:#fff;box-shadow:0 3px 16px -3px #40d9f1}.mec-fes-btn-export{margin-left:15px;margin-top:12px}.mec-fes-btn-export span{position:relative;border:none;border-radius:3px;color:#fff!important;display:inline-block;font-size:13px;line-height:1;text-transform:none;font-weight:400;text-decoration:none;cursor:pointer;margin-right:4px;line-height:1;letter-spacing:0;padding:15px 22px;background:#39c36e;box-shadow:0 1px 7px -3px #39c36e!important;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;cursor:pointer;margin-left:6px}.mec-fes-btn-export span:hover{background:#222}.mec-event-export-excel:before,span.mec-event-export-csv:before{content:"\e083";font-family:simple-line-icons;font-size:13px;vertical-align:middle;margin-right:7px;margin-top:-1px;display:inline-block}.mec-fes-list .wn-p-t-right{min-width:170px;max-width:200px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#000;color:#fff;font-weight:400;font-size:14px;letter-spacing:.5px;line-height:1.5;position:absolute;z-index:99999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #535a61;visibility:hidden;opacity:0;transition:opacity .23s;padding:5px 10px 6px;border-radius:8px;text-align:center;font-style:normal}.mec-fes-list .mec-fes-event-export:hover .wn-p-t-right,.mec-fes-list .mec-fes-event-remove:hover .wn-p-t-right,.mec-fes-list .mec-fes-event-view:hover .wn-p-t-right{visibility:visible;opacity:1}.mec-fes-list .wn-p-t-right i{position:absolute!important;top:100%;right:50%;margin-top:-6px!important;margin-right:-6px!important;width:12px;height:24px;overflow:hidden;transform:rotate(-90deg)}.mec-fes-list .wn-p-t-right i:after{content:'';position:absolute;width:12px;height:12px;left:0;top:50%;transform:translate(50%,-50%) rotate(-45deg);background-color:#000;box-shadow:0 8px 9px -4px #535a61}.mec-fes-form .select2-container{min-height:38px;box-sizing:border-box;margin-bottom:8px;padding:0 6px;border-radius:2px;border:1px solid #ddd;box-shadow:inset 0 1px 6px rgba(0,0,0,.07);background-color:#fff;color:#32373c;outline:0;transition:50ms border-color ease-in-out;min-width:200px;font-size:14px}.mec-fes-form .select2-selection{border:none;background:0 0;padding-top:2px;width:100%;height:100%}.mec-fes-form .select2-container--default.select2-container--focus .select2-selection{border:none!important;outline:0}.mec-fes-form .select2-container--default .select2-selection--single .select2-selection__arrow{top:5px;right:4px}.select2-results{font-size:14px}.mec-fes-category-children,.mec-fes-category-children .mec-fes-category-children{padding-left:24px}.mec-wrap .mec-timeline-events-container a,.mec-wrap .mec-timeline-events-container div,.mec-wrap .mec-timeline-events-container h4,.mec-wrap .mec-timeline-events-container p,.mec-wrap .mec-timeline-events-container span{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important}.mec-timeline-events-container{margin-left:19px;padding-top:20px;padding-bottom:9px}.mec-events-timeline-wrap{position:relative;display:block;overflow:visible;padding-left:95px}.mec-events-timeline-wrap:before{width:1px;content:'';height:100%;position:absolute;background:#b8f5ff;left:95px}.mec-timeline-month-divider+.mec-timeline-events-container{padding-top:110px}.mec-timeline-right-content{float:right;width:300px}.mec-timeline-left-content{float:left;width:calc(100% - 300px);padding-left:15px;padding-right:15px;position:relative}.mec-timeline-month-divider{position:absolute;display:block;background:#fff;right:calc(100% - 95px);left:0;width:190px;text-align:center;border:1px solid #b8f5ff;border-radius:50px;font-size:15px;padding:12px 27px;color:#40d9f1}.mec-timeline-event-date{position:relative}.mec-timeline-events-container .mec-timeline-event-date:before{content:'';width:11px;height:11px;position:absolute;background:#40d9f1;border-radius:50px;top:8px;left:-24px;z-index:9}.mec-timeline-events-container .mec-timeline-event-date:after{content:'';width:21px;height:21px;position:absolute;background:rgba(64,217,241,.3);border-radius:50px;top:3px;left:-29px}.mec-timeline-event-date{float:left;width:17%;margin-top:27px}.mec-timeline-event-content{float:left;width:82%;background:#fff;box-shadow:0 10px 30px 0 rgba(0,0,0,.1);border-radius:10px;overflow:visible;position:relative}.mec-timeline-main-content{padding:23px 30px}.mec-timeline-main-content h4{margin-bottom:15px}.mec-timeline-main-content h4 a{font-size:25px;font-weight:700;color:#000;line-height:33px;text-decoration:none}.mec-timeline-main-content p{font-size:15px;color:#515151;line-height:24px;margin-bottom:36px}a.mec-timeline-readmore{width:100%;display:block;text-align:center;color:#fff;text-decoration:none;line-height:52px;font-size:17px;font-weight:700;-webkit-transition:all .2s ease;transition:all .2s ease;border-radius:0 0 10px 10px}a.mec-timeline-readmore:hover{background:#222;color:#fff}.mec-timeline-event-time .mec-time-details{display:inline-block;margin-left:7px;font-size:13px;line-height:13px;font-weight:500}.mec-timeline-event-time i{vertical-align:middle}.mec-timeline-event-time{background:rgba(64,217,241,.11);display:inline-block;padding:4px 20px 8px;border-radius:50px}.mec-timeline-event-location address{font-style:normal;margin-bottom:0}.mec-timeline-event-location address span{font-size:13px;font-weight:500;vertical-align:middle;margin-left:6px}.mec-timeline-event-location address i{font-size:17px;vertical-align:middle}.mec-timeline-event-location{background:rgba(64,217,241,.11);display:inline-block;padding:7px 20px 11px;border-radius:20px;line-height:1.24}.mec-timeline-event-details+.mec-timeline-event-details{margin-top:12px}.mec-timeline-event-content .col-md-4{padding:0}.mec-timeline-event-content:after{content:'';display:block;position:absolute;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-timeline-event-content:after{top:30px;border-color:transparent #fff transparent transparent;left:-10px}.mec-timeline-event-image img{border-radius:0 10px 0 0;width:100%}.mec-timeline-event-image a{display:block;line-height:0}a.mec-timeline-readmore i{vertical-align:middle;margin-left:10px;font-size:9px}.mec-wrap .mec-timeline-event-content a.mec-timeline-readmore:hover{background:#444}@media(min-width:1024px){.mec-timeline-event{margin:50px 0}}@media(max-width:1023px){.mec-timeline-event{margin:25px 0}.mec-events-timeline-wrap{padding-left:20px}.mec-events-timeline-wrap:before{left:20px}}@media (max-width:1200px) and (min-width:992px){.mec-timeline-event-content{width:81%}.mec-timeline-event-date{width:18%}}@media (max-width:992px){.mec-timeline-left-content,.mec-timeline-right-content{float:none;width:100%;text-align:center}.mec-timeline-right-content .mec-timeline-event-image{text-align:center}.mec-timeline-right-content .mec-timeline-event-image img{max-width:300px;border-radius:10px;margin-top:35px}}@media (max-width:440px){.mec-timeline-right-content .mec-timeline-event-image img{margin-top:0}}@media (max-width:320px){.mec-timeline-event-content,.mec-timeline-event-date{float:none;width:100%}.mec-timeline-event-date{margin-bottom:8px}.mec-timeline-event-content:after{display:none}.mec-timeline-main-content{padding:23px 0}.mec-timeline-main-content p{font-size:13px}.mec-timeline-main-content h4 a{font-size:23px;line-height:24px}.mec-time-details span{font-size:11px}.mec-timeline-event-location address span{font-size:12px}a.mec-timeline-readmore{line-height:44px;font-size:14px}}.mec-event-tile-view article.mec-tile-item{height:400px;margin:15px 0;border-radius:22px;padding:35px 25px;position:relative;color:#fff;background-size:cover!important;background-position:center!important;box-shadow:0 2px 9px rgba(0,0,0,.25);transition:all .22s ease}.mec-event-tile-view article.mec-tile-item:hover{box-shadow:0 4px 19px rgba(0,0,0,.5)}.mec-event-tile-view article.mec-tile-item div{position:relative;z-index:3}.mec-event-tile-view article.mec-tile-item:after,.mec-event-tile-view article.mec-tile-item:before{position:absolute;background:-moz-linear-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);background:-webkit-gradient(left top,right top,color-stop(0,rgba(0,0,0,.35)),color-stop(65%,rgba(0,0,0,.48)),color-stop(100%,rgba(0,0,0,.72)));background:-webkit-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);background:linear-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);content:"";left:0;right:0;bottom:0;top:0;width:100%;height:100%;display:block;border-radius:22px;z-index:1}.mec-event-tile-view article.mec-tile-item:after{background-color:inherit;background-image:none;top:35px;bottom:auto;height:40px;border-radius:0 3px 3px 0;width:97px;z-index:2;box-shadow:2px 1px 7px rgba(0,0,0,.1)}.mec-event-tile-view article.mec-tile-item .event-tile-view-head{padding:8px 3px;font-size:16px;font-weight:700;margin-bottom:50px;text-transform:uppercase}.mec-event-tile-view article.mec-tile-item .event-tile-view-head>div{display:inline}.mec-event-tile-view article.mec-tile-item .mec-event-time{color:#d6d6d6;font-size:15px;font-weight:400;line-height:1;padding-top:4px;position:absolute;right:1px;top:10px}.mec-event-tile-view article.mec-tile-item .mec-event-time i{vertical-align:baseline;font-size:14px;float:left}.mec-event-tile-view article.mec-tile-item i{margin-right:5px}.mec-event-tile-view article.mec-tile-item .mec-event-title{color:#fff;font-weight:700;font-size:23px;padding-top:12px}.mec-event-tile-view article.mec-tile-item .mec-event-title a{color:#fff}.mec-event-tile-view article.mec-tile-item .mec-event-title a:hover{text-decoration:underline}.mec-event-tile-view article.mec-tile-item .mec-event-content{position:absolute;bottom:25px;left:25px;right:25px}.mec-event-tile-view article.mec-label-canceled:before,.mec-event-tile-view article.mec-label-featured:before{height:auto}.mec-skin-tile-month-navigator-container{position:relative;text-align:center;font-size:12px;height:80px;background:#f7f7f7;padding:28px;border-radius:11px;margin-bottom:20px}.mec-skin-tile-month-navigator-container:after,.mec-skin-tile-month-navigator-container:before{content:'';display:block;position:absolute;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-skin-tile-month-navigator-container:after{bottom:-20px;border-color:#f7f7f7 transparent transparent transparent}.mec-skin-tile-month-navigator-container:before{bottom:-21px;border-color:#fff transparent transparent transparent}@media only screen and (max-width:480px){.mec-skin-tile-month-navigator-container{height:110px;padding-top:68px}}.mec-skin-tile-month-navigator-container h2{font-size:23px;font-weight:700}.mec-skin-tile-month-navigator-container .mec-next-month,.mec-skin-tile-month-navigator-container .mec-previous-month{position:absolute;top:28px;left:20px;cursor:pointer;padding:3px 12px;line-height:23px;background:#fff;border-radius:32px;box-shadow:0 1px 3px rgba(0,0,0,.02);transition:all .22s ease}.mec-skin-tile-month-navigator-container .mec-next-month{left:auto;right:20px}.mec-skin-tile-month-navigator-container .mec-next-month:hover,.mec-skin-tile-month-navigator-container .mec-previous-month:hover{box-shadow:0 2px 5px rgba(0,0,0,.1);color:#000}.mec-wrap .mec-event-tile-view article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view article.mec-label-featured:before{position:absolute;bottom:auto;text-align:center;right:auto;font-size:10px}.mec-event-tile-view article.mec-tile-item .mec-tile-overlay{position:absolute;background:-moz-linear-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);background:-webkit-gradient(left top,right top,color-stop(0,rgba(0,0,0,.35)),color-stop(65%,rgba(0,0,0,.48)),color-stop(100%,rgba(0,0,0,.72)));background:-webkit-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);background:linear-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);content:"";left:0;right:0;bottom:0;top:0;width:100%;height:100%;display:block;border-radius:22px;z-index:1}.mec-wrap .mec-event-tile-view .col-md-3 article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view .col-md-3 article.mec-label-featured:before{top:12px;left:103px;z-index:9}.mec-wrap .mec-event-tile-view .col-md-4 article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view .col-md-4 article.mec-label-featured:before{top:18px;left:125px}.mec-wrap .mec-event-tile-view .col-md-6 article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view .col-md-6 article.mec-label-featured:before{top:20px;left:200px}@media (max-width:960px){.mec-wrap .mec-event-tile-view .col-sm-3{width:50%}}@media (max-width:480px){.mec-wrap .mec-event-tile-view .col-sm-3{width:100%}}.mec-event-tile-view article.mec-tile-item.tile-multipleday-event:after{width:165px}.mec-event-tile-view .col-md-6.col-sm-6 article.mec-label-canceled:before{top:100px;left:140px}.mec-event-tile-view .col-md-4.col-sm-4 article.mec-label-canceled:before{top:20px;left:140px}@media (min-width:761px) and (max-width:1200px){.mec-event-tile-view .col-md-3.col-sm-3{width:50%}.mec-event-tile-view .col-md-6.col-sm-6 article.mec-label-canceled:before{top:80px;left:90px}.mec-event-tile-view .col-md-4.col-sm-4 article.mec-label-canceled:before{top:40px;left:70px}.mec-event-tile-view .col-md-3.col-sm-3 article.mec-label-canceled:before{top:90px;left:110px}}@media (min-width:761px) and (max-width:1024px){.mec-event-tile-view .col-md-4.col-sm-4{width:50%}.mec-event-tile-view .col-md-4.col-sm-4:nth-child(1n+3){width:100%}}@media (max-width:760px){.mec-event-tile-view .col-md-3.col-sm-3{width:100%}.mec-event-tile-view .col-md-4.col-sm-4{width:100%}}@media (max-width:480px){.mec-event-tile-view .col-md-6.col-sm-6 article.mec-label-canceled:before{top:100px;left:80px}}.mec-wrap .mec-cancellation-reason span,.mec-wrap .mec-labels-normal .mec-label-normal{position:relative;top:-3px;font-size:11px;font-weight:300;margin-left:10px;line-height:1.9;letter-spacing:1px;color:#fff;padding:2px 7px;border-radius:2px;white-space:nowrap}.mec-agenda-event-title .mec-labels-normal .mec-label-normal,.mec-timetable-event .mec-labels-normal .mec-label-normal,.tooltipster-box .mec-labels-normal .mec-label-normal{font-size:9px;letter-spacing:.5px;text-transform:uppercase;padding:2px 7px;color:#fff;position:relative;margin-left:5px;border-radius:2px;top:0}.mec-av-spot .mec-labels-normal .mec-label-normal,.mec-event-countdown-part1 .mec-labels-normal .mec-label-normal,.mec-event-countdown-part2 .mec-labels-normal .mec-label-normal,.mec-event-cover-modern .mec-labels-normal .mec-label-normal,.mec-masonry-content .mec-labels-normal .mec-label-normal,.mec-owl-carousel:not(.mec-slider-t1) .mec-labels-normal .mec-label-normal,.mec-tile-item .mec-labels-normal .mec-label-normal,.mec-timeline-event .mec-labels-normal .mec-label-normal,.tooltipster-box .mec-labels-normal .mec-label-normal{margin:0 5px 0 0}.mec-event-countdown-style3 .mec-labels-normal .mec-label-normal{margin:0 0 0 5px}.mec-event-footer-carousel-type3 .mec-labels-normal .mec-label-normal{display:inline}.mec-event-carousel-type4 .mec-fc-style{display:none}.mec-event-carousel-type4 .mec-labels-normal{top:-20px;position:relative}.mec-wrap .mec-cancellation-reason{display:inline-block}.mec-wrap .mec-cancellation-reason span{line-height:1.3;background:#eb3450;text-transform:none;display:inline-block;white-space:nowrap}.mec-wrap .mec-event-list-accordion .mec-cancellation-reason span,.mec-wrap .mec-event-list-accordion .mec-labels-normal .mec-label-normal{top:7px}.mec-agenda-event-title .mec-cancellation-reason span,.mec-timetable-event .mec-cancellation-reason span,.tooltipster-box .mec-cancellation-reason span{font-size:9px;letter-spacing:.5px;text-transform:uppercase;padding:2px 7px;color:#fff;position:relative;margin-left:5px;border-radius:2px;top:0}.mec-wrap .mec-event-container-novel .mec-cancellation-reason span,.mec-wrap .mec-event-container-novel .mec-labels-normal .mec-label-normal{white-space:inherit;margin-left:0}.mec-wrap .mec-event-container-simple .mec-cancellation-reason span,.mec-wrap .mec-event-container-simple .mec-labels-normal .mec-label-normal{top:-12px;white-space:inherit;margin-left:0}.mec-av-spot .mec-cancellation-reason span,.mec-event-countdown-part1 .mec-cancellation-reason span,.mec-event-countdown-part2 .mec-cancellation-reason span,.mec-event-cover-modern .mec-cancellation-reason span,.mec-masonry-content .mec-cancellation-reason span,.mec-owl-carousel:not(.mec-slider-t1) .mec-cancellation-reason span,.mec-tile-item .mec-cancellation-reason span,.mec-timeline-event .mec-cancellation-reason span,.tooltipster-box .mec-cancellation-reason span{margin:0 5px 0 0}.mec-owl-carousel .mec-event-footer-carousel-type3 span.mec-labels-normal{margin-top:0}.mec-wrap .mec-single-event .mec-cancellation-reason span{margin:0;padding:6px 12px;font-size:14px;font-weight:700}.featherlight-content .mec-cancellation-reason{display:block;width:100%;text-align:center;margin-top:20px;margin-bottom:-10px}.mec-event-data-fields{margin-bottom:30px}.mec-event-data-fields ul.mec-event-data-field-items{overflow:hidden;padding-top:10px;padding-left:0}.mec-event-data-fields .mec-event-data-field-item{list-style:none;margin-bottom:10px;border-bottom:1px dashed #e3e3e3;padding-bottom:7px;width:50%;float:left}.mec-event-data-fields .mec-event-data-field-item .mec-event-data-field-value{margin:0 0 20px 0;color:#616161;font-size:14px;line-height:1.8}.mec-event-data-fields .mec-event-data-field-item:last-child{border:none;width:100%}.mec-event-data-fields .mec-event-data-field-item .mec-event-data-field-name{text-transform:none;font-size:13px;font-weight:600;padding-bottom:5px;color:#313131;width:100%;padding-bottom:10px;position:relative;letter-spacing:-.2px}@media (max-width:768px){.mec-event-data-fields .mec-event-data-field-item{width:100%}}.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-modal-preloader,.mec-dark-mode .mec-month-navigator-loading{background-color:rgba(40,40,40,.88)}.mec-dark-mode .event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button,.mec-dark-mode .mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt,.mec-dark-mode .mec-calendar .mec-calendar-row dt:hover,.mec-dark-mode .mec-event-footer .mec-booking-button,.mec-dark-mode .mec-event-grid-classic .mec-event-content,.mec-dark-mode .mec-event-schedule-content .mec-schedule-speakers,.mec-dark-mode .mec-events-meta-group-tags a:hover,.mec-dark-mode .mec-events-toggle .mec-toggle-content .mec-modal-wrap,.mec-dark-mode .mec-fes-form .mec-meta-box-fields,.mec-dark-mode .mec-hourly-schedule-speaker-contact-information a i,.mec-dark-mode .mec-map-view-event-detail.mec-event-detail,.mec-dark-mode .mec-next-event-details a,.mec-dark-mode .mec-single-event .mec-event-exporting .mec-export-details a:hover,.mec-dark-mode .mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-dark-mode .mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev,.mec-dark-mode .mec-timetable-events-list .mec-timetable-event,.mec-dark-mode .mec-wrap .button,.mec-dark-mode .mec-wrap a.button:not(.owl-dot):hover,.mec-dark-mode .mec-wrap button:not(.owl-dot):hover,.mec-dark-mode .mec-wrap input[type=button]:hover,.mec-dark-mode .mec-wrap input[type=reset]:hover,.mec-dark-mode .mec-wrap input[type=submit]:hover{background-color:#1f1f1f;color:#d2d2d2}.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table,.mec-dark-mode .mec-skin-tile-month-navigator-container{background:#282828}.mec-dark-mode .mec-skin-tile-month-navigator-container:after{border-color:#282828 transparent transparent transparent}.mec-dark-mode .mec-event-grid-novel .mec-event-article,body.mec-dark-mode .mec-single-modern .mec-single-event-bar{background-color:#282828;color:#d2d2d2}.mec-dark-mode .event-carousel-type2-head,.mec-dark-mode .mec-box-calendar.mec-calendar .mec-calendar-table-head dt,.mec-dark-mode .mec-calendar .mec-calendar-side .mec-next-month,.mec-dark-mode .mec-calendar .mec-calendar-side .mec-previous-month,.mec-dark-mode .mec-calendar .mec-event-article:hover,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table a,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-prev,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-next-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-previous-month,.mec-dark-mode .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-event-article:hover,.mec-dark-mode .mec-calendar.mec-event-calendar-classic .mec-selected-day,.mec-dark-mode .mec-calendar.mec-event-calendar-classic dt.mec-selected-day:hover,.mec-dark-mode .mec-calendar.mec-yearly-calendar .mec-calendar-table-head dl dt,.mec-dark-mode .mec-event-carousel-content,.mec-dark-mode .mec-event-cost,.mec-dark-mode .mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button,.mec-dark-mode .mec-event-footer,.mec-dark-mode .mec-event-grid-classic .mec-event-content .mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-dark-mode .mec-event-list-minimal a.mec-detail-button,.mec-dark-mode .mec-event-list-modern .mec-btn-wrapper .mec-booking-button,.mec-dark-mode .mec-event-list-standard .mec-topsec,.mec-dark-mode .mec-event-more-info,.mec-dark-mode .mec-event-website,.mec-dark-mode .mec-events-agenda-wrap,.mec-dark-mode .mec-events-meta-date,.mec-dark-mode .mec-events-meta-group-tags a,.mec-dark-mode .mec-events-toggle .mec-toggle-item-inner,.mec-dark-mode .mec-fes-form,.mec-dark-mode .mec-fes-form input[type=email],.mec-dark-mode .mec-fes-form input[type=number],.mec-dark-mode .mec-fes-form input[type=password],.mec-dark-mode .mec-fes-form input[type=tel],.mec-dark-mode .mec-fes-form input[type=text],.mec-dark-mode .mec-fes-form select,.mec-dark-mode .mec-fes-form textarea,.mec-dark-mode .mec-fes-list,.mec-dark-mode .mec-hourly-schedule-speaker-info,.mec-dark-mode .mec-load-more-button,.mec-dark-mode .mec-map-lightbox-wp,.mec-dark-mode .mec-masonry-item-wrap .mec-event-grid-modern .event-grid-modern-head,.mec-dark-mode .mec-related-event-content,.mec-dark-mode .mec-single-event .mec-event-exporting .mec-export-details a,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=date],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=email],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=number],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=password],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=text],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking select,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking textarea,.mec-dark-mode .mec-single-event .mec-events-meta-group-countdown,.mec-dark-mode .mec-single-event .mec-frontbox,.mec-dark-mode .mec-single-event .mec-speakers-details ul li,.mec-dark-mode .mec-single-event-additional-organizers,.mec-dark-mode .mec-single-event-category,.mec-dark-mode .mec-single-event-date,.mec-dark-mode .mec-single-event-label,.mec-dark-mode .mec-single-event-location,.mec-dark-mode .mec-single-event-organizer,.mec-dark-mode .mec-single-event-time,.mec-dark-mode .mec-single-modern .col-md-4 .mec-frontbox,.mec-dark-mode .mec-slider-t1-wrap,.mec-dark-mode .mec-timetable-events-list .mec-timetable-event,.mec-dark-mode .mec-timetable-t2-wrap,.mec-dark-mode .mec-ttt2-title,.mec-dark-mode .mec-wrap .mec-event-countdown-style1,.mec-dark-mode .mec-wrap .mec-event-countdown-style2,.mec-dark-mode .mec-wrap .mec-totalcal-box,.mec-dark-mode .mec-wrap .mec-totalcal-box i,.mec-dark-mode .mec-wrap .mec-totalcal-box input,.mec-dark-mode .mec-wrap .mec-totalcal-box select,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year:hover,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year:hover,.mec-dark-mode.mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-dark-mode.mec-wrap .mec-totalcal-box i,.mec-dark-mode.mec-wrap .mec-totalcal-box input,.mec-dark-mode.mec-wrap .mec-totalcal-box select{background-color:#282828}.mec-dark-mode .event-carousel-type2-head,.mec-dark-mode .event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button,.mec-dark-mode .mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-dark-mode .mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month,.mec-dark-mode .mec-box-calendar.mec-calendar .mec-calendar-table-head dt,.mec-dark-mode .mec-box-calendar.mec-calendar dt,.mec-dark-mode .mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt,.mec-dark-mode .mec-breadcrumbs,.mec-dark-mode .mec-calendar .mec-calendar-side .mec-next-month,.mec-dark-mode .mec-calendar .mec-calendar-side .mec-previous-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table a,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-prev .mec-calendar.mec-calendar-daily .mec-calendar-a-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-next-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-previous-month,.mec-dark-mode .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec,.mec-dark-mode .mec-event-carousel-content,.mec-dark-mode .mec-event-footer,.mec-dark-mode .mec-event-footer .mec-booking-button,.mec-dark-mode .mec-event-list-minimal .mec-event-article,.mec-dark-mode .mec-event-list-minimal a.mec-detail-button,.mec-dark-mode .mec-event-list-modern .mec-btn-wrapper .mec-booking-button,.mec-dark-mode .mec-event-list-modern .mec-event-article,.mec-dark-mode .mec-event-list-standard .mec-event-article,.mec-dark-mode .mec-event-list-standard .mec-event-meta-wrap,.mec-dark-mode .mec-event-list-standard .mec-topsec,.mec-dark-mode .mec-event-schedule-content,.mec-dark-mode .mec-event-schedule-content dl:before,.mec-dark-mode .mec-events-agenda-wrap,.mec-dark-mode .mec-events-meta-group-booking ul.mec-book-price-details,.mec-dark-mode .mec-events-meta-group-booking ul.mec-book-price-details li,.mec-dark-mode .mec-events-meta-group-tags a,.mec-dark-mode .mec-events-toggle .mec-toggle-content,.mec-dark-mode .mec-events-toggle .mec-toggle-item,.mec-dark-mode .mec-events-toggle .mec-toggle-item-inner,.mec-dark-mode .mec-fes-form .mec-meta-box-fields,.mec-dark-mode .mec-fes-form input[type=email],.mec-dark-mode .mec-fes-form input[type=number],.mec-dark-mode .mec-fes-form input[type=password],.mec-dark-mode .mec-fes-form input[type=tel],.mec-dark-mode .mec-fes-form input[type=text],.mec-dark-mode .mec-fes-form select,.mec-dark-mode .mec-fes-form textarea,.mec-dark-mode .mec-hourly-schedule-speaker-info,.mec-dark-mode .mec-load-more-button,.mec-dark-mode .mec-masonry-item-wrap .mec-event-grid-modern .event-grid-modern-head,.mec-dark-mode .mec-next-event-details a,.mec-dark-mode .mec-related-events-wrap h3.mec-rec-events-title,.mec-dark-mode .mec-single-event .mec-event-exporting .mec-export-details a:hover,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking form>h4,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=date],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=email],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=number],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=password],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=text],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking select,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking textarea,.mec-dark-mode .mec-single-event .mec-events-meta-group-countdown,.mec-dark-mode .mec-single-event .mec-frontbox,.mec-dark-mode .mec-single-event .mec-frontbox-title,.mec-dark-mode .mec-timetable-t2-wrap,.mec-dark-mode .mec-wrap .mec-totalcal-box,.mec-dark-mode .mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-dark-mode .mec-wrap .mec-totalcal-box i,.mec-dark-mode .mec-wrap .mec-totalcal-box input,.mec-dark-mode .mec-wrap .mec-totalcal-box select,.mec-dark-mode .mec-yearly-view-wrap,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec{border-color:#353535}.mec-dark-mode .entry-content .mec-wrap h1,.mec-dark-mode .entry-content .mec-wrap h2,.mec-dark-mode .entry-content .mec-wrap h3,.mec-dark-mode .entry-content .mec-wrap h4,.mec-dark-mode .entry-content .mec-wrap h5,.mec-dark-mode .entry-content .mec-wrap h6,.mec-dark-mode .mec-breadcrumbs a,.mec-dark-mode .mec-calendar .mec-event-article .mec-event-title a,.mec-dark-mode .mec-calendar dt,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-has-event,.mec-dark-mode .mec-calendar.mec-event-container-simple dl dt.mec-calendar-day,.mec-dark-mode .mec-event-carousel-content .mec-event-carousel-title a,.mec-dark-mode .mec-event-content p,.mec-dark-mode .mec-event-grid-classic .mec-event-title a,.mec-dark-mode .mec-event-grid-clean .mec-event-title a,.mec-dark-mode .mec-event-grid-minimal .mec-event-date span,.mec-dark-mode .mec-event-grid-minimal .mec-event-title a,.mec-dark-mode .mec-event-grid-modern .mec-event-title a,.mec-dark-mode .mec-event-grid-simple .mec-event-title a,.mec-dark-mode .mec-event-list-classic .mec-event-title a,.mec-dark-mode .mec-event-list-minimal .mec-event-title a,.mec-dark-mode .mec-event-list-minimal a.mec-detail-button,.mec-dark-mode .mec-event-list-modern .mec-btn-wrapper .mec-booking-button,.mec-dark-mode .mec-event-list-standard .mec-event-title a,.mec-dark-mode .mec-events-meta-group-booking ul.mec-book-price-details li,.mec-dark-mode .mec-events-meta-group-booking ul.mec-book-price-details li span.mec-book-price-detail-amount,.mec-dark-mode .mec-events-meta-group-tags a,.mec-dark-mode .mec-events-toggle .mec-toggle-item-inner i,.mec-dark-mode .mec-fes-form,.mec-dark-mode .mec-fes-form input[type=email],.mec-dark-mode .mec-fes-form input[type=number],.mec-dark-mode .mec-fes-form input[type=password],.mec-dark-mode .mec-fes-form input[type=tel],.mec-dark-mode .mec-fes-form input[type=text],.mec-dark-mode .mec-fes-form label,.mec-dark-mode .mec-fes-form select,.mec-dark-mode .mec-fes-form textarea,.mec-dark-mode .mec-fes-list,.mec-dark-mode .mec-hourly-schedule-speaker-contact-information a i,.mec-dark-mode .mec-hourly-schedule-speaker-description,.mec-dark-mode .mec-hourly-schedule-speaker-name,.mec-dark-mode .mec-load-more-button,.mec-dark-mode .mec-next-event-details abbr,.mec-dark-mode .mec-related-event-content h5 a,.mec-dark-mode .mec-related-event-content span,.mec-dark-mode .mec-single-event .mec-event-meta dt,.mec-dark-mode .mec-single-event .mec-event-meta h3,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking form>h4,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking h5 span,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=date],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=email],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=number],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=password],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=text],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking label,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking select,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking textarea,.mec-dark-mode .mec-single-event .mec-frontbox-title,.mec-dark-mode .mec-single-event .mec-speakers-details ul li .mec-speaker-job-title,.mec-dark-mode .mec-single-modern .mec-single-event-bar>div h3,.mec-dark-mode .mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-dark-mode .mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev i,.mec-dark-mode .mec-timeline-main-content h4 a,.mec-dark-mode .mec-timetable-event .mec-timetable-event-time,.mec-dark-mode .mec-timetable-events-list .mec-timetable-event span a,.mec-dark-mode .mec-tooltip-event-title,.mec-dark-mode .mec-ttt2-title,.mec-dark-mode .mec-wrap,.mec-dark-mode .mec-wrap .mec-event-list-modern .mec-event-title a,.mec-dark-mode .mec-wrap .mec-event-schedule-content a,.mec-dark-mode .mec-wrap .mec-single-title,.mec-dark-mode .mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-dark-mode .mec-wrap .mec-totalcal-box input,.mec-dark-mode .mec-wrap .mec-totalcal-box select,.mec-dark-mode .mec-wrap h1,.mec-dark-mode .mec-wrap h2,.mec-dark-mode .mec-wrap h3,.mec-dark-mode .mec-wrap h4,.mec-dark-mode .mec-wrap h5,.mec-dark-mode .mec-wrap h6,.mec-dark-mode .mec-wrap p{color:#d2d2d2}.mec-dark-mode .mec-breadcrumbs a:hover,.mec-dark-mode .mec-calendar .mec-event-article .mec-event-title a:hover,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-has-event:hover,.mec-dark-mode .mec-event-footer .mec-booking-button:hover,.mec-dark-mode .mec-event-grid-classic .mec-event-title a:hover,.mec-dark-mode .mec-event-grid-minimal .mec-event-date:hover,.mec-dark-mode .mec-event-grid-minimal .mec-event-title a:hover,.mec-dark-mode .mec-event-list-classic .mec-event-title a:hover,.mec-dark-mode .mec-event-list-minimal .mec-event-title a:hover,.mec-dark-mode .mec-event-list-minimal a.mec-detail-button:hover,.mec-dark-mode .mec-event-list-modern .mec-btn-wrapper .mec-booking-button:hover,.mec-dark-mode .mec-event-list-standard .mec-event-title a:hover,.mec-dark-mode .mec-single-event .mec-event-meta dd a:hover,.mec-dark-mode .mec-wrap .mec-event-list-modern .mec-event-title a:hover,.mec-dark-mode .mec-wrap .mec-totalcal-box .mec-totalcal-view span:hover,.mec-dark-mode .mec-wrap a:hover{color:#fff}.mec-dark-mode .lity-container .mec-events-meta-group-booking input[type=radio]:before,.mec-dark-mode .mec-related-events-wrap h3.mec-rec-events-title:before,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=checkbox],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=radio]:before{background-color:#c4cace}.mec-dark-mode .lity-container .mec-events-meta-group-booking input[type=radio]:before,.mec-dark-mode .mec-month-divider span,.mec-dark-mode .mec-related-events-wrap h3.mec-rec-events-title:before,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=checkbox],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=radio]:before{border-color:#d2d2d2}.mec-dark-mode .event-carousel-type3-head .mec-event-footer-carousel-type3,.mec-dark-mode .mec-agenda-events-wrap,.mec-dark-mode .mec-av-spot .mec-av-spot-content,.mec-dark-mode .mec-av-spot .mec-av-spot-head,.mec-dark-mode .mec-av-spot-wrap .mec-event-grid-modern .event-grid-modern-head,.mec-dark-mode .mec-calendar .mec-calendar-side .mec-next-month:hover,.mec-dark-mode .mec-calendar .mec-calendar-side .mec-previous-month:hover,.mec-dark-mode .mec-calendar .mec-calendar-topsec,.mec-dark-mode .mec-calendar .mec-event-article:hover,.mec-dark-mode .mec-calendar dt,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-has-event:hover,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table a:hover,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-top,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-next-month:hover,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-previous-month:hover,.mec-dark-mode .mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:hover,.mec-dark-mode .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec,.mec-dark-mode .mec-event-cover-classic,.mec-dark-mode .mec-event-footer .mec-booking-button:hover,.mec-dark-mode .mec-event-grid-clean .mec-event-article,.mec-dark-mode .mec-event-grid-clean .mec-event-content,.mec-dark-mode .mec-event-grid-modern .mec-event-article,.mec-dark-mode .mec-event-grid-modern .mec-event-content,.mec-dark-mode .mec-event-list-minimal a.mec-detail-button:hover,.mec-dark-mode .mec-event-list-modern .mec-btn-wrapper .mec-booking-button:hover,.mec-dark-mode .mec-event-sharing-wrap .mec-event-sharing,.mec-dark-mode .mec-events-toggle .mec-toggle-item-inner:hover,.mec-dark-mode .mec-hourly-schedule-speaker-contact-information a:hover i,.mec-dark-mode .mec-masonry .mec-masonry-content,.mec-dark-mode .mec-masonry .mec-masonry-head,.mec-dark-mode .mec-slider-t1 .mec-slider-t1-content,.mec-dark-mode .mec-slider-t5 .mec-slider-t5-content,.mec-dark-mode .mec-slider-t5-wrap,.mec-dark-mode .mec-slider-t5-wrap .mec-event-grid-modern .event-grid-modern-head,.mec-dark-mode .mec-timeline-event-content,.mec-dark-mode .mec-timeline-month-divider,.mec-dark-mode .mec-timetable-events-list .mec-timetable-event:hover,.mec-dark-mode .mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3,.mec-dark-mode .mec-wrap .mec-totalcal-box,.mec-dark-mode .mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-calendar-sec,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year,.mec-dark-mode .tooltipster-sidetip .tooltipster-content{background:#191919}.mec-dark-mode .event-carousel-type3-head .mec-event-footer-carousel-type3,.mec-dark-mode .event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button,.mec-dark-mode .mec-av-spot,.mec-dark-mode .mec-av-spot-wrap .mec-event-grid-modern .event-grid-modern-head,.mec-dark-mode .mec-box-calendar.mec-calendar dl dt:last-child,.mec-dark-mode .mec-calendar,.mec-dark-mode .mec-calendar .mec-event-article,.mec-dark-mode .mec-calendar.mec-box-calendar .mec-table-nullday:last-child,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-next-month:hover,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-previous-month:hover,.mec-dark-mode .mec-event-cover-classic,.mec-dark-mode .mec-event-cover-clean,.mec-dark-mode .mec-event-grid-classic .mec-event-article,.mec-dark-mode .mec-event-grid-clean .mec-event-article,.mec-dark-mode .mec-event-grid-modern .mec-event-article,.mec-dark-mode .mec-event-sharing-wrap .mec-event-sharing,.mec-dark-mode .mec-event-sharing-wrap .mec-event-sharing:after,.mec-dark-mode .mec-event-sharing-wrap>li:first-of-type,.mec-dark-mode .mec-events-agenda,.mec-dark-mode .mec-fes-form .mec-meta-box-fields,.mec-dark-mode .mec-masonry,.mec-dark-mode .mec-slider-t5-wrap .mec-event-grid-modern .event-grid-modern-head,.mec-dark-mode .mec-timeline-month-divider,.mec-dark-mode .mec-wrap .mec-totalcal-box,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{border-color:#353535}.mec-dark-mode .mec-event-sharing-wrap .mec-event-sharing:after{border-color:#191919 transparent transparent transparent}.mec-dark-mode .mec-event-sharing-wrap .mec-event-sharing:before{border-color:#353535 transparent transparent transparent}.mec-dark-mode .mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text],.mec-dark-mode .mec-events-meta-group-booking .StripeElement,.mec-dark-mode .mec-slider-t2 .mec-event-article{background:#1f1f1f!important;border:1px solid #353535!important;box-shadow:none!important;color:#d2d2d2!important}.mec-dark-mode .CardField CardField--ltr .__PrivateStripeElement .InputContainer input{color:#d2d2d2!important}.mec-dark-mode .mec-events-toggle .mec-toggle-item{border:1px solid #e4e4e4;box-shadow:0 10px 15px #282828}.mec-dark-mode .mec-agenda-events-wrap .mec-event-grid-colorful .mec-event-content{background-color:transparent}.mec-dark-mode .mec-calendar .mec-calendar-side{box-shadow:0 1px 5px 6px rgba(255,255,255,.005) inset}.mec-dark-mode .tooltipster-sidetip.tooltipster-shadow .tooltipster-box{border:1px solid #282828!important}.mec-dark-mode .mec-timeline-event-content:after{border-color:transparent #191919 transparent transparent}.mec-dark-mode .mec-fes-form .mec-meta-box-fields{box-shadow:0 2px 6px -3px #353535}.mec-dark-mode .mec-fes-form .mec-meta-box-fields h4{color:#d2d2d2;background:#000}.mec-dark-mode .mec-fes-form input[type=email],.mec-dark-mode .mec-fes-form input[type=number],.mec-dark-mode .mec-fes-form input[type=password],.mec-dark-mode .mec-fes-form input[type=tel],.mec-dark-mode .mec-fes-form input[type=text],.mec-dark-mode .mec-fes-form select,.mec-dark-mode .mec-fes-form textarea{box-shadow:0 2px 5px rgba(0,0,0,.38) inset}.mec-dark-mode .mec-fes-form input{background:#353535!important;color:#d2d2d2!important}.mec-dark-mode .mec-booking-tab-content .button:hover,.mec-dark-mode .mec-booking-tab-content .mec-reg-field-add-option:hover,.mec-dark-mode .mec-fes-form .mec-form-row .button:not(.wp-color-result):hover{background:#353535;color:#d2d2d2;border-color:#353535;box-shadow:0 2px 6px -3px #353535}.mec-dark-mode .mec-booking-tab-content .button,.mec-dark-mode .mec-booking-tab-content .mec-reg-field-add-option,.mec-dark-mode .mec-fes-form .mec-form-row .button:not(.wp-color-result),.mec-dark-mode .mec-fes-form input[type=file],.mec-dark-mode ul#mec_reg_form_fields li .mec_reg_field_remove{color:#d2d2d2;background:#282828;border:2px solid #353535;box-shadow:0 2px 6px -3px #353535}.mec-dark-mode #mec_reg_form_fields input[type=checkbox],.mec-dark-mode #mec_reg_form_fields input[type=radio],.mec-dark-mode .mec-form-row input[type=checkbox],.mec-dark-mode .mec-form-row input[type=radio]{background-color:#000;border:1px solid #353535;box-shadow:0 1px 3px -1px #353535}.mec-dark-mode .mec-fes-form .select2-container{border:1px solid #353535;background-color:#282828;color:#d2d2d2}.mec-events-meta-group-booking-shortcode{background-color:#e6f7ff;padding:40px;position:relative}.mec-booking-shortcode .mec-event-tickets-list.mec-sell-all-occurrences{width:100%}.mec-booking-shortcode .mec-book-reg-field-mec_email{width:48%;display:inline-block;margin-right:30px}.mec-booking-shortcode .mec-book-reg-field-name{width:48%;display:inline-block}.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-expiration-date-month{width:48%;display:inline-block;vertical-align:top;margin-right:30px}.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-cvv2{width:48%;display:inline-block}.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-expiration-date-month .nice-select{width:48%;display:inline-block}.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-expiration-date-month label{width:100%}.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-expiration-date-month .nice-select:first-of-type{margin-right:10px}.mec-booking-shortcode .mec-form-row.mec-name-stripe,.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-card-type,.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-first-name{width:48%;vertical-align:top;display:inline-block;margin-right:30px}.mec-booking-shortcode .mec-form-row.mec-email-stripe,.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-cc-number,.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-last-name{width:48%;display:inline-block}.mec-events-meta-group-booking .mec-booking-shortcode .StripeElement{height:56px;padding:19px 12px 0;max-width:420px}.mec-booking-shortcode .nice-select,.mec-booking-shortcode input{float:none;border:1px solid #c7ebfb!important;border-radius:3px;background-color:#fff;height:41px;line-height:39px;padding-left:15px;padding-right:15px;margin:0;margin-bottom:24px!important;color:#00acf8;font-size:14px;font-weight:400;box-shadow:none!important;min-height:unset;min-width:unset;padding-top:0;padding-bottom:0}.mec-booking-shortcode .mec-gateway-message.mec-success{margin-bottom:-20px;font-size:14px}.mec-booking-shortcode .mec-form-row.mec-name-stripe{margin-bottom:0!important}.mec-booking-shortcode .mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text],.mec-events-meta-group-booking .mec-booking-shortcode .StripeElement{border:1px solid #c7ebfb!important;border-radius:3px;box-shadow:none!important}.mec-booking-shortcode .nice-select ul{width:100%}.mec-booking-shortcode .mec-event-ticket-name,.mec-booking-shortcode .mec-event-ticket-price,.mec-booking-shortcode .mec-ticket-variation-name,.mec-booking-shortcode .mec-ticket-variation-price,.mec-booking-shortcode label{font-size:14px;line-height:19px;font-weight:400;color:#00acf8;padding-right:5px;margin:0 0 4px!important}.mec-booking-shortcode span.mec-event-ticket-available{margin-top:-22px!important;margin-bottom:28px!important;display:block;font-size:11px;letter-spacing:.5px;font-weight:300;color:#80abbf}.mec-booking-shortcode button{background-color:#00acf8;border-radius:2px;box-shadow:0 2px 2px rgba(0,172,248,.27);font-weight:500;font-size:11px;letter-spacing:.5px;margin:0;min-width:116px;padding:16px 15px 14px;float:none;position:relative;border:none;color:#fff;display:inline-block}.mec-booking-shortcode .mec-booking-form-container ul li{list-style:none}.mec-booking-shortcode .mec-booking-form-container ul{padding:0}.mec-events-meta-group-booking-shortcode .mec-error{background-color:#ff017e;color:#fff;margin:20px 0 0;padding:10px 15px;border-radius:3px}.mec-booking-shortcode .mec-book-ticket-variation h5{margin:0 0 4px}.mec-booking-shortcode .mec-book-available-tickets-details-header{border-bottom:2px solid #00acf8}.mec-booking-shortcode .mec-book-available-tickets-details-header,.mec-booking-shortcode .mec-book-available-tickets-details-item,.mec-booking-shortcode .mec-book-price-detail{display:-webkit-box;display:flex;flex-wrap:wrap}.mec-booking-shortcode .mec-book-available-tickets-details-header span,.mec-booking-shortcode .mec-book-available-tickets-details-item span,.mec-booking-shortcode .mec-book-price-detail span{-webkit-box-flex:1.97;flex:1.97 1.97 0;min-height:1px;font-size:14px;line-height:22px;color:#616264;font-weight:500;padding-bottom:20px;padding-top:20px}.mec-booking-shortcode .mec-book-available-tickets-details span:nth-of-type(2),.mec-booking-shortcode .mec-book-available-tickets-details-item span:nth-of-type(2),.mec-booking-shortcode .mec-book-price-detail span:nth-of-type(2){-webkit-box-flex:1;flex:1 1 0}.mec-booking-shortcode .mec-book-available-tickets-details span:last-child,.mec-booking-shortcode .mec-book-available-tickets-details-item span:last-child,.mec-booking-shortcode .mec-book-price-detail span:last-child{-webkit-box-flex:1.085;flex:1.085 1.085 0}.mec-booking-shortcode .mec-book-available-tickets-details-header span{padding-bottom:11px}.mec-booking-shortcode .mec-book-available-tickets-details-item span{font-weight:400;font-size:12px}.mec-booking-shortcode span.mec-book-price-detail-amount,.mec-booking-shortcode span.mec-book-price-detail-description{font-size:14px;line-height:22px;font-weight:500;padding:6px 0;color:#000}.mec-booking-shortcode span.mec-book-price-detail-amount{color:#777}.mec-booking-shortcode .mec-book-form-gateways label{cursor:pointer}.mec-booking-shortcode .mec-book-form-gateways label{cursor:pointer}.mec-booking-shortcode span.mec-book-price-detail-description{padding:6px 13px 6px 0;font-size:14px;font-weight:400;color:#00acf8}.mec-booking-shortcode ul.mec-book-price-details li{border-right:1px solid #c7ebfb!important}.mec-booking-shortcode span.mec-book-price-total{font-size:22px;line-height:22px;font-weight:700;color:#2bbc10;margin-top:20px;margin-bottom:35px;display:inline-block}.mec-booking-shortcode ul.mec-book-price-details{border:1px solid #c7ebfb!important;border-radius:3px;box-shadow:none!important}.mec-booking-shortcode span.mec-book-price-total-description{font-size:18px;line-height:22px;font-weight:700;color:#000}.mec-booking-shortcode span.mec-book-price-total-amount{font-size:22px;line-height:22px;font-weight:700;color:#2bbc10}.mec-booking-shortcode .mec-book-form-price{clear:both;position:relative}.mec-booking-shortcode .mec-book-form-gateway-label input[type=radio]:after{content:"";display:inline-block;width:7px;height:7px;background-color:#fff;border-radius:50%;cursor:pointer;position:absolute;top:4px;left:3px}.mec-booking-shortcode .mec-book-form-gateway-label input[type=radio]:before{box-shadow:none;border:2px solid #a8e4ff;width:17px;height:17px;position:absolute;top:-9px;left:-2px;margin:0;content:"";display:inline-block;background:#fff;border-radius:18px;cursor:pointer;position:relative}.mec-booking-shortcode .mec-book-form-gateway-label{-webkit-box-flex:0;flex:0 0 50%;margin-bottom:14px;padding-right:15px}.mec-booking-shortcode .mec-book-form-gateways{display:-webkit-box;display:flex;flex-wrap:wrap;margin-bottom:20px}.mec-booking-shortcode .mec-book-form-gateway-checkout{-webkit-box-flex:0;flex:0 0 100%;max-width:100%}.mec-booking-shortcode input::-webkit-input-placeholder,.mec-booking-shortcode textarea::-webkit-input-placeholder{color:#afe6ff}.mec-booking-shortcode input::-moz-placeholder,.mec-booking-shortcode textarea::-moz-placeholder{color:#afe6ff}.mec-booking-shortcode input:-ms-input-placeholder,.mec-booking-shortcode textarea:-ms-input-placeholder{color:#afe6ff}.mec-booking-shortcode input:-moz-placeholder,.mec-booking-shortcode textarea:-moz-placeholder{color:#afe6ff}.mec-booking-shortcode input[type=radio]:checked:before{border:2px solid #a8e4ff;box-shadow:none}.mec-booking-shortcode input[type=radio]:checked:after{background-color:#00acf8}.mec-booking-shortcode .mec-book-form-gateway-label label input{position:relative;cursor:pointer;margin:0!important;height:auto;margin-right:4px!important}.mec-booking-shortcode .mec-click-pay button[type=submit]{position:absolute;left:190px;bottom:40px}.mec-booking-shortcode button#mec-book-form-btn-step-2{margin-left:30px}.mec-booking-shortcode .mec-ticket-name{display:inline-block;background-color:#fff;border-radius:3px;font-size:12px;line-height:12px;font-weight:400;color:#00acf8;padding:8px 13px;letter-spacing:0}.mec-booking-shortcode .mec_book_first_for_all{display:none}.mec-booking-shortcode li.mec-first-for-all-wrapper{margin-bottom:20px}.mec-booking-shortcode label.wn-checkbox-label:before{display:inline-block;-moz-transform-origin:left top;-ms-transform-origin:left top;-o-transform-origin:left top;-webkit-transform-origin:left top;transform-origin:left top;content:'';-webkit-transition:opacity ease .5;-moz-transition:opacity ease .5;transition:opacity ease .5;position:absolute;background-color:#00acf8;width:2px;-webkit-transform:rotate(-138deg);transform:rotate(-138deg)}.mec-booking-shortcode label.wn-checkbox-label{position:relative;display:inline-block;-moz-transition:border-color ease .2s;-o-transition:border-color ease .2s;-webkit-transition:border-color ease .2s;transition:border-color ease .2s;cursor:pointer;vertical-align:middle;font-size:14px;line-height:19px;font-weight:400;color:#00acf8;margin:0 0 4px!important;padding:0;background-color:#fff;border:2px solid #a8e4ff;width:17px;height:17px;border-radius:3px;margin-right:9px!important;box-shadow:none}.mec-booking-shortcode label.wn-checkbox-label:after{-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);transform:rotate(-45deg);-moz-animation:dothabottomcheck 80ms ease 0s forwards;-o-animation:dothabottomcheck 80ms ease 0s forwards;-webkit-animation:dothabottomcheck 80ms ease 0s forwards;animation:dothabottomcheck 80ms ease 0s forwards;content:'';display:inline-block;-moz-transform-origin:left top;-ms-transform-origin:left top;-o-transform-origin:left top;-webkit-transform-origin:left top;transform-origin:left top;content:'';-webkit-transition:opacity ease .5;-moz-transition:opacity ease .5;transition:opacity ease .5;position:absolute;background-color:#00acf8;width:2px}.mec-booking-shortcode input[type=checkbox]:checked+.wn-checkbox-label::after{height:5px;left:2px;top:7px;-moz-animation:dothatopcheck .16s ease 0s forwards;-o-animation:dothatopcheck .16s ease 0s forwards;-webkit-animation:dothatopcheck .16s ease 0s forwards;animation:dothatopcheck .16s ease 0s forwards}.mec-booking-shortcode input[type=checkbox]:checked+.wn-checkbox-label::before{height:6px;left:7px;top:9px;-moz-animation:dothatopcheck .16s ease 0s forwards;-o-animation:dothatopcheck .16s ease 0s forwards;-webkit-animation:dothatopcheck .16s ease 0s forwards;animation:dothatopcheck .16s ease 0s forwards}.mec-booking-shortcode button[type=button],.mec-booking-shortcode button[type=submit]{font-weight:500;font-size:13px;letter-spacing:.5px;line-height:16px;outline:0}.mec-booking-shortcode button.mec-book-form-back-button{background-color:#afe6ff;box-shadow:0 2px 2px rgba(175,230,255,.27)}.mec-booking-shortcode button[type=button]:hover,.mec-booking-shortcode button[type=submit]:hover{background-color:#000;text-decoration:none;box-shadow:0 4px 10px rgba(1,2,4,.32)}.mec-booking-shortcode a.button:after,.mec-booking-shortcode button[type=submit]:after{display:none;width:13px;height:13px;border-top:0;border-right:.1em solid #f0f1f1;border-bottom:.1em solid #fbfbfb;border-left:.1em solid #fff;content:"";-webkit-transform:translateZ(0);-ms-transform:translateZ(0);transform:translateZ(0);-webkit-animation:mecloader 1.1s infinite linear;animation:mecloader 1.1s infinite linear;background:rgba(0,0,0,0);position:absolute;top:18px;right:20px;border-radius:50%;z-index:999999999999}.mec-booking-shortcode a.button.loading:after,.mec-booking-shortcode button[type=submit].loading:after{display:block}.mec-booking-shortcode .mec-book-form-coupon{margin-bottom:35px}
|
@@ -138,7 +138,7 @@ jQuery(document).ready(function($)
|
|
138 |
$('.mec-checkbox-toggle').on('change', function()
|
139 |
{
|
140 |
var id = $(this).attr('id');
|
141 |
-
$(".mec-checkbox-toggle:not(#"+id+")").
|
142 |
});
|
143 |
|
144 |
// MEC Setting Sticky
|
@@ -621,14 +621,14 @@ function mec_skin_toggle()
|
|
621 |
if(skin === 'list' || skin === 'grid' || skin === 'agenda' || skin === 'timeline') jQuery('#mec_date_ongoing_filter').show();
|
622 |
else
|
623 |
{
|
624 |
-
jQuery("#mec_show_only_ongoing_events").
|
625 |
jQuery('#mec_date_ongoing_filter').hide();
|
626 |
}
|
627 |
|
628 |
// Show/Hide Expired Events
|
629 |
if(skin === 'map')
|
630 |
{
|
631 |
-
jQuery("#mec_show_only_past_events").
|
632 |
jQuery('#mec_date_only_past_filter').hide();
|
633 |
}
|
634 |
else jQuery('#mec_date_only_past_filter').show();
|
138 |
$('.mec-checkbox-toggle').on('change', function()
|
139 |
{
|
140 |
var id = $(this).attr('id');
|
141 |
+
$(".mec-checkbox-toggle:not(#"+id+")").prop('checked', false);
|
142 |
});
|
143 |
|
144 |
// MEC Setting Sticky
|
621 |
if(skin === 'list' || skin === 'grid' || skin === 'agenda' || skin === 'timeline') jQuery('#mec_date_ongoing_filter').show();
|
622 |
else
|
623 |
{
|
624 |
+
jQuery("#mec_show_only_ongoing_events").prop('checked', false);
|
625 |
jQuery('#mec_date_ongoing_filter').hide();
|
626 |
}
|
627 |
|
628 |
// Show/Hide Expired Events
|
629 |
if(skin === 'map')
|
630 |
{
|
631 |
+
jQuery("#mec_show_only_past_events").prop('checked', false);
|
632 |
jQuery('#mec_date_only_past_filter').hide();
|
633 |
}
|
634 |
else jQuery('#mec_date_only_past_filter').show();
|
@@ -361,12 +361,11 @@ jQuery(document).ready(function($)
|
|
361 |
});
|
362 |
}
|
363 |
|
364 |
-
function initYearNavigator()
|
365 |
-
|
366 |
-
$("#mec_skin_" + settings.id + " .mec-load-year").off("click");
|
367 |
-
|
368 |
// Add onclick event
|
369 |
-
$("#mec_skin_" + settings.id + " .mec-load-year").on("click", function
|
|
|
370 |
var year = $(this).data("mec-year");
|
371 |
setYear(year);
|
372 |
});
|
@@ -487,6 +486,42 @@ jQuery(document).ready(function($)
|
|
487 |
if (settings.sed_method != '0') {
|
488 |
sed();
|
489 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
490 |
}
|
491 |
|
492 |
function sed() {
|
@@ -3674,26 +3709,6 @@ function mec_focus_week(id, skin) {
|
|
3674 |
}
|
3675 |
}
|
3676 |
}
|
3677 |
-
|
3678 |
-
// Yearly view
|
3679 |
-
$('.mec-yearly-calendar .mec-has-event a').on('click', function(e) {
|
3680 |
-
e.preventDefault();
|
3681 |
-
var des = $(this).attr('href');
|
3682 |
-
$('.mec-events-agenda').removeClass('mec-selected');
|
3683 |
-
$(des).closest('.mec-events-agenda').addClass('mec-selected');
|
3684 |
-
var scrollTopVal = $(des).closest('.mec-events-agenda').offset().top - 35;
|
3685 |
-
|
3686 |
-
if ($(this).closest('.mec-fluent-wrap').length > 0) {
|
3687 |
-
var parent = jQuery(this).closest('.mec-fluent-wrap').find('.mec-yearly-agenda-sec');
|
3688 |
-
scrollTopVal = parent.scrollTop() + ($(des).closest('.mec-events-agenda').offset().top - parent.offset().top);
|
3689 |
-
jQuery(this).closest('.mec-fluent-wrap').find('.mec-yearly-agenda-sec').getNiceScroll(0).doScrollTop(scrollTopVal - 15, 120);
|
3690 |
-
} else {
|
3691 |
-
$('html, body').animate({
|
3692 |
-
scrollTop: scrollTopVal
|
3693 |
-
}, 300);
|
3694 |
-
}
|
3695 |
-
});
|
3696 |
-
|
3697 |
});
|
3698 |
})(jQuery);
|
3699 |
|
@@ -3851,10 +3866,10 @@ function mec_book_form_back_btn_cache(context, unique_id)
|
|
3851 |
|
3852 |
function mec_agreement_change(context)
|
3853 |
{
|
3854 |
-
var status = jQuery(context).is(":checked")
|
3855 |
|
3856 |
-
if(status) jQuery(context).
|
3857 |
-
else jQuery(context).
|
3858 |
}
|
3859 |
|
3860 |
function mec_book_form_back_btn_click(context, unique_id)
|
361 |
});
|
362 |
}
|
363 |
|
364 |
+
function initYearNavigator()
|
365 |
+
{
|
|
|
|
|
366 |
// Add onclick event
|
367 |
+
$("#mec_skin_" + settings.id + " .mec-load-year").off("click").on("click", function()
|
368 |
+
{
|
369 |
var year = $(this).data("mec-year");
|
370 |
setYear(year);
|
371 |
});
|
486 |
if (settings.sed_method != '0') {
|
487 |
sed();
|
488 |
}
|
489 |
+
|
490 |
+
// Yearly view
|
491 |
+
$("#mec_skin_" + settings.id + " .mec-has-event a").on('click', function(e)
|
492 |
+
{
|
493 |
+
e.preventDefault();
|
494 |
+
|
495 |
+
var des = $(this).attr('href');
|
496 |
+
var visible = $(des).is(':visible');
|
497 |
+
if(!visible)
|
498 |
+
{
|
499 |
+
var year = $(des).parent().parent().parent().data('year-id');
|
500 |
+
while(!visible)
|
501 |
+
{
|
502 |
+
loadMoreButton(year);
|
503 |
+
|
504 |
+
visible = $(des).is(':visible');
|
505 |
+
}
|
506 |
+
}
|
507 |
+
|
508 |
+
$('.mec-events-agenda').removeClass('mec-selected');
|
509 |
+
$(des).closest('.mec-events-agenda').addClass('mec-selected');
|
510 |
+
|
511 |
+
var scrollTopVal = $(des).closest('.mec-events-agenda').offset().top - 35;
|
512 |
+
if($(this).closest('.mec-fluent-wrap').length > 0)
|
513 |
+
{
|
514 |
+
var parent = jQuery(this).closest('.mec-fluent-wrap').find('.mec-yearly-agenda-sec');
|
515 |
+
scrollTopVal = parent.scrollTop() + ($(des).closest('.mec-events-agenda').offset().top - parent.offset().top);
|
516 |
+
jQuery(this).closest('.mec-fluent-wrap').find('.mec-yearly-agenda-sec').getNiceScroll(0).doScrollTop(scrollTopVal - 15, 120);
|
517 |
+
}
|
518 |
+
else
|
519 |
+
{
|
520 |
+
$('html, body').animate({
|
521 |
+
scrollTop: scrollTopVal
|
522 |
+
}, 300);
|
523 |
+
}
|
524 |
+
});
|
525 |
}
|
526 |
|
527 |
function sed() {
|
3709 |
}
|
3710 |
}
|
3711 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3712 |
});
|
3713 |
})(jQuery);
|
3714 |
|
3866 |
|
3867 |
function mec_agreement_change(context)
|
3868 |
{
|
3869 |
+
var status = jQuery(context).is(":checked");
|
3870 |
|
3871 |
+
if(status) jQuery(context).prop("checked", "checked");
|
3872 |
+
else jQuery(context).removeProp("checked");
|
3873 |
}
|
3874 |
|
3875 |
function mec_book_form_back_btn_click(context, unique_id)
|
@@ -49,12 +49,13 @@ CREATE TABLE IF NOT EXISTS `#__mec_users` (
|
|
49 |
`id` int(10) NOT NULL,
|
50 |
`first_name` varchar(255) NOT NULL,
|
51 |
`last_name` varchar(255) NOT NULL,
|
52 |
-
`email` varchar(
|
53 |
`reg` TEXT NULL DEFAULT NULL,
|
54 |
`created_at` datetime DEFAULT NULL,
|
55 |
`updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP
|
56 |
) DEFAULT CHARSET=[:CHARSET:] COLLATE=[:COLLATE:];
|
57 |
|
58 |
-
ALTER TABLE `#__mec_users` ADD PRIMARY KEY (`id`)
|
59 |
ALTER TABLE `#__mec_users` MODIFY `id` int NOT NULL AUTO_INCREMENT;
|
60 |
-
ALTER TABLE `#__mec_users` AUTO_INCREMENT=1000000;
|
|
49 |
`id` int(10) NOT NULL,
|
50 |
`first_name` varchar(255) NOT NULL,
|
51 |
`last_name` varchar(255) NOT NULL,
|
52 |
+
`email` varchar(127) NOT NULL,
|
53 |
`reg` TEXT NULL DEFAULT NULL,
|
54 |
`created_at` datetime DEFAULT NULL,
|
55 |
`updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP
|
56 |
) DEFAULT CHARSET=[:CHARSET:] COLLATE=[:COLLATE:];
|
57 |
|
58 |
+
ALTER TABLE `#__mec_users` ADD PRIMARY KEY (`id`);
|
59 |
ALTER TABLE `#__mec_users` MODIFY `id` int NOT NULL AUTO_INCREMENT;
|
60 |
+
ALTER TABLE `#__mec_users` AUTO_INCREMENT=1000000;
|
61 |
+
ALTER TABLE `#__mec_users` ADD UNIQUE KEY `email` (`email`);
|
@@ -49,12 +49,13 @@ CREATE TABLE IF NOT EXISTS `#__mec_users` (
|
|
49 |
`id` int(10) NOT NULL,
|
50 |
`first_name` varchar(255) NOT NULL,
|
51 |
`last_name` varchar(255) NOT NULL,
|
52 |
-
`email` varchar(
|
53 |
`reg` TEXT NULL DEFAULT NULL,
|
54 |
`created_at` datetime DEFAULT NULL,
|
55 |
`updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP
|
56 |
) DEFAULT CHARSET=[:CHARSET:] COLLATE=[:COLLATE:];
|
57 |
|
58 |
-
ALTER TABLE `#__mec_users` ADD PRIMARY KEY (`id`)
|
59 |
ALTER TABLE `#__mec_users` MODIFY `id` int NOT NULL AUTO_INCREMENT;
|
60 |
-
ALTER TABLE `#__mec_users` AUTO_INCREMENT=1000000;
|
|
49 |
`id` int(10) NOT NULL,
|
50 |
`first_name` varchar(255) NOT NULL,
|
51 |
`last_name` varchar(255) NOT NULL,
|
52 |
+
`email` varchar(127) NOT NULL,
|
53 |
`reg` TEXT NULL DEFAULT NULL,
|
54 |
`created_at` datetime DEFAULT NULL,
|
55 |
`updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP
|
56 |
) DEFAULT CHARSET=[:CHARSET:] COLLATE=[:COLLATE:];
|
57 |
|
58 |
+
ALTER TABLE `#__mec_users` ADD PRIMARY KEY (`id`);
|
59 |
ALTER TABLE `#__mec_users` MODIFY `id` int NOT NULL AUTO_INCREMENT;
|
60 |
+
ALTER TABLE `#__mec_users` AUTO_INCREMENT=1000000;
|
61 |
+
ALTER TABLE `#__mec_users` ADD UNIQUE KEY `email` (`email`);
|
@@ -1,4 +1,19 @@
|
|
1 |
-
v 5.12.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
- Added: An ability to set different timezone per event
|
3 |
- Added: An option to disable/enable timezone per event feature
|
4 |
- Added: An ability to set coupons for multiple events for better management (pro)
|
1 |
+
v 5.12.6 – 7 October 2020
|
2 |
+
- Added: An option to change the countdown method per event
|
3 |
+
- Added: A new option to WooCommerce system to disable/enable MEC booking form (pro)
|
4 |
+
- Added: A new ability to resend booking verification email (pro)
|
5 |
+
- Added: An ability to resend booking confirmation email (pro)
|
6 |
+
- Added: An option to disable/enable payment gateways per event (pro)
|
7 |
+
- Added: Next/Previous module
|
8 |
+
- Improved: The WooCommerce system to automatically load event featured image if the ticket product doesn’t have any image (pro)
|
9 |
+
- Improved: The WooCommerce system to consider coupon and price after discount (pro)
|
10 |
+
- Improved: The WooCommerce system to display booking date next to the ticket name (pro)
|
11 |
+
- Fixed: An issue in showing date labels
|
12 |
+
- Fixed: An issue in yearly view to automatically load the event if hidden (pro)
|
13 |
+
- Fixed: An issue in the default value of repeat interval
|
14 |
+
- Fixed: A jQuery issue
|
15 |
+
|
16 |
+
v 5.12.5 – 30 September 2020
|
17 |
- Added: An ability to set different timezone per event
|
18 |
- Added: An option to disable/enable timezone per event feature
|
19 |
- Added: An ability to set coupons for multiple events for better management (pro)
|
Binary file
|
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar Lite\n"
|
4 |
-
"POT-Creation-Date: 2020-
|
5 |
-
"PO-Revision-Date: 2020-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: cs_CZ\n"
|
@@ -80,7 +80,7 @@ msgstr ""
|
|
80 |
msgid "Select Shortcode"
|
81 |
msgstr "Přidat nový zkrácený kód"
|
82 |
|
83 |
-
#: app/features/colors.php:50 app/features/fes/form.php:
|
84 |
#: app/features/mec/settings.php:759
|
85 |
msgid "Event Color"
|
86 |
msgstr "Barva události"
|
@@ -94,13 +94,14 @@ msgstr "Barva události"
|
|
94 |
#: app/features/contextual.php:55 app/features/mec.php:473
|
95 |
#: app/features/mec/dashboard.php:141 app/features/mec/support.php:20
|
96 |
#: app/features/popup/event.php:60 app/features/popup/shortcode.php:37
|
97 |
-
#: app/libraries/main.php:
|
98 |
msgid "Settings"
|
99 |
msgstr "Nastavení"
|
100 |
|
101 |
-
#: app/features/contextual.php:62 app/features/events.php:
|
102 |
-
#: app/features/events.php:
|
103 |
-
#: app/features/mec/
|
|
|
104 |
msgid "Booking Form"
|
105 |
msgstr "Rezervační formulář"
|
106 |
|
@@ -127,9 +128,9 @@ msgstr ""
|
|
127 |
"www.youtube.com/embed/YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></"
|
128 |
"iframe>"
|
129 |
|
130 |
-
#: app/features/contextual.php:70 app/features/
|
131 |
-
#: app/features/mec/
|
132 |
-
#: app/libraries/main.php:
|
133 |
msgid "Payment Gateways"
|
134 |
msgstr "Platební brány"
|
135 |
|
@@ -145,7 +146,7 @@ msgstr ""
|
|
145 |
|
146 |
#: app/features/contextual.php:77 app/features/events.php:352
|
147 |
#: app/features/mec/support-page.php:117 app/features/mec/support.php:45
|
148 |
-
#: app/libraries/main.php:
|
149 |
msgid "Notifications"
|
150 |
msgstr "Upozornění"
|
151 |
|
@@ -264,7 +265,7 @@ msgid "Countdown Options"
|
|
264 |
msgstr "Možnosti Odpočítávání"
|
265 |
|
266 |
#: app/features/contextual.php:268 app/features/mec/modules.php:269
|
267 |
-
#: app/libraries/main.php:
|
268 |
msgid "Social Networks"
|
269 |
msgstr "Sociální sítě"
|
270 |
|
@@ -285,18 +286,18 @@ msgstr "Výjimečné dny"
|
|
285 |
#: app/features/contextual.php:308 app/features/events.php:315
|
286 |
#: app/features/mec/booking.php:96 app/features/mec/notifications.php:36
|
287 |
#: app/features/mec/support-page.php:110 app/features/mec/support-page.php:114
|
288 |
-
#: app/libraries/main.php:
|
289 |
-
#: app/libraries/main.php:
|
290 |
msgid "Booking"
|
291 |
msgstr "Rezervace"
|
292 |
|
293 |
#: app/features/contextual.php:318 app/features/mec/booking.php:427
|
294 |
-
#: app/features/mec/booking.php:813 app/libraries/main.php:
|
295 |
msgid "Coupons"
|
296 |
msgstr "Kupóny"
|
297 |
|
298 |
#: app/features/contextual.php:326 app/features/mec/modules.php:335
|
299 |
-
#: app/libraries/main.php:
|
300 |
msgid "BuddyPress Integration"
|
301 |
msgstr "Integrace BuddyPress"
|
302 |
|
@@ -309,7 +310,7 @@ msgstr "Integrace Mailchimp"
|
|
309 |
msgid "MEC Activation"
|
310 |
msgstr "Aktivace MEC"
|
311 |
|
312 |
-
#: app/features/dlfile.php:121 app/features/events.php:
|
313 |
#: app/features/mec/booking.php:347 app/features/mec/settings.php:831
|
314 |
#, fuzzy
|
315 |
#| msgid "Download ICS file"
|
@@ -359,7 +360,7 @@ msgstr "Události"
|
|
359 |
#: app/features/mec/meta_boxes/display_options.php:1548
|
360 |
#: app/features/mec/meta_boxes/display_options.php:1642
|
361 |
#: app/features/mec/meta_boxes/display_options.php:1715
|
362 |
-
#: app/features/profile/profile.php:55 app/features/wc.php:
|
363 |
#: app/skins/daily_view/tpl.php:83 app/skins/monthly_view/tpl.php:74
|
364 |
#: app/skins/tile/tpl.php:84 app/skins/yearly_view/tpl.php:72
|
365 |
msgid "Event"
|
@@ -396,7 +397,7 @@ msgstr "Zobrazit událost"
|
|
396 |
msgid "No events found in Trash!"
|
397 |
msgstr "V koši nebyly nalezeny žádné události!"
|
398 |
|
399 |
-
#: app/features/events.php:192 app/features/events.php:
|
400 |
#: app/features/mec/meta_boxes/display_options.php:1420
|
401 |
#: app/features/mec/meta_boxes/search_form.php:31
|
402 |
#: app/features/mec/meta_boxes/search_form.php:101
|
@@ -410,19 +411,20 @@ msgstr "V koši nebyly nalezeny žádné události!"
|
|
410 |
#: app/features/mec/meta_boxes/search_form.php:654
|
411 |
#: app/features/mec/meta_boxes/search_form.php:760
|
412 |
#: app/features/mec/settings.php:923 app/features/mec/single.php:331
|
413 |
-
#: app/features/
|
414 |
-
#: app/libraries/main.php:
|
415 |
-
#: app/skins
|
416 |
-
#: app/skins/single/default.php:
|
417 |
-
#: app/skins/single/
|
|
|
418 |
msgid "Category"
|
419 |
msgstr "Kategorie"
|
420 |
|
421 |
-
#: app/features/events.php:193 app/features/events.php:
|
422 |
-
#: app/features/fes/form.php:
|
423 |
#: app/features/mec/meta_boxes/filter.php:69
|
424 |
-
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:
|
425 |
-
#: app/libraries/main.php:
|
426 |
msgid "Categories"
|
427 |
msgstr "Kategorie"
|
428 |
|
@@ -506,18 +508,18 @@ msgstr "Podrobnosti události"
|
|
506 |
msgid "Date And Time"
|
507 |
msgstr "Datum a čas"
|
508 |
|
509 |
-
#: app/features/events.php:343 app/features/fes/form.php:
|
510 |
msgid "Event Repeating"
|
511 |
msgstr "Opakování události"
|
512 |
|
513 |
-
#: app/features/events.php:344 app/features/events.php:
|
514 |
#, fuzzy
|
515 |
#| msgid "Event Detail"
|
516 |
msgid "Event Data"
|
517 |
msgstr "Zobrazit událost"
|
518 |
|
519 |
-
#: app/features/events.php:346 app/features/events.php:
|
520 |
-
#: app/features/mec/settings.php:789 app/skins/single.php:
|
521 |
msgid "Hourly Schedule"
|
522 |
msgstr "Hodinový rozvrh"
|
523 |
|
@@ -533,8 +535,8 @@ msgstr "Umístění"
|
|
533 |
msgid "Links"
|
534 |
msgstr "Odkaz"
|
535 |
|
536 |
-
#: app/features/events.php:349 app/features/events.php:
|
537 |
-
#: app/features/events.php:
|
538 |
#: app/features/ix.php:3790
|
539 |
#: app/features/mec/meta_boxes/display_options.php:1423
|
540 |
#: app/features/mec/meta_boxes/search_form.php:46
|
@@ -549,21 +551,21 @@ msgstr "Odkaz"
|
|
549 |
#: app/features/mec/meta_boxes/search_form.php:669
|
550 |
#: app/features/mec/meta_boxes/search_form.php:775
|
551 |
#: app/features/mec/settings.php:935 app/features/mec/single.php:335
|
552 |
-
#: app/features/
|
553 |
-
#: app/features/organizers.php:
|
554 |
-
#: app/features/organizers.php:
|
555 |
-
#: app/features/popup/event.php:
|
556 |
-
#: app/
|
557 |
-
#: app/libraries/
|
558 |
-
#: app/skins/single
|
559 |
-
#: app/skins/single/
|
560 |
-
#: app/skins/single/modern.php:48
|
561 |
msgid "Organizer"
|
562 |
msgstr "Organizátor"
|
563 |
|
564 |
-
#: app/features/events.php:350 app/features/events.php:
|
565 |
-
#: app/features/fes/form.php:
|
566 |
-
#: app/libraries/main.php:
|
567 |
#: app/skins/single/default.php:142 app/skins/single/default.php:376
|
568 |
#: app/skins/single/m1.php:61 app/skins/single/modern.php:237
|
569 |
msgid "Cost"
|
@@ -575,54 +577,54 @@ msgstr "Cena"
|
|
575 |
msgid "SEO Schema / Event Status"
|
576 |
msgstr "Při spuštění události"
|
577 |
|
578 |
-
#: app/features/events.php:
|
579 |
msgid "Note for reviewer"
|
580 |
msgstr "Poznámka pro recenzenta"
|
581 |
|
582 |
-
#: app/features/events.php:
|
583 |
msgid "Guest Data"
|
584 |
msgstr "Údaje hosta"
|
585 |
|
586 |
-
#: app/features/events.php:
|
587 |
-
#: app/features/events.php:
|
588 |
-
#: app/features/fes/form.php:
|
589 |
#: app/features/mec/booking.php:53 app/features/organizers.php:279
|
590 |
#: app/features/popup/event.php:182 app/features/profile/profile.php:177
|
591 |
-
#: app/libraries/notifications.php:
|
592 |
msgid "Name"
|
593 |
msgstr "Jméno"
|
594 |
|
595 |
-
#: app/features/events.php:
|
596 |
-
#: app/features/events.php:
|
597 |
-
#: app/features/events.php:
|
598 |
-
#: app/features/fes/form.php:
|
599 |
#: app/features/mec/booking.php:65 app/features/mec/booking.php:643
|
600 |
#: app/features/mec/booking.php:739 app/features/mec/single.php:191
|
601 |
#: app/features/organizers.php:111 app/features/organizers.php:152
|
602 |
#: app/features/profile/profile.php:180 app/features/speakers.php:127
|
603 |
-
#: app/features/speakers.php:204 app/libraries/main.php:
|
604 |
-
#: app/libraries/main.php:
|
605 |
-
#: app/libraries/notifications.php:
|
606 |
-
#: app/modules/booking/steps/form.php:207 app/skins/single.php:
|
607 |
-
#: app/skins/single.php:
|
608 |
#: app/skins/single/default.php:494 app/skins/single/m1.php:119
|
609 |
#: app/skins/single/m2.php:42 app/skins/single/modern.php:65
|
610 |
msgid "Email"
|
611 |
msgstr "Email"
|
612 |
|
613 |
-
#: app/features/events.php:
|
614 |
msgid ""
|
615 |
"This event is imported from Google calendar so if you modify it, it would "
|
616 |
"overwrite in the next import from Google."
|
617 |
msgstr ""
|
618 |
|
619 |
-
#: app/features/events.php:
|
620 |
msgid "Date and Time"
|
621 |
msgstr "Datum a čas"
|
622 |
|
623 |
-
#: app/features/events.php:
|
624 |
-
#: app/features/events.php:
|
625 |
-
#: app/features/fes/form.php:
|
626 |
#: app/features/ix.php:3748 app/features/ix.php:3790
|
627 |
#: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1333
|
628 |
#: app/features/mec/meta_boxes/display_options.php:52
|
@@ -644,38 +646,38 @@ msgstr "Datum a čas"
|
|
644 |
msgid "Start Date"
|
645 |
msgstr "Počátečná den"
|
646 |
|
647 |
-
#: app/features/events.php:
|
648 |
-
#: app/features/events.php:
|
649 |
-
#: app/features/fes/form.php:
|
650 |
#: app/features/ix.php:3748 app/features/ix.php:3790
|
651 |
#: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1334
|
652 |
#: app/features/popup/event.php:92
|
653 |
msgid "End Date"
|
654 |
msgstr "Konečný den"
|
655 |
|
656 |
-
#: app/features/events.php:
|
657 |
#: app/features/popup/event.php:109
|
658 |
#, fuzzy
|
659 |
#| msgid "All Day Event"
|
660 |
msgid "All-day Event"
|
661 |
msgstr "Celodenní událost"
|
662 |
|
663 |
-
#: app/features/events.php:
|
664 |
msgid "Hide Event Time"
|
665 |
msgstr "Skrýt čas události"
|
666 |
|
667 |
-
#: app/features/events.php:
|
668 |
msgid "Hide Event End Time"
|
669 |
msgstr "Skrýt čas ukončení události"
|
670 |
|
671 |
-
#: app/features/events.php:
|
672 |
-
#: app/features/fes/form.php:
|
673 |
#, fuzzy
|
674 |
#| msgid "Note to reviewer"
|
675 |
msgid "Notes on the time"
|
676 |
msgstr "Poznámka pro recenzenta"
|
677 |
|
678 |
-
#: app/features/events.php:
|
679 |
#, fuzzy
|
680 |
#| msgid ""
|
681 |
#| "It shows next to event time on single event page. You can insert Timezone "
|
@@ -687,15 +689,15 @@ msgstr ""
|
|
687 |
"Zobrazuje se vedle času události na stránce jedné události. Do tohoto pole "
|
688 |
"můžete vložit časové pásmo atd."
|
689 |
|
690 |
-
#: app/features/events.php:
|
691 |
-
#: app/features/events.php:
|
692 |
-
#: app/features/events.php:
|
693 |
-
#: app/features/events.php:
|
694 |
-
#: app/features/events.php:
|
695 |
-
#: app/features/events.php:
|
696 |
-
#: app/features/events.php:
|
697 |
-
#: app/features/events.php:
|
698 |
-
#: app/features/fes/form.php:
|
699 |
#: app/features/locations.php:336 app/features/mec/booking.php:117
|
700 |
#: app/features/mec/booking.php:139 app/features/mec/booking.php:211
|
701 |
#: app/features/mec/booking.php:278 app/features/mec/booking.php:291
|
@@ -703,7 +705,8 @@ msgstr ""
|
|
703 |
#: app/features/mec/booking.php:472 app/features/mec/booking.php:501
|
704 |
#: app/features/mec/booking.php:549 app/features/mec/booking.php:559
|
705 |
#: app/features/mec/booking.php:581 app/features/mec/booking.php:591
|
706 |
-
#: app/features/mec/booking.php:829 app/features/mec/
|
|
|
707 |
#: app/features/mec/meta_boxes/display_options.php:83
|
708 |
#: app/features/mec/meta_boxes/display_options.php:96
|
709 |
#: app/features/mec/meta_boxes/display_options.php:109
|
@@ -763,94 +766,114 @@ msgstr ""
|
|
763 |
#: app/features/mec/styling.php:119 app/features/mec/styling.php:218
|
764 |
#: app/features/mec/styling.php:235 app/features/mec/styling.php:248
|
765 |
#: app/features/organizers.php:272 app/features/popup/event.php:126
|
766 |
-
#: app/features/popup/event.php:173 app/skins/single.php:
|
767 |
#: app/skins/single/default.php:159 app/skins/single/default.php:391
|
768 |
#: app/skins/single/m1.php:218 app/skins/single/m2.php:142
|
769 |
#: app/skins/single/modern.php:163
|
770 |
msgid "Read More"
|
771 |
msgstr "Číst více"
|
772 |
|
773 |
-
#: app/features/events.php:
|
774 |
#, fuzzy
|
775 |
#| msgid "Timezone: %s"
|
776 |
msgid "Timezone"
|
777 |
msgstr "Časové pásmo: %s"
|
778 |
|
779 |
-
#: app/features/events.php:
|
780 |
-
#: app/features/events.php:
|
781 |
-
#: app/features/events.php:
|
|
|
782 |
msgid "Inherit from global options"
|
783 |
msgstr "Zdědí z globálních možností"
|
784 |
|
785 |
-
#: app/features/events.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
786 |
msgid "Repeating"
|
787 |
msgstr "Opakování"
|
788 |
|
789 |
-
#: app/features/events.php:
|
790 |
msgid "Event Repeating (Recurring events)"
|
791 |
msgstr "Opakování události (opakující se události)"
|
792 |
|
793 |
-
#: app/features/events.php:
|
794 |
msgid "Repeats"
|
795 |
msgstr "Opakování"
|
796 |
|
797 |
-
#: app/features/events.php:
|
798 |
#: app/features/mec.php:1336 app/skins/default_full_calendar/tpl.php:77
|
799 |
#: app/skins/full_calendar/tpl.php:124
|
800 |
msgid "Daily"
|
801 |
msgstr "Děnně"
|
802 |
|
803 |
-
#: app/features/events.php:
|
804 |
msgid "Every Weekday"
|
805 |
msgstr "Každý všední den"
|
806 |
|
807 |
-
#: app/features/events.php:
|
808 |
msgid "Every Weekend"
|
809 |
msgstr "Každý víkend"
|
810 |
|
811 |
-
#: app/features/events.php:
|
812 |
msgid "Certain Weekdays"
|
813 |
msgstr "Určité pracovní dny"
|
814 |
|
815 |
-
#: app/features/events.php:
|
816 |
#: app/skins/default_full_calendar/tpl.php:76
|
817 |
#: app/skins/full_calendar/tpl.php:123
|
818 |
msgid "Weekly"
|
819 |
msgstr "Týdně"
|
820 |
|
821 |
-
#: app/features/events.php:
|
822 |
#: app/features/mec.php:1337 app/skins/default_full_calendar/tpl.php:75
|
823 |
#: app/skins/full_calendar/tpl.php:122
|
824 |
msgid "Monthly"
|
825 |
msgstr "Měsíčně"
|
826 |
|
827 |
-
#: app/features/events.php:
|
828 |
#: app/features/mec.php:1338 app/skins/default_full_calendar/tpl.php:74
|
829 |
#: app/skins/full_calendar/tpl.php:121
|
830 |
msgid "Yearly"
|
831 |
msgstr "Ročně"
|
832 |
|
833 |
-
#: app/features/events.php:
|
834 |
msgid "Custom Days"
|
835 |
msgstr "Vlastní dny"
|
836 |
|
837 |
-
#: app/features/events.php:
|
838 |
msgid "Advanced"
|
839 |
msgstr "Pokročilé"
|
840 |
|
841 |
-
#: app/features/events.php:
|
842 |
msgid "Repeat Interval"
|
843 |
msgstr "Interval opakování"
|
844 |
|
845 |
-
#: app/features/events.php:
|
846 |
msgid "Repeat interval"
|
847 |
msgstr "Interval opakování"
|
848 |
|
849 |
-
#: app/features/events.php:
|
850 |
msgid "Week Days"
|
851 |
msgstr "Dny v týdnu"
|
852 |
|
853 |
-
#: app/features/events.php:
|
854 |
#, fuzzy
|
855 |
#| msgid "Pro version of Modern Events Calendar"
|
856 |
msgid ""
|
@@ -858,28 +881,28 @@ msgid ""
|
|
858 |
"Calendar."
|
859 |
msgstr "Pro verze doplňku Modern Events Calendar"
|
860 |
|
861 |
-
#: app/features/events.php:
|
862 |
-
#: app/features/events.php:
|
863 |
-
#: app/features/fes/form.php:
|
864 |
#: app/features/ix/import_g_calendar.php:51
|
865 |
#: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
|
866 |
msgid "Start"
|
867 |
msgstr "Začátek"
|
868 |
|
869 |
-
#: app/features/events.php:
|
870 |
-
#: app/features/events.php:
|
871 |
-
#: app/features/events.php:
|
872 |
-
#: app/features/events.php:
|
873 |
-
#: app/features/fes/form.php:
|
874 |
#: app/features/occurrences.php:114
|
875 |
msgid "Add"
|
876 |
msgstr "Přidat"
|
877 |
|
878 |
-
#: app/features/events.php:
|
879 |
msgid "Custom Days Repeating"
|
880 |
msgstr "Opakování vlastních dnů"
|
881 |
|
882 |
-
#: app/features/events.php:
|
883 |
#, fuzzy
|
884 |
#| msgid ""
|
885 |
#| "Add certain days to event occurrence dates. If you have single day event, "
|
@@ -894,56 +917,56 @@ msgstr ""
|
|
894 |
"datum zahájení a ukončení by mělo být stejné. Pokud máte vícedenní událost, "
|
895 |
"datum zahájení a ukončení musí odpovídat počátečnímu datu."
|
896 |
|
897 |
-
#: app/features/events.php:
|
898 |
-
#: app/features/events.php:
|
899 |
-
#: app/features/fes/form.php:
|
900 |
msgid "End"
|
901 |
msgstr "Konec"
|
902 |
|
903 |
-
#: app/features/events.php:
|
904 |
msgid "First"
|
905 |
msgstr "První"
|
906 |
|
907 |
-
#: app/features/events.php:
|
908 |
msgid "Second"
|
909 |
msgstr "Druhá"
|
910 |
|
911 |
-
#: app/features/events.php:
|
912 |
msgid "Third"
|
913 |
msgstr "Třetí"
|
914 |
|
915 |
-
#: app/features/events.php:
|
916 |
msgid "Fourth"
|
917 |
msgstr "Čtvrtá"
|
918 |
|
919 |
-
#: app/features/events.php:
|
920 |
msgid "Last"
|
921 |
msgstr "Poslední"
|
922 |
|
923 |
-
#: app/features/events.php:
|
924 |
msgid "Ends Repeat"
|
925 |
msgstr "Ukončení opakování"
|
926 |
|
927 |
-
#: app/features/events.php:
|
928 |
msgid "Never"
|
929 |
msgstr "Nikdy"
|
930 |
|
931 |
# Možná Zapnuto
|
932 |
-
#: app/features/events.php:
|
933 |
msgid "On"
|
934 |
msgstr "Na"
|
935 |
|
936 |
-
#: app/features/events.php:
|
937 |
#: app/features/mec/booking.php:169
|
938 |
msgid "After"
|
939 |
msgstr "Po"
|
940 |
|
941 |
-
#: app/features/events.php:
|
942 |
-
#: app/features/fes/form.php:
|
943 |
msgid "Occurrences times"
|
944 |
msgstr "Časy výskytu"
|
945 |
|
946 |
-
#: app/features/events.php:
|
947 |
#, fuzzy
|
948 |
#| msgid ""
|
949 |
#| "The event will finish after certain repeats. For example if you set it to "
|
@@ -955,41 +978,41 @@ msgstr ""
|
|
955 |
"Událost bude ukončena po určitých opakováních. Pokud například nastavíte "
|
956 |
"hodnotu 10, událost skončí po 10 opakováních."
|
957 |
|
958 |
-
#: app/features/events.php:
|
959 |
#, fuzzy
|
960 |
#| msgid "Next Occurrence of Other Events"
|
961 |
msgid "Show only one occurrence of this event"
|
962 |
msgstr "Další výskyt dalších událostí"
|
963 |
|
964 |
-
#: app/features/events.php:
|
965 |
-
#: app/features/fes/form.php:
|
966 |
#: app/features/ix.php:3790 app/features/mec/settings.php:735
|
967 |
-
#: app/libraries/main.php:
|
968 |
#: app/widgets/single.php:103
|
969 |
msgid "Event Cost"
|
970 |
msgstr "Cena události"
|
971 |
|
972 |
-
#: app/features/events.php:
|
973 |
msgid "Exceptional Days (Exclude Dates)"
|
974 |
msgstr "Výjimečné dny (vyjma dat)"
|
975 |
|
976 |
-
#: app/features/events.php:
|
977 |
msgid "Exclude certain days"
|
978 |
msgstr "Vyloučit určité dny"
|
979 |
|
980 |
-
#: app/features/events.php:
|
981 |
-
#: app/features/events.php:
|
982 |
#: app/features/mec/booking.php:644 app/features/mec/booking.php:740
|
983 |
#: app/features/mec/single.php:193 app/features/profile/profile.php:58
|
984 |
-
#: app/features/wc.php:
|
985 |
-
#: app/modules/booking/steps/tickets.php:
|
986 |
-
#: app/modules/next-event/details.php:134 app/skins/single.php:
|
987 |
#: app/skins/single/default.php:99 app/skins/single/default.php:333
|
988 |
#: app/skins/single/m1.php:21 app/skins/single/modern.php:197
|
989 |
msgid "Date"
|
990 |
msgstr "Datum"
|
991 |
|
992 |
-
#: app/features/events.php:
|
993 |
msgid ""
|
994 |
"Exclude certain days from event occurrence dates. Please note that you can "
|
995 |
"exclude only single day occurrences and you cannot exclude one day from "
|
@@ -999,15 +1022,15 @@ msgstr ""
|
|
999 |
"můžete vyloučit pouze výskyty za jeden den a nelze vyloučit jeden den z "
|
1000 |
"vícedenních výskytů."
|
1001 |
|
1002 |
-
#: app/features/events.php:
|
1003 |
msgid "Day 1"
|
1004 |
msgstr "Den 1"
|
1005 |
|
1006 |
-
#: app/features/events.php:
|
1007 |
msgid "Add Day"
|
1008 |
msgstr "Přidat den"
|
1009 |
|
1010 |
-
#: app/features/events.php:
|
1011 |
msgid ""
|
1012 |
"Add new days for schedule. For example if your event is multiple days, you "
|
1013 |
"can add a different schedule for each day!"
|
@@ -1015,91 +1038,91 @@ msgstr ""
|
|
1015 |
"Přidat nové dny pro rozvrh. Pokud je například vaše akce vícedenní, můžete "
|
1016 |
"pro každý den přidat jiný rozvrh!"
|
1017 |
|
1018 |
-
#: app/features/events.php:
|
1019 |
#, php-format
|
1020 |
msgid "Day %s"
|
1021 |
msgstr "Den %s"
|
1022 |
|
1023 |
-
#: app/features/events.php:
|
1024 |
-
#: app/features/events.php:
|
1025 |
-
#: app/features/events.php:
|
1026 |
-
#: app/features/events.php:
|
1027 |
-
#: app/features/events.php:
|
1028 |
#: app/features/ix.php:3748 app/features/ix.php:3790
|
1029 |
#: app/features/mec/booking.php:541 app/features/mec/booking.php:573
|
1030 |
#: app/features/mec/styling.php:130
|
1031 |
msgid "Title"
|
1032 |
msgstr "Název"
|
1033 |
|
1034 |
-
#: app/features/events.php:
|
1035 |
-
#: app/features/events.php:
|
1036 |
-
#: app/features/events.php:
|
1037 |
-
#: app/features/events.php:
|
1038 |
-
#: app/features/events.php:
|
1039 |
-
#: app/features/events.php:
|
1040 |
#: app/features/mec/booking.php:484 app/features/mec/booking.php:513
|
1041 |
#: app/features/mec/booking.php:564 app/features/mec/booking.php:596
|
1042 |
-
#: app/libraries/main.php:
|
1043 |
-
#: app/libraries/main.php:
|
1044 |
-
#: app/libraries/main.php:
|
1045 |
-
#: app/libraries/main.php:
|
1046 |
-
#: app/libraries/main.php:
|
1047 |
-
#: app/libraries/main.php:
|
1048 |
-
#: app/libraries/main.php:
|
1049 |
-
#: app/libraries/main.php:
|
1050 |
msgid "Remove"
|
1051 |
msgstr "Odstranit"
|
1052 |
|
1053 |
-
#: app/features/events.php:
|
1054 |
msgid "Add new hourly schedule row"
|
1055 |
msgstr "Přidejte nový řádek rozvrhu hodin"
|
1056 |
|
1057 |
-
#: app/features/events.php:
|
1058 |
-
#: app/features/events.php:
|
1059 |
msgid "From e.g. 8:15"
|
1060 |
msgstr "Od např. 8:15"
|
1061 |
|
1062 |
-
#: app/features/events.php:
|
1063 |
-
#: app/features/events.php:
|
1064 |
msgid "To e.g. 8:45"
|
1065 |
msgstr "Do např. 8:45"
|
1066 |
|
1067 |
-
#: app/features/events.php:
|
1068 |
-
#: app/features/events.php:
|
1069 |
-
#: app/features/events.php:
|
1070 |
msgid "Description"
|
1071 |
msgstr "Popis"
|
1072 |
|
1073 |
-
#: app/features/events.php:
|
1074 |
-
#: app/features/events.php:
|
1075 |
#: app/features/mec.php:469 app/features/mec/modules.php:51
|
1076 |
#: app/features/mec/settings.php:783 app/features/speakers.php:61
|
1077 |
-
#: app/libraries/main.php:
|
1078 |
-
#: app/libraries/main.php:
|
1079 |
msgid "Speakers"
|
1080 |
msgstr "Řečníci"
|
1081 |
|
1082 |
-
#: app/features/events.php:
|
1083 |
msgid "New Day"
|
1084 |
msgstr "Nový den"
|
1085 |
|
1086 |
-
#: app/features/events.php:
|
1087 |
#: app/features/mec/settings.php:729
|
1088 |
msgid "Event Links"
|
1089 |
msgstr "Odkazy na událost"
|
1090 |
|
1091 |
-
#: app/features/events.php:
|
1092 |
-
#: app/features/fes/form.php:
|
1093 |
-
#: app/libraries/main.php:
|
1094 |
msgid "Event Link"
|
1095 |
msgstr "Odkaz na událost"
|
1096 |
|
1097 |
-
#: app/features/events.php:
|
1098 |
-
#: app/features/fes/form.php:
|
1099 |
msgid "eg. http://yoursite.com/your-event"
|
1100 |
msgstr "např. http://yoursite.com/vase-udalost"
|
1101 |
|
1102 |
-
#: app/features/events.php:
|
1103 |
#, fuzzy
|
1104 |
#| msgid ""
|
1105 |
#| "If you fill it, it will be replaced instead of default event page link. "
|
@@ -1114,34 +1137,34 @@ msgstr ""
|
|
1114 |
"Vložte úplný odkaz včetně http (s): // - Pokud používáte reklamní adresu "
|
1115 |
"URL, můžete také použít zkracovač URL"
|
1116 |
|
1117 |
-
#: app/features/events.php:
|
1118 |
msgid "URL Shortener"
|
1119 |
msgstr "Zkracovač URL"
|
1120 |
|
1121 |
-
#: app/features/events.php:
|
1122 |
-
#: app/features/fes/form.php:
|
1123 |
-
#: app/libraries/main.php:
|
1124 |
#: app/skins/single/default.php:158 app/skins/single/default.php:390
|
1125 |
#: app/skins/single/m1.php:217 app/skins/single/m2.php:141
|
1126 |
#: app/skins/single/modern.php:162 app/widgets/single.php:107
|
1127 |
msgid "More Info"
|
1128 |
msgstr "Více info"
|
1129 |
|
1130 |
-
#: app/features/events.php:
|
1131 |
msgid "More Information"
|
1132 |
msgstr "Více informací"
|
1133 |
|
1134 |
-
#: app/features/events.php:
|
1135 |
#: app/features/mec.php:980 app/features/popup/shortcode.php:477
|
1136 |
msgid "Current Window"
|
1137 |
msgstr "Aktuální okno"
|
1138 |
|
1139 |
-
#: app/features/events.php:
|
1140 |
#: app/features/mec.php:981 app/features/popup/shortcode.php:481
|
1141 |
msgid "New Window"
|
1142 |
msgstr "Nové okno"
|
1143 |
|
1144 |
-
#: app/features/events.php:
|
1145 |
msgid ""
|
1146 |
"If you fill it, it will be shown in event details page as an optional link. "
|
1147 |
"Insert full link including http(s)://"
|
@@ -1149,52 +1172,52 @@ msgstr ""
|
|
1149 |
"Pokud ji vyplníte, zobrazí se jako volitelný odkaz na stránce s podrobnostmi "
|
1150 |
"o události. Vložte celý odkaz včetně http (s): //"
|
1151 |
|
1152 |
-
#: app/features/events.php:
|
1153 |
msgid "Booking Options"
|
1154 |
msgstr "Možnosti rezervace"
|
1155 |
|
1156 |
-
#: app/features/events.php:
|
1157 |
#, fuzzy
|
1158 |
#| msgid "Total user booking limits"
|
1159 |
msgid "Total User Booking Limits"
|
1160 |
msgstr "Celkové limity rezervace uživatelů"
|
1161 |
|
1162 |
-
#: app/features/events.php:
|
1163 |
-
#: app/libraries/book.php:61 app/libraries/main.php:
|
1164 |
-
#: app/modules/booking/steps/tickets.php:
|
1165 |
-
#: app/modules/booking/steps/tickets.php:
|
1166 |
msgid "Tickets"
|
1167 |
msgstr "Vstupenky"
|
1168 |
|
1169 |
-
#: app/features/events.php:
|
1170 |
msgid "Fees"
|
1171 |
msgstr "Poplatky"
|
1172 |
|
1173 |
-
#: app/features/events.php:
|
1174 |
#: app/features/mec/settings.php:809
|
1175 |
msgid "Ticket Variations / Options"
|
1176 |
msgstr "Varianty vstupenky / možnosti"
|
1177 |
|
1178 |
-
#: app/features/events.php:
|
1179 |
#: app/features/mec/support-page.php:118
|
1180 |
msgid "Organizer Payment"
|
1181 |
msgstr "Platba organizátora"
|
1182 |
|
1183 |
-
#: app/features/events.php:
|
1184 |
#, fuzzy
|
1185 |
#| msgid "Total booking limits"
|
1186 |
msgid "Total booking limit"
|
1187 |
msgstr "Celkové limity rezervace"
|
1188 |
|
1189 |
-
#: app/features/events.php:
|
1190 |
-
#: app/features/events.php:
|
1191 |
-
#: app/modules/booking/steps/tickets.php:
|
1192 |
-
#: app/modules/booking/steps/tickets.php:
|
1193 |
#: app/skins/available_spot/tpl.php:140
|
1194 |
msgid "Unlimited"
|
1195 |
msgstr "Neomezené"
|
1196 |
|
1197 |
-
#: app/features/events.php:
|
1198 |
msgid ""
|
1199 |
"If you want to set a limit to all tickets, uncheck this checkbox and put a "
|
1200 |
"limitation number."
|
@@ -1202,50 +1225,62 @@ msgstr ""
|
|
1202 |
"Pokud chcete nastavit limit na všechny lístky, zrušte zaškrtnutí tohoto "
|
1203 |
"políčka a zadejte číslo omezení."
|
1204 |
|
1205 |
-
#: app/features/events.php:
|
1206 |
msgid "Read About A Booking System"
|
1207 |
msgstr "Přečtěte si o rezervačním systému"
|
1208 |
|
1209 |
-
#: app/features/events.php:
|
1210 |
msgid "100"
|
1211 |
msgstr "100"
|
1212 |
|
1213 |
-
#: app/features/events.php:
|
1214 |
#, fuzzy
|
1215 |
#| msgid "Discount"
|
1216 |
msgid "Discount per user roles"
|
1217 |
msgstr "Sleva"
|
1218 |
|
1219 |
-
#: app/features/events.php:
|
1220 |
msgid "5"
|
1221 |
msgstr ""
|
1222 |
|
1223 |
-
#: app/features/events.php:
|
1224 |
#, fuzzy
|
1225 |
#| msgid "Next Occurrence"
|
1226 |
msgid "Book All Occurrences"
|
1227 |
msgstr "Další výskyt"
|
1228 |
|
1229 |
-
#: app/features/events.php:
|
1230 |
msgid "Sell all occurrences by one booking"
|
1231 |
msgstr ""
|
1232 |
|
1233 |
-
#: app/features/events.php:
|
1234 |
msgid ""
|
1235 |
"If you have a series of events and you want to sell all of them at once, "
|
1236 |
"this option is for you! For example a weekly yoga course or something "
|
1237 |
"similar."
|
1238 |
msgstr ""
|
1239 |
|
1240 |
-
#: app/features/events.php:
|
1241 |
msgid "Total user booking limits"
|
1242 |
msgstr "Celkové limity rezervace uživatelů"
|
1243 |
|
1244 |
-
#: app/features/events.php:
|
1245 |
msgid "12"
|
1246 |
msgstr "12"
|
1247 |
|
1248 |
-
#: app/features/events.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1249 |
msgid ""
|
1250 |
"You're translating an event so MEC will use the original event for tickets "
|
1251 |
"and booking. You can only translate the ticket name and description. Please "
|
@@ -1255,54 +1290,54 @@ msgstr ""
|
|
1255 |
"vstupenek a rezervace. Můžete přeložit pouze název a popis vstupenky. Prosím "
|
1256 |
"definujte určité vstupenky, které jste definovali v původní události."
|
1257 |
|
1258 |
-
#: app/features/events.php:
|
1259 |
#, fuzzy
|
1260 |
#| msgid "Ticket"
|
1261 |
msgid "Add Ticket"
|
1262 |
msgstr "Vstupenka"
|
1263 |
|
1264 |
-
#: app/features/events.php:
|
1265 |
#, fuzzy
|
1266 |
#| msgid "Ticket"
|
1267 |
msgid "Ticket ID"
|
1268 |
msgstr "Vstupenka"
|
1269 |
|
1270 |
-
#: app/features/events.php:
|
1271 |
-
#: app/features/events.php:
|
1272 |
#: app/features/ix.php:3748 app/features/ix.php:3790
|
1273 |
#: app/features/labels.php:177 app/features/locations.php:262
|
1274 |
#: app/features/organizers.php:203 app/features/speakers.php:282
|
1275 |
msgid "ID"
|
1276 |
msgstr "ID"
|
1277 |
|
1278 |
-
#: app/features/events.php:
|
1279 |
msgid "Ticket Name"
|
1280 |
msgstr "Název vstupenky"
|
1281 |
|
1282 |
-
#: app/features/events.php:
|
1283 |
-
#: app/features/events.php:
|
1284 |
#: app/features/ix.php:3790
|
1285 |
msgid "Start Time"
|
1286 |
msgstr "Začátek"
|
1287 |
|
1288 |
-
#: app/features/events.php:
|
1289 |
-
#: app/features/events.php:
|
1290 |
#: app/features/ix.php:3790
|
1291 |
msgid "End Time"
|
1292 |
msgstr "Konec"
|
1293 |
|
1294 |
-
#: app/features/events.php:
|
1295 |
-
#: app/features/events.php:
|
1296 |
-
#: app/features/events.php:
|
1297 |
-
#: app/features/events.php:
|
1298 |
-
#: app/features/events.php:
|
1299 |
-
#: app/features/events.php:
|
1300 |
#: app/features/mec/booking.php:548 app/features/mec/booking.php:577
|
1301 |
#: app/features/mec/booking.php:580
|
1302 |
msgid "Price"
|
1303 |
msgstr "Cena"
|
1304 |
|
1305 |
-
#: app/features/events.php:
|
1306 |
#, fuzzy
|
1307 |
#| msgid "Insert 0 for free ticket. Only numbers please."
|
1308 |
msgid ""
|
@@ -1310,60 +1345,60 @@ msgid ""
|
|
1310 |
"any symbols or characters."
|
1311 |
msgstr "Vložte 0 pro vstupenku zdarma. Prosím pouze čísla."
|
1312 |
|
1313 |
-
#: app/features/events.php:
|
1314 |
-
#: app/features/events.php:
|
1315 |
msgid "Price Label"
|
1316 |
msgstr "Cenový štítek"
|
1317 |
|
1318 |
-
#: app/features/events.php:
|
1319 |
msgid "For showing on website. e.g. $15"
|
1320 |
msgstr "Pro zobrazení na webu. např. 15 $"
|
1321 |
|
1322 |
-
#: app/features/events.php:
|
1323 |
msgid "Available Tickets"
|
1324 |
msgstr "Dostupné vstupenky"
|
1325 |
|
1326 |
-
#: app/features/events.php:
|
1327 |
#, fuzzy
|
1328 |
#| msgid "Maximum Per Ticket"
|
1329 |
msgid "Minimum Ticket e.g. 3"
|
1330 |
msgstr "Maximum na jednu vstupenku"
|
1331 |
|
1332 |
-
#: app/features/events.php:
|
1333 |
#, fuzzy
|
1334 |
#| msgid "Maximum Per Ticket"
|
1335 |
msgid "MinimumTicket"
|
1336 |
msgstr "Maximum na jednu vstupenku"
|
1337 |
|
1338 |
-
#: app/features/events.php:
|
1339 |
msgid "Set a number for the minimum ticket reservation possible"
|
1340 |
msgstr ""
|
1341 |
|
1342 |
-
#: app/features/events.php:
|
1343 |
msgid "e.g. 0"
|
1344 |
msgstr ""
|
1345 |
|
1346 |
-
#: app/features/events.php:
|
1347 |
#, fuzzy
|
1348 |
#| msgid "Days"
|
1349 |
msgid "Day"
|
1350 |
msgstr "Dny"
|
1351 |
|
1352 |
-
#: app/features/events.php:
|
1353 |
msgid "Hour"
|
1354 |
msgstr ""
|
1355 |
|
1356 |
-
#: app/features/events.php:
|
1357 |
#, php-format
|
1358 |
msgid "Stop selling ticket %s before event start."
|
1359 |
msgstr ""
|
1360 |
|
1361 |
-
#: app/features/events.php:
|
1362 |
msgid "Price per Date"
|
1363 |
msgstr "Cena za datum"
|
1364 |
|
1365 |
-
#: app/features/events.php:
|
1366 |
-
#: app/features/events.php:
|
1367 |
#: app/features/mec/meta_boxes/display_options.php:1421
|
1368 |
#: app/features/mec/meta_boxes/search_form.php:67
|
1369 |
#: app/features/mec/meta_boxes/search_form.php:137
|
@@ -1377,23 +1412,24 @@ msgstr "Cena za datum"
|
|
1377 |
#: app/features/mec/meta_boxes/search_form.php:690
|
1378 |
#: app/features/mec/meta_boxes/search_form.php:796
|
1379 |
#: app/features/mec/settings.php:955 app/features/mec/single.php:349
|
1380 |
-
#: app/features/
|
|
|
1381 |
msgid "Label"
|
1382 |
msgstr "Štítek"
|
1383 |
|
1384 |
-
#: app/features/events.php:
|
1385 |
#: app/features/mec/booking.php:464 app/features/mec/booking.php:493
|
1386 |
msgid "Fee Title"
|
1387 |
msgstr "Název poplatku"
|
1388 |
|
1389 |
-
#: app/features/events.php:
|
1390 |
-
#: app/features/events.php:
|
1391 |
#: app/features/mec/booking.php:468 app/features/mec/booking.php:471
|
1392 |
#: app/features/mec/booking.php:497 app/features/mec/booking.php:500
|
1393 |
msgid "Amount"
|
1394 |
msgstr "Množství"
|
1395 |
|
1396 |
-
#: app/features/events.php:
|
1397 |
#: app/features/mec/booking.php:472 app/features/mec/booking.php:501
|
1398 |
msgid ""
|
1399 |
"Fee amount, considered as fixed amount if you set the type to amount "
|
@@ -1402,95 +1438,95 @@ msgstr ""
|
|
1402 |
"Výše poplatku, je považovaná za pevnou částku, pokud nastavíte typ na částku "
|
1403 |
"odpovídající procentuální hodnotě"
|
1404 |
|
1405 |
-
#: app/features/events.php:
|
1406 |
#: app/features/mec/booking.php:479 app/features/mec/booking.php:508
|
1407 |
msgid "Percent"
|
1408 |
msgstr "Procent"
|
1409 |
|
1410 |
-
#: app/features/events.php:
|
1411 |
#: app/features/mec/booking.php:480 app/features/mec/booking.php:509
|
1412 |
msgid "Amount (Per Ticket)"
|
1413 |
msgstr "Částka (za vstupenku)"
|
1414 |
|
1415 |
-
#: app/features/events.php:
|
1416 |
#: app/features/mec/booking.php:481 app/features/mec/booking.php:510
|
1417 |
msgid "Amount (Per Booking)"
|
1418 |
msgstr "Částka (za rezervaci)"
|
1419 |
|
1420 |
-
#: app/features/events.php:
|
1421 |
#: app/features/mec/booking.php:549 app/features/mec/booking.php:581
|
1422 |
msgid "Option Price"
|
1423 |
msgstr "Možnosti ceny"
|
1424 |
|
1425 |
-
#: app/features/events.php:
|
1426 |
-
#: app/features/events.php:
|
1427 |
#: app/features/mec/booking.php:555 app/features/mec/booking.php:558
|
1428 |
#: app/features/mec/booking.php:587 app/features/mec/booking.php:590
|
1429 |
msgid "Maximum Per Ticket"
|
1430 |
msgstr "Maximum na jednu vstupenku"
|
1431 |
|
1432 |
-
#: app/features/events.php:
|
1433 |
#: app/features/mec/booking.php:559 app/features/mec/booking.php:591
|
1434 |
#, fuzzy
|
1435 |
#| msgid "Maximum Per Ticket. Leave it blank for unlimited."
|
1436 |
msgid "Maximum Per Ticket. Leave blank for unlimited."
|
1437 |
msgstr "Maximum na jednu vstupenku. Ponechte to prázdné pro neomezené."
|
1438 |
|
1439 |
-
#: app/features/events.php:
|
1440 |
#, fuzzy
|
1441 |
#| msgid "Attendees Limit"
|
1442 |
msgid "Per Attendee Fields"
|
1443 |
msgstr "Limit účastníků"
|
1444 |
|
1445 |
-
#: app/features/events.php:
|
1446 |
-
#: app/libraries/main.php:
|
1447 |
msgid "MEC Name"
|
1448 |
msgstr "MEC Jméno"
|
1449 |
|
1450 |
-
#: app/features/events.php:
|
1451 |
-
#: app/libraries/main.php:
|
1452 |
msgid "MEC Email"
|
1453 |
msgstr "MEC Email"
|
1454 |
|
1455 |
-
#: app/features/events.php:
|
1456 |
#: app/features/mec/booking.php:642 app/features/mec/booking.php:738
|
1457 |
-
#: app/features/mec/single.php:190 app/libraries/main.php:
|
1458 |
msgid "Text"
|
1459 |
msgstr "Text"
|
1460 |
|
1461 |
-
#: app/features/events.php:
|
1462 |
#: app/features/mec/booking.php:645 app/features/mec/booking.php:741
|
1463 |
#: app/features/mec/single.php:194 app/features/organizers.php:103
|
1464 |
#: app/features/organizers.php:148 app/features/speakers.php:119
|
1465 |
#: app/features/speakers.php:200 app/features/speakers.php:285
|
1466 |
-
#: app/libraries/main.php:
|
1467 |
msgid "Tel"
|
1468 |
msgstr "Tel"
|
1469 |
|
1470 |
-
#: app/features/events.php:
|
1471 |
-
#: app/libraries/main.php:
|
1472 |
msgid "File"
|
1473 |
msgstr "Soubor"
|
1474 |
|
1475 |
-
#: app/features/events.php:
|
1476 |
#: app/features/mec/booking.php:647 app/features/mec/booking.php:742
|
1477 |
-
#: app/features/mec/single.php:195 app/libraries/main.php:
|
1478 |
msgid "Textarea"
|
1479 |
msgstr "Plocha textu"
|
1480 |
|
1481 |
-
#: app/features/events.php:
|
1482 |
#: app/features/mec/booking.php:648 app/features/mec/booking.php:743
|
1483 |
-
#: app/features/mec/single.php:197 app/libraries/main.php:
|
1484 |
msgid "Checkboxes"
|
1485 |
msgstr "Zatržítko"
|
1486 |
|
1487 |
-
#: app/features/events.php:
|
1488 |
#: app/features/mec/booking.php:649 app/features/mec/booking.php:744
|
1489 |
-
#: app/features/mec/single.php:198 app/libraries/main.php:
|
1490 |
msgid "Radio Buttons"
|
1491 |
msgstr "Přepínače"
|
1492 |
|
1493 |
-
#: app/features/events.php:
|
1494 |
#: app/features/mec/booking.php:650 app/features/mec/booking.php:745
|
1495 |
#: app/features/mec/meta_boxes/search_form.php:34
|
1496 |
#: app/features/mec/meta_boxes/search_form.php:41
|
@@ -1568,53 +1604,53 @@ msgstr "Přepínače"
|
|
1568 |
#: app/features/mec/meta_boxes/search_form.php:792
|
1569 |
#: app/features/mec/meta_boxes/search_form.php:799
|
1570 |
#: app/features/mec/meta_boxes/search_form.php:813
|
1571 |
-
#: app/features/mec/single.php:199 app/libraries/main.php:
|
1572 |
msgid "Dropdown"
|
1573 |
msgstr "Rozbalovací"
|
1574 |
|
1575 |
-
#: app/features/events.php:
|
1576 |
#: app/features/mec/booking.php:651 app/features/mec/booking.php:746
|
1577 |
-
#: app/libraries/main.php:
|
1578 |
msgid "Agreement"
|
1579 |
msgstr "Smlouva"
|
1580 |
|
1581 |
-
#: app/features/events.php:
|
1582 |
#: app/features/mec/booking.php:652 app/features/mec/booking.php:747
|
1583 |
-
#: app/features/mec/single.php:196 app/libraries/main.php:
|
1584 |
msgid "Paragraph"
|
1585 |
msgstr "Paragraf"
|
1586 |
|
1587 |
-
#: app/features/events.php:
|
1588 |
#, fuzzy
|
1589 |
#| msgid "Required Field"
|
1590 |
msgid "Fixed Fields"
|
1591 |
msgstr "Požadovaná pole"
|
1592 |
|
1593 |
-
#: app/features/events.php:
|
1594 |
-
#: app/features/events.php:
|
1595 |
#, php-format
|
1596 |
msgid "Show all %s"
|
1597 |
msgstr "Ukázat všechny %s"
|
1598 |
|
1599 |
-
#: app/features/events.php:
|
1600 |
msgid "labels"
|
1601 |
msgstr "štítky"
|
1602 |
|
1603 |
-
#: app/features/events.php:
|
1604 |
msgid "locations"
|
1605 |
msgstr "umístění"
|
1606 |
|
1607 |
-
#: app/features/events.php:
|
1608 |
msgid "organizers"
|
1609 |
msgstr "organizátoři"
|
1610 |
|
1611 |
-
#: app/features/events.php:
|
1612 |
#, fuzzy
|
1613 |
#| msgid "Attendees Limit"
|
1614 |
msgid "Attendees List"
|
1615 |
msgstr "Limit účastníků"
|
1616 |
|
1617 |
-
#: app/features/events.php:
|
1618 |
#: app/features/ix.php:3748 app/features/ix.php:3790
|
1619 |
#: app/features/locations.php:58 app/features/locations.php:263
|
1620 |
#: app/features/locations.php:324 app/features/locations.php:326
|
@@ -1632,57 +1668,58 @@ msgstr "Limit účastníků"
|
|
1632 |
#: app/features/mec/meta_boxes/search_form.php:661
|
1633 |
#: app/features/mec/meta_boxes/search_form.php:767
|
1634 |
#: app/features/mec/settings.php:929 app/features/mec/single.php:339
|
1635 |
-
#: app/features/
|
1636 |
-
#: app/features/
|
1637 |
-
#: app/libraries/main.php:
|
1638 |
-
#: app/libraries/
|
1639 |
-
#: app/skins/single.php:
|
1640 |
-
#: app/skins/single/default.php:
|
1641 |
-
#: app/skins/single/
|
|
|
1642 |
msgid "Location"
|
1643 |
msgstr "Umístění"
|
1644 |
|
1645 |
-
#: app/features/events.php:
|
1646 |
msgid "Repeat"
|
1647 |
msgstr "Opakovat"
|
1648 |
|
1649 |
-
#: app/features/events.php:
|
1650 |
msgid "Author"
|
1651 |
msgstr "Autor"
|
1652 |
|
1653 |
-
#: app/features/events.php:
|
1654 |
#, fuzzy
|
1655 |
#| msgid "iCal Export"
|
1656 |
msgid "iCal / Outlook Export"
|
1657 |
msgstr "iCal Export"
|
1658 |
|
1659 |
-
#: app/features/events.php:
|
1660 |
msgid "CSV Export"
|
1661 |
msgstr "CSV Export"
|
1662 |
|
1663 |
-
#: app/features/events.php:
|
1664 |
msgid "MS Excel Export"
|
1665 |
msgstr "MS Excel Export"
|
1666 |
|
1667 |
-
#: app/features/events.php:
|
1668 |
msgid "XML Export"
|
1669 |
msgstr "XML Export"
|
1670 |
|
1671 |
-
#: app/features/events.php:
|
1672 |
msgid "JSON Export"
|
1673 |
msgstr "JSON Export"
|
1674 |
|
1675 |
-
#: app/features/events.php:
|
1676 |
-
#: app/features/events.php:
|
1677 |
msgid "Duplicate"
|
1678 |
msgstr "Duplikát"
|
1679 |
|
1680 |
-
#: app/features/events.php:
|
1681 |
#: app/features/ix.php:3790
|
1682 |
msgid "Link"
|
1683 |
msgstr "Odkaz"
|
1684 |
|
1685 |
-
#: app/features/events.php:
|
1686 |
#: app/features/ix.php:3790 app/features/locations.php:110
|
1687 |
#: app/features/locations.php:180 app/features/locations.php:264
|
1688 |
#: app/features/mec/meta_boxes/search_form.php:74
|
@@ -1699,43 +1736,43 @@ msgstr "Odkaz"
|
|
1699 |
msgid "Address"
|
1700 |
msgstr "Adresa"
|
1701 |
|
1702 |
-
#: app/features/events.php:
|
1703 |
#, php-format
|
1704 |
msgid "%s Tel"
|
1705 |
msgstr "%s Tel"
|
1706 |
|
1707 |
-
#: app/features/events.php:
|
1708 |
#, php-format
|
1709 |
msgid "%s Email"
|
1710 |
msgstr "%s Email"
|
1711 |
|
1712 |
-
#: app/features/events.php:
|
1713 |
-
#: app/features/profile/profile.php:183 app/libraries/main.php:
|
1714 |
-
#: app/libraries/main.php:
|
1715 |
msgid "Ticket"
|
1716 |
msgstr "Vstupenka"
|
1717 |
|
1718 |
-
#: app/features/events.php:
|
1719 |
msgid "Variations"
|
1720 |
msgstr "Variace"
|
1721 |
|
1722 |
-
#: app/features/events.php:
|
1723 |
msgid "Unknown"
|
1724 |
msgstr "Neznámý"
|
1725 |
|
1726 |
-
#: app/features/events.php:
|
1727 |
msgid ""
|
1728 |
"If you want to send an email, first select your attendees and then click in "
|
1729 |
"the button below, please."
|
1730 |
msgstr ""
|
1731 |
|
1732 |
-
#: app/features/events.php:
|
1733 |
#, fuzzy
|
1734 |
#| msgid "Organizer Email"
|
1735 |
msgid "Send Email"
|
1736 |
msgstr "Organizátor Email"
|
1737 |
|
1738 |
-
#: app/features/events.php:
|
1739 |
#, fuzzy
|
1740 |
#| msgid "Attendees Form"
|
1741 |
msgid "No Attendees Found!"
|
@@ -1781,8 +1818,8 @@ msgstr "Událost byla odebrána!"
|
|
1781 |
msgid "Order Time"
|
1782 |
msgstr "Konec"
|
1783 |
|
1784 |
-
#: app/features/fes.php:236 app/features/wc.php:
|
1785 |
-
#: app/libraries/main.php:
|
1786 |
msgid "Transaction ID"
|
1787 |
msgstr "ID transakce"
|
1788 |
|
@@ -1836,13 +1873,13 @@ msgstr "Captcha je neplatná! Prosím zkuste to znovu."
|
|
1836 |
msgid "Please fill event title field!"
|
1837 |
msgstr "Vyplňte prosím pole názvu události!"
|
1838 |
|
1839 |
-
#: app/features/fes.php:
|
1840 |
#, fuzzy
|
1841 |
#| msgid "The event submitted. It will publish as soon as possible."
|
1842 |
msgid "Event submitted. It will publish as soon as possible."
|
1843 |
msgstr "Událost byla odeslána. Zveřejní se co nejdříve."
|
1844 |
|
1845 |
-
#: app/features/fes.php:
|
1846 |
msgid "The event published."
|
1847 |
msgstr "Událost byla publikována."
|
1848 |
|
@@ -1850,65 +1887,65 @@ msgstr "Událost byla publikována."
|
|
1850 |
msgid "Go back to events list"
|
1851 |
msgstr "Přejít zpět na seznam událostí"
|
1852 |
|
1853 |
-
#: app/features/fes/form.php:
|
1854 |
msgid "Excerpt"
|
1855 |
msgstr ""
|
1856 |
|
1857 |
-
#: app/features/fes/form.php:
|
1858 |
#, fuzzy
|
1859 |
#| msgid "On Event Start"
|
1860 |
msgid "Optional Event Excerpt"
|
1861 |
msgstr "Při spuštění události"
|
1862 |
|
1863 |
-
#: app/features/fes/form.php:
|
1864 |
msgid ""
|
1865 |
"This event is imported from Google calendar so if you modify it would "
|
1866 |
"overwrite in the next import from Google."
|
1867 |
msgstr ""
|
1868 |
|
1869 |
-
#: app/features/fes/form.php:
|
1870 |
#: app/features/mec/meta_boxes/display_options.php:1268
|
1871 |
#: app/libraries/main.php:415
|
1872 |
msgid "Monday"
|
1873 |
msgstr "Pondělí"
|
1874 |
|
1875 |
-
#: app/features/fes/form.php:
|
1876 |
#: app/features/mec/meta_boxes/display_options.php:1269
|
1877 |
#: app/libraries/main.php:415
|
1878 |
msgid "Tuesday"
|
1879 |
msgstr "Úterý"
|
1880 |
|
1881 |
-
#: app/features/fes/form.php:
|
1882 |
#: app/features/mec/meta_boxes/display_options.php:1270
|
1883 |
#: app/libraries/main.php:415
|
1884 |
msgid "Wednesday"
|
1885 |
msgstr "Středa"
|
1886 |
|
1887 |
-
#: app/features/fes/form.php:
|
1888 |
#: app/features/mec/meta_boxes/display_options.php:1271
|
1889 |
#: app/libraries/main.php:415
|
1890 |
msgid "Thursday"
|
1891 |
msgstr "Čtvrtek"
|
1892 |
|
1893 |
-
#: app/features/fes/form.php:
|
1894 |
#: app/features/mec/meta_boxes/display_options.php:1272
|
1895 |
#: app/libraries/main.php:415
|
1896 |
msgid "Friday"
|
1897 |
msgstr "Pátek"
|
1898 |
|
1899 |
-
#: app/features/fes/form.php:
|
1900 |
#: app/features/mec/meta_boxes/display_options.php:1273
|
1901 |
#: app/libraries/main.php:415
|
1902 |
msgid "Saturday"
|
1903 |
msgstr "Sobota"
|
1904 |
|
1905 |
-
#: app/features/fes/form.php:
|
1906 |
#: app/features/mec/meta_boxes/display_options.php:1267
|
1907 |
#: app/libraries/main.php:415
|
1908 |
msgid "Sunday"
|
1909 |
msgstr "Neděle"
|
1910 |
|
1911 |
-
#: app/features/fes/form.php:
|
1912 |
msgid ""
|
1913 |
"The event will finish after certain repeats. For example if you set it to "
|
1914 |
"10, the event will finish after 10 repeats."
|
@@ -1916,24 +1953,24 @@ msgstr ""
|
|
1916 |
"Událost bude ukončena po určitých opakováních. Pokud například nastavíte "
|
1917 |
"hodnotu 10, událost skončí po 10 opakováních."
|
1918 |
|
1919 |
-
#: app/features/fes/form.php:
|
1920 |
msgid "Note to reviewer"
|
1921 |
msgstr "Poznámka pro recenzenta"
|
1922 |
|
1923 |
-
#: app/features/fes/form.php:
|
1924 |
msgid "User Data"
|
1925 |
msgstr "Údaje uživatele"
|
1926 |
|
1927 |
-
#: app/features/fes/form.php:
|
1928 |
msgid "eg. yourname@gmail.com"
|
1929 |
msgstr "např. vasejmeno@gmail.com"
|
1930 |
|
1931 |
-
#: app/features/fes/form.php:
|
1932 |
#: app/features/popup/event.php:183
|
1933 |
msgid "eg. John Smith"
|
1934 |
msgstr "např. Jan Novák"
|
1935 |
|
1936 |
-
#: app/features/fes/form.php:
|
1937 |
#, fuzzy
|
1938 |
#| msgid ""
|
1939 |
#| "If you fill it, it will be replaced instead of default event page link. "
|
@@ -1946,45 +1983,45 @@ msgstr ""
|
|
1946 |
"Vložte celý odkaz včetně http (s): //"
|
1947 |
|
1948 |
# v kontextu
|
1949 |
-
#: app/features/fes/form.php:
|
1950 |
msgid "Featured Image"
|
1951 |
msgstr "Hlavní obrázek"
|
1952 |
|
1953 |
-
#: app/features/fes/form.php:
|
1954 |
msgid "Remove Image"
|
1955 |
msgstr "Odebrat obrázek"
|
1956 |
|
1957 |
-
#: app/features/fes/form.php:
|
1958 |
#: app/features/labels.php:221 app/features/mec.php:462
|
1959 |
#: app/features/mec/meta_boxes/filter.php:72
|
1960 |
-
#: app/features/mec/meta_boxes/filter.php:133 app/libraries/main.php:
|
1961 |
-
#: app/libraries/main.php:
|
1962 |
#: app/skins/single/default.php:173 app/skins/single/default.php:405
|
1963 |
#: app/skins/single/m1.php:76 app/skins/single/modern.php:252
|
1964 |
msgid "Labels"
|
1965 |
msgstr "Štítky"
|
1966 |
|
1967 |
-
#: app/features/fes/form.php:
|
1968 |
#: app/features/mec/meta_boxes/filter.php:73
|
1969 |
#: app/features/mec/meta_boxes/filter.php:151
|
1970 |
msgid "Tags"
|
1971 |
msgstr "Tagy"
|
1972 |
|
1973 |
-
#: app/features/fes/form.php:
|
1974 |
msgid "Insert your desired tags, comma separated."
|
1975 |
msgstr "Vložte požadované tagy oddělené čárkami."
|
1976 |
|
1977 |
-
#: app/features/fes/form.php:
|
1978 |
msgid "Speakers Names"
|
1979 |
msgstr "Jméno řečníka"
|
1980 |
|
1981 |
-
#: app/features/fes/form.php:
|
1982 |
#, fuzzy
|
1983 |
#| msgid "Separate names with commas Similar Justin, Cris"
|
1984 |
msgid "Separate names with commas: Justin, Chris"
|
1985 |
msgstr "Oddělte jména čárkami - Novák Petr, Pavel"
|
1986 |
|
1987 |
-
#: app/features/fes/form.php:
|
1988 |
msgid "Submit"
|
1989 |
msgstr "Potvrdit"
|
1990 |
|
@@ -2022,7 +2059,7 @@ msgid "MEC - Import / Export"
|
|
2022 |
msgstr "MEC Import / Export"
|
2023 |
|
2024 |
#: app/features/ix.php:107 app/features/mec/support.php:73
|
2025 |
-
#: app/libraries/main.php:
|
2026 |
msgid "Import / Export"
|
2027 |
msgstr "Import / Export"
|
2028 |
|
@@ -2042,27 +2079,27 @@ msgstr "Typ souboru by měl být XML nebo ICS."
|
|
2042 |
msgid "An error occurred during the file upload! Please check permissions!"
|
2043 |
msgstr "Při nahrávání souboru došlo k chybě! Zkontrolujte oprávnění!"
|
2044 |
|
2045 |
-
#: app/features/ix.php:265 app/libraries/main.php:
|
2046 |
-
#: app/libraries/main.php:
|
2047 |
msgid "Confirmed"
|
2048 |
msgstr "Potvrzeno"
|
2049 |
|
2050 |
-
#: app/features/ix.php:266 app/libraries/main.php:
|
2051 |
-
#: app/libraries/main.php:
|
2052 |
msgid "Rejected"
|
2053 |
msgstr "Odmítnuto"
|
2054 |
|
2055 |
-
#: app/features/ix.php:270 app/features/mec/booking.php:
|
2056 |
-
#: app/features/mec/booking.php:
|
2057 |
#: app/features/mec/modules.php:423 app/features/mec/notifications.php:1046
|
2058 |
#: app/features/mec/notifications.php:1068 app/features/mec/settings.php:1239
|
2059 |
-
#: app/features/mec/settings.php:1261 app/features/mec/single.php:
|
2060 |
-
#: app/features/mec/single.php:
|
2061 |
msgid "Verified"
|
2062 |
msgstr "Ověřeno"
|
2063 |
|
2064 |
#: app/features/ix.php:271 app/features/labels.php:118
|
2065 |
-
#: app/features/labels.php:143 app/libraries/main.php:
|
2066 |
#: app/skins/agenda/render.php:43 app/skins/available_spot/tpl.php:56
|
2067 |
#: app/skins/carousel/render.php:38 app/skins/countdown/tpl.php:40
|
2068 |
#: app/skins/cover/tpl.php:36 app/skins/daily_view/render.php:28
|
@@ -2366,9 +2403,9 @@ msgstr "Přepnout"
|
|
2366 |
msgid "Add to Google Calendar"
|
2367 |
msgstr "Přidat do Google kalendáře"
|
2368 |
|
2369 |
-
#: app/features/ix/export_g_calendar.php:93 app/features/mec/booking.php:
|
2370 |
#: app/features/mec/modules.php:403 app/features/mec/notifications.php:1048
|
2371 |
-
#: app/features/mec/settings.php:1241 app/features/mec/single.php:
|
2372 |
msgid "Checking ..."
|
2373 |
msgstr "Ověřování ..."
|
2374 |
|
@@ -2856,7 +2893,7 @@ msgstr "Vybrané a zrušené události můžete zobrazit jiným stylem!"
|
|
2856 |
|
2857 |
#: app/features/labels.php:180 app/features/locations.php:265
|
2858 |
#: app/features/organizers.php:206 app/features/speakers.php:286
|
2859 |
-
#: app/modules/booking/steps/tickets.php:
|
2860 |
msgid "Count"
|
2861 |
msgstr "Spočítat"
|
2862 |
|
@@ -2873,8 +2910,8 @@ msgstr "Událost %s"
|
|
2873 |
|
2874 |
#: app/features/locations.php:59 app/features/mec.php:463
|
2875 |
#: app/features/mec/dashboard.php:279 app/features/mec/meta_boxes/filter.php:70
|
2876 |
-
#: app/features/mec/meta_boxes/filter.php:97 app/libraries/main.php:
|
2877 |
-
#: app/libraries/main.php:
|
2878 |
msgid "Locations"
|
2879 |
msgstr "Umístění"
|
2880 |
|
@@ -2993,8 +3030,8 @@ msgstr "Vyberte obrázek"
|
|
2993 |
msgid "Don't show map in single event page"
|
2994 |
msgstr "Nezobrazovat mapu na jednostránkové události"
|
2995 |
|
2996 |
-
#: app/features/locations.php:398 app/libraries/main.php:
|
2997 |
-
#: app/libraries/main.php:
|
2998 |
msgid "Other Locations"
|
2999 |
msgstr "Další místa"
|
3000 |
|
@@ -3082,7 +3119,7 @@ msgstr "Podpora"
|
|
3082 |
#: app/features/mec.php:464 app/features/mec/dashboard.php:286
|
3083 |
#: app/features/mec/meta_boxes/filter.php:71
|
3084 |
#: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
|
3085 |
-
#: app/libraries/main.php:
|
3086 |
msgid "Organizers"
|
3087 |
msgstr "Organizátoři"
|
3088 |
|
@@ -3288,9 +3325,9 @@ msgid "Search..."
|
|
3288 |
msgstr "Vyhledávání ..."
|
3289 |
|
3290 |
#: app/features/mec/booking.php:80 app/features/mec/booking.php:753
|
3291 |
-
#: app/features/mec/booking.php:
|
3292 |
-
#: app/features/mec/booking.php:
|
3293 |
-
#: app/features/mec/booking.php:
|
3294 |
#: app/features/mec/messages.php:51 app/features/mec/messages.php:60
|
3295 |
#: app/features/mec/messages.php:94 app/features/mec/messages.php:103
|
3296 |
#: app/features/mec/modules.php:25 app/features/mec/modules.php:368
|
@@ -3302,9 +3339,9 @@ msgstr "Vyhledávání ..."
|
|
3302 |
#: app/features/mec/notifications.php:1079 app/features/mec/settings.php:42
|
3303 |
#: app/features/mec/settings.php:1190 app/features/mec/settings.php:1200
|
3304 |
#: app/features/mec/settings.php:1258 app/features/mec/settings.php:1272
|
3305 |
-
#: app/features/mec/single.php:21 app/features/mec/single.php:
|
3306 |
-
#: app/features/mec/single.php:
|
3307 |
-
#: app/features/mec/single.php:
|
3308 |
#: app/features/mec/styles.php:31 app/features/mec/styles.php:40
|
3309 |
#: app/features/mec/styles.php:77 app/features/mec/styles.php:86
|
3310 |
#: app/features/mec/styling.php:37 app/features/mec/styling.php:257
|
@@ -3354,6 +3391,7 @@ msgstr ""
|
|
3354 |
|
3355 |
#: app/features/mec/booking.php:133 app/features/mec/booking.php:187
|
3356 |
#: app/features/mec/booking.php:254 app/features/mec/booking.php:823
|
|
|
3357 |
#: app/features/mec/meta_boxes/search_form.php:33
|
3358 |
#: app/features/mec/meta_boxes/search_form.php:40
|
3359 |
#: app/features/mec/meta_boxes/search_form.php:48
|
@@ -3459,7 +3497,7 @@ msgstr "Zakázaný"
|
|
3459 |
|
3460 |
#: app/features/mec/booking.php:134 app/features/mec/booking.php:186
|
3461 |
#: app/features/mec/booking.php:253 app/features/mec/booking.php:822
|
3462 |
-
#: app/features/mec/settings.php:105
|
3463 |
msgid "Enabled"
|
3464 |
msgstr "Povoleno"
|
3465 |
|
@@ -3729,7 +3767,7 @@ msgid "Auto verification for paid bookings"
|
|
3729 |
msgstr "Automatické ověření pro placené rezervace"
|
3730 |
|
3731 |
#: app/features/mec/booking.php:374 app/features/mec/notifications.php:269
|
3732 |
-
#: app/features/notifications.php:155 app/libraries/main.php:
|
3733 |
msgid "Booking Confirmation"
|
3734 |
msgstr "Potvrzení rezervace"
|
3735 |
|
@@ -3745,7 +3783,7 @@ msgstr "Automatické ověření pro placené rezervace"
|
|
3745 |
msgid "Send confirmation email in auto confirmation mode"
|
3746 |
msgstr ""
|
3747 |
|
3748 |
-
#: app/features/mec/booking.php:411 app/libraries/main.php:
|
3749 |
#, fuzzy
|
3750 |
#| msgid "Booking Style"
|
3751 |
msgid "Booking Shortcode"
|
@@ -3785,7 +3823,7 @@ msgstr ""
|
|
3785 |
"novou nabídku na řídícím panelu > Rezervace"
|
3786 |
|
3787 |
#: app/features/mec/booking.php:445 app/features/mec/booking.php:815
|
3788 |
-
#: app/libraries/main.php:
|
3789 |
msgid "Taxes / Fees"
|
3790 |
msgstr "Daně / poplatky"
|
3791 |
|
@@ -3797,7 +3835,7 @@ msgstr "Povolit modul daní / poplatků"
|
|
3797 |
msgid "Add Fee"
|
3798 |
msgstr "Přidat poplatek"
|
3799 |
|
3800 |
-
#: app/features/mec/booking.php:522 app/libraries/main.php:
|
3801 |
msgid "Ticket Variations & Options"
|
3802 |
msgstr "Varianty a možnosti vstupenek"
|
3803 |
|
@@ -3815,10 +3853,10 @@ msgstr ""
|
|
3815 |
|
3816 |
#: app/features/mec/booking.php:807
|
3817 |
msgid ""
|
3818 |
-
"By enabling this feature, tickets will be added to
|
3819 |
-
"process would be done by WooCommerce so all of MEC payment related
|
3820 |
-
"will be disabled. To configure your desired gateways and booking
|
3821 |
-
"you need to configure WooCommerce on your website."
|
3822 |
msgstr ""
|
3823 |
|
3824 |
#: app/features/mec/booking.php:809
|
@@ -3846,12 +3884,14 @@ msgid "Ticket variations"
|
|
3846 |
msgstr "Varianty vstupenky / možnosti"
|
3847 |
|
3848 |
#: app/features/mec/booking.php:819
|
3849 |
-
msgid "Automatically complete
|
3850 |
msgstr ""
|
3851 |
|
3852 |
#: app/features/mec/booking.php:827
|
3853 |
-
|
3854 |
-
|
|
|
|
|
3855 |
|
3856 |
#: app/features/mec/booking.php:828
|
3857 |
msgid "It applies only to the orders that are related to MEC."
|
@@ -3873,11 +3913,23 @@ msgstr "Získat směr"
|
|
3873 |
msgid "Redirect to Checkout"
|
3874 |
msgstr "Získat směr"
|
3875 |
|
3876 |
-
#: app/features/mec/booking.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3877 |
msgid "Enable Organizer Payment Module"
|
3878 |
msgstr "Povolit platební modul organizátora"
|
3879 |
|
3880 |
-
#: app/features/mec/booking.php:
|
3881 |
msgid ""
|
3882 |
"By enabling this module, organizers are able to insert their own payment "
|
3883 |
"credentials for enabled gateways per event and receive the payments directly!"
|
@@ -3885,23 +3937,46 @@ msgstr ""
|
|
3885 |
"Po aktivaci tohoto modulu mohou organizátoři vkládat své vlastní platební "
|
3886 |
"údaje pro povolené brány pro události a přijímat platby přímo!"
|
3887 |
|
3888 |
-
#: app/features/mec/booking.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3889 |
#: app/features/mec/modules.php:398 app/features/mec/notifications.php:1043
|
3890 |
-
#: app/features/mec/settings.php:1236 app/features/mec/single.php:
|
3891 |
#: app/features/mec/styles.php:60 app/features/mec/styling.php:311
|
3892 |
msgid "Saved"
|
3893 |
msgstr "Uloženo"
|
3894 |
|
3895 |
-
#: app/features/mec/booking.php:
|
3896 |
#: app/features/mec/modules.php:399 app/features/mec/notifications.php:1044
|
3897 |
-
#: app/features/mec/settings.php:1237 app/features/mec/single.php:
|
3898 |
#: app/features/mec/styles.php:61 app/features/mec/styling.php:312
|
3899 |
msgid "Settings Saved!"
|
3900 |
msgstr "Nastavení uložena!"
|
3901 |
|
3902 |
-
#: app/features/mec/booking.php:
|
3903 |
#: app/features/mec/notifications.php:1070 app/features/mec/settings.php:1263
|
3904 |
-
#: app/features/mec/single.php:
|
3905 |
msgid "Please Refresh Page"
|
3906 |
msgstr "Prosím obnovte stránku"
|
3907 |
|
@@ -4030,7 +4105,7 @@ msgid "Download Settings"
|
|
4030 |
msgstr "Stáhnout nastavení"
|
4031 |
|
4032 |
#: app/features/mec/messages.php:28 app/features/mec/support-page.php:102
|
4033 |
-
#: app/features/mec/support.php:66 app/libraries/main.php:
|
4034 |
msgid "Messages"
|
4035 |
msgstr "Zprávy"
|
4036 |
|
@@ -4544,15 +4619,15 @@ msgstr "Výchozí zobrazení"
|
|
4544 |
|
4545 |
#: app/features/mec/meta_boxes/display_options.php:666
|
4546 |
#: app/features/mec/meta_boxes/display_options.php:690
|
4547 |
-
#: app/libraries/main.php:335 app/libraries/main.php:
|
4548 |
-
#: app/libraries/main.php:
|
4549 |
msgid "List View"
|
4550 |
msgstr "Zobrazení seznamu"
|
4551 |
|
4552 |
#: app/features/mec/meta_boxes/display_options.php:667
|
4553 |
#: app/features/mec/meta_boxes/display_options.php:711
|
4554 |
-
#: app/libraries/main.php:336 app/libraries/main.php:
|
4555 |
-
#: app/libraries/main.php:
|
4556 |
msgid "Grid View"
|
4557 |
msgstr "Zobrazení mřížky"
|
4558 |
|
@@ -4566,8 +4641,8 @@ msgstr "Zobrazení rozvrhu"
|
|
4566 |
|
4567 |
#: app/features/mec/meta_boxes/display_options.php:669
|
4568 |
#: app/features/mec/meta_boxes/display_options.php:732
|
4569 |
-
#: app/libraries/main.php:339 app/libraries/main.php:
|
4570 |
-
#: app/libraries/main.php:
|
4571 |
msgid "Yearly View"
|
4572 |
msgstr "Roční zobrazení"
|
4573 |
|
@@ -4578,15 +4653,15 @@ msgstr "Měsíční / kalendářní zobrazení"
|
|
4578 |
|
4579 |
#: app/features/mec/meta_boxes/display_options.php:671
|
4580 |
#: app/features/mec/meta_boxes/display_options.php:781
|
4581 |
-
#: app/libraries/main.php:342 app/libraries/main.php:
|
4582 |
-
#: app/libraries/main.php:
|
4583 |
msgid "Weekly View"
|
4584 |
msgstr "Týdenní zobrazení"
|
4585 |
|
4586 |
#: app/features/mec/meta_boxes/display_options.php:672
|
4587 |
#: app/features/mec/meta_boxes/display_options.php:791
|
4588 |
-
#: app/libraries/main.php:341 app/libraries/main.php:
|
4589 |
-
#: app/libraries/main.php:
|
4590 |
msgid "Daily View"
|
4591 |
msgstr "Denní zobrazení"
|
4592 |
|
@@ -5082,10 +5157,10 @@ msgstr "Zobrazit vyhledávací formulář"
|
|
5082 |
#: app/features/mec/meta_boxes/search_form.php:676
|
5083 |
#: app/features/mec/meta_boxes/search_form.php:782
|
5084 |
#: app/features/mec/settings.php:942 app/features/mec/single.php:344
|
5085 |
-
#: app/features/
|
5086 |
-
#: app/features/speakers.php:
|
5087 |
-
#: app/libraries/main.php:
|
5088 |
-
#: app/modules/speakers/details.php:18
|
5089 |
msgid "Speaker"
|
5090 |
msgstr "Řečník"
|
5091 |
|
@@ -5101,7 +5176,8 @@ msgstr "Řečník"
|
|
5101 |
#: app/features/mec/meta_boxes/search_form.php:683
|
5102 |
#: app/features/mec/meta_boxes/search_form.php:789
|
5103 |
#: app/features/mec/settings.php:949 app/features/mec/single.php:353
|
5104 |
-
#: app/features/
|
|
|
5105 |
msgid "Tag"
|
5106 |
msgstr "Štítek"
|
5107 |
|
@@ -5196,7 +5272,7 @@ msgstr ""
|
|
5196 |
"Po povolení a uložení nastavení byste měli stránku znovu načíst a zobrazit "
|
5197 |
"novou nabídku na řídícím panelu > MEC"
|
5198 |
|
5199 |
-
#: app/features/mec/modules.php:66 app/libraries/main.php:
|
5200 |
#, fuzzy
|
5201 |
#| msgid "Google Maps Options"
|
5202 |
msgid "Map Options"
|
@@ -5285,7 +5361,7 @@ msgstr ""
|
|
5285 |
"Zkontrolujte to, pouze pokud jiný plugin / motiv načítá rozhraní Google Maps "
|
5286 |
"API"
|
5287 |
|
5288 |
-
#: app/features/mec/modules.php:167 app/libraries/main.php:
|
5289 |
msgid "Export Options"
|
5290 |
msgstr "Možnosti exportu"
|
5291 |
|
@@ -5300,7 +5376,7 @@ msgstr ""
|
|
5300 |
msgid "Google Calendar"
|
5301 |
msgstr "Kalendář Google"
|
5302 |
|
5303 |
-
#: app/features/mec/modules.php:194 app/libraries/main.php:
|
5304 |
#: app/modules/local-time/details.php:45 app/modules/local-time/type1.php:42
|
5305 |
#: app/widgets/single.php:99
|
5306 |
msgid "Local Time"
|
@@ -5312,7 +5388,7 @@ msgstr ""
|
|
5312 |
"Zobrazit čas události na základě místního času návštěvníka na stránce "
|
5313 |
"události"
|
5314 |
|
5315 |
-
#: app/features/mec/modules.php:208 app/libraries/main.php:
|
5316 |
#: app/modules/qrcode/details.php:38 app/widgets/single.php:155
|
5317 |
msgid "QR Code"
|
5318 |
msgstr "QR kód"
|
@@ -5322,7 +5398,7 @@ msgid "Show QR code of event in details page and booking invoice"
|
|
5322 |
msgstr ""
|
5323 |
"Zobrazte QR kód události na stránce s podrobnostmi a fakturaci za rezervaci"
|
5324 |
|
5325 |
-
#: app/features/mec/modules.php:226 app/libraries/main.php:
|
5326 |
#: app/modules/weather/darksky.php:15 app/modules/weather/weatherapi.php:16
|
5327 |
msgid "Weather"
|
5328 |
msgstr "Počasí"
|
@@ -5361,7 +5437,7 @@ msgstr "Zobrazit tlačítko Změna jednotek počasí"
|
|
5361 |
msgid "Show social network module"
|
5362 |
msgstr "Zobrazit modul sociální sítě"
|
5363 |
|
5364 |
-
#: app/features/mec/modules.php:299 app/libraries/main.php:
|
5365 |
#: app/modules/next-event/details.php:127
|
5366 |
msgid "Next Event"
|
5367 |
msgstr "Další událost"
|
@@ -5977,7 +6053,7 @@ msgstr "Stáhnout ICS soubor"
|
|
5977 |
msgid "Add to Google Calendar Links for next 20 occurrences"
|
5978 |
msgstr ""
|
5979 |
|
5980 |
-
#: app/features/mec/notifications.php:158 app/libraries/main.php:
|
5981 |
msgid "Booking Verification"
|
5982 |
msgstr "Ověření rezervace"
|
5983 |
|
@@ -6017,7 +6093,7 @@ msgid "Booking cancellation link."
|
|
6017 |
msgstr "Odkaz na zrušení rezervace."
|
6018 |
|
6019 |
#: app/features/mec/notifications.php:395 app/features/notifications.php:158
|
6020 |
-
#: app/libraries/main.php:
|
6021 |
msgid "Booking Cancellation"
|
6022 |
msgstr "Zrušení rezervace"
|
6023 |
|
@@ -6050,7 +6126,7 @@ msgstr "Pošlete rezervační e-mail uživateli"
|
|
6050 |
msgid "Admin booking management link."
|
6051 |
msgstr "Odkaz administrátora na správu rezervace."
|
6052 |
|
6053 |
-
#: app/features/mec/notifications.php:516 app/libraries/main.php:
|
6054 |
msgid "Admin"
|
6055 |
msgstr "Administrátor"
|
6056 |
|
@@ -6065,7 +6141,7 @@ msgid "Sent to admin to notify them that a new booking has been received."
|
|
6065 |
msgstr "Zašle správci informaci o přijetí nové rezervace."
|
6066 |
|
6067 |
#: app/features/mec/notifications.php:636 app/features/notifications.php:164
|
6068 |
-
#: app/libraries/main.php:
|
6069 |
msgid "Booking Reminder"
|
6070 |
msgstr "Připomenutí rezervace"
|
6071 |
|
@@ -6094,8 +6170,8 @@ msgstr ""
|
|
6094 |
msgid "only once per hour"
|
6095 |
msgstr "pouze jednou denně"
|
6096 |
|
6097 |
-
#: app/features/mec/notifications.php:699 app/libraries/main.php:
|
6098 |
-
#: app/libraries/main.php:
|
6099 |
#, fuzzy
|
6100 |
#| msgid "hours"
|
6101 |
msgid "Hours"
|
@@ -6110,7 +6186,7 @@ msgid "Please, insert comma to separate reminder hours."
|
|
6110 |
msgstr ""
|
6111 |
|
6112 |
#: app/features/mec/notifications.php:768 app/features/popup/event.php:253
|
6113 |
-
#: app/libraries/main.php:
|
6114 |
msgid "New Event"
|
6115 |
msgstr "Nová událost"
|
6116 |
|
@@ -6156,7 +6232,7 @@ msgstr "Poznámka události"
|
|
6156 |
msgid "Admin events management link."
|
6157 |
msgstr "Odkaz administrátora na správu událostí."
|
6158 |
|
6159 |
-
#: app/features/mec/notifications.php:858 app/libraries/main.php:
|
6160 |
msgid "User Event Publishing"
|
6161 |
msgstr "Publikování uživatelských událostí"
|
6162 |
|
@@ -6176,7 +6252,7 @@ msgstr ""
|
|
6176 |
"Odešle po zveřejnění nové události ze zadání z webových stránek (frontend) "
|
6177 |
"nebo z administrace webových stránek (backend)."
|
6178 |
|
6179 |
-
#: app/features/mec/notifications.php:940 app/libraries/main.php:
|
6180 |
#, fuzzy
|
6181 |
#| msgid "Notifications"
|
6182 |
msgid "Notifications Per Event"
|
@@ -6370,7 +6446,7 @@ msgid "You can enable/disable Schema scripts"
|
|
6370 |
msgstr "Můžete povolit nebo zakázat skripty schématu"
|
6371 |
|
6372 |
#: app/features/mec/settings.php:163 app/features/mec/settings.php:173
|
6373 |
-
#: app/libraries/main.php:
|
6374 |
msgid "Weekdays"
|
6375 |
msgstr "Pracovní dny"
|
6376 |
|
@@ -7155,7 +7231,7 @@ msgstr ""
|
|
7155 |
msgid "Custom Fields"
|
7156 |
msgstr "Vlastní styly"
|
7157 |
|
7158 |
-
#: app/features/mec/single.php:192 app/libraries/main.php:
|
7159 |
msgid "URL"
|
7160 |
msgstr ""
|
7161 |
|
@@ -7224,7 +7300,7 @@ msgstr ""
|
|
7224 |
"jediné události."
|
7225 |
|
7226 |
#: app/features/mec/single.php:318 app/libraries/main.php:560
|
7227 |
-
#: app/skins/single.php:166 app/skins/single.php:
|
7228 |
msgid "Related Events"
|
7229 |
msgstr "Související události"
|
7230 |
|
@@ -7234,17 +7310,31 @@ msgstr ""
|
|
7234 |
"Zobrazte související události na základě taxonomie na stránce s jednou "
|
7235 |
"událostí."
|
7236 |
|
7237 |
-
#: app/features/mec/single.php:328
|
7238 |
msgid "Select Taxonomies:"
|
7239 |
msgstr "Vyberte taxonomie:"
|
7240 |
|
7241 |
-
#: app/features/mec/single.php:360 app/libraries/main.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7242 |
#, fuzzy
|
7243 |
#| msgid "Next Occurrence"
|
7244 |
msgid "Edit Per Occurrences"
|
7245 |
msgstr "Další výskyt"
|
7246 |
|
7247 |
-
#: app/features/mec/single.php:
|
7248 |
msgid "Ability to edit some event information per occurrence"
|
7249 |
msgstr ""
|
7250 |
|
@@ -7448,7 +7538,7 @@ msgstr "Vytvářejte události pomocí Tvůrce stránek"
|
|
7448 |
msgid "MEC Settings"
|
7449 |
msgstr "MEC - Nastavení"
|
7450 |
|
7451 |
-
#: app/features/mec/support-page.php:99 app/libraries/main.php:
|
7452 |
msgid "Single Event"
|
7453 |
msgstr "Jedna událost"
|
7454 |
|
@@ -7808,11 +7898,11 @@ msgstr ""
|
|
7808 |
msgid "Create a support ticket"
|
7809 |
msgstr "Vytvořte lístek podpory"
|
7810 |
|
7811 |
-
#: app/features/mec/support.php:52 app/libraries/main.php:
|
7812 |
msgid "Styling Options"
|
7813 |
msgstr "Možnosti stylování"
|
7814 |
|
7815 |
-
#: app/features/mec/support.php:59 app/libraries/main.php:
|
7816 |
msgid "Custom CSS"
|
7817 |
msgstr "Vlastní CSS"
|
7818 |
|
@@ -8081,8 +8171,8 @@ msgstr "např. info@itreseni.cz"
|
|
8081 |
msgid "eg. https://webnus.net"
|
8082 |
msgstr "např. https://webnus.net"
|
8083 |
|
8084 |
-
#: app/features/organizers.php:312 app/libraries/main.php:
|
8085 |
-
#: app/libraries/main.php:
|
8086 |
msgid "Other Organizers"
|
8087 |
msgstr "Další organizátoři"
|
8088 |
|
@@ -8159,8 +8249,8 @@ msgstr ""
|
|
8159 |
|
8160 |
#: app/features/popup/event.php:262 app/features/popup/shortcode.php:550
|
8161 |
#: app/modules/booking/steps/form.php:350
|
8162 |
-
#: app/modules/booking/steps/tickets.php:
|
8163 |
-
#: app/skins/countdown/tpl.php:
|
8164 |
msgid "Next"
|
8165 |
msgstr "Další"
|
8166 |
|
@@ -8272,7 +8362,7 @@ msgstr "Přidat nový zkrácený kód"
|
|
8272 |
msgid "Please %s/%s in order to see your bookings / profile."
|
8273 |
msgstr "Prosím %s/%s za účelem zobrazení vašich rezervací / profilu."
|
8274 |
|
8275 |
-
#: app/features/profile/profile.php:20 app/libraries/main.php:
|
8276 |
msgid "Your booking already canceled!"
|
8277 |
msgstr "Vaše rezervace již byla zrušena!"
|
8278 |
|
@@ -8280,11 +8370,11 @@ msgstr "Vaše rezervace již byla zrušena!"
|
|
8280 |
msgid "#"
|
8281 |
msgstr "#"
|
8282 |
|
8283 |
-
#: app/features/profile/profile.php:61 app/libraries/main.php:
|
8284 |
msgid "Status"
|
8285 |
msgstr "Stav"
|
8286 |
|
8287 |
-
#: app/features/profile/profile.php:64 app/libraries/main.php:
|
8288 |
msgid "Attendees"
|
8289 |
msgstr "Účastníci"
|
8290 |
|
@@ -8340,12 +8430,12 @@ msgstr "Vyhledat"
|
|
8340 |
msgid "No search result."
|
8341 |
msgstr "Žádný výsledek vyhledávání."
|
8342 |
|
8343 |
-
#: app/features/search_bar/search_result.php:12 app/libraries/main.php:
|
8344 |
-
#: app/libraries/main.php:
|
8345 |
#: app/libraries/render.php:518 app/libraries/render.php:838
|
8346 |
#: app/modules/local-time/details.php:50 app/modules/local-time/type1.php:45
|
8347 |
#: app/modules/local-time/type2.php:47 app/modules/local-time/type3.php:45
|
8348 |
-
#: app/modules/next-event/details.php:145 app/skins/single.php:
|
8349 |
#: app/skins/single/default.php:124 app/skins/single/default.php:358
|
8350 |
#: app/skins/single/m1.php:46 app/skins/single/modern.php:222
|
8351 |
#, fuzzy
|
@@ -8371,7 +8461,7 @@ msgid "Insert speaker email address."
|
|
8371 |
msgstr "Vložte email řečníka."
|
8372 |
|
8373 |
#: app/features/speakers.php:135 app/features/speakers.php:208
|
8374 |
-
#: app/skins/single.php:
|
8375 |
#: app/skins/single/default.php:202 app/skins/single/default.php:268
|
8376 |
#: app/skins/single/default.php:435 app/skins/single/default.php:501
|
8377 |
#: app/skins/single/m1.php:126 app/skins/single/m1.php:180
|
@@ -8440,9 +8530,9 @@ msgstr ""
|
|
8440 |
"Poznámka: Řečníky můžete použít na vaší stránce úprav / přidání > sekce "
|
8441 |
"hodinového plánu a v sekci widgetu řečníka!"
|
8442 |
|
8443 |
-
#: app/features/wc.php:
|
8444 |
-
#: app/libraries/notifications.php:
|
8445 |
-
#: app/libraries/notifications.php:
|
8446 |
#, php-format
|
8447 |
msgid "%s to %s"
|
8448 |
msgstr ""
|
@@ -8484,9 +8574,9 @@ msgstr "Upgrade"
|
|
8484 |
msgid "day"
|
8485 |
msgstr "den"
|
8486 |
|
8487 |
-
#: app/libraries/factory.php:377 app/modules/countdown/details.php:
|
8488 |
-
#: app/skins/available_spot/tpl.php:147 app/skins/countdown/tpl.php:
|
8489 |
-
#: app/skins/countdown/tpl.php:
|
8490 |
msgid "days"
|
8491 |
msgstr "dny"
|
8492 |
|
@@ -8494,9 +8584,9 @@ msgstr "dny"
|
|
8494 |
msgid "hour"
|
8495 |
msgstr "hodina"
|
8496 |
|
8497 |
-
#: app/libraries/factory.php:379 app/modules/countdown/details.php:
|
8498 |
-
#: app/skins/available_spot/tpl.php:151 app/skins/countdown/tpl.php:
|
8499 |
-
#: app/skins/countdown/tpl.php:
|
8500 |
msgid "hours"
|
8501 |
msgstr "hodiny"
|
8502 |
|
@@ -8504,9 +8594,9 @@ msgstr "hodiny"
|
|
8504 |
msgid "minute"
|
8505 |
msgstr "minuta"
|
8506 |
|
8507 |
-
#: app/libraries/factory.php:381 app/modules/countdown/details.php:
|
8508 |
-
#: app/skins/available_spot/tpl.php:155 app/skins/countdown/tpl.php:
|
8509 |
-
#: app/skins/countdown/tpl.php:
|
8510 |
msgid "minutes"
|
8511 |
msgstr "minuty"
|
8512 |
|
@@ -8514,9 +8604,9 @@ msgstr "minuty"
|
|
8514 |
msgid "second"
|
8515 |
msgstr "vteřina"
|
8516 |
|
8517 |
-
#: app/libraries/factory.php:383 app/modules/countdown/details.php:
|
8518 |
-
#: app/skins/available_spot/tpl.php:159 app/skins/countdown/tpl.php:
|
8519 |
-
#: app/skins/countdown/tpl.php:
|
8520 |
msgid "seconds"
|
8521 |
msgstr "vteřiny"
|
8522 |
|
@@ -8532,33 +8622,33 @@ msgstr "Vlastní postranní panel pro jednu a modální stránku MEC."
|
|
8532 |
msgid "There is no excerpt because this is a protected post."
|
8533 |
msgstr "Neexistuje výňatek, protože se jedná o chráněný příspěvek."
|
8534 |
|
8535 |
-
#: app/libraries/main.php:337 app/libraries/main.php:
|
8536 |
-
#: app/libraries/main.php:
|
8537 |
msgid "Agenda View"
|
8538 |
msgstr "Zobrazení agendy"
|
8539 |
|
8540 |
-
#: app/libraries/main.php:338 app/libraries/main.php:
|
8541 |
-
#: app/libraries/main.php:
|
8542 |
msgid "Full Calendar"
|
8543 |
msgstr "Plný kalendář"
|
8544 |
|
8545 |
-
#: app/libraries/main.php:340 app/libraries/main.php:
|
8546 |
-
#: app/libraries/main.php:
|
8547 |
msgid "Calendar/Monthly View"
|
8548 |
msgstr "Kalendář / zobrazení měsíce"
|
8549 |
|
8550 |
-
#: app/libraries/main.php:343 app/libraries/main.php:
|
8551 |
-
#: app/libraries/main.php:
|
8552 |
msgid "Timetable View"
|
8553 |
msgstr "Zobrazení rozvrhu"
|
8554 |
|
8555 |
-
#: app/libraries/main.php:344 app/libraries/main.php:
|
8556 |
-
#: app/libraries/main.php:
|
8557 |
msgid "Masonry View"
|
8558 |
msgstr "Zobrazení zdi"
|
8559 |
|
8560 |
-
#: app/libraries/main.php:345 app/libraries/main.php:
|
8561 |
-
#: app/libraries/main.php:
|
8562 |
msgid "Map View"
|
8563 |
msgstr "Zobrazení mapy"
|
8564 |
|
@@ -8589,38 +8679,38 @@ msgstr "Zobrazení posuvníku"
|
|
8589 |
msgid "Timeline View"
|
8590 |
msgstr "Zobrazení rozvrhu"
|
8591 |
|
8592 |
-
#: app/libraries/main.php:390 app/libraries/main.php:
|
8593 |
-
#: app/libraries/main.php:
|
8594 |
msgid "SU"
|
8595 |
msgstr "NE"
|
8596 |
|
8597 |
-
#: app/libraries/main.php:391 app/libraries/main.php:
|
8598 |
-
#: app/libraries/main.php:
|
8599 |
msgid "MO"
|
8600 |
msgstr "PO"
|
8601 |
|
8602 |
-
#: app/libraries/main.php:392 app/libraries/main.php:
|
8603 |
-
#: app/libraries/main.php:
|
8604 |
msgid "TU"
|
8605 |
msgstr "ÚT"
|
8606 |
|
8607 |
-
#: app/libraries/main.php:393 app/libraries/main.php:
|
8608 |
-
#: app/libraries/main.php:
|
8609 |
msgid "WE"
|
8610 |
msgstr "ST"
|
8611 |
|
8612 |
-
#: app/libraries/main.php:394 app/libraries/main.php:
|
8613 |
-
#: app/libraries/main.php:
|
8614 |
msgid "TH"
|
8615 |
msgstr "ČT"
|
8616 |
|
8617 |
-
#: app/libraries/main.php:395 app/libraries/main.php:
|
8618 |
-
#: app/libraries/main.php:
|
8619 |
msgid "FR"
|
8620 |
msgstr "PÁ"
|
8621 |
|
8622 |
-
#: app/libraries/main.php:396 app/libraries/main.php:
|
8623 |
-
#: app/libraries/main.php:
|
8624 |
msgid "SA"
|
8625 |
msgstr "SO"
|
8626 |
|
@@ -8632,15 +8722,15 @@ msgstr "Nahrát pole"
|
|
8632 |
msgid "Additional Locations"
|
8633 |
msgstr "Další umístění"
|
8634 |
|
8635 |
-
#: app/libraries/main.php:
|
8636 |
msgid "Modules"
|
8637 |
msgstr "Moduly"
|
8638 |
|
8639 |
-
#: app/libraries/main.php:
|
8640 |
msgid "New Addons For MEC! Now Customize MEC in Elementor"
|
8641 |
msgstr "Nové doplňky pro MEC! Nyní přizpůsobte MEC v Elementoru"
|
8642 |
|
8643 |
-
#: app/libraries/main.php:
|
8644 |
msgid ""
|
8645 |
"The time has come at last, and the new practical add-ons for MEC have been "
|
8646 |
"released. This is a revolution in the world of Event Calendars. We have "
|
@@ -8651,7 +8741,7 @@ msgstr ""
|
|
8651 |
"revoluce ve světě kalendářů událostí. Poskytli jsme vám širokou škálu funkcí "
|
8652 |
"pouze tím, že máme 4 doplňky, viz níže:"
|
8653 |
|
8654 |
-
#: app/libraries/main.php:
|
8655 |
msgid ""
|
8656 |
"<strong>WooCommerce Integration:</strong> You can now purchase ticket (as "
|
8657 |
"products) and Woo products at the same time."
|
@@ -8659,7 +8749,7 @@ msgstr ""
|
|
8659 |
"<strong>Integrace WooCommerce:</strong> Nyní si můžete zakoupit lístek (jako "
|
8660 |
"produkty) a produkty Woo současně."
|
8661 |
|
8662 |
-
#: app/libraries/main.php:
|
8663 |
msgid ""
|
8664 |
"<strong>Event API:</strong> display your events (shortcodes/single event) on "
|
8665 |
"other websites without MEC. Use JSON output features to make your Apps "
|
@@ -8669,173 +8759,173 @@ msgstr ""
|
|
8669 |
"událost) na jiných webech bez MEC. Použijte výstupní funkce JSON, aby vaše "
|
8670 |
"aplikace byly kompatibilní s MEC."
|
8671 |
|
8672 |
-
#: app/libraries/main.php:
|
8673 |
msgid ""
|
8674 |
"<strong>Multisite Event Sync:</strong> Sync events between your subsites and "
|
8675 |
"main websites. Changes in the main one will be inherited by the subsites. "
|
8676 |
"you can set these up in the admin panel."
|
8677 |
msgstr ""
|
8678 |
|
8679 |
-
#: app/libraries/main.php:
|
8680 |
msgid ""
|
8681 |
"<strong>User Dashboard:</strong> Create exclusive pages for users. These "
|
8682 |
"pages can contain ticket purchase information, information about registered "
|
8683 |
"events. Users can now log in to purchase tickets."
|
8684 |
msgstr ""
|
8685 |
|
8686 |
-
#: app/libraries/main.php:
|
8687 |
msgid "find out more"
|
8688 |
msgstr ""
|
8689 |
|
8690 |
-
#: app/libraries/main.php:
|
8691 |
msgid "Events at this location"
|
8692 |
msgstr "Události na tomto místě"
|
8693 |
|
8694 |
-
#: app/libraries/main.php:
|
8695 |
msgid "Event at this location"
|
8696 |
msgstr "Událost na tomto místě"
|
8697 |
|
8698 |
-
#: app/libraries/main.php:
|
8699 |
msgid "Facebook"
|
8700 |
msgstr "Facebook"
|
8701 |
|
8702 |
-
#: app/libraries/main.php:
|
8703 |
msgid "Twitter"
|
8704 |
msgstr "Twitter"
|
8705 |
|
8706 |
-
#: app/libraries/main.php:
|
8707 |
msgid "Linkedin"
|
8708 |
msgstr "Linkedin"
|
8709 |
|
8710 |
-
#: app/libraries/main.php:
|
8711 |
msgid "VK"
|
8712 |
msgstr "VK"
|
8713 |
|
8714 |
-
#: app/libraries/main.php:
|
8715 |
msgid "Tumblr"
|
8716 |
msgstr ""
|
8717 |
|
8718 |
-
#: app/libraries/main.php:
|
8719 |
msgid "Pinterest"
|
8720 |
msgstr ""
|
8721 |
|
8722 |
-
#: app/libraries/main.php:
|
8723 |
msgid "Flipboard"
|
8724 |
msgstr ""
|
8725 |
|
8726 |
-
#: app/libraries/main.php:
|
8727 |
#, fuzzy
|
8728 |
#| msgid "Tickets"
|
8729 |
msgid "GetPocket"
|
8730 |
msgstr "Vstupenky"
|
8731 |
|
8732 |
-
#: app/libraries/main.php:
|
8733 |
msgid "Reddit"
|
8734 |
msgstr ""
|
8735 |
|
8736 |
-
#: app/libraries/main.php:
|
8737 |
msgid "WhatsApp"
|
8738 |
msgstr ""
|
8739 |
|
8740 |
-
#: app/libraries/main.php:
|
8741 |
msgid "Telegram"
|
8742 |
msgstr ""
|
8743 |
|
8744 |
-
#: app/libraries/main.php:
|
8745 |
msgid "Share on Facebook"
|
8746 |
msgstr "Sdílet na Facebooku"
|
8747 |
|
8748 |
-
#: app/libraries/main.php:
|
8749 |
msgid "Tweet"
|
8750 |
msgstr "Tweet"
|
8751 |
|
8752 |
-
#: app/libraries/main.php:
|
8753 |
#, fuzzy
|
8754 |
#| msgid "Share on Facebook"
|
8755 |
msgid "Share on Tumblr"
|
8756 |
msgstr "Sdílet na Facebooku"
|
8757 |
|
8758 |
-
#: app/libraries/main.php:
|
8759 |
msgid "Share on Pinterest"
|
8760 |
msgstr ""
|
8761 |
|
8762 |
-
#: app/libraries/main.php:
|
8763 |
#, fuzzy
|
8764 |
#| msgid "Share on Facebook"
|
8765 |
msgid "Share on Flipboard"
|
8766 |
msgstr "Sdílet na Facebooku"
|
8767 |
|
8768 |
-
#: app/libraries/main.php:
|
8769 |
#, fuzzy
|
8770 |
#| msgid "Share on Facebook"
|
8771 |
msgid "Share on GetPocket"
|
8772 |
msgstr "Sdílet na Facebooku"
|
8773 |
|
8774 |
-
#: app/libraries/main.php:
|
8775 |
#, fuzzy
|
8776 |
#| msgid "Share on Facebook"
|
8777 |
msgid "Share on Reddit"
|
8778 |
msgstr "Sdílet na Facebooku"
|
8779 |
|
8780 |
-
#: app/libraries/main.php:
|
8781 |
msgid "Share on Telegram"
|
8782 |
msgstr ""
|
8783 |
|
8784 |
-
#: app/libraries/main.php:
|
8785 |
msgid "Share on WhatsApp"
|
8786 |
msgstr ""
|
8787 |
|
8788 |
-
#: app/libraries/main.php:
|
8789 |
msgid "Custom Shortcode"
|
8790 |
msgstr "Uživatelské zkrácené kódy"
|
8791 |
|
8792 |
-
#: app/libraries/main.php:
|
8793 |
msgid "Your booking already verified!"
|
8794 |
msgstr "Vaše rezervace již byla ověřena!"
|
8795 |
|
8796 |
-
#: app/libraries/main.php:
|
8797 |
msgid "Your booking successfully verified."
|
8798 |
msgstr "Vaše rezervace byla úspěšně ověřena."
|
8799 |
|
8800 |
-
#: app/libraries/main.php:
|
8801 |
msgid "Your booking cannot verify!"
|
8802 |
msgstr "Vaši rezervaci nelze ověřit!"
|
8803 |
|
8804 |
-
#: app/libraries/main.php:
|
8805 |
#, fuzzy
|
8806 |
#| msgid "The event is finished."
|
8807 |
msgid "The event is already finished!"
|
8808 |
msgstr "Událost je ukončena."
|
8809 |
|
8810 |
-
#: app/libraries/main.php:
|
8811 |
msgid "The cancelation window is passed."
|
8812 |
msgstr ""
|
8813 |
|
8814 |
-
#: app/libraries/main.php:
|
8815 |
msgid "Your booking successfully canceled."
|
8816 |
msgstr "Vaše rezervace byla úspěšně zrušena."
|
8817 |
|
8818 |
-
#: app/libraries/main.php:
|
8819 |
msgid "Your booking cannot be canceled."
|
8820 |
msgstr "Vaši rezervaci nelze zrušit."
|
8821 |
|
8822 |
-
#: app/libraries/main.php:
|
8823 |
msgid "You canceled the payment successfully."
|
8824 |
msgstr "Platbu jste úspěšně zrušili."
|
8825 |
|
8826 |
-
#: app/libraries/main.php:
|
8827 |
msgid "You returned from payment gateway successfully."
|
8828 |
msgstr "Úspěšně jste se vrátili z platební brány."
|
8829 |
|
8830 |
-
#: app/libraries/main.php:
|
8831 |
msgid "Cannot find the invoice!"
|
8832 |
msgstr "Fakturu nelze najít!"
|
8833 |
|
8834 |
-
#: app/libraries/main.php:
|
8835 |
msgid "Invoice is invalid."
|
8836 |
msgstr "Faktura je neplatná."
|
8837 |
|
8838 |
-
#: app/libraries/main.php:
|
8839 |
#, fuzzy
|
8840 |
#| msgid ""
|
8841 |
#| "Your booking still is not confirmed. You able download it after "
|
@@ -8845,245 +8935,245 @@ msgid ""
|
|
8845 |
msgstr ""
|
8846 |
"Vaše rezervace stále není potvrzena. Můžete si ji stáhnout po potvrzení!"
|
8847 |
|
8848 |
-
#: app/libraries/main.php:
|
8849 |
msgid "Booking Not Confirmed."
|
8850 |
msgstr "Rezervace nebyla potvrzena."
|
8851 |
|
8852 |
-
#: app/libraries/main.php:
|
8853 |
msgid "Cannot find the booking!"
|
8854 |
msgstr "Nemohu najít rezervaci!"
|
8855 |
|
8856 |
-
#: app/libraries/main.php:
|
8857 |
msgid "Booking is invalid."
|
8858 |
msgstr "Rezervace není platná."
|
8859 |
|
8860 |
-
#: app/libraries/main.php:
|
8861 |
#, php-format
|
8862 |
msgid "%s Invoice"
|
8863 |
msgstr "%s Faktura"
|
8864 |
|
8865 |
-
#: app/libraries/main.php:
|
8866 |
#, fuzzy
|
8867 |
#| msgid "Date and Time"
|
8868 |
msgid "Date & Time"
|
8869 |
msgstr "Datum a čas"
|
8870 |
|
8871 |
-
#: app/libraries/main.php:
|
8872 |
#, fuzzy
|
8873 |
#| msgid "Booking Price"
|
8874 |
msgid "Booking Fields"
|
8875 |
msgstr "Cena rezervace"
|
8876 |
|
8877 |
-
#: app/libraries/main.php:
|
8878 |
msgid "Billing"
|
8879 |
msgstr "Fakturace"
|
8880 |
|
8881 |
-
#: app/libraries/main.php:
|
8882 |
#, fuzzy
|
8883 |
#| msgid "Coupons"
|
8884 |
msgid "Coupon Code"
|
8885 |
msgstr "Kupóny"
|
8886 |
|
8887 |
-
#: app/libraries/main.php:
|
8888 |
msgid "Total"
|
8889 |
msgstr "Celkem"
|
8890 |
|
8891 |
-
#: app/libraries/main.php:
|
8892 |
#, fuzzy
|
8893 |
#| msgid "Payment Gateways"
|
8894 |
msgid "Payment"
|
8895 |
msgstr "Platební brány"
|
8896 |
|
8897 |
-
#: app/libraries/main.php:
|
8898 |
#, fuzzy
|
8899 |
#| msgid "Payment Gateways"
|
8900 |
msgid "Gateway"
|
8901 |
msgstr "Platební brány"
|
8902 |
|
8903 |
-
#: app/libraries/main.php:
|
8904 |
#, fuzzy
|
8905 |
#| msgid "Payment Gateways"
|
8906 |
msgid "Payment Time"
|
8907 |
msgstr "Platební brány"
|
8908 |
|
8909 |
-
#: app/libraries/main.php:
|
8910 |
msgid "Request is not valid."
|
8911 |
msgstr "Požadavek není platný."
|
8912 |
|
8913 |
-
#: app/libraries/main.php:
|
8914 |
msgid "iCal export stopped!"
|
8915 |
msgstr "iCal export byl zastaven!"
|
8916 |
|
8917 |
-
#: app/libraries/main.php:
|
8918 |
-
#: app/libraries/main.php:
|
8919 |
-
#: app/libraries/main.php:
|
8920 |
-
#: app/libraries/main.php:
|
8921 |
-
#: app/libraries/main.php:
|
8922 |
-
#: app/libraries/main.php:
|
8923 |
-
#: app/libraries/main.php:
|
8924 |
-
#: app/libraries/main.php:
|
8925 |
msgid "Sort"
|
8926 |
msgstr "Seřadit"
|
8927 |
|
8928 |
-
#: app/libraries/main.php:
|
8929 |
-
#: app/libraries/main.php:
|
8930 |
-
#: app/libraries/main.php:
|
8931 |
-
#: app/libraries/main.php:
|
8932 |
-
#: app/libraries/main.php:
|
8933 |
-
#: app/libraries/main.php:
|
8934 |
-
#: app/libraries/main.php:
|
8935 |
msgid "Required Field"
|
8936 |
msgstr "Požadovaná pole"
|
8937 |
|
8938 |
-
#: app/libraries/main.php:
|
8939 |
-
#: app/libraries/main.php:
|
8940 |
-
#: app/libraries/main.php:
|
8941 |
-
#: app/libraries/main.php:
|
8942 |
-
#: app/libraries/main.php:
|
8943 |
-
#: app/libraries/main.php:
|
8944 |
-
#: app/libraries/main.php:
|
8945 |
msgid "Insert a label for this field"
|
8946 |
msgstr "Vložte štítek pro toto pole"
|
8947 |
|
8948 |
-
#: app/libraries/main.php:
|
8949 |
msgid "HTML and shortcode are allowed."
|
8950 |
msgstr "HTML a zkrácené kódy jsou povoleny."
|
8951 |
|
8952 |
-
#: app/libraries/main.php:
|
8953 |
-
#: app/libraries/main.php:
|
8954 |
msgid "Option"
|
8955 |
msgstr "Možnost"
|
8956 |
|
8957 |
-
#: app/libraries/main.php:
|
8958 |
#, php-format
|
8959 |
msgid "Instead of %s, the page title with a link will be show."
|
8960 |
msgstr "Místo%s se zobrazí název stránky s odkazem."
|
8961 |
|
8962 |
-
#: app/libraries/main.php:
|
8963 |
msgid "Agreement Page"
|
8964 |
msgstr "Stránka smlouvy"
|
8965 |
|
8966 |
-
#: app/libraries/main.php:
|
8967 |
msgid "Checked by default"
|
8968 |
msgstr "Ve výchozím nastavení zaškrtnuto"
|
8969 |
|
8970 |
-
#: app/libraries/main.php:
|
8971 |
msgid "Unchecked by default"
|
8972 |
msgstr "Ve výchozím nastavení není zaškrtnuto"
|
8973 |
|
8974 |
-
#: app/libraries/main.php:
|
8975 |
msgid "Insert a label for this option"
|
8976 |
msgstr "Vložte štítek pro tuto možnost"
|
8977 |
|
8978 |
-
#: app/libraries/main.php:
|
8979 |
msgid "Free"
|
8980 |
msgstr "Zdarma"
|
8981 |
|
8982 |
-
#: app/libraries/main.php:
|
8983 |
msgid "M.E. Calender"
|
8984 |
msgstr "M.E. Kalendář"
|
8985 |
|
8986 |
-
#: app/libraries/main.php:
|
8987 |
#, php-format
|
8988 |
msgid "Copy of %s"
|
8989 |
msgstr "Kopie %s"
|
8990 |
|
8991 |
-
#: app/libraries/main.php:
|
8992 |
msgid "Booked an event."
|
8993 |
msgstr "Událost byla rezervována."
|
8994 |
|
8995 |
-
#: app/libraries/main.php:
|
8996 |
#, php-format
|
8997 |
msgid "%s booked %s event."
|
8998 |
msgstr "%s zarezervoval %s událost."
|
8999 |
|
9000 |
-
#: app/libraries/main.php:
|
9001 |
msgid "Taxonomies"
|
9002 |
msgstr "Taxonomie"
|
9003 |
|
9004 |
# Mrknout na kontext
|
9005 |
-
#: app/libraries/main.php:
|
9006 |
msgid "Category Plural Label"
|
9007 |
msgstr "Štítek množné kategorie"
|
9008 |
|
9009 |
# Mrknout na kontext
|
9010 |
-
#: app/libraries/main.php:
|
9011 |
msgid "Category Singular Label"
|
9012 |
msgstr "Štítek jednotné kategorie"
|
9013 |
|
9014 |
-
#: app/libraries/main.php:
|
9015 |
msgid "Label Plural Label"
|
9016 |
msgstr "Štítek množného štítku"
|
9017 |
|
9018 |
-
#: app/libraries/main.php:
|
9019 |
msgid "Label Singular Label"
|
9020 |
msgstr "Štítek jednotného štítku"
|
9021 |
|
9022 |
-
#: app/libraries/main.php:
|
9023 |
msgid "label"
|
9024 |
msgstr "štítek"
|
9025 |
|
9026 |
-
#: app/libraries/main.php:
|
9027 |
msgid "Location Plural Label"
|
9028 |
msgstr "Štítek množného umístění"
|
9029 |
|
9030 |
-
#: app/libraries/main.php:
|
9031 |
msgid "Location Singular Label"
|
9032 |
msgstr "Štítek jednotného umístění"
|
9033 |
|
9034 |
-
#: app/libraries/main.php:
|
9035 |
msgid "Organizer Plural Label"
|
9036 |
msgstr "Štítek množného organizátora"
|
9037 |
|
9038 |
-
#: app/libraries/main.php:
|
9039 |
msgid "Organizer Singular Label"
|
9040 |
msgstr "Štítek jednotného organizátora"
|
9041 |
|
9042 |
-
#: app/libraries/main.php:
|
9043 |
msgid "Speaker Plural Label"
|
9044 |
msgstr "Štítek množného řečníka"
|
9045 |
|
9046 |
-
#: app/libraries/main.php:
|
9047 |
msgid "Speaker Singular Label"
|
9048 |
msgstr "Štítek jednotného řečníka"
|
9049 |
|
9050 |
-
#: app/libraries/main.php:
|
9051 |
msgid "Sunday abbreviation"
|
9052 |
msgstr "Neděle zkratka"
|
9053 |
|
9054 |
-
#: app/libraries/main.php:
|
9055 |
msgid "Monday abbreviation"
|
9056 |
msgstr "Pondělí zkratka"
|
9057 |
|
9058 |
-
#: app/libraries/main.php:
|
9059 |
msgid "Tuesday abbreviation"
|
9060 |
msgstr "Úterý zkratka"
|
9061 |
|
9062 |
-
#: app/libraries/main.php:
|
9063 |
msgid "Wednesday abbreviation"
|
9064 |
msgstr "Středa zkratka"
|
9065 |
|
9066 |
-
#: app/libraries/main.php:
|
9067 |
msgid "Thursday abbreviation"
|
9068 |
msgstr "Čtvrtek zkratka"
|
9069 |
|
9070 |
-
#: app/libraries/main.php:
|
9071 |
msgid "Friday abbreviation"
|
9072 |
msgstr "Pátek zkratka"
|
9073 |
|
9074 |
-
#: app/libraries/main.php:
|
9075 |
msgid "Saturday abbreviation"
|
9076 |
msgstr "Sobota zkratka"
|
9077 |
|
9078 |
-
#: app/libraries/main.php:
|
9079 |
msgid "Others"
|
9080 |
msgstr "Další"
|
9081 |
|
9082 |
-
#: app/libraries/main.php:
|
9083 |
msgid "Booking Success Message"
|
9084 |
msgstr "Zpráva o úspěchu rezervace"
|
9085 |
|
9086 |
-
#: app/libraries/main.php:
|
9087 |
#, fuzzy
|
9088 |
#| msgid ""
|
9089 |
#| "Thanks for your booking. Your tickets booked, booking verification might "
|
@@ -9095,55 +9185,55 @@ msgstr ""
|
|
9095 |
"Děkujeme za vaši rezervaci. Vaše vstupenky jsou rezervovány, může být nutné "
|
9096 |
"ověřit rezervaci. Zkontrolujte prosím svůj e-mail."
|
9097 |
|
9098 |
-
#: app/libraries/main.php:
|
9099 |
#, fuzzy
|
9100 |
#| msgid "Booking Success Message"
|
9101 |
msgid "Booking Restriction Message 1"
|
9102 |
msgstr "Zpráva o úspěchu rezervace"
|
9103 |
|
9104 |
-
#: app/libraries/main.php:
|
9105 |
#, php-format
|
9106 |
msgid ""
|
9107 |
"You selected %s tickets to book but maximum number of tikets per user is %s "
|
9108 |
"tickets."
|
9109 |
msgstr ""
|
9110 |
|
9111 |
-
#: app/libraries/main.php:
|
9112 |
#, fuzzy
|
9113 |
#| msgid "Booking Success Message"
|
9114 |
msgid "Booking Restriction Message 2"
|
9115 |
msgstr "Zpráva o úspěchu rezervace"
|
9116 |
|
9117 |
-
#: app/libraries/main.php:
|
9118 |
#, php-format
|
9119 |
msgid ""
|
9120 |
"You booked %s tickets till now but maximum number of tickets per user is %s "
|
9121 |
"tickets."
|
9122 |
msgstr ""
|
9123 |
|
9124 |
-
#: app/libraries/main.php:
|
9125 |
#, fuzzy
|
9126 |
#| msgid "Booking Success Message"
|
9127 |
msgid "Booking IP Restriction Message"
|
9128 |
msgstr "Zpráva o úspěchu rezervace"
|
9129 |
|
9130 |
-
#: app/libraries/main.php:
|
9131 |
#, php-format
|
9132 |
msgid "Maximum allowed number of tickets that you can book is %s."
|
9133 |
msgstr ""
|
9134 |
|
9135 |
-
#: app/libraries/main.php:
|
9136 |
#: app/widgets/single.php:131
|
9137 |
msgid "Register Button"
|
9138 |
msgstr "Registrační tlačítko"
|
9139 |
|
9140 |
-
#: app/libraries/main.php:
|
9141 |
#: app/skins/available_spot/tpl.php:208 app/skins/carousel/render.php:106
|
9142 |
#: app/skins/carousel/render.php:144 app/skins/grid/render.php:101
|
9143 |
#: app/skins/grid/render.php:159 app/skins/grid/render.php:217
|
9144 |
#: app/skins/grid/render.php:238 app/skins/list/render.php:70
|
9145 |
#: app/skins/list/render.php:164 app/skins/masonry/render.php:149
|
9146 |
-
#: app/skins/single.php:
|
9147 |
#: app/skins/single/default.php:287 app/skins/single/default.php:289
|
9148 |
#: app/skins/single/default.php:520 app/skins/single/default.php:522
|
9149 |
#: app/skins/single/m1.php:143 app/skins/single/m1.php:145
|
@@ -9155,218 +9245,218 @@ msgstr "Registrační tlačítko"
|
|
9155 |
msgid "REGISTER"
|
9156 |
msgstr "REGISTROVAT"
|
9157 |
|
9158 |
-
#: app/libraries/main.php:
|
9159 |
msgid "View Detail Button"
|
9160 |
msgstr "Tlačítko Zobrazit detail"
|
9161 |
|
9162 |
-
#: app/libraries/main.php:
|
9163 |
#: app/skins/carousel/render.php:106 app/skins/carousel/render.php:144
|
9164 |
#: app/skins/grid/render.php:101 app/skins/grid/render.php:159
|
9165 |
#: app/skins/grid/render.php:217 app/skins/grid/render.php:238
|
9166 |
#: app/skins/list/render.php:70 app/skins/list/render.php:164
|
9167 |
-
#: app/skins/masonry/render.php:149 app/skins/single.php:
|
9168 |
#: app/skins/slider/render.php:70 app/skins/slider/render.php:93
|
9169 |
#: app/skins/slider/render.php:115 app/skins/slider/render.php:138
|
9170 |
#: app/skins/slider/render.php:172
|
9171 |
msgid "View Detail"
|
9172 |
msgstr "Zobrazit detail"
|
9173 |
|
9174 |
-
#: app/libraries/main.php:
|
9175 |
msgid "Event Detail Button"
|
9176 |
msgstr "Tlačítko Detail události"
|
9177 |
|
9178 |
-
#: app/libraries/main.php:
|
9179 |
msgid "Event Detail"
|
9180 |
msgstr "Zobrazit událost"
|
9181 |
|
9182 |
-
#: app/libraries/main.php:
|
9183 |
msgid "More Info Link"
|
9184 |
msgstr "Odkaz na více informací"
|
9185 |
|
9186 |
-
#: app/libraries/main.php:
|
9187 |
msgid "Ticket (Singular)"
|
9188 |
msgstr "Vstupenka (Jednotné)"
|
9189 |
|
9190 |
-
#: app/libraries/main.php:
|
9191 |
msgid "Tickets (Plural)"
|
9192 |
msgstr "Vstupenky (Množné)"
|
9193 |
|
9194 |
-
#: app/libraries/main.php:
|
9195 |
msgid "EventON"
|
9196 |
msgstr "EventON"
|
9197 |
|
9198 |
-
#: app/libraries/main.php:
|
9199 |
msgid "The Events Calendar"
|
9200 |
msgstr "The Events Calendar"
|
9201 |
|
9202 |
-
#: app/libraries/main.php:
|
9203 |
msgid "Events Schedule WP Plugin"
|
9204 |
msgstr "Events Schedule WP Plugin"
|
9205 |
|
9206 |
-
#: app/libraries/main.php:
|
9207 |
msgid "Calendarize It"
|
9208 |
msgstr "Calendarize It"
|
9209 |
|
9210 |
-
#: app/libraries/main.php:
|
9211 |
#, fuzzy
|
9212 |
#| msgid "Event Speakers"
|
9213 |
msgid "Event Espresso"
|
9214 |
msgstr "Řečník události"
|
9215 |
|
9216 |
-
#: app/libraries/main.php:
|
9217 |
#, fuzzy
|
9218 |
#| msgid "Event Repeating (Recurring events)"
|
9219 |
msgid "Events Manager (Recurring)"
|
9220 |
msgstr "Opakování události (opakující se události)"
|
9221 |
|
9222 |
-
#: app/libraries/main.php:
|
9223 |
#, fuzzy
|
9224 |
#| msgid "Modern Events Calendar (Lite)"
|
9225 |
msgid "Events Manager (Single)"
|
9226 |
msgstr "Modern Events Calendar (Lite)"
|
9227 |
|
9228 |
-
#: app/libraries/main.php:
|
9229 |
msgid "Pending"
|
9230 |
msgstr "Nevyřízený"
|
9231 |
|
9232 |
-
#: app/libraries/main.php:
|
9233 |
msgid "Waiting"
|
9234 |
msgstr "Čekající"
|
9235 |
|
9236 |
-
#: app/libraries/main.php:
|
9237 |
#, fuzzy
|
9238 |
#| msgid "Sunday"
|
9239 |
msgid "Sun"
|
9240 |
msgstr "Neděle"
|
9241 |
|
9242 |
-
#: app/libraries/main.php:
|
9243 |
#, fuzzy
|
9244 |
#| msgid "Monday"
|
9245 |
msgid "Mon"
|
9246 |
msgstr "Pondělí"
|
9247 |
|
9248 |
-
#: app/libraries/main.php:
|
9249 |
#, fuzzy
|
9250 |
#| msgid "Tel"
|
9251 |
msgid "Tue"
|
9252 |
msgstr "Tel"
|
9253 |
|
9254 |
-
#: app/libraries/main.php:
|
9255 |
msgid "Wed"
|
9256 |
msgstr ""
|
9257 |
|
9258 |
-
#: app/libraries/main.php:
|
9259 |
msgid "Thu"
|
9260 |
msgstr ""
|
9261 |
|
9262 |
-
#: app/libraries/main.php:
|
9263 |
#, fuzzy
|
9264 |
#| msgid "Friday"
|
9265 |
msgid "Fri"
|
9266 |
msgstr "Pátek"
|
9267 |
|
9268 |
-
#: app/libraries/main.php:
|
9269 |
#, fuzzy
|
9270 |
#| msgid "Start"
|
9271 |
msgid "Sat"
|
9272 |
msgstr "Začátek"
|
9273 |
|
9274 |
-
#: app/libraries/main.php:
|
9275 |
#: app/libraries/render.php:432
|
9276 |
msgid "Skin controller does not exist."
|
9277 |
msgstr "Ovladač vzhledu neexistuje."
|
9278 |
|
9279 |
-
#: app/libraries/main.php:
|
9280 |
msgid "Sold Out"
|
9281 |
msgstr "Vyprodáno"
|
9282 |
|
9283 |
-
#: app/libraries/main.php:
|
9284 |
#, fuzzy
|
9285 |
#| msgid "Ticket"
|
9286 |
msgid "Last Few Tickets"
|
9287 |
msgstr "Vstupenka"
|
9288 |
|
9289 |
-
#: app/libraries/main.php:
|
9290 |
#, fuzzy
|
9291 |
#| msgid "minutes"
|
9292 |
msgid "Minutes"
|
9293 |
msgstr "minuty"
|
9294 |
|
9295 |
-
#: app/libraries/main.php:
|
9296 |
msgid "AM / PM"
|
9297 |
msgstr ""
|
9298 |
|
9299 |
-
#: app/libraries/main.php:
|
9300 |
msgid "AM"
|
9301 |
msgstr "dop."
|
9302 |
|
9303 |
-
#: app/libraries/main.php:
|
9304 |
msgid "PM"
|
9305 |
msgstr "odp."
|
9306 |
|
9307 |
-
#: app/libraries/main.php:
|
9308 |
msgid "Ongoing..."
|
9309 |
msgstr ""
|
9310 |
|
9311 |
-
#: app/libraries/main.php:
|
9312 |
#, fuzzy
|
9313 |
#| msgid "Expired Events"
|
9314 |
msgid "Expired!"
|
9315 |
msgstr "Události vypršely"
|
9316 |
|
9317 |
-
#: app/libraries/notifications.php:
|
9318 |
msgid "Please verify your email."
|
9319 |
msgstr "Prosím, ověřte svůj e-mail."
|
9320 |
|
9321 |
-
#: app/libraries/notifications.php:
|
9322 |
msgid "Your booking is received."
|
9323 |
msgstr "Vaše rezervace je přijata."
|
9324 |
|
9325 |
-
#: app/libraries/notifications.php:
|
9326 |
msgid "Your booking is confirmed."
|
9327 |
msgstr "Vaše rezervace je potvrzena."
|
9328 |
|
9329 |
-
#: app/libraries/notifications.php:
|
9330 |
msgid "booking canceled."
|
9331 |
msgstr "rezervace zrušena."
|
9332 |
|
9333 |
-
#: app/libraries/notifications.php:
|
9334 |
msgid "A new booking is received."
|
9335 |
msgstr "Je přijata nová rezervace."
|
9336 |
|
9337 |
-
#: app/libraries/notifications.php:
|
9338 |
msgid "A new event is added."
|
9339 |
msgstr "Je přidána se nová událost."
|
9340 |
|
9341 |
-
#: app/libraries/notifications.php:
|
9342 |
msgid "Your event is published."
|
9343 |
msgstr "Vaše událost je zveřejněna."
|
9344 |
|
9345 |
-
#: app/libraries/notifications.php:
|
9346 |
msgid "to"
|
9347 |
msgstr "do"
|
9348 |
|
9349 |
-
#: app/libraries/notifications.php:
|
9350 |
msgid "+ Add to Google Calendar"
|
9351 |
msgstr "+ Přidat do Google kalendáře"
|
9352 |
|
9353 |
-
#: app/libraries/notifications.php:
|
9354 |
#, fuzzy
|
9355 |
#| msgid "+ iCal export"
|
9356 |
msgid "+ iCal / Outlook export"
|
9357 |
msgstr "+ iCal export"
|
9358 |
|
9359 |
-
#: app/libraries/notifications.php:
|
9360 |
#, fuzzy, php-format
|
9361 |
#| msgid "+ Add to Google Calendar"
|
9362 |
msgid "+ %s to Google Calendar"
|
9363 |
msgstr "+ Přidat do Google kalendáře"
|
9364 |
|
9365 |
-
#: app/libraries/notifications.php:
|
9366 |
msgid "Yes"
|
9367 |
msgstr "Ano"
|
9368 |
|
9369 |
-
#: app/libraries/notifications.php:
|
9370 |
msgid "No"
|
9371 |
msgstr "Ne"
|
9372 |
|
@@ -9377,10 +9467,16 @@ msgid "Select"
|
|
9377 |
msgstr "Vybrat vše"
|
9378 |
|
9379 |
#: app/libraries/skins.php:1258 app/libraries/skins.php:1259
|
9380 |
-
#: app/modules/booking/steps/tickets.php:
|
9381 |
msgid "Book Event"
|
9382 |
msgstr "Rezervovat událost"
|
9383 |
|
|
|
|
|
|
|
|
|
|
|
|
|
9384 |
#: app/modules/attendees-list/details.php:42
|
9385 |
msgid "Event Attendees"
|
9386 |
msgstr "Účastníci akce"
|
@@ -9404,46 +9500,46 @@ msgstr[0] "%s vstupenky"
|
|
9404 |
msgstr[1] "%s vstupenky"
|
9405 |
msgstr[2] "%s vstupenky"
|
9406 |
|
9407 |
-
#: app/modules/booking/steps/checkout.php:
|
9408 |
msgid "Checkout"
|
9409 |
msgstr "Překontrolovat"
|
9410 |
|
9411 |
-
#: app/modules/booking/steps/checkout.php:
|
9412 |
#, fuzzy
|
9413 |
#| msgid "Ticket Name"
|
9414 |
msgid "Ticket(s) Name"
|
9415 |
msgstr "Název vstupenky"
|
9416 |
|
9417 |
-
#: app/modules/booking/steps/checkout.php:
|
9418 |
msgid "Qty"
|
9419 |
msgstr ""
|
9420 |
|
9421 |
-
#: app/modules/booking/steps/checkout.php:
|
9422 |
#, fuzzy
|
9423 |
#| msgid "Amount"
|
9424 |
msgid "Amout"
|
9425 |
msgstr "Množství"
|
9426 |
|
9427 |
-
#: app/modules/booking/steps/checkout.php:
|
9428 |
#, fuzzy
|
9429 |
#| msgid "Total"
|
9430 |
msgid "Total Due"
|
9431 |
msgstr "Celkem"
|
9432 |
|
9433 |
-
#: app/modules/booking/steps/checkout.php:
|
9434 |
msgid "Discount Coupon"
|
9435 |
msgstr "Slevový kupon"
|
9436 |
|
9437 |
-
#: app/modules/booking/steps/checkout.php:
|
9438 |
msgid "Apply Coupon"
|
9439 |
msgstr "Aplikovat kupon"
|
9440 |
|
9441 |
-
#: app/modules/booking/steps/checkout.php:
|
9442 |
#: app/modules/booking/steps/form.php:349
|
9443 |
msgid "Back"
|
9444 |
msgstr ""
|
9445 |
|
9446 |
-
#: app/modules/booking/steps/checkout.php:
|
9447 |
msgid "Free Booking"
|
9448 |
msgstr "Rezervace zdarma"
|
9449 |
|
@@ -9462,45 +9558,46 @@ msgid "Username"
|
|
9462 |
msgstr ""
|
9463 |
|
9464 |
#: app/modules/booking/steps/form.php:350
|
|
|
9465 |
#, fuzzy
|
9466 |
#| msgid "Location"
|
9467 |
msgid "Add to Cart"
|
9468 |
msgstr "Umístění"
|
9469 |
|
9470 |
-
#: app/modules/booking/steps/tickets.php:
|
9471 |
msgid ""
|
9472 |
"By booking this event you can attend all occurrences. Some of them are "
|
9473 |
"listed below but there might be more."
|
9474 |
msgstr ""
|
9475 |
|
9476 |
-
#: app/modules/booking/steps/tickets.php:
|
9477 |
#, fuzzy
|
9478 |
#| msgid "Ticket time"
|
9479 |
msgid "1 Ticket selected."
|
9480 |
msgstr "Čas vstupenky"
|
9481 |
|
9482 |
-
#: app/modules/booking/steps/tickets.php:
|
9483 |
-
#: app/modules/booking/steps/tickets.php:
|
9484 |
#, php-format
|
9485 |
msgid "Available %s: <span>%s</span>"
|
9486 |
msgstr "K dispozici %s: <span>%s</span>"
|
9487 |
|
9488 |
-
#: app/modules/booking/steps/tickets.php:
|
9489 |
#, php-format
|
9490 |
msgid "The %s ticket sales has stopped!"
|
9491 |
msgstr ""
|
9492 |
|
9493 |
-
#: app/modules/booking/steps/tickets.php:
|
9494 |
#, php-format
|
9495 |
msgid "The %s ticket is sold out. You can try another ticket or another date."
|
9496 |
msgstr ""
|
9497 |
"Vstupenka %s je vyprodána. Můžete vyzkoušet jinou vstupenku nebo jiné datum."
|
9498 |
|
9499 |
-
#: app/modules/countdown/details.php:
|
9500 |
msgid "The event is finished."
|
9501 |
msgstr "Událost je ukončena."
|
9502 |
|
9503 |
-
#: app/modules/countdown/details.php:
|
9504 |
msgid "The event is ongoing."
|
9505 |
msgstr "Událost právě probíhá."
|
9506 |
|
@@ -9512,7 +9609,7 @@ msgstr "Adresa od ..."
|
|
9512 |
msgid "Get Directions"
|
9513 |
msgstr "Získat směr"
|
9514 |
|
9515 |
-
#: app/modules/links/details.php:17 app/skins/single.php:
|
9516 |
msgid "Share this event"
|
9517 |
msgstr "Sdílet tuto událost"
|
9518 |
|
@@ -9567,7 +9664,7 @@ msgstr "Další výskyt"
|
|
9567 |
msgid "Go to occurrence page"
|
9568 |
msgstr "Přejít na stránku výskytu"
|
9569 |
|
9570 |
-
#: app/modules/next-event/details.php:139 app/skins/single.php:
|
9571 |
#: app/skins/single/default.php:118 app/skins/single/default.php:352
|
9572 |
#: app/skins/single/m1.php:40 app/skins/single/modern.php:216
|
9573 |
msgid "Time"
|
@@ -9650,8 +9747,8 @@ msgstr "Načíst více"
|
|
9650 |
msgid "Available Spot(s):"
|
9651 |
msgstr "Dostupné spoty:"
|
9652 |
|
9653 |
-
#: app/skins/carousel/render.php:166 app/skins/countdown/tpl.php:
|
9654 |
-
#: app/skins/countdown/tpl.php:
|
9655 |
#: app/skins/cover/tpl.php:74 app/skins/list/render.php:95
|
9656 |
msgid "EVENT DETAIL"
|
9657 |
msgstr "DETAIL UDÁLOSTI"
|
@@ -9660,8 +9757,8 @@ msgstr "DETAIL UDÁLOSTI"
|
|
9660 |
msgid "View All Events"
|
9661 |
msgstr "Zobrazit všechny události"
|
9662 |
|
9663 |
-
#: app/skins/countdown/tpl.php:
|
9664 |
-
#: app/skins/countdown/tpl.php:
|
9665 |
#, php-format
|
9666 |
msgid "%s Upcoming Event"
|
9667 |
msgstr "%s Nadcházející událost"
|
@@ -9708,24 +9805,36 @@ msgstr "Událost pro %s"
|
|
9708 |
msgid "No Events"
|
9709 |
msgstr "Žádné události"
|
9710 |
|
9711 |
-
#: app/skins/single.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9712 |
msgid "Home"
|
9713 |
msgstr "Domů"
|
9714 |
|
9715 |
-
#: app/skins/single.php:
|
9716 |
#: app/skins/single/m1.php:278 app/skins/single/m2.php:199
|
9717 |
#: app/skins/single/modern.php:300
|
9718 |
msgid "Sold out!"
|
9719 |
msgstr "Vyprodáno!"
|
9720 |
|
9721 |
-
#: app/skins/single.php:
|
9722 |
#: app/skins/single/default.php:254 app/skins/single/default.php:487
|
9723 |
#: app/skins/single/m1.php:112 app/skins/single/m2.php:35
|
9724 |
#: app/skins/single/modern.php:58
|
9725 |
msgid "Phone"
|
9726 |
msgstr "Telefon"
|
9727 |
|
9728 |
-
#: app/skins/single.php:
|
9729 |
msgid "Speakers:"
|
9730 |
msgstr "Řečník:"
|
9731 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar Lite\n"
|
4 |
+
"POT-Creation-Date: 2020-10-07 11:38+0330\n"
|
5 |
+
"PO-Revision-Date: 2020-10-07 11:39+0330\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: cs_CZ\n"
|
80 |
msgid "Select Shortcode"
|
81 |
msgstr "Přidat nový zkrácený kód"
|
82 |
|
83 |
+
#: app/features/colors.php:50 app/features/fes/form.php:915
|
84 |
#: app/features/mec/settings.php:759
|
85 |
msgid "Event Color"
|
86 |
msgstr "Barva události"
|
94 |
#: app/features/contextual.php:55 app/features/mec.php:473
|
95 |
#: app/features/mec/dashboard.php:141 app/features/mec/support.php:20
|
96 |
#: app/features/popup/event.php:60 app/features/popup/shortcode.php:37
|
97 |
+
#: app/libraries/main.php:614
|
98 |
msgid "Settings"
|
99 |
msgstr "Nastavení"
|
100 |
|
101 |
+
#: app/features/contextual.php:62 app/features/events.php:1617
|
102 |
+
#: app/features/events.php:2478 app/features/mec/booking.php:605
|
103 |
+
#: app/features/mec/booking.php:853 app/features/mec/support.php:29
|
104 |
+
#: app/libraries/main.php:570
|
105 |
msgid "Booking Form"
|
106 |
msgstr "Rezervační formulář"
|
107 |
|
128 |
"www.youtube.com/embed/YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></"
|
129 |
"iframe>"
|
130 |
|
131 |
+
#: app/features/contextual.php:70 app/features/events.php:1625
|
132 |
+
#: app/features/mec/booking.php:797 app/features/mec/support-page.php:115
|
133 |
+
#: app/features/mec/support.php:36 app/libraries/main.php:571
|
134 |
msgid "Payment Gateways"
|
135 |
msgstr "Platební brány"
|
136 |
|
146 |
|
147 |
#: app/features/contextual.php:77 app/features/events.php:352
|
148 |
#: app/features/mec/support-page.php:117 app/features/mec/support.php:45
|
149 |
+
#: app/libraries/main.php:762
|
150 |
msgid "Notifications"
|
151 |
msgstr "Upozornění"
|
152 |
|
265 |
msgstr "Možnosti Odpočítávání"
|
266 |
|
267 |
#: app/features/contextual.php:268 app/features/mec/modules.php:269
|
268 |
+
#: app/libraries/main.php:581
|
269 |
msgid "Social Networks"
|
270 |
msgstr "Sociální sítě"
|
271 |
|
286 |
#: app/features/contextual.php:308 app/features/events.php:315
|
287 |
#: app/features/mec/booking.php:96 app/features/mec/notifications.php:36
|
288 |
#: app/features/mec/support-page.php:110 app/features/mec/support-page.php:114
|
289 |
+
#: app/libraries/main.php:565 app/libraries/main.php:594
|
290 |
+
#: app/libraries/main.php:679
|
291 |
msgid "Booking"
|
292 |
msgstr "Rezervace"
|
293 |
|
294 |
#: app/features/contextual.php:318 app/features/mec/booking.php:427
|
295 |
+
#: app/features/mec/booking.php:813 app/libraries/main.php:567
|
296 |
msgid "Coupons"
|
297 |
msgstr "Kupóny"
|
298 |
|
299 |
#: app/features/contextual.php:326 app/features/mec/modules.php:335
|
300 |
+
#: app/libraries/main.php:583
|
301 |
msgid "BuddyPress Integration"
|
302 |
msgstr "Integrace BuddyPress"
|
303 |
|
310 |
msgid "MEC Activation"
|
311 |
msgstr "Aktivace MEC"
|
312 |
|
313 |
+
#: app/features/dlfile.php:121 app/features/events.php:1622
|
314 |
#: app/features/mec/booking.php:347 app/features/mec/settings.php:831
|
315 |
#, fuzzy
|
316 |
#| msgid "Download ICS file"
|
360 |
#: app/features/mec/meta_boxes/display_options.php:1548
|
361 |
#: app/features/mec/meta_boxes/display_options.php:1642
|
362 |
#: app/features/mec/meta_boxes/display_options.php:1715
|
363 |
+
#: app/features/profile/profile.php:55 app/features/wc.php:81
|
364 |
#: app/skins/daily_view/tpl.php:83 app/skins/monthly_view/tpl.php:74
|
365 |
#: app/skins/tile/tpl.php:84 app/skins/yearly_view/tpl.php:72
|
366 |
msgid "Event"
|
397 |
msgid "No events found in Trash!"
|
398 |
msgstr "V koši nebyly nalezeny žádné události!"
|
399 |
|
400 |
+
#: app/features/events.php:192 app/features/events.php:3557
|
401 |
#: app/features/mec/meta_boxes/display_options.php:1420
|
402 |
#: app/features/mec/meta_boxes/search_form.php:31
|
403 |
#: app/features/mec/meta_boxes/search_form.php:101
|
411 |
#: app/features/mec/meta_boxes/search_form.php:654
|
412 |
#: app/features/mec/meta_boxes/search_form.php:760
|
413 |
#: app/features/mec/settings.php:923 app/features/mec/single.php:331
|
414 |
+
#: app/features/mec/single.php:373 app/features/search.php:68
|
415 |
+
#: app/libraries/main.php:6153 app/libraries/main.php:6206
|
416 |
+
#: app/libraries/skins.php:932 app/skins/single.php:992
|
417 |
+
#: app/skins/single/default.php:219 app/skins/single/default.php:452
|
418 |
+
#: app/skins/single/m1.php:196 app/skins/single/m2.php:119
|
419 |
+
#: app/skins/single/modern.php:140
|
420 |
msgid "Category"
|
421 |
msgstr "Kategorie"
|
422 |
|
423 |
+
#: app/features/events.php:193 app/features/events.php:3512
|
424 |
+
#: app/features/fes/form.php:865 app/features/mec.php:461
|
425 |
#: app/features/mec/meta_boxes/filter.php:69
|
426 |
+
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:6152
|
427 |
+
#: app/libraries/main.php:6205
|
428 |
msgid "Categories"
|
429 |
msgstr "Kategorie"
|
430 |
|
508 |
msgid "Date And Time"
|
509 |
msgstr "Datum a čas"
|
510 |
|
511 |
+
#: app/features/events.php:343 app/features/fes/form.php:366
|
512 |
msgid "Event Repeating"
|
513 |
msgstr "Opakování události"
|
514 |
|
515 |
+
#: app/features/events.php:344 app/features/events.php:1178
|
516 |
#, fuzzy
|
517 |
#| msgid "Event Detail"
|
518 |
msgid "Event Data"
|
519 |
msgstr "Zobrazit událost"
|
520 |
|
521 |
+
#: app/features/events.php:346 app/features/events.php:1360
|
522 |
+
#: app/features/mec/settings.php:789 app/skins/single.php:1385
|
523 |
msgid "Hourly Schedule"
|
524 |
msgstr "Hodinový rozvrh"
|
525 |
|
535 |
msgid "Links"
|
536 |
msgstr "Odkaz"
|
537 |
|
538 |
+
#: app/features/events.php:349 app/features/events.php:3559
|
539 |
+
#: app/features/events.php:3748 app/features/ix.php:3748
|
540 |
#: app/features/ix.php:3790
|
541 |
#: app/features/mec/meta_boxes/display_options.php:1423
|
542 |
#: app/features/mec/meta_boxes/search_form.php:46
|
551 |
#: app/features/mec/meta_boxes/search_form.php:669
|
552 |
#: app/features/mec/meta_boxes/search_form.php:775
|
553 |
#: app/features/mec/settings.php:935 app/features/mec/single.php:335
|
554 |
+
#: app/features/mec/single.php:377 app/features/organizers.php:58
|
555 |
+
#: app/features/organizers.php:204 app/features/organizers.php:260
|
556 |
+
#: app/features/organizers.php:262 app/features/organizers.php:271
|
557 |
+
#: app/features/popup/event.php:163 app/features/popup/event.php:172
|
558 |
+
#: app/features/search.php:80 app/libraries/main.php:6159
|
559 |
+
#: app/libraries/main.php:6212 app/libraries/skins.php:984
|
560 |
+
#: app/skins/single.php:1240 app/skins/single/default.php:244
|
561 |
+
#: app/skins/single/default.php:477 app/skins/single/m1.php:102
|
562 |
+
#: app/skins/single/m2.php:25 app/skins/single/modern.php:48
|
563 |
msgid "Organizer"
|
564 |
msgstr "Organizátor"
|
565 |
|
566 |
+
#: app/features/events.php:350 app/features/events.php:1165
|
567 |
+
#: app/features/fes/form.php:836 app/libraries/main.php:6189
|
568 |
+
#: app/libraries/main.php:6238 app/skins/single.php:1018
|
569 |
#: app/skins/single/default.php:142 app/skins/single/default.php:376
|
570 |
#: app/skins/single/m1.php:61 app/skins/single/modern.php:237
|
571 |
msgid "Cost"
|
577 |
msgid "SEO Schema / Event Status"
|
578 |
msgstr "Při spuštění události"
|
579 |
|
580 |
+
#: app/features/events.php:504
|
581 |
msgid "Note for reviewer"
|
582 |
msgstr "Poznámka pro recenzenta"
|
583 |
|
584 |
+
#: app/features/events.php:510
|
585 |
msgid "Guest Data"
|
586 |
msgstr "Údaje hosta"
|
587 |
|
588 |
+
#: app/features/events.php:511 app/features/events.php:2464
|
589 |
+
#: app/features/events.php:4067 app/features/fes.php:236
|
590 |
+
#: app/features/fes/form.php:795 app/features/labels.php:178
|
591 |
#: app/features/mec/booking.php:53 app/features/organizers.php:279
|
592 |
#: app/features/popup/event.php:182 app/features/profile/profile.php:177
|
593 |
+
#: app/libraries/notifications.php:1379 app/modules/booking/steps/form.php:60
|
594 |
msgid "Name"
|
595 |
msgstr "Jméno"
|
596 |
|
597 |
+
#: app/features/events.php:512 app/features/events.php:2473
|
598 |
+
#: app/features/events.php:2535 app/features/events.php:2624
|
599 |
+
#: app/features/events.php:4070 app/features/fes.php:236
|
600 |
+
#: app/features/fes/form.php:791 app/features/login/login.php:5
|
601 |
#: app/features/mec/booking.php:65 app/features/mec/booking.php:643
|
602 |
#: app/features/mec/booking.php:739 app/features/mec/single.php:191
|
603 |
#: app/features/organizers.php:111 app/features/organizers.php:152
|
604 |
#: app/features/profile/profile.php:180 app/features/speakers.php:127
|
605 |
+
#: app/features/speakers.php:204 app/libraries/main.php:1837
|
606 |
+
#: app/libraries/main.php:1906 app/libraries/main.php:3305
|
607 |
+
#: app/libraries/notifications.php:1380 app/modules/booking/steps/form.php:69
|
608 |
+
#: app/modules/booking/steps/form.php:207 app/skins/single.php:1257
|
609 |
+
#: app/skins/single.php:1316 app/skins/single/default.php:261
|
610 |
#: app/skins/single/default.php:494 app/skins/single/m1.php:119
|
611 |
#: app/skins/single/m2.php:42 app/skins/single/modern.php:65
|
612 |
msgid "Email"
|
613 |
msgstr "Email"
|
614 |
|
615 |
+
#: app/features/events.php:521
|
616 |
msgid ""
|
617 |
"This event is imported from Google calendar so if you modify it, it would "
|
618 |
"overwrite in the next import from Google."
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: app/features/events.php:525 app/features/fes/form.php:278
|
622 |
msgid "Date and Time"
|
623 |
msgstr "Datum a čas"
|
624 |
|
625 |
+
#: app/features/events.php:528 app/features/events.php:532
|
626 |
+
#: app/features/events.php:3560 app/features/events.php:3748
|
627 |
+
#: app/features/fes/form.php:282 app/features/fes/form.php:286
|
628 |
#: app/features/ix.php:3748 app/features/ix.php:3790
|
629 |
#: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1333
|
630 |
#: app/features/mec/meta_boxes/display_options.php:52
|
646 |
msgid "Start Date"
|
647 |
msgstr "Počátečná den"
|
648 |
|
649 |
+
#: app/features/events.php:547 app/features/events.php:551
|
650 |
+
#: app/features/events.php:3561 app/features/events.php:3748
|
651 |
+
#: app/features/fes/form.php:301 app/features/fes/form.php:305
|
652 |
#: app/features/ix.php:3748 app/features/ix.php:3790
|
653 |
#: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1334
|
654 |
#: app/features/popup/event.php:92
|
655 |
msgid "End Date"
|
656 |
msgstr "Konečný den"
|
657 |
|
658 |
+
#: app/features/events.php:574 app/features/fes/form.php:319
|
659 |
#: app/features/popup/event.php:109
|
660 |
#, fuzzy
|
661 |
#| msgid "All Day Event"
|
662 |
msgid "All-day Event"
|
663 |
msgstr "Celodenní událost"
|
664 |
|
665 |
+
#: app/features/events.php:584 app/features/fes/form.php:322
|
666 |
msgid "Hide Event Time"
|
667 |
msgstr "Skrýt čas události"
|
668 |
|
669 |
+
#: app/features/events.php:594 app/features/fes/form.php:325
|
670 |
msgid "Hide Event End Time"
|
671 |
msgstr "Skrýt čas ukončení události"
|
672 |
|
673 |
+
#: app/features/events.php:599 app/features/events.php:603
|
674 |
+
#: app/features/fes/form.php:329
|
675 |
#, fuzzy
|
676 |
#| msgid "Note to reviewer"
|
677 |
msgid "Notes on the time"
|
678 |
msgstr "Poznámka pro recenzenta"
|
679 |
|
680 |
+
#: app/features/events.php:604 app/features/fes/form.php:330
|
681 |
#, fuzzy
|
682 |
#| msgid ""
|
683 |
#| "It shows next to event time on single event page. You can insert Timezone "
|
689 |
"Zobrazuje se vedle času události na stránce jedné události. Do tohoto pole "
|
690 |
"můžete vložit časové pásmo atd."
|
691 |
|
692 |
+
#: app/features/events.php:606 app/features/events.php:775
|
693 |
+
#: app/features/events.php:1128 app/features/events.php:1277
|
694 |
+
#: app/features/events.php:1587 app/features/events.php:1698
|
695 |
+
#: app/features/events.php:1869 app/features/events.php:1884
|
696 |
+
#: app/features/events.php:2050 app/features/events.php:2063
|
697 |
+
#: app/features/events.php:2215 app/features/events.php:2251
|
698 |
+
#: app/features/events.php:2349 app/features/events.php:2364
|
699 |
+
#: app/features/events.php:2394 app/features/events.php:2407
|
700 |
+
#: app/features/fes/form.php:439 app/features/fes/form.php:747
|
701 |
#: app/features/locations.php:336 app/features/mec/booking.php:117
|
702 |
#: app/features/mec/booking.php:139 app/features/mec/booking.php:211
|
703 |
#: app/features/mec/booking.php:278 app/features/mec/booking.php:291
|
705 |
#: app/features/mec/booking.php:472 app/features/mec/booking.php:501
|
706 |
#: app/features/mec/booking.php:549 app/features/mec/booking.php:559
|
707 |
#: app/features/mec/booking.php:581 app/features/mec/booking.php:591
|
708 |
+
#: app/features/mec/booking.php:829 app/features/mec/booking.php:855
|
709 |
+
#: app/features/mec/dashboard.php:71
|
710 |
#: app/features/mec/meta_boxes/display_options.php:83
|
711 |
#: app/features/mec/meta_boxes/display_options.php:96
|
712 |
#: app/features/mec/meta_boxes/display_options.php:109
|
766 |
#: app/features/mec/styling.php:119 app/features/mec/styling.php:218
|
767 |
#: app/features/mec/styling.php:235 app/features/mec/styling.php:248
|
768 |
#: app/features/organizers.php:272 app/features/popup/event.php:126
|
769 |
+
#: app/features/popup/event.php:173 app/skins/single.php:1103
|
770 |
#: app/skins/single/default.php:159 app/skins/single/default.php:391
|
771 |
#: app/skins/single/m1.php:218 app/skins/single/m2.php:142
|
772 |
#: app/skins/single/modern.php:163
|
773 |
msgid "Read More"
|
774 |
msgstr "Číst více"
|
775 |
|
776 |
+
#: app/features/events.php:616 app/features/fes/form.php:337
|
777 |
#, fuzzy
|
778 |
#| msgid "Timezone: %s"
|
779 |
msgid "Timezone"
|
780 |
msgstr "Časové pásmo: %s"
|
781 |
|
782 |
+
#: app/features/events.php:621 app/features/events.php:634
|
783 |
+
#: app/features/events.php:1756 app/features/events.php:2177
|
784 |
+
#: app/features/events.php:2309 app/features/events.php:2490
|
785 |
+
#: app/features/fes/form.php:342 app/features/fes/form.php:355
|
786 |
msgid "Inherit from global options"
|
787 |
msgstr "Zdědí z globálních možností"
|
788 |
|
789 |
+
#: app/features/events.php:630 app/features/events.php:633
|
790 |
+
#: app/features/fes/form.php:351 app/features/fes/form.php:354
|
791 |
+
#, fuzzy
|
792 |
+
#| msgid "Countdown View"
|
793 |
+
msgid "Countdown Method"
|
794 |
+
msgstr "Zobrazení odpočítávání"
|
795 |
+
|
796 |
+
#: app/features/events.php:635 app/features/fes/form.php:356
|
797 |
+
#, fuzzy
|
798 |
+
#| msgid "On Event Start"
|
799 |
+
msgid "Count to Event Start"
|
800 |
+
msgstr "Při spuštění události"
|
801 |
+
|
802 |
+
#: app/features/events.php:636 app/features/fes/form.php:357
|
803 |
+
#, fuzzy
|
804 |
+
#| msgid "On Event End"
|
805 |
+
msgid "Count to Event End"
|
806 |
+
msgstr "Na konci události"
|
807 |
+
|
808 |
+
#: app/features/events.php:644
|
809 |
msgid "Repeating"
|
810 |
msgstr "Opakování"
|
811 |
|
812 |
+
#: app/features/events.php:653
|
813 |
msgid "Event Repeating (Recurring events)"
|
814 |
msgstr "Opakování události (opakující se události)"
|
815 |
|
816 |
+
#: app/features/events.php:657 app/features/fes/form.php:370
|
817 |
msgid "Repeats"
|
818 |
msgstr "Opakování"
|
819 |
|
820 |
+
#: app/features/events.php:665 app/features/fes/form.php:372
|
821 |
#: app/features/mec.php:1336 app/skins/default_full_calendar/tpl.php:77
|
822 |
#: app/skins/full_calendar/tpl.php:124
|
823 |
msgid "Daily"
|
824 |
msgstr "Děnně"
|
825 |
|
826 |
+
#: app/features/events.php:672 app/features/fes/form.php:373
|
827 |
msgid "Every Weekday"
|
828 |
msgstr "Každý všední den"
|
829 |
|
830 |
+
#: app/features/events.php:679 app/features/fes/form.php:374
|
831 |
msgid "Every Weekend"
|
832 |
msgstr "Každý víkend"
|
833 |
|
834 |
+
#: app/features/events.php:686 app/features/fes/form.php:375
|
835 |
msgid "Certain Weekdays"
|
836 |
msgstr "Určité pracovní dny"
|
837 |
|
838 |
+
#: app/features/events.php:693 app/features/fes/form.php:376
|
839 |
#: app/skins/default_full_calendar/tpl.php:76
|
840 |
#: app/skins/full_calendar/tpl.php:123
|
841 |
msgid "Weekly"
|
842 |
msgstr "Týdně"
|
843 |
|
844 |
+
#: app/features/events.php:700 app/features/fes/form.php:377
|
845 |
#: app/features/mec.php:1337 app/skins/default_full_calendar/tpl.php:75
|
846 |
#: app/skins/full_calendar/tpl.php:122
|
847 |
msgid "Monthly"
|
848 |
msgstr "Měsíčně"
|
849 |
|
850 |
+
#: app/features/events.php:707 app/features/fes/form.php:378
|
851 |
#: app/features/mec.php:1338 app/skins/default_full_calendar/tpl.php:74
|
852 |
#: app/skins/full_calendar/tpl.php:121
|
853 |
msgid "Yearly"
|
854 |
msgstr "Ročně"
|
855 |
|
856 |
+
#: app/features/events.php:714 app/features/fes/form.php:379
|
857 |
msgid "Custom Days"
|
858 |
msgstr "Vlastní dny"
|
859 |
|
860 |
+
#: app/features/events.php:721 app/features/fes/form.php:380
|
861 |
msgid "Advanced"
|
862 |
msgstr "Pokročilé"
|
863 |
|
864 |
+
#: app/features/events.php:726 app/features/fes/form.php:384
|
865 |
msgid "Repeat Interval"
|
866 |
msgstr "Interval opakování"
|
867 |
|
868 |
+
#: app/features/events.php:728 app/features/fes/form.php:385
|
869 |
msgid "Repeat interval"
|
870 |
msgstr "Interval opakování"
|
871 |
|
872 |
+
#: app/features/events.php:732 app/features/fes/form.php:388
|
873 |
msgid "Week Days"
|
874 |
msgstr "Dny v týdnu"
|
875 |
|
876 |
+
#: app/features/events.php:749
|
877 |
#, fuzzy
|
878 |
#| msgid "Pro version of Modern Events Calendar"
|
879 |
msgid ""
|
881 |
"Calendar."
|
882 |
msgstr "Pro verze doplňku Modern Events Calendar"
|
883 |
|
884 |
+
#: app/features/events.php:755 app/features/events.php:1952
|
885 |
+
#: app/features/events.php:1980 app/features/events.php:2119
|
886 |
+
#: app/features/fes/form.php:402 app/features/ix/import_f_calendar.php:42
|
887 |
#: app/features/ix/import_g_calendar.php:51
|
888 |
#: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
|
889 |
msgid "Start"
|
890 |
msgstr "Začátek"
|
891 |
|
892 |
+
#: app/features/events.php:768 app/features/events.php:1271
|
893 |
+
#: app/features/events.php:1391 app/features/events.php:1496
|
894 |
+
#: app/features/events.php:1936 app/features/events.php:2108
|
895 |
+
#: app/features/events.php:2188 app/features/events.php:2321
|
896 |
+
#: app/features/fes/form.php:432 app/features/fes/form.php:963
|
897 |
#: app/features/occurrences.php:114
|
898 |
msgid "Add"
|
899 |
msgstr "Přidat"
|
900 |
|
901 |
+
#: app/features/events.php:771 app/features/fes/form.php:435
|
902 |
msgid "Custom Days Repeating"
|
903 |
msgstr "Opakování vlastních dnů"
|
904 |
|
905 |
+
#: app/features/events.php:774 app/features/fes/form.php:438
|
906 |
#, fuzzy
|
907 |
#| msgid ""
|
908 |
#| "Add certain days to event occurrence dates. If you have single day event, "
|
917 |
"datum zahájení a ukončení by mělo být stejné. Pokud máte vícedenní událost, "
|
918 |
"datum zahájení a ukončení musí odpovídat počátečnímu datu."
|
919 |
|
920 |
+
#: app/features/events.php:785 app/features/events.php:1956
|
921 |
+
#: app/features/events.php:1984 app/features/events.php:2123
|
922 |
+
#: app/features/fes/form.php:417
|
923 |
msgid "End"
|
924 |
msgstr "Konec"
|
925 |
|
926 |
+
#: app/features/events.php:862 app/features/fes/form.php:511
|
927 |
msgid "First"
|
928 |
msgstr "První"
|
929 |
|
930 |
+
#: app/features/events.php:904 app/features/fes/form.php:553
|
931 |
msgid "Second"
|
932 |
msgstr "Druhá"
|
933 |
|
934 |
+
#: app/features/events.php:946 app/features/fes/form.php:595
|
935 |
msgid "Third"
|
936 |
msgstr "Třetí"
|
937 |
|
938 |
+
#: app/features/events.php:988 app/features/fes/form.php:637
|
939 |
msgid "Fourth"
|
940 |
msgstr "Čtvrtá"
|
941 |
|
942 |
+
#: app/features/events.php:1030 app/features/fes/form.php:679
|
943 |
msgid "Last"
|
944 |
msgstr "Poslední"
|
945 |
|
946 |
+
#: app/features/events.php:1077 app/features/fes/form.php:725
|
947 |
msgid "Ends Repeat"
|
948 |
msgstr "Ukončení opakování"
|
949 |
|
950 |
+
#: app/features/events.php:1089 app/features/fes/form.php:729
|
951 |
msgid "Never"
|
952 |
msgstr "Nikdy"
|
953 |
|
954 |
# Možná Zapnuto
|
955 |
+
#: app/features/events.php:1101 app/features/fes/form.php:734
|
956 |
msgid "On"
|
957 |
msgstr "Na"
|
958 |
|
959 |
+
#: app/features/events.php:1117 app/features/fes/form.php:741
|
960 |
#: app/features/mec/booking.php:169
|
961 |
msgid "After"
|
962 |
msgstr "Po"
|
963 |
|
964 |
+
#: app/features/events.php:1121 app/features/events.php:1125
|
965 |
+
#: app/features/fes/form.php:743 app/features/fes/form.php:746
|
966 |
msgid "Occurrences times"
|
967 |
msgstr "Časy výskytu"
|
968 |
|
969 |
+
#: app/features/events.php:1126
|
970 |
#, fuzzy
|
971 |
#| msgid ""
|
972 |
#| "The event will finish after certain repeats. For example if you set it to "
|
978 |
"Událost bude ukončena po určitých opakováních. Pokud například nastavíte "
|
979 |
"hodnotu 10, událost skončí po 10 opakováních."
|
980 |
|
981 |
+
#: app/features/events.php:1141 app/features/fes/form.php:760
|
982 |
#, fuzzy
|
983 |
#| msgid "Next Occurrence of Other Events"
|
984 |
msgid "Show only one occurrence of this event"
|
985 |
msgstr "Další výskyt dalších událostí"
|
986 |
|
987 |
+
#: app/features/events.php:1161 app/features/events.php:3748
|
988 |
+
#: app/features/fes/form.php:833 app/features/ix.php:3748
|
989 |
#: app/features/ix.php:3790 app/features/mec/settings.php:735
|
990 |
+
#: app/libraries/main.php:6188 app/libraries/main.php:6237
|
991 |
#: app/widgets/single.php:103
|
992 |
msgid "Event Cost"
|
993 |
msgstr "Cena události"
|
994 |
|
995 |
+
#: app/features/events.php:1258
|
996 |
msgid "Exceptional Days (Exclude Dates)"
|
997 |
msgstr "Výjimečné dny (vyjma dat)"
|
998 |
|
999 |
+
#: app/features/events.php:1264 app/features/events.php:1274
|
1000 |
msgid "Exclude certain days"
|
1001 |
msgstr "Vyloučit určité dny"
|
1002 |
|
1003 |
+
#: app/features/events.php:1269 app/features/events.php:2536
|
1004 |
+
#: app/features/events.php:2625 app/features/fes.php:236
|
1005 |
#: app/features/mec/booking.php:644 app/features/mec/booking.php:740
|
1006 |
#: app/features/mec/single.php:193 app/features/profile/profile.php:58
|
1007 |
+
#: app/features/wc.php:82 app/libraries/main.php:3392
|
1008 |
+
#: app/modules/booking/steps/tickets.php:98
|
1009 |
+
#: app/modules/next-event/details.php:134 app/skins/single.php:1076
|
1010 |
#: app/skins/single/default.php:99 app/skins/single/default.php:333
|
1011 |
#: app/skins/single/m1.php:21 app/skins/single/modern.php:197
|
1012 |
msgid "Date"
|
1013 |
msgstr "Datum"
|
1014 |
|
1015 |
+
#: app/features/events.php:1275
|
1016 |
msgid ""
|
1017 |
"Exclude certain days from event occurrence dates. Please note that you can "
|
1018 |
"exclude only single day occurrences and you cannot exclude one day from "
|
1022 |
"můžete vyloučit pouze výskyty za jeden den a nelze vyloučit jeden den z "
|
1023 |
"vícedenních výskytů."
|
1024 |
|
1025 |
+
#: app/features/events.php:1334 app/libraries/render.php:546
|
1026 |
msgid "Day 1"
|
1027 |
msgstr "Den 1"
|
1028 |
|
1029 |
+
#: app/features/events.php:1364
|
1030 |
msgid "Add Day"
|
1031 |
msgstr "Přidat den"
|
1032 |
|
1033 |
+
#: app/features/events.php:1365
|
1034 |
msgid ""
|
1035 |
"Add new days for schedule. For example if your event is multiple days, you "
|
1036 |
"can add a different schedule for each day!"
|
1038 |
"Přidat nové dny pro rozvrh. Pokud je například vaše akce vícedenní, můžete "
|
1039 |
"pro každý den přidat jiný rozvrh!"
|
1040 |
|
1041 |
+
#: app/features/events.php:1372
|
1042 |
#, php-format
|
1043 |
msgid "Day %s"
|
1044 |
msgstr "Den %s"
|
1045 |
|
1046 |
+
#: app/features/events.php:1376 app/features/events.php:1415
|
1047 |
+
#: app/features/events.php:1450 app/features/events.php:1482
|
1048 |
+
#: app/features/events.php:1511 app/features/events.php:2336
|
1049 |
+
#: app/features/events.php:2383 app/features/events.php:3556
|
1050 |
+
#: app/features/events.php:3748 app/features/fes/form.php:256
|
1051 |
#: app/features/ix.php:3748 app/features/ix.php:3790
|
1052 |
#: app/features/mec/booking.php:541 app/features/mec/booking.php:573
|
1053 |
#: app/features/mec/styling.php:130
|
1054 |
msgid "Title"
|
1055 |
msgstr "Název"
|
1056 |
|
1057 |
+
#: app/features/events.php:1385 app/features/events.php:1422
|
1058 |
+
#: app/features/events.php:1455 app/features/events.php:1490
|
1059 |
+
#: app/features/events.php:1516 app/features/events.php:1966
|
1060 |
+
#: app/features/events.php:1992 app/features/events.php:2129
|
1061 |
+
#: app/features/events.php:2228 app/features/events.php:2264
|
1062 |
+
#: app/features/events.php:2371 app/features/events.php:2413
|
1063 |
#: app/features/mec/booking.php:484 app/features/mec/booking.php:513
|
1064 |
#: app/features/mec/booking.php:564 app/features/mec/booking.php:596
|
1065 |
+
#: app/libraries/main.php:3227 app/libraries/main.php:3256
|
1066 |
+
#: app/libraries/main.php:3285 app/libraries/main.php:3314
|
1067 |
+
#: app/libraries/main.php:3343 app/libraries/main.php:3372
|
1068 |
+
#: app/libraries/main.php:3401 app/libraries/main.php:3430
|
1069 |
+
#: app/libraries/main.php:3459 app/libraries/main.php:3480
|
1070 |
+
#: app/libraries/main.php:3511 app/libraries/main.php:3557
|
1071 |
+
#: app/libraries/main.php:3603 app/libraries/main.php:3652
|
1072 |
+
#: app/libraries/main.php:3692
|
1073 |
msgid "Remove"
|
1074 |
msgstr "Odstranit"
|
1075 |
|
1076 |
+
#: app/features/events.php:1392 app/features/events.php:1497
|
1077 |
msgid "Add new hourly schedule row"
|
1078 |
msgstr "Přidejte nový řádek rozvrhu hodin"
|
1079 |
|
1080 |
+
#: app/features/events.php:1407 app/features/events.php:1444
|
1081 |
+
#: app/features/events.php:1506
|
1082 |
msgid "From e.g. 8:15"
|
1083 |
msgstr "Od např. 8:15"
|
1084 |
|
1085 |
+
#: app/features/events.php:1411 app/features/events.php:1447
|
1086 |
+
#: app/features/events.php:1508
|
1087 |
msgid "To e.g. 8:45"
|
1088 |
msgstr "Do např. 8:45"
|
1089 |
|
1090 |
+
#: app/features/events.php:1419 app/features/events.php:1453
|
1091 |
+
#: app/features/events.php:1514 app/features/events.php:1857
|
1092 |
+
#: app/features/events.php:2039
|
1093 |
msgid "Description"
|
1094 |
msgstr "Popis"
|
1095 |
|
1096 |
+
#: app/features/events.php:1425 app/features/events.php:1458
|
1097 |
+
#: app/features/events.php:1519 app/features/fes/form.php:959
|
1098 |
#: app/features/mec.php:469 app/features/mec/modules.php:51
|
1099 |
#: app/features/mec/settings.php:783 app/features/speakers.php:61
|
1100 |
+
#: app/libraries/main.php:575 app/libraries/main.php:6160
|
1101 |
+
#: app/libraries/main.php:6213 app/modules/speakers/details.php:18
|
1102 |
msgid "Speakers"
|
1103 |
msgstr "Řečníci"
|
1104 |
|
1105 |
+
#: app/features/events.php:1478 app/features/events.php:1486
|
1106 |
msgid "New Day"
|
1107 |
msgstr "Nový den"
|
1108 |
|
1109 |
+
#: app/features/events.php:1550 app/features/fes/form.php:810
|
1110 |
#: app/features/mec/settings.php:729
|
1111 |
msgid "Event Links"
|
1112 |
msgstr "Odkazy na událost"
|
1113 |
|
1114 |
+
#: app/features/events.php:1553 app/features/events.php:1561
|
1115 |
+
#: app/features/fes/form.php:812 app/libraries/main.php:6186
|
1116 |
+
#: app/libraries/main.php:6235
|
1117 |
msgid "Event Link"
|
1118 |
msgstr "Odkaz na událost"
|
1119 |
|
1120 |
+
#: app/features/events.php:1556 app/features/events.php:1574
|
1121 |
+
#: app/features/fes/form.php:813 app/features/fes/form.php:818
|
1122 |
msgid "eg. http://yoursite.com/your-event"
|
1123 |
msgstr "např. http://yoursite.com/vase-udalost"
|
1124 |
|
1125 |
+
#: app/features/events.php:1562
|
1126 |
#, fuzzy
|
1127 |
#| msgid ""
|
1128 |
#| "If you fill it, it will be replaced instead of default event page link. "
|
1137 |
"Vložte úplný odkaz včetně http (s): // - Pokud používáte reklamní adresu "
|
1138 |
"URL, můžete také použít zkracovač URL"
|
1139 |
|
1140 |
+
#: app/features/events.php:1564
|
1141 |
msgid "URL Shortener"
|
1142 |
msgstr "Zkracovač URL"
|
1143 |
|
1144 |
+
#: app/features/events.php:1571 app/features/events.php:1584
|
1145 |
+
#: app/features/fes/form.php:817 app/libraries/main.php:6187
|
1146 |
+
#: app/libraries/main.php:6236 app/skins/single.php:1102
|
1147 |
#: app/skins/single/default.php:158 app/skins/single/default.php:390
|
1148 |
#: app/skins/single/m1.php:217 app/skins/single/m2.php:141
|
1149 |
#: app/skins/single/modern.php:162 app/widgets/single.php:107
|
1150 |
msgid "More Info"
|
1151 |
msgstr "Více info"
|
1152 |
|
1153 |
+
#: app/features/events.php:1577 app/features/fes/form.php:819
|
1154 |
msgid "More Information"
|
1155 |
msgstr "Více informací"
|
1156 |
|
1157 |
+
#: app/features/events.php:1579 app/features/fes/form.php:821
|
1158 |
#: app/features/mec.php:980 app/features/popup/shortcode.php:477
|
1159 |
msgid "Current Window"
|
1160 |
msgstr "Aktuální okno"
|
1161 |
|
1162 |
+
#: app/features/events.php:1580 app/features/fes/form.php:822
|
1163 |
#: app/features/mec.php:981 app/features/popup/shortcode.php:481
|
1164 |
msgid "New Window"
|
1165 |
msgstr "Nové okno"
|
1166 |
|
1167 |
+
#: app/features/events.php:1585 app/features/fes/form.php:824
|
1168 |
msgid ""
|
1169 |
"If you fill it, it will be shown in event details page as an optional link. "
|
1170 |
"Insert full link including http(s)://"
|
1172 |
"Pokud ji vyplníte, zobrazí se jako volitelný odkaz na stránce s podrobnostmi "
|
1173 |
"o události. Vložte celý odkaz včetně http (s): //"
|
1174 |
|
1175 |
+
#: app/features/events.php:1608 app/features/mec/settings.php:797
|
1176 |
msgid "Booking Options"
|
1177 |
msgstr "Možnosti rezervace"
|
1178 |
|
1179 |
+
#: app/features/events.php:1609
|
1180 |
#, fuzzy
|
1181 |
#| msgid "Total user booking limits"
|
1182 |
msgid "Total User Booking Limits"
|
1183 |
msgstr "Celkové limity rezervace uživatelů"
|
1184 |
|
1185 |
+
#: app/features/events.php:1610 app/features/events.php:1800
|
1186 |
+
#: app/libraries/book.php:61 app/libraries/main.php:6191
|
1187 |
+
#: app/modules/booking/steps/tickets.php:129
|
1188 |
+
#: app/modules/booking/steps/tickets.php:135
|
1189 |
msgid "Tickets"
|
1190 |
msgstr "Vstupenky"
|
1191 |
|
1192 |
+
#: app/features/events.php:1612 app/features/events.php:2165
|
1193 |
msgid "Fees"
|
1194 |
msgstr "Poplatky"
|
1195 |
|
1196 |
+
#: app/features/events.php:1615 app/features/events.php:2297
|
1197 |
#: app/features/mec/settings.php:809
|
1198 |
msgid "Ticket Variations / Options"
|
1199 |
msgstr "Varianty vstupenky / možnosti"
|
1200 |
|
1201 |
+
#: app/features/events.php:1619 app/features/mec/booking.php:884
|
1202 |
#: app/features/mec/support-page.php:118
|
1203 |
msgid "Organizer Payment"
|
1204 |
msgstr "Platba organizátora"
|
1205 |
|
1206 |
+
#: app/features/events.php:1680 app/features/events.php:1694
|
1207 |
#, fuzzy
|
1208 |
#| msgid "Total booking limits"
|
1209 |
msgid "Total booking limit"
|
1210 |
msgstr "Celkové limity rezervace"
|
1211 |
|
1212 |
+
#: app/features/events.php:1691 app/features/events.php:1905
|
1213 |
+
#: app/features/events.php:2077 app/modules/booking/default.php:98
|
1214 |
+
#: app/modules/booking/steps/tickets.php:129
|
1215 |
+
#: app/modules/booking/steps/tickets.php:135
|
1216 |
#: app/skins/available_spot/tpl.php:140
|
1217 |
msgid "Unlimited"
|
1218 |
msgstr "Neomezené"
|
1219 |
|
1220 |
+
#: app/features/events.php:1697
|
1221 |
msgid ""
|
1222 |
"If you want to set a limit to all tickets, uncheck this checkbox and put a "
|
1223 |
"limitation number."
|
1225 |
"Pokud chcete nastavit limit na všechny lístky, zrušte zaškrtnutí tohoto "
|
1226 |
"políčka a zadejte číslo omezení."
|
1227 |
|
1228 |
+
#: app/features/events.php:1699
|
1229 |
msgid "Read About A Booking System"
|
1230 |
msgstr "Přečtěte si o rezervačním systému"
|
1231 |
|
1232 |
+
#: app/features/events.php:1707
|
1233 |
msgid "100"
|
1234 |
msgstr "100"
|
1235 |
|
1236 |
+
#: app/features/events.php:1709
|
1237 |
#, fuzzy
|
1238 |
#| msgid "Discount"
|
1239 |
msgid "Discount per user roles"
|
1240 |
msgstr "Sleva"
|
1241 |
|
1242 |
+
#: app/features/events.php:1715
|
1243 |
msgid "5"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
+
#: app/features/events.php:1718 app/features/events.php:1732
|
1247 |
#, fuzzy
|
1248 |
#| msgid "Next Occurrence"
|
1249 |
msgid "Book All Occurrences"
|
1250 |
msgstr "Další výskyt"
|
1251 |
|
1252 |
+
#: app/features/events.php:1729
|
1253 |
msgid "Sell all occurrences by one booking"
|
1254 |
msgstr ""
|
1255 |
|
1256 |
+
#: app/features/events.php:1735
|
1257 |
msgid ""
|
1258 |
"If you have a series of events and you want to sell all of them at once, "
|
1259 |
"this option is for you! For example a weekly yoga course or something "
|
1260 |
"similar."
|
1261 |
msgstr ""
|
1262 |
|
1263 |
+
#: app/features/events.php:1745
|
1264 |
msgid "Total user booking limits"
|
1265 |
msgstr "Celkové limity rezervace uživatelů"
|
1266 |
|
1267 |
+
#: app/features/events.php:1759
|
1268 |
msgid "12"
|
1269 |
msgstr "12"
|
1270 |
|
1271 |
+
#: app/features/events.php:1765
|
1272 |
+
#, fuzzy
|
1273 |
+
#| msgid "Payment Gateways"
|
1274 |
+
msgid "Disabled Gateways"
|
1275 |
+
msgstr "Platební brány"
|
1276 |
+
|
1277 |
+
#: app/features/events.php:1766
|
1278 |
+
msgid ""
|
1279 |
+
"You can disable some of the following payment gateways by checking them "
|
1280 |
+
"otherwise they will be enabled."
|
1281 |
+
msgstr ""
|
1282 |
+
|
1283 |
+
#: app/features/events.php:1803
|
1284 |
msgid ""
|
1285 |
"You're translating an event so MEC will use the original event for tickets "
|
1286 |
"and booking. You can only translate the ticket name and description. Please "
|
1290 |
"vstupenek a rezervace. Můžete přeložit pouze název a popis vstupenky. Prosím "
|
1291 |
"definujte určité vstupenky, které jste definovali v původní události."
|
1292 |
|
1293 |
+
#: app/features/events.php:1808
|
1294 |
#, fuzzy
|
1295 |
#| msgid "Ticket"
|
1296 |
msgid "Add Ticket"
|
1297 |
msgstr "Vstupenka"
|
1298 |
|
1299 |
+
#: app/features/events.php:1820 app/features/events.php:2004
|
1300 |
#, fuzzy
|
1301 |
#| msgid "Ticket"
|
1302 |
msgid "Ticket ID"
|
1303 |
msgstr "Vstupenka"
|
1304 |
|
1305 |
+
#: app/features/events.php:1820 app/features/events.php:2004
|
1306 |
+
#: app/features/events.php:3748 app/features/fes.php:236
|
1307 |
#: app/features/ix.php:3748 app/features/ix.php:3790
|
1308 |
#: app/features/labels.php:177 app/features/locations.php:262
|
1309 |
#: app/features/organizers.php:203 app/features/speakers.php:282
|
1310 |
msgid "ID"
|
1311 |
msgstr "ID"
|
1312 |
|
1313 |
+
#: app/features/events.php:1823 app/features/events.php:2007
|
1314 |
msgid "Ticket Name"
|
1315 |
msgstr "Název vstupenky"
|
1316 |
|
1317 |
+
#: app/features/events.php:1828 app/features/events.php:2011
|
1318 |
+
#: app/features/events.php:3748 app/features/ix.php:3748
|
1319 |
#: app/features/ix.php:3790
|
1320 |
msgid "Start Time"
|
1321 |
msgstr "Začátek"
|
1322 |
|
1323 |
+
#: app/features/events.php:1841 app/features/events.php:2024
|
1324 |
+
#: app/features/events.php:3748 app/features/ix.php:3748
|
1325 |
#: app/features/ix.php:3790
|
1326 |
msgid "End Time"
|
1327 |
msgstr "Konec"
|
1328 |
|
1329 |
+
#: app/features/events.php:1862 app/features/events.php:1866
|
1330 |
+
#: app/features/events.php:1960 app/features/events.php:1987
|
1331 |
+
#: app/features/events.php:2044 app/features/events.php:2047
|
1332 |
+
#: app/features/events.php:2125 app/features/events.php:2342
|
1333 |
+
#: app/features/events.php:2346 app/features/events.php:2388
|
1334 |
+
#: app/features/events.php:2391 app/features/mec/booking.php:545
|
1335 |
#: app/features/mec/booking.php:548 app/features/mec/booking.php:577
|
1336 |
#: app/features/mec/booking.php:580
|
1337 |
msgid "Price"
|
1338 |
msgstr "Cena"
|
1339 |
|
1340 |
+
#: app/features/events.php:1867 app/features/events.php:2048
|
1341 |
#, fuzzy
|
1342 |
#| msgid "Insert 0 for free ticket. Only numbers please."
|
1343 |
msgid ""
|
1345 |
"any symbols or characters."
|
1346 |
msgstr "Vložte 0 pro vstupenku zdarma. Prosím pouze čísla."
|
1347 |
|
1348 |
+
#: app/features/events.php:1876 app/features/events.php:1881
|
1349 |
+
#: app/features/events.php:2057 app/features/events.php:2060
|
1350 |
msgid "Price Label"
|
1351 |
msgstr "Cenový štítek"
|
1352 |
|
1353 |
+
#: app/features/events.php:1882 app/features/events.php:2061
|
1354 |
msgid "For showing on website. e.g. $15"
|
1355 |
msgstr "Pro zobrazení na webu. např. 15 $"
|
1356 |
|
1357 |
+
#: app/features/events.php:1892 app/features/events.php:2071
|
1358 |
msgid "Available Tickets"
|
1359 |
msgstr "Dostupné vstupenky"
|
1360 |
|
1361 |
+
#: app/features/events.php:1909 app/features/events.php:2081
|
1362 |
#, fuzzy
|
1363 |
#| msgid "Maximum Per Ticket"
|
1364 |
msgid "Minimum Ticket e.g. 3"
|
1365 |
msgstr "Maximum na jednu vstupenku"
|
1366 |
|
1367 |
+
#: app/features/events.php:1912 app/features/events.php:2084
|
1368 |
#, fuzzy
|
1369 |
#| msgid "Maximum Per Ticket"
|
1370 |
msgid "MinimumTicket"
|
1371 |
msgstr "Maximum na jednu vstupenku"
|
1372 |
|
1373 |
+
#: app/features/events.php:1914 app/features/events.php:2086
|
1374 |
msgid "Set a number for the minimum ticket reservation possible"
|
1375 |
msgstr ""
|
1376 |
|
1377 |
+
#: app/features/events.php:1922 app/features/events.php:2094
|
1378 |
msgid "e.g. 0"
|
1379 |
msgstr ""
|
1380 |
|
1381 |
+
#: app/features/events.php:1924 app/features/events.php:2096
|
1382 |
#, fuzzy
|
1383 |
#| msgid "Days"
|
1384 |
msgid "Day"
|
1385 |
msgstr "Dny"
|
1386 |
|
1387 |
+
#: app/features/events.php:1925 app/features/events.php:2097
|
1388 |
msgid "Hour"
|
1389 |
msgstr ""
|
1390 |
|
1391 |
+
#: app/features/events.php:1927 app/features/events.php:2099
|
1392 |
#, php-format
|
1393 |
msgid "Stop selling ticket %s before event start."
|
1394 |
msgstr ""
|
1395 |
|
1396 |
+
#: app/features/events.php:1934 app/features/events.php:2106
|
1397 |
msgid "Price per Date"
|
1398 |
msgstr "Cena za datum"
|
1399 |
|
1400 |
+
#: app/features/events.php:1964 app/features/events.php:1990
|
1401 |
+
#: app/features/events.php:2127 app/features/labels.php:60
|
1402 |
#: app/features/mec/meta_boxes/display_options.php:1421
|
1403 |
#: app/features/mec/meta_boxes/search_form.php:67
|
1404 |
#: app/features/mec/meta_boxes/search_form.php:137
|
1412 |
#: app/features/mec/meta_boxes/search_form.php:690
|
1413 |
#: app/features/mec/meta_boxes/search_form.php:796
|
1414 |
#: app/features/mec/settings.php:955 app/features/mec/single.php:349
|
1415 |
+
#: app/features/mec/single.php:391 app/features/search.php:98
|
1416 |
+
#: app/libraries/skins.php:1062
|
1417 |
msgid "Label"
|
1418 |
msgstr "Štítek"
|
1419 |
|
1420 |
+
#: app/features/events.php:2202 app/features/events.php:2240
|
1421 |
#: app/features/mec/booking.php:464 app/features/mec/booking.php:493
|
1422 |
msgid "Fee Title"
|
1423 |
msgstr "Název poplatku"
|
1424 |
|
1425 |
+
#: app/features/events.php:2208 app/features/events.php:2212
|
1426 |
+
#: app/features/events.php:2245 app/features/events.php:2248
|
1427 |
#: app/features/mec/booking.php:468 app/features/mec/booking.php:471
|
1428 |
#: app/features/mec/booking.php:497 app/features/mec/booking.php:500
|
1429 |
msgid "Amount"
|
1430 |
msgstr "Množství"
|
1431 |
|
1432 |
+
#: app/features/events.php:2213 app/features/events.php:2249
|
1433 |
#: app/features/mec/booking.php:472 app/features/mec/booking.php:501
|
1434 |
msgid ""
|
1435 |
"Fee amount, considered as fixed amount if you set the type to amount "
|
1438 |
"Výše poplatku, je považovaná za pevnou částku, pokud nastavíte typ na částku "
|
1439 |
"odpovídající procentuální hodnotě"
|
1440 |
|
1441 |
+
#: app/features/events.php:2222 app/features/events.php:2258
|
1442 |
#: app/features/mec/booking.php:479 app/features/mec/booking.php:508
|
1443 |
msgid "Percent"
|
1444 |
msgstr "Procent"
|
1445 |
|
1446 |
+
#: app/features/events.php:2223 app/features/events.php:2259
|
1447 |
#: app/features/mec/booking.php:480 app/features/mec/booking.php:509
|
1448 |
msgid "Amount (Per Ticket)"
|
1449 |
msgstr "Částka (za vstupenku)"
|
1450 |
|
1451 |
+
#: app/features/events.php:2224 app/features/events.php:2260
|
1452 |
#: app/features/mec/booking.php:481 app/features/mec/booking.php:510
|
1453 |
msgid "Amount (Per Booking)"
|
1454 |
msgstr "Částka (za rezervaci)"
|
1455 |
|
1456 |
+
#: app/features/events.php:2347 app/features/events.php:2392
|
1457 |
#: app/features/mec/booking.php:549 app/features/mec/booking.php:581
|
1458 |
msgid "Option Price"
|
1459 |
msgstr "Možnosti ceny"
|
1460 |
|
1461 |
+
#: app/features/events.php:2357 app/features/events.php:2361
|
1462 |
+
#: app/features/events.php:2401 app/features/events.php:2404
|
1463 |
#: app/features/mec/booking.php:555 app/features/mec/booking.php:558
|
1464 |
#: app/features/mec/booking.php:587 app/features/mec/booking.php:590
|
1465 |
msgid "Maximum Per Ticket"
|
1466 |
msgstr "Maximum na jednu vstupenku"
|
1467 |
|
1468 |
+
#: app/features/events.php:2362 app/features/events.php:2405
|
1469 |
#: app/features/mec/booking.php:559 app/features/mec/booking.php:591
|
1470 |
#, fuzzy
|
1471 |
#| msgid "Maximum Per Ticket. Leave it blank for unlimited."
|
1472 |
msgid "Maximum Per Ticket. Leave blank for unlimited."
|
1473 |
msgstr "Maximum na jednu vstupenku. Ponechte to prázdné pro neomezené."
|
1474 |
|
1475 |
+
#: app/features/events.php:2502 app/features/mec/booking.php:607
|
1476 |
#, fuzzy
|
1477 |
#| msgid "Attendees Limit"
|
1478 |
msgid "Per Attendee Fields"
|
1479 |
msgstr "Limit účastníků"
|
1480 |
|
1481 |
+
#: app/features/events.php:2532 app/features/mec/booking.php:640
|
1482 |
+
#: app/libraries/main.php:3247
|
1483 |
msgid "MEC Name"
|
1484 |
msgstr "MEC Jméno"
|
1485 |
|
1486 |
+
#: app/features/events.php:2533 app/features/mec/booking.php:641
|
1487 |
+
#: app/libraries/main.php:3276
|
1488 |
msgid "MEC Email"
|
1489 |
msgstr "MEC Email"
|
1490 |
|
1491 |
+
#: app/features/events.php:2534 app/features/events.php:2623
|
1492 |
#: app/features/mec/booking.php:642 app/features/mec/booking.php:738
|
1493 |
+
#: app/features/mec/single.php:190 app/libraries/main.php:3218
|
1494 |
msgid "Text"
|
1495 |
msgstr "Text"
|
1496 |
|
1497 |
+
#: app/features/events.php:2537 app/features/events.php:2626
|
1498 |
#: app/features/mec/booking.php:645 app/features/mec/booking.php:741
|
1499 |
#: app/features/mec/single.php:194 app/features/organizers.php:103
|
1500 |
#: app/features/organizers.php:148 app/features/speakers.php:119
|
1501 |
#: app/features/speakers.php:200 app/features/speakers.php:285
|
1502 |
+
#: app/libraries/main.php:3421
|
1503 |
msgid "Tel"
|
1504 |
msgstr "Tel"
|
1505 |
|
1506 |
+
#: app/features/events.php:2538 app/features/mec/booking.php:646
|
1507 |
+
#: app/libraries/main.php:3363
|
1508 |
msgid "File"
|
1509 |
msgstr "Soubor"
|
1510 |
|
1511 |
+
#: app/features/events.php:2539 app/features/events.php:2627
|
1512 |
#: app/features/mec/booking.php:647 app/features/mec/booking.php:742
|
1513 |
+
#: app/features/mec/single.php:195 app/libraries/main.php:3450
|
1514 |
msgid "Textarea"
|
1515 |
msgstr "Plocha textu"
|
1516 |
|
1517 |
+
#: app/features/events.php:2540 app/features/events.php:2628
|
1518 |
#: app/features/mec/booking.php:648 app/features/mec/booking.php:743
|
1519 |
+
#: app/features/mec/single.php:197 app/libraries/main.php:3502
|
1520 |
msgid "Checkboxes"
|
1521 |
msgstr "Zatržítko"
|
1522 |
|
1523 |
+
#: app/features/events.php:2541 app/features/events.php:2629
|
1524 |
#: app/features/mec/booking.php:649 app/features/mec/booking.php:744
|
1525 |
+
#: app/features/mec/single.php:198 app/libraries/main.php:3548
|
1526 |
msgid "Radio Buttons"
|
1527 |
msgstr "Přepínače"
|
1528 |
|
1529 |
+
#: app/features/events.php:2542 app/features/events.php:2630
|
1530 |
#: app/features/mec/booking.php:650 app/features/mec/booking.php:745
|
1531 |
#: app/features/mec/meta_boxes/search_form.php:34
|
1532 |
#: app/features/mec/meta_boxes/search_form.php:41
|
1604 |
#: app/features/mec/meta_boxes/search_form.php:792
|
1605 |
#: app/features/mec/meta_boxes/search_form.php:799
|
1606 |
#: app/features/mec/meta_boxes/search_form.php:813
|
1607 |
+
#: app/features/mec/single.php:199 app/libraries/main.php:3594
|
1608 |
msgid "Dropdown"
|
1609 |
msgstr "Rozbalovací"
|
1610 |
|
1611 |
+
#: app/features/events.php:2543 app/features/events.php:2631
|
1612 |
#: app/features/mec/booking.php:651 app/features/mec/booking.php:746
|
1613 |
+
#: app/libraries/main.php:3643
|
1614 |
msgid "Agreement"
|
1615 |
msgstr "Smlouva"
|
1616 |
|
1617 |
+
#: app/features/events.php:2544 app/features/events.php:2632
|
1618 |
#: app/features/mec/booking.php:652 app/features/mec/booking.php:747
|
1619 |
+
#: app/features/mec/single.php:196 app/libraries/main.php:3479
|
1620 |
msgid "Paragraph"
|
1621 |
msgstr "Paragraf"
|
1622 |
|
1623 |
+
#: app/features/events.php:2593 app/features/mec/booking.php:705
|
1624 |
#, fuzzy
|
1625 |
#| msgid "Required Field"
|
1626 |
msgid "Fixed Fields"
|
1627 |
msgstr "Požadovaná pole"
|
1628 |
|
1629 |
+
#: app/features/events.php:3458 app/features/events.php:3476
|
1630 |
+
#: app/features/events.php:3494 app/features/events.php:3512
|
1631 |
#, php-format
|
1632 |
msgid "Show all %s"
|
1633 |
msgstr "Ukázat všechny %s"
|
1634 |
|
1635 |
+
#: app/features/events.php:3458
|
1636 |
msgid "labels"
|
1637 |
msgstr "štítky"
|
1638 |
|
1639 |
+
#: app/features/events.php:3476
|
1640 |
msgid "locations"
|
1641 |
msgstr "umístění"
|
1642 |
|
1643 |
+
#: app/features/events.php:3494
|
1644 |
msgid "organizers"
|
1645 |
msgstr "organizátoři"
|
1646 |
|
1647 |
+
#: app/features/events.php:3528
|
1648 |
#, fuzzy
|
1649 |
#| msgid "Attendees Limit"
|
1650 |
msgid "Attendees List"
|
1651 |
msgstr "Limit účastníků"
|
1652 |
|
1653 |
+
#: app/features/events.php:3558 app/features/events.php:3748
|
1654 |
#: app/features/ix.php:3748 app/features/ix.php:3790
|
1655 |
#: app/features/locations.php:58 app/features/locations.php:263
|
1656 |
#: app/features/locations.php:324 app/features/locations.php:326
|
1668 |
#: app/features/mec/meta_boxes/search_form.php:661
|
1669 |
#: app/features/mec/meta_boxes/search_form.php:767
|
1670 |
#: app/features/mec/settings.php:929 app/features/mec/single.php:339
|
1671 |
+
#: app/features/mec/single.php:381 app/features/popup/event.php:116
|
1672 |
+
#: app/features/popup/event.php:125 app/features/search.php:74
|
1673 |
+
#: app/libraries/main.php:2575 app/libraries/main.php:6157
|
1674 |
+
#: app/libraries/main.php:6210 app/libraries/skins.php:958
|
1675 |
+
#: app/skins/single.php:919 app/skins/single.php:1362
|
1676 |
+
#: app/skins/single/default.php:195 app/skins/single/default.php:428
|
1677 |
+
#: app/skins/single/m1.php:173 app/skins/single/m2.php:96
|
1678 |
+
#: app/skins/single/modern.php:116
|
1679 |
msgid "Location"
|
1680 |
msgstr "Umístění"
|
1681 |
|
1682 |
+
#: app/features/events.php:3563
|
1683 |
msgid "Repeat"
|
1684 |
msgstr "Opakovat"
|
1685 |
|
1686 |
+
#: app/features/events.php:3564
|
1687 |
msgid "Author"
|
1688 |
msgstr "Autor"
|
1689 |
|
1690 |
+
#: app/features/events.php:3685 app/features/events.php:3686
|
1691 |
#, fuzzy
|
1692 |
#| msgid "iCal Export"
|
1693 |
msgid "iCal / Outlook Export"
|
1694 |
msgstr "iCal Export"
|
1695 |
|
1696 |
+
#: app/features/events.php:3688 app/features/events.php:3689
|
1697 |
msgid "CSV Export"
|
1698 |
msgstr "CSV Export"
|
1699 |
|
1700 |
+
#: app/features/events.php:3691 app/features/events.php:3692
|
1701 |
msgid "MS Excel Export"
|
1702 |
msgstr "MS Excel Export"
|
1703 |
|
1704 |
+
#: app/features/events.php:3694 app/features/events.php:3695
|
1705 |
msgid "XML Export"
|
1706 |
msgstr "XML Export"
|
1707 |
|
1708 |
+
#: app/features/events.php:3697 app/features/events.php:3698
|
1709 |
msgid "JSON Export"
|
1710 |
msgstr "JSON Export"
|
1711 |
|
1712 |
+
#: app/features/events.php:3700 app/features/events.php:3701
|
1713 |
+
#: app/features/events.php:3858
|
1714 |
msgid "Duplicate"
|
1715 |
msgstr "Duplikát"
|
1716 |
|
1717 |
+
#: app/features/events.php:3748 app/features/ix.php:3748
|
1718 |
#: app/features/ix.php:3790
|
1719 |
msgid "Link"
|
1720 |
msgstr "Odkaz"
|
1721 |
|
1722 |
+
#: app/features/events.php:3748 app/features/ix.php:3748
|
1723 |
#: app/features/ix.php:3790 app/features/locations.php:110
|
1724 |
#: app/features/locations.php:180 app/features/locations.php:264
|
1725 |
#: app/features/mec/meta_boxes/search_form.php:74
|
1736 |
msgid "Address"
|
1737 |
msgstr "Adresa"
|
1738 |
|
1739 |
+
#: app/features/events.php:3748
|
1740 |
#, php-format
|
1741 |
msgid "%s Tel"
|
1742 |
msgstr "%s Tel"
|
1743 |
|
1744 |
+
#: app/features/events.php:3748
|
1745 |
#, php-format
|
1746 |
msgid "%s Email"
|
1747 |
msgstr "%s Email"
|
1748 |
|
1749 |
+
#: app/features/events.php:4073 app/features/fes.php:236
|
1750 |
+
#: app/features/profile/profile.php:183 app/libraries/main.php:2658
|
1751 |
+
#: app/libraries/main.php:6190
|
1752 |
msgid "Ticket"
|
1753 |
msgstr "Vstupenka"
|
1754 |
|
1755 |
+
#: app/features/events.php:4076 app/features/profile/profile.php:186
|
1756 |
msgid "Variations"
|
1757 |
msgstr "Variace"
|
1758 |
|
1759 |
+
#: app/features/events.php:4091 app/features/fes.php:309
|
1760 |
msgid "Unknown"
|
1761 |
msgstr "Neznámý"
|
1762 |
|
1763 |
+
#: app/features/events.php:4117
|
1764 |
msgid ""
|
1765 |
"If you want to send an email, first select your attendees and then click in "
|
1766 |
"the button below, please."
|
1767 |
msgstr ""
|
1768 |
|
1769 |
+
#: app/features/events.php:4117 app/features/mec/report.php:57
|
1770 |
#, fuzzy
|
1771 |
#| msgid "Organizer Email"
|
1772 |
msgid "Send Email"
|
1773 |
msgstr "Organizátor Email"
|
1774 |
|
1775 |
+
#: app/features/events.php:4121
|
1776 |
#, fuzzy
|
1777 |
#| msgid "Attendees Form"
|
1778 |
msgid "No Attendees Found!"
|
1818 |
msgid "Order Time"
|
1819 |
msgstr "Konec"
|
1820 |
|
1821 |
+
#: app/features/fes.php:236 app/features/wc.php:83 app/libraries/main.php:2606
|
1822 |
+
#: app/libraries/main.php:2721
|
1823 |
msgid "Transaction ID"
|
1824 |
msgstr "ID transakce"
|
1825 |
|
1873 |
msgid "Please fill event title field!"
|
1874 |
msgstr "Vyplňte prosím pole názvu události!"
|
1875 |
|
1876 |
+
#: app/features/fes.php:1262
|
1877 |
#, fuzzy
|
1878 |
#| msgid "The event submitted. It will publish as soon as possible."
|
1879 |
msgid "Event submitted. It will publish as soon as possible."
|
1880 |
msgstr "Událost byla odeslána. Zveřejní se co nejdříve."
|
1881 |
|
1882 |
+
#: app/features/fes.php:1263
|
1883 |
msgid "The event published."
|
1884 |
msgstr "Událost byla publikována."
|
1885 |
|
1887 |
msgid "Go back to events list"
|
1888 |
msgstr "Přejít zpět na seznam událostí"
|
1889 |
|
1890 |
+
#: app/features/fes/form.php:264 app/features/mec/settings.php:823
|
1891 |
msgid "Excerpt"
|
1892 |
msgstr ""
|
1893 |
|
1894 |
+
#: app/features/fes/form.php:267
|
1895 |
#, fuzzy
|
1896 |
#| msgid "On Event Start"
|
1897 |
msgid "Optional Event Excerpt"
|
1898 |
msgstr "Při spuštění události"
|
1899 |
|
1900 |
+
#: app/features/fes/form.php:274
|
1901 |
msgid ""
|
1902 |
"This event is imported from Google calendar so if you modify it would "
|
1903 |
"overwrite in the next import from Google."
|
1904 |
msgstr ""
|
1905 |
|
1906 |
+
#: app/features/fes/form.php:389
|
1907 |
#: app/features/mec/meta_boxes/display_options.php:1268
|
1908 |
#: app/libraries/main.php:415
|
1909 |
msgid "Monday"
|
1910 |
msgstr "Pondělí"
|
1911 |
|
1912 |
+
#: app/features/fes/form.php:390
|
1913 |
#: app/features/mec/meta_boxes/display_options.php:1269
|
1914 |
#: app/libraries/main.php:415
|
1915 |
msgid "Tuesday"
|
1916 |
msgstr "Úterý"
|
1917 |
|
1918 |
+
#: app/features/fes/form.php:391
|
1919 |
#: app/features/mec/meta_boxes/display_options.php:1270
|
1920 |
#: app/libraries/main.php:415
|
1921 |
msgid "Wednesday"
|
1922 |
msgstr "Středa"
|
1923 |
|
1924 |
+
#: app/features/fes/form.php:392
|
1925 |
#: app/features/mec/meta_boxes/display_options.php:1271
|
1926 |
#: app/libraries/main.php:415
|
1927 |
msgid "Thursday"
|
1928 |
msgstr "Čtvrtek"
|
1929 |
|
1930 |
+
#: app/features/fes/form.php:393
|
1931 |
#: app/features/mec/meta_boxes/display_options.php:1272
|
1932 |
#: app/libraries/main.php:415
|
1933 |
msgid "Friday"
|
1934 |
msgstr "Pátek"
|
1935 |
|
1936 |
+
#: app/features/fes/form.php:394
|
1937 |
#: app/features/mec/meta_boxes/display_options.php:1273
|
1938 |
#: app/libraries/main.php:415
|
1939 |
msgid "Saturday"
|
1940 |
msgstr "Sobota"
|
1941 |
|
1942 |
+
#: app/features/fes/form.php:395
|
1943 |
#: app/features/mec/meta_boxes/display_options.php:1267
|
1944 |
#: app/libraries/main.php:415
|
1945 |
msgid "Sunday"
|
1946 |
msgstr "Neděle"
|
1947 |
|
1948 |
+
#: app/features/fes/form.php:747
|
1949 |
msgid ""
|
1950 |
"The event will finish after certain repeats. For example if you set it to "
|
1951 |
"10, the event will finish after 10 repeats."
|
1953 |
"Událost bude ukončena po určitých opakováních. Pokud například nastavíte "
|
1954 |
"hodnotu 10, událost skončí po 10 opakováních."
|
1955 |
|
1956 |
+
#: app/features/fes/form.php:771
|
1957 |
msgid "Note to reviewer"
|
1958 |
msgstr "Poznámka pro recenzenta"
|
1959 |
|
1960 |
+
#: app/features/fes/form.php:789
|
1961 |
msgid "User Data"
|
1962 |
msgstr "Údaje uživatele"
|
1963 |
|
1964 |
+
#: app/features/fes/form.php:792
|
1965 |
msgid "eg. yourname@gmail.com"
|
1966 |
msgstr "např. vasejmeno@gmail.com"
|
1967 |
|
1968 |
+
#: app/features/fes/form.php:796 app/features/organizers.php:280
|
1969 |
#: app/features/popup/event.php:183
|
1970 |
msgid "eg. John Smith"
|
1971 |
msgstr "např. Jan Novák"
|
1972 |
|
1973 |
+
#: app/features/fes/form.php:814
|
1974 |
#, fuzzy
|
1975 |
#| msgid ""
|
1976 |
#| "If you fill it, it will be replaced instead of default event page link. "
|
1983 |
"Vložte celý odkaz včetně http (s): //"
|
1984 |
|
1985 |
# v kontextu
|
1986 |
+
#: app/features/fes/form.php:850 app/features/mec/settings.php:741
|
1987 |
msgid "Featured Image"
|
1988 |
msgstr "Hlavní obrázek"
|
1989 |
|
1990 |
+
#: app/features/fes/form.php:855
|
1991 |
msgid "Remove Image"
|
1992 |
msgstr "Odebrat obrázek"
|
1993 |
|
1994 |
+
#: app/features/fes/form.php:891 app/features/labels.php:61
|
1995 |
#: app/features/labels.php:221 app/features/mec.php:462
|
1996 |
#: app/features/mec/meta_boxes/filter.php:72
|
1997 |
+
#: app/features/mec/meta_boxes/filter.php:133 app/libraries/main.php:6154
|
1998 |
+
#: app/libraries/main.php:6207 app/skins/single.php:1132
|
1999 |
#: app/skins/single/default.php:173 app/skins/single/default.php:405
|
2000 |
#: app/skins/single/m1.php:76 app/skins/single/modern.php:252
|
2001 |
msgid "Labels"
|
2002 |
msgstr "Štítky"
|
2003 |
|
2004 |
+
#: app/features/fes/form.php:937 app/features/mec.php:460
|
2005 |
#: app/features/mec/meta_boxes/filter.php:73
|
2006 |
#: app/features/mec/meta_boxes/filter.php:151
|
2007 |
msgid "Tags"
|
2008 |
msgstr "Tagy"
|
2009 |
|
2010 |
+
#: app/features/fes/form.php:939
|
2011 |
msgid "Insert your desired tags, comma separated."
|
2012 |
msgstr "Vložte požadované tagy oddělené čárkami."
|
2013 |
|
2014 |
+
#: app/features/fes/form.php:961
|
2015 |
msgid "Speakers Names"
|
2016 |
msgstr "Jméno řečníka"
|
2017 |
|
2018 |
+
#: app/features/fes/form.php:962
|
2019 |
#, fuzzy
|
2020 |
#| msgid "Separate names with commas Similar Justin, Cris"
|
2021 |
msgid "Separate names with commas: Justin, Chris"
|
2022 |
msgstr "Oddělte jména čárkami - Novák Petr, Pavel"
|
2023 |
|
2024 |
+
#: app/features/fes/form.php:992 app/modules/booking/steps/form.php:350
|
2025 |
msgid "Submit"
|
2026 |
msgstr "Potvrdit"
|
2027 |
|
2059 |
msgstr "MEC Import / Export"
|
2060 |
|
2061 |
#: app/features/ix.php:107 app/features/mec/support.php:73
|
2062 |
+
#: app/libraries/main.php:822
|
2063 |
msgid "Import / Export"
|
2064 |
msgstr "Import / Export"
|
2065 |
|
2079 |
msgid "An error occurred during the file upload! Please check permissions!"
|
2080 |
msgstr "Při nahrávání souboru došlo k chybě! Zkontrolujte oprávnění!"
|
2081 |
|
2082 |
+
#: app/features/ix.php:265 app/libraries/main.php:6437
|
2083 |
+
#: app/libraries/main.php:6457
|
2084 |
msgid "Confirmed"
|
2085 |
msgstr "Potvrzeno"
|
2086 |
|
2087 |
+
#: app/features/ix.php:266 app/libraries/main.php:6438
|
2088 |
+
#: app/libraries/main.php:6465
|
2089 |
msgid "Rejected"
|
2090 |
msgstr "Odmítnuto"
|
2091 |
|
2092 |
+
#: app/features/ix.php:270 app/features/mec/booking.php:991
|
2093 |
+
#: app/features/mec/booking.php:1013 app/features/mec/modules.php:401
|
2094 |
#: app/features/mec/modules.php:423 app/features/mec/notifications.php:1046
|
2095 |
#: app/features/mec/notifications.php:1068 app/features/mec/settings.php:1239
|
2096 |
+
#: app/features/mec/settings.php:1261 app/features/mec/single.php:446
|
2097 |
+
#: app/features/mec/single.php:468 app/libraries/main.php:6485
|
2098 |
msgid "Verified"
|
2099 |
msgstr "Ověřeno"
|
2100 |
|
2101 |
#: app/features/ix.php:271 app/features/labels.php:118
|
2102 |
+
#: app/features/labels.php:143 app/libraries/main.php:6486
|
2103 |
#: app/skins/agenda/render.php:43 app/skins/available_spot/tpl.php:56
|
2104 |
#: app/skins/carousel/render.php:38 app/skins/countdown/tpl.php:40
|
2105 |
#: app/skins/cover/tpl.php:36 app/skins/daily_view/render.php:28
|
2403 |
msgid "Add to Google Calendar"
|
2404 |
msgstr "Přidat do Google kalendáře"
|
2405 |
|
2406 |
+
#: app/features/ix/export_g_calendar.php:93 app/features/mec/booking.php:993
|
2407 |
#: app/features/mec/modules.php:403 app/features/mec/notifications.php:1048
|
2408 |
+
#: app/features/mec/settings.php:1241 app/features/mec/single.php:448
|
2409 |
msgid "Checking ..."
|
2410 |
msgstr "Ověřování ..."
|
2411 |
|
2893 |
|
2894 |
#: app/features/labels.php:180 app/features/locations.php:265
|
2895 |
#: app/features/organizers.php:206 app/features/speakers.php:286
|
2896 |
+
#: app/modules/booking/steps/tickets.php:133
|
2897 |
msgid "Count"
|
2898 |
msgstr "Spočítat"
|
2899 |
|
2910 |
|
2911 |
#: app/features/locations.php:59 app/features/mec.php:463
|
2912 |
#: app/features/mec/dashboard.php:279 app/features/mec/meta_boxes/filter.php:70
|
2913 |
+
#: app/features/mec/meta_boxes/filter.php:97 app/libraries/main.php:6156
|
2914 |
+
#: app/libraries/main.php:6209
|
2915 |
msgid "Locations"
|
2916 |
msgstr "Umístění"
|
2917 |
|
3030 |
msgid "Don't show map in single event page"
|
3031 |
msgstr "Nezobrazovat mapu na jednostránkové události"
|
3032 |
|
3033 |
+
#: app/features/locations.php:398 app/libraries/main.php:6193
|
3034 |
+
#: app/libraries/main.php:6240
|
3035 |
msgid "Other Locations"
|
3036 |
msgstr "Další místa"
|
3037 |
|
3119 |
#: app/features/mec.php:464 app/features/mec/dashboard.php:286
|
3120 |
#: app/features/mec/meta_boxes/filter.php:71
|
3121 |
#: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
|
3122 |
+
#: app/libraries/main.php:6158 app/libraries/main.php:6211
|
3123 |
msgid "Organizers"
|
3124 |
msgstr "Organizátoři"
|
3125 |
|
3325 |
msgstr "Vyhledávání ..."
|
3326 |
|
3327 |
#: app/features/mec/booking.php:80 app/features/mec/booking.php:753
|
3328 |
+
#: app/features/mec/booking.php:909 app/features/mec/booking.php:918
|
3329 |
+
#: app/features/mec/booking.php:928 app/features/mec/booking.php:1010
|
3330 |
+
#: app/features/mec/booking.php:1024 app/features/mec/messages.php:15
|
3331 |
#: app/features/mec/messages.php:51 app/features/mec/messages.php:60
|
3332 |
#: app/features/mec/messages.php:94 app/features/mec/messages.php:103
|
3333 |
#: app/features/mec/modules.php:25 app/features/mec/modules.php:368
|
3339 |
#: app/features/mec/notifications.php:1079 app/features/mec/settings.php:42
|
3340 |
#: app/features/mec/settings.php:1190 app/features/mec/settings.php:1200
|
3341 |
#: app/features/mec/settings.php:1258 app/features/mec/settings.php:1272
|
3342 |
+
#: app/features/mec/single.php:21 app/features/mec/single.php:413
|
3343 |
+
#: app/features/mec/single.php:423 app/features/mec/single.php:465
|
3344 |
+
#: app/features/mec/single.php:479 app/features/mec/styles.php:11
|
3345 |
#: app/features/mec/styles.php:31 app/features/mec/styles.php:40
|
3346 |
#: app/features/mec/styles.php:77 app/features/mec/styles.php:86
|
3347 |
#: app/features/mec/styling.php:37 app/features/mec/styling.php:257
|
3391 |
|
3392 |
#: app/features/mec/booking.php:133 app/features/mec/booking.php:187
|
3393 |
#: app/features/mec/booking.php:254 app/features/mec/booking.php:823
|
3394 |
+
#: app/features/mec/booking.php:848
|
3395 |
#: app/features/mec/meta_boxes/search_form.php:33
|
3396 |
#: app/features/mec/meta_boxes/search_form.php:40
|
3397 |
#: app/features/mec/meta_boxes/search_form.php:48
|
3497 |
|
3498 |
#: app/features/mec/booking.php:134 app/features/mec/booking.php:186
|
3499 |
#: app/features/mec/booking.php:253 app/features/mec/booking.php:822
|
3500 |
+
#: app/features/mec/booking.php:849 app/features/mec/settings.php:105
|
3501 |
msgid "Enabled"
|
3502 |
msgstr "Povoleno"
|
3503 |
|
3767 |
msgstr "Automatické ověření pro placené rezervace"
|
3768 |
|
3769 |
#: app/features/mec/booking.php:374 app/features/mec/notifications.php:269
|
3770 |
+
#: app/features/notifications.php:155 app/libraries/main.php:596
|
3771 |
msgid "Booking Confirmation"
|
3772 |
msgstr "Potvrzení rezervace"
|
3773 |
|
3783 |
msgid "Send confirmation email in auto confirmation mode"
|
3784 |
msgstr ""
|
3785 |
|
3786 |
+
#: app/features/mec/booking.php:411 app/libraries/main.php:566
|
3787 |
#, fuzzy
|
3788 |
#| msgid "Booking Style"
|
3789 |
msgid "Booking Shortcode"
|
3823 |
"novou nabídku na řídícím panelu > Rezervace"
|
3824 |
|
3825 |
#: app/features/mec/booking.php:445 app/features/mec/booking.php:815
|
3826 |
+
#: app/libraries/main.php:568
|
3827 |
msgid "Taxes / Fees"
|
3828 |
msgstr "Daně / poplatky"
|
3829 |
|
3835 |
msgid "Add Fee"
|
3836 |
msgstr "Přidat poplatek"
|
3837 |
|
3838 |
+
#: app/features/mec/booking.php:522 app/libraries/main.php:569
|
3839 |
msgid "Ticket Variations & Options"
|
3840 |
msgstr "Varianty a možnosti vstupenek"
|
3841 |
|
3853 |
|
3854 |
#: app/features/mec/booking.php:807
|
3855 |
msgid ""
|
3856 |
+
"By enabling this feature, tickets will be added to WooCommerce cart and all "
|
3857 |
+
"payment process would be done by WooCommerce so all of MEC payment related "
|
3858 |
+
"modules will be disabled. To configure your desired gateways and booking "
|
3859 |
+
"fields etc, you need to configure WooCommerce on your website."
|
3860 |
msgstr ""
|
3861 |
|
3862 |
#: app/features/mec/booking.php:809
|
3884 |
msgstr "Varianty vstupenky / možnosti"
|
3885 |
|
3886 |
#: app/features/mec/booking.php:819
|
3887 |
+
msgid "Automatically complete WooCommerce orders"
|
3888 |
msgstr ""
|
3889 |
|
3890 |
#: app/features/mec/booking.php:827
|
3891 |
+
#, fuzzy
|
3892 |
+
#| msgid "WooCommerce gateways"
|
3893 |
+
msgid "Auto WooCommerce orders"
|
3894 |
+
msgstr "Brána WooCommerce"
|
3895 |
|
3896 |
#: app/features/mec/booking.php:828
|
3897 |
msgid "It applies only to the orders that are related to MEC."
|
3913 |
msgid "Redirect to Checkout"
|
3914 |
msgstr "Získat směr"
|
3915 |
|
3916 |
+
#: app/features/mec/booking.php:845
|
3917 |
+
#, fuzzy
|
3918 |
+
#| msgid "Booking Form"
|
3919 |
+
msgid "MEC Booking Form"
|
3920 |
+
msgstr "Rezervační formulář"
|
3921 |
+
|
3922 |
+
#: app/features/mec/booking.php:854
|
3923 |
+
msgid ""
|
3924 |
+
"If enabled then users should fill the booking form in MEC and then they will "
|
3925 |
+
"be redirected to checkout."
|
3926 |
+
msgstr ""
|
3927 |
+
|
3928 |
+
#: app/features/mec/booking.php:880
|
3929 |
msgid "Enable Organizer Payment Module"
|
3930 |
msgstr "Povolit platební modul organizátora"
|
3931 |
|
3932 |
+
#: app/features/mec/booking.php:885
|
3933 |
msgid ""
|
3934 |
"By enabling this module, organizers are able to insert their own payment "
|
3935 |
"credentials for enabled gateways per event and receive the payments directly!"
|
3937 |
"Po aktivaci tohoto modulu mohou organizátoři vkládat své vlastní platební "
|
3938 |
"údaje pro povolené brány pro události a přijímat platby přímo!"
|
3939 |
|
3940 |
+
#: app/features/mec/booking.php:895
|
3941 |
+
msgid "Disable / Enable payment gateways per event"
|
3942 |
+
msgstr ""
|
3943 |
+
|
3944 |
+
#: app/features/mec/booking.php:899
|
3945 |
+
#, fuzzy
|
3946 |
+
#| msgid "Payment Gateways"
|
3947 |
+
msgid "Payment Gateways Per Event"
|
3948 |
+
msgstr "Platební brány"
|
3949 |
+
|
3950 |
+
#: app/features/mec/booking.php:900
|
3951 |
+
#, fuzzy
|
3952 |
+
#| msgid ""
|
3953 |
+
#| "By enabling this module, organizers are able to insert their own payment "
|
3954 |
+
#| "credentials for enabled gateways per event and receive the payments "
|
3955 |
+
#| "directly!"
|
3956 |
+
msgid ""
|
3957 |
+
"By enabling this module, users are able to disable / enable payment gateways "
|
3958 |
+
"per event"
|
3959 |
+
msgstr ""
|
3960 |
+
"Po aktivaci tohoto modulu mohou organizátoři vkládat své vlastní platební "
|
3961 |
+
"údaje pro povolené brány pro události a přijímat platby přímo!"
|
3962 |
+
|
3963 |
+
#: app/features/mec/booking.php:988 app/features/mec/messages.php:78
|
3964 |
#: app/features/mec/modules.php:398 app/features/mec/notifications.php:1043
|
3965 |
+
#: app/features/mec/settings.php:1236 app/features/mec/single.php:443
|
3966 |
#: app/features/mec/styles.php:60 app/features/mec/styling.php:311
|
3967 |
msgid "Saved"
|
3968 |
msgstr "Uloženo"
|
3969 |
|
3970 |
+
#: app/features/mec/booking.php:989 app/features/mec/messages.php:79
|
3971 |
#: app/features/mec/modules.php:399 app/features/mec/notifications.php:1044
|
3972 |
+
#: app/features/mec/settings.php:1237 app/features/mec/single.php:444
|
3973 |
#: app/features/mec/styles.php:61 app/features/mec/styling.php:312
|
3974 |
msgid "Settings Saved!"
|
3975 |
msgstr "Nastavení uložena!"
|
3976 |
|
3977 |
+
#: app/features/mec/booking.php:1015 app/features/mec/modules.php:425
|
3978 |
#: app/features/mec/notifications.php:1070 app/features/mec/settings.php:1263
|
3979 |
+
#: app/features/mec/single.php:470
|
3980 |
msgid "Please Refresh Page"
|
3981 |
msgstr "Prosím obnovte stránku"
|
3982 |
|
4105 |
msgstr "Stáhnout nastavení"
|
4106 |
|
4107 |
#: app/features/mec/messages.php:28 app/features/mec/support-page.php:102
|
4108 |
+
#: app/features/mec/support.php:66 app/libraries/main.php:815
|
4109 |
msgid "Messages"
|
4110 |
msgstr "Zprávy"
|
4111 |
|
4619 |
|
4620 |
#: app/features/mec/meta_boxes/display_options.php:666
|
4621 |
#: app/features/mec/meta_boxes/display_options.php:690
|
4622 |
+
#: app/libraries/main.php:335 app/libraries/main.php:2055
|
4623 |
+
#: app/libraries/main.php:2080
|
4624 |
msgid "List View"
|
4625 |
msgstr "Zobrazení seznamu"
|
4626 |
|
4627 |
#: app/features/mec/meta_boxes/display_options.php:667
|
4628 |
#: app/features/mec/meta_boxes/display_options.php:711
|
4629 |
+
#: app/libraries/main.php:336 app/libraries/main.php:2056
|
4630 |
+
#: app/libraries/main.php:2081
|
4631 |
msgid "Grid View"
|
4632 |
msgstr "Zobrazení mřížky"
|
4633 |
|
4641 |
|
4642 |
#: app/features/mec/meta_boxes/display_options.php:669
|
4643 |
#: app/features/mec/meta_boxes/display_options.php:732
|
4644 |
+
#: app/libraries/main.php:339 app/libraries/main.php:2049
|
4645 |
+
#: app/libraries/main.php:2074
|
4646 |
msgid "Yearly View"
|
4647 |
msgstr "Roční zobrazení"
|
4648 |
|
4653 |
|
4654 |
#: app/features/mec/meta_boxes/display_options.php:671
|
4655 |
#: app/features/mec/meta_boxes/display_options.php:781
|
4656 |
+
#: app/libraries/main.php:342 app/libraries/main.php:2051
|
4657 |
+
#: app/libraries/main.php:2076
|
4658 |
msgid "Weekly View"
|
4659 |
msgstr "Týdenní zobrazení"
|
4660 |
|
4661 |
#: app/features/mec/meta_boxes/display_options.php:672
|
4662 |
#: app/features/mec/meta_boxes/display_options.php:791
|
4663 |
+
#: app/libraries/main.php:341 app/libraries/main.php:2052
|
4664 |
+
#: app/libraries/main.php:2077
|
4665 |
msgid "Daily View"
|
4666 |
msgstr "Denní zobrazení"
|
4667 |
|
5157 |
#: app/features/mec/meta_boxes/search_form.php:676
|
5158 |
#: app/features/mec/meta_boxes/search_form.php:782
|
5159 |
#: app/features/mec/settings.php:942 app/features/mec/single.php:344
|
5160 |
+
#: app/features/mec/single.php:386 app/features/search.php:86
|
5161 |
+
#: app/features/speakers.php:60 app/features/speakers.php:283
|
5162 |
+
#: app/libraries/main.php:6161 app/libraries/main.php:6214
|
5163 |
+
#: app/libraries/skins.php:1010 app/modules/speakers/details.php:18
|
5164 |
msgid "Speaker"
|
5165 |
msgstr "Řečník"
|
5166 |
|
5176 |
#: app/features/mec/meta_boxes/search_form.php:683
|
5177 |
#: app/features/mec/meta_boxes/search_form.php:789
|
5178 |
#: app/features/mec/settings.php:949 app/features/mec/single.php:353
|
5179 |
+
#: app/features/mec/single.php:395 app/features/search.php:92
|
5180 |
+
#: app/libraries/skins.php:1036
|
5181 |
msgid "Tag"
|
5182 |
msgstr "Štítek"
|
5183 |
|
5272 |
"Po povolení a uložení nastavení byste měli stránku znovu načíst a zobrazit "
|
5273 |
"novou nabídku na řídícím panelu > MEC"
|
5274 |
|
5275 |
+
#: app/features/mec/modules.php:66 app/libraries/main.php:576
|
5276 |
#, fuzzy
|
5277 |
#| msgid "Google Maps Options"
|
5278 |
msgid "Map Options"
|
5361 |
"Zkontrolujte to, pouze pokud jiný plugin / motiv načítá rozhraní Google Maps "
|
5362 |
"API"
|
5363 |
|
5364 |
+
#: app/features/mec/modules.php:167 app/libraries/main.php:577
|
5365 |
msgid "Export Options"
|
5366 |
msgstr "Možnosti exportu"
|
5367 |
|
5376 |
msgid "Google Calendar"
|
5377 |
msgstr "Kalendář Google"
|
5378 |
|
5379 |
+
#: app/features/mec/modules.php:194 app/libraries/main.php:578
|
5380 |
#: app/modules/local-time/details.php:45 app/modules/local-time/type1.php:42
|
5381 |
#: app/widgets/single.php:99
|
5382 |
msgid "Local Time"
|
5388 |
"Zobrazit čas události na základě místního času návštěvníka na stránce "
|
5389 |
"události"
|
5390 |
|
5391 |
+
#: app/features/mec/modules.php:208 app/libraries/main.php:579
|
5392 |
#: app/modules/qrcode/details.php:38 app/widgets/single.php:155
|
5393 |
msgid "QR Code"
|
5394 |
msgstr "QR kód"
|
5398 |
msgstr ""
|
5399 |
"Zobrazte QR kód události na stránce s podrobnostmi a fakturaci za rezervaci"
|
5400 |
|
5401 |
+
#: app/features/mec/modules.php:226 app/libraries/main.php:580
|
5402 |
#: app/modules/weather/darksky.php:15 app/modules/weather/weatherapi.php:16
|
5403 |
msgid "Weather"
|
5404 |
msgstr "Počasí"
|
5437 |
msgid "Show social network module"
|
5438 |
msgstr "Zobrazit modul sociální sítě"
|
5439 |
|
5440 |
+
#: app/features/mec/modules.php:299 app/libraries/main.php:582
|
5441 |
#: app/modules/next-event/details.php:127
|
5442 |
msgid "Next Event"
|
5443 |
msgstr "Další událost"
|
6053 |
msgid "Add to Google Calendar Links for next 20 occurrences"
|
6054 |
msgstr ""
|
6055 |
|
6056 |
+
#: app/features/mec/notifications.php:158 app/libraries/main.php:595
|
6057 |
msgid "Booking Verification"
|
6058 |
msgstr "Ověření rezervace"
|
6059 |
|
6093 |
msgstr "Odkaz na zrušení rezervace."
|
6094 |
|
6095 |
#: app/features/mec/notifications.php:395 app/features/notifications.php:158
|
6096 |
+
#: app/libraries/main.php:597
|
6097 |
msgid "Booking Cancellation"
|
6098 |
msgstr "Zrušení rezervace"
|
6099 |
|
6126 |
msgid "Admin booking management link."
|
6127 |
msgstr "Odkaz administrátora na správu rezervace."
|
6128 |
|
6129 |
+
#: app/features/mec/notifications.php:516 app/libraries/main.php:599
|
6130 |
msgid "Admin"
|
6131 |
msgstr "Administrátor"
|
6132 |
|
6141 |
msgstr "Zašle správci informaci o přijetí nové rezervace."
|
6142 |
|
6143 |
#: app/features/mec/notifications.php:636 app/features/notifications.php:164
|
6144 |
+
#: app/libraries/main.php:598 app/libraries/notifications.php:596
|
6145 |
msgid "Booking Reminder"
|
6146 |
msgstr "Připomenutí rezervace"
|
6147 |
|
6170 |
msgid "only once per hour"
|
6171 |
msgstr "pouze jednou denně"
|
6172 |
|
6173 |
+
#: app/features/mec/notifications.php:699 app/libraries/main.php:7241
|
6174 |
+
#: app/libraries/main.php:7258
|
6175 |
#, fuzzy
|
6176 |
#| msgid "hours"
|
6177 |
msgid "Hours"
|
6186 |
msgstr ""
|
6187 |
|
6188 |
#: app/features/mec/notifications.php:768 app/features/popup/event.php:253
|
6189 |
+
#: app/libraries/main.php:587
|
6190 |
msgid "New Event"
|
6191 |
msgstr "Nová událost"
|
6192 |
|
6232 |
msgid "Admin events management link."
|
6233 |
msgstr "Odkaz administrátora na správu událostí."
|
6234 |
|
6235 |
+
#: app/features/mec/notifications.php:858 app/libraries/main.php:588
|
6236 |
msgid "User Event Publishing"
|
6237 |
msgstr "Publikování uživatelských událostí"
|
6238 |
|
6252 |
"Odešle po zveřejnění nové události ze zadání z webových stránek (frontend) "
|
6253 |
"nebo z administrace webových stránek (backend)."
|
6254 |
|
6255 |
+
#: app/features/mec/notifications.php:940 app/libraries/main.php:602
|
6256 |
#, fuzzy
|
6257 |
#| msgid "Notifications"
|
6258 |
msgid "Notifications Per Event"
|
6446 |
msgstr "Můžete povolit nebo zakázat skripty schématu"
|
6447 |
|
6448 |
#: app/features/mec/settings.php:163 app/features/mec/settings.php:173
|
6449 |
+
#: app/libraries/main.php:6165 app/libraries/main.php:6218
|
6450 |
msgid "Weekdays"
|
6451 |
msgstr "Pracovní dny"
|
6452 |
|
7231 |
msgid "Custom Fields"
|
7232 |
msgstr "Vlastní styly"
|
7233 |
|
7234 |
+
#: app/features/mec/single.php:192 app/libraries/main.php:3334
|
7235 |
msgid "URL"
|
7236 |
msgstr ""
|
7237 |
|
7300 |
"jediné události."
|
7301 |
|
7302 |
#: app/features/mec/single.php:318 app/libraries/main.php:560
|
7303 |
+
#: app/skins/single.php:166 app/skins/single.php:418
|
7304 |
msgid "Related Events"
|
7305 |
msgstr "Související události"
|
7306 |
|
7310 |
"Zobrazte související události na základě taxonomie na stránce s jednou "
|
7311 |
"událostí."
|
7312 |
|
7313 |
+
#: app/features/mec/single.php:328 app/features/mec/single.php:370
|
7314 |
msgid "Select Taxonomies:"
|
7315 |
msgstr "Vyberte taxonomie:"
|
7316 |
|
7317 |
+
#: app/features/mec/single.php:360 app/libraries/main.php:561
|
7318 |
+
#, fuzzy
|
7319 |
+
#| msgid "Next/Previous Buttons"
|
7320 |
+
msgid "Next / Previous Events"
|
7321 |
+
msgstr "Tlačítka Další / Předchozí"
|
7322 |
+
|
7323 |
+
#: app/features/mec/single.php:364
|
7324 |
+
#, fuzzy
|
7325 |
+
#| msgid "Display related events based on taxonomy in single event page."
|
7326 |
+
msgid "Display next / previous events based on taxonomy in single event page."
|
7327 |
+
msgstr ""
|
7328 |
+
"Zobrazte související události na základě taxonomie na stránce s jednou "
|
7329 |
+
"událostí."
|
7330 |
+
|
7331 |
+
#: app/features/mec/single.php:402 app/libraries/main.php:603
|
7332 |
#, fuzzy
|
7333 |
#| msgid "Next Occurrence"
|
7334 |
msgid "Edit Per Occurrences"
|
7335 |
msgstr "Další výskyt"
|
7336 |
|
7337 |
+
#: app/features/mec/single.php:406
|
7338 |
msgid "Ability to edit some event information per occurrence"
|
7339 |
msgstr ""
|
7340 |
|
7538 |
msgid "MEC Settings"
|
7539 |
msgstr "MEC - Nastavení"
|
7540 |
|
7541 |
+
#: app/features/mec/support-page.php:99 app/libraries/main.php:655
|
7542 |
msgid "Single Event"
|
7543 |
msgstr "Jedna událost"
|
7544 |
|
7898 |
msgid "Create a support ticket"
|
7899 |
msgstr "Vytvořte lístek podpory"
|
7900 |
|
7901 |
+
#: app/features/mec/support.php:52 app/libraries/main.php:801
|
7902 |
msgid "Styling Options"
|
7903 |
msgstr "Možnosti stylování"
|
7904 |
|
7905 |
+
#: app/features/mec/support.php:59 app/libraries/main.php:808
|
7906 |
msgid "Custom CSS"
|
7907 |
msgstr "Vlastní CSS"
|
7908 |
|
8171 |
msgid "eg. https://webnus.net"
|
8172 |
msgstr "např. https://webnus.net"
|
8173 |
|
8174 |
+
#: app/features/organizers.php:312 app/libraries/main.php:6192
|
8175 |
+
#: app/libraries/main.php:6239 app/skins/single.php:1290
|
8176 |
msgid "Other Organizers"
|
8177 |
msgstr "Další organizátoři"
|
8178 |
|
8249 |
|
8250 |
#: app/features/popup/event.php:262 app/features/popup/shortcode.php:550
|
8251 |
#: app/modules/booking/steps/form.php:350
|
8252 |
+
#: app/modules/booking/steps/tickets.php:171 app/skins/countdown/tpl.php:123
|
8253 |
+
#: app/skins/countdown/tpl.php:169 app/skins/countdown/tpl.php:216
|
8254 |
msgid "Next"
|
8255 |
msgstr "Další"
|
8256 |
|
8362 |
msgid "Please %s/%s in order to see your bookings / profile."
|
8363 |
msgstr "Prosím %s/%s za účelem zobrazení vašich rezervací / profilu."
|
8364 |
|
8365 |
+
#: app/features/profile/profile.php:20 app/libraries/main.php:2444
|
8366 |
msgid "Your booking already canceled!"
|
8367 |
msgstr "Vaše rezervace již byla zrušena!"
|
8368 |
|
8370 |
msgid "#"
|
8371 |
msgstr "#"
|
8372 |
|
8373 |
+
#: app/features/profile/profile.php:61 app/libraries/main.php:3666
|
8374 |
msgid "Status"
|
8375 |
msgstr "Stav"
|
8376 |
|
8377 |
+
#: app/features/profile/profile.php:64 app/libraries/main.php:2642
|
8378 |
msgid "Attendees"
|
8379 |
msgstr "Účastníci"
|
8380 |
|
8430 |
msgid "No search result."
|
8431 |
msgstr "Žádný výsledek vyhledávání."
|
8432 |
|
8433 |
+
#: app/features/search_bar/search_result.php:12 app/libraries/main.php:6194
|
8434 |
+
#: app/libraries/main.php:6241 app/libraries/notifications.php:1025
|
8435 |
#: app/libraries/render.php:518 app/libraries/render.php:838
|
8436 |
#: app/modules/local-time/details.php:50 app/modules/local-time/type1.php:45
|
8437 |
#: app/modules/local-time/type2.php:47 app/modules/local-time/type3.php:45
|
8438 |
+
#: app/modules/next-event/details.php:145 app/skins/single.php:1182
|
8439 |
#: app/skins/single/default.php:124 app/skins/single/default.php:358
|
8440 |
#: app/skins/single/m1.php:46 app/skins/single/modern.php:222
|
8441 |
#, fuzzy
|
8461 |
msgstr "Vložte email řečníka."
|
8462 |
|
8463 |
#: app/features/speakers.php:135 app/features/speakers.php:208
|
8464 |
+
#: app/skins/single.php:1264 app/skins/single.php:1323
|
8465 |
#: app/skins/single/default.php:202 app/skins/single/default.php:268
|
8466 |
#: app/skins/single/default.php:435 app/skins/single/default.php:501
|
8467 |
#: app/skins/single/m1.php:126 app/skins/single/m1.php:180
|
8530 |
"Poznámka: Řečníky můžete použít na vaší stránce úprav / přidání > sekce "
|
8531 |
"hodinového plánu a v sekci widgetu řečníka!"
|
8532 |
|
8533 |
+
#: app/features/wc.php:102 app/libraries/notifications.php:1010
|
8534 |
+
#: app/libraries/notifications.php:1025 app/libraries/notifications.php:1036
|
8535 |
+
#: app/libraries/notifications.php:1304 app/libraries/notifications.php:1305
|
8536 |
#, php-format
|
8537 |
msgid "%s to %s"
|
8538 |
msgstr ""
|
8574 |
msgid "day"
|
8575 |
msgstr "den"
|
8576 |
|
8577 |
+
#: app/libraries/factory.php:377 app/modules/countdown/details.php:142
|
8578 |
+
#: app/skins/available_spot/tpl.php:147 app/skins/countdown/tpl.php:137
|
8579 |
+
#: app/skins/countdown/tpl.php:183 app/skins/countdown/tpl.php:234
|
8580 |
msgid "days"
|
8581 |
msgstr "dny"
|
8582 |
|
8584 |
msgid "hour"
|
8585 |
msgstr "hodina"
|
8586 |
|
8587 |
+
#: app/libraries/factory.php:379 app/modules/countdown/details.php:149
|
8588 |
+
#: app/skins/available_spot/tpl.php:151 app/skins/countdown/tpl.php:143
|
8589 |
+
#: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:240
|
8590 |
msgid "hours"
|
8591 |
msgstr "hodiny"
|
8592 |
|
8594 |
msgid "minute"
|
8595 |
msgstr "minuta"
|
8596 |
|
8597 |
+
#: app/libraries/factory.php:381 app/modules/countdown/details.php:156
|
8598 |
+
#: app/skins/available_spot/tpl.php:155 app/skins/countdown/tpl.php:149
|
8599 |
+
#: app/skins/countdown/tpl.php:195 app/skins/countdown/tpl.php:246
|
8600 |
msgid "minutes"
|
8601 |
msgstr "minuty"
|
8602 |
|
8604 |
msgid "second"
|
8605 |
msgstr "vteřina"
|
8606 |
|
8607 |
+
#: app/libraries/factory.php:383 app/modules/countdown/details.php:163
|
8608 |
+
#: app/skins/available_spot/tpl.php:159 app/skins/countdown/tpl.php:155
|
8609 |
+
#: app/skins/countdown/tpl.php:201 app/skins/countdown/tpl.php:252
|
8610 |
msgid "seconds"
|
8611 |
msgstr "vteřiny"
|
8612 |
|
8622 |
msgid "There is no excerpt because this is a protected post."
|
8623 |
msgstr "Neexistuje výňatek, protože se jedná o chráněný příspěvek."
|
8624 |
|
8625 |
+
#: app/libraries/main.php:337 app/libraries/main.php:2057
|
8626 |
+
#: app/libraries/main.php:2082
|
8627 |
msgid "Agenda View"
|
8628 |
msgstr "Zobrazení agendy"
|
8629 |
|
8630 |
+
#: app/libraries/main.php:338 app/libraries/main.php:2048
|
8631 |
+
#: app/libraries/main.php:2073
|
8632 |
msgid "Full Calendar"
|
8633 |
msgstr "Plný kalendář"
|
8634 |
|
8635 |
+
#: app/libraries/main.php:340 app/libraries/main.php:2050
|
8636 |
+
#: app/libraries/main.php:2075
|
8637 |
msgid "Calendar/Monthly View"
|
8638 |
msgstr "Kalendář / zobrazení měsíce"
|
8639 |
|
8640 |
+
#: app/libraries/main.php:343 app/libraries/main.php:2053
|
8641 |
+
#: app/libraries/main.php:2078
|
8642 |
msgid "Timetable View"
|
8643 |
msgstr "Zobrazení rozvrhu"
|
8644 |
|
8645 |
+
#: app/libraries/main.php:344 app/libraries/main.php:2054
|
8646 |
+
#: app/libraries/main.php:2079
|
8647 |
msgid "Masonry View"
|
8648 |
msgstr "Zobrazení zdi"
|
8649 |
|
8650 |
+
#: app/libraries/main.php:345 app/libraries/main.php:2058
|
8651 |
+
#: app/libraries/main.php:2083
|
8652 |
msgid "Map View"
|
8653 |
msgstr "Zobrazení mapy"
|
8654 |
|
8679 |
msgid "Timeline View"
|
8680 |
msgstr "Zobrazení rozvrhu"
|
8681 |
|
8682 |
+
#: app/libraries/main.php:390 app/libraries/main.php:6167
|
8683 |
+
#: app/libraries/main.php:6220
|
8684 |
msgid "SU"
|
8685 |
msgstr "NE"
|
8686 |
|
8687 |
+
#: app/libraries/main.php:391 app/libraries/main.php:6168
|
8688 |
+
#: app/libraries/main.php:6221
|
8689 |
msgid "MO"
|
8690 |
msgstr "PO"
|
8691 |
|
8692 |
+
#: app/libraries/main.php:392 app/libraries/main.php:6169
|
8693 |
+
#: app/libraries/main.php:6222
|
8694 |
msgid "TU"
|
8695 |
msgstr "ÚT"
|
8696 |
|
8697 |
+
#: app/libraries/main.php:393 app/libraries/main.php:6170
|
8698 |
+
#: app/libraries/main.php:6223
|
8699 |
msgid "WE"
|
8700 |
msgstr "ST"
|
8701 |
|
8702 |
+
#: app/libraries/main.php:394 app/libraries/main.php:6171
|
8703 |
+
#: app/libraries/main.php:6224
|
8704 |
msgid "TH"
|
8705 |
msgstr "ČT"
|
8706 |
|
8707 |
+
#: app/libraries/main.php:395 app/libraries/main.php:6172
|
8708 |
+
#: app/libraries/main.php:6225
|
8709 |
msgid "FR"
|
8710 |
msgstr "PÁ"
|
8711 |
|
8712 |
+
#: app/libraries/main.php:396 app/libraries/main.php:6173
|
8713 |
+
#: app/libraries/main.php:6226
|
8714 |
msgid "SA"
|
8715 |
msgstr "SO"
|
8716 |
|
8722 |
msgid "Additional Locations"
|
8723 |
msgstr "Další umístění"
|
8724 |
|
8725 |
+
#: app/libraries/main.php:721
|
8726 |
msgid "Modules"
|
8727 |
msgstr "Moduly"
|
8728 |
|
8729 |
+
#: app/libraries/main.php:889
|
8730 |
msgid "New Addons For MEC! Now Customize MEC in Elementor"
|
8731 |
msgstr "Nové doplňky pro MEC! Nyní přizpůsobte MEC v Elementoru"
|
8732 |
|
8733 |
+
#: app/libraries/main.php:896
|
8734 |
msgid ""
|
8735 |
"The time has come at last, and the new practical add-ons for MEC have been "
|
8736 |
"released. This is a revolution in the world of Event Calendars. We have "
|
8741 |
"revoluce ve světě kalendářů událostí. Poskytli jsme vám širokou škálu funkcí "
|
8742 |
"pouze tím, že máme 4 doplňky, viz níže:"
|
8743 |
|
8744 |
+
#: app/libraries/main.php:898
|
8745 |
msgid ""
|
8746 |
"<strong>WooCommerce Integration:</strong> You can now purchase ticket (as "
|
8747 |
"products) and Woo products at the same time."
|
8749 |
"<strong>Integrace WooCommerce:</strong> Nyní si můžete zakoupit lístek (jako "
|
8750 |
"produkty) a produkty Woo současně."
|
8751 |
|
8752 |
+
#: app/libraries/main.php:899
|
8753 |
msgid ""
|
8754 |
"<strong>Event API:</strong> display your events (shortcodes/single event) on "
|
8755 |
"other websites without MEC. Use JSON output features to make your Apps "
|
8759 |
"událost) na jiných webech bez MEC. Použijte výstupní funkce JSON, aby vaše "
|
8760 |
"aplikace byly kompatibilní s MEC."
|
8761 |
|
8762 |
+
#: app/libraries/main.php:900
|
8763 |
msgid ""
|
8764 |
"<strong>Multisite Event Sync:</strong> Sync events between your subsites and "
|
8765 |
"main websites. Changes in the main one will be inherited by the subsites. "
|
8766 |
"you can set these up in the admin panel."
|
8767 |
msgstr ""
|
8768 |
|
8769 |
+
#: app/libraries/main.php:901
|
8770 |
msgid ""
|
8771 |
"<strong>User Dashboard:</strong> Create exclusive pages for users. These "
|
8772 |
"pages can contain ticket purchase information, information about registered "
|
8773 |
"events. Users can now log in to purchase tickets."
|
8774 |
msgstr ""
|
8775 |
|
8776 |
+
#: app/libraries/main.php:903
|
8777 |
msgid "find out more"
|
8778 |
msgstr ""
|
8779 |
|
8780 |
+
#: app/libraries/main.php:1774
|
8781 |
msgid "Events at this location"
|
8782 |
msgstr "Události na tomto místě"
|
8783 |
|
8784 |
+
#: app/libraries/main.php:1774
|
8785 |
msgid "Event at this location"
|
8786 |
msgstr "Událost na tomto místě"
|
8787 |
|
8788 |
+
#: app/libraries/main.php:1826
|
8789 |
msgid "Facebook"
|
8790 |
msgstr "Facebook"
|
8791 |
|
8792 |
+
#: app/libraries/main.php:1827
|
8793 |
msgid "Twitter"
|
8794 |
msgstr "Twitter"
|
8795 |
|
8796 |
+
#: app/libraries/main.php:1828 app/libraries/main.php:1885
|
8797 |
msgid "Linkedin"
|
8798 |
msgstr "Linkedin"
|
8799 |
|
8800 |
+
#: app/libraries/main.php:1829 app/libraries/main.php:1921
|
8801 |
msgid "VK"
|
8802 |
msgstr "VK"
|
8803 |
|
8804 |
+
#: app/libraries/main.php:1830
|
8805 |
msgid "Tumblr"
|
8806 |
msgstr ""
|
8807 |
|
8808 |
+
#: app/libraries/main.php:1831
|
8809 |
msgid "Pinterest"
|
8810 |
msgstr ""
|
8811 |
|
8812 |
+
#: app/libraries/main.php:1832
|
8813 |
msgid "Flipboard"
|
8814 |
msgstr ""
|
8815 |
|
8816 |
+
#: app/libraries/main.php:1833
|
8817 |
#, fuzzy
|
8818 |
#| msgid "Tickets"
|
8819 |
msgid "GetPocket"
|
8820 |
msgstr "Vstupenky"
|
8821 |
|
8822 |
+
#: app/libraries/main.php:1834
|
8823 |
msgid "Reddit"
|
8824 |
msgstr ""
|
8825 |
|
8826 |
+
#: app/libraries/main.php:1835
|
8827 |
msgid "WhatsApp"
|
8828 |
msgstr ""
|
8829 |
|
8830 |
+
#: app/libraries/main.php:1836
|
8831 |
msgid "Telegram"
|
8832 |
msgstr ""
|
8833 |
|
8834 |
+
#: app/libraries/main.php:1855
|
8835 |
msgid "Share on Facebook"
|
8836 |
msgstr "Sdílet na Facebooku"
|
8837 |
|
8838 |
+
#: app/libraries/main.php:1870
|
8839 |
msgid "Tweet"
|
8840 |
msgstr "Tweet"
|
8841 |
|
8842 |
+
#: app/libraries/main.php:1936
|
8843 |
#, fuzzy
|
8844 |
#| msgid "Share on Facebook"
|
8845 |
msgid "Share on Tumblr"
|
8846 |
msgstr "Sdílet na Facebooku"
|
8847 |
|
8848 |
+
#: app/libraries/main.php:1952
|
8849 |
msgid "Share on Pinterest"
|
8850 |
msgstr ""
|
8851 |
|
8852 |
+
#: app/libraries/main.php:1968
|
8853 |
#, fuzzy
|
8854 |
#| msgid "Share on Facebook"
|
8855 |
msgid "Share on Flipboard"
|
8856 |
msgstr "Sdílet na Facebooku"
|
8857 |
|
8858 |
+
#: app/libraries/main.php:1986
|
8859 |
#, fuzzy
|
8860 |
#| msgid "Share on Facebook"
|
8861 |
msgid "Share on GetPocket"
|
8862 |
msgstr "Sdílet na Facebooku"
|
8863 |
|
8864 |
+
#: app/libraries/main.php:2002
|
8865 |
#, fuzzy
|
8866 |
#| msgid "Share on Facebook"
|
8867 |
msgid "Share on Reddit"
|
8868 |
msgstr "Sdílet na Facebooku"
|
8869 |
|
8870 |
+
#: app/libraries/main.php:2018
|
8871 |
msgid "Share on Telegram"
|
8872 |
msgstr ""
|
8873 |
|
8874 |
+
#: app/libraries/main.php:2036
|
8875 |
msgid "Share on WhatsApp"
|
8876 |
msgstr ""
|
8877 |
|
8878 |
+
#: app/libraries/main.php:2059
|
8879 |
msgid "Custom Shortcode"
|
8880 |
msgstr "Uživatelské zkrácené kódy"
|
8881 |
|
8882 |
+
#: app/libraries/main.php:2424
|
8883 |
msgid "Your booking already verified!"
|
8884 |
msgstr "Vaše rezervace již byla ověřena!"
|
8885 |
|
8886 |
+
#: app/libraries/main.php:2429
|
8887 |
msgid "Your booking successfully verified."
|
8888 |
msgstr "Vaše rezervace byla úspěšně ověřena."
|
8889 |
|
8890 |
+
#: app/libraries/main.php:2430
|
8891 |
msgid "Your booking cannot verify!"
|
8892 |
msgstr "Vaši rezervaci nelze ověřit!"
|
8893 |
|
8894 |
+
#: app/libraries/main.php:2455
|
8895 |
#, fuzzy
|
8896 |
#| msgid "The event is finished."
|
8897 |
msgid "The event is already finished!"
|
8898 |
msgstr "Událost je ukončena."
|
8899 |
|
8900 |
+
#: app/libraries/main.php:2473
|
8901 |
msgid "The cancelation window is passed."
|
8902 |
msgstr ""
|
8903 |
|
8904 |
+
#: app/libraries/main.php:2479
|
8905 |
msgid "Your booking successfully canceled."
|
8906 |
msgstr "Vaše rezervace byla úspěšně zrušena."
|
8907 |
|
8908 |
+
#: app/libraries/main.php:2480
|
8909 |
msgid "Your booking cannot be canceled."
|
8910 |
msgstr "Vaši rezervaci nelze zrušit."
|
8911 |
|
8912 |
+
#: app/libraries/main.php:2484
|
8913 |
msgid "You canceled the payment successfully."
|
8914 |
msgstr "Platbu jste úspěšně zrušili."
|
8915 |
|
8916 |
+
#: app/libraries/main.php:2488
|
8917 |
msgid "You returned from payment gateway successfully."
|
8918 |
msgstr "Úspěšně jste se vrátili z platební brány."
|
8919 |
|
8920 |
+
#: app/libraries/main.php:2507
|
8921 |
msgid "Cannot find the invoice!"
|
8922 |
msgstr "Fakturu nelze najít!"
|
8923 |
|
8924 |
+
#: app/libraries/main.php:2507
|
8925 |
msgid "Invoice is invalid."
|
8926 |
msgstr "Faktura je neplatná."
|
8927 |
|
8928 |
+
#: app/libraries/main.php:2527
|
8929 |
#, fuzzy
|
8930 |
#| msgid ""
|
8931 |
#| "Your booking still is not confirmed. You able download it after "
|
8935 |
msgstr ""
|
8936 |
"Vaše rezervace stále není potvrzena. Můžete si ji stáhnout po potvrzení!"
|
8937 |
|
8938 |
+
#: app/libraries/main.php:2527
|
8939 |
msgid "Booking Not Confirmed."
|
8940 |
msgstr "Rezervace nebyla potvrzena."
|
8941 |
|
8942 |
+
#: app/libraries/main.php:2533
|
8943 |
msgid "Cannot find the booking!"
|
8944 |
msgstr "Nemohu najít rezervaci!"
|
8945 |
|
8946 |
+
#: app/libraries/main.php:2533
|
8947 |
msgid "Booking is invalid."
|
8948 |
msgstr "Rezervace není platná."
|
8949 |
|
8950 |
+
#: app/libraries/main.php:2566
|
8951 |
#, php-format
|
8952 |
msgid "%s Invoice"
|
8953 |
msgstr "%s Faktura"
|
8954 |
|
8955 |
+
#: app/libraries/main.php:2599
|
8956 |
#, fuzzy
|
8957 |
#| msgid "Date and Time"
|
8958 |
msgid "Date & Time"
|
8959 |
msgstr "Datum a čas"
|
8960 |
|
8961 |
+
#: app/libraries/main.php:2616
|
8962 |
#, fuzzy
|
8963 |
#| msgid "Booking Price"
|
8964 |
msgid "Booking Fields"
|
8965 |
msgstr "Cena rezervace"
|
8966 |
|
8967 |
+
#: app/libraries/main.php:2688
|
8968 |
msgid "Billing"
|
8969 |
msgstr "Fakturace"
|
8970 |
|
8971 |
+
#: app/libraries/main.php:2700
|
8972 |
#, fuzzy
|
8973 |
#| msgid "Coupons"
|
8974 |
msgid "Coupon Code"
|
8975 |
msgstr "Kupóny"
|
8976 |
|
8977 |
+
#: app/libraries/main.php:2705
|
8978 |
msgid "Total"
|
8979 |
msgstr "Celkem"
|
8980 |
|
8981 |
+
#: app/libraries/main.php:2712
|
8982 |
#, fuzzy
|
8983 |
#| msgid "Payment Gateways"
|
8984 |
msgid "Payment"
|
8985 |
msgstr "Platební brány"
|
8986 |
|
8987 |
+
#: app/libraries/main.php:2716
|
8988 |
#, fuzzy
|
8989 |
#| msgid "Payment Gateways"
|
8990 |
msgid "Gateway"
|
8991 |
msgstr "Platební brány"
|
8992 |
|
8993 |
+
#: app/libraries/main.php:2729
|
8994 |
#, fuzzy
|
8995 |
#| msgid "Payment Gateways"
|
8996 |
msgid "Payment Time"
|
8997 |
msgstr "Platební brány"
|
8998 |
|
8999 |
+
#: app/libraries/main.php:2871
|
9000 |
msgid "Request is not valid."
|
9001 |
msgstr "Požadavek není platný."
|
9002 |
|
9003 |
+
#: app/libraries/main.php:2871
|
9004 |
msgid "iCal export stopped!"
|
9005 |
msgstr "iCal export byl zastaven!"
|
9006 |
|
9007 |
+
#: app/libraries/main.php:3217 app/libraries/main.php:3246
|
9008 |
+
#: app/libraries/main.php:3275 app/libraries/main.php:3304
|
9009 |
+
#: app/libraries/main.php:3333 app/libraries/main.php:3362
|
9010 |
+
#: app/libraries/main.php:3391 app/libraries/main.php:3420
|
9011 |
+
#: app/libraries/main.php:3449 app/libraries/main.php:3478
|
9012 |
+
#: app/libraries/main.php:3501 app/libraries/main.php:3547
|
9013 |
+
#: app/libraries/main.php:3593 app/libraries/main.php:3642
|
9014 |
+
#: app/libraries/main.php:3691
|
9015 |
msgid "Sort"
|
9016 |
msgstr "Seřadit"
|
9017 |
|
9018 |
+
#: app/libraries/main.php:3224 app/libraries/main.php:3253
|
9019 |
+
#: app/libraries/main.php:3282 app/libraries/main.php:3311
|
9020 |
+
#: app/libraries/main.php:3340 app/libraries/main.php:3369
|
9021 |
+
#: app/libraries/main.php:3398 app/libraries/main.php:3427
|
9022 |
+
#: app/libraries/main.php:3456 app/libraries/main.php:3508
|
9023 |
+
#: app/libraries/main.php:3554 app/libraries/main.php:3600
|
9024 |
+
#: app/libraries/main.php:3649
|
9025 |
msgid "Required Field"
|
9026 |
msgstr "Požadovaná pole"
|
9027 |
|
9028 |
+
#: app/libraries/main.php:3230 app/libraries/main.php:3259
|
9029 |
+
#: app/libraries/main.php:3288 app/libraries/main.php:3317
|
9030 |
+
#: app/libraries/main.php:3346 app/libraries/main.php:3375
|
9031 |
+
#: app/libraries/main.php:3404 app/libraries/main.php:3433
|
9032 |
+
#: app/libraries/main.php:3462 app/libraries/main.php:3514
|
9033 |
+
#: app/libraries/main.php:3560 app/libraries/main.php:3606
|
9034 |
+
#: app/libraries/main.php:3655
|
9035 |
msgid "Insert a label for this field"
|
9036 |
msgstr "Vložte štítek pro toto pole"
|
9037 |
|
9038 |
+
#: app/libraries/main.php:3484
|
9039 |
msgid "HTML and shortcode are allowed."
|
9040 |
msgstr "HTML a zkrácené kódy jsou povoleny."
|
9041 |
|
9042 |
+
#: app/libraries/main.php:3527 app/libraries/main.php:3573
|
9043 |
+
#: app/libraries/main.php:3619
|
9044 |
msgid "Option"
|
9045 |
msgstr "Možnost"
|
9046 |
|
9047 |
+
#: app/libraries/main.php:3655
|
9048 |
#, php-format
|
9049 |
msgid "Instead of %s, the page title with a link will be show."
|
9050 |
msgstr "Místo%s se zobrazí název stránky s odkazem."
|
9051 |
|
9052 |
+
#: app/libraries/main.php:3657
|
9053 |
msgid "Agreement Page"
|
9054 |
msgstr "Stránka smlouvy"
|
9055 |
|
9056 |
+
#: app/libraries/main.php:3668
|
9057 |
msgid "Checked by default"
|
9058 |
msgstr "Ve výchozím nastavení zaškrtnuto"
|
9059 |
|
9060 |
+
#: app/libraries/main.php:3669
|
9061 |
msgid "Unchecked by default"
|
9062 |
msgstr "Ve výchozím nastavení není zaškrtnuto"
|
9063 |
|
9064 |
+
#: app/libraries/main.php:3693
|
9065 |
msgid "Insert a label for this option"
|
9066 |
msgstr "Vložte štítek pro tuto možnost"
|
9067 |
|
9068 |
+
#: app/libraries/main.php:3706
|
9069 |
msgid "Free"
|
9070 |
msgstr "Zdarma"
|
9071 |
|
9072 |
+
#: app/libraries/main.php:4371 app/libraries/main.php:6500
|
9073 |
msgid "M.E. Calender"
|
9074 |
msgstr "M.E. Kalendář"
|
9075 |
|
9076 |
+
#: app/libraries/main.php:4527
|
9077 |
#, php-format
|
9078 |
msgid "Copy of %s"
|
9079 |
msgstr "Kopie %s"
|
9080 |
|
9081 |
+
#: app/libraries/main.php:5372
|
9082 |
msgid "Booked an event."
|
9083 |
msgstr "Událost byla rezervována."
|
9084 |
|
9085 |
+
#: app/libraries/main.php:5413
|
9086 |
#, php-format
|
9087 |
msgid "%s booked %s event."
|
9088 |
msgstr "%s zarezervoval %s událost."
|
9089 |
|
9090 |
+
#: app/libraries/main.php:6150 app/libraries/main.php:6203
|
9091 |
msgid "Taxonomies"
|
9092 |
msgstr "Taxonomie"
|
9093 |
|
9094 |
# Mrknout na kontext
|
9095 |
+
#: app/libraries/main.php:6152 app/libraries/main.php:6205
|
9096 |
msgid "Category Plural Label"
|
9097 |
msgstr "Štítek množné kategorie"
|
9098 |
|
9099 |
# Mrknout na kontext
|
9100 |
+
#: app/libraries/main.php:6153 app/libraries/main.php:6206
|
9101 |
msgid "Category Singular Label"
|
9102 |
msgstr "Štítek jednotné kategorie"
|
9103 |
|
9104 |
+
#: app/libraries/main.php:6154 app/libraries/main.php:6207
|
9105 |
msgid "Label Plural Label"
|
9106 |
msgstr "Štítek množného štítku"
|
9107 |
|
9108 |
+
#: app/libraries/main.php:6155 app/libraries/main.php:6208
|
9109 |
msgid "Label Singular Label"
|
9110 |
msgstr "Štítek jednotného štítku"
|
9111 |
|
9112 |
+
#: app/libraries/main.php:6155 app/libraries/main.php:6208
|
9113 |
msgid "label"
|
9114 |
msgstr "štítek"
|
9115 |
|
9116 |
+
#: app/libraries/main.php:6156 app/libraries/main.php:6209
|
9117 |
msgid "Location Plural Label"
|
9118 |
msgstr "Štítek množného umístění"
|
9119 |
|
9120 |
+
#: app/libraries/main.php:6157 app/libraries/main.php:6210
|
9121 |
msgid "Location Singular Label"
|
9122 |
msgstr "Štítek jednotného umístění"
|
9123 |
|
9124 |
+
#: app/libraries/main.php:6158 app/libraries/main.php:6211
|
9125 |
msgid "Organizer Plural Label"
|
9126 |
msgstr "Štítek množného organizátora"
|
9127 |
|
9128 |
+
#: app/libraries/main.php:6159 app/libraries/main.php:6212
|
9129 |
msgid "Organizer Singular Label"
|
9130 |
msgstr "Štítek jednotného organizátora"
|
9131 |
|
9132 |
+
#: app/libraries/main.php:6160 app/libraries/main.php:6213
|
9133 |
msgid "Speaker Plural Label"
|
9134 |
msgstr "Štítek množného řečníka"
|
9135 |
|
9136 |
+
#: app/libraries/main.php:6161 app/libraries/main.php:6214
|
9137 |
msgid "Speaker Singular Label"
|
9138 |
msgstr "Štítek jednotného řečníka"
|
9139 |
|
9140 |
+
#: app/libraries/main.php:6167 app/libraries/main.php:6220
|
9141 |
msgid "Sunday abbreviation"
|
9142 |
msgstr "Neděle zkratka"
|
9143 |
|
9144 |
+
#: app/libraries/main.php:6168 app/libraries/main.php:6221
|
9145 |
msgid "Monday abbreviation"
|
9146 |
msgstr "Pondělí zkratka"
|
9147 |
|
9148 |
+
#: app/libraries/main.php:6169 app/libraries/main.php:6222
|
9149 |
msgid "Tuesday abbreviation"
|
9150 |
msgstr "Úterý zkratka"
|
9151 |
|
9152 |
+
#: app/libraries/main.php:6170 app/libraries/main.php:6223
|
9153 |
msgid "Wednesday abbreviation"
|
9154 |
msgstr "Středa zkratka"
|
9155 |
|
9156 |
+
#: app/libraries/main.php:6171 app/libraries/main.php:6224
|
9157 |
msgid "Thursday abbreviation"
|
9158 |
msgstr "Čtvrtek zkratka"
|
9159 |
|
9160 |
+
#: app/libraries/main.php:6172 app/libraries/main.php:6225
|
9161 |
msgid "Friday abbreviation"
|
9162 |
msgstr "Pátek zkratka"
|
9163 |
|
9164 |
+
#: app/libraries/main.php:6173 app/libraries/main.php:6226
|
9165 |
msgid "Saturday abbreviation"
|
9166 |
msgstr "Sobota zkratka"
|
9167 |
|
9168 |
+
#: app/libraries/main.php:6177 app/libraries/main.php:6230
|
9169 |
msgid "Others"
|
9170 |
msgstr "Další"
|
9171 |
|
9172 |
+
#: app/libraries/main.php:6179
|
9173 |
msgid "Booking Success Message"
|
9174 |
msgstr "Zpráva o úspěchu rezervace"
|
9175 |
|
9176 |
+
#: app/libraries/main.php:6179
|
9177 |
#, fuzzy
|
9178 |
#| msgid ""
|
9179 |
#| "Thanks for your booking. Your tickets booked, booking verification might "
|
9185 |
"Děkujeme za vaši rezervaci. Vaše vstupenky jsou rezervovány, může být nutné "
|
9186 |
"ověřit rezervaci. Zkontrolujte prosím svůj e-mail."
|
9187 |
|
9188 |
+
#: app/libraries/main.php:6180
|
9189 |
#, fuzzy
|
9190 |
#| msgid "Booking Success Message"
|
9191 |
msgid "Booking Restriction Message 1"
|
9192 |
msgstr "Zpráva o úspěchu rezervace"
|
9193 |
|
9194 |
+
#: app/libraries/main.php:6180
|
9195 |
#, php-format
|
9196 |
msgid ""
|
9197 |
"You selected %s tickets to book but maximum number of tikets per user is %s "
|
9198 |
"tickets."
|
9199 |
msgstr ""
|
9200 |
|
9201 |
+
#: app/libraries/main.php:6181
|
9202 |
#, fuzzy
|
9203 |
#| msgid "Booking Success Message"
|
9204 |
msgid "Booking Restriction Message 2"
|
9205 |
msgstr "Zpráva o úspěchu rezervace"
|
9206 |
|
9207 |
+
#: app/libraries/main.php:6181
|
9208 |
#, php-format
|
9209 |
msgid ""
|
9210 |
"You booked %s tickets till now but maximum number of tickets per user is %s "
|
9211 |
"tickets."
|
9212 |
msgstr ""
|
9213 |
|
9214 |
+
#: app/libraries/main.php:6182
|
9215 |
#, fuzzy
|
9216 |
#| msgid "Booking Success Message"
|
9217 |
msgid "Booking IP Restriction Message"
|
9218 |
msgstr "Zpráva o úspěchu rezervace"
|
9219 |
|
9220 |
+
#: app/libraries/main.php:6182
|
9221 |
#, php-format
|
9222 |
msgid "Maximum allowed number of tickets that you can book is %s."
|
9223 |
msgstr ""
|
9224 |
|
9225 |
+
#: app/libraries/main.php:6183 app/libraries/main.php:6232
|
9226 |
#: app/widgets/single.php:131
|
9227 |
msgid "Register Button"
|
9228 |
msgstr "Registrační tlačítko"
|
9229 |
|
9230 |
+
#: app/libraries/main.php:6183 app/libraries/main.php:6232
|
9231 |
#: app/skins/available_spot/tpl.php:208 app/skins/carousel/render.php:106
|
9232 |
#: app/skins/carousel/render.php:144 app/skins/grid/render.php:101
|
9233 |
#: app/skins/grid/render.php:159 app/skins/grid/render.php:217
|
9234 |
#: app/skins/grid/render.php:238 app/skins/list/render.php:70
|
9235 |
#: app/skins/list/render.php:164 app/skins/masonry/render.php:149
|
9236 |
+
#: app/skins/single.php:478 app/skins/single.php:1203 app/skins/single.php:1206
|
9237 |
#: app/skins/single/default.php:287 app/skins/single/default.php:289
|
9238 |
#: app/skins/single/default.php:520 app/skins/single/default.php:522
|
9239 |
#: app/skins/single/m1.php:143 app/skins/single/m1.php:145
|
9245 |
msgid "REGISTER"
|
9246 |
msgstr "REGISTROVAT"
|
9247 |
|
9248 |
+
#: app/libraries/main.php:6184 app/libraries/main.php:6233
|
9249 |
msgid "View Detail Button"
|
9250 |
msgstr "Tlačítko Zobrazit detail"
|
9251 |
|
9252 |
+
#: app/libraries/main.php:6184 app/libraries/main.php:6233
|
9253 |
#: app/skins/carousel/render.php:106 app/skins/carousel/render.php:144
|
9254 |
#: app/skins/grid/render.php:101 app/skins/grid/render.php:159
|
9255 |
#: app/skins/grid/render.php:217 app/skins/grid/render.php:238
|
9256 |
#: app/skins/list/render.php:70 app/skins/list/render.php:164
|
9257 |
+
#: app/skins/masonry/render.php:149 app/skins/single.php:478
|
9258 |
#: app/skins/slider/render.php:70 app/skins/slider/render.php:93
|
9259 |
#: app/skins/slider/render.php:115 app/skins/slider/render.php:138
|
9260 |
#: app/skins/slider/render.php:172
|
9261 |
msgid "View Detail"
|
9262 |
msgstr "Zobrazit detail"
|
9263 |
|
9264 |
+
#: app/libraries/main.php:6185 app/libraries/main.php:6234
|
9265 |
msgid "Event Detail Button"
|
9266 |
msgstr "Tlačítko Detail události"
|
9267 |
|
9268 |
+
#: app/libraries/main.php:6185 app/libraries/main.php:6234
|
9269 |
msgid "Event Detail"
|
9270 |
msgstr "Zobrazit událost"
|
9271 |
|
9272 |
+
#: app/libraries/main.php:6187 app/libraries/main.php:6236
|
9273 |
msgid "More Info Link"
|
9274 |
msgstr "Odkaz na více informací"
|
9275 |
|
9276 |
+
#: app/libraries/main.php:6190
|
9277 |
msgid "Ticket (Singular)"
|
9278 |
msgstr "Vstupenka (Jednotné)"
|
9279 |
|
9280 |
+
#: app/libraries/main.php:6191
|
9281 |
msgid "Tickets (Plural)"
|
9282 |
msgstr "Vstupenky (Množné)"
|
9283 |
|
9284 |
+
#: app/libraries/main.php:6349
|
9285 |
msgid "EventON"
|
9286 |
msgstr "EventON"
|
9287 |
|
9288 |
+
#: app/libraries/main.php:6350
|
9289 |
msgid "The Events Calendar"
|
9290 |
msgstr "The Events Calendar"
|
9291 |
|
9292 |
+
#: app/libraries/main.php:6351
|
9293 |
msgid "Events Schedule WP Plugin"
|
9294 |
msgstr "Events Schedule WP Plugin"
|
9295 |
|
9296 |
+
#: app/libraries/main.php:6352
|
9297 |
msgid "Calendarize It"
|
9298 |
msgstr "Calendarize It"
|
9299 |
|
9300 |
+
#: app/libraries/main.php:6353
|
9301 |
#, fuzzy
|
9302 |
#| msgid "Event Speakers"
|
9303 |
msgid "Event Espresso"
|
9304 |
msgstr "Řečník události"
|
9305 |
|
9306 |
+
#: app/libraries/main.php:6354
|
9307 |
#, fuzzy
|
9308 |
#| msgid "Event Repeating (Recurring events)"
|
9309 |
msgid "Events Manager (Recurring)"
|
9310 |
msgstr "Opakování události (opakující se události)"
|
9311 |
|
9312 |
+
#: app/libraries/main.php:6355
|
9313 |
#, fuzzy
|
9314 |
#| msgid "Modern Events Calendar (Lite)"
|
9315 |
msgid "Events Manager (Single)"
|
9316 |
msgstr "Modern Events Calendar (Lite)"
|
9317 |
|
9318 |
+
#: app/libraries/main.php:6439 app/libraries/main.php:6461
|
9319 |
msgid "Pending"
|
9320 |
msgstr "Nevyřízený"
|
9321 |
|
9322 |
+
#: app/libraries/main.php:6487
|
9323 |
msgid "Waiting"
|
9324 |
msgstr "Čekající"
|
9325 |
|
9326 |
+
#: app/libraries/main.php:6530
|
9327 |
#, fuzzy
|
9328 |
#| msgid "Sunday"
|
9329 |
msgid "Sun"
|
9330 |
msgstr "Neděle"
|
9331 |
|
9332 |
+
#: app/libraries/main.php:6530
|
9333 |
#, fuzzy
|
9334 |
#| msgid "Monday"
|
9335 |
msgid "Mon"
|
9336 |
msgstr "Pondělí"
|
9337 |
|
9338 |
+
#: app/libraries/main.php:6530
|
9339 |
#, fuzzy
|
9340 |
#| msgid "Tel"
|
9341 |
msgid "Tue"
|
9342 |
msgstr "Tel"
|
9343 |
|
9344 |
+
#: app/libraries/main.php:6530
|
9345 |
msgid "Wed"
|
9346 |
msgstr ""
|
9347 |
|
9348 |
+
#: app/libraries/main.php:6530
|
9349 |
msgid "Thu"
|
9350 |
msgstr ""
|
9351 |
|
9352 |
+
#: app/libraries/main.php:6530
|
9353 |
#, fuzzy
|
9354 |
#| msgid "Friday"
|
9355 |
msgid "Fri"
|
9356 |
msgstr "Pátek"
|
9357 |
|
9358 |
+
#: app/libraries/main.php:6530
|
9359 |
#, fuzzy
|
9360 |
#| msgid "Start"
|
9361 |
msgid "Sat"
|
9362 |
msgstr "Začátek"
|
9363 |
|
9364 |
+
#: app/libraries/main.php:6692 app/libraries/render.php:80
|
9365 |
#: app/libraries/render.php:432
|
9366 |
msgid "Skin controller does not exist."
|
9367 |
msgstr "Ovladač vzhledu neexistuje."
|
9368 |
|
9369 |
+
#: app/libraries/main.php:6907
|
9370 |
msgid "Sold Out"
|
9371 |
msgstr "Vyprodáno"
|
9372 |
|
9373 |
+
#: app/libraries/main.php:6918
|
9374 |
#, fuzzy
|
9375 |
#| msgid "Ticket"
|
9376 |
msgid "Last Few Tickets"
|
9377 |
msgstr "Vstupenka"
|
9378 |
|
9379 |
+
#: app/libraries/main.php:7247 app/libraries/main.php:7264
|
9380 |
#, fuzzy
|
9381 |
#| msgid "minutes"
|
9382 |
msgid "Minutes"
|
9383 |
msgstr "minuty"
|
9384 |
|
9385 |
+
#: app/libraries/main.php:7269
|
9386 |
msgid "AM / PM"
|
9387 |
msgstr ""
|
9388 |
|
9389 |
+
#: app/libraries/main.php:7270
|
9390 |
msgid "AM"
|
9391 |
msgstr "dop."
|
9392 |
|
9393 |
+
#: app/libraries/main.php:7271
|
9394 |
msgid "PM"
|
9395 |
msgstr "odp."
|
9396 |
|
9397 |
+
#: app/libraries/main.php:7279
|
9398 |
msgid "Ongoing..."
|
9399 |
msgstr ""
|
9400 |
|
9401 |
+
#: app/libraries/main.php:7280
|
9402 |
#, fuzzy
|
9403 |
#| msgid "Expired Events"
|
9404 |
msgid "Expired!"
|
9405 |
msgstr "Události vypršely"
|
9406 |
|
9407 |
+
#: app/libraries/notifications.php:66
|
9408 |
msgid "Please verify your email."
|
9409 |
msgstr "Prosím, ověřte svůj e-mail."
|
9410 |
|
9411 |
+
#: app/libraries/notifications.php:168
|
9412 |
msgid "Your booking is received."
|
9413 |
msgstr "Vaše rezervace je přijata."
|
9414 |
|
9415 |
+
#: app/libraries/notifications.php:276
|
9416 |
msgid "Your booking is confirmed."
|
9417 |
msgstr "Vaše rezervace je potvrzena."
|
9418 |
|
9419 |
+
#: app/libraries/notifications.php:439
|
9420 |
msgid "booking canceled."
|
9421 |
msgstr "rezervace zrušena."
|
9422 |
|
9423 |
+
#: app/libraries/notifications.php:500
|
9424 |
msgid "A new booking is received."
|
9425 |
msgstr "Je přijata nová rezervace."
|
9426 |
|
9427 |
+
#: app/libraries/notifications.php:719
|
9428 |
msgid "A new event is added."
|
9429 |
msgstr "Je přidána se nová událost."
|
9430 |
|
9431 |
+
#: app/libraries/notifications.php:834
|
9432 |
msgid "Your event is published."
|
9433 |
msgstr "Vaše událost je zveřejněna."
|
9434 |
|
9435 |
+
#: app/libraries/notifications.php:1248
|
9436 |
msgid "to"
|
9437 |
msgstr "do"
|
9438 |
|
9439 |
+
#: app/libraries/notifications.php:1269 app/modules/export/details.php:46
|
9440 |
msgid "+ Add to Google Calendar"
|
9441 |
msgstr "+ Přidat do Google kalendáře"
|
9442 |
|
9443 |
+
#: app/libraries/notifications.php:1270 app/modules/export/details.php:47
|
9444 |
#, fuzzy
|
9445 |
#| msgid "+ iCal export"
|
9446 |
msgid "+ iCal / Outlook export"
|
9447 |
msgstr "+ iCal export"
|
9448 |
|
9449 |
+
#: app/libraries/notifications.php:1319
|
9450 |
#, fuzzy, php-format
|
9451 |
#| msgid "+ Add to Google Calendar"
|
9452 |
msgid "+ %s to Google Calendar"
|
9453 |
msgstr "+ Přidat do Google kalendáře"
|
9454 |
|
9455 |
+
#: app/libraries/notifications.php:1399
|
9456 |
msgid "Yes"
|
9457 |
msgstr "Ano"
|
9458 |
|
9459 |
+
#: app/libraries/notifications.php:1399
|
9460 |
msgid "No"
|
9461 |
msgstr "Ne"
|
9462 |
|
9467 |
msgstr "Vybrat vše"
|
9468 |
|
9469 |
#: app/libraries/skins.php:1258 app/libraries/skins.php:1259
|
9470 |
+
#: app/modules/booking/steps/tickets.php:94
|
9471 |
msgid "Book Event"
|
9472 |
msgstr "Rezervovat událost"
|
9473 |
|
9474 |
+
#: app/libraries/wc.php:302
|
9475 |
+
#, fuzzy
|
9476 |
+
#| msgid "Discount Coupon"
|
9477 |
+
msgid "Discount by WC Coupon"
|
9478 |
+
msgstr "Slevový kupon"
|
9479 |
+
|
9480 |
#: app/modules/attendees-list/details.php:42
|
9481 |
msgid "Event Attendees"
|
9482 |
msgstr "Účastníci akce"
|
9500 |
msgstr[1] "%s vstupenky"
|
9501 |
msgstr[2] "%s vstupenky"
|
9502 |
|
9503 |
+
#: app/modules/booking/steps/checkout.php:55
|
9504 |
msgid "Checkout"
|
9505 |
msgstr "Překontrolovat"
|
9506 |
|
9507 |
+
#: app/modules/booking/steps/checkout.php:61
|
9508 |
#, fuzzy
|
9509 |
#| msgid "Ticket Name"
|
9510 |
msgid "Ticket(s) Name"
|
9511 |
msgstr "Název vstupenky"
|
9512 |
|
9513 |
+
#: app/modules/booking/steps/checkout.php:62
|
9514 |
msgid "Qty"
|
9515 |
msgstr ""
|
9516 |
|
9517 |
+
#: app/modules/booking/steps/checkout.php:63
|
9518 |
#, fuzzy
|
9519 |
#| msgid "Amount"
|
9520 |
msgid "Amout"
|
9521 |
msgstr "Množství"
|
9522 |
|
9523 |
+
#: app/modules/booking/steps/checkout.php:88
|
9524 |
#, fuzzy
|
9525 |
#| msgid "Total"
|
9526 |
msgid "Total Due"
|
9527 |
msgstr "Celkem"
|
9528 |
|
9529 |
+
#: app/modules/booking/steps/checkout.php:109
|
9530 |
msgid "Discount Coupon"
|
9531 |
msgstr "Slevový kupon"
|
9532 |
|
9533 |
+
#: app/modules/booking/steps/checkout.php:113
|
9534 |
msgid "Apply Coupon"
|
9535 |
msgstr "Aplikovat kupon"
|
9536 |
|
9537 |
+
#: app/modules/booking/steps/checkout.php:138
|
9538 |
#: app/modules/booking/steps/form.php:349
|
9539 |
msgid "Back"
|
9540 |
msgstr ""
|
9541 |
|
9542 |
+
#: app/modules/booking/steps/checkout.php:146
|
9543 |
msgid "Free Booking"
|
9544 |
msgstr "Rezervace zdarma"
|
9545 |
|
9558 |
msgstr ""
|
9559 |
|
9560 |
#: app/modules/booking/steps/form.php:350
|
9561 |
+
#: app/modules/booking/steps/tickets.php:171
|
9562 |
#, fuzzy
|
9563 |
#| msgid "Location"
|
9564 |
msgid "Add to Cart"
|
9565 |
msgstr "Umístění"
|
9566 |
|
9567 |
+
#: app/modules/booking/steps/tickets.php:109
|
9568 |
msgid ""
|
9569 |
"By booking this event you can attend all occurrences. Some of them are "
|
9570 |
"listed below but there might be more."
|
9571 |
msgstr ""
|
9572 |
|
9573 |
+
#: app/modules/booking/steps/tickets.php:128
|
9574 |
#, fuzzy
|
9575 |
#| msgid "Ticket time"
|
9576 |
msgid "1 Ticket selected."
|
9577 |
msgstr "Čas vstupenky"
|
9578 |
|
9579 |
+
#: app/modules/booking/steps/tickets.php:129
|
9580 |
+
#: app/modules/booking/steps/tickets.php:135
|
9581 |
#, php-format
|
9582 |
msgid "Available %s: <span>%s</span>"
|
9583 |
msgstr "K dispozici %s: <span>%s</span>"
|
9584 |
|
9585 |
+
#: app/modules/booking/steps/tickets.php:140
|
9586 |
#, php-format
|
9587 |
msgid "The %s ticket sales has stopped!"
|
9588 |
msgstr ""
|
9589 |
|
9590 |
+
#: app/modules/booking/steps/tickets.php:141
|
9591 |
#, php-format
|
9592 |
msgid "The %s ticket is sold out. You can try another ticket or another date."
|
9593 |
msgstr ""
|
9594 |
"Vstupenka %s je vyprodána. Můžete vyzkoušet jinou vstupenku nebo jiné datum."
|
9595 |
|
9596 |
+
#: app/modules/countdown/details.php:57
|
9597 |
msgid "The event is finished."
|
9598 |
msgstr "Událost je ukončena."
|
9599 |
|
9600 |
+
#: app/modules/countdown/details.php:62
|
9601 |
msgid "The event is ongoing."
|
9602 |
msgstr "Událost právě probíhá."
|
9603 |
|
9609 |
msgid "Get Directions"
|
9610 |
msgstr "Získat směr"
|
9611 |
|
9612 |
+
#: app/modules/links/details.php:17 app/skins/single.php:886
|
9613 |
msgid "Share this event"
|
9614 |
msgstr "Sdílet tuto událost"
|
9615 |
|
9664 |
msgid "Go to occurrence page"
|
9665 |
msgstr "Přejít na stránku výskytu"
|
9666 |
|
9667 |
+
#: app/modules/next-event/details.php:139 app/skins/single.php:1176
|
9668 |
#: app/skins/single/default.php:118 app/skins/single/default.php:352
|
9669 |
#: app/skins/single/m1.php:40 app/skins/single/modern.php:216
|
9670 |
msgid "Time"
|
9747 |
msgid "Available Spot(s):"
|
9748 |
msgstr "Dostupné spoty:"
|
9749 |
|
9750 |
+
#: app/skins/carousel/render.php:166 app/skins/countdown/tpl.php:163
|
9751 |
+
#: app/skins/countdown/tpl.php:209 app/skins/countdown/tpl.php:227
|
9752 |
#: app/skins/cover/tpl.php:74 app/skins/list/render.php:95
|
9753 |
msgid "EVENT DETAIL"
|
9754 |
msgstr "DETAIL UDÁLOSTI"
|
9757 |
msgid "View All Events"
|
9758 |
msgstr "Zobrazit všechny události"
|
9759 |
|
9760 |
+
#: app/skins/countdown/tpl.php:123 app/skins/countdown/tpl.php:169
|
9761 |
+
#: app/skins/countdown/tpl.php:216
|
9762 |
#, php-format
|
9763 |
msgid "%s Upcoming Event"
|
9764 |
msgstr "%s Nadcházející událost"
|
9805 |
msgid "No Events"
|
9806 |
msgstr "Žádné události"
|
9807 |
|
9808 |
+
#: app/skins/single.php:317
|
9809 |
+
#, fuzzy
|
9810 |
+
#| msgid "View Event"
|
9811 |
+
msgid "PRV Event"
|
9812 |
+
msgstr "Zobrazit událost"
|
9813 |
+
|
9814 |
+
#: app/skins/single.php:322
|
9815 |
+
#, fuzzy
|
9816 |
+
#| msgid "New Event"
|
9817 |
+
msgid "NXT Event"
|
9818 |
+
msgstr "Nová událost"
|
9819 |
+
|
9820 |
+
#: app/skins/single.php:519
|
9821 |
msgid "Home"
|
9822 |
msgstr "Domů"
|
9823 |
|
9824 |
+
#: app/skins/single.php:970 app/skins/single/default.php:64
|
9825 |
#: app/skins/single/m1.php:278 app/skins/single/m2.php:199
|
9826 |
#: app/skins/single/modern.php:300
|
9827 |
msgid "Sold out!"
|
9828 |
msgstr "Vyprodáno!"
|
9829 |
|
9830 |
+
#: app/skins/single.php:1250 app/skins/single.php:1309
|
9831 |
#: app/skins/single/default.php:254 app/skins/single/default.php:487
|
9832 |
#: app/skins/single/m1.php:112 app/skins/single/m2.php:35
|
9833 |
#: app/skins/single/modern.php:58
|
9834 |
msgid "Phone"
|
9835 |
msgstr "Telefon"
|
9836 |
|
9837 |
+
#: app/skins/single.php:1399
|
9838 |
msgid "Speakers:"
|
9839 |
msgstr "Řečník:"
|
9840 |
|
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-
|
6 |
-
"PO-Revision-Date: 2020-
|
7 |
"Last-Translator: Jogon <koenig@kafinanz.de>\n"
|
8 |
"Language-Team: German\n"
|
9 |
"Language: de_DE\n"
|
@@ -82,7 +82,7 @@ msgstr ""
|
|
82 |
msgid "Select Shortcode"
|
83 |
msgstr "Neuen Shortcode hinzufügen"
|
84 |
|
85 |
-
#: app/features/colors.php:50 app/features/fes/form.php:
|
86 |
#: app/features/mec/settings.php:759
|
87 |
msgid "Event Color"
|
88 |
msgstr "Farbe der Veranstaltung"
|
@@ -96,13 +96,14 @@ msgstr "Farbe der Veranstaltung"
|
|
96 |
#: app/features/contextual.php:55 app/features/mec.php:473
|
97 |
#: app/features/mec/dashboard.php:141 app/features/mec/support.php:20
|
98 |
#: app/features/popup/event.php:60 app/features/popup/shortcode.php:37
|
99 |
-
#: app/libraries/main.php:
|
100 |
msgid "Settings"
|
101 |
msgstr "Einstellungen"
|
102 |
|
103 |
-
#: app/features/contextual.php:62 app/features/events.php:
|
104 |
-
#: app/features/events.php:
|
105 |
-
#: app/features/mec/
|
|
|
106 |
msgid "Booking Form"
|
107 |
msgstr "Buchungsformular"
|
108 |
|
@@ -128,9 +129,9 @@ msgstr ""
|
|
128 |
"<iframe width=\"600\" height=\"300\" src=\"https://www.youtube.com/embed/"
|
129 |
"YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
|
130 |
|
131 |
-
#: app/features/contextual.php:70 app/features/
|
132 |
-
#: app/features/mec/
|
133 |
-
#: app/libraries/main.php:
|
134 |
msgid "Payment Gateways"
|
135 |
msgstr "Zahlungs-Gateways"
|
136 |
|
@@ -146,7 +147,7 @@ msgstr ""
|
|
146 |
|
147 |
#: app/features/contextual.php:77 app/features/events.php:352
|
148 |
#: app/features/mec/support-page.php:117 app/features/mec/support.php:45
|
149 |
-
#: app/libraries/main.php:
|
150 |
msgid "Notifications"
|
151 |
msgstr "Benachrichtigungen"
|
152 |
|
@@ -265,7 +266,7 @@ msgid "Countdown Options"
|
|
265 |
msgstr "Countdown Einstellungsoptionen"
|
266 |
|
267 |
#: app/features/contextual.php:268 app/features/mec/modules.php:269
|
268 |
-
#: app/libraries/main.php:
|
269 |
msgid "Social Networks"
|
270 |
msgstr "Soziale Netzwerke"
|
271 |
|
@@ -286,18 +287,18 @@ msgstr "Herausgenommene Tage "
|
|
286 |
#: app/features/contextual.php:308 app/features/events.php:315
|
287 |
#: app/features/mec/booking.php:96 app/features/mec/notifications.php:36
|
288 |
#: app/features/mec/support-page.php:110 app/features/mec/support-page.php:114
|
289 |
-
#: app/libraries/main.php:
|
290 |
-
#: app/libraries/main.php:
|
291 |
msgid "Booking"
|
292 |
msgstr "Buchung / Reservierung"
|
293 |
|
294 |
#: app/features/contextual.php:318 app/features/mec/booking.php:427
|
295 |
-
#: app/features/mec/booking.php:813 app/libraries/main.php:
|
296 |
msgid "Coupons"
|
297 |
msgstr "Gutscheine"
|
298 |
|
299 |
#: app/features/contextual.php:326 app/features/mec/modules.php:335
|
300 |
-
#: app/libraries/main.php:
|
301 |
msgid "BuddyPress Integration"
|
302 |
msgstr "Buddy Press Integration"
|
303 |
|
@@ -310,7 +311,7 @@ msgstr "Mailchimp Integration"
|
|
310 |
msgid "MEC Activation"
|
311 |
msgstr "MEC Aktivierung"
|
312 |
|
313 |
-
#: app/features/dlfile.php:121 app/features/events.php:
|
314 |
#: app/features/mec/booking.php:347 app/features/mec/settings.php:831
|
315 |
#, fuzzy
|
316 |
#| msgid "Download ICS file"
|
@@ -358,7 +359,7 @@ msgstr "Veranstaltungen"
|
|
358 |
#: app/features/mec/meta_boxes/display_options.php:1548
|
359 |
#: app/features/mec/meta_boxes/display_options.php:1642
|
360 |
#: app/features/mec/meta_boxes/display_options.php:1715
|
361 |
-
#: app/features/profile/profile.php:55 app/features/wc.php:
|
362 |
#: app/skins/daily_view/tpl.php:83 app/skins/monthly_view/tpl.php:74
|
363 |
#: app/skins/tile/tpl.php:84 app/skins/yearly_view/tpl.php:72
|
364 |
msgid "Event"
|
@@ -395,7 +396,7 @@ msgstr "Veranstaltung ansehen"
|
|
395 |
msgid "No events found in Trash!"
|
396 |
msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
|
397 |
|
398 |
-
#: app/features/events.php:192 app/features/events.php:
|
399 |
#: app/features/mec/meta_boxes/display_options.php:1420
|
400 |
#: app/features/mec/meta_boxes/search_form.php:31
|
401 |
#: app/features/mec/meta_boxes/search_form.php:101
|
@@ -409,19 +410,20 @@ msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
|
|
409 |
#: app/features/mec/meta_boxes/search_form.php:654
|
410 |
#: app/features/mec/meta_boxes/search_form.php:760
|
411 |
#: app/features/mec/settings.php:923 app/features/mec/single.php:331
|
412 |
-
#: app/features/
|
413 |
-
#: app/libraries/main.php:
|
414 |
-
#: app/skins
|
415 |
-
#: app/skins/single/default.php:
|
416 |
-
#: app/skins/single/
|
|
|
417 |
msgid "Category"
|
418 |
msgstr "Kategorie"
|
419 |
|
420 |
-
#: app/features/events.php:193 app/features/events.php:
|
421 |
-
#: app/features/fes/form.php:
|
422 |
#: app/features/mec/meta_boxes/filter.php:69
|
423 |
-
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:
|
424 |
-
#: app/libraries/main.php:
|
425 |
msgid "Categories"
|
426 |
msgstr "Kategorien"
|
427 |
|
@@ -503,18 +505,18 @@ msgstr "Veranstaltungsdetails"
|
|
503 |
msgid "Date And Time"
|
504 |
msgstr "Datum und Uhrzeit"
|
505 |
|
506 |
-
#: app/features/events.php:343 app/features/fes/form.php:
|
507 |
msgid "Event Repeating"
|
508 |
msgstr "Wiederholende Veranstaltung"
|
509 |
|
510 |
-
#: app/features/events.php:344 app/features/events.php:
|
511 |
#, fuzzy
|
512 |
#| msgid "Event Detail"
|
513 |
msgid "Event Data"
|
514 |
msgstr "Veranstaltungsdetails"
|
515 |
|
516 |
-
#: app/features/events.php:346 app/features/events.php:
|
517 |
-
#: app/features/mec/settings.php:789 app/skins/single.php:
|
518 |
msgid "Hourly Schedule"
|
519 |
msgstr "Stundenplan"
|
520 |
|
@@ -526,8 +528,8 @@ msgstr "Ort"
|
|
526 |
msgid "Links"
|
527 |
msgstr "Links"
|
528 |
|
529 |
-
#: app/features/events.php:349 app/features/events.php:
|
530 |
-
#: app/features/events.php:
|
531 |
#: app/features/ix.php:3790
|
532 |
#: app/features/mec/meta_boxes/display_options.php:1423
|
533 |
#: app/features/mec/meta_boxes/search_form.php:46
|
@@ -542,21 +544,21 @@ msgstr "Links"
|
|
542 |
#: app/features/mec/meta_boxes/search_form.php:669
|
543 |
#: app/features/mec/meta_boxes/search_form.php:775
|
544 |
#: app/features/mec/settings.php:935 app/features/mec/single.php:335
|
545 |
-
#: app/features/
|
546 |
-
#: app/features/organizers.php:
|
547 |
-
#: app/features/organizers.php:
|
548 |
-
#: app/features/popup/event.php:
|
549 |
-
#: app/
|
550 |
-
#: app/libraries/
|
551 |
-
#: app/skins/single
|
552 |
-
#: app/skins/single/
|
553 |
-
#: app/skins/single/modern.php:48
|
554 |
msgid "Organizer"
|
555 |
msgstr "Veranstalter"
|
556 |
|
557 |
-
#: app/features/events.php:350 app/features/events.php:
|
558 |
-
#: app/features/fes/form.php:
|
559 |
-
#: app/libraries/main.php:
|
560 |
#: app/skins/single/default.php:142 app/skins/single/default.php:376
|
561 |
#: app/skins/single/m1.php:61 app/skins/single/modern.php:237
|
562 |
msgid "Cost"
|
@@ -568,54 +570,54 @@ msgstr " Preis"
|
|
568 |
msgid "SEO Schema / Event Status"
|
569 |
msgstr "Am Event Start"
|
570 |
|
571 |
-
#: app/features/events.php:
|
572 |
msgid "Note for reviewer"
|
573 |
msgstr "Zusätzliche Anmerkungen zum Event "
|
574 |
|
575 |
-
#: app/features/events.php:
|
576 |
msgid "Guest Data"
|
577 |
msgstr "Gäste Daten"
|
578 |
|
579 |
-
#: app/features/events.php:
|
580 |
-
#: app/features/events.php:
|
581 |
-
#: app/features/fes/form.php:
|
582 |
#: app/features/mec/booking.php:53 app/features/organizers.php:279
|
583 |
#: app/features/popup/event.php:182 app/features/profile/profile.php:177
|
584 |
-
#: app/libraries/notifications.php:
|
585 |
msgid "Name"
|
586 |
msgstr "Name"
|
587 |
|
588 |
-
#: app/features/events.php:
|
589 |
-
#: app/features/events.php:
|
590 |
-
#: app/features/events.php:
|
591 |
-
#: app/features/fes/form.php:
|
592 |
#: app/features/mec/booking.php:65 app/features/mec/booking.php:643
|
593 |
#: app/features/mec/booking.php:739 app/features/mec/single.php:191
|
594 |
#: app/features/organizers.php:111 app/features/organizers.php:152
|
595 |
#: app/features/profile/profile.php:180 app/features/speakers.php:127
|
596 |
-
#: app/features/speakers.php:204 app/libraries/main.php:
|
597 |
-
#: app/libraries/main.php:
|
598 |
-
#: app/libraries/notifications.php:
|
599 |
-
#: app/modules/booking/steps/form.php:207 app/skins/single.php:
|
600 |
-
#: app/skins/single.php:
|
601 |
#: app/skins/single/default.php:494 app/skins/single/m1.php:119
|
602 |
#: app/skins/single/m2.php:42 app/skins/single/modern.php:65
|
603 |
msgid "Email"
|
604 |
msgstr "E-Mail"
|
605 |
|
606 |
-
#: app/features/events.php:
|
607 |
msgid ""
|
608 |
"This event is imported from Google calendar so if you modify it, it would "
|
609 |
"overwrite in the next import from Google."
|
610 |
msgstr ""
|
611 |
|
612 |
-
#: app/features/events.php:
|
613 |
msgid "Date and Time"
|
614 |
msgstr "Datum und Uhrzeit"
|
615 |
|
616 |
-
#: app/features/events.php:
|
617 |
-
#: app/features/events.php:
|
618 |
-
#: app/features/fes/form.php:
|
619 |
#: app/features/ix.php:3748 app/features/ix.php:3790
|
620 |
#: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1333
|
621 |
#: app/features/mec/meta_boxes/display_options.php:52
|
@@ -637,38 +639,38 @@ msgstr "Datum und Uhrzeit"
|
|
637 |
msgid "Start Date"
|
638 |
msgstr "Start Datum"
|
639 |
|
640 |
-
#: app/features/events.php:
|
641 |
-
#: app/features/events.php:
|
642 |
-
#: app/features/fes/form.php:
|
643 |
#: app/features/ix.php:3748 app/features/ix.php:3790
|
644 |
#: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1334
|
645 |
#: app/features/popup/event.php:92
|
646 |
msgid "End Date"
|
647 |
msgstr "Ende Datum"
|
648 |
|
649 |
-
#: app/features/events.php:
|
650 |
#: app/features/popup/event.php:109
|
651 |
#, fuzzy
|
652 |
#| msgid "All Day Event"
|
653 |
msgid "All-day Event"
|
654 |
msgstr "Ganztägige Veranstaltung"
|
655 |
|
656 |
-
#: app/features/events.php:
|
657 |
msgid "Hide Event Time"
|
658 |
msgstr "Event / Veranstaltungszeit verbergen"
|
659 |
|
660 |
-
#: app/features/events.php:
|
661 |
msgid "Hide Event End Time"
|
662 |
msgstr "Ende-Zeit der Veranstaltung verbergen"
|
663 |
|
664 |
-
#: app/features/events.php:
|
665 |
-
#: app/features/fes/form.php:
|
666 |
#, fuzzy
|
667 |
#| msgid "Note to reviewer"
|
668 |
msgid "Notes on the time"
|
669 |
msgstr "Zusätzliche Anmerkungen zum Event "
|
670 |
|
671 |
-
#: app/features/events.php:
|
672 |
#, fuzzy
|
673 |
#| msgid ""
|
674 |
#| "It shows next to event time on calendar. You can insert Timezone etc. in "
|
@@ -680,15 +682,15 @@ msgstr ""
|
|
680 |
"Neben der Zeit im Kalender wird diese Angabe angezeigt. In diesem Feld "
|
681 |
"können Sie z.B. eine Zeitzone wie z.B. \"MEZ\" usw. einfügen. "
|
682 |
|
683 |
-
#: app/features/events.php:
|
684 |
-
#: app/features/events.php:
|
685 |
-
#: app/features/events.php:
|
686 |
-
#: app/features/events.php:
|
687 |
-
#: app/features/events.php:
|
688 |
-
#: app/features/events.php:
|
689 |
-
#: app/features/events.php:
|
690 |
-
#: app/features/events.php:
|
691 |
-
#: app/features/fes/form.php:
|
692 |
#: app/features/locations.php:336 app/features/mec/booking.php:117
|
693 |
#: app/features/mec/booking.php:139 app/features/mec/booking.php:211
|
694 |
#: app/features/mec/booking.php:278 app/features/mec/booking.php:291
|
@@ -696,7 +698,8 @@ msgstr ""
|
|
696 |
#: app/features/mec/booking.php:472 app/features/mec/booking.php:501
|
697 |
#: app/features/mec/booking.php:549 app/features/mec/booking.php:559
|
698 |
#: app/features/mec/booking.php:581 app/features/mec/booking.php:591
|
699 |
-
#: app/features/mec/booking.php:829 app/features/mec/
|
|
|
700 |
#: app/features/mec/meta_boxes/display_options.php:83
|
701 |
#: app/features/mec/meta_boxes/display_options.php:96
|
702 |
#: app/features/mec/meta_boxes/display_options.php:109
|
@@ -756,94 +759,114 @@ msgstr ""
|
|
756 |
#: app/features/mec/styling.php:119 app/features/mec/styling.php:218
|
757 |
#: app/features/mec/styling.php:235 app/features/mec/styling.php:248
|
758 |
#: app/features/organizers.php:272 app/features/popup/event.php:126
|
759 |
-
#: app/features/popup/event.php:173 app/skins/single.php:
|
760 |
#: app/skins/single/default.php:159 app/skins/single/default.php:391
|
761 |
#: app/skins/single/m1.php:218 app/skins/single/m2.php:142
|
762 |
#: app/skins/single/modern.php:163
|
763 |
msgid "Read More"
|
764 |
msgstr "Mehr lesen"
|
765 |
|
766 |
-
#: app/features/events.php:
|
767 |
#, fuzzy
|
768 |
#| msgid "Timezone: %s"
|
769 |
msgid "Timezone"
|
770 |
msgstr "Zeitzone: %s"
|
771 |
|
772 |
-
#: app/features/events.php:
|
773 |
-
#: app/features/events.php:
|
774 |
-
#: app/features/events.php:
|
|
|
775 |
msgid "Inherit from global options"
|
776 |
msgstr "Aus den globalen Einstellungen übernehmen"
|
777 |
|
778 |
-
#: app/features/events.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
779 |
msgid "Repeating"
|
780 |
msgstr "Wiederholen"
|
781 |
|
782 |
-
#: app/features/events.php:
|
783 |
msgid "Event Repeating (Recurring events)"
|
784 |
msgstr "Wiederholende Veranstaltung"
|
785 |
|
786 |
-
#: app/features/events.php:
|
787 |
msgid "Repeats"
|
788 |
msgstr "Wiederholend"
|
789 |
|
790 |
-
#: app/features/events.php:
|
791 |
#: app/features/mec.php:1336 app/skins/default_full_calendar/tpl.php:77
|
792 |
#: app/skins/full_calendar/tpl.php:124
|
793 |
msgid "Daily"
|
794 |
msgstr "Täglich"
|
795 |
|
796 |
-
#: app/features/events.php:
|
797 |
msgid "Every Weekday"
|
798 |
msgstr "An jedem Wochentag"
|
799 |
|
800 |
-
#: app/features/events.php:
|
801 |
msgid "Every Weekend"
|
802 |
msgstr "An jedem Wochenende"
|
803 |
|
804 |
-
#: app/features/events.php:
|
805 |
msgid "Certain Weekdays"
|
806 |
msgstr "Bestimmte Wochentage"
|
807 |
|
808 |
-
#: app/features/events.php:
|
809 |
#: app/skins/default_full_calendar/tpl.php:76
|
810 |
#: app/skins/full_calendar/tpl.php:123
|
811 |
msgid "Weekly"
|
812 |
msgstr "Wöchentlich"
|
813 |
|
814 |
-
#: app/features/events.php:
|
815 |
#: app/features/mec.php:1337 app/skins/default_full_calendar/tpl.php:75
|
816 |
#: app/skins/full_calendar/tpl.php:122
|
817 |
msgid "Monthly"
|
818 |
msgstr "Monatlich"
|
819 |
|
820 |
-
#: app/features/events.php:
|
821 |
#: app/features/mec.php:1338 app/skins/default_full_calendar/tpl.php:74
|
822 |
#: app/skins/full_calendar/tpl.php:121
|
823 |
msgid "Yearly"
|
824 |
msgstr "Jährlich"
|
825 |
|
826 |
-
#: app/features/events.php:
|
827 |
msgid "Custom Days"
|
828 |
msgstr "Benutzerdefinierte Tage"
|
829 |
|
830 |
-
#: app/features/events.php:
|
831 |
msgid "Advanced"
|
832 |
msgstr "Fortgeschritten"
|
833 |
|
834 |
-
#: app/features/events.php:
|
835 |
msgid "Repeat Interval"
|
836 |
msgstr "Wiederholungsintervall"
|
837 |
|
838 |
-
#: app/features/events.php:
|
839 |
msgid "Repeat interval"
|
840 |
msgstr "Wiederholungsintervall"
|
841 |
|
842 |
-
#: app/features/events.php:
|
843 |
msgid "Week Days"
|
844 |
msgstr "Wochentage"
|
845 |
|
846 |
-
#: app/features/events.php:
|
847 |
#, fuzzy
|
848 |
#| msgid "Pro version of Modern Events Calendar"
|
849 |
msgid ""
|
@@ -851,83 +874,83 @@ msgid ""
|
|
851 |
"Calendar."
|
852 |
msgstr "Pro Version vom Modernen Event Calendar"
|
853 |
|
854 |
-
#: app/features/events.php:
|
855 |
-
#: app/features/events.php:
|
856 |
-
#: app/features/fes/form.php:
|
857 |
#: app/features/ix/import_g_calendar.php:51
|
858 |
#: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
|
859 |
msgid "Start"
|
860 |
msgstr "Start"
|
861 |
|
862 |
-
#: app/features/events.php:
|
863 |
-
#: app/features/events.php:
|
864 |
-
#: app/features/events.php:
|
865 |
-
#: app/features/events.php:
|
866 |
-
#: app/features/fes/form.php:
|
867 |
#: app/features/occurrences.php:114
|
868 |
msgid "Add"
|
869 |
msgstr "Hinzufügen"
|
870 |
|
871 |
-
#: app/features/events.php:
|
872 |
msgid "Custom Days Repeating"
|
873 |
msgstr "Benutzerdefinierte Wiederholende Tage"
|
874 |
|
875 |
-
#: app/features/events.php:
|
876 |
msgid ""
|
877 |
"Add certain days to event occurrence dates. If you have a single day event, "
|
878 |
"start and end dates should be the same, If you have a multiple day event, "
|
879 |
"the start and end dates must be commensurate with the initial date."
|
880 |
msgstr ""
|
881 |
|
882 |
-
#: app/features/events.php:
|
883 |
-
#: app/features/events.php:
|
884 |
-
#: app/features/fes/form.php:
|
885 |
msgid "End"
|
886 |
msgstr "Ende"
|
887 |
|
888 |
-
#: app/features/events.php:
|
889 |
msgid "First"
|
890 |
msgstr "Erster"
|
891 |
|
892 |
-
#: app/features/events.php:
|
893 |
msgid "Second"
|
894 |
msgstr "Zweiter"
|
895 |
|
896 |
-
#: app/features/events.php:
|
897 |
msgid "Third"
|
898 |
msgstr "Dritter"
|
899 |
|
900 |
-
#: app/features/events.php:
|
901 |
msgid "Fourth"
|
902 |
msgstr "Vierte"
|
903 |
|
904 |
-
#: app/features/events.php:
|
905 |
msgid "Last"
|
906 |
msgstr "Letzter"
|
907 |
|
908 |
-
#: app/features/events.php:
|
909 |
msgid "Ends Repeat"
|
910 |
msgstr "Wiederholung endet"
|
911 |
|
912 |
-
#: app/features/events.php:
|
913 |
msgid "Never"
|
914 |
msgstr "Niemals"
|
915 |
|
916 |
-
#: app/features/events.php:
|
917 |
msgid "On"
|
918 |
msgstr "Am"
|
919 |
|
920 |
-
#: app/features/events.php:
|
921 |
#: app/features/mec/booking.php:169
|
922 |
msgid "After"
|
923 |
msgstr "Nach"
|
924 |
|
925 |
-
#: app/features/events.php:
|
926 |
-
#: app/features/fes/form.php:
|
927 |
msgid "Occurrences times"
|
928 |
msgstr " mal vorkommen"
|
929 |
|
930 |
-
#: app/features/events.php:
|
931 |
#, fuzzy
|
932 |
#| msgid ""
|
933 |
#| "The event will finish after certain repeats. For example if you set it to "
|
@@ -939,149 +962,149 @@ msgstr ""
|
|
939 |
"Das Event ist nach einer bestimmten Anzahl von Wiederholungen zu Ende. Zum "
|
940 |
"Beispiel: Bei Eingabe von 10 wird das Event nach 10 Wiederholungen beendet"
|
941 |
|
942 |
-
#: app/features/events.php:
|
943 |
#, fuzzy
|
944 |
#| msgid "Next Occurrence of Other Events"
|
945 |
msgid "Show only one occurrence of this event"
|
946 |
msgstr "Nächstes Auftreten von anderen Events."
|
947 |
|
948 |
-
#: app/features/events.php:
|
949 |
-
#: app/features/fes/form.php:
|
950 |
#: app/features/ix.php:3790 app/features/mec/settings.php:735
|
951 |
-
#: app/libraries/main.php:
|
952 |
#: app/widgets/single.php:103
|
953 |
msgid "Event Cost"
|
954 |
msgstr ""
|
955 |
"Bruttopreis des Events in Euro, 0 für kostenlos oder z.B. 39, ohne €-Zeichen"
|
956 |
|
957 |
-
#: app/features/events.php:
|
958 |
#, fuzzy
|
959 |
#| msgid "Exceptional Days"
|
960 |
msgid "Exceptional Days (Exclude Dates)"
|
961 |
msgstr "Herausgenommene Tage "
|
962 |
|
963 |
-
#: app/features/events.php:
|
964 |
msgid "Exclude certain days"
|
965 |
msgstr "Ausschluss bestimmter Tage"
|
966 |
|
967 |
-
#: app/features/events.php:
|
968 |
-
#: app/features/events.php:
|
969 |
#: app/features/mec/booking.php:644 app/features/mec/booking.php:740
|
970 |
#: app/features/mec/single.php:193 app/features/profile/profile.php:58
|
971 |
-
#: app/features/wc.php:
|
972 |
-
#: app/modules/booking/steps/tickets.php:
|
973 |
-
#: app/modules/next-event/details.php:134 app/skins/single.php:
|
974 |
#: app/skins/single/default.php:99 app/skins/single/default.php:333
|
975 |
#: app/skins/single/m1.php:21 app/skins/single/modern.php:197
|
976 |
msgid "Date"
|
977 |
msgstr "Datum"
|
978 |
|
979 |
-
#: app/features/events.php:
|
980 |
msgid ""
|
981 |
"Exclude certain days from event occurrence dates. Please note that you can "
|
982 |
"exclude only single day occurrences and you cannot exclude one day from "
|
983 |
"multiple day occurrences."
|
984 |
msgstr ""
|
985 |
|
986 |
-
#: app/features/events.php:
|
987 |
msgid "Day 1"
|
988 |
msgstr "Tag 1"
|
989 |
|
990 |
-
#: app/features/events.php:
|
991 |
msgid "Add Day"
|
992 |
msgstr "Tag hinzufügen"
|
993 |
|
994 |
-
#: app/features/events.php:
|
995 |
msgid ""
|
996 |
"Add new days for schedule. For example if your event is multiple days, you "
|
997 |
"can add a different schedule for each day!"
|
998 |
msgstr ""
|
999 |
|
1000 |
-
#: app/features/events.php:
|
1001 |
#, php-format
|
1002 |
msgid "Day %s"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
-
#: app/features/events.php:
|
1006 |
-
#: app/features/events.php:
|
1007 |
-
#: app/features/events.php:
|
1008 |
-
#: app/features/events.php:
|
1009 |
-
#: app/features/events.php:
|
1010 |
#: app/features/ix.php:3748 app/features/ix.php:3790
|
1011 |
#: app/features/mec/booking.php:541 app/features/mec/booking.php:573
|
1012 |
#: app/features/mec/styling.php:130
|
1013 |
msgid "Title"
|
1014 |
msgstr "Titel"
|
1015 |
|
1016 |
-
#: app/features/events.php:
|
1017 |
-
#: app/features/events.php:
|
1018 |
-
#: app/features/events.php:
|
1019 |
-
#: app/features/events.php:
|
1020 |
-
#: app/features/events.php:
|
1021 |
-
#: app/features/events.php:
|
1022 |
#: app/features/mec/booking.php:484 app/features/mec/booking.php:513
|
1023 |
#: app/features/mec/booking.php:564 app/features/mec/booking.php:596
|
1024 |
-
#: app/libraries/main.php:
|
1025 |
-
#: app/libraries/main.php:
|
1026 |
-
#: app/libraries/main.php:
|
1027 |
-
#: app/libraries/main.php:
|
1028 |
-
#: app/libraries/main.php:
|
1029 |
-
#: app/libraries/main.php:
|
1030 |
-
#: app/libraries/main.php:
|
1031 |
-
#: app/libraries/main.php:
|
1032 |
msgid "Remove"
|
1033 |
msgstr "Entfernen"
|
1034 |
|
1035 |
-
#: app/features/events.php:
|
1036 |
msgid "Add new hourly schedule row"
|
1037 |
msgstr "Neue Stundenplan-Zeile hinzufügen"
|
1038 |
|
1039 |
-
#: app/features/events.php:
|
1040 |
-
#: app/features/events.php:
|
1041 |
msgid "From e.g. 8:15"
|
1042 |
msgstr "Von z.B. 08:15 Uhr"
|
1043 |
|
1044 |
-
#: app/features/events.php:
|
1045 |
-
#: app/features/events.php:
|
1046 |
msgid "To e.g. 8:45"
|
1047 |
msgstr "bis zum Beispiel 08:45 Uhr"
|
1048 |
|
1049 |
-
#: app/features/events.php:
|
1050 |
-
#: app/features/events.php:
|
1051 |
-
#: app/features/events.php:
|
1052 |
msgid "Description"
|
1053 |
msgstr "Beschreibung"
|
1054 |
|
1055 |
-
#: app/features/events.php:
|
1056 |
-
#: app/features/events.php:
|
1057 |
#: app/features/mec.php:469 app/features/mec/modules.php:51
|
1058 |
#: app/features/mec/settings.php:783 app/features/speakers.php:61
|
1059 |
-
#: app/libraries/main.php:
|
1060 |
-
#: app/libraries/main.php:
|
1061 |
msgid "Speakers"
|
1062 |
msgstr "Sprecher"
|
1063 |
|
1064 |
-
#: app/features/events.php:
|
1065 |
msgid "New Day"
|
1066 |
msgstr "Neuer Tag"
|
1067 |
|
1068 |
-
#: app/features/events.php:
|
1069 |
#: app/features/mec/settings.php:729
|
1070 |
msgid "Event Links"
|
1071 |
msgstr "Veranstaltungslinks"
|
1072 |
|
1073 |
-
#: app/features/events.php:
|
1074 |
-
#: app/features/fes/form.php:
|
1075 |
-
#: app/libraries/main.php:
|
1076 |
msgid "Event Link"
|
1077 |
msgstr "Veranstaltungslink"
|
1078 |
|
1079 |
-
#: app/features/events.php:
|
1080 |
-
#: app/features/fes/form.php:
|
1081 |
msgid "eg. http://yoursite.com/your-event"
|
1082 |
msgstr "z.B. http://yoursite.com/your-event"
|
1083 |
|
1084 |
-
#: app/features/events.php:
|
1085 |
#, fuzzy
|
1086 |
#| msgid ""
|
1087 |
#| "If you fill it, it will be replaced instead of default event page link. "
|
@@ -1095,34 +1118,34 @@ msgstr ""
|
|
1095 |
"dieser durch einen neuen link ersetzt werden. Vollständigen Link einfügen, "
|
1096 |
"einschließlich http(s)://"
|
1097 |
|
1098 |
-
#: app/features/events.php:
|
1099 |
msgid "URL Shortener"
|
1100 |
msgstr ""
|
1101 |
|
1102 |
-
#: app/features/events.php:
|
1103 |
-
#: app/features/fes/form.php:
|
1104 |
-
#: app/libraries/main.php:
|
1105 |
#: app/skins/single/default.php:158 app/skins/single/default.php:390
|
1106 |
#: app/skins/single/m1.php:217 app/skins/single/m2.php:141
|
1107 |
#: app/skins/single/modern.php:162 app/widgets/single.php:107
|
1108 |
msgid "More Info"
|
1109 |
msgstr "Mehr Informationen"
|
1110 |
|
1111 |
-
#: app/features/events.php:
|
1112 |
msgid "More Information"
|
1113 |
msgstr "z.B. Noch mehr Informationen "
|
1114 |
|
1115 |
-
#: app/features/events.php:
|
1116 |
#: app/features/mec.php:980 app/features/popup/shortcode.php:477
|
1117 |
msgid "Current Window"
|
1118 |
msgstr "Aktuelles Fenster"
|
1119 |
|
1120 |
-
#: app/features/events.php:
|
1121 |
#: app/features/mec.php:981 app/features/popup/shortcode.php:481
|
1122 |
msgid "New Window"
|
1123 |
msgstr "Neues Fenster"
|
1124 |
|
1125 |
-
#: app/features/events.php:
|
1126 |
msgid ""
|
1127 |
"If you fill it, it will be shown in event details page as an optional link. "
|
1128 |
"Insert full link including http(s)://"
|
@@ -1133,159 +1156,171 @@ msgstr ""
|
|
1133 |
"Text angezeigt werden soll: zum Beispiel: Noch mehr Informationen oder Hier "
|
1134 |
"zur Anmeldung (z.B. bei Webinaren sinnvoll) "
|
1135 |
|
1136 |
-
#: app/features/events.php:
|
1137 |
msgid "Booking Options"
|
1138 |
msgstr "Buchungsoptionen"
|
1139 |
|
1140 |
-
#: app/features/events.php:
|
1141 |
#, fuzzy
|
1142 |
#| msgid "Total booking limits"
|
1143 |
msgid "Total User Booking Limits"
|
1144 |
msgstr "Gesamt Verfügbare Plätze"
|
1145 |
|
1146 |
-
#: app/features/events.php:
|
1147 |
-
#: app/libraries/book.php:61 app/libraries/main.php:
|
1148 |
-
#: app/modules/booking/steps/tickets.php:
|
1149 |
-
#: app/modules/booking/steps/tickets.php:
|
1150 |
msgid "Tickets"
|
1151 |
msgstr "Tickets"
|
1152 |
|
1153 |
-
#: app/features/events.php:
|
1154 |
msgid "Fees"
|
1155 |
msgstr "Gebühren"
|
1156 |
|
1157 |
-
#: app/features/events.php:
|
1158 |
#: app/features/mec/settings.php:809
|
1159 |
msgid "Ticket Variations / Options"
|
1160 |
msgstr ""
|
1161 |
|
1162 |
-
#: app/features/events.php:
|
1163 |
#: app/features/mec/support-page.php:118
|
1164 |
#, fuzzy
|
1165 |
#| msgid "Organizer Tel"
|
1166 |
msgid "Organizer Payment"
|
1167 |
msgstr "Organisator Telefon"
|
1168 |
|
1169 |
-
#: app/features/events.php:
|
1170 |
#, fuzzy
|
1171 |
#| msgid "Total booking limits"
|
1172 |
msgid "Total booking limit"
|
1173 |
msgstr "Gesamt Verfügbare Plätze"
|
1174 |
|
1175 |
-
#: app/features/events.php:
|
1176 |
-
#: app/features/events.php:
|
1177 |
-
#: app/modules/booking/steps/tickets.php:
|
1178 |
-
#: app/modules/booking/steps/tickets.php:
|
1179 |
#: app/skins/available_spot/tpl.php:140
|
1180 |
msgid "Unlimited"
|
1181 |
msgstr "Unlimitiert"
|
1182 |
|
1183 |
-
#: app/features/events.php:
|
1184 |
msgid ""
|
1185 |
"If you want to set a limit to all tickets, uncheck this checkbox and put a "
|
1186 |
"limitation number."
|
1187 |
msgstr ""
|
1188 |
|
1189 |
-
#: app/features/events.php:
|
1190 |
#, fuzzy
|
1191 |
#| msgid "Choose your single event style."
|
1192 |
msgid "Read About A Booking System"
|
1193 |
msgstr "Wählen Sie Ihren Single Event Stil"
|
1194 |
|
1195 |
-
#: app/features/events.php:
|
1196 |
msgid "100"
|
1197 |
msgstr "z.B. 100"
|
1198 |
|
1199 |
-
#: app/features/events.php:
|
1200 |
#, fuzzy
|
1201 |
#| msgid "Discount Type"
|
1202 |
msgid "Discount per user roles"
|
1203 |
msgstr "Rabatt-Art"
|
1204 |
|
1205 |
-
#: app/features/events.php:
|
1206 |
msgid "5"
|
1207 |
msgstr ""
|
1208 |
|
1209 |
-
#: app/features/events.php:
|
1210 |
#, fuzzy
|
1211 |
#| msgid "Next Occurrence"
|
1212 |
msgid "Book All Occurrences"
|
1213 |
msgstr "Nächstes Event"
|
1214 |
|
1215 |
-
#: app/features/events.php:
|
1216 |
msgid "Sell all occurrences by one booking"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
-
#: app/features/events.php:
|
1220 |
msgid ""
|
1221 |
"If you have a series of events and you want to sell all of them at once, "
|
1222 |
"this option is for you! For example a weekly yoga course or something "
|
1223 |
"similar."
|
1224 |
msgstr ""
|
1225 |
|
1226 |
-
#: app/features/events.php:
|
1227 |
#, fuzzy
|
1228 |
#| msgid "Total booking limits"
|
1229 |
msgid "Total user booking limits"
|
1230 |
msgstr "Gesamt Verfügbare Plätze"
|
1231 |
|
1232 |
-
#: app/features/events.php:
|
1233 |
msgid "12"
|
1234 |
msgstr "12"
|
1235 |
|
1236 |
-
#: app/features/events.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1237 |
msgid ""
|
1238 |
"You're translating an event so MEC will use the original event for tickets "
|
1239 |
"and booking. You can only translate the ticket name and description. Please "
|
1240 |
"define exact tickets that you defined in the original event here."
|
1241 |
msgstr ""
|
1242 |
|
1243 |
-
#: app/features/events.php:
|
1244 |
msgid "Add Ticket"
|
1245 |
msgstr "Ticket hinzufügen"
|
1246 |
|
1247 |
-
#: app/features/events.php:
|
1248 |
#, fuzzy
|
1249 |
#| msgid "Ticket"
|
1250 |
msgid "Ticket ID"
|
1251 |
msgstr "Ticket"
|
1252 |
|
1253 |
-
#: app/features/events.php:
|
1254 |
-
#: app/features/events.php:
|
1255 |
#: app/features/ix.php:3748 app/features/ix.php:3790
|
1256 |
#: app/features/labels.php:177 app/features/locations.php:262
|
1257 |
#: app/features/organizers.php:203 app/features/speakers.php:282
|
1258 |
msgid "ID"
|
1259 |
msgstr "ID"
|
1260 |
|
1261 |
-
#: app/features/events.php:
|
1262 |
msgid "Ticket Name"
|
1263 |
msgstr "Ticket Name"
|
1264 |
|
1265 |
-
#: app/features/events.php:
|
1266 |
-
#: app/features/events.php:
|
1267 |
#: app/features/ix.php:3790
|
1268 |
msgid "Start Time"
|
1269 |
msgstr "Uhrzeit des Beginns"
|
1270 |
|
1271 |
-
#: app/features/events.php:
|
1272 |
-
#: app/features/events.php:
|
1273 |
#: app/features/ix.php:3790
|
1274 |
msgid "End Time"
|
1275 |
msgstr "Uhrzeit Ende"
|
1276 |
|
1277 |
-
#: app/features/events.php:
|
1278 |
-
#: app/features/events.php:
|
1279 |
-
#: app/features/events.php:
|
1280 |
-
#: app/features/events.php:
|
1281 |
-
#: app/features/events.php:
|
1282 |
-
#: app/features/events.php:
|
1283 |
#: app/features/mec/booking.php:548 app/features/mec/booking.php:577
|
1284 |
#: app/features/mec/booking.php:580
|
1285 |
msgid "Price"
|
1286 |
msgstr "Preis"
|
1287 |
|
1288 |
-
#: app/features/events.php:
|
1289 |
#, fuzzy
|
1290 |
#| msgid "Insert 0 for free ticket. Only numbers please."
|
1291 |
msgid ""
|
@@ -1293,54 +1328,54 @@ msgid ""
|
|
1293 |
"any symbols or characters."
|
1294 |
msgstr "Bitte 0 für kostenloses Ticket eingeben. Bitte nur Zahlen eintragen"
|
1295 |
|
1296 |
-
#: app/features/events.php:
|
1297 |
-
#: app/features/events.php:
|
1298 |
msgid "Price Label"
|
1299 |
msgstr "Preisschild"
|
1300 |
|
1301 |
-
#: app/features/events.php:
|
1302 |
msgid "For showing on website. e.g. $15"
|
1303 |
msgstr "Um das auf der Webseite anzuzeigen zum Beispiel 15 €"
|
1304 |
|
1305 |
-
#: app/features/events.php:
|
1306 |
msgid "Available Tickets"
|
1307 |
msgstr "Verfügbare Tickets: %s "
|
1308 |
|
1309 |
-
#: app/features/events.php:
|
1310 |
msgid "Minimum Ticket e.g. 3"
|
1311 |
msgstr "Ticket minimum z.B. 3"
|
1312 |
|
1313 |
-
#: app/features/events.php:
|
1314 |
msgid "MinimumTicket"
|
1315 |
msgstr "Ticket minimum"
|
1316 |
|
1317 |
-
#: app/features/events.php:
|
1318 |
msgid "Set a number for the minimum ticket reservation possible"
|
1319 |
msgstr ""
|
1320 |
|
1321 |
-
#: app/features/events.php:
|
1322 |
msgid "e.g. 0"
|
1323 |
msgstr "z.B. 0"
|
1324 |
|
1325 |
-
#: app/features/events.php:
|
1326 |
msgid "Day"
|
1327 |
msgstr "Tag"
|
1328 |
|
1329 |
-
#: app/features/events.php:
|
1330 |
msgid "Hour"
|
1331 |
msgstr "Stunde"
|
1332 |
|
1333 |
-
#: app/features/events.php:
|
1334 |
#, php-format
|
1335 |
msgid "Stop selling ticket %s before event start."
|
1336 |
msgstr ""
|
1337 |
|
1338 |
-
#: app/features/events.php:
|
1339 |
msgid "Price per Date"
|
1340 |
msgstr "Preis pro Datum"
|
1341 |
|
1342 |
-
#: app/features/events.php:
|
1343 |
-
#: app/features/events.php:
|
1344 |
#: app/features/mec/meta_boxes/display_options.php:1421
|
1345 |
#: app/features/mec/meta_boxes/search_form.php:67
|
1346 |
#: app/features/mec/meta_boxes/search_form.php:137
|
@@ -1354,23 +1389,24 @@ msgstr "Preis pro Datum"
|
|
1354 |
#: app/features/mec/meta_boxes/search_form.php:690
|
1355 |
#: app/features/mec/meta_boxes/search_form.php:796
|
1356 |
#: app/features/mec/settings.php:955 app/features/mec/single.php:349
|
1357 |
-
#: app/features/
|
|
|
1358 |
msgid "Label"
|
1359 |
msgstr "Label"
|
1360 |
|
1361 |
-
#: app/features/events.php:
|
1362 |
#: app/features/mec/booking.php:464 app/features/mec/booking.php:493
|
1363 |
msgid "Fee Title"
|
1364 |
msgstr "Gebühren Name"
|
1365 |
|
1366 |
-
#: app/features/events.php:
|
1367 |
-
#: app/features/events.php:
|
1368 |
#: app/features/mec/booking.php:468 app/features/mec/booking.php:471
|
1369 |
#: app/features/mec/booking.php:497 app/features/mec/booking.php:500
|
1370 |
msgid "Amount"
|
1371 |
msgstr "Betrag"
|
1372 |
|
1373 |
-
#: app/features/events.php:
|
1374 |
#: app/features/mec/booking.php:472 app/features/mec/booking.php:501
|
1375 |
msgid ""
|
1376 |
"Fee amount, considered as fixed amount if you set the type to amount "
|
@@ -1379,95 +1415,95 @@ msgstr ""
|
|
1379 |
"Gebührenbetrag, gilt als fester Betrag, wenn Sie die Art auf Betrag setzen, "
|
1380 |
"sonst als Prozentsatz"
|
1381 |
|
1382 |
-
#: app/features/events.php:
|
1383 |
#: app/features/mec/booking.php:479 app/features/mec/booking.php:508
|
1384 |
msgid "Percent"
|
1385 |
msgstr "Prozent"
|
1386 |
|
1387 |
-
#: app/features/events.php:
|
1388 |
#: app/features/mec/booking.php:480 app/features/mec/booking.php:509
|
1389 |
msgid "Amount (Per Ticket)"
|
1390 |
msgstr "Betrag (pro Ticket)"
|
1391 |
|
1392 |
-
#: app/features/events.php:
|
1393 |
#: app/features/mec/booking.php:481 app/features/mec/booking.php:510
|
1394 |
msgid "Amount (Per Booking)"
|
1395 |
msgstr "Betrag (pro Buchung)"
|
1396 |
|
1397 |
-
#: app/features/events.php:
|
1398 |
#: app/features/mec/booking.php:549 app/features/mec/booking.php:581
|
1399 |
msgid "Option Price"
|
1400 |
msgstr "Preis Optionen"
|
1401 |
|
1402 |
-
#: app/features/events.php:
|
1403 |
-
#: app/features/events.php:
|
1404 |
#: app/features/mec/booking.php:555 app/features/mec/booking.php:558
|
1405 |
#: app/features/mec/booking.php:587 app/features/mec/booking.php:590
|
1406 |
msgid "Maximum Per Ticket"
|
1407 |
msgstr "Maximum pro Ticket"
|
1408 |
|
1409 |
-
#: app/features/events.php:
|
1410 |
#: app/features/mec/booking.php:559 app/features/mec/booking.php:591
|
1411 |
#, fuzzy
|
1412 |
#| msgid "Maximum Per Ticket. Leave it blank for unlimited."
|
1413 |
msgid "Maximum Per Ticket. Leave blank for unlimited."
|
1414 |
msgstr "Maximum pro Ticket. Leerlassen für unendlich."
|
1415 |
|
1416 |
-
#: app/features/events.php:
|
1417 |
#, fuzzy
|
1418 |
#| msgid "Attendees List"
|
1419 |
msgid "Per Attendee Fields"
|
1420 |
msgstr "Teilnehmer Liste"
|
1421 |
|
1422 |
-
#: app/features/events.php:
|
1423 |
-
#: app/libraries/main.php:
|
1424 |
msgid "MEC Name"
|
1425 |
msgstr "MEC Name"
|
1426 |
|
1427 |
-
#: app/features/events.php:
|
1428 |
-
#: app/libraries/main.php:
|
1429 |
msgid "MEC Email"
|
1430 |
msgstr "MEC Email"
|
1431 |
|
1432 |
-
#: app/features/events.php:
|
1433 |
#: app/features/mec/booking.php:642 app/features/mec/booking.php:738
|
1434 |
-
#: app/features/mec/single.php:190 app/libraries/main.php:
|
1435 |
msgid "Text"
|
1436 |
msgstr "Text"
|
1437 |
|
1438 |
-
#: app/features/events.php:
|
1439 |
#: app/features/mec/booking.php:645 app/features/mec/booking.php:741
|
1440 |
#: app/features/mec/single.php:194 app/features/organizers.php:103
|
1441 |
#: app/features/organizers.php:148 app/features/speakers.php:119
|
1442 |
#: app/features/speakers.php:200 app/features/speakers.php:285
|
1443 |
-
#: app/libraries/main.php:
|
1444 |
msgid "Tel"
|
1445 |
msgstr "Tel"
|
1446 |
|
1447 |
-
#: app/features/events.php:
|
1448 |
-
#: app/libraries/main.php:
|
1449 |
msgid "File"
|
1450 |
msgstr "Datei"
|
1451 |
|
1452 |
-
#: app/features/events.php:
|
1453 |
#: app/features/mec/booking.php:647 app/features/mec/booking.php:742
|
1454 |
-
#: app/features/mec/single.php:195 app/libraries/main.php:
|
1455 |
msgid "Textarea"
|
1456 |
msgstr "Textbereich"
|
1457 |
|
1458 |
-
#: app/features/events.php:
|
1459 |
#: app/features/mec/booking.php:648 app/features/mec/booking.php:743
|
1460 |
-
#: app/features/mec/single.php:197 app/libraries/main.php:
|
1461 |
msgid "Checkboxes"
|
1462 |
msgstr "Checkboxes"
|
1463 |
|
1464 |
-
#: app/features/events.php:
|
1465 |
#: app/features/mec/booking.php:649 app/features/mec/booking.php:744
|
1466 |
-
#: app/features/mec/single.php:198 app/libraries/main.php:
|
1467 |
msgid "Radio Buttons"
|
1468 |
msgstr "Radio Buttons"
|
1469 |
|
1470 |
-
#: app/features/events.php:
|
1471 |
#: app/features/mec/booking.php:650 app/features/mec/booking.php:745
|
1472 |
#: app/features/mec/meta_boxes/search_form.php:34
|
1473 |
#: app/features/mec/meta_boxes/search_form.php:41
|
@@ -1545,51 +1581,51 @@ msgstr "Radio Buttons"
|
|
1545 |
#: app/features/mec/meta_boxes/search_form.php:792
|
1546 |
#: app/features/mec/meta_boxes/search_form.php:799
|
1547 |
#: app/features/mec/meta_boxes/search_form.php:813
|
1548 |
-
#: app/features/mec/single.php:199 app/libraries/main.php:
|
1549 |
msgid "Dropdown"
|
1550 |
msgstr "Dropdown"
|
1551 |
|
1552 |
-
#: app/features/events.php:
|
1553 |
#: app/features/mec/booking.php:651 app/features/mec/booking.php:746
|
1554 |
-
#: app/libraries/main.php:
|
1555 |
msgid "Agreement"
|
1556 |
msgstr "Zustimmung"
|
1557 |
|
1558 |
-
#: app/features/events.php:
|
1559 |
#: app/features/mec/booking.php:652 app/features/mec/booking.php:747
|
1560 |
-
#: app/features/mec/single.php:196 app/libraries/main.php:
|
1561 |
msgid "Paragraph"
|
1562 |
msgstr "Absatz"
|
1563 |
|
1564 |
-
#: app/features/events.php:
|
1565 |
#, fuzzy
|
1566 |
#| msgid "Required Field"
|
1567 |
msgid "Fixed Fields"
|
1568 |
msgstr "Pflichtfeld"
|
1569 |
|
1570 |
-
#: app/features/events.php:
|
1571 |
-
#: app/features/events.php:
|
1572 |
#, php-format
|
1573 |
msgid "Show all %s"
|
1574 |
msgstr "Zeige alle %s"
|
1575 |
|
1576 |
-
#: app/features/events.php:
|
1577 |
msgid "labels"
|
1578 |
msgstr "Labels + Eventstatus"
|
1579 |
|
1580 |
-
#: app/features/events.php:
|
1581 |
msgid "locations"
|
1582 |
msgstr "Orte"
|
1583 |
|
1584 |
-
#: app/features/events.php:
|
1585 |
msgid "organizers"
|
1586 |
msgstr "Veranstalter"
|
1587 |
|
1588 |
-
#: app/features/events.php:
|
1589 |
msgid "Attendees List"
|
1590 |
msgstr "Teilnehmer Liste"
|
1591 |
|
1592 |
-
#: app/features/events.php:
|
1593 |
#: app/features/ix.php:3748 app/features/ix.php:3790
|
1594 |
#: app/features/locations.php:58 app/features/locations.php:263
|
1595 |
#: app/features/locations.php:324 app/features/locations.php:326
|
@@ -1607,57 +1643,58 @@ msgstr "Teilnehmer Liste"
|
|
1607 |
#: app/features/mec/meta_boxes/search_form.php:661
|
1608 |
#: app/features/mec/meta_boxes/search_form.php:767
|
1609 |
#: app/features/mec/settings.php:929 app/features/mec/single.php:339
|
1610 |
-
#: app/features/
|
1611 |
-
#: app/features/
|
1612 |
-
#: app/libraries/main.php:
|
1613 |
-
#: app/libraries/
|
1614 |
-
#: app/skins/single.php:
|
1615 |
-
#: app/skins/single/default.php:
|
1616 |
-
#: app/skins/single/
|
|
|
1617 |
msgid "Location"
|
1618 |
msgstr "Ort"
|
1619 |
|
1620 |
-
#: app/features/events.php:
|
1621 |
msgid "Repeat"
|
1622 |
msgstr "Wiederholen"
|
1623 |
|
1624 |
-
#: app/features/events.php:
|
1625 |
msgid "Author"
|
1626 |
msgstr "Autor"
|
1627 |
|
1628 |
-
#: app/features/events.php:
|
1629 |
#, fuzzy
|
1630 |
#| msgid "iCal Export"
|
1631 |
msgid "iCal / Outlook Export"
|
1632 |
msgstr "ical Export"
|
1633 |
|
1634 |
-
#: app/features/events.php:
|
1635 |
msgid "CSV Export"
|
1636 |
msgstr "CSV Export"
|
1637 |
|
1638 |
-
#: app/features/events.php:
|
1639 |
msgid "MS Excel Export"
|
1640 |
msgstr "MS Excel Export"
|
1641 |
|
1642 |
-
#: app/features/events.php:
|
1643 |
msgid "XML Export"
|
1644 |
msgstr "XML Export"
|
1645 |
|
1646 |
-
#: app/features/events.php:
|
1647 |
msgid "JSON Export"
|
1648 |
msgstr "JSON Export"
|
1649 |
|
1650 |
-
#: app/features/events.php:
|
1651 |
-
#: app/features/events.php:
|
1652 |
msgid "Duplicate"
|
1653 |
msgstr "Kopie"
|
1654 |
|
1655 |
-
#: app/features/events.php:
|
1656 |
#: app/features/ix.php:3790
|
1657 |
msgid "Link"
|
1658 |
msgstr "Link"
|
1659 |
|
1660 |
-
#: app/features/events.php:
|
1661 |
#: app/features/ix.php:3790 app/features/locations.php:110
|
1662 |
#: app/features/locations.php:180 app/features/locations.php:264
|
1663 |
#: app/features/mec/meta_boxes/search_form.php:74
|
@@ -1674,41 +1711,41 @@ msgstr "Link"
|
|
1674 |
msgid "Address"
|
1675 |
msgstr "Adresse"
|
1676 |
|
1677 |
-
#: app/features/events.php:
|
1678 |
#, php-format
|
1679 |
msgid "%s Tel"
|
1680 |
msgstr "%s Tel"
|
1681 |
|
1682 |
-
#: app/features/events.php:
|
1683 |
#, php-format
|
1684 |
msgid "%s Email"
|
1685 |
msgstr "%s Email"
|
1686 |
|
1687 |
-
#: app/features/events.php:
|
1688 |
-
#: app/features/profile/profile.php:183 app/libraries/main.php:
|
1689 |
-
#: app/libraries/main.php:
|
1690 |
msgid "Ticket"
|
1691 |
msgstr "Ticket"
|
1692 |
|
1693 |
-
#: app/features/events.php:
|
1694 |
msgid "Variations"
|
1695 |
msgstr "Variationen"
|
1696 |
|
1697 |
-
#: app/features/events.php:
|
1698 |
msgid "Unknown"
|
1699 |
msgstr "Unbekannt"
|
1700 |
|
1701 |
-
#: app/features/events.php:
|
1702 |
msgid ""
|
1703 |
"If you want to send an email, first select your attendees and then click in "
|
1704 |
"the button below, please."
|
1705 |
msgstr ""
|
1706 |
|
1707 |
-
#: app/features/events.php:
|
1708 |
msgid "Send Email"
|
1709 |
msgstr "E-Mail senden"
|
1710 |
|
1711 |
-
#: app/features/events.php:
|
1712 |
msgid "No Attendees Found!"
|
1713 |
msgstr "Keine Teilnehmer gefunden!"
|
1714 |
|
@@ -1752,8 +1789,8 @@ msgstr "Die Veranstaltung wurde entfernt."
|
|
1752 |
msgid "Order Time"
|
1753 |
msgstr "Uhrzeit Bestellung"
|
1754 |
|
1755 |
-
#: app/features/fes.php:236 app/features/wc.php:
|
1756 |
-
#: app/libraries/main.php:
|
1757 |
msgid "Transaction ID"
|
1758 |
msgstr "Transaktions-ID"
|
1759 |
|
@@ -1803,7 +1840,7 @@ msgstr "Das eingegebene Captcha ist ungültig! Bitte versuchen Sie es erneut."
|
|
1803 |
msgid "Please fill event title field!"
|
1804 |
msgstr "Bitte füllen Sie das Event Titelfeld"
|
1805 |
|
1806 |
-
#: app/features/fes.php:
|
1807 |
#, fuzzy
|
1808 |
#| msgid "The event submitted. It will publish as soon as possible."
|
1809 |
msgid "Event submitted. It will publish as soon as possible."
|
@@ -1811,7 +1848,7 @@ msgstr ""
|
|
1811 |
"Die Veranstaltung wurde übermittelt. Sie wird sobald wie möglich "
|
1812 |
"veröffentlicht werden."
|
1813 |
|
1814 |
-
#: app/features/fes.php:
|
1815 |
msgid "The event published."
|
1816 |
msgstr "Die Veranstaltung wurde veröffentlicht."
|
1817 |
|
@@ -1819,65 +1856,65 @@ msgstr "Die Veranstaltung wurde veröffentlicht."
|
|
1819 |
msgid "Go back to events list"
|
1820 |
msgstr "Zurück zur Liste der Veranstaltungen"
|
1821 |
|
1822 |
-
#: app/features/fes/form.php:
|
1823 |
msgid "Excerpt"
|
1824 |
msgstr ""
|
1825 |
|
1826 |
-
#: app/features/fes/form.php:
|
1827 |
#, fuzzy
|
1828 |
#| msgid "On Event Start"
|
1829 |
msgid "Optional Event Excerpt"
|
1830 |
msgstr "Am Event Start"
|
1831 |
|
1832 |
-
#: app/features/fes/form.php:
|
1833 |
msgid ""
|
1834 |
"This event is imported from Google calendar so if you modify it would "
|
1835 |
"overwrite in the next import from Google."
|
1836 |
msgstr ""
|
1837 |
|
1838 |
-
#: app/features/fes/form.php:
|
1839 |
#: app/features/mec/meta_boxes/display_options.php:1268
|
1840 |
#: app/libraries/main.php:415
|
1841 |
msgid "Monday"
|
1842 |
msgstr "Montag"
|
1843 |
|
1844 |
-
#: app/features/fes/form.php:
|
1845 |
#: app/features/mec/meta_boxes/display_options.php:1269
|
1846 |
#: app/libraries/main.php:415
|
1847 |
msgid "Tuesday"
|
1848 |
msgstr "Dienstag"
|
1849 |
|
1850 |
-
#: app/features/fes/form.php:
|
1851 |
#: app/features/mec/meta_boxes/display_options.php:1270
|
1852 |
#: app/libraries/main.php:415
|
1853 |
msgid "Wednesday"
|
1854 |
msgstr "Mittwoch"
|
1855 |
|
1856 |
-
#: app/features/fes/form.php:
|
1857 |
#: app/features/mec/meta_boxes/display_options.php:1271
|
1858 |
#: app/libraries/main.php:415
|
1859 |
msgid "Thursday"
|
1860 |
msgstr "Donnerstag"
|
1861 |
|
1862 |
-
#: app/features/fes/form.php:
|
1863 |
#: app/features/mec/meta_boxes/display_options.php:1272
|
1864 |
#: app/libraries/main.php:415
|
1865 |
msgid "Friday"
|
1866 |
msgstr "Freitag"
|
1867 |
|
1868 |
-
#: app/features/fes/form.php:
|
1869 |
#: app/features/mec/meta_boxes/display_options.php:1273
|
1870 |
#: app/libraries/main.php:415
|
1871 |
msgid "Saturday"
|
1872 |
msgstr "Samstag"
|
1873 |
|
1874 |
-
#: app/features/fes/form.php:
|
1875 |
#: app/features/mec/meta_boxes/display_options.php:1267
|
1876 |
#: app/libraries/main.php:415
|
1877 |
msgid "Sunday"
|
1878 |
msgstr "Sonntag"
|
1879 |
|
1880 |
-
#: app/features/fes/form.php:
|
1881 |
msgid ""
|
1882 |
"The event will finish after certain repeats. For example if you set it to "
|
1883 |
"10, the event will finish after 10 repeats."
|
@@ -1885,24 +1922,24 @@ msgstr ""
|
|
1885 |
"Das Event ist nach einer bestimmten Anzahl von Wiederholungen zu Ende. Zum "
|
1886 |
"Beispiel: Bei Eingabe von 10 wird das Event nach 10 Wiederholungen beendet"
|
1887 |
|
1888 |
-
#: app/features/fes/form.php:
|
1889 |
msgid "Note to reviewer"
|
1890 |
msgstr "Zusätzliche Anmerkungen zum Event "
|
1891 |
|
1892 |
-
#: app/features/fes/form.php:
|
1893 |
msgid "User Data"
|
1894 |
msgstr "Benutzerdaten"
|
1895 |
|
1896 |
-
#: app/features/fes/form.php:
|
1897 |
msgid "eg. yourname@gmail.com"
|
1898 |
msgstr "z.B. IhrName@ihrewebseite.de"
|
1899 |
|
1900 |
-
#: app/features/fes/form.php:
|
1901 |
#: app/features/popup/event.php:183
|
1902 |
msgid "eg. John Smith"
|
1903 |
msgstr "z.B. Max Mustermann"
|
1904 |
|
1905 |
-
#: app/features/fes/form.php:
|
1906 |
#, fuzzy
|
1907 |
#| msgid ""
|
1908 |
#| "If you fill it, it will be replaced instead of default event page link. "
|
@@ -1915,46 +1952,46 @@ msgstr ""
|
|
1915 |
"dieser durch einen neuen link ersetzt werden. Vollständigen Link einfügen, "
|
1916 |
"einschließlich http(s)://"
|
1917 |
|
1918 |
-
#: app/features/fes/form.php:
|
1919 |
msgid "Featured Image"
|
1920 |
msgstr "Ausgewähltes Bild"
|
1921 |
|
1922 |
-
#: app/features/fes/form.php:
|
1923 |
msgid "Remove Image"
|
1924 |
msgstr "Bild entfernen"
|
1925 |
|
1926 |
-
#: app/features/fes/form.php:
|
1927 |
#: app/features/labels.php:221 app/features/mec.php:462
|
1928 |
#: app/features/mec/meta_boxes/filter.php:72
|
1929 |
-
#: app/features/mec/meta_boxes/filter.php:133 app/libraries/main.php:
|
1930 |
-
#: app/libraries/main.php:
|
1931 |
#: app/skins/single/default.php:173 app/skins/single/default.php:405
|
1932 |
#: app/skins/single/m1.php:76 app/skins/single/modern.php:252
|
1933 |
msgid "Labels"
|
1934 |
msgstr "Labels"
|
1935 |
|
1936 |
-
#: app/features/fes/form.php:
|
1937 |
#: app/features/mec/meta_boxes/filter.php:73
|
1938 |
#: app/features/mec/meta_boxes/filter.php:151
|
1939 |
msgid "Tags"
|
1940 |
msgstr "Schlagworte"
|
1941 |
|
1942 |
-
#: app/features/fes/form.php:
|
1943 |
msgid "Insert your desired tags, comma separated."
|
1944 |
msgstr ""
|
1945 |
"Geben Sie die gewünschten Tags (Schlagworte) durch ein Komma separiert ein"
|
1946 |
|
1947 |
-
#: app/features/fes/form.php:
|
1948 |
msgid "Speakers Names"
|
1949 |
msgstr "Sprecher Namen"
|
1950 |
|
1951 |
-
#: app/features/fes/form.php:
|
1952 |
#, fuzzy
|
1953 |
#| msgid "Separate names with commas Similar Justin, Cris"
|
1954 |
msgid "Separate names with commas: Justin, Chris"
|
1955 |
msgstr "Unterteile Namen mit Kommas. z.B. Hans, Maier"
|
1956 |
|
1957 |
-
#: app/features/fes/form.php:
|
1958 |
msgid "Submit"
|
1959 |
msgstr "Buchung abschließen"
|
1960 |
|
@@ -1992,7 +2029,7 @@ msgid "MEC - Import / Export"
|
|
1992 |
msgstr "MEC - Import / Export"
|
1993 |
|
1994 |
#: app/features/ix.php:107 app/features/mec/support.php:73
|
1995 |
-
#: app/libraries/main.php:
|
1996 |
msgid "Import / Export"
|
1997 |
msgstr "Import / Export"
|
1998 |
|
@@ -2010,27 +2047,27 @@ msgstr "Der Datei Typ muss XML oder ICS sein."
|
|
2010 |
msgid "An error occurred during the file upload! Please check permissions!"
|
2011 |
msgstr ""
|
2012 |
|
2013 |
-
#: app/features/ix.php:265 app/libraries/main.php:
|
2014 |
-
#: app/libraries/main.php:
|
2015 |
msgid "Confirmed"
|
2016 |
msgstr "Bestätigt"
|
2017 |
|
2018 |
-
#: app/features/ix.php:266 app/libraries/main.php:
|
2019 |
-
#: app/libraries/main.php:
|
2020 |
msgid "Rejected"
|
2021 |
msgstr "Abgelehnt"
|
2022 |
|
2023 |
-
#: app/features/ix.php:270 app/features/mec/booking.php:
|
2024 |
-
#: app/features/mec/booking.php:
|
2025 |
#: app/features/mec/modules.php:423 app/features/mec/notifications.php:1046
|
2026 |
#: app/features/mec/notifications.php:1068 app/features/mec/settings.php:1239
|
2027 |
-
#: app/features/mec/settings.php:1261 app/features/mec/single.php:
|
2028 |
-
#: app/features/mec/single.php:
|
2029 |
msgid "Verified"
|
2030 |
msgstr "Verifiziert"
|
2031 |
|
2032 |
#: app/features/ix.php:271 app/features/labels.php:118
|
2033 |
-
#: app/features/labels.php:143 app/libraries/main.php:
|
2034 |
#: app/skins/agenda/render.php:43 app/skins/available_spot/tpl.php:56
|
2035 |
#: app/skins/carousel/render.php:38 app/skins/countdown/tpl.php:40
|
2036 |
#: app/skins/cover/tpl.php:36 app/skins/daily_view/render.php:28
|
@@ -2336,9 +2373,9 @@ msgstr "Umschalten"
|
|
2336 |
msgid "Add to Google Calendar"
|
2337 |
msgstr "Zum Google Kalender hinzufügen"
|
2338 |
|
2339 |
-
#: app/features/ix/export_g_calendar.php:93 app/features/mec/booking.php:
|
2340 |
#: app/features/mec/modules.php:403 app/features/mec/notifications.php:1048
|
2341 |
-
#: app/features/mec/settings.php:1241 app/features/mec/single.php:
|
2342 |
msgid "Checking ..."
|
2343 |
msgstr "Überprüfung"
|
2344 |
|
@@ -2847,7 +2884,7 @@ msgstr ""
|
|
2847 |
|
2848 |
#: app/features/labels.php:180 app/features/locations.php:265
|
2849 |
#: app/features/organizers.php:206 app/features/speakers.php:286
|
2850 |
-
#: app/modules/booking/steps/tickets.php:
|
2851 |
msgid "Count"
|
2852 |
msgstr "Zähler"
|
2853 |
|
@@ -2863,8 +2900,8 @@ msgstr "Event %s"
|
|
2863 |
|
2864 |
#: app/features/locations.php:59 app/features/mec.php:463
|
2865 |
#: app/features/mec/dashboard.php:279 app/features/mec/meta_boxes/filter.php:70
|
2866 |
-
#: app/features/mec/meta_boxes/filter.php:97 app/libraries/main.php:
|
2867 |
-
#: app/libraries/main.php:
|
2868 |
msgid "Locations"
|
2869 |
msgstr "Orte"
|
2870 |
|
@@ -2985,8 +3022,8 @@ msgstr "Bild wählen"
|
|
2985 |
msgid "Don't show map in single event page"
|
2986 |
msgstr "Karte in Einzelansicht nicht anzeigen"
|
2987 |
|
2988 |
-
#: app/features/locations.php:398 app/libraries/main.php:
|
2989 |
-
#: app/libraries/main.php:
|
2990 |
msgid "Other Locations"
|
2991 |
msgstr "Andere Orte"
|
2992 |
|
@@ -3070,7 +3107,7 @@ msgstr "Support"
|
|
3070 |
#: app/features/mec.php:464 app/features/mec/dashboard.php:286
|
3071 |
#: app/features/mec/meta_boxes/filter.php:71
|
3072 |
#: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
|
3073 |
-
#: app/libraries/main.php:
|
3074 |
msgid "Organizers"
|
3075 |
msgstr "Veranstalter"
|
3076 |
|
@@ -3273,9 +3310,9 @@ msgid "Search..."
|
|
3273 |
msgstr "Suche…"
|
3274 |
|
3275 |
#: app/features/mec/booking.php:80 app/features/mec/booking.php:753
|
3276 |
-
#: app/features/mec/booking.php:
|
3277 |
-
#: app/features/mec/booking.php:
|
3278 |
-
#: app/features/mec/booking.php:
|
3279 |
#: app/features/mec/messages.php:51 app/features/mec/messages.php:60
|
3280 |
#: app/features/mec/messages.php:94 app/features/mec/messages.php:103
|
3281 |
#: app/features/mec/modules.php:25 app/features/mec/modules.php:368
|
@@ -3287,9 +3324,9 @@ msgstr "Suche…"
|
|
3287 |
#: app/features/mec/notifications.php:1079 app/features/mec/settings.php:42
|
3288 |
#: app/features/mec/settings.php:1190 app/features/mec/settings.php:1200
|
3289 |
#: app/features/mec/settings.php:1258 app/features/mec/settings.php:1272
|
3290 |
-
#: app/features/mec/single.php:21 app/features/mec/single.php:
|
3291 |
-
#: app/features/mec/single.php:
|
3292 |
-
#: app/features/mec/single.php:
|
3293 |
#: app/features/mec/styles.php:31 app/features/mec/styles.php:40
|
3294 |
#: app/features/mec/styles.php:77 app/features/mec/styles.php:86
|
3295 |
#: app/features/mec/styling.php:37 app/features/mec/styling.php:257
|
@@ -3337,6 +3374,7 @@ msgstr ""
|
|
3337 |
|
3338 |
#: app/features/mec/booking.php:133 app/features/mec/booking.php:187
|
3339 |
#: app/features/mec/booking.php:254 app/features/mec/booking.php:823
|
|
|
3340 |
#: app/features/mec/meta_boxes/search_form.php:33
|
3341 |
#: app/features/mec/meta_boxes/search_form.php:40
|
3342 |
#: app/features/mec/meta_boxes/search_form.php:48
|
@@ -3442,7 +3480,7 @@ msgstr "Deaktiviert"
|
|
3442 |
|
3443 |
#: app/features/mec/booking.php:134 app/features/mec/booking.php:186
|
3444 |
#: app/features/mec/booking.php:253 app/features/mec/booking.php:822
|
3445 |
-
#: app/features/mec/settings.php:105
|
3446 |
msgid "Enabled"
|
3447 |
msgstr "Aktiviert"
|
3448 |
|
@@ -3701,7 +3739,7 @@ msgid "Auto verification for paid bookings"
|
|
3701 |
msgstr "Automatische Verifizierung für kostenpflichtige Buchungen"
|
3702 |
|
3703 |
#: app/features/mec/booking.php:374 app/features/mec/notifications.php:269
|
3704 |
-
#: app/features/notifications.php:155 app/libraries/main.php:
|
3705 |
msgid "Booking Confirmation"
|
3706 |
msgstr "Buchungsbestätigung"
|
3707 |
|
@@ -3717,7 +3755,7 @@ msgstr "Automatische Bestätigung für kostenpflichtige Buchungen"
|
|
3717 |
msgid "Send confirmation email in auto confirmation mode"
|
3718 |
msgstr ""
|
3719 |
|
3720 |
-
#: app/features/mec/booking.php:411 app/libraries/main.php:
|
3721 |
#, fuzzy
|
3722 |
#| msgid "Booking"
|
3723 |
msgid "Booking Shortcode"
|
@@ -3751,7 +3789,7 @@ msgid ""
|
|
3751 |
msgstr ""
|
3752 |
|
3753 |
#: app/features/mec/booking.php:445 app/features/mec/booking.php:815
|
3754 |
-
#: app/libraries/main.php:
|
3755 |
msgid "Taxes / Fees"
|
3756 |
msgstr "Steuern/Gebühren"
|
3757 |
|
@@ -3763,7 +3801,7 @@ msgstr "Modul für Gebühren/Steuern aktivieren"
|
|
3763 |
msgid "Add Fee"
|
3764 |
msgstr "Gebühr hinzufügen"
|
3765 |
|
3766 |
-
#: app/features/mec/booking.php:522 app/libraries/main.php:
|
3767 |
msgid "Ticket Variations & Options"
|
3768 |
msgstr ""
|
3769 |
|
@@ -3781,10 +3819,10 @@ msgstr ""
|
|
3781 |
|
3782 |
#: app/features/mec/booking.php:807
|
3783 |
msgid ""
|
3784 |
-
"By enabling this feature, tickets will be added to
|
3785 |
-
"process would be done by WooCommerce so all of MEC payment related
|
3786 |
-
"will be disabled. To configure your desired gateways and booking
|
3787 |
-
"you need to configure WooCommerce on your website."
|
3788 |
msgstr ""
|
3789 |
|
3790 |
#: app/features/mec/booking.php:809
|
@@ -3812,13 +3850,15 @@ msgid "Ticket variations"
|
|
3812 |
msgstr "Ticket Variationen"
|
3813 |
|
3814 |
#: app/features/mec/booking.php:819
|
3815 |
-
|
|
|
|
|
3816 |
msgstr "WC-Aufträge automatisch abschließen"
|
3817 |
|
3818 |
#: app/features/mec/booking.php:827
|
3819 |
#, fuzzy
|
3820 |
#| msgid "Automatically complete WC orders"
|
3821 |
-
msgid "Auto
|
3822 |
msgstr "WC-Aufträge automatisch abschließen"
|
3823 |
|
3824 |
#: app/features/mec/booking.php:828
|
@@ -3843,33 +3883,61 @@ msgstr "Weiterleitungs Seite "
|
|
3843 |
msgid "Redirect to Checkout"
|
3844 |
msgstr "Weiterleitungs Seite "
|
3845 |
|
3846 |
-
#: app/features/mec/booking.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3847 |
msgid "Enable Organizer Payment Module"
|
3848 |
msgstr ""
|
3849 |
|
3850 |
-
#: app/features/mec/booking.php:
|
3851 |
msgid ""
|
3852 |
"By enabling this module, organizers are able to insert their own payment "
|
3853 |
"credentials for enabled gateways per event and receive the payments directly!"
|
3854 |
msgstr ""
|
3855 |
|
3856 |
-
#: app/features/mec/booking.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3857 |
#: app/features/mec/modules.php:398 app/features/mec/notifications.php:1043
|
3858 |
-
#: app/features/mec/settings.php:1236 app/features/mec/single.php:
|
3859 |
#: app/features/mec/styles.php:60 app/features/mec/styling.php:311
|
3860 |
msgid "Saved"
|
3861 |
msgstr "Gesichert"
|
3862 |
|
3863 |
-
#: app/features/mec/booking.php:
|
3864 |
#: app/features/mec/modules.php:399 app/features/mec/notifications.php:1044
|
3865 |
-
#: app/features/mec/settings.php:1237 app/features/mec/single.php:
|
3866 |
#: app/features/mec/styles.php:61 app/features/mec/styling.php:312
|
3867 |
msgid "Settings Saved!"
|
3868 |
msgstr "Einstellungen gespeichert!"
|
3869 |
|
3870 |
-
#: app/features/mec/booking.php:
|
3871 |
#: app/features/mec/notifications.php:1070 app/features/mec/settings.php:1263
|
3872 |
-
#: app/features/mec/single.php:
|
3873 |
msgid "Please Refresh Page"
|
3874 |
msgstr "Bitte Seiten Refresh vornehmen"
|
3875 |
|
@@ -3985,7 +4053,7 @@ msgid "Download Settings"
|
|
3985 |
msgstr "Einstellungen Herunterladen"
|
3986 |
|
3987 |
#: app/features/mec/messages.php:28 app/features/mec/support-page.php:102
|
3988 |
-
#: app/features/mec/support.php:66 app/libraries/main.php:
|
3989 |
msgid "Messages"
|
3990 |
msgstr "Nachrichten"
|
3991 |
|
@@ -4503,15 +4571,15 @@ msgstr "Standardansicht"
|
|
4503 |
|
4504 |
#: app/features/mec/meta_boxes/display_options.php:666
|
4505 |
#: app/features/mec/meta_boxes/display_options.php:690
|
4506 |
-
#: app/libraries/main.php:335 app/libraries/main.php:
|
4507 |
-
#: app/libraries/main.php:
|
4508 |
msgid "List View"
|
4509 |
msgstr "Listenansicht"
|
4510 |
|
4511 |
#: app/features/mec/meta_boxes/display_options.php:667
|
4512 |
#: app/features/mec/meta_boxes/display_options.php:711
|
4513 |
-
#: app/libraries/main.php:336 app/libraries/main.php:
|
4514 |
-
#: app/libraries/main.php:
|
4515 |
msgid "Grid View"
|
4516 |
msgstr "Rasterdarstellung"
|
4517 |
|
@@ -4525,8 +4593,8 @@ msgstr "Stundenplan"
|
|
4525 |
|
4526 |
#: app/features/mec/meta_boxes/display_options.php:669
|
4527 |
#: app/features/mec/meta_boxes/display_options.php:732
|
4528 |
-
#: app/libraries/main.php:339 app/libraries/main.php:
|
4529 |
-
#: app/libraries/main.php:
|
4530 |
msgid "Yearly View"
|
4531 |
msgstr "Jahresansicht"
|
4532 |
|
@@ -4537,15 +4605,15 @@ msgstr "Monatliche Kalenderansicht"
|
|
4537 |
|
4538 |
#: app/features/mec/meta_boxes/display_options.php:671
|
4539 |
#: app/features/mec/meta_boxes/display_options.php:781
|
4540 |
-
#: app/libraries/main.php:342 app/libraries/main.php:
|
4541 |
-
#: app/libraries/main.php:
|
4542 |
msgid "Weekly View"
|
4543 |
msgstr "Wochenansicht"
|
4544 |
|
4545 |
#: app/features/mec/meta_boxes/display_options.php:672
|
4546 |
#: app/features/mec/meta_boxes/display_options.php:791
|
4547 |
-
#: app/libraries/main.php:341 app/libraries/main.php:
|
4548 |
-
#: app/libraries/main.php:
|
4549 |
msgid "Daily View"
|
4550 |
msgstr "Tagesansicht"
|
4551 |
|
@@ -5045,10 +5113,10 @@ msgstr "Such Formular anzeigen"
|
|
5045 |
#: app/features/mec/meta_boxes/search_form.php:676
|
5046 |
#: app/features/mec/meta_boxes/search_form.php:782
|
5047 |
#: app/features/mec/settings.php:942 app/features/mec/single.php:344
|
5048 |
-
#: app/features/
|
5049 |
-
#: app/features/speakers.php:
|
5050 |
-
#: app/libraries/main.php:
|
5051 |
-
#: app/modules/speakers/details.php:18
|
5052 |
msgid "Speaker"
|
5053 |
msgstr "Sprecher"
|
5054 |
|
@@ -5064,7 +5132,8 @@ msgstr "Sprecher"
|
|
5064 |
#: app/features/mec/meta_boxes/search_form.php:683
|
5065 |
#: app/features/mec/meta_boxes/search_form.php:789
|
5066 |
#: app/features/mec/settings.php:949 app/features/mec/single.php:353
|
5067 |
-
#: app/features/
|
|
|
5068 |
msgid "Tag"
|
5069 |
msgstr "Schlagwort"
|
5070 |
|
@@ -5156,7 +5225,7 @@ msgid ""
|
|
5156 |
"new menu on the Dashboard > MEC"
|
5157 |
msgstr ""
|
5158 |
|
5159 |
-
#: app/features/mec/modules.php:66 app/libraries/main.php:
|
5160 |
#, fuzzy
|
5161 |
#| msgid "Google Maps Options"
|
5162 |
msgid "Map Options"
|
@@ -5245,7 +5314,7 @@ msgid "Check only if another plugin/theme is loading the Google Maps API"
|
|
5245 |
msgstr ""
|
5246 |
"Checken Sie es nur wenn ein anderes plugin/Thema die Google Maps API lädt."
|
5247 |
|
5248 |
-
#: app/features/mec/modules.php:167 app/libraries/main.php:
|
5249 |
msgid "Export Options"
|
5250 |
msgstr "Export Optionen"
|
5251 |
|
@@ -5260,7 +5329,7 @@ msgstr ""
|
|
5260 |
msgid "Google Calendar"
|
5261 |
msgstr "Google Calendar"
|
5262 |
|
5263 |
-
#: app/features/mec/modules.php:194 app/libraries/main.php:
|
5264 |
#: app/modules/local-time/details.php:45 app/modules/local-time/type1.php:42
|
5265 |
#: app/widgets/single.php:99
|
5266 |
msgid "Local Time"
|
@@ -5272,7 +5341,7 @@ msgstr ""
|
|
5272 |
"Zeige die Eventzeit basierend auf der Ortszeit des Besuchers auf der "
|
5273 |
"Eventseite"
|
5274 |
|
5275 |
-
#: app/features/mec/modules.php:208 app/libraries/main.php:
|
5276 |
#: app/modules/qrcode/details.php:38 app/widgets/single.php:155
|
5277 |
msgid "QR Code"
|
5278 |
msgstr "QR Code"
|
@@ -5283,7 +5352,7 @@ msgstr ""
|
|
5283 |
"Zeigen Sie QR-Code des Events in der Detailseite und in der Buchungsrechnung "
|
5284 |
"an"
|
5285 |
|
5286 |
-
#: app/features/mec/modules.php:226 app/libraries/main.php:
|
5287 |
#: app/modules/weather/darksky.php:15 app/modules/weather/weatherapi.php:16
|
5288 |
msgid "Weather"
|
5289 |
msgstr "Wetter"
|
@@ -5324,7 +5393,7 @@ msgstr ""
|
|
5324 |
msgid "Show social network module"
|
5325 |
msgstr "Modul für Soziale Netzwerke anzeigen"
|
5326 |
|
5327 |
-
#: app/features/mec/modules.php:299 app/libraries/main.php:
|
5328 |
#: app/modules/next-event/details.php:127
|
5329 |
msgid "Next Event"
|
5330 |
msgstr "Nächstes Event"
|
@@ -5938,7 +6007,7 @@ msgstr "Download ICS Datei"
|
|
5938 |
msgid "Add to Google Calendar Links for next 20 occurrences"
|
5939 |
msgstr ""
|
5940 |
|
5941 |
-
#: app/features/mec/notifications.php:158 app/libraries/main.php:
|
5942 |
msgid "Booking Verification"
|
5943 |
msgstr "Verifizierung der Buchung"
|
5944 |
|
@@ -5981,7 +6050,7 @@ msgid "Booking cancellation link."
|
|
5981 |
msgstr "Link zur Stornierung der Buchung"
|
5982 |
|
5983 |
#: app/features/mec/notifications.php:395 app/features/notifications.php:158
|
5984 |
-
#: app/libraries/main.php:
|
5985 |
msgid "Booking Cancellation"
|
5986 |
msgstr "Buchung stornieren"
|
5987 |
|
@@ -6014,7 +6083,7 @@ msgstr "Sendet die Email zum Buchungs "
|
|
6014 |
msgid "Admin booking management link."
|
6015 |
msgstr "Admin-link zur Buchungsverwaltung"
|
6016 |
|
6017 |
-
#: app/features/mec/notifications.php:516 app/libraries/main.php:
|
6018 |
msgid "Admin"
|
6019 |
msgstr "Admin"
|
6020 |
|
@@ -6031,7 +6100,7 @@ msgstr ""
|
|
6031 |
"Informieren, dass eine neue Buchung eingegangen ist."
|
6032 |
|
6033 |
#: app/features/mec/notifications.php:636 app/features/notifications.php:164
|
6034 |
-
#: app/libraries/main.php:
|
6035 |
msgid "Booking Reminder"
|
6036 |
msgstr "Buchungs Erinnerung"
|
6037 |
|
@@ -6061,8 +6130,8 @@ msgstr ""
|
|
6061 |
msgid "only once per hour"
|
6062 |
msgstr "nur einmal pro Tag"
|
6063 |
|
6064 |
-
#: app/features/mec/notifications.php:699 app/libraries/main.php:
|
6065 |
-
#: app/libraries/main.php:
|
6066 |
#, fuzzy
|
6067 |
#| msgid "Hour"
|
6068 |
msgid "Hours"
|
@@ -6077,7 +6146,7 @@ msgid "Please, insert comma to separate reminder hours."
|
|
6077 |
msgstr ""
|
6078 |
|
6079 |
#: app/features/mec/notifications.php:768 app/features/popup/event.php:253
|
6080 |
-
#: app/libraries/main.php:
|
6081 |
msgid "New Event"
|
6082 |
msgstr "Neue Veranstaltung"
|
6083 |
|
@@ -6123,7 +6192,7 @@ msgstr "Veranstaltungsnotiz"
|
|
6123 |
msgid "Admin events management link."
|
6124 |
msgstr "Admin-link zur Veranstaltungsverwaltung"
|
6125 |
|
6126 |
-
#: app/features/mec/notifications.php:858 app/libraries/main.php:
|
6127 |
msgid "User Event Publishing"
|
6128 |
msgstr "Nutzer Event wurde veröffentlicht."
|
6129 |
|
@@ -6143,7 +6212,7 @@ msgstr ""
|
|
6143 |
"Wird nach dem Hinzufügen einer neuen Veranstaltung aus der Frontend-"
|
6144 |
"Übermittlung oder dem Backend versandt."
|
6145 |
|
6146 |
-
#: app/features/mec/notifications.php:940 app/libraries/main.php:
|
6147 |
#, fuzzy
|
6148 |
#| msgid "Notifications"
|
6149 |
msgid "Notifications Per Event"
|
@@ -6327,7 +6396,7 @@ msgid "You can enable/disable Schema scripts"
|
|
6327 |
msgstr ""
|
6328 |
|
6329 |
#: app/features/mec/settings.php:163 app/features/mec/settings.php:173
|
6330 |
-
#: app/libraries/main.php:
|
6331 |
msgid "Weekdays"
|
6332 |
msgstr "Wochentage"
|
6333 |
|
@@ -7123,7 +7192,7 @@ msgstr ""
|
|
7123 |
msgid "Custom Fields"
|
7124 |
msgstr "Benutzerdefinierte Stile"
|
7125 |
|
7126 |
-
#: app/features/mec/single.php:192 app/libraries/main.php:
|
7127 |
msgid "URL"
|
7128 |
msgstr ""
|
7129 |
|
@@ -7205,7 +7274,7 @@ msgstr ""
|
|
7205 |
"bearbeiten und auf der Seite für einzelne Events an."
|
7206 |
|
7207 |
#: app/features/mec/single.php:318 app/libraries/main.php:560
|
7208 |
-
#: app/skins/single.php:166 app/skins/single.php:
|
7209 |
msgid "Related Events"
|
7210 |
msgstr "Vorgeschlagene Veranstaltungen"
|
7211 |
|
@@ -7213,19 +7282,29 @@ msgstr "Vorgeschlagene Veranstaltungen"
|
|
7213 |
msgid "Display related events based on taxonomy in single event page."
|
7214 |
msgstr ""
|
7215 |
|
7216 |
-
#: app/features/mec/single.php:328
|
7217 |
#, fuzzy
|
7218 |
#| msgid "Taxonomies"
|
7219 |
msgid "Select Taxonomies:"
|
7220 |
msgstr "Klassifizierung "
|
7221 |
|
7222 |
-
#: app/features/mec/single.php:360 app/libraries/main.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7223 |
#, fuzzy
|
7224 |
#| msgid "Next Occurrence"
|
7225 |
msgid "Edit Per Occurrences"
|
7226 |
msgstr "Nächstes Event"
|
7227 |
|
7228 |
-
#: app/features/mec/single.php:
|
7229 |
msgid "Ability to edit some event information per occurrence"
|
7230 |
msgstr ""
|
7231 |
|
@@ -7427,7 +7506,7 @@ msgstr ""
|
|
7427 |
msgid "MEC Settings"
|
7428 |
msgstr "MEC - Einstellungen"
|
7429 |
|
7430 |
-
#: app/features/mec/support-page.php:99 app/libraries/main.php:
|
7431 |
#, fuzzy
|
7432 |
#| msgid "Single Event Style"
|
7433 |
msgid "Single Event"
|
@@ -7792,11 +7871,11 @@ msgstr ""
|
|
7792 |
msgid "Create a support ticket"
|
7793 |
msgstr "Erstelle ein Support-Ticket"
|
7794 |
|
7795 |
-
#: app/features/mec/support.php:52 app/libraries/main.php:
|
7796 |
msgid "Styling Options"
|
7797 |
msgstr "Styling-Optionen"
|
7798 |
|
7799 |
-
#: app/features/mec/support.php:59 app/libraries/main.php:
|
7800 |
msgid "Custom CSS"
|
7801 |
msgstr "Custom CSS"
|
7802 |
|
@@ -8060,8 +8139,8 @@ msgstr "z.B.. max@mustermann.com"
|
|
8060 |
msgid "eg. https://webnus.net"
|
8061 |
msgstr "http://webnus.net"
|
8062 |
|
8063 |
-
#: app/features/organizers.php:312 app/libraries/main.php:
|
8064 |
-
#: app/libraries/main.php:
|
8065 |
msgid "Other Organizers"
|
8066 |
msgstr "Andere Veranstalter"
|
8067 |
|
@@ -8139,8 +8218,8 @@ msgstr ""
|
|
8139 |
|
8140 |
#: app/features/popup/event.php:262 app/features/popup/shortcode.php:550
|
8141 |
#: app/modules/booking/steps/form.php:350
|
8142 |
-
#: app/modules/booking/steps/tickets.php:
|
8143 |
-
#: app/skins/countdown/tpl.php:
|
8144 |
msgid "Next"
|
8145 |
msgstr "Weiter"
|
8146 |
|
@@ -8251,7 +8330,7 @@ msgstr "Neuen Shortcode hinzufügen"
|
|
8251 |
msgid "Please %s/%s in order to see your bookings / profile."
|
8252 |
msgstr "Um neue Veranstaltungen einzugeben, bitte %s/%s"
|
8253 |
|
8254 |
-
#: app/features/profile/profile.php:20 app/libraries/main.php:
|
8255 |
msgid "Your booking already canceled!"
|
8256 |
msgstr "Ihre Buchung wurde bereits storniert."
|
8257 |
|
@@ -8259,11 +8338,11 @@ msgstr "Ihre Buchung wurde bereits storniert."
|
|
8259 |
msgid "#"
|
8260 |
msgstr ""
|
8261 |
|
8262 |
-
#: app/features/profile/profile.php:61 app/libraries/main.php:
|
8263 |
msgid "Status"
|
8264 |
msgstr ""
|
8265 |
|
8266 |
-
#: app/features/profile/profile.php:64 app/libraries/main.php:
|
8267 |
msgid "Attendees"
|
8268 |
msgstr "Teilnehmer"
|
8269 |
|
@@ -8323,12 +8402,12 @@ msgstr "Suche %s"
|
|
8323 |
msgid "No search result."
|
8324 |
msgstr "Kein Suchergebnis"
|
8325 |
|
8326 |
-
#: app/features/search_bar/search_result.php:12 app/libraries/main.php:
|
8327 |
-
#: app/libraries/main.php:
|
8328 |
#: app/libraries/render.php:518 app/libraries/render.php:838
|
8329 |
#: app/modules/local-time/details.php:50 app/modules/local-time/type1.php:45
|
8330 |
#: app/modules/local-time/type2.php:47 app/modules/local-time/type3.php:45
|
8331 |
-
#: app/modules/next-event/details.php:145 app/skins/single.php:
|
8332 |
#: app/skins/single/default.php:124 app/skins/single/default.php:358
|
8333 |
#: app/skins/single/m1.php:46 app/skins/single/modern.php:222
|
8334 |
#, fuzzy
|
@@ -8354,7 +8433,7 @@ msgid "Insert speaker email address."
|
|
8354 |
msgstr "Veranstalter Email-Adresse hinzufügen"
|
8355 |
|
8356 |
#: app/features/speakers.php:135 app/features/speakers.php:208
|
8357 |
-
#: app/skins/single.php:
|
8358 |
#: app/skins/single/default.php:202 app/skins/single/default.php:268
|
8359 |
#: app/skins/single/default.php:435 app/skins/single/default.php:501
|
8360 |
#: app/skins/single/m1.php:126 app/skins/single/m1.php:180
|
@@ -8431,9 +8510,9 @@ msgid ""
|
|
8431 |
"section and speaker widget section!"
|
8432 |
msgstr ""
|
8433 |
|
8434 |
-
#: app/features/wc.php:
|
8435 |
-
#: app/libraries/notifications.php:
|
8436 |
-
#: app/libraries/notifications.php:
|
8437 |
#, php-format
|
8438 |
msgid "%s to %s"
|
8439 |
msgstr "%s zu %s"
|
@@ -8477,9 +8556,9 @@ msgstr ""
|
|
8477 |
msgid "day"
|
8478 |
msgstr "Tag"
|
8479 |
|
8480 |
-
#: app/libraries/factory.php:377 app/modules/countdown/details.php:
|
8481 |
-
#: app/skins/available_spot/tpl.php:147 app/skins/countdown/tpl.php:
|
8482 |
-
#: app/skins/countdown/tpl.php:
|
8483 |
msgid "days"
|
8484 |
msgstr "Tage"
|
8485 |
|
@@ -8487,9 +8566,9 @@ msgstr "Tage"
|
|
8487 |
msgid "hour"
|
8488 |
msgstr "Stunde"
|
8489 |
|
8490 |
-
#: app/libraries/factory.php:379 app/modules/countdown/details.php:
|
8491 |
-
#: app/skins/available_spot/tpl.php:151 app/skins/countdown/tpl.php:
|
8492 |
-
#: app/skins/countdown/tpl.php:
|
8493 |
msgid "hours"
|
8494 |
msgstr "Stunden"
|
8495 |
|
@@ -8497,9 +8576,9 @@ msgstr "Stunden"
|
|
8497 |
msgid "minute"
|
8498 |
msgstr "Minute"
|
8499 |
|
8500 |
-
#: app/libraries/factory.php:381 app/modules/countdown/details.php:
|
8501 |
-
#: app/skins/available_spot/tpl.php:155 app/skins/countdown/tpl.php:
|
8502 |
-
#: app/skins/countdown/tpl.php:
|
8503 |
msgid "minutes"
|
8504 |
msgstr "Minuten"
|
8505 |
|
@@ -8507,9 +8586,9 @@ msgstr "Minuten"
|
|
8507 |
msgid "second"
|
8508 |
msgstr "Sekunde"
|
8509 |
|
8510 |
-
#: app/libraries/factory.php:383 app/modules/countdown/details.php:
|
8511 |
-
#: app/skins/available_spot/tpl.php:159 app/skins/countdown/tpl.php:
|
8512 |
-
#: app/skins/countdown/tpl.php:
|
8513 |
msgid "seconds"
|
8514 |
msgstr "Sekunden"
|
8515 |
|
@@ -8527,33 +8606,33 @@ msgstr ""
|
|
8527 |
"Eine Vorschau kann nicht angezeit werden, da es sich um einen geschützen "
|
8528 |
"Beitrag handelt."
|
8529 |
|
8530 |
-
#: app/libraries/main.php:337 app/libraries/main.php:
|
8531 |
-
#: app/libraries/main.php:
|
8532 |
msgid "Agenda View"
|
8533 |
msgstr "Agendaansicht"
|
8534 |
|
8535 |
-
#: app/libraries/main.php:338 app/libraries/main.php:
|
8536 |
-
#: app/libraries/main.php:
|
8537 |
msgid "Full Calendar"
|
8538 |
msgstr "Ganzer Kalender"
|
8539 |
|
8540 |
-
#: app/libraries/main.php:340 app/libraries/main.php:
|
8541 |
-
#: app/libraries/main.php:
|
8542 |
msgid "Calendar/Monthly View"
|
8543 |
msgstr "Kalender-/Monatsansicht"
|
8544 |
|
8545 |
-
#: app/libraries/main.php:343 app/libraries/main.php:
|
8546 |
-
#: app/libraries/main.php:
|
8547 |
msgid "Timetable View"
|
8548 |
msgstr "Stundenplan"
|
8549 |
|
8550 |
-
#: app/libraries/main.php:344 app/libraries/main.php:
|
8551 |
-
#: app/libraries/main.php:
|
8552 |
msgid "Masonry View"
|
8553 |
msgstr "Kachel Ansicht"
|
8554 |
|
8555 |
-
#: app/libraries/main.php:345 app/libraries/main.php:
|
8556 |
-
#: app/libraries/main.php:
|
8557 |
msgid "Map View"
|
8558 |
msgstr "Kartenansicht"
|
8559 |
|
@@ -8583,38 +8662,38 @@ msgstr "Slideransicht"
|
|
8583 |
msgid "Timeline View"
|
8584 |
msgstr "Stundenplan"
|
8585 |
|
8586 |
-
#: app/libraries/main.php:390 app/libraries/main.php:
|
8587 |
-
#: app/libraries/main.php:
|
8588 |
msgid "SU"
|
8589 |
msgstr "SO"
|
8590 |
|
8591 |
-
#: app/libraries/main.php:391 app/libraries/main.php:
|
8592 |
-
#: app/libraries/main.php:
|
8593 |
msgid "MO"
|
8594 |
msgstr "MO"
|
8595 |
|
8596 |
-
#: app/libraries/main.php:392 app/libraries/main.php:
|
8597 |
-
#: app/libraries/main.php:
|
8598 |
msgid "TU"
|
8599 |
msgstr "DI"
|
8600 |
|
8601 |
-
#: app/libraries/main.php:393 app/libraries/main.php:
|
8602 |
-
#: app/libraries/main.php:
|
8603 |
msgid "WE"
|
8604 |
msgstr "MI"
|
8605 |
|
8606 |
-
#: app/libraries/main.php:394 app/libraries/main.php:
|
8607 |
-
#: app/libraries/main.php:
|
8608 |
msgid "TH"
|
8609 |
msgstr "DO"
|
8610 |
|
8611 |
-
#: app/libraries/main.php:395 app/libraries/main.php:
|
8612 |
-
#: app/libraries/main.php:
|
8613 |
msgid "FR"
|
8614 |
msgstr "FR"
|
8615 |
|
8616 |
-
#: app/libraries/main.php:396 app/libraries/main.php:
|
8617 |
-
#: app/libraries/main.php:
|
8618 |
msgid "SA"
|
8619 |
msgstr "SA"
|
8620 |
|
@@ -8628,17 +8707,17 @@ msgstr "Bild hochladen/hinzufügen"
|
|
8628 |
msgid "Additional Locations"
|
8629 |
msgstr "Zusätzliche Locations"
|
8630 |
|
8631 |
-
#: app/libraries/main.php:
|
8632 |
#, fuzzy
|
8633 |
#| msgid "Social Module : "
|
8634 |
msgid "Modules"
|
8635 |
msgstr "Social Modul:"
|
8636 |
|
8637 |
-
#: app/libraries/main.php:
|
8638 |
msgid "New Addons For MEC! Now Customize MEC in Elementor"
|
8639 |
msgstr ""
|
8640 |
|
8641 |
-
#: app/libraries/main.php:
|
8642 |
msgid ""
|
8643 |
"The time has come at last, and the new practical add-ons for MEC have been "
|
8644 |
"released. This is a revolution in the world of Event Calendars. We have "
|
@@ -8646,427 +8725,427 @@ msgid ""
|
|
8646 |
"below:"
|
8647 |
msgstr ""
|
8648 |
|
8649 |
-
#: app/libraries/main.php:
|
8650 |
msgid ""
|
8651 |
"<strong>WooCommerce Integration:</strong> You can now purchase ticket (as "
|
8652 |
"products) and Woo products at the same time."
|
8653 |
msgstr ""
|
8654 |
|
8655 |
-
#: app/libraries/main.php:
|
8656 |
msgid ""
|
8657 |
"<strong>Event API:</strong> display your events (shortcodes/single event) on "
|
8658 |
"other websites without MEC. Use JSON output features to make your Apps "
|
8659 |
"compatible with MEC."
|
8660 |
msgstr ""
|
8661 |
|
8662 |
-
#: app/libraries/main.php:
|
8663 |
msgid ""
|
8664 |
"<strong>Multisite Event Sync:</strong> Sync events between your subsites and "
|
8665 |
"main websites. Changes in the main one will be inherited by the subsites. "
|
8666 |
"you can set these up in the admin panel."
|
8667 |
msgstr ""
|
8668 |
|
8669 |
-
#: app/libraries/main.php:
|
8670 |
msgid ""
|
8671 |
"<strong>User Dashboard:</strong> Create exclusive pages for users. These "
|
8672 |
"pages can contain ticket purchase information, information about registered "
|
8673 |
"events. Users can now log in to purchase tickets."
|
8674 |
msgstr ""
|
8675 |
|
8676 |
-
#: app/libraries/main.php:
|
8677 |
msgid "find out more"
|
8678 |
msgstr ""
|
8679 |
|
8680 |
-
#: app/libraries/main.php:
|
8681 |
msgid "Events at this location"
|
8682 |
msgstr "Veranstaltungen an diesem Ort "
|
8683 |
|
8684 |
-
#: app/libraries/main.php:
|
8685 |
msgid "Event at this location"
|
8686 |
msgstr "Veranstaltung an diesem Ort "
|
8687 |
|
8688 |
-
#: app/libraries/main.php:
|
8689 |
msgid "Facebook"
|
8690 |
msgstr "Facebook"
|
8691 |
|
8692 |
-
#: app/libraries/main.php:
|
8693 |
msgid "Twitter"
|
8694 |
msgstr "Twitter"
|
8695 |
|
8696 |
-
#: app/libraries/main.php:
|
8697 |
msgid "Linkedin"
|
8698 |
msgstr "Linkedin"
|
8699 |
|
8700 |
-
#: app/libraries/main.php:
|
8701 |
msgid "VK"
|
8702 |
msgstr ""
|
8703 |
|
8704 |
-
#: app/libraries/main.php:
|
8705 |
msgid "Tumblr"
|
8706 |
msgstr ""
|
8707 |
|
8708 |
-
#: app/libraries/main.php:
|
8709 |
msgid "Pinterest"
|
8710 |
msgstr ""
|
8711 |
|
8712 |
-
#: app/libraries/main.php:
|
8713 |
msgid "Flipboard"
|
8714 |
msgstr ""
|
8715 |
|
8716 |
-
#: app/libraries/main.php:
|
8717 |
#, fuzzy
|
8718 |
#| msgid "Tickets"
|
8719 |
msgid "GetPocket"
|
8720 |
msgstr "Tickets"
|
8721 |
|
8722 |
-
#: app/libraries/main.php:
|
8723 |
msgid "Reddit"
|
8724 |
msgstr ""
|
8725 |
|
8726 |
-
#: app/libraries/main.php:
|
8727 |
msgid "WhatsApp"
|
8728 |
msgstr ""
|
8729 |
|
8730 |
-
#: app/libraries/main.php:
|
8731 |
msgid "Telegram"
|
8732 |
msgstr ""
|
8733 |
|
8734 |
-
#: app/libraries/main.php:
|
8735 |
msgid "Share on Facebook"
|
8736 |
msgstr "Teilen auf Facebook"
|
8737 |
|
8738 |
-
#: app/libraries/main.php:
|
8739 |
msgid "Tweet"
|
8740 |
msgstr "Tweet"
|
8741 |
|
8742 |
-
#: app/libraries/main.php:
|
8743 |
#, fuzzy
|
8744 |
#| msgid "Share on Facebook"
|
8745 |
msgid "Share on Tumblr"
|
8746 |
msgstr "Teilen auf Facebook"
|
8747 |
|
8748 |
-
#: app/libraries/main.php:
|
8749 |
msgid "Share on Pinterest"
|
8750 |
msgstr ""
|
8751 |
|
8752 |
-
#: app/libraries/main.php:
|
8753 |
#, fuzzy
|
8754 |
#| msgid "Share on Facebook"
|
8755 |
msgid "Share on Flipboard"
|
8756 |
msgstr "Teilen auf Facebook"
|
8757 |
|
8758 |
-
#: app/libraries/main.php:
|
8759 |
#, fuzzy
|
8760 |
#| msgid "Share on Facebook"
|
8761 |
msgid "Share on GetPocket"
|
8762 |
msgstr "Teilen auf Facebook"
|
8763 |
|
8764 |
-
#: app/libraries/main.php:
|
8765 |
#, fuzzy
|
8766 |
#| msgid "Share on Facebook"
|
8767 |
msgid "Share on Reddit"
|
8768 |
msgstr "Teilen auf Facebook"
|
8769 |
|
8770 |
-
#: app/libraries/main.php:
|
8771 |
msgid "Share on Telegram"
|
8772 |
msgstr ""
|
8773 |
|
8774 |
-
#: app/libraries/main.php:
|
8775 |
msgid "Share on WhatsApp"
|
8776 |
msgstr ""
|
8777 |
|
8778 |
-
#: app/libraries/main.php:
|
8779 |
#, fuzzy
|
8780 |
#| msgid "Shortcode"
|
8781 |
msgid "Custom Shortcode"
|
8782 |
msgstr "Shortcode"
|
8783 |
|
8784 |
-
#: app/libraries/main.php:
|
8785 |
msgid "Your booking already verified!"
|
8786 |
msgstr "Ihre Buchung wurde bereits verifiziert."
|
8787 |
|
8788 |
-
#: app/libraries/main.php:
|
8789 |
msgid "Your booking successfully verified."
|
8790 |
msgstr "Ihre Buchung wurde erfolgreich verifiziert."
|
8791 |
|
8792 |
-
#: app/libraries/main.php:
|
8793 |
msgid "Your booking cannot verify!"
|
8794 |
msgstr "Ihre Buchung kann nicht verifiziert werden!"
|
8795 |
|
8796 |
-
#: app/libraries/main.php:
|
8797 |
#, fuzzy
|
8798 |
#| msgid "The event is finished."
|
8799 |
msgid "The event is already finished!"
|
8800 |
msgstr "Das Event ist beendet"
|
8801 |
|
8802 |
-
#: app/libraries/main.php:
|
8803 |
msgid "The cancelation window is passed."
|
8804 |
msgstr ""
|
8805 |
|
8806 |
-
#: app/libraries/main.php:
|
8807 |
msgid "Your booking successfully canceled."
|
8808 |
msgstr "Ihre Buchung wurde erfolgreich storniert."
|
8809 |
|
8810 |
-
#: app/libraries/main.php:
|
8811 |
msgid "Your booking cannot be canceled."
|
8812 |
msgstr "Ihre Buchung kann nicht storniert werden."
|
8813 |
|
8814 |
-
#: app/libraries/main.php:
|
8815 |
msgid "You canceled the payment successfully."
|
8816 |
msgstr "Sie haben die Zahlung erfolgreich storniert."
|
8817 |
|
8818 |
-
#: app/libraries/main.php:
|
8819 |
msgid "You returned from payment gateway successfully."
|
8820 |
msgstr "Sie sind vom Bezahlungs-Gateway erfolgreich zurückgekehrt."
|
8821 |
|
8822 |
-
#: app/libraries/main.php:
|
8823 |
msgid "Cannot find the invoice!"
|
8824 |
msgstr "Die Buchung kann nicht gefunden werden."
|
8825 |
|
8826 |
-
#: app/libraries/main.php:
|
8827 |
msgid "Invoice is invalid."
|
8828 |
msgstr "Die Buchung ist ungültig."
|
8829 |
|
8830 |
-
#: app/libraries/main.php:
|
8831 |
msgid ""
|
8832 |
"Your booking still is not confirmed. You can download it after confirmation!"
|
8833 |
msgstr ""
|
8834 |
|
8835 |
-
#: app/libraries/main.php:
|
8836 |
msgid "Booking Not Confirmed."
|
8837 |
msgstr "Die Buchung ist nicht Bestätigt."
|
8838 |
|
8839 |
-
#: app/libraries/main.php:
|
8840 |
msgid "Cannot find the booking!"
|
8841 |
msgstr "Die Buchung kann nicht gefunden werden!"
|
8842 |
|
8843 |
-
#: app/libraries/main.php:
|
8844 |
msgid "Booking is invalid."
|
8845 |
msgstr "Buchung ist ungültig."
|
8846 |
|
8847 |
-
#: app/libraries/main.php:
|
8848 |
#, php-format
|
8849 |
msgid "%s Invoice"
|
8850 |
msgstr "% s Rechnung"
|
8851 |
|
8852 |
-
#: app/libraries/main.php:
|
8853 |
#, fuzzy
|
8854 |
#| msgid "Date And Time"
|
8855 |
msgid "Date & Time"
|
8856 |
msgstr "Datum und Uhrzeit"
|
8857 |
|
8858 |
-
#: app/libraries/main.php:
|
8859 |
#, fuzzy
|
8860 |
#| msgid "Booking Price"
|
8861 |
msgid "Booking Fields"
|
8862 |
msgstr "Buchungspreis"
|
8863 |
|
8864 |
-
#: app/libraries/main.php:
|
8865 |
msgid "Billing"
|
8866 |
msgstr "Abrechnung"
|
8867 |
|
8868 |
-
#: app/libraries/main.php:
|
8869 |
#, fuzzy
|
8870 |
#| msgid "Coupon"
|
8871 |
msgid "Coupon Code"
|
8872 |
msgstr "Gutschein"
|
8873 |
|
8874 |
-
#: app/libraries/main.php:
|
8875 |
msgid "Total"
|
8876 |
msgstr "Gesamt"
|
8877 |
|
8878 |
-
#: app/libraries/main.php:
|
8879 |
msgid "Payment"
|
8880 |
msgstr "Bezahlung"
|
8881 |
|
8882 |
-
#: app/libraries/main.php:
|
8883 |
msgid "Gateway"
|
8884 |
msgstr "Gateway"
|
8885 |
|
8886 |
-
#: app/libraries/main.php:
|
8887 |
msgid "Payment Time"
|
8888 |
msgstr "Bezahlung "
|
8889 |
|
8890 |
-
#: app/libraries/main.php:
|
8891 |
msgid "Request is not valid."
|
8892 |
msgstr "Die Anfrage ist ungültig!"
|
8893 |
|
8894 |
-
#: app/libraries/main.php:
|
8895 |
msgid "iCal export stopped!"
|
8896 |
msgstr "iCal Export wurde unterbrochen!"
|
8897 |
|
8898 |
-
#: app/libraries/main.php:
|
8899 |
-
#: app/libraries/main.php:
|
8900 |
-
#: app/libraries/main.php:
|
8901 |
-
#: app/libraries/main.php:
|
8902 |
-
#: app/libraries/main.php:
|
8903 |
-
#: app/libraries/main.php:
|
8904 |
-
#: app/libraries/main.php:
|
8905 |
-
#: app/libraries/main.php:
|
8906 |
msgid "Sort"
|
8907 |
msgstr "Sortieren"
|
8908 |
|
8909 |
-
#: app/libraries/main.php:
|
8910 |
-
#: app/libraries/main.php:
|
8911 |
-
#: app/libraries/main.php:
|
8912 |
-
#: app/libraries/main.php:
|
8913 |
-
#: app/libraries/main.php:
|
8914 |
-
#: app/libraries/main.php:
|
8915 |
-
#: app/libraries/main.php:
|
8916 |
msgid "Required Field"
|
8917 |
msgstr "Pflichtfeld"
|
8918 |
|
8919 |
-
#: app/libraries/main.php:
|
8920 |
-
#: app/libraries/main.php:
|
8921 |
-
#: app/libraries/main.php:
|
8922 |
-
#: app/libraries/main.php:
|
8923 |
-
#: app/libraries/main.php:
|
8924 |
-
#: app/libraries/main.php:
|
8925 |
-
#: app/libraries/main.php:
|
8926 |
msgid "Insert a label for this field"
|
8927 |
msgstr "Geben Sie eine Bezeichnung (Label) für dieses Feld ein."
|
8928 |
|
8929 |
-
#: app/libraries/main.php:
|
8930 |
msgid "HTML and shortcode are allowed."
|
8931 |
msgstr "HTML und shortcodes sind erlaubt."
|
8932 |
|
8933 |
-
#: app/libraries/main.php:
|
8934 |
-
#: app/libraries/main.php:
|
8935 |
msgid "Option"
|
8936 |
msgstr "Option"
|
8937 |
|
8938 |
-
#: app/libraries/main.php:
|
8939 |
#, php-format
|
8940 |
msgid "Instead of %s, the page title with a link will be show."
|
8941 |
msgstr "Anstelle von %s, wird der Seitentitel mit einem Link gezeigt"
|
8942 |
|
8943 |
-
#: app/libraries/main.php:
|
8944 |
msgid "Agreement Page"
|
8945 |
msgstr "Zustimmungsseite"
|
8946 |
|
8947 |
-
#: app/libraries/main.php:
|
8948 |
msgid "Checked by default"
|
8949 |
msgstr ""
|
8950 |
|
8951 |
-
#: app/libraries/main.php:
|
8952 |
msgid "Unchecked by default"
|
8953 |
msgstr ""
|
8954 |
|
8955 |
-
#: app/libraries/main.php:
|
8956 |
msgid "Insert a label for this option"
|
8957 |
msgstr "Ein neues Label für diese Option einfügen"
|
8958 |
|
8959 |
-
#: app/libraries/main.php:
|
8960 |
msgid "Free"
|
8961 |
msgstr "kostenfrei"
|
8962 |
|
8963 |
-
#: app/libraries/main.php:
|
8964 |
msgid "M.E. Calender"
|
8965 |
msgstr "M.E. Calender"
|
8966 |
|
8967 |
-
#: app/libraries/main.php:
|
8968 |
#, php-format
|
8969 |
msgid "Copy of %s"
|
8970 |
msgstr "Kopie von %s"
|
8971 |
|
8972 |
-
#: app/libraries/main.php:
|
8973 |
msgid "Booked an event."
|
8974 |
msgstr "Eine Veranstaltung wurde gebucht."
|
8975 |
|
8976 |
-
#: app/libraries/main.php:
|
8977 |
#, php-format
|
8978 |
msgid "%s booked %s event."
|
8979 |
msgstr "%s gebuchtes %s Event"
|
8980 |
|
8981 |
-
#: app/libraries/main.php:
|
8982 |
msgid "Taxonomies"
|
8983 |
msgstr "Klassifizierung "
|
8984 |
|
8985 |
-
#: app/libraries/main.php:
|
8986 |
msgid "Category Plural Label"
|
8987 |
msgstr "Kategorien"
|
8988 |
|
8989 |
-
#: app/libraries/main.php:
|
8990 |
msgid "Category Singular Label"
|
8991 |
msgstr "Kategorie"
|
8992 |
|
8993 |
-
#: app/libraries/main.php:
|
8994 |
msgid "Label Plural Label"
|
8995 |
msgstr "Labels"
|
8996 |
|
8997 |
-
#: app/libraries/main.php:
|
8998 |
msgid "Label Singular Label"
|
8999 |
msgstr "Label"
|
9000 |
|
9001 |
-
#: app/libraries/main.php:
|
9002 |
msgid "label"
|
9003 |
msgstr "label"
|
9004 |
|
9005 |
-
#: app/libraries/main.php:
|
9006 |
msgid "Location Plural Label"
|
9007 |
msgstr "Veranstaltungsorte"
|
9008 |
|
9009 |
-
#: app/libraries/main.php:
|
9010 |
msgid "Location Singular Label"
|
9011 |
msgstr "Veranstaltungsort"
|
9012 |
|
9013 |
-
#: app/libraries/main.php:
|
9014 |
msgid "Organizer Plural Label"
|
9015 |
msgstr "Veranstalter"
|
9016 |
|
9017 |
-
#: app/libraries/main.php:
|
9018 |
msgid "Organizer Singular Label"
|
9019 |
msgstr "Veranstalter"
|
9020 |
|
9021 |
-
#: app/libraries/main.php:
|
9022 |
#, fuzzy
|
9023 |
#| msgid "Label Plural Label"
|
9024 |
msgid "Speaker Plural Label"
|
9025 |
msgstr "Labels"
|
9026 |
|
9027 |
-
#: app/libraries/main.php:
|
9028 |
#, fuzzy
|
9029 |
#| msgid "Label Singular Label"
|
9030 |
msgid "Speaker Singular Label"
|
9031 |
msgstr "Label"
|
9032 |
|
9033 |
-
#: app/libraries/main.php:
|
9034 |
msgid "Sunday abbreviation"
|
9035 |
msgstr "Sonntag Abkürzung"
|
9036 |
|
9037 |
-
#: app/libraries/main.php:
|
9038 |
msgid "Monday abbreviation"
|
9039 |
msgstr "Montag Abkürzung"
|
9040 |
|
9041 |
-
#: app/libraries/main.php:
|
9042 |
msgid "Tuesday abbreviation"
|
9043 |
msgstr "Dienstag Abkürzung"
|
9044 |
|
9045 |
-
#: app/libraries/main.php:
|
9046 |
msgid "Wednesday abbreviation"
|
9047 |
msgstr "Mittwoch Abkürzung"
|
9048 |
|
9049 |
-
#: app/libraries/main.php:
|
9050 |
msgid "Thursday abbreviation"
|
9051 |
msgstr "Donnerstag Abkürzung"
|
9052 |
|
9053 |
-
#: app/libraries/main.php:
|
9054 |
msgid "Friday abbreviation"
|
9055 |
msgstr "Freitag Abkürzung"
|
9056 |
|
9057 |
-
#: app/libraries/main.php:
|
9058 |
msgid "Saturday abbreviation"
|
9059 |
msgstr "Samstag Abkürzung "
|
9060 |
|
9061 |
-
#: app/libraries/main.php:
|
9062 |
msgid "Others"
|
9063 |
msgstr "Andere"
|
9064 |
|
9065 |
-
#: app/libraries/main.php:
|
9066 |
msgid "Booking Success Message"
|
9067 |
msgstr "Buchung erfolgreich Mitteilung"
|
9068 |
|
9069 |
-
#: app/libraries/main.php:
|
9070 |
#, fuzzy
|
9071 |
#| msgid ""
|
9072 |
#| "Thanks for your booking. Your tickets booked, booking verification might "
|
@@ -9078,55 +9157,55 @@ msgstr ""
|
|
9078 |
"Vielen Dank für Ihre Buchung. Für die gebuchten Tickets ist ggf. eine "
|
9079 |
"Bestätigung durch Sie erforderlich. Bitte überprüfen Sie Ihre Emails."
|
9080 |
|
9081 |
-
#: app/libraries/main.php:
|
9082 |
#, fuzzy
|
9083 |
#| msgid "Booking Success Message"
|
9084 |
msgid "Booking Restriction Message 1"
|
9085 |
msgstr "Buchung erfolgreich Mitteilung"
|
9086 |
|
9087 |
-
#: app/libraries/main.php:
|
9088 |
#, php-format
|
9089 |
msgid ""
|
9090 |
"You selected %s tickets to book but maximum number of tikets per user is %s "
|
9091 |
"tickets."
|
9092 |
msgstr ""
|
9093 |
|
9094 |
-
#: app/libraries/main.php:
|
9095 |
#, fuzzy
|
9096 |
#| msgid "Booking Success Message"
|
9097 |
msgid "Booking Restriction Message 2"
|
9098 |
msgstr "Buchung erfolgreich Mitteilung"
|
9099 |
|
9100 |
-
#: app/libraries/main.php:
|
9101 |
#, php-format
|
9102 |
msgid ""
|
9103 |
"You booked %s tickets till now but maximum number of tickets per user is %s "
|
9104 |
"tickets."
|
9105 |
msgstr ""
|
9106 |
|
9107 |
-
#: app/libraries/main.php:
|
9108 |
#, fuzzy
|
9109 |
#| msgid "Booking Success Message"
|
9110 |
msgid "Booking IP Restriction Message"
|
9111 |
msgstr "Buchung erfolgreich Mitteilung"
|
9112 |
|
9113 |
-
#: app/libraries/main.php:
|
9114 |
#, php-format
|
9115 |
msgid "Maximum allowed number of tickets that you can book is %s."
|
9116 |
msgstr ""
|
9117 |
|
9118 |
-
#: app/libraries/main.php:
|
9119 |
#: app/widgets/single.php:131
|
9120 |
msgid "Register Button"
|
9121 |
msgstr "Register Button"
|
9122 |
|
9123 |
-
#: app/libraries/main.php:
|
9124 |
#: app/skins/available_spot/tpl.php:208 app/skins/carousel/render.php:106
|
9125 |
#: app/skins/carousel/render.php:144 app/skins/grid/render.php:101
|
9126 |
#: app/skins/grid/render.php:159 app/skins/grid/render.php:217
|
9127 |
#: app/skins/grid/render.php:238 app/skins/list/render.php:70
|
9128 |
#: app/skins/list/render.php:164 app/skins/masonry/render.php:149
|
9129 |
-
#: app/skins/single.php:
|
9130 |
#: app/skins/single/default.php:287 app/skins/single/default.php:289
|
9131 |
#: app/skins/single/default.php:520 app/skins/single/default.php:522
|
9132 |
#: app/skins/single/m1.php:143 app/skins/single/m1.php:145
|
@@ -9138,214 +9217,214 @@ msgstr "Register Button"
|
|
9138 |
msgid "REGISTER"
|
9139 |
msgstr "ANMELDEN"
|
9140 |
|
9141 |
-
#: app/libraries/main.php:
|
9142 |
msgid "View Detail Button"
|
9143 |
msgstr "Ansicht Detail Button"
|
9144 |
|
9145 |
-
#: app/libraries/main.php:
|
9146 |
#: app/skins/carousel/render.php:106 app/skins/carousel/render.php:144
|
9147 |
#: app/skins/grid/render.php:101 app/skins/grid/render.php:159
|
9148 |
#: app/skins/grid/render.php:217 app/skins/grid/render.php:238
|
9149 |
#: app/skins/list/render.php:70 app/skins/list/render.php:164
|
9150 |
-
#: app/skins/masonry/render.php:149 app/skins/single.php:
|
9151 |
#: app/skins/slider/render.php:70 app/skins/slider/render.php:93
|
9152 |
#: app/skins/slider/render.php:115 app/skins/slider/render.php:138
|
9153 |
#: app/skins/slider/render.php:172
|
9154 |
msgid "View Detail"
|
9155 |
msgstr "Details "
|
9156 |
|
9157 |
-
#: app/libraries/main.php:
|
9158 |
msgid "Event Detail Button"
|
9159 |
msgstr "Event Detail Button"
|
9160 |
|
9161 |
-
#: app/libraries/main.php:
|
9162 |
msgid "Event Detail"
|
9163 |
msgstr "Veranstaltungsdetails"
|
9164 |
|
9165 |
-
#: app/libraries/main.php:
|
9166 |
msgid "More Info Link"
|
9167 |
msgstr "Link Mehr Informationen"
|
9168 |
|
9169 |
-
#: app/libraries/main.php:
|
9170 |
msgid "Ticket (Singular)"
|
9171 |
msgstr "Ticket"
|
9172 |
|
9173 |
-
#: app/libraries/main.php:
|
9174 |
msgid "Tickets (Plural)"
|
9175 |
msgstr "Tickets"
|
9176 |
|
9177 |
-
#: app/libraries/main.php:
|
9178 |
msgid "EventON"
|
9179 |
msgstr "EventON"
|
9180 |
|
9181 |
-
#: app/libraries/main.php:
|
9182 |
msgid "The Events Calendar"
|
9183 |
msgstr "The Events Calendar"
|
9184 |
|
9185 |
-
#: app/libraries/main.php:
|
9186 |
msgid "Events Schedule WP Plugin"
|
9187 |
msgstr "Event Zeitplan WP-Plugin"
|
9188 |
|
9189 |
-
#: app/libraries/main.php:
|
9190 |
msgid "Calendarize It"
|
9191 |
msgstr ""
|
9192 |
|
9193 |
-
#: app/libraries/main.php:
|
9194 |
#, fuzzy
|
9195 |
#| msgid "No Search Options"
|
9196 |
msgid "Event Espresso"
|
9197 |
msgstr "Keine Suchoptionen"
|
9198 |
|
9199 |
-
#: app/libraries/main.php:
|
9200 |
msgid "Events Manager (Recurring)"
|
9201 |
msgstr "Wiederholende Veranstaltung"
|
9202 |
|
9203 |
-
#: app/libraries/main.php:
|
9204 |
msgid "Events Manager (Single)"
|
9205 |
msgstr "Moderner Event Kalender"
|
9206 |
|
9207 |
-
#: app/libraries/main.php:
|
9208 |
msgid "Pending"
|
9209 |
msgstr "Ausstehend"
|
9210 |
|
9211 |
-
#: app/libraries/main.php:
|
9212 |
msgid "Waiting"
|
9213 |
msgstr "in Bearbeitung"
|
9214 |
|
9215 |
-
#: app/libraries/main.php:
|
9216 |
#, fuzzy
|
9217 |
#| msgid "Sunday"
|
9218 |
msgid "Sun"
|
9219 |
msgstr "Sonntag"
|
9220 |
|
9221 |
-
#: app/libraries/main.php:
|
9222 |
#, fuzzy
|
9223 |
#| msgid "Month"
|
9224 |
msgid "Mon"
|
9225 |
msgstr "Monat "
|
9226 |
|
9227 |
-
#: app/libraries/main.php:
|
9228 |
#, fuzzy
|
9229 |
#| msgid "Tel"
|
9230 |
msgid "Tue"
|
9231 |
msgstr "Tel"
|
9232 |
|
9233 |
-
#: app/libraries/main.php:
|
9234 |
msgid "Wed"
|
9235 |
msgstr ""
|
9236 |
|
9237 |
-
#: app/libraries/main.php:
|
9238 |
msgid "Thu"
|
9239 |
msgstr ""
|
9240 |
|
9241 |
-
#: app/libraries/main.php:
|
9242 |
#, fuzzy
|
9243 |
#| msgid "Friday"
|
9244 |
msgid "Fri"
|
9245 |
msgstr "Freitag"
|
9246 |
|
9247 |
-
#: app/libraries/main.php:
|
9248 |
#, fuzzy
|
9249 |
#| msgid "Start"
|
9250 |
msgid "Sat"
|
9251 |
msgstr "Start"
|
9252 |
|
9253 |
-
#: app/libraries/main.php:
|
9254 |
#: app/libraries/render.php:432
|
9255 |
msgid "Skin controller does not exist."
|
9256 |
msgstr "Skin contoller existiert nicht."
|
9257 |
|
9258 |
-
#: app/libraries/main.php:
|
9259 |
msgid "Sold Out"
|
9260 |
msgstr "Ausgebucht"
|
9261 |
|
9262 |
-
#: app/libraries/main.php:
|
9263 |
msgid "Last Few Tickets"
|
9264 |
msgstr "Nur noch wenige Tickets verfügbar."
|
9265 |
|
9266 |
-
#: app/libraries/main.php:
|
9267 |
#, fuzzy
|
9268 |
#| msgid "minutes"
|
9269 |
msgid "Minutes"
|
9270 |
msgstr "Minuten"
|
9271 |
|
9272 |
-
#: app/libraries/main.php:
|
9273 |
msgid "AM / PM"
|
9274 |
msgstr ""
|
9275 |
|
9276 |
-
#: app/libraries/main.php:
|
9277 |
msgid "AM"
|
9278 |
msgstr "AM"
|
9279 |
|
9280 |
-
#: app/libraries/main.php:
|
9281 |
msgid "PM"
|
9282 |
msgstr "PM"
|
9283 |
|
9284 |
-
#: app/libraries/main.php:
|
9285 |
#, fuzzy
|
9286 |
#| msgid "Loading..."
|
9287 |
msgid "Ongoing..."
|
9288 |
msgstr "Laden…"
|
9289 |
|
9290 |
-
#: app/libraries/main.php:
|
9291 |
#, fuzzy
|
9292 |
#| msgid "Expired Events"
|
9293 |
msgid "Expired!"
|
9294 |
msgstr "Abgelaufene Events"
|
9295 |
|
9296 |
-
#: app/libraries/notifications.php:
|
9297 |
msgid "Please verify your email."
|
9298 |
msgstr "Bitte bestätigen Sie Ihre email."
|
9299 |
|
9300 |
-
#: app/libraries/notifications.php:
|
9301 |
msgid "Your booking is received."
|
9302 |
msgstr "Ihre Buchung ist eingegangen"
|
9303 |
|
9304 |
-
#: app/libraries/notifications.php:
|
9305 |
msgid "Your booking is confirmed."
|
9306 |
msgstr "Ihre Buchung wurde bestätigt."
|
9307 |
|
9308 |
-
#: app/libraries/notifications.php:
|
9309 |
msgid "booking canceled."
|
9310 |
msgstr "Ihre Buchung wurde storniert"
|
9311 |
|
9312 |
-
#: app/libraries/notifications.php:
|
9313 |
msgid "A new booking is received."
|
9314 |
msgstr "Eine neue Buchung ist eingegangen."
|
9315 |
|
9316 |
-
#: app/libraries/notifications.php:
|
9317 |
msgid "A new event is added."
|
9318 |
msgstr "Eine neue Veranstaltung wurde hinzugefügt."
|
9319 |
|
9320 |
-
#: app/libraries/notifications.php:
|
9321 |
msgid "Your event is published."
|
9322 |
msgstr "Die Veranstaltung wurde veröffentlicht."
|
9323 |
|
9324 |
-
#: app/libraries/notifications.php:
|
9325 |
msgid "to"
|
9326 |
msgstr ""
|
9327 |
|
9328 |
-
#: app/libraries/notifications.php:
|
9329 |
msgid "+ Add to Google Calendar"
|
9330 |
msgstr "+ zum Google Calendar hinzufügen"
|
9331 |
|
9332 |
-
#: app/libraries/notifications.php:
|
9333 |
#, fuzzy
|
9334 |
#| msgid "+ iCal export"
|
9335 |
msgid "+ iCal / Outlook export"
|
9336 |
msgstr "+ zu iCal exportieren"
|
9337 |
|
9338 |
-
#: app/libraries/notifications.php:
|
9339 |
#, fuzzy, php-format
|
9340 |
#| msgid "+ Add to Google Calendar"
|
9341 |
msgid "+ %s to Google Calendar"
|
9342 |
msgstr "+ zum Google Calendar hinzufügen"
|
9343 |
|
9344 |
-
#: app/libraries/notifications.php:
|
9345 |
msgid "Yes"
|
9346 |
msgstr "Ja"
|
9347 |
|
9348 |
-
#: app/libraries/notifications.php:
|
9349 |
msgid "No"
|
9350 |
msgstr "Nein"
|
9351 |
|
@@ -9354,10 +9433,16 @@ msgid "Select"
|
|
9354 |
msgstr "Auswählen"
|
9355 |
|
9356 |
#: app/libraries/skins.php:1258 app/libraries/skins.php:1259
|
9357 |
-
#: app/modules/booking/steps/tickets.php:
|
9358 |
msgid "Book Event"
|
9359 |
msgstr "Veranstaltung buchen"
|
9360 |
|
|
|
|
|
|
|
|
|
|
|
|
|
9361 |
#: app/modules/attendees-list/details.php:42
|
9362 |
msgid "Event Attendees"
|
9363 |
msgstr "Event Teilnehmer"
|
@@ -9378,46 +9463,46 @@ msgid_plural "%s tickets"
|
|
9378 |
msgstr[0] "%s tickets"
|
9379 |
msgstr[1] "%s tickets"
|
9380 |
|
9381 |
-
#: app/modules/booking/steps/checkout.php:
|
9382 |
msgid "Checkout"
|
9383 |
msgstr "Zur Kasse gehen"
|
9384 |
|
9385 |
-
#: app/modules/booking/steps/checkout.php:
|
9386 |
#, fuzzy
|
9387 |
#| msgid "Ticket Name"
|
9388 |
msgid "Ticket(s) Name"
|
9389 |
msgstr "Ticket Name"
|
9390 |
|
9391 |
-
#: app/modules/booking/steps/checkout.php:
|
9392 |
msgid "Qty"
|
9393 |
msgstr ""
|
9394 |
|
9395 |
-
#: app/modules/booking/steps/checkout.php:
|
9396 |
#, fuzzy
|
9397 |
#| msgid "Amount"
|
9398 |
msgid "Amout"
|
9399 |
msgstr "Betrag"
|
9400 |
|
9401 |
-
#: app/modules/booking/steps/checkout.php:
|
9402 |
#, fuzzy
|
9403 |
#| msgid "Total"
|
9404 |
msgid "Total Due"
|
9405 |
msgstr "Gesamt"
|
9406 |
|
9407 |
-
#: app/modules/booking/steps/checkout.php:
|
9408 |
msgid "Discount Coupon"
|
9409 |
msgstr "Rabattgutschein"
|
9410 |
|
9411 |
-
#: app/modules/booking/steps/checkout.php:
|
9412 |
msgid "Apply Coupon"
|
9413 |
msgstr "Gutschein verwenden"
|
9414 |
|
9415 |
-
#: app/modules/booking/steps/checkout.php:
|
9416 |
#: app/modules/booking/steps/form.php:349
|
9417 |
msgid "Back"
|
9418 |
msgstr "Zurück"
|
9419 |
|
9420 |
-
#: app/modules/booking/steps/checkout.php:
|
9421 |
msgid "Free Booking"
|
9422 |
msgstr "Kostenlose Buchung"
|
9423 |
|
@@ -9438,44 +9523,45 @@ msgid "Username"
|
|
9438 |
msgstr "API Nutzername"
|
9439 |
|
9440 |
#: app/modules/booking/steps/form.php:350
|
|
|
9441 |
msgid "Add to Cart"
|
9442 |
msgstr "in den Warenkorb legen"
|
9443 |
|
9444 |
-
#: app/modules/booking/steps/tickets.php:
|
9445 |
msgid ""
|
9446 |
"By booking this event you can attend all occurrences. Some of them are "
|
9447 |
"listed below but there might be more."
|
9448 |
msgstr ""
|
9449 |
|
9450 |
-
#: app/modules/booking/steps/tickets.php:
|
9451 |
#, fuzzy
|
9452 |
#| msgid "No user selected!"
|
9453 |
msgid "1 Ticket selected."
|
9454 |
msgstr "Kein Nutzer ausgewählt"
|
9455 |
|
9456 |
-
#: app/modules/booking/steps/tickets.php:
|
9457 |
-
#: app/modules/booking/steps/tickets.php:
|
9458 |
#, php-format
|
9459 |
msgid "Available %s: <span>%s</span>"
|
9460 |
msgstr "Verfügbar %s: <span>%s</span>"
|
9461 |
|
9462 |
-
#: app/modules/booking/steps/tickets.php:
|
9463 |
#, php-format
|
9464 |
msgid "The %s ticket sales has stopped!"
|
9465 |
msgstr ""
|
9466 |
|
9467 |
-
#: app/modules/booking/steps/tickets.php:
|
9468 |
#, php-format
|
9469 |
msgid "The %s ticket is sold out. You can try another ticket or another date."
|
9470 |
msgstr ""
|
9471 |
"Der % s ist am gewählten Termin bereits ausgebucht. Bitte anderes Datum "
|
9472 |
"wählen. "
|
9473 |
|
9474 |
-
#: app/modules/countdown/details.php:
|
9475 |
msgid "The event is finished."
|
9476 |
msgstr "Das Event ist beendet"
|
9477 |
|
9478 |
-
#: app/modules/countdown/details.php:
|
9479 |
msgid "The event is ongoing."
|
9480 |
msgstr "Die Veranstaltung ist im Gange."
|
9481 |
|
@@ -9487,7 +9573,7 @@ msgstr "Adresse von..."
|
|
9487 |
msgid "Get Directions"
|
9488 |
msgstr "Wegbeschreibung"
|
9489 |
|
9490 |
-
#: app/modules/links/details.php:17 app/skins/single.php:
|
9491 |
msgid "Share this event"
|
9492 |
msgstr "Diese Veranstaltung teilen"
|
9493 |
|
@@ -9542,7 +9628,7 @@ msgstr "Nächstes Event"
|
|
9542 |
msgid "Go to occurrence page"
|
9543 |
msgstr "Zum Event"
|
9544 |
|
9545 |
-
#: app/modules/next-event/details.php:139 app/skins/single.php:
|
9546 |
#: app/skins/single/default.php:118 app/skins/single/default.php:352
|
9547 |
#: app/skins/single/m1.php:40 app/skins/single/modern.php:216
|
9548 |
msgid "Time"
|
@@ -9625,8 +9711,8 @@ msgstr "Weitere anzeigen"
|
|
9625 |
msgid "Available Spot(s):"
|
9626 |
msgstr "Verfügbare Spot (s):"
|
9627 |
|
9628 |
-
#: app/skins/carousel/render.php:166 app/skins/countdown/tpl.php:
|
9629 |
-
#: app/skins/countdown/tpl.php:
|
9630 |
#: app/skins/cover/tpl.php:74 app/skins/list/render.php:95
|
9631 |
msgid "EVENT DETAIL"
|
9632 |
msgstr "VERANSTALTUNGSDETAILS"
|
@@ -9635,8 +9721,8 @@ msgstr "VERANSTALTUNGSDETAILS"
|
|
9635 |
msgid "View All Events"
|
9636 |
msgstr "Zeige alle Veranstaltungen"
|
9637 |
|
9638 |
-
#: app/skins/countdown/tpl.php:
|
9639 |
-
#: app/skins/countdown/tpl.php:
|
9640 |
#, php-format
|
9641 |
msgid "%s Upcoming Event"
|
9642 |
msgstr "%s Kommendes Event"
|
@@ -9683,24 +9769,36 @@ msgstr "Veranstaltungen für %s"
|
|
9683 |
msgid "No Events"
|
9684 |
msgstr "Keine Veranstaltungen"
|
9685 |
|
9686 |
-
#: app/skins/single.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9687 |
msgid "Home"
|
9688 |
msgstr ""
|
9689 |
|
9690 |
-
#: app/skins/single.php:
|
9691 |
#: app/skins/single/m1.php:278 app/skins/single/m2.php:199
|
9692 |
#: app/skins/single/modern.php:300
|
9693 |
msgid "Sold out!"
|
9694 |
msgstr "Ausverkauft!"
|
9695 |
|
9696 |
-
#: app/skins/single.php:
|
9697 |
#: app/skins/single/default.php:254 app/skins/single/default.php:487
|
9698 |
#: app/skins/single/m1.php:112 app/skins/single/m2.php:35
|
9699 |
#: app/skins/single/modern.php:58
|
9700 |
msgid "Phone"
|
9701 |
msgstr "Phone"
|
9702 |
|
9703 |
-
#: app/skins/single.php:
|
9704 |
msgid "Speakers:"
|
9705 |
msgstr "Veranstalter"
|
9706 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: ME Calender\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2020-10-07 11:38+0330\n"
|
6 |
+
"PO-Revision-Date: 2020-10-07 11:40+0330\n"
|
7 |
"Last-Translator: Jogon <koenig@kafinanz.de>\n"
|
8 |
"Language-Team: German\n"
|
9 |
"Language: de_DE\n"
|
82 |
msgid "Select Shortcode"
|
83 |
msgstr "Neuen Shortcode hinzufügen"
|
84 |
|
85 |
+
#: app/features/colors.php:50 app/features/fes/form.php:915
|
86 |
#: app/features/mec/settings.php:759
|
87 |
msgid "Event Color"
|
88 |
msgstr "Farbe der Veranstaltung"
|
96 |
#: app/features/contextual.php:55 app/features/mec.php:473
|
97 |
#: app/features/mec/dashboard.php:141 app/features/mec/support.php:20
|
98 |
#: app/features/popup/event.php:60 app/features/popup/shortcode.php:37
|
99 |
+
#: app/libraries/main.php:614
|
100 |
msgid "Settings"
|
101 |
msgstr "Einstellungen"
|
102 |
|
103 |
+
#: app/features/contextual.php:62 app/features/events.php:1617
|
104 |
+
#: app/features/events.php:2478 app/features/mec/booking.php:605
|
105 |
+
#: app/features/mec/booking.php:853 app/features/mec/support.php:29
|
106 |
+
#: app/libraries/main.php:570
|
107 |
msgid "Booking Form"
|
108 |
msgstr "Buchungsformular"
|
109 |
|
129 |
"<iframe width=\"600\" height=\"300\" src=\"https://www.youtube.com/embed/"
|
130 |
"YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
|
131 |
|
132 |
+
#: app/features/contextual.php:70 app/features/events.php:1625
|
133 |
+
#: app/features/mec/booking.php:797 app/features/mec/support-page.php:115
|
134 |
+
#: app/features/mec/support.php:36 app/libraries/main.php:571
|
135 |
msgid "Payment Gateways"
|
136 |
msgstr "Zahlungs-Gateways"
|
137 |
|
147 |
|
148 |
#: app/features/contextual.php:77 app/features/events.php:352
|
149 |
#: app/features/mec/support-page.php:117 app/features/mec/support.php:45
|
150 |
+
#: app/libraries/main.php:762
|
151 |
msgid "Notifications"
|
152 |
msgstr "Benachrichtigungen"
|
153 |
|
266 |
msgstr "Countdown Einstellungsoptionen"
|
267 |
|
268 |
#: app/features/contextual.php:268 app/features/mec/modules.php:269
|
269 |
+
#: app/libraries/main.php:581
|
270 |
msgid "Social Networks"
|
271 |
msgstr "Soziale Netzwerke"
|
272 |
|
287 |
#: app/features/contextual.php:308 app/features/events.php:315
|
288 |
#: app/features/mec/booking.php:96 app/features/mec/notifications.php:36
|
289 |
#: app/features/mec/support-page.php:110 app/features/mec/support-page.php:114
|
290 |
+
#: app/libraries/main.php:565 app/libraries/main.php:594
|
291 |
+
#: app/libraries/main.php:679
|
292 |
msgid "Booking"
|
293 |
msgstr "Buchung / Reservierung"
|
294 |
|
295 |
#: app/features/contextual.php:318 app/features/mec/booking.php:427
|
296 |
+
#: app/features/mec/booking.php:813 app/libraries/main.php:567
|
297 |
msgid "Coupons"
|
298 |
msgstr "Gutscheine"
|
299 |
|
300 |
#: app/features/contextual.php:326 app/features/mec/modules.php:335
|
301 |
+
#: app/libraries/main.php:583
|
302 |
msgid "BuddyPress Integration"
|
303 |
msgstr "Buddy Press Integration"
|
304 |
|
311 |
msgid "MEC Activation"
|
312 |
msgstr "MEC Aktivierung"
|
313 |
|
314 |
+
#: app/features/dlfile.php:121 app/features/events.php:1622
|
315 |
#: app/features/mec/booking.php:347 app/features/mec/settings.php:831
|
316 |
#, fuzzy
|
317 |
#| msgid "Download ICS file"
|
359 |
#: app/features/mec/meta_boxes/display_options.php:1548
|
360 |
#: app/features/mec/meta_boxes/display_options.php:1642
|
361 |
#: app/features/mec/meta_boxes/display_options.php:1715
|
362 |
+
#: app/features/profile/profile.php:55 app/features/wc.php:81
|
363 |
#: app/skins/daily_view/tpl.php:83 app/skins/monthly_view/tpl.php:74
|
364 |
#: app/skins/tile/tpl.php:84 app/skins/yearly_view/tpl.php:72
|
365 |
msgid "Event"
|
396 |
msgid "No events found in Trash!"
|
397 |
msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
|
398 |
|
399 |
+
#: app/features/events.php:192 app/features/events.php:3557
|
400 |
#: app/features/mec/meta_boxes/display_options.php:1420
|
401 |
#: app/features/mec/meta_boxes/search_form.php:31
|
402 |
#: app/features/mec/meta_boxes/search_form.php:101
|
410 |
#: app/features/mec/meta_boxes/search_form.php:654
|
411 |
#: app/features/mec/meta_boxes/search_form.php:760
|
412 |
#: app/features/mec/settings.php:923 app/features/mec/single.php:331
|
413 |
+
#: app/features/mec/single.php:373 app/features/search.php:68
|
414 |
+
#: app/libraries/main.php:6153 app/libraries/main.php:6206
|
415 |
+
#: app/libraries/skins.php:932 app/skins/single.php:992
|
416 |
+
#: app/skins/single/default.php:219 app/skins/single/default.php:452
|
417 |
+
#: app/skins/single/m1.php:196 app/skins/single/m2.php:119
|
418 |
+
#: app/skins/single/modern.php:140
|
419 |
msgid "Category"
|
420 |
msgstr "Kategorie"
|
421 |
|
422 |
+
#: app/features/events.php:193 app/features/events.php:3512
|
423 |
+
#: app/features/fes/form.php:865 app/features/mec.php:461
|
424 |
#: app/features/mec/meta_boxes/filter.php:69
|
425 |
+
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:6152
|
426 |
+
#: app/libraries/main.php:6205
|
427 |
msgid "Categories"
|
428 |
msgstr "Kategorien"
|
429 |
|
505 |
msgid "Date And Time"
|
506 |
msgstr "Datum und Uhrzeit"
|
507 |
|
508 |
+
#: app/features/events.php:343 app/features/fes/form.php:366
|
509 |
msgid "Event Repeating"
|
510 |
msgstr "Wiederholende Veranstaltung"
|
511 |
|
512 |
+
#: app/features/events.php:344 app/features/events.php:1178
|
513 |
#, fuzzy
|
514 |
#| msgid "Event Detail"
|
515 |
msgid "Event Data"
|
516 |
msgstr "Veranstaltungsdetails"
|
517 |
|
518 |
+
#: app/features/events.php:346 app/features/events.php:1360
|
519 |
+
#: app/features/mec/settings.php:789 app/skins/single.php:1385
|
520 |
msgid "Hourly Schedule"
|
521 |
msgstr "Stundenplan"
|
522 |
|
528 |
msgid "Links"
|
529 |
msgstr "Links"
|
530 |
|
531 |
+
#: app/features/events.php:349 app/features/events.php:3559
|
532 |
+
#: app/features/events.php:3748 app/features/ix.php:3748
|
533 |
#: app/features/ix.php:3790
|
534 |
#: app/features/mec/meta_boxes/display_options.php:1423
|
535 |
#: app/features/mec/meta_boxes/search_form.php:46
|
544 |
#: app/features/mec/meta_boxes/search_form.php:669
|
545 |
#: app/features/mec/meta_boxes/search_form.php:775
|
546 |
#: app/features/mec/settings.php:935 app/features/mec/single.php:335
|
547 |
+
#: app/features/mec/single.php:377 app/features/organizers.php:58
|
548 |
+
#: app/features/organizers.php:204 app/features/organizers.php:260
|
549 |
+
#: app/features/organizers.php:262 app/features/organizers.php:271
|
550 |
+
#: app/features/popup/event.php:163 app/features/popup/event.php:172
|
551 |
+
#: app/features/search.php:80 app/libraries/main.php:6159
|
552 |
+
#: app/libraries/main.php:6212 app/libraries/skins.php:984
|
553 |
+
#: app/skins/single.php:1240 app/skins/single/default.php:244
|
554 |
+
#: app/skins/single/default.php:477 app/skins/single/m1.php:102
|
555 |
+
#: app/skins/single/m2.php:25 app/skins/single/modern.php:48
|
556 |
msgid "Organizer"
|
557 |
msgstr "Veranstalter"
|
558 |
|
559 |
+
#: app/features/events.php:350 app/features/events.php:1165
|
560 |
+
#: app/features/fes/form.php:836 app/libraries/main.php:6189
|
561 |
+
#: app/libraries/main.php:6238 app/skins/single.php:1018
|
562 |
#: app/skins/single/default.php:142 app/skins/single/default.php:376
|
563 |
#: app/skins/single/m1.php:61 app/skins/single/modern.php:237
|
564 |
msgid "Cost"
|
570 |
msgid "SEO Schema / Event Status"
|
571 |
msgstr "Am Event Start"
|
572 |
|
573 |
+
#: app/features/events.php:504
|
574 |
msgid "Note for reviewer"
|
575 |
msgstr "Zusätzliche Anmerkungen zum Event "
|
576 |
|
577 |
+
#: app/features/events.php:510
|
578 |
msgid "Guest Data"
|
579 |
msgstr "Gäste Daten"
|
580 |
|
581 |
+
#: app/features/events.php:511 app/features/events.php:2464
|
582 |
+
#: app/features/events.php:4067 app/features/fes.php:236
|
583 |
+
#: app/features/fes/form.php:795 app/features/labels.php:178
|
584 |
#: app/features/mec/booking.php:53 app/features/organizers.php:279
|
585 |
#: app/features/popup/event.php:182 app/features/profile/profile.php:177
|
586 |
+
#: app/libraries/notifications.php:1379 app/modules/booking/steps/form.php:60
|
587 |
msgid "Name"
|
588 |
msgstr "Name"
|
589 |
|
590 |
+
#: app/features/events.php:512 app/features/events.php:2473
|
591 |
+
#: app/features/events.php:2535 app/features/events.php:2624
|
592 |
+
#: app/features/events.php:4070 app/features/fes.php:236
|
593 |
+
#: app/features/fes/form.php:791 app/features/login/login.php:5
|
594 |
#: app/features/mec/booking.php:65 app/features/mec/booking.php:643
|
595 |
#: app/features/mec/booking.php:739 app/features/mec/single.php:191
|
596 |
#: app/features/organizers.php:111 app/features/organizers.php:152
|
597 |
#: app/features/profile/profile.php:180 app/features/speakers.php:127
|
598 |
+
#: app/features/speakers.php:204 app/libraries/main.php:1837
|
599 |
+
#: app/libraries/main.php:1906 app/libraries/main.php:3305
|
600 |
+
#: app/libraries/notifications.php:1380 app/modules/booking/steps/form.php:69
|
601 |
+
#: app/modules/booking/steps/form.php:207 app/skins/single.php:1257
|
602 |
+
#: app/skins/single.php:1316 app/skins/single/default.php:261
|
603 |
#: app/skins/single/default.php:494 app/skins/single/m1.php:119
|
604 |
#: app/skins/single/m2.php:42 app/skins/single/modern.php:65
|
605 |
msgid "Email"
|
606 |
msgstr "E-Mail"
|
607 |
|
608 |
+
#: app/features/events.php:521
|
609 |
msgid ""
|
610 |
"This event is imported from Google calendar so if you modify it, it would "
|
611 |
"overwrite in the next import from Google."
|
612 |
msgstr ""
|
613 |
|
614 |
+
#: app/features/events.php:525 app/features/fes/form.php:278
|
615 |
msgid "Date and Time"
|
616 |
msgstr "Datum und Uhrzeit"
|
617 |
|
618 |
+
#: app/features/events.php:528 app/features/events.php:532
|
619 |
+
#: app/features/events.php:3560 app/features/events.php:3748
|
620 |
+
#: app/features/fes/form.php:282 app/features/fes/form.php:286
|
621 |
#: app/features/ix.php:3748 app/features/ix.php:3790
|
622 |
#: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1333
|
623 |
#: app/features/mec/meta_boxes/display_options.php:52
|
639 |
msgid "Start Date"
|
640 |
msgstr "Start Datum"
|
641 |
|
642 |
+
#: app/features/events.php:547 app/features/events.php:551
|
643 |
+
#: app/features/events.php:3561 app/features/events.php:3748
|
644 |
+
#: app/features/fes/form.php:301 app/features/fes/form.php:305
|
645 |
#: app/features/ix.php:3748 app/features/ix.php:3790
|
646 |
#: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1334
|
647 |
#: app/features/popup/event.php:92
|
648 |
msgid "End Date"
|
649 |
msgstr "Ende Datum"
|
650 |
|
651 |
+
#: app/features/events.php:574 app/features/fes/form.php:319
|
652 |
#: app/features/popup/event.php:109
|
653 |
#, fuzzy
|
654 |
#| msgid "All Day Event"
|
655 |
msgid "All-day Event"
|
656 |
msgstr "Ganztägige Veranstaltung"
|
657 |
|
658 |
+
#: app/features/events.php:584 app/features/fes/form.php:322
|
659 |
msgid "Hide Event Time"
|
660 |
msgstr "Event / Veranstaltungszeit verbergen"
|
661 |
|
662 |
+
#: app/features/events.php:594 app/features/fes/form.php:325
|
663 |
msgid "Hide Event End Time"
|
664 |
msgstr "Ende-Zeit der Veranstaltung verbergen"
|
665 |
|
666 |
+
#: app/features/events.php:599 app/features/events.php:603
|
667 |
+
#: app/features/fes/form.php:329
|
668 |
#, fuzzy
|
669 |
#| msgid "Note to reviewer"
|
670 |
msgid "Notes on the time"
|
671 |
msgstr "Zusätzliche Anmerkungen zum Event "
|
672 |
|
673 |
+
#: app/features/events.php:604 app/features/fes/form.php:330
|
674 |
#, fuzzy
|
675 |
#| msgid ""
|
676 |
#| "It shows next to event time on calendar. You can insert Timezone etc. in "
|
682 |
"Neben der Zeit im Kalender wird diese Angabe angezeigt. In diesem Feld "
|
683 |
"können Sie z.B. eine Zeitzone wie z.B. \"MEZ\" usw. einfügen. "
|
684 |
|
685 |
+
#: app/features/events.php:606 app/features/events.php:775
|
686 |
+
#: app/features/events.php:1128 app/features/events.php:1277
|
687 |
+
#: app/features/events.php:1587 app/features/events.php:1698
|
688 |
+
#: app/features/events.php:1869 app/features/events.php:1884
|
689 |
+
#: app/features/events.php:2050 app/features/events.php:2063
|
690 |
+
#: app/features/events.php:2215 app/features/events.php:2251
|
691 |
+
#: app/features/events.php:2349 app/features/events.php:2364
|
692 |
+
#: app/features/events.php:2394 app/features/events.php:2407
|
693 |
+
#: app/features/fes/form.php:439 app/features/fes/form.php:747
|
694 |
#: app/features/locations.php:336 app/features/mec/booking.php:117
|
695 |
#: app/features/mec/booking.php:139 app/features/mec/booking.php:211
|
696 |
#: app/features/mec/booking.php:278 app/features/mec/booking.php:291
|
698 |
#: app/features/mec/booking.php:472 app/features/mec/booking.php:501
|
699 |
#: app/features/mec/booking.php:549 app/features/mec/booking.php:559
|
700 |
#: app/features/mec/booking.php:581 app/features/mec/booking.php:591
|
701 |
+
#: app/features/mec/booking.php:829 app/features/mec/booking.php:855
|
702 |
+
#: app/features/mec/dashboard.php:71
|
703 |
#: app/features/mec/meta_boxes/display_options.php:83
|
704 |
#: app/features/mec/meta_boxes/display_options.php:96
|
705 |
#: app/features/mec/meta_boxes/display_options.php:109
|
759 |
#: app/features/mec/styling.php:119 app/features/mec/styling.php:218
|
760 |
#: app/features/mec/styling.php:235 app/features/mec/styling.php:248
|
761 |
#: app/features/organizers.php:272 app/features/popup/event.php:126
|
762 |
+
#: app/features/popup/event.php:173 app/skins/single.php:1103
|
763 |
#: app/skins/single/default.php:159 app/skins/single/default.php:391
|
764 |
#: app/skins/single/m1.php:218 app/skins/single/m2.php:142
|
765 |
#: app/skins/single/modern.php:163
|
766 |
msgid "Read More"
|
767 |
msgstr "Mehr lesen"
|
768 |
|
769 |
+
#: app/features/events.php:616 app/features/fes/form.php:337
|
770 |
#, fuzzy
|
771 |
#| msgid "Timezone: %s"
|
772 |
msgid "Timezone"
|
773 |
msgstr "Zeitzone: %s"
|
774 |
|
775 |
+
#: app/features/events.php:621 app/features/events.php:634
|
776 |
+
#: app/features/events.php:1756 app/features/events.php:2177
|
777 |
+
#: app/features/events.php:2309 app/features/events.php:2490
|
778 |
+
#: app/features/fes/form.php:342 app/features/fes/form.php:355
|
779 |
msgid "Inherit from global options"
|
780 |
msgstr "Aus den globalen Einstellungen übernehmen"
|
781 |
|
782 |
+
#: app/features/events.php:630 app/features/events.php:633
|
783 |
+
#: app/features/fes/form.php:351 app/features/fes/form.php:354
|
784 |
+
#, fuzzy
|
785 |
+
#| msgid "Countdown View"
|
786 |
+
msgid "Countdown Method"
|
787 |
+
msgstr "Countdownansicht"
|
788 |
+
|
789 |
+
#: app/features/events.php:635 app/features/fes/form.php:356
|
790 |
+
#, fuzzy
|
791 |
+
#| msgid "On Event Start"
|
792 |
+
msgid "Count to Event Start"
|
793 |
+
msgstr "Am Event Start"
|
794 |
+
|
795 |
+
#: app/features/events.php:636 app/features/fes/form.php:357
|
796 |
+
#, fuzzy
|
797 |
+
#| msgid "On Event End"
|
798 |
+
msgid "Count to Event End"
|
799 |
+
msgstr "Am Event Ende"
|
800 |
+
|
801 |
+
#: app/features/events.php:644
|
802 |
msgid "Repeating"
|
803 |
msgstr "Wiederholen"
|
804 |
|
805 |
+
#: app/features/events.php:653
|
806 |
msgid "Event Repeating (Recurring events)"
|
807 |
msgstr "Wiederholende Veranstaltung"
|
808 |
|
809 |
+
#: app/features/events.php:657 app/features/fes/form.php:370
|
810 |
msgid "Repeats"
|
811 |
msgstr "Wiederholend"
|
812 |
|
813 |
+
#: app/features/events.php:665 app/features/fes/form.php:372
|
814 |
#: app/features/mec.php:1336 app/skins/default_full_calendar/tpl.php:77
|
815 |
#: app/skins/full_calendar/tpl.php:124
|
816 |
msgid "Daily"
|
817 |
msgstr "Täglich"
|
818 |
|
819 |
+
#: app/features/events.php:672 app/features/fes/form.php:373
|
820 |
msgid "Every Weekday"
|
821 |
msgstr "An jedem Wochentag"
|
822 |
|
823 |
+
#: app/features/events.php:679 app/features/fes/form.php:374
|
824 |
msgid "Every Weekend"
|
825 |
msgstr "An jedem Wochenende"
|
826 |
|
827 |
+
#: app/features/events.php:686 app/features/fes/form.php:375
|
828 |
msgid "Certain Weekdays"
|
829 |
msgstr "Bestimmte Wochentage"
|
830 |
|
831 |
+
#: app/features/events.php:693 app/features/fes/form.php:376
|
832 |
#: app/skins/default_full_calendar/tpl.php:76
|
833 |
#: app/skins/full_calendar/tpl.php:123
|
834 |
msgid "Weekly"
|
835 |
msgstr "Wöchentlich"
|
836 |
|
837 |
+
#: app/features/events.php:700 app/features/fes/form.php:377
|
838 |
#: app/features/mec.php:1337 app/skins/default_full_calendar/tpl.php:75
|
839 |
#: app/skins/full_calendar/tpl.php:122
|
840 |
msgid "Monthly"
|
841 |
msgstr "Monatlich"
|
842 |
|
843 |
+
#: app/features/events.php:707 app/features/fes/form.php:378
|
844 |
#: app/features/mec.php:1338 app/skins/default_full_calendar/tpl.php:74
|
845 |
#: app/skins/full_calendar/tpl.php:121
|
846 |
msgid "Yearly"
|
847 |
msgstr "Jährlich"
|
848 |
|
849 |
+
#: app/features/events.php:714 app/features/fes/form.php:379
|
850 |
msgid "Custom Days"
|
851 |
msgstr "Benutzerdefinierte Tage"
|
852 |
|
853 |
+
#: app/features/events.php:721 app/features/fes/form.php:380
|
854 |
msgid "Advanced"
|
855 |
msgstr "Fortgeschritten"
|
856 |
|
857 |
+
#: app/features/events.php:726 app/features/fes/form.php:384
|
858 |
msgid "Repeat Interval"
|
859 |
msgstr "Wiederholungsintervall"
|
860 |
|
861 |
+
#: app/features/events.php:728 app/features/fes/form.php:385
|
862 |
msgid "Repeat interval"
|
863 |
msgstr "Wiederholungsintervall"
|
864 |
|
865 |
+
#: app/features/events.php:732 app/features/fes/form.php:388
|
866 |
msgid "Week Days"
|
867 |
msgstr "Wochentage"
|
868 |
|
869 |
+
#: app/features/events.php:749
|
870 |
#, fuzzy
|
871 |
#| msgid "Pro version of Modern Events Calendar"
|
872 |
msgid ""
|
874 |
"Calendar."
|
875 |
msgstr "Pro Version vom Modernen Event Calendar"
|
876 |
|
877 |
+
#: app/features/events.php:755 app/features/events.php:1952
|
878 |
+
#: app/features/events.php:1980 app/features/events.php:2119
|
879 |
+
#: app/features/fes/form.php:402 app/features/ix/import_f_calendar.php:42
|
880 |
#: app/features/ix/import_g_calendar.php:51
|
881 |
#: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
|
882 |
msgid "Start"
|
883 |
msgstr "Start"
|
884 |
|
885 |
+
#: app/features/events.php:768 app/features/events.php:1271
|
886 |
+
#: app/features/events.php:1391 app/features/events.php:1496
|
887 |
+
#: app/features/events.php:1936 app/features/events.php:2108
|
888 |
+
#: app/features/events.php:2188 app/features/events.php:2321
|
889 |
+
#: app/features/fes/form.php:432 app/features/fes/form.php:963
|
890 |
#: app/features/occurrences.php:114
|
891 |
msgid "Add"
|
892 |
msgstr "Hinzufügen"
|
893 |
|
894 |
+
#: app/features/events.php:771 app/features/fes/form.php:435
|
895 |
msgid "Custom Days Repeating"
|
896 |
msgstr "Benutzerdefinierte Wiederholende Tage"
|
897 |
|
898 |
+
#: app/features/events.php:774 app/features/fes/form.php:438
|
899 |
msgid ""
|
900 |
"Add certain days to event occurrence dates. If you have a single day event, "
|
901 |
"start and end dates should be the same, If you have a multiple day event, "
|
902 |
"the start and end dates must be commensurate with the initial date."
|
903 |
msgstr ""
|
904 |
|
905 |
+
#: app/features/events.php:785 app/features/events.php:1956
|
906 |
+
#: app/features/events.php:1984 app/features/events.php:2123
|
907 |
+
#: app/features/fes/form.php:417
|
908 |
msgid "End"
|
909 |
msgstr "Ende"
|
910 |
|
911 |
+
#: app/features/events.php:862 app/features/fes/form.php:511
|
912 |
msgid "First"
|
913 |
msgstr "Erster"
|
914 |
|
915 |
+
#: app/features/events.php:904 app/features/fes/form.php:553
|
916 |
msgid "Second"
|
917 |
msgstr "Zweiter"
|
918 |
|
919 |
+
#: app/features/events.php:946 app/features/fes/form.php:595
|
920 |
msgid "Third"
|
921 |
msgstr "Dritter"
|
922 |
|
923 |
+
#: app/features/events.php:988 app/features/fes/form.php:637
|
924 |
msgid "Fourth"
|
925 |
msgstr "Vierte"
|
926 |
|
927 |
+
#: app/features/events.php:1030 app/features/fes/form.php:679
|
928 |
msgid "Last"
|
929 |
msgstr "Letzter"
|
930 |
|
931 |
+
#: app/features/events.php:1077 app/features/fes/form.php:725
|
932 |
msgid "Ends Repeat"
|
933 |
msgstr "Wiederholung endet"
|
934 |
|
935 |
+
#: app/features/events.php:1089 app/features/fes/form.php:729
|
936 |
msgid "Never"
|
937 |
msgstr "Niemals"
|
938 |
|
939 |
+
#: app/features/events.php:1101 app/features/fes/form.php:734
|
940 |
msgid "On"
|
941 |
msgstr "Am"
|
942 |
|
943 |
+
#: app/features/events.php:1117 app/features/fes/form.php:741
|
944 |
#: app/features/mec/booking.php:169
|
945 |
msgid "After"
|
946 |
msgstr "Nach"
|
947 |
|
948 |
+
#: app/features/events.php:1121 app/features/events.php:1125
|
949 |
+
#: app/features/fes/form.php:743 app/features/fes/form.php:746
|
950 |
msgid "Occurrences times"
|
951 |
msgstr " mal vorkommen"
|
952 |
|
953 |
+
#: app/features/events.php:1126
|
954 |
#, fuzzy
|
955 |
#| msgid ""
|
956 |
#| "The event will finish after certain repeats. For example if you set it to "
|
962 |
"Das Event ist nach einer bestimmten Anzahl von Wiederholungen zu Ende. Zum "
|
963 |
"Beispiel: Bei Eingabe von 10 wird das Event nach 10 Wiederholungen beendet"
|
964 |
|
965 |
+
#: app/features/events.php:1141 app/features/fes/form.php:760
|
966 |
#, fuzzy
|
967 |
#| msgid "Next Occurrence of Other Events"
|
968 |
msgid "Show only one occurrence of this event"
|
969 |
msgstr "Nächstes Auftreten von anderen Events."
|
970 |
|
971 |
+
#: app/features/events.php:1161 app/features/events.php:3748
|
972 |
+
#: app/features/fes/form.php:833 app/features/ix.php:3748
|
973 |
#: app/features/ix.php:3790 app/features/mec/settings.php:735
|
974 |
+
#: app/libraries/main.php:6188 app/libraries/main.php:6237
|
975 |
#: app/widgets/single.php:103
|
976 |
msgid "Event Cost"
|
977 |
msgstr ""
|
978 |
"Bruttopreis des Events in Euro, 0 für kostenlos oder z.B. 39, ohne €-Zeichen"
|
979 |
|
980 |
+
#: app/features/events.php:1258
|
981 |
#, fuzzy
|
982 |
#| msgid "Exceptional Days"
|
983 |
msgid "Exceptional Days (Exclude Dates)"
|
984 |
msgstr "Herausgenommene Tage "
|
985 |
|
986 |
+
#: app/features/events.php:1264 app/features/events.php:1274
|
987 |
msgid "Exclude certain days"
|
988 |
msgstr "Ausschluss bestimmter Tage"
|
989 |
|
990 |
+
#: app/features/events.php:1269 app/features/events.php:2536
|
991 |
+
#: app/features/events.php:2625 app/features/fes.php:236
|
992 |
#: app/features/mec/booking.php:644 app/features/mec/booking.php:740
|
993 |
#: app/features/mec/single.php:193 app/features/profile/profile.php:58
|
994 |
+
#: app/features/wc.php:82 app/libraries/main.php:3392
|
995 |
+
#: app/modules/booking/steps/tickets.php:98
|
996 |
+
#: app/modules/next-event/details.php:134 app/skins/single.php:1076
|
997 |
#: app/skins/single/default.php:99 app/skins/single/default.php:333
|
998 |
#: app/skins/single/m1.php:21 app/skins/single/modern.php:197
|
999 |
msgid "Date"
|
1000 |
msgstr "Datum"
|
1001 |
|
1002 |
+
#: app/features/events.php:1275
|
1003 |
msgid ""
|
1004 |
"Exclude certain days from event occurrence dates. Please note that you can "
|
1005 |
"exclude only single day occurrences and you cannot exclude one day from "
|
1006 |
"multiple day occurrences."
|
1007 |
msgstr ""
|
1008 |
|
1009 |
+
#: app/features/events.php:1334 app/libraries/render.php:546
|
1010 |
msgid "Day 1"
|
1011 |
msgstr "Tag 1"
|
1012 |
|
1013 |
+
#: app/features/events.php:1364
|
1014 |
msgid "Add Day"
|
1015 |
msgstr "Tag hinzufügen"
|
1016 |
|
1017 |
+
#: app/features/events.php:1365
|
1018 |
msgid ""
|
1019 |
"Add new days for schedule. For example if your event is multiple days, you "
|
1020 |
"can add a different schedule for each day!"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
+
#: app/features/events.php:1372
|
1024 |
#, php-format
|
1025 |
msgid "Day %s"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
+
#: app/features/events.php:1376 app/features/events.php:1415
|
1029 |
+
#: app/features/events.php:1450 app/features/events.php:1482
|
1030 |
+
#: app/features/events.php:1511 app/features/events.php:2336
|
1031 |
+
#: app/features/events.php:2383 app/features/events.php:3556
|
1032 |
+
#: app/features/events.php:3748 app/features/fes/form.php:256
|
1033 |
#: app/features/ix.php:3748 app/features/ix.php:3790
|
1034 |
#: app/features/mec/booking.php:541 app/features/mec/booking.php:573
|
1035 |
#: app/features/mec/styling.php:130
|
1036 |
msgid "Title"
|
1037 |
msgstr "Titel"
|
1038 |
|
1039 |
+
#: app/features/events.php:1385 app/features/events.php:1422
|
1040 |
+
#: app/features/events.php:1455 app/features/events.php:1490
|
1041 |
+
#: app/features/events.php:1516 app/features/events.php:1966
|
1042 |
+
#: app/features/events.php:1992 app/features/events.php:2129
|
1043 |
+
#: app/features/events.php:2228 app/features/events.php:2264
|
1044 |
+
#: app/features/events.php:2371 app/features/events.php:2413
|
1045 |
#: app/features/mec/booking.php:484 app/features/mec/booking.php:513
|
1046 |
#: app/features/mec/booking.php:564 app/features/mec/booking.php:596
|
1047 |
+
#: app/libraries/main.php:3227 app/libraries/main.php:3256
|
1048 |
+
#: app/libraries/main.php:3285 app/libraries/main.php:3314
|
1049 |
+
#: app/libraries/main.php:3343 app/libraries/main.php:3372
|
1050 |
+
#: app/libraries/main.php:3401 app/libraries/main.php:3430
|
1051 |
+
#: app/libraries/main.php:3459 app/libraries/main.php:3480
|
1052 |
+
#: app/libraries/main.php:3511 app/libraries/main.php:3557
|
1053 |
+
#: app/libraries/main.php:3603 app/libraries/main.php:3652
|
1054 |
+
#: app/libraries/main.php:3692
|
1055 |
msgid "Remove"
|
1056 |
msgstr "Entfernen"
|
1057 |
|
1058 |
+
#: app/features/events.php:1392 app/features/events.php:1497
|
1059 |
msgid "Add new hourly schedule row"
|
1060 |
msgstr "Neue Stundenplan-Zeile hinzufügen"
|
1061 |
|
1062 |
+
#: app/features/events.php:1407 app/features/events.php:1444
|
1063 |
+
#: app/features/events.php:1506
|
1064 |
msgid "From e.g. 8:15"
|
1065 |
msgstr "Von z.B. 08:15 Uhr"
|
1066 |
|
1067 |
+
#: app/features/events.php:1411 app/features/events.php:1447
|
1068 |
+
#: app/features/events.php:1508
|
1069 |
msgid "To e.g. 8:45"
|
1070 |
msgstr "bis zum Beispiel 08:45 Uhr"
|
1071 |
|
1072 |
+
#: app/features/events.php:1419 app/features/events.php:1453
|
1073 |
+
#: app/features/events.php:1514 app/features/events.php:1857
|
1074 |
+
#: app/features/events.php:2039
|
1075 |
msgid "Description"
|
1076 |
msgstr "Beschreibung"
|
1077 |
|
1078 |
+
#: app/features/events.php:1425 app/features/events.php:1458
|
1079 |
+
#: app/features/events.php:1519 app/features/fes/form.php:959
|
1080 |
#: app/features/mec.php:469 app/features/mec/modules.php:51
|
1081 |
#: app/features/mec/settings.php:783 app/features/speakers.php:61
|
1082 |
+
#: app/libraries/main.php:575 app/libraries/main.php:6160
|
1083 |
+
#: app/libraries/main.php:6213 app/modules/speakers/details.php:18
|
1084 |
msgid "Speakers"
|
1085 |
msgstr "Sprecher"
|
1086 |
|
1087 |
+
#: app/features/events.php:1478 app/features/events.php:1486
|
1088 |
msgid "New Day"
|
1089 |
msgstr "Neuer Tag"
|
1090 |
|
1091 |
+
#: app/features/events.php:1550 app/features/fes/form.php:810
|
1092 |
#: app/features/mec/settings.php:729
|
1093 |
msgid "Event Links"
|
1094 |
msgstr "Veranstaltungslinks"
|
1095 |
|
1096 |
+
#: app/features/events.php:1553 app/features/events.php:1561
|
1097 |
+
#: app/features/fes/form.php:812 app/libraries/main.php:6186
|
1098 |
+
#: app/libraries/main.php:6235
|
1099 |
msgid "Event Link"
|
1100 |
msgstr "Veranstaltungslink"
|
1101 |
|
1102 |
+
#: app/features/events.php:1556 app/features/events.php:1574
|
1103 |
+
#: app/features/fes/form.php:813 app/features/fes/form.php:818
|
1104 |
msgid "eg. http://yoursite.com/your-event"
|
1105 |
msgstr "z.B. http://yoursite.com/your-event"
|
1106 |
|
1107 |
+
#: app/features/events.php:1562
|
1108 |
#, fuzzy
|
1109 |
#| msgid ""
|
1110 |
#| "If you fill it, it will be replaced instead of default event page link. "
|
1118 |
"dieser durch einen neuen link ersetzt werden. Vollständigen Link einfügen, "
|
1119 |
"einschließlich http(s)://"
|
1120 |
|
1121 |
+
#: app/features/events.php:1564
|
1122 |
msgid "URL Shortener"
|
1123 |
msgstr ""
|
1124 |
|
1125 |
+
#: app/features/events.php:1571 app/features/events.php:1584
|
1126 |
+
#: app/features/fes/form.php:817 app/libraries/main.php:6187
|
1127 |
+
#: app/libraries/main.php:6236 app/skins/single.php:1102
|
1128 |
#: app/skins/single/default.php:158 app/skins/single/default.php:390
|
1129 |
#: app/skins/single/m1.php:217 app/skins/single/m2.php:141
|
1130 |
#: app/skins/single/modern.php:162 app/widgets/single.php:107
|
1131 |
msgid "More Info"
|
1132 |
msgstr "Mehr Informationen"
|
1133 |
|
1134 |
+
#: app/features/events.php:1577 app/features/fes/form.php:819
|
1135 |
msgid "More Information"
|
1136 |
msgstr "z.B. Noch mehr Informationen "
|
1137 |
|
1138 |
+
#: app/features/events.php:1579 app/features/fes/form.php:821
|
1139 |
#: app/features/mec.php:980 app/features/popup/shortcode.php:477
|
1140 |
msgid "Current Window"
|
1141 |
msgstr "Aktuelles Fenster"
|
1142 |
|
1143 |
+
#: app/features/events.php:1580 app/features/fes/form.php:822
|
1144 |
#: app/features/mec.php:981 app/features/popup/shortcode.php:481
|
1145 |
msgid "New Window"
|
1146 |
msgstr "Neues Fenster"
|
1147 |
|
1148 |
+
#: app/features/events.php:1585 app/features/fes/form.php:824
|
1149 |
msgid ""
|
1150 |
"If you fill it, it will be shown in event details page as an optional link. "
|
1151 |
"Insert full link including http(s)://"
|
1156 |
"Text angezeigt werden soll: zum Beispiel: Noch mehr Informationen oder Hier "
|
1157 |
"zur Anmeldung (z.B. bei Webinaren sinnvoll) "
|
1158 |
|
1159 |
+
#: app/features/events.php:1608 app/features/mec/settings.php:797
|
1160 |
msgid "Booking Options"
|
1161 |
msgstr "Buchungsoptionen"
|
1162 |
|
1163 |
+
#: app/features/events.php:1609
|
1164 |
#, fuzzy
|
1165 |
#| msgid "Total booking limits"
|
1166 |
msgid "Total User Booking Limits"
|
1167 |
msgstr "Gesamt Verfügbare Plätze"
|
1168 |
|
1169 |
+
#: app/features/events.php:1610 app/features/events.php:1800
|
1170 |
+
#: app/libraries/book.php:61 app/libraries/main.php:6191
|
1171 |
+
#: app/modules/booking/steps/tickets.php:129
|
1172 |
+
#: app/modules/booking/steps/tickets.php:135
|
1173 |
msgid "Tickets"
|
1174 |
msgstr "Tickets"
|
1175 |
|
1176 |
+
#: app/features/events.php:1612 app/features/events.php:2165
|
1177 |
msgid "Fees"
|
1178 |
msgstr "Gebühren"
|
1179 |
|
1180 |
+
#: app/features/events.php:1615 app/features/events.php:2297
|
1181 |
#: app/features/mec/settings.php:809
|
1182 |
msgid "Ticket Variations / Options"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: app/features/events.php:1619 app/features/mec/booking.php:884
|
1186 |
#: app/features/mec/support-page.php:118
|
1187 |
#, fuzzy
|
1188 |
#| msgid "Organizer Tel"
|
1189 |
msgid "Organizer Payment"
|
1190 |
msgstr "Organisator Telefon"
|
1191 |
|
1192 |
+
#: app/features/events.php:1680 app/features/events.php:1694
|
1193 |
#, fuzzy
|
1194 |
#| msgid "Total booking limits"
|
1195 |
msgid "Total booking limit"
|
1196 |
msgstr "Gesamt Verfügbare Plätze"
|
1197 |
|
1198 |
+
#: app/features/events.php:1691 app/features/events.php:1905
|
1199 |
+
#: app/features/events.php:2077 app/modules/booking/default.php:98
|
1200 |
+
#: app/modules/booking/steps/tickets.php:129
|
1201 |
+
#: app/modules/booking/steps/tickets.php:135
|
1202 |
#: app/skins/available_spot/tpl.php:140
|
1203 |
msgid "Unlimited"
|
1204 |
msgstr "Unlimitiert"
|
1205 |
|
1206 |
+
#: app/features/events.php:1697
|
1207 |
msgid ""
|
1208 |
"If you want to set a limit to all tickets, uncheck this checkbox and put a "
|
1209 |
"limitation number."
|
1210 |
msgstr ""
|
1211 |
|
1212 |
+
#: app/features/events.php:1699
|
1213 |
#, fuzzy
|
1214 |
#| msgid "Choose your single event style."
|
1215 |
msgid "Read About A Booking System"
|
1216 |
msgstr "Wählen Sie Ihren Single Event Stil"
|
1217 |
|
1218 |
+
#: app/features/events.php:1707
|
1219 |
msgid "100"
|
1220 |
msgstr "z.B. 100"
|
1221 |
|
1222 |
+
#: app/features/events.php:1709
|
1223 |
#, fuzzy
|
1224 |
#| msgid "Discount Type"
|
1225 |
msgid "Discount per user roles"
|
1226 |
msgstr "Rabatt-Art"
|
1227 |
|
1228 |
+
#: app/features/events.php:1715
|
1229 |
msgid "5"
|
1230 |
msgstr ""
|
1231 |
|
1232 |
+
#: app/features/events.php:1718 app/features/events.php:1732
|
1233 |
#, fuzzy
|
1234 |
#| msgid "Next Occurrence"
|
1235 |
msgid "Book All Occurrences"
|
1236 |
msgstr "Nächstes Event"
|
1237 |
|
1238 |
+
#: app/features/events.php:1729
|
1239 |
msgid "Sell all occurrences by one booking"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
+
#: app/features/events.php:1735
|
1243 |
msgid ""
|
1244 |
"If you have a series of events and you want to sell all of them at once, "
|
1245 |
"this option is for you! For example a weekly yoga course or something "
|
1246 |
"similar."
|
1247 |
msgstr ""
|
1248 |
|
1249 |
+
#: app/features/events.php:1745
|
1250 |
#, fuzzy
|
1251 |
#| msgid "Total booking limits"
|
1252 |
msgid "Total user booking limits"
|
1253 |
msgstr "Gesamt Verfügbare Plätze"
|
1254 |
|
1255 |
+
#: app/features/events.php:1759
|
1256 |
msgid "12"
|
1257 |
msgstr "12"
|
1258 |
|
1259 |
+
#: app/features/events.php:1765
|
1260 |
+
#, fuzzy
|
1261 |
+
#| msgid "Payment Gateways"
|
1262 |
+
msgid "Disabled Gateways"
|
1263 |
+
msgstr "Zahlungs-Gateways"
|
1264 |
+
|
1265 |
+
#: app/features/events.php:1766
|
1266 |
+
msgid ""
|
1267 |
+
"You can disable some of the following payment gateways by checking them "
|
1268 |
+
"otherwise they will be enabled."
|
1269 |
+
msgstr ""
|
1270 |
+
|
1271 |
+
#: app/features/events.php:1803
|
1272 |
msgid ""
|
1273 |
"You're translating an event so MEC will use the original event for tickets "
|
1274 |
"and booking. You can only translate the ticket name and description. Please "
|
1275 |
"define exact tickets that you defined in the original event here."
|
1276 |
msgstr ""
|
1277 |
|
1278 |
+
#: app/features/events.php:1808
|
1279 |
msgid "Add Ticket"
|
1280 |
msgstr "Ticket hinzufügen"
|
1281 |
|
1282 |
+
#: app/features/events.php:1820 app/features/events.php:2004
|
1283 |
#, fuzzy
|
1284 |
#| msgid "Ticket"
|
1285 |
msgid "Ticket ID"
|
1286 |
msgstr "Ticket"
|
1287 |
|
1288 |
+
#: app/features/events.php:1820 app/features/events.php:2004
|
1289 |
+
#: app/features/events.php:3748 app/features/fes.php:236
|
1290 |
#: app/features/ix.php:3748 app/features/ix.php:3790
|
1291 |
#: app/features/labels.php:177 app/features/locations.php:262
|
1292 |
#: app/features/organizers.php:203 app/features/speakers.php:282
|
1293 |
msgid "ID"
|
1294 |
msgstr "ID"
|
1295 |
|
1296 |
+
#: app/features/events.php:1823 app/features/events.php:2007
|
1297 |
msgid "Ticket Name"
|
1298 |
msgstr "Ticket Name"
|
1299 |
|
1300 |
+
#: app/features/events.php:1828 app/features/events.php:2011
|
1301 |
+
#: app/features/events.php:3748 app/features/ix.php:3748
|
1302 |
#: app/features/ix.php:3790
|
1303 |
msgid "Start Time"
|
1304 |
msgstr "Uhrzeit des Beginns"
|
1305 |
|
1306 |
+
#: app/features/events.php:1841 app/features/events.php:2024
|
1307 |
+
#: app/features/events.php:3748 app/features/ix.php:3748
|
1308 |
#: app/features/ix.php:3790
|
1309 |
msgid "End Time"
|
1310 |
msgstr "Uhrzeit Ende"
|
1311 |
|
1312 |
+
#: app/features/events.php:1862 app/features/events.php:1866
|
1313 |
+
#: app/features/events.php:1960 app/features/events.php:1987
|
1314 |
+
#: app/features/events.php:2044 app/features/events.php:2047
|
1315 |
+
#: app/features/events.php:2125 app/features/events.php:2342
|
1316 |
+
#: app/features/events.php:2346 app/features/events.php:2388
|
1317 |
+
#: app/features/events.php:2391 app/features/mec/booking.php:545
|
1318 |
#: app/features/mec/booking.php:548 app/features/mec/booking.php:577
|
1319 |
#: app/features/mec/booking.php:580
|
1320 |
msgid "Price"
|
1321 |
msgstr "Preis"
|
1322 |
|
1323 |
+
#: app/features/events.php:1867 app/features/events.php:2048
|
1324 |
#, fuzzy
|
1325 |
#| msgid "Insert 0 for free ticket. Only numbers please."
|
1326 |
msgid ""
|
1328 |
"any symbols or characters."
|
1329 |
msgstr "Bitte 0 für kostenloses Ticket eingeben. Bitte nur Zahlen eintragen"
|
1330 |
|
1331 |
+
#: app/features/events.php:1876 app/features/events.php:1881
|
1332 |
+
#: app/features/events.php:2057 app/features/events.php:2060
|
1333 |
msgid "Price Label"
|
1334 |
msgstr "Preisschild"
|
1335 |
|
1336 |
+
#: app/features/events.php:1882 app/features/events.php:2061
|
1337 |
msgid "For showing on website. e.g. $15"
|
1338 |
msgstr "Um das auf der Webseite anzuzeigen zum Beispiel 15 €"
|
1339 |
|
1340 |
+
#: app/features/events.php:1892 app/features/events.php:2071
|
1341 |
msgid "Available Tickets"
|
1342 |
msgstr "Verfügbare Tickets: %s "
|
1343 |
|
1344 |
+
#: app/features/events.php:1909 app/features/events.php:2081
|
1345 |
msgid "Minimum Ticket e.g. 3"
|
1346 |
msgstr "Ticket minimum z.B. 3"
|
1347 |
|
1348 |
+
#: app/features/events.php:1912 app/features/events.php:2084
|
1349 |
msgid "MinimumTicket"
|
1350 |
msgstr "Ticket minimum"
|
1351 |
|
1352 |
+
#: app/features/events.php:1914 app/features/events.php:2086
|
1353 |
msgid "Set a number for the minimum ticket reservation possible"
|
1354 |
msgstr ""
|
1355 |
|
1356 |
+
#: app/features/events.php:1922 app/features/events.php:2094
|
1357 |
msgid "e.g. 0"
|
1358 |
msgstr "z.B. 0"
|
1359 |
|
1360 |
+
#: app/features/events.php:1924 app/features/events.php:2096
|
1361 |
msgid "Day"
|
1362 |
msgstr "Tag"
|
1363 |
|
1364 |
+
#: app/features/events.php:1925 app/features/events.php:2097
|
1365 |
msgid "Hour"
|
1366 |
msgstr "Stunde"
|
1367 |
|
1368 |
+
#: app/features/events.php:1927 app/features/events.php:2099
|
1369 |
#, php-format
|
1370 |
msgid "Stop selling ticket %s before event start."
|
1371 |
msgstr ""
|
1372 |
|
1373 |
+
#: app/features/events.php:1934 app/features/events.php:2106
|
1374 |
msgid "Price per Date"
|
1375 |
msgstr "Preis pro Datum"
|
1376 |
|
1377 |
+
#: app/features/events.php:1964 app/features/events.php:1990
|
1378 |
+
#: app/features/events.php:2127 app/features/labels.php:60
|
1379 |
#: app/features/mec/meta_boxes/display_options.php:1421
|
1380 |
#: app/features/mec/meta_boxes/search_form.php:67
|
1381 |
#: app/features/mec/meta_boxes/search_form.php:137
|
1389 |
#: app/features/mec/meta_boxes/search_form.php:690
|
1390 |
#: app/features/mec/meta_boxes/search_form.php:796
|
1391 |
#: app/features/mec/settings.php:955 app/features/mec/single.php:349
|
1392 |
+
#: app/features/mec/single.php:391 app/features/search.php:98
|
1393 |
+
#: app/libraries/skins.php:1062
|
1394 |
msgid "Label"
|
1395 |
msgstr "Label"
|
1396 |
|
1397 |
+
#: app/features/events.php:2202 app/features/events.php:2240
|
1398 |
#: app/features/mec/booking.php:464 app/features/mec/booking.php:493
|
1399 |
msgid "Fee Title"
|
1400 |
msgstr "Gebühren Name"
|
1401 |
|
1402 |
+
#: app/features/events.php:2208 app/features/events.php:2212
|
1403 |
+
#: app/features/events.php:2245 app/features/events.php:2248
|
1404 |
#: app/features/mec/booking.php:468 app/features/mec/booking.php:471
|
1405 |
#: app/features/mec/booking.php:497 app/features/mec/booking.php:500
|
1406 |
msgid "Amount"
|
1407 |
msgstr "Betrag"
|
1408 |
|
1409 |
+
#: app/features/events.php:2213 app/features/events.php:2249
|
1410 |
#: app/features/mec/booking.php:472 app/features/mec/booking.php:501
|
1411 |
msgid ""
|
1412 |
"Fee amount, considered as fixed amount if you set the type to amount "
|
1415 |
"Gebührenbetrag, gilt als fester Betrag, wenn Sie die Art auf Betrag setzen, "
|
1416 |
"sonst als Prozentsatz"
|
1417 |
|
1418 |
+
#: app/features/events.php:2222 app/features/events.php:2258
|
1419 |
#: app/features/mec/booking.php:479 app/features/mec/booking.php:508
|
1420 |
msgid "Percent"
|
1421 |
msgstr "Prozent"
|
1422 |
|
1423 |
+
#: app/features/events.php:2223 app/features/events.php:2259
|
1424 |
#: app/features/mec/booking.php:480 app/features/mec/booking.php:509
|
1425 |
msgid "Amount (Per Ticket)"
|
1426 |
msgstr "Betrag (pro Ticket)"
|
1427 |
|
1428 |
+
#: app/features/events.php:2224 app/features/events.php:2260
|
1429 |
#: app/features/mec/booking.php:481 app/features/mec/booking.php:510
|
1430 |
msgid "Amount (Per Booking)"
|
1431 |
msgstr "Betrag (pro Buchung)"
|
1432 |
|
1433 |
+
#: app/features/events.php:2347 app/features/events.php:2392
|
1434 |
#: app/features/mec/booking.php:549 app/features/mec/booking.php:581
|
1435 |
msgid "Option Price"
|
1436 |
msgstr "Preis Optionen"
|
1437 |
|
1438 |
+
#: app/features/events.php:2357 app/features/events.php:2361
|
1439 |
+
#: app/features/events.php:2401 app/features/events.php:2404
|
1440 |
#: app/features/mec/booking.php:555 app/features/mec/booking.php:558
|
1441 |
#: app/features/mec/booking.php:587 app/features/mec/booking.php:590
|
1442 |
msgid "Maximum Per Ticket"
|
1443 |
msgstr "Maximum pro Ticket"
|
1444 |
|
1445 |
+
#: app/features/events.php:2362 app/features/events.php:2405
|
1446 |
#: app/features/mec/booking.php:559 app/features/mec/booking.php:591
|
1447 |
#, fuzzy
|
1448 |
#| msgid "Maximum Per Ticket. Leave it blank for unlimited."
|
1449 |
msgid "Maximum Per Ticket. Leave blank for unlimited."
|
1450 |
msgstr "Maximum pro Ticket. Leerlassen für unendlich."
|
1451 |
|
1452 |
+
#: app/features/events.php:2502 app/features/mec/booking.php:607
|
1453 |
#, fuzzy
|
1454 |
#| msgid "Attendees List"
|
1455 |
msgid "Per Attendee Fields"
|
1456 |
msgstr "Teilnehmer Liste"
|
1457 |
|
1458 |
+
#: app/features/events.php:2532 app/features/mec/booking.php:640
|
1459 |
+
#: app/libraries/main.php:3247
|
1460 |
msgid "MEC Name"
|
1461 |
msgstr "MEC Name"
|
1462 |
|
1463 |
+
#: app/features/events.php:2533 app/features/mec/booking.php:641
|
1464 |
+
#: app/libraries/main.php:3276
|
1465 |
msgid "MEC Email"
|
1466 |
msgstr "MEC Email"
|
1467 |
|
1468 |
+
#: app/features/events.php:2534 app/features/events.php:2623
|
1469 |
#: app/features/mec/booking.php:642 app/features/mec/booking.php:738
|
1470 |
+
#: app/features/mec/single.php:190 app/libraries/main.php:3218
|
1471 |
msgid "Text"
|
1472 |
msgstr "Text"
|
1473 |
|
1474 |
+
#: app/features/events.php:2537 app/features/events.php:2626
|
1475 |
#: app/features/mec/booking.php:645 app/features/mec/booking.php:741
|
1476 |
#: app/features/mec/single.php:194 app/features/organizers.php:103
|
1477 |
#: app/features/organizers.php:148 app/features/speakers.php:119
|
1478 |
#: app/features/speakers.php:200 app/features/speakers.php:285
|
1479 |
+
#: app/libraries/main.php:3421
|
1480 |
msgid "Tel"
|
1481 |
msgstr "Tel"
|
1482 |
|
1483 |
+
#: app/features/events.php:2538 app/features/mec/booking.php:646
|
1484 |
+
#: app/libraries/main.php:3363
|
1485 |
msgid "File"
|
1486 |
msgstr "Datei"
|
1487 |
|
1488 |
+
#: app/features/events.php:2539 app/features/events.php:2627
|
1489 |
#: app/features/mec/booking.php:647 app/features/mec/booking.php:742
|
1490 |
+
#: app/features/mec/single.php:195 app/libraries/main.php:3450
|
1491 |
msgid "Textarea"
|
1492 |
msgstr "Textbereich"
|
1493 |
|
1494 |
+
#: app/features/events.php:2540 app/features/events.php:2628
|
1495 |
#: app/features/mec/booking.php:648 app/features/mec/booking.php:743
|
1496 |
+
#: app/features/mec/single.php:197 app/libraries/main.php:3502
|
1497 |
msgid "Checkboxes"
|
1498 |
msgstr "Checkboxes"
|
1499 |
|
1500 |
+
#: app/features/events.php:2541 app/features/events.php:2629
|
1501 |
#: app/features/mec/booking.php:649 app/features/mec/booking.php:744
|
1502 |
+
#: app/features/mec/single.php:198 app/libraries/main.php:3548
|
1503 |
msgid "Radio Buttons"
|
1504 |
msgstr "Radio Buttons"
|
1505 |
|
1506 |
+
#: app/features/events.php:2542 app/features/events.php:2630
|
1507 |
#: app/features/mec/booking.php:650 app/features/mec/booking.php:745
|
1508 |
#: app/features/mec/meta_boxes/search_form.php:34
|
1509 |
#: app/features/mec/meta_boxes/search_form.php:41
|
1581 |
#: app/features/mec/meta_boxes/search_form.php:792
|
1582 |
#: app/features/mec/meta_boxes/search_form.php:799
|
1583 |
#: app/features/mec/meta_boxes/search_form.php:813
|
1584 |
+
#: app/features/mec/single.php:199 app/libraries/main.php:3594
|
1585 |
msgid "Dropdown"
|
1586 |
msgstr "Dropdown"
|
1587 |
|
1588 |
+
#: app/features/events.php:2543 app/features/events.php:2631
|
1589 |
#: app/features/mec/booking.php:651 app/features/mec/booking.php:746
|
1590 |
+
#: app/libraries/main.php:3643
|
1591 |
msgid "Agreement"
|
1592 |
msgstr "Zustimmung"
|
1593 |
|
1594 |
+
#: app/features/events.php:2544 app/features/events.php:2632
|
1595 |
#: app/features/mec/booking.php:652 app/features/mec/booking.php:747
|
1596 |
+
#: app/features/mec/single.php:196 app/libraries/main.php:3479
|
1597 |
msgid "Paragraph"
|
1598 |
msgstr "Absatz"
|
1599 |
|
1600 |
+
#: app/features/events.php:2593 app/features/mec/booking.php:705
|
1601 |
#, fuzzy
|
1602 |
#| msgid "Required Field"
|
1603 |
msgid "Fixed Fields"
|
1604 |
msgstr "Pflichtfeld"
|
1605 |
|
1606 |
+
#: app/features/events.php:3458 app/features/events.php:3476
|
1607 |
+
#: app/features/events.php:3494 app/features/events.php:3512
|
1608 |
#, php-format
|
1609 |
msgid "Show all %s"
|
1610 |
msgstr "Zeige alle %s"
|
1611 |
|
1612 |
+
#: app/features/events.php:3458
|
1613 |
msgid "labels"
|
1614 |
msgstr "Labels + Eventstatus"
|
1615 |
|
1616 |
+
#: app/features/events.php:3476
|
1617 |
msgid "locations"
|
1618 |
msgstr "Orte"
|
1619 |
|
1620 |
+
#: app/features/events.php:3494
|
1621 |
msgid "organizers"
|
1622 |
msgstr "Veranstalter"
|
1623 |
|
1624 |
+
#: app/features/events.php:3528
|
1625 |
msgid "Attendees List"
|
1626 |
msgstr "Teilnehmer Liste"
|
1627 |
|
1628 |
+
#: app/features/events.php:3558 app/features/events.php:3748
|
1629 |
#: app/features/ix.php:3748 app/features/ix.php:3790
|
1630 |
#: app/features/locations.php:58 app/features/locations.php:263
|
1631 |
#: app/features/locations.php:324 app/features/locations.php:326
|
1643 |
#: app/features/mec/meta_boxes/search_form.php:661
|
1644 |
#: app/features/mec/meta_boxes/search_form.php:767
|
1645 |
#: app/features/mec/settings.php:929 app/features/mec/single.php:339
|
1646 |
+
#: app/features/mec/single.php:381 app/features/popup/event.php:116
|
1647 |
+
#: app/features/popup/event.php:125 app/features/search.php:74
|
1648 |
+
#: app/libraries/main.php:2575 app/libraries/main.php:6157
|
1649 |
+
#: app/libraries/main.php:6210 app/libraries/skins.php:958
|
1650 |
+
#: app/skins/single.php:919 app/skins/single.php:1362
|
1651 |
+
#: app/skins/single/default.php:195 app/skins/single/default.php:428
|
1652 |
+
#: app/skins/single/m1.php:173 app/skins/single/m2.php:96
|
1653 |
+
#: app/skins/single/modern.php:116
|
1654 |
msgid "Location"
|
1655 |
msgstr "Ort"
|
1656 |
|
1657 |
+
#: app/features/events.php:3563
|
1658 |
msgid "Repeat"
|
1659 |
msgstr "Wiederholen"
|
1660 |
|
1661 |
+
#: app/features/events.php:3564
|
1662 |
msgid "Author"
|
1663 |
msgstr "Autor"
|
1664 |
|
1665 |
+
#: app/features/events.php:3685 app/features/events.php:3686
|
1666 |
#, fuzzy
|
1667 |
#| msgid "iCal Export"
|
1668 |
msgid "iCal / Outlook Export"
|
1669 |
msgstr "ical Export"
|
1670 |
|
1671 |
+
#: app/features/events.php:3688 app/features/events.php:3689
|
1672 |
msgid "CSV Export"
|
1673 |
msgstr "CSV Export"
|
1674 |
|
1675 |
+
#: app/features/events.php:3691 app/features/events.php:3692
|
1676 |
msgid "MS Excel Export"
|
1677 |
msgstr "MS Excel Export"
|
1678 |
|
1679 |
+
#: app/features/events.php:3694 app/features/events.php:3695
|
1680 |
msgid "XML Export"
|
1681 |
msgstr "XML Export"
|
1682 |
|
1683 |
+
#: app/features/events.php:3697 app/features/events.php:3698
|
1684 |
msgid "JSON Export"
|
1685 |
msgstr "JSON Export"
|
1686 |
|
1687 |
+
#: app/features/events.php:3700 app/features/events.php:3701
|
1688 |
+
#: app/features/events.php:3858
|
1689 |
msgid "Duplicate"
|
1690 |
msgstr "Kopie"
|
1691 |
|
1692 |
+
#: app/features/events.php:3748 app/features/ix.php:3748
|
1693 |
#: app/features/ix.php:3790
|
1694 |
msgid "Link"
|
1695 |
msgstr "Link"
|
1696 |
|
1697 |
+
#: app/features/events.php:3748 app/features/ix.php:3748
|
1698 |
#: app/features/ix.php:3790 app/features/locations.php:110
|
1699 |
#: app/features/locations.php:180 app/features/locations.php:264
|
1700 |
#: app/features/mec/meta_boxes/search_form.php:74
|
1711 |
msgid "Address"
|
1712 |
msgstr "Adresse"
|
1713 |
|
1714 |
+
#: app/features/events.php:3748
|
1715 |
#, php-format
|
1716 |
msgid "%s Tel"
|
1717 |
msgstr "%s Tel"
|
1718 |
|
1719 |
+
#: app/features/events.php:3748
|
1720 |
#, php-format
|
1721 |
msgid "%s Email"
|
1722 |
msgstr "%s Email"
|
1723 |
|
1724 |
+
#: app/features/events.php:4073 app/features/fes.php:236
|
1725 |
+
#: app/features/profile/profile.php:183 app/libraries/main.php:2658
|
1726 |
+
#: app/libraries/main.php:6190
|
1727 |
msgid "Ticket"
|
1728 |
msgstr "Ticket"
|
1729 |
|
1730 |
+
#: app/features/events.php:4076 app/features/profile/profile.php:186
|
1731 |
msgid "Variations"
|
1732 |
msgstr "Variationen"
|
1733 |
|
1734 |
+
#: app/features/events.php:4091 app/features/fes.php:309
|
1735 |
msgid "Unknown"
|
1736 |
msgstr "Unbekannt"
|
1737 |
|
1738 |
+
#: app/features/events.php:4117
|
1739 |
msgid ""
|
1740 |
"If you want to send an email, first select your attendees and then click in "
|
1741 |
"the button below, please."
|
1742 |
msgstr ""
|
1743 |
|
1744 |
+
#: app/features/events.php:4117 app/features/mec/report.php:57
|
1745 |
msgid "Send Email"
|
1746 |
msgstr "E-Mail senden"
|
1747 |
|
1748 |
+
#: app/features/events.php:4121
|
1749 |
msgid "No Attendees Found!"
|
1750 |
msgstr "Keine Teilnehmer gefunden!"
|
1751 |
|
1789 |
msgid "Order Time"
|
1790 |
msgstr "Uhrzeit Bestellung"
|
1791 |
|
1792 |
+
#: app/features/fes.php:236 app/features/wc.php:83 app/libraries/main.php:2606
|
1793 |
+
#: app/libraries/main.php:2721
|
1794 |
msgid "Transaction ID"
|
1795 |
msgstr "Transaktions-ID"
|
1796 |
|
1840 |
msgid "Please fill event title field!"
|
1841 |
msgstr "Bitte füllen Sie das Event Titelfeld"
|
1842 |
|
1843 |
+
#: app/features/fes.php:1262
|
1844 |
#, fuzzy
|
1845 |
#| msgid "The event submitted. It will publish as soon as possible."
|
1846 |
msgid "Event submitted. It will publish as soon as possible."
|
1848 |
"Die Veranstaltung wurde übermittelt. Sie wird sobald wie möglich "
|
1849 |
"veröffentlicht werden."
|
1850 |
|
1851 |
+
#: app/features/fes.php:1263
|
1852 |
msgid "The event published."
|
1853 |
msgstr "Die Veranstaltung wurde veröffentlicht."
|
1854 |
|
1856 |
msgid "Go back to events list"
|
1857 |
msgstr "Zurück zur Liste der Veranstaltungen"
|
1858 |
|
1859 |
+
#: app/features/fes/form.php:264 app/features/mec/settings.php:823
|
1860 |
msgid "Excerpt"
|
1861 |
msgstr ""
|
1862 |
|
1863 |
+
#: app/features/fes/form.php:267
|
1864 |
#, fuzzy
|
1865 |
#| msgid "On Event Start"
|
1866 |
msgid "Optional Event Excerpt"
|
1867 |
msgstr "Am Event Start"
|
1868 |
|
1869 |
+
#: app/features/fes/form.php:274
|
1870 |
msgid ""
|
1871 |
"This event is imported from Google calendar so if you modify it would "
|
1872 |
"overwrite in the next import from Google."
|
1873 |
msgstr ""
|
1874 |
|
1875 |
+
#: app/features/fes/form.php:389
|
1876 |
#: app/features/mec/meta_boxes/display_options.php:1268
|
1877 |
#: app/libraries/main.php:415
|
1878 |
msgid "Monday"
|
1879 |
msgstr "Montag"
|
1880 |
|
1881 |
+
#: app/features/fes/form.php:390
|
1882 |
#: app/features/mec/meta_boxes/display_options.php:1269
|
1883 |
#: app/libraries/main.php:415
|
1884 |
msgid "Tuesday"
|
1885 |
msgstr "Dienstag"
|
1886 |
|
1887 |
+
#: app/features/fes/form.php:391
|
1888 |
#: app/features/mec/meta_boxes/display_options.php:1270
|
1889 |
#: app/libraries/main.php:415
|
1890 |
msgid "Wednesday"
|
1891 |
msgstr "Mittwoch"
|
1892 |
|
1893 |
+
#: app/features/fes/form.php:392
|
1894 |
#: app/features/mec/meta_boxes/display_options.php:1271
|
1895 |
#: app/libraries/main.php:415
|
1896 |
msgid "Thursday"
|
1897 |
msgstr "Donnerstag"
|
1898 |
|
1899 |
+
#: app/features/fes/form.php:393
|
1900 |
#: app/features/mec/meta_boxes/display_options.php:1272
|
1901 |
#: app/libraries/main.php:415
|
1902 |
msgid "Friday"
|
1903 |
msgstr "Freitag"
|
1904 |
|
1905 |
+
#: app/features/fes/form.php:394
|
1906 |
#: app/features/mec/meta_boxes/display_options.php:1273
|
1907 |
#: app/libraries/main.php:415
|
1908 |
msgid "Saturday"
|
1909 |
msgstr "Samstag"
|
1910 |
|
1911 |
+
#: app/features/fes/form.php:395
|
1912 |
#: app/features/mec/meta_boxes/display_options.php:1267
|
1913 |
#: app/libraries/main.php:415
|
1914 |
msgid "Sunday"
|
1915 |
msgstr "Sonntag"
|
1916 |
|
1917 |
+
#: app/features/fes/form.php:747
|
1918 |
msgid ""
|
1919 |
"The event will finish after certain repeats. For example if you set it to "
|
1920 |
"10, the event will finish after 10 repeats."
|
1922 |
"Das Event ist nach einer bestimmten Anzahl von Wiederholungen zu Ende. Zum "
|
1923 |
"Beispiel: Bei Eingabe von 10 wird das Event nach 10 Wiederholungen beendet"
|
1924 |
|
1925 |
+
#: app/features/fes/form.php:771
|
1926 |
msgid "Note to reviewer"
|
1927 |
msgstr "Zusätzliche Anmerkungen zum Event "
|
1928 |
|
1929 |
+
#: app/features/fes/form.php:789
|
1930 |
msgid "User Data"
|
1931 |
msgstr "Benutzerdaten"
|
1932 |
|
1933 |
+
#: app/features/fes/form.php:792
|
1934 |
msgid "eg. yourname@gmail.com"
|
1935 |
msgstr "z.B. IhrName@ihrewebseite.de"
|
1936 |
|
1937 |
+
#: app/features/fes/form.php:796 app/features/organizers.php:280
|
1938 |
#: app/features/popup/event.php:183
|
1939 |
msgid "eg. John Smith"
|
1940 |
msgstr "z.B. Max Mustermann"
|
1941 |
|
1942 |
+
#: app/features/fes/form.php:814
|
1943 |
#, fuzzy
|
1944 |
#| msgid ""
|
1945 |
#| "If you fill it, it will be replaced instead of default event page link. "
|
1952 |
"dieser durch einen neuen link ersetzt werden. Vollständigen Link einfügen, "
|
1953 |
"einschließlich http(s)://"
|
1954 |
|
1955 |
+
#: app/features/fes/form.php:850 app/features/mec/settings.php:741
|
1956 |
msgid "Featured Image"
|
1957 |
msgstr "Ausgewähltes Bild"
|
1958 |
|
1959 |
+
#: app/features/fes/form.php:855
|
1960 |
msgid "Remove Image"
|
1961 |
msgstr "Bild entfernen"
|
1962 |
|
1963 |
+
#: app/features/fes/form.php:891 app/features/labels.php:61
|
1964 |
#: app/features/labels.php:221 app/features/mec.php:462
|
1965 |
#: app/features/mec/meta_boxes/filter.php:72
|
1966 |
+
#: app/features/mec/meta_boxes/filter.php:133 app/libraries/main.php:6154
|
1967 |
+
#: app/libraries/main.php:6207 app/skins/single.php:1132
|
1968 |
#: app/skins/single/default.php:173 app/skins/single/default.php:405
|
1969 |
#: app/skins/single/m1.php:76 app/skins/single/modern.php:252
|
1970 |
msgid "Labels"
|
1971 |
msgstr "Labels"
|
1972 |
|
1973 |
+
#: app/features/fes/form.php:937 app/features/mec.php:460
|
1974 |
#: app/features/mec/meta_boxes/filter.php:73
|
1975 |
#: app/features/mec/meta_boxes/filter.php:151
|
1976 |
msgid "Tags"
|
1977 |
msgstr "Schlagworte"
|
1978 |
|
1979 |
+
#: app/features/fes/form.php:939
|
1980 |
msgid "Insert your desired tags, comma separated."
|
1981 |
msgstr ""
|
1982 |
"Geben Sie die gewünschten Tags (Schlagworte) durch ein Komma separiert ein"
|
1983 |
|
1984 |
+
#: app/features/fes/form.php:961
|
1985 |
msgid "Speakers Names"
|
1986 |
msgstr "Sprecher Namen"
|
1987 |
|
1988 |
+
#: app/features/fes/form.php:962
|
1989 |
#, fuzzy
|
1990 |
#| msgid "Separate names with commas Similar Justin, Cris"
|
1991 |
msgid "Separate names with commas: Justin, Chris"
|
1992 |
msgstr "Unterteile Namen mit Kommas. z.B. Hans, Maier"
|
1993 |
|
1994 |
+
#: app/features/fes/form.php:992 app/modules/booking/steps/form.php:350
|
1995 |
msgid "Submit"
|
1996 |
msgstr "Buchung abschließen"
|
1997 |
|
2029 |
msgstr "MEC - Import / Export"
|
2030 |
|
2031 |
#: app/features/ix.php:107 app/features/mec/support.php:73
|
2032 |
+
#: app/libraries/main.php:822
|
2033 |
msgid "Import / Export"
|
2034 |
msgstr "Import / Export"
|
2035 |
|
2047 |
msgid "An error occurred during the file upload! Please check permissions!"
|
2048 |
msgstr ""
|
2049 |
|
2050 |
+
#: app/features/ix.php:265 app/libraries/main.php:6437
|
2051 |
+
#: app/libraries/main.php:6457
|
2052 |
msgid "Confirmed"
|
2053 |
msgstr "Bestätigt"
|
2054 |
|
2055 |
+
#: app/features/ix.php:266 app/libraries/main.php:6438
|
2056 |
+
#: app/libraries/main.php:6465
|
2057 |
msgid "Rejected"
|
2058 |
msgstr "Abgelehnt"
|
2059 |
|
2060 |
+
#: app/features/ix.php:270 app/features/mec/booking.php:991
|
2061 |
+
#: app/features/mec/booking.php:1013 app/features/mec/modules.php:401
|
2062 |
#: app/features/mec/modules.php:423 app/features/mec/notifications.php:1046
|
2063 |
#: app/features/mec/notifications.php:1068 app/features/mec/settings.php:1239
|
2064 |
+
#: app/features/mec/settings.php:1261 app/features/mec/single.php:446
|
2065 |
+
#: app/features/mec/single.php:468 app/libraries/main.php:6485
|
2066 |
msgid "Verified"
|
2067 |
msgstr "Verifiziert"
|
2068 |
|
2069 |
#: app/features/ix.php:271 app/features/labels.php:118
|
2070 |
+
#: app/features/labels.php:143 app/libraries/main.php:6486
|
2071 |
#: app/skins/agenda/render.php:43 app/skins/available_spot/tpl.php:56
|
2072 |
#: app/skins/carousel/render.php:38 app/skins/countdown/tpl.php:40
|
2073 |
#: app/skins/cover/tpl.php:36 app/skins/daily_view/render.php:28
|
2373 |
msgid "Add to Google Calendar"
|
2374 |
msgstr "Zum Google Kalender hinzufügen"
|
2375 |
|
2376 |
+
#: app/features/ix/export_g_calendar.php:93 app/features/mec/booking.php:993
|
2377 |
#: app/features/mec/modules.php:403 app/features/mec/notifications.php:1048
|
2378 |
+
#: app/features/mec/settings.php:1241 app/features/mec/single.php:448
|
2379 |
msgid "Checking ..."
|
2380 |
msgstr "Überprüfung"
|
2381 |
|
2884 |
|
2885 |
#: app/features/labels.php:180 app/features/locations.php:265
|
2886 |
#: app/features/organizers.php:206 app/features/speakers.php:286
|
2887 |
+
#: app/modules/booking/steps/tickets.php:133
|
2888 |
msgid "Count"
|
2889 |
msgstr "Zähler"
|
2890 |
|
2900 |
|
2901 |
#: app/features/locations.php:59 app/features/mec.php:463
|
2902 |
#: app/features/mec/dashboard.php:279 app/features/mec/meta_boxes/filter.php:70
|
2903 |
+
#: app/features/mec/meta_boxes/filter.php:97 app/libraries/main.php:6156
|
2904 |
+
#: app/libraries/main.php:6209
|
2905 |
msgid "Locations"
|
2906 |
msgstr "Orte"
|
2907 |
|
3022 |
msgid "Don't show map in single event page"
|
3023 |
msgstr "Karte in Einzelansicht nicht anzeigen"
|
3024 |
|
3025 |
+
#: app/features/locations.php:398 app/libraries/main.php:6193
|
3026 |
+
#: app/libraries/main.php:6240
|
3027 |
msgid "Other Locations"
|
3028 |
msgstr "Andere Orte"
|
3029 |
|
3107 |
#: app/features/mec.php:464 app/features/mec/dashboard.php:286
|
3108 |
#: app/features/mec/meta_boxes/filter.php:71
|
3109 |
#: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
|
3110 |
+
#: app/libraries/main.php:6158 app/libraries/main.php:6211
|
3111 |
msgid "Organizers"
|
3112 |
msgstr "Veranstalter"
|
3113 |
|
3310 |
msgstr "Suche…"
|
3311 |
|
3312 |
#: app/features/mec/booking.php:80 app/features/mec/booking.php:753
|
3313 |
+
#: app/features/mec/booking.php:909 app/features/mec/booking.php:918
|
3314 |
+
#: app/features/mec/booking.php:928 app/features/mec/booking.php:1010
|
3315 |
+
#: app/features/mec/booking.php:1024 app/features/mec/messages.php:15
|
3316 |
#: app/features/mec/messages.php:51 app/features/mec/messages.php:60
|
3317 |
#: app/features/mec/messages.php:94 app/features/mec/messages.php:103
|
3318 |
#: app/features/mec/modules.php:25 app/features/mec/modules.php:368
|
3324 |
#: app/features/mec/notifications.php:1079 app/features/mec/settings.php:42
|
3325 |
#: app/features/mec/settings.php:1190 app/features/mec/settings.php:1200
|
3326 |
#: app/features/mec/settings.php:1258 app/features/mec/settings.php:1272
|
3327 |
+
#: app/features/mec/single.php:21 app/features/mec/single.php:413
|
3328 |
+
#: app/features/mec/single.php:423 app/features/mec/single.php:465
|
3329 |
+
#: app/features/mec/single.php:479 app/features/mec/styles.php:11
|
3330 |
#: app/features/mec/styles.php:31 app/features/mec/styles.php:40
|
3331 |
#: app/features/mec/styles.php:77 app/features/mec/styles.php:86
|
3332 |
#: app/features/mec/styling.php:37 app/features/mec/styling.php:257
|
3374 |
|
3375 |
#: app/features/mec/booking.php:133 app/features/mec/booking.php:187
|
3376 |
#: app/features/mec/booking.php:254 app/features/mec/booking.php:823
|
3377 |
+
#: app/features/mec/booking.php:848
|
3378 |
#: app/features/mec/meta_boxes/search_form.php:33
|
3379 |
#: app/features/mec/meta_boxes/search_form.php:40
|
3380 |
#: app/features/mec/meta_boxes/search_form.php:48
|
3480 |
|
3481 |
#: app/features/mec/booking.php:134 app/features/mec/booking.php:186
|
3482 |
#: app/features/mec/booking.php:253 app/features/mec/booking.php:822
|
3483 |
+
#: app/features/mec/booking.php:849 app/features/mec/settings.php:105
|
3484 |
msgid "Enabled"
|
3485 |
msgstr "Aktiviert"
|
3486 |
|
3739 |
msgstr "Automatische Verifizierung für kostenpflichtige Buchungen"
|
3740 |
|
3741 |
#: app/features/mec/booking.php:374 app/features/mec/notifications.php:269
|
3742 |
+
#: app/features/notifications.php:155 app/libraries/main.php:596
|
3743 |
msgid "Booking Confirmation"
|
3744 |
msgstr "Buchungsbestätigung"
|
3745 |
|
3755 |
msgid "Send confirmation email in auto confirmation mode"
|
3756 |
msgstr ""
|
3757 |
|
3758 |
+
#: app/features/mec/booking.php:411 app/libraries/main.php:566
|
3759 |
#, fuzzy
|
3760 |
#| msgid "Booking"
|
3761 |
msgid "Booking Shortcode"
|
3789 |
msgstr ""
|
3790 |
|
3791 |
#: app/features/mec/booking.php:445 app/features/mec/booking.php:815
|
3792 |
+
#: app/libraries/main.php:568
|
3793 |
msgid "Taxes / Fees"
|
3794 |
msgstr "Steuern/Gebühren"
|
3795 |
|
3801 |
msgid "Add Fee"
|
3802 |
msgstr "Gebühr hinzufügen"
|
3803 |
|
3804 |
+
#: app/features/mec/booking.php:522 app/libraries/main.php:569
|
3805 |
msgid "Ticket Variations & Options"
|
3806 |
msgstr ""
|
3807 |
|
3819 |
|
3820 |
#: app/features/mec/booking.php:807
|
3821 |
msgid ""
|
3822 |
+
"By enabling this feature, tickets will be added to WooCommerce cart and all "
|
3823 |
+
"payment process would be done by WooCommerce so all of MEC payment related "
|
3824 |
+
"modules will be disabled. To configure your desired gateways and booking "
|
3825 |
+
"fields etc, you need to configure WooCommerce on your website."
|
3826 |
msgstr ""
|
3827 |
|
3828 |
#: app/features/mec/booking.php:809
|
3850 |
msgstr "Ticket Variationen"
|
3851 |
|
3852 |
#: app/features/mec/booking.php:819
|
3853 |
+
#, fuzzy
|
3854 |
+
#| msgid "Automatically complete WC orders"
|
3855 |
+
msgid "Automatically complete WooCommerce orders"
|
3856 |
msgstr "WC-Aufträge automatisch abschließen"
|
3857 |
|
3858 |
#: app/features/mec/booking.php:827
|
3859 |
#, fuzzy
|
3860 |
#| msgid "Automatically complete WC orders"
|
3861 |
+
msgid "Auto WooCommerce orders"
|
3862 |
msgstr "WC-Aufträge automatisch abschließen"
|
3863 |
|
3864 |
#: app/features/mec/booking.php:828
|
3883 |
msgid "Redirect to Checkout"
|
3884 |
msgstr "Weiterleitungs Seite "
|
3885 |
|
3886 |
+
#: app/features/mec/booking.php:845
|
3887 |
+
#, fuzzy
|
3888 |
+
#| msgid "Booking Form"
|
3889 |
+
msgid "MEC Booking Form"
|
3890 |
+
msgstr "Buchungsformular"
|
3891 |
+
|
3892 |
+
#: app/features/mec/booking.php:854
|
3893 |
+
msgid ""
|
3894 |
+
"If enabled then users should fill the booking form in MEC and then they will "
|
3895 |
+
"be redirected to checkout."
|
3896 |
+
msgstr ""
|
3897 |
+
|
3898 |
+
#: app/features/mec/booking.php:880
|
3899 |
msgid "Enable Organizer Payment Module"
|
3900 |
msgstr ""
|
3901 |
|
3902 |
+
#: app/features/mec/booking.php:885
|
3903 |
msgid ""
|
3904 |
"By enabling this module, organizers are able to insert their own payment "
|
3905 |
"credentials for enabled gateways per event and receive the payments directly!"
|
3906 |
msgstr ""
|
3907 |
|
3908 |
+
#: app/features/mec/booking.php:895
|
3909 |
+
msgid "Disable / Enable payment gateways per event"
|
3910 |
+
msgstr ""
|
3911 |
+
|
3912 |
+
#: app/features/mec/booking.php:899
|
3913 |
+
#, fuzzy
|
3914 |
+
#| msgid "Payment Gateways"
|
3915 |
+
msgid "Payment Gateways Per Event"
|
3916 |
+
msgstr "Zahlungs-Gateways"
|
3917 |
+
|
3918 |
+
#: app/features/mec/booking.php:900
|
3919 |
+
msgid ""
|
3920 |
+
"By enabling this module, users are able to disable / enable payment gateways "
|
3921 |
+
"per event"
|
3922 |
+
msgstr ""
|
3923 |
+
|
3924 |
+
#: app/features/mec/booking.php:988 app/features/mec/messages.php:78
|
3925 |
#: app/features/mec/modules.php:398 app/features/mec/notifications.php:1043
|
3926 |
+
#: app/features/mec/settings.php:1236 app/features/mec/single.php:443
|
3927 |
#: app/features/mec/styles.php:60 app/features/mec/styling.php:311
|
3928 |
msgid "Saved"
|
3929 |
msgstr "Gesichert"
|
3930 |
|
3931 |
+
#: app/features/mec/booking.php:989 app/features/mec/messages.php:79
|
3932 |
#: app/features/mec/modules.php:399 app/features/mec/notifications.php:1044
|
3933 |
+
#: app/features/mec/settings.php:1237 app/features/mec/single.php:444
|
3934 |
#: app/features/mec/styles.php:61 app/features/mec/styling.php:312
|
3935 |
msgid "Settings Saved!"
|
3936 |
msgstr "Einstellungen gespeichert!"
|
3937 |
|
3938 |
+
#: app/features/mec/booking.php:1015 app/features/mec/modules.php:425
|
3939 |
#: app/features/mec/notifications.php:1070 app/features/mec/settings.php:1263
|
3940 |
+
#: app/features/mec/single.php:470
|
3941 |
msgid "Please Refresh Page"
|
3942 |
msgstr "Bitte Seiten Refresh vornehmen"
|
3943 |
|
4053 |
msgstr "Einstellungen Herunterladen"
|
4054 |
|
4055 |
#: app/features/mec/messages.php:28 app/features/mec/support-page.php:102
|
4056 |
+
#: app/features/mec/support.php:66 app/libraries/main.php:815
|
4057 |
msgid "Messages"
|
4058 |
msgstr "Nachrichten"
|
4059 |
|
4571 |
|
4572 |
#: app/features/mec/meta_boxes/display_options.php:666
|
4573 |
#: app/features/mec/meta_boxes/display_options.php:690
|
4574 |
+
#: app/libraries/main.php:335 app/libraries/main.php:2055
|
4575 |
+
#: app/libraries/main.php:2080
|
4576 |
msgid "List View"
|
4577 |
msgstr "Listenansicht"
|
4578 |
|
4579 |
#: app/features/mec/meta_boxes/display_options.php:667
|
4580 |
#: app/features/mec/meta_boxes/display_options.php:711
|
4581 |
+
#: app/libraries/main.php:336 app/libraries/main.php:2056
|
4582 |
+
#: app/libraries/main.php:2081
|
4583 |
msgid "Grid View"
|
4584 |
msgstr "Rasterdarstellung"
|
4585 |
|
4593 |
|
4594 |
#: app/features/mec/meta_boxes/display_options.php:669
|
4595 |
#: app/features/mec/meta_boxes/display_options.php:732
|
4596 |
+
#: app/libraries/main.php:339 app/libraries/main.php:2049
|
4597 |
+
#: app/libraries/main.php:2074
|
4598 |
msgid "Yearly View"
|
4599 |
msgstr "Jahresansicht"
|
4600 |
|
4605 |
|
4606 |
#: app/features/mec/meta_boxes/display_options.php:671
|
4607 |
#: app/features/mec/meta_boxes/display_options.php:781
|
4608 |
+
#: app/libraries/main.php:342 app/libraries/main.php:2051
|
4609 |
+
#: app/libraries/main.php:2076
|
4610 |
msgid "Weekly View"
|
4611 |
msgstr "Wochenansicht"
|
4612 |
|
4613 |
#: app/features/mec/meta_boxes/display_options.php:672
|
4614 |
#: app/features/mec/meta_boxes/display_options.php:791
|
4615 |
+
#: app/libraries/main.php:341 app/libraries/main.php:2052
|
4616 |
+
#: app/libraries/main.php:2077
|
4617 |
msgid "Daily View"
|
4618 |
msgstr "Tagesansicht"
|
4619 |
|
5113 |
#: app/features/mec/meta_boxes/search_form.php:676
|
5114 |
#: app/features/mec/meta_boxes/search_form.php:782
|
5115 |
#: app/features/mec/settings.php:942 app/features/mec/single.php:344
|
5116 |
+
#: app/features/mec/single.php:386 app/features/search.php:86
|
5117 |
+
#: app/features/speakers.php:60 app/features/speakers.php:283
|
5118 |
+
#: app/libraries/main.php:6161 app/libraries/main.php:6214
|
5119 |
+
#: app/libraries/skins.php:1010 app/modules/speakers/details.php:18
|
5120 |
msgid "Speaker"
|
5121 |
msgstr "Sprecher"
|
5122 |
|
5132 |
#: app/features/mec/meta_boxes/search_form.php:683
|
5133 |
#: app/features/mec/meta_boxes/search_form.php:789
|
5134 |
#: app/features/mec/settings.php:949 app/features/mec/single.php:353
|
5135 |
+
#: app/features/mec/single.php:395 app/features/search.php:92
|
5136 |
+
#: app/libraries/skins.php:1036
|
5137 |
msgid "Tag"
|
5138 |
msgstr "Schlagwort"
|
5139 |
|
5225 |
"new menu on the Dashboard > MEC"
|
5226 |
msgstr ""
|
5227 |
|
5228 |
+
#: app/features/mec/modules.php:66 app/libraries/main.php:576
|
5229 |
#, fuzzy
|
5230 |
#| msgid "Google Maps Options"
|
5231 |
msgid "Map Options"
|
5314 |
msgstr ""
|
5315 |
"Checken Sie es nur wenn ein anderes plugin/Thema die Google Maps API lädt."
|
5316 |
|
5317 |
+
#: app/features/mec/modules.php:167 app/libraries/main.php:577
|
5318 |
msgid "Export Options"
|
5319 |
msgstr "Export Optionen"
|
5320 |
|
5329 |
msgid "Google Calendar"
|
5330 |
msgstr "Google Calendar"
|
5331 |
|
5332 |
+
#: app/features/mec/modules.php:194 app/libraries/main.php:578
|
5333 |
#: app/modules/local-time/details.php:45 app/modules/local-time/type1.php:42
|
5334 |
#: app/widgets/single.php:99
|
5335 |
msgid "Local Time"
|
5341 |
"Zeige die Eventzeit basierend auf der Ortszeit des Besuchers auf der "
|
5342 |
"Eventseite"
|
5343 |
|
5344 |
+
#: app/features/mec/modules.php:208 app/libraries/main.php:579
|
5345 |
#: app/modules/qrcode/details.php:38 app/widgets/single.php:155
|
5346 |
msgid "QR Code"
|
5347 |
msgstr "QR Code"
|
5352 |
"Zeigen Sie QR-Code des Events in der Detailseite und in der Buchungsrechnung "
|
5353 |
"an"
|
5354 |
|
5355 |
+
#: app/features/mec/modules.php:226 app/libraries/main.php:580
|
5356 |
#: app/modules/weather/darksky.php:15 app/modules/weather/weatherapi.php:16
|
5357 |
msgid "Weather"
|
5358 |
msgstr "Wetter"
|
5393 |
msgid "Show social network module"
|
5394 |
msgstr "Modul für Soziale Netzwerke anzeigen"
|
5395 |
|
5396 |
+
#: app/features/mec/modules.php:299 app/libraries/main.php:582
|
5397 |
#: app/modules/next-event/details.php:127
|
5398 |
msgid "Next Event"
|
5399 |
msgstr "Nächstes Event"
|
6007 |
msgid "Add to Google Calendar Links for next 20 occurrences"
|
6008 |
msgstr ""
|
6009 |
|
6010 |
+
#: app/features/mec/notifications.php:158 app/libraries/main.php:595
|
6011 |
msgid "Booking Verification"
|
6012 |
msgstr "Verifizierung der Buchung"
|
6013 |
|
6050 |
msgstr "Link zur Stornierung der Buchung"
|
6051 |
|
6052 |
#: app/features/mec/notifications.php:395 app/features/notifications.php:158
|
6053 |
+
#: app/libraries/main.php:597
|
6054 |
msgid "Booking Cancellation"
|
6055 |
msgstr "Buchung stornieren"
|
6056 |
|
6083 |
msgid "Admin booking management link."
|
6084 |
msgstr "Admin-link zur Buchungsverwaltung"
|
6085 |
|
6086 |
+
#: app/features/mec/notifications.php:516 app/libraries/main.php:599
|
6087 |
msgid "Admin"
|
6088 |
msgstr "Admin"
|
6089 |
|
6100 |
"Informieren, dass eine neue Buchung eingegangen ist."
|
6101 |
|
6102 |
#: app/features/mec/notifications.php:636 app/features/notifications.php:164
|
6103 |
+
#: app/libraries/main.php:598 app/libraries/notifications.php:596
|
6104 |
msgid "Booking Reminder"
|
6105 |
msgstr "Buchungs Erinnerung"
|
6106 |
|
6130 |
msgid "only once per hour"
|
6131 |
msgstr "nur einmal pro Tag"
|
6132 |
|
6133 |
+
#: app/features/mec/notifications.php:699 app/libraries/main.php:7241
|
6134 |
+
#: app/libraries/main.php:7258
|
6135 |
#, fuzzy
|
6136 |
#| msgid "Hour"
|
6137 |
msgid "Hours"
|
6146 |
msgstr ""
|
6147 |
|
6148 |
#: app/features/mec/notifications.php:768 app/features/popup/event.php:253
|
6149 |
+
#: app/libraries/main.php:587
|
6150 |
msgid "New Event"
|
6151 |
msgstr "Neue Veranstaltung"
|
6152 |
|
6192 |
msgid "Admin events management link."
|
6193 |
msgstr "Admin-link zur Veranstaltungsverwaltung"
|
6194 |
|
6195 |
+
#: app/features/mec/notifications.php:858 app/libraries/main.php:588
|
6196 |
msgid "User Event Publishing"
|
6197 |
msgstr "Nutzer Event wurde veröffentlicht."
|
6198 |
|
6212 |
"Wird nach dem Hinzufügen einer neuen Veranstaltung aus der Frontend-"
|
6213 |
"Übermittlung oder dem Backend versandt."
|
6214 |
|
6215 |
+
#: app/features/mec/notifications.php:940 app/libraries/main.php:602
|
6216 |
#, fuzzy
|
6217 |
#| msgid "Notifications"
|
6218 |
msgid "Notifications Per Event"
|
6396 |
msgstr ""
|
6397 |
|
6398 |
#: app/features/mec/settings.php:163 app/features/mec/settings.php:173
|
6399 |
+
#: app/libraries/main.php:6165 app/libraries/main.php:6218
|
6400 |
msgid "Weekdays"
|
6401 |
msgstr "Wochentage"
|
6402 |
|
7192 |
msgid "Custom Fields"
|
7193 |
msgstr "Benutzerdefinierte Stile"
|
7194 |
|
7195 |
+
#: app/features/mec/single.php:192 app/libraries/main.php:3334
|
7196 |
msgid "URL"
|
7197 |
msgstr ""
|
7198 |
|
7274 |
"bearbeiten und auf der Seite für einzelne Events an."
|
7275 |
|
7276 |
#: app/features/mec/single.php:318 app/libraries/main.php:560
|
7277 |
+
#: app/skins/single.php:166 app/skins/single.php:418
|
7278 |
msgid "Related Events"
|
7279 |
msgstr "Vorgeschlagene Veranstaltungen"
|
7280 |
|
7282 |
msgid "Display related events based on taxonomy in single event page."
|
7283 |
msgstr ""
|
7284 |
|
7285 |
+
#: app/features/mec/single.php:328 app/features/mec/single.php:370
|
7286 |
#, fuzzy
|
7287 |
#| msgid "Taxonomies"
|
7288 |
msgid "Select Taxonomies:"
|
7289 |
msgstr "Klassifizierung "
|
7290 |
|
7291 |
+
#: app/features/mec/single.php:360 app/libraries/main.php:561
|
7292 |
+
#, fuzzy
|
7293 |
+
#| msgid "Next/Previous Buttons"
|
7294 |
+
msgid "Next / Previous Events"
|
7295 |
+
msgstr "Schaltfläche \"Nächste/Letzte\""
|
7296 |
+
|
7297 |
+
#: app/features/mec/single.php:364
|
7298 |
+
msgid "Display next / previous events based on taxonomy in single event page."
|
7299 |
+
msgstr ""
|
7300 |
+
|
7301 |
+
#: app/features/mec/single.php:402 app/libraries/main.php:603
|
7302 |
#, fuzzy
|
7303 |
#| msgid "Next Occurrence"
|
7304 |
msgid "Edit Per Occurrences"
|
7305 |
msgstr "Nächstes Event"
|
7306 |
|
7307 |
+
#: app/features/mec/single.php:406
|
7308 |
msgid "Ability to edit some event information per occurrence"
|
7309 |
msgstr ""
|
7310 |
|
7506 |
msgid "MEC Settings"
|
7507 |
msgstr "MEC - Einstellungen"
|
7508 |
|
7509 |
+
#: app/features/mec/support-page.php:99 app/libraries/main.php:655
|
7510 |
#, fuzzy
|
7511 |
#| msgid "Single Event Style"
|
7512 |
msgid "Single Event"
|
7871 |
msgid "Create a support ticket"
|
7872 |
msgstr "Erstelle ein Support-Ticket"
|
7873 |
|
7874 |
+
#: app/features/mec/support.php:52 app/libraries/main.php:801
|
7875 |
msgid "Styling Options"
|
7876 |
msgstr "Styling-Optionen"
|
7877 |
|
7878 |
+
#: app/features/mec/support.php:59 app/libraries/main.php:808
|
7879 |
msgid "Custom CSS"
|
7880 |
msgstr "Custom CSS"
|
7881 |
|
8139 |
msgid "eg. https://webnus.net"
|
8140 |
msgstr "http://webnus.net"
|
8141 |
|
8142 |
+
#: app/features/organizers.php:312 app/libraries/main.php:6192
|
8143 |
+
#: app/libraries/main.php:6239 app/skins/single.php:1290
|
8144 |
msgid "Other Organizers"
|
8145 |
msgstr "Andere Veranstalter"
|
8146 |
|
8218 |
|
8219 |
#: app/features/popup/event.php:262 app/features/popup/shortcode.php:550
|
8220 |
#: app/modules/booking/steps/form.php:350
|
8221 |
+
#: app/modules/booking/steps/tickets.php:171 app/skins/countdown/tpl.php:123
|
8222 |
+
#: app/skins/countdown/tpl.php:169 app/skins/countdown/tpl.php:216
|
8223 |
msgid "Next"
|
8224 |
msgstr "Weiter"
|
8225 |
|
8330 |
msgid "Please %s/%s in order to see your bookings / profile."
|
8331 |
msgstr "Um neue Veranstaltungen einzugeben, bitte %s/%s"
|
8332 |
|
8333 |
+
#: app/features/profile/profile.php:20 app/libraries/main.php:2444
|
8334 |
msgid "Your booking already canceled!"
|
8335 |
msgstr "Ihre Buchung wurde bereits storniert."
|
8336 |
|
8338 |
msgid "#"
|
8339 |
msgstr ""
|
8340 |
|
8341 |
+
#: app/features/profile/profile.php:61 app/libraries/main.php:3666
|
8342 |
msgid "Status"
|
8343 |
msgstr ""
|
8344 |
|
8345 |
+
#: app/features/profile/profile.php:64 app/libraries/main.php:2642
|
8346 |
msgid "Attendees"
|
8347 |
msgstr "Teilnehmer"
|
8348 |
|
8402 |
msgid "No search result."
|
8403 |
msgstr "Kein Suchergebnis"
|
8404 |
|
8405 |
+
#: app/features/search_bar/search_result.php:12 app/libraries/main.php:6194
|
8406 |
+
#: app/libraries/main.php:6241 app/libraries/notifications.php:1025
|
8407 |
#: app/libraries/render.php:518 app/libraries/render.php:838
|
8408 |
#: app/modules/local-time/details.php:50 app/modules/local-time/type1.php:45
|
8409 |
#: app/modules/local-time/type2.php:47 app/modules/local-time/type3.php:45
|
8410 |
+
#: app/modules/next-event/details.php:145 app/skins/single.php:1182
|
8411 |
#: app/skins/single/default.php:124 app/skins/single/default.php:358
|
8412 |
#: app/skins/single/m1.php:46 app/skins/single/modern.php:222
|
8413 |
#, fuzzy
|
8433 |
msgstr "Veranstalter Email-Adresse hinzufügen"
|
8434 |
|
8435 |
#: app/features/speakers.php:135 app/features/speakers.php:208
|
8436 |
+
#: app/skins/single.php:1264 app/skins/single.php:1323
|
8437 |
#: app/skins/single/default.php:202 app/skins/single/default.php:268
|
8438 |
#: app/skins/single/default.php:435 app/skins/single/default.php:501
|
8439 |
#: app/skins/single/m1.php:126 app/skins/single/m1.php:180
|
8510 |
"section and speaker widget section!"
|
8511 |
msgstr ""
|
8512 |
|
8513 |
+
#: app/features/wc.php:102 app/libraries/notifications.php:1010
|
8514 |
+
#: app/libraries/notifications.php:1025 app/libraries/notifications.php:1036
|
8515 |
+
#: app/libraries/notifications.php:1304 app/libraries/notifications.php:1305
|
8516 |
#, php-format
|
8517 |
msgid "%s to %s"
|
8518 |
msgstr "%s zu %s"
|
8556 |
msgid "day"
|
8557 |
msgstr "Tag"
|
8558 |
|
8559 |
+
#: app/libraries/factory.php:377 app/modules/countdown/details.php:142
|
8560 |
+
#: app/skins/available_spot/tpl.php:147 app/skins/countdown/tpl.php:137
|
8561 |
+
#: app/skins/countdown/tpl.php:183 app/skins/countdown/tpl.php:234
|
8562 |
msgid "days"
|
8563 |
msgstr "Tage"
|
8564 |
|
8566 |
msgid "hour"
|
8567 |
msgstr "Stunde"
|
8568 |
|
8569 |
+
#: app/libraries/factory.php:379 app/modules/countdown/details.php:149
|
8570 |
+
#: app/skins/available_spot/tpl.php:151 app/skins/countdown/tpl.php:143
|
8571 |
+
#: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:240
|
8572 |
msgid "hours"
|
8573 |
msgstr "Stunden"
|
8574 |
|
8576 |
msgid "minute"
|
8577 |
msgstr "Minute"
|
8578 |
|
8579 |
+
#: app/libraries/factory.php:381 app/modules/countdown/details.php:156
|
8580 |
+
#: app/skins/available_spot/tpl.php:155 app/skins/countdown/tpl.php:149
|
8581 |
+
#: app/skins/countdown/tpl.php:195 app/skins/countdown/tpl.php:246
|
8582 |
msgid "minutes"
|
8583 |
msgstr "Minuten"
|
8584 |
|
8586 |
msgid "second"
|
8587 |
msgstr "Sekunde"
|
8588 |
|
8589 |
+
#: app/libraries/factory.php:383 app/modules/countdown/details.php:163
|
8590 |
+
#: app/skins/available_spot/tpl.php:159 app/skins/countdown/tpl.php:155
|
8591 |
+
#: app/skins/countdown/tpl.php:201 app/skins/countdown/tpl.php:252
|
8592 |
msgid "seconds"
|
8593 |
msgstr "Sekunden"
|
8594 |
|
8606 |
"Eine Vorschau kann nicht angezeit werden, da es sich um einen geschützen "
|
8607 |
"Beitrag handelt."
|
8608 |
|
8609 |
+
#: app/libraries/main.php:337 app/libraries/main.php:2057
|
8610 |
+
#: app/libraries/main.php:2082
|
8611 |
msgid "Agenda View"
|
8612 |
msgstr "Agendaansicht"
|
8613 |
|
8614 |
+
#: app/libraries/main.php:338 app/libraries/main.php:2048
|
8615 |
+
#: app/libraries/main.php:2073
|
8616 |
msgid "Full Calendar"
|
8617 |
msgstr "Ganzer Kalender"
|
8618 |
|
8619 |
+
#: app/libraries/main.php:340 app/libraries/main.php:2050
|
8620 |
+
#: app/libraries/main.php:2075
|
8621 |
msgid "Calendar/Monthly View"
|
8622 |
msgstr "Kalender-/Monatsansicht"
|
8623 |
|
8624 |
+
#: app/libraries/main.php:343 app/libraries/main.php:2053
|
8625 |
+
#: app/libraries/main.php:2078
|
8626 |
msgid "Timetable View"
|
8627 |
msgstr "Stundenplan"
|
8628 |
|
8629 |
+
#: app/libraries/main.php:344 app/libraries/main.php:2054
|
8630 |
+
#: app/libraries/main.php:2079
|
8631 |
msgid "Masonry View"
|
8632 |
msgstr "Kachel Ansicht"
|
8633 |
|
8634 |
+
#: app/libraries/main.php:345 app/libraries/main.php:2058
|
8635 |
+
#: app/libraries/main.php:2083
|
8636 |
msgid "Map View"
|
8637 |
msgstr "Kartenansicht"
|
8638 |
|
8662 |
msgid "Timeline View"
|
8663 |
msgstr "Stundenplan"
|
8664 |
|
8665 |
+
#: app/libraries/main.php:390 app/libraries/main.php:6167
|
8666 |
+
#: app/libraries/main.php:6220
|
8667 |
msgid "SU"
|
8668 |
msgstr "SO"
|
8669 |
|
8670 |
+
#: app/libraries/main.php:391 app/libraries/main.php:6168
|
8671 |
+
#: app/libraries/main.php:6221
|
8672 |
msgid "MO"
|
8673 |
msgstr "MO"
|
8674 |
|
8675 |
+
#: app/libraries/main.php:392 app/libraries/main.php:6169
|
8676 |
+
#: app/libraries/main.php:6222
|
8677 |
msgid "TU"
|
8678 |
msgstr "DI"
|
8679 |
|
8680 |
+
#: app/libraries/main.php:393 app/libraries/main.php:6170
|
8681 |
+
#: app/libraries/main.php:6223
|
8682 |
msgid "WE"
|
8683 |
msgstr "MI"
|
8684 |
|
8685 |
+
#: app/libraries/main.php:394 app/libraries/main.php:6171
|
8686 |
+
#: app/libraries/main.php:6224
|
8687 |
msgid "TH"
|
8688 |
msgstr "DO"
|
8689 |
|
8690 |
+
#: app/libraries/main.php:395 app/libraries/main.php:6172
|
8691 |
+
#: app/libraries/main.php:6225
|
8692 |
msgid "FR"
|
8693 |
msgstr "FR"
|
8694 |
|
8695 |
+
#: app/libraries/main.php:396 app/libraries/main.php:6173
|
8696 |
+
#: app/libraries/main.php:6226
|
8697 |
msgid "SA"
|
8698 |
msgstr "SA"
|
8699 |
|
8707 |
msgid "Additional Locations"
|
8708 |
msgstr "Zusätzliche Locations"
|
8709 |
|
8710 |
+
#: app/libraries/main.php:721
|
8711 |
#, fuzzy
|
8712 |
#| msgid "Social Module : "
|
8713 |
msgid "Modules"
|
8714 |
msgstr "Social Modul:"
|
8715 |
|
8716 |
+
#: app/libraries/main.php:889
|
8717 |
msgid "New Addons For MEC! Now Customize MEC in Elementor"
|
8718 |
msgstr ""
|
8719 |
|
8720 |
+
#: app/libraries/main.php:896
|
8721 |
msgid ""
|
8722 |
"The time has come at last, and the new practical add-ons for MEC have been "
|
8723 |
"released. This is a revolution in the world of Event Calendars. We have "
|
8725 |
"below:"
|
8726 |
msgstr ""
|
8727 |
|
8728 |
+
#: app/libraries/main.php:898
|
8729 |
msgid ""
|
8730 |
"<strong>WooCommerce Integration:</strong> You can now purchase ticket (as "
|
8731 |
"products) and Woo products at the same time."
|
8732 |
msgstr ""
|
8733 |
|
8734 |
+
#: app/libraries/main.php:899
|
8735 |
msgid ""
|
8736 |
"<strong>Event API:</strong> display your events (shortcodes/single event) on "
|
8737 |
"other websites without MEC. Use JSON output features to make your Apps "
|
8738 |
"compatible with MEC."
|
8739 |
msgstr ""
|
8740 |
|
8741 |
+
#: app/libraries/main.php:900
|
8742 |
msgid ""
|
8743 |
"<strong>Multisite Event Sync:</strong> Sync events between your subsites and "
|
8744 |
"main websites. Changes in the main one will be inherited by the subsites. "
|
8745 |
"you can set these up in the admin panel."
|
8746 |
msgstr ""
|
8747 |
|
8748 |
+
#: app/libraries/main.php:901
|
8749 |
msgid ""
|
8750 |
"<strong>User Dashboard:</strong> Create exclusive pages for users. These "
|
8751 |
"pages can contain ticket purchase information, information about registered "
|
8752 |
"events. Users can now log in to purchase tickets."
|
8753 |
msgstr ""
|
8754 |
|
8755 |
+
#: app/libraries/main.php:903
|
8756 |
msgid "find out more"
|
8757 |
msgstr ""
|
8758 |
|
8759 |
+
#: app/libraries/main.php:1774
|
8760 |
msgid "Events at this location"
|
8761 |
msgstr "Veranstaltungen an diesem Ort "
|
8762 |
|
8763 |
+
#: app/libraries/main.php:1774
|
8764 |
msgid "Event at this location"
|
8765 |
msgstr "Veranstaltung an diesem Ort "
|
8766 |
|
8767 |
+
#: app/libraries/main.php:1826
|
8768 |
msgid "Facebook"
|
8769 |
msgstr "Facebook"
|
8770 |
|
8771 |
+
#: app/libraries/main.php:1827
|
8772 |
msgid "Twitter"
|
8773 |
msgstr "Twitter"
|
8774 |
|
8775 |
+
#: app/libraries/main.php:1828 app/libraries/main.php:1885
|
8776 |
msgid "Linkedin"
|
8777 |
msgstr "Linkedin"
|
8778 |
|
8779 |
+
#: app/libraries/main.php:1829 app/libraries/main.php:1921
|
8780 |
msgid "VK"
|
8781 |
msgstr ""
|
8782 |
|
8783 |
+
#: app/libraries/main.php:1830
|
8784 |
msgid "Tumblr"
|
8785 |
msgstr ""
|
8786 |
|
8787 |
+
#: app/libraries/main.php:1831
|
8788 |
msgid "Pinterest"
|
8789 |
msgstr ""
|
8790 |
|
8791 |
+
#: app/libraries/main.php:1832
|
8792 |
msgid "Flipboard"
|
8793 |
msgstr ""
|
8794 |
|
8795 |
+
#: app/libraries/main.php:1833
|
8796 |
#, fuzzy
|
8797 |
#| msgid "Tickets"
|
8798 |
msgid "GetPocket"
|
8799 |
msgstr "Tickets"
|
8800 |
|
8801 |
+
#: app/libraries/main.php:1834
|
8802 |
msgid "Reddit"
|
8803 |
msgstr ""
|
8804 |
|
8805 |
+
#: app/libraries/main.php:1835
|
8806 |
msgid "WhatsApp"
|
8807 |
msgstr ""
|
8808 |
|
8809 |
+
#: app/libraries/main.php:1836
|
8810 |
msgid "Telegram"
|
8811 |
msgstr ""
|
8812 |
|
8813 |
+
#: app/libraries/main.php:1855
|
8814 |
msgid "Share on Facebook"
|
8815 |
msgstr "Teilen auf Facebook"
|
8816 |
|
8817 |
+
#: app/libraries/main.php:1870
|
8818 |
msgid "Tweet"
|
8819 |
msgstr "Tweet"
|
8820 |
|
8821 |
+
#: app/libraries/main.php:1936
|
8822 |
#, fuzzy
|
8823 |
#| msgid "Share on Facebook"
|
8824 |
msgid "Share on Tumblr"
|
8825 |
msgstr "Teilen auf Facebook"
|
8826 |
|
8827 |
+
#: app/libraries/main.php:1952
|
8828 |
msgid "Share on Pinterest"
|
8829 |
msgstr ""
|
8830 |
|
8831 |
+
#: app/libraries/main.php:1968
|
8832 |
#, fuzzy
|
8833 |
#| msgid "Share on Facebook"
|
8834 |
msgid "Share on Flipboard"
|
8835 |
msgstr "Teilen auf Facebook"
|
8836 |
|
8837 |
+
#: app/libraries/main.php:1986
|
8838 |
#, fuzzy
|
8839 |
#| msgid "Share on Facebook"
|
8840 |
msgid "Share on GetPocket"
|
8841 |
msgstr "Teilen auf Facebook"
|
8842 |
|
8843 |
+
#: app/libraries/main.php:2002
|
8844 |
#, fuzzy
|
8845 |
#| msgid "Share on Facebook"
|
8846 |
msgid "Share on Reddit"
|
8847 |
msgstr "Teilen auf Facebook"
|
8848 |
|
8849 |
+
#: app/libraries/main.php:2018
|
8850 |
msgid "Share on Telegram"
|
8851 |
msgstr ""
|
8852 |
|
8853 |
+
#: app/libraries/main.php:2036
|
8854 |
msgid "Share on WhatsApp"
|
8855 |
msgstr ""
|
8856 |
|
8857 |
+
#: app/libraries/main.php:2059
|
8858 |
#, fuzzy
|
8859 |
#| msgid "Shortcode"
|
8860 |
msgid "Custom Shortcode"
|
8861 |
msgstr "Shortcode"
|
8862 |
|
8863 |
+
#: app/libraries/main.php:2424
|
8864 |
msgid "Your booking already verified!"
|
8865 |
msgstr "Ihre Buchung wurde bereits verifiziert."
|
8866 |
|
8867 |
+
#: app/libraries/main.php:2429
|
8868 |
msgid "Your booking successfully verified."
|
8869 |
msgstr "Ihre Buchung wurde erfolgreich verifiziert."
|
8870 |
|
8871 |
+
#: app/libraries/main.php:2430
|
8872 |
msgid "Your booking cannot verify!"
|
8873 |
msgstr "Ihre Buchung kann nicht verifiziert werden!"
|
8874 |
|
8875 |
+
#: app/libraries/main.php:2455
|
8876 |
#, fuzzy
|
8877 |
#| msgid "The event is finished."
|
8878 |
msgid "The event is already finished!"
|
8879 |
msgstr "Das Event ist beendet"
|
8880 |
|
8881 |
+
#: app/libraries/main.php:2473
|
8882 |
msgid "The cancelation window is passed."
|
8883 |
msgstr ""
|
8884 |
|
8885 |
+
#: app/libraries/main.php:2479
|
8886 |
msgid "Your booking successfully canceled."
|
8887 |
msgstr "Ihre Buchung wurde erfolgreich storniert."
|
8888 |
|
8889 |
+
#: app/libraries/main.php:2480
|
8890 |
msgid "Your booking cannot be canceled."
|
8891 |
msgstr "Ihre Buchung kann nicht storniert werden."
|
8892 |
|
8893 |
+
#: app/libraries/main.php:2484
|
8894 |
msgid "You canceled the payment successfully."
|
8895 |
msgstr "Sie haben die Zahlung erfolgreich storniert."
|
8896 |
|
8897 |
+
#: app/libraries/main.php:2488
|
8898 |
msgid "You returned from payment gateway successfully."
|
8899 |
msgstr "Sie sind vom Bezahlungs-Gateway erfolgreich zurückgekehrt."
|
8900 |
|
8901 |
+
#: app/libraries/main.php:2507
|
8902 |
msgid "Cannot find the invoice!"
|
8903 |
msgstr "Die Buchung kann nicht gefunden werden."
|
8904 |
|
8905 |
+
#: app/libraries/main.php:2507
|
8906 |
msgid "Invoice is invalid."
|
8907 |
msgstr "Die Buchung ist ungültig."
|
8908 |
|
8909 |
+
#: app/libraries/main.php:2527
|
8910 |
msgid ""
|
8911 |
"Your booking still is not confirmed. You can download it after confirmation!"
|
8912 |
msgstr ""
|
8913 |
|
8914 |
+
#: app/libraries/main.php:2527
|
8915 |
msgid "Booking Not Confirmed."
|
8916 |
msgstr "Die Buchung ist nicht Bestätigt."
|
8917 |
|
8918 |
+
#: app/libraries/main.php:2533
|
8919 |
msgid "Cannot find the booking!"
|
8920 |
msgstr "Die Buchung kann nicht gefunden werden!"
|
8921 |
|
8922 |
+
#: app/libraries/main.php:2533
|
8923 |
msgid "Booking is invalid."
|
8924 |
msgstr "Buchung ist ungültig."
|
8925 |
|
8926 |
+
#: app/libraries/main.php:2566
|
8927 |
#, php-format
|
8928 |
msgid "%s Invoice"
|
8929 |
msgstr "% s Rechnung"
|
8930 |
|
8931 |
+
#: app/libraries/main.php:2599
|
8932 |
#, fuzzy
|
8933 |
#| msgid "Date And Time"
|
8934 |
msgid "Date & Time"
|
8935 |
msgstr "Datum und Uhrzeit"
|
8936 |
|
8937 |
+
#: app/libraries/main.php:2616
|
8938 |
#, fuzzy
|
8939 |
#| msgid "Booking Price"
|
8940 |
msgid "Booking Fields"
|
8941 |
msgstr "Buchungspreis"
|
8942 |
|
8943 |
+
#: app/libraries/main.php:2688
|
8944 |
msgid "Billing"
|
8945 |
msgstr "Abrechnung"
|
8946 |
|
8947 |
+
#: app/libraries/main.php:2700
|
8948 |
#, fuzzy
|
8949 |
#| msgid "Coupon"
|
8950 |
msgid "Coupon Code"
|
8951 |
msgstr "Gutschein"
|
8952 |
|
8953 |
+
#: app/libraries/main.php:2705
|
8954 |
msgid "Total"
|
8955 |
msgstr "Gesamt"
|
8956 |
|
8957 |
+
#: app/libraries/main.php:2712
|
8958 |
msgid "Payment"
|
8959 |
msgstr "Bezahlung"
|
8960 |
|
8961 |
+
#: app/libraries/main.php:2716
|
8962 |
msgid "Gateway"
|
8963 |
msgstr "Gateway"
|
8964 |
|
8965 |
+
#: app/libraries/main.php:2729
|
8966 |
msgid "Payment Time"
|
8967 |
msgstr "Bezahlung "
|
8968 |
|
8969 |
+
#: app/libraries/main.php:2871
|
8970 |
msgid "Request is not valid."
|
8971 |
msgstr "Die Anfrage ist ungültig!"
|
8972 |
|
8973 |
+
#: app/libraries/main.php:2871
|
8974 |
msgid "iCal export stopped!"
|
8975 |
msgstr "iCal Export wurde unterbrochen!"
|
8976 |
|
8977 |
+
#: app/libraries/main.php:3217 app/libraries/main.php:3246
|
8978 |
+
#: app/libraries/main.php:3275 app/libraries/main.php:3304
|
8979 |
+
#: app/libraries/main.php:3333 app/libraries/main.php:3362
|
8980 |
+
#: app/libraries/main.php:3391 app/libraries/main.php:3420
|
8981 |
+
#: app/libraries/main.php:3449 app/libraries/main.php:3478
|
8982 |
+
#: app/libraries/main.php:3501 app/libraries/main.php:3547
|
8983 |
+
#: app/libraries/main.php:3593 app/libraries/main.php:3642
|
8984 |
+
#: app/libraries/main.php:3691
|
8985 |
msgid "Sort"
|
8986 |
msgstr "Sortieren"
|
8987 |
|
8988 |
+
#: app/libraries/main.php:3224 app/libraries/main.php:3253
|
8989 |
+
#: app/libraries/main.php:3282 app/libraries/main.php:3311
|
8990 |
+
#: app/libraries/main.php:3340 app/libraries/main.php:3369
|
8991 |
+
#: app/libraries/main.php:3398 app/libraries/main.php:3427
|
8992 |
+
#: app/libraries/main.php:3456 app/libraries/main.php:3508
|
8993 |
+
#: app/libraries/main.php:3554 app/libraries/main.php:3600
|
8994 |
+
#: app/libraries/main.php:3649
|
8995 |
msgid "Required Field"
|
8996 |
msgstr "Pflichtfeld"
|
8997 |
|
8998 |
+
#: app/libraries/main.php:3230 app/libraries/main.php:3259
|
8999 |
+
#: app/libraries/main.php:3288 app/libraries/main.php:3317
|
9000 |
+
#: app/libraries/main.php:3346 app/libraries/main.php:3375
|
9001 |
+
#: app/libraries/main.php:3404 app/libraries/main.php:3433
|
9002 |
+
#: app/libraries/main.php:3462 app/libraries/main.php:3514
|
9003 |
+
#: app/libraries/main.php:3560 app/libraries/main.php:3606
|
9004 |
+
#: app/libraries/main.php:3655
|
9005 |
msgid "Insert a label for this field"
|
9006 |
msgstr "Geben Sie eine Bezeichnung (Label) für dieses Feld ein."
|
9007 |
|
9008 |
+
#: app/libraries/main.php:3484
|
9009 |
msgid "HTML and shortcode are allowed."
|
9010 |
msgstr "HTML und shortcodes sind erlaubt."
|
9011 |
|
9012 |
+
#: app/libraries/main.php:3527 app/libraries/main.php:3573
|
9013 |
+
#: app/libraries/main.php:3619
|
9014 |
msgid "Option"
|
9015 |
msgstr "Option"
|
9016 |
|
9017 |
+
#: app/libraries/main.php:3655
|
9018 |
#, php-format
|
9019 |
msgid "Instead of %s, the page title with a link will be show."
|
9020 |
msgstr "Anstelle von %s, wird der Seitentitel mit einem Link gezeigt"
|
9021 |
|
9022 |
+
#: app/libraries/main.php:3657
|
9023 |
msgid "Agreement Page"
|
9024 |
msgstr "Zustimmungsseite"
|
9025 |
|
9026 |
+
#: app/libraries/main.php:3668
|
9027 |
msgid "Checked by default"
|
9028 |
msgstr ""
|
9029 |
|
9030 |
+
#: app/libraries/main.php:3669
|
9031 |
msgid "Unchecked by default"
|
9032 |
msgstr ""
|
9033 |
|
9034 |
+
#: app/libraries/main.php:3693
|
9035 |
msgid "Insert a label for this option"
|
9036 |
msgstr "Ein neues Label für diese Option einfügen"
|
9037 |
|
9038 |
+
#: app/libraries/main.php:3706
|
9039 |
msgid "Free"
|
9040 |
msgstr "kostenfrei"
|
9041 |
|
9042 |
+
#: app/libraries/main.php:4371 app/libraries/main.php:6500
|
9043 |
msgid "M.E. Calender"
|
9044 |
msgstr "M.E. Calender"
|
9045 |
|
9046 |
+
#: app/libraries/main.php:4527
|
9047 |
#, php-format
|
9048 |
msgid "Copy of %s"
|
9049 |
msgstr "Kopie von %s"
|
9050 |
|
9051 |
+
#: app/libraries/main.php:5372
|
9052 |
msgid "Booked an event."
|
9053 |
msgstr "Eine Veranstaltung wurde gebucht."
|
9054 |
|
9055 |
+
#: app/libraries/main.php:5413
|
9056 |
#, php-format
|
9057 |
msgid "%s booked %s event."
|
9058 |
msgstr "%s gebuchtes %s Event"
|
9059 |
|
9060 |
+
#: app/libraries/main.php:6150 app/libraries/main.php:6203
|
9061 |
msgid "Taxonomies"
|
9062 |
msgstr "Klassifizierung "
|
9063 |
|
9064 |
+
#: app/libraries/main.php:6152 app/libraries/main.php:6205
|
9065 |
msgid "Category Plural Label"
|
9066 |
msgstr "Kategorien"
|
9067 |
|
9068 |
+
#: app/libraries/main.php:6153 app/libraries/main.php:6206
|
9069 |
msgid "Category Singular Label"
|
9070 |
msgstr "Kategorie"
|
9071 |
|
9072 |
+
#: app/libraries/main.php:6154 app/libraries/main.php:6207
|
9073 |
msgid "Label Plural Label"
|
9074 |
msgstr "Labels"
|
9075 |
|
9076 |
+
#: app/libraries/main.php:6155 app/libraries/main.php:6208
|
9077 |
msgid "Label Singular Label"
|
9078 |
msgstr "Label"
|
9079 |
|
9080 |
+
#: app/libraries/main.php:6155 app/libraries/main.php:6208
|
9081 |
msgid "label"
|
9082 |
msgstr "label"
|
9083 |
|
9084 |
+
#: app/libraries/main.php:6156 app/libraries/main.php:6209
|
9085 |
msgid "Location Plural Label"
|
9086 |
msgstr "Veranstaltungsorte"
|
9087 |
|
9088 |
+
#: app/libraries/main.php:6157 app/libraries/main.php:6210
|
9089 |
msgid "Location Singular Label"
|
9090 |
msgstr "Veranstaltungsort"
|
9091 |
|
9092 |
+
#: app/libraries/main.php:6158 app/libraries/main.php:6211
|
9093 |
msgid "Organizer Plural Label"
|
9094 |
msgstr "Veranstalter"
|
9095 |
|
9096 |
+
#: app/libraries/main.php:6159 app/libraries/main.php:6212
|
9097 |
msgid "Organizer Singular Label"
|
9098 |
msgstr "Veranstalter"
|
9099 |
|
9100 |
+
#: app/libraries/main.php:6160 app/libraries/main.php:6213
|
9101 |
#, fuzzy
|
9102 |
#| msgid "Label Plural Label"
|
9103 |
msgid "Speaker Plural Label"
|
9104 |
msgstr "Labels"
|
9105 |
|
9106 |
+
#: app/libraries/main.php:6161 app/libraries/main.php:6214
|
9107 |
#, fuzzy
|
9108 |
#| msgid "Label Singular Label"
|
9109 |
msgid "Speaker Singular Label"
|
9110 |
msgstr "Label"
|
9111 |
|
9112 |
+
#: app/libraries/main.php:6167 app/libraries/main.php:6220
|
9113 |
msgid "Sunday abbreviation"
|
9114 |
msgstr "Sonntag Abkürzung"
|
9115 |
|
9116 |
+
#: app/libraries/main.php:6168 app/libraries/main.php:6221
|
9117 |
msgid "Monday abbreviation"
|
9118 |
msgstr "Montag Abkürzung"
|
9119 |
|
9120 |
+
#: app/libraries/main.php:6169 app/libraries/main.php:6222
|
9121 |
msgid "Tuesday abbreviation"
|
9122 |
msgstr "Dienstag Abkürzung"
|
9123 |
|
9124 |
+
#: app/libraries/main.php:6170 app/libraries/main.php:6223
|
9125 |
msgid "Wednesday abbreviation"
|
9126 |
msgstr "Mittwoch Abkürzung"
|
9127 |
|
9128 |
+
#: app/libraries/main.php:6171 app/libraries/main.php:6224
|
9129 |
msgid "Thursday abbreviation"
|
9130 |
msgstr "Donnerstag Abkürzung"
|
9131 |
|
9132 |
+
#: app/libraries/main.php:6172 app/libraries/main.php:6225
|
9133 |
msgid "Friday abbreviation"
|
9134 |
msgstr "Freitag Abkürzung"
|
9135 |
|
9136 |
+
#: app/libraries/main.php:6173 app/libraries/main.php:6226
|
9137 |
msgid "Saturday abbreviation"
|
9138 |
msgstr "Samstag Abkürzung "
|
9139 |
|
9140 |
+
#: app/libraries/main.php:6177 app/libraries/main.php:6230
|
9141 |
msgid "Others"
|
9142 |
msgstr "Andere"
|
9143 |
|
9144 |
+
#: app/libraries/main.php:6179
|
9145 |
msgid "Booking Success Message"
|
9146 |
msgstr "Buchung erfolgreich Mitteilung"
|
9147 |
|
9148 |
+
#: app/libraries/main.php:6179
|
9149 |
#, fuzzy
|
9150 |
#| msgid ""
|
9151 |
#| "Thanks for your booking. Your tickets booked, booking verification might "
|
9157 |
"Vielen Dank für Ihre Buchung. Für die gebuchten Tickets ist ggf. eine "
|
9158 |
"Bestätigung durch Sie erforderlich. Bitte überprüfen Sie Ihre Emails."
|
9159 |
|
9160 |
+
#: app/libraries/main.php:6180
|
9161 |
#, fuzzy
|
9162 |
#| msgid "Booking Success Message"
|
9163 |
msgid "Booking Restriction Message 1"
|
9164 |
msgstr "Buchung erfolgreich Mitteilung"
|
9165 |
|
9166 |
+
#: app/libraries/main.php:6180
|
9167 |
#, php-format
|
9168 |
msgid ""
|
9169 |
"You selected %s tickets to book but maximum number of tikets per user is %s "
|
9170 |
"tickets."
|
9171 |
msgstr ""
|
9172 |
|
9173 |
+
#: app/libraries/main.php:6181
|
9174 |
#, fuzzy
|
9175 |
#| msgid "Booking Success Message"
|
9176 |
msgid "Booking Restriction Message 2"
|
9177 |
msgstr "Buchung erfolgreich Mitteilung"
|
9178 |
|
9179 |
+
#: app/libraries/main.php:6181
|
9180 |
#, php-format
|
9181 |
msgid ""
|
9182 |
"You booked %s tickets till now but maximum number of tickets per user is %s "
|
9183 |
"tickets."
|
9184 |
msgstr ""
|
9185 |
|
9186 |
+
#: app/libraries/main.php:6182
|
9187 |
#, fuzzy
|
9188 |
#| msgid "Booking Success Message"
|
9189 |
msgid "Booking IP Restriction Message"
|
9190 |
msgstr "Buchung erfolgreich Mitteilung"
|
9191 |
|
9192 |
+
#: app/libraries/main.php:6182
|
9193 |
#, php-format
|
9194 |
msgid "Maximum allowed number of tickets that you can book is %s."
|
9195 |
msgstr ""
|
9196 |
|
9197 |
+
#: app/libraries/main.php:6183 app/libraries/main.php:6232
|
9198 |
#: app/widgets/single.php:131
|
9199 |
msgid "Register Button"
|
9200 |
msgstr "Register Button"
|
9201 |
|
9202 |
+
#: app/libraries/main.php:6183 app/libraries/main.php:6232
|
9203 |
#: app/skins/available_spot/tpl.php:208 app/skins/carousel/render.php:106
|
9204 |
#: app/skins/carousel/render.php:144 app/skins/grid/render.php:101
|
9205 |
#: app/skins/grid/render.php:159 app/skins/grid/render.php:217
|
9206 |
#: app/skins/grid/render.php:238 app/skins/list/render.php:70
|
9207 |
#: app/skins/list/render.php:164 app/skins/masonry/render.php:149
|
9208 |
+
#: app/skins/single.php:478 app/skins/single.php:1203 app/skins/single.php:1206
|
9209 |
#: app/skins/single/default.php:287 app/skins/single/default.php:289
|
9210 |
#: app/skins/single/default.php:520 app/skins/single/default.php:522
|
9211 |
#: app/skins/single/m1.php:143 app/skins/single/m1.php:145
|
9217 |
msgid "REGISTER"
|
9218 |
msgstr "ANMELDEN"
|
9219 |
|
9220 |
+
#: app/libraries/main.php:6184 app/libraries/main.php:6233
|
9221 |
msgid "View Detail Button"
|
9222 |
msgstr "Ansicht Detail Button"
|
9223 |
|
9224 |
+
#: app/libraries/main.php:6184 app/libraries/main.php:6233
|
9225 |
#: app/skins/carousel/render.php:106 app/skins/carousel/render.php:144
|
9226 |
#: app/skins/grid/render.php:101 app/skins/grid/render.php:159
|
9227 |
#: app/skins/grid/render.php:217 app/skins/grid/render.php:238
|
9228 |
#: app/skins/list/render.php:70 app/skins/list/render.php:164
|
9229 |
+
#: app/skins/masonry/render.php:149 app/skins/single.php:478
|
9230 |
#: app/skins/slider/render.php:70 app/skins/slider/render.php:93
|
9231 |
#: app/skins/slider/render.php:115 app/skins/slider/render.php:138
|
9232 |
#: app/skins/slider/render.php:172
|
9233 |
msgid "View Detail"
|
9234 |
msgstr "Details "
|
9235 |
|
9236 |
+
#: app/libraries/main.php:6185 app/libraries/main.php:6234
|
9237 |
msgid "Event Detail Button"
|
9238 |
msgstr "Event Detail Button"
|
9239 |
|
9240 |
+
#: app/libraries/main.php:6185 app/libraries/main.php:6234
|
9241 |
msgid "Event Detail"
|
9242 |
msgstr "Veranstaltungsdetails"
|
9243 |
|
9244 |
+
#: app/libraries/main.php:6187 app/libraries/main.php:6236
|
9245 |
msgid "More Info Link"
|
9246 |
msgstr "Link Mehr Informationen"
|
9247 |
|
9248 |
+
#: app/libraries/main.php:6190
|
9249 |
msgid "Ticket (Singular)"
|
9250 |
msgstr "Ticket"
|
9251 |
|
9252 |
+
#: app/libraries/main.php:6191
|
9253 |
msgid "Tickets (Plural)"
|
9254 |
msgstr "Tickets"
|
9255 |
|
9256 |
+
#: app/libraries/main.php:6349
|
9257 |
msgid "EventON"
|
9258 |
msgstr "EventON"
|
9259 |
|
9260 |
+
#: app/libraries/main.php:6350
|
9261 |
msgid "The Events Calendar"
|
9262 |
msgstr "The Events Calendar"
|
9263 |
|
9264 |
+
#: app/libraries/main.php:6351
|
9265 |
msgid "Events Schedule WP Plugin"
|
9266 |
msgstr "Event Zeitplan WP-Plugin"
|
9267 |
|
9268 |
+
#: app/libraries/main.php:6352
|
9269 |
msgid "Calendarize It"
|
9270 |
msgstr ""
|
9271 |
|
9272 |
+
#: app/libraries/main.php:6353
|
9273 |
#, fuzzy
|
9274 |
#| msgid "No Search Options"
|
9275 |
msgid "Event Espresso"
|
9276 |
msgstr "Keine Suchoptionen"
|
9277 |
|
9278 |
+
#: app/libraries/main.php:6354
|
9279 |
msgid "Events Manager (Recurring)"
|
9280 |
msgstr "Wiederholende Veranstaltung"
|
9281 |
|
9282 |
+
#: app/libraries/main.php:6355
|
9283 |
msgid "Events Manager (Single)"
|
9284 |
msgstr "Moderner Event Kalender"
|
9285 |
|
9286 |
+
#: app/libraries/main.php:6439 app/libraries/main.php:6461
|
9287 |
msgid "Pending"
|
9288 |
msgstr "Ausstehend"
|
9289 |
|
9290 |
+
#: app/libraries/main.php:6487
|
9291 |
msgid "Waiting"
|
9292 |
msgstr "in Bearbeitung"
|
9293 |
|
9294 |
+
#: app/libraries/main.php:6530
|
9295 |
#, fuzzy
|
9296 |
#| msgid "Sunday"
|
9297 |
msgid "Sun"
|
9298 |
msgstr "Sonntag"
|
9299 |
|
9300 |
+
#: app/libraries/main.php:6530
|
9301 |
#, fuzzy
|
9302 |
#| msgid "Month"
|
9303 |
msgid "Mon"
|
9304 |
msgstr "Monat "
|
9305 |
|
9306 |
+
#: app/libraries/main.php:6530
|
9307 |
#, fuzzy
|
9308 |
#| msgid "Tel"
|
9309 |
msgid "Tue"
|
9310 |
msgstr "Tel"
|
9311 |
|
9312 |
+
#: app/libraries/main.php:6530
|
9313 |
msgid "Wed"
|
9314 |
msgstr ""
|
9315 |
|
9316 |
+
#: app/libraries/main.php:6530
|
9317 |
msgid "Thu"
|
9318 |
msgstr ""
|
9319 |
|
9320 |
+
#: app/libraries/main.php:6530
|
9321 |
#, fuzzy
|
9322 |
#| msgid "Friday"
|
9323 |
msgid "Fri"
|
9324 |
msgstr "Freitag"
|
9325 |
|
9326 |
+
#: app/libraries/main.php:6530
|
9327 |
#, fuzzy
|
9328 |
#| msgid "Start"
|
9329 |
msgid "Sat"
|
9330 |
msgstr "Start"
|
9331 |
|
9332 |
+
#: app/libraries/main.php:6692 app/libraries/render.php:80
|
9333 |
#: app/libraries/render.php:432
|
9334 |
msgid "Skin controller does not exist."
|
9335 |
msgstr "Skin contoller existiert nicht."
|
9336 |
|
9337 |
+
#: app/libraries/main.php:6907
|
9338 |
msgid "Sold Out"
|
9339 |
msgstr "Ausgebucht"
|
9340 |
|
9341 |
+
#: app/libraries/main.php:6918
|
9342 |
msgid "Last Few Tickets"
|
9343 |
msgstr "Nur noch wenige Tickets verfügbar."
|
9344 |
|
9345 |
+
#: app/libraries/main.php:7247 app/libraries/main.php:7264
|
9346 |
#, fuzzy
|
9347 |
#| msgid "minutes"
|
9348 |
msgid "Minutes"
|
9349 |
msgstr "Minuten"
|
9350 |
|
9351 |
+
#: app/libraries/main.php:7269
|
9352 |
msgid "AM / PM"
|
9353 |
msgstr ""
|
9354 |
|
9355 |
+
#: app/libraries/main.php:7270
|
9356 |
msgid "AM"
|
9357 |
msgstr "AM"
|
9358 |
|
9359 |
+
#: app/libraries/main.php:7271
|
9360 |
msgid "PM"
|
9361 |
msgstr "PM"
|
9362 |
|
9363 |
+
#: app/libraries/main.php:7279
|
9364 |
#, fuzzy
|
9365 |
#| msgid "Loading..."
|
9366 |
msgid "Ongoing..."
|
9367 |
msgstr "Laden…"
|
9368 |
|
9369 |
+
#: app/libraries/main.php:7280
|
9370 |
#, fuzzy
|
9371 |
#| msgid "Expired Events"
|
9372 |
msgid "Expired!"
|
9373 |
msgstr "Abgelaufene Events"
|
9374 |
|
9375 |
+
#: app/libraries/notifications.php:66
|
9376 |
msgid "Please verify your email."
|
9377 |
msgstr "Bitte bestätigen Sie Ihre email."
|
9378 |
|
9379 |
+
#: app/libraries/notifications.php:168
|
9380 |
msgid "Your booking is received."
|
9381 |
msgstr "Ihre Buchung ist eingegangen"
|
9382 |
|
9383 |
+
#: app/libraries/notifications.php:276
|
9384 |
msgid "Your booking is confirmed."
|
9385 |
msgstr "Ihre Buchung wurde bestätigt."
|
9386 |
|
9387 |
+
#: app/libraries/notifications.php:439
|
9388 |
msgid "booking canceled."
|
9389 |
msgstr "Ihre Buchung wurde storniert"
|
9390 |
|
9391 |
+
#: app/libraries/notifications.php:500
|
9392 |
msgid "A new booking is received."
|
9393 |
msgstr "Eine neue Buchung ist eingegangen."
|
9394 |
|
9395 |
+
#: app/libraries/notifications.php:719
|
9396 |
msgid "A new event is added."
|
9397 |
msgstr "Eine neue Veranstaltung wurde hinzugefügt."
|
9398 |
|
9399 |
+
#: app/libraries/notifications.php:834
|
9400 |
msgid "Your event is published."
|
9401 |
msgstr "Die Veranstaltung wurde veröffentlicht."
|
9402 |
|
9403 |
+
#: app/libraries/notifications.php:1248
|
9404 |
msgid "to"
|
9405 |
msgstr ""
|
9406 |
|
9407 |
+
#: app/libraries/notifications.php:1269 app/modules/export/details.php:46
|
9408 |
msgid "+ Add to Google Calendar"
|
9409 |
msgstr "+ zum Google Calendar hinzufügen"
|
9410 |
|
9411 |
+
#: app/libraries/notifications.php:1270 app/modules/export/details.php:47
|
9412 |
#, fuzzy
|
9413 |
#| msgid "+ iCal export"
|
9414 |
msgid "+ iCal / Outlook export"
|
9415 |
msgstr "+ zu iCal exportieren"
|
9416 |
|
9417 |
+
#: app/libraries/notifications.php:1319
|
9418 |
#, fuzzy, php-format
|
9419 |
#| msgid "+ Add to Google Calendar"
|
9420 |
msgid "+ %s to Google Calendar"
|
9421 |
msgstr "+ zum Google Calendar hinzufügen"
|
9422 |
|
9423 |
+
#: app/libraries/notifications.php:1399
|
9424 |
msgid "Yes"
|
9425 |
msgstr "Ja"
|
9426 |
|
9427 |
+
#: app/libraries/notifications.php:1399
|
9428 |
msgid "No"
|
9429 |
msgstr "Nein"
|
9430 |
|
9433 |
msgstr "Auswählen"
|
9434 |
|
9435 |
#: app/libraries/skins.php:1258 app/libraries/skins.php:1259
|
9436 |
+
#: app/modules/booking/steps/tickets.php:94
|
9437 |
msgid "Book Event"
|
9438 |
msgstr "Veranstaltung buchen"
|
9439 |
|
9440 |
+
#: app/libraries/wc.php:302
|
9441 |
+
#, fuzzy
|
9442 |
+
#| msgid "Discount Coupon"
|
9443 |
+
msgid "Discount by WC Coupon"
|
9444 |
+
msgstr "Rabattgutschein"
|
9445 |
+
|
9446 |
#: app/modules/attendees-list/details.php:42
|
9447 |
msgid "Event Attendees"
|
9448 |
msgstr "Event Teilnehmer"
|
9463 |
msgstr[0] "%s tickets"
|
9464 |
msgstr[1] "%s tickets"
|
9465 |
|
9466 |
+
#: app/modules/booking/steps/checkout.php:55
|
9467 |
msgid "Checkout"
|
9468 |
msgstr "Zur Kasse gehen"
|
9469 |
|
9470 |
+
#: app/modules/booking/steps/checkout.php:61
|
9471 |
#, fuzzy
|
9472 |
#| msgid "Ticket Name"
|
9473 |
msgid "Ticket(s) Name"
|
9474 |
msgstr "Ticket Name"
|
9475 |
|
9476 |
+
#: app/modules/booking/steps/checkout.php:62
|
9477 |
msgid "Qty"
|
9478 |
msgstr ""
|
9479 |
|
9480 |
+
#: app/modules/booking/steps/checkout.php:63
|
9481 |
#, fuzzy
|
9482 |
#| msgid "Amount"
|
9483 |
msgid "Amout"
|
9484 |
msgstr "Betrag"
|
9485 |
|
9486 |
+
#: app/modules/booking/steps/checkout.php:88
|
9487 |
#, fuzzy
|
9488 |
#| msgid "Total"
|
9489 |
msgid "Total Due"
|
9490 |
msgstr "Gesamt"
|
9491 |
|
9492 |
+
#: app/modules/booking/steps/checkout.php:109
|
9493 |
msgid "Discount Coupon"
|
9494 |
msgstr "Rabattgutschein"
|
9495 |
|
9496 |
+
#: app/modules/booking/steps/checkout.php:113
|
9497 |
msgid "Apply Coupon"
|
9498 |
msgstr "Gutschein verwenden"
|
9499 |
|
9500 |
+
#: app/modules/booking/steps/checkout.php:138
|
9501 |
#: app/modules/booking/steps/form.php:349
|
9502 |
msgid "Back"
|
9503 |
msgstr "Zurück"
|
9504 |
|
9505 |
+
#: app/modules/booking/steps/checkout.php:146
|
9506 |
msgid "Free Booking"
|
9507 |
msgstr "Kostenlose Buchung"
|
9508 |
|
9523 |
msgstr "API Nutzername"
|
9524 |
|
9525 |
#: app/modules/booking/steps/form.php:350
|
9526 |
+
#: app/modules/booking/steps/tickets.php:171
|
9527 |
msgid "Add to Cart"
|
9528 |
msgstr "in den Warenkorb legen"
|
9529 |
|
9530 |
+
#: app/modules/booking/steps/tickets.php:109
|
9531 |
msgid ""
|
9532 |
"By booking this event you can attend all occurrences. Some of them are "
|
9533 |
"listed below but there might be more."
|
9534 |
msgstr ""
|
9535 |
|
9536 |
+
#: app/modules/booking/steps/tickets.php:128
|
9537 |
#, fuzzy
|
9538 |
#| msgid "No user selected!"
|
9539 |
msgid "1 Ticket selected."
|
9540 |
msgstr "Kein Nutzer ausgewählt"
|
9541 |
|
9542 |
+
#: app/modules/booking/steps/tickets.php:129
|
9543 |
+
#: app/modules/booking/steps/tickets.php:135
|
9544 |
#, php-format
|
9545 |
msgid "Available %s: <span>%s</span>"
|
9546 |
msgstr "Verfügbar %s: <span>%s</span>"
|
9547 |
|
9548 |
+
#: app/modules/booking/steps/tickets.php:140
|
9549 |
#, php-format
|
9550 |
msgid "The %s ticket sales has stopped!"
|
9551 |
msgstr ""
|
9552 |
|
9553 |
+
#: app/modules/booking/steps/tickets.php:141
|
9554 |
#, php-format
|
9555 |
msgid "The %s ticket is sold out. You can try another ticket or another date."
|
9556 |
msgstr ""
|
9557 |
"Der % s ist am gewählten Termin bereits ausgebucht. Bitte anderes Datum "
|
9558 |
"wählen. "
|
9559 |
|
9560 |
+
#: app/modules/countdown/details.php:57
|
9561 |
msgid "The event is finished."
|
9562 |
msgstr "Das Event ist beendet"
|
9563 |
|
9564 |
+
#: app/modules/countdown/details.php:62
|
9565 |
msgid "The event is ongoing."
|
9566 |
msgstr "Die Veranstaltung ist im Gange."
|
9567 |
|
9573 |
msgid "Get Directions"
|
9574 |
msgstr "Wegbeschreibung"
|
9575 |
|
9576 |
+
#: app/modules/links/details.php:17 app/skins/single.php:886
|
9577 |
msgid "Share this event"
|
9578 |
msgstr "Diese Veranstaltung teilen"
|
9579 |
|
9628 |
msgid "Go to occurrence page"
|
9629 |
msgstr "Zum Event"
|
9630 |
|
9631 |
+
#: app/modules/next-event/details.php:139 app/skins/single.php:1176
|
9632 |
#: app/skins/single/default.php:118 app/skins/single/default.php:352
|
9633 |
#: app/skins/single/m1.php:40 app/skins/single/modern.php:216
|
9634 |
msgid "Time"
|
9711 |
msgid "Available Spot(s):"
|
9712 |
msgstr "Verfügbare Spot (s):"
|
9713 |
|
9714 |
+
#: app/skins/carousel/render.php:166 app/skins/countdown/tpl.php:163
|
9715 |
+
#: app/skins/countdown/tpl.php:209 app/skins/countdown/tpl.php:227
|
9716 |
#: app/skins/cover/tpl.php:74 app/skins/list/render.php:95
|
9717 |
msgid "EVENT DETAIL"
|
9718 |
msgstr "VERANSTALTUNGSDETAILS"
|
9721 |
msgid "View All Events"
|
9722 |
msgstr "Zeige alle Veranstaltungen"
|
9723 |
|
9724 |
+
#: app/skins/countdown/tpl.php:123 app/skins/countdown/tpl.php:169
|
9725 |
+
#: app/skins/countdown/tpl.php:216
|
9726 |
#, php-format
|
9727 |
msgid "%s Upcoming Event"
|
9728 |
msgstr "%s Kommendes Event"
|
9769 |
msgid "No Events"
|
9770 |
msgstr "Keine Veranstaltungen"
|
9771 |
|
9772 |
+
#: app/skins/single.php:317
|
9773 |
+
#, fuzzy
|
9774 |
+
#| msgid "View Event"
|
9775 |
+
msgid "PRV Event"
|
9776 |
+
msgstr "Veranstaltung ansehen"
|
9777 |
+
|
9778 |
+
#: app/skins/single.php:322
|
9779 |
+
#, fuzzy
|
9780 |
+
#| msgid "New Event"
|
9781 |
+
msgid "NXT Event"
|
9782 |
+
msgstr "Neue Veranstaltung"
|
9783 |
+
|
9784 |
+
#: app/skins/single.php:519
|
9785 |
msgid "Home"
|
9786 |
msgstr ""
|
9787 |
|
9788 |
+
#: app/skins/single.php:970 app/skins/single/default.php:64
|
9789 |
#: app/skins/single/m1.php:278 app/skins/single/m2.php:199
|
9790 |
#: app/skins/single/modern.php:300
|
9791 |
msgid "Sold out!"
|
9792 |
msgstr "Ausverkauft!"
|
9793 |
|
9794 |
+
#: app/skins/single.php:1250 app/skins/single.php:1309
|
9795 |
#: app/skins/single/default.php:254 app/skins/single/default.php:487
|
9796 |
#: app/skins/single/m1.php:112 app/skins/single/m2.php:35
|
9797 |
#: app/skins/single/modern.php:58
|
9798 |
msgid "Phone"
|
9799 |
msgstr "Phone"
|
9800 |
|
9801 |
+
#: app/skins/single.php:1399
|
9802 |
msgid "Speakers:"
|
9803 |
msgstr "Veranstalter"
|
9804 |
|
Binary file
|
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: modern-events-calendar\n"
|
4 |
-
"POT-Creation-Date: 2020-
|
5 |
-
"PO-Revision-Date: 2020-
|
6 |
"Last-Translator: Howard <howard@realtyna.com>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: en_US\n"
|
@@ -71,7 +71,7 @@ msgstr ""
|
|
71 |
msgid "Select Shortcode"
|
72 |
msgstr ""
|
73 |
|
74 |
-
#: app/features/colors.php:50 app/features/fes/form.php:
|
75 |
#: app/features/mec/settings.php:759
|
76 |
msgid "Event Color"
|
77 |
msgstr ""
|
@@ -83,13 +83,14 @@ msgstr ""
|
|
83 |
#: app/features/contextual.php:55 app/features/mec.php:473
|
84 |
#: app/features/mec/dashboard.php:141 app/features/mec/support.php:20
|
85 |
#: app/features/popup/event.php:60 app/features/popup/shortcode.php:37
|
86 |
-
#: app/libraries/main.php:
|
87 |
msgid "Settings"
|
88 |
msgstr ""
|
89 |
|
90 |
-
#: app/features/contextual.php:62 app/features/events.php:
|
91 |
-
#: app/features/events.php:
|
92 |
-
#: app/features/mec/
|
|
|
93 |
msgid "Booking Form"
|
94 |
msgstr ""
|
95 |
|
@@ -102,9 +103,9 @@ msgid ""
|
|
102 |
"YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
|
103 |
msgstr ""
|
104 |
|
105 |
-
#: app/features/contextual.php:70 app/features/
|
106 |
-
#: app/features/mec/
|
107 |
-
#: app/libraries/main.php:
|
108 |
msgid "Payment Gateways"
|
109 |
msgstr ""
|
110 |
|
@@ -117,7 +118,7 @@ msgstr ""
|
|
117 |
|
118 |
#: app/features/contextual.php:77 app/features/events.php:352
|
119 |
#: app/features/mec/support-page.php:117 app/features/mec/support.php:45
|
120 |
-
#: app/libraries/main.php:
|
121 |
msgid "Notifications"
|
122 |
msgstr ""
|
123 |
|
@@ -214,7 +215,7 @@ msgid "Countdown Options"
|
|
214 |
msgstr ""
|
215 |
|
216 |
#: app/features/contextual.php:268 app/features/mec/modules.php:269
|
217 |
-
#: app/libraries/main.php:
|
218 |
msgid "Social Networks"
|
219 |
msgstr ""
|
220 |
|
@@ -235,18 +236,18 @@ msgstr ""
|
|
235 |
#: app/features/contextual.php:308 app/features/events.php:315
|
236 |
#: app/features/mec/booking.php:96 app/features/mec/notifications.php:36
|
237 |
#: app/features/mec/support-page.php:110 app/features/mec/support-page.php:114
|
238 |
-
#: app/libraries/main.php:
|
239 |
-
#: app/libraries/main.php:
|
240 |
msgid "Booking"
|
241 |
msgstr ""
|
242 |
|
243 |
#: app/features/contextual.php:318 app/features/mec/booking.php:427
|
244 |
-
#: app/features/mec/booking.php:813 app/libraries/main.php:
|
245 |
msgid "Coupons"
|
246 |
msgstr ""
|
247 |
|
248 |
#: app/features/contextual.php:326 app/features/mec/modules.php:335
|
249 |
-
#: app/libraries/main.php:
|
250 |
msgid "BuddyPress Integration"
|
251 |
msgstr ""
|
252 |
|
@@ -259,7 +260,7 @@ msgstr ""
|
|
259 |
msgid "MEC Activation"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: app/features/dlfile.php:121 app/features/events.php:
|
263 |
#: app/features/mec/booking.php:347 app/features/mec/settings.php:831
|
264 |
msgid "Downloadable File"
|
265 |
msgstr ""
|
@@ -301,7 +302,7 @@ msgstr ""
|
|
301 |
#: app/features/mec/meta_boxes/display_options.php:1548
|
302 |
#: app/features/mec/meta_boxes/display_options.php:1642
|
303 |
#: app/features/mec/meta_boxes/display_options.php:1715
|
304 |
-
#: app/features/profile/profile.php:55 app/features/wc.php:
|
305 |
#: app/skins/daily_view/tpl.php:83 app/skins/monthly_view/tpl.php:74
|
306 |
#: app/skins/tile/tpl.php:84 app/skins/yearly_view/tpl.php:72
|
307 |
msgid "Event"
|
@@ -338,7 +339,7 @@ msgstr ""
|
|
338 |
msgid "No events found in Trash!"
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: app/features/events.php:192 app/features/events.php:
|
342 |
#: app/features/mec/meta_boxes/display_options.php:1420
|
343 |
#: app/features/mec/meta_boxes/search_form.php:31
|
344 |
#: app/features/mec/meta_boxes/search_form.php:101
|
@@ -352,19 +353,20 @@ msgstr ""
|
|
352 |
#: app/features/mec/meta_boxes/search_form.php:654
|
353 |
#: app/features/mec/meta_boxes/search_form.php:760
|
354 |
#: app/features/mec/settings.php:923 app/features/mec/single.php:331
|
355 |
-
#: app/features/
|
356 |
-
#: app/libraries/main.php:
|
357 |
-
#: app/skins
|
358 |
-
#: app/skins/single/default.php:
|
359 |
-
#: app/skins/single/
|
|
|
360 |
msgid "Category"
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: app/features/events.php:193 app/features/events.php:
|
364 |
-
#: app/features/fes/form.php:
|
365 |
#: app/features/mec/meta_boxes/filter.php:69
|
366 |
-
#: app/features/mec/meta_boxes/filter.php:79 app/
|
367 |
-
#: app/libraries/main.php:6170
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: modern-events-calendar\n"
|
4 |
+
"POT-Creation-Date: 2020-10-07 11:38+0330\n"
|
5 |
+
"PO-Revision-Date: 2020-10-07 11:57+0330\n"
|
6 |
"Last-Translator: Howard <howard@realtyna.com>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: en_US\n"
|
71 |
msgid "Select Shortcode"
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: app/features/colors.php:50 app/features/fes/form.php:915
|
75 |
#: app/features/mec/settings.php:759
|
76 |
msgid "Event Color"
|
77 |
msgstr ""
|
83 |
#: app/features/contextual.php:55 app/features/mec.php:473
|
84 |
#: app/features/mec/dashboard.php:141 app/features/mec/support.php:20
|
85 |
#: app/features/popup/event.php:60 app/features/popup/shortcode.php:37
|
86 |
+
#: app/libraries/main.php:614
|
87 |
msgid "Settings"
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: app/features/contextual.php:62 app/features/events.php:1617
|
91 |
+
#: app/features/events.php:2478 app/features/mec/booking.php:605
|
92 |
+
#: app/features/mec/booking.php:853 app/features/mec/support.php:29
|
93 |
+
#: app/libraries/main.php:570
|
94 |
msgid "Booking Form"
|
95 |
msgstr ""
|
96 |
|
103 |
"YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: app/features/contextual.php:70 app/features/events.php:1625
|
107 |
+
#: app/features/mec/booking.php:797 app/features/mec/support-page.php:115
|
108 |
+
#: app/features/mec/support.php:36 app/libraries/main.php:571
|
109 |
msgid "Payment Gateways"
|
110 |
msgstr ""
|
111 |
|
118 |
|
119 |
#: app/features/contextual.php:77 app/features/events.php:352
|
120 |
#: app/features/mec/support-page.php:117 app/features/mec/support.php:45
|
121 |
+
#: app/libraries/main.php:762
|
122 |
msgid "Notifications"
|
123 |
msgstr ""
|
124 |
|
215 |
msgstr ""
|
216 |
|
217 |
#: app/features/contextual.php:268 app/features/mec/modules.php:269
|
218 |
+
#: app/libraries/main.php:581
|
219 |
msgid "Social Networks"
|
220 |
msgstr ""
|
221 |
|
236 |
#: app/features/contextual.php:308 app/features/events.php:315
|
237 |
#: app/features/mec/booking.php:96 app/features/mec/notifications.php:36
|
238 |
#: app/features/mec/support-page.php:110 app/features/mec/support-page.php:114
|
239 |
+
#: app/libraries/main.php:565 app/libraries/main.php:594
|
240 |
+
#: app/libraries/main.php:679
|
241 |
msgid "Booking"
|
242 |
msgstr ""
|
243 |
|
244 |
#: app/features/contextual.php:318 app/features/mec/booking.php:427
|
245 |
+
#: app/features/mec/booking.php:813 app/libraries/main.php:567
|
246 |
msgid "Coupons"
|
247 |
msgstr ""
|
248 |
|
249 |
#: app/features/contextual.php:326 app/features/mec/modules.php:335
|
250 |
+
#: app/libraries/main.php:583
|
251 |
msgid "BuddyPress Integration"
|
252 |
msgstr ""
|
253 |
|
260 |
msgid "MEC Activation"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: app/features/dlfile.php:121 app/features/events.php:1622
|
264 |
#: app/features/mec/booking.php:347 app/features/mec/settings.php:831
|
265 |
msgid "Downloadable File"
|
266 |
msgstr ""
|
302 |
#: app/features/mec/meta_boxes/display_options.php:1548
|
303 |
#: app/features/mec/meta_boxes/display_options.php:1642
|
304 |
#: app/features/mec/meta_boxes/display_options.php:1715
|
305 |
+
#: app/features/profile/profile.php:55 app/features/wc.php:81
|
306 |
#: app/skins/daily_view/tpl.php:83 app/skins/monthly_view/tpl.php:74
|
307 |
#: app/skins/tile/tpl.php:84 app/skins/yearly_view/tpl.php:72
|
308 |
msgid "Event"
|
339 |
msgid "No events found in Trash!"
|
340 |
msgstr ""
|
341 |
|
342 |
+
#: app/features/events.php:192 app/features/events.php:3557
|
343 |
#: app/features/mec/meta_boxes/display_options.php:1420
|
344 |
#: app/features/mec/meta_boxes/search_form.php:31
|
345 |
#: app/features/mec/meta_boxes/search_form.php:101
|
353 |
#: app/features/mec/meta_boxes/search_form.php:654
|
354 |
#: app/features/mec/meta_boxes/search_form.php:760
|
355 |
#: app/features/mec/settings.php:923 app/features/mec/single.php:331
|
356 |
+
#: app/features/mec/single.php:373 app/features/search.php:68
|
357 |
+
#: app/libraries/main.php:6153 app/libraries/main.php:6206
|
358 |
+
#: app/libraries/skins.php:932 app/skins/single.php:992
|
359 |
+
#: app/skins/single/default.php:219 app/skins/single/default.php:452
|
360 |
+
#: app/skins/single/m1.php:196 app/skins/single/m2.php:119
|
361 |
+
#: app/skins/single/modern.php:140
|
362 |
msgid "Category"
|
363 |
msgstr ""
|
364 |
|
365 |
+
#: app/features/events.php:193 app/features/events.php:3512
|
366 |
+
#: app/features/fes/form.php:865 app/features/mec.php:461
|
367 |
#: app/features/mec/meta_boxes/filter.php:69
|
368 |
+
#: app/features/mec/meta_boxes/filter.php:79 app/libra
|
|