Version Description
31 March 2020 = - Added: SEO Schema section to specify event status - Added: A new currency (Israeli Shekel) - Changed: The next and back button positions on the booking form (pro) - Fixed: MEC sender name and email - Fixed: MEC Archive page - Fixed: An issue in update client of MEC - Fixed: Advanced repeat - Fixed: Internal cronjob of MEC (pro) - Fixed: The "New Event" notification
Download this release
Release Info
Developer | webnus |
Plugin | Modern Events Calendar Lite |
Version | 5.2.3 |
Comparing to | |
See all releases |
Code changes from version 5.2.2 to 5.2.3
- app/features/events.php +20 -11
- app/features/fes.php +8 -0
- app/features/gateways/paypal_ipn.php +0 -30
- app/features/ix.php +27 -8
- app/features/mec.php +1 -4
- app/features/mec/notifications.php +6 -6
- app/features/mec/settings.php +6 -0
- app/features/popup.php +2 -0
- app/features/schema.php +216 -0
- app/libraries/envato.php +4 -18
- app/libraries/main.php +1 -0
- app/libraries/notifications.php +31 -0
- app/libraries/parser.php +1 -1
- app/libraries/render.php +1 -2
- app/libraries/syncSchedule.php +13 -19
- app/modules/booking/steps/checkout.php +2 -2
- app/modules/booking/steps/form.php +1 -1
- app/skins/agenda/render.php +10 -54
- app/skins/available_spot/tpl.php +8 -51
- app/skins/carousel/render.php +6 -63
- app/skins/countdown/tpl.php +9 -52
- app/skins/cover/tpl.php +15 -59
- app/skins/custom/render.php +3 -3
- app/skins/daily_view/render.php +9 -53
- app/skins/default_full_calendar/tpl.php +5 -6
- app/skins/full_calendar/tpl.php +7 -11
- app/skins/grid/render.php +2 -45
- app/skins/list/render.php +2 -46
- app/skins/map/tpl.php +1 -0
- app/skins/masonry/render.php +17 -61
- app/skins/monthly_view/calendar.php +9 -60
- app/skins/monthly_view/calendar_clean.php +8 -64
- app/skins/monthly_view/calendar_novel.php +4 -53
- app/skins/monthly_view/calendar_simple.php +4 -54
- app/skins/single/builder.php +3 -4
- app/skins/single/default.php +7 -47
- app/skins/single/modern.php +9 -50
- app/skins/slider/render.php +4 -161
- app/skins/tile/render.php +6 -48
- app/skins/timeline/render.php +9 -54
- app/skins/timetable/render.php +13 -56
- app/skins/timetable/tpl.php +3 -1
- app/skins/weekly_view/render.php +8 -53
- app/skins/yearly_view/render.php +12 -55
- assets/css/frontend.css +46 -0
- assets/css/frontend.min.css +1 -1
- assets/css/mecrtl.css +35 -6
- assets/css/mecrtl.min.css +1 -1
- changelog.txt +12 -1
- languages/modern-events-calendar-lite-cs_CZ.mo +0 -0
- languages/modern-events-calendar-lite-cs_CZ.po +658 -586
- languages/modern-events-calendar-lite-de_DE.mo +0 -0
- languages/modern-events-calendar-lite-de_DE.po +656 -586
- languages/modern-events-calendar-lite-en_US.mo +0 -0
- languages/modern-events-calendar-lite-en_US.po +574 -524
app/features/events.php
CHANGED
@@ -336,15 +336,21 @@ class MEC_feature_events extends MEC_base
|
|
336 |
__('Links', 'modern-events-calendar-lite') => 'mec-read-more',
|
337 |
__('Organizer', 'modern-events-calendar-lite') => 'mec-organizer',
|
338 |
__('Cost', 'modern-events-calendar-lite') => 'mec-cost',
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
echo '<a class="mec-add-event-tabs-link" data-href="'.$link_address.'" href="#">'.$link_name.'</a>';
|
347 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
348 |
echo '<a class="mec-add-event-tabs-link" data-href="'.$link_address.'" href="#">'.$link_name.'</a>';
|
349 |
}
|
350 |
}
|
@@ -1810,7 +1816,7 @@ class MEC_feature_events extends MEC_base
|
|
1810 |
<span class="mec-tooltip">
|
1811 |
<div class="box top">
|
1812 |
<h5 class="title"><?php _e('Price', 'modern-events-calendar-lite'); ?></h5>
|
1813 |
-
<div class="content"><p><?php esc_attr_e('Insert 0 for free ticket. Only numbers please.', 'modern-events-calendar-lite'); ?>
|
1814 |
<a href="https://webnus.net/dox/modern-events-calendar/add-a-booking-system/"
|
1815 |
target="_blank"><?php _e('Read More', 'modern-events-calendar-lite'); ?></a></p></div>
|
1816 |
</div>
|
@@ -2034,7 +2040,7 @@ class MEC_feature_events extends MEC_base
|
|
2034 |
<span class="mec-tooltip">
|
2035 |
<div class="box top">
|
2036 |
<h5 class="title"><?php _e('Price', 'modern-events-calendar-lite'); ?></h5>
|
2037 |
-
<div class="content"><p><?php esc_attr_e('Insert 0 for free ticket. Only numbers please.', 'modern-events-calendar-lite'); ?>
|
2038 |
<a href="https://webnus.net/dox/modern-events-calendar/add-a-booking-system/"
|
2039 |
target="_blank"><?php _e('Read More', 'modern-events-calendar-lite'); ?></a></p></div>
|
2040 |
</div>
|
@@ -3184,6 +3190,9 @@ class MEC_feature_events extends MEC_base
|
|
3184 |
wp_reset_postdata();
|
3185 |
}
|
3186 |
}
|
|
|
|
|
|
|
3187 |
}
|
3188 |
|
3189 |
public function quick_edit($post_id)
|
336 |
__('Links', 'modern-events-calendar-lite') => 'mec-read-more',
|
337 |
__('Organizer', 'modern-events-calendar-lite') => 'mec-organizer',
|
338 |
__('Cost', 'modern-events-calendar-lite') => 'mec-cost',
|
339 |
+
__('SEO Schema', 'modern-events-calendar-lite') => 'mec-schema',
|
340 |
+
), $activated);
|
341 |
+
|
342 |
+
foreach($single_event_meta_title as $link_name => $link_address)
|
343 |
+
{
|
344 |
+
if($link_address == 'mec_meta_box_fes_form')
|
345 |
+
{
|
346 |
+
if(($note_visibility and trim($note)) || (trim($fes_guest_email) and trim($fes_guest_name))) echo '<a class="mec-add-event-tabs-link" data-href="'.$link_address.'" href="#">'.$link_name.'</a>';
|
347 |
+
}
|
348 |
+
elseif($link_address == 'mec-exceptional-days')
|
349 |
+
{
|
350 |
+
if(isset($this->settings['exceptional_days']) and $this->settings['exceptional_days']) echo '<a class="mec-add-event-tabs-link" data-href="'.$link_address.'" href="#">'.$link_name.'</a>';
|
351 |
+
}
|
352 |
+
else
|
353 |
+
{
|
354 |
echo '<a class="mec-add-event-tabs-link" data-href="'.$link_address.'" href="#">'.$link_name.'</a>';
|
355 |
}
|
356 |
}
|
1816 |
<span class="mec-tooltip">
|
1817 |
<div class="box top">
|
1818 |
<h5 class="title"><?php _e('Price', 'modern-events-calendar-lite'); ?></h5>
|
1819 |
+
<div class="content"><p><?php esc_attr_e('Insert 0 for free ticket. Only numbers please — Enter only the price without any symbols or characters.', 'modern-events-calendar-lite'); ?>
|
1820 |
<a href="https://webnus.net/dox/modern-events-calendar/add-a-booking-system/"
|
1821 |
target="_blank"><?php _e('Read More', 'modern-events-calendar-lite'); ?></a></p></div>
|
1822 |
</div>
|
2040 |
<span class="mec-tooltip">
|
2041 |
<div class="box top">
|
2042 |
<h5 class="title"><?php _e('Price', 'modern-events-calendar-lite'); ?></h5>
|
2043 |
+
<div class="content"><p><?php esc_attr_e('Insert 0 for free ticket. Only numbers please — Enter only the price without any symbols or characters.', 'modern-events-calendar-lite'); ?>
|
2044 |
<a href="https://webnus.net/dox/modern-events-calendar/add-a-booking-system/"
|
2045 |
target="_blank"><?php _e('Read More', 'modern-events-calendar-lite'); ?></a></p></div>
|
2046 |
</div>
|
3190 |
wp_reset_postdata();
|
3191 |
}
|
3192 |
}
|
3193 |
+
|
3194 |
+
$mec_update = (isset($_REQUEST['original_publish']) and strtolower(trim($_REQUEST['original_publish'])) == 'publish') ? false : true;
|
3195 |
+
do_action('mec_after_publish_admin_event', $post_id, $mec_update);
|
3196 |
}
|
3197 |
|
3198 |
public function quick_edit($post_id)
|
app/features/fes.php
CHANGED
@@ -1038,6 +1038,14 @@ class MEC_feature_fes extends MEC_base
|
|
1038 |
update_post_meta($post_id, 'mec_op', $op);
|
1039 |
update_user_meta(get_post_field('post_author', $post_id), 'mec_op', $op);
|
1040 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1041 |
do_action('save_fes_meta_action' , $post_id , $mec);
|
1042 |
|
1043 |
if($booking_date_update)
|
1038 |
update_post_meta($post_id, 'mec_op', $op);
|
1039 |
update_user_meta(get_post_field('post_author', $post_id), 'mec_op', $op);
|
1040 |
|
1041 |
+
// SEO Schema
|
1042 |
+
$event_status = isset($mec['event_status']) ? sanitize_text_field($mec['event_status']) : 'EventScheduled';
|
1043 |
+
if(!in_array($event_status, array('EventScheduled', 'EventPostponed', 'EventCancelled', 'EventMovedOnline'))) $event_status = 'EventScheduled';
|
1044 |
+
update_post_meta($post_id, 'mec_event_status', $event_status);
|
1045 |
+
|
1046 |
+
$moved_online_link = (isset($mec['moved_online_link']) and filter_var($mec['moved_online_link'], FILTER_VALIDATE_URL)) ? esc_url($mec['moved_online_link']) : '';
|
1047 |
+
update_post_meta($post_id, 'mec_moved_online_link', $moved_online_link);
|
1048 |
+
|
1049 |
do_action('save_fes_meta_action' , $post_id , $mec);
|
1050 |
|
1051 |
if($booking_date_update)
|
app/features/gateways/paypal_ipn.php
DELETED
@@ -1,30 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* WordPress initializing
|
4 |
-
*/
|
5 |
-
function mec_find_wordpress_base_path()
|
6 |
-
{
|
7 |
-
$dir = dirname(__FILE__);
|
8 |
-
|
9 |
-
do
|
10 |
-
{
|
11 |
-
if(file_exists($dir.'/wp-config.php')) return $dir;
|
12 |
-
}
|
13 |
-
while($dir = realpath($dir.'/..'));
|
14 |
-
|
15 |
-
return NULL;
|
16 |
-
}
|
17 |
-
|
18 |
-
define('BASE_PATH', mec_find_wordpress_base_path().'/');
|
19 |
-
define('WP_USE_THEMES', false);
|
20 |
-
|
21 |
-
global $wp, $wp_query, $wp_the_query, $wp_rewrite, $wp_did_header;
|
22 |
-
require(BASE_PATH.'wp-load.php');
|
23 |
-
|
24 |
-
// exit if request method is GET
|
25 |
-
if(!isset($_SERVER['REQUEST_METHOD']) or (isset($_SERVER['REQUEST_METHOD']) and $_SERVER['REQUEST_METHOD'] == 'GET')) exit;
|
26 |
-
|
27 |
-
$model = new MEC_gateway_paypal_express();
|
28 |
-
|
29 |
-
$POST = array_map('stripslashes', $_POST);
|
30 |
-
$verified = $model->validate_express_payment($POST);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/features/ix.php
CHANGED
@@ -3735,20 +3735,39 @@ class MEC_feature_ix extends MEC_base
|
|
3735 |
|
3736 |
$recurrence = $this->main->get_ical_rrules($data);
|
3737 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3738 |
// Event Data
|
3739 |
$event_data = array
|
3740 |
(
|
3741 |
'summary'=>$data->title,
|
3742 |
'location'=>(isset($location['address']) ? $location['address'] : (isset($location['name']) ? $location['name'] : '')),
|
3743 |
'description'=>strip_tags(strip_shortcodes($data->content)),
|
3744 |
-
'start'
|
3745 |
-
|
3746 |
-
'timeZone'=>$timezone,
|
3747 |
-
),
|
3748 |
-
'end'=>array(
|
3749 |
-
'dateTime'=>date('Y-m-d\TH:i:s', strtotime($date['end']['date'].' '.$data->time['end'])).$gmt_offset,
|
3750 |
-
'timeZone'=>$timezone,
|
3751 |
-
),
|
3752 |
'recurrence'=>$recurrence,
|
3753 |
'attendees'=>array(),
|
3754 |
'reminders'=>array(),
|
3735 |
|
3736 |
$recurrence = $this->main->get_ical_rrules($data);
|
3737 |
|
3738 |
+
$start_time = sprintf("%02d", $data->meta['mec_start_time_hour']).':';
|
3739 |
+
$start_time .= sprintf("%02d", $data->meta['mec_start_time_minutes']).' ';
|
3740 |
+
$start_time .= $data->meta['mec_start_time_ampm'];
|
3741 |
+
|
3742 |
+
$start = array(
|
3743 |
+
'dateTime'=>date('Y-m-d\TH:i:s', strtotime($date['start']['date'].' '.$start_time)).$gmt_offset,
|
3744 |
+
'timeZone'=>$timezone,
|
3745 |
+
);
|
3746 |
+
|
3747 |
+
$end_time = sprintf("%02d", $data->meta['mec_end_time_hour']).':';
|
3748 |
+
$end_time .= sprintf("%02d", $data->meta['mec_end_time_minutes']).' ';
|
3749 |
+
$end_time .= $data->meta['mec_end_time_ampm'];
|
3750 |
+
|
3751 |
+
$end = array(
|
3752 |
+
'dateTime'=>date('Y-m-d\TH:i:s', strtotime($date['end']['date'].' '.$end_time)).$gmt_offset,
|
3753 |
+
'timeZone'=>$timezone,
|
3754 |
+
);
|
3755 |
+
|
3756 |
+
$allday = isset($data->meta['mec_allday']) ? $data->meta['mec_allday'] : 0;
|
3757 |
+
if($allday)
|
3758 |
+
{
|
3759 |
+
$start['dateTime'] = date('Y-m-d\T00:00:00', strtotime($start['dateTime'])).$gmt_offset;
|
3760 |
+
$end['dateTime'] = date('Y-m-d\T00:00:00', strtotime('+1 Day', strtotime($end['dateTime']))).$gmt_offset;
|
3761 |
+
}
|
3762 |
+
|
3763 |
// Event Data
|
3764 |
$event_data = array
|
3765 |
(
|
3766 |
'summary'=>$data->title,
|
3767 |
'location'=>(isset($location['address']) ? $location['address'] : (isset($location['name']) ? $location['name'] : '')),
|
3768 |
'description'=>strip_tags(strip_shortcodes($data->content)),
|
3769 |
+
'start'=>$start,
|
3770 |
+
'end'=>$end,
|
|
|
|
|
|
|
|
|
|
|
|
|
3771 |
'recurrence'=>$recurrence,
|
3772 |
'attendees'=>array(),
|
3773 |
'reminders'=>array(),
|
app/features/mec.php
CHANGED
@@ -105,12 +105,9 @@ class MEC_feature_mec extends MEC_base
|
|
105 |
$this->factory->action('mec_booking_confirmed', array($this->notifications, 'booking_confirmation'), 10, 2);
|
106 |
$this->factory->action('mec_booking_canceled', array($this->notifications, 'booking_cancellation'), 12);
|
107 |
$this->factory->action('mec_fes_added', array($this->notifications, 'new_event'), 50, 3);
|
|
|
108 |
$this->factory->action('mec_event_published', array($this->notifications, 'user_event_publishing'), 10, 3);
|
109 |
|
110 |
-
// MEC Notification Sender Email
|
111 |
-
$this->factory->filter('wp_mail_from_name', array($this->notifications, 'notification_sender_name'));
|
112 |
-
$this->factory->filter('wp_mail_from', array($this->notifications, 'notification_sender_email'));
|
113 |
-
|
114 |
$this->page = isset($_GET['page']) ? sanitize_text_field($_GET['page']) : 'MEC-settings';
|
115 |
|
116 |
// MEC Post Type Name
|
105 |
$this->factory->action('mec_booking_confirmed', array($this->notifications, 'booking_confirmation'), 10, 2);
|
106 |
$this->factory->action('mec_booking_canceled', array($this->notifications, 'booking_cancellation'), 12);
|
107 |
$this->factory->action('mec_fes_added', array($this->notifications, 'new_event'), 50, 3);
|
108 |
+
$this->factory->action('mec_after_publish_admin_event', array($this->notifications, 'new_event'), 10,3);
|
109 |
$this->factory->action('mec_event_published', array($this->notifications, 'user_event_publishing'), 10, 3);
|
110 |
|
|
|
|
|
|
|
|
|
111 |
$this->page = isset($_GET['page']) ? sanitize_text_field($_GET['page']) : 'MEC-settings';
|
112 |
|
113 |
// MEC Post Type Name
|
app/features/mec/notifications.php
CHANGED
@@ -648,13 +648,13 @@ $notifications = $this->main->get_notifications();
|
|
648 |
<input onchange="jQuery('#mec_notification_new_event_container_toggle').toggle();" value="1" type="checkbox" name="mec[notifications][new_event][status]" <?php if(isset($notifications['new_event']['status']) and $notifications['new_event']['status']) echo 'checked="checked"'; ?> /> <?php _e('Enable new event notification', 'modern-events-calendar-lite'); ?>
|
649 |
</label>
|
650 |
</div>
|
651 |
-
<div class="mec-form-row">
|
652 |
-
<label>
|
653 |
-
<input type="hidden" name="mec[notifications][new_event][send_to_admin]" value="0" />
|
654 |
-
<input value="1" type="checkbox" name="mec[notifications][new_event][send_to_admin]" <?php if((!isset($notifications['new_event']['send_to_admin'])) or (isset($notifications['new_event']['send_to_admin']) and $notifications['new_event']['send_to_admin'])) echo 'checked="checked"'; ?> /> <?php _e('Send the email to admin', 'modern-events-calendar-lite'); ?>
|
655 |
-
</label>
|
656 |
-
</div>
|
657 |
<div id="mec_notification_new_event_container_toggle" class="<?php if((isset($notifications['new_event']) and !$notifications['new_event']['status']) or !isset($notifications['new_event'])) echo 'mec-util-hidden'; ?>">
|
|
|
|
|
|
|
|
|
|
|
|
|
658 |
<p class="description"><?php _e('It sends after adding a new event from frontend event submission or from website backend.', 'modern-events-calendar-lite'); ?></p>
|
659 |
<div class="mec-form-row">
|
660 |
<label for="mec_notifications_new_event_subject"><?php _e('Email Subject', 'modern-events-calendar-lite'); ?></label>
|
648 |
<input onchange="jQuery('#mec_notification_new_event_container_toggle').toggle();" value="1" type="checkbox" name="mec[notifications][new_event][status]" <?php if(isset($notifications['new_event']['status']) and $notifications['new_event']['status']) echo 'checked="checked"'; ?> /> <?php _e('Enable new event notification', 'modern-events-calendar-lite'); ?>
|
649 |
</label>
|
650 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
651 |
<div id="mec_notification_new_event_container_toggle" class="<?php if((isset($notifications['new_event']) and !$notifications['new_event']['status']) or !isset($notifications['new_event'])) echo 'mec-util-hidden'; ?>">
|
652 |
+
<div class="mec-form-row">
|
653 |
+
<label>
|
654 |
+
<input type="hidden" name="mec[notifications][new_event][send_to_admin]" value="0" />
|
655 |
+
<input value="1" type="checkbox" name="mec[notifications][new_event][send_to_admin]" <?php if((!isset($notifications['new_event']['send_to_admin'])) or (isset($notifications['new_event']['send_to_admin']) and $notifications['new_event']['send_to_admin'])) echo 'checked="checked"'; ?> /> <?php _e('Send the email to admin', 'modern-events-calendar-lite'); ?>
|
656 |
+
</label>
|
657 |
+
</div>
|
658 |
<p class="description"><?php _e('It sends after adding a new event from frontend event submission or from website backend.', 'modern-events-calendar-lite'); ?></p>
|
659 |
<div class="mec-form-row">
|
660 |
<label for="mec_notifications_new_event_subject"><?php _e('Email Subject', 'modern-events-calendar-lite'); ?></label>
|
app/features/mec/settings.php
CHANGED
@@ -761,6 +761,12 @@ $get_n_option = get_option('mec_addons_notification_option');
|
|
761 |
<input value="1" type="checkbox" name="mec[settings][fes_section_ticket_variations]" <?php if(!isset($settings['fes_section_ticket_variations']) or (isset($settings['fes_section_ticket_variations']) and $settings['fes_section_ticket_variations'])) echo 'checked="checked"'; ?> /> <?php _e('Ticket Variations / Options', 'modern-events-calendar-lite'); ?>
|
762 |
</label>
|
763 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
764 |
<div class="mec-form-row">
|
765 |
<label>
|
766 |
<input type="hidden" name="mec[settings][fes_note]" value="0" />
|
761 |
<input value="1" type="checkbox" name="mec[settings][fes_section_ticket_variations]" <?php if(!isset($settings['fes_section_ticket_variations']) or (isset($settings['fes_section_ticket_variations']) and $settings['fes_section_ticket_variations'])) echo 'checked="checked"'; ?> /> <?php _e('Ticket Variations / Options', 'modern-events-calendar-lite'); ?>
|
762 |
</label>
|
763 |
</div>
|
764 |
+
<div class="mec-form-row">
|
765 |
+
<label>
|
766 |
+
<input type="hidden" name="mec[settings][fes_section_schema]" value="0" />
|
767 |
+
<input value="1" type="checkbox" name="mec[settings][fes_section_schema]" <?php if(!isset($settings['fes_section_schema']) or (isset($settings['fes_section_schema']) and $settings['fes_section_schema'])) echo 'checked="checked"'; ?> /> <?php _e('SEO Schema', 'modern-events-calendar-lite'); ?>
|
768 |
+
</label>
|
769 |
+
</div>
|
770 |
<div class="mec-form-row">
|
771 |
<label>
|
772 |
<input type="hidden" name="mec[settings][fes_note]" value="0" />
|
app/features/popup.php
CHANGED
@@ -617,6 +617,8 @@ class MEC_feature_popup extends MEC_base
|
|
617 |
// For Event Notification Badge.
|
618 |
update_post_meta($post_id, 'mec_event_date_submit', date('YmdHis', current_time('timestamp', 0)));
|
619 |
|
|
|
|
|
620 |
$this->main->response(array(
|
621 |
'success' => 1,
|
622 |
'id' => $post_id,
|
617 |
// For Event Notification Badge.
|
618 |
update_post_meta($post_id, 'mec_event_date_submit', date('YmdHis', current_time('timestamp', 0)));
|
619 |
|
620 |
+
do_action('mec_after_publish_admin_event', $post_id, false);
|
621 |
+
|
622 |
$this->main->response(array(
|
623 |
'success' => 1,
|
624 |
'id' => $post_id,
|
app/features/schema.php
ADDED
@@ -0,0 +1,216 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/** no direct access **/
|
3 |
+
defined('MECEXEC') or die();
|
4 |
+
|
5 |
+
/**
|
6 |
+
* Webnus MEC schema class.
|
7 |
+
* @author Webnus <info@webnus.biz>
|
8 |
+
*/
|
9 |
+
class MEC_feature_schema extends MEC_base
|
10 |
+
{
|
11 |
+
public $factory;
|
12 |
+
public $main;
|
13 |
+
public $settings;
|
14 |
+
|
15 |
+
/**
|
16 |
+
* Constructor method
|
17 |
+
* @author Webnus <info@webnus.biz>
|
18 |
+
*/
|
19 |
+
public function __construct()
|
20 |
+
{
|
21 |
+
// Import MEC Factory
|
22 |
+
$this->factory = $this->getFactory();
|
23 |
+
|
24 |
+
// Import MEC Main
|
25 |
+
$this->main = $this->getMain();
|
26 |
+
|
27 |
+
// MEC Settings
|
28 |
+
$this->settings = $this->main->get_settings();
|
29 |
+
}
|
30 |
+
|
31 |
+
/**
|
32 |
+
* Initialize locations feature
|
33 |
+
* @author Webnus <info@webnus.biz>
|
34 |
+
*/
|
35 |
+
public function init()
|
36 |
+
{
|
37 |
+
// Schema Meta Box
|
38 |
+
$this->factory->action('mec_metabox_details', array($this, 'meta_box_schema'), 60);
|
39 |
+
if(!isset($this->settings['fes_section_schema']) or (isset($this->settings['fes_section_schema']) and $this->settings['fes_section_schema'])) $this->factory->action('mec_fes_metabox_details', array($this, 'meta_box_schema'), 60);
|
40 |
+
|
41 |
+
// Save Schema Data
|
42 |
+
$this->factory->action('save_post', array($this, 'save_event'));
|
43 |
+
|
44 |
+
// Print Schema
|
45 |
+
$this->factory->action('mec_schema', array($this, 'schema'), 10);
|
46 |
+
$this->factory->filter('mec_schema_text', array($this, 'schema_text'), 10, 2);
|
47 |
+
}
|
48 |
+
|
49 |
+
/**
|
50 |
+
* Show location meta box
|
51 |
+
* @author Webnus <info@webnus.biz>
|
52 |
+
* @param object $post
|
53 |
+
*/
|
54 |
+
public function meta_box_schema($post)
|
55 |
+
{
|
56 |
+
$event_status = get_post_meta($post->ID, 'mec_event_status', true);
|
57 |
+
if(!trim($event_status)) $event_status = 'EventScheduled';
|
58 |
+
|
59 |
+
$moved_online_link = get_post_meta($post->ID, 'mec_moved_online_link', true);
|
60 |
+
?>
|
61 |
+
<div class="mec-meta-box-fields mec-event-tab-content" id="mec-schema">
|
62 |
+
<h4><?php echo __('SEO Schema', 'modern-events-calendar-lite'); ?></h4>
|
63 |
+
<p><?php _e("Following statuses are for informing search engines (Google, bing, etc) about your events so they can manage your events better so you can use these statuses to be more Search Engine Friendly.", 'modern-events-calendar-lite'); ?></p>
|
64 |
+
|
65 |
+
<div class="mec-form-row">
|
66 |
+
<label>
|
67 |
+
<input class="mec-schema-event-status" type="radio" name="mec[event_status]" value="EventScheduled" <?php echo ($event_status == 'EventScheduled' ? 'checked' : ''); ?>>
|
68 |
+
<?php _e('Scheduled', 'modern-events-calendar-lite'); ?>
|
69 |
+
</label>
|
70 |
+
<p class="description"><?php _e('For active events!', 'modern-events-calendar-lite'); ?></p>
|
71 |
+
</div>
|
72 |
+
<div class="mec-form-row">
|
73 |
+
<label>
|
74 |
+
<input class="mec-schema-event-status" type="radio" name="mec[event_status]" value="EventPostponed" <?php echo ($event_status == 'EventPostponed' ? 'checked' : ''); ?>>
|
75 |
+
<?php _e('Postponed', 'modern-events-calendar-lite'); ?>
|
76 |
+
</label>
|
77 |
+
<p class="description"><?php _e('If you postponed an event then you can use this status!', 'modern-events-calendar-lite'); ?></p>
|
78 |
+
</div>
|
79 |
+
<div class="mec-form-row">
|
80 |
+
<label>
|
81 |
+
<input class="mec-schema-event-status" type="radio" name="mec[event_status]" value="EventCancelled" <?php echo ($event_status == 'EventCancelled' ? 'checked' : ''); ?>>
|
82 |
+
<?php _e('Cancelled', 'modern-events-calendar-lite'); ?>
|
83 |
+
</label>
|
84 |
+
<p class="description"><?php _e('If you cancelled an event then you should select this status!', 'modern-events-calendar-lite'); ?></p>
|
85 |
+
</div>
|
86 |
+
<div class="mec-form-row">
|
87 |
+
<label>
|
88 |
+
<input class="mec-schema-event-status" type="radio" name="mec[event_status]" value="EventMovedOnline" <?php echo ($event_status == 'EventMovedOnline' ? 'checked' : ''); ?>>
|
89 |
+
<?php _e('Moved Online', 'modern-events-calendar-lite'); ?>
|
90 |
+
</label>
|
91 |
+
<p class="description"><?php _e('For the events that moved online!', 'modern-events-calendar-lite'); ?></p>
|
92 |
+
</div>
|
93 |
+
<div id="mec_moved_online_link_wrapper" <?php echo ($event_status == 'EventMovedOnline' ? '' : 'style="display: none;"'); ?>>
|
94 |
+
<div class="mec-form-row">
|
95 |
+
<label class="mec-col-2" for="mec_moved_online_link"><?php _e('Online Link', 'modern-events-calendar-lite'); ?></label>
|
96 |
+
<input class="mec-col-9" type="url" id="mec_moved_online_link" name="mec[moved_online_link]" value="<?php echo $moved_online_link; ?>" placeholder="https://online-platform.com/event-id">
|
97 |
+
</div>
|
98 |
+
<div>
|
99 |
+
<p class="description"><?php _e('Link to join online event. If you leave it empty event link will be used.', 'modern-events-calendar-lite'); ?></p>
|
100 |
+
</div>
|
101 |
+
</div>
|
102 |
+
</div>
|
103 |
+
<script>
|
104 |
+
jQuery(document).ready(function()
|
105 |
+
{
|
106 |
+
jQuery('input.mec-schema-event-status').on('change', function()
|
107 |
+
{
|
108 |
+
var value = jQuery(this).val();
|
109 |
+
|
110 |
+
if(value === 'EventMovedOnline') jQuery('#mec_moved_online_link_wrapper').show();
|
111 |
+
else jQuery('#mec_moved_online_link_wrapper').hide();
|
112 |
+
});
|
113 |
+
});
|
114 |
+
</script>
|
115 |
+
<?php
|
116 |
+
}
|
117 |
+
|
118 |
+
/**
|
119 |
+
* Save event schema data
|
120 |
+
* @author Webnus <info@webnus.biz>
|
121 |
+
* @param int $post_id
|
122 |
+
* @return boolean
|
123 |
+
*/
|
124 |
+
public function save_event($post_id)
|
125 |
+
{
|
126 |
+
// Check if our nonce is set.
|
127 |
+
if(!isset($_POST['mec_event_nonce'])) return false;
|
128 |
+
|
129 |
+
// Verify that the nonce is valid.
|
130 |
+
if(!wp_verify_nonce(sanitize_text_field($_POST['mec_event_nonce']), 'mec_event_data')) return false;
|
131 |
+
|
132 |
+
// If this is an autosave, our form has not been submitted, so we don't want to do anything.
|
133 |
+
if(defined('DOING_AUTOSAVE') and DOING_AUTOSAVE) return false;
|
134 |
+
|
135 |
+
// Get Modern Events Calendar Data
|
136 |
+
$_mec = isset($_POST['mec']) ? $_POST['mec'] : array();
|
137 |
+
|
138 |
+
$event_status = isset($_mec['event_status']) ? sanitize_text_field($_mec['event_status']) : 'EventScheduled';
|
139 |
+
if(!in_array($event_status, array('EventScheduled', 'EventPostponed', 'EventCancelled', 'EventMovedOnline'))) $event_status = 'EventScheduled';
|
140 |
+
|
141 |
+
update_post_meta($post_id, 'mec_event_status', $event_status);
|
142 |
+
|
143 |
+
$moved_online_link = (isset($_mec['moved_online_link']) and filter_var($_mec['moved_online_link'], FILTER_VALIDATE_URL)) ? esc_url($_mec['moved_online_link']) : '';
|
144 |
+
update_post_meta($post_id, 'mec_moved_online_link', $moved_online_link);
|
145 |
+
|
146 |
+
return true;
|
147 |
+
}
|
148 |
+
|
149 |
+
public function schema($event)
|
150 |
+
{
|
151 |
+
$status = isset($this->settings['schema']) ? $this->settings['schema'] : 0;
|
152 |
+
if(!$status) return;
|
153 |
+
|
154 |
+
$speakers = array();
|
155 |
+
if(isset($event->data->speakers) and is_array($event->data->speakers) and count($event->data->speakers))
|
156 |
+
{
|
157 |
+
foreach($event->data->speakers as $key => $value)
|
158 |
+
{
|
159 |
+
$speakers[] = array(
|
160 |
+
"@type" => "Person",
|
161 |
+
"name" => $value['name'],
|
162 |
+
"image" => $value['thumbnail'],
|
163 |
+
"sameAs" => $value['facebook'],
|
164 |
+
);
|
165 |
+
}
|
166 |
+
}
|
167 |
+
|
168 |
+
$event_status = (isset($event->data->meta['mec_event_status']) and trim($event->data->meta['mec_event_status'])) ? $event->data->meta['mec_event_status'] : 'EventScheduled';
|
169 |
+
if(!in_array($event_status, array('EventScheduled', 'EventPostponed', 'EventCancelled', 'EventMovedOnline'))) $event_status = 'EventScheduled';
|
170 |
+
|
171 |
+
$location = isset($event->data->locations[$event->data->meta['mec_location_id']]) ? $event->data->locations[$event->data->meta['mec_location_id']] : array();
|
172 |
+
$event_link = $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']);
|
173 |
+
|
174 |
+
$moved_online_link = (isset($event->data->meta['mec_moved_online_link']) and trim($event->data->meta['mec_moved_online_link'])) ? $event->data->meta['mec_moved_online_link'] : '';
|
175 |
+
?>
|
176 |
+
<script type="application/ld+json">
|
177 |
+
{
|
178 |
+
"@context": "http://schema.org",
|
179 |
+
"@type": "Event",
|
180 |
+
"eventStatus": "https://schema.org/<?php echo $event_status; ?>",
|
181 |
+
"startDate": "<?php echo !empty($event->data->meta['mec_date']['start']['date']) ? $event->data->meta['mec_date']['start']['date'] : ''; ?>",
|
182 |
+
"endDate": "<?php echo !empty($event->data->meta['mec_date']['end']['date']) ? $event->data->meta['mec_date']['end']['date'] : ''; ?>",
|
183 |
+
"location":
|
184 |
+
{
|
185 |
+
"@type": "<?php echo (($event_status === 'EventMovedOnline') ? 'VirtualLocation' : 'Place'); ?>",
|
186 |
+
<?php if($event_status === 'EventMovedOnline'): ?>
|
187 |
+
"url": "<?php echo (trim($moved_online_link) ? $moved_online_link : $event_link); ?>",
|
188 |
+
<?php else: ?>
|
189 |
+
"name": "<?php echo (isset($location['name']) ? $location['name'] : ''); ?>",
|
190 |
+
"image": "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
|
191 |
+
"address": "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
192 |
+
<?php endif; ?>
|
193 |
+
},
|
194 |
+
"offers":
|
195 |
+
{
|
196 |
+
"url": "<?php echo $event->data->permalink; ?>",
|
197 |
+
"price": "<?php echo isset($event->data->meta['mec_cost']) ? $event->data->meta['mec_cost'] : '' ; ?>",
|
198 |
+
"priceCurrency": "<?php echo isset($this->settings['currency']) ? $this->settings['currency'] : ''; ?>"
|
199 |
+
},
|
200 |
+
"performer": <?php echo (count($speakers) ? json_encode($speakers) : '""'); ?>,
|
201 |
+
"description": "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', preg_replace('/\s/u', ' ', $event->data->post->post_content))); ?>",
|
202 |
+
"image": "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
203 |
+
"name": "<?php esc_html_e($event->data->title); ?>",
|
204 |
+
"url": "<?php echo $event_link; ?>"
|
205 |
+
}
|
206 |
+
</script>
|
207 |
+
<?php
|
208 |
+
}
|
209 |
+
|
210 |
+
public function schema_text($text, $event)
|
211 |
+
{
|
212 |
+
ob_start();
|
213 |
+
do_action('mec_schema', $event);
|
214 |
+
return ob_get_flush();
|
215 |
+
}
|
216 |
+
}
|
app/libraries/envato.php
CHANGED
@@ -48,11 +48,6 @@ class MEC_envato extends MEC_base
|
|
48 |
*/
|
49 |
public $slug;
|
50 |
|
51 |
-
/**
|
52 |
-
* User for cashing directory
|
53 |
-
*/
|
54 |
-
protected $cache_dir = 'cache';
|
55 |
-
|
56 |
public $main;
|
57 |
public $factory;
|
58 |
public $settings;
|
@@ -83,15 +78,12 @@ class MEC_envato extends MEC_base
|
|
83 |
/**
|
84 |
* Get API URL.
|
85 |
* @author Webnus <info@webnus.biz>
|
86 |
-
* @
|
87 |
*/
|
88 |
public static function get_api_url()
|
89 |
{
|
90 |
-
if
|
91 |
-
|
92 |
-
} else {
|
93 |
-
$api_url = 'http://webnus.biz/webnus.net';
|
94 |
-
}
|
95 |
|
96 |
return $api_url;
|
97 |
}
|
@@ -179,9 +171,6 @@ class MEC_envato extends MEC_base
|
|
179 |
// Get the remote version
|
180 |
$version = json_decode(json_encode($this->get_MEC_info('version')->version), true);
|
181 |
|
182 |
-
// Set mec update path
|
183 |
-
$dl_link = !is_null($this->get_MEC_info('dl')) ? $this->set_update_path($this->get_MEC_info('dl')) : NULL;
|
184 |
-
|
185 |
// If a newer version is available, add the update
|
186 |
if(version_compare($this->current_version, $version, '<'))
|
187 |
{
|
@@ -216,7 +205,6 @@ class MEC_envato extends MEC_base
|
|
216 |
*/
|
217 |
public function check_info($false, $action, $arg)
|
218 |
{
|
219 |
-
$dl_link = !is_null($this->get_MEC_info('dl')) ? $this->set_update_path($this->get_MEC_info('dl')) : NULL;
|
220 |
$version = json_decode(json_encode($this->get_MEC_info('version')->version), true);
|
221 |
$data_url = 'https://webnus.net/modern-events-calendar/addons-api/addons-api.json';
|
222 |
|
@@ -226,7 +214,6 @@ class MEC_envato extends MEC_base
|
|
226 |
if($get_data !== false AND !empty($get_data))
|
227 |
{
|
228 |
$obj = json_decode($get_data);
|
229 |
-
$i = count((array)$obj);
|
230 |
}
|
231 |
}
|
232 |
elseif(function_exists('curl_version'))
|
@@ -238,7 +225,6 @@ class MEC_envato extends MEC_base
|
|
238 |
$result = curl_exec($ch);
|
239 |
curl_close($ch);
|
240 |
$obj = json_decode($result);
|
241 |
-
$i = count((array)$obj);
|
242 |
}
|
243 |
else $obj = '';
|
244 |
|
@@ -250,7 +236,7 @@ class MEC_envato extends MEC_base
|
|
250 |
{
|
251 |
$addons .= '
|
252 |
<div class="mec-details-addons-wrap">
|
253 |
-
<a href="https://webnus.net/modern-events-calendar/addons/" target="_blank"><img src="'.$value->img.'" /></a>
|
254 |
<div class="mec-details-addons-title"><a href="https://webnus.net/modern-events-calendar/addons/" target="_blank"><span>'. esc_html__($value->name) .'</span></a></div>
|
255 |
<p>'. esc_html__($value->desc) .'</p>
|
256 |
</div>';
|
48 |
*/
|
49 |
public $slug;
|
50 |
|
|
|
|
|
|
|
|
|
|
|
51 |
public $main;
|
52 |
public $factory;
|
53 |
public $settings;
|
78 |
/**
|
79 |
* Get API URL.
|
80 |
* @author Webnus <info@webnus.biz>
|
81 |
+
* @return string $api_url
|
82 |
*/
|
83 |
public static function get_api_url()
|
84 |
{
|
85 |
+
if(ini_get('allow_url_fopen') and get_headers('https://webnus.biz')[0] != 'HTTP/1.1 200 OK') $api_url = 'https://webnus.net/api';
|
86 |
+
else $api_url = 'http://webnus.biz/webnus.net';
|
|
|
|
|
|
|
87 |
|
88 |
return $api_url;
|
89 |
}
|
171 |
// Get the remote version
|
172 |
$version = json_decode(json_encode($this->get_MEC_info('version')->version), true);
|
173 |
|
|
|
|
|
|
|
174 |
// If a newer version is available, add the update
|
175 |
if(version_compare($this->current_version, $version, '<'))
|
176 |
{
|
205 |
*/
|
206 |
public function check_info($false, $action, $arg)
|
207 |
{
|
|
|
208 |
$version = json_decode(json_encode($this->get_MEC_info('version')->version), true);
|
209 |
$data_url = 'https://webnus.net/modern-events-calendar/addons-api/addons-api.json';
|
210 |
|
214 |
if($get_data !== false AND !empty($get_data))
|
215 |
{
|
216 |
$obj = json_decode($get_data);
|
|
|
217 |
}
|
218 |
}
|
219 |
elseif(function_exists('curl_version'))
|
225 |
$result = curl_exec($ch);
|
226 |
curl_close($ch);
|
227 |
$obj = json_decode($result);
|
|
|
228 |
}
|
229 |
else $obj = '';
|
230 |
|
236 |
{
|
237 |
$addons .= '
|
238 |
<div class="mec-details-addons-wrap">
|
239 |
+
<a href="https://webnus.net/modern-events-calendar/addons/" target="_blank"><img alt="'.esc_attr($value->name).'" src="'.$value->img.'" /></a>
|
240 |
<div class="mec-details-addons-title"><a href="https://webnus.net/modern-events-calendar/addons/" target="_blank"><span>'. esc_html__($value->name) .'</span></a></div>
|
241 |
<p>'. esc_html__($value->desc) .'</p>
|
242 |
</div>';
|
app/libraries/main.php
CHANGED
@@ -2038,6 +2038,7 @@ class MEC_main extends MEC_base
|
|
2038 |
'IRR'=>'IRR',
|
2039 |
'IQD'=>'IQD',
|
2040 |
'ILS'=>'ILS',
|
|
|
2041 |
'JMD'=>'JMD',
|
2042 |
'JOD'=>'JOD',
|
2043 |
'KZT'=>'KZT',
|
2038 |
'IRR'=>'IRR',
|
2039 |
'IQD'=>'IQD',
|
2040 |
'ILS'=>'ILS',
|
2041 |
+
'NIS' => 'NIS',
|
2042 |
'JMD'=>'JMD',
|
2043 |
'JOD'=>'JOD',
|
2044 |
'KZT'=>'KZT',
|
app/libraries/notifications.php
CHANGED
@@ -94,6 +94,9 @@ class MEC_notifications extends MEC_base
|
|
94 |
$event_id = get_post_meta($book_id, 'mec_event_id', true);
|
95 |
$link = trim(get_permalink($event_id), '/').'/verify/'.$key.'/';
|
96 |
|
|
|
|
|
|
|
97 |
// Set Email Type to HTML
|
98 |
add_filter('wp_mail_content_type', array($this->main, 'html_email_type'));
|
99 |
|
@@ -189,6 +192,9 @@ class MEC_notifications extends MEC_base
|
|
189 |
// Do not send email twice!
|
190 |
$done_emails = array();
|
191 |
|
|
|
|
|
|
|
192 |
// Set Email Type to HTML
|
193 |
add_filter('wp_mail_content_type', array($this->main, 'html_email_type'));
|
194 |
|
@@ -301,6 +307,9 @@ class MEC_notifications extends MEC_base
|
|
301 |
// Do not send email twice!
|
302 |
$done_emails = array();
|
303 |
|
|
|
|
|
|
|
304 |
// Set Email Type to HTML
|
305 |
add_filter('wp_mail_content_type', array($this->main, 'html_email_type'));
|
306 |
|
@@ -438,6 +447,9 @@ class MEC_notifications extends MEC_base
|
|
438 |
|
439 |
$subject = isset($this->notif_settings['cancellation_notification']['subject']) ? $this->content(__($this->notif_settings['cancellation_notification']['subject'], 'modern-events-calendar-lite'), $book_id) : __('booking canceled.', 'modern-events-calendar-lite');
|
440 |
|
|
|
|
|
|
|
441 |
// Set Email Type to HTML
|
442 |
add_filter('wp_mail_content_type', array($this->main, 'html_email_type'));
|
443 |
|
@@ -557,6 +569,9 @@ class MEC_notifications extends MEC_base
|
|
557 |
$message = str_replace('%%attendees_full_info%%', $attendees_full_info, $message);
|
558 |
}
|
559 |
|
|
|
|
|
|
|
560 |
// Set Email Type to HTML
|
561 |
add_filter('wp_mail_content_type', array($this->main, 'html_email_type'));
|
562 |
$message = '
|
@@ -633,6 +648,9 @@ class MEC_notifications extends MEC_base
|
|
633 |
$attendees = get_post_meta($book_id, 'mec_attendees', true);
|
634 |
if(!is_array($attendees) or (is_array($attendees) and !count($attendees))) $attendees = array(get_post_meta($book_id, 'mec_attendee', true));
|
635 |
|
|
|
|
|
|
|
636 |
// Set Email Type to HTML
|
637 |
add_filter('wp_mail_content_type', array($this->main, 'html_email_type'));
|
638 |
|
@@ -765,6 +783,9 @@ class MEC_notifications extends MEC_base
|
|
765 |
// Notification Subject
|
766 |
$subject = str_replace('%%event_title%%', get_the_title($event_id), $subject);
|
767 |
|
|
|
|
|
|
|
768 |
// Set Email Type to HTML
|
769 |
add_filter('wp_mail_content_type', array($this->main, 'html_email_type'));
|
770 |
|
@@ -851,6 +872,9 @@ class MEC_notifications extends MEC_base
|
|
851 |
// Notification Subject
|
852 |
$subject = str_replace('%%event_title%%', get_the_title($post->ID), $subject);
|
853 |
|
|
|
|
|
|
|
854 |
// Set Email Type to HTML
|
855 |
add_filter('wp_mail_content_type', array($this->main, 'html_email_type'));
|
856 |
|
@@ -1147,6 +1171,13 @@ class MEC_notifications extends MEC_base
|
|
1147 |
return $attendees_full_info;
|
1148 |
}
|
1149 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1150 |
/**
|
1151 |
* Change Notification Sender Name
|
1152 |
* @return string
|
94 |
$event_id = get_post_meta($book_id, 'mec_event_id', true);
|
95 |
$link = trim(get_permalink($event_id), '/').'/verify/'.$key.'/';
|
96 |
|
97 |
+
// Changing some sender email info.
|
98 |
+
$this->mec_sender_email_notification_filter();
|
99 |
+
|
100 |
// Set Email Type to HTML
|
101 |
add_filter('wp_mail_content_type', array($this->main, 'html_email_type'));
|
102 |
|
192 |
// Do not send email twice!
|
193 |
$done_emails = array();
|
194 |
|
195 |
+
// Changing some sender email info.
|
196 |
+
$this->mec_sender_email_notification_filter();
|
197 |
+
|
198 |
// Set Email Type to HTML
|
199 |
add_filter('wp_mail_content_type', array($this->main, 'html_email_type'));
|
200 |
|
307 |
// Do not send email twice!
|
308 |
$done_emails = array();
|
309 |
|
310 |
+
// Changing some sender email info.
|
311 |
+
$this->mec_sender_email_notification_filter();
|
312 |
+
|
313 |
// Set Email Type to HTML
|
314 |
add_filter('wp_mail_content_type', array($this->main, 'html_email_type'));
|
315 |
|
447 |
|
448 |
$subject = isset($this->notif_settings['cancellation_notification']['subject']) ? $this->content(__($this->notif_settings['cancellation_notification']['subject'], 'modern-events-calendar-lite'), $book_id) : __('booking canceled.', 'modern-events-calendar-lite');
|
449 |
|
450 |
+
// Changing some sender email info.
|
451 |
+
$this->mec_sender_email_notification_filter();
|
452 |
+
|
453 |
// Set Email Type to HTML
|
454 |
add_filter('wp_mail_content_type', array($this->main, 'html_email_type'));
|
455 |
|
569 |
$message = str_replace('%%attendees_full_info%%', $attendees_full_info, $message);
|
570 |
}
|
571 |
|
572 |
+
// Changing some sender email info.
|
573 |
+
$this->mec_sender_email_notification_filter();
|
574 |
+
|
575 |
// Set Email Type to HTML
|
576 |
add_filter('wp_mail_content_type', array($this->main, 'html_email_type'));
|
577 |
$message = '
|
648 |
$attendees = get_post_meta($book_id, 'mec_attendees', true);
|
649 |
if(!is_array($attendees) or (is_array($attendees) and !count($attendees))) $attendees = array(get_post_meta($book_id, 'mec_attendee', true));
|
650 |
|
651 |
+
// Changing some sender email info.
|
652 |
+
$this->mec_sender_email_notification_filter();
|
653 |
+
|
654 |
// Set Email Type to HTML
|
655 |
add_filter('wp_mail_content_type', array($this->main, 'html_email_type'));
|
656 |
|
783 |
// Notification Subject
|
784 |
$subject = str_replace('%%event_title%%', get_the_title($event_id), $subject);
|
785 |
|
786 |
+
// Changing some sender email info.
|
787 |
+
$this->mec_sender_email_notification_filter();
|
788 |
+
|
789 |
// Set Email Type to HTML
|
790 |
add_filter('wp_mail_content_type', array($this->main, 'html_email_type'));
|
791 |
|
872 |
// Notification Subject
|
873 |
$subject = str_replace('%%event_title%%', get_the_title($post->ID), $subject);
|
874 |
|
875 |
+
// Changing some sender email info.
|
876 |
+
$this->mec_sender_email_notification_filter();
|
877 |
+
|
878 |
// Set Email Type to HTML
|
879 |
add_filter('wp_mail_content_type', array($this->main, 'html_email_type'));
|
880 |
|
1171 |
return $attendees_full_info;
|
1172 |
}
|
1173 |
|
1174 |
+
public function mec_sender_email_notification_filter()
|
1175 |
+
{
|
1176 |
+
// MEC Notification Sender Email
|
1177 |
+
add_filter('wp_mail_from_name', array($this, 'notification_sender_name'));
|
1178 |
+
add_filter('wp_mail_from', array($this, 'notification_sender_email'));
|
1179 |
+
}
|
1180 |
+
|
1181 |
/**
|
1182 |
* Change Notification Sender Name
|
1183 |
* @return string
|
app/libraries/parser.php
CHANGED
@@ -140,7 +140,7 @@ class MEC_parser extends MEC_base
|
|
140 |
else $template = MEC_ABSPATH.'templates'.DS.'single-mec-events.php';
|
141 |
}
|
142 |
}
|
143 |
-
elseif(is_post_type_archive($PT))
|
144 |
{
|
145 |
$template = locate_template('archive-'.$PT.'.php');
|
146 |
if($template == '')
|
140 |
else $template = MEC_ABSPATH.'templates'.DS.'single-mec-events.php';
|
141 |
}
|
142 |
}
|
143 |
+
elseif(is_post_type_archive($PT) && !is_search())
|
144 |
{
|
145 |
$template = locate_template('archive-'.$PT.'.php');
|
146 |
if($template == '')
|
app/libraries/render.php
CHANGED
@@ -949,7 +949,6 @@ class MEC_render extends MEC_base
|
|
949 |
|
950 |
// Set last month for include current month results
|
951 |
$month = date('m', strtotime('first day of last month', strtotime($event_info['start']['date'])));
|
952 |
-
$current_day = date("d", strtotime($event_info['start']['date']));
|
953 |
|
954 |
if($month == '12') $year = $year - 1;
|
955 |
|
@@ -995,7 +994,7 @@ class MEC_render extends MEC_base
|
|
995 |
$index = intval($d[1]) ? (intval($d[1]) - 1) : 4;
|
996 |
|
997 |
// Generate date
|
998 |
-
$date = "{$year}-{$month}-
|
999 |
|
1000 |
// Generate start date for example "first Sun of next month"
|
1001 |
$start = date('Y-m-d', strtotime("{$levels[$index]} {$d[0]} of next month", strtotime($date)));
|
949 |
|
950 |
// Set last month for include current month results
|
951 |
$month = date('m', strtotime('first day of last month', strtotime($event_info['start']['date'])));
|
|
|
952 |
|
953 |
if($month == '12') $year = $year - 1;
|
954 |
|
994 |
$index = intval($d[1]) ? (intval($d[1]) - 1) : 4;
|
995 |
|
996 |
// Generate date
|
997 |
+
$date = date('Y-m-t', strtotime("{$year}-{$month}-01"));
|
998 |
|
999 |
// Generate start date for example "first Sun of next month"
|
1000 |
$start = date('Y-m-d', strtotime("{$levels[$index]} {$d[0]} of next month", strtotime($date)));
|
app/libraries/syncSchedule.php
CHANGED
@@ -20,31 +20,25 @@ class MEC_syncSchedule extends MEC_base
|
|
20 |
$ix = $this->main->get_ix_options();
|
21 |
$notifications = $this->main->get_notifications();
|
22 |
|
23 |
-
|
|
|
|
|
|
|
24 |
{
|
25 |
-
|
26 |
-
|
27 |
-
$sync_g_import = MEC_ABSPATH.'app'.DS.'crons'.DS.'g-import.php';
|
28 |
-
include_once $sync_g_import;
|
29 |
-
}
|
30 |
}
|
31 |
-
|
32 |
-
if(isset($ix['
|
33 |
{
|
34 |
-
|
35 |
-
|
36 |
-
$sync_g_export = MEC_ABSPATH.'app'.DS.'crons'.DS.'g-export.php';
|
37 |
-
include_once $sync_g_export;
|
38 |
-
}
|
39 |
}
|
40 |
|
41 |
-
if(isset($ix['
|
42 |
{
|
43 |
-
|
44 |
-
|
45 |
-
$sync_meetup_import = MEC_ABSPATH.'app'.DS.'crons'.DS.'meetup-import.php';
|
46 |
-
include_once $sync_meetup_import;
|
47 |
-
}
|
48 |
}
|
49 |
|
50 |
if(isset($notifications['booking_reminder']) and $notifications['booking_reminder']['status'])
|
20 |
$ix = $this->main->get_ix_options();
|
21 |
$notifications = $this->main->get_notifications();
|
22 |
|
23 |
+
// To run crons by force
|
24 |
+
$internal_cron_system = true;
|
25 |
+
|
26 |
+
if(isset($ix['sync_g_import_auto']) and $ix['sync_g_import_auto'] == '1')
|
27 |
{
|
28 |
+
$sync_g_import = MEC_ABSPATH.'app'.DS.'crons'.DS.'g-import.php';
|
29 |
+
include_once $sync_g_import;
|
|
|
|
|
|
|
30 |
}
|
31 |
+
|
32 |
+
if(isset($ix['sync_g_export_auto']) and $ix['sync_g_export_auto'] == '1')
|
33 |
{
|
34 |
+
$sync_g_export = MEC_ABSPATH.'app'.DS.'crons'.DS.'g-export.php';
|
35 |
+
include_once $sync_g_export;
|
|
|
|
|
|
|
36 |
}
|
37 |
|
38 |
+
if(isset($ix['sync_meetup_import_auto']) and $ix['sync_meetup_import_auto'] == '1')
|
39 |
{
|
40 |
+
$sync_meetup_import = MEC_ABSPATH.'app'.DS.'crons'.DS.'meetup-import.php';
|
41 |
+
include_once $sync_meetup_import;
|
|
|
|
|
|
|
42 |
}
|
43 |
|
44 |
if(isset($notifications['booking_reminder']) and $notifications['booking_reminder']['status'])
|
app/modules/booking/steps/checkout.php
CHANGED
@@ -66,7 +66,8 @@ foreach($gateways as $gateway)
|
|
66 |
</div>
|
67 |
<?php endforeach; ?>
|
68 |
</div>
|
69 |
-
<
|
|
|
70 |
<div class="mec-form-row">
|
71 |
<input type="hidden" name="action" value="mec_do_transaction_free" />
|
72 |
<input type="hidden" name="transaction_id" value="<?php echo $transaction_id; ?>" />
|
@@ -76,5 +77,4 @@ foreach($gateways as $gateway)
|
|
76 |
<button class="mec-book-form-next-button" type="submit"><?php _e('Free Booking', 'modern-events-calendar-lite'); ?></button>
|
77 |
</div>
|
78 |
</form>
|
79 |
-
<button id="mec-book-form-back-btn-step-3" class="mec-book-form-back-button" type="button" onclick="mec_book_form_back_btn_click(this);"><?php _e('Back', 'modern-events-calendar-lite'); ?></button>
|
80 |
</div>
|
66 |
</div>
|
67 |
<?php endforeach; ?>
|
68 |
</div>
|
69 |
+
<button id="mec-book-form-back-btn-step-3" class="mec-book-form-back-button" type="button" onclick="mec_book_form_back_btn_click(this);"><?php _e('Back', 'modern-events-calendar-lite'); ?></button>
|
70 |
+
<form id="mec_book_form_free_booking<?php echo $uniqueid; ?>" class="mec-util-hidden mec-click-next" onsubmit="mec_book_free<?php echo $uniqueid; ?>(); return false;">
|
71 |
<div class="mec-form-row">
|
72 |
<input type="hidden" name="action" value="mec_do_transaction_free" />
|
73 |
<input type="hidden" name="transaction_id" value="<?php echo $transaction_id; ?>" />
|
77 |
<button class="mec-book-form-next-button" type="submit"><?php _e('Free Booking', 'modern-events-calendar-lite'); ?></button>
|
78 |
</div>
|
79 |
</form>
|
|
|
80 |
</div>
|
app/modules/booking/steps/form.php
CHANGED
@@ -175,7 +175,7 @@ if(!$mec_email)
|
|
175 |
<input type="hidden" name="step" value="2" />
|
176 |
<?php wp_nonce_field('mec_book_form_'.$event_id); ?>
|
177 |
<div class="mec-book-form-btn-wrap">
|
178 |
-
<button id="mec-book-form-btn-step-2" class="mec-book-form-next-button" type="submit" onclick="mec_book_form_back_btn_cache(this, <?php echo $uniqueid; ?>);"><?php _e('Next', 'modern-events-calendar-lite'); ?></button>
|
179 |
<button id="mec-book-form-back-btn-step-2" class="mec-book-form-back-button" type="button" onclick="mec_book_form_back_btn_click(this);"><?php _e('Back', 'modern-events-calendar-lite'); ?></button>
|
|
|
180 |
</div>
|
181 |
</form>
|
175 |
<input type="hidden" name="step" value="2" />
|
176 |
<?php wp_nonce_field('mec_book_form_'.$event_id); ?>
|
177 |
<div class="mec-book-form-btn-wrap">
|
|
|
178 |
<button id="mec-book-form-back-btn-step-2" class="mec-book-form-back-button" type="button" onclick="mec_book_form_back_btn_click(this);"><?php _e('Back', 'modern-events-calendar-lite'); ?></button>
|
179 |
+
<button id="mec-book-form-btn-step-2" class="mec-book-form-next-button" type="submit" onclick="mec_book_form_back_btn_cache(this, <?php echo $uniqueid; ?>);"><?php _e('Next', 'modern-events-calendar-lite'); ?></button>
|
180 |
</div>
|
181 |
</form>
|
app/skins/agenda/render.php
CHANGED
@@ -32,64 +32,20 @@ $this->localtime = isset($this->skin_options['include_local_time']) ? $this->ski
|
|
32 |
$event_start_date = !empty($event->date['start']['date']) ? $event->date['start']['date'] : '';
|
33 |
|
34 |
$label_style = '';
|
35 |
-
if
|
36 |
-
foreach( $event->data->labels as $label)
|
37 |
{
|
38 |
-
|
39 |
-
if ( $label['style'] == 'mec-label-featured' )
|
40 |
{
|
41 |
-
$
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
$label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite' );
|
46 |
}
|
47 |
}
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
$speakers= [];
|
53 |
-
foreach ($event->data->speakers as $key => $value) {
|
54 |
-
$speakers[] = array(
|
55 |
-
"@type" => "Person",
|
56 |
-
"name" => $value['name'],
|
57 |
-
"image" => $value['thumbnail'],
|
58 |
-
"sameAs" => $value['facebook'],
|
59 |
-
);
|
60 |
-
}
|
61 |
-
$speakers = json_encode($speakers);
|
62 |
-
}
|
63 |
-
$schema_settings = isset( $settings['schema'] ) ? $settings['schema'] : '';
|
64 |
-
if($schema_settings == '1' ):
|
65 |
-
?>
|
66 |
-
<script type="application/ld+json">
|
67 |
-
{
|
68 |
-
"@context" : "http://schema.org",
|
69 |
-
"@type" : "Event",
|
70 |
-
"startDate" : "<?php echo !empty( $event->data->meta['mec_date']['start']['date'] ) ? $event->data->meta['mec_date']['start']['date'] : '' ; ?>",
|
71 |
-
"endDate" : "<?php echo !empty( $event->data->meta['mec_date']['end']['date'] ) ? $event->data->meta['mec_date']['end']['date'] : '' ; ?>",
|
72 |
-
"location" :
|
73 |
-
{
|
74 |
-
"@type" : "Place",
|
75 |
-
"name" : "<?php echo (isset($location['name']) ? $location['name'] : ''); ?>",
|
76 |
-
"image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
|
77 |
-
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
78 |
-
},
|
79 |
-
"offers": {
|
80 |
-
"url": "<?php echo $event->data->permalink; ?>",
|
81 |
-
"price": "<?php echo isset($event->data->meta['mec_cost']) ? $event->data->meta['mec_cost'] : '' ; ?>",
|
82 |
-
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
83 |
-
},
|
84 |
-
"performer": <?php echo $speakers; ?>,
|
85 |
-
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', preg_replace('/\s/u', ' ', $event->data->post->post_content))); ?>",
|
86 |
-
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
87 |
-
"name" : "<?php esc_html_e($event->data->title); ?>",
|
88 |
-
"url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
|
89 |
-
}
|
90 |
-
</script>
|
91 |
-
<?php
|
92 |
-
endif;
|
93 |
if($this->style == 'clean'): ?>
|
94 |
<div class="<?php echo (isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : ''; ?>mec-agenda-event <?php echo $this->get_event_classes($event); ?>">
|
95 |
<i class="mec-sl-clock "></i>
|
32 |
$event_start_date = !empty($event->date['start']['date']) ? $event->date['start']['date'] : '';
|
33 |
|
34 |
$label_style = '';
|
35 |
+
if(!empty($event->data->labels))
|
|
|
36 |
{
|
37 |
+
foreach($event->data->labels as $label)
|
|
|
38 |
{
|
39 |
+
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
40 |
+
|
41 |
+
if($label['style'] == 'mec-label-featured') $label_style = esc_html__('Featured' , 'modern-events-calendar-lite');
|
42 |
+
elseif($label['style'] == 'mec-label-canceled') $label_style = esc_html__('Canceled' , 'modern-events-calendar-lite');
|
|
|
43 |
}
|
44 |
}
|
45 |
+
|
46 |
+
// MEC Schema
|
47 |
+
do_action('mec_schema', $event);
|
48 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
49 |
if($this->style == 'clean'): ?>
|
50 |
<div class="<?php echo (isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : ''; ?>mec-agenda-event <?php echo $this->get_event_classes($event); ?>">
|
51 |
<i class="mec-sl-clock "></i>
|
app/skins/available_spot/tpl.php
CHANGED
@@ -6,10 +6,10 @@ $styling = $this->main->get_styling();
|
|
6 |
$event = $this->events[0];
|
7 |
$settings = $this->main->get_settings();
|
8 |
$this->localtime = isset($this->skin_options['include_local_time']) ? $this->skin_options['include_local_time'] : false;
|
9 |
-
$dark_mode =
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
|
14 |
// Event is not valid!
|
15 |
if(!isset($event->data)) return;
|
@@ -99,58 +99,15 @@ foreach($availability as $ticket_id=>$count)
|
|
99 |
}
|
100 |
}
|
101 |
|
102 |
-
$speakers = '""';
|
103 |
-
if(!empty($event->data->speakers))
|
104 |
-
{
|
105 |
-
$speakers= [];
|
106 |
-
foreach($event->data->speakers as $key => $value)
|
107 |
-
{
|
108 |
-
$speakers[] = array(
|
109 |
-
"@type" => "Person",
|
110 |
-
"name" => $value['name'],
|
111 |
-
"image" => $value['thumbnail'],
|
112 |
-
"sameAs" => $value['facebook'],
|
113 |
-
);
|
114 |
-
}
|
115 |
-
|
116 |
-
$speakers = json_encode($speakers);
|
117 |
-
}
|
118 |
-
|
119 |
do_action('mec_start_skin' , $this->id);
|
120 |
do_action('mec_available_spot_skin_head');
|
121 |
?>
|
122 |
<div class="mec-wrap <?php echo $event_colorskin; ?> <?php echo $this->html_class . ' ' . $set_dark; ?>" id="mec_skin_<?php echo $this->id; ?>">
|
123 |
<div class="mec-av-spot-wrap">
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
<script type="application/ld+json">
|
129 |
-
{
|
130 |
-
"@context" : "http://schema.org",
|
131 |
-
"@type" : "Event",
|
132 |
-
"startDate" : "<?php echo !empty( $event->data->meta['mec_date']['start']['date'] ) ? $event->data->meta['mec_date']['start']['date'] : '' ; ?>",
|
133 |
-
"endDate" : "<?php echo !empty( $event->data->meta['mec_date']['end']['date'] ) ? $event->data->meta['mec_date']['end']['date'] : '' ; ?>",
|
134 |
-
"location" :
|
135 |
-
{
|
136 |
-
"@type" : "Place",
|
137 |
-
"name" : "<?php echo (isset($location['name']) ? $location['name'] : ''); ?>",
|
138 |
-
"image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
|
139 |
-
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
140 |
-
},
|
141 |
-
"offers": {
|
142 |
-
"url": "<?php echo $event->data->permalink; ?>",
|
143 |
-
"price": "<?php echo isset($event->data->meta['mec_cost']) ? $event->data->meta['mec_cost'] : '' ; ?>",
|
144 |
-
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
145 |
-
},
|
146 |
-
"performer": <?php echo $speakers; ?>,
|
147 |
-
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', preg_replace('/\s/u', ' ', $event->data->post->post_content))); ?>",
|
148 |
-
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
149 |
-
"name" : "<?php esc_html_e($event->data->title); ?>",
|
150 |
-
"url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
|
151 |
-
}
|
152 |
-
</script>
|
153 |
-
<?php endif; ?>
|
154 |
<div class="mec-av-spot">
|
155 |
<article data-style="<?php echo $label_style; ?>" class="<?php echo (isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : ''; ?>mec-event-article mec-clear <?php echo $this->get_event_classes($event); ?>">
|
156 |
|
6 |
$event = $this->events[0];
|
7 |
$settings = $this->main->get_settings();
|
8 |
$this->localtime = isset($this->skin_options['include_local_time']) ? $this->skin_options['include_local_time'] : false;
|
9 |
+
$dark_mode = isset($styling['dark_mode']) ? $styling['dark_mode'] : '';
|
10 |
+
|
11 |
+
if($dark_mode == 1) $set_dark = 'mec-dark-mode';
|
12 |
+
else $set_dark ='';
|
13 |
|
14 |
// Event is not valid!
|
15 |
if(!isset($event->data)) return;
|
99 |
}
|
100 |
}
|
101 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
102 |
do_action('mec_start_skin' , $this->id);
|
103 |
do_action('mec_available_spot_skin_head');
|
104 |
?>
|
105 |
<div class="mec-wrap <?php echo $event_colorskin; ?> <?php echo $this->html_class . ' ' . $set_dark; ?>" id="mec_skin_<?php echo $this->id; ?>">
|
106 |
<div class="mec-av-spot-wrap">
|
107 |
+
<?php
|
108 |
+
// MEC Schema
|
109 |
+
do_action('mec_schema', $event);
|
110 |
+
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
111 |
<div class="mec-av-spot">
|
112 |
<article data-style="<?php echo $label_style; ?>" class="<?php echo (isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : ''; ?>mec-event-article mec-clear <?php echo $this->get_event_classes($event); ?>">
|
113 |
|
app/skins/carousel/render.php
CHANGED
@@ -10,27 +10,15 @@ $this->localtime = isset($this->skin_options['include_local_time']) ? $this->ski
|
|
10 |
<div class="mec-wrap <?php echo $event_colorskin; ?>">
|
11 |
<div class="mec-event-carousel-<?php echo $this->style; ?>">
|
12 |
<?php
|
13 |
-
if(
|
14 |
-
|
15 |
-
|
16 |
-
}
|
17 |
-
elseif ( $this->style == 'type1' )
|
18 |
-
{
|
19 |
-
$carousel_type = 'type1' ;
|
20 |
-
}
|
21 |
-
else
|
22 |
-
{
|
23 |
-
$carousel_type = 'type2' ;
|
24 |
-
}
|
25 |
?>
|
26 |
<div class='mec-owl-crousel-skin-<?php echo $carousel_type; ?> mec-owl-carousel mec-owl-theme'>
|
27 |
<?php
|
28 |
foreach($this->events as $date):
|
29 |
foreach($date as $event):
|
30 |
|
31 |
-
// Skip to next event if there is no image
|
32 |
-
// if(empty($event->data->thumbnails['meccarouselthumb'])) continue;
|
33 |
-
|
34 |
$location = isset($event->data->locations[$event->data->meta['mec_location_id']])? $event->data->locations[$event->data->meta['mec_location_id']] : array();
|
35 |
$organizer = isset($event->data->organizers[$event->data->meta['mec_organizer_id']])? $event->data->organizers[$event->data->meta['mec_organizer_id']] : array();
|
36 |
$event_color = isset($event->data->meta['mec_color']) ? '<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>' : '';
|
@@ -48,56 +36,11 @@ $this->localtime = isset($this->skin_options['include_local_time']) ? $this->ski
|
|
48 |
}
|
49 |
}
|
50 |
|
51 |
-
|
52 |
-
|
53 |
-
{
|
54 |
-
$speakers = [];
|
55 |
-
foreach($event->data->speakers as $key=>$value)
|
56 |
-
{
|
57 |
-
$speakers[] = array(
|
58 |
-
"@type" => "Person",
|
59 |
-
"name" => $value['name'],
|
60 |
-
"image" => $value['thumbnail'],
|
61 |
-
"sameAs" => $value['facebook'],
|
62 |
-
);
|
63 |
-
}
|
64 |
-
|
65 |
-
$speakers = json_encode($speakers);
|
66 |
-
}
|
67 |
?>
|
68 |
<article data-style="<?php echo $label_style; ?>" class="<?php echo (isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : ''; ?>mec-event-article mec-clear <?php echo $this->get_event_classes($event); ?>" itemscope>
|
69 |
-
<?php
|
70 |
-
$schema_settings = isset( $settings['schema'] ) ? $settings['schema'] : '';
|
71 |
-
if($schema_settings == '1' ):
|
72 |
-
?>
|
73 |
-
<script type="application/ld+json">
|
74 |
-
{
|
75 |
-
"@context" : "http://schema.org",
|
76 |
-
"@type" : "Event",
|
77 |
-
"startDate" : "<?php echo !empty( $event->data->meta['mec_date']['start']['date'] ) ? $event->data->meta['mec_date']['start']['date'] : '' ; ?>",
|
78 |
-
"endDate" : "<?php echo !empty( $event->data->meta['mec_date']['end']['date'] ) ? $event->data->meta['mec_date']['end']['date'] : '' ; ?>",
|
79 |
-
"location" :
|
80 |
-
{
|
81 |
-
"@type" : "Place",
|
82 |
-
"name" : "<?php echo (isset($location['name']) ? $location['name'] : ''); ?>",
|
83 |
-
"image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
|
84 |
-
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
85 |
-
},
|
86 |
-
"offers": {
|
87 |
-
"url": "<?php echo $event->data->permalink; ?>",
|
88 |
-
"price": "<?php echo isset($event->data->meta['mec_cost']) ? $event->data->meta['mec_cost'] : '' ; ?>",
|
89 |
-
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
90 |
-
},
|
91 |
-
"performer": <?php echo $speakers; ?>,
|
92 |
-
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', preg_replace('/\s/u', ' ', $event->data->post->post_content))); ?>",
|
93 |
-
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
94 |
-
"name" : "<?php esc_html_e($event->data->title); ?>",
|
95 |
-
"url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
|
96 |
-
}
|
97 |
-
</script>
|
98 |
-
<?php
|
99 |
-
endif;
|
100 |
-
if($this->style == 'type1'): ?>
|
101 |
<div class="event-carousel-type1-head clearfix">
|
102 |
<div class="mec-event-date mec-color">
|
103 |
<div class="mec-event-image">
|
10 |
<div class="mec-wrap <?php echo $event_colorskin; ?>">
|
11 |
<div class="mec-event-carousel-<?php echo $this->style; ?>">
|
12 |
<?php
|
13 |
+
if($this->style == 'type4') $carousel_type = 'type4';
|
14 |
+
elseif($this->style == 'type1') $carousel_type = 'type1';
|
15 |
+
else $carousel_type = 'type2';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
?>
|
17 |
<div class='mec-owl-crousel-skin-<?php echo $carousel_type; ?> mec-owl-carousel mec-owl-theme'>
|
18 |
<?php
|
19 |
foreach($this->events as $date):
|
20 |
foreach($date as $event):
|
21 |
|
|
|
|
|
|
|
22 |
$location = isset($event->data->locations[$event->data->meta['mec_location_id']])? $event->data->locations[$event->data->meta['mec_location_id']] : array();
|
23 |
$organizer = isset($event->data->organizers[$event->data->meta['mec_organizer_id']])? $event->data->organizers[$event->data->meta['mec_organizer_id']] : array();
|
24 |
$event_color = isset($event->data->meta['mec_color']) ? '<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>' : '';
|
36 |
}
|
37 |
}
|
38 |
|
39 |
+
// MEC Schema
|
40 |
+
do_action('mec_schema', $event);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
41 |
?>
|
42 |
<article data-style="<?php echo $label_style; ?>" class="<?php echo (isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : ''; ?>mec-event-article mec-clear <?php echo $this->get_event_classes($event); ?>" itemscope>
|
43 |
+
<?php if($this->style == 'type1'): ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
44 |
<div class="event-carousel-type1-head clearfix">
|
45 |
<div class="mec-event-date mec-color">
|
46 |
<div class="mec-event-image">
|
app/skins/countdown/tpl.php
CHANGED
@@ -6,10 +6,10 @@ $styling = $this->main->get_styling();
|
|
6 |
$event = $this->events[0];
|
7 |
$settings = $this->main->get_settings();
|
8 |
$this->localtime = isset($this->skin_options['include_local_time']) ? $this->skin_options['include_local_time'] : false;
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
|
14 |
// Event is not valid!
|
15 |
if(!isset($event->data)) return;
|
@@ -70,23 +70,6 @@ if(isset($_SERVER['HTTP_USER_AGENT']) and strpos($_SERVER['HTTP_USER_AGENT'], 'S
|
|
70 |
if(isset($_SERVER['HTTP_USER_AGENT']) and strpos($_SERVER['HTTP_USER_AGENT'], 'Edge') == true) $gmt_offset = substr(trim($gmt_offset), 0 , 3);
|
71 |
if(isset($_SERVER['HTTP_USER_AGENT']) and strpos($_SERVER['HTTP_USER_AGENT'], 'Trident') == true) $gmt_offset = substr(trim($gmt_offset), 2 , 3);
|
72 |
|
73 |
-
$speakers = '""';
|
74 |
-
if(!empty($event->data->speakers))
|
75 |
-
{
|
76 |
-
$speakers= [];
|
77 |
-
foreach($event->data->speakers as $key => $value)
|
78 |
-
{
|
79 |
-
$speakers[] = array(
|
80 |
-
"@type" => "Person",
|
81 |
-
"name" => $value['name'],
|
82 |
-
"image" => $value['thumbnail'],
|
83 |
-
"sameAs" => $value['facebook'],
|
84 |
-
);
|
85 |
-
}
|
86 |
-
|
87 |
-
$speakers = json_encode($speakers);
|
88 |
-
}
|
89 |
-
|
90 |
// Generating javascript code of countdown module
|
91 |
$javascript = '<script type="text/javascript">
|
92 |
jQuery(document).ready(function()
|
@@ -105,7 +88,8 @@ jQuery(document).ready(function()
|
|
105 |
// Include javascript code into the page
|
106 |
if($this->main->is_ajax()) echo $javascript;
|
107 |
else $this->factory->params('footer', $javascript);
|
108 |
-
|
|
|
109 |
do_action('mec_countdown_skin_head');
|
110 |
?>
|
111 |
<style>
|
@@ -114,36 +98,9 @@ do_action('mec_countdown_skin_head');
|
|
114 |
</style>
|
115 |
<div class="mec-wrap <?php echo $this->html_class . ' ' . $set_dark; ?>" id="mec_skin_<?php echo $this->id; ?>">
|
116 |
<?php
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
<script type="application/ld+json">
|
121 |
-
{
|
122 |
-
"@context" : "http://schema.org",
|
123 |
-
"@type" : "Event",
|
124 |
-
"startDate" : "<?php echo !empty( $event->data->meta['mec_date']['start']['date'] ) ? $event->data->meta['mec_date']['start']['date'] : '' ; ?>",
|
125 |
-
"endDate" : "<?php echo !empty( $event->data->meta['mec_date']['end']['date'] ) ? $event->data->meta['mec_date']['end']['date'] : '' ; ?>",
|
126 |
-
"location" :
|
127 |
-
{
|
128 |
-
"@type" : "Place",
|
129 |
-
"name" : "<?php echo (isset($location['name']) ? $location['name'] : ''); ?>",
|
130 |
-
"image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
|
131 |
-
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
132 |
-
},
|
133 |
-
"offers": {
|
134 |
-
"url": "<?php echo $event->data->permalink; ?>",
|
135 |
-
"price": "<?php echo isset($event->data->meta['mec_cost']) ? $event->data->meta['mec_cost'] : '' ; ?>",
|
136 |
-
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
137 |
-
},
|
138 |
-
"performer": <?php echo $speakers; ?>,
|
139 |
-
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', preg_replace('/\s/u', ' ', $event->data->post->post_content))); ?>",
|
140 |
-
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
141 |
-
"name" : "<?php esc_html_e($event->data->title); ?>",
|
142 |
-
"url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
|
143 |
-
}
|
144 |
-
</script>
|
145 |
-
<?php
|
146 |
-
endif;
|
147 |
if($this->style == 'style1'): ?>
|
148 |
<article class="mec-event-countdown-style1 col-md-12 <?php echo $this->get_event_classes($event); ?>">
|
149 |
<div class="mec-event-countdown-part1 col-md-4">
|
6 |
$event = $this->events[0];
|
7 |
$settings = $this->main->get_settings();
|
8 |
$this->localtime = isset($this->skin_options['include_local_time']) ? $this->skin_options['include_local_time'] : false;
|
9 |
+
|
10 |
+
$dark_mode = isset($styling['dark_mode']) ? $styling['dark_mode'] : '';
|
11 |
+
if($dark_mode == 1) $set_dark = 'mec-dark-mode';
|
12 |
+
else $set_dark = '';
|
13 |
|
14 |
// Event is not valid!
|
15 |
if(!isset($event->data)) return;
|
70 |
if(isset($_SERVER['HTTP_USER_AGENT']) and strpos($_SERVER['HTTP_USER_AGENT'], 'Edge') == true) $gmt_offset = substr(trim($gmt_offset), 0 , 3);
|
71 |
if(isset($_SERVER['HTTP_USER_AGENT']) and strpos($_SERVER['HTTP_USER_AGENT'], 'Trident') == true) $gmt_offset = substr(trim($gmt_offset), 2 , 3);
|
72 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
73 |
// Generating javascript code of countdown module
|
74 |
$javascript = '<script type="text/javascript">
|
75 |
jQuery(document).ready(function()
|
88 |
// Include javascript code into the page
|
89 |
if($this->main->is_ajax()) echo $javascript;
|
90 |
else $this->factory->params('footer', $javascript);
|
91 |
+
|
92 |
+
do_action('mec_start_skin', $this->id);
|
93 |
do_action('mec_countdown_skin_head');
|
94 |
?>
|
95 |
<style>
|
98 |
</style>
|
99 |
<div class="mec-wrap <?php echo $this->html_class . ' ' . $set_dark; ?>" id="mec_skin_<?php echo $this->id; ?>">
|
100 |
<?php
|
101 |
+
// MEC Schema
|
102 |
+
do_action('mec_schema', $event);
|
103 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
104 |
if($this->style == 'style1'): ?>
|
105 |
<article class="mec-event-countdown-style1 col-md-12 <?php echo $this->get_event_classes($event); ?>">
|
106 |
<div class="mec-event-countdown-part1 col-md-4">
|
app/skins/cover/tpl.php
CHANGED
@@ -6,10 +6,10 @@ $styling = $this->main->get_styling();
|
|
6 |
$event = $this->events[0];
|
7 |
$settings = $this->main->get_settings();
|
8 |
$this->localtime = isset($this->skin_options['include_local_time']) ? $this->skin_options['include_local_time'] : false;
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
|
14 |
// Event is not valid!
|
15 |
if(!isset($event->data)) return;
|
@@ -24,70 +24,26 @@ $event_color = isset($event->data->meta['mec_color']) ? '<span class="event-colo
|
|
24 |
$event_thumb = $event->data->thumbnails['large'];
|
25 |
$event_thumb_url = $event->data->featured_image['large'];
|
26 |
$event_start_date = !empty($event->date['start']['date']) ? $event->date['start']['date'] : '';
|
|
|
27 |
$label_style = '';
|
28 |
-
if
|
29 |
-
foreach( $event->data->labels as $label)
|
30 |
{
|
31 |
-
|
32 |
-
if ( $label['style'] == 'mec-label-featured' )
|
33 |
-
{
|
34 |
-
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite' );
|
35 |
-
}
|
36 |
-
elseif ( $label['style'] == 'mec-label-canceled' )
|
37 |
{
|
38 |
-
$
|
|
|
|
|
39 |
}
|
40 |
}
|
41 |
-
|
42 |
-
|
43 |
-
if ( !empty($event->data->speakers))
|
44 |
-
{
|
45 |
-
$speakers= [];
|
46 |
-
foreach ($event->data->speakers as $key => $value) {
|
47 |
-
$speakers[] = array(
|
48 |
-
"@type" => "Person",
|
49 |
-
"name" => $value['name'],
|
50 |
-
"image" => $value['thumbnail'],
|
51 |
-
"sameAs" => $value['facebook'],
|
52 |
-
);
|
53 |
-
}
|
54 |
-
$speakers = json_encode($speakers);
|
55 |
-
}
|
56 |
-
do_action('mec_start_skin' , $this->id);
|
57 |
do_action('mec_cover_skin_head');
|
58 |
?>
|
59 |
<div class="mec-wrap <?php echo $event_colorskin . ' ' . $this->html_class . ' ' . $set_dark; ?>">
|
60 |
<?php
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
<script type="application/ld+json">
|
65 |
-
{
|
66 |
-
"@context" : "http://schema.org",
|
67 |
-
"@type" : "Event",
|
68 |
-
"startDate" : "<?php echo !empty( $event->data->meta['mec_date']['start']['date'] ) ? $event->data->meta['mec_date']['start']['date'] : '' ; ?>",
|
69 |
-
"endDate" : "<?php echo !empty( $event->data->meta['mec_date']['end']['date'] ) ? $event->data->meta['mec_date']['end']['date'] : '' ; ?>",
|
70 |
-
"location" :
|
71 |
-
{
|
72 |
-
"@type" : "Place",
|
73 |
-
"name" : "<?php echo (isset($location['name']) ? $location['name'] : ''); ?>",
|
74 |
-
"image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
|
75 |
-
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
76 |
-
},
|
77 |
-
"offers": {
|
78 |
-
"url": "<?php echo $event->data->permalink; ?>",
|
79 |
-
"price": "<?php echo isset($event->data->meta['mec_cost']) ? $event->data->meta['mec_cost'] : '' ; ?>",
|
80 |
-
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
81 |
-
},
|
82 |
-
"performer": <?php echo $speakers; ?>,
|
83 |
-
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', preg_replace('/\s/u', ' ', $event->data->post->post_content))); ?>",
|
84 |
-
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
85 |
-
"name" : "<?php esc_html_e($event->data->title); ?>",
|
86 |
-
"url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
|
87 |
-
}
|
88 |
-
</script>
|
89 |
-
<?php
|
90 |
-
endif;
|
91 |
if($this->style == 'modern' and $event_thumb_url): ?>
|
92 |
<article class="<?php echo (isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : ''; ?>mec-event-cover-modern <?php echo $this->get_event_classes($event); ?>" style="background: url('<?php echo $event_thumb_url; ?>'); height: 678px;background-size: cover;">
|
93 |
<a href="<?php echo $event_link; ?>" class="mec-event-cover-a">
|
6 |
$event = $this->events[0];
|
7 |
$settings = $this->main->get_settings();
|
8 |
$this->localtime = isset($this->skin_options['include_local_time']) ? $this->skin_options['include_local_time'] : false;
|
9 |
+
|
10 |
+
$dark_mode = isset($styling['dark_mode']) ? $styling['dark_mode'] : '';
|
11 |
+
if($dark_mode == 1) $set_dark = 'mec-dark-mode';
|
12 |
+
else $set_dark = '';
|
13 |
|
14 |
// Event is not valid!
|
15 |
if(!isset($event->data)) return;
|
24 |
$event_thumb = $event->data->thumbnails['large'];
|
25 |
$event_thumb_url = $event->data->featured_image['large'];
|
26 |
$event_start_date = !empty($event->date['start']['date']) ? $event->date['start']['date'] : '';
|
27 |
+
|
28 |
$label_style = '';
|
29 |
+
if(!empty($event->data->labels))
|
|
|
30 |
{
|
31 |
+
foreach($event->data->labels as $label)
|
|
|
|
|
|
|
|
|
|
|
32 |
{
|
33 |
+
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
34 |
+
if($label['style'] == 'mec-label-featured') $label_style = esc_html__('Featured' , 'modern-events-calendar-lite');
|
35 |
+
elseif($label['style'] == 'mec-label-canceled') $label_style = esc_html__('Canceled' , 'modern-events-calendar-lite');
|
36 |
}
|
37 |
}
|
38 |
+
|
39 |
+
do_action('mec_start_skin', $this->id);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
do_action('mec_cover_skin_head');
|
41 |
?>
|
42 |
<div class="mec-wrap <?php echo $event_colorskin . ' ' . $this->html_class . ' ' . $set_dark; ?>">
|
43 |
<?php
|
44 |
+
// MEC Schema
|
45 |
+
do_action('mec_schema', $event);
|
46 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
47 |
if($this->style == 'modern' and $event_thumb_url): ?>
|
48 |
<article class="<?php echo (isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : ''; ?>mec-event-cover-modern <?php echo $this->get_event_classes($event); ?>" style="background: url('<?php echo $event_thumb_url; ?>'); height: 678px;background-size: cover;">
|
49 |
<a href="<?php echo $event_link; ?>" class="mec-event-cover-a">
|
app/skins/custom/render.php
CHANGED
@@ -1,15 +1,15 @@
|
|
1 |
<?php
|
2 |
/** no direct access **/
|
3 |
defined('MECEXEC') or die();
|
|
|
4 |
use Elementor\Plugin;
|
5 |
-
if
|
6 |
-
return;
|
7 |
-
}
|
8 |
|
9 |
$styling = $this->main->get_styling();
|
10 |
$event_colorskin = (isset($styling['mec_colorskin'] ) || isset($styling['color'])) ? 'colorskin-custom' : '';
|
11 |
$settings = $this->main->get_settings();
|
12 |
$current_month_divider = $this->request->getVar('current_month_divider', 0);
|
|
|
13 |
// colorful
|
14 |
$colorful_flag = $colorful_class = '';
|
15 |
if($this->style == 'colorful')
|
1 |
<?php
|
2 |
/** no direct access **/
|
3 |
defined('MECEXEC') or die();
|
4 |
+
|
5 |
use Elementor\Plugin;
|
6 |
+
if(!did_action('elementor/loaded')) return;
|
|
|
|
|
7 |
|
8 |
$styling = $this->main->get_styling();
|
9 |
$event_colorskin = (isset($styling['mec_colorskin'] ) || isset($styling['color'])) ? 'colorskin-custom' : '';
|
10 |
$settings = $this->main->get_settings();
|
11 |
$current_month_divider = $this->request->getVar('current_month_divider', 0);
|
12 |
+
|
13 |
// colorful
|
14 |
$colorful_flag = $colorful_class = '';
|
15 |
if($this->style == 'colorful')
|
app/skins/daily_view/render.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/** no direct access **/
|
3 |
defined('MECEXEC') or die();
|
4 |
-
|
5 |
$this->localtime = isset($this->skin_options['include_local_time']) ? $this->skin_options['include_local_time'] : false;
|
6 |
?>
|
7 |
<ul class="mec-daily-view-dates-events">
|
@@ -17,63 +17,19 @@ $this->localtime = isset($this->skin_options['include_local_time']) ? $this->ski
|
|
17 |
$event_start_date = !empty($event->date['start']['date']) ? $event->date['start']['date'] : '';
|
18 |
|
19 |
$label_style = '';
|
20 |
-
if
|
21 |
-
foreach( $event->data->labels as $label)
|
22 |
{
|
23 |
-
|
24 |
-
if ( $label['style'] == 'mec-label-featured' )
|
25 |
-
{
|
26 |
-
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite' );
|
27 |
-
}
|
28 |
-
elseif ( $label['style'] == 'mec-label-canceled' )
|
29 |
{
|
30 |
-
$
|
|
|
|
|
31 |
}
|
32 |
}
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
{
|
37 |
-
$speakers= [];
|
38 |
-
foreach ($event->data->speakers as $key => $value) {
|
39 |
-
$speakers[] = array(
|
40 |
-
"@type" => "Person",
|
41 |
-
"name" => $value['name'],
|
42 |
-
"image" => $value['thumbnail'],
|
43 |
-
"sameAs" => $value['facebook'],
|
44 |
-
);
|
45 |
-
}
|
46 |
-
$speakers = json_encode($speakers);
|
47 |
-
}
|
48 |
-
$schema_settings = isset( $settings['schema'] ) ? $settings['schema'] : '';
|
49 |
-
if($schema_settings == '1' ):
|
50 |
?>
|
51 |
-
<script type="application/ld+json">
|
52 |
-
{
|
53 |
-
"@context" : "http://schema.org",
|
54 |
-
"@type" : "Event",
|
55 |
-
"startDate" : "<?php echo !empty( $event->data->meta['mec_date']['start']['date'] ) ? $event->data->meta['mec_date']['start']['date'] : '' ; ?>",
|
56 |
-
"endDate" : "<?php echo !empty( $event->data->meta['mec_date']['end']['date'] ) ? $event->data->meta['mec_date']['end']['date'] : '' ; ?>",
|
57 |
-
"location" :
|
58 |
-
{
|
59 |
-
"@type" : "Place",
|
60 |
-
"name" : "<?php echo (isset($location['name']) ? $location['name'] : ''); ?>",
|
61 |
-
"image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
|
62 |
-
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
63 |
-
},
|
64 |
-
"offers": {
|
65 |
-
"url": "<?php echo $event->data->permalink; ?>",
|
66 |
-
"price": "<?php echo isset($event->data->meta['mec_cost']) ? $event->data->meta['mec_cost'] : '' ; ?>",
|
67 |
-
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
68 |
-
},
|
69 |
-
"performer": <?php echo $speakers; ?>,
|
70 |
-
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', preg_replace('/\s/u', ' ', $event->data->post->post_content))); ?>",
|
71 |
-
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
72 |
-
"name" : "<?php esc_html_e($event->data->title); ?>",
|
73 |
-
"url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
|
74 |
-
}
|
75 |
-
</script>
|
76 |
-
<?php endif; ?>
|
77 |
<article data-style="<?php echo $label_style; ?>" class="<?php echo (isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : ''; ?>mec-event-article <?php echo $this->get_event_classes($event); ?>">
|
78 |
<div class="mec-event-image"><?php echo $event->data->thumbnails['thumbnail']; ?></div>
|
79 |
<?php if(trim($start_time)): ?><div class="mec-event-time mec-color"><i class="mec-sl-clock-o"></i> <?php echo $start_time.(trim($end_time) ? ' - '.$end_time : ''); ?></div><?php endif; ?>
|
1 |
<?php
|
2 |
/** no direct access **/
|
3 |
defined('MECEXEC') or die();
|
4 |
+
|
5 |
$this->localtime = isset($this->skin_options['include_local_time']) ? $this->skin_options['include_local_time'] : false;
|
6 |
?>
|
7 |
<ul class="mec-daily-view-dates-events">
|
17 |
$event_start_date = !empty($event->date['start']['date']) ? $event->date['start']['date'] : '';
|
18 |
|
19 |
$label_style = '';
|
20 |
+
if(!empty($event->data->labels))
|
|
|
21 |
{
|
22 |
+
foreach($event->data->labels as $label)
|
|
|
|
|
|
|
|
|
|
|
23 |
{
|
24 |
+
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
25 |
+
if($label['style'] == 'mec-label-featured') $label_style = esc_html__('Featured' , 'modern-events-calendar-lite');
|
26 |
+
elseif($label['style'] == 'mec-label-canceled') $label_style = esc_html__('Canceled' , 'modern-events-calendar-lite');
|
27 |
}
|
28 |
}
|
29 |
+
|
30 |
+
// MEC Schema
|
31 |
+
do_action('mec_schema', $event);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
<article data-style="<?php echo $label_style; ?>" class="<?php echo (isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : ''; ?>mec-event-article <?php echo $this->get_event_classes($event); ?>">
|
34 |
<div class="mec-event-image"><?php echo $event->data->thumbnails['thumbnail']; ?></div>
|
35 |
<?php if(trim($start_time)): ?><div class="mec-event-time mec-color"><i class="mec-sl-clock-o"></i> <?php echo $start_time.(trim($end_time) ? ' - '.$end_time : ''); ?></div><?php endif; ?>
|
app/skins/default_full_calendar/tpl.php
CHANGED
@@ -30,14 +30,13 @@ if($this->main->is_ajax()) echo $javascript;
|
|
30 |
else $this->factory->params('footer', $javascript);
|
31 |
|
32 |
$styling = $this->main->get_styling();
|
33 |
-
|
34 |
$event_colorskin = (isset($styling['mec_colorskin'] ) || isset($styling['color'])) ? 'colorskin-custom' : '';
|
35 |
-
$dark_mode = ( isset($styling['dark_mode']) ) ? $styling['dark_mode'] : '';
|
36 |
-
if ( $dark_mode == 1 ): $set_dark = 'mec-dark-mode';
|
37 |
-
else: $set_dark ='';
|
38 |
-
endif;
|
39 |
|
40 |
-
|
|
|
|
|
|
|
|
|
41 |
do_action('mec_full_skin_head');
|
42 |
?>
|
43 |
<div id="mec_skin_<?php echo $this->id; ?>" class="mec-wrap <?php echo $event_colorskin . ' ' . $set_dark; ?> mec-full-calendar-wrap">
|
30 |
else $this->factory->params('footer', $javascript);
|
31 |
|
32 |
$styling = $this->main->get_styling();
|
|
|
33 |
$event_colorskin = (isset($styling['mec_colorskin'] ) || isset($styling['color'])) ? 'colorskin-custom' : '';
|
|
|
|
|
|
|
|
|
34 |
|
35 |
+
$dark_mode = isset($styling['dark_mode']) ? $styling['dark_mode'] : '';
|
36 |
+
if($dark_mode == 1) $set_dark = 'mec-dark-mode';
|
37 |
+
else $set_dark = '';
|
38 |
+
|
39 |
+
do_action('mec_start_skin', $this->id);
|
40 |
do_action('mec_full_skin_head');
|
41 |
?>
|
42 |
<div id="mec_skin_<?php echo $this->id; ?>" class="mec-wrap <?php echo $event_colorskin . ' ' . $set_dark; ?> mec-full-calendar-wrap">
|
app/skins/full_calendar/tpl.php
CHANGED
@@ -30,14 +30,13 @@ if($this->main->is_ajax()) echo $javascript;
|
|
30 |
else $this->factory->params('footer', $javascript);
|
31 |
|
32 |
$styling = $this->main->get_styling();
|
33 |
-
|
34 |
$event_colorskin = (isset($styling['mec_colorskin'] ) || isset($styling['color'])) ? 'colorskin-custom' : '';
|
35 |
-
$dark_mode = ( isset($styling['dark_mode']) ) ? $styling['dark_mode'] : '';
|
36 |
-
if ( $dark_mode == 1 ): $set_dark = 'mec-dark-mode';
|
37 |
-
else: $set_dark ='';
|
38 |
-
endif;
|
39 |
|
40 |
-
|
|
|
|
|
|
|
|
|
41 |
do_action('mec_full_skin_head');
|
42 |
?>
|
43 |
<div id="mec_skin_<?php echo $this->id; ?>" class="mec-wrap <?php echo $event_colorskin . ' ' . $set_dark; ?> mec-full-calendar-wrap">
|
@@ -71,11 +70,8 @@ do_action('mec_full_skin_head');
|
|
71 |
$sf_columns = 8;
|
72 |
?>
|
73 |
<?php
|
74 |
-
if
|
75 |
-
|
76 |
-
else:
|
77 |
-
$wrapper_class = '';
|
78 |
-
endif;
|
79 |
?>
|
80 |
<div id="mec_search_form_<?php echo $this->id; ?>" <?php echo $wrapper_class; ?>>
|
81 |
<?php if($sf_category_status): ?>
|
30 |
else $this->factory->params('footer', $javascript);
|
31 |
|
32 |
$styling = $this->main->get_styling();
|
|
|
33 |
$event_colorskin = (isset($styling['mec_colorskin'] ) || isset($styling['color'])) ? 'colorskin-custom' : '';
|
|
|
|
|
|
|
|
|
34 |
|
35 |
+
$dark_mode = isset($styling['dark_mode']) ? $styling['dark_mode'] : '';
|
36 |
+
if($dark_mode == 1) $set_dark = 'mec-dark-mode';
|
37 |
+
else $set_dark = '';
|
38 |
+
|
39 |
+
do_action('mec_start_skin', $this->id);
|
40 |
do_action('mec_full_skin_head');
|
41 |
?>
|
42 |
<div id="mec_skin_<?php echo $this->id; ?>" class="mec-wrap <?php echo $event_colorskin . ' ' . $set_dark; ?> mec-full-calendar-wrap">
|
70 |
$sf_columns = 8;
|
71 |
?>
|
72 |
<?php
|
73 |
+
if((!empty($sf_category) && $sf_category["type"] == 'dropdown') || (!empty($sf_location) && $sf_location["type"] == 'dropdown') || (!empty($sf_organizer) && $sf_organizer["type"] == 'dropdown') || (!empty($sf_speaker) && $sf_speaker["type"] == 'dropdown') || (!empty($sf_tag) && $sf_tag["type"] == 'dropdown') || (!empty($sf_label) && $sf_label["type"] == 'dropdown')) $wrapper_class = 'class="mec-dropdown-wrap"';
|
74 |
+
else $wrapper_class = '';
|
|
|
|
|
|
|
75 |
?>
|
76 |
<div id="mec_search_form_<?php echo $this->id; ?>" <?php echo $wrapper_class; ?>>
|
77 |
<?php if($sf_category_status): ?>
|
app/skins/grid/render.php
CHANGED
@@ -56,52 +56,9 @@ if($this->style == 'colorful')
|
|
56 |
}
|
57 |
}
|
58 |
|
59 |
-
|
60 |
-
|
61 |
-
{
|
62 |
-
$speakers= [];
|
63 |
-
foreach($event->data->speakers as $key => $value)
|
64 |
-
{
|
65 |
-
$speakers[] = array(
|
66 |
-
"@type" => "Person",
|
67 |
-
"name" => $value['name'],
|
68 |
-
"image" => $value['thumbnail'],
|
69 |
-
"sameAs" => $value['facebook'],
|
70 |
-
);
|
71 |
-
}
|
72 |
-
|
73 |
-
$speakers = json_encode($speakers);
|
74 |
-
}
|
75 |
|
76 |
-
$schema_settings = isset($settings['schema']) ? $settings['schema'] : '';
|
77 |
-
if($schema_settings == '1' ):
|
78 |
-
?>
|
79 |
-
<script type="application/ld+json">
|
80 |
-
{
|
81 |
-
"@context" : "http://schema.org",
|
82 |
-
"@type" : "Event",
|
83 |
-
"startDate" : "<?php echo !empty( $event->data->meta['mec_date']['start']['date'] ) ? $event->data->meta['mec_date']['start']['date'] : '' ; ?>",
|
84 |
-
"endDate" : "<?php echo !empty( $event->data->meta['mec_date']['end']['date'] ) ? $event->data->meta['mec_date']['end']['date'] : '' ; ?>",
|
85 |
-
"location" :
|
86 |
-
{
|
87 |
-
"@type" : "Place",
|
88 |
-
"name" : "<?php echo (isset($location['name']) ? $location['name'] : ''); ?>",
|
89 |
-
"image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
|
90 |
-
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
91 |
-
},
|
92 |
-
"offers": {
|
93 |
-
"url": "<?php echo $event->data->permalink; ?>",
|
94 |
-
"price": "<?php echo isset($event->data->meta['mec_cost']) ? $event->data->meta['mec_cost'] : '' ; ?>",
|
95 |
-
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
96 |
-
},
|
97 |
-
"performer": <?php echo $speakers; ?>,
|
98 |
-
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', preg_replace('/\s/u', ' ', $event->data->post->post_content))); ?>",
|
99 |
-
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
100 |
-
"name" : "<?php esc_html_e($event->data->title); ?>",
|
101 |
-
"url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
|
102 |
-
}
|
103 |
-
</script>
|
104 |
-
<?php endif;
|
105 |
echo '<article data-style="'.$label_style.'" class="'.((isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event' : '').' mec-event-article mec-clear '.$this->get_event_classes($event).'"' . $colorful_bg_color . ' itemscope>';
|
106 |
?>
|
107 |
<?php if($this->style == 'modern'): ?>
|
56 |
}
|
57 |
}
|
58 |
|
59 |
+
// MEC Schema
|
60 |
+
do_action('mec_schema', $event);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
61 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
62 |
echo '<article data-style="'.$label_style.'" class="'.((isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event' : '').' mec-event-article mec-clear '.$this->get_event_classes($event).'"' . $colorful_bg_color . ' itemscope>';
|
63 |
?>
|
64 |
<?php if($this->style == 'modern'): ?>
|
app/skins/list/render.php
CHANGED
@@ -41,53 +41,9 @@ $map_events = array();
|
|
41 |
}
|
42 |
}
|
43 |
|
44 |
-
|
45 |
-
|
46 |
-
{
|
47 |
-
$speakers= [];
|
48 |
-
foreach($event->data->speakers as $key => $value)
|
49 |
-
{
|
50 |
-
$speakers[] = array(
|
51 |
-
"@type" => "Person",
|
52 |
-
"name" => $value['name'],
|
53 |
-
"image" => $value['thumbnail'],
|
54 |
-
"sameAs" => $value['facebook'],
|
55 |
-
);
|
56 |
-
}
|
57 |
-
|
58 |
-
$speakers = json_encode($speakers);
|
59 |
-
}
|
60 |
-
|
61 |
-
$schema_settings = isset($settings['schema']) ? $settings['schema'] : '';
|
62 |
-
if($schema_settings == '1'):
|
63 |
?>
|
64 |
-
<script type="application/ld+json">
|
65 |
-
{
|
66 |
-
"@context" : "http://schema.org",
|
67 |
-
"@type" : "Event",
|
68 |
-
"startDate" : "<?php echo !empty( $event->data->meta['mec_date']['start']['date'] ) ? $event->data->meta['mec_date']['start']['date'] : '' ; ?>",
|
69 |
-
"endDate" : "<?php echo !empty( $event->data->meta['mec_date']['end']['date'] ) ? $event->data->meta['mec_date']['end']['date'] : '' ; ?>",
|
70 |
-
"location" :
|
71 |
-
{
|
72 |
-
"@type" : "Place",
|
73 |
-
"name" : "<?php echo (isset($location['name']) ? $location['name'] : ''); ?>",
|
74 |
-
"image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
|
75 |
-
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
76 |
-
},
|
77 |
-
"offers": {
|
78 |
-
"url": "<?php echo $event->data->permalink; ?>",
|
79 |
-
"price": "<?php echo isset($event->data->meta['mec_cost']) ? $event->data->meta['mec_cost'] : '' ; ?>",
|
80 |
-
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
81 |
-
},
|
82 |
-
"performer": <?php echo $speakers; ?>,
|
83 |
-
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', preg_replace('/\s/u', ' ', $event->data->post->post_content))); ?>",
|
84 |
-
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
85 |
-
"name" : "<?php esc_html_e($event->data->title); ?>",
|
86 |
-
"url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
|
87 |
-
}
|
88 |
-
</script>
|
89 |
-
<?php endif; ?>
|
90 |
-
|
91 |
<article data-style="<?php echo $label_style; ?>" class="<?php echo (isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : ''; ?>mec-event-article mec-clear <?php echo $this->get_event_classes($event); ?> mec-divider-toggle mec-toggle-<?php echo date('Ym', strtotime($date)); ?>-<?php echo $this->id; ?>" itemscope>
|
92 |
<?php if($this->style == 'modern'): ?>
|
93 |
<div class="col-md-2 col-sm-2">
|
41 |
}
|
42 |
}
|
43 |
|
44 |
+
// MEC Schema
|
45 |
+
do_action('mec_schema', $event);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
47 |
<article data-style="<?php echo $label_style; ?>" class="<?php echo (isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : ''; ?>mec-event-article mec-clear <?php echo $this->get_event_classes($event); ?> mec-divider-toggle mec-toggle-<?php echo date('Ym', strtotime($date)); ?>-<?php echo $this->id; ?>" itemscope>
|
48 |
<?php if($this->style == 'modern'): ?>
|
49 |
<div class="col-md-2 col-sm-2">
|
app/skins/map/tpl.php
CHANGED
@@ -50,6 +50,7 @@ if(count($this->events))
|
|
50 |
if($this->main->is_ajax()) echo $javascript;
|
51 |
else $this->factory->params('footer', $javascript);
|
52 |
}
|
|
|
53 |
do_action('mec_start_skin', $this->id);
|
54 |
do_action('mec_map_skin_head');
|
55 |
?>
|
50 |
if($this->main->is_ajax()) echo $javascript;
|
51 |
else $this->factory->params('footer', $javascript);
|
52 |
}
|
53 |
+
|
54 |
do_action('mec_start_skin', $this->id);
|
55 |
do_action('mec_map_skin_head');
|
56 |
?>
|
app/skins/masonry/render.php
CHANGED
@@ -13,71 +13,27 @@ $this->localtime = isset($this->skin_options['include_local_time']) ? $this->ski
|
|
13 |
foreach($this->events as $date):
|
14 |
foreach($date as $event):
|
15 |
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
$label_style = '';
|
25 |
-
if(!empty($event->data->labels))
|
26 |
-
{
|
27 |
-
foreach($event->data->labels as $label)
|
28 |
-
{
|
29 |
-
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
30 |
-
if($label['style'] == 'mec-label-featured') $label_style = esc_html__('Featured', 'modern-events-calendar-lite');
|
31 |
-
elseif($label['style'] == 'mec-label-canceled') $label_style = esc_html__('Canceled', 'modern-events-calendar-lite');
|
32 |
-
}
|
33 |
-
}
|
34 |
-
|
35 |
-
$speakers = '""';
|
36 |
-
if(!empty($event->data->speakers))
|
37 |
-
{
|
38 |
-
$speakers= [];
|
39 |
-
foreach($event->data->speakers as $key => $value)
|
40 |
-
{
|
41 |
-
$speakers[] = array(
|
42 |
-
"@type" => "Person",
|
43 |
-
"name" => $value['name'],
|
44 |
-
"image" => $value['thumbnail'],
|
45 |
-
"sameAs" => $value['facebook'],
|
46 |
-
);
|
47 |
-
}
|
48 |
|
49 |
-
$
|
50 |
-
|
51 |
-
$schema_settings = isset( $settings['schema'] ) ? $settings['schema'] : '';
|
52 |
-
if($schema_settings == '1' ):
|
53 |
-
?>
|
54 |
-
<script type="application/ld+json">
|
55 |
{
|
56 |
-
|
57 |
-
"@type" : "Event",
|
58 |
-
"startDate" : "<?php echo !empty( $event->data->meta['mec_date']['start']['date'] ) ? $event->data->meta['mec_date']['start']['date'] : '' ; ?>",
|
59 |
-
"endDate" : "<?php echo !empty( $event->data->meta['mec_date']['end']['date'] ) ? $event->data->meta['mec_date']['end']['date'] : '' ; ?>",
|
60 |
-
"location" :
|
61 |
{
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
},
|
67 |
-
"offers": {
|
68 |
-
"url": "<?php echo $event->data->permalink; ?>",
|
69 |
-
"price": "<?php echo isset($event->data->meta['mec_cost']) ? $event->data->meta['mec_cost'] : '' ; ?>",
|
70 |
-
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
71 |
-
},
|
72 |
-
"performer": <?php echo $speakers; ?>,
|
73 |
-
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', preg_replace('/\s/u', ' ', $event->data->post->post_content))); ?>",
|
74 |
-
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
75 |
-
"name" : "<?php esc_html_e($event->data->title); ?>",
|
76 |
-
"url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
|
77 |
}
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
|
82 |
$masonry_filter = '';
|
83 |
if($this->filter_by == 'category')
|
13 |
foreach($this->events as $date):
|
14 |
foreach($date as $event):
|
15 |
|
16 |
+
$location = isset($event->data->locations[$event->data->meta['mec_location_id']])? $event->data->locations[$event->data->meta['mec_location_id']] : array();
|
17 |
+
$organizer = isset($event->data->organizers[$event->data->meta['mec_organizer_id']])? $event->data->organizers[$event->data->meta['mec_organizer_id']] : array();
|
18 |
+
$event_color = isset($event->data->meta['mec_color']) ? '<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>' : '';
|
19 |
+
|
20 |
+
$start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
|
21 |
+
$end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
|
22 |
+
$event_start_date = !empty($event->date['start']['date']) ? $event->date['start']['date'] : '';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
|
24 |
+
$label_style = '';
|
25 |
+
if(!empty($event->data->labels))
|
|
|
|
|
|
|
|
|
26 |
{
|
27 |
+
foreach($event->data->labels as $label)
|
|
|
|
|
|
|
|
|
28 |
{
|
29 |
+
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
30 |
+
if($label['style'] == 'mec-label-featured') $label_style = esc_html__('Featured', 'modern-events-calendar-lite');
|
31 |
+
elseif($label['style'] == 'mec-label-canceled') $label_style = esc_html__('Canceled', 'modern-events-calendar-lite');
|
32 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
}
|
34 |
+
|
35 |
+
// MEC Schema
|
36 |
+
do_action('mec_schema', $event);
|
37 |
|
38 |
$masonry_filter = '';
|
39 |
if($this->filter_by == 'category')
|
app/skins/monthly_view/calendar.php
CHANGED
@@ -78,70 +78,19 @@ elseif($week_start == 5) // Friday
|
|
78 |
$event_start_date = !empty($event->date['start']['date']) ? $event->date['start']['date'] : '';
|
79 |
|
80 |
$label_style = '';
|
81 |
-
if
|
82 |
-
foreach( $event->data->labels as $label)
|
83 |
{
|
84 |
-
|
85 |
-
if ( $label['style'] == 'mec-label-featured' )
|
86 |
{
|
87 |
-
$
|
88 |
-
|
89 |
-
|
90 |
-
{
|
91 |
-
$label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite' );
|
92 |
}
|
93 |
}
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
$speakers= [];
|
99 |
-
foreach ($event->data->speakers as $key => $value) {
|
100 |
-
$speakers[] = array(
|
101 |
-
"@type" => "Person",
|
102 |
-
"name" => $value['name'],
|
103 |
-
"image" => $value['thumbnail'],
|
104 |
-
"sameAs" => $value['facebook'],
|
105 |
-
);
|
106 |
-
}
|
107 |
-
$speakers = json_encode($speakers);
|
108 |
-
}
|
109 |
-
$location_name = isset($location['name']) ? $location['name'] : '' ;
|
110 |
-
$location_image = isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '' ;
|
111 |
-
$location_address = isset($location['address']) ? $location['address'] : '' ;
|
112 |
-
$image = !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ;
|
113 |
-
$price_schema = isset($event->data->meta['mec_cost']) ? $event->data->meta['mec_cost'] : '' ;
|
114 |
-
$currency_schema = isset($settings['currency']) ? $settings['currency'] : '' ;
|
115 |
-
$schema_settings = isset( $settings['schema'] ) ? $settings['schema'] : '';
|
116 |
-
if($schema_settings == '1' ):
|
117 |
-
$events_str .= '
|
118 |
-
<script type="application/ld+json">
|
119 |
-
{
|
120 |
-
"@context" : "http://schema.org",
|
121 |
-
"@type" : "Event",
|
122 |
-
"startDate" : "' . $startDate . '",
|
123 |
-
"endDate" : "' . $endDate . '",
|
124 |
-
"location" :
|
125 |
-
{
|
126 |
-
"@type" : "Place",
|
127 |
-
"name" : "' . $location_name . '",
|
128 |
-
"image" : "' . $location_image . '",
|
129 |
-
"address" : "' . $location_address . '"
|
130 |
-
},
|
131 |
-
"offers": {
|
132 |
-
"url": "'. $event->data->permalink .'",
|
133 |
-
"price": "' . $price_schema.'",
|
134 |
-
"priceCurrency" : "' . $currency_schema .'"
|
135 |
-
},
|
136 |
-
"performer": '. $speakers . ',
|
137 |
-
"description" : "' . esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', preg_replace('/\s/u', ' ', $event->data->post->post_content))) . '",
|
138 |
-
"image" : "'. $image . '",
|
139 |
-
"name" : "' .esc_html($event->data->title) . '",
|
140 |
-
"url" : "'. $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']) . '"
|
141 |
-
}
|
142 |
-
</script>
|
143 |
-
';
|
144 |
-
endif;
|
145 |
$events_str .= '<article data-style="'.$label_style.'" class="'.((isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : '').'ended-relative mec-event-article '.$this->get_event_classes($event).'">';
|
146 |
$events_str .= '<div class="mec-event-image">'.$event->data->thumbnails['thumbnail'].'</div>';
|
147 |
if(trim($start_time)) $events_str .= '<div class="mec-event-time mec-color"><i class="mec-sl-clock-o"></i> '.$start_time.(trim($end_time) ? ' - '.$end_time : '').'</div>';
|
78 |
$event_start_date = !empty($event->date['start']['date']) ? $event->date['start']['date'] : '';
|
79 |
|
80 |
$label_style = '';
|
81 |
+
if(!empty($event->data->labels))
|
|
|
82 |
{
|
83 |
+
foreach($event->data->labels as $label)
|
|
|
84 |
{
|
85 |
+
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
86 |
+
if($label['style'] == 'mec-label-featured') $label_style = esc_html__('Featured' , 'modern-events-calendar-lite');
|
87 |
+
elseif($label['style'] == 'mec-label-canceled') $label_style = esc_html__('Canceled' , 'modern-events-calendar-lite');
|
|
|
|
|
88 |
}
|
89 |
}
|
90 |
+
|
91 |
+
// MEC Schema
|
92 |
+
$events_str .= apply_filters('mec_schema_text', '', $event);
|
93 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
94 |
$events_str .= '<article data-style="'.$label_style.'" class="'.((isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : '').'ended-relative mec-event-article '.$this->get_event_classes($event).'">';
|
95 |
$events_str .= '<div class="mec-event-image">'.$event->data->thumbnails['thumbnail'].'</div>';
|
96 |
if(trim($start_time)) $events_str .= '<div class="mec-event-time mec-color"><i class="mec-sl-clock-o"></i> '.$start_time.(trim($end_time) ? ' - '.$end_time : '').'</div>';
|
app/skins/monthly_view/calendar_clean.php
CHANGED
@@ -6,7 +6,6 @@ defined('MECEXEC') or die();
|
|
6 |
$headings = $this->main->get_weekday_abbr_labels();
|
7 |
echo '<dl class="mec-calendar-table-head"><dt class="mec-calendar-day-head">'.implode('</dt><dt class="mec-calendar-day-head">', $headings).'</dt></dl>';
|
8 |
|
9 |
-
|
10 |
// Start day of week
|
11 |
$week_start = $this->main->get_first_day_of_week();
|
12 |
|
@@ -78,76 +77,21 @@ elseif($week_start == 5) // Friday
|
|
78 |
$event_start_date = !empty($event->date['start']['date']) ? $event->date['start']['date'] : '';
|
79 |
|
80 |
$label_style = '';
|
81 |
-
if
|
82 |
-
foreach( $event->data->labels as $label)
|
83 |
{
|
84 |
-
|
85 |
-
if ( $label['style'] == 'mec-label-featured' )
|
86 |
-
{
|
87 |
-
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite' );
|
88 |
-
}
|
89 |
-
elseif ( $label['style'] == 'mec-label-canceled' )
|
90 |
{
|
91 |
-
$
|
|
|
|
|
92 |
}
|
93 |
}
|
94 |
-
|
95 |
-
$speakers = '""';
|
96 |
-
if ( !empty($event->data->speakers))
|
97 |
-
{
|
98 |
-
$speakers= [];
|
99 |
-
foreach ($event->data->speakers as $key => $value) {
|
100 |
-
$speakers[] = array(
|
101 |
-
"@type" => "Person",
|
102 |
-
"name" => $value['name'],
|
103 |
-
"image" => $value['thumbnail'],
|
104 |
-
"sameAs" => $value['facebook'],
|
105 |
-
);
|
106 |
-
}
|
107 |
-
$speakers = json_encode($speakers);
|
108 |
-
}
|
109 |
-
$location_name = isset($location['name']) ? $location['name'] : '' ;
|
110 |
-
$location_image = isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '' ;
|
111 |
-
$location_address = isset($location['address']) ? $location['address'] : '' ;
|
112 |
-
$image = !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ;
|
113 |
-
$price_schema = isset($event->data->meta['mec_cost']) ? $event->data->meta['mec_cost'] : '' ;
|
114 |
-
$currency_schema = isset($settings['currency']) ? $settings['currency'] : '' ;
|
115 |
-
$schema_settings = isset( $settings['schema'] ) ? $settings['schema'] : '';
|
116 |
$events_filter = $after_time_filter = '';
|
117 |
|
118 |
-
|
|
|
119 |
|
120 |
-
|
121 |
-
|
122 |
-
if($schema_settings == '1' ):
|
123 |
-
$events_str .= '
|
124 |
-
<script type="application/ld+json">
|
125 |
-
{
|
126 |
-
"@context" : "http://schema.org",
|
127 |
-
"@type" : "Event",
|
128 |
-
"startDate" : "' . $startDate . '",
|
129 |
-
"endDate" : "' . $endDate . '",
|
130 |
-
"location" :
|
131 |
-
{
|
132 |
-
"@type" : "Place",
|
133 |
-
"name" : "' . $location_name . '",
|
134 |
-
"image" : "' . $location_image . '",
|
135 |
-
"address" : "' . $location_address . '"
|
136 |
-
},
|
137 |
-
"offers": {
|
138 |
-
"url": "'. $event->data->permalink .'",
|
139 |
-
"price": "' . $price_schema.'",
|
140 |
-
"priceCurrency" : "' . $currency_schema .'"
|
141 |
-
},
|
142 |
-
"performer": '. $speakers . ',
|
143 |
-
"description" : "' . esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', preg_replace('/\s/u', ' ', $event->data->post->post_content))) . '",
|
144 |
-
"image" : "'. $image . '",
|
145 |
-
"name" : "' .esc_html($event->data->title) . '",
|
146 |
-
"url" : "'. $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']) . '"
|
147 |
-
}
|
148 |
-
</script>
|
149 |
-
';
|
150 |
-
endif;
|
151 |
$events_str .= '<article data-style="'.$label_style.'" class="'.((isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : '').'mec-event-article '.$this->get_event_classes($event).'">';
|
152 |
$events_str .= '<div class="mec-event-image">'.$event->data->thumbnails['thumblist'].'</div>';
|
153 |
if(trim($start_time)) $events_str .= '<div class="mec-event-time mec-color"><i class="mec-sl-clock-o"></i> '.$start_time.(trim($end_time) ? ' - '.$end_time : '').'</div>';
|
6 |
$headings = $this->main->get_weekday_abbr_labels();
|
7 |
echo '<dl class="mec-calendar-table-head"><dt class="mec-calendar-day-head">'.implode('</dt><dt class="mec-calendar-day-head">', $headings).'</dt></dl>';
|
8 |
|
|
|
9 |
// Start day of week
|
10 |
$week_start = $this->main->get_first_day_of_week();
|
11 |
|
77 |
$event_start_date = !empty($event->date['start']['date']) ? $event->date['start']['date'] : '';
|
78 |
|
79 |
$label_style = '';
|
80 |
+
if(!empty($event->data->labels))
|
|
|
81 |
{
|
82 |
+
foreach($event->data->labels as $label)
|
|
|
|
|
|
|
|
|
|
|
83 |
{
|
84 |
+
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
85 |
+
if($label['style'] == 'mec-label-featured') $label_style = esc_html__('Featured' , 'modern-events-calendar-lite');
|
86 |
+
elseif($label['style'] == 'mec-label-canceled') $label_style = esc_html__('Canceled' , 'modern-events-calendar-lite');
|
87 |
}
|
88 |
}
|
89 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
90 |
$events_filter = $after_time_filter = '';
|
91 |
|
92 |
+
// MEC Schema
|
93 |
+
$events_str .= apply_filters('mec_schema_text', '', $event);
|
94 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
95 |
$events_str .= '<article data-style="'.$label_style.'" class="'.((isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : '').'mec-event-article '.$this->get_event_classes($event).'">';
|
96 |
$events_str .= '<div class="mec-event-image">'.$event->data->thumbnails['thumblist'].'</div>';
|
97 |
if(trim($start_time)) $events_str .= '<div class="mec-event-time mec-color"><i class="mec-sl-clock-o"></i> '.$start_time.(trim($end_time) ? ' - '.$end_time : '').'</div>';
|
app/skins/monthly_view/calendar_novel.php
CHANGED
@@ -57,13 +57,13 @@ elseif($week_start == 5) // Friday
|
|
57 |
$day_id = date('Ymd', $time);
|
58 |
$selected_day = (str_replace('-', '', $this->active_day) == $day_id) ? ' mec-selected-day' : '';
|
59 |
$selected_day_date = (str_replace('-', '', $this->active_day) == $day_id) ? ' mec-bg-color' : '';
|
|
|
60 |
// Print events
|
61 |
if(isset($events[$today]) and count($events[$today]))
|
62 |
{
|
63 |
echo '<dt class="mec-calendar-day'.$selected_day.'" data-mec-cell="'.$day_id.'" data-day="'.$list_day.'" data-month="'.date('Ym', $time).'"><div class="mec-calendar-novel-selected-day'.$selected_day_date.'">'.$list_day.'</div>';
|
64 |
foreach($events[$today] as $event)
|
65 |
{
|
66 |
-
$location = isset($event->data->locations[$event->data->meta['mec_location_id']])? $event->data->locations[$event->data->meta['mec_location_id']] : array();
|
67 |
$event_color = isset($event->data->meta['mec_color'])? '#'.$event->data->meta['mec_color']:'';
|
68 |
$start_date = (isset($event->date['start']['date']) ? str_replace ( '-', '', $event->date['start']['date'] ) : '');
|
69 |
$end_date = (isset($event->date['end']['date']) ? str_replace ( '-', '', $event->date['end']['date'] ) : '');
|
@@ -79,58 +79,9 @@ elseif($week_start == 5) // Friday
|
|
79 |
}
|
80 |
}
|
81 |
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
$speakers= [];
|
86 |
-
foreach ($event->data->speakers as $key => $value) {
|
87 |
-
$speakers[] = array(
|
88 |
-
"@type" => "Person",
|
89 |
-
"name" => $value['name'],
|
90 |
-
"image" => $value['thumbnail'],
|
91 |
-
"sameAs" => $value['facebook'],
|
92 |
-
);
|
93 |
-
}
|
94 |
-
$speakers = json_encode($speakers);
|
95 |
-
}
|
96 |
-
$startDate = !empty( $event->data->meta['mec_date']['start']['date'] ) ? $event->data->meta['mec_date']['start']['date'] : '';
|
97 |
-
$endDate = !empty( $event->data->meta['mec_date']['end']['date'] ) ? $event->data->meta['mec_date']['end']['date'] : '' ;
|
98 |
-
$location_name = isset($location['name']) ? $location['name'] : '' ;
|
99 |
-
$location_image = isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '' ;
|
100 |
-
$location_address = isset($location['address']) ? $location['address'] : '' ;
|
101 |
-
$image = !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ;
|
102 |
-
$price_schema = isset($event->data->meta['mec_cost']) ? $event->data->meta['mec_cost'] : '' ;
|
103 |
-
$currency_schema = isset($settings['currency']) ? $settings['currency'] : '' ;
|
104 |
-
$schema_settings = isset( $settings['schema'] ) ? $settings['schema'] : '';
|
105 |
-
if($schema_settings == '1' ):
|
106 |
-
echo '
|
107 |
-
<script type="application/ld+json">
|
108 |
-
{
|
109 |
-
"@context" : "http://schema.org",
|
110 |
-
"@type" : "Event",
|
111 |
-
"startDate" : "' . $startDate . '",
|
112 |
-
"endDate" : "' . $endDate . '",
|
113 |
-
"location" :
|
114 |
-
{
|
115 |
-
"@type" : "Place",
|
116 |
-
"name" : "' . $location_name . '",
|
117 |
-
"image" : "' . $location_image . '",
|
118 |
-
"address" : "' . $location_address . '"
|
119 |
-
},
|
120 |
-
"offers": {
|
121 |
-
"url": "'. $event->data->permalink .'",
|
122 |
-
"price": "' . $price_schema.'",
|
123 |
-
"priceCurrency" : "' . $currency_schema .'"
|
124 |
-
},
|
125 |
-
"performer": '. $speakers . ',
|
126 |
-
"description" : "' . esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', preg_replace('/\s/u', ' ', $event->data->post->post_content))) . '",
|
127 |
-
"image" : "'. $image . '",
|
128 |
-
"name" : "' .esc_html($event->data->title) . '",
|
129 |
-
"url" : "'. $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']) . '"
|
130 |
-
}
|
131 |
-
</script>
|
132 |
-
';
|
133 |
-
endif;
|
134 |
echo '<a class="'.((isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : '').'event-single-link-novel" data-event-id="'.$event->data->ID.'" href="'.$this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']).'"><div style="background:'.$event_color.'" class="mec-single-event-novel mec-event-article '.$this->get_event_classes($event).'">';
|
135 |
echo '<h4 class="mec-event-title">'.$event->data->title.'</h4>';
|
136 |
echo '</div></a>';
|
57 |
$day_id = date('Ymd', $time);
|
58 |
$selected_day = (str_replace('-', '', $this->active_day) == $day_id) ? ' mec-selected-day' : '';
|
59 |
$selected_day_date = (str_replace('-', '', $this->active_day) == $day_id) ? ' mec-bg-color' : '';
|
60 |
+
|
61 |
// Print events
|
62 |
if(isset($events[$today]) and count($events[$today]))
|
63 |
{
|
64 |
echo '<dt class="mec-calendar-day'.$selected_day.'" data-mec-cell="'.$day_id.'" data-day="'.$list_day.'" data-month="'.date('Ym', $time).'"><div class="mec-calendar-novel-selected-day'.$selected_day_date.'">'.$list_day.'</div>';
|
65 |
foreach($events[$today] as $event)
|
66 |
{
|
|
|
67 |
$event_color = isset($event->data->meta['mec_color'])? '#'.$event->data->meta['mec_color']:'';
|
68 |
$start_date = (isset($event->date['start']['date']) ? str_replace ( '-', '', $event->date['start']['date'] ) : '');
|
69 |
$end_date = (isset($event->date['end']['date']) ? str_replace ( '-', '', $event->date['end']['date'] ) : '');
|
79 |
}
|
80 |
}
|
81 |
|
82 |
+
// MEC Schema
|
83 |
+
do_action('mec_schema', $event);
|
84 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
85 |
echo '<a class="'.((isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : '').'event-single-link-novel" data-event-id="'.$event->data->ID.'" href="'.$this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']).'"><div style="background:'.$event_color.'" class="mec-single-event-novel mec-event-article '.$this->get_event_classes($event).'">';
|
86 |
echo '<h4 class="mec-event-title">'.$event->data->title.'</h4>';
|
87 |
echo '</div></a>';
|
app/skins/monthly_view/calendar_simple.php
CHANGED
@@ -65,12 +65,10 @@ elseif($week_start == 5) // Friday
|
|
65 |
echo '<dt class="mec-calendar-day'.$selected_day.'" data-mec-cell="'.$day_id.'" data-day="'.$list_day.'" data-month="'.date('Ym', $time).'"><div class="'.$selected_day_date.'">'.$list_day.'</div>';
|
66 |
foreach($events[$today] as $event)
|
67 |
{
|
68 |
-
$location = isset($event->data->locations[$event->data->meta['mec_location_id']])? $event->data->locations[$event->data->meta['mec_location_id']] : array();
|
69 |
$event_color = isset($event->data->meta['mec_color'])? '#'.$event->data->meta['mec_color']:'';
|
70 |
$start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
|
71 |
$end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
|
72 |
|
73 |
-
|
74 |
echo '<div class="'.((isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : '').'ended-relative simple-skin-ended">';
|
75 |
echo '<a class="mec-monthly-tooltip event-single-link-simple" data-tooltip-content="#mec-tooltip-'.$event->data->ID.'-'.$day_id.'" data-event-id="'.$event->data->ID.'" href="'.$this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']).'">';
|
76 |
echo '<h4 class="mec-event-title">'.$event->data->title.'</h4>';
|
@@ -85,58 +83,10 @@ elseif($week_start == 5) // Friday
|
|
85 |
$tooltip_content .= !empty(!empty($event->data->content)) ? '<div class="mec-tooltip-event-desc">'.$this->main->mec_content_html($event->data->content, 320).' , ...</div>' : '' ;
|
86 |
if($this->localtime) $tooltip_content .= $this->main->module('local-time.type2', array('event'=>$event));
|
87 |
$tooltip_content .= (!empty($event->data->thumbnails['thumbnail']) || !empty($event->data->content)) ? '</div>' : '' ;
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
foreach ($event->data->speakers as $key => $value) {
|
93 |
-
$speakers[] = array(
|
94 |
-
"@type" => "Person",
|
95 |
-
"name" => $value['name'],
|
96 |
-
"image" => $value['thumbnail'],
|
97 |
-
"sameAs" => $value['facebook'],
|
98 |
-
);
|
99 |
-
}
|
100 |
-
$speakers = json_encode($speakers);
|
101 |
-
}
|
102 |
-
$startDate = !empty( $event->data->meta['mec_date']['start']['date'] ) ? $event->data->meta['mec_date']['start']['date'] : '';
|
103 |
-
$endDate = !empty( $event->data->meta['mec_date']['end']['date'] ) ? $event->data->meta['mec_date']['end']['date'] : '' ;
|
104 |
-
$location_name = isset($location['name']) ? $location['name'] : '' ;
|
105 |
-
$location_image = isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '' ;
|
106 |
-
$location_address = isset($location['address']) ? $location['address'] : '' ;
|
107 |
-
$image = !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ;
|
108 |
-
$price_schema = isset($event->data->meta['mec_cost']) ? $event->data->meta['mec_cost'] : '' ;
|
109 |
-
$currency_schema = isset($settings['currency']) ? $settings['currency'] : '' ;
|
110 |
-
$schema_settings = isset( $settings['schema'] ) ? $settings['schema'] : '';
|
111 |
-
if($schema_settings == '1' ):
|
112 |
-
echo '
|
113 |
-
<script type="application/ld+json">
|
114 |
-
{
|
115 |
-
"@context" : "http://schema.org",
|
116 |
-
"@type" : "Event",
|
117 |
-
"startDate" : "' . $startDate . '",
|
118 |
-
"endDate" : "' . $endDate . '",
|
119 |
-
"location" :
|
120 |
-
{
|
121 |
-
"@type" : "Place",
|
122 |
-
"name" : "' . $location_name . '",
|
123 |
-
"image" : "' . $location_image . '",
|
124 |
-
"address" : "' . $location_address . '"
|
125 |
-
},
|
126 |
-
"offers": {
|
127 |
-
"url": "'. $event->data->permalink .'",
|
128 |
-
"price": "' . $price_schema.'",
|
129 |
-
"priceCurrency" : "' . $currency_schema .'"
|
130 |
-
},
|
131 |
-
"performer": '. $speakers . ',
|
132 |
-
"description" : "' . esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', preg_replace('/\s/u', ' ', $event->data->post->post_content))) . '",
|
133 |
-
"image" : "'. $image . '",
|
134 |
-
"name" : "' .esc_html($event->data->title) . '",
|
135 |
-
"url" : "'. $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']) . '"
|
136 |
-
}
|
137 |
-
</script>
|
138 |
-
';
|
139 |
-
endif;
|
140 |
echo '
|
141 |
<div class="tooltip_templates event-single-content-simple">
|
142 |
<div id="mec-tooltip-'.$event->data->ID.'-'.$day_id.'">
|
65 |
echo '<dt class="mec-calendar-day'.$selected_day.'" data-mec-cell="'.$day_id.'" data-day="'.$list_day.'" data-month="'.date('Ym', $time).'"><div class="'.$selected_day_date.'">'.$list_day.'</div>';
|
66 |
foreach($events[$today] as $event)
|
67 |
{
|
|
|
68 |
$event_color = isset($event->data->meta['mec_color'])? '#'.$event->data->meta['mec_color']:'';
|
69 |
$start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
|
70 |
$end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
|
71 |
|
|
|
72 |
echo '<div class="'.((isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : '').'ended-relative simple-skin-ended">';
|
73 |
echo '<a class="mec-monthly-tooltip event-single-link-simple" data-tooltip-content="#mec-tooltip-'.$event->data->ID.'-'.$day_id.'" data-event-id="'.$event->data->ID.'" href="'.$this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']).'">';
|
74 |
echo '<h4 class="mec-event-title">'.$event->data->title.'</h4>';
|
83 |
$tooltip_content .= !empty(!empty($event->data->content)) ? '<div class="mec-tooltip-event-desc">'.$this->main->mec_content_html($event->data->content, 320).' , ...</div>' : '' ;
|
84 |
if($this->localtime) $tooltip_content .= $this->main->module('local-time.type2', array('event'=>$event));
|
85 |
$tooltip_content .= (!empty($event->data->thumbnails['thumbnail']) || !empty($event->data->content)) ? '</div>' : '' ;
|
86 |
+
|
87 |
+
// MEC Schema
|
88 |
+
do_action('mec_schema', $event);
|
89 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
90 |
echo '
|
91 |
<div class="tooltip_templates event-single-content-simple">
|
92 |
<div id="mec-tooltip-'.$event->data->ID.'-'.$day_id.'">
|
app/skins/single/builder.php
CHANGED
@@ -1,7 +1,6 @@
|
|
1 |
<?php
|
2 |
/** no direct access **/
|
3 |
defined('MECEXEC') or die();
|
4 |
-
|
5 |
-
the_content();
|
6 |
-
|
7 |
-
do_action( 'mec_esb_content' , $event );
|
1 |
<?php
|
2 |
/** no direct access **/
|
3 |
defined('MECEXEC') or die();
|
4 |
+
|
5 |
+
if(Elementor\Plugin::$instance->editor->is_edit_mode() || Elementor\Plugin::$instance->preview->is_preview_mode()) the_content();
|
6 |
+
do_action('mec_esb_content', $event);
|
|
app/skins/single/default.php
CHANGED
@@ -20,7 +20,7 @@ $bookings_limit_for_users = isset($booking_options['bookings_limit_for_users'])
|
|
20 |
$breadcrumbs_settings = isset( $settings['breadcrumbs'] ) ? $settings['breadcrumbs'] : '';
|
21 |
if($breadcrumbs_settings == '1' ): ?>
|
22 |
<div class="mec-breadcrumbs">
|
23 |
-
<?php
|
24 |
</div>
|
25 |
<?php endif; ?>
|
26 |
<!-- end breadcrumbs -->
|
@@ -522,53 +522,13 @@ $bookings_limit_for_users = isset($booking_options['bookings_limit_for_users'])
|
|
522 |
<?php $this->display_related_posts_widget($event->ID); ?>
|
523 |
</div>
|
524 |
<?php
|
525 |
-
|
526 |
-
|
527 |
-
{
|
528 |
-
$speakers= [];
|
529 |
-
foreach ($event->data->speakers as $key => $value) {
|
530 |
-
$speakers[] = array(
|
531 |
-
"@type" => "Person",
|
532 |
-
"name" => $value['name'],
|
533 |
-
"image" => $value['thumbnail'],
|
534 |
-
"sameAs" => $value['facebook'],
|
535 |
-
);
|
536 |
-
}
|
537 |
-
$speakers = json_encode($speakers);
|
538 |
-
}
|
539 |
-
|
540 |
-
$schema_settings = isset( $settings['schema'] ) ? $settings['schema'] : '';
|
541 |
-
if($schema_settings == '1' ):
|
542 |
?>
|
543 |
-
<script type="application/ld+json">
|
544 |
-
{
|
545 |
-
"@context" : "http://schema.org",
|
546 |
-
"@type" : "Event",
|
547 |
-
"startDate" : "<?php echo !empty( $event->data->meta['mec_date']['start']['date'] ) ? $event->data->meta['mec_date']['start']['date'] : '' ; ?>",
|
548 |
-
"endDate" : "<?php echo !empty( $event->data->meta['mec_date']['end']['date'] ) ? $event->data->meta['mec_date']['end']['date'] : '' ; ?>",
|
549 |
-
"location" :
|
550 |
-
{
|
551 |
-
"@type" : "Place",
|
552 |
-
"name" : "<?php echo (isset($location['name']) ? $location['name'] : ''); ?>",
|
553 |
-
"image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '' ); ?>",
|
554 |
-
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
555 |
-
},
|
556 |
-
"offers": {
|
557 |
-
"url": "<?php echo get_the_permalink(); ?>",
|
558 |
-
"price": "<?php echo isset($event->data->meta['mec_cost']) ? $event->data->meta['mec_cost'] : '' ; ?>",
|
559 |
-
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
560 |
-
},
|
561 |
-
"performer": <?php echo $speakers; ?>,
|
562 |
-
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', preg_replace('/\s/u', ' ', get_the_content()))); ?>",
|
563 |
-
"image" : "<?php echo esc_html($event->data->featured_image['full']); ?>",
|
564 |
-
"name" : "<?php esc_html_e(get_the_title()); ?>",
|
565 |
-
"url" : "<?php the_permalink(); ?>"
|
566 |
-
}
|
567 |
-
</script>
|
568 |
-
<?php endif; ?>
|
569 |
<script>
|
570 |
// Fix modal speaker in some themes
|
571 |
-
jQuery( ".mec-speaker-avatar a" ).click(function(e)
|
|
|
572 |
e.preventDefault();
|
573 |
var id = jQuery(this).attr('href');
|
574 |
lity(id);
|
@@ -577,11 +537,11 @@ jQuery( ".mec-speaker-avatar a" ).click(function(e) {
|
|
577 |
// Fix modal booking in some themes
|
578 |
function openBookingModal()
|
579 |
{
|
580 |
-
jQuery( ".mec-booking-button.mec-booking-data-lity" ).on('click',function(e)
|
|
|
581 |
e.preventDefault();
|
582 |
var book_id = jQuery(this).attr('href');
|
583 |
lity(book_id);
|
584 |
});
|
585 |
}
|
586 |
-
|
587 |
</script>
|
20 |
$breadcrumbs_settings = isset( $settings['breadcrumbs'] ) ? $settings['breadcrumbs'] : '';
|
21 |
if($breadcrumbs_settings == '1' ): ?>
|
22 |
<div class="mec-breadcrumbs">
|
23 |
+
<?php $single->display_breadcrumb_widget( get_the_ID() ); ?>
|
24 |
</div>
|
25 |
<?php endif; ?>
|
26 |
<!-- end breadcrumbs -->
|
522 |
<?php $this->display_related_posts_widget($event->ID); ?>
|
523 |
</div>
|
524 |
<?php
|
525 |
+
// MEC Schema
|
526 |
+
do_action('mec_schema', $event);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
527 |
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
528 |
<script>
|
529 |
// Fix modal speaker in some themes
|
530 |
+
jQuery( ".mec-speaker-avatar a" ).click(function(e)
|
531 |
+
{
|
532 |
e.preventDefault();
|
533 |
var id = jQuery(this).attr('href');
|
534 |
lity(id);
|
537 |
// Fix modal booking in some themes
|
538 |
function openBookingModal()
|
539 |
{
|
540 |
+
jQuery( ".mec-booking-button.mec-booking-data-lity" ).on('click',function(e)
|
541 |
+
{
|
542 |
e.preventDefault();
|
543 |
var book_id = jQuery(this).attr('href');
|
544 |
lity(book_id);
|
545 |
});
|
546 |
}
|
|
|
547 |
</script>
|
app/skins/single/modern.php
CHANGED
@@ -7,16 +7,17 @@ if(!is_array($booking_options)) $booking_options = array();
|
|
7 |
?>
|
8 |
<div class="mec-wrap <?php echo $event_colorskin; ?> clearfix <?php echo $this->html_class; ?>" id="mec_skin_<?php echo $this->uniqueid; ?>">
|
9 |
<article class="row mec-single-event mec-single-modern">
|
|
|
10 |
<!-- start breadcrumbs -->
|
11 |
<?php
|
12 |
$breadcrumbs_settings = isset( $settings['breadcrumbs'] ) ? $settings['breadcrumbs'] : '';
|
13 |
-
if($breadcrumbs_settings == '1'):
|
14 |
-
$breadcrumbs = new MEC_skin_single; ?>
|
15 |
<div class="mec-breadcrumbs mec-breadcrumbs-modern">
|
16 |
<?php $breadcrumbs->display_breadcrumb_widget(get_the_ID()); ?>
|
17 |
</div>
|
18 |
<?php endif; ?>
|
19 |
<!-- end breadcrumbs -->
|
|
|
20 |
<div class="mec-events-event-image"><?php echo $event->data->thumbnails['full']; ?><?php do_action('mec_custom_dev_image_section', $event); ?></div>
|
21 |
<div class="col-md-4">
|
22 |
|
@@ -293,55 +294,12 @@ if(!is_array($booking_options)) $booking_options = array();
|
|
293 |
<?php $this->display_related_posts_widget($event->ID); ?>
|
294 |
</div>
|
295 |
<?php
|
296 |
-
|
297 |
-
|
298 |
-
{
|
299 |
-
$speakers= [];
|
300 |
-
foreach($event->data->speakers as $key => $value)
|
301 |
-
{
|
302 |
-
$speakers[] = array(
|
303 |
-
"@type" => "Person",
|
304 |
-
"name" => $value['name'],
|
305 |
-
"image" => $value['thumbnail'],
|
306 |
-
"sameAs" => $value['facebook'],
|
307 |
-
);
|
308 |
-
}
|
309 |
-
|
310 |
-
$speakers = json_encode($speakers);
|
311 |
-
}
|
312 |
-
$schema_settings = isset( $settings['schema'] ) ? $settings['schema'] : '';
|
313 |
-
if($schema_settings == '1' ):
|
314 |
?>
|
315 |
-
<script type="application/ld+json">
|
316 |
-
{
|
317 |
-
"@context" : "http://schema.org",
|
318 |
-
"@type" : "Event",
|
319 |
-
"startDate" : "<?php echo !empty($event->data->meta['mec_date']['start']['date']) ? $event->data->meta['mec_date']['start']['date'] : '' ; ?>",
|
320 |
-
"endDate" : "<?php echo !empty($event->data->meta['mec_date']['end']['date']) ? $event->data->meta['mec_date']['end']['date'] : '' ; ?>",
|
321 |
-
<?php if(isset($location) and is_array($location)): ?>
|
322 |
-
"location" :
|
323 |
-
{
|
324 |
-
"@type" : "Place",
|
325 |
-
"name" : "<?php echo (isset($location['name']) ? $location['name'] : ''); ?>",
|
326 |
-
"image" : "<?php echo esc_url($location['thumbnail'] ); ?>",
|
327 |
-
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
328 |
-
},
|
329 |
-
<?php endif; ?>
|
330 |
-
"offers": {
|
331 |
-
"url": "<?php echo get_the_permalink(); ?>",
|
332 |
-
"price": "<?php if ( !empty( $event->data->meta['mec_cost'] ) ) echo $event->data->meta['mec_cost']; ?>",
|
333 |
-
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
334 |
-
},
|
335 |
-
"performer": <?php echo $speakers; ?>,
|
336 |
-
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', preg_replace('/\s/u', ' ', get_the_content()))); ?>",
|
337 |
-
"image" : "<?php echo esc_html($event->data->featured_image['full']); ?>",
|
338 |
-
"name" : "<?php esc_html_e(get_the_title()); ?>",
|
339 |
-
"url" : "<?php the_permalink(); ?>"
|
340 |
-
}
|
341 |
-
</script>
|
342 |
-
<?php endif; ?>
|
343 |
<script>
|
344 |
-
jQuery( ".mec-speaker-avatar a" ).click(function(e)
|
|
|
345 |
e.preventDefault();
|
346 |
var id = jQuery(this).attr('href');
|
347 |
lity(id);
|
@@ -350,7 +308,8 @@ jQuery( ".mec-speaker-avatar a" ).click(function(e) {
|
|
350 |
// Fix modal booking in some themes
|
351 |
function openBookingModal()
|
352 |
{
|
353 |
-
jQuery( ".mec-booking-button.mec-booking-data-lity" ).on('click',function(e)
|
|
|
354 |
e.preventDefault();
|
355 |
var book_id = jQuery(this).attr('href');
|
356 |
lity(book_id);
|
7 |
?>
|
8 |
<div class="mec-wrap <?php echo $event_colorskin; ?> clearfix <?php echo $this->html_class; ?>" id="mec_skin_<?php echo $this->uniqueid; ?>">
|
9 |
<article class="row mec-single-event mec-single-modern">
|
10 |
+
|
11 |
<!-- start breadcrumbs -->
|
12 |
<?php
|
13 |
$breadcrumbs_settings = isset( $settings['breadcrumbs'] ) ? $settings['breadcrumbs'] : '';
|
14 |
+
if($breadcrumbs_settings == '1'): $breadcrumbs = new MEC_skin_single(); ?>
|
|
|
15 |
<div class="mec-breadcrumbs mec-breadcrumbs-modern">
|
16 |
<?php $breadcrumbs->display_breadcrumb_widget(get_the_ID()); ?>
|
17 |
</div>
|
18 |
<?php endif; ?>
|
19 |
<!-- end breadcrumbs -->
|
20 |
+
|
21 |
<div class="mec-events-event-image"><?php echo $event->data->thumbnails['full']; ?><?php do_action('mec_custom_dev_image_section', $event); ?></div>
|
22 |
<div class="col-md-4">
|
23 |
|
294 |
<?php $this->display_related_posts_widget($event->ID); ?>
|
295 |
</div>
|
296 |
<?php
|
297 |
+
// MEC Schema
|
298 |
+
do_action('mec_schema', $event);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
299 |
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
300 |
<script>
|
301 |
+
jQuery( ".mec-speaker-avatar a" ).click(function(e)
|
302 |
+
{
|
303 |
e.preventDefault();
|
304 |
var id = jQuery(this).attr('href');
|
305 |
lity(id);
|
308 |
// Fix modal booking in some themes
|
309 |
function openBookingModal()
|
310 |
{
|
311 |
+
jQuery( ".mec-booking-button.mec-booking-data-lity" ).on('click',function(e)
|
312 |
+
{
|
313 |
e.preventDefault();
|
314 |
var book_id = jQuery(this).attr('href');
|
315 |
lity(book_id);
|
app/skins/slider/render.php
CHANGED
@@ -14,9 +14,6 @@ $this->localtime = isset($this->skin_options['include_local_time']) ? $this->ski
|
|
14 |
foreach($this->events as $date):
|
15 |
foreach($date as $event):
|
16 |
|
17 |
-
// Skip to next event if there is no image
|
18 |
-
// if(empty($event->data->featured_image['large'])) continue;
|
19 |
-
|
20 |
// Featured Image
|
21 |
$src = $event->data->featured_image['large'];
|
22 |
|
@@ -44,58 +41,16 @@ $this->localtime = isset($this->skin_options['include_local_time']) ? $this->ski
|
|
44 |
foreach($event->data->labels as $label)
|
45 |
{
|
46 |
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
47 |
-
if($label['style']
|
48 |
-
elseif($label['style']
|
49 |
}
|
50 |
}
|
51 |
|
52 |
-
|
53 |
-
|
54 |
-
{
|
55 |
-
$speakers = [];
|
56 |
-
foreach($event->data->speakers as $key=>$value)
|
57 |
-
{
|
58 |
-
$speakers[] = array(
|
59 |
-
"@type" => "Person",
|
60 |
-
"name" => $value['name'],
|
61 |
-
"image" => $value['thumbnail'],
|
62 |
-
"sameAs" => $value['facebook'],
|
63 |
-
);
|
64 |
-
}
|
65 |
-
|
66 |
-
$speakers = json_encode($speakers);
|
67 |
-
}
|
68 |
?>
|
69 |
<?php if($this->style == 't1'): ?>
|
70 |
<article data-style="<?php echo $label_style; ?>" class="<?php echo (isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : ''; ?>mec-event-article mec-clear <?php echo $this->get_event_classes($event); ?>">
|
71 |
-
<?php $schema_settings = isset( $settings['schema'] ) ? $settings['schema'] : '';
|
72 |
-
if($schema_settings == '1' ): ?>
|
73 |
-
<script type="application/ld+json">
|
74 |
-
{
|
75 |
-
"@context" : "http://schema.org",
|
76 |
-
"@type" : "Event",
|
77 |
-
"startDate" : "<?php echo !empty( $event->data->meta['mec_date']['start']['date'] ) ? $event->data->meta['mec_date']['start']['date'] : '' ; ?>",
|
78 |
-
"endDate" : "<?php echo !empty( $event->data->meta['mec_date']['end']['date'] ) ? $event->data->meta['mec_date']['end']['date'] : '' ; ?>",
|
79 |
-
"location" :
|
80 |
-
{
|
81 |
-
"@type" : "Place",
|
82 |
-
"name" : "<?php echo (isset($location['name']) ? $location['name'] : ''); ?>",
|
83 |
-
"image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
|
84 |
-
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
85 |
-
},
|
86 |
-
"offers": {
|
87 |
-
"url": "<?php echo $event->data->permalink; ?>",
|
88 |
-
"price": "<?php echo isset($event->data->meta['mec_cost']) ? $event->data->meta['mec_cost'] : '' ; ?>",
|
89 |
-
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
90 |
-
},
|
91 |
-
"performer": <?php echo $speakers; ?>,
|
92 |
-
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', preg_replace('/\s/u', ' ', $event->data->post->post_content))); ?>",
|
93 |
-
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
94 |
-
"name" : "<?php esc_html_e($event->data->title); ?>",
|
95 |
-
"url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
|
96 |
-
}
|
97 |
-
</script>
|
98 |
-
<?php endif; ?>
|
99 |
<div class="mec-slider-t1-img" style="background: url(<?php echo $src; ?> );"></div>
|
100 |
|
101 |
<div class="mec-slider-t1-content mec-event-grid-modern">
|
@@ -119,34 +74,6 @@ $this->localtime = isset($this->skin_options['include_local_time']) ? $this->ski
|
|
119 |
</article>
|
120 |
<?php elseif($this->style == 't2'): ?>
|
121 |
<article data-style="<?php echo $label_style; ?>" class="<?php echo (isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : ''; ?>mec-event-article mec-clear <?php echo $this->get_event_classes($event); ?>">
|
122 |
-
<?php $schema_settings = isset( $settings['schema'] ) ? $settings['schema'] : '';
|
123 |
-
if($schema_settings == '1' ): ?>
|
124 |
-
<script type="application/ld+json">
|
125 |
-
{
|
126 |
-
"@context" : "http://schema.org",
|
127 |
-
"@type" : "Event",
|
128 |
-
"startDate" : "<?php echo !empty( $event->data->meta['mec_date']['start']['date'] ) ? $event->data->meta['mec_date']['start']['date'] : '' ; ?>",
|
129 |
-
"endDate" : "<?php echo !empty( $event->data->meta['mec_date']['end']['date'] ) ? $event->data->meta['mec_date']['end']['date'] : '' ; ?>",
|
130 |
-
"location" :
|
131 |
-
{
|
132 |
-
"@type" : "Place",
|
133 |
-
"name" : "<?php echo (isset($location['name']) ? $location['name'] : ''); ?>",
|
134 |
-
"image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
|
135 |
-
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
136 |
-
},
|
137 |
-
"offers": {
|
138 |
-
"url": "<?php echo $event->data->permalink; ?>",
|
139 |
-
"price": "<?php echo isset($event->data->meta['mec_cost']) ? $event->data->meta['mec_cost'] : '' ; ?>",
|
140 |
-
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
141 |
-
},
|
142 |
-
"performer": <?php echo $speakers; ?>,
|
143 |
-
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', preg_replace('/\s/u', ' ', $event->data->post->post_content))); ?>",
|
144 |
-
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
145 |
-
"name" : "<?php esc_html_e($event->data->title); ?>",
|
146 |
-
"url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
|
147 |
-
}
|
148 |
-
</script>
|
149 |
-
<?php endif; ?>
|
150 |
<div class="mec-slider-t2-img" style="background: url(<?php echo $src; ?> );"></div>
|
151 |
<div class="mec-slider-t2-content mec-event-grid-modern mec-bg-color">
|
152 |
|
@@ -171,34 +98,6 @@ $this->localtime = isset($this->skin_options['include_local_time']) ? $this->ski
|
|
171 |
</article>
|
172 |
<?php elseif($this->style == 't3'): ?>
|
173 |
<article data-style="<?php echo $label_style; ?>" class="<?php echo (isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : ''; ?>mec-event-article mec-clear <?php echo $this->get_event_classes($event); ?>">
|
174 |
-
<?php $schema_settings = isset( $settings['schema'] ) ? $settings['schema'] : '';
|
175 |
-
if($schema_settings == '1' ): ?>
|
176 |
-
<script type="application/ld+json">
|
177 |
-
{
|
178 |
-
"@context" : "http://schema.org",
|
179 |
-
"@type" : "Event",
|
180 |
-
"startDate" : "<?php echo !empty( $event->data->meta['mec_date']['start']['date'] ) ? $event->data->meta['mec_date']['start']['date'] : '' ; ?>",
|
181 |
-
"endDate" : "<?php echo !empty( $event->data->meta['mec_date']['end']['date'] ) ? $event->data->meta['mec_date']['end']['date'] : '' ; ?>",
|
182 |
-
"location" :
|
183 |
-
{
|
184 |
-
"@type" : "Place",
|
185 |
-
"name" : "<?php echo (isset($location['name']) ? $location['name'] : ''); ?>",
|
186 |
-
"image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
|
187 |
-
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
188 |
-
},
|
189 |
-
"offers": {
|
190 |
-
"url": "<?php echo $event->data->permalink; ?>",
|
191 |
-
"price": "<?php echo isset($event->data->meta['mec_cost']) ? $event->data->meta['mec_cost'] : '' ; ?>",
|
192 |
-
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
193 |
-
},
|
194 |
-
"performer": <?php echo $speakers; ?>,
|
195 |
-
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', preg_replace('/\s/u', ' ', $event->data->post->post_content))); ?>",
|
196 |
-
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
197 |
-
"name" : "<?php esc_html_e($event->data->title); ?>",
|
198 |
-
"url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
|
199 |
-
}
|
200 |
-
</script>
|
201 |
-
<?php endif; ?>
|
202 |
<div class="mec-slider-t3-img" style="background: url(<?php echo $src; ?> );"></div>
|
203 |
<div class="mec-slider-t3-content mec-event-grid-modern">
|
204 |
<div class="event-grid-modern-head clearfix">
|
@@ -222,34 +121,6 @@ $this->localtime = isset($this->skin_options['include_local_time']) ? $this->ski
|
|
222 |
</article>
|
223 |
<?php elseif($this->style == 't4'): ?>
|
224 |
<article data-style="<?php echo $label_style; ?>" class="<?php echo (isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : ''; ?>mec-event-article mec-clear <?php echo $this->get_event_classes($event); ?>">
|
225 |
-
<?php $schema_settings = isset( $settings['schema'] ) ? $settings['schema'] : '';
|
226 |
-
if($schema_settings == '1' ): ?>
|
227 |
-
<script type="application/ld+json">
|
228 |
-
{
|
229 |
-
"@context" : "http://schema.org",
|
230 |
-
"@type" : "Event",
|
231 |
-
"startDate" : "<?php echo !empty( $event->data->meta['mec_date']['start']['date'] ) ? $event->data->meta['mec_date']['start']['date'] : '' ; ?>",
|
232 |
-
"endDate" : "<?php echo !empty( $event->data->meta['mec_date']['end']['date'] ) ? $event->data->meta['mec_date']['end']['date'] : '' ; ?>",
|
233 |
-
"location" :
|
234 |
-
{
|
235 |
-
"@type" : "Place",
|
236 |
-
"name" : "<?php echo (isset($location['name']) ? $location['name'] : ''); ?>",
|
237 |
-
"image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
|
238 |
-
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
239 |
-
},
|
240 |
-
"offers": {
|
241 |
-
"url": "<?php echo $event->data->permalink; ?>",
|
242 |
-
"price": "<?php echo isset($event->data->meta['mec_cost']) ? $event->data->meta['mec_cost'] : '' ; ?>",
|
243 |
-
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
244 |
-
},
|
245 |
-
"performer": <?php echo $speakers; ?>,
|
246 |
-
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', preg_replace('/\s/u', ' ', $event->data->post->post_content))); ?>",
|
247 |
-
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
248 |
-
"name" : "<?php esc_html_e($event->data->title); ?>",
|
249 |
-
"url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
|
250 |
-
}
|
251 |
-
</script>
|
252 |
-
<?php endif; ?>
|
253 |
<div class="mec-slider-t4-img" style="background: url(<?php echo $src; ?> );"></div>
|
254 |
<div class="mec-slider-t4-content mec-event-grid-modern">
|
255 |
|
@@ -274,34 +145,6 @@ $this->localtime = isset($this->skin_options['include_local_time']) ? $this->ski
|
|
274 |
</article>
|
275 |
<?php elseif($this->style == 't5'): ?>
|
276 |
<article data-style="<?php echo $label_style; ?>" class="<?php echo (isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : ''; ?>mec-event-article mec-clear <?php echo $this->get_event_classes($event); ?>">
|
277 |
-
<?php $schema_settings = isset( $settings['schema'] ) ? $settings['schema'] : '';
|
278 |
-
if($schema_settings == '1' ): ?>
|
279 |
-
<script type="application/ld+json">
|
280 |
-
{
|
281 |
-
"@context" : "http://schema.org",
|
282 |
-
"@type" : "Event",
|
283 |
-
"startDate" : "<?php echo !empty( $event->data->meta['mec_date']['start']['date'] ) ? $event->data->meta['mec_date']['start']['date'] : '' ; ?>",
|
284 |
-
"endDate" : "<?php echo !empty( $event->data->meta['mec_date']['end']['date'] ) ? $event->data->meta['mec_date']['end']['date'] : '' ; ?>",
|
285 |
-
"location" :
|
286 |
-
{
|
287 |
-
"@type" : "Place",
|
288 |
-
"name" : "<?php echo (isset($location['name']) ? $location['name'] : ''); ?>",
|
289 |
-
"image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
|
290 |
-
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
291 |
-
},
|
292 |
-
"offers": {
|
293 |
-
"url": "<?php echo $event->data->permalink; ?>",
|
294 |
-
"price": "<?php echo isset($event->data->meta['mec_cost']) ? $event->data->meta['mec_cost'] : '' ; ?>",
|
295 |
-
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
296 |
-
},
|
297 |
-
"performer": <?php echo $speakers; ?>,
|
298 |
-
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', preg_replace('/\s/u', ' ', $event->data->post->post_content))); ?>",
|
299 |
-
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
300 |
-
"name" : "<?php esc_html_e($event->data->title); ?>",
|
301 |
-
"url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
|
302 |
-
}
|
303 |
-
</script>
|
304 |
-
<?php endif; ?>
|
305 |
<div class="mec-slider-t5-img" style="background: url(<?php echo $src; ?> );"></div>
|
306 |
<div class="mec-slider-t5-content mec-event-grid-modern">
|
307 |
<div class="event-grid-modern-head clearfix">
|
14 |
foreach($this->events as $date):
|
15 |
foreach($date as $event):
|
16 |
|
|
|
|
|
|
|
17 |
// Featured Image
|
18 |
$src = $event->data->featured_image['large'];
|
19 |
|
41 |
foreach($event->data->labels as $label)
|
42 |
{
|
43 |
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
44 |
+
if($label['style'] == 'mec-label-featured') $label_style = esc_html__('Featured', 'modern-events-calendar-lite');
|
45 |
+
elseif($label['style'] == 'mec-label-canceled') $label_style = esc_html__('Canceled' , 'modern-events-calendar-lite');
|
46 |
}
|
47 |
}
|
48 |
|
49 |
+
// MEC Schema
|
50 |
+
do_action('mec_schema', $event);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
51 |
?>
|
52 |
<?php if($this->style == 't1'): ?>
|
53 |
<article data-style="<?php echo $label_style; ?>" class="<?php echo (isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : ''; ?>mec-event-article mec-clear <?php echo $this->get_event_classes($event); ?>">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
54 |
<div class="mec-slider-t1-img" style="background: url(<?php echo $src; ?> );"></div>
|
55 |
|
56 |
<div class="mec-slider-t1-content mec-event-grid-modern">
|
74 |
</article>
|
75 |
<?php elseif($this->style == 't2'): ?>
|
76 |
<article data-style="<?php echo $label_style; ?>" class="<?php echo (isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : ''; ?>mec-event-article mec-clear <?php echo $this->get_event_classes($event); ?>">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
77 |
<div class="mec-slider-t2-img" style="background: url(<?php echo $src; ?> );"></div>
|
78 |
<div class="mec-slider-t2-content mec-event-grid-modern mec-bg-color">
|
79 |
|
98 |
</article>
|
99 |
<?php elseif($this->style == 't3'): ?>
|
100 |
<article data-style="<?php echo $label_style; ?>" class="<?php echo (isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : ''; ?>mec-event-article mec-clear <?php echo $this->get_event_classes($event); ?>">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
101 |
<div class="mec-slider-t3-img" style="background: url(<?php echo $src; ?> );"></div>
|
102 |
<div class="mec-slider-t3-content mec-event-grid-modern">
|
103 |
<div class="event-grid-modern-head clearfix">
|
121 |
</article>
|
122 |
<?php elseif($this->style == 't4'): ?>
|
123 |
<article data-style="<?php echo $label_style; ?>" class="<?php echo (isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : ''; ?>mec-event-article mec-clear <?php echo $this->get_event_classes($event); ?>">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
124 |
<div class="mec-slider-t4-img" style="background: url(<?php echo $src; ?> );"></div>
|
125 |
<div class="mec-slider-t4-content mec-event-grid-modern">
|
126 |
|
145 |
</article>
|
146 |
<?php elseif($this->style == 't5'): ?>
|
147 |
<article data-style="<?php echo $label_style; ?>" class="<?php echo (isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : ''; ?>mec-event-article mec-clear <?php echo $this->get_event_classes($event); ?>">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
148 |
<div class="mec-slider-t5-img" style="background: url(<?php echo $src; ?> );"></div>
|
149 |
<div class="mec-slider-t5-content mec-event-grid-modern">
|
150 |
<div class="event-grid-modern-head clearfix">
|
app/skins/tile/render.php
CHANGED
@@ -27,10 +27,11 @@ $map_events = array();
|
|
27 |
$event_start_date = !empty($event->date['start']['date']) ? $event->date['start']['date'] : '';
|
28 |
$event_color = isset($event->data->meta['mec_color']) ? '#'.$event->data->meta['mec_color'] : '';
|
29 |
$background_image = (isset($event->data->featured_image['tileview']) && trim($event->data->featured_image['tileview'])) ? ' url(\''.trim($event->data->featured_image['tileview']).'\')' : '';
|
|
|
30 |
$label_style = '';
|
31 |
if(!empty($event->data->labels))
|
32 |
{
|
33 |
-
foreach(
|
34 |
{
|
35 |
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
36 |
|
@@ -39,52 +40,9 @@ $map_events = array();
|
|
39 |
}
|
40 |
}
|
41 |
|
42 |
-
|
43 |
-
|
44 |
-
{
|
45 |
-
$speakers= [];
|
46 |
-
foreach($event->data->speakers as $key => $value)
|
47 |
-
{
|
48 |
-
$speakers[] = array(
|
49 |
-
"@type" => "Person",
|
50 |
-
"name" => $value['name'],
|
51 |
-
"image" => $value['thumbnail'],
|
52 |
-
"sameAs" => $value['facebook'],
|
53 |
-
);
|
54 |
-
}
|
55 |
-
|
56 |
-
$speakers = json_encode($speakers);
|
57 |
-
}
|
58 |
-
|
59 |
-
$schema_settings = isset($settings['schema']) ? $settings['schema'] : '';
|
60 |
-
if($schema_settings == '1' ):
|
61 |
?>
|
62 |
-
<script type="application/ld+json">
|
63 |
-
{
|
64 |
-
"@context" : "http://schema.org",
|
65 |
-
"@type" : "Event",
|
66 |
-
"startDate" : "<?php echo !empty( $event->data->meta['mec_date']['start']['date'] ) ? $event->data->meta['mec_date']['start']['date'] : '' ; ?>",
|
67 |
-
"endDate" : "<?php echo !empty( $event->data->meta['mec_date']['end']['date'] ) ? $event->data->meta['mec_date']['end']['date'] : '' ; ?>",
|
68 |
-
"location" :
|
69 |
-
{
|
70 |
-
"@type" : "Place",
|
71 |
-
"name" : "<?php echo (isset($location['name']) ? $location['name'] : ''); ?>",
|
72 |
-
"image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
|
73 |
-
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
74 |
-
},
|
75 |
-
"offers": {
|
76 |
-
"url": "<?php echo $event->data->permalink; ?>",
|
77 |
-
"price": "<?php echo isset($event->data->meta['mec_cost']) ? $event->data->meta['mec_cost'] : '' ; ?>",
|
78 |
-
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
79 |
-
},
|
80 |
-
"performer": <?php echo $speakers; ?>,
|
81 |
-
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', preg_replace('/\s/u', ' ', $event->data->post->post_content))); ?>",
|
82 |
-
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
83 |
-
"name" : "<?php esc_html_e($event->data->title); ?>",
|
84 |
-
"url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
|
85 |
-
}
|
86 |
-
</script>
|
87 |
-
<?php endif; ?>
|
88 |
<article <?php echo 'style="background:' . $event_color . $background_image. '"'; ?> data-style="<?php echo $label_style; ?>" class="<?php echo ((isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event' : ''); ?> mec-event-article mec-tile-item mec-clear <?php echo $this->get_event_classes($event); ?>">
|
89 |
<?php do_action('mec_skin_tile_view', $event); ?>
|
90 |
<div class="event-tile-view-head clearfix">
|
@@ -115,7 +73,7 @@ $map_events = array();
|
|
115 |
<?php endforeach; ?>
|
116 |
</div>
|
117 |
<?php
|
118 |
-
|
119 |
-
|
120 |
?>
|
121 |
</div>
|
27 |
$event_start_date = !empty($event->date['start']['date']) ? $event->date['start']['date'] : '';
|
28 |
$event_color = isset($event->data->meta['mec_color']) ? '#'.$event->data->meta['mec_color'] : '';
|
29 |
$background_image = (isset($event->data->featured_image['tileview']) && trim($event->data->featured_image['tileview'])) ? ' url(\''.trim($event->data->featured_image['tileview']).'\')' : '';
|
30 |
+
|
31 |
$label_style = '';
|
32 |
if(!empty($event->data->labels))
|
33 |
{
|
34 |
+
foreach($event->data->labels as $label)
|
35 |
{
|
36 |
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
37 |
|
40 |
}
|
41 |
}
|
42 |
|
43 |
+
// MEC Schema
|
44 |
+
do_action('mec_schema', $event);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
45 |
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
<article <?php echo 'style="background:' . $event_color . $background_image. '"'; ?> data-style="<?php echo $label_style; ?>" class="<?php echo ((isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event' : ''); ?> mec-event-article mec-tile-item mec-clear <?php echo $this->get_event_classes($event); ?>">
|
47 |
<?php do_action('mec_skin_tile_view', $event); ?>
|
48 |
<div class="event-tile-view-head clearfix">
|
73 |
<?php endforeach; ?>
|
74 |
</div>
|
75 |
<?php
|
76 |
+
$div_count = count($map_events) - (floor(count($map_events) / $count) * $count);
|
77 |
+
if($div_count > 0 and $div_count < $count) echo '</div>';
|
78 |
?>
|
79 |
</div>
|
app/skins/timeline/render.php
CHANGED
@@ -35,65 +35,20 @@ $event_colorskin = (isset($styling['mec_colorskin']) || isset($styling['color'])
|
|
35 |
|
36 |
$excerpt = implode(' ', $words);
|
37 |
}
|
|
|
38 |
$label_style = '';
|
39 |
-
if
|
40 |
-
foreach( $event->data->labels as $label)
|
41 |
{
|
42 |
-
|
43 |
-
if ( $label['style'] == 'mec-label-featured' )
|
44 |
-
{
|
45 |
-
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite' );
|
46 |
-
}
|
47 |
-
elseif ( $label['style'] == 'mec-label-canceled' )
|
48 |
{
|
49 |
-
$
|
|
|
|
|
50 |
}
|
51 |
}
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
{
|
56 |
-
$speakers= [];
|
57 |
-
foreach ($event->data->speakers as $key => $value) {
|
58 |
-
$speakers[] = array(
|
59 |
-
"@type" => "Person",
|
60 |
-
"name" => $value['name'],
|
61 |
-
"image" => $value['thumbnail'],
|
62 |
-
"sameAs" => $value['facebook'],
|
63 |
-
);
|
64 |
-
}
|
65 |
-
$speakers = json_encode($speakers);
|
66 |
-
}
|
67 |
-
$schema_settings = isset( $settings['schema'] ) ? $settings['schema'] : '';
|
68 |
-
if($schema_settings == '1' ):
|
69 |
-
?>
|
70 |
-
<script type="application/ld+json">
|
71 |
-
{
|
72 |
-
"@context" : "http://schema.org",
|
73 |
-
"@type" : "Event",
|
74 |
-
"startDate" : "<?php echo !empty( $event->data->meta['mec_date']['start']['date'] ) ? $event->data->meta['mec_date']['start']['date'] : '' ; ?>",
|
75 |
-
"endDate" : "<?php echo !empty( $event->data->meta['mec_date']['end']['date'] ) ? $event->data->meta['mec_date']['end']['date'] : '' ; ?>",
|
76 |
-
"location" :
|
77 |
-
{
|
78 |
-
"@type" : "Place",
|
79 |
-
"name" : "<?php echo (isset($location['name']) ? $location['name'] : ''); ?>",
|
80 |
-
"image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
|
81 |
-
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
82 |
-
},
|
83 |
-
"offers": {
|
84 |
-
"url": "<?php echo $event->data->permalink; ?>",
|
85 |
-
"price": "<?php echo isset($event->data->meta['mec_cost']) ? $event->data->meta['mec_cost'] : '' ; ?>",
|
86 |
-
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
87 |
-
},
|
88 |
-
"performer": <?php echo $speakers; ?>,
|
89 |
-
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', preg_replace('/\s/u', ' ', $event->data->post->post_content))); ?>",
|
90 |
-
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
91 |
-
"name" : "<?php esc_html_e($event->data->title); ?>",
|
92 |
-
"url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
|
93 |
-
}
|
94 |
-
</script>
|
95 |
-
<?php
|
96 |
-
endif;
|
97 |
?>
|
98 |
<div class="<?php echo (isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : ''; ?>mec-timeline-event clearfix <?php echo $this->get_event_classes($event); ?>">
|
99 |
<div class="mec-timeline-event-date mec-color<?php echo ($event->date['start']['date'] != $event->date['end']['date']) ? ' mec-timeline-dates' : '' ; ?>"><?php echo ( $event->date['start']['date'] == $event->date['end']['date'] ) ? $this->main->date_i18n( get_option( 'date_format' ), strtotime($event->date['start']['date'])) : $this->main->date_i18n( get_option( 'date_format' ), strtotime($event->date['start']['date'])) . '<br>' . $this->main->date_i18n( get_option( 'date_format' ), strtotime($event->date['end']['date'])) ; ?> </div>
|
35 |
|
36 |
$excerpt = implode(' ', $words);
|
37 |
}
|
38 |
+
|
39 |
$label_style = '';
|
40 |
+
if(!empty($event->data->labels))
|
|
|
41 |
{
|
42 |
+
foreach($event->data->labels as $label)
|
|
|
|
|
|
|
|
|
|
|
43 |
{
|
44 |
+
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
45 |
+
if($label['style'] == 'mec-label-featured') $label_style = esc_html__('Featured' , 'modern-events-calendar-lite');
|
46 |
+
elseif($label['style'] == 'mec-label-canceled') $label_style = esc_html__('Canceled' , 'modern-events-calendar-lite');
|
47 |
}
|
48 |
}
|
49 |
+
|
50 |
+
// MEC Schema
|
51 |
+
do_action('mec_schema', $event);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
?>
|
53 |
<div class="<?php echo (isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : ''; ?>mec-timeline-event clearfix <?php echo $this->get_event_classes($event); ?>">
|
54 |
<div class="mec-timeline-event-date mec-color<?php echo ($event->date['start']['date'] != $event->date['end']['date']) ? ' mec-timeline-dates' : '' ; ?>"><?php echo ( $event->date['start']['date'] == $event->date['end']['date'] ) ? $this->main->date_i18n( get_option( 'date_format' ), strtotime($event->date['start']['date'])) : $this->main->date_i18n( get_option( 'date_format' ), strtotime($event->date['start']['date'])) . '<br>' . $this->main->date_i18n( get_option( 'date_format' ), strtotime($event->date['end']['date'])) ; ?> </div>
|
app/skins/timetable/render.php
CHANGED
@@ -4,12 +4,13 @@ defined('MECEXEC') or die();
|
|
4 |
|
5 |
$has_events = array();
|
6 |
$settings = $this->main->get_settings();
|
|
|
|
|
7 |
$this->localtime = isset($this->skin_options['include_local_time']) ? $this->skin_options['include_local_time'] : false;
|
8 |
-
$dark_mode = ( isset($styling['dark_mode']) ) ? $styling['dark_mode'] : '';
|
9 |
-
if ( $dark_mode == 1 ): $set_dark = 'mec-dark-mode';
|
10 |
-
else: $set_dark ='';
|
11 |
-
endif;
|
12 |
|
|
|
|
|
|
|
13 |
?>
|
14 |
<?php if($this->style == 'modern'): ?>
|
15 |
<div class="mec-timetable-day-events mec-clear mec-weekly-view-dates-events <?php echo $set_dark; ?>">
|
@@ -32,63 +33,19 @@ endif;
|
|
32 |
$event_start_date = !empty($event->date['start']['date']) ? $event->date['start']['date'] : '';
|
33 |
|
34 |
$label_style = '';
|
35 |
-
if
|
36 |
-
foreach( $event->data->labels as $label)
|
37 |
{
|
38 |
-
|
39 |
-
if ( $label['style'] == 'mec-label-featured' )
|
40 |
-
{
|
41 |
-
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite' );
|
42 |
-
}
|
43 |
-
elseif ( $label['style'] == 'mec-label-canceled' )
|
44 |
{
|
45 |
-
$
|
|
|
|
|
46 |
}
|
47 |
}
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
{
|
52 |
-
$speakers= [];
|
53 |
-
foreach ($event->data->speakers as $key => $value) {
|
54 |
-
$speakers[] = array(
|
55 |
-
"@type" => "Person",
|
56 |
-
"name" => $value['name'],
|
57 |
-
"image" => $value['thumbnail'],
|
58 |
-
"sameAs" => $value['facebook'],
|
59 |
-
);
|
60 |
-
}
|
61 |
-
$speakers = json_encode($speakers);
|
62 |
-
}
|
63 |
-
$schema_settings = isset( $settings['schema'] ) ? $settings['schema'] : '';
|
64 |
-
if($schema_settings == '1' ):
|
65 |
?>
|
66 |
-
<script type="application/ld+json">
|
67 |
-
{
|
68 |
-
"@context" : "http://schema.org",
|
69 |
-
"@type" : "Event",
|
70 |
-
"startDate" : "<?php echo !empty( $event->data->meta['mec_date']['start']['date'] ) ? $event->data->meta['mec_date']['start']['date'] : '' ; ?>",
|
71 |
-
"endDate" : "<?php echo !empty( $event->data->meta['mec_date']['end']['date'] ) ? $event->data->meta['mec_date']['end']['date'] : '' ; ?>",
|
72 |
-
"location" :
|
73 |
-
{
|
74 |
-
"@type" : "Place",
|
75 |
-
"name" : "<?php echo (isset($location['name']) ? $location['name'] : ''); ?>",
|
76 |
-
"image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
|
77 |
-
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
78 |
-
},
|
79 |
-
"offers": {
|
80 |
-
"url": "<?php echo $event->data->permalink; ?>",
|
81 |
-
"price": "<?php echo isset($event->data->meta['mec_cost']) ? $event->data->meta['mec_cost'] : '' ; ?>",
|
82 |
-
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
83 |
-
},
|
84 |
-
"performer": <?php echo $speakers; ?>,
|
85 |
-
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', preg_replace('/\s/u', ' ', $event->data->post->post_content))); ?>",
|
86 |
-
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
87 |
-
"name" : "<?php esc_html_e($event->data->title); ?>",
|
88 |
-
"url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
|
89 |
-
}
|
90 |
-
</script>
|
91 |
-
<?php endif; ?>
|
92 |
<article class="<?php echo (isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : ''; ?>mec-timetable-event mec-timetable-day-<?php echo $this->id; ?>-<?php echo date('Ymd', strtotime($date)); ?> <?php echo $this->get_event_classes($event); ?>">
|
93 |
<span class="mec-timetable-event-span mec-timetable-event-time">
|
94 |
<i class="mec-sl-clock"></i>
|
4 |
|
5 |
$has_events = array();
|
6 |
$settings = $this->main->get_settings();
|
7 |
+
$styling = $this->main->get_styling();
|
8 |
+
|
9 |
$this->localtime = isset($this->skin_options['include_local_time']) ? $this->skin_options['include_local_time'] : false;
|
|
|
|
|
|
|
|
|
10 |
|
11 |
+
$dark_mode = isset($styling['dark_mode']) ? $styling['dark_mode'] : '';
|
12 |
+
if($dark_mode == 1) $set_dark = 'mec-dark-mode';
|
13 |
+
else $set_dark = '';
|
14 |
?>
|
15 |
<?php if($this->style == 'modern'): ?>
|
16 |
<div class="mec-timetable-day-events mec-clear mec-weekly-view-dates-events <?php echo $set_dark; ?>">
|
33 |
$event_start_date = !empty($event->date['start']['date']) ? $event->date['start']['date'] : '';
|
34 |
|
35 |
$label_style = '';
|
36 |
+
if(!empty($event->data->labels))
|
|
|
37 |
{
|
38 |
+
foreach( $event->data->labels as $label)
|
|
|
|
|
|
|
|
|
|
|
39 |
{
|
40 |
+
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
41 |
+
if($label['style'] == 'mec-label-featured') $label_style = esc_html__('Featured', 'modern-events-calendar-lite');
|
42 |
+
elseif($label['style'] == 'mec-label-canceled') $label_style = esc_html__('Canceled' , 'modern-events-calendar-lite');
|
43 |
}
|
44 |
}
|
45 |
+
|
46 |
+
// MEC Schema
|
47 |
+
do_action('mec_schema', $event);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
48 |
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
49 |
<article class="<?php echo (isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : ''; ?>mec-timetable-event mec-timetable-day-<?php echo $this->id; ?>-<?php echo date('Ymd', strtotime($date)); ?> <?php echo $this->get_event_classes($event); ?>">
|
50 |
<span class="mec-timetable-event-span mec-timetable-event-time">
|
51 |
<i class="mec-sl-clock"></i>
|
app/skins/timetable/tpl.php
CHANGED
@@ -1,8 +1,10 @@
|
|
1 |
<?php
|
2 |
/** no direct access **/
|
3 |
defined('MECEXEC') or die();
|
4 |
-
|
|
|
5 |
do_action('mec_timetable_skin_head');
|
|
|
6 |
if($this->style == 'clean') include MEC::import('app.skins.timetable.clean', true, true);
|
7 |
elseif($this->style == 'classic') include MEC::import('app.skins.timetable.classic', true, true);
|
8 |
else include MEC::import('app.skins.timetable.modern', true, true);
|
1 |
<?php
|
2 |
/** no direct access **/
|
3 |
defined('MECEXEC') or die();
|
4 |
+
|
5 |
+
do_action('mec_start_skin', $this->id);
|
6 |
do_action('mec_timetable_skin_head');
|
7 |
+
|
8 |
if($this->style == 'clean') include MEC::import('app.skins.timetable.clean', true, true);
|
9 |
elseif($this->style == 'classic') include MEC::import('app.skins.timetable.classic', true, true);
|
10 |
else include MEC::import('app.skins.timetable.modern', true, true);
|
app/skins/weekly_view/render.php
CHANGED
@@ -5,7 +5,6 @@ defined('MECEXEC') or die();
|
|
5 |
$has_events = array();
|
6 |
$settings = $this->main->get_settings();
|
7 |
$this->localtime = isset($this->skin_options['include_local_time']) ? $this->skin_options['include_local_time'] : false;
|
8 |
-
|
9 |
?>
|
10 |
<ul class="mec-weekly-view-dates-events">
|
11 |
<?php foreach($this->events as $date=>$events): $week = $this->week_of_days[$date]; ?>
|
@@ -26,63 +25,19 @@ $this->localtime = isset($this->skin_options['include_local_time']) ? $this->ski
|
|
26 |
$event_start_date = !empty($event->date['start']['date']) ? $event->date['start']['date'] : '';
|
27 |
|
28 |
$label_style = '';
|
29 |
-
if
|
30 |
-
foreach( $event->data->labels as $label)
|
31 |
{
|
32 |
-
|
33 |
-
if ( $label['style'] == 'mec-label-featured' )
|
34 |
-
{
|
35 |
-
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite' );
|
36 |
-
}
|
37 |
-
elseif ( $label['style'] == 'mec-label-canceled' )
|
38 |
{
|
39 |
-
$
|
|
|
|
|
40 |
}
|
41 |
}
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
{
|
46 |
-
$speakers= [];
|
47 |
-
foreach ($event->data->speakers as $key => $value) {
|
48 |
-
$speakers[] = array(
|
49 |
-
"@type" => "Person",
|
50 |
-
"name" => $value['name'],
|
51 |
-
"image" => $value['thumbnail'],
|
52 |
-
"sameAs" => $value['facebook'],
|
53 |
-
);
|
54 |
-
}
|
55 |
-
$speakers = json_encode($speakers);
|
56 |
-
}
|
57 |
-
$schema_settings = isset( $settings['schema'] ) ? $settings['schema'] : '';
|
58 |
-
if($schema_settings == '1' ):
|
59 |
?>
|
60 |
-
<script type="application/ld+json">
|
61 |
-
{
|
62 |
-
"@context" : "http://schema.org",
|
63 |
-
"@type" : "Event",
|
64 |
-
"startDate" : "<?php echo !empty( $event->data->meta['mec_date']['start']['date'] ) ? $event->data->meta['mec_date']['start']['date'] : '' ; ?>",
|
65 |
-
"endDate" : "<?php echo !empty( $event->data->meta['mec_date']['end']['date'] ) ? $event->data->meta['mec_date']['end']['date'] : '' ; ?>",
|
66 |
-
"location" :
|
67 |
-
{
|
68 |
-
"@type" : "Place",
|
69 |
-
"name" : "<?php echo (isset($location['name']) ? $location['name'] : ''); ?>",
|
70 |
-
"image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
|
71 |
-
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
72 |
-
},
|
73 |
-
"offers": {
|
74 |
-
"url": "<?php echo $event->data->permalink; ?>",
|
75 |
-
"price": "<?php echo isset($event->data->meta['mec_cost']) ? $event->data->meta['mec_cost'] : '' ; ?>",
|
76 |
-
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
77 |
-
},
|
78 |
-
"performer": <?php echo $speakers; ?>,
|
79 |
-
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', preg_replace('/\s/u', ' ', $event->data->post->post_content))); ?>",
|
80 |
-
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
81 |
-
"name" : "<?php esc_html_e($event->data->title); ?>",
|
82 |
-
"url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
|
83 |
-
}
|
84 |
-
</script>
|
85 |
-
<?php endif; ?>
|
86 |
<?php do_action('mec_weekly_view_content', $event); ?>
|
87 |
<article data-style="<?php echo $label_style; ?>" class="<?php echo (isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : ''; ?>mec-event-article <?php echo $this->get_event_classes($event); ?>">
|
88 |
<div class="mec-event-list-weekly-date mec-color"><span class="mec-date-day"><?php echo $this->main->date_i18n('d', strtotime($event->date['start']['date'])); ?></span><?php echo $this->main->date_i18n('F', strtotime($event->date['start']['date'])); ?></div>
|
5 |
$has_events = array();
|
6 |
$settings = $this->main->get_settings();
|
7 |
$this->localtime = isset($this->skin_options['include_local_time']) ? $this->skin_options['include_local_time'] : false;
|
|
|
8 |
?>
|
9 |
<ul class="mec-weekly-view-dates-events">
|
10 |
<?php foreach($this->events as $date=>$events): $week = $this->week_of_days[$date]; ?>
|
25 |
$event_start_date = !empty($event->date['start']['date']) ? $event->date['start']['date'] : '';
|
26 |
|
27 |
$label_style = '';
|
28 |
+
if(!empty($event->data->labels))
|
|
|
29 |
{
|
30 |
+
foreach($event->data->labels as $label)
|
|
|
|
|
|
|
|
|
|
|
31 |
{
|
32 |
+
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
33 |
+
if($label['style'] == 'mec-label-featured') $label_style = esc_html__('Featured', 'modern-events-calendar-lite');
|
34 |
+
elseif($label['style'] == 'mec-label-canceled') $label_style = esc_html__('Canceled', 'modern-events-calendar-lite');
|
35 |
}
|
36 |
}
|
37 |
+
|
38 |
+
// MEC Schema
|
39 |
+
do_action('mec_schema', $event);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
41 |
<?php do_action('mec_weekly_view_content', $event); ?>
|
42 |
<article data-style="<?php echo $label_style; ?>" class="<?php echo (isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : ''; ?>mec-event-article <?php echo $this->get_event_classes($event); ?>">
|
43 |
<div class="mec-event-list-weekly-date mec-color"><span class="mec-date-day"><?php echo $this->main->date_i18n('d', strtotime($event->date['start']['date'])); ?></span><?php echo $this->main->date_i18n('F', strtotime($event->date['start']['date'])); ?></div>
|
app/skins/yearly_view/render.php
CHANGED
@@ -9,6 +9,7 @@ for($i = 1; $i <= 12; $i++)
|
|
9 |
{
|
10 |
$months_html .= $this->draw_monthly_calendar($this->year, $i, $this->events, $calendar_type);
|
11 |
}
|
|
|
12 |
$settings = $this->main->get_settings();
|
13 |
$this->localtime = isset($this->skin_options['include_local_time']) ? $this->skin_options['include_local_time'] : false;
|
14 |
?>
|
@@ -34,69 +35,25 @@ $this->localtime = isset($this->skin_options['include_local_time']) ? $this->ski
|
|
34 |
foreach($events as $event)
|
35 |
{
|
36 |
$count++;
|
37 |
-
$location = isset($event->data->locations[$event->data->meta['mec_location_id']]) ? $event->data->locations[$event->data->meta['mec_location_id']] : array();
|
38 |
$organizer = isset($event->data->organizers[$event->data->meta['mec_organizer_id']]) ? $event->data->organizers[$event->data->meta['mec_organizer_id']] : array();
|
39 |
$start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
|
40 |
$end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
|
41 |
$event_color = isset($event->data->meta['mec_color']) ? '<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>' : '';
|
|
|
42 |
$label_style = '';
|
43 |
-
if
|
44 |
-
foreach( $event->data->labels as $label)
|
45 |
{
|
46 |
-
|
47 |
-
if ( $label['style'] == 'mec-label-featured' )
|
48 |
-
{
|
49 |
-
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite' );
|
50 |
-
}
|
51 |
-
elseif ( $label['style'] == 'mec-label-canceled' )
|
52 |
{
|
53 |
-
$
|
|
|
|
|
54 |
}
|
55 |
}
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
{
|
60 |
-
$speakers= [];
|
61 |
-
foreach ($event->data->speakers as $key => $value) {
|
62 |
-
$speakers[] = array(
|
63 |
-
"@type" => "Person",
|
64 |
-
"name" => $value['name'],
|
65 |
-
"image" => $value['thumbnail'],
|
66 |
-
"sameAs" => $value['facebook'],
|
67 |
-
);
|
68 |
-
}
|
69 |
-
$speakers = json_encode($speakers);
|
70 |
-
}
|
71 |
-
$schema_settings = isset( $settings['schema'] ) ? $settings['schema'] : '';
|
72 |
-
if($schema_settings == '1' ):
|
73 |
?>
|
74 |
-
<script type="application/ld+json">
|
75 |
-
{
|
76 |
-
"@context" : "http://schema.org",
|
77 |
-
"@type" : "Event",
|
78 |
-
"startDate" : "<?php echo !empty( $event->data->meta['mec_date']['start']['date'] ) ? $event->data->meta['mec_date']['start']['date'] : '' ; ?>",
|
79 |
-
"endDate" : "<?php echo !empty( $event->data->meta['mec_date']['end']['date'] ) ? $event->data->meta['mec_date']['end']['date'] : '' ; ?>",
|
80 |
-
"location" :
|
81 |
-
{
|
82 |
-
"@type" : "Place",
|
83 |
-
"name" : "<?php echo (isset($location['name']) ? $location['name'] : ''); ?>",
|
84 |
-
"image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
|
85 |
-
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
86 |
-
},
|
87 |
-
"offers": {
|
88 |
-
"url": "<?php echo $event->data->permalink; ?>",
|
89 |
-
"price": "<?php echo isset($event->data->meta['mec_cost']) ? $event->data->meta['mec_cost'] : '' ; ?>",
|
90 |
-
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
91 |
-
},
|
92 |
-
"performer": <?php echo $speakers; ?>,
|
93 |
-
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', preg_replace('/\s/u', ' ', $event->data->post->post_content))); ?>",
|
94 |
-
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
95 |
-
"name" : "<?php esc_html_e($event->data->title); ?>",
|
96 |
-
"url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
|
97 |
-
}
|
98 |
-
</script>
|
99 |
-
<?php endif; ?>
|
100 |
<?php if($this->style == 'modern'): ?>
|
101 |
<div data-style="" class="<?php echo (isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : ''; ?>mec-agenda-event <?php echo $this->get_event_classes($event); ?>">
|
102 |
<i class="mec-sl-clock "></i>
|
@@ -117,9 +74,9 @@ $this->localtime = isset($this->skin_options['include_local_time']) ? $this->ski
|
|
117 |
</span>
|
118 |
</div>
|
119 |
<?php endif; ?>
|
120 |
-
|
121 |
-
</div>
|
122 |
</div>
|
|
|
123 |
<?php endforeach; ?>
|
124 |
<span class="mec-yearly-max" data-count="<?php echo $count; ?>" ></span>
|
125 |
<?php if ($count > 20): ?>
|
9 |
{
|
10 |
$months_html .= $this->draw_monthly_calendar($this->year, $i, $this->events, $calendar_type);
|
11 |
}
|
12 |
+
|
13 |
$settings = $this->main->get_settings();
|
14 |
$this->localtime = isset($this->skin_options['include_local_time']) ? $this->skin_options['include_local_time'] : false;
|
15 |
?>
|
35 |
foreach($events as $event)
|
36 |
{
|
37 |
$count++;
|
|
|
38 |
$organizer = isset($event->data->organizers[$event->data->meta['mec_organizer_id']]) ? $event->data->organizers[$event->data->meta['mec_organizer_id']] : array();
|
39 |
$start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
|
40 |
$end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
|
41 |
$event_color = isset($event->data->meta['mec_color']) ? '<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>' : '';
|
42 |
+
|
43 |
$label_style = '';
|
44 |
+
if(!empty($event->data->labels))
|
|
|
45 |
{
|
46 |
+
foreach($event->data->labels as $label)
|
|
|
|
|
|
|
|
|
|
|
47 |
{
|
48 |
+
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
49 |
+
if($label['style'] == 'mec-label-featured') $label_style = esc_html__('Featured', 'modern-events-calendar-lite');
|
50 |
+
elseif($label['style'] == 'mec-label-canceled') $label_style = esc_html__('Canceled', 'modern-events-calendar-lite');
|
51 |
}
|
52 |
}
|
53 |
+
|
54 |
+
// MEC Schema
|
55 |
+
do_action('mec_schema', $event);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
56 |
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
57 |
<?php if($this->style == 'modern'): ?>
|
58 |
<div data-style="" class="<?php echo (isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : ''; ?>mec-agenda-event <?php echo $this->get_event_classes($event); ?>">
|
59 |
<i class="mec-sl-clock "></i>
|
74 |
</span>
|
75 |
</div>
|
76 |
<?php endif; ?>
|
77 |
+
<?php } ?>
|
|
|
78 |
</div>
|
79 |
+
</div>
|
80 |
<?php endforeach; ?>
|
81 |
<span class="mec-yearly-max" data-count="<?php echo $count; ?>" ></span>
|
82 |
<?php if ($count > 20): ?>
|
assets/css/frontend.css
CHANGED
@@ -3009,6 +3009,51 @@ button#mec-book-form-back-btn-step-3 {
|
|
3009 |
float: none;
|
3010 |
}
|
3011 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3012 |
.mec-single-event .mec-book-form-coupon button {
|
3013 |
margin-left: 0;
|
3014 |
}
|
@@ -12685,6 +12730,7 @@ ul.mec-weekly-view-dates-events article:before,
|
|
12685 |
margin-bottom: 2px !important;
|
12686 |
}
|
12687 |
|
|
|
12688 |
.lity-content button[type="submit"] {
|
12689 |
position: relative;
|
12690 |
border: none;
|
3009 |
float: none;
|
3010 |
}
|
3011 |
|
3012 |
+
/* Pay Buttons Position */
|
3013 |
+
.mec-single-event .mec-events-meta-group-booking .mec-click-pay {
|
3014 |
+
max-width: 350px;
|
3015 |
+
}
|
3016 |
+
.mec-single-event .mec-events-meta-group-booking .mec-click-pay #mec_woo_add_to_cart_btn_r,
|
3017 |
+
.mec-single-event .mec-events-meta-group-booking .mec-click-pay button.mec-book-form-next-button {
|
3018 |
+
float: right;
|
3019 |
+
}
|
3020 |
+
|
3021 |
+
.mec-single-event .mec-events-meta-group-booking .mec-click-pay #mec_woo_add_to_cart_btn_r:hover,
|
3022 |
+
.mec-single-event .mec-events-meta-group-booking .mec-click-pay button.mec-book-form-next-button:hover {
|
3023 |
+
background: #000;
|
3024 |
+
}
|
3025 |
+
|
3026 |
+
.lity-container .mec-click-pay {
|
3027 |
+
max-width: 400px;
|
3028 |
+
}
|
3029 |
+
|
3030 |
+
.lity-container .mec-click-pay #mec_woo_add_to_cart_btn_r,
|
3031 |
+
.lity-container .mec-book-form-btn-wrap button.mec-book-form-next-button {
|
3032 |
+
float: right;
|
3033 |
+
}
|
3034 |
+
|
3035 |
+
.lity-container button.mec-book-form-next-button {
|
3036 |
+
float: right;
|
3037 |
+
}
|
3038 |
+
|
3039 |
+
.lity-container .mec-click-pay #mec_woo_add_to_cart_btn_r:hover,
|
3040 |
+
.lity-container .mec-click-pay button.mec-book-form-next-button:hover {
|
3041 |
+
background: #000;
|
3042 |
+
}
|
3043 |
+
|
3044 |
+
/* Free booking with coupon */
|
3045 |
+
.mec-single-event .mec-events-meta-group-booking .mec-click-next {
|
3046 |
+
float: right;
|
3047 |
+
position: relative;
|
3048 |
+
width: calc(100% - 186px);
|
3049 |
+
}
|
3050 |
+
|
3051 |
+
.lity-container .mec-click-next {
|
3052 |
+
float: right;
|
3053 |
+
position: relative;
|
3054 |
+
width: calc(100% - 186px);
|
3055 |
+
}
|
3056 |
+
|
3057 |
.mec-single-event .mec-book-form-coupon button {
|
3058 |
margin-left: 0;
|
3059 |
}
|
12730 |
margin-bottom: 2px !important;
|
12731 |
}
|
12732 |
|
12733 |
+
.lity-container .mec-click-pay #mec_woo_add_to_cart_btn_r,
|
12734 |
.lity-content button[type="submit"] {
|
12735 |
position: relative;
|
12736 |
border: none;
|
assets/css/frontend.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.lity-container,.mec-wrap,.mec-wrap div:not([class^=elementor-]){font-family:Montserrat,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif}.entry-content .mec-wrap h1,.entry-content .mec-wrap h2,.entry-content .mec-wrap h3,.entry-content .mec-wrap h4,.entry-content .mec-wrap h5,.entry-content .mec-wrap h6,.mec-wrap h1,.mec-wrap h2,.mec-wrap h3,.mec-wrap h4,.mec-wrap h5,.mec-wrap h6{font-family:Montserrat,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;color:#171c24;font-weight:300;font-style:inherit;letter-spacing:normal;clear:none}.mec-wrap h1{font-size:50px;line-height:1.16;margin-bottom:12px;letter-spacing:-1px}.mec-wrap h2{font-size:36px;line-height:1.14;margin-bottom:10px}.mec-wrap h3{font-size:28px;line-height:1.2;margin-bottom:8px}.mec-wrap h4{font-size:24px;line-height:1.2;margin-bottom:10px}.mec-wrap h5{font-size:18px;line-height:1.3;margin-bottom:7px}.mec-wrap h6{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-wrap .subheader{color:#849098}.mec-wrap h1 strong{font-weight:700}.mec-wrap p{margin:0 0 20px 0;color:#616161;font-size:14px;line-height:1.8}.mec-wrap .mec-event-article .mec-color-hover{box-shadow:none;border:none}.mec-wrap abbr,.mec-wrap acronym{cursor:auto;border:none}.entry-content .mec-wrap a{box-shadow:none}.mec-wrap .button,.mec-wrap a.button:not(.owl-dot),.mec-wrap button:not(.owl-dot):not(.gm-control-active),.mec-wrap input[type=button],.mec-wrap input[type=reset],.mec-wrap input[type=submit]{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#24ca4f;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease}.mec-wrap .button:hover,.mec-wrap a.button:hover,.mec-wrap button:hover,.mec-wrap input[type=button]:hover,.mec-wrap input[type=reset]:hover,.mec-wrap input[type=submit]:hover{background:#222;color:#fff}.mec-wrap #mec_woo_add_to_cart_btn_r{min-width:155px;margin-top:5px;border-radius:2px;box-shadow:0 2px 1px rgba(0,0,0,.08);float:left;text-align:center}.mec-booking-form-container button{display:block}.vertical-space,.vertical-space1,.vertical-space2,.vertical-space3,.vertical-space4,.vertical-space5{display:block;width:100%;margin:0;clear:both;border:0 none;height:20px}.vertical-space2{height:40px}.vertical-space3{height:60px}.vertical-space4{height:80px}.vertical-space5{height:100px}@media only screen and (max-width:479px){.vertical-space,.vertical-space1{height:8px}.vertical-space2{height:14px}.vertical-space3{height:28px}.vertical-space4{height:40px}.vertical-space5{height:60px}}@media only screen and (max-width:960px){.vertical-space,.vertical-space1{height:12px}.vertical-space2{height:18px}.vertical-space3{height:36px}.vertical-space4{height:50px}.vertical-space5{height:80px}}.mec-wrap abbr{cursor:auto;border-bottom:0}@-webkit-keyframes rotating{from{-ms-transform:rotate(0);-moz-transform:rotate(0);-webkit-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}to{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes rotating{from{-ms-transform:rotate(0);-moz-transform:rotate(0);-webkit-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}to{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}.mec-wrap{font:14px/25px sans-serif;font-family:Montserrat,Helvetica,Arial,sans-serif;font-weight:400;color:#626262}.mec-wrap .mec-events a{border-bottom:none}.mec-wrap .mec-container a{box-shadow:none}.mec-event-content p{font-family:Roboto,sans-serif;font-weight:300}.mec-wrap .mec-clear:after,.mec-wrap .mec-clear:before{content:" ";display:table}.mec-wrap .mec-clear:after{clear:both}.mec-events-button{background:#fff;padding:12px 34px;font-size:13px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;margin-right:10px;transition:.3s}.mec-wrap .mec-events-button:hover{color:#fff}.mec-no-event{display:none}#mec-active-current{display:block!important}.current-hide #mec-active-current{display:none!important}.mec-event-grid-classic .mec-event-article{position:relative;border:2px solid #e3e3e3;box-shadow:0 2px 0 0 rgba(0,0,0,.016);margin-bottom:30px;max-width:none}.mec-event-grid-classic .mec-event-content{background:#fff;color:#767676;padding:0 20px 5px;text-align:center;min-height:125px}.mec-event-grid-classic .mec-event-title{color:#202020;margin:10px 0;font-weight:700;font-size:20px;letter-spacing:1px;text-transform:uppercase}.mec-event-grid-classic .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-classic .mec-event-date{font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:1px;color:#fff;padding:3px 20px;margin:0 -20px 20px -20px;text-align:center}.mec-event-grid-classic .mec-event-content p{font-size:15px;color:#8a8a8a}.mec-event-grid-classic .mec-event-detail{display:none}.mec-event-grid-classic img{margin-bottom:0;width:100%}.mec-event-footer{position:relative;border-top:1px solid #efefef;padding:20px;min-height:80px;margin:0;background:#fafafa}.mec-event-sharing-wrap{left:15px;position:absolute;list-style:none;margin:0}.mec-event-sharing-wrap .mec-event-sharing{position:absolute;padding:8px 0 2px;left:-6px;bottom:54px;margin:0;margin-top:6px;border-radius:5px;width:50px;visibility:hidden;opacity:0;border:1px solid #e2e2e2;background:#fff;box-shadow:0 0 9px 0 rgba(0,0,0,.06);z-index:99;-webkit-transition:all .18s ease;transition:all .18s ease}.mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-sharing-wrap .mec-event-sharing:before{content:'';display:block;position:absolute;bottom:-10px;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-event-sharing-wrap .mec-event-sharing:before{bottom:-21px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-sharing-wrap .mec-event-sharing:after{bottom:-19px;border-color:#fff transparent transparent transparent}.mec-event-sharing-wrap:hover .mec-event-sharing{opacity:1;visibility:visible}.mec-event-sharing-wrap li{text-align:center;border:0;display:block;margin-right:2px;overflow:hidden;margin:0 auto 6px;width:38px}.mec-event-sharing-wrap:hover>li{cursor:pointer;background-color:#40d9f1}.mec-event-sharing-wrap:hover li a{color:#fff}.mec-event-sharing-wrap>li:first-of-type{border:1px solid #d9d9d9}.mec-event-sharing-wrap li a,.mec-event-sharing-wrap:hover li ul li a{border:none;color:#767676}.mec-event-sharing-wrap li i{width:36px;height:36px;display:table-cell;vertical-align:middle}.mec-event-sharing-wrap li svg{height:16px}.mec-event-sharing-wrap .mec-event-sharing li a{display:block}.mec-event-sharing-wrap .mec-event-sharing li:hover a{color:#40d9f1}.mec-event-sharing .mec-event-share:hover .event-sharing-icon{background:#40d9f1;border-width:0 1px 0;cursor:pointer}.mec-event-sharing .mec-event-map{border-width:1px 0 1px}.mec-event-footer .mec-booking-button{box-shadow:none;transition:all .21s ease;font-size:11px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:1px solid #e8e8e8;position:absolute;top:20px;right:15px;padding:0 16px;line-height:37px;height:38px}.mec-event-footer .mec-booking-button:hover{background:#191919;color:#fff;border-color:#191919}@media only screen and (max-width:960px){.mec-event-grid-classic{margin-bottom:30px}}.mec-widget .mec-event-grid-classic.mec-owl-carousel{padding:36px 0 16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav{margin:5px 0;width:100%;position:absolute;top:15px;padding:0}.mec-skin-grid-container.mec-widget{padding-top:18px}.mec-widget .mec-event-grid-classic.mec-owl-carousel{padding:20px 0 16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav{margin:0;width:100%;position:absolute;top:0;padding:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav div{position:absolute;background:#fff;line-height:0;width:34px;height:26px;padding:6px;text-align:center;margin-top:-17px;border-radius:3px;border:1px solid #e2e2e2;text-align:center;box-shadow:0 2px 0 0 rgba(0,0,0,.028);transition:all .33s ease}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav .owl-next{right:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav .owl-prev{left:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-sharing{display:none}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-footer{text-align:center}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-footer .mec-booking-button{position:static;padding:11px 16px}.widget .mec-event-footer ul.mec-event-sharing-wrap li a.mec-event-share-icon{padding:0}@media screen and (min-width:56.875em){.mec-widget .mec-month-container dl{margin-bottom:0}}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-footer{text-align:right}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-sharing-wrap{left:5px;padding-left:5px}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-sharing-wrap .mec-event-sharing{left:0}.mec-widget .mec-event-sharing-wrap .mec-event-sharing{position:absolute;top:auto;bottom:52px;margin:0;margin-top:0;border-radius:5px}.mec-widget .mec-event-sharing-wrap .mec-event-sharing:after{top:auto;bottom:-17px;border-color:#fff transparent transparent transparent}.mec-widget .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-18px;border-color:#e2e2e2 transparent transparent transparent}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav button{position:absolute;background:#fff;padding:6px;margin-top:-17px;border-radius:3px;border:1px solid #e2e2e2;box-shadow:0 2px 0 0 rgba(0,0,0,.028)}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav button:hover{background:#40d9f1;border-color:#40d9f1}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav button:hover i{color:#fff}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-booking-button{width:40%;float:right;color:#202020;height:36px;line-height:16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-booking-button:hover{color:#fff}.mec-widget .mec-event-list-modern .col-md-2.col-sm-2,.mec-widget .mec-event-list-modern .col-md-6.col-sm-6{padding:0;width:100%;display:block;position:unset}.mec-widget .mec-event-list-modern .col-md-4.col-sm-4 .mec-booking-button{width:80%;height:46px;line-height:22px;padding:11px 20px;float:right}.mec-widget .mec-event-list-modern .col-md-4.col-sm-4.mec-btn-wrapper{top:auto;bottom:5%}@media (max-width:480px){.mec-widget .mec-event-list-modern .col-md-4.col-sm-4{padding:0}.mec-widget .mec-event-list-modern .col-md-4.col-sm-4 .mec-booking-button{width:100%}}.mec-event-grid-clean{margin-bottom:10px;max-width:none}.mec-event-grid-clean .mec-event-article{margin-bottom:30px;position:relative;border:1px solid #e2e2e2;text-align:center;padding:15px 15px 0;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-clean .mec-event-content{background:#fff;color:#767676;padding:25px 16px 0;text-align:left}.mec-event-grid-clean .mec-event-title{color:#202020;margin:0 0 10px 0;font-weight:700;font-size:21px;text-transform:capitalize}.mec-event-grid-clean .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-clean .mec-event-date{font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:1px;background-color:#40d9f1;color:#fff;padding:3px 0;margin:0;text-align:center}.mec-event-grid-clean .mec-event-content p{font-size:15px;color:#9a9a9a;line-height:1.54}.mec-event-grid-clean img{margin-bottom:0;width:100%}.mec-event-grid-clean .event-grid-t2-head{margin-bottom:10px;color:#fff;padding:9px 14px 6px;text-align:left}.mec-event-grid-clean .event-grid-t2-head .mec-event-date{font-size:50px;line-height:50px;float:left;margin-right:11px}.mec-event-grid-clean .event-grid-t2-head .mec-event-month{text-transform:uppercase;font-size:17px;line-height:20px;padding-top:4px}.mec-event-grid-clean .event-grid-t2-head .mec-event-detail{font-size:12px}.mec-event-grid-clean .mec-event-sharing-wrap{left:0}.mec-event-grid-clean .mec-event-footer{position:relative;border-top:2px solid;padding:20px 0;margin:0 14px;text-align:left;background:0 0}.mec-event-grid-clean .mec-event-footer .mec-booking-button{right:0}.mec-event-grid-clean .row{margin-bottom:30px}.mec-event-grid-modern{margin-bottom:10px;max-width:none}.mec-event-grid-modern .mec-event-article{position:relative;border:1px solid #e2e2e2;text-align:center;margin-bottom:30px;padding:45px 15px 10px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-modern .mec-event-content{background:#fff;color:#767676;padding:35px 15px 10px;text-align:left}.mec-event-grid-modern .mec-event-title{color:#202020;margin:0 0 10px 0;font-weight:700;font-size:24px;text-transform:none;letter-spacing:-1px}.mec-event-grid-modern .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-modern .mec-event-content p{font-size:15px;color:#9a9a9a;line-height:1.54}.mec-event-grid-modern img{margin-bottom:0;width:100%}.mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:9px 14px 6px;text-align:left}.mec-event-grid-modern .event-grid-modern-head .mec-event-date{font-size:50px;line-height:50px;float:left;margin-right:11px}.mec-event-grid-modern .event-grid-modern-head .mec-event-month{text-transform:uppercase;font-size:17px;line-height:20px;padding-top:4px}.mec-event-grid-modern .event-grid-modern-head .mec-event-detail{font-size:12px}.mec-event-grid-modern .event-grid-modern-head .mec-event-day{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:35px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-event-grid-modern .mec-event-footer{position:relative;height:90px;padding:20px 0;border:none;margin:0 14px;text-align:left;background:0 0}.mec-event-grid-modern .mec-event-footer .mec-booking-button{right:auto;left:0}.mec-event-grid-modern .mec-event-sharing-wrap{left:auto;right:0}.mec-event-grid-modern .mec-event-sharing{left:auto;right:-6px}.mec-event-grid-modern .mec-event-sharing-wrap li{border-radius:55px}.mec-event-grid-modern .row{margin-bottom:0}@media only screen and (max-width:479px){.mec-event-grid-modern .mec-event-article{padding-bottom:30px}.mec-event-grid-modern .mec-event-sharing{top:60px;left:0;right:auto}.mec-event-grid-modern .mec-event-footer .mec-booking-button{top:0}}span.mec-event-title-soldout{font-size:8px;font-weight:700;letter-spacing:.5px;text-transform:uppercase;background:#e63360;color:#fff;padding:3px 8px;line-height:1;border-radius:15px;white-space:nowrap;vertical-align:middle}.mec-event-grid-colorful .mec-event-article{min-height:400px;border:none;box-shadow:none;background:#40d9f1;padding-top:25px;margin:0;color:#fff}.mec-event-grid-colorful .mec-event-content{background:0 0}.mec-event-grid-colorful .event-grid-modern-head,.mec-event-grid-colorful .event-grid-modern-head .mec-event-date,.mec-event-grid-colorful .event-grid-modern-head .mec-event-day,.mec-event-grid-colorful .mec-event-content p,.mec-event-grid-colorful .mec-event-sharing-wrap>li>a,.mec-event-grid-colorful .mec-event-title a{color:#fff}.mec-event-grid-colorful .mec-event-footer .mec-booking-button{border:none}.mec-event-grid-colorful .mec-event-sharing-wrap>li{border-color:#fff}.mec-event-grid-colorful .mec-event-sharing-wrap:hover>li{background:#333;border-color:#333}.mec-event-grid-colorful .mec-event-title a.mec-color-hover:hover{color:#fff;text-decoration:underline}.mec-event-grid-colorful .mec-event-title .event-color{display:none}.mec-event-grid-colorful div[class^=col-md-]{padding:0 1px 1px 0;margin:0}@media only screen and (min-width:768px){.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-day{font-size:26px}.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-month{font-size:15px}.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-date{font-size:50px}.mec-wrap.mec-sm959.mec-event-grid-colorful .mec-event-title{font-size:21px}.mec-wrap.mec-sm959.mec-event-grid-colorful .mec-event-content p{font-size:13px}}@media only screen and (min-width:768px) and (max-width:1200px){.mec-wrap.mec-sm959.mec-event-grid-colorful div[class^=col-md-]{width:50%}}.mec-event-list-minimal .mec-event-article{border-bottom:1px solid #efefef;padding:24px 0 16px}.mec-event-list-minimal .mec-wrap .col-md-9{padding:0}.mec-event-list-minimal .mec-event-date{position:relative;float:left;margin-right:30px;color:#fff;width:52px;padding:6px 4px 3px;text-align:center;text-transform:uppercase;border-radius:3px}.mec-event-list-minimal .mec-event-date span{display:block;font-size:24px;font-weight:700;text-align:center;margin-bottom:4px}.mec-event-list-minimal .mec-event-date:after{display:block;content:"";position:absolute;width:50px;left:1px;top:1px;height:34px;background:rgba(255,255,255,.1);box-shadow:0 4px 4px rgba(0,0,0,.02)}.mec-event-list-minimal .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;font-size:18px;text-transform:uppercase;letter-spacing:0;padding-top:10px}.mec-event-list-minimal .mec-event-detail,.mec-event-list-minimal .mec-time-details{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;font-family:Roboto,sans-serif}.mec-event-list-minimal .btn-wrapper{text-align:right;padding-right:0;padding-top:6px}.mec-event-list-minimal .btn-wrapper .mec-detail-button{border-bottom:0;margin-bottom:14px;margin-right:0;box-shadow:none}.mec-event-list-minimal a.mec-detail-button{text-align:center;display:inline-block;background:#ededed;color:#191919;padding:12px;border-radius:2px;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:2px;transition:all .24s ease}.mec-event-list-minimal a.mec-detail-button:hover{background:#292929;color:#fff}.vc_col-sm-4 .mec-event-list-minimal .mec-event-date,.vc_col-sm-6 .mec-event-list-minimal .mec-event-date{margin-right:12px}.vc_col-sm-4 .mec-event-list-minimal .mec-event-title,.vc_col-sm-6 .mec-event-list-minimal .mec-event-title{font-size:15px;letter-spacing:2px}@media only screen and (min-width:480px) and (max-width:767px){.mec-event-list-minimal .btn-wrapper{padding-left:0}.mec-event-list-minimal .mec-event-date{margin-right:10px}}@media only screen and (max-width:767px){.mec-event-list-minimal .btn-wrapper .mec-detail-button{display:block;text-align:center;margin:0;margin-top:16px;padding:8px}.mec-event-list-minimal .btn-wrapper{margin:12px 0}}@media only screen and (max-width:479px){.mec-event-list-minimal .mec-event-date{float:none;width:100%;margin-bottom:8px}.mec-event-list-minimal .mec-event-date span{display:inline;padding-right:25px;margin-right:7px;font-size:inherit}.mec-event-list-minimal .mec-event-date:after{width:45%;box-shadow:4px 0 4px rgba(0,0,0,.02)}.mec-event-list-minimal .btn-wrapper{text-align:center;padding-left:0}.mec-event-list-minimal{text-align:center}.mec-event-list-minimal .mec-event-detail{margin-bottom:10px}}.mec-wrap .mec-event-list-modern .mec-event-title{margin-top:0;margin-bottom:10px}.mec-event-list-modern .mec-event-article{border-bottom:1px solid #efefef;padding:30px 0 10px}.mec-event-list-modern .mec-event-article:last-child{border-bottom:none}.mec-event-list-modern .mec-event-title a{color:#191919;transition:all .24s ease;box-shadow:none}.mec-event-list-modern .mec-event-date{text-transform:uppercase;padding:10px 0}.mec-event-list-modern .mec-event-date .event-d{font-size:48px;display:table-cell;padding:10px 0 0}.mec-event-list-modern .mec-event-date .event-f{font-size:13px;display:table-cell;vertical-align:middle;padding-left:7px;font-weight:500;letter-spacing:3px;color:#777}.mec-event-list-modern .mec-event-detail{font-weight:300;color:#8a8a8a}.mec-event-list-modern .mec-event-detail .mec-time-details{display:inline}.mec-event-list-modern .mec-event-date .event-da{margin-top:9px;color:silver;font-size:28px;font-weight:100;text-transform:uppercase;letter-spacing:-1px;text-align:left}.mec-event-list-modern .mec-btn-wrapper .mec-booking-button{border-radius:1px;letter-spacing:2px;border:1px solid #e6e6e6;color:#333;background-color:#fff;padding:13px 20px;font-weight:700;font-size:11px;box-shadow:0 2px 0 0 rgba(0,0,0,.016);transition:all .28s ease}.mec-event-list-modern .mec-btn-wrapper .mec-booking-button:hover{border-color:#222;background:#222;color:#fff}.mec-event-list-modern .mec-event-title{font-weight:700;font-size:20px;text-transform:uppercase;letter-spacing:1px}.mec-event-list-modern .mec-event-detail{color:#9a9a9a;font-size:15px;font-weight:300;line-height:25px;font-family:Roboto,sans-serif}.mec-event-list-modern .mec-btn-wrapper{text-align:right;padding:10px 0;text-transform:uppercase}.mec-event-list-modern .mec-event-sharing{position:relative;margin:10px 0}.mec-event-list-modern .mec-event-sharing>li{display:inline-block;border:none;border-radius:50%;margin-right:3px}.mec-event-list-modern .mec-event-sharing>li:hover{display:inline-block}.mec-event-list-modern .mec-event-sharing>li:hover a i{color:#fff;background:#40d9f1;border-color:#40d9f1}.mec-event-list-modern .mec-event-sharing>li i{width:36px;display:inline-block;line-height:35px;color:#767676;text-align:center;border-radius:50%;border:1px solid #ddd;font-size:14px}.mec-event-list-modern .mec-event-sharing .mec-event-share:hover .mec-event-sharing-icon{background:#40d9f1;border-color:#40d9f1;cursor:pointer;border-radius:50%}.mec-event-list-modern .mec-event-sharing li:hover a i{background:#40d9f1}@media only screen and (min-width:768px){.mec-event-list-modern .mec-event-article{position:relative;min-height:160px;overflow:hidden}.mec-event-list-modern .col-md-2.col-sm-2{width:210px;position:absolute;left:0;top:20px}.mec-event-list-modern .col-md-4.col-sm-4.mec-btn-wrapper{width:180px;padding:0;position:absolute;right:0;top:30%}.mec-event-list-modern .col-md-6.col-sm-6{width:100%;padding-left:225px;padding-right:195px}}@media only screen and (max-width:767px){.mec-event-list-modern .mec-btn-wrapper .mec-booking-button{letter-spacing:1px;border:1px solid #e1e1e1;padding:8px 16px}.mec-event-list-modern .mec-btn-wrapper{padding:0 0 12px}.mec-event-list-modern .mec-event-sharing{margin-bottom:0}}.mec-event-grid-minimal .mec-event-article{margin:15px 0;min-height:80px;display:table}.mec-event-grid-minimal .event-detail-wrap{display:table-cell;vertical-align:middle}.mec-event-grid-minimal .mec-event-date{width:70px;float:left;margin-right:20px;padding:12px 16px 10px;text-align:center;text-transform:uppercase;border-radius:4px;border:1px solid #e6e6e6;transition:all .37s ease-in-out;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-minimal .mec-event-date span{display:block;font-size:24px;font-weight:700;text-align:center;margin-bottom:4px;color:#2a2a2a;transition:color .3s ease}.mec-event-grid-minimal .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;line-height:21px;font-size:16px;text-transform:uppercase;transition:color .3s ease}.mec-event-grid-minimal .mec-event-title a{color:#191919;transition:color .3s ease}.mec-event-grid-minimal .mec-event-detail{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;font-family:Roboto,sans-serif}.mec-event-grid-minimal .mec-event-date:hover{color:#fff}.mec-event-grid-minimal .mec-event-date:hover span{color:#fff}.mec-event-list-classic .mec-event-article{padding:12px 0;margin-bottom:20px}.mec-event-list-classic .mec-event-image{float:left;width:86px;margin-right:20px}.mec-event-list-classic .mec-event-date,.mec-event-list-classic .mec-event-time{font-weight:400;font-size:13px;letter-spacing:0;line-height:18px;text-align:left;display:initial;margin-right:12px}.mec-event-list-classic .mec-event-time .mec-time-details,.mec-event-list-classic .mec-event-time i{display:inline;margin-right:3px}.mec-event-list-classic .mec-event-date span{font-weight:500;margin-bottom:6px}.mec-event-list-classic .mec-event-title{font-size:15px;margin:10px 0 12px;font-weight:700;text-transform:uppercase}.mec-event-list-classic .mec-event-title a{color:#494949;transition:color .3s ease}.mec-event-list-classic .mec-event-detail{color:#777;font-weight:400;line-height:12px;font-size:12px;overflow:hidden}.mec-event-list-classic a.magicmore{padding:10px 16px;color:#fff;background:#222;letter-spacing:2px;font-size:11px}.mec-event-list-classic a.magicmore:after{content:"";display:none}.mec-event-list-classic a.magicmore:hover{color:#40d9f1}.mec-event-grid-simple .mec-event-article{position:relative;margin-bottom:30px}.mec-event-grid-simple .mec-event-article:after{border-right:1px solid #e6e6e6;height:60px;position:absolute;top:50%;margin-top:-30px;right:-1px}.mec-event-grid-simple .row div:last-child .mec-event-article:after{border:none}.mec-event-grid-simple .row{margin:15px 0 30px;text-align:center}.mec-event-grid-simple .mec-event-date{padding:0;margin:0;text-transform:capitalize;font-size:12px;font-weight:700}.mec-event-grid-simple .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;line-height:21px;font-size:15px;padding-top:5px;text-transform:uppercase;transition:color .37s ease}.mec-event-grid-simple .mec-event-title a{color:#494949;transition:color .3s ease}.mec-event-grid-simple .mec-event-detail{font-family:Roboto,sans-serif;font-weight:400;line-height:1;letter-spacing:0;font-size:13px;color:#777}.mec-event-grid-simple:hover .mec-event-title{color:#40d9f1}.mec-event-grid-simple:hover .mec-event-date{background:0 0}.event-last:after{display:none}@media only screen and (max-width:767px){.mec-event-grid-simple .mec-event-article{padding-bottom:20px;margin-bottom:20px;border-bottom:1px solid #eee}.mec-event-grid-simple .mec-event-article:after{border:none}}.mec-event-grid-novel .mec-event-article{position:relative;margin-bottom:30px;padding:60px 5% 60px 7%;border:1px solid rgba(255,255,255,.12);border-radius:10px;background-color:#0050fd;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease;z-index:1}.mec-event-grid-novel .mec-event-article .novel-grad-bg{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:10px;opacity:0;z-index:-1;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease}.mec-event-grid-novel .mec-event-article:hover{-webkit-box-shadow:0 13px 36px 0 rgba(0,0,0,.23);box-shadow:0 13px 36px 0 rgba(0,0,0,.23);border-color:transparent}.mec-event-grid-novel .mec-event-article:hover .novel-grad-bg{background-image:-webkit-gradient(linear,left top,right top,from(#262e32),to(#0e1015));background-image:-webkit-linear-gradient(left,#262e32 0,#0e1015 100%);background-image:-o-linear-gradient(left,#262e32 0,#0e1015 100%);background-image:linear-gradient(90deg,#262e32 0,#0e1015 100%);opacity:1}.mec-event-grid-novel .mec-event-image{float:left;width:150px;height:150px}.mec-event-grid-novel .mec-event-image img{width:150px;height:150px;border-radius:50%}.mec-event-grid-novel .mec-event-detail-wrap{margin-left:200px}.mec-event-grid-novel .mec-event-content h4{position:relative;margin-bottom:10px;display:inline-block}.mec-event-grid-novel .mec-event-content h4 a{font-size:24px;line-height:35px;color:#fafcff}.mec-event-grid-novel .mec-event-content h4::before{content:'';position:absolute;top:8px;left:-30px;width:17px;height:17px;background:#5cd0ed;opacity:.4;border-radius:50%}.mec-event-grid-novel .mec-event-content h4::after{content:'';position:absolute;top:12px;left:-26px;width:9px;height:9px;background:#5cd0ed;border-radius:50%}.mec-event-grid-novel .mec-event-address,.mec-event-grid-novel .mec-event-detail,.mec-event-grid-novel .mec-event-month,.mec-event-grid-novel .mec-local-time-details{position:relative;padding-left:35px;font-size:15px;line-height:30px;color:rgba(255,255,255,.4)}.mec-event-grid-novel .mec-event-address::before,.mec-event-grid-novel .mec-event-detail::before,.mec-event-grid-novel .mec-event-month::before,.mec-event-grid-novel .mec-local-time-details:before{position:absolute;top:6px;left:6px;font-size:17px;font-family:simple-line-icons;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1}.mec-event-grid-novel .mec-local-time-details::before{content:"\e007"}.mec-event-grid-novel .mec-event-month::before{content:"\e075"}.mec-event-grid-novel .mec-event-detail::before{content:"\e081"}.mec-event-grid-novel .mec-event-address::before{content:"\e096"}.mec-event-grid-novel .mec-event-footer{clear:both;padding:20px 0;border-top:none;background:0 0}.mec-event-grid-novel .mec-event-footer .mec-booking-button{right:auto;left:0;height:42px;width:148px;padding:0 20px;font-size:14px;font-weight:400;line-height:42px;text-align:center;color:#fff;background:0 0;border-color:rgba(255,255,255,.1);border-radius:50px}.mec-event-grid-novel .mec-event-footer .mec-booking-button:hover{background-color:rgba(255,255,255,.1)}.mec-event-grid-novel .mec-event-sharing-wrap{left:175px;cursor:pointer}.mec-event-grid-novel .mec-event-sharing-wrap>li{border-color:rgba(255,255,255,.1);border-radius:50%}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing{top:-5px;left:0;padding:5px 10px 2px 50px;min-width:150px;width:inherit;height:37px;background-color:rgba(255,255,255,.1);-webkit-box-shadow:none;box-shadow:none;border:none;border-radius:50px}.mec-event-grid-novel .mec-event-sharing-wrap:hover>li{background-color:rgba(255,255,255,.1)}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing::after,.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing::before{display:none}.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon,.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon a,.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li i{display:inline}.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon a{padding:0 10px}.mec-event-grid-novel .mec-event-sharing-wrap>li a{color:#fff}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li a{color:rgba(255,255,255,.4)}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li a:hover{color:rgba(255,255,255,1)}@media only screen and (max-width:1200px){.mec-event-grid-novel .row .col-md-6.col-sm-6{width:100%;float:none}.mec-event-grid-novel .mec-event-image{float:none;margin-top:-20px;margin-bottom:20px}.mec-event-grid-novel .mec-event-detail-wrap{margin-left:20px}.mec-event-grid-novel .mec-event-footer{margin-top:30px}}@media only screen and (max-width:767px){.mec-event-grid-novel .mec-event-footer{margin-top:0;padding-top:30px;margin-bottom:24px}.mec-event-grid-novel .mec-event-footer .mec-booking-button{display:block;position:relative}.mec-event-grid-novel .mec-event-sharing-wrap{left:0;bottom:-55px}.mec-event-grid-novel .mec-event-content h4 a{font-size:20px;line-height:1.3}}.mec-event-cover-modern{position:relative}.mec-event-cover-modern .mec-event-cover-a{background:0 0;position:absolute;color:#fff;bottom:0;left:0;text-decoration:none}.mec-event-cover-modern .mec-event-cover-a .mec-event-overlay{transition:all .5s;opacity:.8;width:100%;height:100%;position:absolute}.mec-event-cover-modern .mec-event-cover-a:hover .mec-event-overlay{opacity:1}.mec-event-cover-modern .mec-event-detail{padding:40px;position:relative}.mec-event-cover-modern .mec-event-cover-a:hover .mec-event-tag{color:#333;transition:all .5s}.mec-event-cover-modern .mec-event-cover-a .mec-event-title:hover{text-decoration:underline}.mec-event-cover-modern .mec-event-tag{background:#fff;display:inline-block;padding:5px 9px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:24px}.mec-event-cover-modern .mec-event-date{text-transform:uppercase;font-size:17px;font-weight:300}.mec-event-cover-modern .mec-event-title{color:#fff;text-transform:uppercase;font-size:40px;font-weight:700;margin:6px 0}.mec-event-cover-modern .mec-event-place{font-weight:400;font-size:18px;font-family:Roboto,sans-serif}@media only screen and (max-width:767px){.mec-event-cover-modern .mec-event-cover-a{width:100%}}.mec-event-cover-classic{position:relative;overflow:hidden;background:#fff;padding:6px;border:1px solid #e8e8e8}.mec-event-cover-classic .mec-event-overlay{position:absolute;left:6px;right:6px;bottom:6px;top:6px;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-cover-classic:hover .mec-event-overlay{background-color:rgba(36,36,36,.6)}.mec-event-cover-classic .mec-event-content{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out}.mec-event-cover-classic .mec-event-date{font-size:14px;text-transform:uppercase;font-weight:400;line-height:1.6}.mec-event-cover-classic .mec-event-date span{display:block;font-weight:700;font-size:16px}.mec-event-cover-classic .mec-event-title{color:#fff;margin:20px 0 38px;font-size:24px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-cover-classic .mec-btn-wrapper{text-align:left}.mec-event-cover-classic .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-cover-classic .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:12px 20px;letter-spacing:3px;font-size:12px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-cover-classic .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-cover-classic .mec-event-image img{min-width:100%}@media only screen and (max-width:960px){.mec-event-cover-classic .mec-event-content{padding:20px}.mec-event-cover-classic .mec-event-button{font-size:11px;padding:7px 10px;letter-spacing:1px}.mec-event-cover-classic .mec-event-title{font-size:19px;margin:15px 0 25px}.mec-event-cover-classic .mec-event-date{font-size:12px}}@media only screen and (max-width:767px){.mec-event-cover-classic{margin-bottom:30px}}@media only screen and (max-width:479px){.mec-event-cover-classic .mec-event-content{padding:15px;font-size:15px}.mec-event-cover-classic .mec-event-title{font-size:15px;margin:10px 0}.mec-event-cover-classic .mec-event-button{font-size:10px;padding:6px;letter-spacing:1px}.mec-event-cover-classic .mec-event-icon{padding:10px}}.mec-load-more-wrap{text-align:center;display:block;width:100%;padding-top:20px;text-align:center;position:relative}.mec-load-more-button{box-shadow:none;transition:all .21s ease;font-size:12px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:2px solid #e8e8e8;border-radius:50px;padding:0 28px;margin-bottom:20px;cursor:pointer;line-height:40px;font-family:Montserrat,Helvetica,Arial,sans-serif;height:42px;display:inline-block}.mec-load-more-button:hover{background:#191919;color:#fff;border-color:#191919}.mec-load-more-loading{content:url(../img/ajax-loader.gif);cursor:wait;background:0 0;border-style:none}.mec-load-more-loading:hover{background:0 0}.mec-modal-preloader,.mec-month-navigator-loading{width:100%;height:100%;background:no-repeat rgba(255,255,255,.88) url(../img/ajax-loader.gif) center;border-style:none;position:fixed;left:0;right:0;bottom:0;top:0;z-index:9}.mec-event-calendar-classic .mec-calendar-side .mec-calendar-table{min-height:1024px}.mec-calendar-side .mec-calendar-table{min-height:450px}.mec-skin-weekly-view-events-container.mec-month-navigator-loading{margin-top:0}.mec-calendar.mec-event-calendar-classic .mec-calendar-side{display:block}.mec-skin-daily-view-events-container.mec-month-navigator-loading{margin-top:0}@media only screen and (min-width:961px){.mec-wrap.mec-sm959 .mec-calendar-side .mec-calendar-table{min-height:1px}}@media only screen and (max-width:479px){.mec-calendar-side .mec-calendar-table{min-height:1px}}.mec-event-cover-clean{position:relative;border:1px solid #e6e6e6;padding:8px}.mec-event-cover-clean .mec-event-overlay{height:100%;background-color:rgba(36,36,36,.4);position:absolute;width:100%;left:0;border:8px solid #fff;top:0;transition:all .5s ease-in-out}.mec-event-cover-clean .mec-event-content{color:#fff;position:absolute;bottom:20px;padding:40px 60px;transition:all .5s ease-in-out}.mec-event-cover-clean .mec-event-title{color:#fff;font-weight:700;margin:46px 0 19px;font-size:29px;text-transform:uppercase;text-shadow:0 0 1px rgba(0,0,0,.5)}.mec-event-cover-clean .mec-event-title a{color:#fff;transition:all .5s;text-decoration:none;outline:0;border:none;box-shadow:none}.mec-event-cover-clean .mec-event-title a:hover{text-decoration:underline}.mec-event-cover-clean .mec-event-date{position:absolute;top:-20px;right:60px;color:#fff;width:60px;padding:14px 10px;z-index:1}.mec-event-cover-clean .mec-event-date div{text-align:center;text-transform:uppercase;letter-spacing:1px;line-height:16px}.mec-event-cover-clean .mec-event-date .dday{padding-bottom:15px;border-bottom:1px solid rgba(255,255,255,.5);margin-bottom:13px;font-size:24px}.mec-event-cover-clean .mec-event-date .dmonth{letter-spacing:2px}.mec-event-cover-clean .mec-event-place{font-size:18px;font-family:Roboto,sans-serif}.mec-event-cover-clean .mec-event-image img{width:100%}@media only screen and (max-width:768px){.mec-event-cover-clean .mec-event-content{padding:20px;bottom:5px}.mec-event-cover-clean .mec-event-title{font-size:23px}.mec-event-cover-clean .mec-event-date{right:20px;padding:10px;width:50px}}@media only screen and (max-width:479px){.mec-event-cover-clean .mec-event-content{padding:10px}.mec-event-cover-clean .mec-event-title{font-size:19px;padding-right:25px}.mec-event-cover-clean .mec-event-date{right:-20px;top:-10px}.mec-event-cover-clean .mec-event-detail{font-size:12px}}.mec-month-divider{text-align:center;margin:60px 0 40px 0}.widget .mec-month-divider{margin:10px 0}.mec-month-divider span{text-transform:uppercase;font-size:22px;font-weight:700;padding-bottom:5px;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative}.mec-month-divider span:before{border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-30px;left:50%;width:60px}.widget .mec-month-divider span{font-size:13px}.mec-event-list-standard .mec-events-pagination{margin-top:60px;border-top:4px solid #ebebeb;min-height:80px;padding-top:20px}.mec-event-list-standard .mec-events-pagination .mec-events-pag-previous{float:left;margin-left:0}.mec-event-list-standard .mec-events-pagination .mec-events-pag-next{float:right;margin-right:0}.mec-event-list-standard .mec-event-article{position:relative;display:block;margin-bottom:25px;border:1px solid #e9e9e9;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-list-standard .mec-topsec{display:table;width:100%}.mec-event-list-standard .col-md-3.mec-event-image-wrap{padding-left:0}.mec-event-list-standard .mec-event-content{padding-top:15px;padding-right:30px}.mec-event-list-standard .mec-event-title{font-size:29px;font-weight:700;letter-spacing:-1px;margin:0 0 10px}.mec-event-list-standard .mec-event-title a{color:#292929;transition:color .3s ease}.mec-event-list-standard .mec-col-table-c{display:table-cell;height:100%;vertical-align:middle;float:none!important}.mec-event-list-standard .mec-col-table-c.mec-event-meta-wrap{padding-top:15px}.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{vertical-align:top}.mec-topsec .mec-event-image{line-height:1px}.mec-event-list-standard .mec-event-meta-wrap{border-left:1px solid #eee}.mec-event-list-standard .mec-time-details{text-transform:uppercase;font-size:11px;font-weight:300;padding-top:0;text-align:left;padding-left:30px}.mec-event-list-standard .mec-event-meta .mec-event-address{font-style:normal;letter-spacing:0;font-size:13px;color:#8a8a8a}.mec-event-list-standard .mec-event-meta span.mec-event-d,.mec-event-list-standard .mec-event-meta span.mec-event-m{font-size:17px;font-weight:700;padding-right:6px;color:#444;text-transform:uppercase}.mec-event-list-standard .mec-date-details,.mec-event-list-standard .mec-local-time-details,.mec-event-list-standard .mec-time-details,.mec-event-list-standard .mec-venue-details{position:relative;padding-left:28px;margin-bottom:10px}.mec-event-list-standard .mec-date-details:before,.mec-event-list-standard .mec-local-time-details:before,.mec-event-list-standard .mec-time-details:before,.mec-event-list-standard .mec-venue-details:before{content:"\f041";font-family:fontawesome;position:absolute;left:6px;font-size:15px}.mec-event-list-standard .mec-date-details:before{content:"\f073"}.mec-event-list-standard .mec-time-details:before{content:"\f017"}.mec-event-list-standard .mec-local-time-details:before{content:"\f0ac"}.mec-event-list-standard .mec-local-time-details .mec-local-title{display:block}.mec-event-list-standard .mec-local-time-details .mec-local-date,.mec-event-list-standard .mec-local-time-details .mec-local-time{font-style:normal;letter-spacing:0;font-size:11px;color:#8a8a8a;font-weight:300;line-height:1.6}.mec-event-list-minimal .mec-event-title a{color:#292929;transition:color .3s ease}.mec-event-meta-wrap .mec-price-details{margin-bottom:10px}.mec-price-details i{margin-right:5px;vertical-align:text-top}.mec-event-meta-wrap .mec-event-meta .mec-price-details i:before{font-size:15px}@media only screen and (max-width:960px){.mec-event-list-standard .mec-topsec{display:block}.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:block;width:40%}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{display:block;min-height:230px}.mec-event-list-standard .mec-event-meta-wrap{display:block;border-left:none;border-top:1px solid #eee;width:100%;float:none;padding-top:20px}}@media only screen and (min-width:480px) and (max-width:960px){.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:table-cell}}@media only screen and (max-width:479px){.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap img{float:none;width:100%;padding:0}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{padding:10px 10px 10px 30px}}.mec-localtime-details{color:#777;font-weight:400;line-height:12px;font-size:12px}.mec-localtime-details .mec-localdate,.mec-localtime-details .mec-localtime,.mec-localtime-details .mec-localtitle{display:inline-block}.mec-localtime-details .mec-start-date-label{padding-right:5px}.mec-localtime-details .mec-localtime{padding-left:5px}.mec-event-list-minimal .mec-localtime-details{display:inline-flex;font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;padding-left:9px}.mec-event-grid-classic .mec-localtime-details,.mec-event-grid-clean .mec-localtime-details{color:#fff;font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:-.02em;color:#fff;padding:0 0;line-height:18px;margin-top:-3px}.mec-event-grid-clean .mec-localtime-details,.mec-event-grid-colorful .mec-localtime-details,.tooltipster-box .mec-localtime-details{line-height:22px;padding-top:10px}.mec-event-grid-colorful .mec-localtime-details{color:#fff}.mec-event-grid-classic .mec-localtime-details{text-align:center}.mec-event-grid-minimal .mec-localtime-details{line-height:22px}.mec-wrap .mec-yearly-view-wrap .mec-localtime-wrap i{display:inline-block;margin-left:-1px}.mec-timetable-t2-content .mec-local-time-details{padding-left:19px}.mec-timetable-t2-content .mec-local-time-details{position:relative}.mec-timetable-t2-content .mec-local-time-details:before{content:"\e007";font-family:simple-line-icons;position:absolute;font-size:12px;margin-right:4px;left:0}.mec-masonry .mec-masonry-col6 .mec-localtime-details{margin-top:10px;line-height:21px}.mec-masonry .mec-masonry-col6 .mec-localtime-details i{height:auto}.mec-event-cover-classic .mec-localtime-details{color:#fff;margin-top:12px}.mec-event-cover-classic .mec-localtime-details i{padding-right:8px}.mec-event-cover-clean .mec-localtime-details{color:#fff;margin-bottom:20px}.mec-event-cover-modern .mec-localtime-details{color:#fff;margin:10px 0;font-weight:400;font-size:18px}.mec-event-countdown-style1 .mec-localtime-details,.mec-event-countdown-style2 .mec-localtime-details,.mec-event-countdown-style3 .mec-localtime-details{color:#fff;padding:8px 5px 0;font-size:14px;line-height:25px}.mec-event-countdown-style1 .mec-localtime-details{text-align:center}.mec-event-hover-carousel-type4 .mec-localtime-details{display:block;color:#fff;font-size:11px}.mec-event-footer-carousel-type3 .mec-localtime-details .mec-localdate,.mec-event-footer-carousel-type3 .mec-localtime-details .mec-localtime,.mec-event-footer-carousel-type3 .mec-localtime-details .mec-localtitle,.mec-event-footer-carousel-type3 .mec-localtime-details span{display:inline-flex;line-height:20px;text-align:left;margin:0!important;font-size:12px;color:#777;line-height:28px}.mec-owl-crousel-skin-type1 .mec-localtime-details{margin-top:-7px;margin-bottom:12px}.mec-wrap .mec-slider-t5 .mec-localtime-details{margin-top:14px;line-height:20px}.mec-wrap .mec-slider-t5 .mec-localtime-details i{font-size:18px;height:20px}.mec-timeline-event-local-time{background:rgba(64,217,241,.11);display:inline-block;padding:7px 20px 11px;border-radius:20px;line-height:1.24}.mec-timeline-event-local-time .mec-localtime-details{font-size:13px;font-weight:500;vertical-align:middle;margin-left:6px;color:inherit;line-height:24px}.mec-timeline-event-local-time .mec-localtime-details i{font-size:17px;vertical-align:middle;margin-left:-7px;padding-right:3px}.mec-wrap .mec-events-cal-links{margin-bottom:0}.mec-single-event #mec-wrap{padding:0;margin-top:35px}.mec-wrap .mec-single-title{margin-top:0;margin-bottom:30px;font-weight:700;font-size:33px}.mec-single-event .mec-event-content{padding:40px 0 30px;margin-bottom:10px}.mec-single-event .mec-events-meta-group-booking,.mec-single-event .mec-frontbox{margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-wrap #main-content{overflow:hidden;padding-top:35px}.mec-single-event .mec-map-get-direction-address-cnt{position:relative}.mec-single-event .mec-map-get-direction-address-cnt input.mec-map-get-direction-address{width:100%;height:46px;padding:13px 10px;margin-bottom:0;background:#fcfcfc;border:1px solid #e0e0e0;border-radius:0;box-shadow:inset 0 2px 5px rgba(0,0,0,.081)}.mec-single-event .mec-map-get-direction-address-cnt input.mec-map-get-direction-address:focus{color:#444;background:#fff;border-color:#b0b0b0;box-shadow:0 0 3px rgba(0,0,0,.2)}.mec-single-event .mec-map-get-direction-btn-cnt input{width:100%}.mec-single-event .mec-map-get-direction-reset{position:absolute;z-index:2;top:5px;right:10px;font-size:11px;cursor:pointer}.mec-events-meta-group-tags{margin-top:20px}.mec-events-meta-group-tags a{display:inline-block;color:#444;font-size:11px;text-transform:uppercase;letter-spacing:1.5px;font-weight:500;padding:3px 7px;border:1px solid #ddd;border-radius:2px;background:#fff;margin:1px 3px}.mec-events-meta-group-tags a:hover{text-decoration:underline;background:#f9f9f9}.mec-local-time-details li{list-style:none}.mec-single-event:not(.mec-single-modern) .mec-local-time-details{background:#f7f7f7;padding:12px 14px 8px;margin-bottom:12px;vertical-align:baseline;position:relative;border:none}.mec-single-event:not(.mec-single-modern) .mec-local-time-details ul{margin:0;padding-left:35px}.mec-single-event:not(.mec-single-modern) .mec-local-time-details h3{border:none;padding-left:15px}.mec-single-event:not(.mec-single-modern) .mec-local-time-details h3:before{display:none}.mec-single-event.mec-single-modern i.mec-sl-speedometer{display:none}.mec-single-event .mec-events-meta-group-booking{padding-bottom:30px}.mec-single-event .mec-events-meta-group-booking ul{list-style:none;margin-left:0;padding-left:0}.mec-single-event .mec-events-meta-group-booking ul li{padding:0;list-style:none;margin-top:40px}.mec-single-event .mec-events-meta-group-booking h4{margin-bottom:20px;font-size:23px;font-weight:700}.mec-single-event .mec-events-meta-group-booking li h4{font-size:19px}.mec-single-event .mec-events-meta-group-booking button,.mec-single-event .mec-events-meta-group-booking input{border-radius:0;margin-bottom:6px}.mec-single-event .mec-events-meta-group-booking button{min-width:155px;margin-top:5px;margin-left:10px;border-radius:2px;box-shadow:0 2px 1px rgba(0,0,0,.08)}.mec-single-event .mec-events-meta-group-booking button.mec-book-form-back-button{background:#c4cace;float:left}.mec-single-event .mec-events-meta-group-booking button.mec-book-form-back-button:hover{background:#000}.mec-single-event .mec-events-meta-group-booking button.mec-book-form-next-button{float:left;margin-left:0}button#mec-book-form-back-btn-step-3{float:none}.mec-single-event .mec-book-form-coupon button{margin-left:0}.mec-single-event .mec-book-form-gateway-checkout button{margin-left:0}.mec-single-event .mec-single-event .mec-book-form-gateway-checkout button{margin-right:20px}.mec-single-event button#mec-book-form-back-btn-step-3{margin-left:0}.lity-content .mec-book-form-back-button{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-right:10px;line-height:1;padding:18px 20px 16px;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;min-width:170px;margin-top:5px;border-radius:0;margin-bottom:6px;background:#c4cace}.lity-content .mec-book-form-back-button:hover{background:#000}.lity-content button#mec-book-form-back-btn-step-3{float:none}.lity-content .mec-book-form-next-button{float:left}.mec-single-event .mec-book-first,.mec-single-event .mec-event-tickets-list{padding-left:15px;padding-right:15px}.mec-single-event label.mec-fill-attendees{margin-left:15px!important}.mec-single-event .mec-events-meta-group-booking .mec-event-ticket-available{display:block;margin-bottom:20px;margin-top:-17px;font-size:11px;color:#8a8a8a}.mec-single-event .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.mec-single-event .mec-events-meta-group-booking form{margin:0}.mec-single-event .mec-events-meta-group-booking h5 span,.mec-single-event .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;display:block;clear:none;padding:5px 1em 3px 0}.mec-single-event .mec-events-meta-group-booking h5 span{display:inline-block}.mec-single-event .mec-events-meta-group-booking h5 span.mec-ticket-variation-name{padding-right:5px;text-transform:capitalize}.mec-single-event .mec-events-meta-group-booking input::-webkit-input-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input:-moz-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:330px;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both}.wbmec-mandatory{padding-left:5px;font-size:14px}.mec-single-event .mec-events-meta-group-booking .mec-red-notification input,.mec-single-event .mec-events-meta-group-booking .mec-red-notification select,.mec-single-event .mec-events-meta-group-booking .mec-red-notification textarea{border:1px solid #ff3c3c !important;} .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],.lity .mec-events-meta-group-booking .mec-red-notification input[type=checkbox],.lity .mec-events-meta-group-booking .mec-red-notification input[type=radio]{outline:1px solid #ff3c3c !important}.lity .mec-book-ticket-container .mec-red-notification input,.lity .mec-book-ticket-container .mec-red-notification select,.lity .mec-book-ticket-container .mec-red-notification textarea{border:1px solid #ff3c3c !important}@media only screen and (max-width:479px){.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{width:100%}}.mec-single-event .mec-events-meta-group-booking input[type=email]:focus,.mec-single-event .mec-events-meta-group-booking input[type=number]:focus,.mec-single-event .mec-events-meta-group-booking input[type=password]:focus,.mec-single-event .mec-events-meta-group-booking input[type=tel]:focus,.mec-single-event .mec-events-meta-group-booking input[type=text]:.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking select:focus,.mec-single-event .mec-events-meta-group-booking textarea:focus,focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-single-event .mec-events-meta-group-booking input[type=checkbox],.mec-single-event .mec-events-meta-group-booking input[type=radio]{margin-right:6px;margin-top:5px;min-height:20px;clear:none;margin:0 0 0 2px}.lity-container .mec-events-meta-group-booking input[type=radio]:before,.mec-single-event .mec-events-meta-group-booking input[type=radio]:before{content:"";display:inline-block;background:#fff;border-radius:18px;width:18px;height:18px;margin:-1px 0 0 -3px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32)}.lity-container .mec-events-meta-group-booking input[type=radio]:checked:before,.mec-single-event .mec-events-meta-group-booking input[type=radio]:checked:before{border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff}.lity-container .mec-events-meta-group-booking input[type=radio],.mec-single-event .mec-events-meta-group-booking input[type=radio]{min-height:0;margin:0;margin-right:6px}.mec-single-event .mec-events-meta-group-booking input[type=checkbox]{float:left}.lity-container .mec-events-meta-group-booking .mec_book_first_for_all,.mec-single-event .mec-events-meta-group-booking .mec_book_first_for_all{display:none}.mec-events-meta-group-booking ul.mec-book-price-details{list-style:none;border:1px solid #eee;padding:0;overflow:hidden}.mec-events-meta-group-booking ul.mec-book-price-details li{font-size:15px;color:#a9a9a9;list-style:none;padding:13px 18px;margin:0;float:left;border-right:1px solid #eee}.mec-events-meta-group-booking ul.mec-book-price-details li:last-child{border-right:none}.mec-events-meta-group-booking ul.mec-book-price-details li span.mec-book-price-detail-amount{font-weight:700;font-size:21px;color:#222}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label{height:14px;width:14px;background-color:transparent;border:1px solid #d4d4d4;position:relative;display:inline-block;-moz-transition:border-color ease .2s;-o-transition:border-color ease .2s;-webkit-transition:border-color ease .2s;transition:border-color ease .2s;cursor:pointer;box-shadow:0 2px 16px -2px rgba(0,0,0,.2);vertical-align:middle;margin-right:3px;margin-top:-2px}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label{border-color:#008aff;box-shadow:0 2px 14px -3px #008aff}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:after,.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:before,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:after,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:before{position:absolute;height:0;width:1px;background-color:#008aff;display:inline-block;-moz-transform-origin:left top;-ms-transform-origin:left top;-o-transform-origin:left top;-webkit-transform-origin:left top;transform-origin:left top;content:'';-webkit-transition:opacity ease .5;-moz-transition:opacity ease .5;transition:opacity ease .5}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:before,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:before{top:8px;left:7px;box-shadow:0 0 0 2px #fff;-moz-transform:rotate(-145deg);-ms-transform:rotate(-145deg);-o-transform:rotate(-145deg);-webkit-transform:rotate(-145deg);transform:rotate(-145deg)}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::before,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::before{height:12px;-moz-animation:dothatopcheck .16s ease 0s forwards;-o-animation:dothatopcheck .16s ease 0s forwards;-webkit-animation:dothatopcheck .16s ease 0s forwards;animation:dothatopcheck .16s ease 0s forwards}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:after,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:after{top:6px;left:3px;-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::after,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::after{-moz-animation:dothabottomcheck 80ms ease 0s forwards;-o-animation:dothabottomcheck 80ms ease 0s forwards;-webkit-animation:dothabottomcheck 80ms ease 0s forwards;animation:dothabottomcheck 80ms ease 0s forwards;height:4px}.mec-single-event .mec-events-meta-group-booking button[type=submit]:after,.mec-single-event a.button:after{display:none;font-family:simple-line-icons;content:"\e098";margin-left:4px;-webkit-animation:rotating 1.2s linear infinite;-moz-animation:rotating 1.2s linear infinite;-ms-animation:rotating 1.2s linear infinite;-o-animation:rotating 1.2s linear infinite;animation:rotating 1.2s linear infinite}.mec-single-event .mec-events-meta-group-booking button[type=submit].loading:after,.mec-single-event a.button.loading:after{display:inline-block}.mec-single-event .mec-event-export-module{display:block}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul{display:table;width:100%}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li{display:table-cell}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li:last-child{text-align:right}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a:hover{color:#fff}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul{padding-left:0;margin:15px 5px}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting{padding-left:0;margin:0}.mec-ticket-price{margin-left:10px;font-size:13px;font-weight:300}.mec-book-reg-field-checkbox label,.mec-book-reg-field-radio label{line-height:1.36}.mec-book-reg-field-checkbox input[type=checkbox],.mec-book-reg-field-radio input[type=radio]{float:left;margin-right:5px!important}.mec-ticket-available-spots .mec-event-ticket-description,.mec-ticket-available-spots .mec-event-ticket-price{font-size:11px}.mec-book-ticket-container .mec-reg-mandatory:nth-child(2) label:after,.mec-book-ticket-container .mec-reg-mandatory:nth-child(3) label:after,.mec-book-ticket-container .wbmec-mandatory{content:"";color:red;width:50px;height:50px;font-size:14px;padding-left:5px}@media only screen and (max-width:767px){.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li{width:100%;min-height:40px;margin-bottom:15px;text-align:center;float:none;display:block}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a{width:100%;padding-left:0;padding-right:0;text-align:center;display:block;font-size:12px}}.mec-single-event .mec-events-meta-group{margin-bottom:0}@media only screen and (max-width:767px){.mec-single-event .mec-events-meta-group-booking{margin-bottom:30px}}.mec-single-event .mec-event-meta dt,.mec-single-event .mec-event-meta h3{text-transform:uppercase;font-size:16px;font-weight:700;padding-bottom:5px;display:inline;color:#000;padding-left:10px}.mec-single-event .mec-event-meta h6{text-transform:uppercase;font-size:13px;padding-bottom:5px;display:inline;color:#222;padding-left:0}.mec-single-event .mec-event-meta .mec-events-event-categories a,.mec-single-event .mec-event-meta dd{font-size:14px;color:#8d8d8d}.mec-single-event .mec-event-meta .mec-location dd.author{color:#3c3b3b}.mec-single-event .mec-event-meta dd{margin:0;padding-left:35px}.mec-single-event .mec-event-meta dd.mec-events-event-categories{min-height:35px;line-height:35px}@media only screen and (max-width:480px){.single-mec-events .lity-container{width:100%}.single-mec-events .lity-content .mec-events-meta-group-booking{padding:20px;width:85%;margin:0 auto}}.mec-single-event .mec-event-meta dd.mec-events-event-categories:first-of-type{padding-top:5px}.mec-single-event .mec-event-meta dd.mec-events-event-categories:last-of-type{border-bottom:0}.mec-single-event .mec-event-meta dd a{color:#8d8d8d;transition:all .2s ease}.mec-single-event .mec-event-meta dd a i:before{font-size:16px!important}.mec-single-event .mec-event-meta dd a i{margin-right:8px}.mec-single-event .mec-event-meta dl{margin-bottom:0}.mec-single-event .mec-event-meta .mec-events-event-cost{font-size:18px}.mec-single-event .mec-event-meta .mec-events-address{color:#a9a9a9;margin-bottom:3px}.mec-single-event .mec-event-meta .mec-events-meta-group-venue .author{margin-bottom:0;color:#8d8d8d;font-size:13px}.mec-single-event .mec-events-event-image{margin-bottom:0}.mec-single-event h2.mec-single-event-title{margin-bottom:30px;font-weight:700;font-size:33px}.mec-single-event .mec-booking-button{border-bottom:none;letter-spacing:.5px;line-height:48px;height:76px;transition:all .5s ease;color:#fff;padding:16px;display:block;text-align:center;font-size:16px;border-radius:2px;box-shadow:0 1px 2px rgba(0,0,0,.15)}.mec-single-event .mec-booking-button:hover{background-color:#101010!important}.mec-single-event .mec-event-tags a{display:inline-block;color:#444;font-size:11px;text-transform:uppercase;letter-spacing:1.5px;font-weight:500;padding:3px 7px;border:1px solid #ddd;border-radius:2px;background:#fff;margin:1px 3px}.mec-single-event .mec-event-tags:before{font-size:24px;color:#303030;margin-right:5px;content:"\f02c";font-family:fontawesome}.mec-single-event .mec-event-tags{padding-top:13px}.mec-single-event .mec-event-sharing{margin:30px 0 10px}.mec-region.mec-events-abbr,.mec-single-event .mec-street-address{font-style:normal;font-size:13px}.mec-events-meta-group.mec-events-meta-group-venue:before,.mec-single-event-date:before,.mec-single-event-time:before{color:#40d9f1}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-event-social h3{text-transform:uppercase;font-size:15px;font-weight:700;padding-bottom:5px;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative}.mec-single-event .mec-social-single:before{padding:13px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:39px}.mec-single-event .mec-event-social .event-sharing{margin-top:30px}.mec-single-event .mec-event-social ul{list-style:none;margin-left:0}.mec-single-event .mec-event-social li.mec-event-social-icon{display:inline-block}.mec-single-event .mec-event-social li.mec-event-social-icon a{display:inline-block;color:#fff;width:40px;height:40px;padding:9px;font-size:16px;margin-right:5px;margin-bottom:5px}.mec-single-event .mec-event-social a.facebook{background:#3b5996}.mec-single-event .mec-event-social a.facebook:hover{background:#28385c}.mec-single-event .mec-event-social a.twitter{background:#00acee}.mec-single-event .mec-event-social a.twitter:hover{background:#0087bd}.mec-single-event .mec-event-social a.vimeo{background:#0dadd6}.mec-single-event .mec-event-social a.vimeo:hover{background:#0a85a3}.mec-single-event .mec-event-social a.dribble{background:#d53e68}.mec-single-event .mec-event-social a.dribble:hover{background:#bf4c78}.mec-single-event .mec-event-social a.youtube{background:#cb322c}.mec-single-event .mec-event-social a.youtube:hover{background:#992622}.mec-single-event .mec-event-social a.pinterest{background:#cb2027}.mec-single-event .mec-event-social a.pinterest:hover{background:#99181d}.mec-single-event .mec-event-social a.google{background:#c3391c}.mec-single-event .mec-event-social a.google:hover{background:#99181f}.mec-single-event .mec-event-social a.linkedin{background:#0073b2}.mec-single-event .mec-event-social a.linkedin:hover{background:#005380}.mec-single-event .mec-event-social a.email{background:#ff5d5e}.mec-single-event .mec-event-social a.email:hover{background:#cc4949}.mec-single-event .mec-event-social a.vk{background:#5b88bd}.mec-single-event .mec-event-social a.vk:hover{background:#3d608a}.mec-single-event .mec-event-social a.tumblr{background:#34465d}.mec-single-event .mec-event-social a.tumblr:hover{background:#273649}.mec-single-event .mec-event-social a.telegram{background:#08c}.mec-single-event .mec-event-social a.telegram:hover{background:#1076be}.mec-single-event .mec-event-social a.whatsapp{background:#25d366}.mec-single-event .mec-event-social a.whatsapp:hover{background:#23ac55}.mec-single-event .mec-event-social a.flipboard{background:#e12828}.mec-single-event .mec-event-social a.flipboard:hover{background:#af1e1e}.mec-single-event .mec-event-social a.pocket{background:#ef4056}.mec-single-event .mec-event-social a.pocket:hover{background:#8d1717}.mec-single-event .mec-event-social a.reddit{background:#ff5700}.mec-single-event .mec-event-social a.reddit:hover{background:#c94909}.mec-single-event .mec-event-social a.flipboard svg,.mec-single-event .mec-event-social a.telegram svg{height:16px}.mec-single-event .mec-event-social li.mec-event-social-icon a svg{display:unset}.mec-single-event .mec-event-social a.rss{background:#f29a1d}.mec-single-event .mec-event-social a.rss:hover{background:#cc7400}.mec-single-event .mec-event-social a.instagram{background:#457399}.mec-single-event .mec-event-social a.instagram:hover{background:#2e4d66}.mec-single-event .mec-event-social a.linkedin{background:#457399}.mec-single-event .mec-event-social a.linkedin:hover{background:#2e4d66}.mec-single-event .mec-event-social a.other-social{background:#ff5d5e}.mec-single-event .mec-event-social a.other-social:hover{background:#cc4949}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4,.mec-single-event .mec-frontbox-title{text-transform:uppercase;font-size:15px;font-weight:700;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative;text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4:before,.mec-single-event .mec-frontbox-title:before{padding:1px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-35px;left:50%}.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-month],.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-year]{width:47%!important;margin-right:12px;margin-top:5px;display:inline-block!important}@media(max-width:768px){.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-month],.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-year]{width:100%!important;margin-right:0;display:block!important}}.mec-event-meta i:before{font-size:20px;vertical-align:middle}.mec-event-meta .mec-single-event-additional-organizers i:before,.mec-event-meta .mec-single-event-organizer i:before{font-size:14px;vertical-align:baseline}#mec-wrap .mec-events-day-time-slot .mec-events-content{float:left;width:33%;padding:0 15px}#mec-wrap .mec-events-day-time-slot .mec-events-event-image{padding-left:0}#mec-events-content .mec-events-abbr{color:#8d8d8d;font-size:14px}.mec-single-event .mec-events-content{margin-bottom:30px}.mec-single-event .mec-organizer-url a{word-wrap:break-word}.mec-single-event #headline{margin:0 0 10px}.mec-single-event #headline h2{padding:0}.mec-single-event .mec-events-meta-group.mec-events-meta-group-gmap .mec-events-venue-map{margin-top:0;padding:8px;border:1px solid #e5e5e5;border-radius:7px}#mec-events-gmap-0{height:325px!important}.mec-events-list .mec-events-day-time-slot .mec-events-event-meta{width:33%;float:left;padding:40px;height:auto;margin:0}.mec-events-day-time-slot .mec-events-content.description.entry-summary{font-size:15px;font-weight:300;color:#8d8d8d}.mec-events-day-time-slot .type-mec_events h2{font-size:28px;padding-bottom:20px}.mec-events-day .mec-events-day-time-slot .type-mec_events{margin:0}.mec-events-day .mec-events-day-time-slot h5{background-color:#8d8d8d}.mec-single-event .mec-event-meta .mec-single-event-additional-organizers .mec-events-single-section-title,.mec-single-event .mec-event-meta .mec-single-event-organizer .mec-events-single-section-title,.mec-single-event .mec-events-meta-date h3{padding-left:0;margin:10px;display:inline-block}.mec-single-event .mec-events-meta-date h3{width:100%}.mec-single-event .mec-events-event-image{border:0}.mec-single-event .mec-events-venue-map{padding:0}.mec-event-cost,.mec-event-more-info,.mec-event-website,.mec-events-meta-date,.mec-single-event-additional-organizers,.mec-single-event-category,.mec-single-event-date,.mec-single-event-label,.mec-single-event-location,.mec-single-event-organizer,.mec-single-event-time{background:#f7f7f7;padding:12px 14px 8px;margin-bottom:12px;vertical-align:baseline;position:relative}.mec-single-event .mec-events-meta-date dd,.mec-single-event .mec-single-event-additional-organizers dd,.mec-single-event .mec-single-event-organizer dd{padding-left:0;margin-bottom:10px}.mec-single-event .mec-events-meta-date dd span,.mec-single-event .mec-single-event-additional-organizers dd span,.mec-single-event .mec-single-event-organizer dd span{display:block;padding-left:12px;color:#8d8d8d}.mec-single-event .mec-events-meta-date i,.mec-single-event .mec-single-event-additional-organizers i,.mec-single-event .mec-single-event-organizer i{margin-right:10px;margin-left:12px}.mec-events-meta-group.mec-events-meta-group-venue dl{margin-bottom:0}address.mec-events-address{line-height:19px;font-style:normal;font-size:12px}.mec-single-event .mec-event-content dt{margin-top:5px}.mec-single-event .mec-single-event-additional-organizers .mec-single-event-additional-organizer{margin-bottom:15px;padding-bottom:5px;border-bottom:1px solid #e4e4e4}.mec-single-event .mec-single-event-additional-organizers .mec-single-event-additional-organizer:last-child{margin-bottom:0;padding-bottom:0;border:none}.mec-event-schedule-content{border-left:4px solid #f0f0f0;padding-top:10px;margin-top:30px;margin-left:25px;margin-bottom:20px;color:#8a8a8a}.mec-event-schedule-content dl{padding-left:24px;font-size:12px;position:relative;margin-bottom:35px}.mec-event-schedule-content dl:before{content:'';display:block;position:absolute;left:0;top:4px;width:20px;height:0;border-top:4px solid #f0f0f0}.mec-event-schedule-content dl dt{margin:0 0 10px;line-height:1.16}.mec-event-schedule-content dl dt.mec-schedule-title{font-size:13px;color:#5a5a5a;font-weight:700}.mec-event-schedule-content dl dt.mec-schedule-description{font-weight:300}.mec-event-schedule-content .mec-schedule-speakers{background:#f7f7f7;padding:10px}.mec-wrap .mec-event-schedule-content h6{font-size:13px;color:#5a5a5a;font-weight:700;display:inline-block}.mec-wrap .mec-event-schedule-content a{font-weight:400;color:#5a5a5a;transition:all .1s ease}.single-mec-events .mec-speakers-details ul{padding:0}.mec-single-event .mec-speakers-details ul li{list-style:none;background:#f7f7f7;padding:5px 5px 18px 5px;margin-top:14px}.mec-single-event .mec-speakers-details ul li a{-webkit-transition:.2s all ease;transition:.2s all ease}.mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a img{float:left;border-radius:50%;transition:.2s all ease;border:2px solid transparent;width:68px;height:68px}.mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a:hover img{border-color:#40d9f1}.mec-single-event .mec-speakers-details ul li .mec-speaker-name{display:inline-block;margin-top:10px;font-size:15px;line-height:1.8;text-transform:capitalize;font-weight:700;padding-left:8px}.mec-single-event .mec-speakers-details ul li .mec-speaker-job-title{display:block;font-size:12px;margin-top:-1px;padding-left:75px;color:#888}.mec-single-event-location img,.mec-single-event-organizer img{margin-bottom:10px;width:100%}.mec-qrcode-details{text-align:center}.mec-time-comment{font-size:11px}.mec-wrap .mec-attendees-list-details p{font-weight:300;margin:20px 0 0 0;color:#8d8d8d}.mec-wrap .mec-attendees-list-details li{list-style:none;display:block;margin-top:15px}.mec-wrap .mec-attendees-list-details li .mec-attendee-avatar{display:inline-block}.mec-wrap .mec-attendees-list-details li .mec-attendee-profile-link{display:inline-block;vertical-align:top;margin-left:10px}.mec-attendees-list-details ul{margin-bottom:0}.mec-attendees-list-details .mec-attendee-profile-link a{color:#8d8d8d;display:block}.mec-attendees-list-details .mec-attendee-profile-link span{display:inline-block;color:#000;vertical-align:middle;cursor:pointer}.mec-attendees-list-details span.mec-attendee-profile-ticket-number{border-radius:50px;width:20px;height:20px;font-size:12px;text-align:center;color:#fff;margin-right:4px}.mec-attendees-list-details .mec-attendee-profile-link span i{vertical-align:middle;font-size:9px;font-weight:700;margin-left:5px}.mec-attendees-list-details .mec-attendees-toggle{border:1px solid #e6e6e6;background:#fafafa;padding:15px 15px 0;border-radius:3px;margin:12px 0 20px 52px;position:relative;font-size:13px;box-shadow:0 3px 1px 0 rgba(0,0,0,.02)}.mec-attendees-list-details .mec-attendees-toggle:after,.mec-attendees-list-details .mec-attendees-toggle:before{content:'';display:block;position:absolute;left:50px;width:0;height:0;border-style:solid;border-width:10px}.mec-attendees-list-details .mec-attendees-toggle:after{top:-20px;border-color:transparent transparent #fafafa transparent}.mec-attendees-list-details .mec-attendees-toggle:before{top:-21px;border-color:transparent transparent #e1e1e1 transparent}.mec-attendees-list-details .mec-attendees-toggle .mec-attendees-item{padding-bottom:15px}.mec-attendees-list-details .mec-attendee-avatar img{border-radius:3px}.mec-attendee-avatar-sec{float:left;width:50px;margin-right:12px}.mec-attendee-profile-name-sec,.mec-attendee-profile-ticket-sec{float:left;width:calc(100% - 62px);margin-top:3px}.mec-calendar{margin-bottom:20px;border:1px solid #e8e8e8;width:100%;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-calendar .mec-calendar-topsec{display:table;background:#fff}.mec-calendar .mec-calendar-topsec .mec-calendar-events-sec{display:none}.mec-calendar .mec-calendar-side{width:590px;display:table-cell;padding:40px;position:relative;text-align:center;box-shadow:0 1px 5px 6px rgba(0,0,0,.005) inset}.mec-calendar .mec-calendar-events-side{display:table-cell;height:100%;border-left:1px solid #efefef;padding:40px;width:100%}.mec-calendar .mec-calendar-events-side .mec-table-side-day{width:46px;height:46px;margin:0 auto 20px;position:relative;text-align:center;line-height:46px;border:1px solid #40d9f1;border-radius:50%;font-size:12px;font-weight:600;padding:0}.mec-calendar .mec-calendar-events-side .mec-table-side-title{text-align:center;font-size:11px;text-transform:uppercase;letter-spacing:3px;margin-bottom:14px}.mec-calendar .mec-calendar-header{position:relative;width:560px;margin-top:8px;margin-bottom:16px}.mec-calendar .mec-calendar-header h2{text-transform:uppercase;font-size:22px;font-weight:700;color:#333}.mec-calendar .mec-event-footer{width:auto;min-height:60px}.mec-calendar dl{display:table;margin:0;border:none;padding:0;table-layout:fixed}.mec-calendar dt{display:table-cell;transition:all .66s ease;color:#4d4d4d;background:#fff;border-radius:44px;font-size:14px;width:80px;height:80px;line-height:80px;text-align:center}.mec-calendar .mec-calendar-table .mec-no-event{display:none}.mec-calendar .mec-calendar-table-head dt{font-weight:700;text-transform:uppercase;font-size:15px}.mec-calendar .mec-calendar-row dt:hover{background:#f4f4f4}.mec-calendar .mec-table-nullday{color:#cacaca}.mec-calendar.mec-box-calendar .mec-table-nullday:last-child{border-right:1px solid #eaeaea}.mec-calendar .mec-next-month:hover,.mec-calendar .mec-prev-month:hover{background:#f4f4f4}.mec-calendar .mec-selected-day,.mec-calendar .mec-selected-day:hover{background:#40d9f1;color:#fff}.mec-calendar .mec-selected-day a{color:#fff}.mec-calendar .mec-has-event{position:relative}.mec-calendar .mec-calendar-row dt.mec-has-event:hover{background:#40d9f1}.mec-calendar .mec-has-event a{cursor:pointer;display:block;width:100%;height:100%;border-radius:50%;color:#4d4d4d;transition:all .25s ease;text-decoration:none;box-shadow:none}.mec-calendar .mec-calendar-row dt.mec-has-event.mec-selected-day a,.mec-calendar .mec-calendar-row dt.mec-has-event:hover a{color:#fff}.mec-calendar .mec-has-event:after{background-color:#40d9f1;border-radius:50%;display:block;content:'';width:8px;height:8px;bottom:14px;left:50%;margin:-4px 0 0 -4px;position:absolute;transition:all .25s ease}.mec-calendar .mec-calendar-row dt.mec-has-event:hover:after{background-color:#fff}.mec-calendar .mec-has-event.mec-selected-day:after{display:none}.mec-calendar .mec-event-article{text-align:left;margin-bottom:0;padding-bottom:25px;padding-top:26px;border-top:1px solid #efefef;transition:all .33s ease}.mec-calendar .mec-event-article:hover{background-color:#fafafa}.mec-calendar .mec-event-article .mec-event-time{font-size:11px;line-height:1.1;margin:0}.mec-calendar .mec-event-article .mec-event-title{font-size:13px;padding:0;margin:10px 0 8px;font-weight:700;text-transform:uppercase}.mec-calendar .mec-event-article .mec-event-title a{text-decoration:none;color:#494949;transition:color .3s ease}.mec-calendar .mec-event-article .mec-event-title a:hover{color:#40d9f1}.mec-calendar .mec-event-article .mec-event-image,.mec-calendar .mec-event-list-classic .mec-event-image img{width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-image{float:left;margin-right:20px;width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-detail,.mec-calendar .mec-event-article .mec-localtime-details div{font-size:13px;line-height:1.3;font-family:Roboto,sans-serif;color:#9a9a9a;margin-bottom:0}.mec-calendar .mec-calendar-side .mec-next-month,.mec-calendar .mec-calendar-side .mec-previous-month{cursor:pointer;position:absolute;top:0;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;color:#a9a9a9;font-size:12px;letter-spacing:1px;text-transform:uppercase;padding-left:10px;padding-right:10px;border:1px solid #efefef;border-top:none;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease}.mec-calendar .mec-calendar-side .mec-next-month i,.mec-calendar .mec-calendar-side .mec-previous-month i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-calendar .mec-calendar-side .mec-next-month:hover,.mec-calendar .mec-calendar-side .mec-previous-month:hover{background-color:#f9f9f9;color:#40d9f1}.mec-calendar .mec-calendar-side .mec-previous-month{left:0;border-bottom-right-radius:6px;border-left:none}.mec-calendar .mec-calendar-side .mec-next-month{right:0;border-bottom-left-radius:6px;border-right:none}@media only screen and (min-width:961px){.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-side{width:370px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-header{position:relative;width:350px;margin-top:30px;margin-bottom:20px;padding-top:20px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) dt{width:50px;height:50px;line-height:50px}.mec-wrap.mec-sm959 .mec-calendar.mec-event-calendar-classic dl dt{height:110px}}@media only screen and (max-width:1200px){.mec-calendar .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-calendar .mec-calendar-side{width:370px}.mec-calendar .mec-calendar-header{position:relative;width:350px;margin-top:30px}.mec-calendar dt{width:50px;height:50px;line-height:50px}}@media only screen and (max-width:767px){.mec-calendar .mec-calendar-header h2{font-size:18px}.mec-calendar .mec-calendar-topsec{width:100%}.mec-calendar .mec-calendar-side{width:100%;display:block;padding:30px}.mec-calendar .mec-calendar-header{width:auto}.mec-calendar .mec-calendar-events-side{width:100%;display:block;height:100%;border-left:none;border-top:1px solid #efefef;padding:20px}.mec-calendar dl{width:100%}.mec-calendar dt{width:14%;height:60px;line-height:60px;border-radius:50px}}@media only screen and (max-width:479px){.mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-calendar .mec-calendar-header h2{font-size:16px;margin-top:33px}.mec-calendar dt{height:38px;line-height:38px}.mec-calendar .mec-event-list-classic .mec-event-detail,.mec-calendar .mec-event-list-classic .mec-event-title{font-size:12px}.mec-calendar .mec-event-list-classic .mec-event-time{font-size:10px}}.mec-box-calendar.mec-calendar .mec-has-event a,.mec-box-calendar.mec-calendar dt{border-radius:0}.mec-box-calendar.mec-calendar .mec-calendar-header{margin-top:2px;margin-bottom:30px}.mec-box-calendar.mec-calendar dt{border-bottom:1px solid #eaeaea;border-left:1px solid #eaeaea}.mec-box-calendar.mec-calendar dl dt:last-child{border-right:1px solid #eaeaea}.mec-box-calendar.mec-calendar .mec-calendar-table-head dt{border-top:1px solid #eaeaea;background-color:#f8f8f8}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{background-color:#f4f4f4}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{border-radius:2px;top:40px;border:1px solid #eee;height:30px;line-height:30px;z-index:1}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:60px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:60px}.mec-box-calendar.mec-calendar .mec-calendar-side{box-shadow:none}.mec-box-calendar.mec-calendar .mec-calendar-events-side{border:none}.mec-box-calendar.mec-calendar .mec-calendar-events-side .mec-table-side-day{border-radius:2px}.mec-box-calendar.mec-calendar h4.mec-month-label{position:relative;width:560px;margin-top:2px;margin-bottom:30px;text-transform:uppercase;font-size:22px;font-weight:700;color:#333}.mec-widget .mec-box-calendar.mec-calendar h4.mec-month-label{width:100%;margin-top:8px;font-size:13px}@media only screen and (max-width:1200px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:42px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:42px}.mec-calendar .mec-calendar-header h2{font-size:17px;margin-top:7px}}@media only screen and (max-width:767px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{top:28px;font-size:10px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:30px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:30px}.mec-calendar .mec-calendar-header h2{font-size:15px}}@media only screen and (max-width:479px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{top:16px;font-size:0;padding:4px 0;text-align:center;min-width:33px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:10px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:10px}.mec-box-calendar.mec-calendar .mec-calendar-header h2{font-size:12px;margin-top:15px}.mec-box-calendar.mec-calendar .mec-event-image{margin-right:12px}}.mec-calendar.mec-event-calendar-classic,.mec-calendar.mec-event-calendar-classic .mec-calendar-side{border:none;padding:0;width:100%;height:100%;box-shadow:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-side{display:block}.mec-calendar.mec-event-calendar-classic .mec-calendar-header,.mec-calendar.mec-event-calendar-classic dl{width:100%}.mec-calendar.mec-event-calendar-classic dl dt{width:15%;height:136px;line-height:1.2;text-align:left;padding:5px 7px;position:relative}.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{height:30px!important}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{top:0}.mec-calendar.mec-event-calendar-classic .mec-has-event:after{bottom:auto;top:24px;left:7px;margin:0}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{left:0}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month{right:0}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{text-align:left;background:#fafafa;border:1px solid #eaeaea;border-top:none;padding:10px 20px}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{display:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-event-article:hover{background-color:#fcfcfc}.mec-calendar.mec-event-calendar-classic .mec-selected-day,.mec-calendar.mec-event-calendar-classic dt.mec-selected-day:hover{color:#40d9f1;font-weight:700;background:#fafafa;border-bottom:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-day,.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{display:inline-block;margin:0;margin-bottom:15px;font-weight:700}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-day{margin-left:4px}.mec-calendar.mec-event-calendar-classic .mec-calendar-row dt.mec-has-event a{color:#4d4d4d}.mec-calendar.mec-event-calendar-classic .mec-calendar-row dt.mec-has-event:not(.mec-selected-day):hover a{color:#fff}@media only screen and (max-width:1200px){.mec-calendar.mec-event-calendar-classic dl dt{height:100px}}@media only screen and (max-width:767px){.mec-calendar.mec-event-calendar-classic dl dt{height:40px}}@media only screen and (max-width:479px){.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{padding:10px}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-header h2{font-size:13px;margin-top:8px}}.mec-calendar .mec-event-article.mec-single-event-novel{padding:4px 8px;min-height:25px;margin:0 -4px;border-radius:0}.mec-calendar .mec-event-article.mec-single-event-novel h4{margin:0;font-size:10px;line-height:18px}.mec-calendar.mec-event-container-novel dl dt{padding:3px}.mec-calendar.mec-event-calendar-classic .mec-calendar-novel-selected-day{display:inline-block;padding:4px;margin-left:1px}.mec-calendar.mec-event-calendar-classic .mec-selected-day .mec-calendar-novel-selected-day{color:#fff}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-selected-day,.mec-calendar.mec-event-calendar-classic.mec-event-container-novel dt.mec-selected-day:hover{border-bottom:1px solid #eaeaea}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-calendar-side .mec-calendar-table{min-height:auto}.mec-single-event-novel.light h4{color:#000!important}.mec-single-event-novel.dark h4{color:#fff!important}@media only screen and (max-width:768px){.mec-calendar .mec-event-article.mec-single-event-novel{padding:0;min-height:5px}.mec-calendar .mec-event-article.mec-single-event-novel h4{display:block;font-size:9px}}.mec-event-container-simple .event-single-content-simple{display:none}.mec-event-calendar-classic.mec-event-container-simple .mec-calendar-side .mec-calendar-table{min-height:unset}.mec-event-container-simple .mec-monthly-tooltip h4{font-size:13px;font-weight:500;margin:0;color:#444}.mec-event-container-simple .mec-monthly-tooltip h4:hover{text-decoration:underline;color:#111}.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple{border-bottom:1px dashed #e3e3e3;padding:10px 2px;display:block}.mec-calendar.mec-event-container-simple dl dt.mec-calendar-day{font-size:30px;color:#000}.mec-calendar.mec-event-container-simple .mec-calendar-row dt:hover{background:unset}.mec-calendar.mec-event-container-simple .mec-calendar-row dt,.mec-calendar.mec-event-container-simple .mec-calendar-row dt:last-child,.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt,.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt:last-child{border-width:2px}.mec-calendar.mec-event-container-simple dl dt.mec-selected-day,.mec-calendar.mec-event-container-simple dl dt.mec-selected-day:hover{border-bottom:2px solid #40d9f1;background:unset}.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt{line-height:36px}@media (max-width:768px){.mec-calendar.mec-event-container-simple{overflow-x:scroll}.mec-calendar.mec-event-container-simple .mec-calendar-side{min-width:100%}.mec-event-container-simple .mec-monthly-tooltip h4{font-size:12px}}.mec-wrap.colorskin-custom .mec-calendar.mec-event-container-simple .mec-selected-day:hover{background:#f4f4f4}.mec-event-container-simple .mec-calendar-day .mec-monthly-tooltip.event-single-link-simple:last-of-type{border:none}.mec-tooltip-event-title{font-size:16px;font-weight:700;color:#000;margin-bottom:2px}.mec-tooltip-event-time{font-size:12px;color:#888;margin-bottom:8px;margin-top:5px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-content{padding:17px}.mec-tooltip-event-content{clear:both}.mec-tooltip-event-featured{float:left;margin-right:13px;margin-bottom:1px}.mec-tooltip-event-featured img{max-width:120px}.mec-tooltip-event-desc{font-size:14px;color:#444;line-height:18px}.mec-tooltip-event-desc p{font-size:13px;line-height:1.4;margin-bottom:10px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-box{border-radius:3px!important;border:1px solid #e2e3e4!important;background:#fff!important;box-shadow:0 -1px 30px -2px rgba(0,0,0,.15)!important}.tooltipster-sidetip .tooltipster-arrow{overflow:visible!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-border{border-width:12px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-right .tooltipster-arrow-border{border-right-color:#e2e3e4!important}.tooltipster-sidetip .tooltipster-arrow-border{left:-12px!important;z-index:9999999999!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-background{display:block!important}.tooltipster-sidetip .tooltipster-arrow-background{border-width:11px!important;z-index:99999999999!important}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background{left:-9px!important;top:1px!important;border-right-color:#fff!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background{border-top-color:#fff!important;left:0!important;top:-1px!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border{left:-1px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-top .tooltipster-arrow-border{border-top-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{left:-1px!important;top:-11px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{border-bottom-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background{top:-9px!important;border-bottom-color:#fff!important}.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background{border-left-color:#fff!important;left:-2px!important;top:0!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-left .tooltipster-arrow-border{border-left-color:#e2e3e4!important;left:-1px!important;top:-1px!important}@media (max-width:780px){.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4{word-break:break-all;font-size:13px}}@media (max-width:320px){.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4{font-size:10px}}.mec-calendar.mec-calendar-daily .mec-calendar-day-events .mec-event-article{padding-left:15px;padding-right:15px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month{text-align:center;background-color:#fff;border-bottom:2px solid #f4f4f4;position:relative}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{color:#444;font-size:18px;line-height:1.2;padding:15px 0 11px;margin:0;font-weight:700;letter-spacing:1px;text-transform:uppercase;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-top{text-align:center;padding:10px 0;position:relative;background-color:#fafafa}.mec-calendar.mec-calendar-daily .mec-next-month,.mec-calendar.mec-calendar-daily .mec-previous-month{position:absolute;top:50%;left:50%;margin-top:-25px;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;border:1px solid #e2e2e2;border-radius:50px;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month i,.mec-calendar.mec-calendar-daily .mec-previous-month i{font-size:14px;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month:hover,.mec-calendar.mec-calendar-daily .mec-previous-month:hover{border-color:#d0d0d0;color:#444;box-shadow:0 2px 5px 0 rgba(0,0,0,.075)}.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-150px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:100px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month{min-height:28px;height:28px;line-height:28px;width:28px;margin-top:-14px;border-radius:3px}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2,.mec-calendar.mec-calendar-daily .mec-calendar-d-top h3{margin-top:9px;color:#b9b9b9;font-family:Roboto,sans-serif;font-size:30px;font-weight:100;text-transform:uppercase;margin-bottom:12px;line-height:1}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2{font-size:81px;color:#444;margin-bottom:10px;line-height:1.1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table{overflow:hidden;background:#fff;min-height:60px;border-top:1px solid #e6e6e6;border-bottom:2px solid #f3f3f3;padding:0 50px;position:relative}@media only screen and (min-width:479px){.mec-calendar.mec-calendar-daily .mec-calendar-d-table{padding:0 55px}}.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl{width:1310px;display:block}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{display:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl.mec-weekly-view-week-active{display:block}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt{display:block;background:#fff;width:42px;height:60px;line-height:60px;text-align:center;float:left;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6;border-radius:0}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day:hover,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt:hover{background:#fafafa;box-shadow:0 2px 5px 0 rgba(0,0,0,.065) inset;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day{cursor:default;background:#fff;color:#c1c1c1;line-height:59px;text-align:center;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-has-event{cursor:pointer;font-weight:700;color:#4a4a4a}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-daily-view-day-active,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt.mec-table-d-current{font-size:18px;font-weight:700;background:#fafafa;color:#40d9f1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-prev{float:none;font-size:14px;width:55px;position:absolute;top:0;left:0;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next{left:auto;right:0;border-left:1px solid #e6e6e6;border-right:none}.mec-calendar.mec-calendar-daily .mec-today-container .mec-today-count{font-size:12px;color:#888;text-align:center}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}}.widget .mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}.widget .mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.widget .mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-util-hidden{display:none}.mec-daily-view-date-events,.mec-weekly-view-date-events{list-style:none;margin:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table{padding:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{width:calc(100% - 1px)}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt{width:14.286%;height:70px;line-height:normal;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:hover{background:#fff;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:last-child{border-right:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:12px;font-weight:700;text-transform:uppercase;display:block;margin:15px 0 6px}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-prev{display:none}ul.mec-weekly-view-dates-events,ul.mec-weekly-view-dates-events li{padding:0;margin:0;line-height:initial}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:64px;height:64px;margin-right:10px;font-size:11px;text-transform:uppercase;float:left;text-align:center;padding-top:2px}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:40px;line-height:30px;font-weight:700;display:block;margin-bottom:6px;letter-spacing:1px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-previous-month{margin-left:0;left:12px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-next-month{margin-left:0;left:auto;right:12px}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}}.widget .mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}.mec-week-events-container .mec-weekly-view-dates-events li.mec-no-event-found{list-style:none!important}li.mec-no-event-found .mec-event-title{text-align:center}.mec-widget .mec-calendar{max-width:100%}.mec-widget .mec-calendar dl dt,.mec-wrap.mec-sm959.mec-widget .mec-calendar.mec-event-calendar-classic dl dt{height:40px}.mec-widget .mec-calendar .mec-calendar-events-sec{padding:10px}.mec-widget .mec-calendar .mec-calendar-header h2{font-size:13px;margin-top:8px}.mec-widget .mec-calendar .mec-event-list-classic .mec-event-image{margin-right:12px}.mec-widget .mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-widget .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{font-size:14px}.mec-widget .mec-calendar .mec-event-article .mec-event-image{margin-right:11px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-header{margin-bottom:20px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{font-size:0;padding:4px 0;text-align:center;min-width:33px}.mec-widget .mec-event-calendar-classic .mec-calendar-side .mec-calendar-table{min-height:200px}.mec-widget .mec-event-list-classic{margin-bottom:8px;padding:8px 0}.mec-widget .mec-event-list-classic .mec-event-article{margin-bottom:0;padding:10px 0;position:relative;min-height:86px;padding-left:80px}.mec-widget .mec-event-list-classic .mec-event-date{font-size:10px;line-height:14px;text-transform:uppercase}.mec-widget .mec-event-list-classic .mec-event-title{font-size:13px}.mec-widget .mec-event-list-classic .mec-event-detail{font-size:11px}.mec-widget .mec-event-list-classic .mec-event-image{width:68px;position:absolute;left:0}.mec-event-list-classic .mec-event-image img{width:100%}.mec-widget .mec-event-list-classic .mec-event-detail{overflow:visible}.event-color{width:14px;display:inline-block;height:14px;margin-left:5px;border-radius:50%}.mec-map-lightbox-wp{width:580px;padding:15px 15px 0;background-color:#fff}.mec-map-view-event-detail.mec-event-detail{width:580px;background-color:#e9e9e9;padding:8px 15px}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-article{padding:0 0 15px;margin:0}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-image{width:70px;margin-right:15px}.mec-marker-infowindow-wp{padding:10px}.mec-marker-infowindow-wp .mec-marker-infowindow-count{width:60px;height:60px;display:block;text-align:center;line-height:60px;border:1px solid #40d9f1;border-radius:50%;font-size:32px;color:#40d9f1;float:left;margin-right:11px}.mec-marker-infowindow-wp .mec-marker-infowindow-content{overflow:hidden;padding-top:6px}.mec-marker-infowindow-wp .mec-marker-infowindow-content span{display:block;color:#222}.mec-marker-infowindow-wp .mec-marker-infowindow-content span:first-child{font-size:15px;font-weight:700}.mec-marker-wrap{display:inline-block;width:35px;height:35px;margin:15px 0 0 4px;border-radius:50% 50% 50% 0;background:#00cae9;animation-name:mec-map-bounce;animation-fill-mode:both;animation-duration:1s;border:3px solid #fff;cursor:pointer}.mec-marker-wrap .mec-marker{margin-top:5px;display:block;-webkit-transform:rotate(45deg);transform:rotate(45deg);text-align:center;color:#fff;font-size:17px}.mec-marker-wrap .mec-marker-pulse-wrap{-webkit-transform:rotate(45deg);transform:rotate(45deg);display:inline-block;margin-left:-11px;margin-top:0}.mec-marker-wrap .mec-marker-pulse{display:inline-block;background:#c5c5c5;border-radius:50%;height:14px;width:14px;-webkit-transform:rotateX(55deg);transform:rotateX(55deg);z-index:-2}.mec-marker-wrap .mec-marker-pulse:after{content:"";border-radius:50%;height:40px;width:40px;position:absolute;margin:-13px 0 0 -13px;animation:pulsate 1s ease-out;animation-iteration-count:infinite;opacity:0;box-shadow:0 0 1px 2px #00cae9;animation-delay:1.1s}@keyframes pulsate{0%{transform:scale(.1,.1);opacity:0}50%{opacity:1}100%{transform:scale(1.2,1.2);opacity:0}}@keyframes mec-map-bounce{0%{opacity:0;transform:translateY(-2000px) rotate(-45deg)}60%{opacity:1;transform:translateY(30px) rotate(-45deg)}80%{transform:translateY(-10px) rotate(-45deg)}100%{transform:translateY(0) rotate(-45deg)}}.mec-skin-grid-container .mec-skin-map-container,.mec-skin-list-container .mec-skin-map-container{margin-bottom:20px}.mec-single-event{margin-top:10px}.mec-single-event .mec-events-meta-group-countdown{color:#c9c9c9;text-align:center;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-events-meta-group-countdown .countdown-w{text-align:center;font-size:36px;margin:0 auto;padding:40px 0 0;position:relative;display:table;table-layout:fixed}.mec-events-meta-group-countdown .countdown-w .icon-w{font-size:24px}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:15px;font-weight:300;letter-spacing:1px;text-transform:uppercase;position:relative}.mec-events-meta-group-countdown .countdown-w .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px;width:190px;font-size:72px;transition:all .3s ease-in-out;line-height:1.2}.mec-events-meta-group-countdown .countdown-w .block-w.done-w{border:0 none}.mec-events-meta-group-countdown .countdown-w .block-w li{font-size:50px}.mec-events-meta-group-countdown .countdown-w span{padding:24px 0 20px}.mec-events-meta-group-countdown .countdown-w .div-d{display:none}.mec-events-meta-group-countdown .countdown-w .countdown-message{display:none}.mec-events-meta-group-countdown .countdown-w .block-w i{display:none}#countdown{list-style:none;margin-bottom:0;margin-top:0;margin-left:0;padding-left:0}.mec-events-meta-group-countdown .mec-end-counts h3{display:inherit;text-align:center;font-size:16px;right:50%}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:23px}@media (min-width:481px) and (max-width:768px){.mec-events-meta-group-countdown .countdown-w{padding:0}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:12px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:34px}}@media (min-width:320px) and (max-width:480px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:10px}.mec-events-meta-group-countdown .countdown-w span{font-size:28px}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:16px}}@media (max-width:320px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:9px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:22px}}.info-msg,.mec-error,.mec-success,.warning-msg{margin:10px 0;padding:10px;border-radius:3px 3px 3px 3px;font-size:13px}.info-msg{color:#059;background-color:#bef}.mec-success{color:#0dbf52;background-color:#cef7ce}.warning-msg{color:#9f6000;background-color:#feefb3}.mec-error{color:#d8000c;background-color:#ffbaba}.mec-fes-form,.mec-fes-list{background:#f8feff;padding:30px 3%;color:#798f96;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important}.mec-fes-list .mec-fes-list-top-actions,.mec-fes-list ul{margin:0 auto 15px;max-width:960px;list-style:none}.mec-fes-form-cntt .dashicons-editor-help{display:none}.mec-fes-list ul li *{text-decoration:none!important}.mec-fes-list ul li{padding:20px 15px;border-radius:3px;margin-bottom:15px;border:1px solid #cfeff5;box-shadow:0 2px 6px -4px #cfeff5;background:#fff;line-height:normal}.mec-fes-list ul li a{box-shadow:none;color:#181818}.mec-fes-list ul li a:hover{color:#40d9f1}.mec-fes-list ul li .mec-event-title{font-size:17px;font-weight:600;width:calc(100% - 250px);display:inline-block}@media (max-width:600px){.mec-fes-list ul li .mec-event-title{font-size:13px}}.mec-fes-list .mec-event-status{color:#fff!important;border-color:transparent!important}.mec-fes-form .mec-book-confirmed,.mec-fes-list .mec-book-confirmed{background:#50d477!important}.mec-fes-form .mec-book-pending,.mec-fes-list .mec-book-pending{background:#fcbe69!important}.mec-fes-form .mec-book-rejected,.mec-fes-list .mec-book-rejected{background:#fe686a!important}.mec-fes-form .mec-book-other,.mec-fes-list .mec-book-other{background:#40d9f1!important}.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view{font-size:11px;padding:0;border:0;background:#f7f8f9;float:right;margin-left:5px;border-radius:2px;transition:all .2s ease}.mec-fes-list ul li .mec-fes-event-export a,.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view a{padding:4px 8px;display:inline-block;border:1px solid #e7e8e9;border-radius:2px;color:#789;position:relative}@media (max-width:600px){.mec-fes-list ul li .mec-fes-event-export a,.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view a{font-size:10px}}.mec-fes-list ul li .mec-fes-event-remove:hover{cursor:pointer;background:#f96f8a;border-color:#f96f8a;color:#fff}.mec-fes-list ul li .mec-fes-event-export a:hover,.mec-fes-list ul li .mec-fes-event-view a:hover{background:#40d9f1;color:#fff;border-color:#40d9f1}.mec-fes-form-top-actions a,.mec-fes-list-top-actions a{position:relative;border:none;border-radius:3px;color:#fff!important;display:inline-block;font-size:13px;line-height:1;text-transform:none;font-weight:400;text-decoration:none;cursor:pointer;margin-bottom:20px!important;margin-right:10px;line-height:1;letter-spacing:0;padding:15px 22px;background:#39c36e;box-shadow:0 1px 7px -3px #39c36e!important;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;text-decoration:unset}.mec-fes-form-top-actions a:hover,.mec-fes-list-top-actions a:hover{background:#222;color:#fff}.mec-fes-list-top-actions a{font-weight:600;text-transform:capitalize}.mec-fes-form-top-actions a:before{content:"";border:solid #fff;border-width:0 2px 2px 0;display:inline-block;padding:6px;margin-right:5px;vertical-align:sub;transform:rotate(135deg);-webkit-transform:rotate(135deg)}.mec-fes-form .mec-form-row,.mec-fes-list .mec-form-row{margin-bottom:10px;clear:both}.mec-fes-form label{font-size:13px;display:block;color:#798f96;font-weight:400;padding:0 0 4px 2px}.mec-fes-form input+label{padding-top:8px;padding-left:3px;margin:0;display:inline-block;vertical-align:top}.mec-fes-form .post-status{float:right!important;margin:0 5px;color:#fff;padding:0 10px;border-radius:12px;font-style:italic;font-size:18px}.mec-fes-form input[type=email],.mec-fes-form input[type=number],.mec-fes-form input[type=password],.mec-fes-form input[type=tel],.mec-fes-form input[type=text],.mec-fes-form select,.mec-fes-form textarea{min-width:inherit;width:auto;display:inline;min-height:30px;font-size:13px;padding:10px;margin-bottom:20px;clear:both;background:#fff;border:1px solid #cfeff5;box-shadow:0 2px 5px rgba(207,239,245,.38) inset;border-radius:3px;height:40px;max-width:280px;color:#798f96;font-family:inherit}.mec-fes-form input{background:#fff!important;border-radius:3px!important;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important}.mec-fes-form textarea{height:80px}.mec-fes-form input::-webkit-input-placeholder{color:#798f96}.mec-fes-form input::-moz-placeholder{color:#798f96}.mec-fes-form input:-ms-input-placeholder{color:#798f96}.mec-fes-form input:-moz-placeholder{color:#798f96}#mec_more_info_target{width:100%}@media only screen and (min-width:961px){.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form textarea{width:100%;display:inline-block}}@media only screen and (max-width:768px){.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form textarea{width:100%}}.mec-fes-form input[type=text]#mec_fes_title{padding:5px 10px;min-height:32px;height:50px;background:#fff!important;max-width:100%;font-size:19px;font-weight:400}.mec-fes-form input[type=checkbox],.mec-fes-form input[type=radio]{display:inline!important;float:left;margin:5px 5px 0 0}.mec-fes-form input[type=email]:focus,.mec-fes-form input[type=number]:focus,.mec-fes-form input[type=password]:focus,.mec-fes-form input[type=tel]:focus,.mec-fes-form input[type=text]:focus,.mec-fes-form select:focus,.mec-fes-form textarea:focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-form-row .mec-color{cursor:pointer}.mec-form-row.mec-available-color-row span{margin:10px;width:14px;height:14px;display:inline-block;margin-right:6px;border-radius:20px 20px 20px 20px;vertical-align:middle}.mec-form-row.mec-available-color-row span:first-of-type{margin-left:0}.mec-fes-form.mec-fes-form .mec-tooltip{display:inline}.mec-fes-form-cntt .dashicons-editor-help{display:block}.mec-fes-form .mec-tooltip:hover:after,.mec-fes-form .mec-tooltip:hover:before{display:none}.mec-fes-form.mec-fes-form .mec-tooltip{display:inline-flex;bottom:7px}.mec-fes-form .mec-tooltip .box{min-width:300px;max-width:600px;display:inline-block;left:26px;top:50%;transform:translateY(-50%);padding:0;margin-top:8px;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.3;position:absolute;z-index:9999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s}#webnus-dashboard .mec-fes-form .mec-tooltip .box p,.mec-fes-form .mec-tooltip .box p{color:#fff;font-size:14px;line-height:1.3;margin:0}.mec-fes-form .mec-tooltip:hover .box{visibility:visible;opacity:1}.mec-fes-form .mec-tooltip:hover .box{padding:20px;border-radius:8px}.mec-fes-form .mec-tooltip .box h5{color:#fff;font-size:17px;font-weight:600;margin:-30px -20px;padding:20px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #32363a;border-radius:6px 6px 0 0;z-index:9999}#webnus-dashboard .mec-fes-form .mec-tooltip .box p a,.mec-fes-form .mec-tooltip .box p a{color:#40d9f1;margin-top:10px;margin-left:0;font-weight:400;position:relative;text-decoration:none;display:block;width:max-content}.mec-fes-form .mec-tooltip .box a:hover{color:#f90}.mec-fes-form .mec-tooltip .box:after{display:block;position:absolute!important;top:100%!important;right:50%!important;margin-top:-6px!important;margin-right:-6px!important;width:12px!important;height:24px!important;overflow:hidden!important;transform:rotate(-90deg)!important}.mec-fes-form .mec-tooltip .box:before{display:block;content:''!important;position:absolute!important;width:12px;height:12px;left:-10px!important;top:50%!important;transform:translate(50%,-50%) rotate(-45deg)!important;background-color:#535a61!important;box-shadow:0 8px 9px -4px #535a61!important;z-index:0!important}.mec-fes-form .mec-tooltip .box.top{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-fes-form .mec-tooltip .box.top:after{top:50%!important;right:100%!important}.mec-fes-form .mec-tooltip .box.top:before{left:50%!important;top:100%!important}.mec-fes-form .mec-tooltip .box.bottom{left:50%;top:auto;bottom:0;transform:translate(-50%,100%);margin-bottom:-20px;margin-left:-10px}.mec-fes-form .mec-tooltip .box.bottom:after{top:0!important;right:50%!important;background-color:#3a3f44!important}.mec-fes-form .mec-tooltip .box.bottom:before{left:50%!important;top:-7px!important;transform:translateX(-50%);background-color:#3a3f44!important}.mec-fes-form .mec-tooltip .box.left{left:auto;right:26px;top:50%;transform:translateY(-50%)}.mec-fes-form .mec-tooltip .box.left:before{right:0!important;left:auto!important;top:50%!important}.mec-fes-form .mec-tooltip{display:inline-block;position:relative;margin-right:10px;cursor:help;bottom:5px;left:3px}.mec-fes-form .mec-tooltip:last-child{margin-right:0}.mec-fes-form .mec-tooltip:hover:after{background:#313130;border-radius:5px;bottom:24px;color:#fff;content:attr(title);left:-75px;padding:10px;position:absolute;z-index:98;width:240px}.mec-fes-form .mec-tooltip:hover:before{border:solid;border-color:#313130 transparent;border-width:6px 6px 0;bottom:18px;content:"";left:30%;position:absolute;z-index:99}.mec-fes-form .mec-tooltip .dashicons-before:before{font-size:24px;color:#008aff;line-height:37px}.mec-fes-form .mec-tooltip a:focus{box-shadow:none}.mec-form-row .bootstrap_unvalid{display:block;border:2px solid red;position:relative;display:inline-block;border-bottom:1px dotted #000}.mec-fes-form .mec-tooltiptext{visibility:hidden;width:120px;background-color:red;color:#fff;text-align:center;border-radius:6px;padding:5px 0;position:absolute;z-index:1}.mec-fes-form .mec-tooltip .content p a{display:none}@media only screen and (min-width:961px){.mec-fes-form .mec-fes-form-cntt,.mec-fes-form .mec-fes-form-sdbr{width:68%;float:left;padding-right:20px}.mec-fes-form .mec-fes-form-sdbr{width:32%;padding-right:0;padding-left:20px}.mec-fes-submit-mobile{display:none}}.mec-fes-form .mec-meta-box-fields{padding:0 20px 20px;border:1px solid #cfeff5;margin-bottom:20px!important;box-shadow:0 2px 6px -3px #cfeff5;border-radius:3px;background:#fff}.mec-fes-form .mec-meta-box-fields h4{margin:0 -20px;font-size:15px;font-weight:600;letter-spacing:0;color:#40d9f1;text-transform:capitalize;padding:15px 20px;background:#ecfcff;margin-bottom:20px;border-radius:3px}.mec-fes-sub-button{width:100%}.mec-available-color-row span.color-selected{border:3px solid #fff;box-sizing:content-box;box-shadow:0 0 0 2px #40d9f1,0 2px 8px -1px #40d9f1}.mec-fes-loading:before{content:url(../img/ajax-loader.gif);background:0 0;border-style:none;display:block;margin-left:47%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:190px;margin-right:1.4%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-1,.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-2{width:120px;margin-right:10px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].widefat{width:100%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row{border-bottom:none;padding-bottom:10px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-6{width:39%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row button{margin-right:0;padding:9px 26px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row button.mec-add-hourly-schedule-button{font-size:12px;height:30px;line-height:25px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row .description{display:inline-block;border-left:1px dashed #bfcacc;margin-left:12px;line-height:28px;padding-left:12px;margin-top:5px;font-style:italic}@media only screen and (max-width:768px){.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:100%!important}}#mec_fes_form_message{max-width:838px;margin:10px auto;display:block!important;text-align:center}.mec-wrap .mec-totalcal-box{position:relative;border:1px solid #efefef;padding:20px 5px;margin:0 0 20px;background:#fafafa;overflow:hidden;box-shadow:0 3px 2px 0 rgba(0,0,0,.012);min-height:78px}.mec-wrap .mec-totalcal-box i{float:left;margin:0;width:36px;height:36px;background:#fff;border:1px solid #efefef;text-align:center;padding:10px 0;font-size:15px;color:#888}.mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-wrap .mec-totalcal-box input,.mec-wrap .mec-totalcal-box select{width:auto;min-height:36px;height:36px;line-height:36px;background:#fff;font-size:13px;color:#777;border:1px solid #efefef;margin:0 0 0 -1px;float:left;padding:0 5px;font-family:Roboto,Helvetica,Arial,sans-serif}.mec-wrap .mec-totalcal-box input[type=submit]{cursor:pointer;padding:0 16px;text-transform:uppercase;font-size:11px;font-family:Montserrat,Helvetica,Arial,sans-serif;transition:all .21s ease}.mec-wrap .mec-totalcal-box input[type=submit]:hover{background:#222;color:#fff}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{display:inline-block;text-transform:uppercase;font-family:Montserrat,Helvetica,Arial,sans-serif;font-size:11px;padding:0 12px;cursor:pointer}.mec-wrap .mec-totalcal-box .mec-totalcal-view span:hover{color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected{color:#fff;background:#40d9f1;border-color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view{text-align:right;float:right}.mec-wrap .mec-totalcal-box input[type=search]{width:calc(100% - 36px)}@media only screen and (min-width:961px) and (max-width:1200px){.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-3,.mec-wrap .mec-totalcal-box .col-md-4,.mec-wrap .mec-totalcal-box .col-md-5{width:100%;float:none;padding-bottom:20px;clear:both;overflow:hidden}}@media only screen and (min-width:768px) and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-4{position:relative;right:10px;top:20px;width:initial}.mec-wrap .mec-totalcal-box .col-md-5{padding-bottom:0}.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:767px){.mec-wrap .mec-totalcal-box .mec-totalcal-view{float:none}.mec-wrap .mec-totalcal-box .col-md-4{padding-bottom:0}}@media only screen and (max-width:479px){.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 8px;font-size:10px}.mec-wrap .mec-totalcal-box input[type=submit]{padding:0 10px;font-size:10px}}@media only screen and (min-width:961px){.mec-wrap .mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5,.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-3{width:100%;float:none;padding-bottom:20px;clear:both;overflow:hidden}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-4{position:absolute;right:10px;top:20px;width:initial}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5{padding-bottom:0;width:100%}}@media (min-width:961px) and (max-width:1200px){.mec-full-calendar-wrap .mec-totalcal-box{padding:20px 20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{padding-bottom:20px!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{min-width:calc(30% - 10px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3:last-child select{min-width:calc(50% - 19px)}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view{margin-right:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:10px;text-align:center}}@media (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box{padding:20px 20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{padding-bottom:10px!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px);margin-bottom:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view{margin-right:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:10px;text-align:center}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:100%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:absolute;top:20px}}@media (min-width:780px) and (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:absolute;top:20px}}@media(max-width:780px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{width:calc(50% - 18px)!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:unset;padding-right:0}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:20%;text-align:center;font-size:10px}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 7px;margin-top:20px}}@media(max-width:480px){.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:20%;text-align:center;font-size:10px}}.mec-search-form{padding:20px 10px}.mec-search-form .mec-dropdown-wrap{display:table;width:100%}.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{padding:0 10px;float:left;min-height:55px}.mec-search-form .mec-date-search,.mec-search-form .mec-text-input-search{width:50%;min-height:36px;display:block}.mec-full-calendar-wrap .mec-search-form .mec-date-search,.mec-full-calendar-wrap .mec-search-form .mec-text-input-search{width:100%}.mec-full-calendar-wrap .mec-search-form .col-md-3,.mec-full-calendar-wrap .mec-search-form .col-md-5,.mec-full-calendar-wrap .mec-search-form .col-md-6,.mec-full-calendar-wrap .mec-search-form .col-md-8{padding:0}.mec-widget .mec-search-form .mec-date-search,.mec-widget .mec-search-form .mec-text-input-search{width:100%}.mec-widget .mec-search-form .mec-text-input-search{margin-top:10px}.mec-search-form .mec-date-search{clear:left}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:table-cell;float:none}.mec-widget .mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block}.mec-wrap .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{width:calc(100% - 36px);margin-bottom:20px}.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 106px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}@media only screen and (max-width:767px){.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{width:100%;float:none}.mec-search-form .mec-date-search{min-height:55px}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:50%;float:left}}@media only screen and (max-width:960px){.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 124px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}}@media only screen and (max-width:479px){.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:100%;float:none}}.mec-search-form .mec-text-address-search{float:left;width:100%;padding:0 10px;margin-bottom:20px}.ui-datepicker{background-color:#fff;border:1px solid #66afe9;border-radius:4px;box-shadow:0 0 8px rgba(102,175,233,.6);display:none;margin-top:4px;padding:10px;width:240px}.ui-datepicker a,.ui-datepicker a:hover{text-decoration:none;cursor:pointer}.ui-datepicker a:hover,.ui-datepicker td:hover a{color:#2c6396;-webkit-transition:color .1s ease-in-out;-moz-transition:color .1s ease-in-out;-o-transition:color .1s ease-in-out;transition:color .1s ease-in-out}.ui-datepicker .ui-datepicker-header{margin-bottom:4px;text-align:center}.ui-datepicker .ui-datepicker-title{font-weight:700}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{cursor:default;font-family:dashicons;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;height:20px;line-height:1.4;margin-top:2px;width:20px}.ui-datepicker .ui-datepicker-prev{float:left;text-align:left}.ui-datepicker .ui-datepicker-next{float:right;text-align:center}.ui-datepicker .ui-datepicker-prev:before{content:"\f341"}.ui-datepicker .ui-datepicker-next:before{content:"\f345"}.ui-datepicker .ui-icon{display:none}.ui-datepicker .ui-datepicker-calendar{table-layout:fixed;width:100%}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker .ui-datepicker-calendar th{text-align:center;padding:4px 0}.ui-datepicker .ui-datepicker-calendar td{border-radius:4px;-webkit-transition:background-color .1s ease-in-out,color .1s ease-in-out;-moz-transition:background-color .1s ease-in-out,color .1s ease-in-out;-o-transition:background-color .1s ease-in-out,color .1s ease-in-out;transition:background-color .1s ease-in-out,color .1s ease-in-out}.ui-datepicker .ui-datepicker-calendar td:hover{background-color:#eee;cursor:pointer}.ui-datepicker .ui-datepicker-calendar td a{text-decoration:none}.ui-datepicker .ui-datepicker-current-day{background-color:#4289cc}.ui-datepicker .ui-datepicker-current-day a{color:#fff}.ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover{background-color:#fff;cursor:default}.mec-owl-theme .owl-dots .owl-dot{border:none}.event-carousel-type1-head .mec-event-image{position:relative;min-height:150px}.event-carousel-type1-head .mec-event-image img{width:100%}.mec-event-carousel-content .mec-event-carousel-title a{transition:all .2s ease}.event-carousel-type1-head .mec-event-date-carousel{position:absolute;top:25px;left:1px;font-size:41px;width:160px;color:#fff;font-weight:500;background-color:#40d9f1;padding-left:21px;height:97px;line-height:2.3;padding-right:85px}.event-carousel-type1-head .mec-event-date-carousel:after{content:"";position:absolute;display:inline-block;z-index:-1;bottom:-13px;left:5px;width:0;border-width:13px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.event-carousel-type1-head .mec-event-date-info{font-size:12px;font-weight:300;position:absolute;top:27px;left:75px}.event-carousel-type1-head .mec-event-date-info-year{font-size:12px;font-weight:300;position:absolute;top:45px;left:75px}.mec-event-carousel-content{border:1px solid #e8e8e8;border-top:none;margin-top:-5px;padding:34px 9px 11px 37px}.mec-event-carousel-content .mec-event-carousel-title a{font-size:23px;font-weight:500;color:#000;letter-spacing:-1px}.mec-event-carousel-content p{font-size:14px;color:#7a7272;font-weight:300}.mec-owl-crousel-skin-type1 .owl-item .mec-event-article{padding:0 19px}.mec-event-carousel-type1 .owl-page.active span{background-color:#00aeef;height:14px;width:14px}.mec-event-carousel-type1 .mec-event-carousel-content{margin-bottom:15px;box-shadow:0 1px 2px rgba(0,0,0,.04);transition:all .27s ease}.mec-event-carousel-type1 .mec-event-carousel-content:hover{box-shadow:0 0 35px rgba(0,0,0,.07)}@media only screen and (min-width:768px) and (max-width:1000px),(min-width:270px) and (max-width:448px){.event-carousel-type1-head .mec-event-date-carousel{font-size:25px;line-height:2.5;padding-right:70px;height:64px;width:120px}.event-carousel-type1-head .mec-event-date-carousel:after{left:7px}.event-carousel-type1-head .mec-event-date-info{font-size:10px;top:13px;left:55px}.event-carousel-type1-head .mec-event-date-info-year{font-size:10px;top:25px;left:55px}.event-carousel-type1-head .mec-event-date-carousel:after{top:48px}}.event-carousel-type2-head{background:#fff;border:1px solid #e6e6e6}.event-carousel-type2-head .mec-event-carousel-content-type2{margin-top:15px;min-height:182px}.event-carousel-type2-head .mec-event-carousel-content-type2 .mec-event-date-info{font-size:15px;color:#9a9a9a;font-weight:300}.event-carousel-type2-head .mec-event-carousel-content-type2 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-carousel-content-type2 .mec-event-carousel-title a{color:inherit}.mec-event-carousel-type2 .event-carousel-type2-head .mec-event-carousel-content-type2 p{font-size:16px;font-weight:300;color:#444}.event-carousel-type2-head .mec-event-footer-carousel-type2{margin-top:33px;position:relative}.mec-event-carousel-type2 .mec-event-footer-carousel-type2 .mec-event-sharing-wrap{left:0}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-event-sharing-wrap>li{border:none;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button{border:1px solid #e4e4e4;float:right;padding:7px 23px 7px;font-size:12px;text-transform:uppercase;color:#707070;font-weight:500;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button:hover{color:#fff}.mec-event-article .event-carousel-type2-head{padding:10%;margin-right:-1px}.mec-event-carousel-type2 .mec-owl-carousel .owl-wrapper-outer{border-right:1px solid #e6e6e6}.mec-wrap .mec-event-carousel-type2 .owl-next,.mec-wrap .mec-event-carousel-type2 .owl-prev,.mec-wrap .mec-event-carousel-type3 .owl-next,.mec-wrap .mec-event-carousel-type3 .owl-prev,.mec-wrap .mec-event-carousel-type4 .owl-next,.mec-wrap .mec-event-carousel-type4 .owl-prev{transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:47%;background-color:transparent!important}.mec-event-carousel-type2 .owl-next{right:-60px}.mec-event-carousel-type2 .owl-prev{left:-60px}.mec-event-carousel-type2 .owl-next i,.mec-event-carousel-type2 .owl-prev i,.mec-event-carousel-type3 .owl-next i,.mec-event-carousel-type3 .owl-prev i,.mec-event-carousel-type4 .owl-next i,.mec-event-carousel-type4 .owl-prev i{font-size:40px;color:#282828}.mec-event-carousel-type2 .owl-next i:hover,.mec-event-carousel-type2 .owl-prev i:hover,.mec-event-carousel-type3 .owl-next i:hover,.mec-event-carousel-type3 .owl-prev i:hover{color:#000;cursor:pointer}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}@media only screen and (min-width:320px) and (max-width:768px){.mec-event-carousel-type2 .owl-next,.mec-event-carousel-type2 .owl-prev,.mec-event-carousel-type3 .owl-next,.mec-event-carousel-type3 .owl-prev,.mec-event-carousel-type4 .owl-next,.mec-event-carousel-type4 .owl-prev{position:initial;top:100%}}.mec-event-carousel-type3 .mec-event-article{margin:0 10px}.event-carousel-type3-head .mec-event-image,.event-carousel-type3-head .mec-event-image img{width:100%;height:auto}.event-carousel-type3-head .mec-event-footer-carousel-type3{background:#fff;display:inline-block;width:calc(100% - 40px);margin-top:-74px;position:relative;margin-left:20px;margin-right:20px;margin-bottom:6px;padding:8% 11%;box-shadow:0 2px 10px -2px rgba(0,0,0,.2)}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button{border:1px solid #e4e4e4;text-transform:uppercase;float:right;padding:7px 23px 7px;font-size:12px;color:#707070;font-weight:500}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button:hover{color:#fff}.mec-event-footer-carousel-type3 span{font-size:15px;color:#9a9a9a;font-weight:300;display:block;margin-top:30px}.mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:29px;font-weight:700}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-footer-carousel-type3 .mec-event-carousel-title a{color:inherit}.event-carousel-type3-head .mec-event-footer-carousel-type3 p{font-size:16px;font-weight:300;color:#444!important;margin-bottom:36px}.mec-event-carousel-type3 .owl-next{right:-70px}.mec-event-carousel-type3 .owl-prev{left:-70px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap{left:11%}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}.event-carousel-type3-head .mec-end-date-label{display:inline;margin-left:2px}.event-carousel-type4-head.clearfix{position:relative;overflow:hidden;background:#fff}.event-carousel-type4-head .mec-event-overlay{position:absolute;left:0;right:0;bottom:0;top:0;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-hover-carousel-type4{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out;opacity:0;visibility:hidden}.mec-event-carousel-type4 .mec-event-article{margin:0 10px}.mec-event-carousel-type4 .mec-event-article:hover .mec-event-hover-carousel-type4{opacity:1;visibility:visible}.mec-event-hover-carousel-type4 .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-hover-carousel-type4 .mec-event-date{font-size:11px;text-transform:uppercase;font-weight:400;line-height:1.6}.mec-event-hover-carousel-type4 .mec-event-date span{display:block;font-weight:700;font-size:14px}.mec-event-hover-carousel-type4 .mec-event-title{color:#fff;margin:20px 0 38px;font-size:16px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-hover-carousel-type4 .mec-btn-wrapper{text-align:left}.mec-event-hover-carousel-type4 .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:10px 14px;letter-spacing:1.5px;font-size:11px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-hover-carousel-type4 .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-carousel-type4 .owl-next{right:-70px}.mec-event-carousel-type4 .owl-prev{left:-70px}.mec-carousel-type4-head{margin-bottom:25px}.mec-carousel-type4-head-title{padding:0 11px;text-align:left;font-weight:700;font-size:20px;color:#000}.mec-carousel-type4-head-link{text-align:right;padding:0 11px}.mec-carousel-type4-head-link a{background:#222;color:#fff;padding:10px 38px;transition:all .3s ease}.mec-carousel-type4-head-link a:hover,.mec-carousel-type4-head-link a:visited{color:#fff}@media (max-width:960px){.mec-event-carousel-type4 .owl-stage{left:-50px}}.mec-wrap .mec-event-countdown-style1{color:#fff;padding:0!important;display:table;background:#437df9}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1{z-index:5;padding:50px 1% 50px 4%;display:table-cell;float:none;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2{background-color:rgba(0,0,0,.05);height:100%;padding-top:0;display:table-cell;float:none;position:relative;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{background-color:#f8f8f8;display:table-cell;float:none;text-align:center;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style1 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{content:"";position:absolute;display:inline-block;z-index:1;top:50%;margin-top:-11px;right:-24px;width:0;border-width:12px;border-style:solid;border-color:transparent transparent transparent #4077ed}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style1 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto}.mec-event-countdown-style1 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style1 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (min-width:1200px){.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%}}@media (max-width:960px){.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%;transform:rotate(90deg)}}@media (max-width:480px){.mec-event-countdown-style1 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{padding:10px 5px;min-width:50px;margin:3px 1px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:8px}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{display:inline}}.mec-wrap .mec-event-countdown-style2{color:#fff;padding:30px 0;background:#437df9;max-width:600px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part3{width:100%;float:none;vertical-align:middle;padding:50px 10% 50px 10%}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2{padding-top:12%;padding-bottom:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style2 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date-place{text-align:left;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 8px}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#222;background:#fff;transition:all .24s ease}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button:hover{background:#222;color:#fff}.mec-event-countdown-style2 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0}.mec-event-countdown-style2 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style2 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (max-width:767px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:80px;padding:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:26px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:11px}}@media only screen and (max-width:479px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:40px;padding:15px 10px;margin:2px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:20px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:9px}}@media (max-width:380px){.mec-event-countdown-style2 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{padding:10px 4px;margin:4px 1px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:7px}}.mec-wrap .mec-event-countdown-style3{color:#fff;padding:0;background:#282828;display:table;width:100%}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1{width:68%;padding:50px 1% 50px 4%;vertical-align:middle;display:table-cell;position:relative}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:32%;display:table-cell;position:relative;padding-bottom:0;padding-top:0}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 img{width:100%;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{font-weight:300;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{color:#fff;font-size:36px;letter-spacing:-2px;font-weight:700;line-height:1;margin-top:-10px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style3 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style3 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto;position:absolute;top:40px;right:20px}.mec-event-countdown-style3 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style3 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:11px;color:#888;margin:8px 0 0;line-height:1}.mec-event-countdown-style3 .mec-event-date{width:176px;height:96px;background:#40d9f1;color:#fff;font-size:13px;position:absolute;left:-27px;top:146px}.mec-event-countdown-style3 .mec-event-date:after{content:"";position:absolute;display:inline-block;z-index:1;bottom:-18px;left:8px;width:0;border-width:19px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:50px;position:absolute;top:36px;left:12px;letter-spacing:-3px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:80px;top:26px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:80px;top:45px}.mec-event-countdown-style3 .mec-event-countdown-part-details{padding-top:35px;margin-bottom:50px;min-height:100px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-title{font-size:17px;color:#fff;line-height:1.4;padding-right:20px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link{color:#fff;font-size:12px;position:relative;padding-left:22px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link:before{content:"";display:inline-block;width:18px;border-top:1px solid #fff;position:absolute;left:0;top:8px}.mec-event-countdown-style3 .mec-event-title-link{position:absolute;left:190px;top:152px}.event-carousel-type1-head .mec-event-date-carousel:before,.mec-event-countdown-style3 .mec-event-date:before{content:'';position:absolute;left:0;bottom:0;z-index:2;width:100%;height:96px;background:0 0;display:inline-block;box-shadow:0 5px 5px rgba(0,0,0,.12)}@media only screen and (min-width:960px){.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown li{padding:10px}.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:31px}}@media (max-width:959px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:100%;display:block}.mec-event-countdown-style3 .mec-event-title-link{top:190px}.mec-event-countdown-style3 .mec-event-countdown{top:96px}.mec-event-countdown-style3 .mec-event-date{left:0;top:190px}.mec-event-countdown-style3 .mec-event-date:after{display:none}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{display:inline}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:150px}}@media (max-width:767px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:26px;letter-spacing:-1px}.mec-event-countdown-style3 .mec-event-title-link{left:130px}.mec-event-countdown-style3 .mec-event-date{width:120px;font-size:10px;height:63px}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:36px;top:20px;left:4px;letter-spacing:-2px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:52px;top:12px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:52px;top:28px}}@media (max-width:380px){.mec-event-countdown-style3 .mec-event-title-link{left:10px;top:260px}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:300px}.mec-event-countdown-style3 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:10px 5px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:8px}}.mec-slider-t1-wrap{width:100%;padding:60px 90px;background:#f7f7f7;min-height:560px;position:relative}.mec-slider-t1{height:500px;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t1 .mec-event-article{position:relative;height:500px}.mec-slider-t1 .mec-slider-t1-img{position:relative;background-size:cover!important;background-position:center!important;width:50%;height:100%;float:right;margin:0;overflow:hidden}.mec-slider-t1 .mec-slider-t1-content{width:50%;float:left;height:100%;background:#fff;padding:6%}.mec-slider-t1-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t1-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:54px;height:54px;line-height:48px;border-radius:0;text-align:center;background:#fff;box-shadow:0 2px 11px 0 rgba(0,0,0,.045);transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-27px;cursor:pointer}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 29px 0 rgba(0,0,0,.095)}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:12px;color:#282828;transition:all .21s ease}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{font-size:13px;color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t1{margin:0 auto;max-width:900px}}@media only screen and (max-width:960px){.mec-slider-t1 .mec-slider-t1-content,.mec-slider-t1 .mec-slider-t1-img{width:100%;float:none}.mec-slider-t1 .mec-slider-t1-img{height:300px}.mec-slider-t1,.mec-slider-t1 .mec-event-article{height:auto}}@media only screen and (max-width:768px){.mec-slider-t1-wrap{padding:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:10px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}}@media only screen and (max-width:479px){.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t2-wrap{width:100%;padding:0;background:#fff;min-height:600px;position:relative}.mec-slider-t2 .mec-event-article{height:600px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t2 .mec-slider-t2-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:70%;height:100%;margin:0;overflow:hidden}.mec-slider-t2 .mec-slider-t2-content{width:50%;position:absolute;right:0;top:60px;bottom:60px;padding:5%}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern *{color:#fff}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-content,.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t2-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:84px;cursor:pointer}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}.mec-wrap.colorskin-custom .mec-slider-t2 .mec-event-article .mec-event-date.mec-color{color:#fff}@media only screen and (min-width:961px){.mec-slider-t2{margin:0 auto;max-width:1200px}}@media only screen and (max-width:960px){.mec-slider-t2 .mec-slider-t2-content,.mec-slider-t2 .mec-slider-t2-img{width:100%;float:none;position:static}.mec-slider-t2 .mec-slider-t2-img{height:300px}.mec-slider-t2 .mec-event-article{height:auto}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px}}@media only screen and (max-width:479px){.mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:22px}}.mec-slider-t3-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t3 .mec-event-article{height:700px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t3 .mec-slider-t3-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;opacity:.68;z-index:1}.mec-slider-t3 .mec-slider-t3-content{width:50%;height:auto;vertical-align:middle;display:table;position:absolute;left:0;top:50%;transform:translateY(-50%);bottom:0;padding:0 2% 0 7%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t3 .mec-slider-t3-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-content,.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-slider-t3-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t3-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{border-color:#40d9f1}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-22px;cursor:pointer}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next{right:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:50px;font-weight:300}.mec-slider-t3-content.mec-event-grid-modern .mec-event-description{font-size:19px}}@media only screen and (max-width:767px){.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}}@media only screen and (max-width:479px){.mec-slider-t3 .mec-slider-t3-content{width:100%}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t4-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t4 .mec-event-article{height:700px;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t4 .mec-slider-t4-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;z-index:1}.mec-slider-t4 .mec-slider-t4-content{width:auto;max-width:700px;background:rgba(37,37,37,.94)!important;height:auto;vertical-align:middle;display:table;position:absolute;left:8%;top:19%;padding:3%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t4 .mec-slider-t4-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-content,.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:13px;padding:0 42px;line-height:49px;height:50px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t4-content.mec-event-grid-modern .mec-slider-t4-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next{right:60px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{right:112px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:767px){.mec-slider-t4 .mec-slider-t4-content{width:100%;left:0;top:auto;bottom:0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t5-wrap{width:auto;max-width:570px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-slider-t5{height:auto;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t5 .mec-event-article{position:relative;height:auto}.mec-slider-t5 .mec-slider-t5-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:300px;float:none;margin:0;overflow:hidden}.mec-slider-t5 .mec-slider-t5-content{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-slider-t5 .mec-events-content p{margin-bottom:20px}.mec-slider-t5-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t5-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t5 .mec-slider-t5-col6{width:50%;float:left;height:100%}.mec-slider-t5 .mec-slider-t5-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-slider-t5 .mec-slider-t5-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-slider-t5 .mec-slider-t5-col6 address{font-size:12px;margin-bottom:0}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t5-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:768px){.mec-slider-t5 .mec-slider-t5-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-single-modern .mec-events-event-image{text-align:center}.mec-single-modern .mec-events-event-image img{width:100%}.mec-single-modern .mec-single-event-bar{background-color:#f7f7f7;margin:20px 0 0;padding:15px;display:table;width:100%}.mec-single-modern .mec-single-event-bar>div{display:table-cell}.mec-single-modern .mec-single-event-bar>div i{font-size:20px;vertical-align:middle}.mec-single-modern .mec-single-event-bar>div .mec-time-comment{font-size:12px;color:#999}.mec-single-modern .mec-single-event-bar>div h3{text-transform:uppercase;font-size:16px;font-weight:700;padding-bottom:5px;display:inline;color:#000;padding-left:10px}.mec-single-modern .mec-single-event-bar>div dd{font-size:14px;color:#8d8d8d;padding-left:34px;margin-bottom:0}.mec-single-modern .col-md-4 .mec-frontbox{margin-top:-50px;margin-bottom:70px;padding:20px;border:none;background:#f7f7f7;box-shadow:none}.mec-next-occurrence li{list-style:none}@media only screen and (min-width:960px){.mec-single-modern .col-md-4 .mec-frontbox{margin-left:20px}}@media only screen and (max-width:960px){.mec-single-modern .mec-single-event-bar>div{display:block}}.lity-content>div{overflow:auto}.mec-next-event-details li{list-style:none;margin-top:20px}.mec-next-event-details h6{text-transform:uppercase;font-size:13px;padding-bottom:5px;display:inline;color:#222;padding-left:0}.mec-next-event-details abbr{display:block;padding-left:12px;color:#8d8d8d}.mec-next-event-details i{margin-right:10px;margin-left:12px}.mec-next-event-details i:before{color:#40d9f1}.mec-next-event-details a{text-align:center;display:block;background:#fff;padding:6px 0;font-size:11px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;transition:.3s}.mec-single-modal.mec-single-modern .mec-single-title{text-align:center;padding:15px 10px 0}.admin-bar .mec-single-modal.mec-single-modern .mec-single-title{padding-top:40px}.mec-single-modal.mec-single-modern .mec-single-event-bar{padding:5px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div dd{font-size:13px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div h3{font-size:15px}@media only screen and (min-width:960px){.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-left:0}}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-top:10px;margin-bottom:10px}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox.mec-event-meta{padding:0}.mec-single-modal .mec-event-meta dd.mec-organizer-email a,.mec-single-modal .mec-event-meta dd.mec-organizer-url a{font-size:12px;display:block}.mec-organizer-description p{padding-left:12px}.mec-modal-wrap{max-width:60vw;max-height:90vh!important;background:#fff;box-shadow:0 1px 55px rgba(0,0,0,.5);overflow-x:hidden!important}@media(max-width:1023px){.mec-modal-wrap{max-width:80vw}}.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li,.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a.mec-events-button{display:block;text-align:center}body .featherlight .featherlight-content{background:0 0;overflow:unset;z-index:9999}body .featherlight .featherlight-close-icon{position:fixed;top:40px;right:40px;background:0 0;color:#fff;border:1px solid #fff;border-radius:0}body .featherlight .featherlight-close-icon:hover{background:#fff;color:#000;border:1px solid #000}@media (max-width:320px){.mec-wrap span.flip-clock-divider{width:20px}.mec-single-event .mec-events-meta-group-countdown{padding:15px 12%}}@media (max-width:414px){.mec-wrap span.flip-clock-divider{width:30px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 7%}}@media (max-width:480px){.mec-wrap span.flip-clock-divider{width:7px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 1%}}@media(max-width:1366px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:20px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 15px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:48px}}@media(max-width:1280px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:14px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:15px 10px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:38px}}@media(min-width:961px) and (max-width:1024px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:7px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:15px 5px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:14px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul li a div{font-size:30px}}@media(max-width:640px){body .mec-modal-wrap .mec-single-modal.featherlight-close-icon{top:14px;right:14px}}@media(max-width:480px){.featherlight .featherlight-content,body .mec-modal-wrap{max-width:100%}body .mec-modal-wrap.flip-clock-divider .flip-clock-label{display:block}}@media (max-width:414px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:50px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 65px}body .featherlight-content .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 2px 20px 2px!important}body .featherlight-content .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:3px!important}}@media (max-width:375px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:50px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 45px}}@media (max-width:320px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:20px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 40px}}.mec-events-toggle{max-width:960px;margin-left:auto;margin-right:auto}.mec-events-toggle .mec-toggle-item{border:1px solid #e4e4e4;margin-bottom:15px;box-shadow:0 10px 15px #f3f3f3}.mec-events-toggle .mec-toggle-item-inner{cursor:pointer;position:relative;padding:30px 60px 30px 15px;background:#fff;transition:all .3s ease;min-height:100px;display:table;width:100%;border-collapse:separate}.mec-events-toggle .mec-toggle-item-inner:hover{background:#fbfbfb}.mec-toggle-item-col{width:200px;border-right:1px solid #e3e3e3;margin-right:15px;display:table-cell;padding-right:5px}.mec-toggle-item-col .mec-event-date{font-size:38px;line-height:40px;float:left;margin-right:8px}.mec-toggle-item-col .mec-event-month,.mec-toggle-item-col .mec-time-details{text-transform:uppercase;font-size:12px;line-height:14px;padding-top:4px;font-weight:700}.mec-toggle-item-col .mec-event-detail{font-size:10px}.mec-toggle-item-col .mec-event-day{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:35px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-events-toggle .mec-toggle-title{color:#000;font-size:23px;font-weight:600;margin-bottom:0;transition:all .3s ease;display:table-cell;text-align:left;max-width:calc(100% - 200px);padding-left:15px;vertical-align:middle}.mec-events-toggle .mec-toggle-item-inner span.event-color{width:5px;height:100%;position:absolute;left:-1px;top:0;bottom:0;border-radius:0;margin:0}.mec-events-toggle .mec-toggle-item-inner i{position:absolute;font-size:30px;right:25px;top:50%;transform:translate(0,-50%);cursor:pointer}.mec-events-toggle .mec-toggle-item.is-open i.mec-sl-plus:before{content:"\e615"}.mec-events-toggle .mec-toggle-item.is-open .mec-toggle-title{background:#f8f8f8;cursor:pointer}.mec-events-toggle .mec-toggle-content{border-top:1px solid #e4e4e4}.mec-events-toggle .mec-toggle-content .mec-modal-wrap{margin:0;max-width:100%;box-shadow:none}.mec-events-toggle .mec-toggle-content .mec-modal-wrap .mec-single-event{margin:0}.mec-events-toggle .mec-toggle-content .mec-single-event-bar,.mec-events-toggle .mec-toggle-content h1.mec-single-title{display:none}.mec-events-toggle .media-links a{margin-bottom:0}.mec-events-toggle .mec-toggle-content .mec-toggle-meta{margin-bottom:14px}.mec-events-toggle #mec_speakers_details.mec-frontbox{padding:0;margin:0}.mec-events-toggle .mec-toggle-item h3.mec-speakers{border:none;text-align:left}.mec-events-toggle .mec-toggle-item h3.mec-speakers:before{content:"\e063";font-family:simple-line-icons;border:none;position:relative;display:inline-block;left:unset;bottom:unset;font-size:22px;font-weight:400;padding:0 11px 0 28px;vertical-align:middle}@media only screen and (max-width:767px){.mec-toggle-item-inner .mec-toggle-item-col{float:none;width:100%;border-right:none;margin-bottom:5px;display:block;max-width:100%;padding-left:15px}.mec-events-toggle .mec-toggle-title{display:block;width:100%;max-width:100%}}.mec-events-agenda-wrap{margin:10px 0;border:1px solid #e9e9e9;padding-left:20px;box-shadow:0 2px 2px rgba(0,0,0,.03)}.mec-events-agenda{padding:0;border-bottom:1px solid #e9e9e9;overflow:hidden}.mec-agenda-date-wrap{width:210px;padding-top:15px;float:left;font-size:13px}.mec-agenda-date-wrap i,.mec-agenda-event i{font-size:11px;color:#aaa;margin-right:4px;margin-left:1px}.mec-agenda-event i{vertical-align:middle;margin-right:1px}.mec-agenda-events-wrap{float:left;width:calc(100% - 210px);background:#f9f9f9;padding:15px}.mec-agenda-time{font-size:11px;color:#707070;padding-right:10px;width:138px;display:inline-block}.mec-agenda-event-title{position:relative;padding-left:14px}.mec-agenda-event-title a{font-family:Roboto,Montserrat,Helvetica,Arial,sans-serif;font-size:14px;font-weight:600;color:#333}.mec-agenda-event-title span.event-color{width:9px;height:9px;position:absolute;left:0;top:4px;margin:0}.mec-agenda-date-wrap span.mec-agenda-day{color:#aaa;font-size:12px}@media only screen and (max-width:767px){.mec-agenda-date-wrap,.mec-agenda-events-wrap{float:none;width:100%}.mec-events-agenda span.mec-agenda-event-title{display:block;width:100%}.mec-agenda-event-title span.event-color{top:7px}.mec-agenda-event-title a{font-size:13px}}.mec-yearly-view-wrap{margin:0 0 15px;border:1px solid #e6e6e6;box-shadow:0 2px 4px rgba(0,0,0,.04);border-bottom-width:4px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar{max-width:100%;width:232px;padding:10px;background:#fff;margin:10px;display:inline-block}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar dl dt{transition:none;height:30px;width:30px;line-height:30px;border-radius:0;font-size:12px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar .mec-calendar-events-sec{padding:10px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar .mec-has-event:after{width:4px;height:4px;bottom:3px;margin-left:-2px}.mec-yearly-view-wrap .mec-calendar-side .mec-calendar-table{min-height:200px}.mec-calendar.mec-yearly-calendar .mec-calendar-table-head dl dt{background:#f9f9f9;font-size:13px}.mec-calendar.mec-yearly-calendar .mec-calendar-table-title{text-align:center;font-size:15px;font-weight:700;color:#222;margin-top:-5px;padding-bottom:5px}.mec-yearly-view-wrap .mec-yearly-calendar-sec{min-height:200px;width:538px;overflow:hidden;float:left;background:#f8f8f8;padding:15px}.mec-yearly-view-wrap .mec-yearly-agenda-sec{min-height:200px;width:calc(100% - 538px);float:left;padding:0 0 0 20px;overflow:hidden}.mec-yearly-view-wrap .mec-yearly-title-sec{position:relative;padding:15px;text-align:center;border-bottom:1px solid #e6e6e6;box-shadow:0 1px 3px rgba(0,0,0,.02)}.mec-yearly-view-wrap .mec-yearly-title-sec h2{font-size:30px;line-height:40px;color:#333;margin:0;font-weight:700}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year,.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{position:absolute;top:50%;margin-top:-15px;min-width:30px;height:30px;line-height:30px;padding:0 8px;text-align:center;background:#fff;color:#666;font-size:14px;border:1px solid #eee;border-radius:2px;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease;cursor:pointer}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{right:auto;left:20px;padding-right:14px}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year{left:auto;right:20px;padding-left:14px}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year i,.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-yearly-view-wrap .mec-events-agenda.mec-selected{box-shadow:-10px 0 0 0 #fffcf2,0 -1px 0 #fbebb6;background:#fffcf2;border-color:#fbebb6;color:#f9af29}@media only screen and (max-width:959px){.mec-yearly-view-wrap .mec-yearly-calendar-sec{width:268px;padding:10px 5px}.mec-yearly-view-wrap .mec-yearly-agenda-sec{width:calc(100% - 268px);padding:0 0 0 10px}}@media only screen and (max-width:767px){.mec-yearly-view-wrap .mec-yearly-agenda-sec,.mec-yearly-view-wrap .mec-yearly-calendar-sec{width:100%;float:none}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar{width:auto}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar dl dt{width:14.2%}.mec-yearly-view-wrap .mec-yearly-title-sec h2{font-size:25px}}.mec-yearly-view-wrap .mec-agenda-event i,.mec-yearly-view-wrap .mec-agenda-time{display:none}@media only screen and (min-width:768px){.mec-yearly-view-wrap .mec-events-agenda-wrap{margin-top:0;border:none;padding-left:0;box-shadow:none}.mec-yearly-view-wrap .mec-agenda-date-wrap{width:174px;font-size:11px;padding-top:10px}.mec-yearly-view-wrap .mec-agenda-events-wrap{width:calc(100% - 174px);padding:10px}.mec-yearly-view-wrap .mec-agenda-event-title a{font-size:13px}.mec-yearly-view-wrap .mec-agenda-event-title span.event-color{width:8px;height:8px}.mec-yearly-view-wrap .mec-agenda-date-wrap span.mec-agenda-day{font-size:11px}.mec-yearly-view-wrap .mec-yearly-calendar-sec{box-shadow:-2px 0 5px rgba(0,0,0,.03) inset}}@media only screen and (max-width:1200px){.mec-yearly-view-wrap .mec-agenda-event-title a{font-size:12px;padding-right:6px}}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table{padding-bottom:10px;border-bottom:none}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt:hover{cursor:pointer}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-has-no-event,.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-has-no-event:hover{color:#bbb;cursor:default}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-day-active{background:#40d9f1;color:#fff;position:relative}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-day-active:after{content:'';position:absolute;display:block;bottom:-20px;left:50%;margin-left:-10px;width:0;border-width:10px;border-style:solid;border-color:#40d9f1 transparent transparent transparent}.mec-timetable-events-list{padding:10px 20px;border:none;margin:0}.mec-timetable-events-list .mec-timetable-event{padding:10px 0;border-bottom:1px dashed #ddd}.mec-timetable-events-list .mec-timetable-event:last-child{border:none}.mec-timetable-event .mec-timetable-event-span{font-size:12px;color:#444;padding-right:30px;line-height:22px}.mec-timetable-events-list .mec-timetable-event i{font-size:13px;color:#aaa;margin-right:3px;vertical-align:baseline}.mec-timetable-event .mec-timetable-event-span a{color:#333}.mec-timetable-event .mec-timetable-event-time{font-size:11px}.mec-timetable-event .mec-timetable-event-time i{vertical-align:text-bottom}.mec-timetable-event .mec-timetable-event-title{font-size:13px}.mec-timetable-event .mec-timetable-event-title .event-color{width:10px;height:10px}.mec-timetable-events-list .mec-timetable-event.mec-util-hidden{display:none}.mec-timetable-events-list.mec-util-hidden{display:none}@media only screen and (min-width:768px){.mec-timetable-events-list{display:table;width:100%;margin:10px 0 20px}.mec-timetable-events-list .mec-timetable-event{display:table-row;padding:0;border:none;background:#fff}.mec-timetable-events-list .mec-timetable-event:hover{background:#fafafa}.mec-timetable-event .mec-timetable-event-span{display:table-cell;padding:10px 15px;border-bottom:1px solid #ebebeb}.mec-timetable-events-list .mec-timetable-event:last-child .mec-timetable-event-span{border-bottom:none}}@media only screen and (max-width:767px){.mec-timetable-event .mec-timetable-event-title{display:block;width:100%;padding:5px 0 10px;font-weight:700}}.mec-timetable-t2-wrap{border:1px solid #e6e6e6;background:#fafafa;padding:0 15px 15px;overflow:hidden;box-shadow:0 3px 2px 0 rgba(0,0,0,.012)}.mec-timetable-t2-col{width:20%;float:left;min-height:20px;padding-right:1px;background:0 0}.mec-ttt2-title{background:#fafafa;color:#333;font-size:13px;font-weight:600;text-transform:uppercase;letter-spacing:1px;text-align:center;padding:25px 10px 10px;margin-bottom:1px}.mec-timetable-t2-col .mec-event-article{position:relative}.mec-timetable-t2-col .mec-event-article .event-color{position:absolute;width:auto;height:auto;left:0;right:0;top:0;bottom:0;margin:0;z-index:1;border-radius:2px}.mec-timetable-t2-content{position:relative;z-index:2;color:#fff;padding:15px 15px 20px;text-align:left;height:130px;margin-bottom:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title{line-height:22px;margin-bottom:13px;white-space:nowrap;padding-right:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title a{color:#fff;font-size:15px;font-weight:600;white-space:nowrap;overflow:hidden}.mec-timetable-t2-content div{color:#fff;font-size:11px;font-weight:400;line-height:19px;white-space:nowrap}.mec-timetable-t2-content div i{font-size:12px;margin-right:4px}@media only screen and (max-width:960px){.mec-timetable-t2-col{width:100%;float:none}}@media(min-width:961px){.mec-timetable-col-7{width:14.28%}.mec-timetable-col-6{width:16.6666%}}.mec-timetable-t3-wrap td{position:relative;padding:0}.mec-timetable-t3-wrap td a{width:100%;display:block;min-height:110px}.mec-weather-box{padding:15px 0}.mec-weather-head{min-height:90px;padding:5px 0;clear:both;overflow:hidden;margin-bottom:25px;border-radius:10px;background:#238af5;position:relative}.mec-weather-icon-box{float:left;width:80px;height:80px;border-radius:10px;overflow:hidden;background:#238af5}.mec-weather-icon{width:80px;height:80px;display:inline-block;border-radius:10px}.mec-weather-summary{float:left;width:calc(100% - 80px);padding-left:10px;margin:10px 0;height:60px}.mec-weather-summary-report{font-size:15px;color:rgba(255,255,255,.68);margin-bottom:6px}.mec-weather-summary-temp{font-family:Roboto,Sans-serif;font-weight:300;color:#fff;font-size:29px;line-height:1}.degrees-mode{background:rgba(0,0,0,.2);cursor:pointer;font-weight:300;font-size:18px;padding:4px 5px;line-height:1;color:#fff;position:absolute;border-radius:8px;bottom:16px;left:16px}.mec-weather-extras{width:auto;padding:10px 15px 0 15px;float:right;min-height:80px;color:#fff;font-size:13px;line-height:1}.mec-weather-extras{width:auto;padding:10px 15px 0 15px;float:right;min-height:80px;color:#fff;font-size:13px;line-height:1}.mec-weather-extras div{line-height:20px;height:20px}.mec-weather-extras span{color:rgba(255,255,255,.68);font-size:12px;text-transform:uppercase}.mec-weather-extras var{font-size:11px;letter-spacing:.4px}.mec-weather-icon.clear-day,.mec-weather-icon.clear-night{background-image:url(../img/mec-weather-icon-01.png)}.mec-weather-icon.partly-sunny-day,.mec-weather-icon.partly-sunny-night{background-image:url(../img/mec-weather-icon-02.png)}.mec-weather-icon.partly-cloudy-day,.mec-weather-icon.partly-cloudy-night{background-image:url(../img/mec-weather-icon-03.png)}.mec-weather-icon.cloudy,.mec-weather-icon.fog,.mec-weather-icon.wind{background-image:url(../img/mec-weather-icon-04.png)}.mec-weather-icon.thunderstorm{background-image:url(../img/mec-weather-icon-05.png)}.mec-weather-icon.rain{background-image:url(../img/mec-weather-icon-06.png)}.mec-weather-icon.hail,.mec-weather-icon.sleet,.mec-weather-icon.snow{background-image:url(../img/mec-weather-icon-07.png)}.mec-av-spot-wrap{width:auto;max-width:1200px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-av-spot{height:auto;border:1px solid #eee;box-shadow:0 6px 12px -4px rgba(0,0,0,.05)}.mec-av-spot .mec-event-article{position:relative;height:auto}.mec-av-spot .mec-av-spot-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:330px;float:none;margin:0;overflow:hidden}.mec-av-spot .mec-av-spot-content,.mec-av-spot .mec-av-spot-head{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-av-spot .mec-av-spot-head{background:#222;color:#fff;min-height:80px}.mec-av-spot .mec-av-spot-head .mec-av-spot-box{padding-top:25px;font-size:13px;color:#ddd}.mec-av-spot .mec-av-spot-head .mec-av-spot-box span{color:#40d9f1;font-size:40px;font-weight:700;font-style:italic}.mec-av-spot .mec-av-spot-head .mec-event-countdown{text-align:center;padding-top:10px;display:table;table-layout:fixed;margin:0 auto;float:right}.mec-av-spot .mec-av-spot-head .mec-event-countdown li{display:table-cell;padding:10px 20px;position:relative;height:60px}.mec-av-spot .mec-av-spot-head .mec-event-countdown p{margin-bottom:0}.mec-av-spot .mec-events-content p{margin-bottom:20px}.mec-av-spot-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-av-spot-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-av-spot-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-av-spot .mec-av-spot-col6{width:50%;float:left;height:100%}.mec-av-spot .mec-av-spot-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-av-spot .mec-av-spot-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-av-spot .mec-av-spot-col6 address{font-size:12px;margin-bottom:0}.mec-av-spot-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-av-spot-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05)}@media only screen and (max-width:768px){.mec-av-spot .mec-av-spot-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-av-spot-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-events-masonry-wrap{display:block;width:auto}.mec-masonry-item-wrap{width:calc(33.33% - 30px);padding:0;margin:0 15px 30px;min-height:10px;position:relative}.isotope-item{z-index:2}.isotope-hidden.isotope-item{pointer-events:none;z-index:1}.isotope,.isotope .isotope-item{-webkit-transition-duration:.8s;-moz-transition-duration:.8s;transition-duration:.8s}.isotope{-webkit-transition-property:height,width;-moz-transition-property:height,width;transition-property:height,width}.isotope .isotope-item{-webkit-transition-property:-webkit-transform,opacity;-moz-transition-property:-moz-transform,opacity;transition-property:transform,opacity}.mec-events-masonry-cats{padding:10px;margin-bottom:25px;text-align:center;clear:both;list-style:none outside none}.mec-events-masonry-cats a{border-radius:2px;padding:6px 12px;font-size:13px;line-height:1.2;color:#333;font-weight:400;margin-top:0!important;text-align:center;display:inline-block;width:auto;border:2px solid transparent;transition:all .2s ease}.mec-events-masonry-cats a:hover{border-color:#40d9f1;color:#333}.mec-events-masonry-cats a.mec-masonry-cat-selected{border:2px solid #40d9f1;color:#40d9f1}.mec-masonry{background:#f7f7f7;height:auto;border:1px solid #eee;box-shadow:0 6px 12px -4px rgba(0,0,0,.05)}.mec-masonry .mec-event-article{position:relative;height:auto}.mec-masonry .mec-masonry-img{position:relative;width:100%;height:auto;float:none;margin:0;overflow:hidden}.mec-masonry .mec-masonry-img img{width:100%}.mec-masonry .mec-masonry-content,.mec-masonry .mec-masonry-head{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-masonry .mec-events-content p{margin-bottom:20px}.mec-masonry-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-masonry-item-wrap .mec-event-grid-modern .event-grid-modern-head{min-height:79px;margin-bottom:10px;padding:14px 5%;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-masonry-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-masonry-content.mec-event-grid-modern .mec-event-content{padding-top:20px}.mec-masonry-content.mec-event-grid-modern .mec-event-footer{height:auto}.mec-masonry .mec-masonry-col6 .mec-event-date{font-size:52px;letter-spacing:-2px;line-height:41px;vertical-align:top}.mec-masonry .mec-masonry-col6{width:50%;float:left;height:100%}.mec-masonry .mec-masonry-col6 i{font-size:24px;float:left;margin-right:7px;height:50px}.mec-masonry .mec-masonry-col6 .mec-event-month,.mec-masonry .mec-masonry-col6 h6{text-transform:capitalize;font-size:15px;padding:4px 0;display:inline;color:#444}.mec-masonry .mec-masonry-col6 .mec-event-detail,.mec-masonry .mec-masonry-col6 address{font-size:11px;margin-bottom:0}.mec-masonry-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-masonry-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05)}@media only screen and (max-width:960px){.mec-masonry-item-wrap{width:calc(50% - 30px)}}@media only screen and (max-width:768px){.mec-masonry .mec-masonry-col6{width:100%;margin:10px 0}.mec-masonry-item-wrap{width:calc(100% - 30px)}}@media only screen and (max-width:479px){.mec-masonry-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.btn-wrapper{text-align:center}.countdown-wrapper .btn-wrapper{padding-top:10px;padding-right:0}.countdown-wrapper h5.countdown-message{letter-spacing:5px;font-weight:500;font-size:18px}.blox.dar .countdown-wrapper p,.countdown-wrapper p{color:#888}.countdown-wrapper a.button.black{float:right;margin-right:0}.mec-wrap .threedaydigits .days .flip-clock-label{right:-100px}@media only screen and (min-width:320px) and (max-width:767px){.mec-wrap .flip-clock-wrapper ul{width:29px!important}.mec-wrap .flip-clock-wrapper ul li a div div.inn{font-size:25px!important}.mec-wrap .flip-clock-divider .flip-clock-label{left:0;font-weight:300}.mec-wrap span.flip-clock-divider{width:12px}}@media only screen and (min-width:320px) and (max-width:480px){.mec-wrap .flip-clock-wrapper ul{width:29px!important}.mec-wrap .flip-clock-wrapper ul li a div div.inn{font-size:25px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}.mec-wrap span.flip-clock-divider:first-child{width:0}.mec-wrap span.flip-clock-divider{width:20px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 18%}}@media screen and (min-width:960px) and (max-width:1200px){.mec-wrap .threedaydigits ul{height:50px;width:47px}}@media screen and (min-width:480px) and (max-width:768px){.mec-wrap .threedaydigits ul{height:48px;width:26px!important}.mec-wrap .threedaydigits .flip-clock-label{font-size:8px;left:-8px}}@media screen and (min-width:320px) and (max-width:480px){.mec-wrap .threedaydigits ul{height:48px;width:22px!important}}.mec-wrap .flip-clock-wrapper *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;-o-box-sizing:border-box;box-sizing:border-box;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden}.mec-wrap .flip-clock-wrapper a{cursor:pointer;text-decoration:none;color:#ccc}.mec-wrap .flip-clock-wrapper a:hover{color:#fff}.mec-wrap .flip-clock-wrapper ul{list-style:none}.flip-clock-wrapper.clearfix:after,.mec-wrap .flip-clock-wrapper.clearfix:before{content:" ";display:table}.mec-wrap .flip-clock-wrapper.clearfix:after{clear:both}.mec-wrap .flip-clock-wrapper{font:normal 11px "helvetica neue",helvetica,sans-serif;-webkit-user-select:none}.mec-wrap .flip-clock-meridium{background:0 0!important;box-shadow:0 0 0!important;font-size:36px!important}.mec-wrap .flip-clock-meridium a{color:#313333}.mec-wrap .flip-clock-wrapper{text-align:center;position:relative;display:inline-block;padding-bottom:10px}.flip-clock-wrapper:after,.mec-wrap .flip-clock-wrapper:before{content:" ";display:table}.mec-wrap .flip-clock-wrapper:after{clear:both}.mec-wrap .flip-clock-wrapper ul{position:relative;float:left;margin:2px;width:50px;height:50px;font-size:80px;font-weight:700;line-height:87px;border-radius:3px;background:rgba(0,0,0,.21)}.mec-wrap .flip-clock-wrapper ul li{z-index:1;position:absolute;left:0;top:0;width:100%;height:100%;line-height:54px;text-decoration:none!important}.mec-wrap .flip-clock-wrapper ul li:first-child{z-index:2}.mec-wrap .flip-clock-wrapper ul li a{display:block;height:100%;-webkit-perspective:200px;-moz-perspective:200px;perspective:200px;margin:0!important;overflow:visible!important;cursor:default!important}.mec-wrap .flip-clock-wrapper ul li a div{z-index:1;position:absolute;left:0;width:100%;height:50%;font-size:80px;overflow:hidden;outline:1px solid transparent}.mec-wrap .flip-clock-wrapper ul li a div .shadow{position:absolute;width:100%;height:100%;z-index:2}.mec-wrap .flip-clock-wrapper ul li a div.up{-webkit-transform-origin:50% 100%;-moz-transform-origin:50% 100%;-ms-transform-origin:50% 100%;-o-transform-origin:50% 100%;transform-origin:50% 100%;top:0}.mec-wrap .flip-clock-wrapper ul li a div.up:after{content:"";position:absolute;top:24px;left:0;z-index:5;width:100%;height:3px;background-color:rgba(0,0,0,.12)}.mec-wrap .flip-clock-wrapper ul li a div.down{-webkit-transform-origin:50% 0;-moz-transform-origin:50% 0;-ms-transform-origin:50% 0;-o-transform-origin:50% 0;transform-origin:50% 0;bottom:0;border-bottom-left-radius:3px;border-bottom-right-radius:3px}.mec-wrap .flip-clock-wrapper ul li a div div.inn{position:absolute;left:0;z-index:1;width:100%;height:200%;color:#fff;text-shadow:0 0 2px rgba(0,0,0,.25);text-align:center;background-color:#40d9f1;border-radius:3px;font-size:48px}.mec-wrap .flip-clock-wrapper ul li a div.up div.inn{top:0}.mec-wrap .flip-clock-wrapper ul li a div.down div.inn{bottom:0}.mec-wrap .flip-clock-wrapper ul.play li.flip-clock-before{z-index:3}.mec-wrap .flip-clock-wrapper .flip{box-shadow:0 2px 5px rgba(0,0,0,.17)}.mec-wrap .flip-clock-wrapper ul.play li.flip-clock-active{-webkit-animation:asd .5s .5s linear both;-moz-animation:asd .5s .5s linear both;animation:asd .5s .5s linear both;z-index:5}.mec-wrap .flip-clock-divider{float:left;display:inline-block;position:relative;width:18px;height:62px}.mec-wrap .flip-clock-divider:first-child{width:0}.mec-wrap .flip-clock-dot{display:none;background:#323434;width:10px;height:10px;position:absolute;border-radius:50%;box-shadow:0 0 5px rgba(0,0,0,.5);left:5px}.mec-wrap .flip-clock-divider .flip-clock-label{position:absolute;bottom:-1.5em;right:-71px;color:#101010;font-weight:700;text-shadow:none;text-transform:uppercase}.mec-wrap .blox.dark .flip-clock-divider .flip-clock-label{color:#8a8a8a}.mec-wrap .flip-clock-divider.seconds .flip-clock-label{right:-82px}.mec-wrap .flip-clock-dot.top{top:30px}.mec-wrap .flip-clock-dot.bottom{bottom:30px}@-webkit-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@-moz-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@-o-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}.flip-clock-wrapper ul.play li.flip-clock-active .down{z-index:2;-webkit-animation:turn .5s .5s linear both;-moz-animation:turn .5s .5s linear both;animation:turn .5s .5s linear both}@-webkit-keyframes turn{0%{-webkit-transform:rotatex(90deg)}100%{-webkit-transform:rotatex(0)}}@-moz-keyframes turn{0%{-moz-transform:rotatex(90deg)}100%{-moz-transform:rotatex(0)}}@-o-keyframes turn{0%{-o-transform:rotatex(90deg)}100%{-o-transform:rotatex(0)}}@keyframes turn{0%{transform:rotatex(90deg)}100%{transform:rotatex(0)}}.flip-clock-wrapper ul.play li.flip-clock-before .up{z-index:2;-webkit-animation:turn2 .5s linear both;-moz-animation:turn2 .5s linear both;animation:turn2 .5s linear both}@-webkit-keyframes turn2{0%{-webkit-transform:rotatex(0)}100%{-webkit-transform:rotatex(-90deg)}}@-moz-keyframes turn2{0%{-moz-transform:rotatex(0)}100%{-moz-transform:rotatex(-90deg)}}@-o-keyframes turn2{0%{-o-transform:rotatex(0)}100%{-o-transform:rotatex(-90deg)}}@keyframes turn2{0%{transform:rotatex(0)}100%{transform:rotatex(-90deg)}}.flip-clock-wrapper ul li.flip-clock-active{z-index:3}.flip-clock-wrapper ul.play li.flip-clock-before .up .shadow{background:-moz-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.1)),color-stop(100%,rgba(64,64,64,.68)));background:linear,top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;background:-o-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-ms-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:linear,to bottom,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;-webkit-animation:show .5s linear both;-moz-animation:show .5s linear both;animation:show .5s linear both}.flip-clock-wrapper ul.play li.flip-clock-active .up .shadow{background:-moz-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.1)),color-stop(100%,rgba(64,64,64,.68)));background:linear,top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;background:-o-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-ms-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:linear,to bottom,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;-webkit-animation:hide .5s .3s linear both;-moz-animation:hide .5s .3s linear both;animation:hide .5s .3s linear both}.flip-clock-wrapper ul.play li.flip-clock-before .down .shadow{background:-moz-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(64,64,64,.68)),color-stop(100%,rgba(0,0,0,.1)));background:linear,top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;background:-o-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-ms-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:linear,to bottom,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;-webkit-animation:show .5s linear both;-moz-animation:show .5s linear both;animation:show .5s linear both}.flip-clock-wrapper ul.play li.flip-clock-active .down .shadow{background:-moz-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(64,64,64,.68)),color-stop(100%,rgba(0,0,0,.1)));background:linear,top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;background:-o-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-ms-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:linear,to bottom,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;-webkit-animation:hide .5s .3s linear both;-moz-animation:hide .5s .3s linear both;animation:hide .5s .2s linear both}@-webkit-keyframes show{0%{opacity:0}100%{opacity:1}}@-moz-keyframes show{0%{opacity:0}100%{opacity:1}}@-o-keyframes show{0%{opacity:0}100%{opacity:1}}@keyframes show{0%{opacity:0}100%{opacity:1}}@-webkit-keyframes hide{0%{opacity:1}100%{opacity:0}}@-moz-keyframes hide{0%{opacity:1}100%{opacity:0}}@-o-keyframes hide{0%{opacity:1}100%{opacity:0}}@keyframes hide{0%{opacity:1}100%{opacity:0}}@font-face{font-family:simple-line-icons;src:url(../fonts/Simple-Line-Icons.eot?v=2.3.1);src:url(../fonts/Simple-Line-Icons.eot?v=2.3.1#iefix) format('embedded-opentype'),url(../fonts/Simple-Line-Icons.woff2?v=2.3.1) format('woff2'),url(../fonts/Simple-Line-Icons.woff?v=2.3.1) format('woff'),url(../fonts/Simple-Line-Icons.ttf?v=2.3.1) format('truetype'),url(../fonts/Simple-Line-Icons.svg?v=2.3.1#simple-line-icons) format('svg');font-weight:400;font-style:normal}[class*=mec-sl-]{font-family:simple-line-icons;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.mec-sl-facebook:before{content:"\e00b"}.mec-sl-twitter:before{content:"\e009"}.mec-sl-google-plus:before{content:"\e60d"}.mec-sl-angle-left:before{content:"\e605"}.mec-sl-angle-right:before{content:"\e606"}.mec-sl-calendar:before{content:"\e075"}.mec-sl-clock-o:before{content:"\e081"}.mec-sl-home:before{content:"\e069"}.mec-sl-phone:before{content:"\e600"}.mec-sl-envelope:before{content:"\e086"}.mec-sl-sitemap:before{content:"\e037"}.mec-sl-map-marker:before{content:"\e096"}.mec-sl-floder:before{content:"\e089"}.mec-sl-wallet:before{content:"\e02a"}.mec-color,.mec-color-before :before,.mec-color-hover:hover,.mec-wrap .mec-color,.mec-wrap .mec-color-before :before,.mec-wrap .mec-color-hover:hover{color:#40d9f1}.mec-bg-color,.mec-bg-color-hover:hover,.mec-wrap .mec-bg-color,.mec-wrap .mec-bg-color-hover:hover{background-color:#40d9f1}.mec-border-color,.mec-border-color-hover:hover,.mec-wrap .mec-border-color,.mec-wrap .mec-border-color-hover:hover{border-color:#40d9f1}.mec-toggle-month-divider.mec-skin-list-events-container{border:1px solid #e8e8e8;margin-bottom:30px;background:#f8f8f8;box-shadow:0 2px 18px -1px rgba(0,0,0,.1);border-radius:2px}.mec-toggle-month-divider .mec-month-divider{margin:0;text-align:left;background:#fff;position:relative;cursor:pointer;border-top:1px solid #e8e8e8}.mec-toggle-month-divider .mec-month-divider span{padding:20px;border-bottom:1px solid #e8e8e8}.mec-toggle-month-divider .mec-month-divider i{position:absolute;right:20px;top:24px;font-size:20px;cursor:pointer}.mec-toggle-month-divider .mec-month-divider span:before{display:none}.mec-toggle-month-divider .mec-month-divider+article{margin-top:20px}.mec-toggle-month-divider .mec-wrap .mec-month-divider:first-of-type{border-top:none}.mec-toggle-month-divider .mec-event-list-accordion .mec-month-divider:not(:first-of-type)~article{display:none}.mec-skin-list-events-container:not(.mec-toggle-month-divider) .mec-month-divider i{display:none}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-month{display:inline-block;padding-top:0}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-date{font-size:14px;line-height:14px;float:none;display:inline-block;margin-right:0;font-weight:700}.mec-events-toggle .mec-toogle-inner-month-divider.mec-toggle-item-inner{padding:20px 60px 30px 15px}.mec-toogle-inner-month-divider .mec-toggle-month-inner-image{float:left;clear:right;width:100px;margin-right:20px;margin-left:10px}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-detail{margin-top:-6px}.mec-toogle-inner-month-divider .mec-toggle-item-col{float:none;width:100%;margin-top:10px;display:block;border:none}.mec-events-toggle .mec-toogle-inner-month-divider .mec-toggle-title{font-size:19px;display:block;padding-top:10px}@media only screen and (max-width:768px){.mec-events-toggle .mec-toogle-inner-month-divider .mec-toggle-title{font-size:14px;padding-top:0}.mec-toogle-inner-month-divider .mec-toggle-item-col{margin-top:0}.mec-toogle-inner-month-divider .mec-toggle-month-inner-image{width:70px}}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled:before,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-featured:before{z-index:1;position:absolute;top:25px;right:-37px;font-size:11px;letter-spacing:1px;text-transform:uppercase;background:#04de78;padding:2px 40px;color:#fff;-ms-transform:rotate(45deg);-webkit-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:.5s cubic-bezier(.25,.5,.06,.85);transition:.5s cubic-bezier(.25,.5,.06,.85);content:attr(data-style)}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-featured{overflow:hidden;position:relative}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled:before{background:#de0404}.mec-daily-view-date-events article:before,ul.mec-weekly-view-dates-events article:before{padding:7px 40px!important;top:27px!important}.mec-event-grid-classic article .mec-fc-style,.mec-event-grid-minimal article .mec-fc-style,.mec-event-grid-simple article .mec-fc-style,.mec-timetable-wrap article .mec-fc-style,.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article.mec-event-cover-modern .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{font-size:9px;letter-spacing:.5px;text-transform:uppercase;background:#04de78;padding:2px 7px;color:#fff;position:relative;margin-left:5px;border-radius:2px}.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-modern.mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-minimal article .mec-fc-style:before,.mec-event-grid-simple article .mec-fc-style:before,.mec-timetable-wrap article .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article .mec-fc-style:before,.mec-wrap .mec-event-list-modern article .mec-fc-style:before,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style:before{width:0;height:0;border-top:4px solid transparent!important;border-right:5px solid;border-bottom:4px solid transparent;margin:0;top:50%;left:-4px;transform:translateY(-4.5px);position:absolute;content:'';color:#04de78}.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-event-grid-classic article.mec-label-canceled:before,.mec-event-grid-classic article.mec-label-featured:before,.mec-event-grid-minimal article.mec-label-canceled:before,.mec-event-grid-minimal article.mec-label-featured:before,.mec-event-grid-simple article.mec-label-canceled:before,.mec-event-grid-simple article.mec-label-featured:before,.mec-timetable-wrap article.mec-label-canceled:before,.mec-timetable-wrap article.mec-label-featured:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled:before,.mec-wrap .mec-event-list-accordion article.mec-label-featured:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled:before,.mec-wrap .mec-event-list-modern article.mec-label-featured:before{display:none}.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{top:-3px;font-size:11px;margin-left:10px}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style:before,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-canceled:before,.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-featured:before{-ms-transform:none;-webkit-transform:none;transform:none;-webkit-transition:none;transition:none;top:271px;right:0}.mec-timetable-wrap article .mec-fc-style{top:-2px;font-size:10px}.mec-wrap article.mec-event-cover-modern .mec-fc-style{padding:5px 9px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:24px;display:inline-block;border-radius:2px}.mec-skin-grid-events-container .mec-wrap .mec-event-grid-clean .mec-event-article:before{-ms-transform:none;-webkit-transform:none;transform:none!important;-webkit-transition:none;transition:none;top:22px!important;right:22px!important;padding:0 10px!important}.mec-event-grid-minimal article .mec-fc-style,.mec-event-grid-simple article .mec-fc-style{top:-4px;font-size:10px;margin-left:10px}.mec-event-grid-classic article .mec-fc-style{padding:5px 20px;font-size:12px;margin-top:8px;display:inline-block}.mec-hourly-schedule-speaker-info{background:#fff;padding:30px;border:1px solid #e6e6e6;max-width:740px;width:740px;margin-left:-110px}.mec-hourly-schedule-speaker-thumbnail{float:left;max-width:30%;width:30%}.mec-hourly-schedule-speaker-name{font-weight:700;font-size:26px;line-height:1.2;color:#333;text-transform:uppercase}.mec-hourly-schedule-speaker-details{float:left;width:69%;padding-left:25px}.mec-hourly-schedule-speaker-job-title{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-hourly-schedule-speaker-description{font-size:14px;font-weight:400;color:#6d7683;line-height:1.7;text-align:left}.mec-hourly-schedule-speaker-contact-information a i{color:#6b6b6b;background:#ebebeb;line-height:29px;margin:9px 7px 9px 0;width:30px;height:30px;display:inline-block;text-align:center;transition:all .2s ease;font-size:15px;cursor:pointer;border-radius:3px}.mec-hourly-schedule-speaker-contact-information a i:hover{background:#222;color:#fff}@media only screen and (max-width:479px){.mec-hourly-schedule-speaker-thumbnail{float:none;max-width:none;margin-right:0;margin-bottom:15px;width:100%}.mec-hourly-schedule-speaker-thumbnail img{width:100%}.mec-hourly-schedule-speaker-details{padding-left:0}.mec-hourly-schedule-speaker-info{width:90%;margin:0 auto}}.mec-profile .mec-profile-bookings{border:2px solid #e6e6e6;text-align:center}.mec-profile .mec-profile-bookings tbody tr:first-child{background:#f7f7f7;font-weight:700;text-transform:capitalize}.mec-profile .mec-profile-bookings tbody tr{border-bottom:1px solid #e6e6e6;font-size:14px}.mec-profile .mec-profile-bookings tbody tr td{border:1px solid #e6e6e6;padding:10px;text-align:center;word-break:initial}.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:53%;text-align:left}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8) i{color:#fe686a}.mec-profile .mec-event-status{padding:5px 10px;color:#fff;border-radius:2px;font-size:12px;line-height:12px;letter-spacing:.4px}.mec-profile .mec-event-status.mec-book-confirmed{background:#50d477}.mec-profile .mec-event-status.mec-book-pending{background:#fcbe69}.mec-profile .mec-event-status.mec-book-rejected{background:#fe686a}.mec-profile .mec-event-date{font-size:12px;color:#888}.mec-event-date,.mec-event-status{text-align:center}.mec-event-date .mec-tooltip,.mec-event-status .mec-tooltip{position:relative;width:fit-content;margin:auto}.mec-profile i{font-size:15px;color:#008aff;vertical-align:text-bottom;margin-right:4px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{min-width:250px;max-width:300px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#000;color:#fff;font-weight:400;font-size:14px;letter-spacing:.5px;line-height:1.5;position:absolute;z-index:99999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #535a61;padding:5px 10px 6px;border-radius:8px;text-align:center;font-style:normal;opacity:0;visibility:hidden;display:none}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{font-size:13px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;letter-spacing:1.1px;font-weight:500}.mec-event-date .mec-tooltip:hover .box:after,.mec-event-status .mec-tooltip:hover .box:after{content:'';position:absolute;width:12px;height:12px;left:calc(50% - 12px);bottom:-12px;transform:translate(50%,-50%) rotate(-45deg);background-color:#000;box-shadow:0 8px 9px -4px #535a61}.mec-event-status .mec-tooltip .box{min-width:100px}.mec-event-status.mec-book-confirmed .mec-tooltip .box,.mec-event-status.mec-book-confirmed .mec-tooltip:hover .box:after{background-color:#50d477}.mec-event-status.mec-book-rejected .mec-tooltip .box,.mec-event-status.mec-book-rejected .mec-tooltip:hover .box:after{background-color:#fe686a}.mec-event-status.mec-book-pending .mec-tooltip .box,.mec-event-status.mec-book-pending .mec-tooltip:hover .box:after{background-color:#fcbe69}.mec-event-date .mec-tooltip:hover .box,.mec-event-status .mec-tooltip:hover .box{opacity:1;visibility:visible;display:block}.mec-profile .mec-event-status{padding:0}.mec-profile .mec-booking-number-of-attendees{font-size:13px;color:#888}.mec-profile .mec-booking-number-of-attendees i,.mec-profile .mec-profile-bookings-view-invoice i{font-size:15px;color:#008aff;vertical-align:text-bottom;margin-right:4px}.mec-booking-attendees{background:#fff;padding:10px}.mec-booking-attendees{width:850px;text-align:center}.mec-booking-attendees-wrapper{border:2px solid #e6e6e6;font-size:14px}.mec-booking-attendees-head{display:table;width:100%;background:#f7f7f7;border-bottom:1px solid #e6e6e6;font-weight:700}.mec-booking-attendees-head span,.mec-booking-attendees-head-content>span{vertical-align:middle;display:table-cell;padding:7px;border-right:1px solid #e6e6e6;font-size:12px}.mec-booking-attendees-head-content{display:table;width:100%;border-bottom:1px solid #e6e6e6}.mec-booking-attendees-wrapper .mec-booking-attendees-head-content:last-child{border:none}.mec-booking-attendees-head span:nth-child(1),.mec-booking-attendees-head-content>span:nth-child(1){width:4%}.mec-booking-attendees-head span:nth-child(2),.mec-booking-attendees-head-content>span:nth-child(2){width:20%}.mec-booking-attendees-head span:nth-child(3),.mec-booking-attendees-head-content>span:nth-child(3){width:24%}.mec-booking-attendees-head span:nth-child(4),.mec-booking-attendees-head-content>span:nth-child(4){width:26%}.mec-booking-attendees-head span:nth-child(5),.mec-booking-attendees-head-content>span:nth-child(5){width:26%}@media only screen and (max-width:759px){.mec-booking-attendees{width:470px}.mec-booking-attendees-head span,.mec-booking-attendees-head-content>span{word-break:break-all}}@media(max-width:1366px){.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:6%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:40%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:12%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:8%}}@media(max-width:1024px){.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:30%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:15%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:10%}}@media(max-width:780px){.mec-profile .mec-profile-bookings tbody tr,.mec-profile i{font-size:12px}.mec-event-date .mec-tooltip .box{min-width:200px}.mec-event-status .mec-tooltip .box{min-width:90px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{padding:4px 5px!important}.mec-profile .mec-profile-bookings tbody tr{font-size:12px}}@media(max-width:480px){.mec-profile .mec-booking-number-of-attendees,.mec-profile .mec-profile-bookings tbody tr,.mec-profile i{font-size:8px!important}.mec-profile .mec-profile-bookings tbody tr td{padding:3px}.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:19%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:12%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:18%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:13%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:13%}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{font-size:8px}.mec-event-date .mec-tooltip .box{min-width:75px}.mec-event-status .mec-tooltip .box{min-width:70px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{padding:4px 5px!important}}.mec-woo-booking-checkout{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;border-radius:0;margin-bottom:6px;min-width:170px;margin-top:5px;text-align:center}.mec-woo-booking-checkout:hover{background:#222;color:#fff}.mec-woo-booking-checkout:focus,.mec-woo-booking-checkout:visited{color:#fff}.single-mec-events .lity-container{max-width:480px;width:480px}.lity-content .mec-events-meta-group-booking{width:100%;padding:20px 50px;background:#fff}.lity-content .mec-events-meta-group-booking .mec-booking form>h4{text-transform:uppercase;font-size:15px;font-weight:700;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative;text-align:center;line-height:1.2;margin-bottom:10px}.lity-content .mec-events-meta-group-booking .mec-booking form>h4:before{padding:1px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-35px;left:50%}.lity-content .mec-events-meta-group-booking .mec-event-ticket-available,.lity-content .mec-events-meta-group-booking .mec-event-ticket-name,.lity-content .mec-events-meta-group-booking .mec-event-ticket-price,.lity-content .mec-events-meta-group-booking .mec-ticket-variation-name,.lity-content .mec-events-meta-group-booking .mec-ticket-variation-price,.lity-content .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;clear:none;padding:5px 1em 3px 0;display:inline-block}.lity-content .mec-events-meta-group-booking .mec-event-ticket-available{margin-bottom:12px}.lity-content .mec-events-meta-group-booking select{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both;font-family:Montserrat,Helvetica,Arial,sans-serif}.lity-content .mec-events-meta-group-booking input[type=email]{color:#888;border:1px solid #e1e1e1;font-size:14px;display:block;width:100%;outline:0}.lity-content .mec-events-meta-group-booking input{margin-bottom:10px!important}.lity-content .mec-book-ticket-variation h5{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:0;clear:none;padding:5px 1em 3px 0;display:inline-block;text-transform:capitalize;font-family:Montserrat,Helvetica,Arial,sans-serif}.lity-content ul.mec-book-tickets-container{padding:0}.lity-content .mec-events-meta-group-booking input[type=email],.lity-content .mec-events-meta-group-booking input[type=number],.lity-content .mec-events-meta-group-booking input[type=text]{outline:0;font-family:Montserrat,Helvetica,Arial,sans-serif;display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both;margin-bottom:2px!important}.lity-content button[type=submit]{position:relative;border:none;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;min-width:170px;margin-top:5px;border-radius:0;margin-bottom:6px}.lity-content button[type=submit]:hover{background:#222}.lity-content .mec-book-tickets-container li{list-style:none}.lity-content .mec-events-meta-group-booking #mec_book_payment_form h4,.lity-content .mec-events-meta-group-booking li h4{font-size:19px;font-weight:700}.lity-content .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li{width:50%}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li:nth-child(even){border:none}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li span{display:block}.lity-content .mec-events-meta-group-booking button[type=submit]:after{display:none;font-family:simple-line-icons;content:"\e098";margin-left:4px;-webkit-animation:rotating 1.2s linear infinite;-moz-animation:rotating 1.2s linear infinite;-ms-animation:rotating 1.2s linear infinite;-o-animation:rotating 1.2s linear infinite;animation:rotating 1.2s linear infinite}.lity-content .mec-events-meta-group-booking button[type=submit].loading:after{display:inline-block}@media only screen and (max-width:480px){.lity-content .mec-events-meta-group-booking{padding:20px;width:340px;margin:0 auto}}.mec-events-meta-group-booking{position:relative}.mec-cover-loader:after{content:'';position:absolute;top:0;right:0;left:0;bottom:0;background:rgba(255,255,255,.5);z-index:99999}.mec-loader{background:rgba(0,0,0,0);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);z-index:9}.mec-loader,.mec-loader:after{border-radius:50%;width:5em;height:5em;z-index:999999999999}.mec-loader{font-size:10px;text-indent:-9999em;border-top:.5em solid rgba(0,0,0,.2);border-right:.5em solid rgba(0,0,0,.2);border-bottom:.5em solid rgba(0,0,0,.2);border-left:.5em solid #fff;-webkit-transform:translateZ(0);-ms-transform:translateZ(0);transform:translateZ(0);-webkit-animation:mecloader 1.1s infinite linear;animation:mecloader 1.1s infinite linear}@-webkit-keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.mec-google-recaptcha{margin:0 0 20px 16px}.mec-wrap *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap :after,.mec-wrap :before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap .clearfix:after,.mec-wrap .clearfix:before{content:'\0020';display:block;overflow:hidden;visibility:hidden;width:0;height:0}.mec-wrap .clearfix:after{clear:both}.mec-wrap .clearfix{zoom:1}.mec-wrap .clear,.mec-wrap .clr{clear:both;display:block;overflow:hidden;visibility:hidden}.mec-wrap .clr{visibility:visible;overflow:visible}.mec-container [class*=col-] img{max-width:100%}.mec-container{margin-right:auto;margin-left:auto;padding-left:10px;padding-right:10px}.mec-container:after,.mec-container:before{content:" ";display:table}.mec-container:after{clear:both}@media only screen and (max-width:479px){.mec-container{width:300px}}@media only screen and (min-width:480px) and (max-width:767px){.mec-container{width:420px}}@media only screen and (min-width:768px) and (max-width:960px){.mec-container{width:768px}}@media only screen and (min-width:961px){.mec-container{width:960px}}@media only screen and (min-width:1200px){.mec-container{width:1196px;padding-left:15px;padding-right:15px}}@media only screen and (min-width:1921px){.mec-container{max-width:1690px}}.mec-wrap .row{margin-left:-10px;margin-right:-10px}.mec-wrap .row:after,.mec-wrap .row:before{content:" ";display:table}.mec-wrap .row:after{clear:both}.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{position:relative;min-height:1px;padding-left:10px;padding-right:10px}@media only screen and (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{padding-left:15px;padding-right:15px}.mec-wrap .row{margin-left:-15px;margin-right:-15px}}.mec-container [class*=col-].alpha{padding-left:0}.mec-container [class*=col-].omega{padding-right:0}.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{float:left}.mec-wrap .col-xs-12{width:100%}.mec-wrap .col-xs-11{width:91.66666666666666%}.mec-wrap .col-xs-10{width:83.33333333333334%}.mec-wrap .col-xs-9{width:75%}.mec-wrap .col-xs-8{width:66.66666666666666%}.mec-wrap .col-xs-7{width:58.333333333333336%}.mec-wrap .col-xs-6{width:50%}.mec-wrap .col-xs-5{width:41.66666666666667%}.mec-wrap .col-xs-4{width:33.33333333333333%}.mec-wrap .col-xs-3{width:25%}.mec-wrap .col-xs-2{width:16.666666666666664%}.mec-wrap .col-xs-1{width:8.333333333333332%}@media (min-width:768px){.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9{float:left}.mec-wrap .col-sm-12{width:100%}.mec-wrap .col-sm-11{width:91.66666666666666%}.mec-wrap .col-sm-10{width:83.33333333333334%}.mec-wrap .col-sm-9{width:75%}.mec-wrap .col-sm-8{width:66.66666666666666%}.mec-wrap .col-sm-7{width:58.333333333333336%}.mec-wrap .col-sm-6{width:50%}.mec-wrap .col-sm-5{width:41.66666666666667%}.mec-wrap .col-sm-4{width:33.33333333333333%}.mec-wrap .col-sm-3{width:25%}.mec-wrap .col-sm-2{width:16.666666666666664%}.mec-wrap .col-sm-1{width:8.333333333333332%}}@media (min-width:961px){.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9{float:left}.mec-wrap .col-md-12{width:100%}.mec-wrap .col-md-11{width:91.66666666666666%}.mec-wrap .col-md-10{width:83.33333333333334%}.mec-wrap .col-md-9{width:75%}.mec-wrap .col-md-8{width:66.66666666666666%}.mec-wrap .col-md-7{width:58.333333333333336%}.mec-wrap .col-md-6{width:50%}.mec-wrap .col-md-5{width:41.66666666666667%}.mec-wrap .col-md-4{width:33.33333333333333%}.mec-wrap .col-md-3{width:25%}.mec-wrap .col-md-2{width:16.666666666666664%}.mec-wrap .col-md-1{width:8.333333333333332%}}@media (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9{float:left}.mec-wrap .col-lg-12{width:100%}.mec-wrap .col-lg-11{width:91.66666666666666%}.mec-wrap .col-lg-10{width:83.33333333333334%}.mec-wrap .col-lg-9{width:75%}.mec-wrap .col-lg-8{width:66.66666666666666%}.mec-wrap .col-lg-7{width:58.333333333333336%}.mec-wrap .col-lg-6{width:50%}.mec-wrap .col-lg-5{width:41.66666666666667%}.mec-wrap .col-lg-4{width:33.33333333333333%}.mec-wrap .col-lg-3{width:25%}.mec-wrap .col-lg-2{width:16.666666666666664%}.mec-wrap .col-lg-1{width:8.333333333333332%}}#mec_woo_add_to_cart_btn{min-width:170px;margin-top:5px;text-align:center}.mec-breadcrumbs{border-radius:2px;padding:9px 15px 6px;font-size:11px;color:#8d8d8d;letter-spacing:0;text-transform:none;font-weight:500;margin:auto 15px 33px 15px;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.025)}.mec-breadcrumbs-modern{margin:auto 0 33px 0}.mec-breadcrumbs a{color:#000;padding-left:4px}.mec-breadcrumbs a:hover{text-decoration:underline}.mec-breadcrumbs i{font-size:8px;margin:0 0 0 4px}.mec-breadcrumbs .container{padding-left:20px}.mec-content-notification a{margin-left:5px}.mec-content-notification{background:#f7f7f7;padding:10px 10px 10px;border:1px solid #e8e8e8}.mec-content-notification p{margin-bottom:0}.mec-fes-form #mec-advanced-wraper div:first-child>ul{border:1px solid #cfeff5;width:auto;box-shadow:0 1px 4px -2px #cfeff5;display:block;margin:5px 0 10px;padding:5px 0;border-radius:2px}.mec-fes-form #mec-advanced-wraper div:first-child>ul:last-of-type{margin-bottom:35px}#mec-advanced-wraper div:first-child>ul span{display:none}#mec-advanced-wraper div:first-child>ul *{display:inline-block;background:#fff;font-size:12px;color:#717273;text-align:center}#mec-advanced-wraper div:first-child>ul>li{width:60px;font-weight:700;margin:0 10px 0 0;padding:4px 0;border-right:1px solid #cfeff5}#mec-advanced-wraper div:first-child>ul>ul>li{margin:0;padding:2px 10px;cursor:pointer;border-radius:2px;transition:all .18s ease}.mec-fes-form #mec-advanced-wraper div:first-child>ul>ul>li.mec-active,.mec-fes-form #mec-advanced-wraper div:first-child>ul>ul>li:hover{background:#40d9f1!important;box-shadow:0 1px 9px -3px #40d9f1;color:#fff!important}.mec-search-bar-wrap .mec-search-form .mec-text-input-search{width:83%}.mec-search-bar-wrap .mec-search-form .mec-ajax-search-result .mec-text-input-search{width:100%;float:none}.mec-search-bar-wrap input#mec-search-bar-input{width:calc(100% - 84%);margin-left:11px;background:#40d9f1;Color:#fff;font-weight:400}.mec-text-input-search+input#mec-search-bar-input{margin-left:-3px}.mec-search-bar-wrap input#mec-search-bar-input:hover{background:#000}.mec-wrap.mec-search-bar-wrap .mec-totalcal-box input{float:none}@media(max-width:768px){.mec-search-bar-wrap .mec-search-form .mec-text-input-search{display:inline-block}}@media(max-width:480px){.mec-search-bar-wrap .mec-search-form .mec-text-input-search{width:64%}.mec-search-bar-wrap input#mec-search-bar-input{width:calc(100% - 67%)}}.mec-wrap.mec-search-bar-wrap .mec-totalcal-box{overflow:visible}.mec-ajax-search-result{position:relative}.mec-search-bar-wrap.mec-wrap .mec-totalcal-box input[type=text]{width:calc(100% - 36px)}.mec-search-bar-wrap.mec-wrap .mec-totalcal-box input[type=text]:focus{border-color:#efefef}div#mec-ajax-search-result-wrap{position:absolute;top:100%;opacity:0;visibility:hidden;width:calc(100% - 2px);min-height:50px;left:0;right:0;padding:0 10px;z-index:9999;transition:all .3s ease}.mec-ajax-search-result-events{background:#fff;padding:10px 20px;border:1px solid #efefef;border-top:none}.mec-ajax-search-result-events article:first-of-type{border:none}article.mec-search-bar-result{text-align:left;margin-bottom:0;padding-bottom:25px;padding-top:26px;border-top:1px solid #efefef;transition:all .33s ease;clear:both}.mec-search-bar-result .mec-event-list-search-bar-date{width:64px;height:64px;margin-right:10px;font-size:11px;text-transform:uppercase;float:left;text-align:center;padding-top:2px}.mec-search-bar-result .mec-event-list-search-bar-date span{font-size:40px;line-height:30px;font-weight:700;display:block;margin-bottom:6px;letter-spacing:1px}.mec-search-bar-result .mec-event-image{float:left;margin-right:20px;width:65px;height:auto}.mec-search-bar-result .mec-event-time{font-size:11px;line-height:1.1;margin:0}.mec-search-bar-result .mec-event-time i{color:#40d9f1;float:none;width:unset;height:unset;font-size:inherit;margin-right:3px;border:none;padding:0}.mec-search-bar-result .mec-event-title{font-size:13px;padding:0;margin:10px 0 8px;font-weight:700;text-transform:uppercase}.mec-search-bar-result .mec-event-title a{text-decoration:none;color:#494949;transition:color .3s ease}.mec-search-bar-result .mec-event-detail{font-size:13px;line-height:1.3;font-family:Roboto,sans-serif;color:#9a9a9a;margin-bottom:0}.mec-wrap.mec-modern-search-bar .mec-totalcal-box{background:rgba(255,255,255,.87);border:none;padding:35px;border-radius:3px;box-shadow:0 3px 13px rgba(0,0,0,.4);position:relative}.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=search],.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=text]{height:58px;background:rgba(255,255,255,.99);border-radius:2px;box-shadow:0 4px 8px rgba(0,0,0,.1) inset;border:1px solid #ccc;width:100%;padding-left:45px;padding-right:13px;font-size:16px}.mec-wrap.mec-modern-search-bar .mec-totalcal-box .mec-text-input-search i{position:absolute;background:0 0;border:none;font-size:21px;left:15px;top:calc(50% - 19px);color:#40d9f1}.mec-wrap.mec-modern-search-bar .mec-text-input-search{position:relative;height:58px}.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=submit]{height:58px;border:none;border-radius:2px;background:#fc4a1a;font-size:17px;font-weight:700!important}.mec-wrap.mec-modern-search-bar .mec-text-input-search+input#mec-search-bar-input{margin-left:0}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{height:45px;background:rgba(255,255,255,.99);border-radius:2px;box-shadow:0 4px 8px rgba(0,0,0,.1) inset;border:1px solid #ccc;padding-right:13px;font-size:16px;border-left:0}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap i{height:45px;background:#ffff;border-radius:2px 0 0 2px;box-shadow:none;border:1px solid #ccc;font-size:15px;padding-top:14px;border-right:0;color:#40d9f1;margin-right:-1px}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap{min-height:64px}@media(max-width:768px){.mec-wrap.mec-modern-search-bar .mec-search-form .mec-text-input-search{width:70%}.mec-wrap.mec-modern-search-bar input#mec-search-bar-input{width:calc(100% - 72%)}}@media(max-width:480px){.mec-wrap.mec-modern-search-bar input#mec-search-bar-input{width:92%;padding:0 10px;position:relative;display:block;margin-left:11px}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-text-input-search{width:100%;margin-bottom:20px}.mec-wrap.mec-modern-search-bar .mec-text-input-search+input#mec-search-bar-input{margin-left:10px}}.mec-related-events-wrap{margin-top:50px}.mec-related-events-wrap h3.mec-rec-events-title:before{content:"";background:#2c2f34;width:46px;height:4px;position:absolute;top:59px;left:0}.mec-related-events-wrap h3.mec-rec-events-title{font-size:21px;font-weight:600;padding:17px 0;margin-bottom:28px;text-transform:uppercase;border-bottom:1px solid #e8e8e8;position:relative}.mec-related-event-post figure{margin:0}.mec-related-event-post figure img{width:100%}.mec-related-event-content{background-color:#fff;margin:-27px 30px 15px;position:relative;max-width:90%;padding:13px 21px 16px 19px}.mec-related-event-content h5 a{font-size:16px;color:#121212;font-weight:600;transition:all .3s ease}.mec-fes-form-cntt #mec-organizer-payments ul{list-style:none;background:0 0;margin:0}.mec-fes-form-cntt #mec-organizer-payments ul li h4{background:0 0;letter-spacing:.2px;display:inline-block;padding-left:0!important;padding-bottom:10px!important;margin:0;margin-bottom:1px;letter-spacing:1px;text-transform:capitalize;padding-top:1px}.mec-fes-form-cntt #mec-organizer-payments ul>li{width:100%;display:inline-block;vertical-align:top;padding:0;margin:0}#mec-login-form.mec-login-form{width:100%;background:#fff;padding:20px;margin:0 auto;text-align:center;position:relative}#mec-login-form.mec-login-form .mec-login-input{display:block;width:286px;margin:0 auto;margin-bottom:12px}#mec-login-form.mec-login-form .mec-login-forgotpassword{display:inline-block}.mec-login-forgotpassword a{color:#000}#mec-login-form.mec-login-form .mec-login-submit{float:right;text-align:right;width:49%;padding-right:2px}#mec-login-form.mec-login-form .mec-login-input input{border:none;box-shadow:none;background:#fff;color:#ccc;border-left:1px solid #e6e6e6;padding:0;height:100%;background-image:none!important;padding-left:10px;padding-right:0;width:222px;margin-left:0;clear:none;float:left}#mec-login-form.mec-login-form .mec-login-input label{border:1px solid #e6e6e6;height:52px;display:inline-block;padding:0;border-radius:3px;overflow:hidden;box-shadow:0 2px 4px rgba(0,0,0,.04)}#mec-login-form.mec-login-form .mec-login-input label i{padding:15px 13px 17px 16px;vertical-align:middle;font-size:20px;width:50px;color:#c5cad0;background:#fafafa;margin-right:0;float:left}#mec-login-form.mec-login-form .mec-login-forgotpassword{float:left;width:49%;text-align:left;padding-top:10px;font-size:13px;padding-left:2px}#mec-login-form.mec-login-form button{width:120px;height:44px;border:none;color:#fff;border-radius:3px;font-size:12px;font-weight:700;letter-spacing:1px;text-transform:uppercase;transition:all .22s ease;margin:0;min-width:unset}.mec-login-form button{box-shadow:0 4px 22px -7px #40d9f1;background-color:#40d9f1}#mec-login-form.mec-login-form button:hover{background:#222;box-shadow:0 3px 14px -4px #333}#mec-login-form.mec-login-form .mec-login-form-footer{width:286px;margin:0 auto;margin-top:20px;clear:both;position:relative;display:block;min-height:50px}#mec-login-form.mec-login-form .mec-ajax-login-loading{position:absolute;background:#ffffffc2;left:0;right:0;top:0;bottom:0}#mec-login-form.mec-login-form .lds-ripple{position:absolute;width:64px;height:64px;top:calc(50% - 23px);left:calc(50% - 23px)}#mec-login-form.mec-login-form .lds-ripple div{position:absolute;border:4px solid #40d9f1;opacity:1;border-radius:50%;animation:lds-ripple 1.2s cubic-bezier(0,.2,.1,.8) infinite}#mec-login-form.mec-login-form .lds-ripple div:nth-child(2){animation-delay:-.5s}#mec-login-form.mec-login-form .mec-ajax-login-loading-text{position:absolute;min-width:200px;top:calc(50% - 18px);left:calc(50% - 124px);color:#fff;padding:10px 22px;border-radius:3px;background:#fff;height:47px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text strong{color:#3fcc60}#mec-login-form.mec-login-form .mec-ajax-login-loading-text strong:before{content:"";position:absolute;top:8px;left:1px;border-right:2px solid #3fcc60;border-bottom:2px solid #3acb5c;transform:rotate(45deg);transform-origin:0 100%;color:#000;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards;width:8px;height:14px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong:after{content:"";position:absolute;top:14px;left:5px;border-bottom:2px solid #ff5d39;transform:rotate(45deg);transform-origin:0 100%;color:#000;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards;width:14px;height:4px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong{color:#ff5d39}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong:before{border-color:#ff5d39;border-bottom:none}@keyframes lds-ripple{0%{top:28px;left:28px;width:0;height:0;opacity:1}100%{top:-1px;left:-1px;width:58px;height:58px;opacity:0}}.mec-book-form-gateway-checkout [id*=mec_do_transaction_stripe_] .mec-form-row:first-child{margin-bottom:20px}.mec-events-meta-group-booking .StripeElement{box-sizing:border-box;height:40px;padding:10px 12px;border:1px solid transparent;border-radius:4px;background-color:#fff;box-shadow:0 1px 3px 0 #e6ebf1;-webkit-transition:box-shadow 150ms ease;transition:box-shadow 150ms ease;margin-bottom:20px;background:#fff}.mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text]{box-sizing:border-box;height:40px;padding:10px 12px;border:0!important;border-radius:4px;background-color:#fff;box-shadow:0 1px 3px 0 #e6ebf1!important;-webkit-transition:box-shadow 150ms ease;transition:box-shadow 150ms ease;margin-bottom:20px;background:#fff!important}.mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text]:focus{outline:0}.mec-events-meta-group-booking .StripeElement--focus{box-shadow:0 1px 3px 0 #cfd7df}.mec-events-meta-group-booking .StripeElement--invalid{border-color:#fa755a}.mec-events-meta-group-booking .StripeElement--webkit-autofill{background-color:#fefde5!important}.mec-booking-tab-content .button,.mec-booking-tab-content .mec-reg-field-add-option,.mec-fes-form .mec-form-row .button:not(.wp-color-result),.mec-fes-form input[type=file],ul#mec_reg_form_fields li .mec_reg_field_remove{height:40px;margin-top:1px;text-decoration:none;font-size:14px;line-height:34px!important;margin:0;padding:0 15px 1px!important;text-transform:none;letter-spacing:0;font-weight:600;color:#40d9f1;background:#fff;border-radius:3px;margin-right:8px;border:2px solid #cfeff5;box-shadow:0 2px 6px -3px #cfeff5}.mec-booking-tab-content .button:hover,.mec-booking-tab-content .mec-reg-field-add-option:hover,.mec-fes-form .mec-form-row .button:not(.wp-color-result):hover{background:#40d9f1;color:#fff;border-color:#40d9f1;box-shadow:0 2px 6px -3px #40d9f1}.mec-fes-form .mec-form-row input+button.button{vertical-align:top}.mec-fes-form .mec-form-row .quicktags-toolbar input.button.button-small{border-width:1px;padding:0 7px;color:#80c6d2;font-weight:400;margin:1px;transform:none}.mec-fes-form input[type=file]{max-width:166px;text-align:center;height:44px;transition:all .2s ease;border-radius:5px!important;border:2px dashed #b8e9f3}.mec-fes-form input[type=file]:hover{box-shadow:0 2px 16px -3px #cfeff5}.mec-fes-form input[type=file]::-webkit-file-upload-button{visibility:hidden;width:1px;height:38px}.mec-fes-form input[type=file]::-moz-file-upload-button{visibility:hidden;width:1px;height:38px}.mec-fes-form .mec-meta-box-fields>label{padding:0}#mec_reg_form_fields li{list-style:none}ul#mec_reg_form_fields{padding:0;margin:0}ul#mec_reg_form_fields li{background:#f8feff;margin:6px -20px;padding:15px 25px 10px;width:auto;font-size:13px;border-top:1px solid #e8fafd;border-bottom:1px solid #e8fafd;position:relative}ul#mec_reg_form_fields li .mec_reg_field_remove{position:absolute;right:10px;top:10px;margin:0;padding:6px 8px!important;font-size:11px;line-height:12px!important;min-height:10px;height:auto;display:block;cursor:pointer;color:#ea6485;border-color:#ffd2dd;letter-spacing:.4px}ul#mec_reg_form_fields li .mec_reg_field_remove:hover{background:#ea6485;color:#fff;border-color:#ea6485;box-shadow:0 2px 6px -3px #ea6485}#mec_reg_form_fields input[type=checkbox],#mec_reg_form_fields input[type=radio],.mec-form-row input[type=checkbox],.mec-form-row input[type=radio]{background-color:#fff;border:1px solid #cfeff5;box-shadow:0 1px 3px -1px #cfeff5;padding:9px;border-radius:3px;min-width:24px;min-height:24px;display:inline-block!important;vertical-align:middle;float:none;transition:all .18s ease;outline:0;margin:1px 4px 4px 0;text-align:left;cursor:pointer;-webkit-appearance:none;-moz-appearance:none}#mec_reg_form_fields input[type=checkbox]:focus,#mec_reg_form_fields input[type=radio]:focus,.mec-form-row input[type=checkbox]:focus,.mec-form-row input[type=radio]:focus{outline:0}#mec_reg_form_fields input[type=radio],.mec-form-row input[type=radio]{-webkit-appearance:none;border-radius:20px!important;min-width:20px;min-height:20px;margin:0 0 4px 0;vertical-align:middle}#mec_reg_form_fields input[type=checkbox]:hover,#mec_reg_form_fields input[type=radio]:hover,.mec-form-row input[type=checkbox]:hover,.mec-form-row input[type=radio]:hover{border-color:#40d9f1}#mec_reg_form_fields input[type=checkbox]:checked,#mec_reg_form_fields input[type=radio]:checked,.mec-fes-form .mec-form-row input[type=checkbox]:checked,.mec-fes-form .mec-form-row input[type=radio]:checked{box-shadow:0 1px 6px -2px #40d9f1;border-color:#40d9f1;background:#40d9f1!important;border-radius:2px;position:relative}.mec-form-row input[type=radio]:checked{box-shadow:0 1px 6px -2px #40d9f1,inset 0 0 0 3px #fff!important}#mec_reg_form_fields input[type=checkbox]:checked::before,.mec-form-row input[type=checkbox]:checked:before{content:"";font:normal;position:absolute;top:12px;left:5px;margin:0;vertical-align:middle;line-height:1;border-right:2px solid #fff!important;border-bottom:2px solid #fff!important;transform:rotate(45deg);transform-origin:0 100%;color:#fff;transition:all .2s ease;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards}@keyframes checkbox-check{0%{width:0;height:0;border-color:#fff;transform:translate3d(0,0,0) rotate(45deg)}33%{width:6px;height:0;transform:translate3d(0,0,0) rotate(45deg)}100%{width:6px;height:12px;border-color:#fff;transform:translate3d(0,-12px,0) rotate(45deg)}}#mec_reg_form_field_types .button{position:relative;outline:0;border-radius:50px;padding:2px 21px 2px 31px!important;line-height:1;font-size:11px;font-weight:600;color:#40d9f1;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 2px 6px -3px #40d9f1;border:2px solid #cfeff5}#mec_fes_location_remove_image_button,#mec_fes_organizer_remove_image_button,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button,#mec_meta_box_tickets_form [id^=mec_ticket_row] button,#mec_reg_form_field_types .button.red{color:#ea6485;box-shadow:0 2px 6px -3px #ea6485;background:#fff;border-color:#ffd2dd}#mec_fes_location_remove_image_button:hover,#mec_fes_organizer_remove_image_button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button:hover,#mec_meta_box_tickets_form [id^=mec_ticket_row] button:hover,#mec_reg_form_field_types .button.red:hover{background:#ea6485;color:#fff}#mec_reg_form_field_types .button:before{position:absolute;left:12px;color:#40d9f1;content:"\e095";font-family:simple-line-icons;font-size:13px;display:inline-block}#mec_reg_form_field_types .button.red:before{color:#ea6485}#mec_reg_form_field_types .button.red:hover:before,#mec_reg_form_field_types .button:hover:before{color:#fff}#mec_fes_location_remove_image_button:hover,#mec_fes_organizer_remove_image_button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button:hover,#mec_meta_box_tickets_form [id^=mec_ticket_row] button:hover,#mec_price_per_dates_container .button:hover,#mec_reg_form_field_types .button.red:hover{color:#fff;border:2px solid #ea6485}#mec_taxes_fees_container_toggle [id^=mec_remove_fee_button],#mec_ticket_variations_list [id^=mec_remove_ticket_variation_button]{color:#ea6485;border-color:#ffd2dd}#mec_taxes_fees_container_toggle [id^=mec_remove_fee_button]:hover,#mec_ticket_variations_list [id^=mec_remove_ticket_variation_button]:hover{color:#fff;border:2px solid #ea6485;background:#ea6485}#mec_fees_list [id^=mec_remove_fee_button],#mec_meta_box_ticket_variations_form .mec-form-row [id^=mec_remove_ticket_variation_button]{margin-left:14px!important}#mec_meta_box_hourly_schedule_days .mec-add-hourly-schedule-button{line-height:10px!important}#mec_meta_box_tickets_form [id^=mec_ticket_row] .mec_add_price_date_button{color:#40d9f1;box-shadow:0 2px 6px -3px #40d9f1;border:2px solid #cfeff5}#mec_meta_box_tickets_form [id^=mec_ticket_row] .mec_add_price_date_button:hover,#mec_reg_form_field_types .button:hover{color:#fff;border:2px solid #40d9f1;background:#40d9f1}.mec-form-row input+span.mec-tooltip,.mec-form-row select+span.mec-tooltip{bottom:10px}.mec-form-row label+span.mec-tooltip{bottom:8px}.mec-form-row textarea+span.mec-tooltip{bottom:auto;vertical-align:top;top:12px}.mec-form-row span+span.mec-tooltip{bottom:0;vertical-align:middle}.mec-form-row .mec-col-8 input[type=text],.mec-form-row .mec-col-8 select,.mec-form-row .mec-col-8 span.mec-archive-skins{vertical-align:top}.mec-form-row input:disabled{opacity:.6;background:#f6f6f6}.mec-form-row p{font-size:12px!important;line-height:18px!important;color:#97b2bb!important}.mec-form-row p.description{font-style:italic}.ui-datepicker.ui-widget{border:1px solid #e8e8e8;box-shadow:0 1px 9px rgba(0,0,0,.12);font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif}table.ui-datepicker-calendar{margin-bottom:0}.ui-datepicker-calendar th{font-weight:700;color:#4a4b4c}.ui-datepicker-calendar td,.ui-datepicker-calendar th,.ui-datepicker-calendar tr{border:none}.ui-datepicker.ui-widget select{font-weight:600;font-size:12px;display:inline-block;border-radius:2px;padding:2px 10px;margin:5px 3px;width:auto;min-height:20px;height:26px;border:1px solid #e3e3e3;box-shadow:inset 0 1px 3px rgba(0,0,0,.04)}.ui-datepicker.ui-widget table{border-spacing:2px;border:none}.ui-datepicker.ui-widget td,.ui-datepicker.ui-widget tr{padding:0;background:0 0!important}.ui-datepicker.ui-widget td a{color:#9a9b9c;font-weight:600;width:30px;height:30px;line-height:30px;display:inline-block;border-radius:33px;padding:0;background:#fff;transition:all .2s ease}.ui-datepicker.ui-widget td a.ui-state-active,.ui-datepicker.ui-widget td a:hover{background:#40d9f1;color:#fff}.ui-datepicker.ui-widget .ui-datepicker-next,.ui-datepicker.ui-widget .ui-datepicker-prev{color:#40d9f1;width:30px;height:30px;line-height:30px;display:inline-block;text-align:center;border-radius:33px;background:#ecfcff;transition:all .2s ease}.ui-datepicker.ui-widget .ui-datepicker-next:hover,.ui-datepicker.ui-widget .ui-datepicker-prev:hover{background:#fff;box-shadow:0 0 7px -3px rgba(0,0,0,.4)}.mec-fes-form .mec-tooltip .dashicons-before:before{color:#40d9f1}.mec-fes-form button[type=submit].mec-fes-sub-button{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;border-radius:3px;background:#40d9f1;color:#fff;height:54px;font-size:17px;font-weight:700;box-shadow:0 2px 8px -4px #40d9f1;display:block;transition:all .28s ease;text-transform:uppercase;margin:20px 0 0;padding:14px 20px;border:0;cursor:pointer;text-align:center;letter-spacing:.1em;line-height:1}.mec-fes-form button[type=submit].mec-fes-sub-button:hover{box-shadow:0 2px 12px -2px #40d9f1}.mec-fes-form button[type=submit].mec-fes-sub-button:focus{margin-bottom:-2px;background:#1dc2dc}.mec-fes-form .mec-title span.mec-dashicons{color:#40d9f1;float:left;margin-right:5px}.mec-fes-form .mec-tooltip .box h5{padding:14px 2px}#mec_fes_form,.mec-fes-form-top-actions{max-width:838px;margin:0 auto}@media only screen and (min-width:961px){.mec-fes-form .mec-fes-form-cntt{width:calc(100% - 300px);float:left;padding-right:20px;max-width:538px;display:block}.mec-fes-form .mec-fes-form-sdbr{width:300px}}.mec-fes-form .quicktags-toolbar,.mec-fes-form div.mce-toolbar-grp{background:#ecfcff;border-bottom:1px solid #cfeff5;box-shadow:0 1px 0 1px #cfeff5}.mec-fes-form .quicktags-toolbar{margin-right:-1px;border-top:1px solid #cfeff5}.mec-fes-form div.mce-statusbar{border-top-color:#cfeff5}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-listbox{border:1px solid #cfeff5;border-radius:3px}.mec-fes-form .mce-tinymce.mce-container.mce-panel{border:1px solid #cfeff5;box-shadow:0 2px 6px -3px #cfeff5;border-radius:2px 0 2px 2px}.mec-fes-form .wp-editor-tools .wp-media-buttons{transform:translateY(-6px);margin-top:-6px}.mec-fes-form .wp-editor-tabs{padding-right:0;margin-right:-2px}.mec-fes-form .wp-editor-tabs .wp-switch-editor{border-radius:3px 3px 0 0;border-color:#cfeff5;background:#fff;color:#96b8bd;border-bottom:1px solid #ecfcff}.mec-fes-form .html-active .switch-html,.mec-fes-form .tmce-active .switch-tmce,.mec-fes-form .wp-editor-tabs .wp-switch-editor:active{background:#ecfcff;color:#40d9f1}.mec-fes-form .wp-editor-container,.mec-fes-form div.mce-edit-area.mce-panel{border:none;box-shadow:none}.mec-fes-form .wp-editor-container textarea.wp-editor-area{max-width:100%}.mec-fes-form .mce-toolbar .mce-listbox button{font-size:12px;line-height:22px;color:#798f96}.mec-fes-form .mce-toolbar .mce-ico{color:#627f88}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-active,.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn:active,.mec-fes-form .qt-dfw.active{background:#fff;border-color:#40d9f1;box-shadow:inset 0 2px 6px -3px rgba(106,231,255,.7)}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-active .mce-ico{color:#40d9f1}body .mce-menu .mce-menu-item.mce-active.mce-menu-item-normal,body .mce-menu .mce-menu-item.mce-selected,body .mce-menu .mce-menu-item:focus,body .mce-menu .mce-menu-item:hover,body.mce-menu .mce-menu-item.mce-active.mce-menu-item-preview{background:#40d9f1;color:#fff}.mec-fes-form .mec-not-in-days-day{display:inline-block;padding:4px 32px 4px 15px;border-radius:33px;border:1px solid #cfeff5;box-shadow:0 1px 3px -1px #cfeff5;background:#fbfeff;color:#40d9f1;vertical-align:top}.mec-fes-form .mec-not-in-days-remove{display:inline-block;padding:0 1px 0 0;margin-left:-30px;vertical-align:sub;background:#ff918a;color:#fff;font-family:cursive;width:21px;height:21px;line-height:17px;text-align:center;border-radius:20px;cursor:pointer}.mec-fes-list ul li .mec-event-status{float:left;margin-right:10px;margin-left:0;font-size:11px;font-weight:400;letter-spacing:.3px;border-radius:3px;padding:4px 8px}.mec-fes-form .post-status.mec-book-confirmed:before,.mec-fes-list ul li .mec-event-status.mec-book-confirmed:before{content:"";margin:0;vertical-align:middle;line-height:1;border-right:2px solid #fff!important;border-bottom:2px solid #fff!important;transform:rotate(45deg);color:#fff;width:6px;height:12px;float:left;margin-right:6px}.mec-fes-list ul li .mec-fes-event-export a:before,.mec-fes-list ul li .mec-fes-event-remove:before,.mec-fes-list ul li .mec-fes-event-view a:before,.mec-fes-list-top-actions a:before{content:"\e054";font-family:simple-line-icons;font-size:13px;vertical-align:middle}.mec-fes-list ul li .mec-fes-event-view a:before{content:"\e087"}.mec-fes-list-top-actions a:before{content:"\e095";font-weight:400;margin-right:6px}.mec-fes-list ul li .mec-fes-event-export a:before{content:"\e083"}.mec-fes-form .post-status{border-radius:20px}.mec-fes-form .post-status.mec-book-confirmed:before{height:20px;width:9px;margin:3px 10px}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker-calendar th{height:auto;padding:0}.ui-datepicker .ui-datepicker-calendar td a,.ui-datepicker-calendar th{font-size:14px;line-height:30px}.mec-fes-form .description{font-size:16px}.mec-fes-form input[type=file]{text-align:left}.mec-fes-export-wrapper{width:640px;background:#f8feff;padding:40px 25px}.mec-fes-export-wrapper .mec-fes-btn-date{font-size:16px;line-height:44px;overflow:hidden}.mec-fes-export-wrapper .date-messgae{font-family:sans-serif;padding:2px 18px}.mec-fes-list ul li .mec-event-export-csv,.mec-fes-list ul li .mec-event-export-excel{font-size:12px;border:1px solid #40d9f1;padding:1px 4px;background:rgba(141,229,243,.18);border-radius:4px;color:#40d9f1;font-family:sans-serif;cursor:pointer;display:inline-block;height:26px;line-height:22px}.mec-export-badge{font-size:11px;color:#40d9f1;width:auto;height:24px;line-height:25px;display:inline-block;padding:0 8px;text-align:center;border-radius:3px;background:#ecfcff;transition:all .2s ease}.mec-fes-list ul li .mec-fes-event-export{font-size:11px;background:#f7f7f7;float:right;margin-left:5px}.mec-fes-list ul li .mec-fes-event-export:hover{cursor:pointer;background:#90f0e0;border-color:#4dc8cc}.mec-fes-export-wrapper ul{padding:0;width:100%;text-align:center}.mec-fes-export-wrapper ul li{list-style:none;display:inline-block;width:30%;padding:10px 15px 10px 32px;border-radius:3px;margin-bottom:15px;border:1px solid #cfeff5;box-shadow:0 2px 6px -4px #cfeff5;background:#fff;line-height:normal;margin-right:10px;position:relative;cursor:pointer;font-size:13px;line-height:1;transition:all .2s ease}.mec-fes-export-wrapper ul li:nth-child(3n+0){margin-right:0}.mec-fes-export-wrapper ul li:hover{box-shadow:0 2px 16px -1px #c6e8ef}.mec-fes-export-wrapper ul li:before{content:"";position:absolute;display:inline-block;background:#fff;width:15px;height:15px;margin:-1px 0 0 5px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32);border-radius:50%;left:9px;top:calc(50% - 7px)}.mec-fes-export-wrapper ul li.fes-export-date-active{color:#40d9f1}.mec-fes-export-wrapper ul li.fes-export-date-active:before{width:15px;height:15px;border:6px solid #40d9f1;background:#fff;box-shadow:0 3px 16px -3px #40d9f1}.mec-fes-btn-export{margin-left:15px;margin-top:12px}.mec-fes-btn-export span{position:relative;border:none;border-radius:3px;color:#fff!important;display:inline-block;font-size:13px;line-height:1;text-transform:none;font-weight:400;text-decoration:none;cursor:pointer;margin-right:4px;line-height:1;letter-spacing:0;padding:15px 22px;background:#39c36e;box-shadow:0 1px 7px -3px #39c36e!important;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;cursor:pointer;margin-left:6px}.mec-fes-btn-export span:hover{background:#222}.mec-event-export-excel:before,span.mec-event-export-csv:before{content:"\e083";font-family:simple-line-icons;font-size:13px;vertical-align:middle;margin-right:7px;margin-top:-1px;display:inline-block}.mec-fes-list .wn-p-t-right{min-width:170px;max-width:200px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#000;color:#fff;font-weight:400;font-size:14px;letter-spacing:.5px;line-height:1.5;position:absolute;z-index:99999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #535a61;visibility:hidden;opacity:0;transition:opacity .23s;padding:5px 10px 6px;border-radius:8px;text-align:center;font-style:normal}.mec-fes-list .mec-fes-event-export:hover .wn-p-t-right,.mec-fes-list .mec-fes-event-remove:hover .wn-p-t-right,.mec-fes-list .mec-fes-event-view:hover .wn-p-t-right{visibility:visible;opacity:1}.mec-fes-list .wn-p-t-right i{position:absolute!important;top:100%;right:50%;margin-top:-6px!important;margin-right:-6px!important;width:12px;height:24px;overflow:hidden;transform:rotate(-90deg)}.mec-fes-list .wn-p-t-right i:after{content:'';position:absolute;width:12px;height:12px;left:0;top:50%;transform:translate(50%,-50%) rotate(-45deg);background-color:#000;box-shadow:0 8px 9px -4px #535a61}.mec-fes-form .select2-container{min-height:38px;box-sizing:border-box;margin-bottom:8px;padding:0 6px;border-radius:2px;border:1px solid #ddd;box-shadow:inset 0 1px 6px rgba(0,0,0,.07);background-color:#fff;color:#32373c;outline:0;transition:50ms border-color ease-in-out;min-width:200px;font-size:14px}.mec-fes-form .select2-selection{border:none;background:0 0;padding-top:2px;width:100%;height:100%}.mec-fes-form .select2-container--default.select2-container--focus .select2-selection{border:none!important;outline:0}.mec-fes-form .select2-container--default .select2-selection--single .select2-selection__arrow{top:5px;right:4px}.select2-results{font-size:14px}.mec-fes-category-children,.mec-fes-category-children .mec-fes-category-children{padding-left:24px}.mec-wrap .mec-timeline-events-container a,.mec-wrap .mec-timeline-events-container div,.mec-wrap .mec-timeline-events-container h4,.mec-wrap .mec-timeline-events-container p,.mec-wrap .mec-timeline-events-container span{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important}.mec-timeline-events-container{margin-left:19px;padding-top:20px;padding-bottom:9px}.mec-events-timeline-wrap{position:relative;display:block;overflow:visible;padding-left:95px}.mec-events-timeline-wrap:before{width:1px;content:'';height:100%;position:absolute;background:#dedede;left:95px}.mec-timeline-month-divider+.mec-timeline-events-container{padding-top:110px}.mec-timeline-right-content{float:right;width:300px}.mec-timeline-left-content{float:left;width:calc(100% - 300px);padding-left:15px;padding-right:15px}.mec-timeline-month-divider{position:absolute;display:block;background:#fff;right:calc(100% - 95px);left:0;width:190px;text-align:center;border:1px solid #dedede;border-radius:50px;font-size:15px;padding:12px 27px}.mec-timeline-event-date{position:relative}.mec-timeline-events-container .mec-timeline-event-date:before{content:'';width:10px;height:10px;position:absolute;background:#40d9f1;border-radius:50px;top:8px;left:-23px;z-index:99}.mec-timeline-events-container .mec-timeline-event-date:after{content:'';width:20px;height:20px;position:absolute;background:rgba(64,217,241,.3);border-radius:50px;top:3px;left:-28px}.mec-timeline-event-date{float:left;width:17%;margin-top:27px}.mec-timeline-event-content{float:left;width:82%;background:#fff;box-shadow:0 10px 30px 0 rgba(0,0,0,.1);border-radius:10px;overflow:visible;position:relative}.mec-timeline-main-content{padding:23px 30px}.mec-timeline-main-content h4{margin-bottom:15px}.mec-timeline-main-content h4 a{font-size:25px;font-weight:700;color:#000;line-height:33px;text-decoration:none}.mec-timeline-main-content p{font-size:15px;color:#515151;line-height:24px;margin-bottom:36px}a.mec-timeline-readmore{width:100%;display:block;text-align:center;color:#fff;text-decoration:none;line-height:52px;font-size:17px;font-weight:700;-webkit-transition:all .2s ease;transition:all .2s ease;border-radius:0 0 10px 10px}a.mec-timeline-readmore:hover{background:#222;color:#fff}.mec-timeline-event-time .mec-time-details{display:inline-block;margin-left:7px;font-size:13px;line-height:13px;font-weight:500}.mec-timeline-event-time i{vertical-align:middle}.mec-timeline-event-time{background:rgba(64,217,241,.11);display:inline-block;padding:4px 20px 8px;border-radius:50px}.mec-timeline-event-location address{font-style:normal;margin-bottom:0}.mec-timeline-event-location address span{font-size:13px;font-weight:500;vertical-align:middle;margin-left:6px}.mec-timeline-event-location address i{font-size:17px;vertical-align:middle}.mec-timeline-event-location{background:rgba(64,217,241,.11);display:inline-block;padding:7px 20px 11px;border-radius:20px;line-height:1.24}.mec-timeline-event-details+.mec-timeline-event-details{margin-top:12px}.mec-timeline-event-content .col-md-4{padding:0}.mec-timeline-event-content:after{content:'';display:block;position:absolute;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-timeline-event-content:after{top:30px;border-color:transparent #fff transparent transparent;left:-10px}.mec-timeline-event-image img{border-radius:0 10px 0 0;width:100%}.mec-timeline-event-image a{display:block;line-height:0}a.mec-timeline-readmore i{vertical-align:middle;margin-left:10px;font-size:9px}.mec-wrap .mec-timeline-event-content a.mec-timeline-readmore:hover{background:#444}@media(min-width:1024px){.mec-past-event.mec-timeline-event{margin:50px 0}}@media(max-width:1023px){.mec-past-event.mec-timeline-event{margin:25px 0}.mec-events-timeline-wrap{padding-left:20px}.mec-events-timeline-wrap:before{left:20px}}@media (max-width:1200px) and (min-width:992px){.mec-timeline-event-content{width:81%}.mec-timeline-event-date{width:18%}}@media (max-width:992px){.mec-timeline-left-content,.mec-timeline-right-content{float:none;width:100%;text-align:center}.mec-timeline-right-content .mec-timeline-event-image{text-align:center}.mec-timeline-right-content .mec-timeline-event-image img{max-width:300px;border-radius:10px;margin-top:35px}}@media (max-width:440px){.mec-timeline-right-content .mec-timeline-event-image img{margin-top:0}}@media (max-width:320px){.mec-timeline-event-content,.mec-timeline-event-date{float:none;width:100%}.mec-timeline-event-date{margin-bottom:8px}.mec-timeline-event-content:after{display:none}.mec-timeline-main-content{padding:23px 0}.mec-timeline-main-content p{font-size:13px}.mec-timeline-main-content h4 a{font-size:23px;line-height:24px}.mec-time-details span{font-size:11px}.mec-timeline-event-location address span{font-size:12px}a.mec-timeline-readmore{line-height:44px;font-size:14px}}.mec-event-tile-view article.mec-tile-item{height:400px;margin:15px 0;border-radius:22px;padding:35px 25px;position:relative;color:#fff;background-size:cover!important;background-position:center!important;box-shadow:0 2px 9px rgba(0,0,0,.25);transition:all .22s ease}.mec-event-tile-view article.mec-tile-item:hover{box-shadow:0 4px 19px rgba(0,0,0,.5)}.mec-event-tile-view article.mec-tile-item div{position:relative;z-index:3}.mec-event-tile-view article.mec-tile-item:after,.mec-event-tile-view article.mec-tile-item:before{position:absolute;background:-moz-linear-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);background:-webkit-gradient(left top,right top,color-stop(0,rgba(0,0,0,.35)),color-stop(65%,rgba(0,0,0,.48)),color-stop(100%,rgba(0,0,0,.72)));background:-webkit-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);background:linear-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);content:"";left:0;right:0;bottom:0;top:0;width:100%;height:100%;display:block;border-radius:22px;z-index:1}.mec-event-tile-view article.mec-tile-item:after{background-color:inherit;background-image:none;top:35px;bottom:auto;height:40px;border-radius:0 3px 3px 0;width:97px;z-index:2;box-shadow:2px 1px 7px rgba(0,0,0,.1)}.mec-event-tile-view article.mec-tile-item .event-tile-view-head{padding:8px 3px;font-size:16px;font-weight:700;margin-bottom:50px;text-transform:uppercase}.mec-event-tile-view article.mec-tile-item .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-skin-tile-month-navigator-container{position:relative;text-align:center;font-size:12px;height:80px;background:#f7f7f7;padding:28px;border-radius:11px;margin-bottom:20px}.mec-skin-tile-month-navigator-container:after,.mec-skin-tile-month-navigator-container:before{content:'';display:block;position:absolute;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-skin-tile-month-navigator-container:after{bottom:-20px;border-color:#f7f7f7 transparent transparent transparent}.mec-skin-tile-month-navigator-container:before{bottom:-21px;border-color:#fff transparent transparent transparent}@media only screen and (max-width:480px){.mec-skin-tile-month-navigator-container{height:110px;padding-top:68px}}.mec-skin-tile-month-navigator-container h2{font-size:23px;font-weight:700}.mec-skin-tile-month-navigator-container .mec-next-month,.mec-skin-tile-month-navigator-container .mec-previous-month{position:absolute;top:28px;left:20px;cursor:pointer;padding:3px 12px;line-height:23px;background:#fff;border-radius:32px;box-shadow:0 1px 3px rgba(0,0,0,.02);transition:all .22s ease}.mec-skin-tile-month-navigator-container .mec-next-month{left:auto;right:20px}.mec-skin-tile-month-navigator-container .mec-next-month:hover,.mec-skin-tile-month-navigator-container .mec-previous-month:hover{box-shadow:0 2px 5px rgba(0,0,0,.1);color:#000}.mec-wrap .mec-event-tile-view article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view article.mec-label-featured:before{position:absolute;bottom:auto;text-align:center;right:auto;font-size:10px}.mec-wrap .mec-event-tile-view .col-md-3 article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view .col-md-3 article.mec-label-featured:before{top:12px;left:103px}.mec-wrap .mec-event-tile-view .col-md-4 article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view .col-md-4 article.mec-label-featured:before{top:18px;left:125px}.mec-wrap .mec-event-tile-view .col-md-6 article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view .col-md-6 article.mec-label-featured:before{top:20px;left:200px}.mec-wrap .mec-label-normal{display:none}.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}
|
1 |
+
.lity-container,.mec-wrap,.mec-wrap div:not([class^=elementor-]){font-family:Montserrat,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif}.entry-content .mec-wrap h1,.entry-content .mec-wrap h2,.entry-content .mec-wrap h3,.entry-content .mec-wrap h4,.entry-content .mec-wrap h5,.entry-content .mec-wrap h6,.mec-wrap h1,.mec-wrap h2,.mec-wrap h3,.mec-wrap h4,.mec-wrap h5,.mec-wrap h6{font-family:Montserrat,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;color:#171c24;font-weight:300;font-style:inherit;letter-spacing:normal;clear:none}.mec-wrap h1{font-size:50px;line-height:1.16;margin-bottom:12px;letter-spacing:-1px}.mec-wrap h2{font-size:36px;line-height:1.14;margin-bottom:10px}.mec-wrap h3{font-size:28px;line-height:1.2;margin-bottom:8px}.mec-wrap h4{font-size:24px;line-height:1.2;margin-bottom:10px}.mec-wrap h5{font-size:18px;line-height:1.3;margin-bottom:7px}.mec-wrap h6{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-wrap .subheader{color:#849098}.mec-wrap h1 strong{font-weight:700}.mec-wrap p{margin:0 0 20px 0;color:#616161;font-size:14px;line-height:1.8}.mec-wrap .mec-event-article .mec-color-hover{box-shadow:none;border:none}.mec-wrap abbr,.mec-wrap acronym{cursor:auto;border:none}.entry-content .mec-wrap a{box-shadow:none}.mec-wrap .button,.mec-wrap a.button:not(.owl-dot),.mec-wrap button:not(.owl-dot):not(.gm-control-active),.mec-wrap input[type=button],.mec-wrap input[type=reset],.mec-wrap input[type=submit]{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#24ca4f;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease}.mec-wrap .button:hover,.mec-wrap a.button:hover,.mec-wrap button:hover,.mec-wrap input[type=button]:hover,.mec-wrap input[type=reset]:hover,.mec-wrap input[type=submit]:hover{background:#222;color:#fff}.mec-wrap #mec_woo_add_to_cart_btn_r{min-width:155px;margin-top:5px;border-radius:2px;box-shadow:0 2px 1px rgba(0,0,0,.08);float:left;text-align:center}.mec-booking-form-container button{display:block}.vertical-space,.vertical-space1,.vertical-space2,.vertical-space3,.vertical-space4,.vertical-space5{display:block;width:100%;margin:0;clear:both;border:0 none;height:20px}.vertical-space2{height:40px}.vertical-space3{height:60px}.vertical-space4{height:80px}.vertical-space5{height:100px}@media only screen and (max-width:479px){.vertical-space,.vertical-space1{height:8px}.vertical-space2{height:14px}.vertical-space3{height:28px}.vertical-space4{height:40px}.vertical-space5{height:60px}}@media only screen and (max-width:960px){.vertical-space,.vertical-space1{height:12px}.vertical-space2{height:18px}.vertical-space3{height:36px}.vertical-space4{height:50px}.vertical-space5{height:80px}}.mec-wrap abbr{cursor:auto;border-bottom:0}@-webkit-keyframes rotating{from{-ms-transform:rotate(0);-moz-transform:rotate(0);-webkit-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}to{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes rotating{from{-ms-transform:rotate(0);-moz-transform:rotate(0);-webkit-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}to{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}.mec-wrap{font:14px/25px sans-serif;font-family:Montserrat,Helvetica,Arial,sans-serif;font-weight:400;color:#626262}.mec-wrap .mec-events a{border-bottom:none}.mec-wrap .mec-container a{box-shadow:none}.mec-event-content p{font-family:Roboto,sans-serif;font-weight:300}.mec-wrap .mec-clear:after,.mec-wrap .mec-clear:before{content:" ";display:table}.mec-wrap .mec-clear:after{clear:both}.mec-events-button{background:#fff;padding:12px 34px;font-size:13px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;margin-right:10px;transition:.3s}.mec-wrap .mec-events-button:hover{color:#fff}.mec-no-event{display:none}#mec-active-current{display:block!important}.current-hide #mec-active-current{display:none!important}.mec-event-grid-classic .mec-event-article{position:relative;border:2px solid #e3e3e3;box-shadow:0 2px 0 0 rgba(0,0,0,.016);margin-bottom:30px;max-width:none}.mec-event-grid-classic .mec-event-content{background:#fff;color:#767676;padding:0 20px 5px;text-align:center;min-height:125px}.mec-event-grid-classic .mec-event-title{color:#202020;margin:10px 0;font-weight:700;font-size:20px;letter-spacing:1px;text-transform:uppercase}.mec-event-grid-classic .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-classic .mec-event-date{font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:1px;color:#fff;padding:3px 20px;margin:0 -20px 20px -20px;text-align:center}.mec-event-grid-classic .mec-event-content p{font-size:15px;color:#8a8a8a}.mec-event-grid-classic .mec-event-detail{display:none}.mec-event-grid-classic img{margin-bottom:0;width:100%}.mec-event-footer{position:relative;border-top:1px solid #efefef;padding:20px;min-height:80px;margin:0;background:#fafafa}.mec-event-sharing-wrap{left:15px;position:absolute;list-style:none;margin:0}.mec-event-sharing-wrap .mec-event-sharing{position:absolute;padding:8px 0 2px;left:-6px;bottom:54px;margin:0;margin-top:6px;border-radius:5px;width:50px;visibility:hidden;opacity:0;border:1px solid #e2e2e2;background:#fff;box-shadow:0 0 9px 0 rgba(0,0,0,.06);z-index:99;-webkit-transition:all .18s ease;transition:all .18s ease}.mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-sharing-wrap .mec-event-sharing:before{content:'';display:block;position:absolute;bottom:-10px;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-event-sharing-wrap .mec-event-sharing:before{bottom:-21px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-sharing-wrap .mec-event-sharing:after{bottom:-19px;border-color:#fff transparent transparent transparent}.mec-event-sharing-wrap:hover .mec-event-sharing{opacity:1;visibility:visible}.mec-event-sharing-wrap li{text-align:center;border:0;display:block;margin-right:2px;overflow:hidden;margin:0 auto 6px;width:38px}.mec-event-sharing-wrap:hover>li{cursor:pointer;background-color:#40d9f1}.mec-event-sharing-wrap:hover li a{color:#fff}.mec-event-sharing-wrap>li:first-of-type{border:1px solid #d9d9d9}.mec-event-sharing-wrap li a,.mec-event-sharing-wrap:hover li ul li a{border:none;color:#767676}.mec-event-sharing-wrap li i{width:36px;height:36px;display:table-cell;vertical-align:middle}.mec-event-sharing-wrap li svg{height:16px}.mec-event-sharing-wrap .mec-event-sharing li a{display:block}.mec-event-sharing-wrap .mec-event-sharing li:hover a{color:#40d9f1}.mec-event-sharing .mec-event-share:hover .event-sharing-icon{background:#40d9f1;border-width:0 1px 0;cursor:pointer}.mec-event-sharing .mec-event-map{border-width:1px 0 1px}.mec-event-footer .mec-booking-button{box-shadow:none;transition:all .21s ease;font-size:11px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:1px solid #e8e8e8;position:absolute;top:20px;right:15px;padding:0 16px;line-height:37px;height:38px}.mec-event-footer .mec-booking-button:hover{background:#191919;color:#fff;border-color:#191919}@media only screen and (max-width:960px){.mec-event-grid-classic{margin-bottom:30px}}.mec-widget .mec-event-grid-classic.mec-owl-carousel{padding:36px 0 16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav{margin:5px 0;width:100%;position:absolute;top:15px;padding:0}.mec-skin-grid-container.mec-widget{padding-top:18px}.mec-widget .mec-event-grid-classic.mec-owl-carousel{padding:20px 0 16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav{margin:0;width:100%;position:absolute;top:0;padding:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav div{position:absolute;background:#fff;line-height:0;width:34px;height:26px;padding:6px;text-align:center;margin-top:-17px;border-radius:3px;border:1px solid #e2e2e2;text-align:center;box-shadow:0 2px 0 0 rgba(0,0,0,.028);transition:all .33s ease}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav .owl-next{right:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav .owl-prev{left:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-sharing{display:none}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-footer{text-align:center}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-footer .mec-booking-button{position:static;padding:11px 16px}.widget .mec-event-footer ul.mec-event-sharing-wrap li a.mec-event-share-icon{padding:0}@media screen and (min-width:56.875em){.mec-widget .mec-month-container dl{margin-bottom:0}}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-footer{text-align:right}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-sharing-wrap{left:5px;padding-left:5px}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-sharing-wrap .mec-event-sharing{left:0}.mec-widget .mec-event-sharing-wrap .mec-event-sharing{position:absolute;top:auto;bottom:52px;margin:0;margin-top:0;border-radius:5px}.mec-widget .mec-event-sharing-wrap .mec-event-sharing:after{top:auto;bottom:-17px;border-color:#fff transparent transparent transparent}.mec-widget .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-18px;border-color:#e2e2e2 transparent transparent transparent}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav button{position:absolute;background:#fff;padding:6px;margin-top:-17px;border-radius:3px;border:1px solid #e2e2e2;box-shadow:0 2px 0 0 rgba(0,0,0,.028)}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav button:hover{background:#40d9f1;border-color:#40d9f1}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav button:hover i{color:#fff}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-booking-button{width:40%;float:right;color:#202020;height:36px;line-height:16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-booking-button:hover{color:#fff}.mec-widget .mec-event-list-modern .col-md-2.col-sm-2,.mec-widget .mec-event-list-modern .col-md-6.col-sm-6{padding:0;width:100%;display:block;position:unset}.mec-widget .mec-event-list-modern .col-md-4.col-sm-4 .mec-booking-button{width:80%;height:46px;line-height:22px;padding:11px 20px;float:right}.mec-widget .mec-event-list-modern .col-md-4.col-sm-4.mec-btn-wrapper{top:auto;bottom:5%}@media (max-width:480px){.mec-widget .mec-event-list-modern .col-md-4.col-sm-4{padding:0}.mec-widget .mec-event-list-modern .col-md-4.col-sm-4 .mec-booking-button{width:100%}}.mec-event-grid-clean{margin-bottom:10px;max-width:none}.mec-event-grid-clean .mec-event-article{margin-bottom:30px;position:relative;border:1px solid #e2e2e2;text-align:center;padding:15px 15px 0;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-clean .mec-event-content{background:#fff;color:#767676;padding:25px 16px 0;text-align:left}.mec-event-grid-clean .mec-event-title{color:#202020;margin:0 0 10px 0;font-weight:700;font-size:21px;text-transform:capitalize}.mec-event-grid-clean .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-clean .mec-event-date{font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:1px;background-color:#40d9f1;color:#fff;padding:3px 0;margin:0;text-align:center}.mec-event-grid-clean .mec-event-content p{font-size:15px;color:#9a9a9a;line-height:1.54}.mec-event-grid-clean img{margin-bottom:0;width:100%}.mec-event-grid-clean .event-grid-t2-head{margin-bottom:10px;color:#fff;padding:9px 14px 6px;text-align:left}.mec-event-grid-clean .event-grid-t2-head .mec-event-date{font-size:50px;line-height:50px;float:left;margin-right:11px}.mec-event-grid-clean .event-grid-t2-head .mec-event-month{text-transform:uppercase;font-size:17px;line-height:20px;padding-top:4px}.mec-event-grid-clean .event-grid-t2-head .mec-event-detail{font-size:12px}.mec-event-grid-clean .mec-event-sharing-wrap{left:0}.mec-event-grid-clean .mec-event-footer{position:relative;border-top:2px solid;padding:20px 0;margin:0 14px;text-align:left;background:0 0}.mec-event-grid-clean .mec-event-footer .mec-booking-button{right:0}.mec-event-grid-clean .row{margin-bottom:30px}.mec-event-grid-modern{margin-bottom:10px;max-width:none}.mec-event-grid-modern .mec-event-article{position:relative;border:1px solid #e2e2e2;text-align:center;margin-bottom:30px;padding:45px 15px 10px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-modern .mec-event-content{background:#fff;color:#767676;padding:35px 15px 10px;text-align:left}.mec-event-grid-modern .mec-event-title{color:#202020;margin:0 0 10px 0;font-weight:700;font-size:24px;text-transform:none;letter-spacing:-1px}.mec-event-grid-modern .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-modern .mec-event-content p{font-size:15px;color:#9a9a9a;line-height:1.54}.mec-event-grid-modern img{margin-bottom:0;width:100%}.mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:9px 14px 6px;text-align:left}.mec-event-grid-modern .event-grid-modern-head .mec-event-date{font-size:50px;line-height:50px;float:left;margin-right:11px}.mec-event-grid-modern .event-grid-modern-head .mec-event-month{text-transform:uppercase;font-size:17px;line-height:20px;padding-top:4px}.mec-event-grid-modern .event-grid-modern-head .mec-event-detail{font-size:12px}.mec-event-grid-modern .event-grid-modern-head .mec-event-day{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:35px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-event-grid-modern .mec-event-footer{position:relative;height:90px;padding:20px 0;border:none;margin:0 14px;text-align:left;background:0 0}.mec-event-grid-modern .mec-event-footer .mec-booking-button{right:auto;left:0}.mec-event-grid-modern .mec-event-sharing-wrap{left:auto;right:0}.mec-event-grid-modern .mec-event-sharing{left:auto;right:-6px}.mec-event-grid-modern .mec-event-sharing-wrap li{border-radius:55px}.mec-event-grid-modern .row{margin-bottom:0}@media only screen and (max-width:479px){.mec-event-grid-modern .mec-event-article{padding-bottom:30px}.mec-event-grid-modern .mec-event-sharing{top:60px;left:0;right:auto}.mec-event-grid-modern .mec-event-footer .mec-booking-button{top:0}}span.mec-event-title-soldout{font-size:8px;font-weight:700;letter-spacing:.5px;text-transform:uppercase;background:#e63360;color:#fff;padding:3px 8px;line-height:1;border-radius:15px;white-space:nowrap;vertical-align:middle}.mec-event-grid-colorful .mec-event-article{min-height:400px;border:none;box-shadow:none;background:#40d9f1;padding-top:25px;margin:0;color:#fff}.mec-event-grid-colorful .mec-event-content{background:0 0}.mec-event-grid-colorful .event-grid-modern-head,.mec-event-grid-colorful .event-grid-modern-head .mec-event-date,.mec-event-grid-colorful .event-grid-modern-head .mec-event-day,.mec-event-grid-colorful .mec-event-content p,.mec-event-grid-colorful .mec-event-sharing-wrap>li>a,.mec-event-grid-colorful .mec-event-title a{color:#fff}.mec-event-grid-colorful .mec-event-footer .mec-booking-button{border:none}.mec-event-grid-colorful .mec-event-sharing-wrap>li{border-color:#fff}.mec-event-grid-colorful .mec-event-sharing-wrap:hover>li{background:#333;border-color:#333}.mec-event-grid-colorful .mec-event-title a.mec-color-hover:hover{color:#fff;text-decoration:underline}.mec-event-grid-colorful .mec-event-title .event-color{display:none}.mec-event-grid-colorful div[class^=col-md-]{padding:0 1px 1px 0;margin:0}@media only screen and (min-width:768px){.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-day{font-size:26px}.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-month{font-size:15px}.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-date{font-size:50px}.mec-wrap.mec-sm959.mec-event-grid-colorful .mec-event-title{font-size:21px}.mec-wrap.mec-sm959.mec-event-grid-colorful .mec-event-content p{font-size:13px}}@media only screen and (min-width:768px) and (max-width:1200px){.mec-wrap.mec-sm959.mec-event-grid-colorful div[class^=col-md-]{width:50%}}.mec-event-list-minimal .mec-event-article{border-bottom:1px solid #efefef;padding:24px 0 16px}.mec-event-list-minimal .mec-wrap .col-md-9{padding:0}.mec-event-list-minimal .mec-event-date{position:relative;float:left;margin-right:30px;color:#fff;width:52px;padding:6px 4px 3px;text-align:center;text-transform:uppercase;border-radius:3px}.mec-event-list-minimal .mec-event-date span{display:block;font-size:24px;font-weight:700;text-align:center;margin-bottom:4px}.mec-event-list-minimal .mec-event-date:after{display:block;content:"";position:absolute;width:50px;left:1px;top:1px;height:34px;background:rgba(255,255,255,.1);box-shadow:0 4px 4px rgba(0,0,0,.02)}.mec-event-list-minimal .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;font-size:18px;text-transform:uppercase;letter-spacing:0;padding-top:10px}.mec-event-list-minimal .mec-event-detail,.mec-event-list-minimal .mec-time-details{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;font-family:Roboto,sans-serif}.mec-event-list-minimal .btn-wrapper{text-align:right;padding-right:0;padding-top:6px}.mec-event-list-minimal .btn-wrapper .mec-detail-button{border-bottom:0;margin-bottom:14px;margin-right:0;box-shadow:none}.mec-event-list-minimal a.mec-detail-button{text-align:center;display:inline-block;background:#ededed;color:#191919;padding:12px;border-radius:2px;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:2px;transition:all .24s ease}.mec-event-list-minimal a.mec-detail-button:hover{background:#292929;color:#fff}.vc_col-sm-4 .mec-event-list-minimal .mec-event-date,.vc_col-sm-6 .mec-event-list-minimal .mec-event-date{margin-right:12px}.vc_col-sm-4 .mec-event-list-minimal .mec-event-title,.vc_col-sm-6 .mec-event-list-minimal .mec-event-title{font-size:15px;letter-spacing:2px}@media only screen and (min-width:480px) and (max-width:767px){.mec-event-list-minimal .btn-wrapper{padding-left:0}.mec-event-list-minimal .mec-event-date{margin-right:10px}}@media only screen and (max-width:767px){.mec-event-list-minimal .btn-wrapper .mec-detail-button{display:block;text-align:center;margin:0;margin-top:16px;padding:8px}.mec-event-list-minimal .btn-wrapper{margin:12px 0}}@media only screen and (max-width:479px){.mec-event-list-minimal .mec-event-date{float:none;width:100%;margin-bottom:8px}.mec-event-list-minimal .mec-event-date span{display:inline;padding-right:25px;margin-right:7px;font-size:inherit}.mec-event-list-minimal .mec-event-date:after{width:45%;box-shadow:4px 0 4px rgba(0,0,0,.02)}.mec-event-list-minimal .btn-wrapper{text-align:center;padding-left:0}.mec-event-list-minimal{text-align:center}.mec-event-list-minimal .mec-event-detail{margin-bottom:10px}}.mec-wrap .mec-event-list-modern .mec-event-title{margin-top:0;margin-bottom:10px}.mec-event-list-modern .mec-event-article{border-bottom:1px solid #efefef;padding:30px 0 10px}.mec-event-list-modern .mec-event-article:last-child{border-bottom:none}.mec-event-list-modern .mec-event-title a{color:#191919;transition:all .24s ease;box-shadow:none}.mec-event-list-modern .mec-event-date{text-transform:uppercase;padding:10px 0}.mec-event-list-modern .mec-event-date .event-d{font-size:48px;display:table-cell;padding:10px 0 0}.mec-event-list-modern .mec-event-date .event-f{font-size:13px;display:table-cell;vertical-align:middle;padding-left:7px;font-weight:500;letter-spacing:3px;color:#777}.mec-event-list-modern .mec-event-detail{font-weight:300;color:#8a8a8a}.mec-event-list-modern .mec-event-detail .mec-time-details{display:inline}.mec-event-list-modern .mec-event-date .event-da{margin-top:9px;color:silver;font-size:28px;font-weight:100;text-transform:uppercase;letter-spacing:-1px;text-align:left}.mec-event-list-modern .mec-btn-wrapper .mec-booking-button{border-radius:1px;letter-spacing:2px;border:1px solid #e6e6e6;color:#333;background-color:#fff;padding:13px 20px;font-weight:700;font-size:11px;box-shadow:0 2px 0 0 rgba(0,0,0,.016);transition:all .28s ease}.mec-event-list-modern .mec-btn-wrapper .mec-booking-button:hover{border-color:#222;background:#222;color:#fff}.mec-event-list-modern .mec-event-title{font-weight:700;font-size:20px;text-transform:uppercase;letter-spacing:1px}.mec-event-list-modern .mec-event-detail{color:#9a9a9a;font-size:15px;font-weight:300;line-height:25px;font-family:Roboto,sans-serif}.mec-event-list-modern .mec-btn-wrapper{text-align:right;padding:10px 0;text-transform:uppercase}.mec-event-list-modern .mec-event-sharing{position:relative;margin:10px 0}.mec-event-list-modern .mec-event-sharing>li{display:inline-block;border:none;border-radius:50%;margin-right:3px}.mec-event-list-modern .mec-event-sharing>li:hover{display:inline-block}.mec-event-list-modern .mec-event-sharing>li:hover a i{color:#fff;background:#40d9f1;border-color:#40d9f1}.mec-event-list-modern .mec-event-sharing>li i{width:36px;display:inline-block;line-height:35px;color:#767676;text-align:center;border-radius:50%;border:1px solid #ddd;font-size:14px}.mec-event-list-modern .mec-event-sharing .mec-event-share:hover .mec-event-sharing-icon{background:#40d9f1;border-color:#40d9f1;cursor:pointer;border-radius:50%}.mec-event-list-modern .mec-event-sharing li:hover a i{background:#40d9f1}@media only screen and (min-width:768px){.mec-event-list-modern .mec-event-article{position:relative;min-height:160px;overflow:hidden}.mec-event-list-modern .col-md-2.col-sm-2{width:210px;position:absolute;left:0;top:20px}.mec-event-list-modern .col-md-4.col-sm-4.mec-btn-wrapper{width:180px;padding:0;position:absolute;right:0;top:30%}.mec-event-list-modern .col-md-6.col-sm-6{width:100%;padding-left:225px;padding-right:195px}}@media only screen and (max-width:767px){.mec-event-list-modern .mec-btn-wrapper .mec-booking-button{letter-spacing:1px;border:1px solid #e1e1e1;padding:8px 16px}.mec-event-list-modern .mec-btn-wrapper{padding:0 0 12px}.mec-event-list-modern .mec-event-sharing{margin-bottom:0}}.mec-event-grid-minimal .mec-event-article{margin:15px 0;min-height:80px;display:table}.mec-event-grid-minimal .event-detail-wrap{display:table-cell;vertical-align:middle}.mec-event-grid-minimal .mec-event-date{width:70px;float:left;margin-right:20px;padding:12px 16px 10px;text-align:center;text-transform:uppercase;border-radius:4px;border:1px solid #e6e6e6;transition:all .37s ease-in-out;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-minimal .mec-event-date span{display:block;font-size:24px;font-weight:700;text-align:center;margin-bottom:4px;color:#2a2a2a;transition:color .3s ease}.mec-event-grid-minimal .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;line-height:21px;font-size:16px;text-transform:uppercase;transition:color .3s ease}.mec-event-grid-minimal .mec-event-title a{color:#191919;transition:color .3s ease}.mec-event-grid-minimal .mec-event-detail{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;font-family:Roboto,sans-serif}.mec-event-grid-minimal .mec-event-date:hover{color:#fff}.mec-event-grid-minimal .mec-event-date:hover span{color:#fff}.mec-event-list-classic .mec-event-article{padding:12px 0;margin-bottom:20px}.mec-event-list-classic .mec-event-image{float:left;width:86px;margin-right:20px}.mec-event-list-classic .mec-event-date,.mec-event-list-classic .mec-event-time{font-weight:400;font-size:13px;letter-spacing:0;line-height:18px;text-align:left;display:initial;margin-right:12px}.mec-event-list-classic .mec-event-time .mec-time-details,.mec-event-list-classic .mec-event-time i{display:inline;margin-right:3px}.mec-event-list-classic .mec-event-date span{font-weight:500;margin-bottom:6px}.mec-event-list-classic .mec-event-title{font-size:15px;margin:10px 0 12px;font-weight:700;text-transform:uppercase}.mec-event-list-classic .mec-event-title a{color:#494949;transition:color .3s ease}.mec-event-list-classic .mec-event-detail{color:#777;font-weight:400;line-height:12px;font-size:12px;overflow:hidden}.mec-event-list-classic a.magicmore{padding:10px 16px;color:#fff;background:#222;letter-spacing:2px;font-size:11px}.mec-event-list-classic a.magicmore:after{content:"";display:none}.mec-event-list-classic a.magicmore:hover{color:#40d9f1}.mec-event-grid-simple .mec-event-article{position:relative;margin-bottom:30px}.mec-event-grid-simple .mec-event-article:after{border-right:1px solid #e6e6e6;height:60px;position:absolute;top:50%;margin-top:-30px;right:-1px}.mec-event-grid-simple .row div:last-child .mec-event-article:after{border:none}.mec-event-grid-simple .row{margin:15px 0 30px;text-align:center}.mec-event-grid-simple .mec-event-date{padding:0;margin:0;text-transform:capitalize;font-size:12px;font-weight:700}.mec-event-grid-simple .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;line-height:21px;font-size:15px;padding-top:5px;text-transform:uppercase;transition:color .37s ease}.mec-event-grid-simple .mec-event-title a{color:#494949;transition:color .3s ease}.mec-event-grid-simple .mec-event-detail{font-family:Roboto,sans-serif;font-weight:400;line-height:1;letter-spacing:0;font-size:13px;color:#777}.mec-event-grid-simple:hover .mec-event-title{color:#40d9f1}.mec-event-grid-simple:hover .mec-event-date{background:0 0}.event-last:after{display:none}@media only screen and (max-width:767px){.mec-event-grid-simple .mec-event-article{padding-bottom:20px;margin-bottom:20px;border-bottom:1px solid #eee}.mec-event-grid-simple .mec-event-article:after{border:none}}.mec-event-grid-novel .mec-event-article{position:relative;margin-bottom:30px;padding:60px 5% 60px 7%;border:1px solid rgba(255,255,255,.12);border-radius:10px;background-color:#0050fd;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease;z-index:1}.mec-event-grid-novel .mec-event-article .novel-grad-bg{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:10px;opacity:0;z-index:-1;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease}.mec-event-grid-novel .mec-event-article:hover{-webkit-box-shadow:0 13px 36px 0 rgba(0,0,0,.23);box-shadow:0 13px 36px 0 rgba(0,0,0,.23);border-color:transparent}.mec-event-grid-novel .mec-event-article:hover .novel-grad-bg{background-image:-webkit-gradient(linear,left top,right top,from(#262e32),to(#0e1015));background-image:-webkit-linear-gradient(left,#262e32 0,#0e1015 100%);background-image:-o-linear-gradient(left,#262e32 0,#0e1015 100%);background-image:linear-gradient(90deg,#262e32 0,#0e1015 100%);opacity:1}.mec-event-grid-novel .mec-event-image{float:left;width:150px;height:150px}.mec-event-grid-novel .mec-event-image img{width:150px;height:150px;border-radius:50%}.mec-event-grid-novel .mec-event-detail-wrap{margin-left:200px}.mec-event-grid-novel .mec-event-content h4{position:relative;margin-bottom:10px;display:inline-block}.mec-event-grid-novel .mec-event-content h4 a{font-size:24px;line-height:35px;color:#fafcff}.mec-event-grid-novel .mec-event-content h4::before{content:'';position:absolute;top:8px;left:-30px;width:17px;height:17px;background:#5cd0ed;opacity:.4;border-radius:50%}.mec-event-grid-novel .mec-event-content h4::after{content:'';position:absolute;top:12px;left:-26px;width:9px;height:9px;background:#5cd0ed;border-radius:50%}.mec-event-grid-novel .mec-event-address,.mec-event-grid-novel .mec-event-detail,.mec-event-grid-novel .mec-event-month,.mec-event-grid-novel .mec-local-time-details{position:relative;padding-left:35px;font-size:15px;line-height:30px;color:rgba(255,255,255,.4)}.mec-event-grid-novel .mec-event-address::before,.mec-event-grid-novel .mec-event-detail::before,.mec-event-grid-novel .mec-event-month::before,.mec-event-grid-novel .mec-local-time-details:before{position:absolute;top:6px;left:6px;font-size:17px;font-family:simple-line-icons;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1}.mec-event-grid-novel .mec-local-time-details::before{content:"\e007"}.mec-event-grid-novel .mec-event-month::before{content:"\e075"}.mec-event-grid-novel .mec-event-detail::before{content:"\e081"}.mec-event-grid-novel .mec-event-address::before{content:"\e096"}.mec-event-grid-novel .mec-event-footer{clear:both;padding:20px 0;border-top:none;background:0 0}.mec-event-grid-novel .mec-event-footer .mec-booking-button{right:auto;left:0;height:42px;width:148px;padding:0 20px;font-size:14px;font-weight:400;line-height:42px;text-align:center;color:#fff;background:0 0;border-color:rgba(255,255,255,.1);border-radius:50px}.mec-event-grid-novel .mec-event-footer .mec-booking-button:hover{background-color:rgba(255,255,255,.1)}.mec-event-grid-novel .mec-event-sharing-wrap{left:175px;cursor:pointer}.mec-event-grid-novel .mec-event-sharing-wrap>li{border-color:rgba(255,255,255,.1);border-radius:50%}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing{top:-5px;left:0;padding:5px 10px 2px 50px;min-width:150px;width:inherit;height:37px;background-color:rgba(255,255,255,.1);-webkit-box-shadow:none;box-shadow:none;border:none;border-radius:50px}.mec-event-grid-novel .mec-event-sharing-wrap:hover>li{background-color:rgba(255,255,255,.1)}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing::after,.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing::before{display:none}.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon,.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon a,.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li i{display:inline}.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon a{padding:0 10px}.mec-event-grid-novel .mec-event-sharing-wrap>li a{color:#fff}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li a{color:rgba(255,255,255,.4)}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li a:hover{color:rgba(255,255,255,1)}@media only screen and (max-width:1200px){.mec-event-grid-novel .row .col-md-6.col-sm-6{width:100%;float:none}.mec-event-grid-novel .mec-event-image{float:none;margin-top:-20px;margin-bottom:20px}.mec-event-grid-novel .mec-event-detail-wrap{margin-left:20px}.mec-event-grid-novel .mec-event-footer{margin-top:30px}}@media only screen and (max-width:767px){.mec-event-grid-novel .mec-event-footer{margin-top:0;padding-top:30px;margin-bottom:24px}.mec-event-grid-novel .mec-event-footer .mec-booking-button{display:block;position:relative}.mec-event-grid-novel .mec-event-sharing-wrap{left:0;bottom:-55px}.mec-event-grid-novel .mec-event-content h4 a{font-size:20px;line-height:1.3}}.mec-event-cover-modern{position:relative}.mec-event-cover-modern .mec-event-cover-a{background:0 0;position:absolute;color:#fff;bottom:0;left:0;text-decoration:none}.mec-event-cover-modern .mec-event-cover-a .mec-event-overlay{transition:all .5s;opacity:.8;width:100%;height:100%;position:absolute}.mec-event-cover-modern .mec-event-cover-a:hover .mec-event-overlay{opacity:1}.mec-event-cover-modern .mec-event-detail{padding:40px;position:relative}.mec-event-cover-modern .mec-event-cover-a:hover .mec-event-tag{color:#333;transition:all .5s}.mec-event-cover-modern .mec-event-cover-a .mec-event-title:hover{text-decoration:underline}.mec-event-cover-modern .mec-event-tag{background:#fff;display:inline-block;padding:5px 9px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:24px}.mec-event-cover-modern .mec-event-date{text-transform:uppercase;font-size:17px;font-weight:300}.mec-event-cover-modern .mec-event-title{color:#fff;text-transform:uppercase;font-size:40px;font-weight:700;margin:6px 0}.mec-event-cover-modern .mec-event-place{font-weight:400;font-size:18px;font-family:Roboto,sans-serif}@media only screen and (max-width:767px){.mec-event-cover-modern .mec-event-cover-a{width:100%}}.mec-event-cover-classic{position:relative;overflow:hidden;background:#fff;padding:6px;border:1px solid #e8e8e8}.mec-event-cover-classic .mec-event-overlay{position:absolute;left:6px;right:6px;bottom:6px;top:6px;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-cover-classic:hover .mec-event-overlay{background-color:rgba(36,36,36,.6)}.mec-event-cover-classic .mec-event-content{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out}.mec-event-cover-classic .mec-event-date{font-size:14px;text-transform:uppercase;font-weight:400;line-height:1.6}.mec-event-cover-classic .mec-event-date span{display:block;font-weight:700;font-size:16px}.mec-event-cover-classic .mec-event-title{color:#fff;margin:20px 0 38px;font-size:24px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-cover-classic .mec-btn-wrapper{text-align:left}.mec-event-cover-classic .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-cover-classic .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:12px 20px;letter-spacing:3px;font-size:12px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-cover-classic .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-cover-classic .mec-event-image img{min-width:100%}@media only screen and (max-width:960px){.mec-event-cover-classic .mec-event-content{padding:20px}.mec-event-cover-classic .mec-event-button{font-size:11px;padding:7px 10px;letter-spacing:1px}.mec-event-cover-classic .mec-event-title{font-size:19px;margin:15px 0 25px}.mec-event-cover-classic .mec-event-date{font-size:12px}}@media only screen and (max-width:767px){.mec-event-cover-classic{margin-bottom:30px}}@media only screen and (max-width:479px){.mec-event-cover-classic .mec-event-content{padding:15px;font-size:15px}.mec-event-cover-classic .mec-event-title{font-size:15px;margin:10px 0}.mec-event-cover-classic .mec-event-button{font-size:10px;padding:6px;letter-spacing:1px}.mec-event-cover-classic .mec-event-icon{padding:10px}}.mec-load-more-wrap{text-align:center;display:block;width:100%;padding-top:20px;text-align:center;position:relative}.mec-load-more-button{box-shadow:none;transition:all .21s ease;font-size:12px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:2px solid #e8e8e8;border-radius:50px;padding:0 28px;margin-bottom:20px;cursor:pointer;line-height:40px;font-family:Montserrat,Helvetica,Arial,sans-serif;height:42px;display:inline-block}.mec-load-more-button:hover{background:#191919;color:#fff;border-color:#191919}.mec-load-more-loading{content:url(../img/ajax-loader.gif);cursor:wait;background:0 0;border-style:none}.mec-load-more-loading:hover{background:0 0}.mec-modal-preloader,.mec-month-navigator-loading{width:100%;height:100%;background:no-repeat rgba(255,255,255,.88) url(../img/ajax-loader.gif) center;border-style:none;position:fixed;left:0;right:0;bottom:0;top:0;z-index:9}.mec-event-calendar-classic .mec-calendar-side .mec-calendar-table{min-height:1024px}.mec-calendar-side .mec-calendar-table{min-height:450px}.mec-skin-weekly-view-events-container.mec-month-navigator-loading{margin-top:0}.mec-calendar.mec-event-calendar-classic .mec-calendar-side{display:block}.mec-skin-daily-view-events-container.mec-month-navigator-loading{margin-top:0}@media only screen and (min-width:961px){.mec-wrap.mec-sm959 .mec-calendar-side .mec-calendar-table{min-height:1px}}@media only screen and (max-width:479px){.mec-calendar-side .mec-calendar-table{min-height:1px}}.mec-event-cover-clean{position:relative;border:1px solid #e6e6e6;padding:8px}.mec-event-cover-clean .mec-event-overlay{height:100%;background-color:rgba(36,36,36,.4);position:absolute;width:100%;left:0;border:8px solid #fff;top:0;transition:all .5s ease-in-out}.mec-event-cover-clean .mec-event-content{color:#fff;position:absolute;bottom:20px;padding:40px 60px;transition:all .5s ease-in-out}.mec-event-cover-clean .mec-event-title{color:#fff;font-weight:700;margin:46px 0 19px;font-size:29px;text-transform:uppercase;text-shadow:0 0 1px rgba(0,0,0,.5)}.mec-event-cover-clean .mec-event-title a{color:#fff;transition:all .5s;text-decoration:none;outline:0;border:none;box-shadow:none}.mec-event-cover-clean .mec-event-title a:hover{text-decoration:underline}.mec-event-cover-clean .mec-event-date{position:absolute;top:-20px;right:60px;color:#fff;width:60px;padding:14px 10px;z-index:1}.mec-event-cover-clean .mec-event-date div{text-align:center;text-transform:uppercase;letter-spacing:1px;line-height:16px}.mec-event-cover-clean .mec-event-date .dday{padding-bottom:15px;border-bottom:1px solid rgba(255,255,255,.5);margin-bottom:13px;font-size:24px}.mec-event-cover-clean .mec-event-date .dmonth{letter-spacing:2px}.mec-event-cover-clean .mec-event-place{font-size:18px;font-family:Roboto,sans-serif}.mec-event-cover-clean .mec-event-image img{width:100%}@media only screen and (max-width:768px){.mec-event-cover-clean .mec-event-content{padding:20px;bottom:5px}.mec-event-cover-clean .mec-event-title{font-size:23px}.mec-event-cover-clean .mec-event-date{right:20px;padding:10px;width:50px}}@media only screen and (max-width:479px){.mec-event-cover-clean .mec-event-content{padding:10px}.mec-event-cover-clean .mec-event-title{font-size:19px;padding-right:25px}.mec-event-cover-clean .mec-event-date{right:-20px;top:-10px}.mec-event-cover-clean .mec-event-detail{font-size:12px}}.mec-month-divider{text-align:center;margin:60px 0 40px 0}.widget .mec-month-divider{margin:10px 0}.mec-month-divider span{text-transform:uppercase;font-size:22px;font-weight:700;padding-bottom:5px;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative}.mec-month-divider span:before{border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-30px;left:50%;width:60px}.widget .mec-month-divider span{font-size:13px}.mec-event-list-standard .mec-events-pagination{margin-top:60px;border-top:4px solid #ebebeb;min-height:80px;padding-top:20px}.mec-event-list-standard .mec-events-pagination .mec-events-pag-previous{float:left;margin-left:0}.mec-event-list-standard .mec-events-pagination .mec-events-pag-next{float:right;margin-right:0}.mec-event-list-standard .mec-event-article{position:relative;display:block;margin-bottom:25px;border:1px solid #e9e9e9;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-list-standard .mec-topsec{display:table;width:100%}.mec-event-list-standard .col-md-3.mec-event-image-wrap{padding-left:0}.mec-event-list-standard .mec-event-content{padding-top:15px;padding-right:30px}.mec-event-list-standard .mec-event-title{font-size:29px;font-weight:700;letter-spacing:-1px;margin:0 0 10px}.mec-event-list-standard .mec-event-title a{color:#292929;transition:color .3s ease}.mec-event-list-standard .mec-col-table-c{display:table-cell;height:100%;vertical-align:middle;float:none!important}.mec-event-list-standard .mec-col-table-c.mec-event-meta-wrap{padding-top:15px}.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{vertical-align:top}.mec-topsec .mec-event-image{line-height:1px}.mec-event-list-standard .mec-event-meta-wrap{border-left:1px solid #eee}.mec-event-list-standard .mec-time-details{text-transform:uppercase;font-size:11px;font-weight:300;padding-top:0;text-align:left;padding-left:30px}.mec-event-list-standard .mec-event-meta .mec-event-address{font-style:normal;letter-spacing:0;font-size:13px;color:#8a8a8a}.mec-event-list-standard .mec-event-meta span.mec-event-d,.mec-event-list-standard .mec-event-meta span.mec-event-m{font-size:17px;font-weight:700;padding-right:6px;color:#444;text-transform:uppercase}.mec-event-list-standard .mec-date-details,.mec-event-list-standard .mec-local-time-details,.mec-event-list-standard .mec-time-details,.mec-event-list-standard .mec-venue-details{position:relative;padding-left:28px;margin-bottom:10px}.mec-event-list-standard .mec-date-details:before,.mec-event-list-standard .mec-local-time-details:before,.mec-event-list-standard .mec-time-details:before,.mec-event-list-standard .mec-venue-details:before{content:"\f041";font-family:fontawesome;position:absolute;left:6px;font-size:15px}.mec-event-list-standard .mec-date-details:before{content:"\f073"}.mec-event-list-standard .mec-time-details:before{content:"\f017"}.mec-event-list-standard .mec-local-time-details:before{content:"\f0ac"}.mec-event-list-standard .mec-local-time-details .mec-local-title{display:block}.mec-event-list-standard .mec-local-time-details .mec-local-date,.mec-event-list-standard .mec-local-time-details .mec-local-time{font-style:normal;letter-spacing:0;font-size:11px;color:#8a8a8a;font-weight:300;line-height:1.6}.mec-event-list-minimal .mec-event-title a{color:#292929;transition:color .3s ease}.mec-event-meta-wrap .mec-price-details{margin-bottom:10px}.mec-price-details i{margin-right:5px;vertical-align:text-top}.mec-event-meta-wrap .mec-event-meta .mec-price-details i:before{font-size:15px}@media only screen and (max-width:960px){.mec-event-list-standard .mec-topsec{display:block}.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:block;width:40%}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{display:block;min-height:230px}.mec-event-list-standard .mec-event-meta-wrap{display:block;border-left:none;border-top:1px solid #eee;width:100%;float:none;padding-top:20px}}@media only screen and (min-width:480px) and (max-width:960px){.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:table-cell}}@media only screen and (max-width:479px){.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap img{float:none;width:100%;padding:0}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{padding:10px 10px 10px 30px}}.mec-localtime-details{color:#777;font-weight:400;line-height:12px;font-size:12px}.mec-localtime-details .mec-localdate,.mec-localtime-details .mec-localtime,.mec-localtime-details .mec-localtitle{display:inline-block}.mec-localtime-details .mec-start-date-label{padding-right:5px}.mec-localtime-details .mec-localtime{padding-left:5px}.mec-event-list-minimal .mec-localtime-details{display:inline-flex;font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;padding-left:9px}.mec-event-grid-classic .mec-localtime-details,.mec-event-grid-clean .mec-localtime-details{color:#fff;font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:-.02em;color:#fff;padding:0 0;line-height:18px;margin-top:-3px}.mec-event-grid-clean .mec-localtime-details,.mec-event-grid-colorful .mec-localtime-details,.tooltipster-box .mec-localtime-details{line-height:22px;padding-top:10px}.mec-event-grid-colorful .mec-localtime-details{color:#fff}.mec-event-grid-classic .mec-localtime-details{text-align:center}.mec-event-grid-minimal .mec-localtime-details{line-height:22px}.mec-wrap .mec-yearly-view-wrap .mec-localtime-wrap i{display:inline-block;margin-left:-1px}.mec-timetable-t2-content .mec-local-time-details{padding-left:19px}.mec-timetable-t2-content .mec-local-time-details{position:relative}.mec-timetable-t2-content .mec-local-time-details:before{content:"\e007";font-family:simple-line-icons;position:absolute;font-size:12px;margin-right:4px;left:0}.mec-masonry .mec-masonry-col6 .mec-localtime-details{margin-top:10px;line-height:21px}.mec-masonry .mec-masonry-col6 .mec-localtime-details i{height:auto}.mec-event-cover-classic .mec-localtime-details{color:#fff;margin-top:12px}.mec-event-cover-classic .mec-localtime-details i{padding-right:8px}.mec-event-cover-clean .mec-localtime-details{color:#fff;margin-bottom:20px}.mec-event-cover-modern .mec-localtime-details{color:#fff;margin:10px 0;font-weight:400;font-size:18px}.mec-event-countdown-style1 .mec-localtime-details,.mec-event-countdown-style2 .mec-localtime-details,.mec-event-countdown-style3 .mec-localtime-details{color:#fff;padding:8px 5px 0;font-size:14px;line-height:25px}.mec-event-countdown-style1 .mec-localtime-details{text-align:center}.mec-event-hover-carousel-type4 .mec-localtime-details{display:block;color:#fff;font-size:11px}.mec-event-footer-carousel-type3 .mec-localtime-details .mec-localdate,.mec-event-footer-carousel-type3 .mec-localtime-details .mec-localtime,.mec-event-footer-carousel-type3 .mec-localtime-details .mec-localtitle,.mec-event-footer-carousel-type3 .mec-localtime-details span{display:inline-flex;line-height:20px;text-align:left;margin:0!important;font-size:12px;color:#777;line-height:28px}.mec-owl-crousel-skin-type1 .mec-localtime-details{margin-top:-7px;margin-bottom:12px}.mec-wrap .mec-slider-t5 .mec-localtime-details{margin-top:14px;line-height:20px}.mec-wrap .mec-slider-t5 .mec-localtime-details i{font-size:18px;height:20px}.mec-timeline-event-local-time{background:rgba(64,217,241,.11);display:inline-block;padding:7px 20px 11px;border-radius:20px;line-height:1.24}.mec-timeline-event-local-time .mec-localtime-details{font-size:13px;font-weight:500;vertical-align:middle;margin-left:6px;color:inherit;line-height:24px}.mec-timeline-event-local-time .mec-localtime-details i{font-size:17px;vertical-align:middle;margin-left:-7px;padding-right:3px}.mec-wrap .mec-events-cal-links{margin-bottom:0}.mec-single-event #mec-wrap{padding:0;margin-top:35px}.mec-wrap .mec-single-title{margin-top:0;margin-bottom:30px;font-weight:700;font-size:33px}.mec-single-event .mec-event-content{padding:40px 0 30px;margin-bottom:10px}.mec-single-event .mec-events-meta-group-booking,.mec-single-event .mec-frontbox{margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-wrap #main-content{overflow:hidden;padding-top:35px}.mec-single-event .mec-map-get-direction-address-cnt{position:relative}.mec-single-event .mec-map-get-direction-address-cnt input.mec-map-get-direction-address{width:100%;height:46px;padding:13px 10px;margin-bottom:0;background:#fcfcfc;border:1px solid #e0e0e0;border-radius:0;box-shadow:inset 0 2px 5px rgba(0,0,0,.081)}.mec-single-event .mec-map-get-direction-address-cnt input.mec-map-get-direction-address:focus{color:#444;background:#fff;border-color:#b0b0b0;box-shadow:0 0 3px rgba(0,0,0,.2)}.mec-single-event .mec-map-get-direction-btn-cnt input{width:100%}.mec-single-event .mec-map-get-direction-reset{position:absolute;z-index:2;top:5px;right:10px;font-size:11px;cursor:pointer}.mec-events-meta-group-tags{margin-top:20px}.mec-events-meta-group-tags a{display:inline-block;color:#444;font-size:11px;text-transform:uppercase;letter-spacing:1.5px;font-weight:500;padding:3px 7px;border:1px solid #ddd;border-radius:2px;background:#fff;margin:1px 3px}.mec-events-meta-group-tags a:hover{text-decoration:underline;background:#f9f9f9}.mec-local-time-details li{list-style:none}.mec-single-event:not(.mec-single-modern) .mec-local-time-details{background:#f7f7f7;padding:12px 14px 8px;margin-bottom:12px;vertical-align:baseline;position:relative;border:none}.mec-single-event:not(.mec-single-modern) .mec-local-time-details ul{margin:0;padding-left:35px}.mec-single-event:not(.mec-single-modern) .mec-local-time-details h3{border:none;padding-left:15px}.mec-single-event:not(.mec-single-modern) .mec-local-time-details h3:before{display:none}.mec-single-event.mec-single-modern i.mec-sl-speedometer{display:none}.mec-single-event .mec-events-meta-group-booking{padding-bottom:30px}.mec-single-event .mec-events-meta-group-booking ul{list-style:none;margin-left:0;padding-left:0}.mec-single-event .mec-events-meta-group-booking ul li{padding:0;list-style:none;margin-top:40px}.mec-single-event .mec-events-meta-group-booking h4{margin-bottom:20px;font-size:23px;font-weight:700}.mec-single-event .mec-events-meta-group-booking li h4{font-size:19px}.mec-single-event .mec-events-meta-group-booking button,.mec-single-event .mec-events-meta-group-booking input{border-radius:0;margin-bottom:6px}.mec-single-event .mec-events-meta-group-booking button{min-width:155px;margin-top:5px;margin-left:10px;border-radius:2px;box-shadow:0 2px 1px rgba(0,0,0,.08)}.mec-single-event .mec-events-meta-group-booking button.mec-book-form-back-button{background:#c4cace;float:left}.mec-single-event .mec-events-meta-group-booking button.mec-book-form-back-button:hover{background:#000}.mec-single-event .mec-events-meta-group-booking button.mec-book-form-next-button{float:left;margin-left:0}button#mec-book-form-back-btn-step-3{float:none}.mec-single-event .mec-events-meta-group-booking .mec-click-pay{max-width:350px}.mec-single-event .mec-events-meta-group-booking .mec-click-pay #mec_woo_add_to_cart_btn_r,.mec-single-event .mec-events-meta-group-booking .mec-click-pay button.mec-book-form-next-button{float:right}.mec-single-event .mec-events-meta-group-booking .mec-click-pay #mec_woo_add_to_cart_btn_r:hover,.mec-single-event .mec-events-meta-group-booking .mec-click-pay button.mec-book-form-next-button:hover{background:#000}.lity-container .mec-click-pay{max-width:400px}.lity-container .mec-book-form-btn-wrap button.mec-book-form-next-button,.lity-container .mec-click-pay #mec_woo_add_to_cart_btn_r{float:right}.lity-container button.mec-book-form-next-button{float:right}.lity-container .mec-click-pay #mec_woo_add_to_cart_btn_r:hover,.lity-container .mec-click-pay button.mec-book-form-next-button:hover{background:#000}.mec-single-event .mec-events-meta-group-booking .mec-click-next{float:right;position:relative;width:calc(100% - 186px)}.lity-container .mec-click-next{float:right;position:relative;width:calc(100% - 186px)}.mec-single-event .mec-book-form-coupon button{margin-left:0}.mec-single-event .mec-book-form-gateway-checkout button{margin-left:0}.mec-single-event .mec-single-event .mec-book-form-gateway-checkout button{margin-right:20px}.mec-single-event button#mec-book-form-back-btn-step-3{margin-left:0}.lity-content .mec-book-form-back-button{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-right:10px;line-height:1;padding:18px 20px 16px;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;min-width:170px;margin-top:5px;border-radius:0;margin-bottom:6px;background:#c4cace}.lity-content .mec-book-form-back-button:hover{background:#000}.lity-content button#mec-book-form-back-btn-step-3{float:none}.lity-content .mec-book-form-next-button{float:left}.mec-single-event .mec-book-first,.mec-single-event .mec-event-tickets-list{padding-left:15px;padding-right:15px}.mec-single-event label.mec-fill-attendees{margin-left:15px!important}.mec-single-event .mec-events-meta-group-booking .mec-event-ticket-available{display:block;margin-bottom:20px;margin-top:-17px;font-size:11px;color:#8a8a8a}.mec-single-event .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.mec-single-event .mec-events-meta-group-booking form{margin:0}.mec-single-event .mec-events-meta-group-booking h5 span,.mec-single-event .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;display:block;clear:none;padding:5px 1em 3px 0}.mec-single-event .mec-events-meta-group-booking h5 span{display:inline-block}.mec-single-event .mec-events-meta-group-booking h5 span.mec-ticket-variation-name{padding-right:5px;text-transform:capitalize}.mec-single-event .mec-events-meta-group-booking input::-webkit-input-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input:-moz-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:330px;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both}.wbmec-mandatory{padding-left:5px;font-size:14px}.mec-single-event .mec-events-meta-group-booking .mec-red-notification input,.mec-single-event .mec-events-meta-group-booking .mec-red-notification select,.mec-single-event .mec-events-meta-group-booking .mec-red-notification textarea{border:1px solid #ff3c3c!important}.lity .mec-events-meta-group-booking .mec-red-notification input[type=checkbox],.lity .mec-events-meta-group-booking .mec-red-notification input[type=radio],.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=checkbox],.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=radio]{outline:1px solid #ff3c3c!important}.lity .mec-book-ticket-container .mec-red-notification input,.lity .mec-book-ticket-container .mec-red-notification select,.lity .mec-book-ticket-container .mec-red-notification textarea{border:1px solid #ff3c3c!important}@media only screen and (max-width:479px){.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{width:100%}}.mec-single-event .mec-events-meta-group-booking input[type=email]:focus,.mec-single-event .mec-events-meta-group-booking input[type=number]:focus,.mec-single-event .mec-events-meta-group-booking input[type=password]:focus,.mec-single-event .mec-events-meta-group-booking input[type=tel]:focus,.mec-single-event .mec-events-meta-group-booking input[type=text]:.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking select:focus,.mec-single-event .mec-events-meta-group-booking textarea:focus,focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-single-event .mec-events-meta-group-booking input[type=checkbox],.mec-single-event .mec-events-meta-group-booking input[type=radio]{margin-right:6px;margin-top:5px;min-height:20px;clear:none;margin:0 0 0 2px}.lity-container .mec-events-meta-group-booking input[type=radio]:before,.mec-single-event .mec-events-meta-group-booking input[type=radio]:before{content:"";display:inline-block;background:#fff;border-radius:18px;width:18px;height:18px;margin:-1px 0 0 -3px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32)}.lity-container .mec-events-meta-group-booking input[type=radio]:checked:before,.mec-single-event .mec-events-meta-group-booking input[type=radio]:checked:before{border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff}.lity-container .mec-events-meta-group-booking input[type=radio],.mec-single-event .mec-events-meta-group-booking input[type=radio]{min-height:0;margin:0;margin-right:6px}.mec-single-event .mec-events-meta-group-booking input[type=checkbox]{float:left}.lity-container .mec-events-meta-group-booking .mec_book_first_for_all,.mec-single-event .mec-events-meta-group-booking .mec_book_first_for_all{display:none}.mec-events-meta-group-booking ul.mec-book-price-details{list-style:none;border:1px solid #eee;padding:0;overflow:hidden}.mec-events-meta-group-booking ul.mec-book-price-details li{font-size:15px;color:#a9a9a9;list-style:none;padding:13px 18px;margin:0;float:left;border-right:1px solid #eee}.mec-events-meta-group-booking ul.mec-book-price-details li:last-child{border-right:none}.mec-events-meta-group-booking ul.mec-book-price-details li span.mec-book-price-detail-amount{font-weight:700;font-size:21px;color:#222}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label{height:14px;width:14px;background-color:transparent;border:1px solid #d4d4d4;position:relative;display:inline-block;-moz-transition:border-color ease .2s;-o-transition:border-color ease .2s;-webkit-transition:border-color ease .2s;transition:border-color ease .2s;cursor:pointer;box-shadow:0 2px 16px -2px rgba(0,0,0,.2);vertical-align:middle;margin-right:3px;margin-top:-2px}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label{border-color:#008aff;box-shadow:0 2px 14px -3px #008aff}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:after,.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:before,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:after,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:before{position:absolute;height:0;width:1px;background-color:#008aff;display:inline-block;-moz-transform-origin:left top;-ms-transform-origin:left top;-o-transform-origin:left top;-webkit-transform-origin:left top;transform-origin:left top;content:'';-webkit-transition:opacity ease .5;-moz-transition:opacity ease .5;transition:opacity ease .5}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:before,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:before{top:8px;left:7px;box-shadow:0 0 0 2px #fff;-moz-transform:rotate(-145deg);-ms-transform:rotate(-145deg);-o-transform:rotate(-145deg);-webkit-transform:rotate(-145deg);transform:rotate(-145deg)}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::before,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::before{height:12px;-moz-animation:dothatopcheck .16s ease 0s forwards;-o-animation:dothatopcheck .16s ease 0s forwards;-webkit-animation:dothatopcheck .16s ease 0s forwards;animation:dothatopcheck .16s ease 0s forwards}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:after,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:after{top:6px;left:3px;-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::after,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::after{-moz-animation:dothabottomcheck 80ms ease 0s forwards;-o-animation:dothabottomcheck 80ms ease 0s forwards;-webkit-animation:dothabottomcheck 80ms ease 0s forwards;animation:dothabottomcheck 80ms ease 0s forwards;height:4px}.mec-single-event .mec-events-meta-group-booking button[type=submit]:after,.mec-single-event a.button:after{display:none;font-family:simple-line-icons;content:"\e098";margin-left:4px;-webkit-animation:rotating 1.2s linear infinite;-moz-animation:rotating 1.2s linear infinite;-ms-animation:rotating 1.2s linear infinite;-o-animation:rotating 1.2s linear infinite;animation:rotating 1.2s linear infinite}.mec-single-event .mec-events-meta-group-booking button[type=submit].loading:after,.mec-single-event a.button.loading:after{display:inline-block}.mec-single-event .mec-event-export-module{display:block}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul{display:table;width:100%}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li{display:table-cell}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li:last-child{text-align:right}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a:hover{color:#fff}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul{padding-left:0;margin:15px 5px}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting{padding-left:0;margin:0}.mec-ticket-price{margin-left:10px;font-size:13px;font-weight:300}.mec-book-reg-field-checkbox label,.mec-book-reg-field-radio label{line-height:1.36}.mec-book-reg-field-checkbox input[type=checkbox],.mec-book-reg-field-radio input[type=radio]{float:left;margin-right:5px!important}.mec-ticket-available-spots .mec-event-ticket-description,.mec-ticket-available-spots .mec-event-ticket-price{font-size:11px}.mec-book-ticket-container .mec-reg-mandatory:nth-child(2) label:after,.mec-book-ticket-container .mec-reg-mandatory:nth-child(3) label:after,.mec-book-ticket-container .wbmec-mandatory{content:"";color:red;width:50px;height:50px;font-size:14px;padding-left:5px}@media only screen and (max-width:767px){.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li{width:100%;min-height:40px;margin-bottom:15px;text-align:center;float:none;display:block}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a{width:100%;padding-left:0;padding-right:0;text-align:center;display:block;font-size:12px}}.mec-single-event .mec-events-meta-group{margin-bottom:0}@media only screen and (max-width:767px){.mec-single-event .mec-events-meta-group-booking{margin-bottom:30px}}.mec-single-event .mec-event-meta dt,.mec-single-event .mec-event-meta h3{text-transform:uppercase;font-size:16px;font-weight:700;padding-bottom:5px;display:inline;color:#000;padding-left:10px}.mec-single-event .mec-event-meta h6{text-transform:uppercase;font-size:13px;padding-bottom:5px;display:inline;color:#222;padding-left:0}.mec-single-event .mec-event-meta .mec-events-event-categories a,.mec-single-event .mec-event-meta dd{font-size:14px;color:#8d8d8d}.mec-single-event .mec-event-meta .mec-location dd.author{color:#3c3b3b}.mec-single-event .mec-event-meta dd{margin:0;padding-left:35px}.mec-single-event .mec-event-meta dd.mec-events-event-categories{min-height:35px;line-height:35px}@media only screen and (max-width:480px){.single-mec-events .lity-container{width:100%}.single-mec-events .lity-content .mec-events-meta-group-booking{padding:20px;width:85%;margin:0 auto}}.mec-single-event .mec-event-meta dd.mec-events-event-categories:first-of-type{padding-top:5px}.mec-single-event .mec-event-meta dd.mec-events-event-categories:last-of-type{border-bottom:0}.mec-single-event .mec-event-meta dd a{color:#8d8d8d;transition:all .2s ease}.mec-single-event .mec-event-meta dd a i:before{font-size:16px!important}.mec-single-event .mec-event-meta dd a i{margin-right:8px}.mec-single-event .mec-event-meta dl{margin-bottom:0}.mec-single-event .mec-event-meta .mec-events-event-cost{font-size:18px}.mec-single-event .mec-event-meta .mec-events-address{color:#a9a9a9;margin-bottom:3px}.mec-single-event .mec-event-meta .mec-events-meta-group-venue .author{margin-bottom:0;color:#8d8d8d;font-size:13px}.mec-single-event .mec-events-event-image{margin-bottom:0}.mec-single-event h2.mec-single-event-title{margin-bottom:30px;font-weight:700;font-size:33px}.mec-single-event .mec-booking-button{border-bottom:none;letter-spacing:.5px;line-height:48px;height:76px;transition:all .5s ease;color:#fff;padding:16px;display:block;text-align:center;font-size:16px;border-radius:2px;box-shadow:0 1px 2px rgba(0,0,0,.15)}.mec-single-event .mec-booking-button:hover{background-color:#101010!important}.mec-single-event .mec-event-tags a{display:inline-block;color:#444;font-size:11px;text-transform:uppercase;letter-spacing:1.5px;font-weight:500;padding:3px 7px;border:1px solid #ddd;border-radius:2px;background:#fff;margin:1px 3px}.mec-single-event .mec-event-tags:before{font-size:24px;color:#303030;margin-right:5px;content:"\f02c";font-family:fontawesome}.mec-single-event .mec-event-tags{padding-top:13px}.mec-single-event .mec-event-sharing{margin:30px 0 10px}.mec-region.mec-events-abbr,.mec-single-event .mec-street-address{font-style:normal;font-size:13px}.mec-events-meta-group.mec-events-meta-group-venue:before,.mec-single-event-date:before,.mec-single-event-time:before{color:#40d9f1}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-event-social h3{text-transform:uppercase;font-size:15px;font-weight:700;padding-bottom:5px;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative}.mec-single-event .mec-social-single:before{padding:13px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:39px}.mec-single-event .mec-event-social .event-sharing{margin-top:30px}.mec-single-event .mec-event-social ul{list-style:none;margin-left:0}.mec-single-event .mec-event-social li.mec-event-social-icon{display:inline-block}.mec-single-event .mec-event-social li.mec-event-social-icon a{display:inline-block;color:#fff;width:40px;height:40px;padding:9px;font-size:16px;margin-right:5px;margin-bottom:5px}.mec-single-event .mec-event-social a.facebook{background:#3b5996}.mec-single-event .mec-event-social a.facebook:hover{background:#28385c}.mec-single-event .mec-event-social a.twitter{background:#00acee}.mec-single-event .mec-event-social a.twitter:hover{background:#0087bd}.mec-single-event .mec-event-social a.vimeo{background:#0dadd6}.mec-single-event .mec-event-social a.vimeo:hover{background:#0a85a3}.mec-single-event .mec-event-social a.dribble{background:#d53e68}.mec-single-event .mec-event-social a.dribble:hover{background:#bf4c78}.mec-single-event .mec-event-social a.youtube{background:#cb322c}.mec-single-event .mec-event-social a.youtube:hover{background:#992622}.mec-single-event .mec-event-social a.pinterest{background:#cb2027}.mec-single-event .mec-event-social a.pinterest:hover{background:#99181d}.mec-single-event .mec-event-social a.google{background:#c3391c}.mec-single-event .mec-event-social a.google:hover{background:#99181f}.mec-single-event .mec-event-social a.linkedin{background:#0073b2}.mec-single-event .mec-event-social a.linkedin:hover{background:#005380}.mec-single-event .mec-event-social a.email{background:#ff5d5e}.mec-single-event .mec-event-social a.email:hover{background:#cc4949}.mec-single-event .mec-event-social a.vk{background:#5b88bd}.mec-single-event .mec-event-social a.vk:hover{background:#3d608a}.mec-single-event .mec-event-social a.tumblr{background:#34465d}.mec-single-event .mec-event-social a.tumblr:hover{background:#273649}.mec-single-event .mec-event-social a.telegram{background:#08c}.mec-single-event .mec-event-social a.telegram:hover{background:#1076be}.mec-single-event .mec-event-social a.whatsapp{background:#25d366}.mec-single-event .mec-event-social a.whatsapp:hover{background:#23ac55}.mec-single-event .mec-event-social a.flipboard{background:#e12828}.mec-single-event .mec-event-social a.flipboard:hover{background:#af1e1e}.mec-single-event .mec-event-social a.pocket{background:#ef4056}.mec-single-event .mec-event-social a.pocket:hover{background:#8d1717}.mec-single-event .mec-event-social a.reddit{background:#ff5700}.mec-single-event .mec-event-social a.reddit:hover{background:#c94909}.mec-single-event .mec-event-social a.flipboard svg,.mec-single-event .mec-event-social a.telegram svg{height:16px}.mec-single-event .mec-event-social li.mec-event-social-icon a svg{display:unset}.mec-single-event .mec-event-social a.rss{background:#f29a1d}.mec-single-event .mec-event-social a.rss:hover{background:#cc7400}.mec-single-event .mec-event-social a.instagram{background:#457399}.mec-single-event .mec-event-social a.instagram:hover{background:#2e4d66}.mec-single-event .mec-event-social a.linkedin{background:#457399}.mec-single-event .mec-event-social a.linkedin:hover{background:#2e4d66}.mec-single-event .mec-event-social a.other-social{background:#ff5d5e}.mec-single-event .mec-event-social a.other-social:hover{background:#cc4949}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4,.mec-single-event .mec-frontbox-title{text-transform:uppercase;font-size:15px;font-weight:700;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative;text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4:before,.mec-single-event .mec-frontbox-title:before{padding:1px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-35px;left:50%}.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-month],.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-year]{width:47%!important;margin-right:12px;margin-top:5px;display:inline-block!important}@media(max-width:768px){.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-month],.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-year]{width:100%!important;margin-right:0;display:block!important}}.mec-event-meta i:before{font-size:20px;vertical-align:middle}.mec-event-meta .mec-single-event-additional-organizers i:before,.mec-event-meta .mec-single-event-organizer i:before{font-size:14px;vertical-align:baseline}#mec-wrap .mec-events-day-time-slot .mec-events-content{float:left;width:33%;padding:0 15px}#mec-wrap .mec-events-day-time-slot .mec-events-event-image{padding-left:0}#mec-events-content .mec-events-abbr{color:#8d8d8d;font-size:14px}.mec-single-event .mec-events-content{margin-bottom:30px}.mec-single-event .mec-organizer-url a{word-wrap:break-word}.mec-single-event #headline{margin:0 0 10px}.mec-single-event #headline h2{padding:0}.mec-single-event .mec-events-meta-group.mec-events-meta-group-gmap .mec-events-venue-map{margin-top:0;padding:8px;border:1px solid #e5e5e5;border-radius:7px}#mec-events-gmap-0{height:325px!important}.mec-events-list .mec-events-day-time-slot .mec-events-event-meta{width:33%;float:left;padding:40px;height:auto;margin:0}.mec-events-day-time-slot .mec-events-content.description.entry-summary{font-size:15px;font-weight:300;color:#8d8d8d}.mec-events-day-time-slot .type-mec_events h2{font-size:28px;padding-bottom:20px}.mec-events-day .mec-events-day-time-slot .type-mec_events{margin:0}.mec-events-day .mec-events-day-time-slot h5{background-color:#8d8d8d}.mec-single-event .mec-event-meta .mec-single-event-additional-organizers .mec-events-single-section-title,.mec-single-event .mec-event-meta .mec-single-event-organizer .mec-events-single-section-title,.mec-single-event .mec-events-meta-date h3{padding-left:0;margin:10px;display:inline-block}.mec-single-event .mec-events-meta-date h3{width:100%}.mec-single-event .mec-events-event-image{border:0}.mec-single-event .mec-events-venue-map{padding:0}.mec-event-cost,.mec-event-more-info,.mec-event-website,.mec-events-meta-date,.mec-single-event-additional-organizers,.mec-single-event-category,.mec-single-event-date,.mec-single-event-label,.mec-single-event-location,.mec-single-event-organizer,.mec-single-event-time{background:#f7f7f7;padding:12px 14px 8px;margin-bottom:12px;vertical-align:baseline;position:relative}.mec-single-event .mec-events-meta-date dd,.mec-single-event .mec-single-event-additional-organizers dd,.mec-single-event .mec-single-event-organizer dd{padding-left:0;margin-bottom:10px}.mec-single-event .mec-events-meta-date dd span,.mec-single-event .mec-single-event-additional-organizers dd span,.mec-single-event .mec-single-event-organizer dd span{display:block;padding-left:12px;color:#8d8d8d}.mec-single-event .mec-events-meta-date i,.mec-single-event .mec-single-event-additional-organizers i,.mec-single-event .mec-single-event-organizer i{margin-right:10px;margin-left:12px}.mec-events-meta-group.mec-events-meta-group-venue dl{margin-bottom:0}address.mec-events-address{line-height:19px;font-style:normal;font-size:12px}.mec-single-event .mec-event-content dt{margin-top:5px}.mec-single-event .mec-single-event-additional-organizers .mec-single-event-additional-organizer{margin-bottom:15px;padding-bottom:5px;border-bottom:1px solid #e4e4e4}.mec-single-event .mec-single-event-additional-organizers .mec-single-event-additional-organizer:last-child{margin-bottom:0;padding-bottom:0;border:none}.mec-event-schedule-content{border-left:4px solid #f0f0f0;padding-top:10px;margin-top:30px;margin-left:25px;margin-bottom:20px;color:#8a8a8a}.mec-event-schedule-content dl{padding-left:24px;font-size:12px;position:relative;margin-bottom:35px}.mec-event-schedule-content dl:before{content:'';display:block;position:absolute;left:0;top:4px;width:20px;height:0;border-top:4px solid #f0f0f0}.mec-event-schedule-content dl dt{margin:0 0 10px;line-height:1.16}.mec-event-schedule-content dl dt.mec-schedule-title{font-size:13px;color:#5a5a5a;font-weight:700}.mec-event-schedule-content dl dt.mec-schedule-description{font-weight:300}.mec-event-schedule-content .mec-schedule-speakers{background:#f7f7f7;padding:10px}.mec-wrap .mec-event-schedule-content h6{font-size:13px;color:#5a5a5a;font-weight:700;display:inline-block}.mec-wrap .mec-event-schedule-content a{font-weight:400;color:#5a5a5a;transition:all .1s ease}.single-mec-events .mec-speakers-details ul{padding:0}.mec-single-event .mec-speakers-details ul li{list-style:none;background:#f7f7f7;padding:5px 5px 18px 5px;margin-top:14px}.mec-single-event .mec-speakers-details ul li a{-webkit-transition:.2s all ease;transition:.2s all ease}.mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a img{float:left;border-radius:50%;transition:.2s all ease;border:2px solid transparent;width:68px;height:68px}.mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a:hover img{border-color:#40d9f1}.mec-single-event .mec-speakers-details ul li .mec-speaker-name{display:inline-block;margin-top:10px;font-size:15px;line-height:1.8;text-transform:capitalize;font-weight:700;padding-left:8px}.mec-single-event .mec-speakers-details ul li .mec-speaker-job-title{display:block;font-size:12px;margin-top:-1px;padding-left:75px;color:#888}.mec-single-event-location img,.mec-single-event-organizer img{margin-bottom:10px;width:100%}.mec-qrcode-details{text-align:center}.mec-time-comment{font-size:11px}.mec-wrap .mec-attendees-list-details p{font-weight:300;margin:20px 0 0 0;color:#8d8d8d}.mec-wrap .mec-attendees-list-details li{list-style:none;display:block;margin-top:15px}.mec-wrap .mec-attendees-list-details li .mec-attendee-avatar{display:inline-block}.mec-wrap .mec-attendees-list-details li .mec-attendee-profile-link{display:inline-block;vertical-align:top;margin-left:10px}.mec-attendees-list-details ul{margin-bottom:0}.mec-attendees-list-details .mec-attendee-profile-link a{color:#8d8d8d;display:block}.mec-attendees-list-details .mec-attendee-profile-link span{display:inline-block;color:#000;vertical-align:middle;cursor:pointer}.mec-attendees-list-details span.mec-attendee-profile-ticket-number{border-radius:50px;width:20px;height:20px;font-size:12px;text-align:center;color:#fff;margin-right:4px}.mec-attendees-list-details .mec-attendee-profile-link span i{vertical-align:middle;font-size:9px;font-weight:700;margin-left:5px}.mec-attendees-list-details .mec-attendees-toggle{border:1px solid #e6e6e6;background:#fafafa;padding:15px 15px 0;border-radius:3px;margin:12px 0 20px 52px;position:relative;font-size:13px;box-shadow:0 3px 1px 0 rgba(0,0,0,.02)}.mec-attendees-list-details .mec-attendees-toggle:after,.mec-attendees-list-details .mec-attendees-toggle:before{content:'';display:block;position:absolute;left:50px;width:0;height:0;border-style:solid;border-width:10px}.mec-attendees-list-details .mec-attendees-toggle:after{top:-20px;border-color:transparent transparent #fafafa transparent}.mec-attendees-list-details .mec-attendees-toggle:before{top:-21px;border-color:transparent transparent #e1e1e1 transparent}.mec-attendees-list-details .mec-attendees-toggle .mec-attendees-item{padding-bottom:15px}.mec-attendees-list-details .mec-attendee-avatar img{border-radius:3px}.mec-attendee-avatar-sec{float:left;width:50px;margin-right:12px}.mec-attendee-profile-name-sec,.mec-attendee-profile-ticket-sec{float:left;width:calc(100% - 62px);margin-top:3px}.mec-calendar{margin-bottom:20px;border:1px solid #e8e8e8;width:100%;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-calendar .mec-calendar-topsec{display:table;background:#fff}.mec-calendar .mec-calendar-topsec .mec-calendar-events-sec{display:none}.mec-calendar .mec-calendar-side{width:590px;display:table-cell;padding:40px;position:relative;text-align:center;box-shadow:0 1px 5px 6px rgba(0,0,0,.005) inset}.mec-calendar .mec-calendar-events-side{display:table-cell;height:100%;border-left:1px solid #efefef;padding:40px;width:100%}.mec-calendar .mec-calendar-events-side .mec-table-side-day{width:46px;height:46px;margin:0 auto 20px;position:relative;text-align:center;line-height:46px;border:1px solid #40d9f1;border-radius:50%;font-size:12px;font-weight:600;padding:0}.mec-calendar .mec-calendar-events-side .mec-table-side-title{text-align:center;font-size:11px;text-transform:uppercase;letter-spacing:3px;margin-bottom:14px}.mec-calendar .mec-calendar-header{position:relative;width:560px;margin-top:8px;margin-bottom:16px}.mec-calendar .mec-calendar-header h2{text-transform:uppercase;font-size:22px;font-weight:700;color:#333}.mec-calendar .mec-event-footer{width:auto;min-height:60px}.mec-calendar dl{display:table;margin:0;border:none;padding:0;table-layout:fixed}.mec-calendar dt{display:table-cell;transition:all .66s ease;color:#4d4d4d;background:#fff;border-radius:44px;font-size:14px;width:80px;height:80px;line-height:80px;text-align:center}.mec-calendar .mec-calendar-table .mec-no-event{display:none}.mec-calendar .mec-calendar-table-head dt{font-weight:700;text-transform:uppercase;font-size:15px}.mec-calendar .mec-calendar-row dt:hover{background:#f4f4f4}.mec-calendar .mec-table-nullday{color:#cacaca}.mec-calendar.mec-box-calendar .mec-table-nullday:last-child{border-right:1px solid #eaeaea}.mec-calendar .mec-next-month:hover,.mec-calendar .mec-prev-month:hover{background:#f4f4f4}.mec-calendar .mec-selected-day,.mec-calendar .mec-selected-day:hover{background:#40d9f1;color:#fff}.mec-calendar .mec-selected-day a{color:#fff}.mec-calendar .mec-has-event{position:relative}.mec-calendar .mec-calendar-row dt.mec-has-event:hover{background:#40d9f1}.mec-calendar .mec-has-event a{cursor:pointer;display:block;width:100%;height:100%;border-radius:50%;color:#4d4d4d;transition:all .25s ease;text-decoration:none;box-shadow:none}.mec-calendar .mec-calendar-row dt.mec-has-event.mec-selected-day a,.mec-calendar .mec-calendar-row dt.mec-has-event:hover a{color:#fff}.mec-calendar .mec-has-event:after{background-color:#40d9f1;border-radius:50%;display:block;content:'';width:8px;height:8px;bottom:14px;left:50%;margin:-4px 0 0 -4px;position:absolute;transition:all .25s ease}.mec-calendar .mec-calendar-row dt.mec-has-event:hover:after{background-color:#fff}.mec-calendar .mec-has-event.mec-selected-day:after{display:none}.mec-calendar .mec-event-article{text-align:left;margin-bottom:0;padding-bottom:25px;padding-top:26px;border-top:1px solid #efefef;transition:all .33s ease}.mec-calendar .mec-event-article:hover{background-color:#fafafa}.mec-calendar .mec-event-article .mec-event-time{font-size:11px;line-height:1.1;margin:0}.mec-calendar .mec-event-article .mec-event-title{font-size:13px;padding:0;margin:10px 0 8px;font-weight:700;text-transform:uppercase}.mec-calendar .mec-event-article .mec-event-title a{text-decoration:none;color:#494949;transition:color .3s ease}.mec-calendar .mec-event-article .mec-event-title a:hover{color:#40d9f1}.mec-calendar .mec-event-article .mec-event-image,.mec-calendar .mec-event-list-classic .mec-event-image img{width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-image{float:left;margin-right:20px;width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-detail,.mec-calendar .mec-event-article .mec-localtime-details div{font-size:13px;line-height:1.3;font-family:Roboto,sans-serif;color:#9a9a9a;margin-bottom:0}.mec-calendar .mec-calendar-side .mec-next-month,.mec-calendar .mec-calendar-side .mec-previous-month{cursor:pointer;position:absolute;top:0;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;color:#a9a9a9;font-size:12px;letter-spacing:1px;text-transform:uppercase;padding-left:10px;padding-right:10px;border:1px solid #efefef;border-top:none;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease}.mec-calendar .mec-calendar-side .mec-next-month i,.mec-calendar .mec-calendar-side .mec-previous-month i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-calendar .mec-calendar-side .mec-next-month:hover,.mec-calendar .mec-calendar-side .mec-previous-month:hover{background-color:#f9f9f9;color:#40d9f1}.mec-calendar .mec-calendar-side .mec-previous-month{left:0;border-bottom-right-radius:6px;border-left:none}.mec-calendar .mec-calendar-side .mec-next-month{right:0;border-bottom-left-radius:6px;border-right:none}@media only screen and (min-width:961px){.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-side{width:370px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-header{position:relative;width:350px;margin-top:30px;margin-bottom:20px;padding-top:20px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) dt{width:50px;height:50px;line-height:50px}.mec-wrap.mec-sm959 .mec-calendar.mec-event-calendar-classic dl dt{height:110px}}@media only screen and (max-width:1200px){.mec-calendar .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-calendar .mec-calendar-side{width:370px}.mec-calendar .mec-calendar-header{position:relative;width:350px;margin-top:30px}.mec-calendar dt{width:50px;height:50px;line-height:50px}}@media only screen and (max-width:767px){.mec-calendar .mec-calendar-header h2{font-size:18px}.mec-calendar .mec-calendar-topsec{width:100%}.mec-calendar .mec-calendar-side{width:100%;display:block;padding:30px}.mec-calendar .mec-calendar-header{width:auto}.mec-calendar .mec-calendar-events-side{width:100%;display:block;height:100%;border-left:none;border-top:1px solid #efefef;padding:20px}.mec-calendar dl{width:100%}.mec-calendar dt{width:14%;height:60px;line-height:60px;border-radius:50px}}@media only screen and (max-width:479px){.mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-calendar .mec-calendar-header h2{font-size:16px;margin-top:33px}.mec-calendar dt{height:38px;line-height:38px}.mec-calendar .mec-event-list-classic .mec-event-detail,.mec-calendar .mec-event-list-classic .mec-event-title{font-size:12px}.mec-calendar .mec-event-list-classic .mec-event-time{font-size:10px}}.mec-box-calendar.mec-calendar .mec-has-event a,.mec-box-calendar.mec-calendar dt{border-radius:0}.mec-box-calendar.mec-calendar .mec-calendar-header{margin-top:2px;margin-bottom:30px}.mec-box-calendar.mec-calendar dt{border-bottom:1px solid #eaeaea;border-left:1px solid #eaeaea}.mec-box-calendar.mec-calendar dl dt:last-child{border-right:1px solid #eaeaea}.mec-box-calendar.mec-calendar .mec-calendar-table-head dt{border-top:1px solid #eaeaea;background-color:#f8f8f8}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{background-color:#f4f4f4}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{border-radius:2px;top:40px;border:1px solid #eee;height:30px;line-height:30px;z-index:1}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:60px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:60px}.mec-box-calendar.mec-calendar .mec-calendar-side{box-shadow:none}.mec-box-calendar.mec-calendar .mec-calendar-events-side{border:none}.mec-box-calendar.mec-calendar .mec-calendar-events-side .mec-table-side-day{border-radius:2px}.mec-box-calendar.mec-calendar h4.mec-month-label{position:relative;width:560px;margin-top:2px;margin-bottom:30px;text-transform:uppercase;font-size:22px;font-weight:700;color:#333}.mec-widget .mec-box-calendar.mec-calendar h4.mec-month-label{width:100%;margin-top:8px;font-size:13px}@media only screen and (max-width:1200px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:42px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:42px}.mec-calendar .mec-calendar-header h2{font-size:17px;margin-top:7px}}@media only screen and (max-width:767px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{top:28px;font-size:10px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:30px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:30px}.mec-calendar .mec-calendar-header h2{font-size:15px}}@media only screen and (max-width:479px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{top:16px;font-size:0;padding:4px 0;text-align:center;min-width:33px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:10px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:10px}.mec-box-calendar.mec-calendar .mec-calendar-header h2{font-size:12px;margin-top:15px}.mec-box-calendar.mec-calendar .mec-event-image{margin-right:12px}}.mec-calendar.mec-event-calendar-classic,.mec-calendar.mec-event-calendar-classic .mec-calendar-side{border:none;padding:0;width:100%;height:100%;box-shadow:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-side{display:block}.mec-calendar.mec-event-calendar-classic .mec-calendar-header,.mec-calendar.mec-event-calendar-classic dl{width:100%}.mec-calendar.mec-event-calendar-classic dl dt{width:15%;height:136px;line-height:1.2;text-align:left;padding:5px 7px;position:relative}.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{height:30px!important}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{top:0}.mec-calendar.mec-event-calendar-classic .mec-has-event:after{bottom:auto;top:24px;left:7px;margin:0}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{left:0}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month{right:0}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{text-align:left;background:#fafafa;border:1px solid #eaeaea;border-top:none;padding:10px 20px}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{display:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-event-article:hover{background-color:#fcfcfc}.mec-calendar.mec-event-calendar-classic .mec-selected-day,.mec-calendar.mec-event-calendar-classic dt.mec-selected-day:hover{color:#40d9f1;font-weight:700;background:#fafafa;border-bottom:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-day,.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{display:inline-block;margin:0;margin-bottom:15px;font-weight:700}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-day{margin-left:4px}.mec-calendar.mec-event-calendar-classic .mec-calendar-row dt.mec-has-event a{color:#4d4d4d}.mec-calendar.mec-event-calendar-classic .mec-calendar-row dt.mec-has-event:not(.mec-selected-day):hover a{color:#fff}@media only screen and (max-width:1200px){.mec-calendar.mec-event-calendar-classic dl dt{height:100px}}@media only screen and (max-width:767px){.mec-calendar.mec-event-calendar-classic dl dt{height:40px}}@media only screen and (max-width:479px){.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{padding:10px}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-header h2{font-size:13px;margin-top:8px}}.mec-calendar .mec-event-article.mec-single-event-novel{padding:4px 8px;min-height:25px;margin:0 -4px;border-radius:0}.mec-calendar .mec-event-article.mec-single-event-novel h4{margin:0;font-size:10px;line-height:18px}.mec-calendar.mec-event-container-novel dl dt{padding:3px}.mec-calendar.mec-event-calendar-classic .mec-calendar-novel-selected-day{display:inline-block;padding:4px;margin-left:1px}.mec-calendar.mec-event-calendar-classic .mec-selected-day .mec-calendar-novel-selected-day{color:#fff}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-selected-day,.mec-calendar.mec-event-calendar-classic.mec-event-container-novel dt.mec-selected-day:hover{border-bottom:1px solid #eaeaea}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-calendar-side .mec-calendar-table{min-height:auto}.mec-single-event-novel.light h4{color:#000!important}.mec-single-event-novel.dark h4{color:#fff!important}@media only screen and (max-width:768px){.mec-calendar .mec-event-article.mec-single-event-novel{padding:0;min-height:5px}.mec-calendar .mec-event-article.mec-single-event-novel h4{display:block;font-size:9px}}.mec-event-container-simple .event-single-content-simple{display:none}.mec-event-calendar-classic.mec-event-container-simple .mec-calendar-side .mec-calendar-table{min-height:unset}.mec-event-container-simple .mec-monthly-tooltip h4{font-size:13px;font-weight:500;margin:0;color:#444}.mec-event-container-simple .mec-monthly-tooltip h4:hover{text-decoration:underline;color:#111}.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple{border-bottom:1px dashed #e3e3e3;padding:10px 2px;display:block}.mec-calendar.mec-event-container-simple dl dt.mec-calendar-day{font-size:30px;color:#000}.mec-calendar.mec-event-container-simple .mec-calendar-row dt:hover{background:unset}.mec-calendar.mec-event-container-simple .mec-calendar-row dt,.mec-calendar.mec-event-container-simple .mec-calendar-row dt:last-child,.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt,.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt:last-child{border-width:2px}.mec-calendar.mec-event-container-simple dl dt.mec-selected-day,.mec-calendar.mec-event-container-simple dl dt.mec-selected-day:hover{border-bottom:2px solid #40d9f1;background:unset}.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt{line-height:36px}@media (max-width:768px){.mec-calendar.mec-event-container-simple{overflow-x:scroll}.mec-calendar.mec-event-container-simple .mec-calendar-side{min-width:100%}.mec-event-container-simple .mec-monthly-tooltip h4{font-size:12px}}.mec-wrap.colorskin-custom .mec-calendar.mec-event-container-simple .mec-selected-day:hover{background:#f4f4f4}.mec-event-container-simple .mec-calendar-day .mec-monthly-tooltip.event-single-link-simple:last-of-type{border:none}.mec-tooltip-event-title{font-size:16px;font-weight:700;color:#000;margin-bottom:2px}.mec-tooltip-event-time{font-size:12px;color:#888;margin-bottom:8px;margin-top:5px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-content{padding:17px}.mec-tooltip-event-content{clear:both}.mec-tooltip-event-featured{float:left;margin-right:13px;margin-bottom:1px}.mec-tooltip-event-featured img{max-width:120px}.mec-tooltip-event-desc{font-size:14px;color:#444;line-height:18px}.mec-tooltip-event-desc p{font-size:13px;line-height:1.4;margin-bottom:10px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-box{border-radius:3px!important;border:1px solid #e2e3e4!important;background:#fff!important;box-shadow:0 -1px 30px -2px rgba(0,0,0,.15)!important}.tooltipster-sidetip .tooltipster-arrow{overflow:visible!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-border{border-width:12px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-right .tooltipster-arrow-border{border-right-color:#e2e3e4!important}.tooltipster-sidetip .tooltipster-arrow-border{left:-12px!important;z-index:9999999999!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-background{display:block!important}.tooltipster-sidetip .tooltipster-arrow-background{border-width:11px!important;z-index:99999999999!important}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background{left:-9px!important;top:1px!important;border-right-color:#fff!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background{border-top-color:#fff!important;left:0!important;top:-1px!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border{left:-1px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-top .tooltipster-arrow-border{border-top-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{left:-1px!important;top:-11px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{border-bottom-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background{top:-9px!important;border-bottom-color:#fff!important}.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background{border-left-color:#fff!important;left:-2px!important;top:0!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-left .tooltipster-arrow-border{border-left-color:#e2e3e4!important;left:-1px!important;top:-1px!important}@media (max-width:780px){.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4{word-break:break-all;font-size:13px}}@media (max-width:320px){.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4{font-size:10px}}.mec-calendar.mec-calendar-daily .mec-calendar-day-events .mec-event-article{padding-left:15px;padding-right:15px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month{text-align:center;background-color:#fff;border-bottom:2px solid #f4f4f4;position:relative}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{color:#444;font-size:18px;line-height:1.2;padding:15px 0 11px;margin:0;font-weight:700;letter-spacing:1px;text-transform:uppercase;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-top{text-align:center;padding:10px 0;position:relative;background-color:#fafafa}.mec-calendar.mec-calendar-daily .mec-next-month,.mec-calendar.mec-calendar-daily .mec-previous-month{position:absolute;top:50%;left:50%;margin-top:-25px;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;border:1px solid #e2e2e2;border-radius:50px;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month i,.mec-calendar.mec-calendar-daily .mec-previous-month i{font-size:14px;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month:hover,.mec-calendar.mec-calendar-daily .mec-previous-month:hover{border-color:#d0d0d0;color:#444;box-shadow:0 2px 5px 0 rgba(0,0,0,.075)}.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-150px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:100px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month{min-height:28px;height:28px;line-height:28px;width:28px;margin-top:-14px;border-radius:3px}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2,.mec-calendar.mec-calendar-daily .mec-calendar-d-top h3{margin-top:9px;color:#b9b9b9;font-family:Roboto,sans-serif;font-size:30px;font-weight:100;text-transform:uppercase;margin-bottom:12px;line-height:1}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2{font-size:81px;color:#444;margin-bottom:10px;line-height:1.1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table{overflow:hidden;background:#fff;min-height:60px;border-top:1px solid #e6e6e6;border-bottom:2px solid #f3f3f3;padding:0 50px;position:relative}@media only screen and (min-width:479px){.mec-calendar.mec-calendar-daily .mec-calendar-d-table{padding:0 55px}}.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl{width:1310px;display:block}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{display:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl.mec-weekly-view-week-active{display:block}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt{display:block;background:#fff;width:42px;height:60px;line-height:60px;text-align:center;float:left;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6;border-radius:0}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day:hover,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt:hover{background:#fafafa;box-shadow:0 2px 5px 0 rgba(0,0,0,.065) inset;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day{cursor:default;background:#fff;color:#c1c1c1;line-height:59px;text-align:center;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-has-event{cursor:pointer;font-weight:700;color:#4a4a4a}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-daily-view-day-active,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt.mec-table-d-current{font-size:18px;font-weight:700;background:#fafafa;color:#40d9f1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-prev{float:none;font-size:14px;width:55px;position:absolute;top:0;left:0;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next{left:auto;right:0;border-left:1px solid #e6e6e6;border-right:none}.mec-calendar.mec-calendar-daily .mec-today-container .mec-today-count{font-size:12px;color:#888;text-align:center}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}}.widget .mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}.widget .mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.widget .mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-util-hidden{display:none}.mec-daily-view-date-events,.mec-weekly-view-date-events{list-style:none;margin:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table{padding:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{width:calc(100% - 1px)}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt{width:14.286%;height:70px;line-height:normal;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:hover{background:#fff;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:last-child{border-right:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:12px;font-weight:700;text-transform:uppercase;display:block;margin:15px 0 6px}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-prev{display:none}ul.mec-weekly-view-dates-events,ul.mec-weekly-view-dates-events li{padding:0;margin:0;line-height:initial}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:64px;height:64px;margin-right:10px;font-size:11px;text-transform:uppercase;float:left;text-align:center;padding-top:2px}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:40px;line-height:30px;font-weight:700;display:block;margin-bottom:6px;letter-spacing:1px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-previous-month{margin-left:0;left:12px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-next-month{margin-left:0;left:auto;right:12px}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}}.widget .mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}.mec-week-events-container .mec-weekly-view-dates-events li.mec-no-event-found{list-style:none!important}li.mec-no-event-found .mec-event-title{text-align:center}.mec-widget .mec-calendar{max-width:100%}.mec-widget .mec-calendar dl dt,.mec-wrap.mec-sm959.mec-widget .mec-calendar.mec-event-calendar-classic dl dt{height:40px}.mec-widget .mec-calendar .mec-calendar-events-sec{padding:10px}.mec-widget .mec-calendar .mec-calendar-header h2{font-size:13px;margin-top:8px}.mec-widget .mec-calendar .mec-event-list-classic .mec-event-image{margin-right:12px}.mec-widget .mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-widget .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{font-size:14px}.mec-widget .mec-calendar .mec-event-article .mec-event-image{margin-right:11px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-header{margin-bottom:20px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{font-size:0;padding:4px 0;text-align:center;min-width:33px}.mec-widget .mec-event-calendar-classic .mec-calendar-side .mec-calendar-table{min-height:200px}.mec-widget .mec-event-list-classic{margin-bottom:8px;padding:8px 0}.mec-widget .mec-event-list-classic .mec-event-article{margin-bottom:0;padding:10px 0;position:relative;min-height:86px;padding-left:80px}.mec-widget .mec-event-list-classic .mec-event-date{font-size:10px;line-height:14px;text-transform:uppercase}.mec-widget .mec-event-list-classic .mec-event-title{font-size:13px}.mec-widget .mec-event-list-classic .mec-event-detail{font-size:11px}.mec-widget .mec-event-list-classic .mec-event-image{width:68px;position:absolute;left:0}.mec-event-list-classic .mec-event-image img{width:100%}.mec-widget .mec-event-list-classic .mec-event-detail{overflow:visible}.event-color{width:14px;display:inline-block;height:14px;margin-left:5px;border-radius:50%}.mec-map-lightbox-wp{width:580px;padding:15px 15px 0;background-color:#fff}.mec-map-view-event-detail.mec-event-detail{width:580px;background-color:#e9e9e9;padding:8px 15px}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-article{padding:0 0 15px;margin:0}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-image{width:70px;margin-right:15px}.mec-marker-infowindow-wp{padding:10px}.mec-marker-infowindow-wp .mec-marker-infowindow-count{width:60px;height:60px;display:block;text-align:center;line-height:60px;border:1px solid #40d9f1;border-radius:50%;font-size:32px;color:#40d9f1;float:left;margin-right:11px}.mec-marker-infowindow-wp .mec-marker-infowindow-content{overflow:hidden;padding-top:6px}.mec-marker-infowindow-wp .mec-marker-infowindow-content span{display:block;color:#222}.mec-marker-infowindow-wp .mec-marker-infowindow-content span:first-child{font-size:15px;font-weight:700}.mec-marker-wrap{display:inline-block;width:35px;height:35px;margin:15px 0 0 4px;border-radius:50% 50% 50% 0;background:#00cae9;animation-name:mec-map-bounce;animation-fill-mode:both;animation-duration:1s;border:3px solid #fff;cursor:pointer}.mec-marker-wrap .mec-marker{margin-top:5px;display:block;-webkit-transform:rotate(45deg);transform:rotate(45deg);text-align:center;color:#fff;font-size:17px}.mec-marker-wrap .mec-marker-pulse-wrap{-webkit-transform:rotate(45deg);transform:rotate(45deg);display:inline-block;margin-left:-11px;margin-top:0}.mec-marker-wrap .mec-marker-pulse{display:inline-block;background:#c5c5c5;border-radius:50%;height:14px;width:14px;-webkit-transform:rotateX(55deg);transform:rotateX(55deg);z-index:-2}.mec-marker-wrap .mec-marker-pulse:after{content:"";border-radius:50%;height:40px;width:40px;position:absolute;margin:-13px 0 0 -13px;animation:pulsate 1s ease-out;animation-iteration-count:infinite;opacity:0;box-shadow:0 0 1px 2px #00cae9;animation-delay:1.1s}@keyframes pulsate{0%{transform:scale(.1,.1);opacity:0}50%{opacity:1}100%{transform:scale(1.2,1.2);opacity:0}}@keyframes mec-map-bounce{0%{opacity:0;transform:translateY(-2000px) rotate(-45deg)}60%{opacity:1;transform:translateY(30px) rotate(-45deg)}80%{transform:translateY(-10px) rotate(-45deg)}100%{transform:translateY(0) rotate(-45deg)}}.mec-skin-grid-container .mec-skin-map-container,.mec-skin-list-container .mec-skin-map-container{margin-bottom:20px}.mec-single-event{margin-top:10px}.mec-single-event .mec-events-meta-group-countdown{color:#c9c9c9;text-align:center;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-events-meta-group-countdown .countdown-w{text-align:center;font-size:36px;margin:0 auto;padding:40px 0 0;position:relative;display:table;table-layout:fixed}.mec-events-meta-group-countdown .countdown-w .icon-w{font-size:24px}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:15px;font-weight:300;letter-spacing:1px;text-transform:uppercase;position:relative}.mec-events-meta-group-countdown .countdown-w .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px;width:190px;font-size:72px;transition:all .3s ease-in-out;line-height:1.2}.mec-events-meta-group-countdown .countdown-w .block-w.done-w{border:0 none}.mec-events-meta-group-countdown .countdown-w .block-w li{font-size:50px}.mec-events-meta-group-countdown .countdown-w span{padding:24px 0 20px}.mec-events-meta-group-countdown .countdown-w .div-d{display:none}.mec-events-meta-group-countdown .countdown-w .countdown-message{display:none}.mec-events-meta-group-countdown .countdown-w .block-w i{display:none}#countdown{list-style:none;margin-bottom:0;margin-top:0;margin-left:0;padding-left:0}.mec-events-meta-group-countdown .mec-end-counts h3{display:inherit;text-align:center;font-size:16px;right:50%}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:23px}@media (min-width:481px) and (max-width:768px){.mec-events-meta-group-countdown .countdown-w{padding:0}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:12px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:34px}}@media (min-width:320px) and (max-width:480px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:10px}.mec-events-meta-group-countdown .countdown-w span{font-size:28px}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:16px}}@media (max-width:320px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:9px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:22px}}.info-msg,.mec-error,.mec-success,.warning-msg{margin:10px 0;padding:10px;border-radius:3px 3px 3px 3px;font-size:13px}.info-msg{color:#059;background-color:#bef}.mec-success{color:#0dbf52;background-color:#cef7ce}.warning-msg{color:#9f6000;background-color:#feefb3}.mec-error{color:#d8000c;background-color:#ffbaba}.mec-fes-form,.mec-fes-list{background:#f8feff;padding:30px 3%;color:#798f96;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important}.mec-fes-list .mec-fes-list-top-actions,.mec-fes-list ul{margin:0 auto 15px;max-width:960px;list-style:none}.mec-fes-form-cntt .dashicons-editor-help{display:none}.mec-fes-list ul li *{text-decoration:none!important}.mec-fes-list ul li{padding:20px 15px;border-radius:3px;margin-bottom:15px;border:1px solid #cfeff5;box-shadow:0 2px 6px -4px #cfeff5;background:#fff;line-height:normal}.mec-fes-list ul li a{box-shadow:none;color:#181818}.mec-fes-list ul li a:hover{color:#40d9f1}.mec-fes-list ul li .mec-event-title{font-size:17px;font-weight:600;width:calc(100% - 250px);display:inline-block}@media (max-width:600px){.mec-fes-list ul li .mec-event-title{font-size:13px}}.mec-fes-list .mec-event-status{color:#fff!important;border-color:transparent!important}.mec-fes-form .mec-book-confirmed,.mec-fes-list .mec-book-confirmed{background:#50d477!important}.mec-fes-form .mec-book-pending,.mec-fes-list .mec-book-pending{background:#fcbe69!important}.mec-fes-form .mec-book-rejected,.mec-fes-list .mec-book-rejected{background:#fe686a!important}.mec-fes-form .mec-book-other,.mec-fes-list .mec-book-other{background:#40d9f1!important}.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view{font-size:11px;padding:0;border:0;background:#f7f8f9;float:right;margin-left:5px;border-radius:2px;transition:all .2s ease}.mec-fes-list ul li .mec-fes-event-export a,.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view a{padding:4px 8px;display:inline-block;border:1px solid #e7e8e9;border-radius:2px;color:#789;position:relative}@media (max-width:600px){.mec-fes-list ul li .mec-fes-event-export a,.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view a{font-size:10px}}.mec-fes-list ul li .mec-fes-event-remove:hover{cursor:pointer;background:#f96f8a;border-color:#f96f8a;color:#fff}.mec-fes-list ul li .mec-fes-event-export a:hover,.mec-fes-list ul li .mec-fes-event-view a:hover{background:#40d9f1;color:#fff;border-color:#40d9f1}.mec-fes-form-top-actions a,.mec-fes-list-top-actions a{position:relative;border:none;border-radius:3px;color:#fff!important;display:inline-block;font-size:13px;line-height:1;text-transform:none;font-weight:400;text-decoration:none;cursor:pointer;margin-bottom:20px!important;margin-right:10px;line-height:1;letter-spacing:0;padding:15px 22px;background:#39c36e;box-shadow:0 1px 7px -3px #39c36e!important;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;text-decoration:unset}.mec-fes-form-top-actions a:hover,.mec-fes-list-top-actions a:hover{background:#222;color:#fff}.mec-fes-list-top-actions a{font-weight:600;text-transform:capitalize}.mec-fes-form-top-actions a:before{content:"";border:solid #fff;border-width:0 2px 2px 0;display:inline-block;padding:6px;margin-right:5px;vertical-align:sub;transform:rotate(135deg);-webkit-transform:rotate(135deg)}.mec-fes-form .mec-form-row,.mec-fes-list .mec-form-row{margin-bottom:10px;clear:both}.mec-fes-form label{font-size:13px;display:block;color:#798f96;font-weight:400;padding:0 0 4px 2px}.mec-fes-form input+label{padding-top:8px;padding-left:3px;margin:0;display:inline-block;vertical-align:top}.mec-fes-form .post-status{float:right!important;margin:0 5px;color:#fff;padding:0 10px;border-radius:12px;font-style:italic;font-size:18px}.mec-fes-form input[type=email],.mec-fes-form input[type=number],.mec-fes-form input[type=password],.mec-fes-form input[type=tel],.mec-fes-form input[type=text],.mec-fes-form select,.mec-fes-form textarea{min-width:inherit;width:auto;display:inline;min-height:30px;font-size:13px;padding:10px;margin-bottom:20px;clear:both;background:#fff;border:1px solid #cfeff5;box-shadow:0 2px 5px rgba(207,239,245,.38) inset;border-radius:3px;height:40px;max-width:280px;color:#798f96;font-family:inherit}.mec-fes-form input{background:#fff!important;border-radius:3px!important;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important}.mec-fes-form textarea{height:80px}.mec-fes-form input::-webkit-input-placeholder{color:#798f96}.mec-fes-form input::-moz-placeholder{color:#798f96}.mec-fes-form input:-ms-input-placeholder{color:#798f96}.mec-fes-form input:-moz-placeholder{color:#798f96}#mec_more_info_target{width:100%}@media only screen and (min-width:961px){.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form textarea{width:100%;display:inline-block}}@media only screen and (max-width:768px){.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form textarea{width:100%}}.mec-fes-form input[type=text]#mec_fes_title{padding:5px 10px;min-height:32px;height:50px;background:#fff!important;max-width:100%;font-size:19px;font-weight:400}.mec-fes-form input[type=checkbox],.mec-fes-form input[type=radio]{display:inline!important;float:left;margin:5px 5px 0 0}.mec-fes-form input[type=email]:focus,.mec-fes-form input[type=number]:focus,.mec-fes-form input[type=password]:focus,.mec-fes-form input[type=tel]:focus,.mec-fes-form input[type=text]:focus,.mec-fes-form select:focus,.mec-fes-form textarea:focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-form-row .mec-color{cursor:pointer}.mec-form-row.mec-available-color-row span{margin:10px;width:14px;height:14px;display:inline-block;margin-right:6px;border-radius:20px 20px 20px 20px;vertical-align:middle}.mec-form-row.mec-available-color-row span:first-of-type{margin-left:0}.mec-fes-form.mec-fes-form .mec-tooltip{display:inline}.mec-fes-form-cntt .dashicons-editor-help{display:block}.mec-fes-form .mec-tooltip:hover:after,.mec-fes-form .mec-tooltip:hover:before{display:none}.mec-fes-form.mec-fes-form .mec-tooltip{display:inline-flex;bottom:7px}.mec-fes-form .mec-tooltip .box{min-width:300px;max-width:600px;display:inline-block;left:26px;top:50%;transform:translateY(-50%);padding:0;margin-top:8px;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.3;position:absolute;z-index:9999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s}#webnus-dashboard .mec-fes-form .mec-tooltip .box p,.mec-fes-form .mec-tooltip .box p{color:#fff;font-size:14px;line-height:1.3;margin:0}.mec-fes-form .mec-tooltip:hover .box{visibility:visible;opacity:1}.mec-fes-form .mec-tooltip:hover .box{padding:20px;border-radius:8px}.mec-fes-form .mec-tooltip .box h5{color:#fff;font-size:17px;font-weight:600;margin:-30px -20px;padding:20px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #32363a;border-radius:6px 6px 0 0;z-index:9999}#webnus-dashboard .mec-fes-form .mec-tooltip .box p a,.mec-fes-form .mec-tooltip .box p a{color:#40d9f1;margin-top:10px;margin-left:0;font-weight:400;position:relative;text-decoration:none;display:block;width:max-content}.mec-fes-form .mec-tooltip .box a:hover{color:#f90}.mec-fes-form .mec-tooltip .box:after{display:block;position:absolute!important;top:100%!important;right:50%!important;margin-top:-6px!important;margin-right:-6px!important;width:12px!important;height:24px!important;overflow:hidden!important;transform:rotate(-90deg)!important}.mec-fes-form .mec-tooltip .box:before{display:block;content:''!important;position:absolute!important;width:12px;height:12px;left:-10px!important;top:50%!important;transform:translate(50%,-50%) rotate(-45deg)!important;background-color:#535a61!important;box-shadow:0 8px 9px -4px #535a61!important;z-index:0!important}.mec-fes-form .mec-tooltip .box.top{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-fes-form .mec-tooltip .box.top:after{top:50%!important;right:100%!important}.mec-fes-form .mec-tooltip .box.top:before{left:50%!important;top:100%!important}.mec-fes-form .mec-tooltip .box.bottom{left:50%;top:auto;bottom:0;transform:translate(-50%,100%);margin-bottom:-20px;margin-left:-10px}.mec-fes-form .mec-tooltip .box.bottom:after{top:0!important;right:50%!important;background-color:#3a3f44!important}.mec-fes-form .mec-tooltip .box.bottom:before{left:50%!important;top:-7px!important;transform:translateX(-50%);background-color:#3a3f44!important}.mec-fes-form .mec-tooltip .box.left{left:auto;right:26px;top:50%;transform:translateY(-50%)}.mec-fes-form .mec-tooltip .box.left:before{right:0!important;left:auto!important;top:50%!important}.mec-fes-form .mec-tooltip{display:inline-block;position:relative;margin-right:10px;cursor:help;bottom:5px;left:3px}.mec-fes-form .mec-tooltip:last-child{margin-right:0}.mec-fes-form .mec-tooltip:hover:after{background:#313130;border-radius:5px;bottom:24px;color:#fff;content:attr(title);left:-75px;padding:10px;position:absolute;z-index:98;width:240px}.mec-fes-form .mec-tooltip:hover:before{border:solid;border-color:#313130 transparent;border-width:6px 6px 0;bottom:18px;content:"";left:30%;position:absolute;z-index:99}.mec-fes-form .mec-tooltip .dashicons-before:before{font-size:24px;color:#008aff;line-height:37px}.mec-fes-form .mec-tooltip a:focus{box-shadow:none}.mec-form-row .bootstrap_unvalid{display:block;border:2px solid red;position:relative;display:inline-block;border-bottom:1px dotted #000}.mec-fes-form .mec-tooltiptext{visibility:hidden;width:120px;background-color:red;color:#fff;text-align:center;border-radius:6px;padding:5px 0;position:absolute;z-index:1}.mec-fes-form .mec-tooltip .content p a{display:none}@media only screen and (min-width:961px){.mec-fes-form .mec-fes-form-cntt,.mec-fes-form .mec-fes-form-sdbr{width:68%;float:left;padding-right:20px}.mec-fes-form .mec-fes-form-sdbr{width:32%;padding-right:0;padding-left:20px}.mec-fes-submit-mobile{display:none}}.mec-fes-form .mec-meta-box-fields{padding:0 20px 20px;border:1px solid #cfeff5;margin-bottom:20px!important;box-shadow:0 2px 6px -3px #cfeff5;border-radius:3px;background:#fff}.mec-fes-form .mec-meta-box-fields h4{margin:0 -20px;font-size:15px;font-weight:600;letter-spacing:0;color:#40d9f1;text-transform:capitalize;padding:15px 20px;background:#ecfcff;margin-bottom:20px;border-radius:3px}.mec-fes-sub-button{width:100%}.mec-available-color-row span.color-selected{border:3px solid #fff;box-sizing:content-box;box-shadow:0 0 0 2px #40d9f1,0 2px 8px -1px #40d9f1}.mec-fes-loading:before{content:url(../img/ajax-loader.gif);background:0 0;border-style:none;display:block;margin-left:47%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:190px;margin-right:1.4%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-1,.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-2{width:120px;margin-right:10px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].widefat{width:100%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row{border-bottom:none;padding-bottom:10px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-6{width:39%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row button{margin-right:0;padding:9px 26px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row button.mec-add-hourly-schedule-button{font-size:12px;height:30px;line-height:25px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row .description{display:inline-block;border-left:1px dashed #bfcacc;margin-left:12px;line-height:28px;padding-left:12px;margin-top:5px;font-style:italic}@media only screen and (max-width:768px){.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:100%!important}}#mec_fes_form_message{max-width:838px;margin:10px auto;display:block!important;text-align:center}.mec-wrap .mec-totalcal-box{position:relative;border:1px solid #efefef;padding:20px 5px;margin:0 0 20px;background:#fafafa;overflow:hidden;box-shadow:0 3px 2px 0 rgba(0,0,0,.012);min-height:78px}.mec-wrap .mec-totalcal-box i{float:left;margin:0;width:36px;height:36px;background:#fff;border:1px solid #efefef;text-align:center;padding:10px 0;font-size:15px;color:#888}.mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-wrap .mec-totalcal-box input,.mec-wrap .mec-totalcal-box select{width:auto;min-height:36px;height:36px;line-height:36px;background:#fff;font-size:13px;color:#777;border:1px solid #efefef;margin:0 0 0 -1px;float:left;padding:0 5px;font-family:Roboto,Helvetica,Arial,sans-serif}.mec-wrap .mec-totalcal-box input[type=submit]{cursor:pointer;padding:0 16px;text-transform:uppercase;font-size:11px;font-family:Montserrat,Helvetica,Arial,sans-serif;transition:all .21s ease}.mec-wrap .mec-totalcal-box input[type=submit]:hover{background:#222;color:#fff}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{display:inline-block;text-transform:uppercase;font-family:Montserrat,Helvetica,Arial,sans-serif;font-size:11px;padding:0 12px;cursor:pointer}.mec-wrap .mec-totalcal-box .mec-totalcal-view span:hover{color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected{color:#fff;background:#40d9f1;border-color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view{text-align:right;float:right}.mec-wrap .mec-totalcal-box input[type=search]{width:calc(100% - 36px)}@media only screen and (min-width:961px) and (max-width:1200px){.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-3,.mec-wrap .mec-totalcal-box .col-md-4,.mec-wrap .mec-totalcal-box .col-md-5{width:100%;float:none;padding-bottom:20px;clear:both;overflow:hidden}}@media only screen and (min-width:768px) and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-4{position:relative;right:10px;top:20px;width:initial}.mec-wrap .mec-totalcal-box .col-md-5{padding-bottom:0}.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:767px){.mec-wrap .mec-totalcal-box .mec-totalcal-view{float:none}.mec-wrap .mec-totalcal-box .col-md-4{padding-bottom:0}}@media only screen and (max-width:479px){.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 8px;font-size:10px}.mec-wrap .mec-totalcal-box input[type=submit]{padding:0 10px;font-size:10px}}@media only screen and (min-width:961px){.mec-wrap .mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5,.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-3{width:100%;float:none;padding-bottom:20px;clear:both;overflow:hidden}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-4{position:absolute;right:10px;top:20px;width:initial}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5{padding-bottom:0;width:100%}}@media (min-width:961px) and (max-width:1200px){.mec-full-calendar-wrap .mec-totalcal-box{padding:20px 20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{padding-bottom:20px!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{min-width:calc(30% - 10px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3:last-child select{min-width:calc(50% - 19px)}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view{margin-right:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:10px;text-align:center}}@media (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box{padding:20px 20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{padding-bottom:10px!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px);margin-bottom:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view{margin-right:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:10px;text-align:center}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:100%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:absolute;top:20px}}@media (min-width:780px) and (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:absolute;top:20px}}@media(max-width:780px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{width:calc(50% - 18px)!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:unset;padding-right:0}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:20%;text-align:center;font-size:10px}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 7px;margin-top:20px}}@media(max-width:480px){.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:20%;text-align:center;font-size:10px}}.mec-search-form{padding:20px 10px}.mec-search-form .mec-dropdown-wrap{display:table;width:100%}.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{padding:0 10px;float:left;min-height:55px}.mec-search-form .mec-date-search,.mec-search-form .mec-text-input-search{width:50%;min-height:36px;display:block}.mec-full-calendar-wrap .mec-search-form .mec-date-search,.mec-full-calendar-wrap .mec-search-form .mec-text-input-search{width:100%}.mec-full-calendar-wrap .mec-search-form .col-md-3,.mec-full-calendar-wrap .mec-search-form .col-md-5,.mec-full-calendar-wrap .mec-search-form .col-md-6,.mec-full-calendar-wrap .mec-search-form .col-md-8{padding:0}.mec-widget .mec-search-form .mec-date-search,.mec-widget .mec-search-form .mec-text-input-search{width:100%}.mec-widget .mec-search-form .mec-text-input-search{margin-top:10px}.mec-search-form .mec-date-search{clear:left}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:table-cell;float:none}.mec-widget .mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block}.mec-wrap .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{width:calc(100% - 36px);margin-bottom:20px}.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 106px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}@media only screen and (max-width:767px){.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{width:100%;float:none}.mec-search-form .mec-date-search{min-height:55px}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:50%;float:left}}@media only screen and (max-width:960px){.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 124px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}}@media only screen and (max-width:479px){.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:100%;float:none}}.mec-search-form .mec-text-address-search{float:left;width:100%;padding:0 10px;margin-bottom:20px}.ui-datepicker{background-color:#fff;border:1px solid #66afe9;border-radius:4px;box-shadow:0 0 8px rgba(102,175,233,.6);display:none;margin-top:4px;padding:10px;width:240px}.ui-datepicker a,.ui-datepicker a:hover{text-decoration:none;cursor:pointer}.ui-datepicker a:hover,.ui-datepicker td:hover a{color:#2c6396;-webkit-transition:color .1s ease-in-out;-moz-transition:color .1s ease-in-out;-o-transition:color .1s ease-in-out;transition:color .1s ease-in-out}.ui-datepicker .ui-datepicker-header{margin-bottom:4px;text-align:center}.ui-datepicker .ui-datepicker-title{font-weight:700}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{cursor:default;font-family:dashicons;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;height:20px;line-height:1.4;margin-top:2px;width:20px}.ui-datepicker .ui-datepicker-prev{float:left;text-align:left}.ui-datepicker .ui-datepicker-next{float:right;text-align:center}.ui-datepicker .ui-datepicker-prev:before{content:"\f341"}.ui-datepicker .ui-datepicker-next:before{content:"\f345"}.ui-datepicker .ui-icon{display:none}.ui-datepicker .ui-datepicker-calendar{table-layout:fixed;width:100%}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker .ui-datepicker-calendar th{text-align:center;padding:4px 0}.ui-datepicker .ui-datepicker-calendar td{border-radius:4px;-webkit-transition:background-color .1s ease-in-out,color .1s ease-in-out;-moz-transition:background-color .1s ease-in-out,color .1s ease-in-out;-o-transition:background-color .1s ease-in-out,color .1s ease-in-out;transition:background-color .1s ease-in-out,color .1s ease-in-out}.ui-datepicker .ui-datepicker-calendar td:hover{background-color:#eee;cursor:pointer}.ui-datepicker .ui-datepicker-calendar td a{text-decoration:none}.ui-datepicker .ui-datepicker-current-day{background-color:#4289cc}.ui-datepicker .ui-datepicker-current-day a{color:#fff}.ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover{background-color:#fff;cursor:default}.mec-owl-theme .owl-dots .owl-dot{border:none}.event-carousel-type1-head .mec-event-image{position:relative;min-height:150px}.event-carousel-type1-head .mec-event-image img{width:100%}.mec-event-carousel-content .mec-event-carousel-title a{transition:all .2s ease}.event-carousel-type1-head .mec-event-date-carousel{position:absolute;top:25px;left:1px;font-size:41px;width:160px;color:#fff;font-weight:500;background-color:#40d9f1;padding-left:21px;height:97px;line-height:2.3;padding-right:85px}.event-carousel-type1-head .mec-event-date-carousel:after{content:"";position:absolute;display:inline-block;z-index:-1;bottom:-13px;left:5px;width:0;border-width:13px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.event-carousel-type1-head .mec-event-date-info{font-size:12px;font-weight:300;position:absolute;top:27px;left:75px}.event-carousel-type1-head .mec-event-date-info-year{font-size:12px;font-weight:300;position:absolute;top:45px;left:75px}.mec-event-carousel-content{border:1px solid #e8e8e8;border-top:none;margin-top:-5px;padding:34px 9px 11px 37px}.mec-event-carousel-content .mec-event-carousel-title a{font-size:23px;font-weight:500;color:#000;letter-spacing:-1px}.mec-event-carousel-content p{font-size:14px;color:#7a7272;font-weight:300}.mec-owl-crousel-skin-type1 .owl-item .mec-event-article{padding:0 19px}.mec-event-carousel-type1 .owl-page.active span{background-color:#00aeef;height:14px;width:14px}.mec-event-carousel-type1 .mec-event-carousel-content{margin-bottom:15px;box-shadow:0 1px 2px rgba(0,0,0,.04);transition:all .27s ease}.mec-event-carousel-type1 .mec-event-carousel-content:hover{box-shadow:0 0 35px rgba(0,0,0,.07)}@media only screen and (min-width:768px) and (max-width:1000px),(min-width:270px) and (max-width:448px){.event-carousel-type1-head .mec-event-date-carousel{font-size:25px;line-height:2.5;padding-right:70px;height:64px;width:120px}.event-carousel-type1-head .mec-event-date-carousel:after{left:7px}.event-carousel-type1-head .mec-event-date-info{font-size:10px;top:13px;left:55px}.event-carousel-type1-head .mec-event-date-info-year{font-size:10px;top:25px;left:55px}.event-carousel-type1-head .mec-event-date-carousel:after{top:48px}}.event-carousel-type2-head{background:#fff;border:1px solid #e6e6e6}.event-carousel-type2-head .mec-event-carousel-content-type2{margin-top:15px;min-height:182px}.event-carousel-type2-head .mec-event-carousel-content-type2 .mec-event-date-info{font-size:15px;color:#9a9a9a;font-weight:300}.event-carousel-type2-head .mec-event-carousel-content-type2 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-carousel-content-type2 .mec-event-carousel-title a{color:inherit}.mec-event-carousel-type2 .event-carousel-type2-head .mec-event-carousel-content-type2 p{font-size:16px;font-weight:300;color:#444}.event-carousel-type2-head .mec-event-footer-carousel-type2{margin-top:33px;position:relative}.mec-event-carousel-type2 .mec-event-footer-carousel-type2 .mec-event-sharing-wrap{left:0}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-event-sharing-wrap>li{border:none;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button{border:1px solid #e4e4e4;float:right;padding:7px 23px 7px;font-size:12px;text-transform:uppercase;color:#707070;font-weight:500;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button:hover{color:#fff}.mec-event-article .event-carousel-type2-head{padding:10%;margin-right:-1px}.mec-event-carousel-type2 .mec-owl-carousel .owl-wrapper-outer{border-right:1px solid #e6e6e6}.mec-wrap .mec-event-carousel-type2 .owl-next,.mec-wrap .mec-event-carousel-type2 .owl-prev,.mec-wrap .mec-event-carousel-type3 .owl-next,.mec-wrap .mec-event-carousel-type3 .owl-prev,.mec-wrap .mec-event-carousel-type4 .owl-next,.mec-wrap .mec-event-carousel-type4 .owl-prev{transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:47%;background-color:transparent!important}.mec-event-carousel-type2 .owl-next{right:-60px}.mec-event-carousel-type2 .owl-prev{left:-60px}.mec-event-carousel-type2 .owl-next i,.mec-event-carousel-type2 .owl-prev i,.mec-event-carousel-type3 .owl-next i,.mec-event-carousel-type3 .owl-prev i,.mec-event-carousel-type4 .owl-next i,.mec-event-carousel-type4 .owl-prev i{font-size:40px;color:#282828}.mec-event-carousel-type2 .owl-next i:hover,.mec-event-carousel-type2 .owl-prev i:hover,.mec-event-carousel-type3 .owl-next i:hover,.mec-event-carousel-type3 .owl-prev i:hover{color:#000;cursor:pointer}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}@media only screen and (min-width:320px) and (max-width:768px){.mec-event-carousel-type2 .owl-next,.mec-event-carousel-type2 .owl-prev,.mec-event-carousel-type3 .owl-next,.mec-event-carousel-type3 .owl-prev,.mec-event-carousel-type4 .owl-next,.mec-event-carousel-type4 .owl-prev{position:initial;top:100%}}.mec-event-carousel-type3 .mec-event-article{margin:0 10px}.event-carousel-type3-head .mec-event-image,.event-carousel-type3-head .mec-event-image img{width:100%;height:auto}.event-carousel-type3-head .mec-event-footer-carousel-type3{background:#fff;display:inline-block;width:calc(100% - 40px);margin-top:-74px;position:relative;margin-left:20px;margin-right:20px;margin-bottom:6px;padding:8% 11%;box-shadow:0 2px 10px -2px rgba(0,0,0,.2)}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button{border:1px solid #e4e4e4;text-transform:uppercase;float:right;padding:7px 23px 7px;font-size:12px;color:#707070;font-weight:500}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button:hover{color:#fff}.mec-event-footer-carousel-type3 span{font-size:15px;color:#9a9a9a;font-weight:300;display:block;margin-top:30px}.mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:29px;font-weight:700}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-footer-carousel-type3 .mec-event-carousel-title a{color:inherit}.event-carousel-type3-head .mec-event-footer-carousel-type3 p{font-size:16px;font-weight:300;color:#444!important;margin-bottom:36px}.mec-event-carousel-type3 .owl-next{right:-70px}.mec-event-carousel-type3 .owl-prev{left:-70px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap{left:11%}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}.event-carousel-type3-head .mec-end-date-label{display:inline;margin-left:2px}.event-carousel-type4-head.clearfix{position:relative;overflow:hidden;background:#fff}.event-carousel-type4-head .mec-event-overlay{position:absolute;left:0;right:0;bottom:0;top:0;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-hover-carousel-type4{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out;opacity:0;visibility:hidden}.mec-event-carousel-type4 .mec-event-article{margin:0 10px}.mec-event-carousel-type4 .mec-event-article:hover .mec-event-hover-carousel-type4{opacity:1;visibility:visible}.mec-event-hover-carousel-type4 .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-hover-carousel-type4 .mec-event-date{font-size:11px;text-transform:uppercase;font-weight:400;line-height:1.6}.mec-event-hover-carousel-type4 .mec-event-date span{display:block;font-weight:700;font-size:14px}.mec-event-hover-carousel-type4 .mec-event-title{color:#fff;margin:20px 0 38px;font-size:16px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-hover-carousel-type4 .mec-btn-wrapper{text-align:left}.mec-event-hover-carousel-type4 .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:10px 14px;letter-spacing:1.5px;font-size:11px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-hover-carousel-type4 .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-carousel-type4 .owl-next{right:-70px}.mec-event-carousel-type4 .owl-prev{left:-70px}.mec-carousel-type4-head{margin-bottom:25px}.mec-carousel-type4-head-title{padding:0 11px;text-align:left;font-weight:700;font-size:20px;color:#000}.mec-carousel-type4-head-link{text-align:right;padding:0 11px}.mec-carousel-type4-head-link a{background:#222;color:#fff;padding:10px 38px;transition:all .3s ease}.mec-carousel-type4-head-link a:hover,.mec-carousel-type4-head-link a:visited{color:#fff}@media (max-width:960px){.mec-event-carousel-type4 .owl-stage{left:-50px}}.mec-wrap .mec-event-countdown-style1{color:#fff;padding:0!important;display:table;background:#437df9}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1{z-index:5;padding:50px 1% 50px 4%;display:table-cell;float:none;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2{background-color:rgba(0,0,0,.05);height:100%;padding-top:0;display:table-cell;float:none;position:relative;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{background-color:#f8f8f8;display:table-cell;float:none;text-align:center;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style1 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{content:"";position:absolute;display:inline-block;z-index:1;top:50%;margin-top:-11px;right:-24px;width:0;border-width:12px;border-style:solid;border-color:transparent transparent transparent #4077ed}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style1 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto}.mec-event-countdown-style1 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style1 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (min-width:1200px){.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%}}@media (max-width:960px){.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%;transform:rotate(90deg)}}@media (max-width:480px){.mec-event-countdown-style1 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{padding:10px 5px;min-width:50px;margin:3px 1px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:8px}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{display:inline}}.mec-wrap .mec-event-countdown-style2{color:#fff;padding:30px 0;background:#437df9;max-width:600px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part3{width:100%;float:none;vertical-align:middle;padding:50px 10% 50px 10%}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2{padding-top:12%;padding-bottom:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style2 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date-place{text-align:left;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 8px}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#222;background:#fff;transition:all .24s ease}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button:hover{background:#222;color:#fff}.mec-event-countdown-style2 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0}.mec-event-countdown-style2 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style2 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (max-width:767px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:80px;padding:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:26px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:11px}}@media only screen and (max-width:479px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:40px;padding:15px 10px;margin:2px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:20px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:9px}}@media (max-width:380px){.mec-event-countdown-style2 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{padding:10px 4px;margin:4px 1px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:7px}}.mec-wrap .mec-event-countdown-style3{color:#fff;padding:0;background:#282828;display:table;width:100%}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1{width:68%;padding:50px 1% 50px 4%;vertical-align:middle;display:table-cell;position:relative}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:32%;display:table-cell;position:relative;padding-bottom:0;padding-top:0}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 img{width:100%;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{font-weight:300;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{color:#fff;font-size:36px;letter-spacing:-2px;font-weight:700;line-height:1;margin-top:-10px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style3 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style3 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto;position:absolute;top:40px;right:20px}.mec-event-countdown-style3 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style3 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:11px;color:#888;margin:8px 0 0;line-height:1}.mec-event-countdown-style3 .mec-event-date{width:176px;height:96px;background:#40d9f1;color:#fff;font-size:13px;position:absolute;left:-27px;top:146px}.mec-event-countdown-style3 .mec-event-date:after{content:"";position:absolute;display:inline-block;z-index:1;bottom:-18px;left:8px;width:0;border-width:19px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:50px;position:absolute;top:36px;left:12px;letter-spacing:-3px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:80px;top:26px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:80px;top:45px}.mec-event-countdown-style3 .mec-event-countdown-part-details{padding-top:35px;margin-bottom:50px;min-height:100px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-title{font-size:17px;color:#fff;line-height:1.4;padding-right:20px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link{color:#fff;font-size:12px;position:relative;padding-left:22px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link:before{content:"";display:inline-block;width:18px;border-top:1px solid #fff;position:absolute;left:0;top:8px}.mec-event-countdown-style3 .mec-event-title-link{position:absolute;left:190px;top:152px}.event-carousel-type1-head .mec-event-date-carousel:before,.mec-event-countdown-style3 .mec-event-date:before{content:'';position:absolute;left:0;bottom:0;z-index:2;width:100%;height:96px;background:0 0;display:inline-block;box-shadow:0 5px 5px rgba(0,0,0,.12)}@media only screen and (min-width:960px){.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown li{padding:10px}.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:31px}}@media (max-width:959px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:100%;display:block}.mec-event-countdown-style3 .mec-event-title-link{top:190px}.mec-event-countdown-style3 .mec-event-countdown{top:96px}.mec-event-countdown-style3 .mec-event-date{left:0;top:190px}.mec-event-countdown-style3 .mec-event-date:after{display:none}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{display:inline}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:150px}}@media (max-width:767px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:26px;letter-spacing:-1px}.mec-event-countdown-style3 .mec-event-title-link{left:130px}.mec-event-countdown-style3 .mec-event-date{width:120px;font-size:10px;height:63px}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:36px;top:20px;left:4px;letter-spacing:-2px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:52px;top:12px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:52px;top:28px}}@media (max-width:380px){.mec-event-countdown-style3 .mec-event-title-link{left:10px;top:260px}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:300px}.mec-event-countdown-style3 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:10px 5px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:8px}}.mec-slider-t1-wrap{width:100%;padding:60px 90px;background:#f7f7f7;min-height:560px;position:relative}.mec-slider-t1{height:500px;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t1 .mec-event-article{position:relative;height:500px}.mec-slider-t1 .mec-slider-t1-img{position:relative;background-size:cover!important;background-position:center!important;width:50%;height:100%;float:right;margin:0;overflow:hidden}.mec-slider-t1 .mec-slider-t1-content{width:50%;float:left;height:100%;background:#fff;padding:6%}.mec-slider-t1-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t1-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:54px;height:54px;line-height:48px;border-radius:0;text-align:center;background:#fff;box-shadow:0 2px 11px 0 rgba(0,0,0,.045);transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-27px;cursor:pointer}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 29px 0 rgba(0,0,0,.095)}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:12px;color:#282828;transition:all .21s ease}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{font-size:13px;color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t1{margin:0 auto;max-width:900px}}@media only screen and (max-width:960px){.mec-slider-t1 .mec-slider-t1-content,.mec-slider-t1 .mec-slider-t1-img{width:100%;float:none}.mec-slider-t1 .mec-slider-t1-img{height:300px}.mec-slider-t1,.mec-slider-t1 .mec-event-article{height:auto}}@media only screen and (max-width:768px){.mec-slider-t1-wrap{padding:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:10px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}}@media only screen and (max-width:479px){.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t2-wrap{width:100%;padding:0;background:#fff;min-height:600px;position:relative}.mec-slider-t2 .mec-event-article{height:600px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t2 .mec-slider-t2-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:70%;height:100%;margin:0;overflow:hidden}.mec-slider-t2 .mec-slider-t2-content{width:50%;position:absolute;right:0;top:60px;bottom:60px;padding:5%}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern *{color:#fff}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-content,.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t2-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:84px;cursor:pointer}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}.mec-wrap.colorskin-custom .mec-slider-t2 .mec-event-article .mec-event-date.mec-color{color:#fff}@media only screen and (min-width:961px){.mec-slider-t2{margin:0 auto;max-width:1200px}}@media only screen and (max-width:960px){.mec-slider-t2 .mec-slider-t2-content,.mec-slider-t2 .mec-slider-t2-img{width:100%;float:none;position:static}.mec-slider-t2 .mec-slider-t2-img{height:300px}.mec-slider-t2 .mec-event-article{height:auto}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px}}@media only screen and (max-width:479px){.mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:22px}}.mec-slider-t3-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t3 .mec-event-article{height:700px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t3 .mec-slider-t3-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;opacity:.68;z-index:1}.mec-slider-t3 .mec-slider-t3-content{width:50%;height:auto;vertical-align:middle;display:table;position:absolute;left:0;top:50%;transform:translateY(-50%);bottom:0;padding:0 2% 0 7%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t3 .mec-slider-t3-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-content,.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-slider-t3-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t3-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{border-color:#40d9f1}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-22px;cursor:pointer}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next{right:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:50px;font-weight:300}.mec-slider-t3-content.mec-event-grid-modern .mec-event-description{font-size:19px}}@media only screen and (max-width:767px){.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}}@media only screen and (max-width:479px){.mec-slider-t3 .mec-slider-t3-content{width:100%}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t4-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t4 .mec-event-article{height:700px;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t4 .mec-slider-t4-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;z-index:1}.mec-slider-t4 .mec-slider-t4-content{width:auto;max-width:700px;background:rgba(37,37,37,.94)!important;height:auto;vertical-align:middle;display:table;position:absolute;left:8%;top:19%;padding:3%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t4 .mec-slider-t4-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-content,.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:13px;padding:0 42px;line-height:49px;height:50px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t4-content.mec-event-grid-modern .mec-slider-t4-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next{right:60px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{right:112px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:767px){.mec-slider-t4 .mec-slider-t4-content{width:100%;left:0;top:auto;bottom:0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t5-wrap{width:auto;max-width:570px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-slider-t5{height:auto;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t5 .mec-event-article{position:relative;height:auto}.mec-slider-t5 .mec-slider-t5-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:300px;float:none;margin:0;overflow:hidden}.mec-slider-t5 .mec-slider-t5-content{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-slider-t5 .mec-events-content p{margin-bottom:20px}.mec-slider-t5-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t5-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t5 .mec-slider-t5-col6{width:50%;float:left;height:100%}.mec-slider-t5 .mec-slider-t5-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-slider-t5 .mec-slider-t5-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-slider-t5 .mec-slider-t5-col6 address{font-size:12px;margin-bottom:0}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t5-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:768px){.mec-slider-t5 .mec-slider-t5-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-single-modern .mec-events-event-image{text-align:center}.mec-single-modern .mec-events-event-image img{width:100%}.mec-single-modern .mec-single-event-bar{background-color:#f7f7f7;margin:20px 0 0;padding:15px;display:table;width:100%}.mec-single-modern .mec-single-event-bar>div{display:table-cell}.mec-single-modern .mec-single-event-bar>div i{font-size:20px;vertical-align:middle}.mec-single-modern .mec-single-event-bar>div .mec-time-comment{font-size:12px;color:#999}.mec-single-modern .mec-single-event-bar>div h3{text-transform:uppercase;font-size:16px;font-weight:700;padding-bottom:5px;display:inline;color:#000;padding-left:10px}.mec-single-modern .mec-single-event-bar>div dd{font-size:14px;color:#8d8d8d;padding-left:34px;margin-bottom:0}.mec-single-modern .col-md-4 .mec-frontbox{margin-top:-50px;margin-bottom:70px;padding:20px;border:none;background:#f7f7f7;box-shadow:none}.mec-next-occurrence li{list-style:none}@media only screen and (min-width:960px){.mec-single-modern .col-md-4 .mec-frontbox{margin-left:20px}}@media only screen and (max-width:960px){.mec-single-modern .mec-single-event-bar>div{display:block}}.lity-content>div{overflow:auto}.mec-next-event-details li{list-style:none;margin-top:20px}.mec-next-event-details h6{text-transform:uppercase;font-size:13px;padding-bottom:5px;display:inline;color:#222;padding-left:0}.mec-next-event-details abbr{display:block;padding-left:12px;color:#8d8d8d}.mec-next-event-details i{margin-right:10px;margin-left:12px}.mec-next-event-details i:before{color:#40d9f1}.mec-next-event-details a{text-align:center;display:block;background:#fff;padding:6px 0;font-size:11px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;transition:.3s}.mec-single-modal.mec-single-modern .mec-single-title{text-align:center;padding:15px 10px 0}.admin-bar .mec-single-modal.mec-single-modern .mec-single-title{padding-top:40px}.mec-single-modal.mec-single-modern .mec-single-event-bar{padding:5px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div dd{font-size:13px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div h3{font-size:15px}@media only screen and (min-width:960px){.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-left:0}}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-top:10px;margin-bottom:10px}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox.mec-event-meta{padding:0}.mec-single-modal .mec-event-meta dd.mec-organizer-email a,.mec-single-modal .mec-event-meta dd.mec-organizer-url a{font-size:12px;display:block}.mec-organizer-description p{padding-left:12px}.mec-modal-wrap{max-width:60vw;max-height:90vh!important;background:#fff;box-shadow:0 1px 55px rgba(0,0,0,.5);overflow-x:hidden!important}@media(max-width:1023px){.mec-modal-wrap{max-width:80vw}}.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li,.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a.mec-events-button{display:block;text-align:center}body .featherlight .featherlight-content{background:0 0;overflow:unset;z-index:9999}body .featherlight .featherlight-close-icon{position:fixed;top:40px;right:40px;background:0 0;color:#fff;border:1px solid #fff;border-radius:0}body .featherlight .featherlight-close-icon:hover{background:#fff;color:#000;border:1px solid #000}@media (max-width:320px){.mec-wrap span.flip-clock-divider{width:20px}.mec-single-event .mec-events-meta-group-countdown{padding:15px 12%}}@media (max-width:414px){.mec-wrap span.flip-clock-divider{width:30px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 7%}}@media (max-width:480px){.mec-wrap span.flip-clock-divider{width:7px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 1%}}@media(max-width:1366px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:20px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 15px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:48px}}@media(max-width:1280px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:14px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:15px 10px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:38px}}@media(min-width:961px) and (max-width:1024px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:7px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:15px 5px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:14px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul li a div{font-size:30px}}@media(max-width:640px){body .mec-modal-wrap .mec-single-modal.featherlight-close-icon{top:14px;right:14px}}@media(max-width:480px){.featherlight .featherlight-content,body .mec-modal-wrap{max-width:100%}body .mec-modal-wrap.flip-clock-divider .flip-clock-label{display:block}}@media (max-width:414px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:50px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 65px}body .featherlight-content .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 2px 20px 2px!important}body .featherlight-content .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:3px!important}}@media (max-width:375px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:50px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 45px}}@media (max-width:320px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:20px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 40px}}.mec-events-toggle{max-width:960px;margin-left:auto;margin-right:auto}.mec-events-toggle .mec-toggle-item{border:1px solid #e4e4e4;margin-bottom:15px;box-shadow:0 10px 15px #f3f3f3}.mec-events-toggle .mec-toggle-item-inner{cursor:pointer;position:relative;padding:30px 60px 30px 15px;background:#fff;transition:all .3s ease;min-height:100px;display:table;width:100%;border-collapse:separate}.mec-events-toggle .mec-toggle-item-inner:hover{background:#fbfbfb}.mec-toggle-item-col{width:200px;border-right:1px solid #e3e3e3;margin-right:15px;display:table-cell;padding-right:5px}.mec-toggle-item-col .mec-event-date{font-size:38px;line-height:40px;float:left;margin-right:8px}.mec-toggle-item-col .mec-event-month,.mec-toggle-item-col .mec-time-details{text-transform:uppercase;font-size:12px;line-height:14px;padding-top:4px;font-weight:700}.mec-toggle-item-col .mec-event-detail{font-size:10px}.mec-toggle-item-col .mec-event-day{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:35px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-events-toggle .mec-toggle-title{color:#000;font-size:23px;font-weight:600;margin-bottom:0;transition:all .3s ease;display:table-cell;text-align:left;max-width:calc(100% - 200px);padding-left:15px;vertical-align:middle}.mec-events-toggle .mec-toggle-item-inner span.event-color{width:5px;height:100%;position:absolute;left:-1px;top:0;bottom:0;border-radius:0;margin:0}.mec-events-toggle .mec-toggle-item-inner i{position:absolute;font-size:30px;right:25px;top:50%;transform:translate(0,-50%);cursor:pointer}.mec-events-toggle .mec-toggle-item.is-open i.mec-sl-plus:before{content:"\e615"}.mec-events-toggle .mec-toggle-item.is-open .mec-toggle-title{background:#f8f8f8;cursor:pointer}.mec-events-toggle .mec-toggle-content{border-top:1px solid #e4e4e4}.mec-events-toggle .mec-toggle-content .mec-modal-wrap{margin:0;max-width:100%;box-shadow:none}.mec-events-toggle .mec-toggle-content .mec-modal-wrap .mec-single-event{margin:0}.mec-events-toggle .mec-toggle-content .mec-single-event-bar,.mec-events-toggle .mec-toggle-content h1.mec-single-title{display:none}.mec-events-toggle .media-links a{margin-bottom:0}.mec-events-toggle .mec-toggle-content .mec-toggle-meta{margin-bottom:14px}.mec-events-toggle #mec_speakers_details.mec-frontbox{padding:0;margin:0}.mec-events-toggle .mec-toggle-item h3.mec-speakers{border:none;text-align:left}.mec-events-toggle .mec-toggle-item h3.mec-speakers:before{content:"\e063";font-family:simple-line-icons;border:none;position:relative;display:inline-block;left:unset;bottom:unset;font-size:22px;font-weight:400;padding:0 11px 0 28px;vertical-align:middle}@media only screen and (max-width:767px){.mec-toggle-item-inner .mec-toggle-item-col{float:none;width:100%;border-right:none;margin-bottom:5px;display:block;max-width:100%;padding-left:15px}.mec-events-toggle .mec-toggle-title{display:block;width:100%;max-width:100%}}.mec-events-agenda-wrap{margin:10px 0;border:1px solid #e9e9e9;padding-left:20px;box-shadow:0 2px 2px rgba(0,0,0,.03)}.mec-events-agenda{padding:0;border-bottom:1px solid #e9e9e9;overflow:hidden}.mec-agenda-date-wrap{width:210px;padding-top:15px;float:left;font-size:13px}.mec-agenda-date-wrap i,.mec-agenda-event i{font-size:11px;color:#aaa;margin-right:4px;margin-left:1px}.mec-agenda-event i{vertical-align:middle;margin-right:1px}.mec-agenda-events-wrap{float:left;width:calc(100% - 210px);background:#f9f9f9;padding:15px}.mec-agenda-time{font-size:11px;color:#707070;padding-right:10px;width:138px;display:inline-block}.mec-agenda-event-title{position:relative;padding-left:14px}.mec-agenda-event-title a{font-family:Roboto,Montserrat,Helvetica,Arial,sans-serif;font-size:14px;font-weight:600;color:#333}.mec-agenda-event-title span.event-color{width:9px;height:9px;position:absolute;left:0;top:4px;margin:0}.mec-agenda-date-wrap span.mec-agenda-day{color:#aaa;font-size:12px}@media only screen and (max-width:767px){.mec-agenda-date-wrap,.mec-agenda-events-wrap{float:none;width:100%}.mec-events-agenda span.mec-agenda-event-title{display:block;width:100%}.mec-agenda-event-title span.event-color{top:7px}.mec-agenda-event-title a{font-size:13px}}.mec-yearly-view-wrap{margin:0 0 15px;border:1px solid #e6e6e6;box-shadow:0 2px 4px rgba(0,0,0,.04);border-bottom-width:4px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar{max-width:100%;width:232px;padding:10px;background:#fff;margin:10px;display:inline-block}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar dl dt{transition:none;height:30px;width:30px;line-height:30px;border-radius:0;font-size:12px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar .mec-calendar-events-sec{padding:10px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar .mec-has-event:after{width:4px;height:4px;bottom:3px;margin-left:-2px}.mec-yearly-view-wrap .mec-calendar-side .mec-calendar-table{min-height:200px}.mec-calendar.mec-yearly-calendar .mec-calendar-table-head dl dt{background:#f9f9f9;font-size:13px}.mec-calendar.mec-yearly-calendar .mec-calendar-table-title{text-align:center;font-size:15px;font-weight:700;color:#222;margin-top:-5px;padding-bottom:5px}.mec-yearly-view-wrap .mec-yearly-calendar-sec{min-height:200px;width:538px;overflow:hidden;float:left;background:#f8f8f8;padding:15px}.mec-yearly-view-wrap .mec-yearly-agenda-sec{min-height:200px;width:calc(100% - 538px);float:left;padding:0 0 0 20px;overflow:hidden}.mec-yearly-view-wrap .mec-yearly-title-sec{position:relative;padding:15px;text-align:center;border-bottom:1px solid #e6e6e6;box-shadow:0 1px 3px rgba(0,0,0,.02)}.mec-yearly-view-wrap .mec-yearly-title-sec h2{font-size:30px;line-height:40px;color:#333;margin:0;font-weight:700}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year,.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{position:absolute;top:50%;margin-top:-15px;min-width:30px;height:30px;line-height:30px;padding:0 8px;text-align:center;background:#fff;color:#666;font-size:14px;border:1px solid #eee;border-radius:2px;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease;cursor:pointer}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{right:auto;left:20px;padding-right:14px}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year{left:auto;right:20px;padding-left:14px}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year i,.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-yearly-view-wrap .mec-events-agenda.mec-selected{box-shadow:-10px 0 0 0 #fffcf2,0 -1px 0 #fbebb6;background:#fffcf2;border-color:#fbebb6;color:#f9af29}@media only screen and (max-width:959px){.mec-yearly-view-wrap .mec-yearly-calendar-sec{width:268px;padding:10px 5px}.mec-yearly-view-wrap .mec-yearly-agenda-sec{width:calc(100% - 268px);padding:0 0 0 10px}}@media only screen and (max-width:767px){.mec-yearly-view-wrap .mec-yearly-agenda-sec,.mec-yearly-view-wrap .mec-yearly-calendar-sec{width:100%;float:none}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar{width:auto}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar dl dt{width:14.2%}.mec-yearly-view-wrap .mec-yearly-title-sec h2{font-size:25px}}.mec-yearly-view-wrap .mec-agenda-event i,.mec-yearly-view-wrap .mec-agenda-time{display:none}@media only screen and (min-width:768px){.mec-yearly-view-wrap .mec-events-agenda-wrap{margin-top:0;border:none;padding-left:0;box-shadow:none}.mec-yearly-view-wrap .mec-agenda-date-wrap{width:174px;font-size:11px;padding-top:10px}.mec-yearly-view-wrap .mec-agenda-events-wrap{width:calc(100% - 174px);padding:10px}.mec-yearly-view-wrap .mec-agenda-event-title a{font-size:13px}.mec-yearly-view-wrap .mec-agenda-event-title span.event-color{width:8px;height:8px}.mec-yearly-view-wrap .mec-agenda-date-wrap span.mec-agenda-day{font-size:11px}.mec-yearly-view-wrap .mec-yearly-calendar-sec{box-shadow:-2px 0 5px rgba(0,0,0,.03) inset}}@media only screen and (max-width:1200px){.mec-yearly-view-wrap .mec-agenda-event-title a{font-size:12px;padding-right:6px}}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table{padding-bottom:10px;border-bottom:none}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt:hover{cursor:pointer}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-has-no-event,.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-has-no-event:hover{color:#bbb;cursor:default}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-day-active{background:#40d9f1;color:#fff;position:relative}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-day-active:after{content:'';position:absolute;display:block;bottom:-20px;left:50%;margin-left:-10px;width:0;border-width:10px;border-style:solid;border-color:#40d9f1 transparent transparent transparent}.mec-timetable-events-list{padding:10px 20px;border:none;margin:0}.mec-timetable-events-list .mec-timetable-event{padding:10px 0;border-bottom:1px dashed #ddd}.mec-timetable-events-list .mec-timetable-event:last-child{border:none}.mec-timetable-event .mec-timetable-event-span{font-size:12px;color:#444;padding-right:30px;line-height:22px}.mec-timetable-events-list .mec-timetable-event i{font-size:13px;color:#aaa;margin-right:3px;vertical-align:baseline}.mec-timetable-event .mec-timetable-event-span a{color:#333}.mec-timetable-event .mec-timetable-event-time{font-size:11px}.mec-timetable-event .mec-timetable-event-time i{vertical-align:text-bottom}.mec-timetable-event .mec-timetable-event-title{font-size:13px}.mec-timetable-event .mec-timetable-event-title .event-color{width:10px;height:10px}.mec-timetable-events-list .mec-timetable-event.mec-util-hidden{display:none}.mec-timetable-events-list.mec-util-hidden{display:none}@media only screen and (min-width:768px){.mec-timetable-events-list{display:table;width:100%;margin:10px 0 20px}.mec-timetable-events-list .mec-timetable-event{display:table-row;padding:0;border:none;background:#fff}.mec-timetable-events-list .mec-timetable-event:hover{background:#fafafa}.mec-timetable-event .mec-timetable-event-span{display:table-cell;padding:10px 15px;border-bottom:1px solid #ebebeb}.mec-timetable-events-list .mec-timetable-event:last-child .mec-timetable-event-span{border-bottom:none}}@media only screen and (max-width:767px){.mec-timetable-event .mec-timetable-event-title{display:block;width:100%;padding:5px 0 10px;font-weight:700}}.mec-timetable-t2-wrap{border:1px solid #e6e6e6;background:#fafafa;padding:0 15px 15px;overflow:hidden;box-shadow:0 3px 2px 0 rgba(0,0,0,.012)}.mec-timetable-t2-col{width:20%;float:left;min-height:20px;padding-right:1px;background:0 0}.mec-ttt2-title{background:#fafafa;color:#333;font-size:13px;font-weight:600;text-transform:uppercase;letter-spacing:1px;text-align:center;padding:25px 10px 10px;margin-bottom:1px}.mec-timetable-t2-col .mec-event-article{position:relative}.mec-timetable-t2-col .mec-event-article .event-color{position:absolute;width:auto;height:auto;left:0;right:0;top:0;bottom:0;margin:0;z-index:1;border-radius:2px}.mec-timetable-t2-content{position:relative;z-index:2;color:#fff;padding:15px 15px 20px;text-align:left;height:130px;margin-bottom:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title{line-height:22px;margin-bottom:13px;white-space:nowrap;padding-right:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title a{color:#fff;font-size:15px;font-weight:600;white-space:nowrap;overflow:hidden}.mec-timetable-t2-content div{color:#fff;font-size:11px;font-weight:400;line-height:19px;white-space:nowrap}.mec-timetable-t2-content div i{font-size:12px;margin-right:4px}@media only screen and (max-width:960px){.mec-timetable-t2-col{width:100%;float:none}}@media(min-width:961px){.mec-timetable-col-7{width:14.28%}.mec-timetable-col-6{width:16.6666%}}.mec-timetable-t3-wrap td{position:relative;padding:0}.mec-timetable-t3-wrap td a{width:100%;display:block;min-height:110px}.mec-weather-box{padding:15px 0}.mec-weather-head{min-height:90px;padding:5px 0;clear:both;overflow:hidden;margin-bottom:25px;border-radius:10px;background:#238af5;position:relative}.mec-weather-icon-box{float:left;width:80px;height:80px;border-radius:10px;overflow:hidden;background:#238af5}.mec-weather-icon{width:80px;height:80px;display:inline-block;border-radius:10px}.mec-weather-summary{float:left;width:calc(100% - 80px);padding-left:10px;margin:10px 0;height:60px}.mec-weather-summary-report{font-size:15px;color:rgba(255,255,255,.68);margin-bottom:6px}.mec-weather-summary-temp{font-family:Roboto,Sans-serif;font-weight:300;color:#fff;font-size:29px;line-height:1}.degrees-mode{background:rgba(0,0,0,.2);cursor:pointer;font-weight:300;font-size:18px;padding:4px 5px;line-height:1;color:#fff;position:absolute;border-radius:8px;bottom:16px;left:16px}.mec-weather-extras{width:auto;padding:10px 15px 0 15px;float:right;min-height:80px;color:#fff;font-size:13px;line-height:1}.mec-weather-extras{width:auto;padding:10px 15px 0 15px;float:right;min-height:80px;color:#fff;font-size:13px;line-height:1}.mec-weather-extras div{line-height:20px;height:20px}.mec-weather-extras span{color:rgba(255,255,255,.68);font-size:12px;text-transform:uppercase}.mec-weather-extras var{font-size:11px;letter-spacing:.4px}.mec-weather-icon.clear-day,.mec-weather-icon.clear-night{background-image:url(../img/mec-weather-icon-01.png)}.mec-weather-icon.partly-sunny-day,.mec-weather-icon.partly-sunny-night{background-image:url(../img/mec-weather-icon-02.png)}.mec-weather-icon.partly-cloudy-day,.mec-weather-icon.partly-cloudy-night{background-image:url(../img/mec-weather-icon-03.png)}.mec-weather-icon.cloudy,.mec-weather-icon.fog,.mec-weather-icon.wind{background-image:url(../img/mec-weather-icon-04.png)}.mec-weather-icon.thunderstorm{background-image:url(../img/mec-weather-icon-05.png)}.mec-weather-icon.rain{background-image:url(../img/mec-weather-icon-06.png)}.mec-weather-icon.hail,.mec-weather-icon.sleet,.mec-weather-icon.snow{background-image:url(../img/mec-weather-icon-07.png)}.mec-av-spot-wrap{width:auto;max-width:1200px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-av-spot{height:auto;border:1px solid #eee;box-shadow:0 6px 12px -4px rgba(0,0,0,.05)}.mec-av-spot .mec-event-article{position:relative;height:auto}.mec-av-spot .mec-av-spot-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:330px;float:none;margin:0;overflow:hidden}.mec-av-spot .mec-av-spot-content,.mec-av-spot .mec-av-spot-head{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-av-spot .mec-av-spot-head{background:#222;color:#fff;min-height:80px}.mec-av-spot .mec-av-spot-head .mec-av-spot-box{padding-top:25px;font-size:13px;color:#ddd}.mec-av-spot .mec-av-spot-head .mec-av-spot-box span{color:#40d9f1;font-size:40px;font-weight:700;font-style:italic}.mec-av-spot .mec-av-spot-head .mec-event-countdown{text-align:center;padding-top:10px;display:table;table-layout:fixed;margin:0 auto;float:right}.mec-av-spot .mec-av-spot-head .mec-event-countdown li{display:table-cell;padding:10px 20px;position:relative;height:60px}.mec-av-spot .mec-av-spot-head .mec-event-countdown p{margin-bottom:0}.mec-av-spot .mec-events-content p{margin-bottom:20px}.mec-av-spot-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-av-spot-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-av-spot-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-av-spot .mec-av-spot-col6{width:50%;float:left;height:100%}.mec-av-spot .mec-av-spot-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-av-spot .mec-av-spot-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-av-spot .mec-av-spot-col6 address{font-size:12px;margin-bottom:0}.mec-av-spot-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-av-spot-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05)}@media only screen and (max-width:768px){.mec-av-spot .mec-av-spot-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-av-spot-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-events-masonry-wrap{display:block;width:auto}.mec-masonry-item-wrap{width:calc(33.33% - 30px);padding:0;margin:0 15px 30px;min-height:10px;position:relative}.isotope-item{z-index:2}.isotope-hidden.isotope-item{pointer-events:none;z-index:1}.isotope,.isotope .isotope-item{-webkit-transition-duration:.8s;-moz-transition-duration:.8s;transition-duration:.8s}.isotope{-webkit-transition-property:height,width;-moz-transition-property:height,width;transition-property:height,width}.isotope .isotope-item{-webkit-transition-property:-webkit-transform,opacity;-moz-transition-property:-moz-transform,opacity;transition-property:transform,opacity}.mec-events-masonry-cats{padding:10px;margin-bottom:25px;text-align:center;clear:both;list-style:none outside none}.mec-events-masonry-cats a{border-radius:2px;padding:6px 12px;font-size:13px;line-height:1.2;color:#333;font-weight:400;margin-top:0!important;text-align:center;display:inline-block;width:auto;border:2px solid transparent;transition:all .2s ease}.mec-events-masonry-cats a:hover{border-color:#40d9f1;color:#333}.mec-events-masonry-cats a.mec-masonry-cat-selected{border:2px solid #40d9f1;color:#40d9f1}.mec-masonry{background:#f7f7f7;height:auto;border:1px solid #eee;box-shadow:0 6px 12px -4px rgba(0,0,0,.05)}.mec-masonry .mec-event-article{position:relative;height:auto}.mec-masonry .mec-masonry-img{position:relative;width:100%;height:auto;float:none;margin:0;overflow:hidden}.mec-masonry .mec-masonry-img img{width:100%}.mec-masonry .mec-masonry-content,.mec-masonry .mec-masonry-head{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-masonry .mec-events-content p{margin-bottom:20px}.mec-masonry-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-masonry-item-wrap .mec-event-grid-modern .event-grid-modern-head{min-height:79px;margin-bottom:10px;padding:14px 5%;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-masonry-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-masonry-content.mec-event-grid-modern .mec-event-content{padding-top:20px}.mec-masonry-content.mec-event-grid-modern .mec-event-footer{height:auto}.mec-masonry .mec-masonry-col6 .mec-event-date{font-size:52px;letter-spacing:-2px;line-height:41px;vertical-align:top}.mec-masonry .mec-masonry-col6{width:50%;float:left;height:100%}.mec-masonry .mec-masonry-col6 i{font-size:24px;float:left;margin-right:7px;height:50px}.mec-masonry .mec-masonry-col6 .mec-event-month,.mec-masonry .mec-masonry-col6 h6{text-transform:capitalize;font-size:15px;padding:4px 0;display:inline;color:#444}.mec-masonry .mec-masonry-col6 .mec-event-detail,.mec-masonry .mec-masonry-col6 address{font-size:11px;margin-bottom:0}.mec-masonry-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-masonry-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05)}@media only screen and (max-width:960px){.mec-masonry-item-wrap{width:calc(50% - 30px)}}@media only screen and (max-width:768px){.mec-masonry .mec-masonry-col6{width:100%;margin:10px 0}.mec-masonry-item-wrap{width:calc(100% - 30px)}}@media only screen and (max-width:479px){.mec-masonry-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.btn-wrapper{text-align:center}.countdown-wrapper .btn-wrapper{padding-top:10px;padding-right:0}.countdown-wrapper h5.countdown-message{letter-spacing:5px;font-weight:500;font-size:18px}.blox.dar .countdown-wrapper p,.countdown-wrapper p{color:#888}.countdown-wrapper a.button.black{float:right;margin-right:0}.mec-wrap .threedaydigits .days .flip-clock-label{right:-100px}@media only screen and (min-width:320px) and (max-width:767px){.mec-wrap .flip-clock-wrapper ul{width:29px!important}.mec-wrap .flip-clock-wrapper ul li a div div.inn{font-size:25px!important}.mec-wrap .flip-clock-divider .flip-clock-label{left:0;font-weight:300}.mec-wrap span.flip-clock-divider{width:12px}}@media only screen and (min-width:320px) and (max-width:480px){.mec-wrap .flip-clock-wrapper ul{width:29px!important}.mec-wrap .flip-clock-wrapper ul li a div div.inn{font-size:25px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}.mec-wrap span.flip-clock-divider:first-child{width:0}.mec-wrap span.flip-clock-divider{width:20px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 18%}}@media screen and (min-width:960px) and (max-width:1200px){.mec-wrap .threedaydigits ul{height:50px;width:47px}}@media screen and (min-width:480px) and (max-width:768px){.mec-wrap .threedaydigits ul{height:48px;width:26px!important}.mec-wrap .threedaydigits .flip-clock-label{font-size:8px;left:-8px}}@media screen and (min-width:320px) and (max-width:480px){.mec-wrap .threedaydigits ul{height:48px;width:22px!important}}.mec-wrap .flip-clock-wrapper *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;-o-box-sizing:border-box;box-sizing:border-box;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden}.mec-wrap .flip-clock-wrapper a{cursor:pointer;text-decoration:none;color:#ccc}.mec-wrap .flip-clock-wrapper a:hover{color:#fff}.mec-wrap .flip-clock-wrapper ul{list-style:none}.flip-clock-wrapper.clearfix:after,.mec-wrap .flip-clock-wrapper.clearfix:before{content:" ";display:table}.mec-wrap .flip-clock-wrapper.clearfix:after{clear:both}.mec-wrap .flip-clock-wrapper{font:normal 11px "helvetica neue",helvetica,sans-serif;-webkit-user-select:none}.mec-wrap .flip-clock-meridium{background:0 0!important;box-shadow:0 0 0!important;font-size:36px!important}.mec-wrap .flip-clock-meridium a{color:#313333}.mec-wrap .flip-clock-wrapper{text-align:center;position:relative;display:inline-block;padding-bottom:10px}.flip-clock-wrapper:after,.mec-wrap .flip-clock-wrapper:before{content:" ";display:table}.mec-wrap .flip-clock-wrapper:after{clear:both}.mec-wrap .flip-clock-wrapper ul{position:relative;float:left;margin:2px;width:50px;height:50px;font-size:80px;font-weight:700;line-height:87px;border-radius:3px;background:rgba(0,0,0,.21)}.mec-wrap .flip-clock-wrapper ul li{z-index:1;position:absolute;left:0;top:0;width:100%;height:100%;line-height:54px;text-decoration:none!important}.mec-wrap .flip-clock-wrapper ul li:first-child{z-index:2}.mec-wrap .flip-clock-wrapper ul li a{display:block;height:100%;-webkit-perspective:200px;-moz-perspective:200px;perspective:200px;margin:0!important;overflow:visible!important;cursor:default!important}.mec-wrap .flip-clock-wrapper ul li a div{z-index:1;position:absolute;left:0;width:100%;height:50%;font-size:80px;overflow:hidden;outline:1px solid transparent}.mec-wrap .flip-clock-wrapper ul li a div .shadow{position:absolute;width:100%;height:100%;z-index:2}.mec-wrap .flip-clock-wrapper ul li a div.up{-webkit-transform-origin:50% 100%;-moz-transform-origin:50% 100%;-ms-transform-origin:50% 100%;-o-transform-origin:50% 100%;transform-origin:50% 100%;top:0}.mec-wrap .flip-clock-wrapper ul li a div.up:after{content:"";position:absolute;top:24px;left:0;z-index:5;width:100%;height:3px;background-color:rgba(0,0,0,.12)}.mec-wrap .flip-clock-wrapper ul li a div.down{-webkit-transform-origin:50% 0;-moz-transform-origin:50% 0;-ms-transform-origin:50% 0;-o-transform-origin:50% 0;transform-origin:50% 0;bottom:0;border-bottom-left-radius:3px;border-bottom-right-radius:3px}.mec-wrap .flip-clock-wrapper ul li a div div.inn{position:absolute;left:0;z-index:1;width:100%;height:200%;color:#fff;text-shadow:0 0 2px rgba(0,0,0,.25);text-align:center;background-color:#40d9f1;border-radius:3px;font-size:48px}.mec-wrap .flip-clock-wrapper ul li a div.up div.inn{top:0}.mec-wrap .flip-clock-wrapper ul li a div.down div.inn{bottom:0}.mec-wrap .flip-clock-wrapper ul.play li.flip-clock-before{z-index:3}.mec-wrap .flip-clock-wrapper .flip{box-shadow:0 2px 5px rgba(0,0,0,.17)}.mec-wrap .flip-clock-wrapper ul.play li.flip-clock-active{-webkit-animation:asd .5s .5s linear both;-moz-animation:asd .5s .5s linear both;animation:asd .5s .5s linear both;z-index:5}.mec-wrap .flip-clock-divider{float:left;display:inline-block;position:relative;width:18px;height:62px}.mec-wrap .flip-clock-divider:first-child{width:0}.mec-wrap .flip-clock-dot{display:none;background:#323434;width:10px;height:10px;position:absolute;border-radius:50%;box-shadow:0 0 5px rgba(0,0,0,.5);left:5px}.mec-wrap .flip-clock-divider .flip-clock-label{position:absolute;bottom:-1.5em;right:-71px;color:#101010;font-weight:700;text-shadow:none;text-transform:uppercase}.mec-wrap .blox.dark .flip-clock-divider .flip-clock-label{color:#8a8a8a}.mec-wrap .flip-clock-divider.seconds .flip-clock-label{right:-82px}.mec-wrap .flip-clock-dot.top{top:30px}.mec-wrap .flip-clock-dot.bottom{bottom:30px}@-webkit-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@-moz-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@-o-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}.flip-clock-wrapper ul.play li.flip-clock-active .down{z-index:2;-webkit-animation:turn .5s .5s linear both;-moz-animation:turn .5s .5s linear both;animation:turn .5s .5s linear both}@-webkit-keyframes turn{0%{-webkit-transform:rotatex(90deg)}100%{-webkit-transform:rotatex(0)}}@-moz-keyframes turn{0%{-moz-transform:rotatex(90deg)}100%{-moz-transform:rotatex(0)}}@-o-keyframes turn{0%{-o-transform:rotatex(90deg)}100%{-o-transform:rotatex(0)}}@keyframes turn{0%{transform:rotatex(90deg)}100%{transform:rotatex(0)}}.flip-clock-wrapper ul.play li.flip-clock-before .up{z-index:2;-webkit-animation:turn2 .5s linear both;-moz-animation:turn2 .5s linear both;animation:turn2 .5s linear both}@-webkit-keyframes turn2{0%{-webkit-transform:rotatex(0)}100%{-webkit-transform:rotatex(-90deg)}}@-moz-keyframes turn2{0%{-moz-transform:rotatex(0)}100%{-moz-transform:rotatex(-90deg)}}@-o-keyframes turn2{0%{-o-transform:rotatex(0)}100%{-o-transform:rotatex(-90deg)}}@keyframes turn2{0%{transform:rotatex(0)}100%{transform:rotatex(-90deg)}}.flip-clock-wrapper ul li.flip-clock-active{z-index:3}.flip-clock-wrapper ul.play li.flip-clock-before .up .shadow{background:-moz-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.1)),color-stop(100%,rgba(64,64,64,.68)));background:linear,top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;background:-o-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-ms-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:linear,to bottom,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;-webkit-animation:show .5s linear both;-moz-animation:show .5s linear both;animation:show .5s linear both}.flip-clock-wrapper ul.play li.flip-clock-active .up .shadow{background:-moz-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.1)),color-stop(100%,rgba(64,64,64,.68)));background:linear,top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;background:-o-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-ms-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:linear,to bottom,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;-webkit-animation:hide .5s .3s linear both;-moz-animation:hide .5s .3s linear both;animation:hide .5s .3s linear both}.flip-clock-wrapper ul.play li.flip-clock-before .down .shadow{background:-moz-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(64,64,64,.68)),color-stop(100%,rgba(0,0,0,.1)));background:linear,top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;background:-o-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-ms-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:linear,to bottom,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;-webkit-animation:show .5s linear both;-moz-animation:show .5s linear both;animation:show .5s linear both}.flip-clock-wrapper ul.play li.flip-clock-active .down .shadow{background:-moz-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(64,64,64,.68)),color-stop(100%,rgba(0,0,0,.1)));background:linear,top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;background:-o-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-ms-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:linear,to bottom,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;-webkit-animation:hide .5s .3s linear both;-moz-animation:hide .5s .3s linear both;animation:hide .5s .2s linear both}@-webkit-keyframes show{0%{opacity:0}100%{opacity:1}}@-moz-keyframes show{0%{opacity:0}100%{opacity:1}}@-o-keyframes show{0%{opacity:0}100%{opacity:1}}@keyframes show{0%{opacity:0}100%{opacity:1}}@-webkit-keyframes hide{0%{opacity:1}100%{opacity:0}}@-moz-keyframes hide{0%{opacity:1}100%{opacity:0}}@-o-keyframes hide{0%{opacity:1}100%{opacity:0}}@keyframes hide{0%{opacity:1}100%{opacity:0}}@font-face{font-family:simple-line-icons;src:url(../fonts/Simple-Line-Icons.eot?v=2.3.1);src:url(../fonts/Simple-Line-Icons.eot?v=2.3.1#iefix) format('embedded-opentype'),url(../fonts/Simple-Line-Icons.woff2?v=2.3.1) format('woff2'),url(../fonts/Simple-Line-Icons.woff?v=2.3.1) format('woff'),url(../fonts/Simple-Line-Icons.ttf?v=2.3.1) format('truetype'),url(../fonts/Simple-Line-Icons.svg?v=2.3.1#simple-line-icons) format('svg');font-weight:400;font-style:normal}[class*=mec-sl-]{font-family:simple-line-icons;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.mec-sl-facebook:before{content:"\e00b"}.mec-sl-twitter:before{content:"\e009"}.mec-sl-google-plus:before{content:"\e60d"}.mec-sl-angle-left:before{content:"\e605"}.mec-sl-angle-right:before{content:"\e606"}.mec-sl-calendar:before{content:"\e075"}.mec-sl-clock-o:before{content:"\e081"}.mec-sl-home:before{content:"\e069"}.mec-sl-phone:before{content:"\e600"}.mec-sl-envelope:before{content:"\e086"}.mec-sl-sitemap:before{content:"\e037"}.mec-sl-map-marker:before{content:"\e096"}.mec-sl-floder:before{content:"\e089"}.mec-sl-wallet:before{content:"\e02a"}.mec-color,.mec-color-before :before,.mec-color-hover:hover,.mec-wrap .mec-color,.mec-wrap .mec-color-before :before,.mec-wrap .mec-color-hover:hover{color:#40d9f1}.mec-bg-color,.mec-bg-color-hover:hover,.mec-wrap .mec-bg-color,.mec-wrap .mec-bg-color-hover:hover{background-color:#40d9f1}.mec-border-color,.mec-border-color-hover:hover,.mec-wrap .mec-border-color,.mec-wrap .mec-border-color-hover:hover{border-color:#40d9f1}.mec-toggle-month-divider.mec-skin-list-events-container{border:1px solid #e8e8e8;margin-bottom:30px;background:#f8f8f8;box-shadow:0 2px 18px -1px rgba(0,0,0,.1);border-radius:2px}.mec-toggle-month-divider .mec-month-divider{margin:0;text-align:left;background:#fff;position:relative;cursor:pointer;border-top:1px solid #e8e8e8}.mec-toggle-month-divider .mec-month-divider span{padding:20px;border-bottom:1px solid #e8e8e8}.mec-toggle-month-divider .mec-month-divider i{position:absolute;right:20px;top:24px;font-size:20px;cursor:pointer}.mec-toggle-month-divider .mec-month-divider span:before{display:none}.mec-toggle-month-divider .mec-month-divider+article{margin-top:20px}.mec-toggle-month-divider .mec-wrap .mec-month-divider:first-of-type{border-top:none}.mec-toggle-month-divider .mec-event-list-accordion .mec-month-divider:not(:first-of-type)~article{display:none}.mec-skin-list-events-container:not(.mec-toggle-month-divider) .mec-month-divider i{display:none}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-month{display:inline-block;padding-top:0}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-date{font-size:14px;line-height:14px;float:none;display:inline-block;margin-right:0;font-weight:700}.mec-events-toggle .mec-toogle-inner-month-divider.mec-toggle-item-inner{padding:20px 60px 30px 15px}.mec-toogle-inner-month-divider .mec-toggle-month-inner-image{float:left;clear:right;width:100px;margin-right:20px;margin-left:10px}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-detail{margin-top:-6px}.mec-toogle-inner-month-divider .mec-toggle-item-col{float:none;width:100%;margin-top:10px;display:block;border:none}.mec-events-toggle .mec-toogle-inner-month-divider .mec-toggle-title{font-size:19px;display:block;padding-top:10px}@media only screen and (max-width:768px){.mec-events-toggle .mec-toogle-inner-month-divider .mec-toggle-title{font-size:14px;padding-top:0}.mec-toogle-inner-month-divider .mec-toggle-item-col{margin-top:0}.mec-toogle-inner-month-divider .mec-toggle-month-inner-image{width:70px}}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled:before,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-featured:before{z-index:1;position:absolute;top:25px;right:-37px;font-size:11px;letter-spacing:1px;text-transform:uppercase;background:#04de78;padding:2px 40px;color:#fff;-ms-transform:rotate(45deg);-webkit-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:.5s cubic-bezier(.25,.5,.06,.85);transition:.5s cubic-bezier(.25,.5,.06,.85);content:attr(data-style)}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-featured{overflow:hidden;position:relative}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled:before{background:#de0404}.mec-daily-view-date-events article:before,ul.mec-weekly-view-dates-events article:before{padding:7px 40px!important;top:27px!important}.mec-event-grid-classic article .mec-fc-style,.mec-event-grid-minimal article .mec-fc-style,.mec-event-grid-simple article .mec-fc-style,.mec-timetable-wrap article .mec-fc-style,.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article.mec-event-cover-modern .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{font-size:9px;letter-spacing:.5px;text-transform:uppercase;background:#04de78;padding:2px 7px;color:#fff;position:relative;margin-left:5px;border-radius:2px}.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-modern.mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-minimal article .mec-fc-style:before,.mec-event-grid-simple article .mec-fc-style:before,.mec-timetable-wrap article .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article .mec-fc-style:before,.mec-wrap .mec-event-list-modern article .mec-fc-style:before,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style:before{width:0;height:0;border-top:4px solid transparent!important;border-right:5px solid;border-bottom:4px solid transparent;margin:0;top:50%;left:-4px;transform:translateY(-4.5px);position:absolute;content:'';color:#04de78}.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-event-grid-classic article.mec-label-canceled:before,.mec-event-grid-classic article.mec-label-featured:before,.mec-event-grid-minimal article.mec-label-canceled:before,.mec-event-grid-minimal article.mec-label-featured:before,.mec-event-grid-simple article.mec-label-canceled:before,.mec-event-grid-simple article.mec-label-featured:before,.mec-timetable-wrap article.mec-label-canceled:before,.mec-timetable-wrap article.mec-label-featured:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled:before,.mec-wrap .mec-event-list-accordion article.mec-label-featured:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled:before,.mec-wrap .mec-event-list-modern article.mec-label-featured:before{display:none}.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{top:-3px;font-size:11px;margin-left:10px}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style:before,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-canceled:before,.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-featured:before{-ms-transform:none;-webkit-transform:none;transform:none;-webkit-transition:none;transition:none;top:271px;right:0}.mec-timetable-wrap article .mec-fc-style{top:-2px;font-size:10px}.mec-wrap article.mec-event-cover-modern .mec-fc-style{padding:5px 9px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:24px;display:inline-block;border-radius:2px}.mec-skin-grid-events-container .mec-wrap .mec-event-grid-clean .mec-event-article:before{-ms-transform:none;-webkit-transform:none;transform:none!important;-webkit-transition:none;transition:none;top:22px!important;right:22px!important;padding:0 10px!important}.mec-event-grid-minimal article .mec-fc-style,.mec-event-grid-simple article .mec-fc-style{top:-4px;font-size:10px;margin-left:10px}.mec-event-grid-classic article .mec-fc-style{padding:5px 20px;font-size:12px;margin-top:8px;display:inline-block}.mec-hourly-schedule-speaker-info{background:#fff;padding:30px;border:1px solid #e6e6e6;max-width:740px;width:740px;margin-left:-110px}.mec-hourly-schedule-speaker-thumbnail{float:left;max-width:30%;width:30%}.mec-hourly-schedule-speaker-name{font-weight:700;font-size:26px;line-height:1.2;color:#333;text-transform:uppercase}.mec-hourly-schedule-speaker-details{float:left;width:69%;padding-left:25px}.mec-hourly-schedule-speaker-job-title{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-hourly-schedule-speaker-description{font-size:14px;font-weight:400;color:#6d7683;line-height:1.7;text-align:left}.mec-hourly-schedule-speaker-contact-information a i{color:#6b6b6b;background:#ebebeb;line-height:29px;margin:9px 7px 9px 0;width:30px;height:30px;display:inline-block;text-align:center;transition:all .2s ease;font-size:15px;cursor:pointer;border-radius:3px}.mec-hourly-schedule-speaker-contact-information a i:hover{background:#222;color:#fff}@media only screen and (max-width:479px){.mec-hourly-schedule-speaker-thumbnail{float:none;max-width:none;margin-right:0;margin-bottom:15px;width:100%}.mec-hourly-schedule-speaker-thumbnail img{width:100%}.mec-hourly-schedule-speaker-details{padding-left:0}.mec-hourly-schedule-speaker-info{width:90%;margin:0 auto}}.mec-profile .mec-profile-bookings{border:2px solid #e6e6e6;text-align:center}.mec-profile .mec-profile-bookings tbody tr:first-child{background:#f7f7f7;font-weight:700;text-transform:capitalize}.mec-profile .mec-profile-bookings tbody tr{border-bottom:1px solid #e6e6e6;font-size:14px}.mec-profile .mec-profile-bookings tbody tr td{border:1px solid #e6e6e6;padding:10px;text-align:center;word-break:initial}.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:53%;text-align:left}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8) i{color:#fe686a}.mec-profile .mec-event-status{padding:5px 10px;color:#fff;border-radius:2px;font-size:12px;line-height:12px;letter-spacing:.4px}.mec-profile .mec-event-status.mec-book-confirmed{background:#50d477}.mec-profile .mec-event-status.mec-book-pending{background:#fcbe69}.mec-profile .mec-event-status.mec-book-rejected{background:#fe686a}.mec-profile .mec-event-date{font-size:12px;color:#888}.mec-event-date,.mec-event-status{text-align:center}.mec-event-date .mec-tooltip,.mec-event-status .mec-tooltip{position:relative;width:fit-content;margin:auto}.mec-profile i{font-size:15px;color:#008aff;vertical-align:text-bottom;margin-right:4px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{min-width:250px;max-width:300px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#000;color:#fff;font-weight:400;font-size:14px;letter-spacing:.5px;line-height:1.5;position:absolute;z-index:99999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #535a61;padding:5px 10px 6px;border-radius:8px;text-align:center;font-style:normal;opacity:0;visibility:hidden;display:none}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{font-size:13px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;letter-spacing:1.1px;font-weight:500}.mec-event-date .mec-tooltip:hover .box:after,.mec-event-status .mec-tooltip:hover .box:after{content:'';position:absolute;width:12px;height:12px;left:calc(50% - 12px);bottom:-12px;transform:translate(50%,-50%) rotate(-45deg);background-color:#000;box-shadow:0 8px 9px -4px #535a61}.mec-event-status .mec-tooltip .box{min-width:100px}.mec-event-status.mec-book-confirmed .mec-tooltip .box,.mec-event-status.mec-book-confirmed .mec-tooltip:hover .box:after{background-color:#50d477}.mec-event-status.mec-book-rejected .mec-tooltip .box,.mec-event-status.mec-book-rejected .mec-tooltip:hover .box:after{background-color:#fe686a}.mec-event-status.mec-book-pending .mec-tooltip .box,.mec-event-status.mec-book-pending .mec-tooltip:hover .box:after{background-color:#fcbe69}.mec-event-date .mec-tooltip:hover .box,.mec-event-status .mec-tooltip:hover .box{opacity:1;visibility:visible;display:block}.mec-profile .mec-event-status{padding:0}.mec-profile .mec-booking-number-of-attendees{font-size:13px;color:#888}.mec-profile .mec-booking-number-of-attendees i,.mec-profile .mec-profile-bookings-view-invoice i{font-size:15px;color:#008aff;vertical-align:text-bottom;margin-right:4px}.mec-booking-attendees{background:#fff;padding:10px}.mec-booking-attendees{width:850px;text-align:center}.mec-booking-attendees-wrapper{border:2px solid #e6e6e6;font-size:14px}.mec-booking-attendees-head{display:table;width:100%;background:#f7f7f7;border-bottom:1px solid #e6e6e6;font-weight:700}.mec-booking-attendees-head span,.mec-booking-attendees-head-content>span{vertical-align:middle;display:table-cell;padding:7px;border-right:1px solid #e6e6e6;font-size:12px}.mec-booking-attendees-head-content{display:table;width:100%;border-bottom:1px solid #e6e6e6}.mec-booking-attendees-wrapper .mec-booking-attendees-head-content:last-child{border:none}.mec-booking-attendees-head span:nth-child(1),.mec-booking-attendees-head-content>span:nth-child(1){width:4%}.mec-booking-attendees-head span:nth-child(2),.mec-booking-attendees-head-content>span:nth-child(2){width:20%}.mec-booking-attendees-head span:nth-child(3),.mec-booking-attendees-head-content>span:nth-child(3){width:24%}.mec-booking-attendees-head span:nth-child(4),.mec-booking-attendees-head-content>span:nth-child(4){width:26%}.mec-booking-attendees-head span:nth-child(5),.mec-booking-attendees-head-content>span:nth-child(5){width:26%}@media only screen and (max-width:759px){.mec-booking-attendees{width:470px}.mec-booking-attendees-head span,.mec-booking-attendees-head-content>span{word-break:break-all}}@media(max-width:1366px){.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:6%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:40%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:12%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:8%}}@media(max-width:1024px){.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:30%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:15%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:10%}}@media(max-width:780px){.mec-profile .mec-profile-bookings tbody tr,.mec-profile i{font-size:12px}.mec-event-date .mec-tooltip .box{min-width:200px}.mec-event-status .mec-tooltip .box{min-width:90px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{padding:4px 5px!important}.mec-profile .mec-profile-bookings tbody tr{font-size:12px}}@media(max-width:480px){.mec-profile .mec-booking-number-of-attendees,.mec-profile .mec-profile-bookings tbody tr,.mec-profile i{font-size:8px!important}.mec-profile .mec-profile-bookings tbody tr td{padding:3px}.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:19%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:12%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:18%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:13%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:13%}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{font-size:8px}.mec-event-date .mec-tooltip .box{min-width:75px}.mec-event-status .mec-tooltip .box{min-width:70px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{padding:4px 5px!important}}.mec-woo-booking-checkout{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;border-radius:0;margin-bottom:6px;min-width:170px;margin-top:5px;text-align:center}.mec-woo-booking-checkout:hover{background:#222;color:#fff}.mec-woo-booking-checkout:focus,.mec-woo-booking-checkout:visited{color:#fff}.single-mec-events .lity-container{max-width:480px;width:480px}.lity-content .mec-events-meta-group-booking{width:100%;padding:20px 50px;background:#fff}.lity-content .mec-events-meta-group-booking .mec-booking form>h4{text-transform:uppercase;font-size:15px;font-weight:700;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative;text-align:center;line-height:1.2;margin-bottom:10px}.lity-content .mec-events-meta-group-booking .mec-booking form>h4:before{padding:1px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-35px;left:50%}.lity-content .mec-events-meta-group-booking .mec-event-ticket-available,.lity-content .mec-events-meta-group-booking .mec-event-ticket-name,.lity-content .mec-events-meta-group-booking .mec-event-ticket-price,.lity-content .mec-events-meta-group-booking .mec-ticket-variation-name,.lity-content .mec-events-meta-group-booking .mec-ticket-variation-price,.lity-content .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;clear:none;padding:5px 1em 3px 0;display:inline-block}.lity-content .mec-events-meta-group-booking .mec-event-ticket-available{margin-bottom:12px}.lity-content .mec-events-meta-group-booking select{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both;font-family:Montserrat,Helvetica,Arial,sans-serif}.lity-content .mec-events-meta-group-booking input[type=email]{color:#888;border:1px solid #e1e1e1;font-size:14px;display:block;width:100%;outline:0}.lity-content .mec-events-meta-group-booking input{margin-bottom:10px!important}.lity-content .mec-book-ticket-variation h5{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:0;clear:none;padding:5px 1em 3px 0;display:inline-block;text-transform:capitalize;font-family:Montserrat,Helvetica,Arial,sans-serif}.lity-content ul.mec-book-tickets-container{padding:0}.lity-content .mec-events-meta-group-booking input[type=email],.lity-content .mec-events-meta-group-booking input[type=number],.lity-content .mec-events-meta-group-booking input[type=text]{outline:0;font-family:Montserrat,Helvetica,Arial,sans-serif;display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both;margin-bottom:2px!important}.lity-container .mec-click-pay #mec_woo_add_to_cart_btn_r,.lity-content button[type=submit]{position:relative;border:none;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;min-width:170px;margin-top:5px;border-radius:0;margin-bottom:6px}.lity-content button[type=submit]:hover{background:#222}.lity-content .mec-book-tickets-container li{list-style:none}.lity-content .mec-events-meta-group-booking #mec_book_payment_form h4,.lity-content .mec-events-meta-group-booking li h4{font-size:19px;font-weight:700}.lity-content .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li{width:50%}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li:nth-child(even){border:none}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li span{display:block}.lity-content .mec-events-meta-group-booking button[type=submit]:after{display:none;font-family:simple-line-icons;content:"\e098";margin-left:4px;-webkit-animation:rotating 1.2s linear infinite;-moz-animation:rotating 1.2s linear infinite;-ms-animation:rotating 1.2s linear infinite;-o-animation:rotating 1.2s linear infinite;animation:rotating 1.2s linear infinite}.lity-content .mec-events-meta-group-booking button[type=submit].loading:after{display:inline-block}@media only screen and (max-width:480px){.lity-content .mec-events-meta-group-booking{padding:20px;width:340px;margin:0 auto}}.mec-events-meta-group-booking{position:relative}.mec-cover-loader:after{content:'';position:absolute;top:0;right:0;left:0;bottom:0;background:rgba(255,255,255,.5);z-index:99999}.mec-loader{background:rgba(0,0,0,0);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);z-index:9}.mec-loader,.mec-loader:after{border-radius:50%;width:5em;height:5em;z-index:999999999999}.mec-loader{font-size:10px;text-indent:-9999em;border-top:.5em solid rgba(0,0,0,.2);border-right:.5em solid rgba(0,0,0,.2);border-bottom:.5em solid rgba(0,0,0,.2);border-left:.5em solid #fff;-webkit-transform:translateZ(0);-ms-transform:translateZ(0);transform:translateZ(0);-webkit-animation:mecloader 1.1s infinite linear;animation:mecloader 1.1s infinite linear}@-webkit-keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.mec-google-recaptcha{margin:0 0 20px 16px}.mec-wrap *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap :after,.mec-wrap :before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap .clearfix:after,.mec-wrap .clearfix:before{content:'\0020';display:block;overflow:hidden;visibility:hidden;width:0;height:0}.mec-wrap .clearfix:after{clear:both}.mec-wrap .clearfix{zoom:1}.mec-wrap .clear,.mec-wrap .clr{clear:both;display:block;overflow:hidden;visibility:hidden}.mec-wrap .clr{visibility:visible;overflow:visible}.mec-container [class*=col-] img{max-width:100%}.mec-container{margin-right:auto;margin-left:auto;padding-left:10px;padding-right:10px}.mec-container:after,.mec-container:before{content:" ";display:table}.mec-container:after{clear:both}@media only screen and (max-width:479px){.mec-container{width:300px}}@media only screen and (min-width:480px) and (max-width:767px){.mec-container{width:420px}}@media only screen and (min-width:768px) and (max-width:960px){.mec-container{width:768px}}@media only screen and (min-width:961px){.mec-container{width:960px}}@media only screen and (min-width:1200px){.mec-container{width:1196px;padding-left:15px;padding-right:15px}}@media only screen and (min-width:1921px){.mec-container{max-width:1690px}}.mec-wrap .row{margin-left:-10px;margin-right:-10px}.mec-wrap .row:after,.mec-wrap .row:before{content:" ";display:table}.mec-wrap .row:after{clear:both}.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{position:relative;min-height:1px;padding-left:10px;padding-right:10px}@media only screen and (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{padding-left:15px;padding-right:15px}.mec-wrap .row{margin-left:-15px;margin-right:-15px}}.mec-container [class*=col-].alpha{padding-left:0}.mec-container [class*=col-].omega{padding-right:0}.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{float:left}.mec-wrap .col-xs-12{width:100%}.mec-wrap .col-xs-11{width:91.66666666666666%}.mec-wrap .col-xs-10{width:83.33333333333334%}.mec-wrap .col-xs-9{width:75%}.mec-wrap .col-xs-8{width:66.66666666666666%}.mec-wrap .col-xs-7{width:58.333333333333336%}.mec-wrap .col-xs-6{width:50%}.mec-wrap .col-xs-5{width:41.66666666666667%}.mec-wrap .col-xs-4{width:33.33333333333333%}.mec-wrap .col-xs-3{width:25%}.mec-wrap .col-xs-2{width:16.666666666666664%}.mec-wrap .col-xs-1{width:8.333333333333332%}@media (min-width:768px){.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9{float:left}.mec-wrap .col-sm-12{width:100%}.mec-wrap .col-sm-11{width:91.66666666666666%}.mec-wrap .col-sm-10{width:83.33333333333334%}.mec-wrap .col-sm-9{width:75%}.mec-wrap .col-sm-8{width:66.66666666666666%}.mec-wrap .col-sm-7{width:58.333333333333336%}.mec-wrap .col-sm-6{width:50%}.mec-wrap .col-sm-5{width:41.66666666666667%}.mec-wrap .col-sm-4{width:33.33333333333333%}.mec-wrap .col-sm-3{width:25%}.mec-wrap .col-sm-2{width:16.666666666666664%}.mec-wrap .col-sm-1{width:8.333333333333332%}}@media (min-width:961px){.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9{float:left}.mec-wrap .col-md-12{width:100%}.mec-wrap .col-md-11{width:91.66666666666666%}.mec-wrap .col-md-10{width:83.33333333333334%}.mec-wrap .col-md-9{width:75%}.mec-wrap .col-md-8{width:66.66666666666666%}.mec-wrap .col-md-7{width:58.333333333333336%}.mec-wrap .col-md-6{width:50%}.mec-wrap .col-md-5{width:41.66666666666667%}.mec-wrap .col-md-4{width:33.33333333333333%}.mec-wrap .col-md-3{width:25%}.mec-wrap .col-md-2{width:16.666666666666664%}.mec-wrap .col-md-1{width:8.333333333333332%}}@media (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9{float:left}.mec-wrap .col-lg-12{width:100%}.mec-wrap .col-lg-11{width:91.66666666666666%}.mec-wrap .col-lg-10{width:83.33333333333334%}.mec-wrap .col-lg-9{width:75%}.mec-wrap .col-lg-8{width:66.66666666666666%}.mec-wrap .col-lg-7{width:58.333333333333336%}.mec-wrap .col-lg-6{width:50%}.mec-wrap .col-lg-5{width:41.66666666666667%}.mec-wrap .col-lg-4{width:33.33333333333333%}.mec-wrap .col-lg-3{width:25%}.mec-wrap .col-lg-2{width:16.666666666666664%}.mec-wrap .col-lg-1{width:8.333333333333332%}}#mec_woo_add_to_cart_btn{min-width:170px;margin-top:5px;text-align:center}.mec-breadcrumbs{border-radius:2px;padding:9px 15px 6px;font-size:11px;color:#8d8d8d;letter-spacing:0;text-transform:none;font-weight:500;margin:auto 15px 33px 15px;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.025)}.mec-breadcrumbs-modern{margin:auto 0 33px 0}.mec-breadcrumbs a{color:#000;padding-left:4px}.mec-breadcrumbs a:hover{text-decoration:underline}.mec-breadcrumbs i{font-size:8px;margin:0 0 0 4px}.mec-breadcrumbs .container{padding-left:20px}.mec-content-notification a{margin-left:5px}.mec-content-notification{background:#f7f7f7;padding:10px 10px 10px;border:1px solid #e8e8e8}.mec-content-notification p{margin-bottom:0}.mec-fes-form #mec-advanced-wraper div:first-child>ul{border:1px solid #cfeff5;width:auto;box-shadow:0 1px 4px -2px #cfeff5;display:block;margin:5px 0 10px;padding:5px 0;border-radius:2px}.mec-fes-form #mec-advanced-wraper div:first-child>ul:last-of-type{margin-bottom:35px}#mec-advanced-wraper div:first-child>ul span{display:none}#mec-advanced-wraper div:first-child>ul *{display:inline-block;background:#fff;font-size:12px;color:#717273;text-align:center}#mec-advanced-wraper div:first-child>ul>li{width:60px;font-weight:700;margin:0 10px 0 0;padding:4px 0;border-right:1px solid #cfeff5}#mec-advanced-wraper div:first-child>ul>ul>li{margin:0;padding:2px 10px;cursor:pointer;border-radius:2px;transition:all .18s ease}.mec-fes-form #mec-advanced-wraper div:first-child>ul>ul>li.mec-active,.mec-fes-form #mec-advanced-wraper div:first-child>ul>ul>li:hover{background:#40d9f1!important;box-shadow:0 1px 9px -3px #40d9f1;color:#fff!important}.mec-search-bar-wrap .mec-search-form .mec-text-input-search{width:83%}.mec-search-bar-wrap .mec-search-form .mec-ajax-search-result .mec-text-input-search{width:100%;float:none}.mec-search-bar-wrap input#mec-search-bar-input{width:calc(100% - 84%);margin-left:11px;background:#40d9f1;Color:#fff;font-weight:400}.mec-text-input-search+input#mec-search-bar-input{margin-left:-3px}.mec-search-bar-wrap input#mec-search-bar-input:hover{background:#000}.mec-wrap.mec-search-bar-wrap .mec-totalcal-box input{float:none}@media(max-width:768px){.mec-search-bar-wrap .mec-search-form .mec-text-input-search{display:inline-block}}@media(max-width:480px){.mec-search-bar-wrap .mec-search-form .mec-text-input-search{width:64%}.mec-search-bar-wrap input#mec-search-bar-input{width:calc(100% - 67%)}}.mec-wrap.mec-search-bar-wrap .mec-totalcal-box{overflow:visible}.mec-ajax-search-result{position:relative}.mec-search-bar-wrap.mec-wrap .mec-totalcal-box input[type=text]{width:calc(100% - 36px)}.mec-search-bar-wrap.mec-wrap .mec-totalcal-box input[type=text]:focus{border-color:#efefef}div#mec-ajax-search-result-wrap{position:absolute;top:100%;opacity:0;visibility:hidden;width:calc(100% - 2px);min-height:50px;left:0;right:0;padding:0 10px;z-index:9999;transition:all .3s ease}.mec-ajax-search-result-events{background:#fff;padding:10px 20px;border:1px solid #efefef;border-top:none}.mec-ajax-search-result-events article:first-of-type{border:none}article.mec-search-bar-result{text-align:left;margin-bottom:0;padding-bottom:25px;padding-top:26px;border-top:1px solid #efefef;transition:all .33s ease;clear:both}.mec-search-bar-result .mec-event-list-search-bar-date{width:64px;height:64px;margin-right:10px;font-size:11px;text-transform:uppercase;float:left;text-align:center;padding-top:2px}.mec-search-bar-result .mec-event-list-search-bar-date span{font-size:40px;line-height:30px;font-weight:700;display:block;margin-bottom:6px;letter-spacing:1px}.mec-search-bar-result .mec-event-image{float:left;margin-right:20px;width:65px;height:auto}.mec-search-bar-result .mec-event-time{font-size:11px;line-height:1.1;margin:0}.mec-search-bar-result .mec-event-time i{color:#40d9f1;float:none;width:unset;height:unset;font-size:inherit;margin-right:3px;border:none;padding:0}.mec-search-bar-result .mec-event-title{font-size:13px;padding:0;margin:10px 0 8px;font-weight:700;text-transform:uppercase}.mec-search-bar-result .mec-event-title a{text-decoration:none;color:#494949;transition:color .3s ease}.mec-search-bar-result .mec-event-detail{font-size:13px;line-height:1.3;font-family:Roboto,sans-serif;color:#9a9a9a;margin-bottom:0}.mec-wrap.mec-modern-search-bar .mec-totalcal-box{background:rgba(255,255,255,.87);border:none;padding:35px;border-radius:3px;box-shadow:0 3px 13px rgba(0,0,0,.4);position:relative}.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=search],.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=text]{height:58px;background:rgba(255,255,255,.99);border-radius:2px;box-shadow:0 4px 8px rgba(0,0,0,.1) inset;border:1px solid #ccc;width:100%;padding-left:45px;padding-right:13px;font-size:16px}.mec-wrap.mec-modern-search-bar .mec-totalcal-box .mec-text-input-search i{position:absolute;background:0 0;border:none;font-size:21px;left:15px;top:calc(50% - 19px);color:#40d9f1}.mec-wrap.mec-modern-search-bar .mec-text-input-search{position:relative;height:58px}.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=submit]{height:58px;border:none;border-radius:2px;background:#fc4a1a;font-size:17px;font-weight:700!important}.mec-wrap.mec-modern-search-bar .mec-text-input-search+input#mec-search-bar-input{margin-left:0}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{height:45px;background:rgba(255,255,255,.99);border-radius:2px;box-shadow:0 4px 8px rgba(0,0,0,.1) inset;border:1px solid #ccc;padding-right:13px;font-size:16px;border-left:0}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap i{height:45px;background:#ffff;border-radius:2px 0 0 2px;box-shadow:none;border:1px solid #ccc;font-size:15px;padding-top:14px;border-right:0;color:#40d9f1;margin-right:-1px}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap{min-height:64px}@media(max-width:768px){.mec-wrap.mec-modern-search-bar .mec-search-form .mec-text-input-search{width:70%}.mec-wrap.mec-modern-search-bar input#mec-search-bar-input{width:calc(100% - 72%)}}@media(max-width:480px){.mec-wrap.mec-modern-search-bar input#mec-search-bar-input{width:92%;padding:0 10px;position:relative;display:block;margin-left:11px}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-text-input-search{width:100%;margin-bottom:20px}.mec-wrap.mec-modern-search-bar .mec-text-input-search+input#mec-search-bar-input{margin-left:10px}}.mec-related-events-wrap{margin-top:50px}.mec-related-events-wrap h3.mec-rec-events-title:before{content:"";background:#2c2f34;width:46px;height:4px;position:absolute;top:59px;left:0}.mec-related-events-wrap h3.mec-rec-events-title{font-size:21px;font-weight:600;padding:17px 0;margin-bottom:28px;text-transform:uppercase;border-bottom:1px solid #e8e8e8;position:relative}.mec-related-event-post figure{margin:0}.mec-related-event-post figure img{width:100%}.mec-related-event-content{background-color:#fff;margin:-27px 30px 15px;position:relative;max-width:90%;padding:13px 21px 16px 19px}.mec-related-event-content h5 a{font-size:16px;color:#121212;font-weight:600;transition:all .3s ease}.mec-fes-form-cntt #mec-organizer-payments ul{list-style:none;background:0 0;margin:0}.mec-fes-form-cntt #mec-organizer-payments ul li h4{background:0 0;letter-spacing:.2px;display:inline-block;padding-left:0!important;padding-bottom:10px!important;margin:0;margin-bottom:1px;letter-spacing:1px;text-transform:capitalize;padding-top:1px}.mec-fes-form-cntt #mec-organizer-payments ul>li{width:100%;display:inline-block;vertical-align:top;padding:0;margin:0}#mec-login-form.mec-login-form{width:100%;background:#fff;padding:20px;margin:0 auto;text-align:center;position:relative}#mec-login-form.mec-login-form .mec-login-input{display:block;width:286px;margin:0 auto;margin-bottom:12px}#mec-login-form.mec-login-form .mec-login-forgotpassword{display:inline-block}.mec-login-forgotpassword a{color:#000}#mec-login-form.mec-login-form .mec-login-submit{float:right;text-align:right;width:49%;padding-right:2px}#mec-login-form.mec-login-form .mec-login-input input{border:none;box-shadow:none;background:#fff;color:#ccc;border-left:1px solid #e6e6e6;padding:0;height:100%;background-image:none!important;padding-left:10px;padding-right:0;width:222px;margin-left:0;clear:none;float:left}#mec-login-form.mec-login-form .mec-login-input label{border:1px solid #e6e6e6;height:52px;display:inline-block;padding:0;border-radius:3px;overflow:hidden;box-shadow:0 2px 4px rgba(0,0,0,.04)}#mec-login-form.mec-login-form .mec-login-input label i{padding:15px 13px 17px 16px;vertical-align:middle;font-size:20px;width:50px;color:#c5cad0;background:#fafafa;margin-right:0;float:left}#mec-login-form.mec-login-form .mec-login-forgotpassword{float:left;width:49%;text-align:left;padding-top:10px;font-size:13px;padding-left:2px}#mec-login-form.mec-login-form button{width:120px;height:44px;border:none;color:#fff;border-radius:3px;font-size:12px;font-weight:700;letter-spacing:1px;text-transform:uppercase;transition:all .22s ease;margin:0;min-width:unset}.mec-login-form button{box-shadow:0 4px 22px -7px #40d9f1;background-color:#40d9f1}#mec-login-form.mec-login-form button:hover{background:#222;box-shadow:0 3px 14px -4px #333}#mec-login-form.mec-login-form .mec-login-form-footer{width:286px;margin:0 auto;margin-top:20px;clear:both;position:relative;display:block;min-height:50px}#mec-login-form.mec-login-form .mec-ajax-login-loading{position:absolute;background:#ffffffc2;left:0;right:0;top:0;bottom:0}#mec-login-form.mec-login-form .lds-ripple{position:absolute;width:64px;height:64px;top:calc(50% - 23px);left:calc(50% - 23px)}#mec-login-form.mec-login-form .lds-ripple div{position:absolute;border:4px solid #40d9f1;opacity:1;border-radius:50%;animation:lds-ripple 1.2s cubic-bezier(0,.2,.1,.8) infinite}#mec-login-form.mec-login-form .lds-ripple div:nth-child(2){animation-delay:-.5s}#mec-login-form.mec-login-form .mec-ajax-login-loading-text{position:absolute;min-width:200px;top:calc(50% - 18px);left:calc(50% - 124px);color:#fff;padding:10px 22px;border-radius:3px;background:#fff;height:47px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text strong{color:#3fcc60}#mec-login-form.mec-login-form .mec-ajax-login-loading-text strong:before{content:"";position:absolute;top:8px;left:1px;border-right:2px solid #3fcc60;border-bottom:2px solid #3acb5c;transform:rotate(45deg);transform-origin:0 100%;color:#000;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards;width:8px;height:14px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong:after{content:"";position:absolute;top:14px;left:5px;border-bottom:2px solid #ff5d39;transform:rotate(45deg);transform-origin:0 100%;color:#000;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards;width:14px;height:4px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong{color:#ff5d39}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong:before{border-color:#ff5d39;border-bottom:none}@keyframes lds-ripple{0%{top:28px;left:28px;width:0;height:0;opacity:1}100%{top:-1px;left:-1px;width:58px;height:58px;opacity:0}}.mec-book-form-gateway-checkout [id*=mec_do_transaction_stripe_] .mec-form-row:first-child{margin-bottom:20px}.mec-events-meta-group-booking .StripeElement{box-sizing:border-box;height:40px;padding:10px 12px;border:1px solid transparent;border-radius:4px;background-color:#fff;box-shadow:0 1px 3px 0 #e6ebf1;-webkit-transition:box-shadow 150ms ease;transition:box-shadow 150ms ease;margin-bottom:20px;background:#fff}.mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text]{box-sizing:border-box;height:40px;padding:10px 12px;border:0!important;border-radius:4px;background-color:#fff;box-shadow:0 1px 3px 0 #e6ebf1!important;-webkit-transition:box-shadow 150ms ease;transition:box-shadow 150ms ease;margin-bottom:20px;background:#fff!important}.mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text]:focus{outline:0}.mec-events-meta-group-booking .StripeElement--focus{box-shadow:0 1px 3px 0 #cfd7df}.mec-events-meta-group-booking .StripeElement--invalid{border-color:#fa755a}.mec-events-meta-group-booking .StripeElement--webkit-autofill{background-color:#fefde5!important}.mec-booking-tab-content .button,.mec-booking-tab-content .mec-reg-field-add-option,.mec-fes-form .mec-form-row .button:not(.wp-color-result),.mec-fes-form input[type=file],ul#mec_reg_form_fields li .mec_reg_field_remove{height:40px;margin-top:1px;text-decoration:none;font-size:14px;line-height:34px!important;margin:0;padding:0 15px 1px!important;text-transform:none;letter-spacing:0;font-weight:600;color:#40d9f1;background:#fff;border-radius:3px;margin-right:8px;border:2px solid #cfeff5;box-shadow:0 2px 6px -3px #cfeff5}.mec-booking-tab-content .button:hover,.mec-booking-tab-content .mec-reg-field-add-option:hover,.mec-fes-form .mec-form-row .button:not(.wp-color-result):hover{background:#40d9f1;color:#fff;border-color:#40d9f1;box-shadow:0 2px 6px -3px #40d9f1}.mec-fes-form .mec-form-row input+button.button{vertical-align:top}.mec-fes-form .mec-form-row .quicktags-toolbar input.button.button-small{border-width:1px;padding:0 7px;color:#80c6d2;font-weight:400;margin:1px;transform:none}.mec-fes-form input[type=file]{max-width:166px;text-align:center;height:44px;transition:all .2s ease;border-radius:5px!important;border:2px dashed #b8e9f3}.mec-fes-form input[type=file]:hover{box-shadow:0 2px 16px -3px #cfeff5}.mec-fes-form input[type=file]::-webkit-file-upload-button{visibility:hidden;width:1px;height:38px}.mec-fes-form input[type=file]::-moz-file-upload-button{visibility:hidden;width:1px;height:38px}.mec-fes-form .mec-meta-box-fields>label{padding:0}#mec_reg_form_fields li{list-style:none}ul#mec_reg_form_fields{padding:0;margin:0}ul#mec_reg_form_fields li{background:#f8feff;margin:6px -20px;padding:15px 25px 10px;width:auto;font-size:13px;border-top:1px solid #e8fafd;border-bottom:1px solid #e8fafd;position:relative}ul#mec_reg_form_fields li .mec_reg_field_remove{position:absolute;right:10px;top:10px;margin:0;padding:6px 8px!important;font-size:11px;line-height:12px!important;min-height:10px;height:auto;display:block;cursor:pointer;color:#ea6485;border-color:#ffd2dd;letter-spacing:.4px}ul#mec_reg_form_fields li .mec_reg_field_remove:hover{background:#ea6485;color:#fff;border-color:#ea6485;box-shadow:0 2px 6px -3px #ea6485}#mec_reg_form_fields input[type=checkbox],#mec_reg_form_fields input[type=radio],.mec-form-row input[type=checkbox],.mec-form-row input[type=radio]{background-color:#fff;border:1px solid #cfeff5;box-shadow:0 1px 3px -1px #cfeff5;padding:9px;border-radius:3px;min-width:24px;min-height:24px;display:inline-block!important;vertical-align:middle;float:none;transition:all .18s ease;outline:0;margin:1px 4px 4px 0;text-align:left;cursor:pointer;-webkit-appearance:none;-moz-appearance:none}#mec_reg_form_fields input[type=checkbox]:focus,#mec_reg_form_fields input[type=radio]:focus,.mec-form-row input[type=checkbox]:focus,.mec-form-row input[type=radio]:focus{outline:0}#mec_reg_form_fields input[type=radio],.mec-form-row input[type=radio]{-webkit-appearance:none;border-radius:20px!important;min-width:20px;min-height:20px;margin:0 0 4px 0;vertical-align:middle}#mec_reg_form_fields input[type=checkbox]:hover,#mec_reg_form_fields input[type=radio]:hover,.mec-form-row input[type=checkbox]:hover,.mec-form-row input[type=radio]:hover{border-color:#40d9f1}#mec_reg_form_fields input[type=checkbox]:checked,#mec_reg_form_fields input[type=radio]:checked,.mec-fes-form .mec-form-row input[type=checkbox]:checked,.mec-fes-form .mec-form-row input[type=radio]:checked{box-shadow:0 1px 6px -2px #40d9f1;border-color:#40d9f1;background:#40d9f1!important;border-radius:2px;position:relative}.mec-form-row input[type=radio]:checked{box-shadow:0 1px 6px -2px #40d9f1,inset 0 0 0 3px #fff!important}#mec_reg_form_fields input[type=checkbox]:checked::before,.mec-form-row input[type=checkbox]:checked:before{content:"";font:normal;position:absolute;top:12px;left:5px;margin:0;vertical-align:middle;line-height:1;border-right:2px solid #fff!important;border-bottom:2px solid #fff!important;transform:rotate(45deg);transform-origin:0 100%;color:#fff;transition:all .2s ease;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards}@keyframes checkbox-check{0%{width:0;height:0;border-color:#fff;transform:translate3d(0,0,0) rotate(45deg)}33%{width:6px;height:0;transform:translate3d(0,0,0) rotate(45deg)}100%{width:6px;height:12px;border-color:#fff;transform:translate3d(0,-12px,0) rotate(45deg)}}#mec_reg_form_field_types .button{position:relative;outline:0;border-radius:50px;padding:2px 21px 2px 31px!important;line-height:1;font-size:11px;font-weight:600;color:#40d9f1;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 2px 6px -3px #40d9f1;border:2px solid #cfeff5}#mec_fes_location_remove_image_button,#mec_fes_organizer_remove_image_button,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button,#mec_meta_box_tickets_form [id^=mec_ticket_row] button,#mec_reg_form_field_types .button.red{color:#ea6485;box-shadow:0 2px 6px -3px #ea6485;background:#fff;border-color:#ffd2dd}#mec_fes_location_remove_image_button:hover,#mec_fes_organizer_remove_image_button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button:hover,#mec_meta_box_tickets_form [id^=mec_ticket_row] button:hover,#mec_reg_form_field_types .button.red:hover{background:#ea6485;color:#fff}#mec_reg_form_field_types .button:before{position:absolute;left:12px;color:#40d9f1;content:"\e095";font-family:simple-line-icons;font-size:13px;display:inline-block}#mec_reg_form_field_types .button.red:before{color:#ea6485}#mec_reg_form_field_types .button.red:hover:before,#mec_reg_form_field_types .button:hover:before{color:#fff}#mec_fes_location_remove_image_button:hover,#mec_fes_organizer_remove_image_button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button:hover,#mec_meta_box_tickets_form [id^=mec_ticket_row] button:hover,#mec_price_per_dates_container .button:hover,#mec_reg_form_field_types .button.red:hover{color:#fff;border:2px solid #ea6485}#mec_taxes_fees_container_toggle [id^=mec_remove_fee_button],#mec_ticket_variations_list [id^=mec_remove_ticket_variation_button]{color:#ea6485;border-color:#ffd2dd}#mec_taxes_fees_container_toggle [id^=mec_remove_fee_button]:hover,#mec_ticket_variations_list [id^=mec_remove_ticket_variation_button]:hover{color:#fff;border:2px solid #ea6485;background:#ea6485}#mec_fees_list [id^=mec_remove_fee_button],#mec_meta_box_ticket_variations_form .mec-form-row [id^=mec_remove_ticket_variation_button]{margin-left:14px!important}#mec_meta_box_hourly_schedule_days .mec-add-hourly-schedule-button{line-height:10px!important}#mec_meta_box_tickets_form [id^=mec_ticket_row] .mec_add_price_date_button{color:#40d9f1;box-shadow:0 2px 6px -3px #40d9f1;border:2px solid #cfeff5}#mec_meta_box_tickets_form [id^=mec_ticket_row] .mec_add_price_date_button:hover,#mec_reg_form_field_types .button:hover{color:#fff;border:2px solid #40d9f1;background:#40d9f1}.mec-form-row input+span.mec-tooltip,.mec-form-row select+span.mec-tooltip{bottom:10px}.mec-form-row label+span.mec-tooltip{bottom:8px}.mec-form-row textarea+span.mec-tooltip{bottom:auto;vertical-align:top;top:12px}.mec-form-row span+span.mec-tooltip{bottom:0;vertical-align:middle}.mec-form-row .mec-col-8 input[type=text],.mec-form-row .mec-col-8 select,.mec-form-row .mec-col-8 span.mec-archive-skins{vertical-align:top}.mec-form-row input:disabled{opacity:.6;background:#f6f6f6}.mec-form-row p{font-size:12px!important;line-height:18px!important;color:#97b2bb!important}.mec-form-row p.description{font-style:italic}.ui-datepicker.ui-widget{border:1px solid #e8e8e8;box-shadow:0 1px 9px rgba(0,0,0,.12);font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif}table.ui-datepicker-calendar{margin-bottom:0}.ui-datepicker-calendar th{font-weight:700;color:#4a4b4c}.ui-datepicker-calendar td,.ui-datepicker-calendar th,.ui-datepicker-calendar tr{border:none}.ui-datepicker.ui-widget select{font-weight:600;font-size:12px;display:inline-block;border-radius:2px;padding:2px 10px;margin:5px 3px;width:auto;min-height:20px;height:26px;border:1px solid #e3e3e3;box-shadow:inset 0 1px 3px rgba(0,0,0,.04)}.ui-datepicker.ui-widget table{border-spacing:2px;border:none}.ui-datepicker.ui-widget td,.ui-datepicker.ui-widget tr{padding:0;background:0 0!important}.ui-datepicker.ui-widget td a{color:#9a9b9c;font-weight:600;width:30px;height:30px;line-height:30px;display:inline-block;border-radius:33px;padding:0;background:#fff;transition:all .2s ease}.ui-datepicker.ui-widget td a.ui-state-active,.ui-datepicker.ui-widget td a:hover{background:#40d9f1;color:#fff}.ui-datepicker.ui-widget .ui-datepicker-next,.ui-datepicker.ui-widget .ui-datepicker-prev{color:#40d9f1;width:30px;height:30px;line-height:30px;display:inline-block;text-align:center;border-radius:33px;background:#ecfcff;transition:all .2s ease}.ui-datepicker.ui-widget .ui-datepicker-next:hover,.ui-datepicker.ui-widget .ui-datepicker-prev:hover{background:#fff;box-shadow:0 0 7px -3px rgba(0,0,0,.4)}.mec-fes-form .mec-tooltip .dashicons-before:before{color:#40d9f1}.mec-fes-form button[type=submit].mec-fes-sub-button{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;border-radius:3px;background:#40d9f1;color:#fff;height:54px;font-size:17px;font-weight:700;box-shadow:0 2px 8px -4px #40d9f1;display:block;transition:all .28s ease;text-transform:uppercase;margin:20px 0 0;padding:14px 20px;border:0;cursor:pointer;text-align:center;letter-spacing:.1em;line-height:1}.mec-fes-form button[type=submit].mec-fes-sub-button:hover{box-shadow:0 2px 12px -2px #40d9f1}.mec-fes-form button[type=submit].mec-fes-sub-button:focus{margin-bottom:-2px;background:#1dc2dc}.mec-fes-form .mec-title span.mec-dashicons{color:#40d9f1;float:left;margin-right:5px}.mec-fes-form .mec-tooltip .box h5{padding:14px 2px}#mec_fes_form,.mec-fes-form-top-actions{max-width:838px;margin:0 auto}@media only screen and (min-width:961px){.mec-fes-form .mec-fes-form-cntt{width:calc(100% - 300px);float:left;padding-right:20px;max-width:538px;display:block}.mec-fes-form .mec-fes-form-sdbr{width:300px}}.mec-fes-form .quicktags-toolbar,.mec-fes-form div.mce-toolbar-grp{background:#ecfcff;border-bottom:1px solid #cfeff5;box-shadow:0 1px 0 1px #cfeff5}.mec-fes-form .quicktags-toolbar{margin-right:-1px;border-top:1px solid #cfeff5}.mec-fes-form div.mce-statusbar{border-top-color:#cfeff5}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-listbox{border:1px solid #cfeff5;border-radius:3px}.mec-fes-form .mce-tinymce.mce-container.mce-panel{border:1px solid #cfeff5;box-shadow:0 2px 6px -3px #cfeff5;border-radius:2px 0 2px 2px}.mec-fes-form .wp-editor-tools .wp-media-buttons{transform:translateY(-6px);margin-top:-6px}.mec-fes-form .wp-editor-tabs{padding-right:0;margin-right:-2px}.mec-fes-form .wp-editor-tabs .wp-switch-editor{border-radius:3px 3px 0 0;border-color:#cfeff5;background:#fff;color:#96b8bd;border-bottom:1px solid #ecfcff}.mec-fes-form .html-active .switch-html,.mec-fes-form .tmce-active .switch-tmce,.mec-fes-form .wp-editor-tabs .wp-switch-editor:active{background:#ecfcff;color:#40d9f1}.mec-fes-form .wp-editor-container,.mec-fes-form div.mce-edit-area.mce-panel{border:none;box-shadow:none}.mec-fes-form .wp-editor-container textarea.wp-editor-area{max-width:100%}.mec-fes-form .mce-toolbar .mce-listbox button{font-size:12px;line-height:22px;color:#798f96}.mec-fes-form .mce-toolbar .mce-ico{color:#627f88}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-active,.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn:active,.mec-fes-form .qt-dfw.active{background:#fff;border-color:#40d9f1;box-shadow:inset 0 2px 6px -3px rgba(106,231,255,.7)}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-active .mce-ico{color:#40d9f1}body .mce-menu .mce-menu-item.mce-active.mce-menu-item-normal,body .mce-menu .mce-menu-item.mce-selected,body .mce-menu .mce-menu-item:focus,body .mce-menu .mce-menu-item:hover,body.mce-menu .mce-menu-item.mce-active.mce-menu-item-preview{background:#40d9f1;color:#fff}.mec-fes-form .mec-not-in-days-day{display:inline-block;padding:4px 32px 4px 15px;border-radius:33px;border:1px solid #cfeff5;box-shadow:0 1px 3px -1px #cfeff5;background:#fbfeff;color:#40d9f1;vertical-align:top}.mec-fes-form .mec-not-in-days-remove{display:inline-block;padding:0 1px 0 0;margin-left:-30px;vertical-align:sub;background:#ff918a;color:#fff;font-family:cursive;width:21px;height:21px;line-height:17px;text-align:center;border-radius:20px;cursor:pointer}.mec-fes-list ul li .mec-event-status{float:left;margin-right:10px;margin-left:0;font-size:11px;font-weight:400;letter-spacing:.3px;border-radius:3px;padding:4px 8px}.mec-fes-form .post-status.mec-book-confirmed:before,.mec-fes-list ul li .mec-event-status.mec-book-confirmed:before{content:"";margin:0;vertical-align:middle;line-height:1;border-right:2px solid #fff!important;border-bottom:2px solid #fff!important;transform:rotate(45deg);color:#fff;width:6px;height:12px;float:left;margin-right:6px}.mec-fes-list ul li .mec-fes-event-export a:before,.mec-fes-list ul li .mec-fes-event-remove:before,.mec-fes-list ul li .mec-fes-event-view a:before,.mec-fes-list-top-actions a:before{content:"\e054";font-family:simple-line-icons;font-size:13px;vertical-align:middle}.mec-fes-list ul li .mec-fes-event-view a:before{content:"\e087"}.mec-fes-list-top-actions a:before{content:"\e095";font-weight:400;margin-right:6px}.mec-fes-list ul li .mec-fes-event-export a:before{content:"\e083"}.mec-fes-form .post-status{border-radius:20px}.mec-fes-form .post-status.mec-book-confirmed:before{height:20px;width:9px;margin:3px 10px}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker-calendar th{height:auto;padding:0}.ui-datepicker .ui-datepicker-calendar td a,.ui-datepicker-calendar th{font-size:14px;line-height:30px}.mec-fes-form .description{font-size:16px}.mec-fes-form input[type=file]{text-align:left}.mec-fes-export-wrapper{width:640px;background:#f8feff;padding:40px 25px}.mec-fes-export-wrapper .mec-fes-btn-date{font-size:16px;line-height:44px;overflow:hidden}.mec-fes-export-wrapper .date-messgae{font-family:sans-serif;padding:2px 18px}.mec-fes-list ul li .mec-event-export-csv,.mec-fes-list ul li .mec-event-export-excel{font-size:12px;border:1px solid #40d9f1;padding:1px 4px;background:rgba(141,229,243,.18);border-radius:4px;color:#40d9f1;font-family:sans-serif;cursor:pointer;display:inline-block;height:26px;line-height:22px}.mec-export-badge{font-size:11px;color:#40d9f1;width:auto;height:24px;line-height:25px;display:inline-block;padding:0 8px;text-align:center;border-radius:3px;background:#ecfcff;transition:all .2s ease}.mec-fes-list ul li .mec-fes-event-export{font-size:11px;background:#f7f7f7;float:right;margin-left:5px}.mec-fes-list ul li .mec-fes-event-export:hover{cursor:pointer;background:#90f0e0;border-color:#4dc8cc}.mec-fes-export-wrapper ul{padding:0;width:100%;text-align:center}.mec-fes-export-wrapper ul li{list-style:none;display:inline-block;width:30%;padding:10px 15px 10px 32px;border-radius:3px;margin-bottom:15px;border:1px solid #cfeff5;box-shadow:0 2px 6px -4px #cfeff5;background:#fff;line-height:normal;margin-right:10px;position:relative;cursor:pointer;font-size:13px;line-height:1;transition:all .2s ease}.mec-fes-export-wrapper ul li:nth-child(3n+0){margin-right:0}.mec-fes-export-wrapper ul li:hover{box-shadow:0 2px 16px -1px #c6e8ef}.mec-fes-export-wrapper ul li:before{content:"";position:absolute;display:inline-block;background:#fff;width:15px;height:15px;margin:-1px 0 0 5px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32);border-radius:50%;left:9px;top:calc(50% - 7px)}.mec-fes-export-wrapper ul li.fes-export-date-active{color:#40d9f1}.mec-fes-export-wrapper ul li.fes-export-date-active:before{width:15px;height:15px;border:6px solid #40d9f1;background:#fff;box-shadow:0 3px 16px -3px #40d9f1}.mec-fes-btn-export{margin-left:15px;margin-top:12px}.mec-fes-btn-export span{position:relative;border:none;border-radius:3px;color:#fff!important;display:inline-block;font-size:13px;line-height:1;text-transform:none;font-weight:400;text-decoration:none;cursor:pointer;margin-right:4px;line-height:1;letter-spacing:0;padding:15px 22px;background:#39c36e;box-shadow:0 1px 7px -3px #39c36e!important;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;cursor:pointer;margin-left:6px}.mec-fes-btn-export span:hover{background:#222}.mec-event-export-excel:before,span.mec-event-export-csv:before{content:"\e083";font-family:simple-line-icons;font-size:13px;vertical-align:middle;margin-right:7px;margin-top:-1px;display:inline-block}.mec-fes-list .wn-p-t-right{min-width:170px;max-width:200px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#000;color:#fff;font-weight:400;font-size:14px;letter-spacing:.5px;line-height:1.5;position:absolute;z-index:99999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #535a61;visibility:hidden;opacity:0;transition:opacity .23s;padding:5px 10px 6px;border-radius:8px;text-align:center;font-style:normal}.mec-fes-list .mec-fes-event-export:hover .wn-p-t-right,.mec-fes-list .mec-fes-event-remove:hover .wn-p-t-right,.mec-fes-list .mec-fes-event-view:hover .wn-p-t-right{visibility:visible;opacity:1}.mec-fes-list .wn-p-t-right i{position:absolute!important;top:100%;right:50%;margin-top:-6px!important;margin-right:-6px!important;width:12px;height:24px;overflow:hidden;transform:rotate(-90deg)}.mec-fes-list .wn-p-t-right i:after{content:'';position:absolute;width:12px;height:12px;left:0;top:50%;transform:translate(50%,-50%) rotate(-45deg);background-color:#000;box-shadow:0 8px 9px -4px #535a61}.mec-fes-form .select2-container{min-height:38px;box-sizing:border-box;margin-bottom:8px;padding:0 6px;border-radius:2px;border:1px solid #ddd;box-shadow:inset 0 1px 6px rgba(0,0,0,.07);background-color:#fff;color:#32373c;outline:0;transition:50ms border-color ease-in-out;min-width:200px;font-size:14px}.mec-fes-form .select2-selection{border:none;background:0 0;padding-top:2px;width:100%;height:100%}.mec-fes-form .select2-container--default.select2-container--focus .select2-selection{border:none!important;outline:0}.mec-fes-form .select2-container--default .select2-selection--single .select2-selection__arrow{top:5px;right:4px}.select2-results{font-size:14px}.mec-fes-category-children,.mec-fes-category-children .mec-fes-category-children{padding-left:24px}.mec-wrap .mec-timeline-events-container a,.mec-wrap .mec-timeline-events-container div,.mec-wrap .mec-timeline-events-container h4,.mec-wrap .mec-timeline-events-container p,.mec-wrap .mec-timeline-events-container span{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important}.mec-timeline-events-container{margin-left:19px;padding-top:20px;padding-bottom:9px}.mec-events-timeline-wrap{position:relative;display:block;overflow:visible;padding-left:95px}.mec-events-timeline-wrap:before{width:1px;content:'';height:100%;position:absolute;background:#dedede;left:95px}.mec-timeline-month-divider+.mec-timeline-events-container{padding-top:110px}.mec-timeline-right-content{float:right;width:300px}.mec-timeline-left-content{float:left;width:calc(100% - 300px);padding-left:15px;padding-right:15px}.mec-timeline-month-divider{position:absolute;display:block;background:#fff;right:calc(100% - 95px);left:0;width:190px;text-align:center;border:1px solid #dedede;border-radius:50px;font-size:15px;padding:12px 27px}.mec-timeline-event-date{position:relative}.mec-timeline-events-container .mec-timeline-event-date:before{content:'';width:10px;height:10px;position:absolute;background:#40d9f1;border-radius:50px;top:8px;left:-23px;z-index:99}.mec-timeline-events-container .mec-timeline-event-date:after{content:'';width:20px;height:20px;position:absolute;background:rgba(64,217,241,.3);border-radius:50px;top:3px;left:-28px}.mec-timeline-event-date{float:left;width:17%;margin-top:27px}.mec-timeline-event-content{float:left;width:82%;background:#fff;box-shadow:0 10px 30px 0 rgba(0,0,0,.1);border-radius:10px;overflow:visible;position:relative}.mec-timeline-main-content{padding:23px 30px}.mec-timeline-main-content h4{margin-bottom:15px}.mec-timeline-main-content h4 a{font-size:25px;font-weight:700;color:#000;line-height:33px;text-decoration:none}.mec-timeline-main-content p{font-size:15px;color:#515151;line-height:24px;margin-bottom:36px}a.mec-timeline-readmore{width:100%;display:block;text-align:center;color:#fff;text-decoration:none;line-height:52px;font-size:17px;font-weight:700;-webkit-transition:all .2s ease;transition:all .2s ease;border-radius:0 0 10px 10px}a.mec-timeline-readmore:hover{background:#222;color:#fff}.mec-timeline-event-time .mec-time-details{display:inline-block;margin-left:7px;font-size:13px;line-height:13px;font-weight:500}.mec-timeline-event-time i{vertical-align:middle}.mec-timeline-event-time{background:rgba(64,217,241,.11);display:inline-block;padding:4px 20px 8px;border-radius:50px}.mec-timeline-event-location address{font-style:normal;margin-bottom:0}.mec-timeline-event-location address span{font-size:13px;font-weight:500;vertical-align:middle;margin-left:6px}.mec-timeline-event-location address i{font-size:17px;vertical-align:middle}.mec-timeline-event-location{background:rgba(64,217,241,.11);display:inline-block;padding:7px 20px 11px;border-radius:20px;line-height:1.24}.mec-timeline-event-details+.mec-timeline-event-details{margin-top:12px}.mec-timeline-event-content .col-md-4{padding:0}.mec-timeline-event-content:after{content:'';display:block;position:absolute;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-timeline-event-content:after{top:30px;border-color:transparent #fff transparent transparent;left:-10px}.mec-timeline-event-image img{border-radius:0 10px 0 0;width:100%}.mec-timeline-event-image a{display:block;line-height:0}a.mec-timeline-readmore i{vertical-align:middle;margin-left:10px;font-size:9px}.mec-wrap .mec-timeline-event-content a.mec-timeline-readmore:hover{background:#444}@media(min-width:1024px){.mec-past-event.mec-timeline-event{margin:50px 0}}@media(max-width:1023px){.mec-past-event.mec-timeline-event{margin:25px 0}.mec-events-timeline-wrap{padding-left:20px}.mec-events-timeline-wrap:before{left:20px}}@media (max-width:1200px) and (min-width:992px){.mec-timeline-event-content{width:81%}.mec-timeline-event-date{width:18%}}@media (max-width:992px){.mec-timeline-left-content,.mec-timeline-right-content{float:none;width:100%;text-align:center}.mec-timeline-right-content .mec-timeline-event-image{text-align:center}.mec-timeline-right-content .mec-timeline-event-image img{max-width:300px;border-radius:10px;margin-top:35px}}@media (max-width:440px){.mec-timeline-right-content .mec-timeline-event-image img{margin-top:0}}@media (max-width:320px){.mec-timeline-event-content,.mec-timeline-event-date{float:none;width:100%}.mec-timeline-event-date{margin-bottom:8px}.mec-timeline-event-content:after{display:none}.mec-timeline-main-content{padding:23px 0}.mec-timeline-main-content p{font-size:13px}.mec-timeline-main-content h4 a{font-size:23px;line-height:24px}.mec-time-details span{font-size:11px}.mec-timeline-event-location address span{font-size:12px}a.mec-timeline-readmore{line-height:44px;font-size:14px}}.mec-event-tile-view article.mec-tile-item{height:400px;margin:15px 0;border-radius:22px;padding:35px 25px;position:relative;color:#fff;background-size:cover!important;background-position:center!important;box-shadow:0 2px 9px rgba(0,0,0,.25);transition:all .22s ease}.mec-event-tile-view article.mec-tile-item:hover{box-shadow:0 4px 19px rgba(0,0,0,.5)}.mec-event-tile-view article.mec-tile-item div{position:relative;z-index:3}.mec-event-tile-view article.mec-tile-item:after,.mec-event-tile-view article.mec-tile-item:before{position:absolute;background:-moz-linear-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);background:-webkit-gradient(left top,right top,color-stop(0,rgba(0,0,0,.35)),color-stop(65%,rgba(0,0,0,.48)),color-stop(100%,rgba(0,0,0,.72)));background:-webkit-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);background:linear-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);content:"";left:0;right:0;bottom:0;top:0;width:100%;height:100%;display:block;border-radius:22px;z-index:1}.mec-event-tile-view article.mec-tile-item:after{background-color:inherit;background-image:none;top:35px;bottom:auto;height:40px;border-radius:0 3px 3px 0;width:97px;z-index:2;box-shadow:2px 1px 7px rgba(0,0,0,.1)}.mec-event-tile-view article.mec-tile-item .event-tile-view-head{padding:8px 3px;font-size:16px;font-weight:700;margin-bottom:50px;text-transform:uppercase}.mec-event-tile-view article.mec-tile-item .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-skin-tile-month-navigator-container{position:relative;text-align:center;font-size:12px;height:80px;background:#f7f7f7;padding:28px;border-radius:11px;margin-bottom:20px}.mec-skin-tile-month-navigator-container:after,.mec-skin-tile-month-navigator-container:before{content:'';display:block;position:absolute;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-skin-tile-month-navigator-container:after{bottom:-20px;border-color:#f7f7f7 transparent transparent transparent}.mec-skin-tile-month-navigator-container:before{bottom:-21px;border-color:#fff transparent transparent transparent}@media only screen and (max-width:480px){.mec-skin-tile-month-navigator-container{height:110px;padding-top:68px}}.mec-skin-tile-month-navigator-container h2{font-size:23px;font-weight:700}.mec-skin-tile-month-navigator-container .mec-next-month,.mec-skin-tile-month-navigator-container .mec-previous-month{position:absolute;top:28px;left:20px;cursor:pointer;padding:3px 12px;line-height:23px;background:#fff;border-radius:32px;box-shadow:0 1px 3px rgba(0,0,0,.02);transition:all .22s ease}.mec-skin-tile-month-navigator-container .mec-next-month{left:auto;right:20px}.mec-skin-tile-month-navigator-container .mec-next-month:hover,.mec-skin-tile-month-navigator-container .mec-previous-month:hover{box-shadow:0 2px 5px rgba(0,0,0,.1);color:#000}.mec-wrap .mec-event-tile-view article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view article.mec-label-featured:before{position:absolute;bottom:auto;text-align:center;right:auto;font-size:10px}.mec-wrap .mec-event-tile-view .col-md-3 article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view .col-md-3 article.mec-label-featured:before{top:12px;left:103px}.mec-wrap .mec-event-tile-view .col-md-4 article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view .col-md-4 article.mec-label-featured:before{top:18px;left:125px}.mec-wrap .mec-event-tile-view .col-md-6 article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view .col-md-6 article.mec-label-featured:before{top:20px;left:200px}.mec-wrap .mec-label-normal{display:none}.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}
|
assets/css/mecrtl.css
CHANGED
@@ -65,8 +65,6 @@
|
|
65 |
/* Text align right
|
66 |
====================================================*/
|
67 |
.mec-event-cover-classic .mec-btn-wrapper { text-align: right; }
|
68 |
-
|
69 |
-
|
70 |
|
71 |
/* #General
|
72 |
================================================== */
|
@@ -90,7 +88,7 @@
|
|
90 |
.mec-fes-list ul li .mec-fes-event-remove, .mec-fes-list ul li .mec-fes-event-view { float: left;}
|
91 |
.mec-fes-form input[type=checkbox], .mec-fes-form input[type=radio] { float: right; margin: 5px;}
|
92 |
.mec-fes-form #mec_fes_form .mec-form-row #mec_cost { float:none;}
|
93 |
-
.mec-meta-box-fields .mec-form-row { overflow: hidden;}
|
94 |
.mec-fes-form label {padding-right: 0;}
|
95 |
|
96 |
/* #Search Form (top bar skin's)
|
@@ -138,7 +136,9 @@
|
|
138 |
/* Single Events Sidebar */
|
139 |
.single-mec-events .mec-wrap .col-md-4 {direction: rtl;float: right;}
|
140 |
/* Single Events */
|
141 |
-
.single-mec-events .mec-wrap .col-md-4 {margin-top: -50px;}
|
|
|
|
|
142 |
.single-mec-events .mec-single-modern .mec-single-event-bar {padding: 14px 0;}
|
143 |
.single-mec-events .mec-single-modern .col-md-4 .mec-frontbox {margin: 0;}
|
144 |
.single-mec-events .mec-single-event .mec-events-meta-group-booking form>h4:before, .mec-single-event .mec-frontbox-title:before {transform: translate(-50%); margin: 0;}
|
@@ -146,7 +146,7 @@
|
|
146 |
.single-mec-events .mec-single-event .mec-booking-button {position: relative; z-index: 2;}
|
147 |
.single-mec-events .mec-wrap .mec-single-event .mec-event-meta dd a i:before {content: '\f104'; line-height: 32px; }
|
148 |
.single-mec-events .mec-wrap .mec-single-event .mec-event-meta dd.mec-events-event-categories:after {display: none;}
|
149 |
-
|
150 |
/* #List View
|
151 |
================================================== */
|
152 |
/* List View Standard */
|
@@ -202,6 +202,12 @@
|
|
202 |
/* Full Calendar View > List View */
|
203 |
.mec-wrap .mec-event-list-standard .mec-date-details:before, .mec-event-list-standard .mec-time-details:before, .mec-event-list-standard .mec-venue-details:before { right:0; text-align:right;}
|
204 |
.mec-wrap .mec-event-meta.mec-color-before span { margin-right: 28px;}
|
|
|
|
|
|
|
|
|
|
|
|
|
205 |
|
206 |
/* #Calendar/Monthly View
|
207 |
================================================== */
|
@@ -239,9 +245,26 @@
|
|
239 |
.mec-wrap .mec-event-countdown-style3 .mec-event-date { left: auto; right: -27px;}
|
240 |
.mec-wrap .mec-event-countdown-style3 .mec-event-date:after { left:auto; right:8px; transform: rotate(-45deg);}
|
241 |
|
242 |
-
/* #
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
243 |
================================================== */
|
|
|
244 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
245 |
.mec-wrap .mec-event-content .mec-event-title a.mec-color-hover { float: right;}
|
246 |
.mec-wrap .mec-event-content .mec-event-title .event-color { float: left;}
|
247 |
|
@@ -284,6 +307,12 @@
|
|
284 |
.mec-wrap .mec-slider-t4-wrap .mec-owl-theme .owl-nav div.owl-prev { left:30px; right:auto;}
|
285 |
.mec-wrap .mec-slider-t4-wrap .mec-owl-theme .owl-nav div.owl-next { left:82px; right:auto;}
|
286 |
|
|
|
|
|
|
|
|
|
|
|
|
|
287 |
|
288 |
/* #Responsive
|
289 |
================================================== */
|
65 |
/* Text align right
|
66 |
====================================================*/
|
67 |
.mec-event-cover-classic .mec-btn-wrapper { text-align: right; }
|
|
|
|
|
68 |
|
69 |
/* #General
|
70 |
================================================== */
|
88 |
.mec-fes-list ul li .mec-fes-event-remove, .mec-fes-list ul li .mec-fes-event-view { float: left;}
|
89 |
.mec-fes-form input[type=checkbox], .mec-fes-form input[type=radio] { float: right; margin: 5px;}
|
90 |
.mec-fes-form #mec_fes_form .mec-form-row #mec_cost { float:none;}
|
91 |
+
/* .mec-meta-box-fields .mec-form-row { overflow: hidden;} */
|
92 |
.mec-fes-form label {padding-right: 0;}
|
93 |
|
94 |
/* #Search Form (top bar skin's)
|
136 |
/* Single Events Sidebar */
|
137 |
.single-mec-events .mec-wrap .col-md-4 {direction: rtl;float: right;}
|
138 |
/* Single Events */
|
139 |
+
.single-mec-events .mec-wrap .mec-single-modern .col-md-4 {margin-top: -50px;}
|
140 |
+
.mec-events-template-default .mec-wrap .col-md-4 {margin-top: 0; float: left;}
|
141 |
+
.mec-events-template-default .mec-wrap .col-md-8 {margin-top: 0; float: right;}
|
142 |
.single-mec-events .mec-single-modern .mec-single-event-bar {padding: 14px 0;}
|
143 |
.single-mec-events .mec-single-modern .col-md-4 .mec-frontbox {margin: 0;}
|
144 |
.single-mec-events .mec-single-event .mec-events-meta-group-booking form>h4:before, .mec-single-event .mec-frontbox-title:before {transform: translate(-50%); margin: 0;}
|
146 |
.single-mec-events .mec-single-event .mec-booking-button {position: relative; z-index: 2;}
|
147 |
.single-mec-events .mec-wrap .mec-single-event .mec-event-meta dd a i:before {content: '\f104'; line-height: 32px; }
|
148 |
.single-mec-events .mec-wrap .mec-single-event .mec-event-meta dd.mec-events-event-categories:after {display: none;}
|
149 |
+
.single-mec-events .mec-wrap .mec-book-form-btn-wrap {float: right;}
|
150 |
/* #List View
|
151 |
================================================== */
|
152 |
/* List View Standard */
|
202 |
/* Full Calendar View > List View */
|
203 |
.mec-wrap .mec-event-list-standard .mec-date-details:before, .mec-event-list-standard .mec-time-details:before, .mec-event-list-standard .mec-venue-details:before { right:0; text-align:right;}
|
204 |
.mec-wrap .mec-event-meta.mec-color-before span { margin-right: 28px;}
|
205 |
+
/* Full Calendar View > Yearly View */
|
206 |
+
.mec-wrap .mec-timetable-t2-col {float: right;}
|
207 |
+
.mec-wrap .mec-agenda-date-wrap {float: right;}
|
208 |
+
.mec-wrap .mec-agenda-events-wrap {float: left;}
|
209 |
+
.mec-wrap .mec-yearly-view-wrap .mec-yearly-calendar-sec {float: right;}
|
210 |
+
.mec-wrap .mec-yearly-agenda-sec {float: left; padding: 0 20px 0 0;}
|
211 |
|
212 |
/* #Calendar/Monthly View
|
213 |
================================================== */
|
245 |
.mec-wrap .mec-event-countdown-style3 .mec-event-date { left: auto; right: -27px;}
|
246 |
.mec-wrap .mec-event-countdown-style3 .mec-event-date:after { left:auto; right:8px; transform: rotate(-45deg);}
|
247 |
|
248 |
+
/* #Masonry View
|
249 |
+
================================================== */
|
250 |
+
.mec-wrap .mec-masonry .mec-event-content .mec-event-description {display: block; direction: rtl; text-align: right;}
|
251 |
+
.mec-wrap .mec-masonry .mec-event-grid-modern .mec-event-content .mec-event-title .event-color { float: left;}
|
252 |
+
.mec-wrap .mec-masonry .event-grid-modern-head .mec-event-date {margin: 0 0 0 11px;}
|
253 |
+
.mec-wrap .mec-masonry .mec-masonry-col6 i {float: right; margin: 0 0 0 7px;}
|
254 |
+
|
255 |
+
/* #Tile View
|
256 |
================================================== */
|
257 |
+
.mec-event-tile-view article.mec-tile-item .mec-event-time {right: auto; left: 4px;}
|
258 |
|
259 |
+
/* #Timetable
|
260 |
+
================================================== */
|
261 |
+
.mec-wrap .mec-timetable-t2-content { direction: rtl; text-align: right;}
|
262 |
+
.mec-wrap .mec-timetable-t2-content div {text-align: right;}
|
263 |
+
.mec-wrap .mec-timetable-t2-content div i {margin-right: 0;margin-left: 5px;}
|
264 |
+
.mec-wrap .mec-timetable-t2-content div span {float: left;text-align: right;width: calc( 100% - 22px);}
|
265 |
+
|
266 |
+
/* #Slider View
|
267 |
+
================================================== */
|
268 |
.mec-wrap .mec-event-content .mec-event-title a.mec-color-hover { float: right;}
|
269 |
.mec-wrap .mec-event-content .mec-event-title .event-color { float: left;}
|
270 |
|
307 |
.mec-wrap .mec-slider-t4-wrap .mec-owl-theme .owl-nav div.owl-prev { left:30px; right:auto;}
|
308 |
.mec-wrap .mec-slider-t4-wrap .mec-owl-theme .owl-nav div.owl-next { left:82px; right:auto;}
|
309 |
|
310 |
+
/* #FES Form
|
311 |
+
================================================== */
|
312 |
+
.mec-fes-form .mec-fes-form-cntt, .mec-fes-form .mec-fes-form-sdbr {direction: rtl;text-align: right;}
|
313 |
+
.mec-fes-form .mec-fes-form-cntt { float: right; padding-right: 0; padding-left: 20px;}
|
314 |
+
.mec-fes-form .mec-fes-form-sdbr { padding-right: 20px; padding-left: 0;}
|
315 |
+
.mec-fes-form .mec-fes-form-cntt .mec-col-4, .mec-fes-form .mec-fes-form-sdbr .mec-col-4 {float: unset;}
|
316 |
|
317 |
/* #Responsive
|
318 |
================================================== */
|
assets/css/mecrtl.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.mec-single-event .mec-events-meta-date i,.mec-single-event .mec-single-event-organizer i{margin-left:10px;margin-right:12px}.event-color,.mec-event-schedule-content,.mec-single-event .mec-frontbox-title:before{margin-left:0}.mec-event-cover-classic .mec-event-icon{margin-left:14px}.event-color{margin-right:5px}.mec-event-list-classic .mec-event-image{margin-left:20px}.mec-event-article i{margin-left:10px}.mec-event-cover-classic .mec-event-icon,.mec-event-list-classic .mec-event-image{margin-right:0}.mec-single-event .mec-frontbox-title:before{margin-right:39px}.mec-event-schedule-content{margin-right:25px}.mec-event-schedule-content dl,.mec-single-event .mec-event-meta dt,.mec-single-event .mec-event-meta h3{padding-left:0}.mec-single-event .mec-event-meta dt,.mec-single-event .mec-event-meta h3{padding-right:10px}.mec-event-schedule-content dl{padding-right:24px}.mec-event-schedule-content{border:0}.mec-event-schedule-content{border-right:4px solid #f0f0f0}.mec-event-cover-modern .mec-event-cover-a,.mec-event-schedule-content dl:before{left:auto}.mec-event-cover-modern .mec-event-cover-a,.mec-event-schedule-content dl:before{right:0}.mec-event-cover-classic .mec-event-icon,.mec-event-list-classic .mec-event-image{float:right}.mec-event-cover-classic .mec-btn-wrapper{text-align:right}.mec-wrap .mec-calendar-topsec .mec-calendar-events-sec .mec-table-side-day{padding:0}.mec-wrap article.mec-event-article.mec-clear{text-align:right}.mec-wrap .mec-event-article .mec-event-content p{text-align:right}.mec-wrap .button,.mec-wrap button,.mec-wrap input[type=button],.mec-wrap input[type=reset],.mec-wrap input[type=submit]{margin:0}.mec-wrap .mec-events-meta-group-booking .mec-book-price-details li{float:right}.mec-wrap .mec-events-meta-group-booking .mec-book-price-details{width:330px}.mec-wrap .mec-marker-wrap .mec-marker-pulse{margin:-15px 28px 1px 40px}.mec-wrap .mec-marker-wrap .mec-marker-pulse:after{margin:-13px -13px 0 0}.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view{float:left}.mec-fes-form input[type=checkbox],.mec-fes-form input[type=radio]{float:right;margin:5px}.mec-fes-form #mec_fes_form .mec-form-row #mec_cost{float:none}.mec-meta-box-fields .mec-form-row{overflow:hidden}.mec-fes-form label{padding-right:0}.mec-wrap .mec-totalcal-box i{float:right;text-align:center}.mec-totalcal-box .mec-date-search{float:left}.mec-wrap .mec-single-modern .mec-single-event-bar>div i{float:right;padding-left:10px}.mec-wrap .mec-single-modern .mec-single-event-bar dd{margin:0 30px 0 0;padding:0}.mec-wrap .mec-event-meta.mec-color-before.mec-frontbox{width:100%}.mec-wrap .mec-single-modern .mec-event-meta .mec-single-event-organizer dd a{float:left;position:absolute;margin-right:5px}.mec-wrap .mec-single-event .mec-single-event-organizer i{margin-top:5px}.mec-wrap .mec-single-event .mec-event-meta i{float:right;padding-left:5px}.mec-wrap .mec-single-event .mec-event-meta dt,.mec-wrap .mec-single-event .mec-event-meta h3{padding-right:5px}.mec-wrap .mec-single-event .mec-event-meta dd{padding-right:35px;padding-left:0}.mec-wrap .mec-single-event .mec-event-meta .mec-single-event-organizer dd{padding:0}.mec-wrap .mec-single-event .mec-event-meta .mec-single-event-organizer dd a{float:left;position:absolute;margin-right:5px}.mec-wrap .mec-single-event .mec-event-meta dd.mec-events-event-categories:after{font-family:FontAwesome;color:#40d9f1;font-size:16px;content:"\f104";padding-left:10px}.mec-wrap .mec-single-event .mec-event-meta dd.mec-events-event-categories:before{content:"";padding:0}.mec-wrap .mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li:last-child{text-align:left;padding-left:0}.mec-wrap .mec-single-event .mec-events-button{margin:0}.mec-wrap .mec-calendar .mec-event-article .mec-event-image{float:right;margin-left:20px}.mec-wrap .mec-calendar .mec-event-article .mec-event-title{text-align:right;padding:5px}.mec-wrap .mec-calendar .mec-event-article .mec-event-time i{float:right}.mec-wrap .mec-calendar .mec-event-article .mec-event-time.mec-color{float:right}.mec-wrap .mec-calendar .mec-event-article .mec-event-detail{float:right}.mec-wrap .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{float:right}.mec-wrap .mec-event-meta-wrap{border-right:1px solid #eee;border-left:0}.mec-event-meta{float:right}.mec-event-sharing-wrap{right:20px;left:auto}.mec-event-footer .mec-booking-button{right:auto;left:20px}.mec-single-event .mec-single-event-organizer dd span,.mec-wrap .mec-single-event .mec-events-meta-date dd span{padding-bottom:20px}.single-mec-events .mec-wrap .col-md-4{direction:rtl;float:right}.single-mec-events .mec-wrap .col-md-4{margin-top:-50px}.single-mec-events .mec-single-modern .mec-single-event-bar{padding:14px 0}.single-mec-events .mec-single-modern .col-md-4 .mec-frontbox{margin:0}.mec-single-event .mec-frontbox-title:before,.single-mec-events .mec-single-event .mec-events-meta-group-booking form>h4:before{transform:translate(-50%);margin:0}.single-mec-events .mec-single-event-category,.single-mec-events .mec-single-event-location,.single-mec-events .mec-single-event-organizer{z-index:1}.single-mec-events .mec-single-event .mec-booking-button{position:relative;z-index:2}.single-mec-events .mec-wrap .mec-single-event .mec-event-meta dd a i:before{content:'\f104';line-height:32px}.single-mec-events .mec-wrap .mec-single-event .mec-event-meta dd.mec-events-event-categories:after{display:none}.mec-wrap .mec-event-list-standard .mec-event-meta-wrap{display:table-cell}.mec-wrap .mec-totalcal-box i{float:right}.mec-wrap i.mec-sl-map-marker{float:right;margin-left:3px}.mec-wrap .mec-event-list-minimal .btn-wrapper .mec-detail-button{float:left}.mec-wrap .mec-event-list-minimal .mec-event-article .col-md-9.col-sm-9{float:right;width:100%}.mec-wrap .mec-event-list-minimal .mec-event-article .mec-event-date.mec-bg-color{float:right;margin-right:0;margin-left:10px}.mec-wrap .mec-event-list-minimal .mec-event-date span{padding-left:25px;margin-left:7px;padding-right:0;margin-right:0}.mec-event-grid-clean .mec-event-footer .mec-booking-button{left:0;right:auto}.mec-event-grid-clean .mec-event-sharing-wrap{left:auto;right:0}.mec-event-grid-clean .event-grid-t2-head .mec-event-date{float:right;margin-right:0;margin-left:11px}.mec-event-grid-clean .event-grid-t2-head{text-align:right}.mec-event-grid-clean .event-grid-t2-head .mec-event-month{text-align:right}.mec-event-grid-clean .event-grid-t2-head .mec-event-detail{text-align:right}.mec-event-grid-minimal .mec-event-date{margin-right:0;margin-left:20px}.mec-wrap .mec-event-grid-modern .mec-event-article .event-grid-modern-head .mec-event-date.mec-color{margin-left:11px;margin-right:0}.mec-wrap .mec-event-grid-modern .mec-event-content .mec-event-title .event-color{float:right;margin:7px}.mec-wrap .mec-event-grid-modern .mec-event-article h4.mec-event-title{overflow:hidden}.mec-wrap .mec-event-grid-simple article.mec-event-article.mec-clear{text-align:center}.mec-wrap .mec-event-grid-simple article.mec-event-article h4.mec-event-title{text-align:center}.mec-wrap .mec-event-grid-modern .event-grid-modern-head .mec-event-date{float:right}.mec-wrap .mec-event-article h4.mec-event-title{text-align:right}.mec-wrap .event-grid-modern-head.clearfix{text-align:right}.mec-wrap .event-carousel-type1-head .mec-event-date-carousel{left:auto;right:1px;padding-left:21px;padding-right:25px}.mec-wrap .event-carousel-type1-head .mec-event-date-info-year{right:auto;left:60px}.mec-wrap .event-carousel-type1-head .mec-event-date-info{right:auto;left:60px}.mec-wrap .event-carousel-type1-head .mec-event-date-carousel:after{left:auto;bottom:-13px;right:5px;transform:rotate(-45deg)}.mec-wrap .event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button{float:left}.mec-wrap .mec-event-carousel-type2 .mec-event-footer-carousel-type2 .mec-event-sharing-wrap{left:auto;right:-11px}.mec-wrap .event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button{float:left}.mec-wrap .mec-event-footer-carousel-type3 .mec-event-sharing-wrap{left:auto;right:11%}.mec-event-list-standard .mec-time-details:before,.mec-event-list-standard .mec-venue-details:before,.mec-wrap .mec-event-list-standard .mec-date-details:before{right:0;text-align:right}.mec-wrap .mec-event-meta.mec-color-before span{margin-right:28px}.mec-wrap .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{text-align:right}.mec-wrap .mec-skin-monthly-view-month-navigator-container .mec-calendar-events-sec h3.mec-color.mec-table-side-day{float:right}.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt{float:right;border-left:1px solid #e6e6e6}.mec-event-detail.mec-map-view-event-detail{text-align:right}.mec-event-article i{margin-left:0}.mec-wrap .mec-event-cover-clean .mec-event-date{right:auto;left:60px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1{padding:50px 4% 50px 1%}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date-place{text-align:right}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1{padding:50px 4% 50px 1%}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown{left:20px;right:auto}.mec-wrap .mec-event-countdown-style3 .mec-event-title-link{left:auto;right:190px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-title{padding-right:0}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link{padding-left:0;padding-right:22px;margin-left:22px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link:before{right:0;left:auto}.mec-wrap .mec-event-countdown-style3 .mec-event-date{left:auto;right:-27px}.mec-wrap .mec-event-countdown-style3 .mec-event-date:after{left:auto;right:8px;transform:rotate(-45deg)}.mec-wrap .mec-event-content .mec-event-title a.mec-color-hover{float:right}.mec-wrap .mec-event-content .mec-event-title .event-color{float:left}.mec-wrap .mec-slider-t1 .mec-event-grid-modern .event-grid-modern-head .mec-event-date{float:right;margin:0 0 0 11px}.mec-wrap .mec-slider-t1 .mec-event-grid-modern .event-grid-modern-head.clearfix{text-align:right}.mec-wrap .mec-slider-t1 .mec-event-content h4.mec-event-title{overflow:hidden;text-align:right}.mec-wrap .mec-slider-t1 .mec-event-content span.event-color{float:right;margin:10px}.mec-wrap .mec-slider-t1 .mec-event-content .mec-event-detail{display:block;text-align:right}.mec-wrap .mec-event-grid-modern .mec-event-footer .mec-booking-button{left:auto;right:0}.mec-wrap .mec-slider-t1 .mec-slider-t1-img{float:left}.mec-wrap .mec-slider-t2 .mec-event-grid-modern .event-grid-modern-head .mec-event-date{float:right;margin:0 0 0 11px}.mec-wrap .mec-slider-t2 .mec-event-grid-modern .event-grid-modern-head.clearfix{text-align:right}.mec-wrap .mec-slider-t2 .mec-event-content h4.mec-event-title{overflow:hidden;text-align:right}.mec-wrap .mec-slider-t2 .mec-event-content span.event-color{float:right;margin:10px}.mec-wrap .mec-slider-t2 .mec-event-content .mec-event-detail{display:block;text-align:right}.mec-wrap .mec-event-grid-modern .mec-event-footer .mec-booking-button{left:auto;right:0}.mec-wrap .mec-event-grid-modern .mec-event-sharing-wrap{left:0;right:auto}.mec-wrap .mec-slider-t2-wrap .mec-owl-theme .owl-nav div.owl-prev{left:30px;right:auto}.mec-wrap .mec-slider-t2-wrap .mec-owl-theme .owl-nav div.owl-next{left:82px;right:auto}.mec-wrap .mec-slider-t2-content.mec-event-grid-modern.mec-bg-color{left:0}.mec-wrap .mec-slider-t2 .mec-slider-t2-img{left:auto;right:0}.mec-wrap .mec-slider-t3 .mec-slider-t3-content{width:95%}.mec-wrap .mec-slider-t3 .mec-event-grid-modern .event-grid-modern-head .mec-event-date{float:right;margin:0 0 0 11px}.mec-wrap .mec-slider-t3 .mec-event-grid-modern .event-grid-modern-head.clearfix{text-align:right}.mec-wrap .mec-slider-t3 .mec-event-content h4.mec-event-title{overflow:hidden;text-align:right}.mec-wrap .mec-slider-t3 .mec-event-content span.event-color{float:right;margin:10px}.mec-wrap .mec-slider-t3 .mec-event-content .mec-event-detail{display:block;text-align:right}.mec-wrap .mec-slider-t3 .mec-slider-t3-footer a.mec-booking-button{float:right;margin-bottom:11px}.mec-wrap .mec-slider-t4 .mec-event-grid-modern .event-grid-modern-head .mec-event-date{float:right;margin:0 0 0 11px}.mec-wrap .mec-slider-t4 .mec-event-grid-modern .event-grid-modern-head.clearfix{text-align:right}.mec-wrap .mec-slider-t4 .mec-event-content h4.mec-event-title{overflow:hidden;text-align:right}.mec-wrap .mec-slider-t4 .mec-event-content span.event-color{float:right;margin:10px}.mec-wrap .mec-slider-t4 .mec-event-content .mec-event-detail{display:block;text-align:right}.mec-wrap .mec-slider-t4 .mec-slider-t4-footer a.mec-booking-button{float:right;margin-bottom:11px}.mec-slider-t4-content.mec-event-grid-modern{left:auto;right:8%}.mec-wrap .mec-slider-t4-wrap .mec-owl-theme .owl-nav div.owl-prev{left:30px;right:auto}.mec-wrap .mec-slider-t4-wrap .mec-owl-theme .owl-nav div.owl-next{left:82px;right:auto}@media only screen and (max-width:768px){.mec-event-list-modern .col-md-2.col-sm-2{left:auto;right:0}.mec-event-list-modern .col-md-4.col-sm-4.mec-btn-wrapper{right:auto;left:0}.mec-wrap .mec-event-list-minimal .btn-wrapper .mec-detail-button{display:block;width:100%}.mec-wrap .mec-event-countdown-style3 .mec-event-date{right:0}.mec-wrap .mec-event-countdown-style3 .mec-event-title-link{right:130px}}@media only screen and (min-width:480px){.mec-event-list-modern .mec-btn-wrapper .mec-booking-button{float:left}}.mec-wrap .mec-event-content .mec-event-title .event-color{float:right;margin-top:10px}.mec-event-list-standard .mec-event-title,.mec-wrap .mec-event-content .mec-event-description,.mec-wrap .mec-event-content .mec-event-title a.mec-color-hover{display:flex}.mec-event-list-standard .mec-date-details,.mec-event-list-standard .mec-time-details,.mec-event-list-standard .mec-venue-details{text-align:right;padding-right:28px;direction:rtl}.mec-wrap .mec-event-meta.mec-color-before,.mec-wrap .mec-event-meta.mec-color-before span{margin:0;marign-left:28px;direction:rtl;text-align:right}.mec-skin-daily-view-events-container .mec-owl-carousel .owl-wrapper{display:inline-flex!important;width:100%!important}.mec-col-1,.mec-col-10,.mec-col-11,.mec-col-12,.mec-col-2,.mec-col-3,.mec-col-4,.mec-col-5,.mec-col-6,.mec-col-7,.mec-col-8,.mec-col-9{float:right;margin:0 0 0 1%}
|
1 |
+
.mec-single-event .mec-events-meta-date i,.mec-single-event .mec-single-event-organizer i{margin-left:10px;margin-right:12px}.event-color,.mec-event-schedule-content,.mec-single-event .mec-frontbox-title:before{margin-left:0}.mec-event-cover-classic .mec-event-icon{margin-left:14px}.event-color{margin-right:5px}.mec-event-list-classic .mec-event-image{margin-left:20px}.mec-event-article i{margin-left:10px}.mec-event-cover-classic .mec-event-icon,.mec-event-list-classic .mec-event-image{margin-right:0}.mec-single-event .mec-frontbox-title:before{margin-right:39px}.mec-event-schedule-content{margin-right:25px}.mec-event-schedule-content dl,.mec-single-event .mec-event-meta dt,.mec-single-event .mec-event-meta h3{padding-left:0}.mec-single-event .mec-event-meta dt,.mec-single-event .mec-event-meta h3{padding-right:10px}.mec-event-schedule-content dl{padding-right:24px}.mec-event-schedule-content{border:0}.mec-event-schedule-content{border-right:4px solid #f0f0f0}.mec-event-cover-modern .mec-event-cover-a,.mec-event-schedule-content dl:before{left:auto}.mec-event-cover-modern .mec-event-cover-a,.mec-event-schedule-content dl:before{right:0}.mec-event-cover-classic .mec-event-icon,.mec-event-list-classic .mec-event-image{float:right}.mec-event-cover-classic .mec-btn-wrapper{text-align:right}.mec-wrap .mec-calendar-topsec .mec-calendar-events-sec .mec-table-side-day{padding:0}.mec-wrap article.mec-event-article.mec-clear{text-align:right}.mec-wrap .mec-event-article .mec-event-content p{text-align:right}.mec-wrap .button,.mec-wrap button,.mec-wrap input[type=button],.mec-wrap input[type=reset],.mec-wrap input[type=submit]{margin:0}.mec-wrap .mec-events-meta-group-booking .mec-book-price-details li{float:right}.mec-wrap .mec-events-meta-group-booking .mec-book-price-details{width:330px}.mec-wrap .mec-marker-wrap .mec-marker-pulse{margin:-15px 28px 1px 40px}.mec-wrap .mec-marker-wrap .mec-marker-pulse:after{margin:-13px -13px 0 0}.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view{float:left}.mec-fes-form input[type=checkbox],.mec-fes-form input[type=radio]{float:right;margin:5px}.mec-fes-form #mec_fes_form .mec-form-row #mec_cost{float:none}.mec-fes-form label{padding-right:0}.mec-wrap .mec-totalcal-box i{float:right;text-align:center}.mec-totalcal-box .mec-date-search{float:left}.mec-wrap .mec-single-modern .mec-single-event-bar>div i{float:right;padding-left:10px}.mec-wrap .mec-single-modern .mec-single-event-bar dd{margin:0 30px 0 0;padding:0}.mec-wrap .mec-event-meta.mec-color-before.mec-frontbox{width:100%}.mec-wrap .mec-single-modern .mec-event-meta .mec-single-event-organizer dd a{float:left;position:absolute;margin-right:5px}.mec-wrap .mec-single-event .mec-single-event-organizer i{margin-top:5px}.mec-wrap .mec-single-event .mec-event-meta i{float:right;padding-left:5px}.mec-wrap .mec-single-event .mec-event-meta dt,.mec-wrap .mec-single-event .mec-event-meta h3{padding-right:5px}.mec-wrap .mec-single-event .mec-event-meta dd{padding-right:35px;padding-left:0}.mec-wrap .mec-single-event .mec-event-meta .mec-single-event-organizer dd{padding:0}.mec-wrap .mec-single-event .mec-event-meta .mec-single-event-organizer dd a{float:left;position:absolute;margin-right:5px}.mec-wrap .mec-single-event .mec-event-meta dd.mec-events-event-categories:after{font-family:FontAwesome;color:#40d9f1;font-size:16px;content:"\f104";padding-left:10px}.mec-wrap .mec-single-event .mec-event-meta dd.mec-events-event-categories:before{content:"";padding:0}.mec-wrap .mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li:last-child{text-align:left;padding-left:0}.mec-wrap .mec-single-event .mec-events-button{margin:0}.mec-wrap .mec-calendar .mec-event-article .mec-event-image{float:right;margin-left:20px}.mec-wrap .mec-calendar .mec-event-article .mec-event-title{text-align:right;padding:5px}.mec-wrap .mec-calendar .mec-event-article .mec-event-time i{float:right}.mec-wrap .mec-calendar .mec-event-article .mec-event-time.mec-color{float:right}.mec-wrap .mec-calendar .mec-event-article .mec-event-detail{float:right}.mec-wrap .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{float:right}.mec-wrap .mec-event-meta-wrap{border-right:1px solid #eee;border-left:0}.mec-event-meta{float:right}.mec-event-sharing-wrap{right:20px;left:auto}.mec-event-footer .mec-booking-button{right:auto;left:20px}.mec-single-event .mec-single-event-organizer dd span,.mec-wrap .mec-single-event .mec-events-meta-date dd span{padding-bottom:20px}.single-mec-events .mec-wrap .col-md-4{direction:rtl;float:right}.single-mec-events .mec-wrap .mec-single-modern .col-md-4{margin-top:-50px}.mec-events-template-default .mec-wrap .col-md-4{margin-top:0;float:left}.mec-events-template-default .mec-wrap .col-md-8{margin-top:0;float:right}.single-mec-events .mec-single-modern .mec-single-event-bar{padding:14px 0}.single-mec-events .mec-single-modern .col-md-4 .mec-frontbox{margin:0}.mec-single-event .mec-frontbox-title:before,.single-mec-events .mec-single-event .mec-events-meta-group-booking form>h4:before{transform:translate(-50%);margin:0}.single-mec-events .mec-single-event-category,.single-mec-events .mec-single-event-location,.single-mec-events .mec-single-event-organizer{z-index:1}.single-mec-events .mec-single-event .mec-booking-button{position:relative;z-index:2}.single-mec-events .mec-wrap .mec-single-event .mec-event-meta dd a i:before{content:'\f104';line-height:32px}.single-mec-events .mec-wrap .mec-single-event .mec-event-meta dd.mec-events-event-categories:after{display:none}.single-mec-events .mec-wrap .mec-book-form-btn-wrap{float:right}.mec-wrap .mec-event-list-standard .mec-event-meta-wrap{display:table-cell}.mec-wrap .mec-totalcal-box i{float:right}.mec-wrap i.mec-sl-map-marker{float:right;margin-left:3px}.mec-wrap .mec-event-list-minimal .btn-wrapper .mec-detail-button{float:left}.mec-wrap .mec-event-list-minimal .mec-event-article .col-md-9.col-sm-9{float:right;width:100%}.mec-wrap .mec-event-list-minimal .mec-event-article .mec-event-date.mec-bg-color{float:right;margin-right:0;margin-left:10px}.mec-wrap .mec-event-list-minimal .mec-event-date span{padding-left:25px;margin-left:7px;padding-right:0;margin-right:0}.mec-event-grid-clean .mec-event-footer .mec-booking-button{left:0;right:auto}.mec-event-grid-clean .mec-event-sharing-wrap{left:auto;right:0}.mec-event-grid-clean .event-grid-t2-head .mec-event-date{float:right;margin-right:0;margin-left:11px}.mec-event-grid-clean .event-grid-t2-head{text-align:right}.mec-event-grid-clean .event-grid-t2-head .mec-event-month{text-align:right}.mec-event-grid-clean .event-grid-t2-head .mec-event-detail{text-align:right}.mec-event-grid-minimal .mec-event-date{margin-right:0;margin-left:20px}.mec-wrap .mec-event-grid-modern .mec-event-article .event-grid-modern-head .mec-event-date.mec-color{margin-left:11px;margin-right:0}.mec-wrap .mec-event-grid-modern .mec-event-content .mec-event-title .event-color{float:right;margin:7px}.mec-wrap .mec-event-grid-modern .mec-event-article h4.mec-event-title{overflow:hidden}.mec-wrap .mec-event-grid-simple article.mec-event-article.mec-clear{text-align:center}.mec-wrap .mec-event-grid-simple article.mec-event-article h4.mec-event-title{text-align:center}.mec-wrap .mec-event-grid-modern .event-grid-modern-head .mec-event-date{float:right}.mec-wrap .mec-event-article h4.mec-event-title{text-align:right}.mec-wrap .event-grid-modern-head.clearfix{text-align:right}.mec-wrap .event-carousel-type1-head .mec-event-date-carousel{left:auto;right:1px;padding-left:21px;padding-right:25px}.mec-wrap .event-carousel-type1-head .mec-event-date-info-year{right:auto;left:60px}.mec-wrap .event-carousel-type1-head .mec-event-date-info{right:auto;left:60px}.mec-wrap .event-carousel-type1-head .mec-event-date-carousel:after{left:auto;bottom:-13px;right:5px;transform:rotate(-45deg)}.mec-wrap .event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button{float:left}.mec-wrap .mec-event-carousel-type2 .mec-event-footer-carousel-type2 .mec-event-sharing-wrap{left:auto;right:-11px}.mec-wrap .event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button{float:left}.mec-wrap .mec-event-footer-carousel-type3 .mec-event-sharing-wrap{left:auto;right:11%}.mec-event-list-standard .mec-time-details:before,.mec-event-list-standard .mec-venue-details:before,.mec-wrap .mec-event-list-standard .mec-date-details:before{right:0;text-align:right}.mec-wrap .mec-event-meta.mec-color-before span{margin-right:28px}.mec-wrap .mec-timetable-t2-col{float:right}.mec-wrap .mec-agenda-date-wrap{float:right}.mec-wrap .mec-agenda-events-wrap{float:left}.mec-wrap .mec-yearly-view-wrap .mec-yearly-calendar-sec{float:right}.mec-wrap .mec-yearly-agenda-sec{float:left;padding:0 20px 0 0}.mec-wrap .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{text-align:right}.mec-wrap .mec-skin-monthly-view-month-navigator-container .mec-calendar-events-sec h3.mec-color.mec-table-side-day{float:right}.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt{float:right;border-left:1px solid #e6e6e6}.mec-event-detail.mec-map-view-event-detail{text-align:right}.mec-event-article i{margin-left:0}.mec-wrap .mec-event-cover-clean .mec-event-date{right:auto;left:60px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1{padding:50px 4% 50px 1%}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date-place{text-align:right}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1{padding:50px 4% 50px 1%}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown{left:20px;right:auto}.mec-wrap .mec-event-countdown-style3 .mec-event-title-link{left:auto;right:190px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-title{padding-right:0}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link{padding-left:0;padding-right:22px;margin-left:22px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link:before{right:0;left:auto}.mec-wrap .mec-event-countdown-style3 .mec-event-date{left:auto;right:-27px}.mec-wrap .mec-event-countdown-style3 .mec-event-date:after{left:auto;right:8px;transform:rotate(-45deg)}.mec-wrap .mec-masonry .mec-event-content .mec-event-description{display:block;direction:rtl;text-align:right}.mec-wrap .mec-masonry .mec-event-grid-modern .mec-event-content .mec-event-title .event-color{float:left}.mec-wrap .mec-masonry .event-grid-modern-head .mec-event-date{margin:0 0 0 11px}.mec-wrap .mec-masonry .mec-masonry-col6 i{float:right;margin:0 0 0 7px}.mec-event-tile-view article.mec-tile-item .mec-event-time{right:auto;left:4px}.mec-wrap .mec-timetable-t2-content{direction:rtl;text-align:right}.mec-wrap .mec-timetable-t2-content div{text-align:right}.mec-wrap .mec-timetable-t2-content div i{margin-right:0;margin-left:5px}.mec-wrap .mec-timetable-t2-content div span{float:left;text-align:right;width:calc(100% - 22px)}.mec-wrap .mec-event-content .mec-event-title a.mec-color-hover{float:right}.mec-wrap .mec-event-content .mec-event-title .event-color{float:left}.mec-wrap .mec-slider-t1 .mec-event-grid-modern .event-grid-modern-head .mec-event-date{float:right;margin:0 0 0 11px}.mec-wrap .mec-slider-t1 .mec-event-grid-modern .event-grid-modern-head.clearfix{text-align:right}.mec-wrap .mec-slider-t1 .mec-event-content h4.mec-event-title{overflow:hidden;text-align:right}.mec-wrap .mec-slider-t1 .mec-event-content span.event-color{float:right;margin:10px}.mec-wrap .mec-slider-t1 .mec-event-content .mec-event-detail{display:block;text-align:right}.mec-wrap .mec-event-grid-modern .mec-event-footer .mec-booking-button{left:auto;right:0}.mec-wrap .mec-slider-t1 .mec-slider-t1-img{float:left}.mec-wrap .mec-slider-t2 .mec-event-grid-modern .event-grid-modern-head .mec-event-date{float:right;margin:0 0 0 11px}.mec-wrap .mec-slider-t2 .mec-event-grid-modern .event-grid-modern-head.clearfix{text-align:right}.mec-wrap .mec-slider-t2 .mec-event-content h4.mec-event-title{overflow:hidden;text-align:right}.mec-wrap .mec-slider-t2 .mec-event-content span.event-color{float:right;margin:10px}.mec-wrap .mec-slider-t2 .mec-event-content .mec-event-detail{display:block;text-align:right}.mec-wrap .mec-event-grid-modern .mec-event-footer .mec-booking-button{left:auto;right:0}.mec-wrap .mec-event-grid-modern .mec-event-sharing-wrap{left:0;right:auto}.mec-wrap .mec-slider-t2-wrap .mec-owl-theme .owl-nav div.owl-prev{left:30px;right:auto}.mec-wrap .mec-slider-t2-wrap .mec-owl-theme .owl-nav div.owl-next{left:82px;right:auto}.mec-wrap .mec-slider-t2-content.mec-event-grid-modern.mec-bg-color{left:0}.mec-wrap .mec-slider-t2 .mec-slider-t2-img{left:auto;right:0}.mec-wrap .mec-slider-t3 .mec-slider-t3-content{width:95%}.mec-wrap .mec-slider-t3 .mec-event-grid-modern .event-grid-modern-head .mec-event-date{float:right;margin:0 0 0 11px}.mec-wrap .mec-slider-t3 .mec-event-grid-modern .event-grid-modern-head.clearfix{text-align:right}.mec-wrap .mec-slider-t3 .mec-event-content h4.mec-event-title{overflow:hidden;text-align:right}.mec-wrap .mec-slider-t3 .mec-event-content span.event-color{float:right;margin:10px}.mec-wrap .mec-slider-t3 .mec-event-content .mec-event-detail{display:block;text-align:right}.mec-wrap .mec-slider-t3 .mec-slider-t3-footer a.mec-booking-button{float:right;margin-bottom:11px}.mec-wrap .mec-slider-t4 .mec-event-grid-modern .event-grid-modern-head .mec-event-date{float:right;margin:0 0 0 11px}.mec-wrap .mec-slider-t4 .mec-event-grid-modern .event-grid-modern-head.clearfix{text-align:right}.mec-wrap .mec-slider-t4 .mec-event-content h4.mec-event-title{overflow:hidden;text-align:right}.mec-wrap .mec-slider-t4 .mec-event-content span.event-color{float:right;margin:10px}.mec-wrap .mec-slider-t4 .mec-event-content .mec-event-detail{display:block;text-align:right}.mec-wrap .mec-slider-t4 .mec-slider-t4-footer a.mec-booking-button{float:right;margin-bottom:11px}.mec-slider-t4-content.mec-event-grid-modern{left:auto;right:8%}.mec-wrap .mec-slider-t4-wrap .mec-owl-theme .owl-nav div.owl-prev{left:30px;right:auto}.mec-wrap .mec-slider-t4-wrap .mec-owl-theme .owl-nav div.owl-next{left:82px;right:auto}.mec-fes-form .mec-fes-form-cntt,.mec-fes-form .mec-fes-form-sdbr{direction:rtl;text-align:right}.mec-fes-form .mec-fes-form-cntt{float:right;padding-right:0;padding-left:20px}.mec-fes-form .mec-fes-form-sdbr{padding-right:20px;padding-left:0}.mec-fes-form .mec-fes-form-cntt .mec-col-4,.mec-fes-form .mec-fes-form-sdbr .mec-col-4{float:unset}@media only screen and (max-width:768px){.mec-event-list-modern .col-md-2.col-sm-2{left:auto;right:0}.mec-event-list-modern .col-md-4.col-sm-4.mec-btn-wrapper{right:auto;left:0}.mec-wrap .mec-event-list-minimal .btn-wrapper .mec-detail-button{display:block;width:100%}.mec-wrap .mec-event-countdown-style3 .mec-event-date{right:0}.mec-wrap .mec-event-countdown-style3 .mec-event-title-link{right:130px}}@media only screen and (min-width:480px){.mec-event-list-modern .mec-btn-wrapper .mec-booking-button{float:left}}.mec-wrap .mec-event-content .mec-event-title .event-color{float:right;margin-top:10px}.mec-event-list-standard .mec-event-title,.mec-wrap .mec-event-content .mec-event-description,.mec-wrap .mec-event-content .mec-event-title a.mec-color-hover{display:flex}.mec-event-list-standard .mec-date-details,.mec-event-list-standard .mec-time-details,.mec-event-list-standard .mec-venue-details{text-align:right;padding-right:28px;direction:rtl}.mec-wrap .mec-event-meta.mec-color-before,.mec-wrap .mec-event-meta.mec-color-before span{margin:0;marign-left:28px;direction:rtl;text-align:right}.mec-skin-daily-view-events-container .mec-owl-carousel .owl-wrapper{display:inline-flex!important;width:100%!important}.mec-col-1,.mec-col-10,.mec-col-11,.mec-col-12,.mec-col-2,.mec-col-3,.mec-col-4,.mec-col-5,.mec-col-6,.mec-col-7,.mec-col-8,.mec-col-9{float:right;margin:0 0 0 1%}
|
changelog.txt
CHANGED
@@ -1,4 +1,15 @@
|
|
1 |
-
v 5.2.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
- Added: An option in tile skin to load events in list view
|
3 |
- Fixed: A display issue in tile skin
|
4 |
- Fixed: An issue regarding showing red borders in booking modal for required fields (pro)
|
1 |
+
v 5.2.3 – 31 March 2020
|
2 |
+
- Added: SEO Schema section to specify event status
|
3 |
+
- Added: A new currency (Israeli Shekel)
|
4 |
+
- Changed: The next and back button positions on the booking form (pro)
|
5 |
+
- Fixed: MEC sender name and email
|
6 |
+
- Fixed: MEC Archive page
|
7 |
+
- Fixed: An issue in update client of MEC
|
8 |
+
- Fixed: Advanced repeat
|
9 |
+
- Fixed: Internal cronjob of MEC (pro)
|
10 |
+
- Fixed: The "New Event" notification
|
11 |
+
|
12 |
+
v 5.2.2 – 24 March 2020
|
13 |
- Added: An option in tile skin to load events in list view
|
14 |
- Fixed: A display issue in tile skin
|
15 |
- Fixed: An issue regarding showing red borders in booking modal for required fields (pro)
|
languages/modern-events-calendar-lite-cs_CZ.mo
CHANGED
Binary file
|
languages/modern-events-calendar-lite-cs_CZ.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar Lite\n"
|
4 |
-
"POT-Creation-Date: 2020-03-
|
5 |
-
"PO-Revision-Date: 2020-03-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: cs_CZ\n"
|
@@ -32,8 +32,8 @@ msgstr "Moderní kalendář událostí"
|
|
32 |
msgid "Content"
|
33 |
msgstr "Obsah"
|
34 |
|
35 |
-
#: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:
|
36 |
-
#: app/features/mec.php:
|
37 |
msgid "Shortcode"
|
38 |
msgstr "Zkrácený kód"
|
39 |
|
@@ -73,14 +73,14 @@ msgstr "Barva události"
|
|
73 |
msgid "Recent Colors"
|
74 |
msgstr "Barva události"
|
75 |
|
76 |
-
#: app/features/contextual.php:55 app/features/mec.php:
|
77 |
#: app/features/mec/dashboard.php:143 app/features/mec/support.php:20
|
78 |
#: app/features/popup/event.php:60 app/features/popup/shortcode.php:37
|
79 |
#: app/libraries/main.php:594
|
80 |
msgid "Settings"
|
81 |
msgstr "Nastavení"
|
82 |
|
83 |
-
#: app/features/contextual.php:62 app/features/events.php:
|
84 |
#: app/features/mec/booking.php:448 app/features/mec/support.php:29
|
85 |
#: app/libraries/main.php:560
|
86 |
msgid "Booking Form"
|
@@ -267,7 +267,7 @@ msgstr "Kupóny"
|
|
267 |
msgid "BuddyPress Integration"
|
268 |
msgstr "Integrace BuddyPress"
|
269 |
|
270 |
-
#: app/features/contextual.php:334 app/features/mec/settings.php:
|
271 |
#: app/libraries/main.php:539
|
272 |
msgid "Mailchimp Integration"
|
273 |
msgstr "Integrace Mailchimp"
|
@@ -293,7 +293,7 @@ msgstr "Události"
|
|
293 |
msgid "Event"
|
294 |
msgstr "Událost"
|
295 |
|
296 |
-
#: app/features/events.php:160 app/features/mec.php:
|
297 |
msgid "Add Event"
|
298 |
msgstr "Přidat událost"
|
299 |
|
@@ -301,9 +301,9 @@ msgstr "Přidat událost"
|
|
301 |
msgid "Add New Event"
|
302 |
msgstr "Přidat novou událost"
|
303 |
|
304 |
-
#: app/features/events.php:162 app/features/ix.php:
|
305 |
-
#: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:
|
306 |
-
#: app/skins/map/tpl.php:
|
307 |
msgid "No events found!"
|
308 |
msgstr "Nebyly nalezeny žádné události!"
|
309 |
|
@@ -324,7 +324,7 @@ msgstr "Zobrazit událost"
|
|
324 |
msgid "No events found in Trash!"
|
325 |
msgstr "V koši nebyly nalezeny žádné události!"
|
326 |
|
327 |
-
#: app/features/events.php:183 app/features/events.php:
|
328 |
#: app/features/mec/meta_boxes/display_options.php:1116
|
329 |
#: app/features/mec/meta_boxes/search_form.php:31
|
330 |
#: app/features/mec/meta_boxes/search_form.php:101
|
@@ -337,18 +337,18 @@ msgstr "V koši nebyly nalezeny žádné události!"
|
|
337 |
#: app/features/mec/meta_boxes/search_form.php:584
|
338 |
#: app/features/mec/meta_boxes/search_form.php:654
|
339 |
#: app/features/mec/meta_boxes/search_form.php:760
|
340 |
-
#: app/features/mec/settings.php:
|
341 |
-
#: app/features/search.php:68 app/libraries/main.php:
|
342 |
#: app/libraries/skins.php:877 app/skins/single.php:576
|
343 |
#: app/skins/single/default.php:192 app/skins/single/default.php:415
|
344 |
#: app/skins/single/m1.php:184 app/skins/single/m2.php:110
|
345 |
-
#: app/skins/single/modern.php:
|
346 |
msgid "Category"
|
347 |
msgstr "Kategorie"
|
348 |
|
349 |
-
#: app/features/events.php:184 app/features/events.php:
|
350 |
-
#: app/features/fes/form.php:767 app/features/mec.php:
|
351 |
-
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:
|
352 |
msgid "Categories"
|
353 |
msgstr "Kategorie"
|
354 |
|
@@ -436,7 +436,7 @@ msgstr "Datum a čas"
|
|
436 |
msgid "Event Repeating"
|
437 |
msgstr "Opakování události"
|
438 |
|
439 |
-
#: app/features/events.php:334 app/features/events.php:
|
440 |
#: app/features/mec/settings.php:743 app/skins/single.php:964
|
441 |
msgid "Hourly Schedule"
|
442 |
msgstr "Hodinový rozvrh"
|
@@ -453,8 +453,8 @@ msgstr "Umístění"
|
|
453 |
msgid "Links"
|
454 |
msgstr "Odkaz"
|
455 |
|
456 |
-
#: app/features/events.php:337 app/features/events.php:
|
457 |
-
#: app/features/events.php:
|
458 |
#: app/features/ix.php:3508 app/features/ix.php:3549
|
459 |
#: app/features/mec/meta_boxes/display_options.php:1119
|
460 |
#: app/features/mec/meta_boxes/search_form.php:46
|
@@ -468,66 +468,73 @@ msgstr "Odkaz"
|
|
468 |
#: app/features/mec/meta_boxes/search_form.php:599
|
469 |
#: app/features/mec/meta_boxes/search_form.php:669
|
470 |
#: app/features/mec/meta_boxes/search_form.php:775
|
471 |
-
#: app/features/mec/settings.php:
|
472 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
473 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
474 |
#: app/features/organizers.php:271 app/features/popup/event.php:293
|
475 |
#: app/features/popup/event.php:302 app/features/search.php:78
|
476 |
-
#: app/libraries/main.php:
|
477 |
#: app/skins/single.php:823 app/skins/single/default.php:217
|
478 |
#: app/skins/single/default.php:440 app/skins/single/m1.php:99
|
479 |
-
#: app/skins/single/m2.php:25 app/skins/single/modern.php:
|
480 |
msgid "Organizer"
|
481 |
msgstr "Organizátor"
|
482 |
|
483 |
-
#: app/features/events.php:338 app/features/events.php:
|
484 |
-
#: app/features/fes/form.php:740 app/libraries/main.php:
|
485 |
#: app/skins/single.php:599 app/skins/single/default.php:126
|
486 |
#: app/skins/single/default.php:349 app/skins/single/m1.php:58
|
487 |
-
#: app/skins/single/modern.php:
|
488 |
msgid "Cost"
|
489 |
msgstr "Cena"
|
490 |
|
491 |
-
#: app/features/events.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
492 |
msgid "Note for reviewer"
|
493 |
msgstr "Poznámka pro recenzenta"
|
494 |
|
495 |
-
#: app/features/events.php:
|
496 |
msgid "Guest Data"
|
497 |
msgstr "Údaje hosta"
|
498 |
|
499 |
-
#: app/features/events.php:
|
500 |
-
#: app/features/events.php:
|
501 |
#: app/features/fes/form.php:699 app/features/labels.php:178
|
502 |
#: app/features/mec/booking.php:45 app/features/organizers.php:279
|
503 |
#: app/features/popup/event.php:312 app/features/profile/profile.php:180
|
504 |
-
#: app/libraries/notifications.php:
|
505 |
msgid "Name"
|
506 |
msgstr "Jméno"
|
507 |
|
508 |
-
#: app/features/events.php:
|
509 |
-
#: app/features/events.php:
|
510 |
#: app/features/fes.php:223 app/features/fes/form.php:695
|
511 |
#: app/features/mec/booking.php:57 app/features/mec/booking.php:499
|
512 |
#: app/features/organizers.php:111 app/features/organizers.php:152
|
513 |
#: app/features/profile/profile.php:183 app/features/speakers.php:127
|
514 |
#: app/features/speakers.php:196 app/libraries/main.php:1595
|
515 |
-
#: app/libraries/main.php:1664 app/libraries/main.php:
|
516 |
-
#: app/libraries/notifications.php:
|
517 |
#: app/modules/booking/steps/form.php:83 app/skins/single.php:840
|
518 |
#: app/skins/single.php:895 app/skins/single/default.php:234
|
519 |
#: app/skins/single/default.php:457 app/skins/single/m1.php:116
|
520 |
-
#: app/skins/single/m2.php:42 app/skins/single/modern.php:
|
521 |
msgid "Email"
|
522 |
msgstr "Email"
|
523 |
|
524 |
-
#: app/features/events.php:
|
525 |
msgid "Date and Time"
|
526 |
msgstr "Datum a čas"
|
527 |
|
528 |
-
#: app/features/events.php:
|
529 |
-
#: app/features/events.php:
|
530 |
-
#: app/features/events.php:
|
531 |
#: app/features/fes/form.php:254 app/features/ix.php:3508
|
532 |
#: app/features/ix.php:3549 app/features/ix/import_g_calendar.php:38
|
533 |
#: app/features/mec/dashboard.php:405
|
@@ -550,50 +557,50 @@ msgstr "Datum a čas"
|
|
550 |
msgid "Start Date"
|
551 |
msgstr "Počátečná den"
|
552 |
|
553 |
-
#: app/features/events.php:
|
554 |
-
#: app/features/events.php:
|
555 |
-
#: app/features/events.php:
|
556 |
#: app/features/fes/form.php:282 app/features/fes/form.php:322
|
557 |
#: app/features/popup/event.php:142 app/features/popup/event.php:224
|
558 |
msgid "AM"
|
559 |
msgstr "dop."
|
560 |
|
561 |
-
#: app/features/events.php:
|
562 |
-
#: app/features/events.php:
|
563 |
-
#: app/features/events.php:
|
564 |
#: app/features/fes/form.php:283 app/features/fes/form.php:323
|
565 |
#: app/features/popup/event.php:149 app/features/popup/event.php:231
|
566 |
msgid "PM"
|
567 |
msgstr "odp."
|
568 |
|
569 |
-
#: app/features/events.php:
|
570 |
-
#: app/features/events.php:
|
571 |
-
#: app/features/events.php:
|
572 |
#: app/features/fes/form.php:294 app/features/ix.php:3508
|
573 |
#: app/features/ix.php:3549 app/features/ix/import_g_calendar.php:44
|
574 |
#: app/features/mec/dashboard.php:406 app/features/popup/event.php:157
|
575 |
msgid "End Date"
|
576 |
msgstr "Konečný den"
|
577 |
|
578 |
-
#: app/features/events.php:
|
579 |
#: app/features/popup/event.php:239
|
580 |
msgid "All Day Event"
|
581 |
msgstr "Celodenní událost"
|
582 |
|
583 |
-
#: app/features/events.php:
|
584 |
msgid "Hide Event Time"
|
585 |
msgstr "Skrýt čas události"
|
586 |
|
587 |
-
#: app/features/events.php:
|
588 |
msgid "Hide Event End Time"
|
589 |
msgstr "Skrýt čas ukončení události"
|
590 |
|
591 |
-
#: app/features/events.php:
|
592 |
#: app/features/fes/form.php:339
|
593 |
msgid "Time Comment"
|
594 |
msgstr "Časový komentář"
|
595 |
|
596 |
-
#: app/features/events.php:
|
597 |
msgid ""
|
598 |
"It shows next to event time on single event page. You can insert Timezone "
|
599 |
"etc. in this field."
|
@@ -601,14 +608,14 @@ msgstr ""
|
|
601 |
"Zobrazuje se vedle času události na stránce jedné události. Do tohoto pole "
|
602 |
"můžete vložit časové pásmo atd."
|
603 |
|
604 |
-
#: app/features/events.php:
|
605 |
-
#: app/features/events.php:
|
606 |
-
#: app/features/events.php:
|
607 |
-
#: app/features/events.php:
|
608 |
-
#: app/features/events.php:
|
609 |
-
#: app/features/events.php:
|
610 |
-
#: app/features/events.php:
|
611 |
-
#: app/features/events.php:
|
612 |
#: app/features/fes/form.php:651 app/features/locations.php:301
|
613 |
#: app/features/mec/booking.php:108 app/features/mec/booking.php:158
|
614 |
#: app/features/mec/booking.php:171 app/features/mec/booking.php:187
|
@@ -666,9 +673,9 @@ msgstr ""
|
|
666 |
#: app/features/mec/settings.php:434 app/features/mec/settings.php:451
|
667 |
#: app/features/mec/settings.php:470 app/features/mec/settings.php:484
|
668 |
#: app/features/mec/settings.php:512 app/features/mec/settings.php:599
|
669 |
-
#: app/features/mec/settings.php:
|
670 |
-
#: app/features/mec/settings.php:
|
671 |
-
#: app/features/mec/settings.php:
|
672 |
#: app/features/mec/single.php:58 app/features/mec/single.php:77
|
673 |
#: app/features/mec/single.php:94 app/features/mec/single.php:110
|
674 |
#: app/features/mec/single.php:125 app/features/mec/single.php:178
|
@@ -678,108 +685,108 @@ msgstr ""
|
|
678 |
#: app/features/popup/event.php:303 app/skins/single.php:685
|
679 |
#: app/skins/single/default.php:141 app/skins/single/default.php:364
|
680 |
#: app/skins/single/m1.php:206 app/skins/single/m2.php:133
|
681 |
-
#: app/skins/single/modern.php:
|
682 |
msgid "Read More"
|
683 |
msgstr "Číst více"
|
684 |
|
685 |
-
#: app/features/events.php:
|
686 |
msgid "Repeating"
|
687 |
msgstr "Opakování"
|
688 |
|
689 |
-
#: app/features/events.php:
|
690 |
msgid "Event Repeating (Recurring events)"
|
691 |
msgstr "Opakování události (opakující se události)"
|
692 |
|
693 |
-
#: app/features/events.php:
|
694 |
msgid "Repeats"
|
695 |
msgstr "Opakování"
|
696 |
|
697 |
-
#: app/features/events.php:
|
698 |
#: app/features/mec/dashboard.php:408
|
699 |
-
#: app/skins/default_full_calendar/tpl.php:
|
700 |
-
#: app/skins/full_calendar/tpl.php:
|
701 |
msgid "Daily"
|
702 |
msgstr "Děnně"
|
703 |
|
704 |
-
#: app/features/events.php:
|
705 |
msgid "Every Weekday"
|
706 |
msgstr "Každý všední den"
|
707 |
|
708 |
-
#: app/features/events.php:
|
709 |
msgid "Every Weekend"
|
710 |
msgstr "Každý víkend"
|
711 |
|
712 |
-
#: app/features/events.php:
|
713 |
msgid "Certain Weekdays"
|
714 |
msgstr "Určité pracovní dny"
|
715 |
|
716 |
-
#: app/features/events.php:
|
717 |
-
#: app/skins/default_full_calendar/tpl.php:
|
718 |
-
#: app/skins/full_calendar/tpl.php:
|
719 |
msgid "Weekly"
|
720 |
msgstr "Týdně"
|
721 |
|
722 |
-
#: app/features/events.php:
|
723 |
#: app/features/mec/dashboard.php:409
|
724 |
-
#: app/skins/default_full_calendar/tpl.php:
|
725 |
-
#: app/skins/full_calendar/tpl.php:
|
726 |
msgid "Monthly"
|
727 |
msgstr "Měsíčně"
|
728 |
|
729 |
-
#: app/features/events.php:
|
730 |
#: app/features/mec/dashboard.php:410
|
731 |
-
#: app/skins/default_full_calendar/tpl.php:
|
732 |
-
#: app/skins/full_calendar/tpl.php:
|
733 |
msgid "Yearly"
|
734 |
msgstr "Ročně"
|
735 |
|
736 |
-
#: app/features/events.php:
|
737 |
msgid "Custom Days"
|
738 |
msgstr "Vlastní dny"
|
739 |
|
740 |
-
#: app/features/events.php:
|
741 |
msgid "Advanced"
|
742 |
msgstr "Pokročilé"
|
743 |
|
744 |
-
#: app/features/events.php:
|
745 |
msgid "Repeat Interval"
|
746 |
msgstr "Interval opakování"
|
747 |
|
748 |
-
#: app/features/events.php:
|
749 |
msgid "Repeat interval"
|
750 |
msgstr "Interval opakování"
|
751 |
|
752 |
-
#: app/features/events.php:
|
753 |
msgid "Week Days"
|
754 |
msgstr "Dny v týdnu"
|
755 |
|
756 |
-
#: app/features/events.php:
|
757 |
-
#: app/features/events.php:
|
758 |
#: app/features/fes/form.php:380 app/features/ix/import_f_calendar.php:42
|
759 |
#: app/features/ix/import_g_calendar.php:51
|
760 |
#: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
|
761 |
msgid "Start"
|
762 |
msgstr "Začátek"
|
763 |
|
764 |
-
#: app/features/events.php:
|
765 |
-
#: app/features/events.php:
|
766 |
#: app/features/fes/form.php:381
|
767 |
msgid "End"
|
768 |
msgstr "Konec"
|
769 |
|
770 |
-
#: app/features/events.php:
|
771 |
-
#: app/features/events.php:
|
772 |
-
#: app/features/events.php:
|
773 |
-
#: app/features/events.php:
|
774 |
#: app/features/fes/form.php:382 app/features/fes/form.php:865
|
775 |
msgid "Add"
|
776 |
msgstr "Přidat"
|
777 |
|
778 |
-
#: app/features/events.php:
|
779 |
msgid "Custom Days Repeating"
|
780 |
msgstr "Opakování vlastních dnů"
|
781 |
|
782 |
-
#: app/features/events.php:
|
783 |
msgid ""
|
784 |
"Add certain days to event occurrence dates. If you have single day event, "
|
785 |
"start and end date should be the same, If you have multiple day event the "
|
@@ -789,49 +796,49 @@ msgstr ""
|
|
789 |
"datum zahájení a ukončení by mělo být stejné. Pokud máte vícedenní událost, "
|
790 |
"datum zahájení a ukončení musí odpovídat počátečnímu datu."
|
791 |
|
792 |
-
#: app/features/events.php:
|
793 |
msgid "First"
|
794 |
msgstr "První"
|
795 |
|
796 |
-
#: app/features/events.php:
|
797 |
msgid "Second"
|
798 |
msgstr "Druhá"
|
799 |
|
800 |
-
#: app/features/events.php:
|
801 |
msgid "Third"
|
802 |
msgstr "Třetí"
|
803 |
|
804 |
-
#: app/features/events.php:
|
805 |
msgid "Fourth"
|
806 |
msgstr "Čtvrtá"
|
807 |
|
808 |
-
#: app/features/events.php:
|
809 |
msgid "Last"
|
810 |
msgstr "Poslední"
|
811 |
|
812 |
-
#: app/features/events.php:
|
813 |
msgid "Ends Repeat"
|
814 |
msgstr "Ukončení opakování"
|
815 |
|
816 |
-
#: app/features/events.php:
|
817 |
msgid "Never"
|
818 |
msgstr "Nikdy"
|
819 |
|
820 |
# Možná Zapnuto
|
821 |
-
#: app/features/events.php:
|
822 |
msgid "On"
|
823 |
msgstr "Na"
|
824 |
|
825 |
-
#: app/features/events.php:
|
826 |
msgid "After"
|
827 |
msgstr "Po"
|
828 |
|
829 |
-
#: app/features/events.php:
|
830 |
#: app/features/fes/form.php:647 app/features/fes/form.php:650
|
831 |
msgid "Occurrences times"
|
832 |
msgstr "Časy výskytu"
|
833 |
|
834 |
-
#: app/features/events.php:
|
835 |
msgid ""
|
836 |
"The event will finish after certain repeats. For example if you set it to "
|
837 |
"10, the event will finish after 10 repeats."
|
@@ -839,39 +846,39 @@ msgstr ""
|
|
839 |
"Událost bude ukončena po určitých opakováních. Pokud například nastavíte "
|
840 |
"hodnotu 10, událost skončí po 10 opakováních."
|
841 |
|
842 |
-
#: app/features/events.php:
|
843 |
#, fuzzy
|
844 |
#| msgid "Next Occurrence of Other Events"
|
845 |
msgid "Show only one occurrence of this event"
|
846 |
msgstr "Další výskyt dalších událostí"
|
847 |
|
848 |
-
#: app/features/events.php:
|
849 |
-
#: app/features/events.php:
|
850 |
#: app/features/ix.php:3508 app/features/ix.php:3549
|
851 |
-
#: app/features/mec/settings.php:689 app/libraries/main.php:
|
852 |
#: app/widgets/single.php:103
|
853 |
msgid "Event Cost"
|
854 |
msgstr "Cena události"
|
855 |
|
856 |
-
#: app/features/events.php:
|
857 |
msgid "Exceptional Days (Exclude Dates)"
|
858 |
msgstr "Výjimečné dny (vyjma dat)"
|
859 |
|
860 |
-
#: app/features/events.php:
|
861 |
msgid "Exclude certain days"
|
862 |
msgstr "Vyloučit určité dny"
|
863 |
|
864 |
-
#: app/features/events.php:
|
865 |
#: app/features/fes.php:223 app/features/mec/booking.php:500
|
866 |
-
#: app/features/profile/profile.php:53 app/libraries/main.php:
|
867 |
-
#: app/libraries/main.php:
|
868 |
#: app/modules/next-event/details.php:93 app/skins/single.php:659
|
869 |
#: app/skins/single/default.php:85 app/skins/single/default.php:308
|
870 |
-
#: app/skins/single/m1.php:20 app/skins/single/modern.php:
|
871 |
msgid "Date"
|
872 |
msgstr "Datum"
|
873 |
|
874 |
-
#: app/features/events.php:
|
875 |
msgid ""
|
876 |
"Exclude certain days from event occurrence dates. Please note that you can "
|
877 |
"exclude only single day occurrences and you cannot exclude one day from "
|
@@ -881,15 +888,15 @@ msgstr ""
|
|
881 |
"můžete vyloučit pouze výskyty za jeden den a nelze vyloučit jeden den z "
|
882 |
"vícedenních výskytů."
|
883 |
|
884 |
-
#: app/features/events.php:
|
885 |
msgid "Day 1"
|
886 |
msgstr "Den 1"
|
887 |
|
888 |
-
#: app/features/events.php:
|
889 |
msgid "Add Day"
|
890 |
msgstr "Přidat den"
|
891 |
|
892 |
-
#: app/features/events.php:
|
893 |
msgid ""
|
894 |
"Add new days for schedule. For example if your event is multiple days, you "
|
895 |
"can add a different schedule for each day!"
|
@@ -897,89 +904,89 @@ msgstr ""
|
|
897 |
"Přidat nové dny pro rozvrh. Pokud je například vaše akce vícedenní, můžete "
|
898 |
"pro každý den přidat jiný rozvrh!"
|
899 |
|
900 |
-
#: app/features/events.php:
|
901 |
#, php-format
|
902 |
msgid "Day %s"
|
903 |
msgstr "Den %s"
|
904 |
|
905 |
-
#: app/features/events.php:
|
906 |
-
#: app/features/events.php:
|
907 |
-
#: app/features/events.php:
|
908 |
-
#: app/features/events.php:
|
909 |
-
#: app/features/events.php:
|
910 |
#: app/features/fes/form.php:239 app/features/ix.php:3508
|
911 |
#: app/features/ix.php:3549 app/features/mec/booking.php:384
|
912 |
#: app/features/mec/booking.php:416 app/features/mec/styling.php:130
|
913 |
msgid "Title"
|
914 |
msgstr "Název"
|
915 |
|
916 |
-
#: app/features/events.php:
|
917 |
-
#: app/features/events.php:
|
918 |
-
#: app/features/events.php:
|
919 |
-
#: app/features/events.php:
|
920 |
-
#: app/features/events.php:
|
921 |
-
#: app/features/events.php:
|
922 |
#: app/features/mec/booking.php:327 app/features/mec/booking.php:356
|
923 |
#: app/features/mec/booking.php:407 app/features/mec/booking.php:439
|
924 |
-
#: app/libraries/main.php:
|
925 |
-
#: app/libraries/main.php:
|
926 |
-
#: app/libraries/main.php:
|
927 |
-
#: app/libraries/main.php:
|
928 |
-
#: app/libraries/main.php:
|
929 |
-
#: app/libraries/main.php:
|
930 |
-
#: app/libraries/main.php:
|
931 |
msgid "Remove"
|
932 |
msgstr "Odstranit"
|
933 |
|
934 |
-
#: app/features/events.php:
|
935 |
msgid "Add new hourly schedule row"
|
936 |
msgstr "Přidejte nový řádek rozvrhu hodin"
|
937 |
|
938 |
-
#: app/features/events.php:
|
939 |
-
#: app/features/events.php:
|
940 |
msgid "From e.g. 8:15"
|
941 |
msgstr "Od např. 8:15"
|
942 |
|
943 |
-
#: app/features/events.php:
|
944 |
-
#: app/features/events.php:
|
945 |
msgid "To e.g. 8:45"
|
946 |
msgstr "Do např. 8:45"
|
947 |
|
948 |
-
#: app/features/events.php:
|
949 |
-
#: app/features/events.php:
|
950 |
-
#: app/features/events.php:
|
951 |
msgid "Description"
|
952 |
msgstr "Popis"
|
953 |
|
954 |
-
#: app/features/events.php:
|
955 |
-
#: app/features/events.php:
|
956 |
-
#: app/features/mec.php:
|
957 |
#: app/features/mec/settings.php:737 app/features/speakers.php:62
|
958 |
-
#: app/libraries/main.php:565 app/libraries/main.php:
|
959 |
#: app/modules/speakers/details.php:18
|
960 |
msgid "Speakers"
|
961 |
msgstr "Řečníci"
|
962 |
|
963 |
-
#: app/features/events.php:
|
964 |
msgid "New Day"
|
965 |
msgstr "Nový den"
|
966 |
|
967 |
-
#: app/features/events.php:
|
968 |
#: app/features/mec/settings.php:683
|
969 |
msgid "Event Links"
|
970 |
msgstr "Odkazy na událost"
|
971 |
|
972 |
-
#: app/features/events.php:
|
973 |
-
#: app/features/fes/form.php:716 app/libraries/main.php:
|
974 |
msgid "Event Link"
|
975 |
msgstr "Odkaz na událost"
|
976 |
|
977 |
-
#: app/features/events.php:
|
978 |
#: app/features/fes/form.php:717 app/features/fes/form.php:722
|
979 |
msgid "eg. http://yoursite.com/your-event"
|
980 |
msgstr "např. http://yoursite.com/vase-udalost"
|
981 |
|
982 |
-
#: app/features/events.php:
|
983 |
msgid ""
|
984 |
"If you fill it, it will be replaced instead of default event page link. "
|
985 |
"Insert full link including http(s):// - Also, if you use advertising URL, "
|
@@ -989,32 +996,32 @@ msgstr ""
|
|
989 |
"Vložte úplný odkaz včetně http (s): // - Pokud používáte reklamní adresu "
|
990 |
"URL, můžete také použít zkracovač URL"
|
991 |
|
992 |
-
#: app/features/events.php:
|
993 |
msgid "URL Shortener"
|
994 |
msgstr "Zkracovač URL"
|
995 |
|
996 |
-
#: app/features/events.php:
|
997 |
-
#: app/features/fes/form.php:721 app/libraries/main.php:
|
998 |
#: app/skins/single.php:684 app/skins/single/default.php:140
|
999 |
#: app/skins/single/default.php:363 app/skins/single/m1.php:205
|
1000 |
-
#: app/skins/single/m2.php:132 app/skins/single/modern.php:
|
1001 |
#: app/widgets/single.php:107
|
1002 |
msgid "More Info"
|
1003 |
msgstr "Více info"
|
1004 |
|
1005 |
-
#: app/features/events.php:
|
1006 |
msgid "More Information"
|
1007 |
msgstr "Více informací"
|
1008 |
|
1009 |
-
#: app/features/events.php:
|
1010 |
msgid "Current Window"
|
1011 |
msgstr "Aktuální okno"
|
1012 |
|
1013 |
-
#: app/features/events.php:
|
1014 |
msgid "New Window"
|
1015 |
msgstr "Nové okno"
|
1016 |
|
1017 |
-
#: app/features/events.php:
|
1018 |
msgid ""
|
1019 |
"If you fill it, it will be shown in event details page as an optional link. "
|
1020 |
"Insert full link including http(s)://"
|
@@ -1022,18 +1029,18 @@ msgstr ""
|
|
1022 |
"Pokud ji vyplníte, zobrazí se jako volitelný odkaz na stránce s podrobnostmi "
|
1023 |
"o události. Vložte celý odkaz včetně http (s): //"
|
1024 |
|
1025 |
-
#: app/features/events.php:
|
1026 |
msgid "Total booking limits"
|
1027 |
msgstr "Celkové limity rezervace"
|
1028 |
|
1029 |
-
#: app/features/events.php:
|
1030 |
-
#: app/features/events.php:
|
1031 |
#: app/modules/booking/steps/tickets.php:43
|
1032 |
-
#: app/skins/available_spot/tpl.php:
|
1033 |
msgid "Unlimited"
|
1034 |
msgstr "Neomezené"
|
1035 |
|
1036 |
-
#: app/features/events.php:
|
1037 |
msgid ""
|
1038 |
"If you want to set a limit to all tickets, uncheck this checkbox and put a "
|
1039 |
"limitation number."
|
@@ -1041,33 +1048,33 @@ msgstr ""
|
|
1041 |
"Pokud chcete nastavit limit na všechny lístky, zrušte zaškrtnutí tohoto "
|
1042 |
"políčka a zadejte číslo omezení."
|
1043 |
|
1044 |
-
#: app/features/events.php:
|
1045 |
msgid "Read About A Booking System"
|
1046 |
msgstr "Přečtěte si o rezervačním systému"
|
1047 |
|
1048 |
-
#: app/features/events.php:
|
1049 |
msgid "100"
|
1050 |
msgstr "100"
|
1051 |
|
1052 |
-
#: app/features/events.php:
|
1053 |
msgid "Total user booking limits"
|
1054 |
msgstr "Celkové limity rezervace uživatelů"
|
1055 |
|
1056 |
-
#: app/features/events.php:
|
1057 |
-
#: app/features/events.php:
|
1058 |
msgid "Inherit from global options"
|
1059 |
msgstr "Zdědí z globálních možností"
|
1060 |
|
1061 |
-
#: app/features/events.php:
|
1062 |
msgid "12"
|
1063 |
msgstr "12"
|
1064 |
|
1065 |
-
#: app/features/events.php:
|
1066 |
-
#: app/libraries/main.php:
|
1067 |
msgid "Tickets"
|
1068 |
msgstr "Vstupenky"
|
1069 |
|
1070 |
-
#: app/features/events.php:
|
1071 |
msgid ""
|
1072 |
"You're translating an event so MEC will use the original event for tickets "
|
1073 |
"and booking. You can only translate the ticket name and description. Please "
|
@@ -1077,97 +1084,101 @@ msgstr ""
|
|
1077 |
"vstupenek a rezervace. Můžete přeložit pouze název a popis vstupenky. Prosím "
|
1078 |
"definujte určité vstupenky, které jste definovali v původní události."
|
1079 |
|
1080 |
-
#: app/features/events.php:
|
1081 |
#, fuzzy
|
1082 |
#| msgid "Ticket"
|
1083 |
msgid "Add Ticket"
|
1084 |
msgstr "Vstupenka"
|
1085 |
|
1086 |
-
#: app/features/events.php:
|
1087 |
msgid "Ticket Name"
|
1088 |
msgstr "Název vstupenky"
|
1089 |
|
1090 |
-
#: app/features/events.php:
|
1091 |
-
#: app/features/events.php:
|
1092 |
#: app/features/ix.php:3508 app/features/ix.php:3549
|
1093 |
msgid "Start Time"
|
1094 |
msgstr "Začátek"
|
1095 |
|
1096 |
-
#: app/features/events.php:
|
1097 |
-
#: app/features/events.php:
|
1098 |
#: app/features/ix.php:3508 app/features/ix.php:3549
|
1099 |
msgid "End Time"
|
1100 |
msgstr "Konec"
|
1101 |
|
1102 |
-
#: app/features/events.php:
|
1103 |
-
#: app/features/events.php:
|
1104 |
-
#: app/features/events.php:
|
1105 |
-
#: app/features/events.php:
|
1106 |
-
#: app/features/events.php:
|
1107 |
-
#: app/features/events.php:
|
1108 |
#: app/features/mec/booking.php:391 app/features/mec/booking.php:420
|
1109 |
#: app/features/mec/booking.php:423
|
1110 |
msgid "Price"
|
1111 |
msgstr "Cena"
|
1112 |
|
1113 |
-
#: app/features/events.php:
|
1114 |
-
|
|
|
|
|
|
|
|
|
1115 |
msgstr "Vložte 0 pro vstupenku zdarma. Prosím pouze čísla."
|
1116 |
|
1117 |
-
#: app/features/events.php:
|
1118 |
-
#: app/features/events.php:
|
1119 |
msgid "Price Label"
|
1120 |
msgstr "Cenový štítek"
|
1121 |
|
1122 |
-
#: app/features/events.php:
|
1123 |
msgid "For showing on website. e.g. $15"
|
1124 |
msgstr "Pro zobrazení na webu. např. 15 $"
|
1125 |
|
1126 |
-
#: app/features/events.php:
|
1127 |
msgid "Available Tickets"
|
1128 |
msgstr "Dostupné vstupenky"
|
1129 |
|
1130 |
-
#: app/features/events.php:
|
1131 |
#, fuzzy
|
1132 |
#| msgid "Maximum Per Ticket"
|
1133 |
msgid "Minimum Ticket e.g. 3"
|
1134 |
msgstr "Maximum na jednu vstupenku"
|
1135 |
|
1136 |
-
#: app/features/events.php:
|
1137 |
#, fuzzy
|
1138 |
#| msgid "Maximum Per Ticket"
|
1139 |
msgid "MinimumTicket"
|
1140 |
msgstr "Maximum na jednu vstupenku"
|
1141 |
|
1142 |
-
#: app/features/events.php:
|
1143 |
msgid "Set a number for the minimum ticket reservation"
|
1144 |
msgstr ""
|
1145 |
|
1146 |
-
#: app/features/events.php:
|
1147 |
msgid "e.g. 0"
|
1148 |
msgstr ""
|
1149 |
|
1150 |
-
#: app/features/events.php:
|
1151 |
#, fuzzy
|
1152 |
#| msgid "Days"
|
1153 |
msgid "Day"
|
1154 |
msgstr "Dny"
|
1155 |
|
1156 |
-
#: app/features/events.php:
|
1157 |
msgid "Hour"
|
1158 |
msgstr ""
|
1159 |
|
1160 |
-
#: app/features/events.php:
|
1161 |
#, php-format
|
1162 |
msgid "Stop selling ticket %s before event start."
|
1163 |
msgstr ""
|
1164 |
|
1165 |
-
#: app/features/events.php:
|
1166 |
msgid "Price per Date"
|
1167 |
msgstr "Cena za datum"
|
1168 |
|
1169 |
-
#: app/features/events.php:
|
1170 |
-
#: app/features/events.php:
|
1171 |
#: app/features/mec/meta_boxes/display_options.php:1117
|
1172 |
#: app/features/mec/meta_boxes/search_form.php:67
|
1173 |
#: app/features/mec/meta_boxes/search_form.php:137
|
@@ -1180,28 +1191,28 @@ msgstr "Cena za datum"
|
|
1180 |
#: app/features/mec/meta_boxes/search_form.php:620
|
1181 |
#: app/features/mec/meta_boxes/search_form.php:690
|
1182 |
#: app/features/mec/meta_boxes/search_form.php:796
|
1183 |
-
#: app/features/mec/settings.php:
|
1184 |
#: app/libraries/skins.php:1007
|
1185 |
msgid "Label"
|
1186 |
msgstr "Štítek"
|
1187 |
|
1188 |
-
#: app/features/events.php:
|
1189 |
msgid "Fees"
|
1190 |
msgstr "Poplatky"
|
1191 |
|
1192 |
-
#: app/features/events.php:
|
1193 |
#: app/features/mec/booking.php:307 app/features/mec/booking.php:336
|
1194 |
msgid "Fee Title"
|
1195 |
msgstr "Název poplatku"
|
1196 |
|
1197 |
-
#: app/features/events.php:
|
1198 |
-
#: app/features/events.php:
|
1199 |
#: app/features/mec/booking.php:311 app/features/mec/booking.php:314
|
1200 |
#: app/features/mec/booking.php:340 app/features/mec/booking.php:343
|
1201 |
msgid "Amount"
|
1202 |
msgstr "Množství"
|
1203 |
|
1204 |
-
#: app/features/events.php:
|
1205 |
#: app/features/mec/booking.php:315 app/features/mec/booking.php:344
|
1206 |
msgid ""
|
1207 |
"Fee amount, considered as fixed amount if you set the type to amount "
|
@@ -1210,85 +1221,85 @@ msgstr ""
|
|
1210 |
"Výše poplatku, je považovaná za pevnou částku, pokud nastavíte typ na částku "
|
1211 |
"odpovídající procentuální hodnotě"
|
1212 |
|
1213 |
-
#: app/features/events.php:
|
1214 |
#: app/features/mec/booking.php:322 app/features/mec/booking.php:351
|
1215 |
msgid "Percent"
|
1216 |
msgstr "Procent"
|
1217 |
|
1218 |
-
#: app/features/events.php:
|
1219 |
#: app/features/mec/booking.php:323 app/features/mec/booking.php:352
|
1220 |
msgid "Amount (Per Ticket)"
|
1221 |
msgstr "Částka (za vstupenku)"
|
1222 |
|
1223 |
-
#: app/features/events.php:
|
1224 |
#: app/features/mec/booking.php:324 app/features/mec/booking.php:353
|
1225 |
msgid "Amount (Per Booking)"
|
1226 |
msgstr "Částka (za rezervaci)"
|
1227 |
|
1228 |
-
#: app/features/events.php:
|
1229 |
msgid "Ticket Variations / Options"
|
1230 |
msgstr "Varianty vstupenky / možnosti"
|
1231 |
|
1232 |
-
#: app/features/events.php:
|
1233 |
#: app/features/mec/booking.php:392 app/features/mec/booking.php:424
|
1234 |
msgid "Option Price"
|
1235 |
msgstr "Možnosti ceny"
|
1236 |
|
1237 |
-
#: app/features/events.php:
|
1238 |
-
#: app/features/events.php:
|
1239 |
#: app/features/mec/booking.php:398 app/features/mec/booking.php:401
|
1240 |
#: app/features/mec/booking.php:430 app/features/mec/booking.php:433
|
1241 |
msgid "Maximum Per Ticket"
|
1242 |
msgstr "Maximum na jednu vstupenku"
|
1243 |
|
1244 |
-
#: app/features/events.php:
|
1245 |
#: app/features/mec/booking.php:402 app/features/mec/booking.php:434
|
1246 |
msgid "Maximum Per Ticket. Leave it blank for unlimited."
|
1247 |
msgstr "Maximum na jednu vstupenku. Ponechte to prázdné pro neomezené."
|
1248 |
|
1249 |
-
#: app/features/events.php:
|
1250 |
-
#: app/libraries/main.php:
|
1251 |
msgid "MEC Name"
|
1252 |
msgstr "MEC Jméno"
|
1253 |
|
1254 |
-
#: app/features/events.php:
|
1255 |
-
#: app/libraries/main.php:
|
1256 |
msgid "MEC Email"
|
1257 |
msgstr "MEC Email"
|
1258 |
|
1259 |
-
#: app/features/events.php:
|
1260 |
-
#: app/libraries/main.php:
|
1261 |
msgid "Text"
|
1262 |
msgstr "Text"
|
1263 |
|
1264 |
-
#: app/features/events.php:
|
1265 |
#: app/features/organizers.php:103 app/features/organizers.php:148
|
1266 |
#: app/features/speakers.php:119 app/features/speakers.php:192
|
1267 |
-
#: app/features/speakers.php:271 app/libraries/main.php:
|
1268 |
msgid "Tel"
|
1269 |
msgstr "Tel"
|
1270 |
|
1271 |
-
#: app/features/events.php:
|
1272 |
-
#: app/libraries/main.php:
|
1273 |
msgid "File"
|
1274 |
msgstr "Soubor"
|
1275 |
|
1276 |
-
#: app/features/events.php:
|
1277 |
-
#: app/libraries/main.php:
|
1278 |
msgid "Textarea"
|
1279 |
msgstr "Plocha textu"
|
1280 |
|
1281 |
-
#: app/features/events.php:
|
1282 |
-
#: app/libraries/main.php:
|
1283 |
msgid "Checkboxes"
|
1284 |
msgstr "Zatržítko"
|
1285 |
|
1286 |
-
#: app/features/events.php:
|
1287 |
-
#: app/libraries/main.php:
|
1288 |
msgid "Radio Buttons"
|
1289 |
msgstr "Přepínače"
|
1290 |
|
1291 |
-
#: app/features/events.php:
|
1292 |
#: app/features/mec/meta_boxes/search_form.php:34
|
1293 |
#: app/features/mec/meta_boxes/search_form.php:41
|
1294 |
#: app/features/mec/meta_boxes/search_form.php:49
|
@@ -1364,46 +1375,46 @@ msgstr "Přepínače"
|
|
1364 |
#: app/features/mec/meta_boxes/search_form.php:785
|
1365 |
#: app/features/mec/meta_boxes/search_form.php:792
|
1366 |
#: app/features/mec/meta_boxes/search_form.php:799
|
1367 |
-
#: app/features/mec/meta_boxes/search_form.php:813 app/libraries/main.php:
|
1368 |
msgid "Dropdown"
|
1369 |
msgstr "Rozbalovací"
|
1370 |
|
1371 |
-
#: app/features/events.php:
|
1372 |
-
#: app/libraries/main.php:
|
1373 |
msgid "Agreement"
|
1374 |
msgstr "Smlouva"
|
1375 |
|
1376 |
-
#: app/features/events.php:
|
1377 |
-
#: app/libraries/main.php:
|
1378 |
msgid "Paragraph"
|
1379 |
msgstr "Paragraf"
|
1380 |
|
1381 |
-
#: app/features/events.php:
|
1382 |
-
#: app/features/events.php:
|
1383 |
#, php-format
|
1384 |
msgid "Show all %s"
|
1385 |
msgstr "Ukázat všechny %s"
|
1386 |
|
1387 |
-
#: app/features/events.php:
|
1388 |
msgid "labels"
|
1389 |
msgstr "štítky"
|
1390 |
|
1391 |
-
#: app/features/events.php:
|
1392 |
msgid "locations"
|
1393 |
msgstr "umístění"
|
1394 |
|
1395 |
-
#: app/features/events.php:
|
1396 |
msgid "organizers"
|
1397 |
msgstr "organizátoři"
|
1398 |
|
1399 |
-
#: app/features/events.php:
|
1400 |
#, fuzzy
|
1401 |
#| msgid "Attendees Limit"
|
1402 |
msgid "Attendees List"
|
1403 |
msgstr "Limit účastníků"
|
1404 |
|
1405 |
-
#: app/features/events.php:
|
1406 |
-
#: app/features/events.php:
|
1407 |
#: app/features/ix.php:3549 app/features/locations.php:58
|
1408 |
#: app/features/locations.php:232 app/features/locations.php:289
|
1409 |
#: app/features/locations.php:291 app/features/locations.php:300
|
@@ -1419,87 +1430,87 @@ msgstr "Limit účastníků"
|
|
1419 |
#: app/features/mec/meta_boxes/search_form.php:591
|
1420 |
#: app/features/mec/meta_boxes/search_form.php:661
|
1421 |
#: app/features/mec/meta_boxes/search_form.php:767
|
1422 |
-
#: app/features/mec/settings.php:
|
1423 |
#: app/features/popup/event.php:246 app/features/popup/event.php:255
|
1424 |
-
#: app/features/search.php:73 app/libraries/main.php:
|
1425 |
-
#: app/libraries/main.php:
|
1426 |
#: app/skins/single.php:503 app/skins/single.php:941
|
1427 |
#: app/skins/single/default.php:176 app/skins/single/default.php:399
|
1428 |
#: app/skins/single/m1.php:169 app/skins/single/m2.php:95
|
1429 |
-
#: app/skins/single/modern.php:
|
1430 |
msgid "Location"
|
1431 |
msgstr "Umístění"
|
1432 |
|
1433 |
-
#: app/features/events.php:
|
1434 |
msgid "Repeat"
|
1435 |
msgstr "Opakovat"
|
1436 |
|
1437 |
-
#: app/features/events.php:
|
1438 |
msgid "Author"
|
1439 |
msgstr "Autor"
|
1440 |
|
1441 |
-
#: app/features/events.php:
|
1442 |
msgid "iCal Export"
|
1443 |
msgstr "iCal Export"
|
1444 |
|
1445 |
-
#: app/features/events.php:
|
1446 |
msgid "CSV Export"
|
1447 |
msgstr "CSV Export"
|
1448 |
|
1449 |
-
#: app/features/events.php:
|
1450 |
msgid "MS Excel Export"
|
1451 |
msgstr "MS Excel Export"
|
1452 |
|
1453 |
-
#: app/features/events.php:
|
1454 |
msgid "XML Export"
|
1455 |
msgstr "XML Export"
|
1456 |
|
1457 |
-
#: app/features/events.php:
|
1458 |
msgid "JSON Export"
|
1459 |
msgstr "JSON Export"
|
1460 |
|
1461 |
-
#: app/features/events.php:
|
1462 |
-
#: app/features/events.php:
|
1463 |
msgid "Duplicate"
|
1464 |
msgstr "Duplikát"
|
1465 |
|
1466 |
-
#: app/features/events.php:
|
1467 |
#: app/features/fes.php:223 app/features/ix.php:3508 app/features/ix.php:3549
|
1468 |
#: app/features/labels.php:177 app/features/locations.php:231
|
1469 |
#: app/features/organizers.php:203 app/features/speakers.php:268
|
1470 |
msgid "ID"
|
1471 |
msgstr "ID"
|
1472 |
|
1473 |
-
#: app/features/events.php:
|
1474 |
#: app/features/ix.php:3508 app/features/ix.php:3549
|
1475 |
msgid "Link"
|
1476 |
msgstr "Odkaz"
|
1477 |
|
1478 |
-
#: app/features/events.php:
|
1479 |
#, php-format
|
1480 |
msgid "%s Tel"
|
1481 |
msgstr "%s Tel"
|
1482 |
|
1483 |
-
#: app/features/events.php:
|
1484 |
#, php-format
|
1485 |
msgid "%s Email"
|
1486 |
msgstr "%s Email"
|
1487 |
|
1488 |
-
#: app/features/events.php:
|
1489 |
-
#: app/features/profile/profile.php:186 app/libraries/main.php:
|
1490 |
-
#: app/libraries/main.php:
|
1491 |
msgid "Ticket"
|
1492 |
msgstr "Vstupenka"
|
1493 |
|
1494 |
-
#: app/features/events.php:
|
1495 |
msgid "Variations"
|
1496 |
msgstr "Variace"
|
1497 |
|
1498 |
-
#: app/features/events.php:
|
1499 |
msgid "Unknown"
|
1500 |
msgstr "Neznámý"
|
1501 |
|
1502 |
-
#: app/features/events.php:
|
1503 |
#, fuzzy
|
1504 |
#| msgid "Attendees Form"
|
1505 |
msgid "No Attendees Found!"
|
@@ -1542,7 +1553,7 @@ msgstr "Událost byla odebrána!"
|
|
1542 |
msgid "Order Time"
|
1543 |
msgstr "Konec"
|
1544 |
|
1545 |
-
#: app/features/fes.php:223 app/libraries/main.php:
|
1546 |
msgid "Transaction ID"
|
1547 |
msgstr "ID transakce"
|
1548 |
|
@@ -1576,11 +1587,11 @@ msgstr "Captcha je neplatná! Prosím zkuste to znovu."
|
|
1576 |
msgid "Please fill event title field!"
|
1577 |
msgstr "Vyplňte prosím pole názvu události!"
|
1578 |
|
1579 |
-
#: app/features/fes.php:
|
1580 |
msgid "The event submitted. It will publish as soon as possible."
|
1581 |
msgstr "Událost byla odeslána. Zveřejní se co nejdříve."
|
1582 |
|
1583 |
-
#: app/features/fes.php:
|
1584 |
msgid "The event published."
|
1585 |
msgstr "Událost byla publikována."
|
1586 |
|
@@ -1669,15 +1680,15 @@ msgid "Remove Image"
|
|
1669 |
msgstr "Odebrat obrázek"
|
1670 |
|
1671 |
#: app/features/fes/form.php:793 app/features/labels.php:61
|
1672 |
-
#: app/features/labels.php:221 app/features/mec.php:
|
1673 |
-
#: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:
|
1674 |
#: app/skins/single.php:713 app/skins/single/default.php:155
|
1675 |
#: app/skins/single/default.php:378 app/skins/single/m1.php:73
|
1676 |
-
#: app/skins/single/modern.php:
|
1677 |
msgid "Labels"
|
1678 |
msgstr "Štítky"
|
1679 |
|
1680 |
-
#: app/features/fes/form.php:839 app/features/mec.php:
|
1681 |
#: app/features/mec/meta_boxes/filter.php:147
|
1682 |
msgid "Tags"
|
1683 |
msgstr "Tagy"
|
@@ -1756,7 +1767,7 @@ msgstr "Plugin třetí strany je neplatný!"
|
|
1756 |
msgid "Both of API key and Calendar ID are required!"
|
1757 |
msgstr "Obě hodnoty: klíč API a ID kalendáře jsou povinné!"
|
1758 |
|
1759 |
-
#: app/features/ix.php:2772 app/features/ix.php:3191 app/features/ix.php:
|
1760 |
msgid "Please select some events to import!"
|
1761 |
msgstr "Vyberte události, které chcete importovat!"
|
1762 |
|
@@ -1797,26 +1808,26 @@ msgstr ""
|
|
1797 |
"Všechny klientské aplikace, tajné informace klienta a ID kalendáře jsou "
|
1798 |
"povinné!"
|
1799 |
|
1800 |
-
#: app/features/ix.php:
|
1801 |
#, php-format
|
1802 |
msgid "%s events added to Google Calendar successfully."
|
1803 |
msgstr "% s události byly přidané do Google kalendáře úspěšně."
|
1804 |
|
1805 |
-
#: app/features/ix.php:
|
1806 |
#, php-format
|
1807 |
msgid "%s previously added events get updated."
|
1808 |
msgstr "% s dříve přidané události byly aktualizovány."
|
1809 |
|
1810 |
-
#: app/features/ix.php:
|
1811 |
#, php-format
|
1812 |
msgid "%s events failed to add for following reasons: %s"
|
1813 |
msgstr "% s události se nepodařilo přidat z následujících důvodů: % s"
|
1814 |
|
1815 |
-
#: app/features/ix.php:
|
1816 |
msgid "Please insert your Facebook page's link."
|
1817 |
msgstr "Vložte prosím odkaz na svou stránku na Facebooku."
|
1818 |
|
1819 |
-
#: app/features/ix.php:
|
1820 |
msgid ""
|
1821 |
"We couldn't recognize your Facebook page. Please check it and provide us a "
|
1822 |
"valid Facebook page link."
|
@@ -1824,11 +1835,11 @@ msgstr ""
|
|
1824 |
"Vaši facebookovou stránku jsme nemohli rozpoznat. Zkontrolujte to a "
|
1825 |
"poskytněte nám platný odkaz na stránku Facebooku."
|
1826 |
|
1827 |
-
#: app/features/ix.php:
|
1828 |
msgid "Please insert your facebook page's link."
|
1829 |
msgstr "Vložte prosím odkaz na svou facebookovou stránku."
|
1830 |
|
1831 |
-
#: app/features/ix.php:
|
1832 |
msgid ""
|
1833 |
"We couldn't recognize your Facebook page. Please check it and provide us a "
|
1834 |
"valid facebook page link."
|
@@ -2008,7 +2019,7 @@ msgstr "Přidat do Google kalendáře"
|
|
2008 |
|
2009 |
#: app/features/ix/export_g_calendar.php:93 app/features/mec/booking.php:678
|
2010 |
#: app/features/mec/modules.php:398 app/features/mec/notifications.php:909
|
2011 |
-
#: app/features/mec/settings.php:
|
2012 |
msgid "Checking ..."
|
2013 |
msgstr "Ověřování ..."
|
2014 |
|
@@ -2435,30 +2446,30 @@ msgstr "Normální"
|
|
2435 |
# Kontext
|
2436 |
#: app/features/labels.php:117 app/features/labels.php:142
|
2437 |
#: app/skins/agenda/render.php:41 app/skins/available_spot/tpl.php:44
|
2438 |
-
#: app/skins/carousel/render.php:
|
2439 |
-
#: app/skins/cover/tpl.php:34 app/skins/daily_view/render.php:
|
2440 |
#: app/skins/grid/render.php:54 app/skins/list/render.php:39
|
2441 |
-
#: app/skins/masonry/render.php:30 app/skins/monthly_view/calendar.php:
|
2442 |
-
#: app/skins/monthly_view/calendar_clean.php:
|
2443 |
-
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:
|
2444 |
-
#: app/skins/tile/render.php:
|
2445 |
-
#: app/skins/timetable/render.php:41 app/skins/timetable/render.php:
|
2446 |
-
#: app/skins/weekly_view/render.php:
|
2447 |
msgid "Featured"
|
2448 |
msgstr "Ztvárněná"
|
2449 |
|
2450 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2451 |
-
#: app/libraries/main.php:
|
2452 |
-
#: app/skins/available_spot/tpl.php:45 app/skins/carousel/render.php:
|
2453 |
-
#: app/skins/countdown/tpl.php:37 app/skins/cover/tpl.php:
|
2454 |
-
#: app/skins/daily_view/render.php:
|
2455 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:31
|
2456 |
-
#: app/skins/monthly_view/calendar.php:
|
2457 |
-
#: app/skins/monthly_view/calendar_clean.php:
|
2458 |
-
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:
|
2459 |
-
#: app/skins/tile/render.php:
|
2460 |
-
#: app/skins/timetable/render.php:
|
2461 |
-
#: app/skins/weekly_view/render.php:
|
2462 |
msgid "Canceled"
|
2463 |
msgstr "Zrušená"
|
2464 |
|
@@ -2483,9 +2494,9 @@ msgstr "Slug"
|
|
2483 |
msgid "Event %s"
|
2484 |
msgstr "Událost %s"
|
2485 |
|
2486 |
-
#: app/features/locations.php:59 app/features/mec.php:
|
2487 |
#: app/features/mec/dashboard.php:275 app/features/mec/meta_boxes/filter.php:96
|
2488 |
-
#: app/libraries/main.php:
|
2489 |
msgid "Locations"
|
2490 |
msgstr "Umístění"
|
2491 |
|
@@ -2607,7 +2618,7 @@ msgstr "Vyberte obrázek"
|
|
2607 |
msgid "Don't show map in single event page"
|
2608 |
msgstr "Nezobrazovat mapu na jednostránkové události"
|
2609 |
|
2610 |
-
#: app/features/locations.php:359 app/libraries/main.php:
|
2611 |
msgid "Other Locations"
|
2612 |
msgstr "Další místa"
|
2613 |
|
@@ -2620,7 +2631,7 @@ msgstr "Pokud chcete, můžete kromě hlavního místa vybrat i další místa."
|
|
2620 |
msgid "<strong>"
|
2621 |
msgstr "<strong>"
|
2622 |
|
2623 |
-
#: app/features/mec.php:
|
2624 |
#, fuzzy
|
2625 |
#| msgid ""
|
2626 |
#| "Activation faild. Please check your purchase code or license type."
|
@@ -2633,22 +2644,22 @@ msgstr ""
|
|
2633 |
"<br> <b> Poznámka: Váš nákupní kód by se měl shodovat s vaším typem licence. "
|
2634 |
"</b>"
|
2635 |
|
2636 |
-
#: app/features/mec.php:
|
2637 |
msgid "Troubleshooting"
|
2638 |
msgstr "Odstraňování problémů"
|
2639 |
|
2640 |
-
#: app/features/mec.php:
|
2641 |
#, fuzzy
|
2642 |
#| msgid "Select Type"
|
2643 |
msgid "Select Date"
|
2644 |
msgstr "Vyberte typ"
|
2645 |
|
2646 |
-
#: app/features/mec.php:
|
2647 |
#, php-format
|
2648 |
msgid "%s to %s"
|
2649 |
msgstr ""
|
2650 |
|
2651 |
-
#: app/features/mec.php:
|
2652 |
msgid ""
|
2653 |
"Your options is not in JSON format. Please insert correct options in this "
|
2654 |
"field and try again."
|
@@ -2656,118 +2667,118 @@ msgstr ""
|
|
2656 |
"Vaše možnosti nejsou ve formátu JSON. Do tohoto pole vložte správné možnosti "
|
2657 |
"a zkuste to znovu."
|
2658 |
|
2659 |
-
#: app/features/mec.php:
|
2660 |
msgid "Your options field can not be empty!"
|
2661 |
msgstr "Pole možností nemůže být prázdné!"
|
2662 |
|
2663 |
-
#: app/features/mec.php:
|
2664 |
msgid "Your options imported successfuly."
|
2665 |
msgstr "Vaše možnosti byly úspěšně importovány."
|
2666 |
|
2667 |
-
#: app/features/mec.php:
|
2668 |
msgid "MEC - Support"
|
2669 |
msgstr "MEC - podpora"
|
2670 |
|
2671 |
-
#: app/features/mec.php:
|
2672 |
#: app/features/mec/support.php:80 app/features/mec/support.php:93
|
2673 |
msgid "Support"
|
2674 |
msgstr "Podpora"
|
2675 |
|
2676 |
-
#: app/features/mec.php:
|
2677 |
#: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
|
2678 |
-
#: app/libraries/main.php:
|
2679 |
msgid "Organizers"
|
2680 |
msgstr "Organizátoři"
|
2681 |
|
2682 |
-
#: app/features/mec.php:
|
2683 |
#: app/features/mec/dashboard.php:268
|
2684 |
msgid "Shortcodes"
|
2685 |
msgstr "Zkrácené kódy"
|
2686 |
|
2687 |
-
#: app/features/mec.php:
|
2688 |
msgid "MEC - Settings"
|
2689 |
msgstr "MEC - Nastavení"
|
2690 |
|
2691 |
-
#: app/features/mec.php:
|
2692 |
msgid "MEC - Addons"
|
2693 |
msgstr "MEC - doplňky"
|
2694 |
|
2695 |
-
#: app/features/mec.php:
|
2696 |
msgid "Addons"
|
2697 |
msgstr "Doplňky"
|
2698 |
|
2699 |
-
#: app/features/mec.php:
|
2700 |
#, fuzzy
|
2701 |
#| msgid "MEC - Support"
|
2702 |
msgid "MEC - Report"
|
2703 |
msgstr "MEC - podpora"
|
2704 |
|
2705 |
-
#: app/features/mec.php:
|
2706 |
#, fuzzy
|
2707 |
#| msgid "Export"
|
2708 |
msgid "Report"
|
2709 |
msgstr "Export"
|
2710 |
|
2711 |
-
#: app/features/mec.php:
|
2712 |
#, fuzzy
|
2713 |
#| msgid "MEC - Support"
|
2714 |
msgid "MEC - Go Pro"
|
2715 |
msgstr "MEC - podpora"
|
2716 |
|
2717 |
-
#: app/features/mec.php:
|
2718 |
#: app/libraries/factory.php:1045
|
2719 |
msgid "Go Pro"
|
2720 |
msgstr ""
|
2721 |
|
2722 |
-
#: app/features/mec.php:
|
2723 |
msgid "Add Shortcode"
|
2724 |
msgstr "Přidat zkrácený kód"
|
2725 |
|
2726 |
-
#: app/features/mec.php:
|
2727 |
msgid "Add New Shortcode"
|
2728 |
msgstr "Přidat nový zkrácený kód"
|
2729 |
|
2730 |
-
#: app/features/mec.php:
|
2731 |
msgid "No shortcodes found!"
|
2732 |
msgstr "Nebyly nalezeny žádné zkrácené kódy!"
|
2733 |
|
2734 |
-
#: app/features/mec.php:
|
2735 |
msgid "All Shortcodes"
|
2736 |
msgstr "Všechny zkrácené kódy"
|
2737 |
|
2738 |
-
#: app/features/mec.php:
|
2739 |
msgid "Edit shortcodes"
|
2740 |
msgstr "Editace zkrácených kódů"
|
2741 |
|
2742 |
-
#: app/features/mec.php:
|
2743 |
msgid "No shortcodes found in Trash!"
|
2744 |
msgstr "V koši nebyly nalezeny žádné zkrácené kódy!"
|
2745 |
|
2746 |
-
#: app/features/mec.php:
|
2747 |
msgid "Display Options"
|
2748 |
msgstr "Zobrazit možnosti"
|
2749 |
|
2750 |
-
#: app/features/mec.php:
|
2751 |
msgid "Filter Options"
|
2752 |
msgstr "Filtrovat možnosti"
|
2753 |
|
2754 |
-
#: app/features/mec.php:
|
2755 |
msgid "Search Form"
|
2756 |
msgstr "Vyhledávací formulář"
|
2757 |
|
2758 |
-
#: app/features/mec.php:
|
2759 |
msgid "Display content's images as Popup"
|
2760 |
msgstr "Zobrazit obrázky obsahu jako vyskakovací okno"
|
2761 |
|
2762 |
-
#: app/features/mec.php:
|
2763 |
msgid "Single Event Display Method"
|
2764 |
msgstr "Metoda zobrazení jedné události"
|
2765 |
|
2766 |
-
#: app/features/mec.php:
|
2767 |
msgid "Separate Window"
|
2768 |
msgstr "Samostatné okno"
|
2769 |
|
2770 |
-
#: app/features/mec.php:
|
2771 |
#, fuzzy
|
2772 |
#| msgid "Modal 1"
|
2773 |
msgid "Modal Popup"
|
@@ -2813,8 +2824,8 @@ msgstr "Vyhledávání ..."
|
|
2813 |
#: app/features/mec/notifications.php:828
|
2814 |
#: app/features/mec/notifications.php:926
|
2815 |
#: app/features/mec/notifications.php:940 app/features/mec/settings.php:33
|
2816 |
-
#: app/features/mec/settings.php:
|
2817 |
-
#: app/features/mec/settings.php:
|
2818 |
#: app/features/mec/single.php:17 app/features/mec/single.php:262
|
2819 |
#: app/features/mec/single.php:272 app/features/mec/single.php:314
|
2820 |
#: app/features/mec/single.php:328 app/features/mec/styles.php:11
|
@@ -3039,14 +3050,14 @@ msgstr ""
|
|
3039 |
|
3040 |
#: app/features/mec/booking.php:673 app/features/mec/messages.php:78
|
3041 |
#: app/features/mec/modules.php:393 app/features/mec/notifications.php:904
|
3042 |
-
#: app/features/mec/settings.php:
|
3043 |
#: app/features/mec/styles.php:60 app/features/mec/styling.php:311
|
3044 |
msgid "Saved"
|
3045 |
msgstr "Uloženo"
|
3046 |
|
3047 |
#: app/features/mec/booking.php:674 app/features/mec/messages.php:79
|
3048 |
#: app/features/mec/modules.php:394 app/features/mec/notifications.php:905
|
3049 |
-
#: app/features/mec/settings.php:
|
3050 |
#: app/features/mec/styles.php:61 app/features/mec/styling.php:312
|
3051 |
msgid "Settings Saved!"
|
3052 |
msgstr "Nastavení uložena!"
|
@@ -3054,14 +3065,14 @@ msgstr "Nastavení uložena!"
|
|
3054 |
#: app/features/mec/booking.php:676 app/features/mec/booking.php:698
|
3055 |
#: app/features/mec/modules.php:396 app/features/mec/modules.php:418
|
3056 |
#: app/features/mec/notifications.php:907
|
3057 |
-
#: app/features/mec/notifications.php:929 app/features/mec/settings.php:
|
3058 |
-
#: app/features/mec/settings.php:
|
3059 |
-
#: app/features/mec/single.php:317 app/libraries/main.php:
|
3060 |
msgid "Verified"
|
3061 |
msgstr "Ověřeno"
|
3062 |
|
3063 |
#: app/features/mec/booking.php:700 app/features/mec/modules.php:420
|
3064 |
-
#: app/features/mec/notifications.php:931 app/features/mec/settings.php:
|
3065 |
#: app/features/mec/single.php:319
|
3066 |
msgid "Please Refresh Page"
|
3067 |
msgstr "Prosím obnovte stránku"
|
@@ -4273,9 +4284,9 @@ msgstr "Zakázaný"
|
|
4273 |
#: app/features/mec/meta_boxes/search_form.php:606
|
4274 |
#: app/features/mec/meta_boxes/search_form.php:676
|
4275 |
#: app/features/mec/meta_boxes/search_form.php:782
|
4276 |
-
#: app/features/mec/settings.php:
|
4277 |
#: app/features/search.php:83 app/features/speakers.php:61
|
4278 |
-
#: app/features/speakers.php:269 app/libraries/main.php:
|
4279 |
#: app/libraries/skins.php:955
|
4280 |
msgid "Speaker"
|
4281 |
msgstr "Řečník"
|
@@ -4291,7 +4302,7 @@ msgstr "Řečník"
|
|
4291 |
#: app/features/mec/meta_boxes/search_form.php:613
|
4292 |
#: app/features/mec/meta_boxes/search_form.php:683
|
4293 |
#: app/features/mec/meta_boxes/search_form.php:789
|
4294 |
-
#: app/features/mec/settings.php:
|
4295 |
#: app/features/search.php:88 app/libraries/skins.php:981
|
4296 |
msgid "Tag"
|
4297 |
msgstr "Štítek"
|
@@ -4411,8 +4422,8 @@ msgstr "Google Maps API"
|
|
4411 |
msgid "Google Map Options"
|
4412 |
msgstr "Možnosti Google Maps"
|
4413 |
|
4414 |
-
#: app/features/mec/modules.php:86 app/features/mec/settings.php:
|
4415 |
-
#: app/features/mec/settings.php:
|
4416 |
msgid "Required!"
|
4417 |
msgstr "Požadované!"
|
4418 |
|
@@ -4516,9 +4527,9 @@ msgstr "Počasí"
|
|
4516 |
msgid "Show weather module on event page"
|
4517 |
msgstr "Zobrazit modul počasí na stránce události"
|
4518 |
|
4519 |
-
#: app/features/mec/modules.php:239 app/features/mec/settings.php:
|
4520 |
-
#: app/features/mec/settings.php:
|
4521 |
-
#: app/features/mec/settings.php:
|
4522 |
msgid "API Key"
|
4523 |
msgstr "API Key"
|
4524 |
|
@@ -5003,7 +5014,7 @@ msgid ""
|
|
5003 |
msgstr "Po zrušení rezervace odešle vybraným příjemcům upozornění."
|
5004 |
|
5005 |
#: app/features/mec/notifications.php:387
|
5006 |
-
#: app/features/mec/notifications.php:
|
5007 |
msgid "Send the email to admin"
|
5008 |
msgstr "Odeslat email administrátorovi"
|
5009 |
|
@@ -5029,7 +5040,7 @@ msgid "It sends to admin to notify him/her that a new booking received."
|
|
5029 |
msgstr "Zašle správci informaci o přijetí nové rezervace."
|
5030 |
|
5031 |
#: app/features/mec/notifications.php:530 app/libraries/main.php:581
|
5032 |
-
#: app/libraries/notifications.php:
|
5033 |
msgid "Booking Reminder"
|
5034 |
msgstr "Připomenutí rezervace"
|
5035 |
|
@@ -5093,8 +5104,8 @@ msgid "Status of event"
|
|
5093 |
msgstr "Stav události"
|
5094 |
|
5095 |
#: app/features/mec/notifications.php:720
|
5096 |
-
#: app/features/mec/notifications.php:803 app/features/mec/settings.php:
|
5097 |
-
#: app/features/mec/settings.php:
|
5098 |
msgid "Event Note"
|
5099 |
msgstr "Poznámka události"
|
5100 |
|
@@ -5288,7 +5299,7 @@ msgid "You can enable/disable Schema scripts"
|
|
5288 |
msgstr "Můžete povolit nebo zakázat skripty schématu"
|
5289 |
|
5290 |
#: app/features/mec/settings.php:154 app/features/mec/settings.php:164
|
5291 |
-
#: app/libraries/main.php:
|
5292 |
msgid "Weekdays"
|
5293 |
msgstr "Pracovní dny"
|
5294 |
|
@@ -5657,7 +5668,7 @@ msgstr "Možnosti rezervace"
|
|
5657 |
msgid "Fees / Taxes Options"
|
5658 |
msgstr "Možnosti Poplatky / Daně"
|
5659 |
|
5660 |
-
#: app/features/mec/settings.php:
|
5661 |
#, php-format
|
5662 |
msgid ""
|
5663 |
"Users can put a note for editors while they're submitting the event. Also "
|
@@ -5668,29 +5679,29 @@ msgstr ""
|
|
5668 |
"oznámení o nové události můžete také vložit %%event_note%%, abyste dostali e-"
|
5669 |
"mail s poznámkami uživatelů."
|
5670 |
|
5671 |
-
#: app/features/mec/settings.php:
|
5672 |
msgid "Visibility of Note"
|
5673 |
msgstr "Viditelnost poznámky"
|
5674 |
|
5675 |
-
#: app/features/mec/settings.php:
|
5676 |
msgid "Always"
|
5677 |
msgstr "Vždy"
|
5678 |
|
5679 |
-
#: app/features/mec/settings.php:
|
5680 |
msgid "While event is not published"
|
5681 |
msgstr "I když událost není zveřejněna"
|
5682 |
|
5683 |
-
#: app/features/mec/settings.php:
|
5684 |
msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
|
5685 |
msgstr ""
|
5686 |
"Poznámka k události se zobrazí ve formuláři pro zasílání z webových stránek "
|
5687 |
"(frontend) a Upravit událost v administraci stránek (backend)."
|
5688 |
|
5689 |
-
#: app/features/mec/settings.php:
|
5690 |
msgid "User Profile"
|
5691 |
msgstr "Uživatelský profil"
|
5692 |
|
5693 |
-
#: app/features/mec/settings.php:
|
5694 |
#, php-format
|
5695 |
msgid ""
|
5696 |
"Put %s shortcode into your desired page. Then users are able to see history "
|
@@ -5699,11 +5710,11 @@ msgstr ""
|
|
5699 |
"Vložte %s krátký kód na požadovanou stránku. Uživatelé pak mohou vidět "
|
5700 |
"historii svých rezervací."
|
5701 |
|
5702 |
-
#: app/features/mec/settings.php:
|
5703 |
msgid "Search Bar"
|
5704 |
msgstr "Vyhledávací panel"
|
5705 |
|
5706 |
-
#: app/features/mec/settings.php:
|
5707 |
#, php-format
|
5708 |
msgid ""
|
5709 |
"Put %s shortcode into your desired page. Then users are able to search events"
|
@@ -5711,15 +5722,15 @@ msgstr ""
|
|
5711 |
"Vložte %s krátký kód na požadovanou stránku. Uživatelé pak mohou vyhledávat "
|
5712 |
"události"
|
5713 |
|
5714 |
-
#: app/features/mec/settings.php:
|
5715 |
msgid "Ajax Live mode"
|
5716 |
msgstr "Ajax Live mód"
|
5717 |
|
5718 |
-
#: app/features/mec/settings.php:
|
5719 |
msgid "Ajax mode"
|
5720 |
msgstr "Ajax mód"
|
5721 |
|
5722 |
-
#: app/features/mec/settings.php:
|
5723 |
msgid ""
|
5724 |
"if you enable this option, search button disappeared and to use this "
|
5725 |
"feature, text input field must be enabled."
|
@@ -5727,40 +5738,40 @@ msgstr ""
|
|
5727 |
"pokud tuto možnost povolíte, tlačítko pro vyhledávání zmizelo a pro použití "
|
5728 |
"této funkce musí být povoleno pole pro zadávání textu."
|
5729 |
|
5730 |
-
#: app/features/mec/settings.php:
|
5731 |
msgid "Modern Type"
|
5732 |
msgstr "Moderní typ"
|
5733 |
|
5734 |
-
#: app/features/mec/settings.php:
|
5735 |
msgid "Search bar fields"
|
5736 |
msgstr "Pole vyhledávacího panelu"
|
5737 |
|
5738 |
-
#: app/features/mec/settings.php:
|
5739 |
msgid "Text input"
|
5740 |
msgstr "Zadávání textu"
|
5741 |
|
5742 |
-
#: app/features/mec/settings.php:
|
5743 |
msgid "Enable Mailchimp Integration"
|
5744 |
msgstr "Povolit integraci Mailchimp"
|
5745 |
|
5746 |
-
#: app/features/mec/settings.php:
|
5747 |
-
#: app/features/mec/settings.php:
|
5748 |
msgid "List ID"
|
5749 |
msgstr "ID seznamu"
|
5750 |
|
5751 |
-
#: app/features/mec/settings.php:
|
5752 |
msgid "Subscription Status"
|
5753 |
msgstr "Stav odběru"
|
5754 |
|
5755 |
-
#: app/features/mec/settings.php:
|
5756 |
msgid "Subscribe automatically"
|
5757 |
msgstr "Odebírat automaticky"
|
5758 |
|
5759 |
-
#: app/features/mec/settings.php:
|
5760 |
msgid "Subscribe by verification"
|
5761 |
msgstr "Přihlaste se k odběru pomocí ověření"
|
5762 |
|
5763 |
-
#: app/features/mec/settings.php:
|
5764 |
msgid ""
|
5765 |
"If you choose \"Subscribe by verification\" then an email will send to user "
|
5766 |
"by mailchimp for subscription verification."
|
@@ -5768,69 +5779,69 @@ msgstr ""
|
|
5768 |
"Pokud zvolíte možnost „Přihlásit se k odběru pomocí ověření“, odešle e-mail "
|
5769 |
"uživateli mailchimp k ověření oběru."
|
5770 |
|
5771 |
-
#: app/features/mec/settings.php:
|
5772 |
#, fuzzy
|
5773 |
#| msgid "Mailchimp Integration"
|
5774 |
msgid "Campaign Monitor Integration"
|
5775 |
msgstr "Integrace Mailchimp"
|
5776 |
|
5777 |
-
#: app/features/mec/settings.php:
|
5778 |
#, fuzzy
|
5779 |
#| msgid "Enable Mailchimp Integration"
|
5780 |
msgid "Enable Campaign Monitor Integration"
|
5781 |
msgstr "Povolit integraci Mailchimp"
|
5782 |
|
5783 |
-
#: app/features/mec/settings.php:
|
5784 |
#, fuzzy
|
5785 |
#| msgid "Mailchimp Integration"
|
5786 |
msgid "MailerLite Integration"
|
5787 |
msgstr "Integrace Mailchimp"
|
5788 |
|
5789 |
-
#: app/features/mec/settings.php:
|
5790 |
#, fuzzy
|
5791 |
#| msgid "Enable Mailchimp Integration"
|
5792 |
msgid "Enable MailerLite Integration"
|
5793 |
msgstr "Povolit integraci Mailchimp"
|
5794 |
|
5795 |
-
#: app/features/mec/settings.php:
|
5796 |
#, fuzzy
|
5797 |
#| msgid "Group URL"
|
5798 |
msgid "Group ID"
|
5799 |
msgstr "Group URL"
|
5800 |
|
5801 |
-
#: app/features/mec/settings.php:
|
5802 |
#, fuzzy
|
5803 |
#| msgid "Enable Mailchimp Integration"
|
5804 |
msgid "Constant Contact Integration"
|
5805 |
msgstr "Povolit integraci Mailchimp"
|
5806 |
|
5807 |
-
#: app/features/mec/settings.php:
|
5808 |
#, fuzzy
|
5809 |
#| msgid "Enable Mailchimp Integration"
|
5810 |
msgid "Enable constantcontact Integration"
|
5811 |
msgstr "Povolit integraci Mailchimp"
|
5812 |
|
5813 |
-
#: app/features/mec/settings.php:
|
5814 |
msgid "Upload Field Options"
|
5815 |
msgstr "Možnosti pole Nahrát"
|
5816 |
|
5817 |
-
#: app/features/mec/settings.php:
|
5818 |
msgid "Mime types"
|
5819 |
msgstr "MIME typy"
|
5820 |
|
5821 |
-
#: app/features/mec/settings.php:
|
5822 |
msgid "Split mime types with \",\"."
|
5823 |
msgstr "Rozdělte typy MIME pomocí “,“."
|
5824 |
|
5825 |
-
#: app/features/mec/settings.php:
|
5826 |
msgid "Default: jpeg,jpg,png,pdf"
|
5827 |
msgstr "Výchozí: jpeg,jpg,png,pdf"
|
5828 |
|
5829 |
-
#: app/features/mec/settings.php:
|
5830 |
msgid "Maximum file size"
|
5831 |
msgstr "Maximální velikost souboru"
|
5832 |
|
5833 |
-
#: app/features/mec/settings.php:
|
5834 |
msgid "The unit is Megabyte \"MB\""
|
5835 |
msgstr "Jednotkou je Megabyte \"MB\""
|
5836 |
|
@@ -6702,7 +6713,7 @@ msgstr "např. info@itreseni.cz"
|
|
6702 |
msgid "eg. https://webnus.net"
|
6703 |
msgstr "např. https://webnus.net"
|
6704 |
|
6705 |
-
#: app/features/organizers.php:312 app/libraries/main.php:
|
6706 |
#: app/skins/single.php:873
|
6707 |
msgid "Other Organizers"
|
6708 |
msgstr "Další organizátoři"
|
@@ -6779,9 +6790,9 @@ msgid "Prev"
|
|
6779 |
msgstr ""
|
6780 |
|
6781 |
#: app/features/popup/event.php:392 app/features/popup/shortcode.php:373
|
6782 |
-
#: app/modules/booking/steps/form.php:
|
6783 |
-
#: app/modules/booking/steps/tickets.php:77 app/skins/countdown/tpl.php:
|
6784 |
-
#: app/skins/countdown/tpl.php:
|
6785 |
msgid "Next"
|
6786 |
msgstr "Další"
|
6787 |
|
@@ -6840,7 +6851,7 @@ msgstr "Přidat nový zkrácený kód"
|
|
6840 |
msgid "Please %s/%s in order to see your bookings / profile."
|
6841 |
msgstr "Prosím %s/%s za účelem zobrazení vašich rezervací / profilu."
|
6842 |
|
6843 |
-
#: app/features/profile/profile.php:18 app/libraries/main.php:
|
6844 |
msgid "Your booking already canceled!"
|
6845 |
msgstr "Vaše rezervace již byla zrušena!"
|
6846 |
|
@@ -6848,11 +6859,11 @@ msgstr "Vaše rezervace již byla zrušena!"
|
|
6848 |
msgid "#"
|
6849 |
msgstr "#"
|
6850 |
|
6851 |
-
#: app/features/profile/profile.php:56 app/libraries/main.php:
|
6852 |
msgid "Status"
|
6853 |
msgstr "Stav"
|
6854 |
|
6855 |
-
#: app/features/profile/profile.php:59 app/libraries/main.php:
|
6856 |
msgid "Attendees"
|
6857 |
msgstr "Účastníci"
|
6858 |
|
@@ -6881,7 +6892,63 @@ msgstr "<i class=\"mec-sl-eye\"></i> %s"
|
|
6881 |
msgid "No bookings found!"
|
6882 |
msgstr "Nebyly nalezeny žádné rezervace!"
|
6883 |
|
6884 |
-
#: app/features/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6885 |
msgid "label"
|
6886 |
msgstr "štítek"
|
6887 |
|
@@ -6906,13 +6973,13 @@ msgid "No search result."
|
|
6906 |
msgstr "Žádný výsledek vyhledávání."
|
6907 |
|
6908 |
#: app/features/search_bar/search_result.php:12
|
6909 |
-
#: app/libraries/notifications.php:
|
6910 |
#: app/modules/local-time/details.php:48 app/modules/local-time/type1.php:44
|
6911 |
#: app/modules/local-time/type2.php:46 app/modules/local-time/type3.php:44
|
6912 |
#: app/modules/next-event/details.php:104 app/skins/single.php:166
|
6913 |
#: app/skins/single.php:764 app/skins/single/default.php:108
|
6914 |
#: app/skins/single/default.php:331 app/skins/single/m1.php:43
|
6915 |
-
#: app/skins/single/modern.php:
|
6916 |
#, fuzzy
|
6917 |
#| msgid "Add Day"
|
6918 |
msgid "All Day"
|
@@ -7027,8 +7094,8 @@ msgid "day"
|
|
7027 |
msgstr "den"
|
7028 |
|
7029 |
#: app/libraries/factory.php:373 app/modules/countdown/details.php:138
|
7030 |
-
#: app/skins/available_spot/tpl.php:
|
7031 |
-
#: app/skins/countdown/tpl.php:
|
7032 |
msgid "days"
|
7033 |
msgstr "dny"
|
7034 |
|
@@ -7037,8 +7104,8 @@ msgid "hour"
|
|
7037 |
msgstr "hodina"
|
7038 |
|
7039 |
#: app/libraries/factory.php:375 app/modules/countdown/details.php:145
|
7040 |
-
#: app/skins/available_spot/tpl.php:
|
7041 |
-
#: app/skins/countdown/tpl.php:
|
7042 |
msgid "hours"
|
7043 |
msgstr "hodiny"
|
7044 |
|
@@ -7047,8 +7114,8 @@ msgid "minute"
|
|
7047 |
msgstr "minuta"
|
7048 |
|
7049 |
#: app/libraries/factory.php:377 app/modules/countdown/details.php:152
|
7050 |
-
#: app/skins/available_spot/tpl.php:
|
7051 |
-
#: app/skins/countdown/tpl.php:
|
7052 |
msgid "minutes"
|
7053 |
msgstr "minuty"
|
7054 |
|
@@ -7057,8 +7124,8 @@ msgid "second"
|
|
7057 |
msgstr "vteřina"
|
7058 |
|
7059 |
#: app/libraries/factory.php:379 app/modules/countdown/details.php:159
|
7060 |
-
#: app/skins/available_spot/tpl.php:
|
7061 |
-
#: app/skins/countdown/tpl.php:
|
7062 |
msgid "seconds"
|
7063 |
msgstr "vteřiny"
|
7064 |
|
@@ -7156,31 +7223,31 @@ msgstr "Zobrazení rozvrhu"
|
|
7156 |
msgid "Tile View"
|
7157 |
msgstr "Zobrazení rozvrhu"
|
7158 |
|
7159 |
-
#: app/libraries/main.php:385 app/libraries/main.php:
|
7160 |
msgid "SU"
|
7161 |
msgstr "NE"
|
7162 |
|
7163 |
-
#: app/libraries/main.php:386 app/libraries/main.php:
|
7164 |
msgid "MO"
|
7165 |
msgstr "PO"
|
7166 |
|
7167 |
-
#: app/libraries/main.php:387 app/libraries/main.php:
|
7168 |
msgid "TU"
|
7169 |
msgstr "ÚT"
|
7170 |
|
7171 |
-
#: app/libraries/main.php:388 app/libraries/main.php:
|
7172 |
msgid "WE"
|
7173 |
msgstr "ST"
|
7174 |
|
7175 |
-
#: app/libraries/main.php:389 app/libraries/main.php:
|
7176 |
msgid "TH"
|
7177 |
msgstr "ČT"
|
7178 |
|
7179 |
-
#: app/libraries/main.php:390 app/libraries/main.php:
|
7180 |
msgid "FR"
|
7181 |
msgstr "PÁ"
|
7182 |
|
7183 |
-
#: app/libraries/main.php:391 app/libraries/main.php:
|
7184 |
msgid "SA"
|
7185 |
msgstr "SO"
|
7186 |
|
@@ -7345,268 +7412,268 @@ msgstr ""
|
|
7345 |
msgid "Custom Shortcode"
|
7346 |
msgstr "Uživatelské zkrácené kódy"
|
7347 |
|
7348 |
-
#: app/libraries/main.php:
|
7349 |
msgid "Your booking already verified!"
|
7350 |
msgstr "Vaše rezervace již byla ověřena!"
|
7351 |
|
7352 |
-
#: app/libraries/main.php:
|
7353 |
msgid "Your booking successfully verified."
|
7354 |
msgstr "Vaše rezervace byla úspěšně ověřena."
|
7355 |
|
7356 |
-
#: app/libraries/main.php:
|
7357 |
msgid "Your booking cannot verify!"
|
7358 |
msgstr "Vaši rezervaci nelze ověřit!"
|
7359 |
|
7360 |
-
#: app/libraries/main.php:
|
7361 |
msgid "Your booking successfully canceled."
|
7362 |
msgstr "Vaše rezervace byla úspěšně zrušena."
|
7363 |
|
7364 |
-
#: app/libraries/main.php:
|
7365 |
msgid "Your booking cannot be canceled."
|
7366 |
msgstr "Vaši rezervaci nelze zrušit."
|
7367 |
|
7368 |
-
#: app/libraries/main.php:
|
7369 |
msgid "You canceled the payment successfully."
|
7370 |
msgstr "Platbu jste úspěšně zrušili."
|
7371 |
|
7372 |
-
#: app/libraries/main.php:
|
7373 |
msgid "You returned from payment gateway successfully."
|
7374 |
msgstr "Úspěšně jste se vrátili z platební brány."
|
7375 |
|
7376 |
-
#: app/libraries/main.php:
|
7377 |
msgid "Cannot find the invoice!"
|
7378 |
msgstr "Fakturu nelze najít!"
|
7379 |
|
7380 |
-
#: app/libraries/main.php:
|
7381 |
msgid "Invoice is invalid."
|
7382 |
msgstr "Faktura je neplatná."
|
7383 |
|
7384 |
-
#: app/libraries/main.php:
|
7385 |
msgid ""
|
7386 |
"Your booking still is not confirmed. You able download it after confirmation!"
|
7387 |
msgstr ""
|
7388 |
"Vaše rezervace stále není potvrzena. Můžete si ji stáhnout po potvrzení!"
|
7389 |
|
7390 |
-
#: app/libraries/main.php:
|
7391 |
msgid "Booking Not Confirmed."
|
7392 |
msgstr "Rezervace nebyla potvrzena."
|
7393 |
|
7394 |
-
#: app/libraries/main.php:
|
7395 |
msgid "Cannot find the booking!"
|
7396 |
msgstr "Nemohu najít rezervaci!"
|
7397 |
|
7398 |
-
#: app/libraries/main.php:
|
7399 |
msgid "Booking is invalid."
|
7400 |
msgstr "Rezervace není platná."
|
7401 |
|
7402 |
-
#: app/libraries/main.php:
|
7403 |
#, php-format
|
7404 |
msgid "%s Invoice"
|
7405 |
msgstr "%s Faktura"
|
7406 |
|
7407 |
-
#: app/libraries/main.php:
|
7408 |
msgid "Billing"
|
7409 |
msgstr "Fakturace"
|
7410 |
|
7411 |
-
#: app/libraries/main.php:
|
7412 |
#, fuzzy
|
7413 |
#| msgid "Coupons"
|
7414 |
msgid "Coupon Code"
|
7415 |
msgstr "Kupóny"
|
7416 |
|
7417 |
-
#: app/libraries/main.php:
|
7418 |
msgid "Total"
|
7419 |
msgstr "Celkem"
|
7420 |
|
7421 |
-
#: app/libraries/main.php:
|
7422 |
#, fuzzy
|
7423 |
#| msgid "Payment Gateways"
|
7424 |
msgid "Payment"
|
7425 |
msgstr "Platební brány"
|
7426 |
|
7427 |
-
#: app/libraries/main.php:
|
7428 |
#, fuzzy
|
7429 |
#| msgid "Payment Gateways"
|
7430 |
msgid "Gateway"
|
7431 |
msgstr "Platební brány"
|
7432 |
|
7433 |
-
#: app/libraries/main.php:
|
7434 |
#, fuzzy
|
7435 |
#| msgid "Payment Gateways"
|
7436 |
msgid "Payment Time"
|
7437 |
msgstr "Platební brány"
|
7438 |
|
7439 |
-
#: app/libraries/main.php:
|
7440 |
msgid "Request is not valid."
|
7441 |
msgstr "Požadavek není platný."
|
7442 |
|
7443 |
-
#: app/libraries/main.php:
|
7444 |
msgid "iCal export stopped!"
|
7445 |
msgstr "iCal export byl zastaven!"
|
7446 |
|
7447 |
-
#: app/libraries/main.php:
|
7448 |
-
#: app/libraries/main.php:
|
7449 |
-
#: app/libraries/main.php:
|
7450 |
-
#: app/libraries/main.php:
|
7451 |
-
#: app/libraries/main.php:
|
7452 |
-
#: app/libraries/main.php:
|
7453 |
-
#: app/libraries/main.php:
|
7454 |
msgid "Sort"
|
7455 |
msgstr "Seřadit"
|
7456 |
|
7457 |
-
#: app/libraries/main.php:
|
7458 |
-
#: app/libraries/main.php:
|
7459 |
-
#: app/libraries/main.php:
|
7460 |
-
#: app/libraries/main.php:
|
7461 |
-
#: app/libraries/main.php:
|
7462 |
-
#: app/libraries/main.php:
|
7463 |
msgid "Required Field"
|
7464 |
msgstr "Požadovaná pole"
|
7465 |
|
7466 |
-
#: app/libraries/main.php:
|
7467 |
-
#: app/libraries/main.php:
|
7468 |
-
#: app/libraries/main.php:
|
7469 |
-
#: app/libraries/main.php:
|
7470 |
-
#: app/libraries/main.php:
|
7471 |
-
#: app/libraries/main.php:
|
7472 |
msgid "Insert a label for this field"
|
7473 |
msgstr "Vložte štítek pro toto pole"
|
7474 |
|
7475 |
-
#: app/libraries/main.php:
|
7476 |
msgid "HTML and shortcode are allowed."
|
7477 |
msgstr "HTML a zkrácené kódy jsou povoleny."
|
7478 |
|
7479 |
-
#: app/libraries/main.php:
|
7480 |
-
#: app/libraries/main.php:
|
7481 |
msgid "Option"
|
7482 |
msgstr "Možnost"
|
7483 |
|
7484 |
-
#: app/libraries/main.php:
|
7485 |
#, php-format
|
7486 |
msgid "Instead of %s, the page title with a link will be show."
|
7487 |
msgstr "Místo%s se zobrazí název stránky s odkazem."
|
7488 |
|
7489 |
-
#: app/libraries/main.php:
|
7490 |
msgid "Agreement Page"
|
7491 |
msgstr "Stránka smlouvy"
|
7492 |
|
7493 |
-
#: app/libraries/main.php:
|
7494 |
msgid "Checked by default"
|
7495 |
msgstr "Ve výchozím nastavení zaškrtnuto"
|
7496 |
|
7497 |
-
#: app/libraries/main.php:
|
7498 |
msgid "Unchecked by default"
|
7499 |
msgstr "Ve výchozím nastavení není zaškrtnuto"
|
7500 |
|
7501 |
-
#: app/libraries/main.php:
|
7502 |
msgid "Insert a label for this option"
|
7503 |
msgstr "Vložte štítek pro tuto možnost"
|
7504 |
|
7505 |
-
#: app/libraries/main.php:
|
7506 |
msgid "Free"
|
7507 |
msgstr "Zdarma"
|
7508 |
|
7509 |
-
#: app/libraries/main.php:
|
7510 |
msgid "M.E. Calender"
|
7511 |
msgstr "M.E. Kalendář"
|
7512 |
|
7513 |
-
#: app/libraries/main.php:
|
7514 |
#, php-format
|
7515 |
msgid "Copy of %s"
|
7516 |
msgstr "Kopie %s"
|
7517 |
|
7518 |
-
#: app/libraries/main.php:
|
7519 |
msgid "Booked an event."
|
7520 |
msgstr "Událost byla rezervována."
|
7521 |
|
7522 |
-
#: app/libraries/main.php:
|
7523 |
#, php-format
|
7524 |
msgid "%s booked %s event."
|
7525 |
msgstr "%s zarezervoval %s událost."
|
7526 |
|
7527 |
-
#: app/libraries/main.php:
|
7528 |
msgid "Taxonomies"
|
7529 |
msgstr "Taxonomie"
|
7530 |
|
7531 |
# Mrknout na kontext
|
7532 |
-
#: app/libraries/main.php:
|
7533 |
msgid "Category Plural Label"
|
7534 |
msgstr "Štítek množné kategorie"
|
7535 |
|
7536 |
# Mrknout na kontext
|
7537 |
-
#: app/libraries/main.php:
|
7538 |
msgid "Category Singular Label"
|
7539 |
msgstr "Štítek jednotné kategorie"
|
7540 |
|
7541 |
-
#: app/libraries/main.php:
|
7542 |
msgid "Label Plural Label"
|
7543 |
msgstr "Štítek množného štítku"
|
7544 |
|
7545 |
-
#: app/libraries/main.php:
|
7546 |
msgid "Label Singular Label"
|
7547 |
msgstr "Štítek jednotného štítku"
|
7548 |
|
7549 |
-
#: app/libraries/main.php:
|
7550 |
msgid "Location Plural Label"
|
7551 |
msgstr "Štítek množného umístění"
|
7552 |
|
7553 |
-
#: app/libraries/main.php:
|
7554 |
msgid "Location Singular Label"
|
7555 |
msgstr "Štítek jednotného umístění"
|
7556 |
|
7557 |
-
#: app/libraries/main.php:
|
7558 |
msgid "Organizer Plural Label"
|
7559 |
msgstr "Štítek množného organizátora"
|
7560 |
|
7561 |
-
#: app/libraries/main.php:
|
7562 |
msgid "Organizer Singular Label"
|
7563 |
msgstr "Štítek jednotného organizátora"
|
7564 |
|
7565 |
-
#: app/libraries/main.php:
|
7566 |
msgid "Speaker Plural Label"
|
7567 |
msgstr "Štítek množného řečníka"
|
7568 |
|
7569 |
-
#: app/libraries/main.php:
|
7570 |
msgid "Speaker Singular Label"
|
7571 |
msgstr "Štítek jednotného řečníka"
|
7572 |
|
7573 |
-
#: app/libraries/main.php:
|
7574 |
msgid "Sunday abbreviation"
|
7575 |
msgstr "Neděle zkratka"
|
7576 |
|
7577 |
-
#: app/libraries/main.php:
|
7578 |
msgid "Monday abbreviation"
|
7579 |
msgstr "Pondělí zkratka"
|
7580 |
|
7581 |
-
#: app/libraries/main.php:
|
7582 |
msgid "Tuesday abbreviation"
|
7583 |
msgstr "Úterý zkratka"
|
7584 |
|
7585 |
-
#: app/libraries/main.php:
|
7586 |
msgid "Wednesday abbreviation"
|
7587 |
msgstr "Středa zkratka"
|
7588 |
|
7589 |
-
#: app/libraries/main.php:
|
7590 |
msgid "Thursday abbreviation"
|
7591 |
msgstr "Čtvrtek zkratka"
|
7592 |
|
7593 |
-
#: app/libraries/main.php:
|
7594 |
msgid "Friday abbreviation"
|
7595 |
msgstr "Pátek zkratka"
|
7596 |
|
7597 |
-
#: app/libraries/main.php:
|
7598 |
msgid "Saturday abbreviation"
|
7599 |
msgstr "Sobota zkratka"
|
7600 |
|
7601 |
-
#: app/libraries/main.php:
|
7602 |
msgid "Others"
|
7603 |
msgstr "Další"
|
7604 |
|
7605 |
-
#: app/libraries/main.php:
|
7606 |
msgid "Booking Success Message"
|
7607 |
msgstr "Zpráva o úspěchu rezervace"
|
7608 |
|
7609 |
-
#: app/libraries/main.php:
|
7610 |
msgid ""
|
7611 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
7612 |
"needed, please check your email."
|
@@ -7614,122 +7681,122 @@ msgstr ""
|
|
7614 |
"Děkujeme za vaši rezervaci. Vaše vstupenky jsou rezervovány, může být nutné "
|
7615 |
"ověřit rezervaci. Zkontrolujte prosím svůj e-mail."
|
7616 |
|
7617 |
-
#: app/libraries/main.php:
|
7618 |
msgid "Register Button"
|
7619 |
msgstr "Registrační tlačítko"
|
7620 |
|
7621 |
-
#: app/libraries/main.php:
|
7622 |
-
#: app/skins/carousel/render.php:
|
7623 |
-
#: app/skins/grid/render.php:
|
7624 |
-
#: app/skins/grid/render.php:
|
7625 |
-
#: app/skins/list/render.php:
|
7626 |
-
#: app/skins/masonry/render.php:
|
7627 |
#: app/skins/single.php:788 app/skins/single/default.php:260
|
7628 |
#: app/skins/single/default.php:262 app/skins/single/default.php:483
|
7629 |
#: app/skins/single/default.php:485 app/skins/single/m1.php:140
|
7630 |
#: app/skins/single/m1.php:142 app/skins/single/m2.php:66
|
7631 |
-
#: app/skins/single/m2.php:68 app/skins/single/modern.php:
|
7632 |
-
#: app/skins/single/modern.php:
|
7633 |
-
#: app/skins/slider/render.php:
|
7634 |
-
#: app/skins/slider/render.php:
|
7635 |
msgid "REGISTER"
|
7636 |
msgstr "REGISTROVAT"
|
7637 |
|
7638 |
-
#: app/libraries/main.php:
|
7639 |
msgid "View Detail Button"
|
7640 |
msgstr "Tlačítko Zobrazit detail"
|
7641 |
|
7642 |
-
#: app/libraries/main.php:
|
7643 |
-
#: app/skins/carousel/render.php:
|
7644 |
-
#: app/skins/grid/render.php:
|
7645 |
-
#: app/skins/grid/render.php:
|
7646 |
-
#: app/skins/list/render.php:
|
7647 |
-
#: app/skins/slider/render.php:
|
7648 |
-
#: app/skins/slider/render.php:
|
7649 |
-
#: app/skins/slider/render.php:
|
7650 |
msgid "View Detail"
|
7651 |
msgstr "Zobrazit detail"
|
7652 |
|
7653 |
-
#: app/libraries/main.php:
|
7654 |
msgid "Event Detail Button"
|
7655 |
msgstr "Tlačítko Detail události"
|
7656 |
|
7657 |
-
#: app/libraries/main.php:
|
7658 |
msgid "Event Detail"
|
7659 |
msgstr "Zobrazit událost"
|
7660 |
|
7661 |
-
#: app/libraries/main.php:
|
7662 |
msgid "More Info Link"
|
7663 |
msgstr "Odkaz na více informací"
|
7664 |
|
7665 |
-
#: app/libraries/main.php:
|
7666 |
msgid "Ticket (Singular)"
|
7667 |
msgstr "Vstupenka (Jednotné)"
|
7668 |
|
7669 |
-
#: app/libraries/main.php:
|
7670 |
msgid "Tickets (Plural)"
|
7671 |
msgstr "Vstupenky (Množné)"
|
7672 |
|
7673 |
-
#: app/libraries/main.php:
|
7674 |
msgid "EventON"
|
7675 |
msgstr "EventON"
|
7676 |
|
7677 |
-
#: app/libraries/main.php:
|
7678 |
msgid "The Events Calendar"
|
7679 |
msgstr "The Events Calendar"
|
7680 |
|
7681 |
-
#: app/libraries/main.php:
|
7682 |
msgid "Events Schedule WP Plugin"
|
7683 |
msgstr "Events Schedule WP Plugin"
|
7684 |
|
7685 |
-
#: app/libraries/main.php:
|
7686 |
msgid "Calendarize It"
|
7687 |
msgstr "Calendarize It"
|
7688 |
|
7689 |
-
#: app/libraries/main.php:
|
7690 |
#, fuzzy
|
7691 |
#| msgid "Event Speakers"
|
7692 |
msgid "Event Espresso"
|
7693 |
msgstr "Řečník události"
|
7694 |
|
7695 |
-
#: app/libraries/main.php:
|
7696 |
#, fuzzy
|
7697 |
#| msgid "Event Repeating (Recurring events)"
|
7698 |
msgid "Events Manager (Recurring)"
|
7699 |
msgstr "Opakování události (opakující se události)"
|
7700 |
|
7701 |
-
#: app/libraries/main.php:
|
7702 |
#, fuzzy
|
7703 |
#| msgid "Modern Events Calendar (Lite)"
|
7704 |
msgid "Events Manager (Single)"
|
7705 |
msgstr "Modern Events Calendar (Lite)"
|
7706 |
|
7707 |
-
#: app/libraries/main.php:
|
7708 |
msgid "Confirmed"
|
7709 |
msgstr "Potvrzeno"
|
7710 |
|
7711 |
-
#: app/libraries/main.php:
|
7712 |
msgid "Rejected"
|
7713 |
msgstr "Odmítnuto"
|
7714 |
|
7715 |
-
#: app/libraries/main.php:
|
7716 |
msgid "Pending"
|
7717 |
msgstr "Nevyřízený"
|
7718 |
|
7719 |
-
#: app/libraries/main.php:
|
7720 |
msgid "Waiting"
|
7721 |
msgstr "Čekající"
|
7722 |
|
7723 |
-
#: app/libraries/main.php:
|
7724 |
#: app/libraries/render.php:418
|
7725 |
msgid "Skin controller does not exist."
|
7726 |
msgstr "Ovladač vzhledu neexistuje."
|
7727 |
|
7728 |
-
#: app/libraries/main.php:
|
7729 |
msgid "Sold Out"
|
7730 |
msgstr "Vyprodáno"
|
7731 |
|
7732 |
-
#: app/libraries/main.php:
|
7733 |
#, fuzzy
|
7734 |
#| msgid "Ticket"
|
7735 |
msgid "Last Few Tickets"
|
@@ -7739,48 +7806,48 @@ msgstr "Vstupenka"
|
|
7739 |
msgid "Please verify your email."
|
7740 |
msgstr "Prosím, ověřte svůj e-mail."
|
7741 |
|
7742 |
-
#: app/libraries/notifications.php:
|
7743 |
msgid "Your booking is received."
|
7744 |
msgstr "Vaše rezervace je přijata."
|
7745 |
|
7746 |
-
#: app/libraries/notifications.php:
|
7747 |
msgid "Your booking is confirmed."
|
7748 |
msgstr "Vaše rezervace je potvrzena."
|
7749 |
|
7750 |
-
#: app/libraries/notifications.php:
|
7751 |
msgid "booking canceled."
|
7752 |
msgstr "rezervace zrušena."
|
7753 |
|
7754 |
-
#: app/libraries/notifications.php:
|
7755 |
msgid "A new booking is received."
|
7756 |
msgstr "Je přijata nová rezervace."
|
7757 |
|
7758 |
-
#: app/libraries/notifications.php:
|
7759 |
msgid "A new event is added."
|
7760 |
msgstr "Je přidána se nová událost."
|
7761 |
|
7762 |
-
#: app/libraries/notifications.php:
|
7763 |
msgid "Your event is published."
|
7764 |
msgstr "Vaše událost je zveřejněna."
|
7765 |
|
7766 |
-
#: app/libraries/notifications.php:
|
7767 |
-
#: app/libraries/notifications.php:
|
7768 |
msgid "to"
|
7769 |
msgstr "do"
|
7770 |
|
7771 |
-
#: app/libraries/notifications.php:
|
7772 |
msgid "+ Add to Google Calendar"
|
7773 |
msgstr "+ Přidat do Google kalendáře"
|
7774 |
|
7775 |
-
#: app/libraries/notifications.php:
|
7776 |
msgid "+ iCal export"
|
7777 |
msgstr "+ iCal export"
|
7778 |
|
7779 |
-
#: app/libraries/notifications.php:
|
7780 |
msgid "Yes"
|
7781 |
msgstr "Ano"
|
7782 |
|
7783 |
-
#: app/libraries/notifications.php:
|
7784 |
msgid "No"
|
7785 |
msgstr "Ne"
|
7786 |
|
@@ -7816,15 +7883,15 @@ msgstr "Slevový kupon"
|
|
7816 |
msgid "Apply Coupon"
|
7817 |
msgstr "Aplikovat kupon"
|
7818 |
|
7819 |
-
#: app/modules/booking/steps/checkout.php:
|
7820 |
-
|
7821 |
-
msgstr "Rezervace zdarma"
|
7822 |
-
|
7823 |
-
#: app/modules/booking/steps/checkout.php:79
|
7824 |
-
#: app/modules/booking/steps/form.php:179
|
7825 |
msgid "Back"
|
7826 |
msgstr ""
|
7827 |
|
|
|
|
|
|
|
|
|
7828 |
#: app/modules/booking/steps/form.php:52
|
7829 |
#, fuzzy
|
7830 |
#| msgid "Attendees Form"
|
@@ -7932,7 +7999,7 @@ msgstr "Přejít na stránku výskytu"
|
|
7932 |
|
7933 |
#: app/modules/next-event/details.php:98 app/skins/single.php:758
|
7934 |
#: app/skins/single/default.php:102 app/skins/single/default.php:325
|
7935 |
-
#: app/skins/single/m1.php:37 app/skins/single/modern.php:
|
7936 |
msgid "Time"
|
7937 |
msgstr "Čas"
|
7938 |
|
@@ -7997,40 +8064,40 @@ msgstr "Nebyla nalezena žádná událost!"
|
|
7997 |
#: app/skins/agenda/tpl.php:81 app/skins/custom/tpl.php:76
|
7998 |
#: app/skins/grid/tpl.php:83 app/skins/list/tpl.php:88
|
7999 |
#: app/skins/masonry/tpl.php:77 app/skins/tile/tpl.php:133
|
8000 |
-
#: app/skins/timeline/tpl.php:71 app/skins/yearly_view/render.php:
|
8001 |
msgid "Load More"
|
8002 |
msgstr "Načíst více"
|
8003 |
|
8004 |
-
#: app/skins/available_spot/tpl.php:
|
8005 |
msgid "Available Spot(s):"
|
8006 |
msgstr "Dostupné spoty:"
|
8007 |
|
8008 |
-
#: app/skins/carousel/render.php:
|
8009 |
-
#: app/skins/countdown/tpl.php:
|
8010 |
-
#: app/skins/list/render.php:
|
8011 |
msgid "EVENT DETAIL"
|
8012 |
msgstr "DETAIL UDÁLOSTI"
|
8013 |
|
8014 |
-
#: app/skins/carousel/render.php:
|
8015 |
msgid "View All Events"
|
8016 |
msgstr "Zobrazit všechny události"
|
8017 |
|
8018 |
-
#: app/skins/countdown/tpl.php:
|
8019 |
-
#: app/skins/countdown/tpl.php:
|
8020 |
#, php-format
|
8021 |
msgid "%s Upcoming Event"
|
8022 |
msgstr "%s Nadcházející událost"
|
8023 |
|
8024 |
-
#: app/skins/cover/tpl.php:
|
8025 |
msgid "featured event"
|
8026 |
msgstr "nejlepší událost"
|
8027 |
|
8028 |
-
#: app/skins/daily_view/render.php:
|
8029 |
msgid "No event"
|
8030 |
msgstr "Žádná událost"
|
8031 |
|
8032 |
-
#: app/skins/default_full_calendar/tpl.php:
|
8033 |
-
#: app/skins/full_calendar/tpl.php:
|
8034 |
msgid "List"
|
8035 |
msgstr "Seznam"
|
8036 |
|
@@ -8039,16 +8106,16 @@ msgid "All"
|
|
8039 |
msgstr "Vše"
|
8040 |
|
8041 |
#: app/skins/monthly_view/calendar.php:69
|
8042 |
-
#: app/skins/monthly_view/calendar.php:
|
8043 |
-
#: app/skins/monthly_view/calendar_clean.php:
|
8044 |
-
#: app/skins/monthly_view/calendar_clean.php:
|
8045 |
#, php-format
|
8046 |
msgid "Events for %s"
|
8047 |
msgstr "Událost pro %s"
|
8048 |
|
8049 |
-
#: app/skins/monthly_view/calendar.php:
|
8050 |
-
#: app/skins/monthly_view/calendar_clean.php:
|
8051 |
-
#: app/skins/timetable/render.php:
|
8052 |
msgid "No Events"
|
8053 |
msgstr "Žádné události"
|
8054 |
|
@@ -8058,21 +8125,21 @@ msgstr "Domů"
|
|
8058 |
|
8059 |
#: app/skins/single.php:554 app/skins/single/default.php:51
|
8060 |
#: app/skins/single/m1.php:261 app/skins/single/m2.php:182
|
8061 |
-
#: app/skins/single/modern.php:
|
8062 |
msgid "Sold out!"
|
8063 |
msgstr "Vyprodáno!"
|
8064 |
|
8065 |
#: app/skins/single.php:833 app/skins/single.php:888
|
8066 |
#: app/skins/single/default.php:227 app/skins/single/default.php:450
|
8067 |
#: app/skins/single/m1.php:109 app/skins/single/m2.php:35
|
8068 |
-
#: app/skins/single/modern.php:
|
8069 |
msgid "Phone"
|
8070 |
msgstr "Telefon"
|
8071 |
|
8072 |
#: app/skins/single.php:847 app/skins/single.php:902
|
8073 |
#: app/skins/single/default.php:241 app/skins/single/default.php:464
|
8074 |
#: app/skins/single/m1.php:123 app/skins/single/m2.php:49
|
8075 |
-
#: app/skins/single/modern.php:
|
8076 |
msgid "Website"
|
8077 |
msgstr "Webová stránka"
|
8078 |
|
@@ -8081,17 +8148,17 @@ msgid "Speakers:"
|
|
8081 |
msgstr "Řečník:"
|
8082 |
|
8083 |
#: app/skins/single/default.php:69 app/skins/single/m1.php:278
|
8084 |
-
#: app/skins/single/m2.php:199 app/skins/single/modern.php:
|
8085 |
msgid "Tags: "
|
8086 |
msgstr "Značky: "
|
8087 |
|
8088 |
-
#: app/skins/timeline/render.php:
|
8089 |
#, fuzzy
|
8090 |
#| msgid "Title of event"
|
8091 |
msgid "Register for event"
|
8092 |
msgstr "Název události"
|
8093 |
|
8094 |
-
#: app/skins/timeline/render.php:
|
8095 |
#, fuzzy
|
8096 |
#| msgid "View Detail"
|
8097 |
msgid "View Details"
|
@@ -8192,6 +8259,11 @@ msgstr "http://webnus.net"
|
|
8192 |
#~ msgid "Auto Facebook import is disabled!"
|
8193 |
#~ msgstr "Auto Facebook Import"
|
8194 |
|
|
|
|
|
|
|
|
|
|
|
8195 |
#, fuzzy
|
8196 |
#~| msgid "Add to Google Calendar"
|
8197 |
#~ msgid "Auto Google Calendar import is disabled!"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar Lite\n"
|
4 |
+
"POT-Creation-Date: 2020-03-31 19:33+0430\n"
|
5 |
+
"PO-Revision-Date: 2020-03-31 19:37+0430\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: cs_CZ\n"
|
32 |
msgid "Content"
|
33 |
msgstr "Obsah"
|
34 |
|
35 |
+
#: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:448
|
36 |
+
#: app/features/mec.php:479 app/features/mec.php:509
|
37 |
msgid "Shortcode"
|
38 |
msgstr "Zkrácený kód"
|
39 |
|
73 |
msgid "Recent Colors"
|
74 |
msgstr "Barva události"
|
75 |
|
76 |
+
#: app/features/contextual.php:55 app/features/mec.php:424
|
77 |
#: app/features/mec/dashboard.php:143 app/features/mec/support.php:20
|
78 |
#: app/features/popup/event.php:60 app/features/popup/shortcode.php:37
|
79 |
#: app/libraries/main.php:594
|
80 |
msgid "Settings"
|
81 |
msgstr "Nastavení"
|
82 |
|
83 |
+
#: app/features/contextual.php:62 app/features/events.php:2479
|
84 |
#: app/features/mec/booking.php:448 app/features/mec/support.php:29
|
85 |
#: app/libraries/main.php:560
|
86 |
msgid "Booking Form"
|
267 |
msgid "BuddyPress Integration"
|
268 |
msgstr "Integrace BuddyPress"
|
269 |
|
270 |
+
#: app/features/contextual.php:334 app/features/mec/settings.php:886
|
271 |
#: app/libraries/main.php:539
|
272 |
msgid "Mailchimp Integration"
|
273 |
msgstr "Integrace Mailchimp"
|
293 |
msgid "Event"
|
294 |
msgstr "Událost"
|
295 |
|
296 |
+
#: app/features/events.php:160 app/features/mec.php:410
|
297 |
msgid "Add Event"
|
298 |
msgstr "Přidat událost"
|
299 |
|
301 |
msgid "Add New Event"
|
302 |
msgstr "Přidat novou událost"
|
303 |
|
304 |
+
#: app/features/events.php:162 app/features/ix.php:3918
|
305 |
+
#: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:68
|
306 |
+
#: app/skins/map/tpl.php:88
|
307 |
msgid "No events found!"
|
308 |
msgstr "Nebyly nalezeny žádné události!"
|
309 |
|
324 |
msgid "No events found in Trash!"
|
325 |
msgstr "V koši nebyly nalezeny žádné události!"
|
326 |
|
327 |
+
#: app/features/events.php:183 app/features/events.php:3357
|
328 |
#: app/features/mec/meta_boxes/display_options.php:1116
|
329 |
#: app/features/mec/meta_boxes/search_form.php:31
|
330 |
#: app/features/mec/meta_boxes/search_form.php:101
|
337 |
#: app/features/mec/meta_boxes/search_form.php:584
|
338 |
#: app/features/mec/meta_boxes/search_form.php:654
|
339 |
#: app/features/mec/meta_boxes/search_form.php:760
|
340 |
+
#: app/features/mec/settings.php:839 app/features/mec/single.php:232
|
341 |
+
#: app/features/search.php:68 app/libraries/main.php:5407
|
342 |
#: app/libraries/skins.php:877 app/skins/single.php:576
|
343 |
#: app/skins/single/default.php:192 app/skins/single/default.php:415
|
344 |
#: app/skins/single/m1.php:184 app/skins/single/m2.php:110
|
345 |
+
#: app/skins/single/modern.php:119
|
346 |
msgid "Category"
|
347 |
msgstr "Kategorie"
|
348 |
|
349 |
+
#: app/features/events.php:184 app/features/events.php:3312
|
350 |
+
#: app/features/fes/form.php:767 app/features/mec.php:412
|
351 |
+
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5406
|
352 |
msgid "Categories"
|
353 |
msgstr "Kategorie"
|
354 |
|
436 |
msgid "Event Repeating"
|
437 |
msgstr "Opakování události"
|
438 |
|
439 |
+
#: app/features/events.php:334 app/features/events.php:1294
|
440 |
#: app/features/mec/settings.php:743 app/skins/single.php:964
|
441 |
msgid "Hourly Schedule"
|
442 |
msgstr "Hodinový rozvrh"
|
453 |
msgid "Links"
|
454 |
msgstr "Odkaz"
|
455 |
|
456 |
+
#: app/features/events.php:337 app/features/events.php:3359
|
457 |
+
#: app/features/events.php:3550 app/features/events.php:3592
|
458 |
#: app/features/ix.php:3508 app/features/ix.php:3549
|
459 |
#: app/features/mec/meta_boxes/display_options.php:1119
|
460 |
#: app/features/mec/meta_boxes/search_form.php:46
|
468 |
#: app/features/mec/meta_boxes/search_form.php:599
|
469 |
#: app/features/mec/meta_boxes/search_form.php:669
|
470 |
#: app/features/mec/meta_boxes/search_form.php:775
|
471 |
+
#: app/features/mec/settings.php:851 app/features/mec/single.php:236
|
472 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
473 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
474 |
#: app/features/organizers.php:271 app/features/popup/event.php:293
|
475 |
#: app/features/popup/event.php:302 app/features/search.php:78
|
476 |
+
#: app/libraries/main.php:5413 app/libraries/skins.php:929
|
477 |
#: app/skins/single.php:823 app/skins/single/default.php:217
|
478 |
#: app/skins/single/default.php:440 app/skins/single/m1.php:99
|
479 |
+
#: app/skins/single/m2.php:25 app/skins/single/modern.php:35
|
480 |
msgid "Organizer"
|
481 |
msgstr "Organizátor"
|
482 |
|
483 |
+
#: app/features/events.php:338 app/features/events.php:1171
|
484 |
+
#: app/features/fes/form.php:740 app/libraries/main.php:5440
|
485 |
#: app/skins/single.php:599 app/skins/single/default.php:126
|
486 |
#: app/skins/single/default.php:349 app/skins/single/m1.php:58
|
487 |
+
#: app/skins/single/modern.php:214
|
488 |
msgid "Cost"
|
489 |
msgstr "Cena"
|
490 |
|
491 |
+
#: app/features/events.php:339 app/features/mec/settings.php:767
|
492 |
+
#: app/features/schema.php:62
|
493 |
+
#, fuzzy
|
494 |
+
#| msgid "Schema"
|
495 |
+
msgid "SEO Schema"
|
496 |
+
msgstr "Schéma"
|
497 |
+
|
498 |
+
#: app/features/events.php:464
|
499 |
msgid "Note for reviewer"
|
500 |
msgstr "Poznámka pro recenzenta"
|
501 |
|
502 |
+
#: app/features/events.php:470
|
503 |
msgid "Guest Data"
|
504 |
msgstr "Údaje hosta"
|
505 |
|
506 |
+
#: app/features/events.php:471 app/features/events.php:2461
|
507 |
+
#: app/features/events.php:3883 app/features/fes.php:223
|
508 |
#: app/features/fes/form.php:699 app/features/labels.php:178
|
509 |
#: app/features/mec/booking.php:45 app/features/organizers.php:279
|
510 |
#: app/features/popup/event.php:312 app/features/profile/profile.php:180
|
511 |
+
#: app/libraries/notifications.php:1141 app/modules/booking/steps/form.php:37
|
512 |
msgid "Name"
|
513 |
msgstr "Jméno"
|
514 |
|
515 |
+
#: app/features/events.php:472 app/features/events.php:2472
|
516 |
+
#: app/features/events.php:2548 app/features/events.php:3886
|
517 |
#: app/features/fes.php:223 app/features/fes/form.php:695
|
518 |
#: app/features/mec/booking.php:57 app/features/mec/booking.php:499
|
519 |
#: app/features/organizers.php:111 app/features/organizers.php:152
|
520 |
#: app/features/profile/profile.php:183 app/features/speakers.php:127
|
521 |
#: app/features/speakers.php:196 app/libraries/main.php:1595
|
522 |
+
#: app/libraries/main.php:1664 app/libraries/main.php:2892
|
523 |
+
#: app/libraries/notifications.php:1142 app/modules/booking/steps/form.php:46
|
524 |
#: app/modules/booking/steps/form.php:83 app/skins/single.php:840
|
525 |
#: app/skins/single.php:895 app/skins/single/default.php:234
|
526 |
#: app/skins/single/default.php:457 app/skins/single/m1.php:116
|
527 |
+
#: app/skins/single/m2.php:42 app/skins/single/modern.php:52
|
528 |
msgid "Email"
|
529 |
msgstr "Email"
|
530 |
|
531 |
+
#: app/features/events.php:480 app/features/fes/form.php:246
|
532 |
msgid "Date and Time"
|
533 |
msgstr "Datum a čas"
|
534 |
|
535 |
+
#: app/features/events.php:483 app/features/events.php:489
|
536 |
+
#: app/features/events.php:3360 app/features/events.php:3550
|
537 |
+
#: app/features/events.php:3592 app/features/fes/form.php:250
|
538 |
#: app/features/fes/form.php:254 app/features/ix.php:3508
|
539 |
#: app/features/ix.php:3549 app/features/ix/import_g_calendar.php:38
|
540 |
#: app/features/mec/dashboard.php:405
|
557 |
msgid "Start Date"
|
558 |
msgstr "Počátečná den"
|
559 |
|
560 |
+
#: app/features/events.php:561 app/features/events.php:653
|
561 |
+
#: app/features/events.php:1734 app/features/events.php:1793
|
562 |
+
#: app/features/events.php:1986 app/features/events.php:2025
|
563 |
#: app/features/fes/form.php:282 app/features/fes/form.php:322
|
564 |
#: app/features/popup/event.php:142 app/features/popup/event.php:224
|
565 |
msgid "AM"
|
566 |
msgstr "dop."
|
567 |
|
568 |
+
#: app/features/events.php:568 app/features/events.php:660
|
569 |
+
#: app/features/events.php:1741 app/features/events.php:1800
|
570 |
+
#: app/features/events.php:1987 app/features/events.php:2026
|
571 |
#: app/features/fes/form.php:283 app/features/fes/form.php:323
|
572 |
#: app/features/popup/event.php:149 app/features/popup/event.php:231
|
573 |
msgid "PM"
|
574 |
msgstr "odp."
|
575 |
|
576 |
+
#: app/features/events.php:575 app/features/events.php:580
|
577 |
+
#: app/features/events.php:3361 app/features/events.php:3550
|
578 |
+
#: app/features/events.php:3592 app/features/fes/form.php:290
|
579 |
#: app/features/fes/form.php:294 app/features/ix.php:3508
|
580 |
#: app/features/ix.php:3549 app/features/ix/import_g_calendar.php:44
|
581 |
#: app/features/mec/dashboard.php:406 app/features/popup/event.php:157
|
582 |
msgid "End Date"
|
583 |
msgstr "Konečný den"
|
584 |
|
585 |
+
#: app/features/events.php:675 app/features/fes/form.php:329
|
586 |
#: app/features/popup/event.php:239
|
587 |
msgid "All Day Event"
|
588 |
msgstr "Celodenní událost"
|
589 |
|
590 |
+
#: app/features/events.php:685 app/features/fes/form.php:332
|
591 |
msgid "Hide Event Time"
|
592 |
msgstr "Skrýt čas události"
|
593 |
|
594 |
+
#: app/features/events.php:695 app/features/fes/form.php:335
|
595 |
msgid "Hide Event End Time"
|
596 |
msgstr "Skrýt čas ukončení události"
|
597 |
|
598 |
+
#: app/features/events.php:700 app/features/events.php:704
|
599 |
#: app/features/fes/form.php:339
|
600 |
msgid "Time Comment"
|
601 |
msgstr "Časový komentář"
|
602 |
|
603 |
+
#: app/features/events.php:705 app/features/fes/form.php:340
|
604 |
msgid ""
|
605 |
"It shows next to event time on single event page. You can insert Timezone "
|
606 |
"etc. in this field."
|
608 |
"Zobrazuje se vedle času události na stránce jedné události. Do tohoto pole "
|
609 |
"můžete vložit časové pásmo atd."
|
610 |
|
611 |
+
#: app/features/events.php:707 app/features/events.php:828
|
612 |
+
#: app/features/events.php:1134 app/features/events.php:1211
|
613 |
+
#: app/features/events.php:1519 app/features/events.php:1609
|
614 |
+
#: app/features/events.php:1821 app/features/events.php:1836
|
615 |
+
#: app/features/events.php:2045 app/features/events.php:2058
|
616 |
+
#: app/features/events.php:2209 app/features/events.php:2245
|
617 |
+
#: app/features/events.php:2343 app/features/events.php:2358
|
618 |
+
#: app/features/events.php:2388 app/features/events.php:2401
|
619 |
#: app/features/fes/form.php:651 app/features/locations.php:301
|
620 |
#: app/features/mec/booking.php:108 app/features/mec/booking.php:158
|
621 |
#: app/features/mec/booking.php:171 app/features/mec/booking.php:187
|
673 |
#: app/features/mec/settings.php:434 app/features/mec/settings.php:451
|
674 |
#: app/features/mec/settings.php:470 app/features/mec/settings.php:484
|
675 |
#: app/features/mec/settings.php:512 app/features/mec/settings.php:599
|
676 |
+
#: app/features/mec/settings.php:778 app/features/mec/settings.php:794
|
677 |
+
#: app/features/mec/settings.php:901 app/features/mec/settings.php:914
|
678 |
+
#: app/features/mec/settings.php:930 app/features/mec/single.php:42
|
679 |
#: app/features/mec/single.php:58 app/features/mec/single.php:77
|
680 |
#: app/features/mec/single.php:94 app/features/mec/single.php:110
|
681 |
#: app/features/mec/single.php:125 app/features/mec/single.php:178
|
685 |
#: app/features/popup/event.php:303 app/skins/single.php:685
|
686 |
#: app/skins/single/default.php:141 app/skins/single/default.php:364
|
687 |
#: app/skins/single/m1.php:206 app/skins/single/m2.php:133
|
688 |
+
#: app/skins/single/modern.php:142
|
689 |
msgid "Read More"
|
690 |
msgstr "Číst více"
|
691 |
|
692 |
+
#: app/features/events.php:715
|
693 |
msgid "Repeating"
|
694 |
msgstr "Opakování"
|
695 |
|
696 |
+
#: app/features/events.php:724
|
697 |
msgid "Event Repeating (Recurring events)"
|
698 |
msgstr "Opakování události (opakující se události)"
|
699 |
|
700 |
+
#: app/features/events.php:728 app/features/fes/form.php:350
|
701 |
msgid "Repeats"
|
702 |
msgstr "Opakování"
|
703 |
|
704 |
+
#: app/features/events.php:736 app/features/fes/form.php:352
|
705 |
#: app/features/mec/dashboard.php:408
|
706 |
+
#: app/skins/default_full_calendar/tpl.php:74
|
707 |
+
#: app/skins/full_calendar/tpl.php:121
|
708 |
msgid "Daily"
|
709 |
msgstr "Děnně"
|
710 |
|
711 |
+
#: app/features/events.php:743 app/features/fes/form.php:353
|
712 |
msgid "Every Weekday"
|
713 |
msgstr "Každý všední den"
|
714 |
|
715 |
+
#: app/features/events.php:750 app/features/fes/form.php:354
|
716 |
msgid "Every Weekend"
|
717 |
msgstr "Každý víkend"
|
718 |
|
719 |
+
#: app/features/events.php:757 app/features/fes/form.php:355
|
720 |
msgid "Certain Weekdays"
|
721 |
msgstr "Určité pracovní dny"
|
722 |
|
723 |
+
#: app/features/events.php:764 app/features/fes/form.php:356
|
724 |
+
#: app/skins/default_full_calendar/tpl.php:73
|
725 |
+
#: app/skins/full_calendar/tpl.php:120
|
726 |
msgid "Weekly"
|
727 |
msgstr "Týdně"
|
728 |
|
729 |
+
#: app/features/events.php:771 app/features/fes/form.php:357
|
730 |
#: app/features/mec/dashboard.php:409
|
731 |
+
#: app/skins/default_full_calendar/tpl.php:72
|
732 |
+
#: app/skins/full_calendar/tpl.php:119
|
733 |
msgid "Monthly"
|
734 |
msgstr "Měsíčně"
|
735 |
|
736 |
+
#: app/features/events.php:778 app/features/fes/form.php:358
|
737 |
#: app/features/mec/dashboard.php:410
|
738 |
+
#: app/skins/default_full_calendar/tpl.php:71
|
739 |
+
#: app/skins/full_calendar/tpl.php:118
|
740 |
msgid "Yearly"
|
741 |
msgstr "Ročně"
|
742 |
|
743 |
+
#: app/features/events.php:785 app/features/fes/form.php:359
|
744 |
msgid "Custom Days"
|
745 |
msgstr "Vlastní dny"
|
746 |
|
747 |
+
#: app/features/events.php:792 app/features/fes/form.php:360
|
748 |
msgid "Advanced"
|
749 |
msgstr "Pokročilé"
|
750 |
|
751 |
+
#: app/features/events.php:797 app/features/fes/form.php:364
|
752 |
msgid "Repeat Interval"
|
753 |
msgstr "Interval opakování"
|
754 |
|
755 |
+
#: app/features/events.php:799 app/features/fes/form.php:365
|
756 |
msgid "Repeat interval"
|
757 |
msgstr "Interval opakování"
|
758 |
|
759 |
+
#: app/features/events.php:803 app/features/fes/form.php:368
|
760 |
msgid "Week Days"
|
761 |
msgstr "Dny v týdnu"
|
762 |
|
763 |
+
#: app/features/events.php:818 app/features/events.php:1905
|
764 |
+
#: app/features/events.php:1933 app/features/events.php:2113
|
765 |
#: app/features/fes/form.php:380 app/features/ix/import_f_calendar.php:42
|
766 |
#: app/features/ix/import_g_calendar.php:51
|
767 |
#: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
|
768 |
msgid "Start"
|
769 |
msgstr "Začátek"
|
770 |
|
771 |
+
#: app/features/events.php:820 app/features/events.php:1909
|
772 |
+
#: app/features/events.php:1937 app/features/events.php:2117
|
773 |
#: app/features/fes/form.php:381
|
774 |
msgid "End"
|
775 |
msgstr "Konec"
|
776 |
|
777 |
+
#: app/features/events.php:822 app/features/events.php:1205
|
778 |
+
#: app/features/events.php:1325 app/features/events.php:1430
|
779 |
+
#: app/features/events.php:1888 app/features/events.php:2102
|
780 |
+
#: app/features/events.php:2182 app/features/events.php:2315
|
781 |
#: app/features/fes/form.php:382 app/features/fes/form.php:865
|
782 |
msgid "Add"
|
783 |
msgstr "Přidat"
|
784 |
|
785 |
+
#: app/features/events.php:825
|
786 |
msgid "Custom Days Repeating"
|
787 |
msgstr "Opakování vlastních dnů"
|
788 |
|
789 |
+
#: app/features/events.php:826
|
790 |
msgid ""
|
791 |
"Add certain days to event occurrence dates. If you have single day event, "
|
792 |
"start and end date should be the same, If you have multiple day event the "
|
796 |
"datum zahájení a ukončení by mělo být stejné. Pokud máte vícedenní událost, "
|
797 |
"datum zahájení a ukončení musí odpovídat počátečnímu datu."
|
798 |
|
799 |
+
#: app/features/events.php:868 app/features/fes/form.php:415
|
800 |
msgid "First"
|
801 |
msgstr "První"
|
802 |
|
803 |
+
#: app/features/events.php:910 app/features/fes/form.php:457
|
804 |
msgid "Second"
|
805 |
msgstr "Druhá"
|
806 |
|
807 |
+
#: app/features/events.php:952 app/features/fes/form.php:499
|
808 |
msgid "Third"
|
809 |
msgstr "Třetí"
|
810 |
|
811 |
+
#: app/features/events.php:994 app/features/fes/form.php:541
|
812 |
msgid "Fourth"
|
813 |
msgstr "Čtvrtá"
|
814 |
|
815 |
+
#: app/features/events.php:1036 app/features/fes/form.php:583
|
816 |
msgid "Last"
|
817 |
msgstr "Poslední"
|
818 |
|
819 |
+
#: app/features/events.php:1083 app/features/fes/form.php:629
|
820 |
msgid "Ends Repeat"
|
821 |
msgstr "Ukončení opakování"
|
822 |
|
823 |
+
#: app/features/events.php:1095 app/features/fes/form.php:633
|
824 |
msgid "Never"
|
825 |
msgstr "Nikdy"
|
826 |
|
827 |
# Možná Zapnuto
|
828 |
+
#: app/features/events.php:1107 app/features/fes/form.php:638
|
829 |
msgid "On"
|
830 |
msgstr "Na"
|
831 |
|
832 |
+
#: app/features/events.php:1123 app/features/fes/form.php:645
|
833 |
msgid "After"
|
834 |
msgstr "Po"
|
835 |
|
836 |
+
#: app/features/events.php:1127 app/features/events.php:1131
|
837 |
#: app/features/fes/form.php:647 app/features/fes/form.php:650
|
838 |
msgid "Occurrences times"
|
839 |
msgstr "Časy výskytu"
|
840 |
|
841 |
+
#: app/features/events.php:1132 app/features/fes/form.php:651
|
842 |
msgid ""
|
843 |
"The event will finish after certain repeats. For example if you set it to "
|
844 |
"10, the event will finish after 10 repeats."
|
846 |
"Událost bude ukončena po určitých opakováních. Pokud například nastavíte "
|
847 |
"hodnotu 10, událost skončí po 10 opakováních."
|
848 |
|
849 |
+
#: app/features/events.php:1147 app/features/fes/form.php:664
|
850 |
#, fuzzy
|
851 |
#| msgid "Next Occurrence of Other Events"
|
852 |
msgid "Show only one occurrence of this event"
|
853 |
msgstr "Další výskyt dalších událostí"
|
854 |
|
855 |
+
#: app/features/events.php:1167 app/features/events.php:3550
|
856 |
+
#: app/features/events.php:3592 app/features/fes/form.php:737
|
857 |
#: app/features/ix.php:3508 app/features/ix.php:3549
|
858 |
+
#: app/features/mec/settings.php:689 app/libraries/main.php:5439
|
859 |
#: app/widgets/single.php:103
|
860 |
msgid "Event Cost"
|
861 |
msgstr "Cena události"
|
862 |
|
863 |
+
#: app/features/events.php:1192
|
864 |
msgid "Exceptional Days (Exclude Dates)"
|
865 |
msgstr "Výjimečné dny (vyjma dat)"
|
866 |
|
867 |
+
#: app/features/events.php:1198 app/features/events.php:1208
|
868 |
msgid "Exclude certain days"
|
869 |
msgstr "Vyloučit určité dny"
|
870 |
|
871 |
+
#: app/features/events.php:1203 app/features/events.php:2549
|
872 |
#: app/features/fes.php:223 app/features/mec/booking.php:500
|
873 |
+
#: app/features/profile/profile.php:53 app/libraries/main.php:2302
|
874 |
+
#: app/libraries/main.php:2950 app/modules/booking/steps/tickets.php:23
|
875 |
#: app/modules/next-event/details.php:93 app/skins/single.php:659
|
876 |
#: app/skins/single/default.php:85 app/skins/single/default.php:308
|
877 |
+
#: app/skins/single/m1.php:20 app/skins/single/modern.php:176
|
878 |
msgid "Date"
|
879 |
msgstr "Datum"
|
880 |
|
881 |
+
#: app/features/events.php:1209
|
882 |
msgid ""
|
883 |
"Exclude certain days from event occurrence dates. Please note that you can "
|
884 |
"exclude only single day occurrences and you cannot exclude one day from "
|
888 |
"můžete vyloučit pouze výskyty za jeden den a nelze vyloučit jeden den z "
|
889 |
"vícedenních výskytů."
|
890 |
|
891 |
+
#: app/features/events.php:1268 app/libraries/render.php:506
|
892 |
msgid "Day 1"
|
893 |
msgstr "Den 1"
|
894 |
|
895 |
+
#: app/features/events.php:1298
|
896 |
msgid "Add Day"
|
897 |
msgstr "Přidat den"
|
898 |
|
899 |
+
#: app/features/events.php:1299
|
900 |
msgid ""
|
901 |
"Add new days for schedule. For example if your event is multiple days, you "
|
902 |
"can add a different schedule for each day!"
|
904 |
"Přidat nové dny pro rozvrh. Pokud je například vaše akce vícedenní, můžete "
|
905 |
"pro každý den přidat jiný rozvrh!"
|
906 |
|
907 |
+
#: app/features/events.php:1306
|
908 |
#, php-format
|
909 |
msgid "Day %s"
|
910 |
msgstr "Den %s"
|
911 |
|
912 |
+
#: app/features/events.php:1310 app/features/events.php:1349
|
913 |
+
#: app/features/events.php:1384 app/features/events.php:1416
|
914 |
+
#: app/features/events.php:1445 app/features/events.php:2330
|
915 |
+
#: app/features/events.php:2377 app/features/events.php:3356
|
916 |
+
#: app/features/events.php:3550 app/features/events.php:3592
|
917 |
#: app/features/fes/form.php:239 app/features/ix.php:3508
|
918 |
#: app/features/ix.php:3549 app/features/mec/booking.php:384
|
919 |
#: app/features/mec/booking.php:416 app/features/mec/styling.php:130
|
920 |
msgid "Title"
|
921 |
msgstr "Název"
|
922 |
|
923 |
+
#: app/features/events.php:1319 app/features/events.php:1356
|
924 |
+
#: app/features/events.php:1389 app/features/events.php:1424
|
925 |
+
#: app/features/events.php:1450 app/features/events.php:1919
|
926 |
+
#: app/features/events.php:1945 app/features/events.php:2123
|
927 |
+
#: app/features/events.php:2222 app/features/events.php:2258
|
928 |
+
#: app/features/events.php:2365 app/features/events.php:2407
|
929 |
#: app/features/mec/booking.php:327 app/features/mec/booking.php:356
|
930 |
#: app/features/mec/booking.php:407 app/features/mec/booking.php:439
|
931 |
+
#: app/libraries/main.php:2811 app/libraries/main.php:2841
|
932 |
+
#: app/libraries/main.php:2870 app/libraries/main.php:2900
|
933 |
+
#: app/libraries/main.php:2929 app/libraries/main.php:2958
|
934 |
+
#: app/libraries/main.php:2987 app/libraries/main.php:3016
|
935 |
+
#: app/libraries/main.php:3038 app/libraries/main.php:3069
|
936 |
+
#: app/libraries/main.php:3113 app/libraries/main.php:3157
|
937 |
+
#: app/libraries/main.php:3204 app/libraries/main.php:3243
|
938 |
msgid "Remove"
|
939 |
msgstr "Odstranit"
|
940 |
|
941 |
+
#: app/features/events.php:1326 app/features/events.php:1431
|
942 |
msgid "Add new hourly schedule row"
|
943 |
msgstr "Přidejte nový řádek rozvrhu hodin"
|
944 |
|
945 |
+
#: app/features/events.php:1341 app/features/events.php:1378
|
946 |
+
#: app/features/events.php:1440
|
947 |
msgid "From e.g. 8:15"
|
948 |
msgstr "Od např. 8:15"
|
949 |
|
950 |
+
#: app/features/events.php:1345 app/features/events.php:1381
|
951 |
+
#: app/features/events.php:1442
|
952 |
msgid "To e.g. 8:45"
|
953 |
msgstr "Do např. 8:45"
|
954 |
|
955 |
+
#: app/features/events.php:1353 app/features/events.php:1387
|
956 |
+
#: app/features/events.php:1448 app/features/events.php:1809
|
957 |
+
#: app/features/events.php:2034
|
958 |
msgid "Description"
|
959 |
msgstr "Popis"
|
960 |
|
961 |
+
#: app/features/events.php:1359 app/features/events.php:1392
|
962 |
+
#: app/features/events.php:1453 app/features/fes/form.php:861
|
963 |
+
#: app/features/mec.php:420 app/features/mec/modules.php:52
|
964 |
#: app/features/mec/settings.php:737 app/features/speakers.php:62
|
965 |
+
#: app/libraries/main.php:565 app/libraries/main.php:5414
|
966 |
#: app/modules/speakers/details.php:18
|
967 |
msgid "Speakers"
|
968 |
msgstr "Řečníci"
|
969 |
|
970 |
+
#: app/features/events.php:1412 app/features/events.php:1420
|
971 |
msgid "New Day"
|
972 |
msgstr "Nový den"
|
973 |
|
974 |
+
#: app/features/events.php:1484 app/features/fes/form.php:714
|
975 |
#: app/features/mec/settings.php:683
|
976 |
msgid "Event Links"
|
977 |
msgstr "Odkazy na událost"
|
978 |
|
979 |
+
#: app/features/events.php:1487 app/features/events.php:1493
|
980 |
+
#: app/features/fes/form.php:716 app/libraries/main.php:5437
|
981 |
msgid "Event Link"
|
982 |
msgstr "Odkaz na událost"
|
983 |
|
984 |
+
#: app/features/events.php:1490 app/features/events.php:1506
|
985 |
#: app/features/fes/form.php:717 app/features/fes/form.php:722
|
986 |
msgid "eg. http://yoursite.com/your-event"
|
987 |
msgstr "např. http://yoursite.com/vase-udalost"
|
988 |
|
989 |
+
#: app/features/events.php:1494
|
990 |
msgid ""
|
991 |
"If you fill it, it will be replaced instead of default event page link. "
|
992 |
"Insert full link including http(s):// - Also, if you use advertising URL, "
|
996 |
"Vložte úplný odkaz včetně http (s): // - Pokud používáte reklamní adresu "
|
997 |
"URL, můžete také použít zkracovač URL"
|
998 |
|
999 |
+
#: app/features/events.php:1496
|
1000 |
msgid "URL Shortener"
|
1001 |
msgstr "Zkracovač URL"
|
1002 |
|
1003 |
+
#: app/features/events.php:1503 app/features/events.php:1516
|
1004 |
+
#: app/features/fes/form.php:721 app/libraries/main.php:5438
|
1005 |
#: app/skins/single.php:684 app/skins/single/default.php:140
|
1006 |
#: app/skins/single/default.php:363 app/skins/single/m1.php:205
|
1007 |
+
#: app/skins/single/m2.php:132 app/skins/single/modern.php:141
|
1008 |
#: app/widgets/single.php:107
|
1009 |
msgid "More Info"
|
1010 |
msgstr "Více info"
|
1011 |
|
1012 |
+
#: app/features/events.php:1509 app/features/fes/form.php:723
|
1013 |
msgid "More Information"
|
1014 |
msgstr "Více informací"
|
1015 |
|
1016 |
+
#: app/features/events.php:1511 app/features/fes/form.php:725
|
1017 |
msgid "Current Window"
|
1018 |
msgstr "Aktuální okno"
|
1019 |
|
1020 |
+
#: app/features/events.php:1512 app/features/fes/form.php:726
|
1021 |
msgid "New Window"
|
1022 |
msgstr "Nové okno"
|
1023 |
|
1024 |
+
#: app/features/events.php:1517 app/features/fes/form.php:728
|
1025 |
msgid ""
|
1026 |
"If you fill it, it will be shown in event details page as an optional link. "
|
1027 |
"Insert full link including http(s)://"
|
1029 |
"Pokud ji vyplníte, zobrazí se jako volitelný odkaz na stránce s podrobnostmi "
|
1030 |
"o události. Vložte celý odkaz včetně http (s): //"
|
1031 |
|
1032 |
+
#: app/features/events.php:1590 app/features/events.php:1605
|
1033 |
msgid "Total booking limits"
|
1034 |
msgstr "Celkové limity rezervace"
|
1035 |
|
1036 |
+
#: app/features/events.php:1602 app/features/events.php:1857
|
1037 |
+
#: app/features/events.php:2072 app/modules/booking/default.php:85
|
1038 |
#: app/modules/booking/steps/tickets.php:43
|
1039 |
+
#: app/skins/available_spot/tpl.php:120
|
1040 |
msgid "Unlimited"
|
1041 |
msgstr "Neomezené"
|
1042 |
|
1043 |
+
#: app/features/events.php:1608
|
1044 |
msgid ""
|
1045 |
"If you want to set a limit to all tickets, uncheck this checkbox and put a "
|
1046 |
"limitation number."
|
1048 |
"Pokud chcete nastavit limit na všechny lístky, zrušte zaškrtnutí tohoto "
|
1049 |
"políčka a zadejte číslo omezení."
|
1050 |
|
1051 |
+
#: app/features/events.php:1610
|
1052 |
msgid "Read About A Booking System"
|
1053 |
msgstr "Přečtěte si o rezervačním systému"
|
1054 |
|
1055 |
+
#: app/features/events.php:1618
|
1056 |
msgid "100"
|
1057 |
msgstr "100"
|
1058 |
|
1059 |
+
#: app/features/events.php:1623
|
1060 |
msgid "Total user booking limits"
|
1061 |
msgstr "Celkové limity rezervace uživatelů"
|
1062 |
|
1063 |
+
#: app/features/events.php:1635 app/features/events.php:2171
|
1064 |
+
#: app/features/events.php:2303 app/features/events.php:2491
|
1065 |
msgid "Inherit from global options"
|
1066 |
msgstr "Zdědí z globálních možností"
|
1067 |
|
1068 |
+
#: app/features/events.php:1638
|
1069 |
msgid "12"
|
1070 |
msgstr "12"
|
1071 |
|
1072 |
+
#: app/features/events.php:1661 app/libraries/book.php:60
|
1073 |
+
#: app/libraries/main.php:5442 app/modules/booking/steps/tickets.php:43
|
1074 |
msgid "Tickets"
|
1075 |
msgstr "Vstupenky"
|
1076 |
|
1077 |
+
#: app/features/events.php:1664
|
1078 |
msgid ""
|
1079 |
"You're translating an event so MEC will use the original event for tickets "
|
1080 |
"and booking. You can only translate the ticket name and description. Please "
|
1084 |
"vstupenek a rezervace. Můžete přeložit pouze název a popis vstupenky. Prosím "
|
1085 |
"definujte určité vstupenky, které jste definovali v původní události."
|
1086 |
|
1087 |
+
#: app/features/events.php:1669
|
1088 |
#, fuzzy
|
1089 |
#| msgid "Ticket"
|
1090 |
msgid "Add Ticket"
|
1091 |
msgstr "Vstupenka"
|
1092 |
|
1093 |
+
#: app/features/events.php:1683 app/features/events.php:1959
|
1094 |
msgid "Ticket Name"
|
1095 |
msgstr "Název vstupenky"
|
1096 |
|
1097 |
+
#: app/features/events.php:1688 app/features/events.php:1963
|
1098 |
+
#: app/features/events.php:3550 app/features/events.php:3592
|
1099 |
#: app/features/ix.php:3508 app/features/ix.php:3549
|
1100 |
msgid "Start Time"
|
1101 |
msgstr "Začátek"
|
1102 |
|
1103 |
+
#: app/features/events.php:1747 app/features/events.php:1993
|
1104 |
+
#: app/features/events.php:3550 app/features/events.php:3592
|
1105 |
#: app/features/ix.php:3508 app/features/ix.php:3549
|
1106 |
msgid "End Time"
|
1107 |
msgstr "Konec"
|
1108 |
|
1109 |
+
#: app/features/events.php:1814 app/features/events.php:1818
|
1110 |
+
#: app/features/events.php:1913 app/features/events.php:1940
|
1111 |
+
#: app/features/events.php:2039 app/features/events.php:2042
|
1112 |
+
#: app/features/events.php:2119 app/features/events.php:2336
|
1113 |
+
#: app/features/events.php:2340 app/features/events.php:2382
|
1114 |
+
#: app/features/events.php:2385 app/features/mec/booking.php:388
|
1115 |
#: app/features/mec/booking.php:391 app/features/mec/booking.php:420
|
1116 |
#: app/features/mec/booking.php:423
|
1117 |
msgid "Price"
|
1118 |
msgstr "Cena"
|
1119 |
|
1120 |
+
#: app/features/events.php:1819 app/features/events.php:2043
|
1121 |
+
#, fuzzy
|
1122 |
+
#| msgid "Insert 0 for free ticket. Only numbers please."
|
1123 |
+
msgid ""
|
1124 |
+
"Insert 0 for free ticket. Only numbers please — Enter only the price without "
|
1125 |
+
"any symbols or characters."
|
1126 |
msgstr "Vložte 0 pro vstupenku zdarma. Prosím pouze čísla."
|
1127 |
|
1128 |
+
#: app/features/events.php:1828 app/features/events.php:1833
|
1129 |
+
#: app/features/events.php:2052 app/features/events.php:2055
|
1130 |
msgid "Price Label"
|
1131 |
msgstr "Cenový štítek"
|
1132 |
|
1133 |
+
#: app/features/events.php:1834 app/features/events.php:2056
|
1134 |
msgid "For showing on website. e.g. $15"
|
1135 |
msgstr "Pro zobrazení na webu. např. 15 $"
|
1136 |
|
1137 |
+
#: app/features/events.php:1844 app/features/events.php:2066
|
1138 |
msgid "Available Tickets"
|
1139 |
msgstr "Dostupné vstupenky"
|
1140 |
|
1141 |
+
#: app/features/events.php:1861 app/features/events.php:2076
|
1142 |
#, fuzzy
|
1143 |
#| msgid "Maximum Per Ticket"
|
1144 |
msgid "Minimum Ticket e.g. 3"
|
1145 |
msgstr "Maximum na jednu vstupenku"
|
1146 |
|
1147 |
+
#: app/features/events.php:1864 app/features/events.php:2079
|
1148 |
#, fuzzy
|
1149 |
#| msgid "Maximum Per Ticket"
|
1150 |
msgid "MinimumTicket"
|
1151 |
msgstr "Maximum na jednu vstupenku"
|
1152 |
|
1153 |
+
#: app/features/events.php:1866 app/features/events.php:2081
|
1154 |
msgid "Set a number for the minimum ticket reservation"
|
1155 |
msgstr ""
|
1156 |
|
1157 |
+
#: app/features/events.php:1874 app/features/events.php:2089
|
1158 |
msgid "e.g. 0"
|
1159 |
msgstr ""
|
1160 |
|
1161 |
+
#: app/features/events.php:1876 app/features/events.php:2091
|
1162 |
#, fuzzy
|
1163 |
#| msgid "Days"
|
1164 |
msgid "Day"
|
1165 |
msgstr "Dny"
|
1166 |
|
1167 |
+
#: app/features/events.php:1877 app/features/events.php:2092
|
1168 |
msgid "Hour"
|
1169 |
msgstr ""
|
1170 |
|
1171 |
+
#: app/features/events.php:1879 app/features/events.php:2094
|
1172 |
#, php-format
|
1173 |
msgid "Stop selling ticket %s before event start."
|
1174 |
msgstr ""
|
1175 |
|
1176 |
+
#: app/features/events.php:1886 app/features/events.php:2100
|
1177 |
msgid "Price per Date"
|
1178 |
msgstr "Cena za datum"
|
1179 |
|
1180 |
+
#: app/features/events.php:1917 app/features/events.php:1943
|
1181 |
+
#: app/features/events.php:2121 app/features/labels.php:60
|
1182 |
#: app/features/mec/meta_boxes/display_options.php:1117
|
1183 |
#: app/features/mec/meta_boxes/search_form.php:67
|
1184 |
#: app/features/mec/meta_boxes/search_form.php:137
|
1191 |
#: app/features/mec/meta_boxes/search_form.php:620
|
1192 |
#: app/features/mec/meta_boxes/search_form.php:690
|
1193 |
#: app/features/mec/meta_boxes/search_form.php:796
|
1194 |
+
#: app/features/mec/settings.php:871 app/features/mec/single.php:250
|
1195 |
#: app/libraries/skins.php:1007
|
1196 |
msgid "Label"
|
1197 |
msgstr "Štítek"
|
1198 |
|
1199 |
+
#: app/features/events.php:2159
|
1200 |
msgid "Fees"
|
1201 |
msgstr "Poplatky"
|
1202 |
|
1203 |
+
#: app/features/events.php:2196 app/features/events.php:2234
|
1204 |
#: app/features/mec/booking.php:307 app/features/mec/booking.php:336
|
1205 |
msgid "Fee Title"
|
1206 |
msgstr "Název poplatku"
|
1207 |
|
1208 |
+
#: app/features/events.php:2202 app/features/events.php:2206
|
1209 |
+
#: app/features/events.php:2239 app/features/events.php:2242
|
1210 |
#: app/features/mec/booking.php:311 app/features/mec/booking.php:314
|
1211 |
#: app/features/mec/booking.php:340 app/features/mec/booking.php:343
|
1212 |
msgid "Amount"
|
1213 |
msgstr "Množství"
|
1214 |
|
1215 |
+
#: app/features/events.php:2207 app/features/events.php:2243
|
1216 |
#: app/features/mec/booking.php:315 app/features/mec/booking.php:344
|
1217 |
msgid ""
|
1218 |
"Fee amount, considered as fixed amount if you set the type to amount "
|
1221 |
"Výše poplatku, je považovaná za pevnou částku, pokud nastavíte typ na částku "
|
1222 |
"odpovídající procentuální hodnotě"
|
1223 |
|
1224 |
+
#: app/features/events.php:2216 app/features/events.php:2252
|
1225 |
#: app/features/mec/booking.php:322 app/features/mec/booking.php:351
|
1226 |
msgid "Percent"
|
1227 |
msgstr "Procent"
|
1228 |
|
1229 |
+
#: app/features/events.php:2217 app/features/events.php:2253
|
1230 |
#: app/features/mec/booking.php:323 app/features/mec/booking.php:352
|
1231 |
msgid "Amount (Per Ticket)"
|
1232 |
msgstr "Částka (za vstupenku)"
|
1233 |
|
1234 |
+
#: app/features/events.php:2218 app/features/events.php:2254
|
1235 |
#: app/features/mec/booking.php:324 app/features/mec/booking.php:353
|
1236 |
msgid "Amount (Per Booking)"
|
1237 |
msgstr "Částka (za rezervaci)"
|
1238 |
|
1239 |
+
#: app/features/events.php:2291 app/features/mec/settings.php:761
|
1240 |
msgid "Ticket Variations / Options"
|
1241 |
msgstr "Varianty vstupenky / možnosti"
|
1242 |
|
1243 |
+
#: app/features/events.php:2341 app/features/events.php:2386
|
1244 |
#: app/features/mec/booking.php:392 app/features/mec/booking.php:424
|
1245 |
msgid "Option Price"
|
1246 |
msgstr "Možnosti ceny"
|
1247 |
|
1248 |
+
#: app/features/events.php:2351 app/features/events.php:2355
|
1249 |
+
#: app/features/events.php:2395 app/features/events.php:2398
|
1250 |
#: app/features/mec/booking.php:398 app/features/mec/booking.php:401
|
1251 |
#: app/features/mec/booking.php:430 app/features/mec/booking.php:433
|
1252 |
msgid "Maximum Per Ticket"
|
1253 |
msgstr "Maximum na jednu vstupenku"
|
1254 |
|
1255 |
+
#: app/features/events.php:2356 app/features/events.php:2399
|
1256 |
#: app/features/mec/booking.php:402 app/features/mec/booking.php:434
|
1257 |
msgid "Maximum Per Ticket. Leave it blank for unlimited."
|
1258 |
msgstr "Maximum na jednu vstupenku. Ponechte to prázdné pro neomezené."
|
1259 |
|
1260 |
+
#: app/features/events.php:2545 app/features/mec/booking.php:496
|
1261 |
+
#: app/libraries/main.php:2833
|
1262 |
msgid "MEC Name"
|
1263 |
msgstr "MEC Jméno"
|
1264 |
|
1265 |
+
#: app/features/events.php:2546 app/features/mec/booking.php:497
|
1266 |
+
#: app/libraries/main.php:2862
|
1267 |
msgid "MEC Email"
|
1268 |
msgstr "MEC Email"
|
1269 |
|
1270 |
+
#: app/features/events.php:2547 app/features/mec/booking.php:498
|
1271 |
+
#: app/libraries/main.php:2803
|
1272 |
msgid "Text"
|
1273 |
msgstr "Text"
|
1274 |
|
1275 |
+
#: app/features/events.php:2550 app/features/mec/booking.php:501
|
1276 |
#: app/features/organizers.php:103 app/features/organizers.php:148
|
1277 |
#: app/features/speakers.php:119 app/features/speakers.php:192
|
1278 |
+
#: app/features/speakers.php:271 app/libraries/main.php:2979
|
1279 |
msgid "Tel"
|
1280 |
msgstr "Tel"
|
1281 |
|
1282 |
+
#: app/features/events.php:2551 app/features/mec/booking.php:502
|
1283 |
+
#: app/libraries/main.php:2921
|
1284 |
msgid "File"
|
1285 |
msgstr "Soubor"
|
1286 |
|
1287 |
+
#: app/features/events.php:2552 app/features/mec/booking.php:503
|
1288 |
+
#: app/libraries/main.php:3008
|
1289 |
msgid "Textarea"
|
1290 |
msgstr "Plocha textu"
|
1291 |
|
1292 |
+
#: app/features/events.php:2553 app/features/mec/booking.php:504
|
1293 |
+
#: app/libraries/main.php:3061
|
1294 |
msgid "Checkboxes"
|
1295 |
msgstr "Zatržítko"
|
1296 |
|
1297 |
+
#: app/features/events.php:2554 app/features/mec/booking.php:505
|
1298 |
+
#: app/libraries/main.php:3105
|
1299 |
msgid "Radio Buttons"
|
1300 |
msgstr "Přepínače"
|
1301 |
|
1302 |
+
#: app/features/events.php:2555 app/features/mec/booking.php:506
|
1303 |
#: app/features/mec/meta_boxes/search_form.php:34
|
1304 |
#: app/features/mec/meta_boxes/search_form.php:41
|
1305 |
#: app/features/mec/meta_boxes/search_form.php:49
|
1375 |
#: app/features/mec/meta_boxes/search_form.php:785
|
1376 |
#: app/features/mec/meta_boxes/search_form.php:792
|
1377 |
#: app/features/mec/meta_boxes/search_form.php:799
|
1378 |
+
#: app/features/mec/meta_boxes/search_form.php:813 app/libraries/main.php:3149
|
1379 |
msgid "Dropdown"
|
1380 |
msgstr "Rozbalovací"
|
1381 |
|
1382 |
+
#: app/features/events.php:2556 app/features/mec/booking.php:507
|
1383 |
+
#: app/libraries/main.php:3196
|
1384 |
msgid "Agreement"
|
1385 |
msgstr "Smlouva"
|
1386 |
|
1387 |
+
#: app/features/events.php:2557 app/features/mec/booking.php:508
|
1388 |
+
#: app/libraries/main.php:3037
|
1389 |
msgid "Paragraph"
|
1390 |
msgstr "Paragraf"
|
1391 |
|
1392 |
+
#: app/features/events.php:3258 app/features/events.php:3276
|
1393 |
+
#: app/features/events.php:3294 app/features/events.php:3312
|
1394 |
#, php-format
|
1395 |
msgid "Show all %s"
|
1396 |
msgstr "Ukázat všechny %s"
|
1397 |
|
1398 |
+
#: app/features/events.php:3258
|
1399 |
msgid "labels"
|
1400 |
msgstr "štítky"
|
1401 |
|
1402 |
+
#: app/features/events.php:3276
|
1403 |
msgid "locations"
|
1404 |
msgstr "umístění"
|
1405 |
|
1406 |
+
#: app/features/events.php:3294
|
1407 |
msgid "organizers"
|
1408 |
msgstr "organizátoři"
|
1409 |
|
1410 |
+
#: app/features/events.php:3328
|
1411 |
#, fuzzy
|
1412 |
#| msgid "Attendees Limit"
|
1413 |
msgid "Attendees List"
|
1414 |
msgstr "Limit účastníků"
|
1415 |
|
1416 |
+
#: app/features/events.php:3358 app/features/events.php:3550
|
1417 |
+
#: app/features/events.php:3592 app/features/ix.php:3508
|
1418 |
#: app/features/ix.php:3549 app/features/locations.php:58
|
1419 |
#: app/features/locations.php:232 app/features/locations.php:289
|
1420 |
#: app/features/locations.php:291 app/features/locations.php:300
|
1430 |
#: app/features/mec/meta_boxes/search_form.php:591
|
1431 |
#: app/features/mec/meta_boxes/search_form.php:661
|
1432 |
#: app/features/mec/meta_boxes/search_form.php:767
|
1433 |
+
#: app/features/mec/settings.php:845 app/features/mec/single.php:240
|
1434 |
#: app/features/popup/event.php:246 app/features/popup/event.php:255
|
1435 |
+
#: app/features/search.php:73 app/libraries/main.php:2296
|
1436 |
+
#: app/libraries/main.php:5411 app/libraries/skins.php:903
|
1437 |
#: app/skins/single.php:503 app/skins/single.php:941
|
1438 |
#: app/skins/single/default.php:176 app/skins/single/default.php:399
|
1439 |
#: app/skins/single/m1.php:169 app/skins/single/m2.php:95
|
1440 |
+
#: app/skins/single/modern.php:103
|
1441 |
msgid "Location"
|
1442 |
msgstr "Umístění"
|
1443 |
|
1444 |
+
#: app/features/events.php:3363
|
1445 |
msgid "Repeat"
|
1446 |
msgstr "Opakovat"
|
1447 |
|
1448 |
+
#: app/features/events.php:3364
|
1449 |
msgid "Author"
|
1450 |
msgstr "Autor"
|
1451 |
|
1452 |
+
#: app/features/events.php:3485 app/features/events.php:3486
|
1453 |
msgid "iCal Export"
|
1454 |
msgstr "iCal Export"
|
1455 |
|
1456 |
+
#: app/features/events.php:3488 app/features/events.php:3489
|
1457 |
msgid "CSV Export"
|
1458 |
msgstr "CSV Export"
|
1459 |
|
1460 |
+
#: app/features/events.php:3491 app/features/events.php:3492
|
1461 |
msgid "MS Excel Export"
|
1462 |
msgstr "MS Excel Export"
|
1463 |
|
1464 |
+
#: app/features/events.php:3494 app/features/events.php:3495
|
1465 |
msgid "XML Export"
|
1466 |
msgstr "XML Export"
|
1467 |
|
1468 |
+
#: app/features/events.php:3497 app/features/events.php:3498
|
1469 |
msgid "JSON Export"
|
1470 |
msgstr "JSON Export"
|
1471 |
|
1472 |
+
#: app/features/events.php:3500 app/features/events.php:3501
|
1473 |
+
#: app/features/events.php:3683
|
1474 |
msgid "Duplicate"
|
1475 |
msgstr "Duplikát"
|
1476 |
|
1477 |
+
#: app/features/events.php:3550 app/features/events.php:3592
|
1478 |
#: app/features/fes.php:223 app/features/ix.php:3508 app/features/ix.php:3549
|
1479 |
#: app/features/labels.php:177 app/features/locations.php:231
|
1480 |
#: app/features/organizers.php:203 app/features/speakers.php:268
|
1481 |
msgid "ID"
|
1482 |
msgstr "ID"
|
1483 |
|
1484 |
+
#: app/features/events.php:3550 app/features/events.php:3592
|
1485 |
#: app/features/ix.php:3508 app/features/ix.php:3549
|
1486 |
msgid "Link"
|
1487 |
msgstr "Odkaz"
|
1488 |
|
1489 |
+
#: app/features/events.php:3550 app/features/events.php:3592
|
1490 |
#, php-format
|
1491 |
msgid "%s Tel"
|
1492 |
msgstr "%s Tel"
|
1493 |
|
1494 |
+
#: app/features/events.php:3550 app/features/events.php:3592
|
1495 |
#, php-format
|
1496 |
msgid "%s Email"
|
1497 |
msgstr "%s Email"
|
1498 |
|
1499 |
+
#: app/features/events.php:3889 app/features/fes.php:223
|
1500 |
+
#: app/features/profile/profile.php:186 app/libraries/main.php:2331
|
1501 |
+
#: app/libraries/main.php:5441
|
1502 |
msgid "Ticket"
|
1503 |
msgstr "Vstupenka"
|
1504 |
|
1505 |
+
#: app/features/events.php:3892 app/features/profile/profile.php:189
|
1506 |
msgid "Variations"
|
1507 |
msgstr "Variace"
|
1508 |
|
1509 |
+
#: app/features/events.php:3907 app/features/fes.php:303
|
1510 |
msgid "Unknown"
|
1511 |
msgstr "Neznámý"
|
1512 |
|
1513 |
+
#: app/features/events.php:3940
|
1514 |
#, fuzzy
|
1515 |
#| msgid "Attendees Form"
|
1516 |
msgid "No Attendees Found!"
|
1553 |
msgid "Order Time"
|
1554 |
msgstr "Konec"
|
1555 |
|
1556 |
+
#: app/features/fes.php:223 app/libraries/main.php:2308
|
1557 |
msgid "Transaction ID"
|
1558 |
msgstr "ID transakce"
|
1559 |
|
1587 |
msgid "Please fill event title field!"
|
1588 |
msgstr "Vyplňte prosím pole názvu události!"
|
1589 |
|
1590 |
+
#: app/features/fes.php:1108
|
1591 |
msgid "The event submitted. It will publish as soon as possible."
|
1592 |
msgstr "Událost byla odeslána. Zveřejní se co nejdříve."
|
1593 |
|
1594 |
+
#: app/features/fes.php:1109
|
1595 |
msgid "The event published."
|
1596 |
msgstr "Událost byla publikována."
|
1597 |
|
1680 |
msgstr "Odebrat obrázek"
|
1681 |
|
1682 |
#: app/features/fes/form.php:793 app/features/labels.php:61
|
1683 |
+
#: app/features/labels.php:221 app/features/mec.php:413
|
1684 |
+
#: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:5408
|
1685 |
#: app/skins/single.php:713 app/skins/single/default.php:155
|
1686 |
#: app/skins/single/default.php:378 app/skins/single/m1.php:73
|
1687 |
+
#: app/skins/single/modern.php:229
|
1688 |
msgid "Labels"
|
1689 |
msgstr "Štítky"
|
1690 |
|
1691 |
+
#: app/features/fes/form.php:839 app/features/mec.php:411
|
1692 |
#: app/features/mec/meta_boxes/filter.php:147
|
1693 |
msgid "Tags"
|
1694 |
msgstr "Tagy"
|
1767 |
msgid "Both of API key and Calendar ID are required!"
|
1768 |
msgstr "Obě hodnoty: klíč API a ID kalendáře jsou povinné!"
|
1769 |
|
1770 |
+
#: app/features/ix.php:2772 app/features/ix.php:3191 app/features/ix.php:3925
|
1771 |
msgid "Please select some events to import!"
|
1772 |
msgstr "Vyberte události, které chcete importovat!"
|
1773 |
|
1808 |
"Všechny klientské aplikace, tajné informace klienta a ID kalendáře jsou "
|
1809 |
"povinné!"
|
1810 |
|
1811 |
+
#: app/features/ix.php:3854
|
1812 |
#, php-format
|
1813 |
msgid "%s events added to Google Calendar successfully."
|
1814 |
msgstr "% s události byly přidané do Google kalendáře úspěšně."
|
1815 |
|
1816 |
+
#: app/features/ix.php:3855
|
1817 |
#, php-format
|
1818 |
msgid "%s previously added events get updated."
|
1819 |
msgstr "% s dříve přidané události byly aktualizovány."
|
1820 |
|
1821 |
+
#: app/features/ix.php:3856
|
1822 |
#, php-format
|
1823 |
msgid "%s events failed to add for following reasons: %s"
|
1824 |
msgstr "% s události se nepodařilo přidat z následujících důvodů: % s"
|
1825 |
|
1826 |
+
#: app/features/ix.php:3888
|
1827 |
msgid "Please insert your Facebook page's link."
|
1828 |
msgstr "Vložte prosím odkaz na svou stránku na Facebooku."
|
1829 |
|
1830 |
+
#: app/features/ix.php:3897
|
1831 |
msgid ""
|
1832 |
"We couldn't recognize your Facebook page. Please check it and provide us a "
|
1833 |
"valid Facebook page link."
|
1835 |
"Vaši facebookovou stránku jsme nemohli rozpoznat. Zkontrolujte to a "
|
1836 |
"poskytněte nám platný odkaz na stránku Facebooku."
|
1837 |
|
1838 |
+
#: app/features/ix.php:3929
|
1839 |
msgid "Please insert your facebook page's link."
|
1840 |
msgstr "Vložte prosím odkaz na svou facebookovou stránku."
|
1841 |
|
1842 |
+
#: app/features/ix.php:3934
|
1843 |
msgid ""
|
1844 |
"We couldn't recognize your Facebook page. Please check it and provide us a "
|
1845 |
"valid facebook page link."
|
2019 |
|
2020 |
#: app/features/ix/export_g_calendar.php:93 app/features/mec/booking.php:678
|
2021 |
#: app/features/mec/modules.php:398 app/features/mec/notifications.php:909
|
2022 |
+
#: app/features/mec/settings.php:1085 app/features/mec/single.php:297
|
2023 |
msgid "Checking ..."
|
2024 |
msgstr "Ověřování ..."
|
2025 |
|
2446 |
# Kontext
|
2447 |
#: app/features/labels.php:117 app/features/labels.php:142
|
2448 |
#: app/skins/agenda/render.php:41 app/skins/available_spot/tpl.php:44
|
2449 |
+
#: app/skins/carousel/render.php:34 app/skins/countdown/tpl.php:33
|
2450 |
+
#: app/skins/cover/tpl.php:34 app/skins/daily_view/render.php:25
|
2451 |
#: app/skins/grid/render.php:54 app/skins/list/render.php:39
|
2452 |
+
#: app/skins/masonry/render.php:30 app/skins/monthly_view/calendar.php:86
|
2453 |
+
#: app/skins/monthly_view/calendar_clean.php:85
|
2454 |
+
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:44
|
2455 |
+
#: app/skins/tile/render.php:38 app/skins/timeline/render.php:45
|
2456 |
+
#: app/skins/timetable/render.php:41 app/skins/timetable/render.php:108
|
2457 |
+
#: app/skins/weekly_view/render.php:33 app/skins/yearly_view/render.php:49
|
2458 |
msgid "Featured"
|
2459 |
msgstr "Ztvárněná"
|
2460 |
|
2461 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2462 |
+
#: app/libraries/main.php:5657 app/skins/agenda/render.php:42
|
2463 |
+
#: app/skins/available_spot/tpl.php:45 app/skins/carousel/render.php:35
|
2464 |
+
#: app/skins/countdown/tpl.php:37 app/skins/cover/tpl.php:35
|
2465 |
+
#: app/skins/daily_view/render.php:26 app/skins/grid/render.php:55
|
2466 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:31
|
2467 |
+
#: app/skins/monthly_view/calendar.php:87
|
2468 |
+
#: app/skins/monthly_view/calendar_clean.php:86
|
2469 |
+
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:45
|
2470 |
+
#: app/skins/tile/render.php:39 app/skins/timeline/render.php:46
|
2471 |
+
#: app/skins/timetable/render.php:42 app/skins/timetable/render.php:109
|
2472 |
+
#: app/skins/weekly_view/render.php:34 app/skins/yearly_view/render.php:50
|
2473 |
msgid "Canceled"
|
2474 |
msgstr "Zrušená"
|
2475 |
|
2494 |
msgid "Event %s"
|
2495 |
msgstr "Událost %s"
|
2496 |
|
2497 |
+
#: app/features/locations.php:59 app/features/mec.php:414
|
2498 |
#: app/features/mec/dashboard.php:275 app/features/mec/meta_boxes/filter.php:96
|
2499 |
+
#: app/libraries/main.php:5410
|
2500 |
msgid "Locations"
|
2501 |
msgstr "Umístění"
|
2502 |
|
2618 |
msgid "Don't show map in single event page"
|
2619 |
msgstr "Nezobrazovat mapu na jednostránkové události"
|
2620 |
|
2621 |
+
#: app/features/locations.php:359 app/libraries/main.php:5444
|
2622 |
msgid "Other Locations"
|
2623 |
msgstr "Další místa"
|
2624 |
|
2631 |
msgid "<strong>"
|
2632 |
msgstr "<strong>"
|
2633 |
|
2634 |
+
#: app/features/mec.php:180
|
2635 |
#, fuzzy
|
2636 |
#| msgid ""
|
2637 |
#| "Activation faild. Please check your purchase code or license type."
|
2644 |
"<br> <b> Poznámka: Váš nákupní kód by se měl shodovat s vaším typem licence. "
|
2645 |
"</b>"
|
2646 |
|
2647 |
+
#: app/features/mec.php:180 app/features/mec/support-page.php:136
|
2648 |
msgid "Troubleshooting"
|
2649 |
msgstr "Odstraňování problémů"
|
2650 |
|
2651 |
+
#: app/features/mec.php:259
|
2652 |
#, fuzzy
|
2653 |
#| msgid "Select Type"
|
2654 |
msgid "Select Date"
|
2655 |
msgstr "Vyberte typ"
|
2656 |
|
2657 |
+
#: app/features/mec.php:262 app/libraries/notifications.php:961
|
2658 |
#, php-format
|
2659 |
msgid "%s to %s"
|
2660 |
msgstr ""
|
2661 |
|
2662 |
+
#: app/features/mec.php:288
|
2663 |
msgid ""
|
2664 |
"Your options is not in JSON format. Please insert correct options in this "
|
2665 |
"field and try again."
|
2667 |
"Vaše možnosti nejsou ve formátu JSON. Do tohoto pole vložte správné možnosti "
|
2668 |
"a zkuste to znovu."
|
2669 |
|
2670 |
+
#: app/features/mec.php:295
|
2671 |
msgid "Your options field can not be empty!"
|
2672 |
msgstr "Pole možností nemůže být prázdné!"
|
2673 |
|
2674 |
+
#: app/features/mec.php:301
|
2675 |
msgid "Your options imported successfuly."
|
2676 |
msgstr "Vaše možnosti byly úspěšně importovány."
|
2677 |
|
2678 |
+
#: app/features/mec.php:394
|
2679 |
msgid "MEC - Support"
|
2680 |
msgstr "MEC - podpora"
|
2681 |
|
2682 |
+
#: app/features/mec.php:394 app/features/mec/support-page.php:9
|
2683 |
#: app/features/mec/support.php:80 app/features/mec/support.php:93
|
2684 |
msgid "Support"
|
2685 |
msgstr "Podpora"
|
2686 |
|
2687 |
+
#: app/features/mec.php:415 app/features/mec/dashboard.php:282
|
2688 |
#: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
|
2689 |
+
#: app/libraries/main.php:5412
|
2690 |
msgid "Organizers"
|
2691 |
msgstr "Organizátoři"
|
2692 |
|
2693 |
+
#: app/features/mec.php:423 app/features/mec.php:447
|
2694 |
#: app/features/mec/dashboard.php:268
|
2695 |
msgid "Shortcodes"
|
2696 |
msgstr "Zkrácené kódy"
|
2697 |
|
2698 |
+
#: app/features/mec.php:424
|
2699 |
msgid "MEC - Settings"
|
2700 |
msgstr "MEC - Nastavení"
|
2701 |
|
2702 |
+
#: app/features/mec.php:425
|
2703 |
msgid "MEC - Addons"
|
2704 |
msgstr "MEC - doplňky"
|
2705 |
|
2706 |
+
#: app/features/mec.php:425 app/features/mec/addons.php:22
|
2707 |
msgid "Addons"
|
2708 |
msgstr "Doplňky"
|
2709 |
|
2710 |
+
#: app/features/mec.php:428
|
2711 |
#, fuzzy
|
2712 |
#| msgid "MEC - Support"
|
2713 |
msgid "MEC - Report"
|
2714 |
msgstr "MEC - podpora"
|
2715 |
|
2716 |
+
#: app/features/mec.php:428
|
2717 |
#, fuzzy
|
2718 |
#| msgid "Export"
|
2719 |
msgid "Report"
|
2720 |
msgstr "Export"
|
2721 |
|
2722 |
+
#: app/features/mec.php:430
|
2723 |
#, fuzzy
|
2724 |
#| msgid "MEC - Support"
|
2725 |
msgid "MEC - Go Pro"
|
2726 |
msgstr "MEC - podpora"
|
2727 |
|
2728 |
+
#: app/features/mec.php:430 app/features/mec/go-pro.php:9
|
2729 |
#: app/libraries/factory.php:1045
|
2730 |
msgid "Go Pro"
|
2731 |
msgstr ""
|
2732 |
|
2733 |
+
#: app/features/mec.php:449
|
2734 |
msgid "Add Shortcode"
|
2735 |
msgstr "Přidat zkrácený kód"
|
2736 |
|
2737 |
+
#: app/features/mec.php:450
|
2738 |
msgid "Add New Shortcode"
|
2739 |
msgstr "Přidat nový zkrácený kód"
|
2740 |
|
2741 |
+
#: app/features/mec.php:451
|
2742 |
msgid "No shortcodes found!"
|
2743 |
msgstr "Nebyly nalezeny žádné zkrácené kódy!"
|
2744 |
|
2745 |
+
#: app/features/mec.php:452
|
2746 |
msgid "All Shortcodes"
|
2747 |
msgstr "Všechny zkrácené kódy"
|
2748 |
|
2749 |
+
#: app/features/mec.php:453
|
2750 |
msgid "Edit shortcodes"
|
2751 |
msgstr "Editace zkrácených kódů"
|
2752 |
|
2753 |
+
#: app/features/mec.php:454
|
2754 |
msgid "No shortcodes found in Trash!"
|
2755 |
msgstr "V koši nebyly nalezeny žádné zkrácené kódy!"
|
2756 |
|
2757 |
+
#: app/features/mec.php:507
|
2758 |
msgid "Display Options"
|
2759 |
msgstr "Zobrazit možnosti"
|
2760 |
|
2761 |
+
#: app/features/mec.php:508
|
2762 |
msgid "Filter Options"
|
2763 |
msgstr "Filtrovat možnosti"
|
2764 |
|
2765 |
+
#: app/features/mec.php:510
|
2766 |
msgid "Search Form"
|
2767 |
msgstr "Vyhledávací formulář"
|
2768 |
|
2769 |
+
#: app/features/mec.php:908
|
2770 |
msgid "Display content's images as Popup"
|
2771 |
msgstr "Zobrazit obrázky obsahu jako vyskakovací okno"
|
2772 |
|
2773 |
+
#: app/features/mec.php:922 app/features/popup/shortcode.php:300
|
2774 |
msgid "Single Event Display Method"
|
2775 |
msgstr "Metoda zobrazení jedné události"
|
2776 |
|
2777 |
+
#: app/features/mec.php:927 app/features/popup/shortcode.php:304
|
2778 |
msgid "Separate Window"
|
2779 |
msgstr "Samostatné okno"
|
2780 |
|
2781 |
+
#: app/features/mec.php:928 app/features/popup/shortcode.php:308
|
2782 |
#, fuzzy
|
2783 |
#| msgid "Modal 1"
|
2784 |
msgid "Modal Popup"
|
2824 |
#: app/features/mec/notifications.php:828
|
2825 |
#: app/features/mec/notifications.php:926
|
2826 |
#: app/features/mec/notifications.php:940 app/features/mec/settings.php:33
|
2827 |
+
#: app/features/mec/settings.php:1034 app/features/mec/settings.php:1044
|
2828 |
+
#: app/features/mec/settings.php:1102 app/features/mec/settings.php:1116
|
2829 |
#: app/features/mec/single.php:17 app/features/mec/single.php:262
|
2830 |
#: app/features/mec/single.php:272 app/features/mec/single.php:314
|
2831 |
#: app/features/mec/single.php:328 app/features/mec/styles.php:11
|
3050 |
|
3051 |
#: app/features/mec/booking.php:673 app/features/mec/messages.php:78
|
3052 |
#: app/features/mec/modules.php:393 app/features/mec/notifications.php:904
|
3053 |
+
#: app/features/mec/settings.php:1080 app/features/mec/single.php:292
|
3054 |
#: app/features/mec/styles.php:60 app/features/mec/styling.php:311
|
3055 |
msgid "Saved"
|
3056 |
msgstr "Uloženo"
|
3057 |
|
3058 |
#: app/features/mec/booking.php:674 app/features/mec/messages.php:79
|
3059 |
#: app/features/mec/modules.php:394 app/features/mec/notifications.php:905
|
3060 |
+
#: app/features/mec/settings.php:1081 app/features/mec/single.php:293
|
3061 |
#: app/features/mec/styles.php:61 app/features/mec/styling.php:312
|
3062 |
msgid "Settings Saved!"
|
3063 |
msgstr "Nastavení uložena!"
|
3065 |
#: app/features/mec/booking.php:676 app/features/mec/booking.php:698
|
3066 |
#: app/features/mec/modules.php:396 app/features/mec/modules.php:418
|
3067 |
#: app/features/mec/notifications.php:907
|
3068 |
+
#: app/features/mec/notifications.php:929 app/features/mec/settings.php:1083
|
3069 |
+
#: app/features/mec/settings.php:1105 app/features/mec/single.php:295
|
3070 |
+
#: app/features/mec/single.php:317 app/libraries/main.php:5656
|
3071 |
msgid "Verified"
|
3072 |
msgstr "Ověřeno"
|
3073 |
|
3074 |
#: app/features/mec/booking.php:700 app/features/mec/modules.php:420
|
3075 |
+
#: app/features/mec/notifications.php:931 app/features/mec/settings.php:1107
|
3076 |
#: app/features/mec/single.php:319
|
3077 |
msgid "Please Refresh Page"
|
3078 |
msgstr "Prosím obnovte stránku"
|
4284 |
#: app/features/mec/meta_boxes/search_form.php:606
|
4285 |
#: app/features/mec/meta_boxes/search_form.php:676
|
4286 |
#: app/features/mec/meta_boxes/search_form.php:782
|
4287 |
+
#: app/features/mec/settings.php:858 app/features/mec/single.php:245
|
4288 |
#: app/features/search.php:83 app/features/speakers.php:61
|
4289 |
+
#: app/features/speakers.php:269 app/libraries/main.php:5415
|
4290 |
#: app/libraries/skins.php:955
|
4291 |
msgid "Speaker"
|
4292 |
msgstr "Řečník"
|
4302 |
#: app/features/mec/meta_boxes/search_form.php:613
|
4303 |
#: app/features/mec/meta_boxes/search_form.php:683
|
4304 |
#: app/features/mec/meta_boxes/search_form.php:789
|
4305 |
+
#: app/features/mec/settings.php:865 app/features/mec/single.php:254
|
4306 |
#: app/features/search.php:88 app/libraries/skins.php:981
|
4307 |
msgid "Tag"
|
4308 |
msgstr "Štítek"
|
4422 |
msgid "Google Map Options"
|
4423 |
msgstr "Možnosti Google Maps"
|
4424 |
|
4425 |
+
#: app/features/mec/modules.php:86 app/features/mec/settings.php:901
|
4426 |
+
#: app/features/mec/settings.php:914
|
4427 |
msgid "Required!"
|
4428 |
msgstr "Požadované!"
|
4429 |
|
4527 |
msgid "Show weather module on event page"
|
4528 |
msgstr "Zobrazit modul počasí na stránce události"
|
4529 |
|
4530 |
+
#: app/features/mec/modules.php:239 app/features/mec/settings.php:895
|
4531 |
+
#: app/features/mec/settings.php:900 app/features/mec/settings.php:948
|
4532 |
+
#: app/features/mec/settings.php:972 app/features/mec/settings.php:996
|
4533 |
msgid "API Key"
|
4534 |
msgstr "API Key"
|
4535 |
|
5014 |
msgstr "Po zrušení rezervace odešle vybraným příjemcům upozornění."
|
5015 |
|
5016 |
#: app/features/mec/notifications.php:387
|
5017 |
+
#: app/features/mec/notifications.php:655
|
5018 |
msgid "Send the email to admin"
|
5019 |
msgstr "Odeslat email administrátorovi"
|
5020 |
|
5040 |
msgstr "Zašle správci informaci o přijetí nové rezervace."
|
5041 |
|
5042 |
#: app/features/mec/notifications.php:530 app/libraries/main.php:581
|
5043 |
+
#: app/libraries/notifications.php:622
|
5044 |
msgid "Booking Reminder"
|
5045 |
msgstr "Připomenutí rezervace"
|
5046 |
|
5104 |
msgstr "Stav události"
|
5105 |
|
5106 |
#: app/features/mec/notifications.php:720
|
5107 |
+
#: app/features/mec/notifications.php:803 app/features/mec/settings.php:773
|
5108 |
+
#: app/features/mec/settings.php:777
|
5109 |
msgid "Event Note"
|
5110 |
msgstr "Poznámka události"
|
5111 |
|
5299 |
msgstr "Můžete povolit nebo zakázat skripty schématu"
|
5300 |
|
5301 |
#: app/features/mec/settings.php:154 app/features/mec/settings.php:164
|
5302 |
+
#: app/libraries/main.php:5419
|
5303 |
msgid "Weekdays"
|
5304 |
msgstr "Pracovní dny"
|
5305 |
|
5668 |
msgid "Fees / Taxes Options"
|
5669 |
msgstr "Možnosti Poplatky / Daně"
|
5670 |
|
5671 |
+
#: app/features/mec/settings.php:778
|
5672 |
#, php-format
|
5673 |
msgid ""
|
5674 |
"Users can put a note for editors while they're submitting the event. Also "
|
5679 |
"oznámení o nové události můžete také vložit %%event_note%%, abyste dostali e-"
|
5680 |
"mail s poznámkami uživatelů."
|
5681 |
|
5682 |
+
#: app/features/mec/settings.php:785 app/features/mec/settings.php:793
|
5683 |
msgid "Visibility of Note"
|
5684 |
msgstr "Viditelnost poznámky"
|
5685 |
|
5686 |
+
#: app/features/mec/settings.php:788
|
5687 |
msgid "Always"
|
5688 |
msgstr "Vždy"
|
5689 |
|
5690 |
+
#: app/features/mec/settings.php:789
|
5691 |
msgid "While event is not published"
|
5692 |
msgstr "I když událost není zveřejněna"
|
5693 |
|
5694 |
+
#: app/features/mec/settings.php:794
|
5695 |
msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
|
5696 |
msgstr ""
|
5697 |
"Poznámka k události se zobrazí ve formuláři pro zasílání z webových stránek "
|
5698 |
"(frontend) a Upravit událost v administraci stránek (backend)."
|
5699 |
|
5700 |
+
#: app/features/mec/settings.php:805 app/libraries/main.php:537
|
5701 |
msgid "User Profile"
|
5702 |
msgstr "Uživatelský profil"
|
5703 |
|
5704 |
+
#: app/features/mec/settings.php:807
|
5705 |
#, php-format
|
5706 |
msgid ""
|
5707 |
"Put %s shortcode into your desired page. Then users are able to see history "
|
5710 |
"Vložte %s krátký kód na požadovanou stránku. Uživatelé pak mohou vidět "
|
5711 |
"historii svých rezervací."
|
5712 |
|
5713 |
+
#: app/features/mec/settings.php:812 app/libraries/main.php:538
|
5714 |
msgid "Search Bar"
|
5715 |
msgstr "Vyhledávací panel"
|
5716 |
|
5717 |
+
#: app/features/mec/settings.php:814
|
5718 |
#, php-format
|
5719 |
msgid ""
|
5720 |
"Put %s shortcode into your desired page. Then users are able to search events"
|
5722 |
"Vložte %s krátký kód na požadovanou stránku. Uživatelé pak mohou vyhledávat "
|
5723 |
"události"
|
5724 |
|
5725 |
+
#: app/features/mec/settings.php:818
|
5726 |
msgid "Ajax Live mode"
|
5727 |
msgstr "Ajax Live mód"
|
5728 |
|
5729 |
+
#: app/features/mec/settings.php:822
|
5730 |
msgid "Ajax mode"
|
5731 |
msgstr "Ajax mód"
|
5732 |
|
5733 |
+
#: app/features/mec/settings.php:823
|
5734 |
msgid ""
|
5735 |
"if you enable this option, search button disappeared and to use this "
|
5736 |
"feature, text input field must be enabled."
|
5738 |
"pokud tuto možnost povolíte, tlačítko pro vyhledávání zmizelo a pro použití "
|
5739 |
"této funkce musí být povoleno pole pro zadávání textu."
|
5740 |
|
5741 |
+
#: app/features/mec/settings.php:831
|
5742 |
msgid "Modern Type"
|
5743 |
msgstr "Moderní typ"
|
5744 |
|
5745 |
+
#: app/features/mec/settings.php:835
|
5746 |
msgid "Search bar fields"
|
5747 |
msgstr "Pole vyhledávacího panelu"
|
5748 |
|
5749 |
+
#: app/features/mec/settings.php:877
|
5750 |
msgid "Text input"
|
5751 |
msgstr "Zadávání textu"
|
5752 |
|
5753 |
+
#: app/features/mec/settings.php:890
|
5754 |
msgid "Enable Mailchimp Integration"
|
5755 |
msgstr "Povolit integraci Mailchimp"
|
5756 |
|
5757 |
+
#: app/features/mec/settings.php:908 app/features/mec/settings.php:913
|
5758 |
+
#: app/features/mec/settings.php:954 app/features/mec/settings.php:1002
|
5759 |
msgid "List ID"
|
5760 |
msgstr "ID seznamu"
|
5761 |
|
5762 |
+
#: app/features/mec/settings.php:921 app/features/mec/settings.php:929
|
5763 |
msgid "Subscription Status"
|
5764 |
msgstr "Stav odběru"
|
5765 |
|
5766 |
+
#: app/features/mec/settings.php:924
|
5767 |
msgid "Subscribe automatically"
|
5768 |
msgstr "Odebírat automaticky"
|
5769 |
|
5770 |
+
#: app/features/mec/settings.php:925
|
5771 |
msgid "Subscribe by verification"
|
5772 |
msgstr "Přihlaste se k odběru pomocí ověření"
|
5773 |
|
5774 |
+
#: app/features/mec/settings.php:930
|
5775 |
msgid ""
|
5776 |
"If you choose \"Subscribe by verification\" then an email will send to user "
|
5777 |
"by mailchimp for subscription verification."
|
5779 |
"Pokud zvolíte možnost „Přihlásit se k odběru pomocí ověření“, odešle e-mail "
|
5780 |
"uživateli mailchimp k ověření oběru."
|
5781 |
|
5782 |
+
#: app/features/mec/settings.php:939 app/libraries/main.php:540
|
5783 |
#, fuzzy
|
5784 |
#| msgid "Mailchimp Integration"
|
5785 |
msgid "Campaign Monitor Integration"
|
5786 |
msgstr "Integrace Mailchimp"
|
5787 |
|
5788 |
+
#: app/features/mec/settings.php:943
|
5789 |
#, fuzzy
|
5790 |
#| msgid "Enable Mailchimp Integration"
|
5791 |
msgid "Enable Campaign Monitor Integration"
|
5792 |
msgstr "Povolit integraci Mailchimp"
|
5793 |
|
5794 |
+
#: app/features/mec/settings.php:963 app/libraries/main.php:541
|
5795 |
#, fuzzy
|
5796 |
#| msgid "Mailchimp Integration"
|
5797 |
msgid "MailerLite Integration"
|
5798 |
msgstr "Integrace Mailchimp"
|
5799 |
|
5800 |
+
#: app/features/mec/settings.php:967
|
5801 |
#, fuzzy
|
5802 |
#| msgid "Enable Mailchimp Integration"
|
5803 |
msgid "Enable MailerLite Integration"
|
5804 |
msgstr "Povolit integraci Mailchimp"
|
5805 |
|
5806 |
+
#: app/features/mec/settings.php:978
|
5807 |
#, fuzzy
|
5808 |
#| msgid "Group URL"
|
5809 |
msgid "Group ID"
|
5810 |
msgstr "Group URL"
|
5811 |
|
5812 |
+
#: app/features/mec/settings.php:987 app/libraries/main.php:542
|
5813 |
#, fuzzy
|
5814 |
#| msgid "Enable Mailchimp Integration"
|
5815 |
msgid "Constant Contact Integration"
|
5816 |
msgstr "Povolit integraci Mailchimp"
|
5817 |
|
5818 |
+
#: app/features/mec/settings.php:991
|
5819 |
#, fuzzy
|
5820 |
#| msgid "Enable Mailchimp Integration"
|
5821 |
msgid "Enable constantcontact Integration"
|
5822 |
msgstr "Povolit integraci Mailchimp"
|
5823 |
|
5824 |
+
#: app/features/mec/settings.php:1013
|
5825 |
msgid "Upload Field Options"
|
5826 |
msgstr "Možnosti pole Nahrát"
|
5827 |
|
5828 |
+
#: app/features/mec/settings.php:1015
|
5829 |
msgid "Mime types"
|
5830 |
msgstr "MIME typy"
|
5831 |
|
5832 |
+
#: app/features/mec/settings.php:1019
|
5833 |
msgid "Split mime types with \",\"."
|
5834 |
msgstr "Rozdělte typy MIME pomocí “,“."
|
5835 |
|
5836 |
+
#: app/features/mec/settings.php:1019
|
5837 |
msgid "Default: jpeg,jpg,png,pdf"
|
5838 |
msgstr "Výchozí: jpeg,jpg,png,pdf"
|
5839 |
|
5840 |
+
#: app/features/mec/settings.php:1022
|
5841 |
msgid "Maximum file size"
|
5842 |
msgstr "Maximální velikost souboru"
|
5843 |
|
5844 |
+
#: app/features/mec/settings.php:1026
|
5845 |
msgid "The unit is Megabyte \"MB\""
|
5846 |
msgstr "Jednotkou je Megabyte \"MB\""
|
5847 |
|
6713 |
msgid "eg. https://webnus.net"
|
6714 |
msgstr "např. https://webnus.net"
|
6715 |
|
6716 |
+
#: app/features/organizers.php:312 app/libraries/main.php:5443
|
6717 |
#: app/skins/single.php:873
|
6718 |
msgid "Other Organizers"
|
6719 |
msgstr "Další organizátoři"
|
6790 |
msgstr ""
|
6791 |
|
6792 |
#: app/features/popup/event.php:392 app/features/popup/shortcode.php:373
|
6793 |
+
#: app/modules/booking/steps/form.php:179
|
6794 |
+
#: app/modules/booking/steps/tickets.php:77 app/skins/countdown/tpl.php:107
|
6795 |
+
#: app/skins/countdown/tpl.php:152 app/skins/countdown/tpl.php:198
|
6796 |
msgid "Next"
|
6797 |
msgstr "Další"
|
6798 |
|
6851 |
msgid "Please %s/%s in order to see your bookings / profile."
|
6852 |
msgstr "Prosím %s/%s za účelem zobrazení vašich rezervací / profilu."
|
6853 |
|
6854 |
+
#: app/features/profile/profile.php:18 app/libraries/main.php:2199
|
6855 |
msgid "Your booking already canceled!"
|
6856 |
msgstr "Vaše rezervace již byla zrušena!"
|
6857 |
|
6859 |
msgid "#"
|
6860 |
msgstr "#"
|
6861 |
|
6862 |
+
#: app/features/profile/profile.php:56 app/libraries/main.php:3218
|
6863 |
msgid "Status"
|
6864 |
msgstr "Stav"
|
6865 |
|
6866 |
+
#: app/features/profile/profile.php:59 app/libraries/main.php:2317
|
6867 |
msgid "Attendees"
|
6868 |
msgstr "Účastníci"
|
6869 |
|
6892 |
msgid "No bookings found!"
|
6893 |
msgstr "Nebyly nalezeny žádné rezervace!"
|
6894 |
|
6895 |
+
#: app/features/schema.php:63
|
6896 |
+
msgid ""
|
6897 |
+
"Following statuses are for informing search engines (Google, bing, etc) "
|
6898 |
+
"about your events so they can manage your events better so you can use these "
|
6899 |
+
"statuses to be more Search Engine Friendly."
|
6900 |
+
msgstr ""
|
6901 |
+
|
6902 |
+
#: app/features/schema.php:68
|
6903 |
+
#, fuzzy
|
6904 |
+
#| msgid "Hourly Schedule"
|
6905 |
+
msgid "Scheduled"
|
6906 |
+
msgstr "Hodinový rozvrh"
|
6907 |
+
|
6908 |
+
#: app/features/schema.php:70
|
6909 |
+
#, fuzzy
|
6910 |
+
#| msgid "Export certain events"
|
6911 |
+
msgid "For active events!"
|
6912 |
+
msgstr "Export určitých událostí"
|
6913 |
+
|
6914 |
+
#: app/features/schema.php:75
|
6915 |
+
msgid "Postponed"
|
6916 |
+
msgstr ""
|
6917 |
+
|
6918 |
+
#: app/features/schema.php:77
|
6919 |
+
msgid "If you postponed an event then you can use this status!"
|
6920 |
+
msgstr ""
|
6921 |
+
|
6922 |
+
#: app/features/schema.php:82
|
6923 |
+
#, fuzzy
|
6924 |
+
#| msgid "Canceled"
|
6925 |
+
msgid "Cancelled"
|
6926 |
+
msgstr "Zrušená"
|
6927 |
+
|
6928 |
+
#: app/features/schema.php:84
|
6929 |
+
msgid "If you cancelled an event then you should select this status!"
|
6930 |
+
msgstr ""
|
6931 |
+
|
6932 |
+
#: app/features/schema.php:89
|
6933 |
+
msgid "Moved Online"
|
6934 |
+
msgstr ""
|
6935 |
+
|
6936 |
+
#: app/features/schema.php:91
|
6937 |
+
msgid "For the events that moved online!"
|
6938 |
+
msgstr ""
|
6939 |
+
|
6940 |
+
#: app/features/schema.php:95
|
6941 |
+
#, fuzzy
|
6942 |
+
#| msgid "Invoice Link"
|
6943 |
+
msgid "Online Link"
|
6944 |
+
msgstr "Odkaz na fakturu"
|
6945 |
+
|
6946 |
+
#: app/features/schema.php:99
|
6947 |
+
msgid ""
|
6948 |
+
"Link to join online event. If you leave it empty event link will be used."
|
6949 |
+
msgstr ""
|
6950 |
+
|
6951 |
+
#: app/features/search.php:93 app/libraries/main.php:5409
|
6952 |
msgid "label"
|
6953 |
msgstr "štítek"
|
6954 |
|
6973 |
msgstr "Žádný výsledek vyhledávání."
|
6974 |
|
6975 |
#: app/features/search_bar/search_result.php:12
|
6976 |
+
#: app/libraries/notifications.php:975 app/libraries/render.php:488
|
6977 |
#: app/modules/local-time/details.php:48 app/modules/local-time/type1.php:44
|
6978 |
#: app/modules/local-time/type2.php:46 app/modules/local-time/type3.php:44
|
6979 |
#: app/modules/next-event/details.php:104 app/skins/single.php:166
|
6980 |
#: app/skins/single.php:764 app/skins/single/default.php:108
|
6981 |
#: app/skins/single/default.php:331 app/skins/single/m1.php:43
|
6982 |
+
#: app/skins/single/modern.php:199
|
6983 |
#, fuzzy
|
6984 |
#| msgid "Add Day"
|
6985 |
msgid "All Day"
|
7094 |
msgstr "den"
|
7095 |
|
7096 |
#: app/libraries/factory.php:373 app/modules/countdown/details.php:138
|
7097 |
+
#: app/skins/available_spot/tpl.php:127 app/skins/countdown/tpl.php:120
|
7098 |
+
#: app/skins/countdown/tpl.php:165 app/skins/countdown/tpl.php:216
|
7099 |
msgid "days"
|
7100 |
msgstr "dny"
|
7101 |
|
7104 |
msgstr "hodina"
|
7105 |
|
7106 |
#: app/libraries/factory.php:375 app/modules/countdown/details.php:145
|
7107 |
+
#: app/skins/available_spot/tpl.php:131 app/skins/countdown/tpl.php:126
|
7108 |
+
#: app/skins/countdown/tpl.php:171 app/skins/countdown/tpl.php:222
|
7109 |
msgid "hours"
|
7110 |
msgstr "hodiny"
|
7111 |
|
7114 |
msgstr "minuta"
|
7115 |
|
7116 |
#: app/libraries/factory.php:377 app/modules/countdown/details.php:152
|
7117 |
+
#: app/skins/available_spot/tpl.php:135 app/skins/countdown/tpl.php:132
|
7118 |
+
#: app/skins/countdown/tpl.php:177 app/skins/countdown/tpl.php:228
|
7119 |
msgid "minutes"
|
7120 |
msgstr "minuty"
|
7121 |
|
7124 |
msgstr "vteřina"
|
7125 |
|
7126 |
#: app/libraries/factory.php:379 app/modules/countdown/details.php:159
|
7127 |
+
#: app/skins/available_spot/tpl.php:139 app/skins/countdown/tpl.php:138
|
7128 |
+
#: app/skins/countdown/tpl.php:183 app/skins/countdown/tpl.php:234
|
7129 |
msgid "seconds"
|
7130 |
msgstr "vteřiny"
|
7131 |
|
7223 |
msgid "Tile View"
|
7224 |
msgstr "Zobrazení rozvrhu"
|
7225 |
|
7226 |
+
#: app/libraries/main.php:385 app/libraries/main.php:5421
|
7227 |
msgid "SU"
|
7228 |
msgstr "NE"
|
7229 |
|
7230 |
+
#: app/libraries/main.php:386 app/libraries/main.php:5422
|
7231 |
msgid "MO"
|
7232 |
msgstr "PO"
|
7233 |
|
7234 |
+
#: app/libraries/main.php:387 app/libraries/main.php:5423
|
7235 |
msgid "TU"
|
7236 |
msgstr "ÚT"
|
7237 |
|
7238 |
+
#: app/libraries/main.php:388 app/libraries/main.php:5424
|
7239 |
msgid "WE"
|
7240 |
msgstr "ST"
|
7241 |
|
7242 |
+
#: app/libraries/main.php:389 app/libraries/main.php:5425
|
7243 |
msgid "TH"
|
7244 |
msgstr "ČT"
|
7245 |
|
7246 |
+
#: app/libraries/main.php:390 app/libraries/main.php:5426
|
7247 |
msgid "FR"
|
7248 |
msgstr "PÁ"
|
7249 |
|
7250 |
+
#: app/libraries/main.php:391 app/libraries/main.php:5427
|
7251 |
msgid "SA"
|
7252 |
msgstr "SO"
|
7253 |
|
7412 |
msgid "Custom Shortcode"
|
7413 |
msgstr "Uživatelské zkrácené kódy"
|
7414 |
|
7415 |
+
#: app/libraries/main.php:2179
|
7416 |
msgid "Your booking already verified!"
|
7417 |
msgstr "Vaše rezervace již byla ověřena!"
|
7418 |
|
7419 |
+
#: app/libraries/main.php:2184
|
7420 |
msgid "Your booking successfully verified."
|
7421 |
msgstr "Vaše rezervace byla úspěšně ověřena."
|
7422 |
|
7423 |
+
#: app/libraries/main.php:2185
|
7424 |
msgid "Your booking cannot verify!"
|
7425 |
msgstr "Vaši rezervaci nelze ověřit!"
|
7426 |
|
7427 |
+
#: app/libraries/main.php:2204
|
7428 |
msgid "Your booking successfully canceled."
|
7429 |
msgstr "Vaše rezervace byla úspěšně zrušena."
|
7430 |
|
7431 |
+
#: app/libraries/main.php:2205
|
7432 |
msgid "Your booking cannot be canceled."
|
7433 |
msgstr "Vaši rezervaci nelze zrušit."
|
7434 |
|
7435 |
+
#: app/libraries/main.php:2209
|
7436 |
msgid "You canceled the payment successfully."
|
7437 |
msgstr "Platbu jste úspěšně zrušili."
|
7438 |
|
7439 |
+
#: app/libraries/main.php:2213
|
7440 |
msgid "You returned from payment gateway successfully."
|
7441 |
msgstr "Úspěšně jste se vrátili z platební brány."
|
7442 |
|
7443 |
+
#: app/libraries/main.php:2229
|
7444 |
msgid "Cannot find the invoice!"
|
7445 |
msgstr "Fakturu nelze najít!"
|
7446 |
|
7447 |
+
#: app/libraries/main.php:2229
|
7448 |
msgid "Invoice is invalid."
|
7449 |
msgstr "Faktura je neplatná."
|
7450 |
|
7451 |
+
#: app/libraries/main.php:2249
|
7452 |
msgid ""
|
7453 |
"Your booking still is not confirmed. You able download it after confirmation!"
|
7454 |
msgstr ""
|
7455 |
"Vaše rezervace stále není potvrzena. Můžete si ji stáhnout po potvrzení!"
|
7456 |
|
7457 |
+
#: app/libraries/main.php:2249
|
7458 |
msgid "Booking Not Confirmed."
|
7459 |
msgstr "Rezervace nebyla potvrzena."
|
7460 |
|
7461 |
+
#: app/libraries/main.php:2255
|
7462 |
msgid "Cannot find the booking!"
|
7463 |
msgstr "Nemohu najít rezervaci!"
|
7464 |
|
7465 |
+
#: app/libraries/main.php:2255
|
7466 |
msgid "Booking is invalid."
|
7467 |
msgstr "Rezervace není platná."
|
7468 |
|
7469 |
+
#: app/libraries/main.php:2287
|
7470 |
#, php-format
|
7471 |
msgid "%s Invoice"
|
7472 |
msgstr "%s Faktura"
|
7473 |
|
7474 |
+
#: app/libraries/main.php:2361
|
7475 |
msgid "Billing"
|
7476 |
msgstr "Fakturace"
|
7477 |
|
7478 |
+
#: app/libraries/main.php:2373
|
7479 |
#, fuzzy
|
7480 |
#| msgid "Coupons"
|
7481 |
msgid "Coupon Code"
|
7482 |
msgstr "Kupóny"
|
7483 |
|
7484 |
+
#: app/libraries/main.php:2378
|
7485 |
msgid "Total"
|
7486 |
msgstr "Celkem"
|
7487 |
|
7488 |
+
#: app/libraries/main.php:2385
|
7489 |
#, fuzzy
|
7490 |
#| msgid "Payment Gateways"
|
7491 |
msgid "Payment"
|
7492 |
msgstr "Platební brány"
|
7493 |
|
7494 |
+
#: app/libraries/main.php:2389
|
7495 |
#, fuzzy
|
7496 |
#| msgid "Payment Gateways"
|
7497 |
msgid "Gateway"
|
7498 |
msgstr "Platební brány"
|
7499 |
|
7500 |
+
#: app/libraries/main.php:2397
|
7501 |
#, fuzzy
|
7502 |
#| msgid "Payment Gateways"
|
7503 |
msgid "Payment Time"
|
7504 |
msgstr "Platební brány"
|
7505 |
|
7506 |
+
#: app/libraries/main.php:2458
|
7507 |
msgid "Request is not valid."
|
7508 |
msgstr "Požadavek není platný."
|
7509 |
|
7510 |
+
#: app/libraries/main.php:2458
|
7511 |
msgid "iCal export stopped!"
|
7512 |
msgstr "iCal export byl zastaven!"
|
7513 |
|
7514 |
+
#: app/libraries/main.php:2802 app/libraries/main.php:2832
|
7515 |
+
#: app/libraries/main.php:2861 app/libraries/main.php:2891
|
7516 |
+
#: app/libraries/main.php:2920 app/libraries/main.php:2949
|
7517 |
+
#: app/libraries/main.php:2978 app/libraries/main.php:3007
|
7518 |
+
#: app/libraries/main.php:3036 app/libraries/main.php:3060
|
7519 |
+
#: app/libraries/main.php:3104 app/libraries/main.php:3148
|
7520 |
+
#: app/libraries/main.php:3195 app/libraries/main.php:3242
|
7521 |
msgid "Sort"
|
7522 |
msgstr "Seřadit"
|
7523 |
|
7524 |
+
#: app/libraries/main.php:2808 app/libraries/main.php:2838
|
7525 |
+
#: app/libraries/main.php:2867 app/libraries/main.php:2897
|
7526 |
+
#: app/libraries/main.php:2926 app/libraries/main.php:2955
|
7527 |
+
#: app/libraries/main.php:2984 app/libraries/main.php:3013
|
7528 |
+
#: app/libraries/main.php:3066 app/libraries/main.php:3110
|
7529 |
+
#: app/libraries/main.php:3154 app/libraries/main.php:3201
|
7530 |
msgid "Required Field"
|
7531 |
msgstr "Požadovaná pole"
|
7532 |
|
7533 |
+
#: app/libraries/main.php:2814 app/libraries/main.php:2844
|
7534 |
+
#: app/libraries/main.php:2873 app/libraries/main.php:2903
|
7535 |
+
#: app/libraries/main.php:2932 app/libraries/main.php:2961
|
7536 |
+
#: app/libraries/main.php:2990 app/libraries/main.php:3019
|
7537 |
+
#: app/libraries/main.php:3072 app/libraries/main.php:3116
|
7538 |
+
#: app/libraries/main.php:3160 app/libraries/main.php:3207
|
7539 |
msgid "Insert a label for this field"
|
7540 |
msgstr "Vložte štítek pro toto pole"
|
7541 |
|
7542 |
+
#: app/libraries/main.php:3042
|
7543 |
msgid "HTML and shortcode are allowed."
|
7544 |
msgstr "HTML a zkrácené kódy jsou povoleny."
|
7545 |
|
7546 |
+
#: app/libraries/main.php:3085 app/libraries/main.php:3129
|
7547 |
+
#: app/libraries/main.php:3173
|
7548 |
msgid "Option"
|
7549 |
msgstr "Možnost"
|
7550 |
|
7551 |
+
#: app/libraries/main.php:3207
|
7552 |
#, php-format
|
7553 |
msgid "Instead of %s, the page title with a link will be show."
|
7554 |
msgstr "Místo%s se zobrazí název stránky s odkazem."
|
7555 |
|
7556 |
+
#: app/libraries/main.php:3209
|
7557 |
msgid "Agreement Page"
|
7558 |
msgstr "Stránka smlouvy"
|
7559 |
|
7560 |
+
#: app/libraries/main.php:3220
|
7561 |
msgid "Checked by default"
|
7562 |
msgstr "Ve výchozím nastavení zaškrtnuto"
|
7563 |
|
7564 |
+
#: app/libraries/main.php:3221
|
7565 |
msgid "Unchecked by default"
|
7566 |
msgstr "Ve výchozím nastavení není zaškrtnuto"
|
7567 |
|
7568 |
+
#: app/libraries/main.php:3244
|
7569 |
msgid "Insert a label for this option"
|
7570 |
msgstr "Vložte štítek pro tuto možnost"
|
7571 |
|
7572 |
+
#: app/libraries/main.php:3259
|
7573 |
msgid "Free"
|
7574 |
msgstr "Zdarma"
|
7575 |
|
7576 |
+
#: app/libraries/main.php:3865 app/libraries/main.php:5671
|
7577 |
msgid "M.E. Calender"
|
7578 |
msgstr "M.E. Kalendář"
|
7579 |
|
7580 |
+
#: app/libraries/main.php:4020
|
7581 |
#, php-format
|
7582 |
msgid "Copy of %s"
|
7583 |
msgstr "Kopie %s"
|
7584 |
|
7585 |
+
#: app/libraries/main.php:4784
|
7586 |
msgid "Booked an event."
|
7587 |
msgstr "Událost byla rezervována."
|
7588 |
|
7589 |
+
#: app/libraries/main.php:4825
|
7590 |
#, php-format
|
7591 |
msgid "%s booked %s event."
|
7592 |
msgstr "%s zarezervoval %s událost."
|
7593 |
|
7594 |
+
#: app/libraries/main.php:5404
|
7595 |
msgid "Taxonomies"
|
7596 |
msgstr "Taxonomie"
|
7597 |
|
7598 |
# Mrknout na kontext
|
7599 |
+
#: app/libraries/main.php:5406
|
7600 |
msgid "Category Plural Label"
|
7601 |
msgstr "Štítek množné kategorie"
|
7602 |
|
7603 |
# Mrknout na kontext
|
7604 |
+
#: app/libraries/main.php:5407
|
7605 |
msgid "Category Singular Label"
|
7606 |
msgstr "Štítek jednotné kategorie"
|
7607 |
|
7608 |
+
#: app/libraries/main.php:5408
|
7609 |
msgid "Label Plural Label"
|
7610 |
msgstr "Štítek množného štítku"
|
7611 |
|
7612 |
+
#: app/libraries/main.php:5409
|
7613 |
msgid "Label Singular Label"
|
7614 |
msgstr "Štítek jednotného štítku"
|
7615 |
|
7616 |
+
#: app/libraries/main.php:5410
|
7617 |
msgid "Location Plural Label"
|
7618 |
msgstr "Štítek množného umístění"
|
7619 |
|
7620 |
+
#: app/libraries/main.php:5411
|
7621 |
msgid "Location Singular Label"
|
7622 |
msgstr "Štítek jednotného umístění"
|
7623 |
|
7624 |
+
#: app/libraries/main.php:5412
|
7625 |
msgid "Organizer Plural Label"
|
7626 |
msgstr "Štítek množného organizátora"
|
7627 |
|
7628 |
+
#: app/libraries/main.php:5413
|
7629 |
msgid "Organizer Singular Label"
|
7630 |
msgstr "Štítek jednotného organizátora"
|
7631 |
|
7632 |
+
#: app/libraries/main.php:5414
|
7633 |
msgid "Speaker Plural Label"
|
7634 |
msgstr "Štítek množného řečníka"
|
7635 |
|
7636 |
+
#: app/libraries/main.php:5415
|
7637 |
msgid "Speaker Singular Label"
|
7638 |
msgstr "Štítek jednotného řečníka"
|
7639 |
|
7640 |
+
#: app/libraries/main.php:5421
|
7641 |
msgid "Sunday abbreviation"
|
7642 |
msgstr "Neděle zkratka"
|
7643 |
|
7644 |
+
#: app/libraries/main.php:5422
|
7645 |
msgid "Monday abbreviation"
|
7646 |
msgstr "Pondělí zkratka"
|
7647 |
|
7648 |
+
#: app/libraries/main.php:5423
|
7649 |
msgid "Tuesday abbreviation"
|
7650 |
msgstr "Úterý zkratka"
|
7651 |
|
7652 |
+
#: app/libraries/main.php:5424
|
7653 |
msgid "Wednesday abbreviation"
|
7654 |
msgstr "Středa zkratka"
|
7655 |
|
7656 |
+
#: app/libraries/main.php:5425
|
7657 |
msgid "Thursday abbreviation"
|
7658 |
msgstr "Čtvrtek zkratka"
|
7659 |
|
7660 |
+
#: app/libraries/main.php:5426
|
7661 |
msgid "Friday abbreviation"
|
7662 |
msgstr "Pátek zkratka"
|
7663 |
|
7664 |
+
#: app/libraries/main.php:5427
|
7665 |
msgid "Saturday abbreviation"
|
7666 |
msgstr "Sobota zkratka"
|
7667 |
|
7668 |
+
#: app/libraries/main.php:5431
|
7669 |
msgid "Others"
|
7670 |
msgstr "Další"
|
7671 |
|
7672 |
+
#: app/libraries/main.php:5433
|
7673 |
msgid "Booking Success Message"
|
7674 |
msgstr "Zpráva o úspěchu rezervace"
|
7675 |
|
7676 |
+
#: app/libraries/main.php:5433
|
7677 |
msgid ""
|
7678 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
7679 |
"needed, please check your email."
|
7681 |
"Děkujeme za vaši rezervaci. Vaše vstupenky jsou rezervovány, může být nutné "
|
7682 |
"ověřit rezervaci. Zkontrolujte prosím svůj e-mail."
|
7683 |
|
7684 |
+
#: app/libraries/main.php:5434 app/widgets/single.php:131
|
7685 |
msgid "Register Button"
|
7686 |
msgstr "Registrační tlačítko"
|
7687 |
|
7688 |
+
#: app/libraries/main.php:5434 app/skins/available_spot/tpl.php:186
|
7689 |
+
#: app/skins/carousel/render.php:106 app/skins/carousel/render.php:144
|
7690 |
+
#: app/skins/grid/render.php:82 app/skins/grid/render.php:135
|
7691 |
+
#: app/skins/grid/render.php:182 app/skins/grid/render.php:212
|
7692 |
+
#: app/skins/list/render.php:67 app/skins/list/render.php:155
|
7693 |
+
#: app/skins/masonry/render.php:146 app/skins/single.php:785
|
7694 |
#: app/skins/single.php:788 app/skins/single/default.php:260
|
7695 |
#: app/skins/single/default.php:262 app/skins/single/default.php:483
|
7696 |
#: app/skins/single/default.php:485 app/skins/single/m1.php:140
|
7697 |
#: app/skins/single/m1.php:142 app/skins/single/m2.php:66
|
7698 |
+
#: app/skins/single/m2.php:68 app/skins/single/modern.php:77
|
7699 |
+
#: app/skins/single/modern.php:79 app/skins/slider/render.php:71
|
7700 |
+
#: app/skins/slider/render.php:95 app/skins/slider/render.php:118
|
7701 |
+
#: app/skins/slider/render.php:142 app/skins/slider/render.php:177
|
7702 |
msgid "REGISTER"
|
7703 |
msgstr "REGISTROVAT"
|
7704 |
|
7705 |
+
#: app/libraries/main.php:5435
|
7706 |
msgid "View Detail Button"
|
7707 |
msgstr "Tlačítko Zobrazit detail"
|
7708 |
|
7709 |
+
#: app/libraries/main.php:5435 app/skins/carousel/render.php:106
|
7710 |
+
#: app/skins/carousel/render.php:144 app/skins/grid/render.php:82
|
7711 |
+
#: app/skins/grid/render.php:135 app/skins/grid/render.php:182
|
7712 |
+
#: app/skins/grid/render.php:212 app/skins/list/render.php:67
|
7713 |
+
#: app/skins/list/render.php:155 app/skins/masonry/render.php:146
|
7714 |
+
#: app/skins/slider/render.php:71 app/skins/slider/render.php:95
|
7715 |
+
#: app/skins/slider/render.php:118 app/skins/slider/render.php:142
|
7716 |
+
#: app/skins/slider/render.php:177
|
7717 |
msgid "View Detail"
|
7718 |
msgstr "Zobrazit detail"
|
7719 |
|
7720 |
+
#: app/libraries/main.php:5436
|
7721 |
msgid "Event Detail Button"
|
7722 |
msgstr "Tlačítko Detail události"
|
7723 |
|
7724 |
+
#: app/libraries/main.php:5436 app/skins/countdown/tpl.php:209
|
7725 |
msgid "Event Detail"
|
7726 |
msgstr "Zobrazit událost"
|
7727 |
|
7728 |
+
#: app/libraries/main.php:5438
|
7729 |
msgid "More Info Link"
|
7730 |
msgstr "Odkaz na více informací"
|
7731 |
|
7732 |
+
#: app/libraries/main.php:5441
|
7733 |
msgid "Ticket (Singular)"
|
7734 |
msgstr "Vstupenka (Jednotné)"
|
7735 |
|
7736 |
+
#: app/libraries/main.php:5442
|
7737 |
msgid "Tickets (Plural)"
|
7738 |
msgstr "Vstupenky (Množné)"
|
7739 |
|
7740 |
+
#: app/libraries/main.php:5528
|
7741 |
msgid "EventON"
|
7742 |
msgstr "EventON"
|
7743 |
|
7744 |
+
#: app/libraries/main.php:5529
|
7745 |
msgid "The Events Calendar"
|
7746 |
msgstr "The Events Calendar"
|
7747 |
|
7748 |
+
#: app/libraries/main.php:5530
|
7749 |
msgid "Events Schedule WP Plugin"
|
7750 |
msgstr "Events Schedule WP Plugin"
|
7751 |
|
7752 |
+
#: app/libraries/main.php:5531
|
7753 |
msgid "Calendarize It"
|
7754 |
msgstr "Calendarize It"
|
7755 |
|
7756 |
+
#: app/libraries/main.php:5532
|
7757 |
#, fuzzy
|
7758 |
#| msgid "Event Speakers"
|
7759 |
msgid "Event Espresso"
|
7760 |
msgstr "Řečník události"
|
7761 |
|
7762 |
+
#: app/libraries/main.php:5533
|
7763 |
#, fuzzy
|
7764 |
#| msgid "Event Repeating (Recurring events)"
|
7765 |
msgid "Events Manager (Recurring)"
|
7766 |
msgstr "Opakování události (opakující se události)"
|
7767 |
|
7768 |
+
#: app/libraries/main.php:5534
|
7769 |
#, fuzzy
|
7770 |
#| msgid "Modern Events Calendar (Lite)"
|
7771 |
msgid "Events Manager (Single)"
|
7772 |
msgstr "Modern Events Calendar (Lite)"
|
7773 |
|
7774 |
+
#: app/libraries/main.php:5608 app/libraries/main.php:5628
|
7775 |
msgid "Confirmed"
|
7776 |
msgstr "Potvrzeno"
|
7777 |
|
7778 |
+
#: app/libraries/main.php:5609 app/libraries/main.php:5636
|
7779 |
msgid "Rejected"
|
7780 |
msgstr "Odmítnuto"
|
7781 |
|
7782 |
+
#: app/libraries/main.php:5610 app/libraries/main.php:5632
|
7783 |
msgid "Pending"
|
7784 |
msgstr "Nevyřízený"
|
7785 |
|
7786 |
+
#: app/libraries/main.php:5658
|
7787 |
msgid "Waiting"
|
7788 |
msgstr "Čekající"
|
7789 |
|
7790 |
+
#: app/libraries/main.php:5863 app/libraries/render.php:80
|
7791 |
#: app/libraries/render.php:418
|
7792 |
msgid "Skin controller does not exist."
|
7793 |
msgstr "Ovladač vzhledu neexistuje."
|
7794 |
|
7795 |
+
#: app/libraries/main.php:5978
|
7796 |
msgid "Sold Out"
|
7797 |
msgstr "Vyprodáno"
|
7798 |
|
7799 |
+
#: app/libraries/main.php:5986
|
7800 |
#, fuzzy
|
7801 |
#| msgid "Ticket"
|
7802 |
msgid "Last Few Tickets"
|
7806 |
msgid "Please verify your email."
|
7807 |
msgstr "Prosím, ověřte svůj e-mail."
|
7808 |
|
7809 |
+
#: app/libraries/notifications.php:156
|
7810 |
msgid "Your booking is received."
|
7811 |
msgstr "Vaše rezervace je přijata."
|
7812 |
|
7813 |
+
#: app/libraries/notifications.php:278
|
7814 |
msgid "Your booking is confirmed."
|
7815 |
msgstr "Vaše rezervace je potvrzena."
|
7816 |
|
7817 |
+
#: app/libraries/notifications.php:448
|
7818 |
msgid "booking canceled."
|
7819 |
msgstr "rezervace zrušena."
|
7820 |
|
7821 |
+
#: app/libraries/notifications.php:526
|
7822 |
msgid "A new booking is received."
|
7823 |
msgstr "Je přijata nová rezervace."
|
7824 |
|
7825 |
+
#: app/libraries/notifications.php:756
|
7826 |
msgid "A new event is added."
|
7827 |
msgstr "Je přidána se nová událost."
|
7828 |
|
7829 |
+
#: app/libraries/notifications.php:828
|
7830 |
msgid "Your event is published."
|
7831 |
msgstr "Vaše událost je zveřejněna."
|
7832 |
|
7833 |
+
#: app/libraries/notifications.php:1067 app/libraries/notifications.php:1078
|
7834 |
+
#: app/libraries/notifications.php:1080
|
7835 |
msgid "to"
|
7836 |
msgstr "do"
|
7837 |
|
7838 |
+
#: app/libraries/notifications.php:1095 app/modules/export/details.php:46
|
7839 |
msgid "+ Add to Google Calendar"
|
7840 |
msgstr "+ Přidat do Google kalendáře"
|
7841 |
|
7842 |
+
#: app/libraries/notifications.php:1096 app/modules/export/details.php:47
|
7843 |
msgid "+ iCal export"
|
7844 |
msgstr "+ iCal export"
|
7845 |
|
7846 |
+
#: app/libraries/notifications.php:1159
|
7847 |
msgid "Yes"
|
7848 |
msgstr "Ano"
|
7849 |
|
7850 |
+
#: app/libraries/notifications.php:1159
|
7851 |
msgid "No"
|
7852 |
msgstr "Ne"
|
7853 |
|
7883 |
msgid "Apply Coupon"
|
7884 |
msgstr "Aplikovat kupon"
|
7885 |
|
7886 |
+
#: app/modules/booking/steps/checkout.php:69
|
7887 |
+
#: app/modules/booking/steps/form.php:178
|
|
|
|
|
|
|
|
|
7888 |
msgid "Back"
|
7889 |
msgstr ""
|
7890 |
|
7891 |
+
#: app/modules/booking/steps/checkout.php:77
|
7892 |
+
msgid "Free Booking"
|
7893 |
+
msgstr "Rezervace zdarma"
|
7894 |
+
|
7895 |
#: app/modules/booking/steps/form.php:52
|
7896 |
#, fuzzy
|
7897 |
#| msgid "Attendees Form"
|
7999 |
|
8000 |
#: app/modules/next-event/details.php:98 app/skins/single.php:758
|
8001 |
#: app/skins/single/default.php:102 app/skins/single/default.php:325
|
8002 |
+
#: app/skins/single/m1.php:37 app/skins/single/modern.php:193
|
8003 |
msgid "Time"
|
8004 |
msgstr "Čas"
|
8005 |
|
8064 |
#: app/skins/agenda/tpl.php:81 app/skins/custom/tpl.php:76
|
8065 |
#: app/skins/grid/tpl.php:83 app/skins/list/tpl.php:88
|
8066 |
#: app/skins/masonry/tpl.php:77 app/skins/tile/tpl.php:133
|
8067 |
+
#: app/skins/timeline/tpl.php:71 app/skins/yearly_view/render.php:83
|
8068 |
msgid "Load More"
|
8069 |
msgstr "Načíst více"
|
8070 |
|
8071 |
+
#: app/skins/available_spot/tpl.php:120
|
8072 |
msgid "Available Spot(s):"
|
8073 |
msgstr "Dostupné spoty:"
|
8074 |
|
8075 |
+
#: app/skins/carousel/render.php:166 app/skins/countdown/tpl.php:146
|
8076 |
+
#: app/skins/countdown/tpl.php:191 app/skins/cover/tpl.php:72
|
8077 |
+
#: app/skins/list/render.php:88
|
8078 |
msgid "EVENT DETAIL"
|
8079 |
msgstr "DETAIL UDÁLOSTI"
|
8080 |
|
8081 |
+
#: app/skins/carousel/render.php:178
|
8082 |
msgid "View All Events"
|
8083 |
msgstr "Zobrazit všechny události"
|
8084 |
|
8085 |
+
#: app/skins/countdown/tpl.php:107 app/skins/countdown/tpl.php:152
|
8086 |
+
#: app/skins/countdown/tpl.php:198
|
8087 |
#, php-format
|
8088 |
msgid "%s Upcoming Event"
|
8089 |
msgstr "%s Nadcházející událost"
|
8090 |
|
8091 |
+
#: app/skins/cover/tpl.php:52
|
8092 |
msgid "featured event"
|
8093 |
msgstr "nejlepší událost"
|
8094 |
|
8095 |
+
#: app/skins/daily_view/render.php:42
|
8096 |
msgid "No event"
|
8097 |
msgstr "Žádná událost"
|
8098 |
|
8099 |
+
#: app/skins/default_full_calendar/tpl.php:75
|
8100 |
+
#: app/skins/full_calendar/tpl.php:122
|
8101 |
msgid "List"
|
8102 |
msgstr "Seznam"
|
8103 |
|
8106 |
msgstr "Vše"
|
8107 |
|
8108 |
#: app/skins/monthly_view/calendar.php:69
|
8109 |
+
#: app/skins/monthly_view/calendar.php:110
|
8110 |
+
#: app/skins/monthly_view/calendar_clean.php:68
|
8111 |
+
#: app/skins/monthly_view/calendar_clean.php:119
|
8112 |
#, php-format
|
8113 |
msgid "Events for %s"
|
8114 |
msgstr "Událost pro %s"
|
8115 |
|
8116 |
+
#: app/skins/monthly_view/calendar.php:112
|
8117 |
+
#: app/skins/monthly_view/calendar_clean.php:121
|
8118 |
+
#: app/skins/timetable/render.php:81 app/skins/weekly_view/render.php:54
|
8119 |
msgid "No Events"
|
8120 |
msgstr "Žádné události"
|
8121 |
|
8125 |
|
8126 |
#: app/skins/single.php:554 app/skins/single/default.php:51
|
8127 |
#: app/skins/single/m1.php:261 app/skins/single/m2.php:182
|
8128 |
+
#: app/skins/single/modern.php:271
|
8129 |
msgid "Sold out!"
|
8130 |
msgstr "Vyprodáno!"
|
8131 |
|
8132 |
#: app/skins/single.php:833 app/skins/single.php:888
|
8133 |
#: app/skins/single/default.php:227 app/skins/single/default.php:450
|
8134 |
#: app/skins/single/m1.php:109 app/skins/single/m2.php:35
|
8135 |
+
#: app/skins/single/modern.php:45
|
8136 |
msgid "Phone"
|
8137 |
msgstr "Telefon"
|
8138 |
|
8139 |
#: app/skins/single.php:847 app/skins/single.php:902
|
8140 |
#: app/skins/single/default.php:241 app/skins/single/default.php:464
|
8141 |
#: app/skins/single/m1.php:123 app/skins/single/m2.php:49
|
8142 |
+
#: app/skins/single/modern.php:59
|
8143 |
msgid "Website"
|
8144 |
msgstr "Webová stránka"
|
8145 |
|
8148 |
msgstr "Řečník:"
|
8149 |
|
8150 |
#: app/skins/single/default.php:69 app/skins/single/m1.php:278
|
8151 |
+
#: app/skins/single/m2.php:199 app/skins/single/modern.php:289
|
8152 |
msgid "Tags: "
|
8153 |
msgstr "Značky: "
|
8154 |
|
8155 |
+
#: app/skins/timeline/render.php:90
|
8156 |
#, fuzzy
|
8157 |
#| msgid "Title of event"
|
8158 |
msgid "Register for event"
|
8159 |
msgstr "Název události"
|
8160 |
|
8161 |
+
#: app/skins/timeline/render.php:90
|
8162 |
#, fuzzy
|
8163 |
#| msgid "View Detail"
|
8164 |
msgid "View Details"
|
8259 |
#~ msgid "Auto Facebook import is disabled!"
|
8260 |
#~ msgstr "Auto Facebook Import"
|
8261 |
|
8262 |
+
#, fuzzy
|
8263 |
+
#~| msgid "Add to Google Calendar"
|
8264 |
+
#~ msgid "Auto Google Calendar export is disabled!"
|
8265 |
+
#~ msgstr "Přidat do Google kalendáře"
|
8266 |
+
|
8267 |
#, fuzzy
|
8268 |
#~| msgid "Add to Google Calendar"
|
8269 |
#~ msgid "Auto Google Calendar import is disabled!"
|
languages/modern-events-calendar-lite-de_DE.mo
CHANGED
Binary file
|
languages/modern-events-calendar-lite-de_DE.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: ME Calender\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2020-03-
|
6 |
-
"PO-Revision-Date: 2020-03-
|
7 |
"Last-Translator: Jogon <koenig@kafinanz.de>\n"
|
8 |
"Language-Team: German\n"
|
9 |
"Language: de_DE\n"
|
@@ -28,8 +28,8 @@ msgstr "Moderner Event Kalender "
|
|
28 |
msgid "Content"
|
29 |
msgstr "Inhalt"
|
30 |
|
31 |
-
#: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:
|
32 |
-
#: app/features/mec.php:
|
33 |
msgid "Shortcode"
|
34 |
msgstr "Shortcode"
|
35 |
|
@@ -77,14 +77,14 @@ msgstr "Farbe der Veranstaltung"
|
|
77 |
msgid "Recent Colors"
|
78 |
msgstr "Farbe der Veranstaltung"
|
79 |
|
80 |
-
#: app/features/contextual.php:55 app/features/mec.php:
|
81 |
#: app/features/mec/dashboard.php:143 app/features/mec/support.php:20
|
82 |
#: app/features/popup/event.php:60 app/features/popup/shortcode.php:37
|
83 |
#: app/libraries/main.php:594
|
84 |
msgid "Settings"
|
85 |
msgstr "Einstellungen"
|
86 |
|
87 |
-
#: app/features/contextual.php:62 app/features/events.php:
|
88 |
#: app/features/mec/booking.php:448 app/features/mec/support.php:29
|
89 |
#: app/libraries/main.php:560
|
90 |
msgid "Booking Form"
|
@@ -270,7 +270,7 @@ msgstr "Gutscheine"
|
|
270 |
msgid "BuddyPress Integration"
|
271 |
msgstr "Buddy Press Integration"
|
272 |
|
273 |
-
#: app/features/contextual.php:334 app/features/mec/settings.php:
|
274 |
#: app/libraries/main.php:539
|
275 |
msgid "Mailchimp Integration"
|
276 |
msgstr "Mailchimp Integration"
|
@@ -296,7 +296,7 @@ msgstr "Veranstaltungen"
|
|
296 |
msgid "Event"
|
297 |
msgstr "Veranstaltung"
|
298 |
|
299 |
-
#: app/features/events.php:160 app/features/mec.php:
|
300 |
msgid "Add Event"
|
301 |
msgstr "Veranstaltung hinzufügen"
|
302 |
|
@@ -304,9 +304,9 @@ msgstr "Veranstaltung hinzufügen"
|
|
304 |
msgid "Add New Event"
|
305 |
msgstr "Neue Veranstaltung hinzufügen"
|
306 |
|
307 |
-
#: app/features/events.php:162 app/features/ix.php:
|
308 |
-
#: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:
|
309 |
-
#: app/skins/map/tpl.php:
|
310 |
msgid "No events found!"
|
311 |
msgstr "Keine Veranstaltungen gefunden!"
|
312 |
|
@@ -327,7 +327,7 @@ msgstr "Veranstaltung ansehen"
|
|
327 |
msgid "No events found in Trash!"
|
328 |
msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
|
329 |
|
330 |
-
#: app/features/events.php:183 app/features/events.php:
|
331 |
#: app/features/mec/meta_boxes/display_options.php:1116
|
332 |
#: app/features/mec/meta_boxes/search_form.php:31
|
333 |
#: app/features/mec/meta_boxes/search_form.php:101
|
@@ -340,18 +340,18 @@ msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
|
|
340 |
#: app/features/mec/meta_boxes/search_form.php:584
|
341 |
#: app/features/mec/meta_boxes/search_form.php:654
|
342 |
#: app/features/mec/meta_boxes/search_form.php:760
|
343 |
-
#: app/features/mec/settings.php:
|
344 |
-
#: app/features/search.php:68 app/libraries/main.php:
|
345 |
#: app/libraries/skins.php:877 app/skins/single.php:576
|
346 |
#: app/skins/single/default.php:192 app/skins/single/default.php:415
|
347 |
#: app/skins/single/m1.php:184 app/skins/single/m2.php:110
|
348 |
-
#: app/skins/single/modern.php:
|
349 |
msgid "Category"
|
350 |
msgstr "Kategorie"
|
351 |
|
352 |
-
#: app/features/events.php:184 app/features/events.php:
|
353 |
-
#: app/features/fes/form.php:767 app/features/mec.php:
|
354 |
-
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:
|
355 |
msgid "Categories"
|
356 |
msgstr "Kategorien"
|
357 |
|
@@ -437,7 +437,7 @@ msgstr "Datum und Uhrzeit"
|
|
437 |
msgid "Event Repeating"
|
438 |
msgstr "Wiederholende Veranstaltung"
|
439 |
|
440 |
-
#: app/features/events.php:334 app/features/events.php:
|
441 |
#: app/features/mec/settings.php:743 app/skins/single.php:964
|
442 |
msgid "Hourly Schedule"
|
443 |
msgstr "Stundenplan"
|
@@ -450,8 +450,8 @@ msgstr "Ort"
|
|
450 |
msgid "Links"
|
451 |
msgstr "Links"
|
452 |
|
453 |
-
#: app/features/events.php:337 app/features/events.php:
|
454 |
-
#: app/features/events.php:
|
455 |
#: app/features/ix.php:3508 app/features/ix.php:3549
|
456 |
#: app/features/mec/meta_boxes/display_options.php:1119
|
457 |
#: app/features/mec/meta_boxes/search_form.php:46
|
@@ -465,66 +465,71 @@ msgstr "Links"
|
|
465 |
#: app/features/mec/meta_boxes/search_form.php:599
|
466 |
#: app/features/mec/meta_boxes/search_form.php:669
|
467 |
#: app/features/mec/meta_boxes/search_form.php:775
|
468 |
-
#: app/features/mec/settings.php:
|
469 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
470 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
471 |
#: app/features/organizers.php:271 app/features/popup/event.php:293
|
472 |
#: app/features/popup/event.php:302 app/features/search.php:78
|
473 |
-
#: app/libraries/main.php:
|
474 |
#: app/skins/single.php:823 app/skins/single/default.php:217
|
475 |
#: app/skins/single/default.php:440 app/skins/single/m1.php:99
|
476 |
-
#: app/skins/single/m2.php:25 app/skins/single/modern.php:
|
477 |
msgid "Organizer"
|
478 |
msgstr "Veranstalter"
|
479 |
|
480 |
-
#: app/features/events.php:338 app/features/events.php:
|
481 |
-
#: app/features/fes/form.php:740 app/libraries/main.php:
|
482 |
#: app/skins/single.php:599 app/skins/single/default.php:126
|
483 |
#: app/skins/single/default.php:349 app/skins/single/m1.php:58
|
484 |
-
#: app/skins/single/modern.php:
|
485 |
msgid "Cost"
|
486 |
msgstr " Preis"
|
487 |
|
488 |
-
#: app/features/events.php:
|
|
|
|
|
|
|
|
|
|
|
489 |
msgid "Note for reviewer"
|
490 |
msgstr "Zusätzliche Anmerkungen zum Event "
|
491 |
|
492 |
-
#: app/features/events.php:
|
493 |
msgid "Guest Data"
|
494 |
msgstr "Gäste Daten"
|
495 |
|
496 |
-
#: app/features/events.php:
|
497 |
-
#: app/features/events.php:
|
498 |
#: app/features/fes/form.php:699 app/features/labels.php:178
|
499 |
#: app/features/mec/booking.php:45 app/features/organizers.php:279
|
500 |
#: app/features/popup/event.php:312 app/features/profile/profile.php:180
|
501 |
-
#: app/libraries/notifications.php:
|
502 |
msgid "Name"
|
503 |
msgstr "Name"
|
504 |
|
505 |
-
#: app/features/events.php:
|
506 |
-
#: app/features/events.php:
|
507 |
#: app/features/fes.php:223 app/features/fes/form.php:695
|
508 |
#: app/features/mec/booking.php:57 app/features/mec/booking.php:499
|
509 |
#: app/features/organizers.php:111 app/features/organizers.php:152
|
510 |
#: app/features/profile/profile.php:183 app/features/speakers.php:127
|
511 |
#: app/features/speakers.php:196 app/libraries/main.php:1595
|
512 |
-
#: app/libraries/main.php:1664 app/libraries/main.php:
|
513 |
-
#: app/libraries/notifications.php:
|
514 |
#: app/modules/booking/steps/form.php:83 app/skins/single.php:840
|
515 |
#: app/skins/single.php:895 app/skins/single/default.php:234
|
516 |
#: app/skins/single/default.php:457 app/skins/single/m1.php:116
|
517 |
-
#: app/skins/single/m2.php:42 app/skins/single/modern.php:
|
518 |
msgid "Email"
|
519 |
msgstr "E-Mail"
|
520 |
|
521 |
-
#: app/features/events.php:
|
522 |
msgid "Date and Time"
|
523 |
msgstr "Datum und Uhrzeit"
|
524 |
|
525 |
-
#: app/features/events.php:
|
526 |
-
#: app/features/events.php:
|
527 |
-
#: app/features/events.php:
|
528 |
#: app/features/fes/form.php:254 app/features/ix.php:3508
|
529 |
#: app/features/ix.php:3549 app/features/ix/import_g_calendar.php:38
|
530 |
#: app/features/mec/dashboard.php:405
|
@@ -547,50 +552,50 @@ msgstr "Datum und Uhrzeit"
|
|
547 |
msgid "Start Date"
|
548 |
msgstr "Start Datum"
|
549 |
|
550 |
-
#: app/features/events.php:
|
551 |
-
#: app/features/events.php:
|
552 |
-
#: app/features/events.php:
|
553 |
#: app/features/fes/form.php:282 app/features/fes/form.php:322
|
554 |
#: app/features/popup/event.php:142 app/features/popup/event.php:224
|
555 |
msgid "AM"
|
556 |
msgstr "AM"
|
557 |
|
558 |
-
#: app/features/events.php:
|
559 |
-
#: app/features/events.php:
|
560 |
-
#: app/features/events.php:
|
561 |
#: app/features/fes/form.php:283 app/features/fes/form.php:323
|
562 |
#: app/features/popup/event.php:149 app/features/popup/event.php:231
|
563 |
msgid "PM"
|
564 |
msgstr "PM"
|
565 |
|
566 |
-
#: app/features/events.php:
|
567 |
-
#: app/features/events.php:
|
568 |
-
#: app/features/events.php:
|
569 |
#: app/features/fes/form.php:294 app/features/ix.php:3508
|
570 |
#: app/features/ix.php:3549 app/features/ix/import_g_calendar.php:44
|
571 |
#: app/features/mec/dashboard.php:406 app/features/popup/event.php:157
|
572 |
msgid "End Date"
|
573 |
msgstr "Ende Datum"
|
574 |
|
575 |
-
#: app/features/events.php:
|
576 |
#: app/features/popup/event.php:239
|
577 |
msgid "All Day Event"
|
578 |
msgstr "Ganztägige Veranstaltung"
|
579 |
|
580 |
-
#: app/features/events.php:
|
581 |
msgid "Hide Event Time"
|
582 |
msgstr "Event / Veranstaltungszeit verbergen"
|
583 |
|
584 |
-
#: app/features/events.php:
|
585 |
msgid "Hide Event End Time"
|
586 |
msgstr "Ende-Zeit der Veranstaltung verbergen"
|
587 |
|
588 |
-
#: app/features/events.php:
|
589 |
#: app/features/fes/form.php:339
|
590 |
msgid "Time Comment"
|
591 |
msgstr "z.B. MEZ "
|
592 |
|
593 |
-
#: app/features/events.php:
|
594 |
#, fuzzy
|
595 |
#| msgid ""
|
596 |
#| "It shows next to event time on calendar. You can insert Timezone etc. in "
|
@@ -602,14 +607,14 @@ msgstr ""
|
|
602 |
"Neben der Zeit im Kalender wird diese Angabe angezeigt. In diesem Feld "
|
603 |
"können Sie z.B. eine Zeitzone wie z.B. \"MEZ\" usw. einfügen. "
|
604 |
|
605 |
-
#: app/features/events.php:
|
606 |
-
#: app/features/events.php:
|
607 |
-
#: app/features/events.php:
|
608 |
-
#: app/features/events.php:
|
609 |
-
#: app/features/events.php:
|
610 |
-
#: app/features/events.php:
|
611 |
-
#: app/features/events.php:
|
612 |
-
#: app/features/events.php:
|
613 |
#: app/features/fes/form.php:651 app/features/locations.php:301
|
614 |
#: app/features/mec/booking.php:108 app/features/mec/booking.php:158
|
615 |
#: app/features/mec/booking.php:171 app/features/mec/booking.php:187
|
@@ -667,9 +672,9 @@ msgstr ""
|
|
667 |
#: app/features/mec/settings.php:434 app/features/mec/settings.php:451
|
668 |
#: app/features/mec/settings.php:470 app/features/mec/settings.php:484
|
669 |
#: app/features/mec/settings.php:512 app/features/mec/settings.php:599
|
670 |
-
#: app/features/mec/settings.php:
|
671 |
-
#: app/features/mec/settings.php:
|
672 |
-
#: app/features/mec/settings.php:
|
673 |
#: app/features/mec/single.php:58 app/features/mec/single.php:77
|
674 |
#: app/features/mec/single.php:94 app/features/mec/single.php:110
|
675 |
#: app/features/mec/single.php:125 app/features/mec/single.php:178
|
@@ -679,156 +684,156 @@ msgstr ""
|
|
679 |
#: app/features/popup/event.php:303 app/skins/single.php:685
|
680 |
#: app/skins/single/default.php:141 app/skins/single/default.php:364
|
681 |
#: app/skins/single/m1.php:206 app/skins/single/m2.php:133
|
682 |
-
#: app/skins/single/modern.php:
|
683 |
msgid "Read More"
|
684 |
msgstr "Mehr lesen"
|
685 |
|
686 |
-
#: app/features/events.php:
|
687 |
msgid "Repeating"
|
688 |
msgstr "Wiederholen"
|
689 |
|
690 |
-
#: app/features/events.php:
|
691 |
msgid "Event Repeating (Recurring events)"
|
692 |
msgstr "Wiederholende Veranstaltung"
|
693 |
|
694 |
-
#: app/features/events.php:
|
695 |
msgid "Repeats"
|
696 |
msgstr "Wiederholend"
|
697 |
|
698 |
-
#: app/features/events.php:
|
699 |
#: app/features/mec/dashboard.php:408
|
700 |
-
#: app/skins/default_full_calendar/tpl.php:
|
701 |
-
#: app/skins/full_calendar/tpl.php:
|
702 |
msgid "Daily"
|
703 |
msgstr "Täglich"
|
704 |
|
705 |
-
#: app/features/events.php:
|
706 |
msgid "Every Weekday"
|
707 |
msgstr "An jedem Wochentag"
|
708 |
|
709 |
-
#: app/features/events.php:
|
710 |
msgid "Every Weekend"
|
711 |
msgstr "An jedem Wochenende"
|
712 |
|
713 |
-
#: app/features/events.php:
|
714 |
msgid "Certain Weekdays"
|
715 |
msgstr "Bestimmte Wochentage"
|
716 |
|
717 |
-
#: app/features/events.php:
|
718 |
-
#: app/skins/default_full_calendar/tpl.php:
|
719 |
-
#: app/skins/full_calendar/tpl.php:
|
720 |
msgid "Weekly"
|
721 |
msgstr "Wöchentlich"
|
722 |
|
723 |
-
#: app/features/events.php:
|
724 |
#: app/features/mec/dashboard.php:409
|
725 |
-
#: app/skins/default_full_calendar/tpl.php:
|
726 |
-
#: app/skins/full_calendar/tpl.php:
|
727 |
msgid "Monthly"
|
728 |
msgstr "Monatlich"
|
729 |
|
730 |
-
#: app/features/events.php:
|
731 |
#: app/features/mec/dashboard.php:410
|
732 |
-
#: app/skins/default_full_calendar/tpl.php:
|
733 |
-
#: app/skins/full_calendar/tpl.php:
|
734 |
msgid "Yearly"
|
735 |
msgstr "Jährlich"
|
736 |
|
737 |
-
#: app/features/events.php:
|
738 |
msgid "Custom Days"
|
739 |
msgstr "Benutzerdefinierte Tage"
|
740 |
|
741 |
-
#: app/features/events.php:
|
742 |
msgid "Advanced"
|
743 |
msgstr "Fortgeschritten"
|
744 |
|
745 |
-
#: app/features/events.php:
|
746 |
msgid "Repeat Interval"
|
747 |
msgstr "Wiederholungsintervall"
|
748 |
|
749 |
-
#: app/features/events.php:
|
750 |
msgid "Repeat interval"
|
751 |
msgstr "Wiederholungsintervall"
|
752 |
|
753 |
-
#: app/features/events.php:
|
754 |
msgid "Week Days"
|
755 |
msgstr "Wochentage"
|
756 |
|
757 |
-
#: app/features/events.php:
|
758 |
-
#: app/features/events.php:
|
759 |
#: app/features/fes/form.php:380 app/features/ix/import_f_calendar.php:42
|
760 |
#: app/features/ix/import_g_calendar.php:51
|
761 |
#: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
|
762 |
msgid "Start"
|
763 |
msgstr "Start"
|
764 |
|
765 |
-
#: app/features/events.php:
|
766 |
-
#: app/features/events.php:
|
767 |
#: app/features/fes/form.php:381
|
768 |
msgid "End"
|
769 |
msgstr "Ende"
|
770 |
|
771 |
-
#: app/features/events.php:
|
772 |
-
#: app/features/events.php:
|
773 |
-
#: app/features/events.php:
|
774 |
-
#: app/features/events.php:
|
775 |
#: app/features/fes/form.php:382 app/features/fes/form.php:865
|
776 |
msgid "Add"
|
777 |
msgstr "Hinzufügen"
|
778 |
|
779 |
-
#: app/features/events.php:
|
780 |
msgid "Custom Days Repeating"
|
781 |
msgstr "Benutzerdefinierte Wiederholende Tage"
|
782 |
|
783 |
-
#: app/features/events.php:
|
784 |
msgid ""
|
785 |
"Add certain days to event occurrence dates. If you have single day event, "
|
786 |
"start and end date should be the same, If you have multiple day event the "
|
787 |
"start and end dates must be commensurate with the initial date."
|
788 |
msgstr ""
|
789 |
|
790 |
-
#: app/features/events.php:
|
791 |
msgid "First"
|
792 |
msgstr "Erster"
|
793 |
|
794 |
-
#: app/features/events.php:
|
795 |
msgid "Second"
|
796 |
msgstr "Zweiter"
|
797 |
|
798 |
-
#: app/features/events.php:
|
799 |
msgid "Third"
|
800 |
msgstr "Dritter"
|
801 |
|
802 |
-
#: app/features/events.php:
|
803 |
msgid "Fourth"
|
804 |
msgstr "Vierte"
|
805 |
|
806 |
-
#: app/features/events.php:
|
807 |
msgid "Last"
|
808 |
msgstr "Letzter"
|
809 |
|
810 |
-
#: app/features/events.php:
|
811 |
msgid "Ends Repeat"
|
812 |
msgstr "Wiederholung endet"
|
813 |
|
814 |
-
#: app/features/events.php:
|
815 |
msgid "Never"
|
816 |
msgstr "Niemals"
|
817 |
|
818 |
-
#: app/features/events.php:
|
819 |
msgid "On"
|
820 |
msgstr "Am"
|
821 |
|
822 |
-
#: app/features/events.php:
|
823 |
msgid "After"
|
824 |
msgstr "Nach"
|
825 |
|
826 |
-
#: app/features/events.php:
|
827 |
#: app/features/fes/form.php:647 app/features/fes/form.php:650
|
828 |
msgid "Occurrences times"
|
829 |
msgstr " mal vorkommen"
|
830 |
|
831 |
-
#: app/features/events.php:
|
832 |
msgid ""
|
833 |
"The event will finish after certain repeats. For example if you set it to "
|
834 |
"10, the event will finish after 10 repeats."
|
@@ -836,145 +841,145 @@ msgstr ""
|
|
836 |
"Das Event ist nach einer bestimmten Anzahl von Wiederholungen zu Ende. Zum "
|
837 |
"Beispiel: Bei Eingabe von 10 wird das Event nach 10 Wiederholungen beendet"
|
838 |
|
839 |
-
#: app/features/events.php:
|
840 |
#, fuzzy
|
841 |
#| msgid "Next Occurrence of Other Events"
|
842 |
msgid "Show only one occurrence of this event"
|
843 |
msgstr "Nächstes Auftreten von anderen Events."
|
844 |
|
845 |
-
#: app/features/events.php:
|
846 |
-
#: app/features/events.php:
|
847 |
#: app/features/ix.php:3508 app/features/ix.php:3549
|
848 |
-
#: app/features/mec/settings.php:689 app/libraries/main.php:
|
849 |
#: app/widgets/single.php:103
|
850 |
msgid "Event Cost"
|
851 |
msgstr ""
|
852 |
"Bruttopreis des Events in Euro, 0 für kostenlos oder z.B. 39, ohne €-Zeichen"
|
853 |
|
854 |
-
#: app/features/events.php:
|
855 |
#, fuzzy
|
856 |
#| msgid "Exceptional Days"
|
857 |
msgid "Exceptional Days (Exclude Dates)"
|
858 |
msgstr "Herausgenommene Tage "
|
859 |
|
860 |
-
#: app/features/events.php:
|
861 |
msgid "Exclude certain days"
|
862 |
msgstr "Ausschluss bestimmter Tage"
|
863 |
|
864 |
-
#: app/features/events.php:
|
865 |
#: app/features/fes.php:223 app/features/mec/booking.php:500
|
866 |
-
#: app/features/profile/profile.php:53 app/libraries/main.php:
|
867 |
-
#: app/libraries/main.php:
|
868 |
#: app/modules/next-event/details.php:93 app/skins/single.php:659
|
869 |
#: app/skins/single/default.php:85 app/skins/single/default.php:308
|
870 |
-
#: app/skins/single/m1.php:20 app/skins/single/modern.php:
|
871 |
msgid "Date"
|
872 |
msgstr "Datum"
|
873 |
|
874 |
-
#: app/features/events.php:
|
875 |
msgid ""
|
876 |
"Exclude certain days from event occurrence dates. Please note that you can "
|
877 |
"exclude only single day occurrences and you cannot exclude one day from "
|
878 |
"multiple day occurrences."
|
879 |
msgstr ""
|
880 |
|
881 |
-
#: app/features/events.php:
|
882 |
msgid "Day 1"
|
883 |
msgstr "Tag 1"
|
884 |
|
885 |
-
#: app/features/events.php:
|
886 |
msgid "Add Day"
|
887 |
msgstr "Tag hinzufügen"
|
888 |
|
889 |
-
#: app/features/events.php:
|
890 |
msgid ""
|
891 |
"Add new days for schedule. For example if your event is multiple days, you "
|
892 |
"can add a different schedule for each day!"
|
893 |
msgstr ""
|
894 |
|
895 |
-
#: app/features/events.php:
|
896 |
#, php-format
|
897 |
msgid "Day %s"
|
898 |
msgstr ""
|
899 |
|
900 |
-
#: app/features/events.php:
|
901 |
-
#: app/features/events.php:
|
902 |
-
#: app/features/events.php:
|
903 |
-
#: app/features/events.php:
|
904 |
-
#: app/features/events.php:
|
905 |
#: app/features/fes/form.php:239 app/features/ix.php:3508
|
906 |
#: app/features/ix.php:3549 app/features/mec/booking.php:384
|
907 |
#: app/features/mec/booking.php:416 app/features/mec/styling.php:130
|
908 |
msgid "Title"
|
909 |
msgstr "Titel"
|
910 |
|
911 |
-
#: app/features/events.php:
|
912 |
-
#: app/features/events.php:
|
913 |
-
#: app/features/events.php:
|
914 |
-
#: app/features/events.php:
|
915 |
-
#: app/features/events.php:
|
916 |
-
#: app/features/events.php:
|
917 |
#: app/features/mec/booking.php:327 app/features/mec/booking.php:356
|
918 |
#: app/features/mec/booking.php:407 app/features/mec/booking.php:439
|
919 |
-
#: app/libraries/main.php:
|
920 |
-
#: app/libraries/main.php:
|
921 |
-
#: app/libraries/main.php:
|
922 |
-
#: app/libraries/main.php:
|
923 |
-
#: app/libraries/main.php:
|
924 |
-
#: app/libraries/main.php:
|
925 |
-
#: app/libraries/main.php:
|
926 |
msgid "Remove"
|
927 |
msgstr "Entfernen"
|
928 |
|
929 |
-
#: app/features/events.php:
|
930 |
msgid "Add new hourly schedule row"
|
931 |
msgstr "Neue Stundenplan-Zeile hinzufügen"
|
932 |
|
933 |
-
#: app/features/events.php:
|
934 |
-
#: app/features/events.php:
|
935 |
msgid "From e.g. 8:15"
|
936 |
msgstr "Von z.B. 08:15 Uhr"
|
937 |
|
938 |
-
#: app/features/events.php:
|
939 |
-
#: app/features/events.php:
|
940 |
msgid "To e.g. 8:45"
|
941 |
msgstr "bis zum Beispiel 08:45 Uhr"
|
942 |
|
943 |
-
#: app/features/events.php:
|
944 |
-
#: app/features/events.php:
|
945 |
-
#: app/features/events.php:
|
946 |
msgid "Description"
|
947 |
msgstr "Beschreibung"
|
948 |
|
949 |
-
#: app/features/events.php:
|
950 |
-
#: app/features/events.php:
|
951 |
-
#: app/features/mec.php:
|
952 |
#: app/features/mec/settings.php:737 app/features/speakers.php:62
|
953 |
-
#: app/libraries/main.php:565 app/libraries/main.php:
|
954 |
#: app/modules/speakers/details.php:18
|
955 |
msgid "Speakers"
|
956 |
msgstr "Sprecher"
|
957 |
|
958 |
-
#: app/features/events.php:
|
959 |
msgid "New Day"
|
960 |
msgstr "Neuer Tag"
|
961 |
|
962 |
-
#: app/features/events.php:
|
963 |
#: app/features/mec/settings.php:683
|
964 |
msgid "Event Links"
|
965 |
msgstr "Veranstaltungslinks"
|
966 |
|
967 |
-
#: app/features/events.php:
|
968 |
-
#: app/features/fes/form.php:716 app/libraries/main.php:
|
969 |
msgid "Event Link"
|
970 |
msgstr "Veranstaltungslink"
|
971 |
|
972 |
-
#: app/features/events.php:
|
973 |
#: app/features/fes/form.php:717 app/features/fes/form.php:722
|
974 |
msgid "eg. http://yoursite.com/your-event"
|
975 |
msgstr "z.B. http://yoursite.com/your-event"
|
976 |
|
977 |
-
#: app/features/events.php:
|
978 |
#, fuzzy
|
979 |
#| msgid ""
|
980 |
#| "If you fill it, it will be replaced instead of default event page link. "
|
@@ -988,32 +993,32 @@ msgstr ""
|
|
988 |
"dieser durch einen neuen link ersetzt werden. Vollständigen Link einfügen, "
|
989 |
"einschließlich http(s)://"
|
990 |
|
991 |
-
#: app/features/events.php:
|
992 |
msgid "URL Shortener"
|
993 |
msgstr ""
|
994 |
|
995 |
-
#: app/features/events.php:
|
996 |
-
#: app/features/fes/form.php:721 app/libraries/main.php:
|
997 |
#: app/skins/single.php:684 app/skins/single/default.php:140
|
998 |
#: app/skins/single/default.php:363 app/skins/single/m1.php:205
|
999 |
-
#: app/skins/single/m2.php:132 app/skins/single/modern.php:
|
1000 |
#: app/widgets/single.php:107
|
1001 |
msgid "More Info"
|
1002 |
msgstr "Mehr Informationen"
|
1003 |
|
1004 |
-
#: app/features/events.php:
|
1005 |
msgid "More Information"
|
1006 |
msgstr "z.B. Noch mehr Informationen "
|
1007 |
|
1008 |
-
#: app/features/events.php:
|
1009 |
msgid "Current Window"
|
1010 |
msgstr "Aktuelles Fenster"
|
1011 |
|
1012 |
-
#: app/features/events.php:
|
1013 |
msgid "New Window"
|
1014 |
msgstr "Neues Fenster"
|
1015 |
|
1016 |
-
#: app/features/events.php:
|
1017 |
msgid ""
|
1018 |
"If you fill it, it will be shown in event details page as an optional link. "
|
1019 |
"Insert full link including http(s)://"
|
@@ -1024,143 +1029,147 @@ msgstr ""
|
|
1024 |
"Text angezeigt werden soll: zum Beispiel: Noch mehr Informationen oder Hier "
|
1025 |
"zur Anmeldung (z.B. bei Webinaren sinnvoll) "
|
1026 |
|
1027 |
-
#: app/features/events.php:
|
1028 |
msgid "Total booking limits"
|
1029 |
msgstr "Gesamt Verfügbare Plätze"
|
1030 |
|
1031 |
-
#: app/features/events.php:
|
1032 |
-
#: app/features/events.php:
|
1033 |
#: app/modules/booking/steps/tickets.php:43
|
1034 |
-
#: app/skins/available_spot/tpl.php:
|
1035 |
msgid "Unlimited"
|
1036 |
msgstr "Unlimitiert"
|
1037 |
|
1038 |
-
#: app/features/events.php:
|
1039 |
msgid ""
|
1040 |
"If you want to set a limit to all tickets, uncheck this checkbox and put a "
|
1041 |
"limitation number."
|
1042 |
msgstr ""
|
1043 |
|
1044 |
-
#: app/features/events.php:
|
1045 |
#, fuzzy
|
1046 |
#| msgid "Choose your single event style."
|
1047 |
msgid "Read About A Booking System"
|
1048 |
msgstr "Wählen Sie Ihren Single Event Stil"
|
1049 |
|
1050 |
-
#: app/features/events.php:
|
1051 |
msgid "100"
|
1052 |
msgstr "z.B. 100"
|
1053 |
|
1054 |
-
#: app/features/events.php:
|
1055 |
#, fuzzy
|
1056 |
#| msgid "Total booking limits"
|
1057 |
msgid "Total user booking limits"
|
1058 |
msgstr "Gesamt Verfügbare Plätze"
|
1059 |
|
1060 |
-
#: app/features/events.php:
|
1061 |
-
#: app/features/events.php:
|
1062 |
msgid "Inherit from global options"
|
1063 |
msgstr "Aus den globalen Einstellungen übernehmen"
|
1064 |
|
1065 |
-
#: app/features/events.php:
|
1066 |
msgid "12"
|
1067 |
msgstr "12"
|
1068 |
|
1069 |
-
#: app/features/events.php:
|
1070 |
-
#: app/libraries/main.php:
|
1071 |
msgid "Tickets"
|
1072 |
msgstr "Tickets"
|
1073 |
|
1074 |
-
#: app/features/events.php:
|
1075 |
msgid ""
|
1076 |
"You're translating an event so MEC will use the original event for tickets "
|
1077 |
"and booking. You can only translate the ticket name and description. Please "
|
1078 |
"define exact tickets that you defined in the original event here."
|
1079 |
msgstr ""
|
1080 |
|
1081 |
-
#: app/features/events.php:
|
1082 |
msgid "Add Ticket"
|
1083 |
msgstr "Ticket hinzufügen"
|
1084 |
|
1085 |
-
#: app/features/events.php:
|
1086 |
msgid "Ticket Name"
|
1087 |
msgstr "Ticket Name"
|
1088 |
|
1089 |
-
#: app/features/events.php:
|
1090 |
-
#: app/features/events.php:
|
1091 |
#: app/features/ix.php:3508 app/features/ix.php:3549
|
1092 |
msgid "Start Time"
|
1093 |
msgstr "Uhrzeit des Beginns"
|
1094 |
|
1095 |
-
#: app/features/events.php:
|
1096 |
-
#: app/features/events.php:
|
1097 |
#: app/features/ix.php:3508 app/features/ix.php:3549
|
1098 |
msgid "End Time"
|
1099 |
msgstr "Uhrzeit Ende"
|
1100 |
|
1101 |
-
#: app/features/events.php:
|
1102 |
-
#: app/features/events.php:
|
1103 |
-
#: app/features/events.php:
|
1104 |
-
#: app/features/events.php:
|
1105 |
-
#: app/features/events.php:
|
1106 |
-
#: app/features/events.php:
|
1107 |
#: app/features/mec/booking.php:391 app/features/mec/booking.php:420
|
1108 |
#: app/features/mec/booking.php:423
|
1109 |
msgid "Price"
|
1110 |
msgstr "Preis"
|
1111 |
|
1112 |
-
#: app/features/events.php:
|
1113 |
-
|
|
|
|
|
|
|
|
|
1114 |
msgstr "Bitte 0 für kostenloses Ticket eingeben. Bitte nur Zahlen eintragen"
|
1115 |
|
1116 |
-
#: app/features/events.php:
|
1117 |
-
#: app/features/events.php:
|
1118 |
msgid "Price Label"
|
1119 |
msgstr "Preisschild"
|
1120 |
|
1121 |
-
#: app/features/events.php:
|
1122 |
msgid "For showing on website. e.g. $15"
|
1123 |
msgstr "Um das auf der Webseite anzuzeigen zum Beispiel 15 €"
|
1124 |
|
1125 |
-
#: app/features/events.php:
|
1126 |
msgid "Available Tickets"
|
1127 |
msgstr "Verfügbare Tickets: %s "
|
1128 |
|
1129 |
-
#: app/features/events.php:
|
1130 |
msgid "Minimum Ticket e.g. 3"
|
1131 |
msgstr "Ticket minimum z.B. 3"
|
1132 |
|
1133 |
-
#: app/features/events.php:
|
1134 |
msgid "MinimumTicket"
|
1135 |
msgstr "Ticket minimum"
|
1136 |
|
1137 |
-
#: app/features/events.php:
|
1138 |
msgid "Set a number for the minimum ticket reservation"
|
1139 |
msgstr ""
|
1140 |
|
1141 |
-
#: app/features/events.php:
|
1142 |
msgid "e.g. 0"
|
1143 |
msgstr "z.B. 0"
|
1144 |
|
1145 |
-
#: app/features/events.php:
|
1146 |
msgid "Day"
|
1147 |
msgstr "Tag"
|
1148 |
|
1149 |
-
#: app/features/events.php:
|
1150 |
msgid "Hour"
|
1151 |
msgstr "Stunde"
|
1152 |
|
1153 |
-
#: app/features/events.php:
|
1154 |
#, php-format
|
1155 |
msgid "Stop selling ticket %s before event start."
|
1156 |
msgstr ""
|
1157 |
|
1158 |
-
#: app/features/events.php:
|
1159 |
msgid "Price per Date"
|
1160 |
msgstr "Preis pro Datum"
|
1161 |
|
1162 |
-
#: app/features/events.php:
|
1163 |
-
#: app/features/events.php:
|
1164 |
#: app/features/mec/meta_boxes/display_options.php:1117
|
1165 |
#: app/features/mec/meta_boxes/search_form.php:67
|
1166 |
#: app/features/mec/meta_boxes/search_form.php:137
|
@@ -1173,28 +1182,28 @@ msgstr "Preis pro Datum"
|
|
1173 |
#: app/features/mec/meta_boxes/search_form.php:620
|
1174 |
#: app/features/mec/meta_boxes/search_form.php:690
|
1175 |
#: app/features/mec/meta_boxes/search_form.php:796
|
1176 |
-
#: app/features/mec/settings.php:
|
1177 |
#: app/libraries/skins.php:1007
|
1178 |
msgid "Label"
|
1179 |
msgstr "Label"
|
1180 |
|
1181 |
-
#: app/features/events.php:
|
1182 |
msgid "Fees"
|
1183 |
msgstr "Gebühren"
|
1184 |
|
1185 |
-
#: app/features/events.php:
|
1186 |
#: app/features/mec/booking.php:307 app/features/mec/booking.php:336
|
1187 |
msgid "Fee Title"
|
1188 |
msgstr "Gebühren Name"
|
1189 |
|
1190 |
-
#: app/features/events.php:
|
1191 |
-
#: app/features/events.php:
|
1192 |
#: app/features/mec/booking.php:311 app/features/mec/booking.php:314
|
1193 |
#: app/features/mec/booking.php:340 app/features/mec/booking.php:343
|
1194 |
msgid "Amount"
|
1195 |
msgstr "Betrag"
|
1196 |
|
1197 |
-
#: app/features/events.php:
|
1198 |
#: app/features/mec/booking.php:315 app/features/mec/booking.php:344
|
1199 |
msgid ""
|
1200 |
"Fee amount, considered as fixed amount if you set the type to amount "
|
@@ -1203,85 +1212,85 @@ msgstr ""
|
|
1203 |
"Gebührenbetrag, gilt als fester Betrag, wenn Sie die Art auf Betrag setzen, "
|
1204 |
"sonst als Prozentsatz"
|
1205 |
|
1206 |
-
#: app/features/events.php:
|
1207 |
#: app/features/mec/booking.php:322 app/features/mec/booking.php:351
|
1208 |
msgid "Percent"
|
1209 |
msgstr "Prozent"
|
1210 |
|
1211 |
-
#: app/features/events.php:
|
1212 |
#: app/features/mec/booking.php:323 app/features/mec/booking.php:352
|
1213 |
msgid "Amount (Per Ticket)"
|
1214 |
msgstr "Betrag (pro Ticket)"
|
1215 |
|
1216 |
-
#: app/features/events.php:
|
1217 |
#: app/features/mec/booking.php:324 app/features/mec/booking.php:353
|
1218 |
msgid "Amount (Per Booking)"
|
1219 |
msgstr "Betrag (pro Buchung)"
|
1220 |
|
1221 |
-
#: app/features/events.php:
|
1222 |
msgid "Ticket Variations / Options"
|
1223 |
msgstr ""
|
1224 |
|
1225 |
-
#: app/features/events.php:
|
1226 |
#: app/features/mec/booking.php:392 app/features/mec/booking.php:424
|
1227 |
msgid "Option Price"
|
1228 |
msgstr "Preis Optionen"
|
1229 |
|
1230 |
-
#: app/features/events.php:
|
1231 |
-
#: app/features/events.php:
|
1232 |
#: app/features/mec/booking.php:398 app/features/mec/booking.php:401
|
1233 |
#: app/features/mec/booking.php:430 app/features/mec/booking.php:433
|
1234 |
msgid "Maximum Per Ticket"
|
1235 |
msgstr "Maximum pro Ticket"
|
1236 |
|
1237 |
-
#: app/features/events.php:
|
1238 |
#: app/features/mec/booking.php:402 app/features/mec/booking.php:434
|
1239 |
msgid "Maximum Per Ticket. Leave it blank for unlimited."
|
1240 |
msgstr "Maximum pro Ticket. Leerlassen für unendlich."
|
1241 |
|
1242 |
-
#: app/features/events.php:
|
1243 |
-
#: app/libraries/main.php:
|
1244 |
msgid "MEC Name"
|
1245 |
msgstr "MEC Name"
|
1246 |
|
1247 |
-
#: app/features/events.php:
|
1248 |
-
#: app/libraries/main.php:
|
1249 |
msgid "MEC Email"
|
1250 |
msgstr "MEC Email"
|
1251 |
|
1252 |
-
#: app/features/events.php:
|
1253 |
-
#: app/libraries/main.php:
|
1254 |
msgid "Text"
|
1255 |
msgstr "Text"
|
1256 |
|
1257 |
-
#: app/features/events.php:
|
1258 |
#: app/features/organizers.php:103 app/features/organizers.php:148
|
1259 |
#: app/features/speakers.php:119 app/features/speakers.php:192
|
1260 |
-
#: app/features/speakers.php:271 app/libraries/main.php:
|
1261 |
msgid "Tel"
|
1262 |
msgstr "Tel"
|
1263 |
|
1264 |
-
#: app/features/events.php:
|
1265 |
-
#: app/libraries/main.php:
|
1266 |
msgid "File"
|
1267 |
msgstr "Datei"
|
1268 |
|
1269 |
-
#: app/features/events.php:
|
1270 |
-
#: app/libraries/main.php:
|
1271 |
msgid "Textarea"
|
1272 |
msgstr "Textbereich"
|
1273 |
|
1274 |
-
#: app/features/events.php:
|
1275 |
-
#: app/libraries/main.php:
|
1276 |
msgid "Checkboxes"
|
1277 |
msgstr "Checkboxes"
|
1278 |
|
1279 |
-
#: app/features/events.php:
|
1280 |
-
#: app/libraries/main.php:
|
1281 |
msgid "Radio Buttons"
|
1282 |
msgstr "Radio Buttons"
|
1283 |
|
1284 |
-
#: app/features/events.php:
|
1285 |
#: app/features/mec/meta_boxes/search_form.php:34
|
1286 |
#: app/features/mec/meta_boxes/search_form.php:41
|
1287 |
#: app/features/mec/meta_boxes/search_form.php:49
|
@@ -1357,44 +1366,44 @@ msgstr "Radio Buttons"
|
|
1357 |
#: app/features/mec/meta_boxes/search_form.php:785
|
1358 |
#: app/features/mec/meta_boxes/search_form.php:792
|
1359 |
#: app/features/mec/meta_boxes/search_form.php:799
|
1360 |
-
#: app/features/mec/meta_boxes/search_form.php:813 app/libraries/main.php:
|
1361 |
msgid "Dropdown"
|
1362 |
msgstr "Dropdown"
|
1363 |
|
1364 |
-
#: app/features/events.php:
|
1365 |
-
#: app/libraries/main.php:
|
1366 |
msgid "Agreement"
|
1367 |
msgstr "Zustimmung"
|
1368 |
|
1369 |
-
#: app/features/events.php:
|
1370 |
-
#: app/libraries/main.php:
|
1371 |
msgid "Paragraph"
|
1372 |
msgstr "Absatz"
|
1373 |
|
1374 |
-
#: app/features/events.php:
|
1375 |
-
#: app/features/events.php:
|
1376 |
#, php-format
|
1377 |
msgid "Show all %s"
|
1378 |
msgstr "Zeige alle %s"
|
1379 |
|
1380 |
-
#: app/features/events.php:
|
1381 |
msgid "labels"
|
1382 |
msgstr "Labels + Eventstatus"
|
1383 |
|
1384 |
-
#: app/features/events.php:
|
1385 |
msgid "locations"
|
1386 |
msgstr "Orte"
|
1387 |
|
1388 |
-
#: app/features/events.php:
|
1389 |
msgid "organizers"
|
1390 |
msgstr "Veranstalter"
|
1391 |
|
1392 |
-
#: app/features/events.php:
|
1393 |
msgid "Attendees List"
|
1394 |
msgstr "Teilnehmer Liste"
|
1395 |
|
1396 |
-
#: app/features/events.php:
|
1397 |
-
#: app/features/events.php:
|
1398 |
#: app/features/ix.php:3549 app/features/locations.php:58
|
1399 |
#: app/features/locations.php:232 app/features/locations.php:289
|
1400 |
#: app/features/locations.php:291 app/features/locations.php:300
|
@@ -1410,87 +1419,87 @@ msgstr "Teilnehmer Liste"
|
|
1410 |
#: app/features/mec/meta_boxes/search_form.php:591
|
1411 |
#: app/features/mec/meta_boxes/search_form.php:661
|
1412 |
#: app/features/mec/meta_boxes/search_form.php:767
|
1413 |
-
#: app/features/mec/settings.php:
|
1414 |
#: app/features/popup/event.php:246 app/features/popup/event.php:255
|
1415 |
-
#: app/features/search.php:73 app/libraries/main.php:
|
1416 |
-
#: app/libraries/main.php:
|
1417 |
#: app/skins/single.php:503 app/skins/single.php:941
|
1418 |
#: app/skins/single/default.php:176 app/skins/single/default.php:399
|
1419 |
#: app/skins/single/m1.php:169 app/skins/single/m2.php:95
|
1420 |
-
#: app/skins/single/modern.php:
|
1421 |
msgid "Location"
|
1422 |
msgstr "Ort"
|
1423 |
|
1424 |
-
#: app/features/events.php:
|
1425 |
msgid "Repeat"
|
1426 |
msgstr "Wiederholen"
|
1427 |
|
1428 |
-
#: app/features/events.php:
|
1429 |
msgid "Author"
|
1430 |
msgstr "Autor"
|
1431 |
|
1432 |
-
#: app/features/events.php:
|
1433 |
msgid "iCal Export"
|
1434 |
msgstr "ical Export"
|
1435 |
|
1436 |
-
#: app/features/events.php:
|
1437 |
msgid "CSV Export"
|
1438 |
msgstr "CSV Export"
|
1439 |
|
1440 |
-
#: app/features/events.php:
|
1441 |
msgid "MS Excel Export"
|
1442 |
msgstr "MS Excel Export"
|
1443 |
|
1444 |
-
#: app/features/events.php:
|
1445 |
msgid "XML Export"
|
1446 |
msgstr "XML Export"
|
1447 |
|
1448 |
-
#: app/features/events.php:
|
1449 |
msgid "JSON Export"
|
1450 |
msgstr "JSON Export"
|
1451 |
|
1452 |
-
#: app/features/events.php:
|
1453 |
-
#: app/features/events.php:
|
1454 |
msgid "Duplicate"
|
1455 |
msgstr "Kopie"
|
1456 |
|
1457 |
-
#: app/features/events.php:
|
1458 |
#: app/features/fes.php:223 app/features/ix.php:3508 app/features/ix.php:3549
|
1459 |
#: app/features/labels.php:177 app/features/locations.php:231
|
1460 |
#: app/features/organizers.php:203 app/features/speakers.php:268
|
1461 |
msgid "ID"
|
1462 |
msgstr "ID"
|
1463 |
|
1464 |
-
#: app/features/events.php:
|
1465 |
#: app/features/ix.php:3508 app/features/ix.php:3549
|
1466 |
msgid "Link"
|
1467 |
msgstr "Link"
|
1468 |
|
1469 |
-
#: app/features/events.php:
|
1470 |
#, php-format
|
1471 |
msgid "%s Tel"
|
1472 |
msgstr "%s Tel"
|
1473 |
|
1474 |
-
#: app/features/events.php:
|
1475 |
#, php-format
|
1476 |
msgid "%s Email"
|
1477 |
msgstr "%s Email"
|
1478 |
|
1479 |
-
#: app/features/events.php:
|
1480 |
-
#: app/features/profile/profile.php:186 app/libraries/main.php:
|
1481 |
-
#: app/libraries/main.php:
|
1482 |
msgid "Ticket"
|
1483 |
msgstr "Ticket"
|
1484 |
|
1485 |
-
#: app/features/events.php:
|
1486 |
msgid "Variations"
|
1487 |
msgstr "Variationen"
|
1488 |
|
1489 |
-
#: app/features/events.php:
|
1490 |
msgid "Unknown"
|
1491 |
msgstr "Unbekannt"
|
1492 |
|
1493 |
-
#: app/features/events.php:
|
1494 |
msgid "No Attendees Found!"
|
1495 |
msgstr "Keine Teilnehmer gefunden!"
|
1496 |
|
@@ -1531,7 +1540,7 @@ msgstr "Die Veranstaltung wurde entfernt."
|
|
1531 |
msgid "Order Time"
|
1532 |
msgstr "Uhrzeit Bestellung"
|
1533 |
|
1534 |
-
#: app/features/fes.php:223 app/libraries/main.php:
|
1535 |
msgid "Transaction ID"
|
1536 |
msgstr "Transaktions-ID"
|
1537 |
|
@@ -1563,13 +1572,13 @@ msgstr "Das eingegebene Captcha ist ungültig! Bitte versuchen Sie es erneut."
|
|
1563 |
msgid "Please fill event title field!"
|
1564 |
msgstr "Bitte füllen Sie das Event Titelfeld"
|
1565 |
|
1566 |
-
#: app/features/fes.php:
|
1567 |
msgid "The event submitted. It will publish as soon as possible."
|
1568 |
msgstr ""
|
1569 |
"Die Veranstaltung wurde übermittelt. Sie wird sobald wie möglich "
|
1570 |
"veröffentlicht werden."
|
1571 |
|
1572 |
-
#: app/features/fes.php:
|
1573 |
msgid "The event published."
|
1574 |
msgstr "Die Veranstaltung wurde veröffentlicht."
|
1575 |
|
@@ -1658,15 +1667,15 @@ msgid "Remove Image"
|
|
1658 |
msgstr "Bild entfernen"
|
1659 |
|
1660 |
#: app/features/fes/form.php:793 app/features/labels.php:61
|
1661 |
-
#: app/features/labels.php:221 app/features/mec.php:
|
1662 |
-
#: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:
|
1663 |
#: app/skins/single.php:713 app/skins/single/default.php:155
|
1664 |
#: app/skins/single/default.php:378 app/skins/single/m1.php:73
|
1665 |
-
#: app/skins/single/modern.php:
|
1666 |
msgid "Labels"
|
1667 |
msgstr "Labels"
|
1668 |
|
1669 |
-
#: app/features/fes/form.php:839 app/features/mec.php:
|
1670 |
#: app/features/mec/meta_boxes/filter.php:147
|
1671 |
msgid "Tags"
|
1672 |
msgstr "Schlagworte"
|
@@ -1746,7 +1755,7 @@ msgstr "Drittanbieter-Plugin ist ungültig!"
|
|
1746 |
msgid "Both of API key and Calendar ID are required!"
|
1747 |
msgstr "Beide, API Schlüssel und Calender ID wird benötigt"
|
1748 |
|
1749 |
-
#: app/features/ix.php:2772 app/features/ix.php:3191 app/features/ix.php:
|
1750 |
msgid "Please select some events to import!"
|
1751 |
msgstr "Bitte wählen Sie einige Veranstaltungen aus zum importieren"
|
1752 |
|
@@ -1786,28 +1795,28 @@ msgstr ""
|
|
1786 |
msgid "All of Client App, Client Secret and Calendar ID are required!"
|
1787 |
msgstr "Dies wird alles benötigt: Client ID, Client Secret und Calender ID!"
|
1788 |
|
1789 |
-
#: app/features/ix.php:
|
1790 |
#, php-format
|
1791 |
msgid "%s events added to Google Calendar successfully."
|
1792 |
msgstr "%s Events wurden erfolgreich zum Google Kalender hinzugefügt."
|
1793 |
|
1794 |
-
#: app/features/ix.php:
|
1795 |
#, php-format
|
1796 |
msgid "%s previously added events get updated."
|
1797 |
msgstr "%s vorherige hinzugefügte Events wurden aktualisiert."
|
1798 |
|
1799 |
-
#: app/features/ix.php:
|
1800 |
#, php-format
|
1801 |
msgid "%s events failed to add for following reasons: %s"
|
1802 |
msgstr "%s Events wurde aus folgenden Gründen nicht hinzugefügt: %s"
|
1803 |
|
1804 |
-
#: app/features/ix.php:
|
1805 |
#, fuzzy
|
1806 |
#| msgid "Please insert your facebook page's link."
|
1807 |
msgid "Please insert your Facebook page's link."
|
1808 |
msgstr "Bitte Ihren Facebook Seitenlink eingeben."
|
1809 |
|
1810 |
-
#: app/features/ix.php:
|
1811 |
#, fuzzy
|
1812 |
#| msgid ""
|
1813 |
#| "We couldn't recognize your Facebook page. Please check it and provide us "
|
@@ -1819,11 +1828,11 @@ msgstr ""
|
|
1819 |
"Wir konnten Ihre Facebookseite nicht erkennen. Bitte checken Sie das und "
|
1820 |
"stellen Sie uns einen gültigen Facebookseitenlink zur Verfügung."
|
1821 |
|
1822 |
-
#: app/features/ix.php:
|
1823 |
msgid "Please insert your facebook page's link."
|
1824 |
msgstr "Bitte Ihren Facebook Seitenlink eingeben."
|
1825 |
|
1826 |
-
#: app/features/ix.php:
|
1827 |
msgid ""
|
1828 |
"We couldn't recognize your Facebook page. Please check it and provide us a "
|
1829 |
"valid facebook page link."
|
@@ -2006,7 +2015,7 @@ msgstr "Zum Google Kalender hinzufügen"
|
|
2006 |
|
2007 |
#: app/features/ix/export_g_calendar.php:93 app/features/mec/booking.php:678
|
2008 |
#: app/features/mec/modules.php:398 app/features/mec/notifications.php:909
|
2009 |
-
#: app/features/mec/settings.php:
|
2010 |
msgid "Checking ..."
|
2011 |
msgstr "Überprüfung"
|
2012 |
|
@@ -2463,30 +2472,30 @@ msgstr "Normal"
|
|
2463 |
|
2464 |
#: app/features/labels.php:117 app/features/labels.php:142
|
2465 |
#: app/skins/agenda/render.php:41 app/skins/available_spot/tpl.php:44
|
2466 |
-
#: app/skins/carousel/render.php:
|
2467 |
-
#: app/skins/cover/tpl.php:34 app/skins/daily_view/render.php:
|
2468 |
#: app/skins/grid/render.php:54 app/skins/list/render.php:39
|
2469 |
-
#: app/skins/masonry/render.php:30 app/skins/monthly_view/calendar.php:
|
2470 |
-
#: app/skins/monthly_view/calendar_clean.php:
|
2471 |
-
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:
|
2472 |
-
#: app/skins/tile/render.php:
|
2473 |
-
#: app/skins/timetable/render.php:41 app/skins/timetable/render.php:
|
2474 |
-
#: app/skins/weekly_view/render.php:
|
2475 |
msgid "Featured"
|
2476 |
msgstr "Vorgeschlagen"
|
2477 |
|
2478 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2479 |
-
#: app/libraries/main.php:
|
2480 |
-
#: app/skins/available_spot/tpl.php:45 app/skins/carousel/render.php:
|
2481 |
-
#: app/skins/countdown/tpl.php:37 app/skins/cover/tpl.php:
|
2482 |
-
#: app/skins/daily_view/render.php:
|
2483 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:31
|
2484 |
-
#: app/skins/monthly_view/calendar.php:
|
2485 |
-
#: app/skins/monthly_view/calendar_clean.php:
|
2486 |
-
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:
|
2487 |
-
#: app/skins/tile/render.php:
|
2488 |
-
#: app/skins/timetable/render.php:
|
2489 |
-
#: app/skins/weekly_view/render.php:
|
2490 |
msgid "Canceled"
|
2491 |
msgstr "Abgesagt"
|
2492 |
|
@@ -2510,9 +2519,9 @@ msgstr "Slug"
|
|
2510 |
msgid "Event %s"
|
2511 |
msgstr "Event %s"
|
2512 |
|
2513 |
-
#: app/features/locations.php:59 app/features/mec.php:
|
2514 |
#: app/features/mec/dashboard.php:275 app/features/mec/meta_boxes/filter.php:96
|
2515 |
-
#: app/libraries/main.php:
|
2516 |
msgid "Locations"
|
2517 |
msgstr "Orte"
|
2518 |
|
@@ -2636,7 +2645,7 @@ msgstr "Bild wählen"
|
|
2636 |
msgid "Don't show map in single event page"
|
2637 |
msgstr "Karte in Einzelansicht nicht anzeigen"
|
2638 |
|
2639 |
-
#: app/features/locations.php:359 app/libraries/main.php:
|
2640 |
msgid "Other Locations"
|
2641 |
msgstr "Andere Orte"
|
2642 |
|
@@ -2654,145 +2663,145 @@ msgstr ""
|
|
2654 |
msgid "<strong>"
|
2655 |
msgstr ""
|
2656 |
|
2657 |
-
#: app/features/mec.php:
|
2658 |
msgid ""
|
2659 |
"Activation failed. Please check your purchase code or license type."
|
2660 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
2661 |
msgstr ""
|
2662 |
|
2663 |
-
#: app/features/mec.php:
|
2664 |
msgid "Troubleshooting"
|
2665 |
msgstr "Problembehebung"
|
2666 |
|
2667 |
-
#: app/features/mec.php:
|
2668 |
#, fuzzy
|
2669 |
#| msgid "Select All"
|
2670 |
msgid "Select Date"
|
2671 |
msgstr "Alles Auswählen"
|
2672 |
|
2673 |
-
#: app/features/mec.php:
|
2674 |
#, php-format
|
2675 |
msgid "%s to %s"
|
2676 |
msgstr "%s zu %s"
|
2677 |
|
2678 |
-
#: app/features/mec.php:
|
2679 |
msgid ""
|
2680 |
"Your options is not in JSON format. Please insert correct options in this "
|
2681 |
"field and try again."
|
2682 |
msgstr ""
|
2683 |
|
2684 |
-
#: app/features/mec.php:
|
2685 |
msgid "Your options field can not be empty!"
|
2686 |
msgstr "Ihr Optionen Feld darf nicht leer sein!"
|
2687 |
|
2688 |
-
#: app/features/mec.php:
|
2689 |
msgid "Your options imported successfuly."
|
2690 |
msgstr "Ihre Einstellungen wurden erfolgreich importiert."
|
2691 |
|
2692 |
-
#: app/features/mec.php:
|
2693 |
msgid "MEC - Support"
|
2694 |
msgstr "MEC - Support"
|
2695 |
|
2696 |
-
#: app/features/mec.php:
|
2697 |
#: app/features/mec/support.php:80 app/features/mec/support.php:93
|
2698 |
msgid "Support"
|
2699 |
msgstr "Support"
|
2700 |
|
2701 |
-
#: app/features/mec.php:
|
2702 |
#: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
|
2703 |
-
#: app/libraries/main.php:
|
2704 |
msgid "Organizers"
|
2705 |
msgstr "Veranstalter"
|
2706 |
|
2707 |
-
#: app/features/mec.php:
|
2708 |
#: app/features/mec/dashboard.php:268
|
2709 |
msgid "Shortcodes"
|
2710 |
msgstr "Shortcodes"
|
2711 |
|
2712 |
-
#: app/features/mec.php:
|
2713 |
msgid "MEC - Settings"
|
2714 |
msgstr "MEC - Einstellungen"
|
2715 |
|
2716 |
-
#: app/features/mec.php:
|
2717 |
msgid "MEC - Addons"
|
2718 |
msgstr "MEC - Erweiterungen"
|
2719 |
|
2720 |
-
#: app/features/mec.php:
|
2721 |
msgid "Addons"
|
2722 |
msgstr "Erweiterungen"
|
2723 |
|
2724 |
-
#: app/features/mec.php:
|
2725 |
#, fuzzy
|
2726 |
#| msgid "Support"
|
2727 |
msgid "MEC - Report"
|
2728 |
msgstr "Support"
|
2729 |
|
2730 |
-
#: app/features/mec.php:
|
2731 |
#, fuzzy
|
2732 |
#| msgid "Export"
|
2733 |
msgid "Report"
|
2734 |
msgstr "Export"
|
2735 |
|
2736 |
-
#: app/features/mec.php:
|
2737 |
#, fuzzy
|
2738 |
#| msgid "Support"
|
2739 |
msgid "MEC - Go Pro"
|
2740 |
msgstr "Support"
|
2741 |
|
2742 |
-
#: app/features/mec.php:
|
2743 |
#: app/libraries/factory.php:1045
|
2744 |
msgid "Go Pro"
|
2745 |
msgstr ""
|
2746 |
|
2747 |
-
#: app/features/mec.php:
|
2748 |
msgid "Add Shortcode"
|
2749 |
msgstr "Shortcode hinzufügen"
|
2750 |
|
2751 |
-
#: app/features/mec.php:
|
2752 |
msgid "Add New Shortcode"
|
2753 |
msgstr "Neuen Shortcode hinzufügen"
|
2754 |
|
2755 |
-
#: app/features/mec.php:
|
2756 |
msgid "No shortcodes found!"
|
2757 |
msgstr "Keine Shortcodes gefunden!"
|
2758 |
|
2759 |
-
#: app/features/mec.php:
|
2760 |
msgid "All Shortcodes"
|
2761 |
msgstr "Alle Shortcodes"
|
2762 |
|
2763 |
-
#: app/features/mec.php:
|
2764 |
msgid "Edit shortcodes"
|
2765 |
msgstr "Shortcode ändern"
|
2766 |
|
2767 |
-
#: app/features/mec.php:
|
2768 |
msgid "No shortcodes found in Trash!"
|
2769 |
msgstr "Keine Shortcodes im Papierkorb gefunden!"
|
2770 |
|
2771 |
-
#: app/features/mec.php:
|
2772 |
msgid "Display Options"
|
2773 |
msgstr "Darstellungsoptionen"
|
2774 |
|
2775 |
-
#: app/features/mec.php:
|
2776 |
msgid "Filter Options"
|
2777 |
msgstr "Filteroptionen"
|
2778 |
|
2779 |
-
#: app/features/mec.php:
|
2780 |
msgid "Search Form"
|
2781 |
msgstr "Suche Formular"
|
2782 |
|
2783 |
-
#: app/features/mec.php:
|
2784 |
msgid "Display content's images as Popup"
|
2785 |
msgstr ""
|
2786 |
|
2787 |
-
#: app/features/mec.php:
|
2788 |
msgid "Single Event Display Method"
|
2789 |
msgstr "Single Event Anzeigemethode"
|
2790 |
|
2791 |
-
#: app/features/mec.php:
|
2792 |
msgid "Separate Window"
|
2793 |
msgstr "Separates Fenster"
|
2794 |
|
2795 |
-
#: app/features/mec.php:
|
2796 |
#, fuzzy
|
2797 |
#| msgid "Modal 1"
|
2798 |
msgid "Modal Popup"
|
@@ -2835,8 +2844,8 @@ msgstr "Suche…"
|
|
2835 |
#: app/features/mec/notifications.php:828
|
2836 |
#: app/features/mec/notifications.php:926
|
2837 |
#: app/features/mec/notifications.php:940 app/features/mec/settings.php:33
|
2838 |
-
#: app/features/mec/settings.php:
|
2839 |
-
#: app/features/mec/settings.php:
|
2840 |
#: app/features/mec/single.php:17 app/features/mec/single.php:262
|
2841 |
#: app/features/mec/single.php:272 app/features/mec/single.php:314
|
2842 |
#: app/features/mec/single.php:328 app/features/mec/styles.php:11
|
@@ -3051,14 +3060,14 @@ msgstr ""
|
|
3051 |
|
3052 |
#: app/features/mec/booking.php:673 app/features/mec/messages.php:78
|
3053 |
#: app/features/mec/modules.php:393 app/features/mec/notifications.php:904
|
3054 |
-
#: app/features/mec/settings.php:
|
3055 |
#: app/features/mec/styles.php:60 app/features/mec/styling.php:311
|
3056 |
msgid "Saved"
|
3057 |
msgstr "Gesichert"
|
3058 |
|
3059 |
#: app/features/mec/booking.php:674 app/features/mec/messages.php:79
|
3060 |
#: app/features/mec/modules.php:394 app/features/mec/notifications.php:905
|
3061 |
-
#: app/features/mec/settings.php:
|
3062 |
#: app/features/mec/styles.php:61 app/features/mec/styling.php:312
|
3063 |
msgid "Settings Saved!"
|
3064 |
msgstr "Einstellungen gespeichert!"
|
@@ -3066,14 +3075,14 @@ msgstr "Einstellungen gespeichert!"
|
|
3066 |
#: app/features/mec/booking.php:676 app/features/mec/booking.php:698
|
3067 |
#: app/features/mec/modules.php:396 app/features/mec/modules.php:418
|
3068 |
#: app/features/mec/notifications.php:907
|
3069 |
-
#: app/features/mec/notifications.php:929 app/features/mec/settings.php:
|
3070 |
-
#: app/features/mec/settings.php:
|
3071 |
-
#: app/features/mec/single.php:317 app/libraries/main.php:
|
3072 |
msgid "Verified"
|
3073 |
msgstr "Verifiziert"
|
3074 |
|
3075 |
#: app/features/mec/booking.php:700 app/features/mec/modules.php:420
|
3076 |
-
#: app/features/mec/notifications.php:931 app/features/mec/settings.php:
|
3077 |
#: app/features/mec/single.php:319
|
3078 |
msgid "Please Refresh Page"
|
3079 |
msgstr "Bitte Seiten Refresh vornehmen"
|
@@ -4285,9 +4294,9 @@ msgstr "Deaktiviert"
|
|
4285 |
#: app/features/mec/meta_boxes/search_form.php:606
|
4286 |
#: app/features/mec/meta_boxes/search_form.php:676
|
4287 |
#: app/features/mec/meta_boxes/search_form.php:782
|
4288 |
-
#: app/features/mec/settings.php:
|
4289 |
#: app/features/search.php:83 app/features/speakers.php:61
|
4290 |
-
#: app/features/speakers.php:269 app/libraries/main.php:
|
4291 |
#: app/libraries/skins.php:955
|
4292 |
msgid "Speaker"
|
4293 |
msgstr "Sprecher"
|
@@ -4303,7 +4312,7 @@ msgstr "Sprecher"
|
|
4303 |
#: app/features/mec/meta_boxes/search_form.php:613
|
4304 |
#: app/features/mec/meta_boxes/search_form.php:683
|
4305 |
#: app/features/mec/meta_boxes/search_form.php:789
|
4306 |
-
#: app/features/mec/settings.php:
|
4307 |
#: app/features/search.php:88 app/libraries/skins.php:981
|
4308 |
msgid "Tag"
|
4309 |
msgstr "Schlagwort"
|
@@ -4420,8 +4429,8 @@ msgstr "Google Maps API"
|
|
4420 |
msgid "Google Map Options"
|
4421 |
msgstr "Google Maps Einstellungen"
|
4422 |
|
4423 |
-
#: app/features/mec/modules.php:86 app/features/mec/settings.php:
|
4424 |
-
#: app/features/mec/settings.php:
|
4425 |
msgid "Required!"
|
4426 |
msgstr "Erforderlich (Pflichtfeld)"
|
4427 |
|
@@ -4526,9 +4535,9 @@ msgstr "Wetter"
|
|
4526 |
msgid "Show weather module on event page"
|
4527 |
msgstr "Wettermodul auf der Eventseite anzeigen"
|
4528 |
|
4529 |
-
#: app/features/mec/modules.php:239 app/features/mec/settings.php:
|
4530 |
-
#: app/features/mec/settings.php:
|
4531 |
-
#: app/features/mec/settings.php:
|
4532 |
msgid "API Key"
|
4533 |
msgstr "API Schlüssel"
|
4534 |
|
@@ -5018,7 +5027,7 @@ msgstr ""
|
|
5018 |
"benachrichtigen."
|
5019 |
|
5020 |
#: app/features/mec/notifications.php:387
|
5021 |
-
#: app/features/mec/notifications.php:
|
5022 |
msgid "Send the email to admin"
|
5023 |
msgstr "Sendet die E-Mail zum Admin"
|
5024 |
|
@@ -5046,7 +5055,7 @@ msgstr ""
|
|
5046 |
"Informieren, dass eine neue Buchung eingegangen ist."
|
5047 |
|
5048 |
#: app/features/mec/notifications.php:530 app/libraries/main.php:581
|
5049 |
-
#: app/libraries/notifications.php:
|
5050 |
msgid "Booking Reminder"
|
5051 |
msgstr "Buchungs Erinnerung"
|
5052 |
|
@@ -5111,8 +5120,8 @@ msgid "Status of event"
|
|
5111 |
msgstr "Status der Veranstaltung"
|
5112 |
|
5113 |
#: app/features/mec/notifications.php:720
|
5114 |
-
#: app/features/mec/notifications.php:803 app/features/mec/settings.php:
|
5115 |
-
#: app/features/mec/settings.php:
|
5116 |
msgid "Event Note"
|
5117 |
msgstr "Veranstaltungsnotiz"
|
5118 |
|
@@ -5298,7 +5307,7 @@ msgid "You can enable/disable Schema scripts"
|
|
5298 |
msgstr ""
|
5299 |
|
5300 |
#: app/features/mec/settings.php:154 app/features/mec/settings.php:164
|
5301 |
-
#: app/libraries/main.php:
|
5302 |
msgid "Weekdays"
|
5303 |
msgstr "Wochentage"
|
5304 |
|
@@ -5684,7 +5693,7 @@ msgstr "Buchungsoptionen"
|
|
5684 |
msgid "Fees / Taxes Options"
|
5685 |
msgstr "Gebühren/Steuer Optionen"
|
5686 |
|
5687 |
-
#: app/features/mec/settings.php:
|
5688 |
#, php-format
|
5689 |
msgid ""
|
5690 |
"Users can put a note for editors while they're submitting the event. Also "
|
@@ -5696,99 +5705,99 @@ msgstr ""
|
|
5696 |
"Eventbenachrichtigung setzen, um die Notizen der Benutzer in der E-Mail zu "
|
5697 |
"erhalten."
|
5698 |
|
5699 |
-
#: app/features/mec/settings.php:
|
5700 |
msgid "Visibility of Note"
|
5701 |
msgstr "Sichtbarkeit der Anmerkungen zum Event "
|
5702 |
|
5703 |
-
#: app/features/mec/settings.php:
|
5704 |
msgid "Always"
|
5705 |
msgstr "Immer"
|
5706 |
|
5707 |
-
#: app/features/mec/settings.php:
|
5708 |
msgid "While event is not published"
|
5709 |
msgstr "Das Ereignis wird nicht veröffentlicht"
|
5710 |
|
5711 |
-
#: app/features/mec/settings.php:
|
5712 |
msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
|
5713 |
msgstr ""
|
5714 |
"Die Ereignisnotiz wird im Frontend-Einreichungsformular angezeigt und das "
|
5715 |
"Ereignis im Backend bearbeitet."
|
5716 |
|
5717 |
-
#: app/features/mec/settings.php:
|
5718 |
msgid "User Profile"
|
5719 |
msgstr "Benutzer Profil"
|
5720 |
|
5721 |
-
#: app/features/mec/settings.php:
|
5722 |
#, php-format
|
5723 |
msgid ""
|
5724 |
"Put %s shortcode into your desired page. Then users are able to see history "
|
5725 |
"of their bookings."
|
5726 |
msgstr ""
|
5727 |
|
5728 |
-
#: app/features/mec/settings.php:
|
5729 |
msgid "Search Bar"
|
5730 |
msgstr "Suche"
|
5731 |
|
5732 |
-
#: app/features/mec/settings.php:
|
5733 |
#, php-format
|
5734 |
msgid ""
|
5735 |
"Put %s shortcode into your desired page. Then users are able to search events"
|
5736 |
msgstr ""
|
5737 |
|
5738 |
-
#: app/features/mec/settings.php:
|
5739 |
msgid "Ajax Live mode"
|
5740 |
msgstr ""
|
5741 |
|
5742 |
-
#: app/features/mec/settings.php:
|
5743 |
msgid "Ajax mode"
|
5744 |
msgstr ""
|
5745 |
|
5746 |
-
#: app/features/mec/settings.php:
|
5747 |
msgid ""
|
5748 |
"if you enable this option, search button disappeared and to use this "
|
5749 |
"feature, text input field must be enabled."
|
5750 |
msgstr ""
|
5751 |
|
5752 |
-
#: app/features/mec/settings.php:
|
5753 |
#, fuzzy
|
5754 |
#| msgid "Modern Style"
|
5755 |
msgid "Modern Type"
|
5756 |
msgstr "Moderner Stil"
|
5757 |
|
5758 |
-
#: app/features/mec/settings.php:
|
5759 |
msgid "Search bar fields"
|
5760 |
msgstr "Such Felder"
|
5761 |
|
5762 |
-
#: app/features/mec/settings.php:
|
5763 |
#, fuzzy
|
5764 |
#| msgid "Text Input"
|
5765 |
msgid "Text input"
|
5766 |
msgstr "Text eingeben"
|
5767 |
|
5768 |
-
#: app/features/mec/settings.php:
|
5769 |
msgid "Enable Mailchimp Integration"
|
5770 |
msgstr "Mailchimp Integration deaktivieren"
|
5771 |
|
5772 |
-
#: app/features/mec/settings.php:
|
5773 |
-
#: app/features/mec/settings.php:
|
5774 |
msgid "List ID"
|
5775 |
msgstr "List ID"
|
5776 |
|
5777 |
-
#: app/features/mec/settings.php:
|
5778 |
msgid "Subscription Status"
|
5779 |
msgstr "Buchungsstatus"
|
5780 |
|
5781 |
-
#: app/features/mec/settings.php:
|
5782 |
msgid "Subscribe automatically"
|
5783 |
msgstr "automatisch Anmelden/Abonnieren"
|
5784 |
|
5785 |
-
#: app/features/mec/settings.php:
|
5786 |
msgid "Subscribe by verification"
|
5787 |
msgstr ""
|
5788 |
"Anmelden/Abonnieren durch Bestätigung\n"
|
5789 |
" "
|
5790 |
|
5791 |
-
#: app/features/mec/settings.php:
|
5792 |
msgid ""
|
5793 |
"If you choose \"Subscribe by verification\" then an email will send to user "
|
5794 |
"by mailchimp for subscription verification."
|
@@ -5796,71 +5805,71 @@ msgstr ""
|
|
5796 |
"Wenn Sie \"Anmelden durch Verifizierung\" wählen, wird eine E-Mail an den "
|
5797 |
"Benutzer per Mailchimp zur Bestätigung gesendet."
|
5798 |
|
5799 |
-
#: app/features/mec/settings.php:
|
5800 |
#, fuzzy
|
5801 |
#| msgid "Mailchimp Integration"
|
5802 |
msgid "Campaign Monitor Integration"
|
5803 |
msgstr "Mailchimp Integration"
|
5804 |
|
5805 |
-
#: app/features/mec/settings.php:
|
5806 |
#, fuzzy
|
5807 |
#| msgid "Enable Mailchimp Integration"
|
5808 |
msgid "Enable Campaign Monitor Integration"
|
5809 |
msgstr "Mailchimp Integration deaktivieren"
|
5810 |
|
5811 |
-
#: app/features/mec/settings.php:
|
5812 |
#, fuzzy
|
5813 |
#| msgid "Mailchimp Integration"
|
5814 |
msgid "MailerLite Integration"
|
5815 |
msgstr "Mailchimp Integration"
|
5816 |
|
5817 |
-
#: app/features/mec/settings.php:
|
5818 |
#, fuzzy
|
5819 |
#| msgid "Enable Mailchimp Integration"
|
5820 |
msgid "Enable MailerLite Integration"
|
5821 |
msgstr "Mailchimp Integration deaktivieren"
|
5822 |
|
5823 |
-
#: app/features/mec/settings.php:
|
5824 |
msgid "Group ID"
|
5825 |
msgstr "Gruppen ID "
|
5826 |
|
5827 |
-
#: app/features/mec/settings.php:
|
5828 |
#, fuzzy
|
5829 |
#| msgid "BuddyPress Integration"
|
5830 |
msgid "Constant Contact Integration"
|
5831 |
msgstr "Buddy Press Integration"
|
5832 |
|
5833 |
-
#: app/features/mec/settings.php:
|
5834 |
#, fuzzy
|
5835 |
#| msgid "Enable Mailchimp Integration"
|
5836 |
msgid "Enable constantcontact Integration"
|
5837 |
msgstr "Mailchimp Integration deaktivieren"
|
5838 |
|
5839 |
-
#: app/features/mec/settings.php:
|
5840 |
#, fuzzy
|
5841 |
#| msgid "Filter Options"
|
5842 |
msgid "Upload Field Options"
|
5843 |
msgstr "Filteroptionen"
|
5844 |
|
5845 |
-
#: app/features/mec/settings.php:
|
5846 |
msgid "Mime types"
|
5847 |
msgstr ""
|
5848 |
|
5849 |
-
#: app/features/mec/settings.php:
|
5850 |
msgid "Split mime types with \",\"."
|
5851 |
msgstr ""
|
5852 |
|
5853 |
-
#: app/features/mec/settings.php:
|
5854 |
msgid "Default: jpeg,jpg,png,pdf"
|
5855 |
msgstr ""
|
5856 |
|
5857 |
-
#: app/features/mec/settings.php:
|
5858 |
#, fuzzy
|
5859 |
#| msgid "Amount (Per Ticket)"
|
5860 |
msgid "Maximum file size"
|
5861 |
msgstr "Betrag (pro Ticket)"
|
5862 |
|
5863 |
-
#: app/features/mec/settings.php:
|
5864 |
msgid "The unit is Megabyte \"MB\""
|
5865 |
msgstr ""
|
5866 |
|
@@ -6760,7 +6769,7 @@ msgstr "z.B.. max@mustermann.com"
|
|
6760 |
msgid "eg. https://webnus.net"
|
6761 |
msgstr "http://webnus.net"
|
6762 |
|
6763 |
-
#: app/features/organizers.php:312 app/libraries/main.php:
|
6764 |
#: app/skins/single.php:873
|
6765 |
msgid "Other Organizers"
|
6766 |
msgstr "Andere Veranstalter"
|
@@ -6838,9 +6847,9 @@ msgid "Prev"
|
|
6838 |
msgstr ""
|
6839 |
|
6840 |
#: app/features/popup/event.php:392 app/features/popup/shortcode.php:373
|
6841 |
-
#: app/modules/booking/steps/form.php:
|
6842 |
-
#: app/modules/booking/steps/tickets.php:77 app/skins/countdown/tpl.php:
|
6843 |
-
#: app/skins/countdown/tpl.php:
|
6844 |
msgid "Next"
|
6845 |
msgstr "Weiter"
|
6846 |
|
@@ -6898,7 +6907,7 @@ msgstr "Neuen Shortcode hinzufügen"
|
|
6898 |
msgid "Please %s/%s in order to see your bookings / profile."
|
6899 |
msgstr "Um neue Veranstaltungen einzugeben, bitte %s/%s"
|
6900 |
|
6901 |
-
#: app/features/profile/profile.php:18 app/libraries/main.php:
|
6902 |
msgid "Your booking already canceled!"
|
6903 |
msgstr "Ihre Buchung wurde bereits storniert."
|
6904 |
|
@@ -6906,11 +6915,11 @@ msgstr "Ihre Buchung wurde bereits storniert."
|
|
6906 |
msgid "#"
|
6907 |
msgstr ""
|
6908 |
|
6909 |
-
#: app/features/profile/profile.php:56 app/libraries/main.php:
|
6910 |
msgid "Status"
|
6911 |
msgstr ""
|
6912 |
|
6913 |
-
#: app/features/profile/profile.php:59 app/libraries/main.php:
|
6914 |
msgid "Attendees"
|
6915 |
msgstr "Teilnehmer"
|
6916 |
|
@@ -6941,7 +6950,63 @@ msgstr ""
|
|
6941 |
msgid "No bookings found!"
|
6942 |
msgstr "Keine Buchungen gefunden"
|
6943 |
|
6944 |
-
#: app/features/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6945 |
msgid "label"
|
6946 |
msgstr "label"
|
6947 |
|
@@ -6968,13 +7033,13 @@ msgid "No search result."
|
|
6968 |
msgstr "Kein Suchergebnis"
|
6969 |
|
6970 |
#: app/features/search_bar/search_result.php:12
|
6971 |
-
#: app/libraries/notifications.php:
|
6972 |
#: app/modules/local-time/details.php:48 app/modules/local-time/type1.php:44
|
6973 |
#: app/modules/local-time/type2.php:46 app/modules/local-time/type3.php:44
|
6974 |
#: app/modules/next-event/details.php:104 app/skins/single.php:166
|
6975 |
#: app/skins/single.php:764 app/skins/single/default.php:108
|
6976 |
#: app/skins/single/default.php:331 app/skins/single/m1.php:43
|
6977 |
-
#: app/skins/single/modern.php:
|
6978 |
#, fuzzy
|
6979 |
#| msgid "Add Day"
|
6980 |
msgid "All Day"
|
@@ -7099,8 +7164,8 @@ msgid "day"
|
|
7099 |
msgstr "Tag"
|
7100 |
|
7101 |
#: app/libraries/factory.php:373 app/modules/countdown/details.php:138
|
7102 |
-
#: app/skins/available_spot/tpl.php:
|
7103 |
-
#: app/skins/countdown/tpl.php:
|
7104 |
msgid "days"
|
7105 |
msgstr "Tage"
|
7106 |
|
@@ -7109,8 +7174,8 @@ msgid "hour"
|
|
7109 |
msgstr "Stunde"
|
7110 |
|
7111 |
#: app/libraries/factory.php:375 app/modules/countdown/details.php:145
|
7112 |
-
#: app/skins/available_spot/tpl.php:
|
7113 |
-
#: app/skins/countdown/tpl.php:
|
7114 |
msgid "hours"
|
7115 |
msgstr "Stunden"
|
7116 |
|
@@ -7119,8 +7184,8 @@ msgid "minute"
|
|
7119 |
msgstr "Minute"
|
7120 |
|
7121 |
#: app/libraries/factory.php:377 app/modules/countdown/details.php:152
|
7122 |
-
#: app/skins/available_spot/tpl.php:
|
7123 |
-
#: app/skins/countdown/tpl.php:
|
7124 |
msgid "minutes"
|
7125 |
msgstr "Minuten"
|
7126 |
|
@@ -7129,8 +7194,8 @@ msgid "second"
|
|
7129 |
msgstr "Sekunde"
|
7130 |
|
7131 |
#: app/libraries/factory.php:379 app/modules/countdown/details.php:159
|
7132 |
-
#: app/skins/available_spot/tpl.php:
|
7133 |
-
#: app/skins/countdown/tpl.php:
|
7134 |
msgid "seconds"
|
7135 |
msgstr "Sekunden"
|
7136 |
|
@@ -7229,31 +7294,31 @@ msgstr "Stundenplan"
|
|
7229 |
msgid "Tile View"
|
7230 |
msgstr "Stundenplan"
|
7231 |
|
7232 |
-
#: app/libraries/main.php:385 app/libraries/main.php:
|
7233 |
msgid "SU"
|
7234 |
msgstr "SO"
|
7235 |
|
7236 |
-
#: app/libraries/main.php:386 app/libraries/main.php:
|
7237 |
msgid "MO"
|
7238 |
msgstr "MO"
|
7239 |
|
7240 |
-
#: app/libraries/main.php:387 app/libraries/main.php:
|
7241 |
msgid "TU"
|
7242 |
msgstr "DI"
|
7243 |
|
7244 |
-
#: app/libraries/main.php:388 app/libraries/main.php:
|
7245 |
msgid "WE"
|
7246 |
msgstr "MI"
|
7247 |
|
7248 |
-
#: app/libraries/main.php:389 app/libraries/main.php:
|
7249 |
msgid "TH"
|
7250 |
msgstr "DO"
|
7251 |
|
7252 |
-
#: app/libraries/main.php:390 app/libraries/main.php:
|
7253 |
msgid "FR"
|
7254 |
msgstr "FR"
|
7255 |
|
7256 |
-
#: app/libraries/main.php:391 app/libraries/main.php:
|
7257 |
msgid "SA"
|
7258 |
msgstr "SA"
|
7259 |
|
@@ -7416,263 +7481,263 @@ msgstr ""
|
|
7416 |
msgid "Custom Shortcode"
|
7417 |
msgstr "Shortcode"
|
7418 |
|
7419 |
-
#: app/libraries/main.php:
|
7420 |
msgid "Your booking already verified!"
|
7421 |
msgstr "Ihre Buchung wurde bereits verifiziert."
|
7422 |
|
7423 |
-
#: app/libraries/main.php:
|
7424 |
msgid "Your booking successfully verified."
|
7425 |
msgstr "Ihre Buchung wurde erfolgreich verifiziert."
|
7426 |
|
7427 |
-
#: app/libraries/main.php:
|
7428 |
msgid "Your booking cannot verify!"
|
7429 |
msgstr "Ihre Buchung kann nicht verifiziert werden!"
|
7430 |
|
7431 |
-
#: app/libraries/main.php:
|
7432 |
msgid "Your booking successfully canceled."
|
7433 |
msgstr "Ihre Buchung wurde erfolgreich storniert."
|
7434 |
|
7435 |
-
#: app/libraries/main.php:
|
7436 |
msgid "Your booking cannot be canceled."
|
7437 |
msgstr "Ihre Buchung kann nicht storniert werden."
|
7438 |
|
7439 |
-
#: app/libraries/main.php:
|
7440 |
msgid "You canceled the payment successfully."
|
7441 |
msgstr "Sie haben die Zahlung erfolgreich storniert."
|
7442 |
|
7443 |
-
#: app/libraries/main.php:
|
7444 |
msgid "You returned from payment gateway successfully."
|
7445 |
msgstr "Sie sind vom Bezahlungs-Gateway erfolgreich zurückgekehrt."
|
7446 |
|
7447 |
-
#: app/libraries/main.php:
|
7448 |
msgid "Cannot find the invoice!"
|
7449 |
msgstr "Die Buchung kann nicht gefunden werden."
|
7450 |
|
7451 |
-
#: app/libraries/main.php:
|
7452 |
msgid "Invoice is invalid."
|
7453 |
msgstr "Die Buchung ist ungültig."
|
7454 |
|
7455 |
-
#: app/libraries/main.php:
|
7456 |
msgid ""
|
7457 |
"Your booking still is not confirmed. You able download it after confirmation!"
|
7458 |
msgstr ""
|
7459 |
|
7460 |
-
#: app/libraries/main.php:
|
7461 |
msgid "Booking Not Confirmed."
|
7462 |
msgstr "Die Buchung ist nicht Bestätigt."
|
7463 |
|
7464 |
-
#: app/libraries/main.php:
|
7465 |
msgid "Cannot find the booking!"
|
7466 |
msgstr "Die Buchung kann nicht gefunden werden!"
|
7467 |
|
7468 |
-
#: app/libraries/main.php:
|
7469 |
msgid "Booking is invalid."
|
7470 |
msgstr "Buchung ist ungültig."
|
7471 |
|
7472 |
-
#: app/libraries/main.php:
|
7473 |
#, php-format
|
7474 |
msgid "%s Invoice"
|
7475 |
msgstr "% s Rechnung"
|
7476 |
|
7477 |
-
#: app/libraries/main.php:
|
7478 |
msgid "Billing"
|
7479 |
msgstr "Abrechnung"
|
7480 |
|
7481 |
-
#: app/libraries/main.php:
|
7482 |
#, fuzzy
|
7483 |
#| msgid "Coupon"
|
7484 |
msgid "Coupon Code"
|
7485 |
msgstr "Gutschein"
|
7486 |
|
7487 |
-
#: app/libraries/main.php:
|
7488 |
msgid "Total"
|
7489 |
msgstr "Gesamt"
|
7490 |
|
7491 |
-
#: app/libraries/main.php:
|
7492 |
msgid "Payment"
|
7493 |
msgstr "Bezahlung"
|
7494 |
|
7495 |
-
#: app/libraries/main.php:
|
7496 |
msgid "Gateway"
|
7497 |
msgstr "Gateway"
|
7498 |
|
7499 |
-
#: app/libraries/main.php:
|
7500 |
msgid "Payment Time"
|
7501 |
msgstr "Bezahlung "
|
7502 |
|
7503 |
-
#: app/libraries/main.php:
|
7504 |
msgid "Request is not valid."
|
7505 |
msgstr "Die Anfrage ist ungültig!"
|
7506 |
|
7507 |
-
#: app/libraries/main.php:
|
7508 |
msgid "iCal export stopped!"
|
7509 |
msgstr "iCal Export wurde unterbrochen!"
|
7510 |
|
7511 |
-
#: app/libraries/main.php:
|
7512 |
-
#: app/libraries/main.php:
|
7513 |
-
#: app/libraries/main.php:
|
7514 |
-
#: app/libraries/main.php:
|
7515 |
-
#: app/libraries/main.php:
|
7516 |
-
#: app/libraries/main.php:
|
7517 |
-
#: app/libraries/main.php:
|
7518 |
msgid "Sort"
|
7519 |
msgstr "Sortieren"
|
7520 |
|
7521 |
-
#: app/libraries/main.php:
|
7522 |
-
#: app/libraries/main.php:
|
7523 |
-
#: app/libraries/main.php:
|
7524 |
-
#: app/libraries/main.php:
|
7525 |
-
#: app/libraries/main.php:
|
7526 |
-
#: app/libraries/main.php:
|
7527 |
msgid "Required Field"
|
7528 |
msgstr "Pflichtfeld"
|
7529 |
|
7530 |
-
#: app/libraries/main.php:
|
7531 |
-
#: app/libraries/main.php:
|
7532 |
-
#: app/libraries/main.php:
|
7533 |
-
#: app/libraries/main.php:
|
7534 |
-
#: app/libraries/main.php:
|
7535 |
-
#: app/libraries/main.php:
|
7536 |
msgid "Insert a label for this field"
|
7537 |
msgstr "Geben Sie eine Bezeichnung (Label) für dieses Feld ein."
|
7538 |
|
7539 |
-
#: app/libraries/main.php:
|
7540 |
msgid "HTML and shortcode are allowed."
|
7541 |
msgstr "HTML und shortcodes sind erlaubt."
|
7542 |
|
7543 |
-
#: app/libraries/main.php:
|
7544 |
-
#: app/libraries/main.php:
|
7545 |
msgid "Option"
|
7546 |
msgstr "Option"
|
7547 |
|
7548 |
-
#: app/libraries/main.php:
|
7549 |
#, php-format
|
7550 |
msgid "Instead of %s, the page title with a link will be show."
|
7551 |
msgstr "Anstelle von %s, wird der Seitentitel mit einem Link gezeigt"
|
7552 |
|
7553 |
-
#: app/libraries/main.php:
|
7554 |
msgid "Agreement Page"
|
7555 |
msgstr "Zustimmungsseite"
|
7556 |
|
7557 |
-
#: app/libraries/main.php:
|
7558 |
msgid "Checked by default"
|
7559 |
msgstr ""
|
7560 |
|
7561 |
-
#: app/libraries/main.php:
|
7562 |
msgid "Unchecked by default"
|
7563 |
msgstr ""
|
7564 |
|
7565 |
-
#: app/libraries/main.php:
|
7566 |
msgid "Insert a label for this option"
|
7567 |
msgstr "Ein neues Label für diese Option einfügen"
|
7568 |
|
7569 |
-
#: app/libraries/main.php:
|
7570 |
msgid "Free"
|
7571 |
msgstr "kostenfrei"
|
7572 |
|
7573 |
-
#: app/libraries/main.php:
|
7574 |
msgid "M.E. Calender"
|
7575 |
msgstr "M.E. Calender"
|
7576 |
|
7577 |
-
#: app/libraries/main.php:
|
7578 |
#, php-format
|
7579 |
msgid "Copy of %s"
|
7580 |
msgstr "Kopie von %s"
|
7581 |
|
7582 |
-
#: app/libraries/main.php:
|
7583 |
msgid "Booked an event."
|
7584 |
msgstr "Eine Veranstaltung wurde gebucht."
|
7585 |
|
7586 |
-
#: app/libraries/main.php:
|
7587 |
#, php-format
|
7588 |
msgid "%s booked %s event."
|
7589 |
msgstr "%s gebuchtes %s Event"
|
7590 |
|
7591 |
-
#: app/libraries/main.php:
|
7592 |
msgid "Taxonomies"
|
7593 |
msgstr "Klassifizierung "
|
7594 |
|
7595 |
-
#: app/libraries/main.php:
|
7596 |
msgid "Category Plural Label"
|
7597 |
msgstr "Kategorien"
|
7598 |
|
7599 |
-
#: app/libraries/main.php:
|
7600 |
msgid "Category Singular Label"
|
7601 |
msgstr "Kategorie"
|
7602 |
|
7603 |
-
#: app/libraries/main.php:
|
7604 |
msgid "Label Plural Label"
|
7605 |
msgstr "Labels"
|
7606 |
|
7607 |
-
#: app/libraries/main.php:
|
7608 |
msgid "Label Singular Label"
|
7609 |
msgstr "Label"
|
7610 |
|
7611 |
-
#: app/libraries/main.php:
|
7612 |
msgid "Location Plural Label"
|
7613 |
msgstr "Veranstaltungsorte"
|
7614 |
|
7615 |
-
#: app/libraries/main.php:
|
7616 |
msgid "Location Singular Label"
|
7617 |
msgstr "Veranstaltungsort"
|
7618 |
|
7619 |
-
#: app/libraries/main.php:
|
7620 |
msgid "Organizer Plural Label"
|
7621 |
msgstr "Veranstalter"
|
7622 |
|
7623 |
-
#: app/libraries/main.php:
|
7624 |
msgid "Organizer Singular Label"
|
7625 |
msgstr "Veranstalter"
|
7626 |
|
7627 |
-
#: app/libraries/main.php:
|
7628 |
#, fuzzy
|
7629 |
#| msgid "Label Plural Label"
|
7630 |
msgid "Speaker Plural Label"
|
7631 |
msgstr "Labels"
|
7632 |
|
7633 |
-
#: app/libraries/main.php:
|
7634 |
#, fuzzy
|
7635 |
#| msgid "Label Singular Label"
|
7636 |
msgid "Speaker Singular Label"
|
7637 |
msgstr "Label"
|
7638 |
|
7639 |
-
#: app/libraries/main.php:
|
7640 |
msgid "Sunday abbreviation"
|
7641 |
msgstr "Sonntag Abkürzung"
|
7642 |
|
7643 |
-
#: app/libraries/main.php:
|
7644 |
msgid "Monday abbreviation"
|
7645 |
msgstr "Montag Abkürzung"
|
7646 |
|
7647 |
-
#: app/libraries/main.php:
|
7648 |
msgid "Tuesday abbreviation"
|
7649 |
msgstr "Dienstag Abkürzung"
|
7650 |
|
7651 |
-
#: app/libraries/main.php:
|
7652 |
msgid "Wednesday abbreviation"
|
7653 |
msgstr "Mittwoch Abkürzung"
|
7654 |
|
7655 |
-
#: app/libraries/main.php:
|
7656 |
msgid "Thursday abbreviation"
|
7657 |
msgstr "Donnerstag Abkürzung"
|
7658 |
|
7659 |
-
#: app/libraries/main.php:
|
7660 |
msgid "Friday abbreviation"
|
7661 |
msgstr "Freitag Abkürzung"
|
7662 |
|
7663 |
-
#: app/libraries/main.php:
|
7664 |
msgid "Saturday abbreviation"
|
7665 |
msgstr "Samstag Abkürzung "
|
7666 |
|
7667 |
-
#: app/libraries/main.php:
|
7668 |
msgid "Others"
|
7669 |
msgstr "Andere"
|
7670 |
|
7671 |
-
#: app/libraries/main.php:
|
7672 |
msgid "Booking Success Message"
|
7673 |
msgstr "Buchung erfolgreich Mitteilung"
|
7674 |
|
7675 |
-
#: app/libraries/main.php:
|
7676 |
msgid ""
|
7677 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
7678 |
"needed, please check your email."
|
@@ -7680,118 +7745,118 @@ msgstr ""
|
|
7680 |
"Vielen Dank für Ihre Buchung. Für die gebuchten Tickets ist ggf. eine "
|
7681 |
"Bestätigung durch Sie erforderlich. Bitte überprüfen Sie Ihre Emails."
|
7682 |
|
7683 |
-
#: app/libraries/main.php:
|
7684 |
msgid "Register Button"
|
7685 |
msgstr "Register Button"
|
7686 |
|
7687 |
-
#: app/libraries/main.php:
|
7688 |
-
#: app/skins/carousel/render.php:
|
7689 |
-
#: app/skins/grid/render.php:
|
7690 |
-
#: app/skins/grid/render.php:
|
7691 |
-
#: app/skins/list/render.php:
|
7692 |
-
#: app/skins/masonry/render.php:
|
7693 |
#: app/skins/single.php:788 app/skins/single/default.php:260
|
7694 |
#: app/skins/single/default.php:262 app/skins/single/default.php:483
|
7695 |
#: app/skins/single/default.php:485 app/skins/single/m1.php:140
|
7696 |
#: app/skins/single/m1.php:142 app/skins/single/m2.php:66
|
7697 |
-
#: app/skins/single/m2.php:68 app/skins/single/modern.php:
|
7698 |
-
#: app/skins/single/modern.php:
|
7699 |
-
#: app/skins/slider/render.php:
|
7700 |
-
#: app/skins/slider/render.php:
|
7701 |
msgid "REGISTER"
|
7702 |
msgstr "ANMELDEN"
|
7703 |
|
7704 |
-
#: app/libraries/main.php:
|
7705 |
msgid "View Detail Button"
|
7706 |
msgstr "Ansicht Detail Button"
|
7707 |
|
7708 |
-
#: app/libraries/main.php:
|
7709 |
-
#: app/skins/carousel/render.php:
|
7710 |
-
#: app/skins/grid/render.php:
|
7711 |
-
#: app/skins/grid/render.php:
|
7712 |
-
#: app/skins/list/render.php:
|
7713 |
-
#: app/skins/slider/render.php:
|
7714 |
-
#: app/skins/slider/render.php:
|
7715 |
-
#: app/skins/slider/render.php:
|
7716 |
msgid "View Detail"
|
7717 |
msgstr "Details "
|
7718 |
|
7719 |
-
#: app/libraries/main.php:
|
7720 |
msgid "Event Detail Button"
|
7721 |
msgstr "Event Detail Button"
|
7722 |
|
7723 |
-
#: app/libraries/main.php:
|
7724 |
msgid "Event Detail"
|
7725 |
msgstr "Veranstaltungsdetails"
|
7726 |
|
7727 |
-
#: app/libraries/main.php:
|
7728 |
msgid "More Info Link"
|
7729 |
msgstr "Link Mehr Informationen"
|
7730 |
|
7731 |
-
#: app/libraries/main.php:
|
7732 |
msgid "Ticket (Singular)"
|
7733 |
msgstr "Ticket"
|
7734 |
|
7735 |
-
#: app/libraries/main.php:
|
7736 |
msgid "Tickets (Plural)"
|
7737 |
msgstr "Tickets"
|
7738 |
|
7739 |
-
#: app/libraries/main.php:
|
7740 |
msgid "EventON"
|
7741 |
msgstr "EventON"
|
7742 |
|
7743 |
-
#: app/libraries/main.php:
|
7744 |
msgid "The Events Calendar"
|
7745 |
msgstr "The Events Calendar"
|
7746 |
|
7747 |
-
#: app/libraries/main.php:
|
7748 |
msgid "Events Schedule WP Plugin"
|
7749 |
msgstr "Event Zeitplan WP-Plugin"
|
7750 |
|
7751 |
-
#: app/libraries/main.php:
|
7752 |
msgid "Calendarize It"
|
7753 |
msgstr ""
|
7754 |
|
7755 |
-
#: app/libraries/main.php:
|
7756 |
#, fuzzy
|
7757 |
#| msgid "No Search Options"
|
7758 |
msgid "Event Espresso"
|
7759 |
msgstr "Keine Suchoptionen"
|
7760 |
|
7761 |
-
#: app/libraries/main.php:
|
7762 |
msgid "Events Manager (Recurring)"
|
7763 |
msgstr "Wiederholende Veranstaltung"
|
7764 |
|
7765 |
-
#: app/libraries/main.php:
|
7766 |
msgid "Events Manager (Single)"
|
7767 |
msgstr "Moderner Event Kalender"
|
7768 |
|
7769 |
-
#: app/libraries/main.php:
|
7770 |
msgid "Confirmed"
|
7771 |
msgstr "Bestätigt"
|
7772 |
|
7773 |
-
#: app/libraries/main.php:
|
7774 |
msgid "Rejected"
|
7775 |
msgstr "Abgelehnt"
|
7776 |
|
7777 |
-
#: app/libraries/main.php:
|
7778 |
msgid "Pending"
|
7779 |
msgstr "Ausstehend"
|
7780 |
|
7781 |
-
#: app/libraries/main.php:
|
7782 |
msgid "Waiting"
|
7783 |
msgstr "in Bearbeitung"
|
7784 |
|
7785 |
-
#: app/libraries/main.php:
|
7786 |
#: app/libraries/render.php:418
|
7787 |
msgid "Skin controller does not exist."
|
7788 |
msgstr "Skin contoller existiert nicht."
|
7789 |
|
7790 |
-
#: app/libraries/main.php:
|
7791 |
msgid "Sold Out"
|
7792 |
msgstr "Ausgebucht"
|
7793 |
|
7794 |
-
#: app/libraries/main.php:
|
7795 |
msgid "Last Few Tickets"
|
7796 |
msgstr "Nur noch wenige Tickets verfügbar."
|
7797 |
|
@@ -7799,48 +7864,48 @@ msgstr "Nur noch wenige Tickets verfügbar."
|
|
7799 |
msgid "Please verify your email."
|
7800 |
msgstr "Bitte bestätigen Sie Ihre email."
|
7801 |
|
7802 |
-
#: app/libraries/notifications.php:
|
7803 |
msgid "Your booking is received."
|
7804 |
msgstr "Ihre Buchung ist eingegangen"
|
7805 |
|
7806 |
-
#: app/libraries/notifications.php:
|
7807 |
msgid "Your booking is confirmed."
|
7808 |
msgstr "Ihre Buchung wurde bestätigt."
|
7809 |
|
7810 |
-
#: app/libraries/notifications.php:
|
7811 |
msgid "booking canceled."
|
7812 |
msgstr "Ihre Buchung wurde storniert"
|
7813 |
|
7814 |
-
#: app/libraries/notifications.php:
|
7815 |
msgid "A new booking is received."
|
7816 |
msgstr "Eine neue Buchung ist eingegangen."
|
7817 |
|
7818 |
-
#: app/libraries/notifications.php:
|
7819 |
msgid "A new event is added."
|
7820 |
msgstr "Eine neue Veranstaltung wurde hinzugefügt."
|
7821 |
|
7822 |
-
#: app/libraries/notifications.php:
|
7823 |
msgid "Your event is published."
|
7824 |
msgstr "Die Veranstaltung wurde veröffentlicht."
|
7825 |
|
7826 |
-
#: app/libraries/notifications.php:
|
7827 |
-
#: app/libraries/notifications.php:
|
7828 |
msgid "to"
|
7829 |
msgstr ""
|
7830 |
|
7831 |
-
#: app/libraries/notifications.php:
|
7832 |
msgid "+ Add to Google Calendar"
|
7833 |
msgstr "+ zum Google Calendar hinzufügen"
|
7834 |
|
7835 |
-
#: app/libraries/notifications.php:
|
7836 |
msgid "+ iCal export"
|
7837 |
msgstr "+ zu iCal exportieren"
|
7838 |
|
7839 |
-
#: app/libraries/notifications.php:
|
7840 |
msgid "Yes"
|
7841 |
msgstr "Ja"
|
7842 |
|
7843 |
-
#: app/libraries/notifications.php:
|
7844 |
msgid "No"
|
7845 |
msgstr "Nein"
|
7846 |
|
@@ -7872,15 +7937,15 @@ msgstr "Rabattgutschein"
|
|
7872 |
msgid "Apply Coupon"
|
7873 |
msgstr "Gutschein verwenden"
|
7874 |
|
7875 |
-
#: app/modules/booking/steps/checkout.php:
|
7876 |
-
|
7877 |
-
msgstr "Kostenlose Buchung"
|
7878 |
-
|
7879 |
-
#: app/modules/booking/steps/checkout.php:79
|
7880 |
-
#: app/modules/booking/steps/form.php:179
|
7881 |
msgid "Back"
|
7882 |
msgstr "Zurück"
|
7883 |
|
|
|
|
|
|
|
|
|
7884 |
#: app/modules/booking/steps/form.php:52
|
7885 |
msgid "Attendee's Form"
|
7886 |
msgstr "Teilnahmeformular"
|
@@ -7989,7 +8054,7 @@ msgstr "Zum Event"
|
|
7989 |
|
7990 |
#: app/modules/next-event/details.php:98 app/skins/single.php:758
|
7991 |
#: app/skins/single/default.php:102 app/skins/single/default.php:325
|
7992 |
-
#: app/skins/single/m1.php:37 app/skins/single/modern.php:
|
7993 |
msgid "Time"
|
7994 |
msgstr "Uhrzeit"
|
7995 |
|
@@ -8054,40 +8119,40 @@ msgstr "Keine Veranstaltung gefunden"
|
|
8054 |
#: app/skins/agenda/tpl.php:81 app/skins/custom/tpl.php:76
|
8055 |
#: app/skins/grid/tpl.php:83 app/skins/list/tpl.php:88
|
8056 |
#: app/skins/masonry/tpl.php:77 app/skins/tile/tpl.php:133
|
8057 |
-
#: app/skins/timeline/tpl.php:71 app/skins/yearly_view/render.php:
|
8058 |
msgid "Load More"
|
8059 |
msgstr "Weitere anzeigen"
|
8060 |
|
8061 |
-
#: app/skins/available_spot/tpl.php:
|
8062 |
msgid "Available Spot(s):"
|
8063 |
msgstr "Verfügbare Spot (s):"
|
8064 |
|
8065 |
-
#: app/skins/carousel/render.php:
|
8066 |
-
#: app/skins/countdown/tpl.php:
|
8067 |
-
#: app/skins/list/render.php:
|
8068 |
msgid "EVENT DETAIL"
|
8069 |
msgstr "VERANSTALTUNGSDETAILS"
|
8070 |
|
8071 |
-
#: app/skins/carousel/render.php:
|
8072 |
msgid "View All Events"
|
8073 |
msgstr "Zeige alle Veranstaltungen"
|
8074 |
|
8075 |
-
#: app/skins/countdown/tpl.php:
|
8076 |
-
#: app/skins/countdown/tpl.php:
|
8077 |
#, php-format
|
8078 |
msgid "%s Upcoming Event"
|
8079 |
msgstr "%s Kommendes Event"
|
8080 |
|
8081 |
-
#: app/skins/cover/tpl.php:
|
8082 |
msgid "featured event"
|
8083 |
msgstr "Ausgewählte Veranstaltung"
|
8084 |
|
8085 |
-
#: app/skins/daily_view/render.php:
|
8086 |
msgid "No event"
|
8087 |
msgstr "Keine Veranstaltung"
|
8088 |
|
8089 |
-
#: app/skins/default_full_calendar/tpl.php:
|
8090 |
-
#: app/skins/full_calendar/tpl.php:
|
8091 |
msgid "List"
|
8092 |
msgstr "Liste / Listenansicht"
|
8093 |
|
@@ -8096,16 +8161,16 @@ msgid "All"
|
|
8096 |
msgstr "Alle"
|
8097 |
|
8098 |
#: app/skins/monthly_view/calendar.php:69
|
8099 |
-
#: app/skins/monthly_view/calendar.php:
|
8100 |
-
#: app/skins/monthly_view/calendar_clean.php:
|
8101 |
-
#: app/skins/monthly_view/calendar_clean.php:
|
8102 |
#, php-format
|
8103 |
msgid "Events for %s"
|
8104 |
msgstr "Veranstaltungen für %s"
|
8105 |
|
8106 |
-
#: app/skins/monthly_view/calendar.php:
|
8107 |
-
#: app/skins/monthly_view/calendar_clean.php:
|
8108 |
-
#: app/skins/timetable/render.php:
|
8109 |
msgid "No Events"
|
8110 |
msgstr "Keine Veranstaltungen"
|
8111 |
|
@@ -8115,21 +8180,21 @@ msgstr ""
|
|
8115 |
|
8116 |
#: app/skins/single.php:554 app/skins/single/default.php:51
|
8117 |
#: app/skins/single/m1.php:261 app/skins/single/m2.php:182
|
8118 |
-
#: app/skins/single/modern.php:
|
8119 |
msgid "Sold out!"
|
8120 |
msgstr "Ausverkauft!"
|
8121 |
|
8122 |
#: app/skins/single.php:833 app/skins/single.php:888
|
8123 |
#: app/skins/single/default.php:227 app/skins/single/default.php:450
|
8124 |
#: app/skins/single/m1.php:109 app/skins/single/m2.php:35
|
8125 |
-
#: app/skins/single/modern.php:
|
8126 |
msgid "Phone"
|
8127 |
msgstr "Phone"
|
8128 |
|
8129 |
#: app/skins/single.php:847 app/skins/single.php:902
|
8130 |
#: app/skins/single/default.php:241 app/skins/single/default.php:464
|
8131 |
#: app/skins/single/m1.php:123 app/skins/single/m2.php:49
|
8132 |
-
#: app/skins/single/modern.php:
|
8133 |
msgid "Website"
|
8134 |
msgstr "Website"
|
8135 |
|
@@ -8138,17 +8203,17 @@ msgid "Speakers:"
|
|
8138 |
msgstr "Veranstalter"
|
8139 |
|
8140 |
#: app/skins/single/default.php:69 app/skins/single/m1.php:278
|
8141 |
-
#: app/skins/single/m2.php:199 app/skins/single/modern.php:
|
8142 |
msgid "Tags: "
|
8143 |
msgstr "Tags:"
|
8144 |
|
8145 |
-
#: app/skins/timeline/render.php:
|
8146 |
#, fuzzy
|
8147 |
#| msgid "Title of event"
|
8148 |
msgid "Register for event"
|
8149 |
msgstr "Titel der Veranstaltung"
|
8150 |
|
8151 |
-
#: app/skins/timeline/render.php:
|
8152 |
#, fuzzy
|
8153 |
#| msgid "View Detail"
|
8154 |
msgid "View Details"
|
@@ -8272,6 +8337,11 @@ msgstr "http://webnus.net"
|
|
8272 |
#~ msgid "%s Facebook events imported/updated."
|
8273 |
#~ msgstr "%s facebook events importiert / aktualisiert."
|
8274 |
|
|
|
|
|
|
|
|
|
|
|
8275 |
#~ msgid "Auto Google Calendar import is disabled!"
|
8276 |
#~ msgstr "Auto Google Kalender-Import ist deaktiviert!"
|
8277 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: ME Calender\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2020-03-31 19:33+0430\n"
|
6 |
+
"PO-Revision-Date: 2020-03-31 19:37+0430\n"
|
7 |
"Last-Translator: Jogon <koenig@kafinanz.de>\n"
|
8 |
"Language-Team: German\n"
|
9 |
"Language: de_DE\n"
|
28 |
msgid "Content"
|
29 |
msgstr "Inhalt"
|
30 |
|
31 |
+
#: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:448
|
32 |
+
#: app/features/mec.php:479 app/features/mec.php:509
|
33 |
msgid "Shortcode"
|
34 |
msgstr "Shortcode"
|
35 |
|
77 |
msgid "Recent Colors"
|
78 |
msgstr "Farbe der Veranstaltung"
|
79 |
|
80 |
+
#: app/features/contextual.php:55 app/features/mec.php:424
|
81 |
#: app/features/mec/dashboard.php:143 app/features/mec/support.php:20
|
82 |
#: app/features/popup/event.php:60 app/features/popup/shortcode.php:37
|
83 |
#: app/libraries/main.php:594
|
84 |
msgid "Settings"
|
85 |
msgstr "Einstellungen"
|
86 |
|
87 |
+
#: app/features/contextual.php:62 app/features/events.php:2479
|
88 |
#: app/features/mec/booking.php:448 app/features/mec/support.php:29
|
89 |
#: app/libraries/main.php:560
|
90 |
msgid "Booking Form"
|
270 |
msgid "BuddyPress Integration"
|
271 |
msgstr "Buddy Press Integration"
|
272 |
|
273 |
+
#: app/features/contextual.php:334 app/features/mec/settings.php:886
|
274 |
#: app/libraries/main.php:539
|
275 |
msgid "Mailchimp Integration"
|
276 |
msgstr "Mailchimp Integration"
|
296 |
msgid "Event"
|
297 |
msgstr "Veranstaltung"
|
298 |
|
299 |
+
#: app/features/events.php:160 app/features/mec.php:410
|
300 |
msgid "Add Event"
|
301 |
msgstr "Veranstaltung hinzufügen"
|
302 |
|
304 |
msgid "Add New Event"
|
305 |
msgstr "Neue Veranstaltung hinzufügen"
|
306 |
|
307 |
+
#: app/features/events.php:162 app/features/ix.php:3918
|
308 |
+
#: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:68
|
309 |
+
#: app/skins/map/tpl.php:88
|
310 |
msgid "No events found!"
|
311 |
msgstr "Keine Veranstaltungen gefunden!"
|
312 |
|
327 |
msgid "No events found in Trash!"
|
328 |
msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
|
329 |
|
330 |
+
#: app/features/events.php:183 app/features/events.php:3357
|
331 |
#: app/features/mec/meta_boxes/display_options.php:1116
|
332 |
#: app/features/mec/meta_boxes/search_form.php:31
|
333 |
#: app/features/mec/meta_boxes/search_form.php:101
|
340 |
#: app/features/mec/meta_boxes/search_form.php:584
|
341 |
#: app/features/mec/meta_boxes/search_form.php:654
|
342 |
#: app/features/mec/meta_boxes/search_form.php:760
|
343 |
+
#: app/features/mec/settings.php:839 app/features/mec/single.php:232
|
344 |
+
#: app/features/search.php:68 app/libraries/main.php:5407
|
345 |
#: app/libraries/skins.php:877 app/skins/single.php:576
|
346 |
#: app/skins/single/default.php:192 app/skins/single/default.php:415
|
347 |
#: app/skins/single/m1.php:184 app/skins/single/m2.php:110
|
348 |
+
#: app/skins/single/modern.php:119
|
349 |
msgid "Category"
|
350 |
msgstr "Kategorie"
|
351 |
|
352 |
+
#: app/features/events.php:184 app/features/events.php:3312
|
353 |
+
#: app/features/fes/form.php:767 app/features/mec.php:412
|
354 |
+
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5406
|
355 |
msgid "Categories"
|
356 |
msgstr "Kategorien"
|
357 |
|
437 |
msgid "Event Repeating"
|
438 |
msgstr "Wiederholende Veranstaltung"
|
439 |
|
440 |
+
#: app/features/events.php:334 app/features/events.php:1294
|
441 |
#: app/features/mec/settings.php:743 app/skins/single.php:964
|
442 |
msgid "Hourly Schedule"
|
443 |
msgstr "Stundenplan"
|
450 |
msgid "Links"
|
451 |
msgstr "Links"
|
452 |
|
453 |
+
#: app/features/events.php:337 app/features/events.php:3359
|
454 |
+
#: app/features/events.php:3550 app/features/events.php:3592
|
455 |
#: app/features/ix.php:3508 app/features/ix.php:3549
|
456 |
#: app/features/mec/meta_boxes/display_options.php:1119
|
457 |
#: app/features/mec/meta_boxes/search_form.php:46
|
465 |
#: app/features/mec/meta_boxes/search_form.php:599
|
466 |
#: app/features/mec/meta_boxes/search_form.php:669
|
467 |
#: app/features/mec/meta_boxes/search_form.php:775
|
468 |
+
#: app/features/mec/settings.php:851 app/features/mec/single.php:236
|
469 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
470 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
471 |
#: app/features/organizers.php:271 app/features/popup/event.php:293
|
472 |
#: app/features/popup/event.php:302 app/features/search.php:78
|
473 |
+
#: app/libraries/main.php:5413 app/libraries/skins.php:929
|
474 |
#: app/skins/single.php:823 app/skins/single/default.php:217
|
475 |
#: app/skins/single/default.php:440 app/skins/single/m1.php:99
|
476 |
+
#: app/skins/single/m2.php:25 app/skins/single/modern.php:35
|
477 |
msgid "Organizer"
|
478 |
msgstr "Veranstalter"
|
479 |
|
480 |
+
#: app/features/events.php:338 app/features/events.php:1171
|
481 |
+
#: app/features/fes/form.php:740 app/libraries/main.php:5440
|
482 |
#: app/skins/single.php:599 app/skins/single/default.php:126
|
483 |
#: app/skins/single/default.php:349 app/skins/single/m1.php:58
|
484 |
+
#: app/skins/single/modern.php:214
|
485 |
msgid "Cost"
|
486 |
msgstr " Preis"
|
487 |
|
488 |
+
#: app/features/events.php:339 app/features/mec/settings.php:767
|
489 |
+
#: app/features/schema.php:62
|
490 |
+
msgid "SEO Schema"
|
491 |
+
msgstr ""
|
492 |
+
|
493 |
+
#: app/features/events.php:464
|
494 |
msgid "Note for reviewer"
|
495 |
msgstr "Zusätzliche Anmerkungen zum Event "
|
496 |
|
497 |
+
#: app/features/events.php:470
|
498 |
msgid "Guest Data"
|
499 |
msgstr "Gäste Daten"
|
500 |
|
501 |
+
#: app/features/events.php:471 app/features/events.php:2461
|
502 |
+
#: app/features/events.php:3883 app/features/fes.php:223
|
503 |
#: app/features/fes/form.php:699 app/features/labels.php:178
|
504 |
#: app/features/mec/booking.php:45 app/features/organizers.php:279
|
505 |
#: app/features/popup/event.php:312 app/features/profile/profile.php:180
|
506 |
+
#: app/libraries/notifications.php:1141 app/modules/booking/steps/form.php:37
|
507 |
msgid "Name"
|
508 |
msgstr "Name"
|
509 |
|
510 |
+
#: app/features/events.php:472 app/features/events.php:2472
|
511 |
+
#: app/features/events.php:2548 app/features/events.php:3886
|
512 |
#: app/features/fes.php:223 app/features/fes/form.php:695
|
513 |
#: app/features/mec/booking.php:57 app/features/mec/booking.php:499
|
514 |
#: app/features/organizers.php:111 app/features/organizers.php:152
|
515 |
#: app/features/profile/profile.php:183 app/features/speakers.php:127
|
516 |
#: app/features/speakers.php:196 app/libraries/main.php:1595
|
517 |
+
#: app/libraries/main.php:1664 app/libraries/main.php:2892
|
518 |
+
#: app/libraries/notifications.php:1142 app/modules/booking/steps/form.php:46
|
519 |
#: app/modules/booking/steps/form.php:83 app/skins/single.php:840
|
520 |
#: app/skins/single.php:895 app/skins/single/default.php:234
|
521 |
#: app/skins/single/default.php:457 app/skins/single/m1.php:116
|
522 |
+
#: app/skins/single/m2.php:42 app/skins/single/modern.php:52
|
523 |
msgid "Email"
|
524 |
msgstr "E-Mail"
|
525 |
|
526 |
+
#: app/features/events.php:480 app/features/fes/form.php:246
|
527 |
msgid "Date and Time"
|
528 |
msgstr "Datum und Uhrzeit"
|
529 |
|
530 |
+
#: app/features/events.php:483 app/features/events.php:489
|
531 |
+
#: app/features/events.php:3360 app/features/events.php:3550
|
532 |
+
#: app/features/events.php:3592 app/features/fes/form.php:250
|
533 |
#: app/features/fes/form.php:254 app/features/ix.php:3508
|
534 |
#: app/features/ix.php:3549 app/features/ix/import_g_calendar.php:38
|
535 |
#: app/features/mec/dashboard.php:405
|
552 |
msgid "Start Date"
|
553 |
msgstr "Start Datum"
|
554 |
|
555 |
+
#: app/features/events.php:561 app/features/events.php:653
|
556 |
+
#: app/features/events.php:1734 app/features/events.php:1793
|
557 |
+
#: app/features/events.php:1986 app/features/events.php:2025
|
558 |
#: app/features/fes/form.php:282 app/features/fes/form.php:322
|
559 |
#: app/features/popup/event.php:142 app/features/popup/event.php:224
|
560 |
msgid "AM"
|
561 |
msgstr "AM"
|
562 |
|
563 |
+
#: app/features/events.php:568 app/features/events.php:660
|
564 |
+
#: app/features/events.php:1741 app/features/events.php:1800
|
565 |
+
#: app/features/events.php:1987 app/features/events.php:2026
|
566 |
#: app/features/fes/form.php:283 app/features/fes/form.php:323
|
567 |
#: app/features/popup/event.php:149 app/features/popup/event.php:231
|
568 |
msgid "PM"
|
569 |
msgstr "PM"
|
570 |
|
571 |
+
#: app/features/events.php:575 app/features/events.php:580
|
572 |
+
#: app/features/events.php:3361 app/features/events.php:3550
|
573 |
+
#: app/features/events.php:3592 app/features/fes/form.php:290
|
574 |
#: app/features/fes/form.php:294 app/features/ix.php:3508
|
575 |
#: app/features/ix.php:3549 app/features/ix/import_g_calendar.php:44
|
576 |
#: app/features/mec/dashboard.php:406 app/features/popup/event.php:157
|
577 |
msgid "End Date"
|
578 |
msgstr "Ende Datum"
|
579 |
|
580 |
+
#: app/features/events.php:675 app/features/fes/form.php:329
|
581 |
#: app/features/popup/event.php:239
|
582 |
msgid "All Day Event"
|
583 |
msgstr "Ganztägige Veranstaltung"
|
584 |
|
585 |
+
#: app/features/events.php:685 app/features/fes/form.php:332
|
586 |
msgid "Hide Event Time"
|
587 |
msgstr "Event / Veranstaltungszeit verbergen"
|
588 |
|
589 |
+
#: app/features/events.php:695 app/features/fes/form.php:335
|
590 |
msgid "Hide Event End Time"
|
591 |
msgstr "Ende-Zeit der Veranstaltung verbergen"
|
592 |
|
593 |
+
#: app/features/events.php:700 app/features/events.php:704
|
594 |
#: app/features/fes/form.php:339
|
595 |
msgid "Time Comment"
|
596 |
msgstr "z.B. MEZ "
|
597 |
|
598 |
+
#: app/features/events.php:705 app/features/fes/form.php:340
|
599 |
#, fuzzy
|
600 |
#| msgid ""
|
601 |
#| "It shows next to event time on calendar. You can insert Timezone etc. in "
|
607 |
"Neben der Zeit im Kalender wird diese Angabe angezeigt. In diesem Feld "
|
608 |
"können Sie z.B. eine Zeitzone wie z.B. \"MEZ\" usw. einfügen. "
|
609 |
|
610 |
+
#: app/features/events.php:707 app/features/events.php:828
|
611 |
+
#: app/features/events.php:1134 app/features/events.php:1211
|
612 |
+
#: app/features/events.php:1519 app/features/events.php:1609
|
613 |
+
#: app/features/events.php:1821 app/features/events.php:1836
|
614 |
+
#: app/features/events.php:2045 app/features/events.php:2058
|
615 |
+
#: app/features/events.php:2209 app/features/events.php:2245
|
616 |
+
#: app/features/events.php:2343 app/features/events.php:2358
|
617 |
+
#: app/features/events.php:2388 app/features/events.php:2401
|
618 |
#: app/features/fes/form.php:651 app/features/locations.php:301
|
619 |
#: app/features/mec/booking.php:108 app/features/mec/booking.php:158
|
620 |
#: app/features/mec/booking.php:171 app/features/mec/booking.php:187
|
672 |
#: app/features/mec/settings.php:434 app/features/mec/settings.php:451
|
673 |
#: app/features/mec/settings.php:470 app/features/mec/settings.php:484
|
674 |
#: app/features/mec/settings.php:512 app/features/mec/settings.php:599
|
675 |
+
#: app/features/mec/settings.php:778 app/features/mec/settings.php:794
|
676 |
+
#: app/features/mec/settings.php:901 app/features/mec/settings.php:914
|
677 |
+
#: app/features/mec/settings.php:930 app/features/mec/single.php:42
|
678 |
#: app/features/mec/single.php:58 app/features/mec/single.php:77
|
679 |
#: app/features/mec/single.php:94 app/features/mec/single.php:110
|
680 |
#: app/features/mec/single.php:125 app/features/mec/single.php:178
|
684 |
#: app/features/popup/event.php:303 app/skins/single.php:685
|
685 |
#: app/skins/single/default.php:141 app/skins/single/default.php:364
|
686 |
#: app/skins/single/m1.php:206 app/skins/single/m2.php:133
|
687 |
+
#: app/skins/single/modern.php:142
|
688 |
msgid "Read More"
|
689 |
msgstr "Mehr lesen"
|
690 |
|
691 |
+
#: app/features/events.php:715
|
692 |
msgid "Repeating"
|
693 |
msgstr "Wiederholen"
|
694 |
|
695 |
+
#: app/features/events.php:724
|
696 |
msgid "Event Repeating (Recurring events)"
|
697 |
msgstr "Wiederholende Veranstaltung"
|
698 |
|
699 |
+
#: app/features/events.php:728 app/features/fes/form.php:350
|
700 |
msgid "Repeats"
|
701 |
msgstr "Wiederholend"
|
702 |
|
703 |
+
#: app/features/events.php:736 app/features/fes/form.php:352
|
704 |
#: app/features/mec/dashboard.php:408
|
705 |
+
#: app/skins/default_full_calendar/tpl.php:74
|
706 |
+
#: app/skins/full_calendar/tpl.php:121
|
707 |
msgid "Daily"
|
708 |
msgstr "Täglich"
|
709 |
|
710 |
+
#: app/features/events.php:743 app/features/fes/form.php:353
|
711 |
msgid "Every Weekday"
|
712 |
msgstr "An jedem Wochentag"
|
713 |
|
714 |
+
#: app/features/events.php:750 app/features/fes/form.php:354
|
715 |
msgid "Every Weekend"
|
716 |
msgstr "An jedem Wochenende"
|
717 |
|
718 |
+
#: app/features/events.php:757 app/features/fes/form.php:355
|
719 |
msgid "Certain Weekdays"
|
720 |
msgstr "Bestimmte Wochentage"
|
721 |
|
722 |
+
#: app/features/events.php:764 app/features/fes/form.php:356
|
723 |
+
#: app/skins/default_full_calendar/tpl.php:73
|
724 |
+
#: app/skins/full_calendar/tpl.php:120
|
725 |
msgid "Weekly"
|
726 |
msgstr "Wöchentlich"
|
727 |
|
728 |
+
#: app/features/events.php:771 app/features/fes/form.php:357
|
729 |
#: app/features/mec/dashboard.php:409
|
730 |
+
#: app/skins/default_full_calendar/tpl.php:72
|
731 |
+
#: app/skins/full_calendar/tpl.php:119
|
732 |
msgid "Monthly"
|
733 |
msgstr "Monatlich"
|
734 |
|
735 |
+
#: app/features/events.php:778 app/features/fes/form.php:358
|
736 |
#: app/features/mec/dashboard.php:410
|
737 |
+
#: app/skins/default_full_calendar/tpl.php:71
|
738 |
+
#: app/skins/full_calendar/tpl.php:118
|
739 |
msgid "Yearly"
|
740 |
msgstr "Jährlich"
|
741 |
|
742 |
+
#: app/features/events.php:785 app/features/fes/form.php:359
|
743 |
msgid "Custom Days"
|
744 |
msgstr "Benutzerdefinierte Tage"
|
745 |
|
746 |
+
#: app/features/events.php:792 app/features/fes/form.php:360
|
747 |
msgid "Advanced"
|
748 |
msgstr "Fortgeschritten"
|
749 |
|
750 |
+
#: app/features/events.php:797 app/features/fes/form.php:364
|
751 |
msgid "Repeat Interval"
|
752 |
msgstr "Wiederholungsintervall"
|
753 |
|
754 |
+
#: app/features/events.php:799 app/features/fes/form.php:365
|
755 |
msgid "Repeat interval"
|
756 |
msgstr "Wiederholungsintervall"
|
757 |
|
758 |
+
#: app/features/events.php:803 app/features/fes/form.php:368
|
759 |
msgid "Week Days"
|
760 |
msgstr "Wochentage"
|
761 |
|
762 |
+
#: app/features/events.php:818 app/features/events.php:1905
|
763 |
+
#: app/features/events.php:1933 app/features/events.php:2113
|
764 |
#: app/features/fes/form.php:380 app/features/ix/import_f_calendar.php:42
|
765 |
#: app/features/ix/import_g_calendar.php:51
|
766 |
#: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
|
767 |
msgid "Start"
|
768 |
msgstr "Start"
|
769 |
|
770 |
+
#: app/features/events.php:820 app/features/events.php:1909
|
771 |
+
#: app/features/events.php:1937 app/features/events.php:2117
|
772 |
#: app/features/fes/form.php:381
|
773 |
msgid "End"
|
774 |
msgstr "Ende"
|
775 |
|
776 |
+
#: app/features/events.php:822 app/features/events.php:1205
|
777 |
+
#: app/features/events.php:1325 app/features/events.php:1430
|
778 |
+
#: app/features/events.php:1888 app/features/events.php:2102
|
779 |
+
#: app/features/events.php:2182 app/features/events.php:2315
|
780 |
#: app/features/fes/form.php:382 app/features/fes/form.php:865
|
781 |
msgid "Add"
|
782 |
msgstr "Hinzufügen"
|
783 |
|
784 |
+
#: app/features/events.php:825
|
785 |
msgid "Custom Days Repeating"
|
786 |
msgstr "Benutzerdefinierte Wiederholende Tage"
|
787 |
|
788 |
+
#: app/features/events.php:826
|
789 |
msgid ""
|
790 |
"Add certain days to event occurrence dates. If you have single day event, "
|
791 |
"start and end date should be the same, If you have multiple day event the "
|
792 |
"start and end dates must be commensurate with the initial date."
|
793 |
msgstr ""
|
794 |
|
795 |
+
#: app/features/events.php:868 app/features/fes/form.php:415
|
796 |
msgid "First"
|
797 |
msgstr "Erster"
|
798 |
|
799 |
+
#: app/features/events.php:910 app/features/fes/form.php:457
|
800 |
msgid "Second"
|
801 |
msgstr "Zweiter"
|
802 |
|
803 |
+
#: app/features/events.php:952 app/features/fes/form.php:499
|
804 |
msgid "Third"
|
805 |
msgstr "Dritter"
|
806 |
|
807 |
+
#: app/features/events.php:994 app/features/fes/form.php:541
|
808 |
msgid "Fourth"
|
809 |
msgstr "Vierte"
|
810 |
|
811 |
+
#: app/features/events.php:1036 app/features/fes/form.php:583
|
812 |
msgid "Last"
|
813 |
msgstr "Letzter"
|
814 |
|
815 |
+
#: app/features/events.php:1083 app/features/fes/form.php:629
|
816 |
msgid "Ends Repeat"
|
817 |
msgstr "Wiederholung endet"
|
818 |
|
819 |
+
#: app/features/events.php:1095 app/features/fes/form.php:633
|
820 |
msgid "Never"
|
821 |
msgstr "Niemals"
|
822 |
|
823 |
+
#: app/features/events.php:1107 app/features/fes/form.php:638
|
824 |
msgid "On"
|
825 |
msgstr "Am"
|
826 |
|
827 |
+
#: app/features/events.php:1123 app/features/fes/form.php:645
|
828 |
msgid "After"
|
829 |
msgstr "Nach"
|
830 |
|
831 |
+
#: app/features/events.php:1127 app/features/events.php:1131
|
832 |
#: app/features/fes/form.php:647 app/features/fes/form.php:650
|
833 |
msgid "Occurrences times"
|
834 |
msgstr " mal vorkommen"
|
835 |
|
836 |
+
#: app/features/events.php:1132 app/features/fes/form.php:651
|
837 |
msgid ""
|
838 |
"The event will finish after certain repeats. For example if you set it to "
|
839 |
"10, the event will finish after 10 repeats."
|
841 |
"Das Event ist nach einer bestimmten Anzahl von Wiederholungen zu Ende. Zum "
|
842 |
"Beispiel: Bei Eingabe von 10 wird das Event nach 10 Wiederholungen beendet"
|
843 |
|
844 |
+
#: app/features/events.php:1147 app/features/fes/form.php:664
|
845 |
#, fuzzy
|
846 |
#| msgid "Next Occurrence of Other Events"
|
847 |
msgid "Show only one occurrence of this event"
|
848 |
msgstr "Nächstes Auftreten von anderen Events."
|
849 |
|
850 |
+
#: app/features/events.php:1167 app/features/events.php:3550
|
851 |
+
#: app/features/events.php:3592 app/features/fes/form.php:737
|
852 |
#: app/features/ix.php:3508 app/features/ix.php:3549
|
853 |
+
#: app/features/mec/settings.php:689 app/libraries/main.php:5439
|
854 |
#: app/widgets/single.php:103
|
855 |
msgid "Event Cost"
|
856 |
msgstr ""
|
857 |
"Bruttopreis des Events in Euro, 0 für kostenlos oder z.B. 39, ohne €-Zeichen"
|
858 |
|
859 |
+
#: app/features/events.php:1192
|
860 |
#, fuzzy
|
861 |
#| msgid "Exceptional Days"
|
862 |
msgid "Exceptional Days (Exclude Dates)"
|
863 |
msgstr "Herausgenommene Tage "
|
864 |
|
865 |
+
#: app/features/events.php:1198 app/features/events.php:1208
|
866 |
msgid "Exclude certain days"
|
867 |
msgstr "Ausschluss bestimmter Tage"
|
868 |
|
869 |
+
#: app/features/events.php:1203 app/features/events.php:2549
|
870 |
#: app/features/fes.php:223 app/features/mec/booking.php:500
|
871 |
+
#: app/features/profile/profile.php:53 app/libraries/main.php:2302
|
872 |
+
#: app/libraries/main.php:2950 app/modules/booking/steps/tickets.php:23
|
873 |
#: app/modules/next-event/details.php:93 app/skins/single.php:659
|
874 |
#: app/skins/single/default.php:85 app/skins/single/default.php:308
|
875 |
+
#: app/skins/single/m1.php:20 app/skins/single/modern.php:176
|
876 |
msgid "Date"
|
877 |
msgstr "Datum"
|
878 |
|
879 |
+
#: app/features/events.php:1209
|
880 |
msgid ""
|
881 |
"Exclude certain days from event occurrence dates. Please note that you can "
|
882 |
"exclude only single day occurrences and you cannot exclude one day from "
|
883 |
"multiple day occurrences."
|
884 |
msgstr ""
|
885 |
|
886 |
+
#: app/features/events.php:1268 app/libraries/render.php:506
|
887 |
msgid "Day 1"
|
888 |
msgstr "Tag 1"
|
889 |
|
890 |
+
#: app/features/events.php:1298
|
891 |
msgid "Add Day"
|
892 |
msgstr "Tag hinzufügen"
|
893 |
|
894 |
+
#: app/features/events.php:1299
|
895 |
msgid ""
|
896 |
"Add new days for schedule. For example if your event is multiple days, you "
|
897 |
"can add a different schedule for each day!"
|
898 |
msgstr ""
|
899 |
|
900 |
+
#: app/features/events.php:1306
|
901 |
#, php-format
|
902 |
msgid "Day %s"
|
903 |
msgstr ""
|
904 |
|
905 |
+
#: app/features/events.php:1310 app/features/events.php:1349
|
906 |
+
#: app/features/events.php:1384 app/features/events.php:1416
|
907 |
+
#: app/features/events.php:1445 app/features/events.php:2330
|
908 |
+
#: app/features/events.php:2377 app/features/events.php:3356
|
909 |
+
#: app/features/events.php:3550 app/features/events.php:3592
|
910 |
#: app/features/fes/form.php:239 app/features/ix.php:3508
|
911 |
#: app/features/ix.php:3549 app/features/mec/booking.php:384
|
912 |
#: app/features/mec/booking.php:416 app/features/mec/styling.php:130
|
913 |
msgid "Title"
|
914 |
msgstr "Titel"
|
915 |
|
916 |
+
#: app/features/events.php:1319 app/features/events.php:1356
|
917 |
+
#: app/features/events.php:1389 app/features/events.php:1424
|
918 |
+
#: app/features/events.php:1450 app/features/events.php:1919
|
919 |
+
#: app/features/events.php:1945 app/features/events.php:2123
|
920 |
+
#: app/features/events.php:2222 app/features/events.php:2258
|
921 |
+
#: app/features/events.php:2365 app/features/events.php:2407
|
922 |
#: app/features/mec/booking.php:327 app/features/mec/booking.php:356
|
923 |
#: app/features/mec/booking.php:407 app/features/mec/booking.php:439
|
924 |
+
#: app/libraries/main.php:2811 app/libraries/main.php:2841
|
925 |
+
#: app/libraries/main.php:2870 app/libraries/main.php:2900
|
926 |
+
#: app/libraries/main.php:2929 app/libraries/main.php:2958
|
927 |
+
#: app/libraries/main.php:2987 app/libraries/main.php:3016
|
928 |
+
#: app/libraries/main.php:3038 app/libraries/main.php:3069
|
929 |
+
#: app/libraries/main.php:3113 app/libraries/main.php:3157
|
930 |
+
#: app/libraries/main.php:3204 app/libraries/main.php:3243
|
931 |
msgid "Remove"
|
932 |
msgstr "Entfernen"
|
933 |
|
934 |
+
#: app/features/events.php:1326 app/features/events.php:1431
|
935 |
msgid "Add new hourly schedule row"
|
936 |
msgstr "Neue Stundenplan-Zeile hinzufügen"
|
937 |
|
938 |
+
#: app/features/events.php:1341 app/features/events.php:1378
|
939 |
+
#: app/features/events.php:1440
|
940 |
msgid "From e.g. 8:15"
|
941 |
msgstr "Von z.B. 08:15 Uhr"
|
942 |
|
943 |
+
#: app/features/events.php:1345 app/features/events.php:1381
|
944 |
+
#: app/features/events.php:1442
|
945 |
msgid "To e.g. 8:45"
|
946 |
msgstr "bis zum Beispiel 08:45 Uhr"
|
947 |
|
948 |
+
#: app/features/events.php:1353 app/features/events.php:1387
|
949 |
+
#: app/features/events.php:1448 app/features/events.php:1809
|
950 |
+
#: app/features/events.php:2034
|
951 |
msgid "Description"
|
952 |
msgstr "Beschreibung"
|
953 |
|
954 |
+
#: app/features/events.php:1359 app/features/events.php:1392
|
955 |
+
#: app/features/events.php:1453 app/features/fes/form.php:861
|
956 |
+
#: app/features/mec.php:420 app/features/mec/modules.php:52
|
957 |
#: app/features/mec/settings.php:737 app/features/speakers.php:62
|
958 |
+
#: app/libraries/main.php:565 app/libraries/main.php:5414
|
959 |
#: app/modules/speakers/details.php:18
|
960 |
msgid "Speakers"
|
961 |
msgstr "Sprecher"
|
962 |
|
963 |
+
#: app/features/events.php:1412 app/features/events.php:1420
|
964 |
msgid "New Day"
|
965 |
msgstr "Neuer Tag"
|
966 |
|
967 |
+
#: app/features/events.php:1484 app/features/fes/form.php:714
|
968 |
#: app/features/mec/settings.php:683
|
969 |
msgid "Event Links"
|
970 |
msgstr "Veranstaltungslinks"
|
971 |
|
972 |
+
#: app/features/events.php:1487 app/features/events.php:1493
|
973 |
+
#: app/features/fes/form.php:716 app/libraries/main.php:5437
|
974 |
msgid "Event Link"
|
975 |
msgstr "Veranstaltungslink"
|
976 |
|
977 |
+
#: app/features/events.php:1490 app/features/events.php:1506
|
978 |
#: app/features/fes/form.php:717 app/features/fes/form.php:722
|
979 |
msgid "eg. http://yoursite.com/your-event"
|
980 |
msgstr "z.B. http://yoursite.com/your-event"
|
981 |
|
982 |
+
#: app/features/events.php:1494
|
983 |
#, fuzzy
|
984 |
#| msgid ""
|
985 |
#| "If you fill it, it will be replaced instead of default event page link. "
|
993 |
"dieser durch einen neuen link ersetzt werden. Vollständigen Link einfügen, "
|
994 |
"einschließlich http(s)://"
|
995 |
|
996 |
+
#: app/features/events.php:1496
|
997 |
msgid "URL Shortener"
|
998 |
msgstr ""
|
999 |
|
1000 |
+
#: app/features/events.php:1503 app/features/events.php:1516
|
1001 |
+
#: app/features/fes/form.php:721 app/libraries/main.php:5438
|
1002 |
#: app/skins/single.php:684 app/skins/single/default.php:140
|
1003 |
#: app/skins/single/default.php:363 app/skins/single/m1.php:205
|
1004 |
+
#: app/skins/single/m2.php:132 app/skins/single/modern.php:141
|
1005 |
#: app/widgets/single.php:107
|
1006 |
msgid "More Info"
|
1007 |
msgstr "Mehr Informationen"
|
1008 |
|
1009 |
+
#: app/features/events.php:1509 app/features/fes/form.php:723
|
1010 |
msgid "More Information"
|
1011 |
msgstr "z.B. Noch mehr Informationen "
|
1012 |
|
1013 |
+
#: app/features/events.php:1511 app/features/fes/form.php:725
|
1014 |
msgid "Current Window"
|
1015 |
msgstr "Aktuelles Fenster"
|
1016 |
|
1017 |
+
#: app/features/events.php:1512 app/features/fes/form.php:726
|
1018 |
msgid "New Window"
|
1019 |
msgstr "Neues Fenster"
|
1020 |
|
1021 |
+
#: app/features/events.php:1517 app/features/fes/form.php:728
|
1022 |
msgid ""
|
1023 |
"If you fill it, it will be shown in event details page as an optional link. "
|
1024 |
"Insert full link including http(s)://"
|
1029 |
"Text angezeigt werden soll: zum Beispiel: Noch mehr Informationen oder Hier "
|
1030 |
"zur Anmeldung (z.B. bei Webinaren sinnvoll) "
|
1031 |
|
1032 |
+
#: app/features/events.php:1590 app/features/events.php:1605
|
1033 |
msgid "Total booking limits"
|
1034 |
msgstr "Gesamt Verfügbare Plätze"
|
1035 |
|
1036 |
+
#: app/features/events.php:1602 app/features/events.php:1857
|
1037 |
+
#: app/features/events.php:2072 app/modules/booking/default.php:85
|
1038 |
#: app/modules/booking/steps/tickets.php:43
|
1039 |
+
#: app/skins/available_spot/tpl.php:120
|
1040 |
msgid "Unlimited"
|
1041 |
msgstr "Unlimitiert"
|
1042 |
|
1043 |
+
#: app/features/events.php:1608
|
1044 |
msgid ""
|
1045 |
"If you want to set a limit to all tickets, uncheck this checkbox and put a "
|
1046 |
"limitation number."
|
1047 |
msgstr ""
|
1048 |
|
1049 |
+
#: app/features/events.php:1610
|
1050 |
#, fuzzy
|
1051 |
#| msgid "Choose your single event style."
|
1052 |
msgid "Read About A Booking System"
|
1053 |
msgstr "Wählen Sie Ihren Single Event Stil"
|
1054 |
|
1055 |
+
#: app/features/events.php:1618
|
1056 |
msgid "100"
|
1057 |
msgstr "z.B. 100"
|
1058 |
|
1059 |
+
#: app/features/events.php:1623
|
1060 |
#, fuzzy
|
1061 |
#| msgid "Total booking limits"
|
1062 |
msgid "Total user booking limits"
|
1063 |
msgstr "Gesamt Verfügbare Plätze"
|
1064 |
|
1065 |
+
#: app/features/events.php:1635 app/features/events.php:2171
|
1066 |
+
#: app/features/events.php:2303 app/features/events.php:2491
|
1067 |
msgid "Inherit from global options"
|
1068 |
msgstr "Aus den globalen Einstellungen übernehmen"
|
1069 |
|
1070 |
+
#: app/features/events.php:1638
|
1071 |
msgid "12"
|
1072 |
msgstr "12"
|
1073 |
|
1074 |
+
#: app/features/events.php:1661 app/libraries/book.php:60
|
1075 |
+
#: app/libraries/main.php:5442 app/modules/booking/steps/tickets.php:43
|
1076 |
msgid "Tickets"
|
1077 |
msgstr "Tickets"
|
1078 |
|
1079 |
+
#: app/features/events.php:1664
|
1080 |
msgid ""
|
1081 |
"You're translating an event so MEC will use the original event for tickets "
|
1082 |
"and booking. You can only translate the ticket name and description. Please "
|
1083 |
"define exact tickets that you defined in the original event here."
|
1084 |
msgstr ""
|
1085 |
|
1086 |
+
#: app/features/events.php:1669
|
1087 |
msgid "Add Ticket"
|
1088 |
msgstr "Ticket hinzufügen"
|
1089 |
|
1090 |
+
#: app/features/events.php:1683 app/features/events.php:1959
|
1091 |
msgid "Ticket Name"
|
1092 |
msgstr "Ticket Name"
|
1093 |
|
1094 |
+
#: app/features/events.php:1688 app/features/events.php:1963
|
1095 |
+
#: app/features/events.php:3550 app/features/events.php:3592
|
1096 |
#: app/features/ix.php:3508 app/features/ix.php:3549
|
1097 |
msgid "Start Time"
|
1098 |
msgstr "Uhrzeit des Beginns"
|
1099 |
|
1100 |
+
#: app/features/events.php:1747 app/features/events.php:1993
|
1101 |
+
#: app/features/events.php:3550 app/features/events.php:3592
|
1102 |
#: app/features/ix.php:3508 app/features/ix.php:3549
|
1103 |
msgid "End Time"
|
1104 |
msgstr "Uhrzeit Ende"
|
1105 |
|
1106 |
+
#: app/features/events.php:1814 app/features/events.php:1818
|
1107 |
+
#: app/features/events.php:1913 app/features/events.php:1940
|
1108 |
+
#: app/features/events.php:2039 app/features/events.php:2042
|
1109 |
+
#: app/features/events.php:2119 app/features/events.php:2336
|
1110 |
+
#: app/features/events.php:2340 app/features/events.php:2382
|
1111 |
+
#: app/features/events.php:2385 app/features/mec/booking.php:388
|
1112 |
#: app/features/mec/booking.php:391 app/features/mec/booking.php:420
|
1113 |
#: app/features/mec/booking.php:423
|
1114 |
msgid "Price"
|
1115 |
msgstr "Preis"
|
1116 |
|
1117 |
+
#: app/features/events.php:1819 app/features/events.php:2043
|
1118 |
+
#, fuzzy
|
1119 |
+
#| msgid "Insert 0 for free ticket. Only numbers please."
|
1120 |
+
msgid ""
|
1121 |
+
"Insert 0 for free ticket. Only numbers please — Enter only the price without "
|
1122 |
+
"any symbols or characters."
|
1123 |
msgstr "Bitte 0 für kostenloses Ticket eingeben. Bitte nur Zahlen eintragen"
|
1124 |
|
1125 |
+
#: app/features/events.php:1828 app/features/events.php:1833
|
1126 |
+
#: app/features/events.php:2052 app/features/events.php:2055
|
1127 |
msgid "Price Label"
|
1128 |
msgstr "Preisschild"
|
1129 |
|
1130 |
+
#: app/features/events.php:1834 app/features/events.php:2056
|
1131 |
msgid "For showing on website. e.g. $15"
|
1132 |
msgstr "Um das auf der Webseite anzuzeigen zum Beispiel 15 €"
|
1133 |
|
1134 |
+
#: app/features/events.php:1844 app/features/events.php:2066
|
1135 |
msgid "Available Tickets"
|
1136 |
msgstr "Verfügbare Tickets: %s "
|
1137 |
|
1138 |
+
#: app/features/events.php:1861 app/features/events.php:2076
|
1139 |
msgid "Minimum Ticket e.g. 3"
|
1140 |
msgstr "Ticket minimum z.B. 3"
|
1141 |
|
1142 |
+
#: app/features/events.php:1864 app/features/events.php:2079
|
1143 |
msgid "MinimumTicket"
|
1144 |
msgstr "Ticket minimum"
|
1145 |
|
1146 |
+
#: app/features/events.php:1866 app/features/events.php:2081
|
1147 |
msgid "Set a number for the minimum ticket reservation"
|
1148 |
msgstr ""
|
1149 |
|
1150 |
+
#: app/features/events.php:1874 app/features/events.php:2089
|
1151 |
msgid "e.g. 0"
|
1152 |
msgstr "z.B. 0"
|
1153 |
|
1154 |
+
#: app/features/events.php:1876 app/features/events.php:2091
|
1155 |
msgid "Day"
|
1156 |
msgstr "Tag"
|
1157 |
|
1158 |
+
#: app/features/events.php:1877 app/features/events.php:2092
|
1159 |
msgid "Hour"
|
1160 |
msgstr "Stunde"
|
1161 |
|
1162 |
+
#: app/features/events.php:1879 app/features/events.php:2094
|
1163 |
#, php-format
|
1164 |
msgid "Stop selling ticket %s before event start."
|
1165 |
msgstr ""
|
1166 |
|
1167 |
+
#: app/features/events.php:1886 app/features/events.php:2100
|
1168 |
msgid "Price per Date"
|
1169 |
msgstr "Preis pro Datum"
|
1170 |
|
1171 |
+
#: app/features/events.php:1917 app/features/events.php:1943
|
1172 |
+
#: app/features/events.php:2121 app/features/labels.php:60
|
1173 |
#: app/features/mec/meta_boxes/display_options.php:1117
|
1174 |
#: app/features/mec/meta_boxes/search_form.php:67
|
1175 |
#: app/features/mec/meta_boxes/search_form.php:137
|
1182 |
#: app/features/mec/meta_boxes/search_form.php:620
|
1183 |
#: app/features/mec/meta_boxes/search_form.php:690
|
1184 |
#: app/features/mec/meta_boxes/search_form.php:796
|
1185 |
+
#: app/features/mec/settings.php:871 app/features/mec/single.php:250
|
1186 |
#: app/libraries/skins.php:1007
|
1187 |
msgid "Label"
|
1188 |
msgstr "Label"
|
1189 |
|
1190 |
+
#: app/features/events.php:2159
|
1191 |
msgid "Fees"
|
1192 |
msgstr "Gebühren"
|
1193 |
|
1194 |
+
#: app/features/events.php:2196 app/features/events.php:2234
|
1195 |
#: app/features/mec/booking.php:307 app/features/mec/booking.php:336
|
1196 |
msgid "Fee Title"
|
1197 |
msgstr "Gebühren Name"
|
1198 |
|
1199 |
+
#: app/features/events.php:2202 app/features/events.php:2206
|
1200 |
+
#: app/features/events.php:2239 app/features/events.php:2242
|
1201 |
#: app/features/mec/booking.php:311 app/features/mec/booking.php:314
|
1202 |
#: app/features/mec/booking.php:340 app/features/mec/booking.php:343
|
1203 |
msgid "Amount"
|
1204 |
msgstr "Betrag"
|
1205 |
|
1206 |
+
#: app/features/events.php:2207 app/features/events.php:2243
|
1207 |
#: app/features/mec/booking.php:315 app/features/mec/booking.php:344
|
1208 |
msgid ""
|
1209 |
"Fee amount, considered as fixed amount if you set the type to amount "
|
1212 |
"Gebührenbetrag, gilt als fester Betrag, wenn Sie die Art auf Betrag setzen, "
|
1213 |
"sonst als Prozentsatz"
|
1214 |
|
1215 |
+
#: app/features/events.php:2216 app/features/events.php:2252
|
1216 |
#: app/features/mec/booking.php:322 app/features/mec/booking.php:351
|
1217 |
msgid "Percent"
|
1218 |
msgstr "Prozent"
|
1219 |
|
1220 |
+
#: app/features/events.php:2217 app/features/events.php:2253
|
1221 |
#: app/features/mec/booking.php:323 app/features/mec/booking.php:352
|
1222 |
msgid "Amount (Per Ticket)"
|
1223 |
msgstr "Betrag (pro Ticket)"
|
1224 |
|
1225 |
+
#: app/features/events.php:2218 app/features/events.php:2254
|
1226 |
#: app/features/mec/booking.php:324 app/features/mec/booking.php:353
|
1227 |
msgid "Amount (Per Booking)"
|
1228 |
msgstr "Betrag (pro Buchung)"
|
1229 |
|
1230 |
+
#: app/features/events.php:2291 app/features/mec/settings.php:761
|
1231 |
msgid "Ticket Variations / Options"
|
1232 |
msgstr ""
|
1233 |
|
1234 |
+
#: app/features/events.php:2341 app/features/events.php:2386
|
1235 |
#: app/features/mec/booking.php:392 app/features/mec/booking.php:424
|
1236 |
msgid "Option Price"
|
1237 |
msgstr "Preis Optionen"
|
1238 |
|
1239 |
+
#: app/features/events.php:2351 app/features/events.php:2355
|
1240 |
+
#: app/features/events.php:2395 app/features/events.php:2398
|
1241 |
#: app/features/mec/booking.php:398 app/features/mec/booking.php:401
|
1242 |
#: app/features/mec/booking.php:430 app/features/mec/booking.php:433
|
1243 |
msgid "Maximum Per Ticket"
|
1244 |
msgstr "Maximum pro Ticket"
|
1245 |
|
1246 |
+
#: app/features/events.php:2356 app/features/events.php:2399
|
1247 |
#: app/features/mec/booking.php:402 app/features/mec/booking.php:434
|
1248 |
msgid "Maximum Per Ticket. Leave it blank for unlimited."
|
1249 |
msgstr "Maximum pro Ticket. Leerlassen für unendlich."
|
1250 |
|
1251 |
+
#: app/features/events.php:2545 app/features/mec/booking.php:496
|
1252 |
+
#: app/libraries/main.php:2833
|
1253 |
msgid "MEC Name"
|
1254 |
msgstr "MEC Name"
|
1255 |
|
1256 |
+
#: app/features/events.php:2546 app/features/mec/booking.php:497
|
1257 |
+
#: app/libraries/main.php:2862
|
1258 |
msgid "MEC Email"
|
1259 |
msgstr "MEC Email"
|
1260 |
|
1261 |
+
#: app/features/events.php:2547 app/features/mec/booking.php:498
|
1262 |
+
#: app/libraries/main.php:2803
|
1263 |
msgid "Text"
|
1264 |
msgstr "Text"
|
1265 |
|
1266 |
+
#: app/features/events.php:2550 app/features/mec/booking.php:501
|
1267 |
#: app/features/organizers.php:103 app/features/organizers.php:148
|
1268 |
#: app/features/speakers.php:119 app/features/speakers.php:192
|
1269 |
+
#: app/features/speakers.php:271 app/libraries/main.php:2979
|
1270 |
msgid "Tel"
|
1271 |
msgstr "Tel"
|
1272 |
|
1273 |
+
#: app/features/events.php:2551 app/features/mec/booking.php:502
|
1274 |
+
#: app/libraries/main.php:2921
|
1275 |
msgid "File"
|
1276 |
msgstr "Datei"
|
1277 |
|
1278 |
+
#: app/features/events.php:2552 app/features/mec/booking.php:503
|
1279 |
+
#: app/libraries/main.php:3008
|
1280 |
msgid "Textarea"
|
1281 |
msgstr "Textbereich"
|
1282 |
|
1283 |
+
#: app/features/events.php:2553 app/features/mec/booking.php:504
|
1284 |
+
#: app/libraries/main.php:3061
|
1285 |
msgid "Checkboxes"
|
1286 |
msgstr "Checkboxes"
|
1287 |
|
1288 |
+
#: app/features/events.php:2554 app/features/mec/booking.php:505
|
1289 |
+
#: app/libraries/main.php:3105
|
1290 |
msgid "Radio Buttons"
|
1291 |
msgstr "Radio Buttons"
|
1292 |
|
1293 |
+
#: app/features/events.php:2555 app/features/mec/booking.php:506
|
1294 |
#: app/features/mec/meta_boxes/search_form.php:34
|
1295 |
#: app/features/mec/meta_boxes/search_form.php:41
|
1296 |
#: app/features/mec/meta_boxes/search_form.php:49
|
1366 |
#: app/features/mec/meta_boxes/search_form.php:785
|
1367 |
#: app/features/mec/meta_boxes/search_form.php:792
|
1368 |
#: app/features/mec/meta_boxes/search_form.php:799
|
1369 |
+
#: app/features/mec/meta_boxes/search_form.php:813 app/libraries/main.php:3149
|
1370 |
msgid "Dropdown"
|
1371 |
msgstr "Dropdown"
|
1372 |
|
1373 |
+
#: app/features/events.php:2556 app/features/mec/booking.php:507
|
1374 |
+
#: app/libraries/main.php:3196
|
1375 |
msgid "Agreement"
|
1376 |
msgstr "Zustimmung"
|
1377 |
|
1378 |
+
#: app/features/events.php:2557 app/features/mec/booking.php:508
|
1379 |
+
#: app/libraries/main.php:3037
|
1380 |
msgid "Paragraph"
|
1381 |
msgstr "Absatz"
|
1382 |
|
1383 |
+
#: app/features/events.php:3258 app/features/events.php:3276
|
1384 |
+
#: app/features/events.php:3294 app/features/events.php:3312
|
1385 |
#, php-format
|
1386 |
msgid "Show all %s"
|
1387 |
msgstr "Zeige alle %s"
|
1388 |
|
1389 |
+
#: app/features/events.php:3258
|
1390 |
msgid "labels"
|
1391 |
msgstr "Labels + Eventstatus"
|
1392 |
|
1393 |
+
#: app/features/events.php:3276
|
1394 |
msgid "locations"
|
1395 |
msgstr "Orte"
|
1396 |
|
1397 |
+
#: app/features/events.php:3294
|
1398 |
msgid "organizers"
|
1399 |
msgstr "Veranstalter"
|
1400 |
|
1401 |
+
#: app/features/events.php:3328
|
1402 |
msgid "Attendees List"
|
1403 |
msgstr "Teilnehmer Liste"
|
1404 |
|
1405 |
+
#: app/features/events.php:3358 app/features/events.php:3550
|
1406 |
+
#: app/features/events.php:3592 app/features/ix.php:3508
|
1407 |
#: app/features/ix.php:3549 app/features/locations.php:58
|
1408 |
#: app/features/locations.php:232 app/features/locations.php:289
|
1409 |
#: app/features/locations.php:291 app/features/locations.php:300
|
1419 |
#: app/features/mec/meta_boxes/search_form.php:591
|
1420 |
#: app/features/mec/meta_boxes/search_form.php:661
|
1421 |
#: app/features/mec/meta_boxes/search_form.php:767
|
1422 |
+
#: app/features/mec/settings.php:845 app/features/mec/single.php:240
|
1423 |
#: app/features/popup/event.php:246 app/features/popup/event.php:255
|
1424 |
+
#: app/features/search.php:73 app/libraries/main.php:2296
|
1425 |
+
#: app/libraries/main.php:5411 app/libraries/skins.php:903
|
1426 |
#: app/skins/single.php:503 app/skins/single.php:941
|
1427 |
#: app/skins/single/default.php:176 app/skins/single/default.php:399
|
1428 |
#: app/skins/single/m1.php:169 app/skins/single/m2.php:95
|
1429 |
+
#: app/skins/single/modern.php:103
|
1430 |
msgid "Location"
|
1431 |
msgstr "Ort"
|
1432 |
|
1433 |
+
#: app/features/events.php:3363
|
1434 |
msgid "Repeat"
|
1435 |
msgstr "Wiederholen"
|
1436 |
|
1437 |
+
#: app/features/events.php:3364
|
1438 |
msgid "Author"
|
1439 |
msgstr "Autor"
|
1440 |
|
1441 |
+
#: app/features/events.php:3485 app/features/events.php:3486
|
1442 |
msgid "iCal Export"
|
1443 |
msgstr "ical Export"
|
1444 |
|
1445 |
+
#: app/features/events.php:3488 app/features/events.php:3489
|
1446 |
msgid "CSV Export"
|
1447 |
msgstr "CSV Export"
|
1448 |
|
1449 |
+
#: app/features/events.php:3491 app/features/events.php:3492
|
1450 |
msgid "MS Excel Export"
|
1451 |
msgstr "MS Excel Export"
|
1452 |
|
1453 |
+
#: app/features/events.php:3494 app/features/events.php:3495
|
1454 |
msgid "XML Export"
|
1455 |
msgstr "XML Export"
|
1456 |
|
1457 |
+
#: app/features/events.php:3497 app/features/events.php:3498
|
1458 |
msgid "JSON Export"
|
1459 |
msgstr "JSON Export"
|
1460 |
|
1461 |
+
#: app/features/events.php:3500 app/features/events.php:3501
|
1462 |
+
#: app/features/events.php:3683
|
1463 |
msgid "Duplicate"
|
1464 |
msgstr "Kopie"
|
1465 |
|
1466 |
+
#: app/features/events.php:3550 app/features/events.php:3592
|
1467 |
#: app/features/fes.php:223 app/features/ix.php:3508 app/features/ix.php:3549
|
1468 |
#: app/features/labels.php:177 app/features/locations.php:231
|
1469 |
#: app/features/organizers.php:203 app/features/speakers.php:268
|
1470 |
msgid "ID"
|
1471 |
msgstr "ID"
|
1472 |
|
1473 |
+
#: app/features/events.php:3550 app/features/events.php:3592
|
1474 |
#: app/features/ix.php:3508 app/features/ix.php:3549
|
1475 |
msgid "Link"
|
1476 |
msgstr "Link"
|
1477 |
|
1478 |
+
#: app/features/events.php:3550 app/features/events.php:3592
|
1479 |
#, php-format
|
1480 |
msgid "%s Tel"
|
1481 |
msgstr "%s Tel"
|
1482 |
|
1483 |
+
#: app/features/events.php:3550 app/features/events.php:3592
|
1484 |
#, php-format
|
1485 |
msgid "%s Email"
|
1486 |
msgstr "%s Email"
|
1487 |
|
1488 |
+
#: app/features/events.php:3889 app/features/fes.php:223
|
1489 |
+
#: app/features/profile/profile.php:186 app/libraries/main.php:2331
|
1490 |
+
#: app/libraries/main.php:5441
|
1491 |
msgid "Ticket"
|
1492 |
msgstr "Ticket"
|
1493 |
|
1494 |
+
#: app/features/events.php:3892 app/features/profile/profile.php:189
|
1495 |
msgid "Variations"
|
1496 |
msgstr "Variationen"
|
1497 |
|
1498 |
+
#: app/features/events.php:3907 app/features/fes.php:303
|
1499 |
msgid "Unknown"
|
1500 |
msgstr "Unbekannt"
|
1501 |
|
1502 |
+
#: app/features/events.php:3940
|
1503 |
msgid "No Attendees Found!"
|
1504 |
msgstr "Keine Teilnehmer gefunden!"
|
1505 |
|
1540 |
msgid "Order Time"
|
1541 |
msgstr "Uhrzeit Bestellung"
|
1542 |
|
1543 |
+
#: app/features/fes.php:223 app/libraries/main.php:2308
|
1544 |
msgid "Transaction ID"
|
1545 |
msgstr "Transaktions-ID"
|
1546 |
|
1572 |
msgid "Please fill event title field!"
|
1573 |
msgstr "Bitte füllen Sie das Event Titelfeld"
|
1574 |
|
1575 |
+
#: app/features/fes.php:1108
|
1576 |
msgid "The event submitted. It will publish as soon as possible."
|
1577 |
msgstr ""
|
1578 |
"Die Veranstaltung wurde übermittelt. Sie wird sobald wie möglich "
|
1579 |
"veröffentlicht werden."
|
1580 |
|
1581 |
+
#: app/features/fes.php:1109
|
1582 |
msgid "The event published."
|
1583 |
msgstr "Die Veranstaltung wurde veröffentlicht."
|
1584 |
|
1667 |
msgstr "Bild entfernen"
|
1668 |
|
1669 |
#: app/features/fes/form.php:793 app/features/labels.php:61
|
1670 |
+
#: app/features/labels.php:221 app/features/mec.php:413
|
1671 |
+
#: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:5408
|
1672 |
#: app/skins/single.php:713 app/skins/single/default.php:155
|
1673 |
#: app/skins/single/default.php:378 app/skins/single/m1.php:73
|
1674 |
+
#: app/skins/single/modern.php:229
|
1675 |
msgid "Labels"
|
1676 |
msgstr "Labels"
|
1677 |
|
1678 |
+
#: app/features/fes/form.php:839 app/features/mec.php:411
|
1679 |
#: app/features/mec/meta_boxes/filter.php:147
|
1680 |
msgid "Tags"
|
1681 |
msgstr "Schlagworte"
|
1755 |
msgid "Both of API key and Calendar ID are required!"
|
1756 |
msgstr "Beide, API Schlüssel und Calender ID wird benötigt"
|
1757 |
|
1758 |
+
#: app/features/ix.php:2772 app/features/ix.php:3191 app/features/ix.php:3925
|
1759 |
msgid "Please select some events to import!"
|
1760 |
msgstr "Bitte wählen Sie einige Veranstaltungen aus zum importieren"
|
1761 |
|
1795 |
msgid "All of Client App, Client Secret and Calendar ID are required!"
|
1796 |
msgstr "Dies wird alles benötigt: Client ID, Client Secret und Calender ID!"
|
1797 |
|
1798 |
+
#: app/features/ix.php:3854
|
1799 |
#, php-format
|
1800 |
msgid "%s events added to Google Calendar successfully."
|
1801 |
msgstr "%s Events wurden erfolgreich zum Google Kalender hinzugefügt."
|
1802 |
|
1803 |
+
#: app/features/ix.php:3855
|
1804 |
#, php-format
|
1805 |
msgid "%s previously added events get updated."
|
1806 |
msgstr "%s vorherige hinzugefügte Events wurden aktualisiert."
|
1807 |
|
1808 |
+
#: app/features/ix.php:3856
|
1809 |
#, php-format
|
1810 |
msgid "%s events failed to add for following reasons: %s"
|
1811 |
msgstr "%s Events wurde aus folgenden Gründen nicht hinzugefügt: %s"
|
1812 |
|
1813 |
+
#: app/features/ix.php:3888
|
1814 |
#, fuzzy
|
1815 |
#| msgid "Please insert your facebook page's link."
|
1816 |
msgid "Please insert your Facebook page's link."
|
1817 |
msgstr "Bitte Ihren Facebook Seitenlink eingeben."
|
1818 |
|
1819 |
+
#: app/features/ix.php:3897
|
1820 |
#, fuzzy
|
1821 |
#| msgid ""
|
1822 |
#| "We couldn't recognize your Facebook page. Please check it and provide us "
|
1828 |
"Wir konnten Ihre Facebookseite nicht erkennen. Bitte checken Sie das und "
|
1829 |
"stellen Sie uns einen gültigen Facebookseitenlink zur Verfügung."
|
1830 |
|
1831 |
+
#: app/features/ix.php:3929
|
1832 |
msgid "Please insert your facebook page's link."
|
1833 |
msgstr "Bitte Ihren Facebook Seitenlink eingeben."
|
1834 |
|
1835 |
+
#: app/features/ix.php:3934
|
1836 |
msgid ""
|
1837 |
"We couldn't recognize your Facebook page. Please check it and provide us a "
|
1838 |
"valid facebook page link."
|
2015 |
|
2016 |
#: app/features/ix/export_g_calendar.php:93 app/features/mec/booking.php:678
|
2017 |
#: app/features/mec/modules.php:398 app/features/mec/notifications.php:909
|
2018 |
+
#: app/features/mec/settings.php:1085 app/features/mec/single.php:297
|
2019 |
msgid "Checking ..."
|
2020 |
msgstr "Überprüfung"
|
2021 |
|
2472 |
|
2473 |
#: app/features/labels.php:117 app/features/labels.php:142
|
2474 |
#: app/skins/agenda/render.php:41 app/skins/available_spot/tpl.php:44
|
2475 |
+
#: app/skins/carousel/render.php:34 app/skins/countdown/tpl.php:33
|
2476 |
+
#: app/skins/cover/tpl.php:34 app/skins/daily_view/render.php:25
|
2477 |
#: app/skins/grid/render.php:54 app/skins/list/render.php:39
|
2478 |
+
#: app/skins/masonry/render.php:30 app/skins/monthly_view/calendar.php:86
|
2479 |
+
#: app/skins/monthly_view/calendar_clean.php:85
|
2480 |
+
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:44
|
2481 |
+
#: app/skins/tile/render.php:38 app/skins/timeline/render.php:45
|
2482 |
+
#: app/skins/timetable/render.php:41 app/skins/timetable/render.php:108
|
2483 |
+
#: app/skins/weekly_view/render.php:33 app/skins/yearly_view/render.php:49
|
2484 |
msgid "Featured"
|
2485 |
msgstr "Vorgeschlagen"
|
2486 |
|
2487 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2488 |
+
#: app/libraries/main.php:5657 app/skins/agenda/render.php:42
|
2489 |
+
#: app/skins/available_spot/tpl.php:45 app/skins/carousel/render.php:35
|
2490 |
+
#: app/skins/countdown/tpl.php:37 app/skins/cover/tpl.php:35
|
2491 |
+
#: app/skins/daily_view/render.php:26 app/skins/grid/render.php:55
|
2492 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:31
|
2493 |
+
#: app/skins/monthly_view/calendar.php:87
|
2494 |
+
#: app/skins/monthly_view/calendar_clean.php:86
|
2495 |
+
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:45
|
2496 |
+
#: app/skins/tile/render.php:39 app/skins/timeline/render.php:46
|
2497 |
+
#: app/skins/timetable/render.php:42 app/skins/timetable/render.php:109
|
2498 |
+
#: app/skins/weekly_view/render.php:34 app/skins/yearly_view/render.php:50
|
2499 |
msgid "Canceled"
|
2500 |
msgstr "Abgesagt"
|
2501 |
|
2519 |
msgid "Event %s"
|
2520 |
msgstr "Event %s"
|
2521 |
|
2522 |
+
#: app/features/locations.php:59 app/features/mec.php:414
|
2523 |
#: app/features/mec/dashboard.php:275 app/features/mec/meta_boxes/filter.php:96
|
2524 |
+
#: app/libraries/main.php:5410
|
2525 |
msgid "Locations"
|
2526 |
msgstr "Orte"
|
2527 |
|
2645 |
msgid "Don't show map in single event page"
|
2646 |
msgstr "Karte in Einzelansicht nicht anzeigen"
|
2647 |
|
2648 |
+
#: app/features/locations.php:359 app/libraries/main.php:5444
|
2649 |
msgid "Other Locations"
|
2650 |
msgstr "Andere Orte"
|
2651 |
|
2663 |
msgid "<strong>"
|
2664 |
msgstr ""
|
2665 |
|
2666 |
+
#: app/features/mec.php:180
|
2667 |
msgid ""
|
2668 |
"Activation failed. Please check your purchase code or license type."
|
2669 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
2670 |
msgstr ""
|
2671 |
|
2672 |
+
#: app/features/mec.php:180 app/features/mec/support-page.php:136
|
2673 |
msgid "Troubleshooting"
|
2674 |
msgstr "Problembehebung"
|
2675 |
|
2676 |
+
#: app/features/mec.php:259
|
2677 |
#, fuzzy
|
2678 |
#| msgid "Select All"
|
2679 |
msgid "Select Date"
|
2680 |
msgstr "Alles Auswählen"
|
2681 |
|
2682 |
+
#: app/features/mec.php:262 app/libraries/notifications.php:961
|
2683 |
#, php-format
|
2684 |
msgid "%s to %s"
|
2685 |
msgstr "%s zu %s"
|
2686 |
|
2687 |
+
#: app/features/mec.php:288
|
2688 |
msgid ""
|
2689 |
"Your options is not in JSON format. Please insert correct options in this "
|
2690 |
"field and try again."
|
2691 |
msgstr ""
|
2692 |
|
2693 |
+
#: app/features/mec.php:295
|
2694 |
msgid "Your options field can not be empty!"
|
2695 |
msgstr "Ihr Optionen Feld darf nicht leer sein!"
|
2696 |
|
2697 |
+
#: app/features/mec.php:301
|
2698 |
msgid "Your options imported successfuly."
|
2699 |
msgstr "Ihre Einstellungen wurden erfolgreich importiert."
|
2700 |
|
2701 |
+
#: app/features/mec.php:394
|
2702 |
msgid "MEC - Support"
|
2703 |
msgstr "MEC - Support"
|
2704 |
|
2705 |
+
#: app/features/mec.php:394 app/features/mec/support-page.php:9
|
2706 |
#: app/features/mec/support.php:80 app/features/mec/support.php:93
|
2707 |
msgid "Support"
|
2708 |
msgstr "Support"
|
2709 |
|
2710 |
+
#: app/features/mec.php:415 app/features/mec/dashboard.php:282
|
2711 |
#: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
|
2712 |
+
#: app/libraries/main.php:5412
|
2713 |
msgid "Organizers"
|
2714 |
msgstr "Veranstalter"
|
2715 |
|
2716 |
+
#: app/features/mec.php:423 app/features/mec.php:447
|
2717 |
#: app/features/mec/dashboard.php:268
|
2718 |
msgid "Shortcodes"
|
2719 |
msgstr "Shortcodes"
|
2720 |
|
2721 |
+
#: app/features/mec.php:424
|
2722 |
msgid "MEC - Settings"
|
2723 |
msgstr "MEC - Einstellungen"
|
2724 |
|
2725 |
+
#: app/features/mec.php:425
|
2726 |
msgid "MEC - Addons"
|
2727 |
msgstr "MEC - Erweiterungen"
|
2728 |
|
2729 |
+
#: app/features/mec.php:425 app/features/mec/addons.php:22
|
2730 |
msgid "Addons"
|
2731 |
msgstr "Erweiterungen"
|
2732 |
|
2733 |
+
#: app/features/mec.php:428
|
2734 |
#, fuzzy
|
2735 |
#| msgid "Support"
|
2736 |
msgid "MEC - Report"
|
2737 |
msgstr "Support"
|
2738 |
|
2739 |
+
#: app/features/mec.php:428
|
2740 |
#, fuzzy
|
2741 |
#| msgid "Export"
|
2742 |
msgid "Report"
|
2743 |
msgstr "Export"
|
2744 |
|
2745 |
+
#: app/features/mec.php:430
|
2746 |
#, fuzzy
|
2747 |
#| msgid "Support"
|
2748 |
msgid "MEC - Go Pro"
|
2749 |
msgstr "Support"
|
2750 |
|
2751 |
+
#: app/features/mec.php:430 app/features/mec/go-pro.php:9
|
2752 |
#: app/libraries/factory.php:1045
|
2753 |
msgid "Go Pro"
|
2754 |
msgstr ""
|
2755 |
|
2756 |
+
#: app/features/mec.php:449
|
2757 |
msgid "Add Shortcode"
|
2758 |
msgstr "Shortcode hinzufügen"
|
2759 |
|
2760 |
+
#: app/features/mec.php:450
|
2761 |
msgid "Add New Shortcode"
|
2762 |
msgstr "Neuen Shortcode hinzufügen"
|
2763 |
|
2764 |
+
#: app/features/mec.php:451
|
2765 |
msgid "No shortcodes found!"
|
2766 |
msgstr "Keine Shortcodes gefunden!"
|
2767 |
|
2768 |
+
#: app/features/mec.php:452
|
2769 |
msgid "All Shortcodes"
|
2770 |
msgstr "Alle Shortcodes"
|
2771 |
|
2772 |
+
#: app/features/mec.php:453
|
2773 |
msgid "Edit shortcodes"
|
2774 |
msgstr "Shortcode ändern"
|
2775 |
|
2776 |
+
#: app/features/mec.php:454
|
2777 |
msgid "No shortcodes found in Trash!"
|
2778 |
msgstr "Keine Shortcodes im Papierkorb gefunden!"
|
2779 |
|
2780 |
+
#: app/features/mec.php:507
|
2781 |
msgid "Display Options"
|
2782 |
msgstr "Darstellungsoptionen"
|
2783 |
|
2784 |
+
#: app/features/mec.php:508
|
2785 |
msgid "Filter Options"
|
2786 |
msgstr "Filteroptionen"
|
2787 |
|
2788 |
+
#: app/features/mec.php:510
|
2789 |
msgid "Search Form"
|
2790 |
msgstr "Suche Formular"
|
2791 |
|
2792 |
+
#: app/features/mec.php:908
|
2793 |
msgid "Display content's images as Popup"
|
2794 |
msgstr ""
|
2795 |
|
2796 |
+
#: app/features/mec.php:922 app/features/popup/shortcode.php:300
|
2797 |
msgid "Single Event Display Method"
|
2798 |
msgstr "Single Event Anzeigemethode"
|
2799 |
|
2800 |
+
#: app/features/mec.php:927 app/features/popup/shortcode.php:304
|
2801 |
msgid "Separate Window"
|
2802 |
msgstr "Separates Fenster"
|
2803 |
|
2804 |
+
#: app/features/mec.php:928 app/features/popup/shortcode.php:308
|
2805 |
#, fuzzy
|
2806 |
#| msgid "Modal 1"
|
2807 |
msgid "Modal Popup"
|
2844 |
#: app/features/mec/notifications.php:828
|
2845 |
#: app/features/mec/notifications.php:926
|
2846 |
#: app/features/mec/notifications.php:940 app/features/mec/settings.php:33
|
2847 |
+
#: app/features/mec/settings.php:1034 app/features/mec/settings.php:1044
|
2848 |
+
#: app/features/mec/settings.php:1102 app/features/mec/settings.php:1116
|
2849 |
#: app/features/mec/single.php:17 app/features/mec/single.php:262
|
2850 |
#: app/features/mec/single.php:272 app/features/mec/single.php:314
|
2851 |
#: app/features/mec/single.php:328 app/features/mec/styles.php:11
|
3060 |
|
3061 |
#: app/features/mec/booking.php:673 app/features/mec/messages.php:78
|
3062 |
#: app/features/mec/modules.php:393 app/features/mec/notifications.php:904
|
3063 |
+
#: app/features/mec/settings.php:1080 app/features/mec/single.php:292
|
3064 |
#: app/features/mec/styles.php:60 app/features/mec/styling.php:311
|
3065 |
msgid "Saved"
|
3066 |
msgstr "Gesichert"
|
3067 |
|
3068 |
#: app/features/mec/booking.php:674 app/features/mec/messages.php:79
|
3069 |
#: app/features/mec/modules.php:394 app/features/mec/notifications.php:905
|
3070 |
+
#: app/features/mec/settings.php:1081 app/features/mec/single.php:293
|
3071 |
#: app/features/mec/styles.php:61 app/features/mec/styling.php:312
|
3072 |
msgid "Settings Saved!"
|
3073 |
msgstr "Einstellungen gespeichert!"
|
3075 |
#: app/features/mec/booking.php:676 app/features/mec/booking.php:698
|
3076 |
#: app/features/mec/modules.php:396 app/features/mec/modules.php:418
|
3077 |
#: app/features/mec/notifications.php:907
|
3078 |
+
#: app/features/mec/notifications.php:929 app/features/mec/settings.php:1083
|
3079 |
+
#: app/features/mec/settings.php:1105 app/features/mec/single.php:295
|
3080 |
+
#: app/features/mec/single.php:317 app/libraries/main.php:5656
|
3081 |
msgid "Verified"
|
3082 |
msgstr "Verifiziert"
|
3083 |
|
3084 |
#: app/features/mec/booking.php:700 app/features/mec/modules.php:420
|
3085 |
+
#: app/features/mec/notifications.php:931 app/features/mec/settings.php:1107
|
3086 |
#: app/features/mec/single.php:319
|
3087 |
msgid "Please Refresh Page"
|
3088 |
msgstr "Bitte Seiten Refresh vornehmen"
|
4294 |
#: app/features/mec/meta_boxes/search_form.php:606
|
4295 |
#: app/features/mec/meta_boxes/search_form.php:676
|
4296 |
#: app/features/mec/meta_boxes/search_form.php:782
|
4297 |
+
#: app/features/mec/settings.php:858 app/features/mec/single.php:245
|
4298 |
#: app/features/search.php:83 app/features/speakers.php:61
|
4299 |
+
#: app/features/speakers.php:269 app/libraries/main.php:5415
|
4300 |
#: app/libraries/skins.php:955
|
4301 |
msgid "Speaker"
|
4302 |
msgstr "Sprecher"
|
4312 |
#: app/features/mec/meta_boxes/search_form.php:613
|
4313 |
#: app/features/mec/meta_boxes/search_form.php:683
|
4314 |
#: app/features/mec/meta_boxes/search_form.php:789
|
4315 |
+
#: app/features/mec/settings.php:865 app/features/mec/single.php:254
|
4316 |
#: app/features/search.php:88 app/libraries/skins.php:981
|
4317 |
msgid "Tag"
|
4318 |
msgstr "Schlagwort"
|
4429 |
msgid "Google Map Options"
|
4430 |
msgstr "Google Maps Einstellungen"
|
4431 |
|
4432 |
+
#: app/features/mec/modules.php:86 app/features/mec/settings.php:901
|
4433 |
+
#: app/features/mec/settings.php:914
|
4434 |
msgid "Required!"
|
4435 |
msgstr "Erforderlich (Pflichtfeld)"
|
4436 |
|
4535 |
msgid "Show weather module on event page"
|
4536 |
msgstr "Wettermodul auf der Eventseite anzeigen"
|
4537 |
|
4538 |
+
#: app/features/mec/modules.php:239 app/features/mec/settings.php:895
|
4539 |
+
#: app/features/mec/settings.php:900 app/features/mec/settings.php:948
|
4540 |
+
#: app/features/mec/settings.php:972 app/features/mec/settings.php:996
|
4541 |
msgid "API Key"
|
4542 |
msgstr "API Schlüssel"
|
4543 |
|
5027 |
"benachrichtigen."
|
5028 |
|
5029 |
#: app/features/mec/notifications.php:387
|
5030 |
+
#: app/features/mec/notifications.php:655
|
5031 |
msgid "Send the email to admin"
|
5032 |
msgstr "Sendet die E-Mail zum Admin"
|
5033 |
|
5055 |
"Informieren, dass eine neue Buchung eingegangen ist."
|
5056 |
|
5057 |
#: app/features/mec/notifications.php:530 app/libraries/main.php:581
|
5058 |
+
#: app/libraries/notifications.php:622
|
5059 |
msgid "Booking Reminder"
|
5060 |
msgstr "Buchungs Erinnerung"
|
5061 |
|
5120 |
msgstr "Status der Veranstaltung"
|
5121 |
|
5122 |
#: app/features/mec/notifications.php:720
|
5123 |
+
#: app/features/mec/notifications.php:803 app/features/mec/settings.php:773
|
5124 |
+
#: app/features/mec/settings.php:777
|
5125 |
msgid "Event Note"
|
5126 |
msgstr "Veranstaltungsnotiz"
|
5127 |
|
5307 |
msgstr ""
|
5308 |
|
5309 |
#: app/features/mec/settings.php:154 app/features/mec/settings.php:164
|
5310 |
+
#: app/libraries/main.php:5419
|
5311 |
msgid "Weekdays"
|
5312 |
msgstr "Wochentage"
|
5313 |
|
5693 |
msgid "Fees / Taxes Options"
|
5694 |
msgstr "Gebühren/Steuer Optionen"
|
5695 |
|
5696 |
+
#: app/features/mec/settings.php:778
|
5697 |
#, php-format
|
5698 |
msgid ""
|
5699 |
"Users can put a note for editors while they're submitting the event. Also "
|
5705 |
"Eventbenachrichtigung setzen, um die Notizen der Benutzer in der E-Mail zu "
|
5706 |
"erhalten."
|
5707 |
|
5708 |
+
#: app/features/mec/settings.php:785 app/features/mec/settings.php:793
|
5709 |
msgid "Visibility of Note"
|
5710 |
msgstr "Sichtbarkeit der Anmerkungen zum Event "
|
5711 |
|
5712 |
+
#: app/features/mec/settings.php:788
|
5713 |
msgid "Always"
|
5714 |
msgstr "Immer"
|
5715 |
|
5716 |
+
#: app/features/mec/settings.php:789
|
5717 |
msgid "While event is not published"
|
5718 |
msgstr "Das Ereignis wird nicht veröffentlicht"
|
5719 |
|
5720 |
+
#: app/features/mec/settings.php:794
|
5721 |
msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
|
5722 |
msgstr ""
|
5723 |
"Die Ereignisnotiz wird im Frontend-Einreichungsformular angezeigt und das "
|
5724 |
"Ereignis im Backend bearbeitet."
|
5725 |
|
5726 |
+
#: app/features/mec/settings.php:805 app/libraries/main.php:537
|
5727 |
msgid "User Profile"
|
5728 |
msgstr "Benutzer Profil"
|
5729 |
|
5730 |
+
#: app/features/mec/settings.php:807
|
5731 |
#, php-format
|
5732 |
msgid ""
|
5733 |
"Put %s shortcode into your desired page. Then users are able to see history "
|
5734 |
"of their bookings."
|
5735 |
msgstr ""
|
5736 |
|
5737 |
+
#: app/features/mec/settings.php:812 app/libraries/main.php:538
|
5738 |
msgid "Search Bar"
|
5739 |
msgstr "Suche"
|
5740 |
|
5741 |
+
#: app/features/mec/settings.php:814
|
5742 |
#, php-format
|
5743 |
msgid ""
|
5744 |
"Put %s shortcode into your desired page. Then users are able to search events"
|
5745 |
msgstr ""
|
5746 |
|
5747 |
+
#: app/features/mec/settings.php:818
|
5748 |
msgid "Ajax Live mode"
|
5749 |
msgstr ""
|
5750 |
|
5751 |
+
#: app/features/mec/settings.php:822
|
5752 |
msgid "Ajax mode"
|
5753 |
msgstr ""
|
5754 |
|
5755 |
+
#: app/features/mec/settings.php:823
|
5756 |
msgid ""
|
5757 |
"if you enable this option, search button disappeared and to use this "
|
5758 |
"feature, text input field must be enabled."
|
5759 |
msgstr ""
|
5760 |
|
5761 |
+
#: app/features/mec/settings.php:831
|
5762 |
#, fuzzy
|
5763 |
#| msgid "Modern Style"
|
5764 |
msgid "Modern Type"
|
5765 |
msgstr "Moderner Stil"
|
5766 |
|
5767 |
+
#: app/features/mec/settings.php:835
|
5768 |
msgid "Search bar fields"
|
5769 |
msgstr "Such Felder"
|
5770 |
|
5771 |
+
#: app/features/mec/settings.php:877
|
5772 |
#, fuzzy
|
5773 |
#| msgid "Text Input"
|
5774 |
msgid "Text input"
|
5775 |
msgstr "Text eingeben"
|
5776 |
|
5777 |
+
#: app/features/mec/settings.php:890
|
5778 |
msgid "Enable Mailchimp Integration"
|
5779 |
msgstr "Mailchimp Integration deaktivieren"
|
5780 |
|
5781 |
+
#: app/features/mec/settings.php:908 app/features/mec/settings.php:913
|
5782 |
+
#: app/features/mec/settings.php:954 app/features/mec/settings.php:1002
|
5783 |
msgid "List ID"
|
5784 |
msgstr "List ID"
|
5785 |
|
5786 |
+
#: app/features/mec/settings.php:921 app/features/mec/settings.php:929
|
5787 |
msgid "Subscription Status"
|
5788 |
msgstr "Buchungsstatus"
|
5789 |
|
5790 |
+
#: app/features/mec/settings.php:924
|
5791 |
msgid "Subscribe automatically"
|
5792 |
msgstr "automatisch Anmelden/Abonnieren"
|
5793 |
|
5794 |
+
#: app/features/mec/settings.php:925
|
5795 |
msgid "Subscribe by verification"
|
5796 |
msgstr ""
|
5797 |
"Anmelden/Abonnieren durch Bestätigung\n"
|
5798 |
" "
|
5799 |
|
5800 |
+
#: app/features/mec/settings.php:930
|
5801 |
msgid ""
|
5802 |
"If you choose \"Subscribe by verification\" then an email will send to user "
|
5803 |
"by mailchimp for subscription verification."
|
5805 |
"Wenn Sie \"Anmelden durch Verifizierung\" wählen, wird eine E-Mail an den "
|
5806 |
"Benutzer per Mailchimp zur Bestätigung gesendet."
|
5807 |
|
5808 |
+
#: app/features/mec/settings.php:939 app/libraries/main.php:540
|
5809 |
#, fuzzy
|
5810 |
#| msgid "Mailchimp Integration"
|
5811 |
msgid "Campaign Monitor Integration"
|
5812 |
msgstr "Mailchimp Integration"
|
5813 |
|
5814 |
+
#: app/features/mec/settings.php:943
|
5815 |
#, fuzzy
|
5816 |
#| msgid "Enable Mailchimp Integration"
|
5817 |
msgid "Enable Campaign Monitor Integration"
|
5818 |
msgstr "Mailchimp Integration deaktivieren"
|
5819 |
|
5820 |
+
#: app/features/mec/settings.php:963 app/libraries/main.php:541
|
5821 |
#, fuzzy
|
5822 |
#| msgid "Mailchimp Integration"
|
5823 |
msgid "MailerLite Integration"
|
5824 |
msgstr "Mailchimp Integration"
|
5825 |
|
5826 |
+
#: app/features/mec/settings.php:967
|
5827 |
#, fuzzy
|
5828 |
#| msgid "Enable Mailchimp Integration"
|
5829 |
msgid "Enable MailerLite Integration"
|
5830 |
msgstr "Mailchimp Integration deaktivieren"
|
5831 |
|
5832 |
+
#: app/features/mec/settings.php:978
|
5833 |
msgid "Group ID"
|
5834 |
msgstr "Gruppen ID "
|
5835 |
|
5836 |
+
#: app/features/mec/settings.php:987 app/libraries/main.php:542
|
5837 |
#, fuzzy
|
5838 |
#| msgid "BuddyPress Integration"
|
5839 |
msgid "Constant Contact Integration"
|
5840 |
msgstr "Buddy Press Integration"
|
5841 |
|
5842 |
+
#: app/features/mec/settings.php:991
|
5843 |
#, fuzzy
|
5844 |
#| msgid "Enable Mailchimp Integration"
|
5845 |
msgid "Enable constantcontact Integration"
|
5846 |
msgstr "Mailchimp Integration deaktivieren"
|
5847 |
|
5848 |
+
#: app/features/mec/settings.php:1013
|
5849 |
#, fuzzy
|
5850 |
#| msgid "Filter Options"
|
5851 |
msgid "Upload Field Options"
|
5852 |
msgstr "Filteroptionen"
|
5853 |
|
5854 |
+
#: app/features/mec/settings.php:1015
|
5855 |
msgid "Mime types"
|
5856 |
msgstr ""
|
5857 |
|
5858 |
+
#: app/features/mec/settings.php:1019
|
5859 |
msgid "Split mime types with \",\"."
|
5860 |
msgstr ""
|
5861 |
|
5862 |
+
#: app/features/mec/settings.php:1019
|
5863 |
msgid "Default: jpeg,jpg,png,pdf"
|
5864 |
msgstr ""
|
5865 |
|
5866 |
+
#: app/features/mec/settings.php:1022
|
5867 |
#, fuzzy
|
5868 |
#| msgid "Amount (Per Ticket)"
|
5869 |
msgid "Maximum file size"
|
5870 |
msgstr "Betrag (pro Ticket)"
|
5871 |
|
5872 |
+
#: app/features/mec/settings.php:1026
|
5873 |
msgid "The unit is Megabyte \"MB\""
|
5874 |
msgstr ""
|
5875 |
|
6769 |
msgid "eg. https://webnus.net"
|
6770 |
msgstr "http://webnus.net"
|
6771 |
|
6772 |
+
#: app/features/organizers.php:312 app/libraries/main.php:5443
|
6773 |
#: app/skins/single.php:873
|
6774 |
msgid "Other Organizers"
|
6775 |
msgstr "Andere Veranstalter"
|
6847 |
msgstr ""
|
6848 |
|
6849 |
#: app/features/popup/event.php:392 app/features/popup/shortcode.php:373
|
6850 |
+
#: app/modules/booking/steps/form.php:179
|
6851 |
+
#: app/modules/booking/steps/tickets.php:77 app/skins/countdown/tpl.php:107
|
6852 |
+
#: app/skins/countdown/tpl.php:152 app/skins/countdown/tpl.php:198
|
6853 |
msgid "Next"
|
6854 |
msgstr "Weiter"
|
6855 |
|
6907 |
msgid "Please %s/%s in order to see your bookings / profile."
|
6908 |
msgstr "Um neue Veranstaltungen einzugeben, bitte %s/%s"
|
6909 |
|
6910 |
+
#: app/features/profile/profile.php:18 app/libraries/main.php:2199
|
6911 |
msgid "Your booking already canceled!"
|
6912 |
msgstr "Ihre Buchung wurde bereits storniert."
|
6913 |
|
6915 |
msgid "#"
|
6916 |
msgstr ""
|
6917 |
|
6918 |
+
#: app/features/profile/profile.php:56 app/libraries/main.php:3218
|
6919 |
msgid "Status"
|
6920 |
msgstr ""
|
6921 |
|
6922 |
+
#: app/features/profile/profile.php:59 app/libraries/main.php:2317
|
6923 |
msgid "Attendees"
|
6924 |
msgstr "Teilnehmer"
|
6925 |
|
6950 |
msgid "No bookings found!"
|
6951 |
msgstr "Keine Buchungen gefunden"
|
6952 |
|
6953 |
+
#: app/features/schema.php:63
|
6954 |
+
msgid ""
|
6955 |
+
"Following statuses are for informing search engines (Google, bing, etc) "
|
6956 |
+
"about your events so they can manage your events better so you can use these "
|
6957 |
+
"statuses to be more Search Engine Friendly."
|
6958 |
+
msgstr ""
|
6959 |
+
|
6960 |
+
#: app/features/schema.php:68
|
6961 |
+
#, fuzzy
|
6962 |
+
#| msgid "Hourly Schedule"
|
6963 |
+
msgid "Scheduled"
|
6964 |
+
msgstr "Stundenplan"
|
6965 |
+
|
6966 |
+
#: app/features/schema.php:70
|
6967 |
+
#, fuzzy
|
6968 |
+
#| msgid "Export certain events"
|
6969 |
+
msgid "For active events!"
|
6970 |
+
msgstr "Bestimme Events exportieren"
|
6971 |
+
|
6972 |
+
#: app/features/schema.php:75
|
6973 |
+
msgid "Postponed"
|
6974 |
+
msgstr ""
|
6975 |
+
|
6976 |
+
#: app/features/schema.php:77
|
6977 |
+
msgid "If you postponed an event then you can use this status!"
|
6978 |
+
msgstr ""
|
6979 |
+
|
6980 |
+
#: app/features/schema.php:82
|
6981 |
+
#, fuzzy
|
6982 |
+
#| msgid "Canceled"
|
6983 |
+
msgid "Cancelled"
|
6984 |
+
msgstr "Abgesagt"
|
6985 |
+
|
6986 |
+
#: app/features/schema.php:84
|
6987 |
+
msgid "If you cancelled an event then you should select this status!"
|
6988 |
+
msgstr ""
|
6989 |
+
|
6990 |
+
#: app/features/schema.php:89
|
6991 |
+
msgid "Moved Online"
|
6992 |
+
msgstr ""
|
6993 |
+
|
6994 |
+
#: app/features/schema.php:91
|
6995 |
+
msgid "For the events that moved online!"
|
6996 |
+
msgstr ""
|
6997 |
+
|
6998 |
+
#: app/features/schema.php:95
|
6999 |
+
#, fuzzy
|
7000 |
+
#| msgid "Invoice Link"
|
7001 |
+
msgid "Online Link"
|
7002 |
+
msgstr "Rechnungslink"
|
7003 |
+
|
7004 |
+
#: app/features/schema.php:99
|
7005 |
+
msgid ""
|
7006 |
+
"Link to join online event. If you leave it empty event link will be used."
|
7007 |
+
msgstr ""
|
7008 |
+
|
7009 |
+
#: app/features/search.php:93 app/libraries/main.php:5409
|
7010 |
msgid "label"
|
7011 |
msgstr "label"
|
7012 |
|
7033 |
msgstr "Kein Suchergebnis"
|
7034 |
|
7035 |
#: app/features/search_bar/search_result.php:12
|
7036 |
+
#: app/libraries/notifications.php:975 app/libraries/render.php:488
|
7037 |
#: app/modules/local-time/details.php:48 app/modules/local-time/type1.php:44
|
7038 |
#: app/modules/local-time/type2.php:46 app/modules/local-time/type3.php:44
|
7039 |
#: app/modules/next-event/details.php:104 app/skins/single.php:166
|
7040 |
#: app/skins/single.php:764 app/skins/single/default.php:108
|
7041 |
#: app/skins/single/default.php:331 app/skins/single/m1.php:43
|
7042 |
+
#: app/skins/single/modern.php:199
|
7043 |
#, fuzzy
|
7044 |
#| msgid "Add Day"
|
7045 |
msgid "All Day"
|
7164 |
msgstr "Tag"
|
7165 |
|
7166 |
#: app/libraries/factory.php:373 app/modules/countdown/details.php:138
|
7167 |
+
#: app/skins/available_spot/tpl.php:127 app/skins/countdown/tpl.php:120
|
7168 |
+
#: app/skins/countdown/tpl.php:165 app/skins/countdown/tpl.php:216
|
7169 |
msgid "days"
|
7170 |
msgstr "Tage"
|
7171 |
|
7174 |
msgstr "Stunde"
|
7175 |
|
7176 |
#: app/libraries/factory.php:375 app/modules/countdown/details.php:145
|
7177 |
+
#: app/skins/available_spot/tpl.php:131 app/skins/countdown/tpl.php:126
|
7178 |
+
#: app/skins/countdown/tpl.php:171 app/skins/countdown/tpl.php:222
|
7179 |
msgid "hours"
|
7180 |
msgstr "Stunden"
|
7181 |
|
7184 |
msgstr "Minute"
|
7185 |
|
7186 |
#: app/libraries/factory.php:377 app/modules/countdown/details.php:152
|
7187 |
+
#: app/skins/available_spot/tpl.php:135 app/skins/countdown/tpl.php:132
|
7188 |
+
#: app/skins/countdown/tpl.php:177 app/skins/countdown/tpl.php:228
|
7189 |
msgid "minutes"
|
7190 |
msgstr "Minuten"
|
7191 |
|
7194 |
msgstr "Sekunde"
|
7195 |
|
7196 |
#: app/libraries/factory.php:379 app/modules/countdown/details.php:159
|
7197 |
+
#: app/skins/available_spot/tpl.php:139 app/skins/countdown/tpl.php:138
|
7198 |
+
#: app/skins/countdown/tpl.php:183 app/skins/countdown/tpl.php:234
|
7199 |
msgid "seconds"
|
7200 |
msgstr "Sekunden"
|
7201 |
|
7294 |
msgid "Tile View"
|
7295 |
msgstr "Stundenplan"
|
7296 |
|
7297 |
+
#: app/libraries/main.php:385 app/libraries/main.php:5421
|
7298 |
msgid "SU"
|
7299 |
msgstr "SO"
|
7300 |
|
7301 |
+
#: app/libraries/main.php:386 app/libraries/main.php:5422
|
7302 |
msgid "MO"
|
7303 |
msgstr "MO"
|
7304 |
|
7305 |
+
#: app/libraries/main.php:387 app/libraries/main.php:5423
|
7306 |
msgid "TU"
|
7307 |
msgstr "DI"
|
7308 |
|
7309 |
+
#: app/libraries/main.php:388 app/libraries/main.php:5424
|
7310 |
msgid "WE"
|
7311 |
msgstr "MI"
|
7312 |
|
7313 |
+
#: app/libraries/main.php:389 app/libraries/main.php:5425
|
7314 |
msgid "TH"
|
7315 |
msgstr "DO"
|
7316 |
|
7317 |
+
#: app/libraries/main.php:390 app/libraries/main.php:5426
|
7318 |
msgid "FR"
|
7319 |
msgstr "FR"
|
7320 |
|
7321 |
+
#: app/libraries/main.php:391 app/libraries/main.php:5427
|
7322 |
msgid "SA"
|
7323 |
msgstr "SA"
|
7324 |
|
7481 |
msgid "Custom Shortcode"
|
7482 |
msgstr "Shortcode"
|
7483 |
|
7484 |
+
#: app/libraries/main.php:2179
|
7485 |
msgid "Your booking already verified!"
|
7486 |
msgstr "Ihre Buchung wurde bereits verifiziert."
|
7487 |
|
7488 |
+
#: app/libraries/main.php:2184
|
7489 |
msgid "Your booking successfully verified."
|
7490 |
msgstr "Ihre Buchung wurde erfolgreich verifiziert."
|
7491 |
|
7492 |
+
#: app/libraries/main.php:2185
|
7493 |
msgid "Your booking cannot verify!"
|
7494 |
msgstr "Ihre Buchung kann nicht verifiziert werden!"
|
7495 |
|
7496 |
+
#: app/libraries/main.php:2204
|
7497 |
msgid "Your booking successfully canceled."
|
7498 |
msgstr "Ihre Buchung wurde erfolgreich storniert."
|
7499 |
|
7500 |
+
#: app/libraries/main.php:2205
|
7501 |
msgid "Your booking cannot be canceled."
|
7502 |
msgstr "Ihre Buchung kann nicht storniert werden."
|
7503 |
|
7504 |
+
#: app/libraries/main.php:2209
|
7505 |
msgid "You canceled the payment successfully."
|
7506 |
msgstr "Sie haben die Zahlung erfolgreich storniert."
|
7507 |
|
7508 |
+
#: app/libraries/main.php:2213
|
7509 |
msgid "You returned from payment gateway successfully."
|
7510 |
msgstr "Sie sind vom Bezahlungs-Gateway erfolgreich zurückgekehrt."
|
7511 |
|
7512 |
+
#: app/libraries/main.php:2229
|
7513 |
msgid "Cannot find the invoice!"
|
7514 |
msgstr "Die Buchung kann nicht gefunden werden."
|
7515 |
|
7516 |
+
#: app/libraries/main.php:2229
|
7517 |
msgid "Invoice is invalid."
|
7518 |
msgstr "Die Buchung ist ungültig."
|
7519 |
|
7520 |
+
#: app/libraries/main.php:2249
|
7521 |
msgid ""
|
7522 |
"Your booking still is not confirmed. You able download it after confirmation!"
|
7523 |
msgstr ""
|
7524 |
|
7525 |
+
#: app/libraries/main.php:2249
|
7526 |
msgid "Booking Not Confirmed."
|
7527 |
msgstr "Die Buchung ist nicht Bestätigt."
|
7528 |
|
7529 |
+
#: app/libraries/main.php:2255
|
7530 |
msgid "Cannot find the booking!"
|
7531 |
msgstr "Die Buchung kann nicht gefunden werden!"
|
7532 |
|
7533 |
+
#: app/libraries/main.php:2255
|
7534 |
msgid "Booking is invalid."
|
7535 |
msgstr "Buchung ist ungültig."
|
7536 |
|
7537 |
+
#: app/libraries/main.php:2287
|
7538 |
#, php-format
|
7539 |
msgid "%s Invoice"
|
7540 |
msgstr "% s Rechnung"
|
7541 |
|
7542 |
+
#: app/libraries/main.php:2361
|
7543 |
msgid "Billing"
|
7544 |
msgstr "Abrechnung"
|
7545 |
|
7546 |
+
#: app/libraries/main.php:2373
|
7547 |
#, fuzzy
|
7548 |
#| msgid "Coupon"
|
7549 |
msgid "Coupon Code"
|
7550 |
msgstr "Gutschein"
|
7551 |
|
7552 |
+
#: app/libraries/main.php:2378
|
7553 |
msgid "Total"
|
7554 |
msgstr "Gesamt"
|
7555 |
|
7556 |
+
#: app/libraries/main.php:2385
|
7557 |
msgid "Payment"
|
7558 |
msgstr "Bezahlung"
|
7559 |
|
7560 |
+
#: app/libraries/main.php:2389
|
7561 |
msgid "Gateway"
|
7562 |
msgstr "Gateway"
|
7563 |
|
7564 |
+
#: app/libraries/main.php:2397
|
7565 |
msgid "Payment Time"
|
7566 |
msgstr "Bezahlung "
|
7567 |
|
7568 |
+
#: app/libraries/main.php:2458
|
7569 |
msgid "Request is not valid."
|
7570 |
msgstr "Die Anfrage ist ungültig!"
|
7571 |
|
7572 |
+
#: app/libraries/main.php:2458
|
7573 |
msgid "iCal export stopped!"
|
7574 |
msgstr "iCal Export wurde unterbrochen!"
|
7575 |
|
7576 |
+
#: app/libraries/main.php:2802 app/libraries/main.php:2832
|
7577 |
+
#: app/libraries/main.php:2861 app/libraries/main.php:2891
|
7578 |
+
#: app/libraries/main.php:2920 app/libraries/main.php:2949
|
7579 |
+
#: app/libraries/main.php:2978 app/libraries/main.php:3007
|
7580 |
+
#: app/libraries/main.php:3036 app/libraries/main.php:3060
|
7581 |
+
#: app/libraries/main.php:3104 app/libraries/main.php:3148
|
7582 |
+
#: app/libraries/main.php:3195 app/libraries/main.php:3242
|
7583 |
msgid "Sort"
|
7584 |
msgstr "Sortieren"
|
7585 |
|
7586 |
+
#: app/libraries/main.php:2808 app/libraries/main.php:2838
|
7587 |
+
#: app/libraries/main.php:2867 app/libraries/main.php:2897
|
7588 |
+
#: app/libraries/main.php:2926 app/libraries/main.php:2955
|
7589 |
+
#: app/libraries/main.php:2984 app/libraries/main.php:3013
|
7590 |
+
#: app/libraries/main.php:3066 app/libraries/main.php:3110
|
7591 |
+
#: app/libraries/main.php:3154 app/libraries/main.php:3201
|
7592 |
msgid "Required Field"
|
7593 |
msgstr "Pflichtfeld"
|
7594 |
|
7595 |
+
#: app/libraries/main.php:2814 app/libraries/main.php:2844
|
7596 |
+
#: app/libraries/main.php:2873 app/libraries/main.php:2903
|
7597 |
+
#: app/libraries/main.php:2932 app/libraries/main.php:2961
|
7598 |
+
#: app/libraries/main.php:2990 app/libraries/main.php:3019
|
7599 |
+
#: app/libraries/main.php:3072 app/libraries/main.php:3116
|
7600 |
+
#: app/libraries/main.php:3160 app/libraries/main.php:3207
|
7601 |
msgid "Insert a label for this field"
|
7602 |
msgstr "Geben Sie eine Bezeichnung (Label) für dieses Feld ein."
|
7603 |
|
7604 |
+
#: app/libraries/main.php:3042
|
7605 |
msgid "HTML and shortcode are allowed."
|
7606 |
msgstr "HTML und shortcodes sind erlaubt."
|
7607 |
|
7608 |
+
#: app/libraries/main.php:3085 app/libraries/main.php:3129
|
7609 |
+
#: app/libraries/main.php:3173
|
7610 |
msgid "Option"
|
7611 |
msgstr "Option"
|
7612 |
|
7613 |
+
#: app/libraries/main.php:3207
|
7614 |
#, php-format
|
7615 |
msgid "Instead of %s, the page title with a link will be show."
|
7616 |
msgstr "Anstelle von %s, wird der Seitentitel mit einem Link gezeigt"
|
7617 |
|
7618 |
+
#: app/libraries/main.php:3209
|
7619 |
msgid "Agreement Page"
|
7620 |
msgstr "Zustimmungsseite"
|
7621 |
|
7622 |
+
#: app/libraries/main.php:3220
|
7623 |
msgid "Checked by default"
|
7624 |
msgstr ""
|
7625 |
|
7626 |
+
#: app/libraries/main.php:3221
|
7627 |
msgid "Unchecked by default"
|
7628 |
msgstr ""
|
7629 |
|
7630 |
+
#: app/libraries/main.php:3244
|
7631 |
msgid "Insert a label for this option"
|
7632 |
msgstr "Ein neues Label für diese Option einfügen"
|
7633 |
|
7634 |
+
#: app/libraries/main.php:3259
|
7635 |
msgid "Free"
|
7636 |
msgstr "kostenfrei"
|
7637 |
|
7638 |
+
#: app/libraries/main.php:3865 app/libraries/main.php:5671
|
7639 |
msgid "M.E. Calender"
|
7640 |
msgstr "M.E. Calender"
|
7641 |
|
7642 |
+
#: app/libraries/main.php:4020
|
7643 |
#, php-format
|
7644 |
msgid "Copy of %s"
|
7645 |
msgstr "Kopie von %s"
|
7646 |
|
7647 |
+
#: app/libraries/main.php:4784
|
7648 |
msgid "Booked an event."
|
7649 |
msgstr "Eine Veranstaltung wurde gebucht."
|
7650 |
|
7651 |
+
#: app/libraries/main.php:4825
|
7652 |
#, php-format
|
7653 |
msgid "%s booked %s event."
|
7654 |
msgstr "%s gebuchtes %s Event"
|
7655 |
|
7656 |
+
#: app/libraries/main.php:5404
|
7657 |
msgid "Taxonomies"
|
7658 |
msgstr "Klassifizierung "
|
7659 |
|
7660 |
+
#: app/libraries/main.php:5406
|
7661 |
msgid "Category Plural Label"
|
7662 |
msgstr "Kategorien"
|
7663 |
|
7664 |
+
#: app/libraries/main.php:5407
|
7665 |
msgid "Category Singular Label"
|
7666 |
msgstr "Kategorie"
|
7667 |
|
7668 |
+
#: app/libraries/main.php:5408
|
7669 |
msgid "Label Plural Label"
|
7670 |
msgstr "Labels"
|
7671 |
|
7672 |
+
#: app/libraries/main.php:5409
|
7673 |
msgid "Label Singular Label"
|
7674 |
msgstr "Label"
|
7675 |
|
7676 |
+
#: app/libraries/main.php:5410
|
7677 |
msgid "Location Plural Label"
|
7678 |
msgstr "Veranstaltungsorte"
|
7679 |
|
7680 |
+
#: app/libraries/main.php:5411
|
7681 |
msgid "Location Singular Label"
|
7682 |
msgstr "Veranstaltungsort"
|
7683 |
|
7684 |
+
#: app/libraries/main.php:5412
|
7685 |
msgid "Organizer Plural Label"
|
7686 |
msgstr "Veranstalter"
|
7687 |
|
7688 |
+
#: app/libraries/main.php:5413
|
7689 |
msgid "Organizer Singular Label"
|
7690 |
msgstr "Veranstalter"
|
7691 |
|
7692 |
+
#: app/libraries/main.php:5414
|
7693 |
#, fuzzy
|
7694 |
#| msgid "Label Plural Label"
|
7695 |
msgid "Speaker Plural Label"
|
7696 |
msgstr "Labels"
|
7697 |
|
7698 |
+
#: app/libraries/main.php:5415
|
7699 |
#, fuzzy
|
7700 |
#| msgid "Label Singular Label"
|
7701 |
msgid "Speaker Singular Label"
|
7702 |
msgstr "Label"
|
7703 |
|
7704 |
+
#: app/libraries/main.php:5421
|
7705 |
msgid "Sunday abbreviation"
|
7706 |
msgstr "Sonntag Abkürzung"
|
7707 |
|
7708 |
+
#: app/libraries/main.php:5422
|
7709 |
msgid "Monday abbreviation"
|
7710 |
msgstr "Montag Abkürzung"
|
7711 |
|
7712 |
+
#: app/libraries/main.php:5423
|
7713 |
msgid "Tuesday abbreviation"
|
7714 |
msgstr "Dienstag Abkürzung"
|
7715 |
|
7716 |
+
#: app/libraries/main.php:5424
|
7717 |
msgid "Wednesday abbreviation"
|
7718 |
msgstr "Mittwoch Abkürzung"
|
7719 |
|
7720 |
+
#: app/libraries/main.php:5425
|
7721 |
msgid "Thursday abbreviation"
|
7722 |
msgstr "Donnerstag Abkürzung"
|
7723 |
|
7724 |
+
#: app/libraries/main.php:5426
|
7725 |
msgid "Friday abbreviation"
|
7726 |
msgstr "Freitag Abkürzung"
|
7727 |
|
7728 |
+
#: app/libraries/main.php:5427
|
7729 |
msgid "Saturday abbreviation"
|
7730 |
msgstr "Samstag Abkürzung "
|
7731 |
|
7732 |
+
#: app/libraries/main.php:5431
|
7733 |
msgid "Others"
|
7734 |
msgstr "Andere"
|
7735 |
|
7736 |
+
#: app/libraries/main.php:5433
|
7737 |
msgid "Booking Success Message"
|
7738 |
msgstr "Buchung erfolgreich Mitteilung"
|
7739 |
|
7740 |
+
#: app/libraries/main.php:5433
|
7741 |
msgid ""
|
7742 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
7743 |
"needed, please check your email."
|
7745 |
"Vielen Dank für Ihre Buchung. Für die gebuchten Tickets ist ggf. eine "
|
7746 |
"Bestätigung durch Sie erforderlich. Bitte überprüfen Sie Ihre Emails."
|
7747 |
|
7748 |
+
#: app/libraries/main.php:5434 app/widgets/single.php:131
|
7749 |
msgid "Register Button"
|
7750 |
msgstr "Register Button"
|
7751 |
|
7752 |
+
#: app/libraries/main.php:5434 app/skins/available_spot/tpl.php:186
|
7753 |
+
#: app/skins/carousel/render.php:106 app/skins/carousel/render.php:144
|
7754 |
+
#: app/skins/grid/render.php:82 app/skins/grid/render.php:135
|
7755 |
+
#: app/skins/grid/render.php:182 app/skins/grid/render.php:212
|
7756 |
+
#: app/skins/list/render.php:67 app/skins/list/render.php:155
|
7757 |
+
#: app/skins/masonry/render.php:146 app/skins/single.php:785
|
7758 |
#: app/skins/single.php:788 app/skins/single/default.php:260
|
7759 |
#: app/skins/single/default.php:262 app/skins/single/default.php:483
|
7760 |
#: app/skins/single/default.php:485 app/skins/single/m1.php:140
|
7761 |
#: app/skins/single/m1.php:142 app/skins/single/m2.php:66
|
7762 |
+
#: app/skins/single/m2.php:68 app/skins/single/modern.php:77
|
7763 |
+
#: app/skins/single/modern.php:79 app/skins/slider/render.php:71
|
7764 |
+
#: app/skins/slider/render.php:95 app/skins/slider/render.php:118
|
7765 |
+
#: app/skins/slider/render.php:142 app/skins/slider/render.php:177
|
7766 |
msgid "REGISTER"
|
7767 |
msgstr "ANMELDEN"
|
7768 |
|
7769 |
+
#: app/libraries/main.php:5435
|
7770 |
msgid "View Detail Button"
|
7771 |
msgstr "Ansicht Detail Button"
|
7772 |
|
7773 |
+
#: app/libraries/main.php:5435 app/skins/carousel/render.php:106
|
7774 |
+
#: app/skins/carousel/render.php:144 app/skins/grid/render.php:82
|
7775 |
+
#: app/skins/grid/render.php:135 app/skins/grid/render.php:182
|
7776 |
+
#: app/skins/grid/render.php:212 app/skins/list/render.php:67
|
7777 |
+
#: app/skins/list/render.php:155 app/skins/masonry/render.php:146
|
7778 |
+
#: app/skins/slider/render.php:71 app/skins/slider/render.php:95
|
7779 |
+
#: app/skins/slider/render.php:118 app/skins/slider/render.php:142
|
7780 |
+
#: app/skins/slider/render.php:177
|
7781 |
msgid "View Detail"
|
7782 |
msgstr "Details "
|
7783 |
|
7784 |
+
#: app/libraries/main.php:5436
|
7785 |
msgid "Event Detail Button"
|
7786 |
msgstr "Event Detail Button"
|
7787 |
|
7788 |
+
#: app/libraries/main.php:5436 app/skins/countdown/tpl.php:209
|
7789 |
msgid "Event Detail"
|
7790 |
msgstr "Veranstaltungsdetails"
|
7791 |
|
7792 |
+
#: app/libraries/main.php:5438
|
7793 |
msgid "More Info Link"
|
7794 |
msgstr "Link Mehr Informationen"
|
7795 |
|
7796 |
+
#: app/libraries/main.php:5441
|
7797 |
msgid "Ticket (Singular)"
|
7798 |
msgstr "Ticket"
|
7799 |
|
7800 |
+
#: app/libraries/main.php:5442
|
7801 |
msgid "Tickets (Plural)"
|
7802 |
msgstr "Tickets"
|
7803 |
|
7804 |
+
#: app/libraries/main.php:5528
|
7805 |
msgid "EventON"
|
7806 |
msgstr "EventON"
|
7807 |
|
7808 |
+
#: app/libraries/main.php:5529
|
7809 |
msgid "The Events Calendar"
|
7810 |
msgstr "The Events Calendar"
|
7811 |
|
7812 |
+
#: app/libraries/main.php:5530
|
7813 |
msgid "Events Schedule WP Plugin"
|
7814 |
msgstr "Event Zeitplan WP-Plugin"
|
7815 |
|
7816 |
+
#: app/libraries/main.php:5531
|
7817 |
msgid "Calendarize It"
|
7818 |
msgstr ""
|
7819 |
|
7820 |
+
#: app/libraries/main.php:5532
|
7821 |
#, fuzzy
|
7822 |
#| msgid "No Search Options"
|
7823 |
msgid "Event Espresso"
|
7824 |
msgstr "Keine Suchoptionen"
|
7825 |
|
7826 |
+
#: app/libraries/main.php:5533
|
7827 |
msgid "Events Manager (Recurring)"
|
7828 |
msgstr "Wiederholende Veranstaltung"
|
7829 |
|
7830 |
+
#: app/libraries/main.php:5534
|
7831 |
msgid "Events Manager (Single)"
|
7832 |
msgstr "Moderner Event Kalender"
|
7833 |
|
7834 |
+
#: app/libraries/main.php:5608 app/libraries/main.php:5628
|
7835 |
msgid "Confirmed"
|
7836 |
msgstr "Bestätigt"
|
7837 |
|
7838 |
+
#: app/libraries/main.php:5609 app/libraries/main.php:5636
|
7839 |
msgid "Rejected"
|
7840 |
msgstr "Abgelehnt"
|
7841 |
|
7842 |
+
#: app/libraries/main.php:5610 app/libraries/main.php:5632
|
7843 |
msgid "Pending"
|
7844 |
msgstr "Ausstehend"
|
7845 |
|
7846 |
+
#: app/libraries/main.php:5658
|
7847 |
msgid "Waiting"
|
7848 |
msgstr "in Bearbeitung"
|
7849 |
|
7850 |
+
#: app/libraries/main.php:5863 app/libraries/render.php:80
|
7851 |
#: app/libraries/render.php:418
|
7852 |
msgid "Skin controller does not exist."
|
7853 |
msgstr "Skin contoller existiert nicht."
|
7854 |
|
7855 |
+
#: app/libraries/main.php:5978
|
7856 |
msgid "Sold Out"
|
7857 |
msgstr "Ausgebucht"
|
7858 |
|
7859 |
+
#: app/libraries/main.php:5986
|
7860 |
msgid "Last Few Tickets"
|
7861 |
msgstr "Nur noch wenige Tickets verfügbar."
|
7862 |
|
7864 |
msgid "Please verify your email."
|
7865 |
msgstr "Bitte bestätigen Sie Ihre email."
|
7866 |
|
7867 |
+
#: app/libraries/notifications.php:156
|
7868 |
msgid "Your booking is received."
|
7869 |
msgstr "Ihre Buchung ist eingegangen"
|
7870 |
|
7871 |
+
#: app/libraries/notifications.php:278
|
7872 |
msgid "Your booking is confirmed."
|
7873 |
msgstr "Ihre Buchung wurde bestätigt."
|
7874 |
|
7875 |
+
#: app/libraries/notifications.php:448
|
7876 |
msgid "booking canceled."
|
7877 |
msgstr "Ihre Buchung wurde storniert"
|
7878 |
|
7879 |
+
#: app/libraries/notifications.php:526
|
7880 |
msgid "A new booking is received."
|
7881 |
msgstr "Eine neue Buchung ist eingegangen."
|
7882 |
|
7883 |
+
#: app/libraries/notifications.php:756
|
7884 |
msgid "A new event is added."
|
7885 |
msgstr "Eine neue Veranstaltung wurde hinzugefügt."
|
7886 |
|
7887 |
+
#: app/libraries/notifications.php:828
|
7888 |
msgid "Your event is published."
|
7889 |
msgstr "Die Veranstaltung wurde veröffentlicht."
|
7890 |
|
7891 |
+
#: app/libraries/notifications.php:1067 app/libraries/notifications.php:1078
|
7892 |
+
#: app/libraries/notifications.php:1080
|
7893 |
msgid "to"
|
7894 |
msgstr ""
|
7895 |
|
7896 |
+
#: app/libraries/notifications.php:1095 app/modules/export/details.php:46
|
7897 |
msgid "+ Add to Google Calendar"
|
7898 |
msgstr "+ zum Google Calendar hinzufügen"
|
7899 |
|
7900 |
+
#: app/libraries/notifications.php:1096 app/modules/export/details.php:47
|
7901 |
msgid "+ iCal export"
|
7902 |
msgstr "+ zu iCal exportieren"
|
7903 |
|
7904 |
+
#: app/libraries/notifications.php:1159
|
7905 |
msgid "Yes"
|
7906 |
msgstr "Ja"
|
7907 |
|
7908 |
+
#: app/libraries/notifications.php:1159
|
7909 |
msgid "No"
|
7910 |
msgstr "Nein"
|
7911 |
|
7937 |
msgid "Apply Coupon"
|
7938 |
msgstr "Gutschein verwenden"
|
7939 |
|
7940 |
+
#: app/modules/booking/steps/checkout.php:69
|
7941 |
+
#: app/modules/booking/steps/form.php:178
|
|
|
|
|
|
|
|
|
7942 |
msgid "Back"
|
7943 |
msgstr "Zurück"
|
7944 |
|
7945 |
+
#: app/modules/booking/steps/checkout.php:77
|
7946 |
+
msgid "Free Booking"
|
7947 |
+
msgstr "Kostenlose Buchung"
|
7948 |
+
|
7949 |
#: app/modules/booking/steps/form.php:52
|
7950 |
msgid "Attendee's Form"
|
7951 |
msgstr "Teilnahmeformular"
|
8054 |
|
8055 |
#: app/modules/next-event/details.php:98 app/skins/single.php:758
|
8056 |
#: app/skins/single/default.php:102 app/skins/single/default.php:325
|
8057 |
+
#: app/skins/single/m1.php:37 app/skins/single/modern.php:193
|
8058 |
msgid "Time"
|
8059 |
msgstr "Uhrzeit"
|
8060 |
|
8119 |
#: app/skins/agenda/tpl.php:81 app/skins/custom/tpl.php:76
|
8120 |
#: app/skins/grid/tpl.php:83 app/skins/list/tpl.php:88
|
8121 |
#: app/skins/masonry/tpl.php:77 app/skins/tile/tpl.php:133
|
8122 |
+
#: app/skins/timeline/tpl.php:71 app/skins/yearly_view/render.php:83
|
8123 |
msgid "Load More"
|
8124 |
msgstr "Weitere anzeigen"
|
8125 |
|
8126 |
+
#: app/skins/available_spot/tpl.php:120
|
8127 |
msgid "Available Spot(s):"
|
8128 |
msgstr "Verfügbare Spot (s):"
|
8129 |
|
8130 |
+
#: app/skins/carousel/render.php:166 app/skins/countdown/tpl.php:146
|
8131 |
+
#: app/skins/countdown/tpl.php:191 app/skins/cover/tpl.php:72
|
8132 |
+
#: app/skins/list/render.php:88
|
8133 |
msgid "EVENT DETAIL"
|
8134 |
msgstr "VERANSTALTUNGSDETAILS"
|
8135 |
|
8136 |
+
#: app/skins/carousel/render.php:178
|
8137 |
msgid "View All Events"
|
8138 |
msgstr "Zeige alle Veranstaltungen"
|
8139 |
|
8140 |
+
#: app/skins/countdown/tpl.php:107 app/skins/countdown/tpl.php:152
|
8141 |
+
#: app/skins/countdown/tpl.php:198
|
8142 |
#, php-format
|
8143 |
msgid "%s Upcoming Event"
|
8144 |
msgstr "%s Kommendes Event"
|
8145 |
|
8146 |
+
#: app/skins/cover/tpl.php:52
|
8147 |
msgid "featured event"
|
8148 |
msgstr "Ausgewählte Veranstaltung"
|
8149 |
|
8150 |
+
#: app/skins/daily_view/render.php:42
|
8151 |
msgid "No event"
|
8152 |
msgstr "Keine Veranstaltung"
|
8153 |
|
8154 |
+
#: app/skins/default_full_calendar/tpl.php:75
|
8155 |
+
#: app/skins/full_calendar/tpl.php:122
|
8156 |
msgid "List"
|
8157 |
msgstr "Liste / Listenansicht"
|
8158 |
|
8161 |
msgstr "Alle"
|
8162 |
|
8163 |
#: app/skins/monthly_view/calendar.php:69
|
8164 |
+
#: app/skins/monthly_view/calendar.php:110
|
8165 |
+
#: app/skins/monthly_view/calendar_clean.php:68
|
8166 |
+
#: app/skins/monthly_view/calendar_clean.php:119
|
8167 |
#, php-format
|
8168 |
msgid "Events for %s"
|
8169 |
msgstr "Veranstaltungen für %s"
|
8170 |
|
8171 |
+
#: app/skins/monthly_view/calendar.php:112
|
8172 |
+
#: app/skins/monthly_view/calendar_clean.php:121
|
8173 |
+
#: app/skins/timetable/render.php:81 app/skins/weekly_view/render.php:54
|
8174 |
msgid "No Events"
|
8175 |
msgstr "Keine Veranstaltungen"
|
8176 |
|
8180 |
|
8181 |
#: app/skins/single.php:554 app/skins/single/default.php:51
|
8182 |
#: app/skins/single/m1.php:261 app/skins/single/m2.php:182
|
8183 |
+
#: app/skins/single/modern.php:271
|
8184 |
msgid "Sold out!"
|
8185 |
msgstr "Ausverkauft!"
|
8186 |
|
8187 |
#: app/skins/single.php:833 app/skins/single.php:888
|
8188 |
#: app/skins/single/default.php:227 app/skins/single/default.php:450
|
8189 |
#: app/skins/single/m1.php:109 app/skins/single/m2.php:35
|
8190 |
+
#: app/skins/single/modern.php:45
|
8191 |
msgid "Phone"
|
8192 |
msgstr "Phone"
|
8193 |
|
8194 |
#: app/skins/single.php:847 app/skins/single.php:902
|
8195 |
#: app/skins/single/default.php:241 app/skins/single/default.php:464
|
8196 |
#: app/skins/single/m1.php:123 app/skins/single/m2.php:49
|
8197 |
+
#: app/skins/single/modern.php:59
|
8198 |
msgid "Website"
|
8199 |
msgstr "Website"
|
8200 |
|
8203 |
msgstr "Veranstalter"
|
8204 |
|
8205 |
#: app/skins/single/default.php:69 app/skins/single/m1.php:278
|
8206 |
+
#: app/skins/single/m2.php:199 app/skins/single/modern.php:289
|
8207 |
msgid "Tags: "
|
8208 |
msgstr "Tags:"
|
8209 |
|
8210 |
+
#: app/skins/timeline/render.php:90
|
8211 |
#, fuzzy
|
8212 |
#| msgid "Title of event"
|
8213 |
msgid "Register for event"
|
8214 |
msgstr "Titel der Veranstaltung"
|
8215 |
|
8216 |
+
#: app/skins/timeline/render.php:90
|
8217 |
#, fuzzy
|
8218 |
#| msgid "View Detail"
|
8219 |
msgid "View Details"
|
8337 |
#~ msgid "%s Facebook events imported/updated."
|
8338 |
#~ msgstr "%s facebook events importiert / aktualisiert."
|
8339 |
|
8340 |
+
#, fuzzy
|
8341 |
+
#~| msgid "Auto Google Calendar import is disabled!"
|
8342 |
+
#~ msgid "Auto Google Calendar export is disabled!"
|
8343 |
+
#~ msgstr "Auto Google Kalender-Import ist deaktiviert!"
|
8344 |
+
|
8345 |
#~ msgid "Auto Google Calendar import is disabled!"
|
8346 |
#~ msgstr "Auto Google Kalender-Import ist deaktiviert!"
|
8347 |
|
languages/modern-events-calendar-lite-en_US.mo
CHANGED
Binary file
|
languages/modern-events-calendar-lite-en_US.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: modern-events-calendar\n"
|
4 |
-
"POT-Creation-Date: 2020-03-
|
5 |
-
"PO-Revision-Date: 2020-03-
|
6 |
"Last-Translator: Howard <howard@realtyna.com>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: en_US\n"
|
@@ -26,8 +26,8 @@ msgstr ""
|
|
26 |
msgid "Content"
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:
|
30 |
-
#: app/features/mec.php:
|
31 |
msgid "Shortcode"
|
32 |
msgstr ""
|
33 |
|
@@ -65,14 +65,14 @@ msgstr ""
|
|
65 |
msgid "Recent Colors"
|
66 |
msgstr ""
|
67 |
|
68 |
-
#: app/features/contextual.php:55 app/features/mec.php:
|
69 |
#: app/features/mec/dashboard.php:143 app/features/mec/support.php:20
|
70 |
#: app/features/popup/event.php:60 app/features/popup/shortcode.php:37
|
71 |
#: app/libraries/main.php:594
|
72 |
msgid "Settings"
|
73 |
msgstr ""
|
74 |
|
75 |
-
#: app/features/contextual.php:62 app/features/events.php:
|
76 |
#: app/features/mec/booking.php:448 app/features/mec/support.php:29
|
77 |
#: app/libraries/main.php:560
|
78 |
msgid "Booking Form"
|
@@ -234,7 +234,7 @@ msgstr ""
|
|
234 |
msgid "BuddyPress Integration"
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: app/features/contextual.php:334 app/features/mec/settings.php:
|
238 |
#: app/libraries/main.php:539
|
239 |
msgid "Mailchimp Integration"
|
240 |
msgstr ""
|
@@ -260,7 +260,7 @@ msgstr ""
|
|
260 |
msgid "Event"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: app/features/events.php:160 app/features/mec.php:
|
264 |
msgid "Add Event"
|
265 |
msgstr ""
|
266 |
|
@@ -268,9 +268,9 @@ msgstr ""
|
|
268 |
msgid "Add New Event"
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: app/features/events.php:162 app/features/ix.php:
|
272 |
-
#: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:
|
273 |
-
#: app/skins/map/tpl.php:
|
274 |
msgid "No events found!"
|
275 |
msgstr ""
|
276 |
|
@@ -291,7 +291,7 @@ msgstr ""
|
|
291 |
msgid "No events found in Trash!"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: app/features/events.php:183 app/features/events.php:
|
295 |
#: app/features/mec/meta_boxes/display_options.php:1116
|
296 |
#: app/features/mec/meta_boxes/search_form.php:31
|
297 |
#: app/features/mec/meta_boxes/search_form.php:101
|
@@ -304,18 +304,18 @@ msgstr ""
|
|
304 |
#: app/features/mec/meta_boxes/search_form.php:584
|
305 |
#: app/features/mec/meta_boxes/search_form.php:654
|
306 |
#: app/features/mec/meta_boxes/search_form.php:760
|
307 |
-
#: app/features/mec/settings.php:
|
308 |
-
#: app/features/search.php:68 app/libraries/main.php:
|
309 |
#: app/libraries/skins.php:877 app/skins/single.php:576
|
310 |
#: app/skins/single/default.php:192 app/skins/single/default.php:415
|
311 |
#: app/skins/single/m1.php:184 app/skins/single/m2.php:110
|
312 |
-
#: app/skins/single/modern.php:
|
313 |
msgid "Category"
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: app/features/events.php:184 app/features/events.php:
|
317 |
-
#: app/features/fes/form.php:767 app/features/mec.php:
|
318 |
-
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:
|
319 |
msgid "Categories"
|
320 |
msgstr ""
|
321 |
|
@@ -399,7 +399,7 @@ msgstr ""
|
|
399 |
msgid "Event Repeating"
|
400 |
msgstr ""
|
401 |
|
402 |
-
#: app/features/events.php:334 app/features/events.php:
|
403 |
#: app/features/mec/settings.php:743 app/skins/single.php:964
|
404 |
msgid "Hourly Schedule"
|
405 |
msgstr ""
|
@@ -412,8 +412,8 @@ msgstr ""
|
|
412 |
msgid "Links"
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: app/features/events.php:337 app/features/events.php:
|
416 |
-
#: app/features/events.php:
|
417 |
#: app/features/ix.php:3508 app/features/ix.php:3549
|
418 |
#: app/features/mec/meta_boxes/display_options.php:1119
|
419 |
#: app/features/mec/meta_boxes/search_form.php:46
|
@@ -427,66 +427,71 @@ msgstr ""
|
|
427 |
#: app/features/mec/meta_boxes/search_form.php:599
|
428 |
#: app/features/mec/meta_boxes/search_form.php:669
|
429 |
#: app/features/mec/meta_boxes/search_form.php:775
|
430 |
-
#: app/features/mec/settings.php:
|
431 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
432 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
433 |
#: app/features/organizers.php:271 app/features/popup/event.php:293
|
434 |
#: app/features/popup/event.php:302 app/features/search.php:78
|
435 |
-
#: app/libraries/main.php:
|
436 |
#: app/skins/single.php:823 app/skins/single/default.php:217
|
437 |
#: app/skins/single/default.php:440 app/skins/single/m1.php:99
|
438 |
-
#: app/skins/single/m2.php:25 app/skins/single/modern.php:
|
439 |
msgid "Organizer"
|
440 |
msgstr ""
|
441 |
|
442 |
-
#: app/features/events.php:338 app/features/events.php:
|
443 |
-
#: app/features/fes/form.php:740 app/libraries/main.php:
|
444 |
#: app/skins/single.php:599 app/skins/single/default.php:126
|
445 |
#: app/skins/single/default.php:349 app/skins/single/m1.php:58
|
446 |
-
#: app/skins/single/modern.php:
|
447 |
msgid "Cost"
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: app/features/events.php:
|
451 |
-
|
|
|
452 |
msgstr ""
|
453 |
|
454 |
#: app/features/events.php:464
|
|
|
|
|
|
|
|
|
455 |
msgid "Guest Data"
|
456 |
msgstr ""
|
457 |
|
458 |
-
#: app/features/events.php:
|
459 |
-
#: app/features/events.php:
|
460 |
#: app/features/fes/form.php:699 app/features/labels.php:178
|
461 |
#: app/features/mec/booking.php:45 app/features/organizers.php:279
|
462 |
#: app/features/popup/event.php:312 app/features/profile/profile.php:180
|
463 |
-
#: app/libraries/notifications.php:
|
464 |
msgid "Name"
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: app/features/events.php:
|
468 |
-
#: app/features/events.php:
|
469 |
#: app/features/fes.php:223 app/features/fes/form.php:695
|
470 |
#: app/features/mec/booking.php:57 app/features/mec/booking.php:499
|
471 |
#: app/features/organizers.php:111 app/features/organizers.php:152
|
472 |
#: app/features/profile/profile.php:183 app/features/speakers.php:127
|
473 |
#: app/features/speakers.php:196 app/libraries/main.php:1595
|
474 |
-
#: app/libraries/main.php:1664 app/libraries/main.php:
|
475 |
-
#: app/libraries/notifications.php:
|
476 |
#: app/modules/booking/steps/form.php:83 app/skins/single.php:840
|
477 |
#: app/skins/single.php:895 app/skins/single/default.php:234
|
478 |
#: app/skins/single/default.php:457 app/skins/single/m1.php:116
|
479 |
-
#: app/skins/single/m2.php:42 app/skins/single/modern.php:
|
480 |
msgid "Email"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: app/features/events.php:
|
484 |
msgid "Date and Time"
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: app/features/events.php:
|
488 |
-
#: app/features/events.php:
|
489 |
-
#: app/features/events.php:
|
490 |
#: app/features/fes/form.php:254 app/features/ix.php:3508
|
491 |
#: app/features/ix.php:3549 app/features/ix/import_g_calendar.php:38
|
492 |
#: app/features/mec/dashboard.php:405
|
@@ -509,63 +514,63 @@ msgstr ""
|
|
509 |
msgid "Start Date"
|
510 |
msgstr ""
|
511 |
|
512 |
-
#: app/features/events.php:
|
513 |
-
#: app/features/events.php:
|
514 |
-
#: app/features/events.php:
|
515 |
#: app/features/fes/form.php:282 app/features/fes/form.php:322
|
516 |
#: app/features/popup/event.php:142 app/features/popup/event.php:224
|
517 |
msgid "AM"
|
518 |
msgstr ""
|
519 |
|
520 |
-
#: app/features/events.php:
|
521 |
-
#: app/features/events.php:
|
522 |
-
#: app/features/events.php:
|
523 |
#: app/features/fes/form.php:283 app/features/fes/form.php:323
|
524 |
#: app/features/popup/event.php:149 app/features/popup/event.php:231
|
525 |
msgid "PM"
|
526 |
msgstr ""
|
527 |
|
528 |
-
#: app/features/events.php:
|
529 |
-
#: app/features/events.php:
|
530 |
-
#: app/features/events.php:
|
531 |
#: app/features/fes/form.php:294 app/features/ix.php:3508
|
532 |
#: app/features/ix.php:3549 app/features/ix/import_g_calendar.php:44
|
533 |
#: app/features/mec/dashboard.php:406 app/features/popup/event.php:157
|
534 |
msgid "End Date"
|
535 |
msgstr ""
|
536 |
|
537 |
-
#: app/features/events.php:
|
538 |
#: app/features/popup/event.php:239
|
539 |
msgid "All Day Event"
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: app/features/events.php:
|
543 |
msgid "Hide Event Time"
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: app/features/events.php:
|
547 |
msgid "Hide Event End Time"
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: app/features/events.php:
|
551 |
#: app/features/fes/form.php:339
|
552 |
msgid "Time Comment"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: app/features/events.php:
|
556 |
msgid ""
|
557 |
"It shows next to event time on single event page. You can insert Timezone "
|
558 |
"etc. in this field."
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: app/features/events.php:
|
562 |
-
#: app/features/events.php:
|
563 |
-
#: app/features/events.php:
|
564 |
-
#: app/features/events.php:
|
565 |
-
#: app/features/events.php:
|
566 |
-
#: app/features/events.php:
|
567 |
-
#: app/features/events.php:
|
568 |
-
#: app/features/events.php:
|
569 |
#: app/features/fes/form.php:651 app/features/locations.php:301
|
570 |
#: app/features/mec/booking.php:108 app/features/mec/booking.php:158
|
571 |
#: app/features/mec/booking.php:171 app/features/mec/booking.php:187
|
@@ -623,9 +628,9 @@ msgstr ""
|
|
623 |
#: app/features/mec/settings.php:434 app/features/mec/settings.php:451
|
624 |
#: app/features/mec/settings.php:470 app/features/mec/settings.php:484
|
625 |
#: app/features/mec/settings.php:512 app/features/mec/settings.php:599
|
626 |
-
#: app/features/mec/settings.php:
|
627 |
-
#: app/features/mec/settings.php:
|
628 |
-
#: app/features/mec/settings.php:
|
629 |
#: app/features/mec/single.php:58 app/features/mec/single.php:77
|
630 |
#: app/features/mec/single.php:94 app/features/mec/single.php:110
|
631 |
#: app/features/mec/single.php:125 app/features/mec/single.php:178
|
@@ -635,465 +640,467 @@ msgstr ""
|
|
635 |
#: app/features/popup/event.php:303 app/skins/single.php:685
|
636 |
#: app/skins/single/default.php:141 app/skins/single/default.php:364
|
637 |
#: app/skins/single/m1.php:206 app/skins/single/m2.php:133
|
638 |
-
#: app/skins/single/modern.php:
|
639 |
msgid "Read More"
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: app/features/events.php:
|
643 |
msgid "Repeating"
|
644 |
msgstr ""
|
645 |
|
646 |
-
#: app/features/events.php:
|
647 |
msgid "Event Repeating (Recurring events)"
|
648 |
msgstr ""
|
649 |
|
650 |
-
#: app/features/events.php:
|
651 |
msgid "Repeats"
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: app/features/events.php:
|
655 |
#: app/features/mec/dashboard.php:408
|
656 |
-
#: app/skins/default_full_calendar/tpl.php:
|
657 |
-
#: app/skins/full_calendar/tpl.php:
|
658 |
msgid "Daily"
|
659 |
msgstr ""
|
660 |
|
661 |
-
#: app/features/events.php:
|
662 |
msgid "Every Weekday"
|
663 |
msgstr ""
|
664 |
|
665 |
-
#: app/features/events.php:
|
666 |
msgid "Every Weekend"
|
667 |
msgstr ""
|
668 |
|
669 |
-
#: app/features/events.php:
|
670 |
msgid "Certain Weekdays"
|
671 |
msgstr ""
|
672 |
|
673 |
-
#: app/features/events.php:
|
674 |
-
#: app/skins/default_full_calendar/tpl.php:
|
675 |
-
#: app/skins/full_calendar/tpl.php:
|
676 |
msgid "Weekly"
|
677 |
msgstr ""
|
678 |
|
679 |
-
#: app/features/events.php:
|
680 |
#: app/features/mec/dashboard.php:409
|
681 |
-
#: app/skins/default_full_calendar/tpl.php:
|
682 |
-
#: app/skins/full_calendar/tpl.php:
|
683 |
msgid "Monthly"
|
684 |
msgstr ""
|
685 |
|
686 |
-
#: app/features/events.php:
|
687 |
#: app/features/mec/dashboard.php:410
|
688 |
-
#: app/skins/default_full_calendar/tpl.php:
|
689 |
-
#: app/skins/full_calendar/tpl.php:
|
690 |
msgid "Yearly"
|
691 |
msgstr ""
|
692 |
|
693 |
-
#: app/features/events.php:
|
694 |
msgid "Custom Days"
|
695 |
msgstr ""
|
696 |
|
697 |
-
#: app/features/events.php:
|
698 |
msgid "Advanced"
|
699 |
msgstr ""
|
700 |
|
701 |
-
#: app/features/events.php:
|
702 |
msgid "Repeat Interval"
|
703 |
msgstr ""
|
704 |
|
705 |
-
#: app/features/events.php:
|
706 |
msgid "Repeat interval"
|
707 |
msgstr ""
|
708 |
|
709 |
-
#: app/features/events.php:
|
710 |
msgid "Week Days"
|
711 |
msgstr ""
|
712 |
|
713 |
-
#: app/features/events.php:
|
714 |
-
#: app/features/events.php:
|
715 |
#: app/features/fes/form.php:380 app/features/ix/import_f_calendar.php:42
|
716 |
#: app/features/ix/import_g_calendar.php:51
|
717 |
#: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
|
718 |
msgid "Start"
|
719 |
msgstr ""
|
720 |
|
721 |
-
#: app/features/events.php:
|
722 |
-
#: app/features/events.php:
|
723 |
#: app/features/fes/form.php:381
|
724 |
msgid "End"
|
725 |
msgstr ""
|
726 |
|
727 |
-
#: app/features/events.php:
|
728 |
-
#: app/features/events.php:
|
729 |
-
#: app/features/events.php:
|
730 |
-
#: app/features/events.php:
|
731 |
#: app/features/fes/form.php:382 app/features/fes/form.php:865
|
732 |
msgid "Add"
|
733 |
msgstr ""
|
734 |
|
735 |
-
#: app/features/events.php:
|
736 |
msgid "Custom Days Repeating"
|
737 |
msgstr ""
|
738 |
|
739 |
-
#: app/features/events.php:
|
740 |
msgid ""
|
741 |
"Add certain days to event occurrence dates. If you have single day event, "
|
742 |
"start and end date should be the same, If you have multiple day event the "
|
743 |
"start and end dates must be commensurate with the initial date."
|
744 |
msgstr ""
|
745 |
|
746 |
-
#: app/features/events.php:
|
747 |
msgid "First"
|
748 |
msgstr ""
|
749 |
|
750 |
-
#: app/features/events.php:
|
751 |
msgid "Second"
|
752 |
msgstr ""
|
753 |
|
754 |
-
#: app/features/events.php:
|
755 |
msgid "Third"
|
756 |
msgstr ""
|
757 |
|
758 |
-
#: app/features/events.php:
|
759 |
msgid "Fourth"
|
760 |
msgstr ""
|
761 |
|
762 |
-
#: app/features/events.php:
|
763 |
msgid "Last"
|
764 |
msgstr ""
|
765 |
|
766 |
-
#: app/features/events.php:
|
767 |
msgid "Ends Repeat"
|
768 |
msgstr ""
|
769 |
|
770 |
-
#: app/features/events.php:
|
771 |
msgid "Never"
|
772 |
msgstr ""
|
773 |
|
774 |
-
#: app/features/events.php:
|
775 |
msgid "On"
|
776 |
msgstr ""
|
777 |
|
778 |
-
#: app/features/events.php:
|
779 |
msgid "After"
|
780 |
msgstr ""
|
781 |
|
782 |
-
#: app/features/events.php:
|
783 |
#: app/features/fes/form.php:647 app/features/fes/form.php:650
|
784 |
msgid "Occurrences times"
|
785 |
msgstr ""
|
786 |
|
787 |
-
#: app/features/events.php:
|
788 |
msgid ""
|
789 |
"The event will finish after certain repeats. For example if you set it to "
|
790 |
"10, the event will finish after 10 repeats."
|
791 |
msgstr ""
|
792 |
|
793 |
-
#: app/features/events.php:
|
794 |
msgid "Show only one occurrence of this event"
|
795 |
msgstr ""
|
796 |
|
797 |
-
#: app/features/events.php:
|
798 |
-
#: app/features/events.php:
|
799 |
#: app/features/ix.php:3508 app/features/ix.php:3549
|
800 |
-
#: app/features/mec/settings.php:689 app/libraries/main.php:
|
801 |
#: app/widgets/single.php:103
|
802 |
msgid "Event Cost"
|
803 |
msgstr ""
|
804 |
|
805 |
-
#: app/features/events.php:
|
806 |
msgid "Exceptional Days (Exclude Dates)"
|
807 |
msgstr ""
|
808 |
|
809 |
-
#: app/features/events.php:
|
810 |
msgid "Exclude certain days"
|
811 |
msgstr ""
|
812 |
|
813 |
-
#: app/features/events.php:
|
814 |
#: app/features/fes.php:223 app/features/mec/booking.php:500
|
815 |
-
#: app/features/profile/profile.php:53 app/libraries/main.php:
|
816 |
-
#: app/libraries/main.php:
|
817 |
#: app/modules/next-event/details.php:93 app/skins/single.php:659
|
818 |
#: app/skins/single/default.php:85 app/skins/single/default.php:308
|
819 |
-
#: app/skins/single/m1.php:20 app/skins/single/modern.php:
|
820 |
msgid "Date"
|
821 |
msgstr ""
|
822 |
|
823 |
-
#: app/features/events.php:
|
824 |
msgid ""
|
825 |
"Exclude certain days from event occurrence dates. Please note that you can "
|
826 |
"exclude only single day occurrences and you cannot exclude one day from "
|
827 |
"multiple day occurrences."
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: app/features/events.php:
|
831 |
msgid "Day 1"
|
832 |
msgstr ""
|
833 |
|
834 |
-
#: app/features/events.php:
|
835 |
msgid "Add Day"
|
836 |
msgstr ""
|
837 |
|
838 |
-
#: app/features/events.php:
|
839 |
msgid ""
|
840 |
"Add new days for schedule. For example if your event is multiple days, you "
|
841 |
"can add a different schedule for each day!"
|
842 |
msgstr ""
|
843 |
|
844 |
-
#: app/features/events.php:
|
845 |
#, php-format
|
846 |
msgid "Day %s"
|
847 |
msgstr ""
|
848 |
|
849 |
-
#: app/features/events.php:
|
850 |
-
#: app/features/events.php:
|
851 |
-
#: app/features/events.php:
|
852 |
-
#: app/features/events.php:
|
853 |
-
#: app/features/events.php:
|
854 |
#: app/features/fes/form.php:239 app/features/ix.php:3508
|
855 |
#: app/features/ix.php:3549 app/features/mec/booking.php:384
|
856 |
#: app/features/mec/booking.php:416 app/features/mec/styling.php:130
|
857 |
msgid "Title"
|
858 |
msgstr ""
|
859 |
|
860 |
-
#: app/features/events.php:
|
861 |
-
#: app/features/events.php:
|
862 |
-
#: app/features/events.php:
|
863 |
-
#: app/features/events.php:
|
864 |
-
#: app/features/events.php:
|
865 |
-
#: app/features/events.php:
|
866 |
#: app/features/mec/booking.php:327 app/features/mec/booking.php:356
|
867 |
#: app/features/mec/booking.php:407 app/features/mec/booking.php:439
|
868 |
-
#: app/libraries/main.php:
|
869 |
-
#: app/libraries/main.php:
|
870 |
-
#: app/libraries/main.php:
|
871 |
-
#: app/libraries/main.php:
|
872 |
-
#: app/libraries/main.php:
|
873 |
-
#: app/libraries/main.php:
|
874 |
-
#: app/libraries/main.php:
|
875 |
msgid "Remove"
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: app/features/events.php:
|
879 |
msgid "Add new hourly schedule row"
|
880 |
msgstr ""
|
881 |
|
882 |
-
#: app/features/events.php:
|
883 |
-
#: app/features/events.php:
|
884 |
msgid "From e.g. 8:15"
|
885 |
msgstr ""
|
886 |
|
887 |
-
#: app/features/events.php:
|
888 |
-
#: app/features/events.php:
|
889 |
msgid "To e.g. 8:45"
|
890 |
msgstr ""
|
891 |
|
892 |
-
#: app/features/events.php:
|
893 |
-
#: app/features/events.php:
|
894 |
-
#: app/features/events.php:
|
895 |
msgid "Description"
|
896 |
msgstr ""
|
897 |
|
898 |
-
#: app/features/events.php:
|
899 |
-
#: app/features/events.php:
|
900 |
-
#: app/features/mec.php:
|
901 |
#: app/features/mec/settings.php:737 app/features/speakers.php:62
|
902 |
-
#: app/libraries/main.php:565 app/libraries/main.php:
|
903 |
#: app/modules/speakers/details.php:18
|
904 |
msgid "Speakers"
|
905 |
msgstr ""
|
906 |
|
907 |
-
#: app/features/events.php:
|
908 |
msgid "New Day"
|
909 |
msgstr ""
|
910 |
|
911 |
-
#: app/features/events.php:
|
912 |
#: app/features/mec/settings.php:683
|
913 |
msgid "Event Links"
|
914 |
msgstr ""
|
915 |
|
916 |
-
#: app/features/events.php:
|
917 |
-
#: app/features/fes/form.php:716 app/libraries/main.php:
|
918 |
msgid "Event Link"
|
919 |
msgstr ""
|
920 |
|
921 |
-
#: app/features/events.php:
|
922 |
#: app/features/fes/form.php:717 app/features/fes/form.php:722
|
923 |
msgid "eg. http://yoursite.com/your-event"
|
924 |
msgstr ""
|
925 |
|
926 |
-
#: app/features/events.php:
|
927 |
msgid ""
|
928 |
"If you fill it, it will be replaced instead of default event page link. "
|
929 |
"Insert full link including http(s):// - Also, if you use advertising URL, "
|
930 |
"can use URL Shortener"
|
931 |
msgstr ""
|
932 |
|
933 |
-
#: app/features/events.php:
|
934 |
msgid "URL Shortener"
|
935 |
msgstr ""
|
936 |
|
937 |
-
#: app/features/events.php:
|
938 |
-
#: app/features/fes/form.php:721 app/libraries/main.php:
|
939 |
#: app/skins/single.php:684 app/skins/single/default.php:140
|
940 |
#: app/skins/single/default.php:363 app/skins/single/m1.php:205
|
941 |
-
#: app/skins/single/m2.php:132 app/skins/single/modern.php:
|
942 |
#: app/widgets/single.php:107
|
943 |
msgid "More Info"
|
944 |
msgstr ""
|
945 |
|
946 |
-
#: app/features/events.php:
|
947 |
msgid "More Information"
|
948 |
msgstr ""
|
949 |
|
950 |
-
#: app/features/events.php:
|
951 |
msgid "Current Window"
|
952 |
msgstr ""
|
953 |
|
954 |
-
#: app/features/events.php:
|
955 |
msgid "New Window"
|
956 |
msgstr ""
|
957 |
|
958 |
-
#: app/features/events.php:
|
959 |
msgid ""
|
960 |
"If you fill it, it will be shown in event details page as an optional link. "
|
961 |
"Insert full link including http(s)://"
|
962 |
msgstr ""
|
963 |
|
964 |
-
#: app/features/events.php:
|
965 |
msgid "Total booking limits"
|
966 |
msgstr ""
|
967 |
|
968 |
-
#: app/features/events.php:
|
969 |
-
#: app/features/events.php:
|
970 |
#: app/modules/booking/steps/tickets.php:43
|
971 |
-
#: app/skins/available_spot/tpl.php:
|
972 |
msgid "Unlimited"
|
973 |
msgstr ""
|
974 |
|
975 |
-
#: app/features/events.php:
|
976 |
msgid ""
|
977 |
"If you want to set a limit to all tickets, uncheck this checkbox and put a "
|
978 |
"limitation number."
|
979 |
msgstr ""
|
980 |
|
981 |
-
#: app/features/events.php:
|
982 |
msgid "Read About A Booking System"
|
983 |
msgstr ""
|
984 |
|
985 |
-
#: app/features/events.php:
|
986 |
msgid "100"
|
987 |
msgstr ""
|
988 |
|
989 |
-
#: app/features/events.php:
|
990 |
msgid "Total user booking limits"
|
991 |
msgstr ""
|
992 |
|
993 |
-
#: app/features/events.php:
|
994 |
-
#: app/features/events.php:
|
995 |
msgid "Inherit from global options"
|
996 |
msgstr ""
|
997 |
|
998 |
-
#: app/features/events.php:
|
999 |
msgid "12"
|
1000 |
msgstr ""
|
1001 |
|
1002 |
-
#: app/features/events.php:
|
1003 |
-
#: app/libraries/main.php:
|
1004 |
msgid "Tickets"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
-
#: app/features/events.php:
|
1008 |
msgid ""
|
1009 |
"You're translating an event so MEC will use the original event for tickets "
|
1010 |
"and booking. You can only translate the ticket name and description. Please "
|
1011 |
"define exact tickets that you defined in the original event here."
|
1012 |
msgstr ""
|
1013 |
|
1014 |
-
#: app/features/events.php:
|
1015 |
msgid "Add Ticket"
|
1016 |
msgstr ""
|
1017 |
|
1018 |
-
#: app/features/events.php:
|
1019 |
msgid "Ticket Name"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
-
#: app/features/events.php:
|
1023 |
-
#: app/features/events.php:
|
1024 |
#: app/features/ix.php:3508 app/features/ix.php:3549
|
1025 |
msgid "Start Time"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
-
#: app/features/events.php:
|
1029 |
-
#: app/features/events.php:
|
1030 |
#: app/features/ix.php:3508 app/features/ix.php:3549
|
1031 |
msgid "End Time"
|
1032 |
msgstr ""
|
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:391 app/features/mec/booking.php:420
|
1041 |
#: app/features/mec/booking.php:423
|
1042 |
msgid "Price"
|
1043 |
msgstr ""
|
1044 |
|
1045 |
-
#: app/features/events.php:
|
1046 |
-
msgid "
|
|
|
|
|
1047 |
msgstr ""
|
1048 |
|
1049 |
-
#: app/features/events.php:
|
1050 |
-
#: app/features/events.php:
|
1051 |
msgid "Price Label"
|
1052 |
msgstr ""
|
1053 |
|
1054 |
-
#: app/features/events.php:
|
1055 |
msgid "For showing on website. e.g. $15"
|
1056 |
msgstr ""
|
1057 |
|
1058 |
-
#: app/features/events.php:
|
1059 |
msgid "Available Tickets"
|
1060 |
msgstr ""
|
1061 |
|
1062 |
-
#: app/features/events.php:
|
1063 |
msgid "Minimum Ticket e.g. 3"
|
1064 |
msgstr ""
|
1065 |
|
1066 |
-
#: app/features/events.php:
|
1067 |
msgid "MinimumTicket"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
-
#: app/features/events.php:
|
1071 |
msgid "Set a number for the minimum ticket reservation"
|
1072 |
msgstr ""
|
1073 |
|
1074 |
-
#: app/features/events.php:
|
1075 |
msgid "e.g. 0"
|
1076 |
msgstr ""
|
1077 |
|
1078 |
-
#: app/features/events.php:
|
1079 |
msgid "Day"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
-
#: app/features/events.php:
|
1083 |
msgid "Hour"
|
1084 |
msgstr ""
|
1085 |
|
1086 |
-
#: app/features/events.php:
|
1087 |
#, php-format
|
1088 |
msgid "Stop selling ticket %s before event start."
|
1089 |
msgstr ""
|
1090 |
|
1091 |
-
#: app/features/events.php:
|
1092 |
msgid "Price per Date"
|
1093 |
msgstr ""
|
1094 |
|
1095 |
-
#: app/features/events.php:
|
1096 |
-
#: app/features/events.php:
|
1097 |
#: app/features/mec/meta_boxes/display_options.php:1117
|
1098 |
#: app/features/mec/meta_boxes/search_form.php:67
|
1099 |
#: app/features/mec/meta_boxes/search_form.php:137
|
@@ -1106,113 +1113,113 @@ msgstr ""
|
|
1106 |
#: app/features/mec/meta_boxes/search_form.php:620
|
1107 |
#: app/features/mec/meta_boxes/search_form.php:690
|
1108 |
#: app/features/mec/meta_boxes/search_form.php:796
|
1109 |
-
#: app/features/mec/settings.php:
|
1110 |
#: app/libraries/skins.php:1007
|
1111 |
msgid "Label"
|
1112 |
msgstr ""
|
1113 |
|
1114 |
-
#: app/features/events.php:
|
1115 |
msgid "Fees"
|
1116 |
msgstr ""
|
1117 |
|
1118 |
-
#: app/features/events.php:
|
1119 |
#: app/features/mec/booking.php:307 app/features/mec/booking.php:336
|
1120 |
msgid "Fee Title"
|
1121 |
msgstr ""
|
1122 |
|
1123 |
-
#: app/features/events.php:
|
1124 |
-
#: app/features/events.php:
|
1125 |
#: app/features/mec/booking.php:311 app/features/mec/booking.php:314
|
1126 |
#: app/features/mec/booking.php:340 app/features/mec/booking.php:343
|
1127 |
msgid "Amount"
|
1128 |
msgstr ""
|
1129 |
|
1130 |
-
#: app/features/events.php:
|
1131 |
#: app/features/mec/booking.php:315 app/features/mec/booking.php:344
|
1132 |
msgid ""
|
1133 |
"Fee amount, considered as fixed amount if you set the type to amount "
|
1134 |
"otherwise considered as percentage"
|
1135 |
msgstr ""
|
1136 |
|
1137 |
-
#: app/features/events.php:
|
1138 |
#: app/features/mec/booking.php:322 app/features/mec/booking.php:351
|
1139 |
msgid "Percent"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
-
#: app/features/events.php:
|
1143 |
#: app/features/mec/booking.php:323 app/features/mec/booking.php:352
|
1144 |
msgid "Amount (Per Ticket)"
|
1145 |
msgstr ""
|
1146 |
|
1147 |
-
#: app/features/events.php:
|
1148 |
#: app/features/mec/booking.php:324 app/features/mec/booking.php:353
|
1149 |
msgid "Amount (Per Booking)"
|
1150 |
msgstr ""
|
1151 |
|
1152 |
-
#: app/features/events.php:
|
1153 |
msgid "Ticket Variations / Options"
|
1154 |
msgstr ""
|
1155 |
|
1156 |
-
#: app/features/events.php:
|
1157 |
#: app/features/mec/booking.php:392 app/features/mec/booking.php:424
|
1158 |
msgid "Option Price"
|
1159 |
msgstr ""
|
1160 |
|
1161 |
-
#: app/features/events.php:
|
1162 |
-
#: app/features/events.php:
|
1163 |
#: app/features/mec/booking.php:398 app/features/mec/booking.php:401
|
1164 |
#: app/features/mec/booking.php:430 app/features/mec/booking.php:433
|
1165 |
msgid "Maximum Per Ticket"
|
1166 |
msgstr ""
|
1167 |
|
1168 |
-
#: app/features/events.php:
|
1169 |
#: app/features/mec/booking.php:402 app/features/mec/booking.php:434
|
1170 |
msgid "Maximum Per Ticket. Leave it blank for unlimited."
|
1171 |
msgstr ""
|
1172 |
|
1173 |
-
#: app/features/events.php:
|
1174 |
-
#: app/libraries/main.php:
|
1175 |
msgid "MEC Name"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
-
#: app/features/events.php:
|
1179 |
-
#: app/libraries/main.php:
|
1180 |
msgid "MEC Email"
|
1181 |
msgstr ""
|
1182 |
|
1183 |
-
#: app/features/events.php:
|
1184 |
-
#: app/libraries/main.php:
|
1185 |
msgid "Text"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
-
#: app/features/events.php:
|
1189 |
#: app/features/organizers.php:103 app/features/organizers.php:148
|
1190 |
#: app/features/speakers.php:119 app/features/speakers.php:192
|
1191 |
-
#: app/features/speakers.php:271 app/libraries/main.php:
|
1192 |
msgid "Tel"
|
1193 |
msgstr ""
|
1194 |
|
1195 |
-
#: app/features/events.php:
|
1196 |
-
#: app/libraries/main.php:
|
1197 |
msgid "File"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
-
#: app/features/events.php:
|
1201 |
-
#: app/libraries/main.php:
|
1202 |
msgid "Textarea"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
-
#: app/features/events.php:
|
1206 |
-
#: app/libraries/main.php:
|
1207 |
msgid "Checkboxes"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
-
#: app/features/events.php:
|
1211 |
-
#: app/libraries/main.php:
|
1212 |
msgid "Radio Buttons"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
-
#: app/features/events.php:
|
1216 |
#: app/features/mec/meta_boxes/search_form.php:34
|
1217 |
#: app/features/mec/meta_boxes/search_form.php:41
|
1218 |
#: app/features/mec/meta_boxes/search_form.php:49
|
@@ -1288,44 +1295,44 @@ msgstr ""
|
|
1288 |
#: app/features/mec/meta_boxes/search_form.php:785
|
1289 |
#: app/features/mec/meta_boxes/search_form.php:792
|
1290 |
#: app/features/mec/meta_boxes/search_form.php:799
|
1291 |
-
#: app/features/mec/meta_boxes/search_form.php:813 app/libraries/main.php:
|
1292 |
msgid "Dropdown"
|
1293 |
msgstr ""
|
1294 |
|
1295 |
-
#: app/features/events.php:
|
1296 |
-
#: app/libraries/main.php:
|
1297 |
msgid "Agreement"
|
1298 |
msgstr ""
|
1299 |
|
1300 |
-
#: app/features/events.php:
|
1301 |
-
#: app/libraries/main.php:
|
1302 |
msgid "Paragraph"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
-
#: app/features/events.php:
|
1306 |
-
#: app/features/events.php:
|
1307 |
#, php-format
|
1308 |
msgid "Show all %s"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
-
#: app/features/events.php:
|
1312 |
msgid "labels"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
-
#: app/features/events.php:
|
1316 |
msgid "locations"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
-
#: app/features/events.php:
|
1320 |
msgid "organizers"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
-
#: app/features/events.php:
|
1324 |
msgid "Attendees List"
|
1325 |
msgstr ""
|
1326 |
|
1327 |
-
#: app/features/events.php:
|
1328 |
-
#: app/features/events.php:
|
1329 |
#: app/features/ix.php:3549 app/features/locations.php:58
|
1330 |
#: app/features/locations.php:232 app/features/locations.php:289
|
1331 |
#: app/features/locations.php:291 app/features/locations.php:300
|
@@ -1341,87 +1348,87 @@ msgstr ""
|
|
1341 |
#: app/features/mec/meta_boxes/search_form.php:591
|
1342 |
#: app/features/mec/meta_boxes/search_form.php:661
|
1343 |
#: app/features/mec/meta_boxes/search_form.php:767
|
1344 |
-
#: app/features/mec/settings.php:
|
1345 |
#: app/features/popup/event.php:246 app/features/popup/event.php:255
|
1346 |
-
#: app/features/search.php:73 app/libraries/main.php:
|
1347 |
-
#: app/libraries/main.php:
|
1348 |
#: app/skins/single.php:503 app/skins/single.php:941
|
1349 |
#: app/skins/single/default.php:176 app/skins/single/default.php:399
|
1350 |
#: app/skins/single/m1.php:169 app/skins/single/m2.php:95
|
1351 |
-
#: app/skins/single/modern.php:
|
1352 |
msgid "Location"
|
1353 |
msgstr ""
|
1354 |
|
1355 |
-
#: app/features/events.php:
|
1356 |
msgid "Repeat"
|
1357 |
msgstr ""
|
1358 |
|
1359 |
-
#: app/features/events.php:
|
1360 |
msgid "Author"
|
1361 |
msgstr ""
|
1362 |
|
1363 |
-
#: app/features/events.php:
|
1364 |
msgid "iCal Export"
|
1365 |
msgstr ""
|
1366 |
|
1367 |
-
#: app/features/events.php:
|
1368 |
msgid "CSV Export"
|
1369 |
msgstr ""
|
1370 |
|
1371 |
-
#: app/features/events.php:
|
1372 |
msgid "MS Excel Export"
|
1373 |
msgstr ""
|
1374 |
|
1375 |
-
#: app/features/events.php:
|
1376 |
msgid "XML Export"
|
1377 |
msgstr ""
|
1378 |
|
1379 |
-
#: app/features/events.php:
|
1380 |
msgid "JSON Export"
|
1381 |
msgstr ""
|
1382 |
|
1383 |
-
#: app/features/events.php:
|
1384 |
-
#: app/features/events.php:
|
1385 |
msgid "Duplicate"
|
1386 |
msgstr ""
|
1387 |
|
1388 |
-
#: app/features/events.php:
|
1389 |
#: app/features/fes.php:223 app/features/ix.php:3508 app/features/ix.php:3549
|
1390 |
#: app/features/labels.php:177 app/features/locations.php:231
|
1391 |
#: app/features/organizers.php:203 app/features/speakers.php:268
|
1392 |
msgid "ID"
|
1393 |
msgstr ""
|
1394 |
|
1395 |
-
#: app/features/events.php:
|
1396 |
#: app/features/ix.php:3508 app/features/ix.php:3549
|
1397 |
msgid "Link"
|
1398 |
msgstr ""
|
1399 |
|
1400 |
-
#: app/features/events.php:
|
1401 |
#, php-format
|
1402 |
msgid "%s Tel"
|
1403 |
msgstr ""
|
1404 |
|
1405 |
-
#: app/features/events.php:
|
1406 |
#, php-format
|
1407 |
msgid "%s Email"
|
1408 |
msgstr ""
|
1409 |
|
1410 |
-
#: app/features/events.php:
|
1411 |
-
#: app/features/profile/profile.php:186 app/libraries/main.php:
|
1412 |
-
#: app/libraries/main.php:
|
1413 |
msgid "Ticket"
|
1414 |
msgstr ""
|
1415 |
|
1416 |
-
#: app/features/events.php:
|
1417 |
msgid "Variations"
|
1418 |
msgstr ""
|
1419 |
|
1420 |
-
#: app/features/events.php:
|
1421 |
msgid "Unknown"
|
1422 |
msgstr ""
|
1423 |
|
1424 |
-
#: app/features/events.php:
|
1425 |
msgid "No Attendees Found!"
|
1426 |
msgstr ""
|
1427 |
|
@@ -1459,7 +1466,7 @@ msgstr ""
|
|
1459 |
msgid "Order Time"
|
1460 |
msgstr ""
|
1461 |
|
1462 |
-
#: app/features/fes.php:223 app/libraries/main.php:
|
1463 |
msgid "Transaction ID"
|
1464 |
msgstr ""
|
1465 |
|
@@ -1491,11 +1498,11 @@ msgstr ""
|
|
1491 |
msgid "Please fill event title field!"
|
1492 |
msgstr ""
|
1493 |
|
1494 |
-
#: app/features/fes.php:
|
1495 |
msgid "The event submitted. It will publish as soon as possible."
|
1496 |
msgstr ""
|
1497 |
|
1498 |
-
#: app/features/fes.php:
|
1499 |
msgid "The event published."
|
1500 |
msgstr ""
|
1501 |
|
@@ -1581,15 +1588,15 @@ msgid "Remove Image"
|
|
1581 |
msgstr ""
|
1582 |
|
1583 |
#: app/features/fes/form.php:793 app/features/labels.php:61
|
1584 |
-
#: app/features/labels.php:221 app/features/mec.php:
|
1585 |
-
#: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:
|
1586 |
#: app/skins/single.php:713 app/skins/single/default.php:155
|
1587 |
#: app/skins/single/default.php:378 app/skins/single/m1.php:73
|
1588 |
-
#: app/skins/single/modern.php:
|
1589 |
msgid "Labels"
|
1590 |
msgstr ""
|
1591 |
|
1592 |
-
#: app/features/fes/form.php:839 app/features/mec.php:
|
1593 |
#: app/features/mec/meta_boxes/filter.php:147
|
1594 |
msgid "Tags"
|
1595 |
msgstr ""
|
@@ -1668,7 +1675,7 @@ msgstr ""
|
|
1668 |
msgid "Both of API key and Calendar ID are required!"
|
1669 |
msgstr ""
|
1670 |
|
1671 |
-
#: app/features/ix.php:2772 app/features/ix.php:3191 app/features/ix.php:
|
1672 |
msgid "Please select some events to import!"
|
1673 |
msgstr ""
|
1674 |
|
@@ -1705,36 +1712,36 @@ msgstr ""
|
|
1705 |
msgid "All of Client App, Client Secret and Calendar ID are required!"
|
1706 |
msgstr ""
|
1707 |
|
1708 |
-
#: app/features/ix.php:
|
1709 |
#, php-format
|
1710 |
msgid "%s events added to Google Calendar successfully."
|
1711 |
msgstr ""
|
1712 |
|
1713 |
-
#: app/features/ix.php:
|
1714 |
#, php-format
|
1715 |
msgid "%s previously added events get updated."
|
1716 |
msgstr ""
|
1717 |
|
1718 |
-
#: app/features/ix.php:
|
1719 |
#, php-format
|
1720 |
msgid "%s events failed to add for following reasons: %s"
|
1721 |
msgstr ""
|
1722 |
|
1723 |
-
#: app/features/ix.php:
|
1724 |
msgid "Please insert your Facebook page's link."
|
1725 |
msgstr ""
|
1726 |
|
1727 |
-
#: app/features/ix.php:
|
1728 |
msgid ""
|
1729 |
"We couldn't recognize your Facebook page. Please check it and provide us a "
|
1730 |
"valid Facebook page link."
|
1731 |
msgstr ""
|
1732 |
|
1733 |
-
#: app/features/ix.php:
|
1734 |
msgid "Please insert your facebook page's link."
|
1735 |
msgstr ""
|
1736 |
|
1737 |
-
#: app/features/ix.php:
|
1738 |
msgid ""
|
1739 |
"We couldn't recognize your Facebook page. Please check it and provide us a "
|
1740 |
"valid facebook page link."
|
@@ -1906,7 +1913,7 @@ msgstr ""
|
|
1906 |
|
1907 |
#: app/features/ix/export_g_calendar.php:93 app/features/mec/booking.php:678
|
1908 |
#: app/features/mec/modules.php:398 app/features/mec/notifications.php:909
|
1909 |
-
#: app/features/mec/settings.php:
|
1910 |
msgid "Checking ..."
|
1911 |
msgstr ""
|
1912 |
|
@@ -2299,30 +2306,30 @@ msgstr ""
|
|
2299 |
|
2300 |
#: app/features/labels.php:117 app/features/labels.php:142
|
2301 |
#: app/skins/agenda/render.php:41 app/skins/available_spot/tpl.php:44
|
2302 |
-
#: app/skins/carousel/render.php:
|
2303 |
-
#: app/skins/cover/tpl.php:34 app/skins/daily_view/render.php:
|
2304 |
#: app/skins/grid/render.php:54 app/skins/list/render.php:39
|
2305 |
-
#: app/skins/masonry/render.php:30 app/skins/monthly_view/calendar.php:
|
2306 |
-
#: app/skins/monthly_view/calendar_clean.php:
|
2307 |
-
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:
|
2308 |
-
#: app/skins/tile/render.php:
|
2309 |
-
#: app/skins/timetable/render.php:41 app/skins/timetable/render.php:
|
2310 |
-
#: app/skins/weekly_view/render.php:
|
2311 |
msgid "Featured"
|
2312 |
msgstr ""
|
2313 |
|
2314 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2315 |
-
#: app/libraries/main.php:
|
2316 |
-
#: app/skins/available_spot/tpl.php:45 app/skins/carousel/render.php:
|
2317 |
-
#: app/skins/countdown/tpl.php:37 app/skins/cover/tpl.php:
|
2318 |
-
#: app/skins/daily_view/render.php:
|
2319 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:31
|
2320 |
-
#: app/skins/monthly_view/calendar.php:
|
2321 |
-
#: app/skins/monthly_view/calendar_clean.php:
|
2322 |
-
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:
|
2323 |
-
#: app/skins/tile/render.php:
|
2324 |
-
#: app/skins/timetable/render.php:
|
2325 |
-
#: app/skins/weekly_view/render.php:
|
2326 |
msgid "Canceled"
|
2327 |
msgstr ""
|
2328 |
|
@@ -2346,9 +2353,9 @@ msgstr ""
|
|
2346 |
msgid "Event %s"
|
2347 |
msgstr ""
|
2348 |
|
2349 |
-
#: app/features/locations.php:59 app/features/mec.php:
|
2350 |
#: app/features/mec/dashboard.php:275 app/features/mec/meta_boxes/filter.php:96
|
2351 |
-
#: app/libraries/main.php:
|
2352 |
msgid "Locations"
|
2353 |
msgstr ""
|
2354 |
|
@@ -2465,7 +2472,7 @@ msgstr ""
|
|
2465 |
msgid "Don't show map in single event page"
|
2466 |
msgstr ""
|
2467 |
|
2468 |
-
#: app/features/locations.php:359 app/libraries/main.php:
|
2469 |
msgid "Other Locations"
|
2470 |
msgstr ""
|
2471 |
|
@@ -2478,137 +2485,137 @@ msgstr ""
|
|
2478 |
msgid "<strong>"
|
2479 |
msgstr ""
|
2480 |
|
2481 |
-
#: app/features/mec.php:
|
2482 |
msgid ""
|
2483 |
"Activation failed. Please check your purchase code or license type."
|
2484 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
2485 |
msgstr ""
|
2486 |
|
2487 |
-
#: app/features/mec.php:
|
2488 |
msgid "Troubleshooting"
|
2489 |
msgstr ""
|
2490 |
|
2491 |
-
#: app/features/mec.php:
|
2492 |
msgid "Select Date"
|
2493 |
msgstr ""
|
2494 |
|
2495 |
-
#: app/features/mec.php:
|
2496 |
#, php-format
|
2497 |
msgid "%s to %s"
|
2498 |
msgstr ""
|
2499 |
|
2500 |
-
#: app/features/mec.php:
|
2501 |
msgid ""
|
2502 |
"Your options is not in JSON format. Please insert correct options in this "
|
2503 |
"field and try again."
|
2504 |
msgstr ""
|
2505 |
|
2506 |
-
#: app/features/mec.php:
|
2507 |
msgid "Your options field can not be empty!"
|
2508 |
msgstr ""
|
2509 |
|
2510 |
-
#: app/features/mec.php:
|
2511 |
msgid "Your options imported successfuly."
|
2512 |
msgstr ""
|
2513 |
|
2514 |
-
#: app/features/mec.php:
|
2515 |
msgid "MEC - Support"
|
2516 |
msgstr ""
|
2517 |
|
2518 |
-
#: app/features/mec.php:
|
2519 |
#: app/features/mec/support.php:80 app/features/mec/support.php:93
|
2520 |
msgid "Support"
|
2521 |
msgstr ""
|
2522 |
|
2523 |
-
#: app/features/mec.php:
|
2524 |
#: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
|
2525 |
-
#: app/libraries/main.php:
|
2526 |
msgid "Organizers"
|
2527 |
msgstr ""
|
2528 |
|
2529 |
-
#: app/features/mec.php:
|
2530 |
#: app/features/mec/dashboard.php:268
|
2531 |
msgid "Shortcodes"
|
2532 |
msgstr ""
|
2533 |
|
2534 |
-
#: app/features/mec.php:
|
2535 |
msgid "MEC - Settings"
|
2536 |
msgstr ""
|
2537 |
|
2538 |
-
#: app/features/mec.php:
|
2539 |
msgid "MEC - Addons"
|
2540 |
msgstr ""
|
2541 |
|
2542 |
-
#: app/features/mec.php:
|
2543 |
msgid "Addons"
|
2544 |
msgstr ""
|
2545 |
|
2546 |
-
#: app/features/mec.php:
|
2547 |
msgid "MEC - Report"
|
2548 |
msgstr ""
|
2549 |
|
2550 |
-
#: app/features/mec.php:
|
2551 |
msgid "Report"
|
2552 |
msgstr ""
|
2553 |
|
2554 |
-
#: app/features/mec.php:
|
2555 |
msgid "MEC - Go Pro"
|
2556 |
msgstr ""
|
2557 |
|
2558 |
-
#: app/features/mec.php:
|
2559 |
#: app/libraries/factory.php:1045
|
2560 |
msgid "Go Pro"
|
2561 |
msgstr ""
|
2562 |
|
2563 |
-
#: app/features/mec.php:
|
2564 |
msgid "Add Shortcode"
|
2565 |
msgstr ""
|
2566 |
|
2567 |
-
#: app/features/mec.php:
|
2568 |
msgid "Add New Shortcode"
|
2569 |
msgstr ""
|
2570 |
|
2571 |
-
#: app/features/mec.php:
|
2572 |
msgid "No shortcodes found!"
|
2573 |
msgstr ""
|
2574 |
|
2575 |
-
#: app/features/mec.php:
|
2576 |
msgid "All Shortcodes"
|
2577 |
msgstr ""
|
2578 |
|
2579 |
-
#: app/features/mec.php:
|
2580 |
msgid "Edit shortcodes"
|
2581 |
msgstr ""
|
2582 |
|
2583 |
-
#: app/features/mec.php:
|
2584 |
msgid "No shortcodes found in Trash!"
|
2585 |
msgstr ""
|
2586 |
|
2587 |
-
#: app/features/mec.php:
|
2588 |
msgid "Display Options"
|
2589 |
msgstr ""
|
2590 |
|
2591 |
-
#: app/features/mec.php:
|
2592 |
msgid "Filter Options"
|
2593 |
msgstr ""
|
2594 |
|
2595 |
-
#: app/features/mec.php:
|
2596 |
msgid "Search Form"
|
2597 |
msgstr ""
|
2598 |
|
2599 |
-
#: app/features/mec.php:
|
2600 |
msgid "Display content's images as Popup"
|
2601 |
msgstr ""
|
2602 |
|
2603 |
-
#: app/features/mec.php:
|
2604 |
msgid "Single Event Display Method"
|
2605 |
msgstr ""
|
2606 |
|
2607 |
-
#: app/features/mec.php:
|
2608 |
msgid "Separate Window"
|
2609 |
msgstr ""
|
2610 |
|
2611 |
-
#: app/features/mec.php:
|
2612 |
msgid "Modal Popup"
|
2613 |
msgstr ""
|
2614 |
|
@@ -2649,8 +2656,8 @@ msgstr ""
|
|
2649 |
#: app/features/mec/notifications.php:828
|
2650 |
#: app/features/mec/notifications.php:926
|
2651 |
#: app/features/mec/notifications.php:940 app/features/mec/settings.php:33
|
2652 |
-
#: app/features/mec/settings.php:
|
2653 |
-
#: app/features/mec/settings.php:
|
2654 |
#: app/features/mec/single.php:17 app/features/mec/single.php:262
|
2655 |
#: app/features/mec/single.php:272 app/features/mec/single.php:314
|
2656 |
#: app/features/mec/single.php:328 app/features/mec/styles.php:11
|
@@ -2857,14 +2864,14 @@ msgstr ""
|
|
2857 |
|
2858 |
#: app/features/mec/booking.php:673 app/features/mec/messages.php:78
|
2859 |
#: app/features/mec/modules.php:393 app/features/mec/notifications.php:904
|
2860 |
-
#: app/features/mec/settings.php:
|
2861 |
#: app/features/mec/styles.php:60 app/features/mec/styling.php:311
|
2862 |
msgid "Saved"
|
2863 |
msgstr ""
|
2864 |
|
2865 |
#: app/features/mec/booking.php:674 app/features/mec/messages.php:79
|
2866 |
#: app/features/mec/modules.php:394 app/features/mec/notifications.php:905
|
2867 |
-
#: app/features/mec/settings.php:
|
2868 |
#: app/features/mec/styles.php:61 app/features/mec/styling.php:312
|
2869 |
msgid "Settings Saved!"
|
2870 |
msgstr ""
|
@@ -2872,14 +2879,14 @@ msgstr ""
|
|
2872 |
#: app/features/mec/booking.php:676 app/features/mec/booking.php:698
|
2873 |
#: app/features/mec/modules.php:396 app/features/mec/modules.php:418
|
2874 |
#: app/features/mec/notifications.php:907
|
2875 |
-
#: app/features/mec/notifications.php:929 app/features/mec/settings.php:
|
2876 |
-
#: app/features/mec/settings.php:
|
2877 |
-
#: app/features/mec/single.php:317 app/libraries/main.php:
|
2878 |
msgid "Verified"
|
2879 |
msgstr ""
|
2880 |
|
2881 |
#: app/features/mec/booking.php:700 app/features/mec/modules.php:420
|
2882 |
-
#: app/features/mec/notifications.php:931 app/features/mec/settings.php:
|
2883 |
#: app/features/mec/single.php:319
|
2884 |
msgid "Please Refresh Page"
|
2885 |
msgstr ""
|
@@ -4048,9 +4055,9 @@ msgstr ""
|
|
4048 |
#: app/features/mec/meta_boxes/search_form.php:606
|
4049 |
#: app/features/mec/meta_boxes/search_form.php:676
|
4050 |
#: app/features/mec/meta_boxes/search_form.php:782
|
4051 |
-
#: app/features/mec/settings.php:
|
4052 |
#: app/features/search.php:83 app/features/speakers.php:61
|
4053 |
-
#: app/features/speakers.php:269 app/libraries/main.php:
|
4054 |
#: app/libraries/skins.php:955
|
4055 |
msgid "Speaker"
|
4056 |
msgstr ""
|
@@ -4066,7 +4073,7 @@ msgstr ""
|
|
4066 |
#: app/features/mec/meta_boxes/search_form.php:613
|
4067 |
#: app/features/mec/meta_boxes/search_form.php:683
|
4068 |
#: app/features/mec/meta_boxes/search_form.php:789
|
4069 |
-
#: app/features/mec/settings.php:
|
4070 |
#: app/features/search.php:88 app/libraries/skins.php:981
|
4071 |
msgid "Tag"
|
4072 |
msgstr ""
|
@@ -4171,8 +4178,8 @@ msgstr ""
|
|
4171 |
msgid "Google Map Options"
|
4172 |
msgstr ""
|
4173 |
|
4174 |
-
#: app/features/mec/modules.php:86 app/features/mec/settings.php:
|
4175 |
-
#: app/features/mec/settings.php:
|
4176 |
msgid "Required!"
|
4177 |
msgstr ""
|
4178 |
|
@@ -4267,9 +4274,9 @@ msgstr ""
|
|
4267 |
msgid "Show weather module on event page"
|
4268 |
msgstr ""
|
4269 |
|
4270 |
-
#: app/features/mec/modules.php:239 app/features/mec/settings.php:
|
4271 |
-
#: app/features/mec/settings.php:
|
4272 |
-
#: app/features/mec/settings.php:
|
4273 |
msgid "API Key"
|
4274 |
msgstr ""
|
4275 |
|
@@ -4744,7 +4751,7 @@ msgid ""
|
|
4744 |
msgstr ""
|
4745 |
|
4746 |
#: app/features/mec/notifications.php:387
|
4747 |
-
#: app/features/mec/notifications.php:
|
4748 |
msgid "Send the email to admin"
|
4749 |
msgstr ""
|
4750 |
|
@@ -4770,7 +4777,7 @@ msgid "It sends to admin to notify him/her that a new booking received."
|
|
4770 |
msgstr ""
|
4771 |
|
4772 |
#: app/features/mec/notifications.php:530 app/libraries/main.php:581
|
4773 |
-
#: app/libraries/notifications.php:
|
4774 |
msgid "Booking Reminder"
|
4775 |
msgstr ""
|
4776 |
|
@@ -4829,8 +4836,8 @@ msgid "Status of event"
|
|
4829 |
msgstr ""
|
4830 |
|
4831 |
#: app/features/mec/notifications.php:720
|
4832 |
-
#: app/features/mec/notifications.php:803 app/features/mec/settings.php:
|
4833 |
-
#: app/features/mec/settings.php:
|
4834 |
msgid "Event Note"
|
4835 |
msgstr ""
|
4836 |
|
@@ -5000,7 +5007,7 @@ msgid "You can enable/disable Schema scripts"
|
|
5000 |
msgstr ""
|
5001 |
|
5002 |
#: app/features/mec/settings.php:154 app/features/mec/settings.php:164
|
5003 |
-
#: app/libraries/main.php:
|
5004 |
msgid "Weekdays"
|
5005 |
msgstr ""
|
5006 |
|
@@ -5334,7 +5341,7 @@ msgstr ""
|
|
5334 |
msgid "Fees / Taxes Options"
|
5335 |
msgstr ""
|
5336 |
|
5337 |
-
#: app/features/mec/settings.php:
|
5338 |
#, php-format
|
5339 |
msgid ""
|
5340 |
"Users can put a note for editors while they're submitting the event. Also "
|
@@ -5342,145 +5349,145 @@ msgid ""
|
|
5342 |
"users' note in email."
|
5343 |
msgstr ""
|
5344 |
|
5345 |
-
#: app/features/mec/settings.php:
|
5346 |
msgid "Visibility of Note"
|
5347 |
msgstr ""
|
5348 |
|
5349 |
-
#: app/features/mec/settings.php:
|
5350 |
msgid "Always"
|
5351 |
msgstr ""
|
5352 |
|
5353 |
-
#: app/features/mec/settings.php:
|
5354 |
msgid "While event is not published"
|
5355 |
msgstr ""
|
5356 |
|
5357 |
-
#: app/features/mec/settings.php:
|
5358 |
msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
|
5359 |
msgstr ""
|
5360 |
|
5361 |
-
#: app/features/mec/settings.php:
|
5362 |
msgid "User Profile"
|
5363 |
msgstr ""
|
5364 |
|
5365 |
-
#: app/features/mec/settings.php:
|
5366 |
#, php-format
|
5367 |
msgid ""
|
5368 |
"Put %s shortcode into your desired page. Then users are able to see history "
|
5369 |
"of their bookings."
|
5370 |
msgstr ""
|
5371 |
|
5372 |
-
#: app/features/mec/settings.php:
|
5373 |
msgid "Search Bar"
|
5374 |
msgstr ""
|
5375 |
|
5376 |
-
#: app/features/mec/settings.php:
|
5377 |
#, php-format
|
5378 |
msgid ""
|
5379 |
"Put %s shortcode into your desired page. Then users are able to search events"
|
5380 |
msgstr ""
|
5381 |
|
5382 |
-
#: app/features/mec/settings.php:
|
5383 |
msgid "Ajax Live mode"
|
5384 |
msgstr ""
|
5385 |
|
5386 |
-
#: app/features/mec/settings.php:
|
5387 |
msgid "Ajax mode"
|
5388 |
msgstr ""
|
5389 |
|
5390 |
-
#: app/features/mec/settings.php:
|
5391 |
msgid ""
|
5392 |
"if you enable this option, search button disappeared and to use this "
|
5393 |
"feature, text input field must be enabled."
|
5394 |
msgstr ""
|
5395 |
|
5396 |
-
#: app/features/mec/settings.php:
|
5397 |
msgid "Modern Type"
|
5398 |
msgstr ""
|
5399 |
|
5400 |
-
#: app/features/mec/settings.php:
|
5401 |
msgid "Search bar fields"
|
5402 |
msgstr ""
|
5403 |
|
5404 |
-
#: app/features/mec/settings.php:
|
5405 |
msgid "Text input"
|
5406 |
msgstr ""
|
5407 |
|
5408 |
-
#: app/features/mec/settings.php:
|
5409 |
msgid "Enable Mailchimp Integration"
|
5410 |
msgstr ""
|
5411 |
|
5412 |
-
#: app/features/mec/settings.php:
|
5413 |
-
#: app/features/mec/settings.php:
|
5414 |
msgid "List ID"
|
5415 |
msgstr ""
|
5416 |
|
5417 |
-
#: app/features/mec/settings.php:
|
5418 |
msgid "Subscription Status"
|
5419 |
msgstr ""
|
5420 |
|
5421 |
-
#: app/features/mec/settings.php:
|
5422 |
msgid "Subscribe automatically"
|
5423 |
msgstr ""
|
5424 |
|
5425 |
-
#: app/features/mec/settings.php:
|
5426 |
msgid "Subscribe by verification"
|
5427 |
msgstr ""
|
5428 |
|
5429 |
-
#: app/features/mec/settings.php:
|
5430 |
msgid ""
|
5431 |
"If you choose \"Subscribe by verification\" then an email will send to user "
|
5432 |
"by mailchimp for subscription verification."
|
5433 |
msgstr ""
|
5434 |
|
5435 |
-
#: app/features/mec/settings.php:
|
5436 |
msgid "Campaign Monitor Integration"
|
5437 |
msgstr ""
|
5438 |
|
5439 |
-
#: app/features/mec/settings.php:
|
5440 |
msgid "Enable Campaign Monitor Integration"
|
5441 |
msgstr ""
|
5442 |
|
5443 |
-
#: app/features/mec/settings.php:
|
5444 |
msgid "MailerLite Integration"
|
5445 |
msgstr ""
|
5446 |
|
5447 |
-
#: app/features/mec/settings.php:
|
5448 |
msgid "Enable MailerLite Integration"
|
5449 |
msgstr ""
|
5450 |
|
5451 |
-
#: app/features/mec/settings.php:
|
5452 |
msgid "Group ID"
|
5453 |
msgstr ""
|
5454 |
|
5455 |
-
#: app/features/mec/settings.php:
|
5456 |
msgid "Constant Contact Integration"
|
5457 |
msgstr ""
|
5458 |
|
5459 |
-
#: app/features/mec/settings.php:
|
5460 |
msgid "Enable constantcontact Integration"
|
5461 |
msgstr ""
|
5462 |
|
5463 |
-
#: app/features/mec/settings.php:
|
5464 |
msgid "Upload Field Options"
|
5465 |
msgstr ""
|
5466 |
|
5467 |
-
#: app/features/mec/settings.php:
|
5468 |
msgid "Mime types"
|
5469 |
msgstr ""
|
5470 |
|
5471 |
-
#: app/features/mec/settings.php:
|
5472 |
msgid "Split mime types with \",\"."
|
5473 |
msgstr ""
|
5474 |
|
5475 |
-
#: app/features/mec/settings.php:
|
5476 |
msgid "Default: jpeg,jpg,png,pdf"
|
5477 |
msgstr ""
|
5478 |
|
5479 |
-
#: app/features/mec/settings.php:
|
5480 |
msgid "Maximum file size"
|
5481 |
msgstr ""
|
5482 |
|
5483 |
-
#: app/features/mec/settings.php:
|
5484 |
msgid "The unit is Megabyte \"MB\""
|
5485 |
msgstr ""
|
5486 |
|
@@ -6237,7 +6244,7 @@ msgstr ""
|
|
6237 |
msgid "eg. https://webnus.net"
|
6238 |
msgstr ""
|
6239 |
|
6240 |
-
#: app/features/organizers.php:312 app/libraries/main.php:
|
6241 |
#: app/skins/single.php:873
|
6242 |
msgid "Other Organizers"
|
6243 |
msgstr ""
|
@@ -6296,9 +6303,9 @@ msgid "Prev"
|
|
6296 |
msgstr ""
|
6297 |
|
6298 |
#: app/features/popup/event.php:392 app/features/popup/shortcode.php:373
|
6299 |
-
#: app/modules/booking/steps/form.php:
|
6300 |
-
#: app/modules/booking/steps/tickets.php:77 app/skins/countdown/tpl.php:
|
6301 |
-
#: app/skins/countdown/tpl.php:
|
6302 |
msgid "Next"
|
6303 |
msgstr ""
|
6304 |
|
@@ -6344,7 +6351,7 @@ msgstr ""
|
|
6344 |
msgid "Please %s/%s in order to see your bookings / profile."
|
6345 |
msgstr ""
|
6346 |
|
6347 |
-
#: app/features/profile/profile.php:18 app/libraries/main.php:
|
6348 |
msgid "Your booking already canceled!"
|
6349 |
msgstr ""
|
6350 |
|
@@ -6352,11 +6359,11 @@ msgstr ""
|
|
6352 |
msgid "#"
|
6353 |
msgstr ""
|
6354 |
|
6355 |
-
#: app/features/profile/profile.php:56 app/libraries/main.php:
|
6356 |
msgid "Status"
|
6357 |
msgstr ""
|
6358 |
|
6359 |
-
#: app/features/profile/profile.php:59 app/libraries/main.php:
|
6360 |
msgid "Attendees"
|
6361 |
msgstr ""
|
6362 |
|
@@ -6385,7 +6392,55 @@ msgstr ""
|
|
6385 |
msgid "No bookings found!"
|
6386 |
msgstr ""
|
6387 |
|
6388 |
-
#: app/features/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6389 |
msgid "label"
|
6390 |
msgstr ""
|
6391 |
|
@@ -6410,13 +6465,13 @@ msgid "No search result."
|
|
6410 |
msgstr ""
|
6411 |
|
6412 |
#: app/features/search_bar/search_result.php:12
|
6413 |
-
#: app/libraries/notifications.php:
|
6414 |
#: app/modules/local-time/details.php:48 app/modules/local-time/type1.php:44
|
6415 |
#: app/modules/local-time/type2.php:46 app/modules/local-time/type3.php:44
|
6416 |
#: app/modules/next-event/details.php:104 app/skins/single.php:166
|
6417 |
#: app/skins/single.php:764 app/skins/single/default.php:108
|
6418 |
#: app/skins/single/default.php:331 app/skins/single/m1.php:43
|
6419 |
-
#: app/skins/single/modern.php:
|
6420 |
msgid "All Day"
|
6421 |
msgstr ""
|
6422 |
|
@@ -6521,8 +6576,8 @@ msgid "day"
|
|
6521 |
msgstr ""
|
6522 |
|
6523 |
#: app/libraries/factory.php:373 app/modules/countdown/details.php:138
|
6524 |
-
#: app/skins/available_spot/tpl.php:
|
6525 |
-
#: app/skins/countdown/tpl.php:
|
6526 |
msgid "days"
|
6527 |
msgstr ""
|
6528 |
|
@@ -6531,8 +6586,8 @@ msgid "hour"
|
|
6531 |
msgstr ""
|
6532 |
|
6533 |
#: app/libraries/factory.php:375 app/modules/countdown/details.php:145
|
6534 |
-
#: app/skins/available_spot/tpl.php:
|
6535 |
-
#: app/skins/countdown/tpl.php:
|
6536 |
msgid "hours"
|
6537 |
msgstr ""
|
6538 |
|
@@ -6541,8 +6596,8 @@ msgid "minute"
|
|
6541 |
msgstr ""
|
6542 |
|
6543 |
#: app/libraries/factory.php:377 app/modules/countdown/details.php:152
|
6544 |
-
#: app/skins/available_spot/tpl.php:
|
6545 |
-
#: app/skins/countdown/tpl.php:
|
6546 |
msgid "minutes"
|
6547 |
msgstr ""
|
6548 |
|
@@ -6551,8 +6606,8 @@ msgid "second"
|
|
6551 |
msgstr ""
|
6552 |
|
6553 |
#: app/libraries/factory.php:379 app/modules/countdown/details.php:159
|
6554 |
-
#: app/skins/available_spot/tpl.php:
|
6555 |
-
#: app/skins/countdown/tpl.php:
|
6556 |
msgid "seconds"
|
6557 |
msgstr ""
|
6558 |
|
@@ -6643,31 +6698,31 @@ msgstr ""
|
|
6643 |
msgid "Tile View"
|
6644 |
msgstr ""
|
6645 |
|
6646 |
-
#: app/libraries/main.php:385 app/libraries/main.php:
|
6647 |
msgid "SU"
|
6648 |
msgstr ""
|
6649 |
|
6650 |
-
#: app/libraries/main.php:386 app/libraries/main.php:
|
6651 |
msgid "MO"
|
6652 |
msgstr ""
|
6653 |
|
6654 |
-
#: app/libraries/main.php:387 app/libraries/main.php:
|
6655 |
msgid "TU"
|
6656 |
msgstr ""
|
6657 |
|
6658 |
-
#: app/libraries/main.php:388 app/libraries/main.php:
|
6659 |
msgid "WE"
|
6660 |
msgstr ""
|
6661 |
|
6662 |
-
#: app/libraries/main.php:389 app/libraries/main.php:
|
6663 |
msgid "TH"
|
6664 |
msgstr ""
|
6665 |
|
6666 |
-
#: app/libraries/main.php:390 app/libraries/main.php:
|
6667 |
msgid "FR"
|
6668 |
msgstr ""
|
6669 |
|
6670 |
-
#: app/libraries/main.php:391 app/libraries/main.php:
|
6671 |
msgid "SA"
|
6672 |
msgstr ""
|
6673 |
|
@@ -6814,372 +6869,372 @@ msgstr ""
|
|
6814 |
msgid "Custom Shortcode"
|
6815 |
msgstr ""
|
6816 |
|
6817 |
-
#: app/libraries/main.php:
|
6818 |
msgid "Your booking already verified!"
|
6819 |
msgstr ""
|
6820 |
|
6821 |
-
#: app/libraries/main.php:
|
6822 |
msgid "Your booking successfully verified."
|
6823 |
msgstr ""
|
6824 |
|
6825 |
-
#: app/libraries/main.php:
|
6826 |
msgid "Your booking cannot verify!"
|
6827 |
msgstr ""
|
6828 |
|
6829 |
-
#: app/libraries/main.php:
|
6830 |
msgid "Your booking successfully canceled."
|
6831 |
msgstr ""
|
6832 |
|
6833 |
-
#: app/libraries/main.php:
|
6834 |
msgid "Your booking cannot be canceled."
|
6835 |
msgstr ""
|
6836 |
|
6837 |
-
#: app/libraries/main.php:
|
6838 |
msgid "You canceled the payment successfully."
|
6839 |
msgstr ""
|
6840 |
|
6841 |
-
#: app/libraries/main.php:
|
6842 |
msgid "You returned from payment gateway successfully."
|
6843 |
msgstr ""
|
6844 |
|
6845 |
-
#: app/libraries/main.php:
|
6846 |
msgid "Cannot find the invoice!"
|
6847 |
msgstr ""
|
6848 |
|
6849 |
-
#: app/libraries/main.php:
|
6850 |
msgid "Invoice is invalid."
|
6851 |
msgstr ""
|
6852 |
|
6853 |
-
#: app/libraries/main.php:
|
6854 |
msgid ""
|
6855 |
"Your booking still is not confirmed. You able download it after confirmation!"
|
6856 |
msgstr ""
|
6857 |
|
6858 |
-
#: app/libraries/main.php:
|
6859 |
msgid "Booking Not Confirmed."
|
6860 |
msgstr ""
|
6861 |
|
6862 |
-
#: app/libraries/main.php:
|
6863 |
msgid "Cannot find the booking!"
|
6864 |
msgstr ""
|
6865 |
|
6866 |
-
#: app/libraries/main.php:
|
6867 |
msgid "Booking is invalid."
|
6868 |
msgstr ""
|
6869 |
|
6870 |
-
#: app/libraries/main.php:
|
6871 |
#, php-format
|
6872 |
msgid "%s Invoice"
|
6873 |
msgstr ""
|
6874 |
|
6875 |
-
#: app/libraries/main.php:
|
6876 |
msgid "Billing"
|
6877 |
msgstr ""
|
6878 |
|
6879 |
-
#: app/libraries/main.php:
|
6880 |
msgid "Coupon Code"
|
6881 |
msgstr ""
|
6882 |
|
6883 |
-
#: app/libraries/main.php:
|
6884 |
msgid "Total"
|
6885 |
msgstr ""
|
6886 |
|
6887 |
-
#: app/libraries/main.php:
|
6888 |
msgid "Payment"
|
6889 |
msgstr ""
|
6890 |
|
6891 |
-
#: app/libraries/main.php:
|
6892 |
msgid "Gateway"
|
6893 |
msgstr ""
|
6894 |
|
6895 |
-
#: app/libraries/main.php:
|
6896 |
msgid "Payment Time"
|
6897 |
msgstr ""
|
6898 |
|
6899 |
-
#: app/libraries/main.php:
|
6900 |
msgid "Request is not valid."
|
6901 |
msgstr ""
|
6902 |
|
6903 |
-
#: app/libraries/main.php:
|
6904 |
msgid "iCal export stopped!"
|
6905 |
msgstr ""
|
6906 |
|
6907 |
-
#: app/libraries/main.php:
|
6908 |
-
#: app/libraries/main.php:
|
6909 |
-
#: app/libraries/main.php:
|
6910 |
-
#: app/libraries/main.php:
|
6911 |
-
#: app/libraries/main.php:
|
6912 |
-
#: app/libraries/main.php:
|
6913 |
-
#: app/libraries/main.php:
|
6914 |
msgid "Sort"
|
6915 |
msgstr ""
|
6916 |
|
6917 |
-
#: app/libraries/main.php:
|
6918 |
-
#: app/libraries/main.php:
|
6919 |
-
#: app/libraries/main.php:
|
6920 |
-
#: app/libraries/main.php:
|
6921 |
-
#: app/libraries/main.php:
|
6922 |
-
#: app/libraries/main.php:
|
6923 |
msgid "Required Field"
|
6924 |
msgstr ""
|
6925 |
|
6926 |
-
#: app/libraries/main.php:
|
6927 |
-
#: app/libraries/main.php:
|
6928 |
-
#: app/libraries/main.php:
|
6929 |
-
#: app/libraries/main.php:
|
6930 |
-
#: app/libraries/main.php:
|
6931 |
-
#: app/libraries/main.php:
|
6932 |
msgid "Insert a label for this field"
|
6933 |
msgstr ""
|
6934 |
|
6935 |
-
#: app/libraries/main.php:
|
6936 |
msgid "HTML and shortcode are allowed."
|
6937 |
msgstr ""
|
6938 |
|
6939 |
-
#: app/libraries/main.php:
|
6940 |
-
#: app/libraries/main.php:
|
6941 |
msgid "Option"
|
6942 |
msgstr ""
|
6943 |
|
6944 |
-
#: app/libraries/main.php:
|
6945 |
#, php-format
|
6946 |
msgid "Instead of %s, the page title with a link will be show."
|
6947 |
msgstr ""
|
6948 |
|
6949 |
-
#: app/libraries/main.php:
|
6950 |
msgid "Agreement Page"
|
6951 |
msgstr ""
|
6952 |
|
6953 |
-
#: app/libraries/main.php:
|
6954 |
msgid "Checked by default"
|
6955 |
msgstr ""
|
6956 |
|
6957 |
-
#: app/libraries/main.php:
|
6958 |
msgid "Unchecked by default"
|
6959 |
msgstr ""
|
6960 |
|
6961 |
-
#: app/libraries/main.php:
|
6962 |
msgid "Insert a label for this option"
|
6963 |
msgstr ""
|
6964 |
|
6965 |
-
#: app/libraries/main.php:
|
6966 |
msgid "Free"
|
6967 |
msgstr ""
|
6968 |
|
6969 |
-
#: app/libraries/main.php:
|
6970 |
msgid "M.E. Calender"
|
6971 |
msgstr ""
|
6972 |
|
6973 |
-
#: app/libraries/main.php:
|
6974 |
#, php-format
|
6975 |
msgid "Copy of %s"
|
6976 |
msgstr ""
|
6977 |
|
6978 |
-
#: app/libraries/main.php:
|
6979 |
msgid "Booked an event."
|
6980 |
msgstr ""
|
6981 |
|
6982 |
-
#: app/libraries/main.php:
|
6983 |
#, php-format
|
6984 |
msgid "%s booked %s event."
|
6985 |
msgstr ""
|
6986 |
|
6987 |
-
#: app/libraries/main.php:
|
6988 |
msgid "Taxonomies"
|
6989 |
msgstr ""
|
6990 |
|
6991 |
-
#: app/libraries/main.php:
|
6992 |
msgid "Category Plural Label"
|
6993 |
msgstr ""
|
6994 |
|
6995 |
-
#: app/libraries/main.php:
|
6996 |
msgid "Category Singular Label"
|
6997 |
msgstr ""
|
6998 |
|
6999 |
-
#: app/libraries/main.php:
|
7000 |
msgid "Label Plural Label"
|
7001 |
msgstr ""
|
7002 |
|
7003 |
-
#: app/libraries/main.php:
|
7004 |
msgid "Label Singular Label"
|
7005 |
msgstr ""
|
7006 |
|
7007 |
-
#: app/libraries/main.php:
|
7008 |
msgid "Location Plural Label"
|
7009 |
msgstr ""
|
7010 |
|
7011 |
-
#: app/libraries/main.php:
|
7012 |
msgid "Location Singular Label"
|
7013 |
msgstr ""
|
7014 |
|
7015 |
-
#: app/libraries/main.php:
|
7016 |
msgid "Organizer Plural Label"
|
7017 |
msgstr ""
|
7018 |
|
7019 |
-
#: app/libraries/main.php:
|
7020 |
msgid "Organizer Singular Label"
|
7021 |
msgstr ""
|
7022 |
|
7023 |
-
#: app/libraries/main.php:
|
7024 |
msgid "Speaker Plural Label"
|
7025 |
msgstr ""
|
7026 |
|
7027 |
-
#: app/libraries/main.php:
|
7028 |
msgid "Speaker Singular Label"
|
7029 |
msgstr ""
|
7030 |
|
7031 |
-
#: app/libraries/main.php:
|
7032 |
msgid "Sunday abbreviation"
|
7033 |
msgstr ""
|
7034 |
|
7035 |
-
#: app/libraries/main.php:
|
7036 |
msgid "Monday abbreviation"
|
7037 |
msgstr ""
|
7038 |
|
7039 |
-
#: app/libraries/main.php:
|
7040 |
msgid "Tuesday abbreviation"
|
7041 |
msgstr ""
|
7042 |
|
7043 |
-
#: app/libraries/main.php:
|
7044 |
msgid "Wednesday abbreviation"
|
7045 |
msgstr ""
|
7046 |
|
7047 |
-
#: app/libraries/main.php:
|
7048 |
msgid "Thursday abbreviation"
|
7049 |
msgstr ""
|
7050 |
|
7051 |
-
#: app/libraries/main.php:
|
7052 |
msgid "Friday abbreviation"
|
7053 |
msgstr ""
|
7054 |
|
7055 |
-
#: app/libraries/main.php:
|
7056 |
msgid "Saturday abbreviation"
|
7057 |
msgstr ""
|
7058 |
|
7059 |
-
#: app/libraries/main.php:
|
7060 |
msgid "Others"
|
7061 |
msgstr ""
|
7062 |
|
7063 |
-
#: app/libraries/main.php:
|
7064 |
msgid "Booking Success Message"
|
7065 |
msgstr ""
|
7066 |
|
7067 |
-
#: app/libraries/main.php:
|
7068 |
msgid ""
|
7069 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
7070 |
"needed, please check your email."
|
7071 |
msgstr ""
|
7072 |
|
7073 |
-
#: app/libraries/main.php:
|
7074 |
msgid "Register Button"
|
7075 |
msgstr ""
|
7076 |
|
7077 |
-
#: app/libraries/main.php:
|
7078 |
-
#: app/skins/carousel/render.php:
|
7079 |
-
#: app/skins/grid/render.php:
|
7080 |
-
#: app/skins/grid/render.php:
|
7081 |
-
#: app/skins/list/render.php:
|
7082 |
-
#: app/skins/masonry/render.php:
|
7083 |
#: app/skins/single.php:788 app/skins/single/default.php:260
|
7084 |
#: app/skins/single/default.php:262 app/skins/single/default.php:483
|
7085 |
#: app/skins/single/default.php:485 app/skins/single/m1.php:140
|
7086 |
#: app/skins/single/m1.php:142 app/skins/single/m2.php:66
|
7087 |
-
#: app/skins/single/m2.php:68 app/skins/single/modern.php:
|
7088 |
-
#: app/skins/single/modern.php:
|
7089 |
-
#: app/skins/slider/render.php:
|
7090 |
-
#: app/skins/slider/render.php:
|
7091 |
msgid "REGISTER"
|
7092 |
msgstr ""
|
7093 |
|
7094 |
-
#: app/libraries/main.php:
|
7095 |
msgid "View Detail Button"
|
7096 |
msgstr ""
|
7097 |
|
7098 |
-
#: app/libraries/main.php:
|
7099 |
-
#: app/skins/carousel/render.php:
|
7100 |
-
#:
|
7101 |
-
#: app/skins/grid/render.php:255 app/skins/list/render.php:111
|
7102 |
-
#: app/skins/list/render.php:199 app/skins/masonry/render.php:190
|
7103 |
-
#: app/skins/slider/render.php:116 app/skins/slider/render.php:168
|
7104 |
-
#: app/skins/slider/render.php:219 app/skins/slider/render.php:271
|
7105 |
-
#: app/skins/slider/render.php:334
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: modern-events-calendar\n"
|
4 |
+
"POT-Creation-Date: 2020-03-31 19:33+0430\n"
|
5 |
+
"PO-Revision-Date: 2020-03-31 19:37+0430\n"
|
6 |
"Last-Translator: Howard <howard@realtyna.com>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: en_US\n"
|
26 |
msgid "Content"
|
27 |
msgstr ""
|
28 |
|
29 |
+
#: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:448
|
30 |
+
#: app/features/mec.php:479 app/features/mec.php:509
|
31 |
msgid "Shortcode"
|
32 |
msgstr ""
|
33 |
|
65 |
msgid "Recent Colors"
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: app/features/contextual.php:55 app/features/mec.php:424
|
69 |
#: app/features/mec/dashboard.php:143 app/features/mec/support.php:20
|
70 |
#: app/features/popup/event.php:60 app/features/popup/shortcode.php:37
|
71 |
#: app/libraries/main.php:594
|
72 |
msgid "Settings"
|
73 |
msgstr ""
|
74 |
|
75 |
+
#: app/features/contextual.php:62 app/features/events.php:2479
|
76 |
#: app/features/mec/booking.php:448 app/features/mec/support.php:29
|
77 |
#: app/libraries/main.php:560
|
78 |
msgid "Booking Form"
|
234 |
msgid "BuddyPress Integration"
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: app/features/contextual.php:334 app/features/mec/settings.php:886
|
238 |
#: app/libraries/main.php:539
|
239 |
msgid "Mailchimp Integration"
|
240 |
msgstr ""
|
260 |
msgid "Event"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: app/features/events.php:160 app/features/mec.php:410
|
264 |
msgid "Add Event"
|
265 |
msgstr ""
|
266 |
|
268 |
msgid "Add New Event"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: app/features/events.php:162 app/features/ix.php:3918
|
272 |
+
#: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:68
|
273 |
+
#: app/skins/map/tpl.php:88
|
274 |
msgid "No events found!"
|
275 |
msgstr ""
|
276 |
|
291 |
msgid "No events found in Trash!"
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: app/features/events.php:183 app/features/events.php:3357
|
295 |
#: app/features/mec/meta_boxes/display_options.php:1116
|
296 |
#: app/features/mec/meta_boxes/search_form.php:31
|
297 |
#: app/features/mec/meta_boxes/search_form.php:101
|
304 |
#: app/features/mec/meta_boxes/search_form.php:584
|
305 |
#: app/features/mec/meta_boxes/search_form.php:654
|
306 |
#: app/features/mec/meta_boxes/search_form.php:760
|
307 |
+
#: app/features/mec/settings.php:839 app/features/mec/single.php:232
|
308 |
+
#: app/features/search.php:68 app/libraries/main.php:5407
|
309 |
#: app/libraries/skins.php:877 app/skins/single.php:576
|
310 |
#: app/skins/single/default.php:192 app/skins/single/default.php:415
|
311 |
#: app/skins/single/m1.php:184 app/skins/single/m2.php:110
|
312 |
+
#: app/skins/single/modern.php:119
|
313 |
msgid "Category"
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: app/features/events.php:184 app/features/events.php:3312
|
317 |
+
#: app/features/fes/form.php:767 app/features/mec.php:412
|
318 |
+
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5406
|
319 |
msgid "Categories"
|
320 |
msgstr ""
|
321 |
|
399 |
msgid "Event Repeating"
|
400 |
msgstr ""
|
401 |
|
402 |
+
#: app/features/events.php:334 app/features/events.php:1294
|
403 |
#: app/features/mec/settings.php:743 app/skins/single.php:964
|
404 |
msgid "Hourly Schedule"
|
405 |
msgstr ""
|
412 |
msgid "Links"
|
413 |
msgstr ""
|
414 |
|
415 |
+
#: app/features/events.php:337 app/features/events.php:3359
|
416 |
+
#: app/features/events.php:3550 app/features/events.php:3592
|
417 |
#: app/features/ix.php:3508 app/features/ix.php:3549
|
418 |
#: app/features/mec/meta_boxes/display_options.php:1119
|
419 |
#: app/features/mec/meta_boxes/search_form.php:46
|
427 |
#: app/features/mec/meta_boxes/search_form.php:599
|
428 |
#: app/features/mec/meta_boxes/search_form.php:669
|
429 |
#: app/features/mec/meta_boxes/search_form.php:775
|
430 |
+
#: app/features/mec/settings.php:851 app/features/mec/single.php:236
|
431 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
432 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
433 |
#: app/features/organizers.php:271 app/features/popup/event.php:293
|
434 |
#: app/features/popup/event.php:302 app/features/search.php:78
|
435 |
+
#: app/libraries/main.php:5413 app/libraries/skins.php:929
|
436 |
#: app/skins/single.php:823 app/skins/single/default.php:217
|
437 |
#: app/skins/single/default.php:440 app/skins/single/m1.php:99
|
438 |
+
#: app/skins/single/m2.php:25 app/skins/single/modern.php:35
|
439 |
msgid "Organizer"
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: app/features/events.php:338 app/features/events.php:1171
|
443 |
+
#: app/features/fes/form.php:740 app/libraries/main.php:5440
|
444 |
#: app/skins/single.php:599 app/skins/single/default.php:126
|
445 |
#: app/skins/single/default.php:349 app/skins/single/m1.php:58
|
446 |
+
#: app/skins/single/modern.php:214
|
447 |
msgid "Cost"
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: app/features/events.php:339 app/features/mec/settings.php:767
|
451 |
+
#: app/features/schema.php:62
|
452 |
+
msgid "SEO Schema"
|
453 |
msgstr ""
|
454 |
|
455 |
#: app/features/events.php:464
|
456 |
+
msgid "Note for reviewer"
|
457 |
+
msgstr ""
|
458 |
+
|
459 |
+
#: app/features/events.php:470
|
460 |
msgid "Guest Data"
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: app/features/events.php:471 app/features/events.php:2461
|
464 |
+
#: app/features/events.php:3883 app/features/fes.php:223
|
465 |
#: app/features/fes/form.php:699 app/features/labels.php:178
|
466 |
#: app/features/mec/booking.php:45 app/features/organizers.php:279
|
467 |
#: app/features/popup/event.php:312 app/features/profile/profile.php:180
|
468 |
+
#: app/libraries/notifications.php:1141 app/modules/booking/steps/form.php:37
|
469 |
msgid "Name"
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: app/features/events.php:472 app/features/events.php:2472
|
473 |
+
#: app/features/events.php:2548 app/features/events.php:3886
|
474 |
#: app/features/fes.php:223 app/features/fes/form.php:695
|
475 |
#: app/features/mec/booking.php:57 app/features/mec/booking.php:499
|
476 |
#: app/features/organizers.php:111 app/features/organizers.php:152
|
477 |
#: app/features/profile/profile.php:183 app/features/speakers.php:127
|
478 |
#: app/features/speakers.php:196 app/libraries/main.php:1595
|
479 |
+
#: app/libraries/main.php:1664 app/libraries/main.php:2892
|
480 |
+
#: app/libraries/notifications.php:1142 app/modules/booking/steps/form.php:46
|
481 |
#: app/modules/booking/steps/form.php:83 app/skins/single.php:840
|
482 |
#: app/skins/single.php:895 app/skins/single/default.php:234
|
483 |
#: app/skins/single/default.php:457 app/skins/single/m1.php:116
|
484 |
+
#: app/skins/single/m2.php:42 app/skins/single/modern.php:52
|
485 |
msgid "Email"
|
486 |
msgstr ""
|
487 |
|
488 |
+
#: app/features/events.php:480 app/features/fes/form.php:246
|
489 |
msgid "Date and Time"
|
490 |
msgstr ""
|
491 |
|
492 |
+
#: app/features/events.php:483 app/features/events.php:489
|
493 |
+
#: app/features/events.php:3360 app/features/events.php:3550
|
494 |
+
#: app/features/events.php:3592 app/features/fes/form.php:250
|
495 |
#: app/features/fes/form.php:254 app/features/ix.php:3508
|
496 |
#: app/features/ix.php:3549 app/features/ix/import_g_calendar.php:38
|
497 |
#: app/features/mec/dashboard.php:405
|
514 |
msgid "Start Date"
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: app/features/events.php:561 app/features/events.php:653
|
518 |
+
#: app/features/events.php:1734 app/features/events.php:1793
|
519 |
+
#: app/features/events.php:1986 app/features/events.php:2025
|
520 |
#: app/features/fes/form.php:282 app/features/fes/form.php:322
|
521 |
#: app/features/popup/event.php:142 app/features/popup/event.php:224
|
522 |
msgid "AM"
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: app/features/events.php:568 app/features/events.php:660
|
526 |
+
#: app/features/events.php:1741 app/features/events.php:1800
|
527 |
+
#: app/features/events.php:1987 app/features/events.php:2026
|
528 |
#: app/features/fes/form.php:283 app/features/fes/form.php:323
|
529 |
#: app/features/popup/event.php:149 app/features/popup/event.php:231
|
530 |
msgid "PM"
|
531 |
msgstr ""
|
532 |
|
533 |
+
#: app/features/events.php:575 app/features/events.php:580
|
534 |
+
#: app/features/events.php:3361 app/features/events.php:3550
|
535 |
+
#: app/features/events.php:3592 app/features/fes/form.php:290
|
536 |
#: app/features/fes/form.php:294 app/features/ix.php:3508
|
537 |
#: app/features/ix.php:3549 app/features/ix/import_g_calendar.php:44
|
538 |
#: app/features/mec/dashboard.php:406 app/features/popup/event.php:157
|
539 |
msgid "End Date"
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: app/features/events.php:675 app/features/fes/form.php:329
|
543 |
#: app/features/popup/event.php:239
|
544 |
msgid "All Day Event"
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: app/features/events.php:685 app/features/fes/form.php:332
|
548 |
msgid "Hide Event Time"
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: app/features/events.php:695 app/features/fes/form.php:335
|
552 |
msgid "Hide Event End Time"
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: app/features/events.php:700 app/features/events.php:704
|
556 |
#: app/features/fes/form.php:339
|
557 |
msgid "Time Comment"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: app/features/events.php:705 app/features/fes/form.php:340
|
561 |
msgid ""
|
562 |
"It shows next to event time on single event page. You can insert Timezone "
|
563 |
"etc. in this field."
|
564 |
msgstr ""
|
565 |
|
566 |
+
#: app/features/events.php:707 app/features/events.php:828
|
567 |
+
#: app/features/events.php:1134 app/features/events.php:1211
|
568 |
+
#: app/features/events.php:1519 app/features/events.php:1609
|
569 |
+
#: app/features/events.php:1821 app/features/events.php:1836
|
570 |
+
#: app/features/events.php:2045 app/features/events.php:2058
|
571 |
+
#: app/features/events.php:2209 app/features/events.php:2245
|
572 |
+
#: app/features/events.php:2343 app/features/events.php:2358
|
573 |
+
#: app/features/events.php:2388 app/features/events.php:2401
|
574 |
#: app/features/fes/form.php:651 app/features/locations.php:301
|
575 |
#: app/features/mec/booking.php:108 app/features/mec/booking.php:158
|
576 |
#: app/features/mec/booking.php:171 app/features/mec/booking.php:187
|
628 |
#: app/features/mec/settings.php:434 app/features/mec/settings.php:451
|
629 |
#: app/features/mec/settings.php:470 app/features/mec/settings.php:484
|
630 |
#: app/features/mec/settings.php:512 app/features/mec/settings.php:599
|
631 |
+
#: app/features/mec/settings.php:778 app/features/mec/settings.php:794
|
632 |
+
#: app/features/mec/settings.php:901 app/features/mec/settings.php:914
|
633 |
+
#: app/features/mec/settings.php:930 app/features/mec/single.php:42
|
634 |
#: app/features/mec/single.php:58 app/features/mec/single.php:77
|
635 |
#: app/features/mec/single.php:94 app/features/mec/single.php:110
|
636 |
#: app/features/mec/single.php:125 app/features/mec/single.php:178
|
640 |
#: app/features/popup/event.php:303 app/skins/single.php:685
|
641 |
#: app/skins/single/default.php:141 app/skins/single/default.php:364
|
642 |
#: app/skins/single/m1.php:206 app/skins/single/m2.php:133
|
643 |
+
#: app/skins/single/modern.php:142
|
644 |
msgid "Read More"
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: app/features/events.php:715
|
648 |
msgid "Repeating"
|
649 |
msgstr ""
|
650 |
|
651 |
+
#: app/features/events.php:724
|
652 |
msgid "Event Repeating (Recurring events)"
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: app/features/events.php:728 app/features/fes/form.php:350
|
656 |
msgid "Repeats"
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: app/features/events.php:736 app/features/fes/form.php:352
|
660 |
#: app/features/mec/dashboard.php:408
|
661 |
+
#: app/skins/default_full_calendar/tpl.php:74
|
662 |
+
#: app/skins/full_calendar/tpl.php:121
|
663 |
msgid "Daily"
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: app/features/events.php:743 app/features/fes/form.php:353
|
667 |
msgid "Every Weekday"
|
668 |
msgstr ""
|
669 |
|
670 |
+
#: app/features/events.php:750 app/features/fes/form.php:354
|
671 |
msgid "Every Weekend"
|
672 |
msgstr ""
|
673 |
|
674 |
+
#: app/features/events.php:757 app/features/fes/form.php:355
|
675 |
msgid "Certain Weekdays"
|
676 |
msgstr ""
|
677 |
|
678 |
+
#: app/features/events.php:764 app/features/fes/form.php:356
|
679 |
+
#: app/skins/default_full_calendar/tpl.php:73
|
680 |
+
#: app/skins/full_calendar/tpl.php:120
|
681 |
msgid "Weekly"
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: app/features/events.php:771 app/features/fes/form.php:357
|
685 |
#: app/features/mec/dashboard.php:409
|
686 |
+
#: app/skins/default_full_calendar/tpl.php:72
|
687 |
+
#: app/skins/full_calendar/tpl.php:119
|
688 |
msgid "Monthly"
|
689 |
msgstr ""
|
690 |
|
691 |
+
#: app/features/events.php:778 app/features/fes/form.php:358
|
692 |
#: app/features/mec/dashboard.php:410
|
693 |
+
#: app/skins/default_full_calendar/tpl.php:71
|
694 |
+
#: app/skins/full_calendar/tpl.php:118
|
695 |
msgid "Yearly"
|
696 |
msgstr ""
|
697 |
|
698 |
+
#: app/features/events.php:785 app/features/fes/form.php:359
|
699 |
msgid "Custom Days"
|
700 |
msgstr ""
|
701 |
|
702 |
+
#: app/features/events.php:792 app/features/fes/form.php:360
|
703 |
msgid "Advanced"
|
704 |
msgstr ""
|
705 |
|
706 |
+
#: app/features/events.php:797 app/features/fes/form.php:364
|
707 |
msgid "Repeat Interval"
|
708 |
msgstr ""
|
709 |
|
710 |
+
#: app/features/events.php:799 app/features/fes/form.php:365
|
711 |
msgid "Repeat interval"
|
712 |
msgstr ""
|
713 |
|
714 |
+
#: app/features/events.php:803 app/features/fes/form.php:368
|
715 |
msgid "Week Days"
|
716 |
msgstr ""
|
717 |
|
718 |
+
#: app/features/events.php:818 app/features/events.php:1905
|
719 |
+
#: app/features/events.php:1933 app/features/events.php:2113
|
720 |
#: app/features/fes/form.php:380 app/features/ix/import_f_calendar.php:42
|
721 |
#: app/features/ix/import_g_calendar.php:51
|
722 |
#: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
|
723 |
msgid "Start"
|
724 |
msgstr ""
|
725 |
|
726 |
+
#: app/features/events.php:820 app/features/events.php:1909
|
727 |
+
#: app/features/events.php:1937 app/features/events.php:2117
|
728 |
#: app/features/fes/form.php:381
|
729 |
msgid "End"
|
730 |
msgstr ""
|
731 |
|
732 |
+
#: app/features/events.php:822 app/features/events.php:1205
|
733 |
+
#: app/features/events.php:1325 app/features/events.php:1430
|
734 |
+
#: app/features/events.php:1888 app/features/events.php:2102
|
735 |
+
#: app/features/events.php:2182 app/features/events.php:2315
|
736 |
#: app/features/fes/form.php:382 app/features/fes/form.php:865
|
737 |
msgid "Add"
|
738 |
msgstr ""
|
739 |
|
740 |
+
#: app/features/events.php:825
|
741 |
msgid "Custom Days Repeating"
|
742 |
msgstr ""
|
743 |
|
744 |
+
#: app/features/events.php:826
|
745 |
msgid ""
|
746 |
"Add certain days to event occurrence dates. If you have single day event, "
|
747 |
"start and end date should be the same, If you have multiple day event the "
|
748 |
"start and end dates must be commensurate with the initial date."
|
749 |
msgstr ""
|
750 |
|
751 |
+
#: app/features/events.php:868 app/features/fes/form.php:415
|
752 |
msgid "First"
|
753 |
msgstr ""
|
754 |
|
755 |
+
#: app/features/events.php:910 app/features/fes/form.php:457
|
756 |
msgid "Second"
|
757 |
msgstr ""
|
758 |
|
759 |
+
#: app/features/events.php:952 app/features/fes/form.php:499
|
760 |
msgid "Third"
|
761 |
msgstr ""
|
762 |
|
763 |
+
#: app/features/events.php:994 app/features/fes/form.php:541
|
764 |
msgid "Fourth"
|
765 |
msgstr ""
|
766 |
|
767 |
+
#: app/features/events.php:1036 app/features/fes/form.php:583
|
768 |
msgid "Last"
|
769 |
msgstr ""
|
770 |
|
771 |
+
#: app/features/events.php:1083 app/features/fes/form.php:629
|
772 |
msgid "Ends Repeat"
|
773 |
msgstr ""
|
774 |
|
775 |
+
#: app/features/events.php:1095 app/features/fes/form.php:633
|
776 |
msgid "Never"
|
777 |
msgstr ""
|
778 |
|
779 |
+
#: app/features/events.php:1107 app/features/fes/form.php:638
|
780 |
msgid "On"
|
781 |
msgstr ""
|
782 |
|
783 |
+
#: app/features/events.php:1123 app/features/fes/form.php:645
|
784 |
msgid "After"
|
785 |
msgstr ""
|
786 |
|
787 |
+
#: app/features/events.php:1127 app/features/events.php:1131
|
788 |
#: app/features/fes/form.php:647 app/features/fes/form.php:650
|
789 |
msgid "Occurrences times"
|
790 |
msgstr ""
|
791 |
|
792 |
+
#: app/features/events.php:1132 app/features/fes/form.php:651
|
793 |
msgid ""
|
794 |
"The event will finish after certain repeats. For example if you set it to "
|
795 |
"10, the event will finish after 10 repeats."
|
796 |
msgstr ""
|
797 |
|
798 |
+
#: app/features/events.php:1147 app/features/fes/form.php:664
|
799 |
msgid "Show only one occurrence of this event"
|
800 |
msgstr ""
|
801 |
|
802 |
+
#: app/features/events.php:1167 app/features/events.php:3550
|
803 |
+
#: app/features/events.php:3592 app/features/fes/form.php:737
|
804 |
#: app/features/ix.php:3508 app/features/ix.php:3549
|
805 |
+
#: app/features/mec/settings.php:689 app/libraries/main.php:5439
|
806 |
#: app/widgets/single.php:103
|
807 |
msgid "Event Cost"
|
808 |
msgstr ""
|
809 |
|
810 |
+
#: app/features/events.php:1192
|
811 |
msgid "Exceptional Days (Exclude Dates)"
|
812 |
msgstr ""
|
813 |
|
814 |
+
#: app/features/events.php:1198 app/features/events.php:1208
|
815 |
msgid "Exclude certain days"
|
816 |
msgstr ""
|
817 |
|
818 |
+
#: app/features/events.php:1203 app/features/events.php:2549
|
819 |
#: app/features/fes.php:223 app/features/mec/booking.php:500
|
820 |
+
#: app/features/profile/profile.php:53 app/libraries/main.php:2302
|
821 |
+
#: app/libraries/main.php:2950 app/modules/booking/steps/tickets.php:23
|
822 |
#: app/modules/next-event/details.php:93 app/skins/single.php:659
|
823 |
#: app/skins/single/default.php:85 app/skins/single/default.php:308
|
824 |
+
#: app/skins/single/m1.php:20 app/skins/single/modern.php:176
|
825 |
msgid "Date"
|
826 |
msgstr ""
|
827 |
|
828 |
+
#: app/features/events.php:1209
|
829 |
msgid ""
|
830 |
"Exclude certain days from event occurrence dates. Please note that you can "
|
831 |
"exclude only single day occurrences and you cannot exclude one day from "
|
832 |
"multiple day occurrences."
|
833 |
msgstr ""
|
834 |
|
835 |
+
#: app/features/events.php:1268 app/libraries/render.php:506
|
836 |
msgid "Day 1"
|
837 |
msgstr ""
|
838 |
|
839 |
+
#: app/features/events.php:1298
|
840 |
msgid "Add Day"
|
841 |
msgstr ""
|
842 |
|
843 |
+
#: app/features/events.php:1299
|
844 |
msgid ""
|
845 |
"Add new days for schedule. For example if your event is multiple days, you "
|
846 |
"can add a different schedule for each day!"
|
847 |
msgstr ""
|
848 |
|
849 |
+
#: app/features/events.php:1306
|
850 |
#, php-format
|
851 |
msgid "Day %s"
|
852 |
msgstr ""
|
853 |
|
854 |
+
#: app/features/events.php:1310 app/features/events.php:1349
|
855 |
+
#: app/features/events.php:1384 app/features/events.php:1416
|
856 |
+
#: app/features/events.php:1445 app/features/events.php:2330
|
857 |
+
#: app/features/events.php:2377 app/features/events.php:3356
|
858 |
+
#: app/features/events.php:3550 app/features/events.php:3592
|
859 |
#: app/features/fes/form.php:239 app/features/ix.php:3508
|
860 |
#: app/features/ix.php:3549 app/features/mec/booking.php:384
|
861 |
#: app/features/mec/booking.php:416 app/features/mec/styling.php:130
|
862 |
msgid "Title"
|
863 |
msgstr ""
|
864 |
|
865 |
+
#: app/features/events.php:1319 app/features/events.php:1356
|
866 |
+
#: app/features/events.php:1389 app/features/events.php:1424
|
867 |
+
#: app/features/events.php:1450 app/features/events.php:1919
|
868 |
+
#: app/features/events.php:1945 app/features/events.php:2123
|
869 |
+
#: app/features/events.php:2222 app/features/events.php:2258
|
870 |
+
#: app/features/events.php:2365 app/features/events.php:2407
|
871 |
#: app/features/mec/booking.php:327 app/features/mec/booking.php:356
|
872 |
#: app/features/mec/booking.php:407 app/features/mec/booking.php:439
|
873 |
+
#: app/libraries/main.php:2811 app/libraries/main.php:2841
|
874 |
+
#: app/libraries/main.php:2870 app/libraries/main.php:2900
|
875 |
+
#: app/libraries/main.php:2929 app/libraries/main.php:2958
|
876 |
+
#: app/libraries/main.php:2987 app/libraries/main.php:3016
|
877 |
+
#: app/libraries/main.php:3038 app/libraries/main.php:3069
|
878 |
+
#: app/libraries/main.php:3113 app/libraries/main.php:3157
|
879 |
+
#: app/libraries/main.php:3204 app/libraries/main.php:3243
|
880 |
msgid "Remove"
|
881 |
msgstr ""
|
882 |
|
883 |
+
#: app/features/events.php:1326 app/features/events.php:1431
|
884 |
msgid "Add new hourly schedule row"
|
885 |
msgstr ""
|
886 |
|
887 |
+
#: app/features/events.php:1341 app/features/events.php:1378
|
888 |
+
#: app/features/events.php:1440
|
889 |
msgid "From e.g. 8:15"
|
890 |
msgstr ""
|
891 |
|
892 |
+
#: app/features/events.php:1345 app/features/events.php:1381
|
893 |
+
#: app/features/events.php:1442
|
894 |
msgid "To e.g. 8:45"
|
895 |
msgstr ""
|
896 |
|
897 |
+
#: app/features/events.php:1353 app/features/events.php:1387
|
898 |
+
#: app/features/events.php:1448 app/features/events.php:1809
|
899 |
+
#: app/features/events.php:2034
|
900 |
msgid "Description"
|
901 |
msgstr ""
|
902 |
|
903 |
+
#: app/features/events.php:1359 app/features/events.php:1392
|
904 |
+
#: app/features/events.php:1453 app/features/fes/form.php:861
|
905 |
+
#: app/features/mec.php:420 app/features/mec/modules.php:52
|
906 |
#: app/features/mec/settings.php:737 app/features/speakers.php:62
|
907 |
+
#: app/libraries/main.php:565 app/libraries/main.php:5414
|
908 |
#: app/modules/speakers/details.php:18
|
909 |
msgid "Speakers"
|
910 |
msgstr ""
|
911 |
|
912 |
+
#: app/features/events.php:1412 app/features/events.php:1420
|
913 |
msgid "New Day"
|
914 |
msgstr ""
|
915 |
|
916 |
+
#: app/features/events.php:1484 app/features/fes/form.php:714
|
917 |
#: app/features/mec/settings.php:683
|
918 |
msgid "Event Links"
|
919 |
msgstr ""
|
920 |
|
921 |
+
#: app/features/events.php:1487 app/features/events.php:1493
|
922 |
+
#: app/features/fes/form.php:716 app/libraries/main.php:5437
|
923 |
msgid "Event Link"
|
924 |
msgstr ""
|
925 |
|
926 |
+
#: app/features/events.php:1490 app/features/events.php:1506
|
927 |
#: app/features/fes/form.php:717 app/features/fes/form.php:722
|
928 |
msgid "eg. http://yoursite.com/your-event"
|
929 |
msgstr ""
|
930 |
|
931 |
+
#: app/features/events.php:1494
|
932 |
msgid ""
|
933 |
"If you fill it, it will be replaced instead of default event page link. "
|
934 |
"Insert full link including http(s):// - Also, if you use advertising URL, "
|
935 |
"can use URL Shortener"
|
936 |
msgstr ""
|
937 |
|
938 |
+
#: app/features/events.php:1496
|
939 |
msgid "URL Shortener"
|
940 |
msgstr ""
|
941 |
|
942 |
+
#: app/features/events.php:1503 app/features/events.php:1516
|
943 |
+
#: app/features/fes/form.php:721 app/libraries/main.php:5438
|
944 |
#: app/skins/single.php:684 app/skins/single/default.php:140
|
945 |
#: app/skins/single/default.php:363 app/skins/single/m1.php:205
|
946 |
+
#: app/skins/single/m2.php:132 app/skins/single/modern.php:141
|
947 |
#: app/widgets/single.php:107
|
948 |
msgid "More Info"
|
949 |
msgstr ""
|
950 |
|
951 |
+
#: app/features/events.php:1509 app/features/fes/form.php:723
|
952 |
msgid "More Information"
|
953 |
msgstr ""
|
954 |
|
955 |
+
#: app/features/events.php:1511 app/features/fes/form.php:725
|
956 |
msgid "Current Window"
|
957 |
msgstr ""
|
958 |
|
959 |
+
#: app/features/events.php:1512 app/features/fes/form.php:726
|
960 |
msgid "New Window"
|
961 |
msgstr ""
|
962 |
|
963 |
+
#: app/features/events.php:1517 app/features/fes/form.php:728
|
964 |
msgid ""
|
965 |
"If you fill it, it will be shown in event details page as an optional link. "
|
966 |
"Insert full link including http(s)://"
|
967 |
msgstr ""
|
968 |
|
969 |
+
#: app/features/events.php:1590 app/features/events.php:1605
|
970 |
msgid "Total booking limits"
|
971 |
msgstr ""
|
972 |
|
973 |
+
#: app/features/events.php:1602 app/features/events.php:1857
|
974 |
+
#: app/features/events.php:2072 app/modules/booking/default.php:85
|
975 |
#: app/modules/booking/steps/tickets.php:43
|
976 |
+
#: app/skins/available_spot/tpl.php:120
|
977 |
msgid "Unlimited"
|
978 |
msgstr ""
|
979 |
|
980 |
+
#: app/features/events.php:1608
|
981 |
msgid ""
|
982 |
"If you want to set a limit to all tickets, uncheck this checkbox and put a "
|
983 |
"limitation number."
|
984 |
msgstr ""
|
985 |
|
986 |
+
#: app/features/events.php:1610
|
987 |
msgid "Read About A Booking System"
|
988 |
msgstr ""
|
989 |
|
990 |
+
#: app/features/events.php:1618
|
991 |
msgid "100"
|
992 |
msgstr ""
|
993 |
|
994 |
+
#: app/features/events.php:1623
|
995 |
msgid "Total user booking limits"
|
996 |
msgstr ""
|
997 |
|
998 |
+
#: app/features/events.php:1635 app/features/events.php:2171
|
999 |
+
#: app/features/events.php:2303 app/features/events.php:2491
|
1000 |
msgid "Inherit from global options"
|
1001 |
msgstr ""
|
1002 |
|
1003 |
+
#: app/features/events.php:1638
|
1004 |
msgid "12"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
+
#: app/features/events.php:1661 app/libraries/book.php:60
|
1008 |
+
#: app/libraries/main.php:5442 app/modules/booking/steps/tickets.php:43
|
1009 |
msgid "Tickets"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
+
#: app/features/events.php:1664
|
1013 |
msgid ""
|
1014 |
"You're translating an event so MEC will use the original event for tickets "
|
1015 |
"and booking. You can only translate the ticket name and description. Please "
|
1016 |
"define exact tickets that you defined in the original event here."
|
1017 |
msgstr ""
|
1018 |
|
1019 |
+
#: app/features/events.php:1669
|
1020 |
msgid "Add Ticket"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
+
#: app/features/events.php:1683 app/features/events.php:1959
|
1024 |
msgid "Ticket Name"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
+
#: app/features/events.php:1688 app/features/events.php:1963
|
1028 |
+
#: app/features/events.php:3550 app/features/events.php:3592
|
1029 |
#: app/features/ix.php:3508 app/features/ix.php:3549
|
1030 |
msgid "Start Time"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
+
#: app/features/events.php:1747 app/features/events.php:1993
|
1034 |
+
#: app/features/events.php:3550 app/features/events.php:3592
|
1035 |
#: app/features/ix.php:3508 app/features/ix.php:3549
|
1036 |
msgid "End Time"
|
1037 |
msgstr ""
|
1038 |
|
1039 |
+
#: app/features/events.php:1814 app/features/events.php:1818
|
1040 |
+
#: app/features/events.php:1913 app/features/events.php:1940
|
1041 |
+
#: app/features/events.php:2039 app/features/events.php:2042
|
1042 |
+
#: app/features/events.php:2119 app/features/events.php:2336
|
1043 |
+
#: app/features/events.php:2340 app/features/events.php:2382
|
1044 |
+
#: app/features/events.php:2385 app/features/mec/booking.php:388
|
1045 |
#: app/features/mec/booking.php:391 app/features/mec/booking.php:420
|
1046 |
#: app/features/mec/booking.php:423
|
1047 |
msgid "Price"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
+
#: app/features/events.php:1819 app/features/events.php:2043
|
1051 |
+
msgid ""
|
1052 |
+
"Insert 0 for free ticket. Only numbers please — Enter only the price without "
|
1053 |
+
"any symbols or characters."
|
1054 |
msgstr ""
|
1055 |
|
1056 |
+
#: app/features/events.php:1828 app/features/events.php:1833
|
1057 |
+
#: app/features/events.php:2052 app/features/events.php:2055
|
1058 |
msgid "Price Label"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
+
#: app/features/events.php:1834 app/features/events.php:2056
|
1062 |
msgid "For showing on website. e.g. $15"
|
1063 |
msgstr ""
|
1064 |
|
1065 |
+
#: app/features/events.php:1844 app/features/events.php:2066
|
1066 |
msgid "Available Tickets"
|
1067 |
msgstr ""
|
1068 |
|
1069 |
+
#: app/features/events.php:1861 app/features/events.php:2076
|
1070 |
msgid "Minimum Ticket e.g. 3"
|
1071 |
msgstr ""
|
1072 |
|
1073 |
+
#: app/features/events.php:1864 app/features/events.php:2079
|
1074 |
msgid "MinimumTicket"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
+
#: app/features/events.php:1866 app/features/events.php:2081
|
1078 |
msgid "Set a number for the minimum ticket reservation"
|
1079 |
msgstr ""
|
1080 |
|
1081 |
+
#: app/features/events.php:1874 app/features/events.php:2089
|
1082 |
msgid "e.g. 0"
|
1083 |
msgstr ""
|
1084 |
|
1085 |
+
#: app/features/events.php:1876 app/features/events.php:2091
|
1086 |
msgid "Day"
|
1087 |
msgstr ""
|
1088 |
|
1089 |
+
#: app/features/events.php:1877 app/features/events.php:2092
|
1090 |
msgid "Hour"
|
1091 |
msgstr ""
|
1092 |
|
1093 |
+
#: app/features/events.php:1879 app/features/events.php:2094
|
1094 |
#, php-format
|
1095 |
msgid "Stop selling ticket %s before event start."
|
1096 |
msgstr ""
|
1097 |
|
1098 |
+
#: app/features/events.php:1886 app/features/events.php:2100
|
1099 |
msgid "Price per Date"
|
1100 |
msgstr ""
|
1101 |
|
1102 |
+
#: app/features/events.php:1917 app/features/events.php:1943
|
1103 |
+
#: app/features/events.php:2121 app/features/labels.php:60
|
1104 |
#: app/features/mec/meta_boxes/display_options.php:1117
|
1105 |
#: app/features/mec/meta_boxes/search_form.php:67
|
1106 |
#: app/features/mec/meta_boxes/search_form.php:137
|
1113 |
#: app/features/mec/meta_boxes/search_form.php:620
|
1114 |
#: app/features/mec/meta_boxes/search_form.php:690
|
1115 |
#: app/features/mec/meta_boxes/search_form.php:796
|
1116 |
+
#: app/features/mec/settings.php:871 app/features/mec/single.php:250
|
1117 |
#: app/libraries/skins.php:1007
|
1118 |
msgid "Label"
|
1119 |
msgstr ""
|
1120 |
|
1121 |
+
#: app/features/events.php:2159
|
1122 |
msgid "Fees"
|
1123 |
msgstr ""
|
1124 |
|
1125 |
+
#: app/features/events.php:2196 app/features/events.php:2234
|
1126 |
#: app/features/mec/booking.php:307 app/features/mec/booking.php:336
|
1127 |
msgid "Fee Title"
|
1128 |
msgstr ""
|
1129 |
|
1130 |
+
#: app/features/events.php:2202 app/features/events.php:2206
|
1131 |
+
#: app/features/events.php:2239 app/features/events.php:2242
|
1132 |
#: app/features/mec/booking.php:311 app/features/mec/booking.php:314
|
1133 |
#: app/features/mec/booking.php:340 app/features/mec/booking.php:343
|
1134 |
msgid "Amount"
|
1135 |
msgstr ""
|
1136 |
|
1137 |
+
#: app/features/events.php:2207 app/features/events.php:2243
|
1138 |
#: app/features/mec/booking.php:315 app/features/mec/booking.php:344
|
1139 |
msgid ""
|
1140 |
"Fee amount, considered as fixed amount if you set the type to amount "
|
1141 |
"otherwise considered as percentage"
|
1142 |
msgstr ""
|
1143 |
|
1144 |
+
#: app/features/events.php:2216 app/features/events.php:2252
|
1145 |
#: app/features/mec/booking.php:322 app/features/mec/booking.php:351
|
1146 |
msgid "Percent"
|
1147 |
msgstr ""
|
1148 |
|
1149 |
+
#: app/features/events.php:2217 app/features/events.php:2253
|
1150 |
#: app/features/mec/booking.php:323 app/features/mec/booking.php:352
|
1151 |
msgid "Amount (Per Ticket)"
|
1152 |
msgstr ""
|
1153 |
|
1154 |
+
#: app/features/events.php:2218 app/features/events.php:2254
|
1155 |
#: app/features/mec/booking.php:324 app/features/mec/booking.php:353
|
1156 |
msgid "Amount (Per Booking)"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
+
#: app/features/events.php:2291 app/features/mec/settings.php:761
|
1160 |
msgid "Ticket Variations / Options"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
+
#: app/features/events.php:2341 app/features/events.php:2386
|
1164 |
#: app/features/mec/booking.php:392 app/features/mec/booking.php:424
|
1165 |
msgid "Option Price"
|
1166 |
msgstr ""
|
1167 |
|
1168 |
+
#: app/features/events.php:2351 app/features/events.php:2355
|
1169 |
+
#: app/features/events.php:2395 app/features/events.php:2398
|
1170 |
#: app/features/mec/booking.php:398 app/features/mec/booking.php:401
|
1171 |
#: app/features/mec/booking.php:430 app/features/mec/booking.php:433
|
1172 |
msgid "Maximum Per Ticket"
|
1173 |
msgstr ""
|
1174 |
|
1175 |
+
#: app/features/events.php:2356 app/features/events.php:2399
|
1176 |
#: app/features/mec/booking.php:402 app/features/mec/booking.php:434
|
1177 |
msgid "Maximum Per Ticket. Leave it blank for unlimited."
|
1178 |
msgstr ""
|
1179 |
|
1180 |
+
#: app/features/events.php:2545 app/features/mec/booking.php:496
|
1181 |
+
#: app/libraries/main.php:2833
|
1182 |
msgid "MEC Name"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: app/features/events.php:2546 app/features/mec/booking.php:497
|
1186 |
+
#: app/libraries/main.php:2862
|
1187 |
msgid "MEC Email"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
+
#: app/features/events.php:2547 app/features/mec/booking.php:498
|
1191 |
+
#: app/libraries/main.php:2803
|
1192 |
msgid "Text"
|
1193 |
msgstr ""
|
1194 |
|
1195 |
+
#: app/features/events.php:2550 app/features/mec/booking.php:501
|
1196 |
#: app/features/organizers.php:103 app/features/organizers.php:148
|
1197 |
#: app/features/speakers.php:119 app/features/speakers.php:192
|
1198 |
+
#: app/features/speakers.php:271 app/libraries/main.php:2979
|
1199 |
msgid "Tel"
|
1200 |
msgstr ""
|
1201 |
|
1202 |
+
#: app/features/events.php:2551 app/features/mec/booking.php:502
|
1203 |
+
#: app/libraries/main.php:2921
|
1204 |
msgid "File"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
+
#: app/features/events.php:2552 app/features/mec/booking.php:503
|
1208 |
+
#: app/libraries/main.php:3008
|
1209 |
msgid "Textarea"
|
1210 |
msgstr ""
|
1211 |
|
1212 |
+
#: app/features/events.php:2553 app/features/mec/booking.php:504
|
1213 |
+
#: app/libraries/main.php:3061
|
1214 |
msgid "Checkboxes"
|
1215 |
msgstr ""
|
1216 |
|
1217 |
+
#: app/features/events.php:2554 app/features/mec/booking.php:505
|
1218 |
+
#: app/libraries/main.php:3105
|
1219 |
msgid "Radio Buttons"
|
1220 |
msgstr ""
|
1221 |
|
1222 |
+
#: app/features/events.php:2555 app/features/mec/booking.php:506
|
1223 |
#: app/features/mec/meta_boxes/search_form.php:34
|
1224 |
#: app/features/mec/meta_boxes/search_form.php:41
|
1225 |
#: app/features/mec/meta_boxes/search_form.php:49
|
1295 |
#: app/features/mec/meta_boxes/search_form.php:785
|
1296 |
#: app/features/mec/meta_boxes/search_form.php:792
|
1297 |
#: app/features/mec/meta_boxes/search_form.php:799
|
1298 |
+
#: app/features/mec/meta_boxes/search_form.php:813 app/libraries/main.php:3149
|
1299 |
msgid "Dropdown"
|
1300 |
msgstr ""
|
1301 |
|
1302 |
+
#: app/features/events.php:2556 app/features/mec/booking.php:507
|
1303 |
+
#: app/libraries/main.php:3196
|
1304 |
msgid "Agreement"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
+
#: app/features/events.php:2557 app/features/mec/booking.php:508
|
1308 |
+
#: app/libraries/main.php:3037
|
1309 |
msgid "Paragraph"
|
1310 |
msgstr ""
|
1311 |
|
1312 |
+
#: app/features/events.php:3258 app/features/events.php:3276
|
1313 |
+
#: app/features/events.php:3294 app/features/events.php:3312
|
1314 |
#, php-format
|
1315 |
msgid "Show all %s"
|
1316 |
msgstr ""
|
1317 |
|
1318 |
+
#: app/features/events.php:3258
|
1319 |
msgid "labels"
|
1320 |
msgstr ""
|
1321 |
|
1322 |
+
#: app/features/events.php:3276
|
1323 |
msgid "locations"
|
1324 |
msgstr ""
|
1325 |
|
1326 |
+
#: app/features/events.php:3294
|
1327 |
msgid "organizers"
|
1328 |
msgstr ""
|
1329 |
|
1330 |
+
#: app/features/events.php:3328
|
1331 |
msgid "Attendees List"
|
1332 |
msgstr ""
|
1333 |
|
1334 |
+
#: app/features/events.php:3358 app/features/events.php:3550
|
1335 |
+
#: app/features/events.php:3592 app/features/ix.php:3508
|
1336 |
#: app/features/ix.php:3549 app/features/locations.php:58
|
1337 |
#: app/features/locations.php:232 app/features/locations.php:289
|
1338 |
#: app/features/locations.php:291 app/features/locations.php:300
|
1348 |
#: app/features/mec/meta_boxes/search_form.php:591
|
1349 |
#: app/features/mec/meta_boxes/search_form.php:661
|
1350 |
#: app/features/mec/meta_boxes/search_form.php:767
|
1351 |
+
#: app/features/mec/settings.php:845 app/features/mec/single.php:240
|
1352 |
#: app/features/popup/event.php:246 app/features/popup/event.php:255
|
1353 |
+
#: app/features/search.php:73 app/libraries/main.php:2296
|
1354 |
+
#: app/libraries/main.php:5411 app/libraries/skins.php:903
|
1355 |
#: app/skins/single.php:503 app/skins/single.php:941
|
1356 |
#: app/skins/single/default.php:176 app/skins/single/default.php:399
|
1357 |
#: app/skins/single/m1.php:169 app/skins/single/m2.php:95
|
1358 |
+
#: app/skins/single/modern.php:103
|
1359 |
msgid "Location"
|
1360 |
msgstr ""
|
1361 |
|
1362 |
+
#: app/features/events.php:3363
|
1363 |
msgid "Repeat"
|
1364 |
msgstr ""
|
1365 |
|
1366 |
+
#: app/features/events.php:3364
|
1367 |
msgid "Author"
|
1368 |
msgstr ""
|
1369 |
|
1370 |
+
#: app/features/events.php:3485 app/features/events.php:3486
|
1371 |
msgid "iCal Export"
|
1372 |
msgstr ""
|
1373 |
|
1374 |
+
#: app/features/events.php:3488 app/features/events.php:3489
|
1375 |
msgid "CSV Export"
|
1376 |
msgstr ""
|
1377 |
|
1378 |
+
#: app/features/events.php:3491 app/features/events.php:3492
|
1379 |
msgid "MS Excel Export"
|
1380 |
msgstr ""
|
1381 |
|
1382 |
+
#: app/features/events.php:3494 app/features/events.php:3495
|
1383 |
msgid "XML Export"
|
1384 |
msgstr ""
|
1385 |
|
1386 |
+
#: app/features/events.php:3497 app/features/events.php:3498
|
1387 |
msgid "JSON Export"
|
1388 |
msgstr ""
|
1389 |
|
1390 |
+
#: app/features/events.php:3500 app/features/events.php:3501
|
1391 |
+
#: app/features/events.php:3683
|
1392 |
msgid "Duplicate"
|
1393 |
msgstr ""
|
1394 |
|
1395 |
+
#: app/features/events.php:3550 app/features/events.php:3592
|
1396 |
#: app/features/fes.php:223 app/features/ix.php:3508 app/features/ix.php:3549
|
1397 |
#: app/features/labels.php:177 app/features/locations.php:231
|
1398 |
#: app/features/organizers.php:203 app/features/speakers.php:268
|
1399 |
msgid "ID"
|
1400 |
msgstr ""
|
1401 |
|
1402 |
+
#: app/features/events.php:3550 app/features/events.php:3592
|
1403 |
#: app/features/ix.php:3508 app/features/ix.php:3549
|
1404 |
msgid "Link"
|
1405 |
msgstr ""
|
1406 |
|
1407 |
+
#: app/features/events.php:3550 app/features/events.php:3592
|
1408 |
#, php-format
|
1409 |
msgid "%s Tel"
|
1410 |
msgstr ""
|
1411 |
|
1412 |
+
#: app/features/events.php:3550 app/features/events.php:3592
|
1413 |
#, php-format
|
1414 |
msgid "%s Email"
|
1415 |
msgstr ""
|
1416 |
|
1417 |
+
#: app/features/events.php:3889 app/features/fes.php:223
|
1418 |
+
#: app/features/profile/profile.php:186 app/libraries/main.php:2331
|
1419 |
+
#: app/libraries/main.php:5441
|
1420 |
msgid "Ticket"
|
1421 |
msgstr ""
|
1422 |
|
1423 |
+
#: app/features/events.php:3892 app/features/profile/profile.php:189
|
1424 |
msgid "Variations"
|
1425 |
msgstr ""
|
1426 |
|
1427 |
+
#: app/features/events.php:3907 app/features/fes.php:303
|
1428 |
msgid "Unknown"
|
1429 |
msgstr ""
|
1430 |
|
1431 |
+
#: app/features/events.php:3940
|
1432 |
msgid "No Attendees Found!"
|
1433 |
msgstr ""
|
1434 |
|
1466 |
msgid "Order Time"
|
1467 |
msgstr ""
|
1468 |
|
1469 |
+
#: app/features/fes.php:223 app/libraries/main.php:2308
|
1470 |
msgid "Transaction ID"
|
1471 |
msgstr ""
|
1472 |
|
1498 |
msgid "Please fill event title field!"
|
1499 |
msgstr ""
|
1500 |
|
1501 |
+
#: app/features/fes.php:1108
|
1502 |
msgid "The event submitted. It will publish as soon as possible."
|
1503 |
msgstr ""
|
1504 |
|
1505 |
+
#: app/features/fes.php:1109
|
1506 |
msgid "The event published."
|
1507 |
msgstr ""
|
1508 |
|
1588 |
msgstr ""
|
1589 |
|
1590 |
#: app/features/fes/form.php:793 app/features/labels.php:61
|
1591 |
+
#: app/features/labels.php:221 app/features/mec.php:413
|
1592 |
+
#: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:5408
|
1593 |
#: app/skins/single.php:713 app/skins/single/default.php:155
|
1594 |
#: app/skins/single/default.php:378 app/skins/single/m1.php:73
|
1595 |
+
#: app/skins/single/modern.php:229
|
1596 |
msgid "Labels"
|
1597 |
msgstr ""
|
1598 |
|
1599 |
+
#: app/features/fes/form.php:839 app/features/mec.php:411
|
1600 |
#: app/features/mec/meta_boxes/filter.php:147
|
1601 |
msgid "Tags"
|
1602 |
msgstr ""
|
1675 |
msgid "Both of API key and Calendar ID are required!"
|
1676 |
msgstr ""
|
1677 |
|
1678 |
+
#: app/features/ix.php:2772 app/features/ix.php:3191 app/features/ix.php:3925
|
1679 |
msgid "Please select some events to import!"
|
1680 |
msgstr ""
|
1681 |
|
1712 |
msgid "All of Client App, Client Secret and Calendar ID are required!"
|
1713 |
msgstr ""
|
1714 |
|
1715 |
+
#: app/features/ix.php:3854
|
1716 |
#, php-format
|
1717 |
msgid "%s events added to Google Calendar successfully."
|
1718 |
msgstr ""
|
1719 |
|
1720 |
+
#: app/features/ix.php:3855
|
1721 |
#, php-format
|
1722 |
msgid "%s previously added events get updated."
|
1723 |
msgstr ""
|
1724 |
|
1725 |
+
#: app/features/ix.php:3856
|
1726 |
#, php-format
|
1727 |
msgid "%s events failed to add for following reasons: %s"
|
1728 |
msgstr ""
|
1729 |
|
1730 |
+
#: app/features/ix.php:3888
|
1731 |
msgid "Please insert your Facebook page's link."
|
1732 |
msgstr ""
|
1733 |
|
1734 |
+
#: app/features/ix.php:3897
|
1735 |
msgid ""
|
1736 |
"We couldn't recognize your Facebook page. Please check it and provide us a "
|
1737 |
"valid Facebook page link."
|
1738 |
msgstr ""
|
1739 |
|
1740 |
+
#: app/features/ix.php:3929
|
1741 |
msgid "Please insert your facebook page's link."
|
1742 |
msgstr ""
|
1743 |
|
1744 |
+
#: app/features/ix.php:3934
|
1745 |
msgid ""
|
1746 |
"We couldn't recognize your Facebook page. Please check it and provide us a "
|
1747 |
"valid facebook page link."
|
1913 |
|
1914 |
#: app/features/ix/export_g_calendar.php:93 app/features/mec/booking.php:678
|
1915 |
#: app/features/mec/modules.php:398 app/features/mec/notifications.php:909
|
1916 |
+
#: app/features/mec/settings.php:1085 app/features/mec/single.php:297
|
1917 |
msgid "Checking ..."
|
1918 |
msgstr ""
|
1919 |
|
2306 |
|
2307 |
#: app/features/labels.php:117 app/features/labels.php:142
|
2308 |
#: app/skins/agenda/render.php:41 app/skins/available_spot/tpl.php:44
|
2309 |
+
#: app/skins/carousel/render.php:34 app/skins/countdown/tpl.php:33
|
2310 |
+
#: app/skins/cover/tpl.php:34 app/skins/daily_view/render.php:25
|
2311 |
#: app/skins/grid/render.php:54 app/skins/list/render.php:39
|
2312 |
+
#: app/skins/masonry/render.php:30 app/skins/monthly_view/calendar.php:86
|
2313 |
+
#: app/skins/monthly_view/calendar_clean.php:85
|
2314 |
+
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:44
|
2315 |
+
#: app/skins/tile/render.php:38 app/skins/timeline/render.php:45
|
2316 |
+
#: app/skins/timetable/render.php:41 app/skins/timetable/render.php:108
|
2317 |
+
#: app/skins/weekly_view/render.php:33 app/skins/yearly_view/render.php:49
|
2318 |
msgid "Featured"
|
2319 |
msgstr ""
|
2320 |
|
2321 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2322 |
+
#: app/libraries/main.php:5657 app/skins/agenda/render.php:42
|
2323 |
+
#: app/skins/available_spot/tpl.php:45 app/skins/carousel/render.php:35
|
2324 |
+
#: app/skins/countdown/tpl.php:37 app/skins/cover/tpl.php:35
|
2325 |
+
#: app/skins/daily_view/render.php:26 app/skins/grid/render.php:55
|
2326 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:31
|
2327 |
+
#: app/skins/monthly_view/calendar.php:87
|
2328 |
+
#: app/skins/monthly_view/calendar_clean.php:86
|
2329 |
+
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:45
|
2330 |
+
#: app/skins/tile/render.php:39 app/skins/timeline/render.php:46
|
2331 |
+
#: app/skins/timetable/render.php:42 app/skins/timetable/render.php:109
|
2332 |
+
#: app/skins/weekly_view/render.php:34 app/skins/yearly_view/render.php:50
|
2333 |
msgid "Canceled"
|
2334 |
msgstr ""
|
2335 |
|
2353 |
msgid "Event %s"
|
2354 |
msgstr ""
|
2355 |
|
2356 |
+
#: app/features/locations.php:59 app/features/mec.php:414
|
2357 |
#: app/features/mec/dashboard.php:275 app/features/mec/meta_boxes/filter.php:96
|
2358 |
+
#: app/libraries/main.php:5410
|
2359 |
msgid "Locations"
|
2360 |
msgstr ""
|
2361 |
|
2472 |
msgid "Don't show map in single event page"
|
2473 |
msgstr ""
|
2474 |
|
2475 |
+
#: app/features/locations.php:359 app/libraries/main.php:5444
|
2476 |
msgid "Other Locations"
|
2477 |
msgstr ""
|
2478 |
|
2485 |
msgid "<strong>"
|
2486 |
msgstr ""
|
2487 |
|
2488 |
+
#: app/features/mec.php:180
|
2489 |
msgid ""
|
2490 |
"Activation failed. Please check your purchase code or license type."
|
2491 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
2492 |
msgstr ""
|
2493 |
|
2494 |
+
#: app/features/mec.php:180 app/features/mec/support-page.php:136
|
2495 |
msgid "Troubleshooting"
|
2496 |
msgstr ""
|
2497 |
|
2498 |
+
#: app/features/mec.php:259
|
2499 |
msgid "Select Date"
|
2500 |
msgstr ""
|
2501 |
|
2502 |
+
#: app/features/mec.php:262 app/libraries/notifications.php:961
|
2503 |
#, php-format
|
2504 |
msgid "%s to %s"
|
2505 |
msgstr ""
|
2506 |
|
2507 |
+
#: app/features/mec.php:288
|
2508 |
msgid ""
|
2509 |
"Your options is not in JSON format. Please insert correct options in this "
|
2510 |
"field and try again."
|
2511 |
msgstr ""
|
2512 |
|
2513 |
+
#: app/features/mec.php:295
|
2514 |
msgid "Your options field can not be empty!"
|
2515 |
msgstr ""
|
2516 |
|
2517 |
+
#: app/features/mec.php:301
|
2518 |
msgid "Your options imported successfuly."
|
2519 |
msgstr ""
|
2520 |
|
2521 |
+
#: app/features/mec.php:394
|
2522 |
msgid "MEC - Support"
|
2523 |
msgstr ""
|
2524 |
|
2525 |
+
#: app/features/mec.php:394 app/features/mec/support-page.php:9
|
2526 |
#: app/features/mec/support.php:80 app/features/mec/support.php:93
|
2527 |
msgid "Support"
|
2528 |
msgstr ""
|
2529 |
|
2530 |
+
#: app/features/mec.php:415 app/features/mec/dashboard.php:282
|
2531 |
#: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
|
2532 |
+
#: app/libraries/main.php:5412
|
2533 |
msgid "Organizers"
|
2534 |
msgstr ""
|
2535 |
|
2536 |
+
#: app/features/mec.php:423 app/features/mec.php:447
|
2537 |
#: app/features/mec/dashboard.php:268
|
2538 |
msgid "Shortcodes"
|
2539 |
msgstr ""
|
2540 |
|
2541 |
+
#: app/features/mec.php:424
|
2542 |
msgid "MEC - Settings"
|
2543 |
msgstr ""
|
2544 |
|
2545 |
+
#: app/features/mec.php:425
|
2546 |
msgid "MEC - Addons"
|
2547 |
msgstr ""
|
2548 |
|
2549 |
+
#: app/features/mec.php:425 app/features/mec/addons.php:22
|
2550 |
msgid "Addons"
|
2551 |
msgstr ""
|
2552 |
|
2553 |
+
#: app/features/mec.php:428
|
2554 |
msgid "MEC - Report"
|
2555 |
msgstr ""
|
2556 |
|
2557 |
+
#: app/features/mec.php:428
|
2558 |
msgid "Report"
|
2559 |
msgstr ""
|
2560 |
|
2561 |
+
#: app/features/mec.php:430
|
2562 |
msgid "MEC - Go Pro"
|
2563 |
msgstr ""
|
2564 |
|
2565 |
+
#: app/features/mec.php:430 app/features/mec/go-pro.php:9
|
2566 |
#: app/libraries/factory.php:1045
|
2567 |
msgid "Go Pro"
|
2568 |
msgstr ""
|
2569 |
|
2570 |
+
#: app/features/mec.php:449
|
2571 |
msgid "Add Shortcode"
|
2572 |
msgstr ""
|
2573 |
|
2574 |
+
#: app/features/mec.php:450
|
2575 |
msgid "Add New Shortcode"
|
2576 |
msgstr ""
|
2577 |
|
2578 |
+
#: app/features/mec.php:451
|
2579 |
msgid "No shortcodes found!"
|
2580 |
msgstr ""
|
2581 |
|
2582 |
+
#: app/features/mec.php:452
|
2583 |
msgid "All Shortcodes"
|
2584 |
msgstr ""
|
2585 |
|
2586 |
+
#: app/features/mec.php:453
|
2587 |
msgid "Edit shortcodes"
|
2588 |
msgstr ""
|
2589 |
|
2590 |
+
#: app/features/mec.php:454
|
2591 |
msgid "No shortcodes found in Trash!"
|
2592 |
msgstr ""
|
2593 |
|
2594 |
+
#: app/features/mec.php:507
|
2595 |
msgid "Display Options"
|
2596 |
msgstr ""
|
2597 |
|
2598 |
+
#: app/features/mec.php:508
|
2599 |
msgid "Filter Options"
|
2600 |
msgstr ""
|
2601 |
|
2602 |
+
#: app/features/mec.php:510
|
2603 |
msgid "Search Form"
|
2604 |
msgstr ""
|
2605 |
|
2606 |
+
#: app/features/mec.php:908
|
2607 |
msgid "Display content's images as Popup"
|
2608 |
msgstr ""
|
2609 |
|
2610 |
+
#: app/features/mec.php:922 app/features/popup/shortcode.php:300
|
2611 |
msgid "Single Event Display Method"
|
2612 |
msgstr ""
|
2613 |
|
2614 |
+
#: app/features/mec.php:927 app/features/popup/shortcode.php:304
|
2615 |
msgid "Separate Window"
|
2616 |
msgstr ""
|
2617 |
|
2618 |
+
#: app/features/mec.php:928 app/features/popup/shortcode.php:308
|
2619 |
msgid "Modal Popup"
|
2620 |
msgstr ""
|
2621 |
|
2656 |
#: app/features/mec/notifications.php:828
|
2657 |
#: app/features/mec/notifications.php:926
|
2658 |
#: app/features/mec/notifications.php:940 app/features/mec/settings.php:33
|
2659 |
+
#: app/features/mec/settings.php:1034 app/features/mec/settings.php:1044
|
2660 |
+
#: app/features/mec/settings.php:1102 app/features/mec/settings.php:1116
|
2661 |
#: app/features/mec/single.php:17 app/features/mec/single.php:262
|
2662 |
#: app/features/mec/single.php:272 app/features/mec/single.php:314
|
2663 |
#: app/features/mec/single.php:328 app/features/mec/styles.php:11
|
2864 |
|
2865 |
#: app/features/mec/booking.php:673 app/features/mec/messages.php:78
|
2866 |
#: app/features/mec/modules.php:393 app/features/mec/notifications.php:904
|
2867 |
+
#: app/features/mec/settings.php:1080 app/features/mec/single.php:292
|
2868 |
#: app/features/mec/styles.php:60 app/features/mec/styling.php:311
|
2869 |
msgid "Saved"
|
2870 |
msgstr ""
|
2871 |
|
2872 |
#: app/features/mec/booking.php:674 app/features/mec/messages.php:79
|
2873 |
#: app/features/mec/modules.php:394 app/features/mec/notifications.php:905
|
2874 |
+
#: app/features/mec/settings.php:1081 app/features/mec/single.php:293
|
2875 |
#: app/features/mec/styles.php:61 app/features/mec/styling.php:312
|
2876 |
msgid "Settings Saved!"
|
2877 |
msgstr ""
|
2879 |
#: app/features/mec/booking.php:676 app/features/mec/booking.php:698
|
2880 |
#: app/features/mec/modules.php:396 app/features/mec/modules.php:418
|
2881 |
#: app/features/mec/notifications.php:907
|
2882 |
+
#: app/features/mec/notifications.php:929 app/features/mec/settings.php:1083
|
2883 |
+
#: app/features/mec/settings.php:1105 app/features/mec/single.php:295
|
2884 |
+
#: app/features/mec/single.php:317 app/libraries/main.php:5656
|
2885 |
msgid "Verified"
|
2886 |
msgstr ""
|
2887 |
|
2888 |
#: app/features/mec/booking.php:700 app/features/mec/modules.php:420
|
2889 |
+
#: app/features/mec/notifications.php:931 app/features/mec/settings.php:1107
|
2890 |
#: app/features/mec/single.php:319
|
2891 |
msgid "Please Refresh Page"
|
2892 |
msgstr ""
|
4055 |
#: app/features/mec/meta_boxes/search_form.php:606
|
4056 |
#: app/features/mec/meta_boxes/search_form.php:676
|
4057 |
#: app/features/mec/meta_boxes/search_form.php:782
|
4058 |
+
#: app/features/mec/settings.php:858 app/features/mec/single.php:245
|
4059 |
#: app/features/search.php:83 app/features/speakers.php:61
|
4060 |
+
#: app/features/speakers.php:269 app/libraries/main.php:5415
|
4061 |
#: app/libraries/skins.php:955
|
4062 |
msgid "Speaker"
|
4063 |
msgstr ""
|
4073 |
#: app/features/mec/meta_boxes/search_form.php:613
|
4074 |
#: app/features/mec/meta_boxes/search_form.php:683
|
4075 |
#: app/features/mec/meta_boxes/search_form.php:789
|
4076 |
+
#: app/features/mec/settings.php:865 app/features/mec/single.php:254
|
4077 |
#: app/features/search.php:88 app/libraries/skins.php:981
|
4078 |
msgid "Tag"
|
4079 |
msgstr ""
|
4178 |
msgid "Google Map Options"
|
4179 |
msgstr ""
|
4180 |
|
4181 |
+
#: app/features/mec/modules.php:86 app/features/mec/settings.php:901
|
4182 |
+
#: app/features/mec/settings.php:914
|
4183 |
msgid "Required!"
|
4184 |
msgstr ""
|
4185 |
|
4274 |
msgid "Show weather module on event page"
|
4275 |
msgstr ""
|
4276 |
|
4277 |
+
#: app/features/mec/modules.php:239 app/features/mec/settings.php:895
|
4278 |
+
#: app/features/mec/settings.php:900 app/features/mec/settings.php:948
|
4279 |
+
#: app/features/mec/settings.php:972 app/features/mec/settings.php:996
|
4280 |
msgid "API Key"
|
4281 |
msgstr ""
|
4282 |
|
4751 |
msgstr ""
|
4752 |
|
4753 |
#: app/features/mec/notifications.php:387
|
4754 |
+
#: app/features/mec/notifications.php:655
|
4755 |
msgid "Send the email to admin"
|
4756 |
msgstr ""
|
4757 |
|
4777 |
msgstr ""
|
4778 |
|
4779 |
#: app/features/mec/notifications.php:530 app/libraries/main.php:581
|
4780 |
+
#: app/libraries/notifications.php:622
|
4781 |
msgid "Booking Reminder"
|
4782 |
msgstr ""
|
4783 |
|
4836 |
msgstr ""
|
4837 |
|
4838 |
#: app/features/mec/notifications.php:720
|
4839 |
+
#: app/features/mec/notifications.php:803 app/features/mec/settings.php:773
|
4840 |
+
#: app/features/mec/settings.php:777
|
4841 |
msgid "Event Note"
|
4842 |
msgstr ""
|
4843 |
|
5007 |
msgstr ""
|
5008 |
|
5009 |
#: app/features/mec/settings.php:154 app/features/mec/settings.php:164
|
5010 |
+
#: app/libraries/main.php:5419
|
5011 |
msgid "Weekdays"
|
5012 |
msgstr ""
|
5013 |
|
5341 |
msgid "Fees / Taxes Options"
|
5342 |
msgstr ""
|
5343 |
|
5344 |
+
#: app/features/mec/settings.php:778
|
5345 |
#, php-format
|
5346 |
msgid ""
|
5347 |
"Users can put a note for editors while they're submitting the event. Also "
|
5349 |
"users' note in email."
|
5350 |
msgstr ""
|
5351 |
|
5352 |
+
#: app/features/mec/settings.php:785 app/features/mec/settings.php:793
|
5353 |
msgid "Visibility of Note"
|
5354 |
msgstr ""
|
5355 |
|
5356 |
+
#: app/features/mec/settings.php:788
|
5357 |
msgid "Always"
|
5358 |
msgstr ""
|
5359 |
|
5360 |
+
#: app/features/mec/settings.php:789
|
5361 |
msgid "While event is not published"
|
5362 |
msgstr ""
|
5363 |
|
5364 |
+
#: app/features/mec/settings.php:794
|
5365 |
msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
|
5366 |
msgstr ""
|
5367 |
|
5368 |
+
#: app/features/mec/settings.php:805 app/libraries/main.php:537
|
5369 |
msgid "User Profile"
|
5370 |
msgstr ""
|
5371 |
|
5372 |
+
#: app/features/mec/settings.php:807
|
5373 |
#, php-format
|
5374 |
msgid ""
|
5375 |
"Put %s shortcode into your desired page. Then users are able to see history "
|
5376 |
"of their bookings."
|
5377 |
msgstr ""
|
5378 |
|
5379 |
+
#: app/features/mec/settings.php:812 app/libraries/main.php:538
|
5380 |
msgid "Search Bar"
|
5381 |
msgstr ""
|
5382 |
|
5383 |
+
#: app/features/mec/settings.php:814
|
5384 |
#, php-format
|
5385 |
msgid ""
|
5386 |
"Put %s shortcode into your desired page. Then users are able to search events"
|
5387 |
msgstr ""
|
5388 |
|
5389 |
+
#: app/features/mec/settings.php:818
|
5390 |
msgid "Ajax Live mode"
|
5391 |
msgstr ""
|
5392 |
|
5393 |
+
#: app/features/mec/settings.php:822
|
5394 |
msgid "Ajax mode"
|
5395 |
msgstr ""
|
5396 |
|
5397 |
+
#: app/features/mec/settings.php:823
|
5398 |
msgid ""
|
5399 |
"if you enable this option, search button disappeared and to use this "
|
5400 |
"feature, text input field must be enabled."
|
5401 |
msgstr ""
|
5402 |
|
5403 |
+
#: app/features/mec/settings.php:831
|
5404 |
msgid "Modern Type"
|
5405 |
msgstr ""
|
5406 |
|
5407 |
+
#: app/features/mec/settings.php:835
|
5408 |
msgid "Search bar fields"
|
5409 |
msgstr ""
|
5410 |
|
5411 |
+
#: app/features/mec/settings.php:877
|
5412 |
msgid "Text input"
|
5413 |
msgstr ""
|
5414 |
|
5415 |
+
#: app/features/mec/settings.php:890
|
5416 |
msgid "Enable Mailchimp Integration"
|
5417 |
msgstr ""
|
5418 |
|
5419 |
+
#: app/features/mec/settings.php:908 app/features/mec/settings.php:913
|
5420 |
+
#: app/features/mec/settings.php:954 app/features/mec/settings.php:1002
|
5421 |
msgid "List ID"
|
5422 |
msgstr ""
|
5423 |
|
5424 |
+
#: app/features/mec/settings.php:921 app/features/mec/settings.php:929
|
5425 |
msgid "Subscription Status"
|
5426 |
msgstr ""
|
5427 |
|
5428 |
+
#: app/features/mec/settings.php:924
|
5429 |
msgid "Subscribe automatically"
|
5430 |
msgstr ""
|
5431 |
|
5432 |
+
#: app/features/mec/settings.php:925
|
5433 |
msgid "Subscribe by verification"
|
5434 |
msgstr ""
|
5435 |
|
5436 |
+
#: app/features/mec/settings.php:930
|
5437 |
msgid ""
|
5438 |
"If you choose \"Subscribe by verification\" then an email will send to user "
|
5439 |
"by mailchimp for subscription verification."
|
5440 |
msgstr ""
|
5441 |
|
5442 |
+
#: app/features/mec/settings.php:939 app/libraries/main.php:540
|
5443 |
msgid "Campaign Monitor Integration"
|
5444 |
msgstr ""
|
5445 |
|
5446 |
+
#: app/features/mec/settings.php:943
|
5447 |
msgid "Enable Campaign Monitor Integration"
|
5448 |
msgstr ""
|
5449 |
|
5450 |
+
#: app/features/mec/settings.php:963 app/libraries/main.php:541
|
5451 |
msgid "MailerLite Integration"
|
5452 |
msgstr ""
|
5453 |
|
5454 |
+
#: app/features/mec/settings.php:967
|
5455 |
msgid "Enable MailerLite Integration"
|
5456 |
msgstr ""
|
5457 |
|
5458 |
+
#: app/features/mec/settings.php:978
|
5459 |
msgid "Group ID"
|
5460 |
msgstr ""
|
5461 |
|
5462 |
+
#: app/features/mec/settings.php:987 app/libraries/main.php:542
|
5463 |
msgid "Constant Contact Integration"
|
5464 |
msgstr ""
|
5465 |
|
5466 |
+
#: app/features/mec/settings.php:991
|
5467 |
msgid "Enable constantcontact Integration"
|
5468 |
msgstr ""
|
5469 |
|
5470 |
+
#: app/features/mec/settings.php:1013
|
5471 |
msgid "Upload Field Options"
|
5472 |
msgstr ""
|
5473 |
|
5474 |
+
#: app/features/mec/settings.php:1015
|
5475 |
msgid "Mime types"
|
5476 |
msgstr ""
|
5477 |
|
5478 |
+
#: app/features/mec/settings.php:1019
|
5479 |
msgid "Split mime types with \",\"."
|
5480 |
msgstr ""
|
5481 |
|
5482 |
+
#: app/features/mec/settings.php:1019
|
5483 |
msgid "Default: jpeg,jpg,png,pdf"
|
5484 |
msgstr ""
|
5485 |
|
5486 |
+
#: app/features/mec/settings.php:1022
|
5487 |
msgid "Maximum file size"
|
5488 |
msgstr ""
|
5489 |
|
5490 |
+
#: app/features/mec/settings.php:1026
|
5491 |
msgid "The unit is Megabyte \"MB\""
|
5492 |
msgstr ""
|
5493 |
|
6244 |
msgid "eg. https://webnus.net"
|
6245 |
msgstr ""
|
6246 |
|
6247 |
+
#: app/features/organizers.php:312 app/libraries/main.php:5443
|
6248 |
#: app/skins/single.php:873
|
6249 |
msgid "Other Organizers"
|
6250 |
msgstr ""
|
6303 |
msgstr ""
|
6304 |
|
6305 |
#: app/features/popup/event.php:392 app/features/popup/shortcode.php:373
|
6306 |
+
#: app/modules/booking/steps/form.php:179
|
6307 |
+
#: app/modules/booking/steps/tickets.php:77 app/skins/countdown/tpl.php:107
|
6308 |
+
#: app/skins/countdown/tpl.php:152 app/skins/countdown/tpl.php:198
|
6309 |
msgid "Next"
|
6310 |
msgstr ""
|
6311 |
|
6351 |
msgid "Please %s/%s in order to see your bookings / profile."
|
6352 |
msgstr ""
|
6353 |
|
6354 |
+
#: app/features/profile/profile.php:18 app/libraries/main.php:2199
|
6355 |
msgid "Your booking already canceled!"
|
6356 |
msgstr ""
|
6357 |
|
6359 |
msgid "#"
|
6360 |
msgstr ""
|
6361 |
|
6362 |
+
#: app/features/profile/profile.php:56 app/libraries/main.php:3218
|
6363 |
msgid "Status"
|
6364 |
msgstr ""
|
6365 |
|
6366 |
+
#: app/features/profile/profile.php:59 app/libraries/main.php:2317
|
6367 |
msgid "Attendees"
|
6368 |
msgstr ""
|
6369 |
|
6392 |
msgid "No bookings found!"
|
6393 |
msgstr ""
|
6394 |
|
6395 |
+
#: app/features/schema.php:63
|
6396 |
+
msgid ""
|
6397 |
+
"Following statuses are for informing search engines (Google, bing, etc) "
|
6398 |
+
"about your events so they can manage your events better so you can use these "
|
6399 |
+
"statuses to be more Search Engine Friendly."
|
6400 |
+
msgstr ""
|
6401 |
+
|
6402 |
+
#: app/features/schema.php:68
|
6403 |
+
msgid "Scheduled"
|
6404 |
+
msgstr ""
|
6405 |
+
|
6406 |
+
#: app/features/schema.php:70
|
6407 |
+
msgid "For active events!"
|
6408 |
+
msgstr ""
|
6409 |
+
|
6410 |
+
#: app/features/schema.php:75
|
6411 |
+
msgid "Postponed"
|
6412 |
+
msgstr ""
|
6413 |
+
|
6414 |
+
#: app/features/schema.php:77
|
6415 |
+
msgid "If you postponed an event then you can use this status!"
|
6416 |
+
msgstr ""
|
6417 |
+
|
6418 |
+
#: app/features/schema.php:82
|
6419 |
+
msgid "Cancelled"
|
6420 |
+
msgstr ""
|
6421 |
+
|
6422 |
+
#: app/features/schema.php:84
|
6423 |
+
msgid "If you cancelled an event then you should select this status!"
|
6424 |
+
msgstr ""
|
6425 |
+
|
6426 |
+
#: app/features/schema.php:89
|
6427 |
+
msgid "Moved Online"
|
6428 |
+
msgstr ""
|
6429 |
+
|
6430 |
+
#: app/features/schema.php:91
|
6431 |
+
msgid "For the events that moved online!"
|
6432 |
+
msgstr ""
|
6433 |
+
|
6434 |
+
#: app/features/schema.php:95
|
6435 |
+
msgid "Online Link"
|
6436 |
+
msgstr ""
|
6437 |
+
|
6438 |
+
#: app/features/schema.php:99
|
6439 |
+
msgid ""
|
6440 |
+
"Link to join online event. If you leave it empty event link will be used."
|
6441 |
+
msgstr ""
|
6442 |
+
|
6443 |
+
#: app/features/search.php:93 app/libraries/main.php:5409
|
6444 |
msgid "label"
|
6445 |
msgstr ""
|
6446 |
|
6465 |
msgstr ""
|
6466 |
|
6467 |
#: app/features/search_bar/search_result.php:12
|
6468 |
+
#: app/libraries/notifications.php:975 app/libraries/render.php:488
|
6469 |
#: app/modules/local-time/details.php:48 app/modules/local-time/type1.php:44
|
6470 |
#: app/modules/local-time/type2.php:46 app/modules/local-time/type3.php:44
|
6471 |
#: app/modules/next-event/details.php:104 app/skins/single.php:166
|
6472 |
#: app/skins/single.php:764 app/skins/single/default.php:108
|
6473 |
#: app/skins/single/default.php:331 app/skins/single/m1.php:43
|
6474 |
+
#: app/skins/single/modern.php:199
|
6475 |
msgid "All Day"
|
6476 |
msgstr ""
|
6477 |
|
6576 |
msgstr ""
|
6577 |
|
6578 |
#: app/libraries/factory.php:373 app/modules/countdown/details.php:138
|
6579 |
+
#: app/skins/available_spot/tpl.php:127 app/skins/countdown/tpl.php:120
|
6580 |
+
#: app/skins/countdown/tpl.php:165 app/skins/countdown/tpl.php:216
|
6581 |
msgid "days"
|
6582 |
msgstr ""
|
6583 |
|
6586 |
msgstr ""
|
6587 |
|
6588 |
#: app/libraries/factory.php:375 app/modules/countdown/details.php:145
|
6589 |
+
#: app/skins/available_spot/tpl.php:131 app/skins/countdown/tpl.php:126
|
6590 |
+
#: app/skins/countdown/tpl.php:171 app/skins/countdown/tpl.php:222
|
6591 |
msgid "hours"
|
6592 |
msgstr ""
|
6593 |
|
6596 |
msgstr ""
|
6597 |
|
6598 |
#: app/libraries/factory.php:377 app/modules/countdown/details.php:152
|
6599 |
+
#: app/skins/available_spot/tpl.php:135 app/skins/countdown/tpl.php:132
|
6600 |
+
#: app/skins/countdown/tpl.php:177 app/skins/countdown/tpl.php:228
|
6601 |
msgid "minutes"
|
6602 |
msgstr ""
|
6603 |
|
6606 |
msgstr ""
|
6607 |
|
6608 |
#: app/libraries/factory.php:379 app/modules/countdown/details.php:159
|
6609 |
+
#: app/skins/available_spot/tpl.php:139 app/skins/countdown/tpl.php:138
|
6610 |
+
#: app/skins/countdown/tpl.php:183 app/skins/countdown/tpl.php:234
|
6611 |
msgid "seconds"
|
6612 |
msgstr ""
|
6613 |
|
6698 |
msgid "Tile View"
|
6699 |
msgstr ""
|
6700 |
|
6701 |
+
#: app/libraries/main.php:385 app/libraries/main.php:5421
|
6702 |
msgid "SU"
|
6703 |
msgstr ""
|
6704 |
|
6705 |
+
#: app/libraries/main.php:386 app/libraries/main.php:5422
|
6706 |
msgid "MO"
|
6707 |
msgstr ""
|
6708 |
|
6709 |
+
#: app/libraries/main.php:387 app/libraries/main.php:5423
|
6710 |
msgid "TU"
|
6711 |
msgstr ""
|
6712 |
|
6713 |
+
#: app/libraries/main.php:388 app/libraries/main.php:5424
|
6714 |
msgid "WE"
|
6715 |
msgstr ""
|
6716 |
|
6717 |
+
#: app/libraries/main.php:389 app/libraries/main.php:5425
|
6718 |
msgid "TH"
|
6719 |
msgstr ""
|
6720 |
|
6721 |
+
#: app/libraries/main.php:390 app/libraries/main.php:5426
|
6722 |
msgid "FR"
|
6723 |
msgstr ""
|
6724 |
|
6725 |
+
#: app/libraries/main.php:391 app/libraries/main.php:5427
|
6726 |
msgid "SA"
|
6727 |
msgstr ""
|
6728 |
|
6869 |
msgid "Custom Shortcode"
|
6870 |
msgstr ""
|
6871 |
|
6872 |
+
#: app/libraries/main.php:2179
|
6873 |
msgid "Your booking already verified!"
|
6874 |
msgstr ""
|
6875 |
|
6876 |
+
#: app/libraries/main.php:2184
|
6877 |
msgid "Your booking successfully verified."
|
6878 |
msgstr ""
|
6879 |
|
6880 |
+
#: app/libraries/main.php:2185
|
6881 |
msgid "Your booking cannot verify!"
|
6882 |
msgstr ""
|
6883 |
|
6884 |
+
#: app/libraries/main.php:2204
|
6885 |
msgid "Your booking successfully canceled."
|
6886 |
msgstr ""
|
6887 |
|
6888 |
+
#: app/libraries/main.php:2205
|
6889 |
msgid "Your booking cannot be canceled."
|
6890 |
msgstr ""
|
6891 |
|
6892 |
+
#: app/libraries/main.php:2209
|
6893 |
msgid "You canceled the payment successfully."
|
6894 |
msgstr ""
|
6895 |
|
6896 |
+
#: app/libraries/main.php:2213
|
6897 |
msgid "You returned from payment gateway successfully."
|
6898 |
msgstr ""
|
6899 |
|
6900 |
+
#: app/libraries/main.php:2229
|
6901 |
msgid "Cannot find the invoice!"
|
6902 |
msgstr ""
|
6903 |
|
6904 |
+
#: app/libraries/main.php:2229
|
6905 |
msgid "Invoice is invalid."
|
6906 |
msgstr ""
|
6907 |
|
6908 |
+
#: app/libraries/main.php:2249
|
6909 |
msgid ""
|
6910 |
"Your booking still is not confirmed. You able download it after confirmation!"
|
6911 |
msgstr ""
|
6912 |
|
6913 |
+
#: app/libraries/main.php:2249
|
6914 |
msgid "Booking Not Confirmed."
|
6915 |
msgstr ""
|
6916 |
|
6917 |
+
#: app/libraries/main.php:2255
|
6918 |
msgid "Cannot find the booking!"
|
6919 |
msgstr ""
|
6920 |
|
6921 |
+
#: app/libraries/main.php:2255
|
6922 |
msgid "Booking is invalid."
|
6923 |
msgstr ""
|
6924 |
|
6925 |
+
#: app/libraries/main.php:2287
|
6926 |
#, php-format
|
6927 |
msgid "%s Invoice"
|
6928 |
msgstr ""
|
6929 |
|
6930 |
+
#: app/libraries/main.php:2361
|
6931 |
msgid "Billing"
|
6932 |
msgstr ""
|
6933 |
|
6934 |
+
#: app/libraries/main.php:2373
|
6935 |
msgid "Coupon Code"
|
6936 |
msgstr ""
|
6937 |
|
6938 |
+
#: app/libraries/main.php:2378
|
6939 |
msgid "Total"
|
6940 |
msgstr ""
|
6941 |
|
6942 |
+
#: app/libraries/main.php:2385
|
6943 |
msgid "Payment"
|
6944 |
msgstr ""
|
6945 |
|
6946 |
+
#: app/libraries/main.php:2389
|
6947 |
msgid "Gateway"
|
6948 |
msgstr ""
|
6949 |
|
6950 |
+
#: app/libraries/main.php:2397
|
6951 |
msgid "Payment Time"
|
6952 |
msgstr ""
|
6953 |
|
6954 |
+
#: app/libraries/main.php:2458
|
6955 |
msgid "Request is not valid."
|
6956 |
msgstr ""
|
6957 |
|
6958 |
+
#: app/libraries/main.php:2458
|
6959 |
msgid "iCal export stopped!"
|
6960 |
msgstr ""
|
6961 |
|
6962 |
+
#: app/libraries/main.php:2802 app/libraries/main.php:2832
|
6963 |
+
#: app/libraries/main.php:2861 app/libraries/main.php:2891
|
6964 |
+
#: app/libraries/main.php:2920 app/libraries/main.php:2949
|
6965 |
+
#: app/libraries/main.php:2978 app/libraries/main.php:3007
|
6966 |
+
#: app/libraries/main.php:3036 app/libraries/main.php:3060
|
6967 |
+
#: app/libraries/main.php:3104 app/libraries/main.php:3148
|
6968 |
+
#: app/libraries/main.php:3195 app/libraries/main.php:3242
|
6969 |
msgid "Sort"
|
6970 |
msgstr ""
|
6971 |
|
6972 |
+
#: app/libraries/main.php:2808 app/libraries/main.php:2838
|
6973 |
+
#: app/libraries/main.php:2867 app/libraries/main.php:2897
|
6974 |
+
#: app/libraries/main.php:2926 app/libraries/main.php:2955
|
6975 |
+
#: app/libraries/main.php:2984 app/libraries/main.php:3013
|
6976 |
+
#: app/libraries/main.php:3066 app/libraries/main.php:3110
|
6977 |
+
#: app/libraries/main.php:3154 app/libraries/main.php:3201
|
6978 |
msgid "Required Field"
|
6979 |
msgstr ""
|
6980 |
|
6981 |
+
#: app/libraries/main.php:2814 app/libraries/main.php:2844
|
6982 |
+
#: app/libraries/main.php:2873 app/libraries/main.php:2903
|
6983 |
+
#: app/libraries/main.php:2932 app/libraries/main.php:2961
|
6984 |
+
#: app/libraries/main.php:2990 app/libraries/main.php:3019
|
6985 |
+
#: app/libraries/main.php:3072 app/libraries/main.php:3116
|
6986 |
+
#: app/libraries/main.php:3160 app/libraries/main.php:3207
|
6987 |
msgid "Insert a label for this field"
|
6988 |
msgstr ""
|
6989 |
|
6990 |
+
#: app/libraries/main.php:3042
|
6991 |
msgid "HTML and shortcode are allowed."
|
6992 |
msgstr ""
|
6993 |
|
6994 |
+
#: app/libraries/main.php:3085 app/libraries/main.php:3129
|
6995 |
+
#: app/libraries/main.php:3173
|
6996 |
msgid "Option"
|
6997 |
msgstr ""
|
6998 |
|
6999 |
+
#: app/libraries/main.php:3207
|
7000 |
#, php-format
|
7001 |
msgid "Instead of %s, the page title with a link will be show."
|
7002 |
msgstr ""
|
7003 |
|
7004 |
+
#: app/libraries/main.php:3209
|
7005 |
msgid "Agreement Page"
|
7006 |
msgstr ""
|
7007 |
|
7008 |
+
#: app/libraries/main.php:3220
|
7009 |
msgid "Checked by default"
|
7010 |
msgstr ""
|
7011 |
|
7012 |
+
#: app/libraries/main.php:3221
|
7013 |
msgid "Unchecked by default"
|
7014 |
msgstr ""
|
7015 |
|
7016 |
+
#: app/libraries/main.php:3244
|
7017 |
msgid "Insert a label for this option"
|
7018 |
msgstr ""
|
7019 |
|
7020 |
+
#: app/libraries/main.php:3259
|
7021 |
msgid "Free"
|
7022 |
msgstr ""
|
7023 |
|
7024 |
+
#: app/libraries/main.php:3865 app/libraries/main.php:5671
|
7025 |
msgid "M.E. Calender"
|
7026 |
msgstr ""
|
7027 |
|
7028 |
+
#: app/libraries/main.php:4020
|
7029 |
#, php-format
|
7030 |
msgid "Copy of %s"
|
7031 |
msgstr ""
|
7032 |
|
7033 |
+
#: app/libraries/main.php:4784
|
7034 |
msgid "Booked an event."
|
7035 |
msgstr ""
|
7036 |
|
7037 |
+
#: app/libraries/main.php:4825
|
7038 |
#, php-format
|
7039 |
msgid "%s booked %s event."
|
7040 |
msgstr ""
|
7041 |
|
7042 |
+
#: app/libraries/main.php:5404
|
7043 |
msgid "Taxonomies"
|
7044 |
msgstr ""
|
7045 |
|
7046 |
+
#: app/libraries/main.php:5406
|
7047 |
msgid "Category Plural Label"
|
7048 |
msgstr ""
|
7049 |
|
7050 |
+
#: app/libraries/main.php:5407
|
7051 |
msgid "Category Singular Label"
|
7052 |
msgstr ""
|
7053 |
|
7054 |
+
#: app/libraries/main.php:5408
|
7055 |
msgid "Label Plural Label"
|
7056 |
msgstr ""
|
7057 |
|
7058 |
+
#: app/libraries/main.php:5409
|
7059 |
msgid "Label Singular Label"
|
7060 |
msgstr ""
|
7061 |
|
7062 |
+
#: app/libraries/main.php:5410
|
7063 |
msgid "Location Plural Label"
|
7064 |
msgstr ""
|
7065 |
|
7066 |
+
#: app/libraries/main.php:5411
|
7067 |
msgid "Location Singular Label"
|
7068 |
msgstr ""
|
7069 |
|
7070 |
+
#: app/libraries/main.php:5412
|
7071 |
msgid "Organizer Plural Label"
|
7072 |
msgstr ""
|
7073 |
|
7074 |
+
#: app/libraries/main.php:5413
|
7075 |
msgid "Organizer Singular Label"
|
7076 |
msgstr ""
|
7077 |
|
7078 |
+
#: app/libraries/main.php:5414
|
7079 |
msgid "Speaker Plural Label"
|
7080 |
msgstr ""
|
7081 |
|
7082 |
+
#: app/libraries/main.php:5415
|
7083 |
msgid "Speaker Singular Label"
|
7084 |
msgstr ""
|
7085 |
|
7086 |
+
#: app/libraries/main.php:5421
|
7087 |
msgid "Sunday abbreviation"
|
7088 |
msgstr ""
|
7089 |
|
7090 |
+
#: app/libraries/main.php:5422
|
7091 |
msgid "Monday abbreviation"
|
7092 |
msgstr ""
|
7093 |
|
7094 |
+
#: app/libraries/main.php:5423
|
7095 |
msgid "Tuesday abbreviation"
|
7096 |
msgstr ""
|
7097 |
|
7098 |
+
#: app/libraries/main.php:5424
|
7099 |
msgid "Wednesday abbreviation"
|
7100 |
msgstr ""
|
7101 |
|
7102 |
+
#: app/libraries/main.php:5425
|
7103 |
msgid "Thursday abbreviation"
|
7104 |
msgstr ""
|
7105 |
|
7106 |
+
#: app/libraries/main.php:5426
|
7107 |
msgid "Friday abbreviation"
|
7108 |
msgstr ""
|
7109 |
|
7110 |
+
#: app/libraries/main.php:5427
|
7111 |
msgid "Saturday abbreviation"
|
7112 |
msgstr ""
|
7113 |
|
7114 |
+
#: app/libraries/main.php:5431
|
7115 |
msgid "Others"
|
7116 |
msgstr ""
|
7117 |
|
7118 |
+
#: app/libraries/main.php:5433
|
7119 |
msgid "Booking Success Message"
|
7120 |
msgstr ""
|
7121 |
|
7122 |
+
#: app/libraries/main.php:5433
|
7123 |
msgid ""
|
7124 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
7125 |
"needed, please check your email."
|
7126 |
msgstr ""
|
7127 |
|
7128 |
+
#: app/libraries/main.php:5434 app/widgets/single.php:131
|
7129 |
msgid "Register Button"
|
7130 |
msgstr ""
|
7131 |
|
7132 |
+
#: app/libraries/main.php:5434 app/skins/available_spot/tpl.php:186
|
7133 |
+
#: app/skins/carousel/render.php:106 app/skins/carousel/render.php:144
|
7134 |
+
#: app/skins/grid/render.php:82 app/skins/grid/render.php:135
|
7135 |
+
#: app/skins/grid/render.php:182 app/skins/grid/render.php:212
|
7136 |
+
#: app/skins/list/render.php:67 app/skins/list/render.php:155
|
7137 |
+
#: app/skins/masonry/render.php:146 app/skins/single.php:785
|
7138 |
#: app/skins/single.php:788 app/skins/single/default.php:260
|
7139 |
#: app/skins/single/default.php:262 app/skins/single/default.php:483
|
7140 |
#: app/skins/single/default.php:485 app/skins/single/m1.php:140
|
7141 |
#: app/skins/single/m1.php:142 app/skins/single/m2.php:66
|
7142 |
+
#: app/skins/single/m2.php:68 app/skins/single/modern.php:77
|
7143 |
+
#: app/skins/single/modern.php:79 app/skins/slider/render.php:71
|
7144 |
+
#: app/skins/slider/render.php:95 app/skins/slider/render.php:118
|
7145 |
+
#: app/skins/slider/render.php:142 app/skins/slider/render.php:177
|
7146 |
msgid "REGISTER"
|
7147 |
msgstr ""
|
7148 |
|
7149 |
+
#: app/libraries/main.php:5435
|
7150 |
msgid "View Detail Button"
|
7151 |
msgstr ""
|
7152 |
|
7153 |
+
#: app/libraries/main.php:5435 app/skins/carousel/render.php:106
|
7154 |
+
#: app/skins/carousel/render.php:144 app/skins/grid/render.php:82
|
7155 |
+
#: a
|
|
|
|
|
|
|
|
|
|