Version Description
24 February 2021 = - Added: An option to use CC instead of BCC for notification recipients - Added: No Event Found message for archive pages - Improved: The custom CSS loading to fix some unwanted issues with cache and minify plugins - Improved: The message showing on the import menu - Updated: Spanish language (Thanks to Eloy Perez) - Fixed: A warning in Countdown, Available Spot and Slider skins (pro) - Fixed: An issue in referred date for those events that are linked to external websites - Fixed: An issue in default full calendar skin loaded in archive pages - Fixed: A PHP fatal error in some hosts - Fixed: An issue on ics link of email to show the correct time - Fixed: An issue on showing expired events on Related Events section - Fixed: Some issues on showing dates in minimal and modern styles of list view - Fixed: An issue in map module of the single event (pro) - Fixed: Some issues on booking module when date picker is set to calendar (pro) - Fixed: An issue in storing sender email name - Fixed: Some issues on category checkboxes - Fixed: An issue in downloading attendees of a specific date - Fixed: The datepicker style in the backend - Fixed: Duplicated location in the single event page - Fixed: Constant Contact integration lists (pro) - Fixed: An issue regarding the showing date in the Masonry view (pro) - Fixed: Typos in the booking messages (pro) - Fixed: Some minor issues
Release Info
Developer | webnus |
Plugin | Modern Events Calendar Lite |
Version | 5.17.2 |
Comparing to | |
See all releases |
Code changes from version 5.17.1 to 5.17.2
- app/features/fes.php +1 -1
- app/features/fes/form.php +3 -0
- app/features/gateways/paypal_ipn.php +0 -30
- app/features/ix.php +3 -2
- app/features/ix/import.php +25 -5
- app/features/mec/dyncss.php +12 -18
- app/features/mec/settings.php +53 -40
- app/features/occurrences.php +1 -1
- app/libraries/factory.php +1 -9
- app/libraries/main.php +22 -26
- app/libraries/notifications.php +48 -13
- app/libraries/render.php +2 -1
- app/libraries/skins.php +4 -2
- app/modules/booking/default.php +2 -1
- app/modules/booking/steps/tickets.php +3 -3
- app/modules/googlemap/details.php +9 -6
- app/modules/local-time/type2.php +8 -6
- app/skins/custom.php +0 -141
- app/skins/custom/render.php +3 -0
- app/skins/default_full_calendar/tpl.php +5 -2
- app/skins/full_calendar/tpl.php +1 -1
- app/skins/list/render.php +31 -3
- app/skins/map.php +1 -1
- app/skins/masonry/render.php +7 -30
- app/skins/single.php +23 -15
- app/skins/single/default.php +3 -3
- assets/css/frontend.css +67 -3
- assets/css/frontend.min.css +1 -1
- assets/js/frontend.js +3 -0
- changelog.txt +27 -2
- languages/modern-events-calendar-lite-cs_CZ.mo +0 -0
- languages/modern-events-calendar-lite-cs_CZ.po +836 -807
- languages/modern-events-calendar-lite-de_DE.mo +0 -0
- languages/modern-events-calendar-lite-de_DE.po +650 -622
@@ -227,7 +227,7 @@ class MEC_feature_fes extends MEC_base
|
|
227 |
|
228 |
$post_ids = trim($booking_ids) ? explode(',', trim($booking_ids, ', ')) : array();
|
229 |
|
230 |
-
if(!count($post_ids))
|
231 |
{
|
232 |
$books = $this->db->select("SELECT `post_id` FROM `#__postmeta` WHERE `meta_key`='mec_event_id' AND `meta_value`={$event_id}", 'loadAssocList');
|
233 |
foreach($books as $book) if(isset($book['post_id'])) $post_ids[] = $book['post_id'];
|
227 |
|
228 |
$post_ids = trim($booking_ids) ? explode(',', trim($booking_ids, ', ')) : array();
|
229 |
|
230 |
+
if(!count($post_ids) and !$timestamp)
|
231 |
{
|
232 |
$books = $this->db->select("SELECT `post_id` FROM `#__postmeta` WHERE `meta_key`='mec_event_id' AND `meta_value`={$event_id}", 'loadAssocList');
|
233 |
foreach($books as $book) if(isset($book['post_id'])) $post_ids[] = $book['post_id'];
|
@@ -364,6 +364,7 @@ $this->factory->params('footer', $javascript);
|
|
364 |
</div>
|
365 |
<?php endif; ?>
|
366 |
|
|
|
367 |
<h4><?php _e('Visibility', 'modern-events-calendar-lite'); ?></h4>
|
368 |
<div class="mec-form-row">
|
369 |
<div class="mec-col-4">
|
@@ -373,9 +374,11 @@ $this->factory->params('footer', $javascript);
|
|
373 |
</select>
|
374 |
</div>
|
375 |
</div>
|
|
|
376 |
|
377 |
</div>
|
378 |
<div id="mec_meta_box_repeat_form">
|
|
|
379 |
<div class="mec-form-row">
|
380 |
<input <?php if($repeat_status == '1') echo 'checked="checked"'; ?> type="checkbox" name="mec[date][repeat][status]" id="mec_repeat" value="1" /><label for="mec_repeat"><?php _e('Event Repeating', 'modern-events-calendar-lite'); ?></label>
|
381 |
</div>
|
364 |
</div>
|
365 |
<?php endif; ?>
|
366 |
|
367 |
+
<?php if(!isset($this->settings['fes_section_shortcode_visibility']) or (isset($this->settings['fes_section_shortcode_visibility']) and $this->settings['fes_section_shortcode_visibility'])): ?>
|
368 |
<h4><?php _e('Visibility', 'modern-events-calendar-lite'); ?></h4>
|
369 |
<div class="mec-form-row">
|
370 |
<div class="mec-col-4">
|
374 |
</select>
|
375 |
</div>
|
376 |
</div>
|
377 |
+
<?php endif; ?>
|
378 |
|
379 |
</div>
|
380 |
<div id="mec_meta_box_repeat_form">
|
381 |
+
<h4><?php _e('Repeating', 'modern-events-calendar-lite'); ?></h4>
|
382 |
<div class="mec-form-row">
|
383 |
<input <?php if($repeat_status == '1') echo 'checked="checked"'; ?> type="checkbox" name="mec[date][repeat][status]" id="mec_repeat" value="1" /><label for="mec_repeat"><?php _e('Event Repeating', 'modern-events-calendar-lite'); ?></label>
|
384 |
</div>
|
@@ -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);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -188,7 +188,7 @@ class MEC_feature_ix extends MEC_base
|
|
188 |
$nonce = (isset($_POST['_wpnonce']) ? $_POST['_wpnonce'] : '');
|
189 |
if(wp_verify_nonce($nonce, 'mec_import_start_upload'))
|
190 |
{
|
191 |
-
if($this->action
|
192 |
elseif($this->action == 'import-start-bookings') $this->response = $this->import_start_bookings();
|
193 |
elseif(!empty($this->action)) $this->response = apply_filters('mec_import_item_action', $this->action);
|
194 |
}
|
@@ -429,7 +429,8 @@ class MEC_feature_ix extends MEC_base
|
|
429 |
if(!isset($feed_file['name']) or (isset($feed_file['name']) and trim($feed_file['name']) == '')) return array('success' => 0, 'message' => __('Please upload the feed file.', 'modern-events-calendar-lite'));
|
430 |
|
431 |
// File name validation
|
432 |
-
$
|
|
|
433 |
if(!in_array($name_end, array('xml', 'ics'))) return array('success' => 0, 'message' => __('Please upload an XML or an ICS file.', 'modern-events-calendar-lite'));
|
434 |
|
435 |
// File Type is not valid
|
188 |
$nonce = (isset($_POST['_wpnonce']) ? $_POST['_wpnonce'] : '');
|
189 |
if(wp_verify_nonce($nonce, 'mec_import_start_upload'))
|
190 |
{
|
191 |
+
if(in_array($this->action, array('import-start-xml', 'import-start-ics'))) $this->response = $this->import_start();
|
192 |
elseif($this->action == 'import-start-bookings') $this->response = $this->import_start_bookings();
|
193 |
elseif(!empty($this->action)) $this->response = apply_filters('mec_import_item_action', $this->action);
|
194 |
}
|
429 |
if(!isset($feed_file['name']) or (isset($feed_file['name']) and trim($feed_file['name']) == '')) return array('success' => 0, 'message' => __('Please upload the feed file.', 'modern-events-calendar-lite'));
|
430 |
|
431 |
// File name validation
|
432 |
+
$ex = explode('.', $feed_file['name']);
|
433 |
+
$name_end = end($ex);
|
434 |
if(!in_array($name_end, array('xml', 'ics'))) return array('success' => 0, 'message' => __('Please upload an XML or an ICS file.', 'modern-events-calendar-lite'));
|
435 |
|
436 |
// File Type is not valid
|
@@ -25,12 +25,22 @@ $third_parties = $this->main->get_integrated_plugins_for_import();
|
|
25 |
</div>
|
26 |
<div class="mec-form-row">
|
27 |
<input type="file" name="feed" id="feed" title="<?php esc_attr_e('XML Feed', 'modern-events-calendar-lite'); ?>">
|
28 |
-
<input type="hidden" name="mec-ix-action" value="import-start">
|
29 |
<?php wp_nonce_field('mec_import_start_upload'); ?>
|
30 |
<button class="button button-primary mec-button-primary mec-btn-2"><?php _e('Upload & Import', 'modern-events-calendar-lite'); ?></button>
|
31 |
</div>
|
32 |
</form>
|
33 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
<br><h3><?php _e('Import .ics File', 'modern-events-calendar-lite'); ?></h3>
|
35 |
<?php if($this->getPRO()): ?>
|
36 |
<form id="mec_import_ics_form" action="<?php echo $this->main->get_full_url(); ?>" method="POST" enctype="multipart/form-data">
|
@@ -39,7 +49,7 @@ $third_parties = $this->main->get_integrated_plugins_for_import();
|
|
39 |
</div>
|
40 |
<div class="mec-form-row">
|
41 |
<input type="file" name="feed" id="feed" title="<?php esc_attr_e('ICS Feed', 'modern-events-calendar-lite'); ?>">
|
42 |
-
<input type="hidden" name="mec-ix-action" value="import-start">
|
43 |
<?php wp_nonce_field('mec_import_start_upload'); ?>
|
44 |
<button class="button button-primary mec-button-primary mec-btn-2"><?php _e('Upload & Import', 'modern-events-calendar-lite'); ?></button>
|
45 |
</div>
|
@@ -48,6 +58,16 @@ $third_parties = $this->main->get_integrated_plugins_for_import();
|
|
48 |
<div class="info-msg"><?php echo sprintf(__("%s is required to use this feature.", 'modern-events-calendar-lite'), '<a href="'.$this->main->get_pro_link().'" target="_blank">'.__('Pro version of Modern Events Calendar', 'modern-events-calendar-lite').'</a>'); ?></div>
|
49 |
<?php endif; ?>
|
50 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
51 |
<?php do_action('mec_import_item', $this); ?>
|
52 |
|
53 |
<br><h3><?php _e('Import Booking CSV File', 'modern-events-calendar-lite'); ?></h3>
|
@@ -68,12 +88,12 @@ $third_parties = $this->main->get_integrated_plugins_for_import();
|
|
68 |
<div class="info-msg"><?php echo sprintf(__("%s is required to use this feature.", 'modern-events-calendar-lite'), '<a href="'.$this->main->get_pro_link().'" target="_blank">'.__('Pro version of Modern Events Calendar', 'modern-events-calendar-lite').'</a>'); ?></div>
|
69 |
<?php endif; ?>
|
70 |
|
71 |
-
<?php if($this->action == 'import-start
|
72 |
<div class="mec-ix-import-started">
|
73 |
<?php if($this->response['success'] == 0): ?>
|
74 |
-
|
75 |
<?php else: ?>
|
76 |
-
|
77 |
<?php endif; ?>
|
78 |
</div>
|
79 |
<?php endif; ?>
|
25 |
</div>
|
26 |
<div class="mec-form-row">
|
27 |
<input type="file" name="feed" id="feed" title="<?php esc_attr_e('XML Feed', 'modern-events-calendar-lite'); ?>">
|
28 |
+
<input type="hidden" name="mec-ix-action" value="import-start-xml">
|
29 |
<?php wp_nonce_field('mec_import_start_upload'); ?>
|
30 |
<button class="button button-primary mec-button-primary mec-btn-2"><?php _e('Upload & Import', 'modern-events-calendar-lite'); ?></button>
|
31 |
</div>
|
32 |
</form>
|
33 |
|
34 |
+
<?php if($this->action == 'import-start-xml'): ?>
|
35 |
+
<div class="mec-ix-import-started">
|
36 |
+
<?php if($this->response['success'] == 0): ?>
|
37 |
+
<div class="mec-error"><?php echo $this->response['message']; ?></div>
|
38 |
+
<?php else: ?>
|
39 |
+
<div class="mec-success"><?php echo $this->response['message']; ?></div>
|
40 |
+
<?php endif; ?>
|
41 |
+
</div>
|
42 |
+
<?php endif; ?>
|
43 |
+
|
44 |
<br><h3><?php _e('Import .ics File', 'modern-events-calendar-lite'); ?></h3>
|
45 |
<?php if($this->getPRO()): ?>
|
46 |
<form id="mec_import_ics_form" action="<?php echo $this->main->get_full_url(); ?>" method="POST" enctype="multipart/form-data">
|
49 |
</div>
|
50 |
<div class="mec-form-row">
|
51 |
<input type="file" name="feed" id="feed" title="<?php esc_attr_e('ICS Feed', 'modern-events-calendar-lite'); ?>">
|
52 |
+
<input type="hidden" name="mec-ix-action" value="import-start-ics">
|
53 |
<?php wp_nonce_field('mec_import_start_upload'); ?>
|
54 |
<button class="button button-primary mec-button-primary mec-btn-2"><?php _e('Upload & Import', 'modern-events-calendar-lite'); ?></button>
|
55 |
</div>
|
58 |
<div class="info-msg"><?php echo sprintf(__("%s is required to use this feature.", 'modern-events-calendar-lite'), '<a href="'.$this->main->get_pro_link().'" target="_blank">'.__('Pro version of Modern Events Calendar', 'modern-events-calendar-lite').'</a>'); ?></div>
|
59 |
<?php endif; ?>
|
60 |
|
61 |
+
<?php if($this->action == 'import-start-ics'): ?>
|
62 |
+
<div class="mec-ix-import-started">
|
63 |
+
<?php if($this->response['success'] == 0): ?>
|
64 |
+
<div class="mec-error"><?php echo $this->response['message']; ?></div>
|
65 |
+
<?php else: ?>
|
66 |
+
<div class="mec-success"><?php echo $this->response['message']; ?></div>
|
67 |
+
<?php endif; ?>
|
68 |
+
</div>
|
69 |
+
<?php endif; ?>
|
70 |
+
|
71 |
<?php do_action('mec_import_item', $this); ?>
|
72 |
|
73 |
<br><h3><?php _e('Import Booking CSV File', 'modern-events-calendar-lite'); ?></h3>
|
88 |
<div class="info-msg"><?php echo sprintf(__("%s is required to use this feature.", 'modern-events-calendar-lite'), '<a href="'.$this->main->get_pro_link().'" target="_blank">'.__('Pro version of Modern Events Calendar', 'modern-events-calendar-lite').'</a>'); ?></div>
|
89 |
<?php endif; ?>
|
90 |
|
91 |
+
<?php if($this->action == 'import-start-bookings'): ?>
|
92 |
<div class="mec-ix-import-started">
|
93 |
<?php if($this->response['success'] == 0): ?>
|
94 |
+
<div class="mec-error"><?php echo $this->response['message']; ?></div>
|
95 |
<?php else: ?>
|
96 |
+
<div class="mec-success"><?php echo $this->response['message']; ?></div>
|
97 |
<?php endif; ?>
|
98 |
</div>
|
99 |
<?php endif; ?>
|
@@ -8,33 +8,27 @@ $styling = $this->main->get_styling();
|
|
8 |
// colorskin
|
9 |
$color = '';
|
10 |
|
11 |
-
function mec_dyn_hex2rgb(
|
12 |
-
|
13 |
-
|
14 |
-
}
|
15 |
-
if ( strlen( $cc ) == 6 ) {
|
16 |
-
list( $r, $g, $b ) = array( $cc[0] . $cc[1], $cc[2] . $cc[3], $cc[4] . $cc[5] );
|
17 |
-
} elseif ( strlen( $cc ) == 3 ) {
|
18 |
-
list( $r, $g, $b ) = array( $cc[0] . $cc[0], $cc[1] . $cc[1], $cc[2] . $cc[2] );
|
19 |
-
} else {
|
20 |
-
return false;
|
21 |
-
}
|
22 |
|
23 |
-
$
|
24 |
-
$
|
25 |
-
|
26 |
|
27 |
-
|
|
|
|
|
28 |
|
29 |
-
|
|
|
30 |
}
|
31 |
|
32 |
-
|
33 |
if(isset($styling['color']) && $styling['color']) $color = $styling['color'];
|
34 |
elseif(isset($styling['mec_colorskin'])) $color = $styling['mec_colorskin'];
|
35 |
|
36 |
$rgb_color = '64,217,241';
|
37 |
-
if
|
38 |
|
39 |
// Typography
|
40 |
$mec_h_fontfamily_arr = $mec_p_fontfamily_arr = $fonts_url = $mec_container_normal_width = $mec_container_large_width = '';
|
8 |
// colorskin
|
9 |
$color = '';
|
10 |
|
11 |
+
function mec_dyn_hex2rgb($cc)
|
12 |
+
{
|
13 |
+
if($cc[0] == '#') $cc = substr($cc, 1);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
|
15 |
+
if(strlen($cc) == 6) list($r, $g, $b) = array($cc[0] . $cc[1], $cc[2] . $cc[3], $cc[4] . $cc[5]);
|
16 |
+
elseif(strlen($cc) == 3) list($r, $g, $b) = array($cc[0] . $cc[0], $cc[1] . $cc[1], $cc[2] . $cc[2]);
|
17 |
+
else return false;
|
18 |
|
19 |
+
$r = ((!function_exists('ctype_xdigit') or (function_exists('ctype_xdigit') and ctype_xdigit($r))) ? hexdec($r) : NULL);
|
20 |
+
$g = ((!function_exists('ctype_xdigit') or (function_exists('ctype_xdigit') and ctype_xdigit($g))) ? hexdec($g) : NULL);
|
21 |
+
$b = ((!function_exists('ctype_xdigit') or (function_exists('ctype_xdigit') and ctype_xdigit($b))) ? hexdec($b) : NULL);
|
22 |
|
23 |
+
if(is_null($r) or is_null($g) or is_null($b)) return false;
|
24 |
+
else return array('red' => $r, 'green' => $g, 'blue' => $b);
|
25 |
}
|
26 |
|
|
|
27 |
if(isset($styling['color']) && $styling['color']) $color = $styling['color'];
|
28 |
elseif(isset($styling['mec_colorskin'])) $color = $styling['mec_colorskin'];
|
29 |
|
30 |
$rgb_color = '64,217,241';
|
31 |
+
if(!empty($color)) $rgb_color = mec_dyn_hex2rgb($color);
|
32 |
|
33 |
// Typography
|
34 |
$mec_h_fontfamily_arr = $mec_p_fontfamily_arr = $fonts_url = $mec_container_normal_width = $mec_container_large_width = '';
|
@@ -4,12 +4,6 @@ defined('MECEXEC') or die();
|
|
4 |
|
5 |
/** @var MEC_feature_mec $this */
|
6 |
|
7 |
-
use Ctct\Components\Contacts\Contact;
|
8 |
-
use Ctct\ConstantContact;
|
9 |
-
use Ctct\Exceptions\CtctException;
|
10 |
-
require_once MEC_ABSPATH.'/app/api/Ctct/autoload.php';
|
11 |
-
require_once MEC_ABSPATH.'/app/api/Ctct/vendor/autoload.php';
|
12 |
-
|
13 |
$settings = $this->main->get_settings();
|
14 |
$archive_skins = $this->main->get_archive_skins();
|
15 |
$category_skins = $this->main->get_category_skins();
|
@@ -107,26 +101,6 @@ $shortcodes = get_posts(array(
|
|
107 |
</div>
|
108 |
</div>
|
109 |
|
110 |
-
<!-- Start Sender Name -->
|
111 |
-
<div class="mec-form-row">
|
112 |
-
<label class="mec-col-3" for="mec_settings_booking_sender_name"><?php _e('Sender Name', 'modern-events-calendar-lite'); ?></label>
|
113 |
-
<div class="mec-col-9">
|
114 |
-
<input type="text" id="mec_settings_booking_sender_name" name="mec[settings][booking_sender_name]"
|
115 |
-
value="<?php echo (isset($settings['booking_sender_name']) and trim($settings['booking_sender_name'])) ? stripslashes($settings['booking_sender_name']) : ''; ?>" placeholder="<?php _e('e.g. Webnus', 'modern-events-calendar-lite'); ?>"/>
|
116 |
-
</div>
|
117 |
-
</div>
|
118 |
-
<!-- End Sender Name -->
|
119 |
-
|
120 |
-
<!-- Start Sender Email -->
|
121 |
-
<div class="mec-form-row">
|
122 |
-
<label class="mec-col-3" for="mec_settings_booking_sender_email"><?php _e('Sender Email', 'modern-events-calendar-lite'); ?></label>
|
123 |
-
<div class="mec-col-9">
|
124 |
-
<input type="text" id="mec_settings_booking_sender_email" name="mec[settings][booking_sender_email]"
|
125 |
-
value="<?php echo (isset($settings['booking_sender_email']) and trim($settings['booking_sender_email'])) ? $settings['booking_sender_email'] : ''; ?>" placeholder="<?php _e('e.g. info@webnus.biz', 'modern-events-calendar-lite'); ?>"/>
|
126 |
-
</div>
|
127 |
-
</div>
|
128 |
-
<!-- End Sender Email -->
|
129 |
-
|
130 |
<div class="mec-form-row">
|
131 |
<label class="mec-col-3"><?php _e('Exclude Date Suffix', 'modern-events-calendar-lite'); ?></label>
|
132 |
<label>
|
@@ -282,6 +256,36 @@ $shortcodes = get_posts(array(
|
|
282 |
|
283 |
</div>
|
284 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
285 |
<div id="archive_options" class="mec-options-fields">
|
286 |
<h4 class="mec-form-subtitle"><?php _e('Archive Pages', 'modern-events-calendar-lite'); ?></h4>
|
287 |
|
@@ -794,6 +798,19 @@ $shortcodes = get_posts(array(
|
|
794 |
<input value="1" type="checkbox" name="mec[settings][fes_section_labels]" <?php if(!isset($settings['fes_section_labels']) or (isset($settings['fes_section_labels']) and $settings['fes_section_labels'])) echo 'checked="checked"'; ?> /> <?php _e('Event Labels', 'modern-events-calendar-lite'); ?>
|
795 |
</label>
|
796 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
797 |
<div class="mec-form-row">
|
798 |
<label>
|
799 |
<input type="hidden" name="mec[settings][fes_section_event_color]" value="0" />
|
@@ -963,7 +980,7 @@ $shortcodes = get_posts(array(
|
|
963 |
<input onchange="jQuery('#mec_fes_note_container_toggle').toggle();" value="1" type="checkbox" name="mec[settings][fes_note]" <?php if(isset($settings['fes_note']) and $settings['fes_note']) echo 'checked="checked"'; ?> /> <?php _e('Event Note', 'modern-events-calendar-lite'); ?>
|
964 |
</label>
|
965 |
<span class="mec-tooltip">
|
966 |
-
<div class="box
|
967 |
<h5 class="title"><?php _e('Event Note', 'modern-events-calendar-lite'); ?></h5>
|
968 |
<div class="content"><p><?php esc_attr_e("Users can put a note for editors while they're submitting the event. Also you can put %%event_note%% into the new event notification in order to get users' note in email.", 'modern-events-calendar-lite'); ?><a href="https://webnus.net/dox/modern-events-calendar/frontend-event-submission/" target="_blank"><?php _e('Read More', 'modern-events-calendar-lite'); ?></a></p></div>
|
969 |
</div>
|
@@ -1233,19 +1250,15 @@ $shortcodes = get_posts(array(
|
|
1233 |
</div>
|
1234 |
</div>
|
1235 |
<?php
|
1236 |
-
|
1237 |
if ( isset($settings['constantcontact_access_token']) and trim($settings['constantcontact_access_token']) != '' and isset($settings['constantcontact_api_key']) and trim($settings['constantcontact_api_key']) != '' ){
|
1238 |
-
$
|
1239 |
-
|
1240 |
-
|
1241 |
-
|
1242 |
-
|
1243 |
-
|
1244 |
-
|
1245 |
-
if (!isset($lists)) {
|
1246 |
-
$lists = null;
|
1247 |
-
}
|
1248 |
-
}
|
1249 |
}
|
1250 |
|
1251 |
?>
|
@@ -1256,7 +1269,7 @@ $shortcodes = get_posts(array(
|
|
1256 |
<select name="mec[settings][constantcontact_list_id]" id="mec_settings_constantcontact_list_id">
|
1257 |
<?php
|
1258 |
if ( isset($lists) and !empty($lists)) {
|
1259 |
-
foreach ($lists as $list) {
|
1260 |
?>
|
1261 |
<option <?php if(isset($settings['constantcontact_list_id']) and $list->id == $settings['constantcontact_list_id']) echo 'selected="selected"'; ?> value="<?php echo $list->id ; ?>"><?php echo $list->name ; ?></option>
|
1262 |
<?php
|
4 |
|
5 |
/** @var MEC_feature_mec $this */
|
6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
$settings = $this->main->get_settings();
|
8 |
$archive_skins = $this->main->get_archive_skins();
|
9 |
$category_skins = $this->main->get_category_skins();
|
101 |
</div>
|
102 |
</div>
|
103 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
104 |
<div class="mec-form-row">
|
105 |
<label class="mec-col-3"><?php _e('Exclude Date Suffix', 'modern-events-calendar-lite'); ?></label>
|
106 |
<label>
|
256 |
|
257 |
</div>
|
258 |
|
259 |
+
<div id="email_option" class="mec-options-fields">
|
260 |
+
|
261 |
+
<h4 class="mec-form-subtitle"><?php _e('Email Options', 'modern-events-calendar-lite'); ?></h4>
|
262 |
+
|
263 |
+
<div class="mec-form-row">
|
264 |
+
<label class="mec-col-3" for="mec_settings_booking_sender_name"><?php _e('Sender Name', 'modern-events-calendar-lite'); ?></label>
|
265 |
+
<div class="mec-col-9">
|
266 |
+
<input type="text" id="mec_settings_booking_sender_name" name="mec[settings][booking_sender_name]"
|
267 |
+
value="<?php echo (isset($settings['booking_sender_name']) and trim($settings['booking_sender_name'])) ? esc_attr(stripslashes($settings['booking_sender_name'])) : ''; ?>" placeholder="<?php _e('e.g. Webnus', 'modern-events-calendar-lite'); ?>"/>
|
268 |
+
</div>
|
269 |
+
</div>
|
270 |
+
<div class="mec-form-row">
|
271 |
+
<label class="mec-col-3" for="mec_settings_booking_sender_email"><?php _e('Sender Email', 'modern-events-calendar-lite'); ?></label>
|
272 |
+
<div class="mec-col-9">
|
273 |
+
<input type="text" id="mec_settings_booking_sender_email" name="mec[settings][booking_sender_email]"
|
274 |
+
value="<?php echo (isset($settings['booking_sender_email']) and trim($settings['booking_sender_email'])) ? $settings['booking_sender_email'] : ''; ?>" placeholder="<?php _e('e.g. info@webnus.biz', 'modern-events-calendar-lite'); ?>"/>
|
275 |
+
</div>
|
276 |
+
</div>
|
277 |
+
<div class="mec-form-row">
|
278 |
+
<label class="mec-col-3" for="mec_settings_booking_recipients_method"><?php _e('Recipients Method', 'modern-events-calendar-lite'); ?></label>
|
279 |
+
<div class="mec-col-9">
|
280 |
+
<select id="mec_settings_booking_recipients_method" name="mec[settings][booking_recipients_method]">
|
281 |
+
<option value="BCC" <?php echo ((isset($settings['booking_recipients_method']) and trim($settings['booking_recipients_method']) == 'BCC') ? 'selected="selected"' : ''); ?>><?php esc_html_e('BCC (Invisible)', 'modern-events-calendar-lite'); ?></option>
|
282 |
+
<option value="CC" <?php echo ((isset($settings['booking_recipients_method']) and trim($settings['booking_recipients_method']) == 'CC') ? 'selected="selected"' : ''); ?>><?php esc_html_e('CC (Visible)', 'modern-events-calendar-lite'); ?></option>
|
283 |
+
</select>
|
284 |
+
</div>
|
285 |
+
</div>
|
286 |
+
|
287 |
+
</div>
|
288 |
+
|
289 |
<div id="archive_options" class="mec-options-fields">
|
290 |
<h4 class="mec-form-subtitle"><?php _e('Archive Pages', 'modern-events-calendar-lite'); ?></h4>
|
291 |
|
798 |
<input value="1" type="checkbox" name="mec[settings][fes_section_labels]" <?php if(!isset($settings['fes_section_labels']) or (isset($settings['fes_section_labels']) and $settings['fes_section_labels'])) echo 'checked="checked"'; ?> /> <?php _e('Event Labels', 'modern-events-calendar-lite'); ?>
|
799 |
</label>
|
800 |
</div>
|
801 |
+
<div class="mec-form-row">
|
802 |
+
<label>
|
803 |
+
<input type="hidden" name="mec[settings][fes_section_shortcode_visibility]" value="0" />
|
804 |
+
<input value="1" type="checkbox" name="mec[settings][fes_section_shortcode_visibility]" <?php if(!isset($settings['fes_section_shortcode_visibility']) or (isset($settings['fes_section_shortcode_visibility']) and $settings['fes_section_shortcode_visibility'])) echo 'checked="checked"'; ?> /> <?php _e('Event Visibility', 'modern-events-calendar-lite'); ?>
|
805 |
+
</label>
|
806 |
+
<span class="mec-tooltip">
|
807 |
+
<div class="box right">
|
808 |
+
<h5 class="title"><?php _e('Event Visibility', 'modern-events-calendar-lite'); ?></h5>
|
809 |
+
<div class="content"><p><?php esc_attr_e("This feature adds the ability to hide the current event to all MEC Shortcodes.", 'modern-events-calendar-lite'); ?><a href="https://webnus.net/dox/modern-events-calendar/add-event/" target="_blank"><?php _e('Read More', 'modern-events-calendar-lite'); ?></a></p></div>
|
810 |
+
</div>
|
811 |
+
<i title="" class="dashicons-before dashicons-editor-help"></i>
|
812 |
+
</span>
|
813 |
+
</div>
|
814 |
<div class="mec-form-row">
|
815 |
<label>
|
816 |
<input type="hidden" name="mec[settings][fes_section_event_color]" value="0" />
|
980 |
<input onchange="jQuery('#mec_fes_note_container_toggle').toggle();" value="1" type="checkbox" name="mec[settings][fes_note]" <?php if(isset($settings['fes_note']) and $settings['fes_note']) echo 'checked="checked"'; ?> /> <?php _e('Event Note', 'modern-events-calendar-lite'); ?>
|
981 |
</label>
|
982 |
<span class="mec-tooltip">
|
983 |
+
<div class="box right">
|
984 |
<h5 class="title"><?php _e('Event Note', 'modern-events-calendar-lite'); ?></h5>
|
985 |
<div class="content"><p><?php esc_attr_e("Users can put a note for editors while they're submitting the event. Also you can put %%event_note%% into the new event notification in order to get users' note in email.", 'modern-events-calendar-lite'); ?><a href="https://webnus.net/dox/modern-events-calendar/frontend-event-submission/" target="_blank"><?php _e('Read More', 'modern-events-calendar-lite'); ?></a></p></div>
|
986 |
</div>
|
1250 |
</div>
|
1251 |
</div>
|
1252 |
<?php
|
1253 |
+
$lists = '';
|
1254 |
if ( isset($settings['constantcontact_access_token']) and trim($settings['constantcontact_access_token']) != '' and isset($settings['constantcontact_api_key']) and trim($settings['constantcontact_api_key']) != '' ){
|
1255 |
+
$api_key = $settings['constantcontact_api_key'];
|
1256 |
+
$lists = wp_remote_retrieve_body(wp_remote_get("https://api.constantcontact.com/v2/lists?api_key=".$api_key, array(
|
1257 |
+
'body' => null,
|
1258 |
+
'timeout' => '10',
|
1259 |
+
'redirection' => '10',
|
1260 |
+
'headers' => array('Content-Type' => 'application/json', 'Authorization' => 'Bearer ' . $settings['constantcontact_access_token']),
|
1261 |
+
)));
|
|
|
|
|
|
|
|
|
1262 |
}
|
1263 |
|
1264 |
?>
|
1269 |
<select name="mec[settings][constantcontact_list_id]" id="mec_settings_constantcontact_list_id">
|
1270 |
<?php
|
1271 |
if ( isset($lists) and !empty($lists)) {
|
1272 |
+
foreach (json_decode($lists) as $list) {
|
1273 |
?>
|
1274 |
<option <?php if(isset($settings['constantcontact_list_id']) and $list->id == $settings['constantcontact_list_id']) echo 'selected="selected"'; ?> value="<?php echo $list->id ; ?>"><?php echo $list->name ; ?></option>
|
1275 |
<?php
|
@@ -358,7 +358,7 @@ class MEC_feature_occurrences extends MEC_base
|
|
358 |
{
|
359 |
$params = $this->get($occurrence_id);
|
360 |
$data = $this->get_data($occurrence_id);
|
361 |
-
$event_id = $data['post_id']
|
362 |
|
363 |
$date_format = get_option('date_format');
|
364 |
$time_format = get_option('time_format');
|
358 |
{
|
359 |
$params = $this->get($occurrence_id);
|
360 |
$data = $this->get_data($occurrence_id);
|
361 |
+
$event_id = (isset($data['post_id']) ? $data['post_id'] : 0);
|
362 |
|
363 |
$date_format = get_option('date_format');
|
364 |
$time_format = get_option('time_format');
|
@@ -312,7 +312,6 @@ class MEC_factory extends MEC_base
|
|
312 |
|
313 |
// Include MEC backend CSS
|
314 |
wp_enqueue_style('mec-backend-style', $this->main->asset('css/backend.min.css'), array('wp-color-picker'), $this->main->get_version());
|
315 |
-
|
316 |
}
|
317 |
|
318 |
/**
|
@@ -334,7 +333,7 @@ class MEC_factory extends MEC_base
|
|
334 |
wp_enqueue_script('jquery');
|
335 |
|
336 |
// Include jQuery date picker
|
337 |
-
if
|
338 |
|
339 |
// Load Isotope
|
340 |
if(class_exists('ET_Builder_Element')) $this->main->load_isotope_assets();
|
@@ -410,13 +409,6 @@ class MEC_factory extends MEC_base
|
|
410 |
// Include Google Fonts
|
411 |
if($gfonts_status == true and get_option('mec_dyncss') == 0) wp_enqueue_style('mec-google-fonts', '//fonts.googleapis.com/css?family=Montserrat:400,700|Roboto:100,300,400,700');
|
412 |
|
413 |
-
// Include Dynamic CSS
|
414 |
-
if(get_option('mec_dyncss') == true)
|
415 |
-
{
|
416 |
-
wp_enqueue_style('mec-dynamic-styles', $this->main->asset('css/dyncss.css'));
|
417 |
-
wp_add_inline_style('mec-dynamic-styles', get_option('mec_dyncss'));
|
418 |
-
}
|
419 |
-
|
420 |
// Include Google Font
|
421 |
if($gfonts_status and get_option('mec_gfont')) wp_enqueue_style('mec-custom-google-font', get_option('mec_gfont'), array(), NULL);
|
422 |
|
312 |
|
313 |
// Include MEC backend CSS
|
314 |
wp_enqueue_style('mec-backend-style', $this->main->asset('css/backend.min.css'), array('wp-color-picker'), $this->main->get_version());
|
|
|
315 |
}
|
316 |
|
317 |
/**
|
333 |
wp_enqueue_script('jquery');
|
334 |
|
335 |
// Include jQuery date picker
|
336 |
+
if(!defined("SHOW_CT_BUILDER")) wp_enqueue_script('jquery-ui-datepicker');
|
337 |
|
338 |
// Load Isotope
|
339 |
if(class_exists('ET_Builder_Element')) $this->main->load_isotope_assets();
|
409 |
// Include Google Fonts
|
410 |
if($gfonts_status == true and get_option('mec_dyncss') == 0) wp_enqueue_style('mec-google-fonts', '//fonts.googleapis.com/css?family=Montserrat:400,700|Roboto:100,300,400,700');
|
411 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
412 |
// Include Google Font
|
413 |
if($gfonts_status and get_option('mec_gfont')) wp_enqueue_style('mec-custom-google-font', get_option('mec_gfont'), array(), NULL);
|
414 |
|
@@ -572,6 +572,7 @@ class MEC_main extends MEC_base
|
|
572 |
__('User Profile', 'modern-events-calendar-lite') => 'user_profile_options',
|
573 |
__('User Events', 'modern-events-calendar-lite') => 'user_events_options',
|
574 |
__('Search Bar', 'modern-events-calendar-lite') => 'search_bar_options',
|
|
|
575 |
__('Mailchimp Integration', 'modern-events-calendar-lite') => 'mailchimp_option',
|
576 |
__('Campaign Monitor Integration', 'modern-events-calendar-lite') => 'campaign_monitor_option',
|
577 |
__('MailerLite Integration', 'modern-events-calendar-lite') => 'mailerlite_option',
|
@@ -1386,6 +1387,12 @@ class MEC_main extends MEC_base
|
|
1386 |
*/
|
1387 |
public function include_styles()
|
1388 |
{
|
|
|
|
|
|
|
|
|
|
|
|
|
1389 |
$styles = $this->get_styles();
|
1390 |
|
1391 |
// Print custom styles
|
@@ -3139,28 +3146,8 @@ class MEC_main extends MEC_base
|
|
3139 |
*/
|
3140 |
public function ical_single_email($event_id, $book_id, $occurrence = '')
|
3141 |
{
|
3142 |
-
$
|
3143 |
-
$
|
3144 |
-
|
3145 |
-
$ticket_start_hour = $ticket_start_minute = $ticket_end_hour = $ticket_end_minute = $ticket_start_ampm = $ticket_end_ampm = '';
|
3146 |
-
|
3147 |
-
$ticket_ids = explode(',', $ticket_ids_str);
|
3148 |
-
$ticket_ids = array_filter($ticket_ids);
|
3149 |
-
|
3150 |
-
foreach($ticket_ids as $get_ticket_id=>$value)
|
3151 |
-
{
|
3152 |
-
foreach($tickets as $ticket=>$ticket_info)
|
3153 |
-
{
|
3154 |
-
if($ticket != $value) continue;
|
3155 |
-
|
3156 |
-
$ticket_start_hour = $ticket_info['ticket_start_time_hour'];
|
3157 |
-
$ticket_start_minute = $ticket_info['ticket_start_time_minute'];
|
3158 |
-
$ticket_start_ampm = $ticket_info['ticket_start_time_ampm'];
|
3159 |
-
$ticket_end_hour = $ticket_info['ticket_end_time_hour'];
|
3160 |
-
$ticket_end_minute = $ticket_info['ticket_end_time_minute'];
|
3161 |
-
$ticket_end_ampm = $ticket_info['ticket_end_time_ampm'];
|
3162 |
-
}
|
3163 |
-
}
|
3164 |
|
3165 |
// MEC Render Library
|
3166 |
$render = $this->getRender();
|
@@ -3169,8 +3156,8 @@ class MEC_main extends MEC_base
|
|
3169 |
$location = isset($event->locations[$event->meta['mec_location_id']]) ? $event->locations[$event->meta['mec_location_id']] : array();
|
3170 |
$address = (isset($location['address']) and trim($location['address'])) ? $location['address'] : $location['name'];
|
3171 |
|
3172 |
-
$start_time =
|
3173 |
-
$end_time =
|
3174 |
|
3175 |
$gmt_offset_seconds = $this->get_gmt_offset_seconds($start_time, $event);
|
3176 |
|
@@ -5524,6 +5511,10 @@ class MEC_main extends MEC_base
|
|
5524 |
// Single Page Date method is set to next date
|
5525 |
if(!$force and (!isset($settings['single_date_method']) or (isset($settings['single_date_method']) and $settings['single_date_method'] == 'next'))) return apply_filters('mec_event_permalink', $url);
|
5526 |
|
|
|
|
|
|
|
|
|
5527 |
// Add Date to the URL
|
5528 |
$url = $this->add_qs_var('occurrence', $date, $url);
|
5529 |
|
@@ -6600,7 +6591,7 @@ class MEC_main extends MEC_base
|
|
6600 |
'others'=>array(
|
6601 |
'category'=>array('name'=>__('Others', 'modern-events-calendar-lite')),
|
6602 |
'messages'=>array(
|
6603 |
-
'book_success_message'=>array('label'=>__('Booking Success Message', 'modern-events-calendar-lite'), 'default'=>__('
|
6604 |
'booking_restriction_message1'=>array('label'=>__('Booking Restriction Message 1', 'modern-events-calendar-lite'), 'default'=>__('You selected %s tickets to book but maximum number of tikets per user is %s tickets.', 'modern-events-calendar-lite')),
|
6605 |
'booking_restriction_message2'=>array('label'=>__('Booking Restriction Message 2', 'modern-events-calendar-lite'), 'default'=>__('You booked %s tickets till now but maximum number of tickets per user is %s tickets.', 'modern-events-calendar-lite')),
|
6606 |
'booking_restriction_message3'=>array('label'=>__('Booking IP Restriction Message', 'modern-events-calendar-lite'), 'default'=>__('Maximum allowed number of tickets that you can book is %s.', 'modern-events-calendar-lite')),
|
@@ -7961,11 +7952,16 @@ class MEC_main extends MEC_base
|
|
7961 |
}
|
7962 |
}
|
7963 |
|
7964 |
-
public function is_multipleday_occurrence($event)
|
7965 |
{
|
7966 |
$start_date = ((isset($event->date) and isset($event->date['start']) and isset($event->date['start']['date'])) ? $event->date['start']['date'] : NULL);
|
7967 |
$end_date = ((isset($event->date) and isset($event->date['end']) and isset($event->date['end']['date'])) ? $event->date['end']['date'] : NULL);
|
7968 |
|
|
|
|
|
|
|
|
|
|
|
7969 |
return (!is_null($start_date) and $start_date !== $end_date);
|
7970 |
}
|
7971 |
|
572 |
__('User Profile', 'modern-events-calendar-lite') => 'user_profile_options',
|
573 |
__('User Events', 'modern-events-calendar-lite') => 'user_events_options',
|
574 |
__('Search Bar', 'modern-events-calendar-lite') => 'search_bar_options',
|
575 |
+
__('Email Options', 'modern-events-calendar-lite') => 'email_option',
|
576 |
__('Mailchimp Integration', 'modern-events-calendar-lite') => 'mailchimp_option',
|
577 |
__('Campaign Monitor Integration', 'modern-events-calendar-lite') => 'campaign_monitor_option',
|
578 |
__('MailerLite Integration', 'modern-events-calendar-lite') => 'mailerlite_option',
|
1387 |
*/
|
1388 |
public function include_styles()
|
1389 |
{
|
1390 |
+
// Include Dynamic CSS
|
1391 |
+
if(get_option('mec_dyncss') == true)
|
1392 |
+
{
|
1393 |
+
echo '<style type="text/css">'.stripslashes(get_option('mec_dyncss')).'</style>';
|
1394 |
+
}
|
1395 |
+
|
1396 |
$styles = $this->get_styles();
|
1397 |
|
1398 |
// Print custom styles
|
3146 |
*/
|
3147 |
public function ical_single_email($event_id, $book_id, $occurrence = '')
|
3148 |
{
|
3149 |
+
$date = get_post_meta($book_id, 'mec_date', true);
|
3150 |
+
$timestamps = explode(':', $date);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3151 |
|
3152 |
// MEC Render Library
|
3153 |
$render = $this->getRender();
|
3156 |
$location = isset($event->locations[$event->meta['mec_location_id']]) ? $event->locations[$event->meta['mec_location_id']] : array();
|
3157 |
$address = (isset($location['address']) and trim($location['address'])) ? $location['address'] : $location['name'];
|
3158 |
|
3159 |
+
$start_time = (isset($timestamps[0]) ? $timestamps[0] : strtotime(get_the_date($book_id)));
|
3160 |
+
$end_time = (isset($timestamps[1]) ? $timestamps[1] : strtotime(get_the_date($book_id)));
|
3161 |
|
3162 |
$gmt_offset_seconds = $this->get_gmt_offset_seconds($start_time, $event);
|
3163 |
|
5511 |
// Single Page Date method is set to next date
|
5512 |
if(!$force and (!isset($settings['single_date_method']) or (isset($settings['single_date_method']) and $settings['single_date_method'] == 'next'))) return apply_filters('mec_event_permalink', $url);
|
5513 |
|
5514 |
+
// Do not add occurrence when custom link is set
|
5515 |
+
$read_more = (isset($event->data->meta) and isset($event->data->meta['mec_read_more']) and filter_var($event->data->meta['mec_read_more'], FILTER_VALIDATE_URL));
|
5516 |
+
if($read_more) return apply_filters('mec_event_permalink', $url);
|
5517 |
+
|
5518 |
// Add Date to the URL
|
5519 |
$url = $this->add_qs_var('occurrence', $date, $url);
|
5520 |
|
6591 |
'others'=>array(
|
6592 |
'category'=>array('name'=>__('Others', 'modern-events-calendar-lite')),
|
6593 |
'messages'=>array(
|
6594 |
+
'book_success_message'=>array('label'=>__('Booking Success Message', 'modern-events-calendar-lite'), 'default'=>__('Thank you for booking. Your tickets are booked, booking verification might be needed, please check your email.', 'modern-events-calendar-lite')),
|
6595 |
'booking_restriction_message1'=>array('label'=>__('Booking Restriction Message 1', 'modern-events-calendar-lite'), 'default'=>__('You selected %s tickets to book but maximum number of tikets per user is %s tickets.', 'modern-events-calendar-lite')),
|
6596 |
'booking_restriction_message2'=>array('label'=>__('Booking Restriction Message 2', 'modern-events-calendar-lite'), 'default'=>__('You booked %s tickets till now but maximum number of tickets per user is %s tickets.', 'modern-events-calendar-lite')),
|
6597 |
'booking_restriction_message3'=>array('label'=>__('Booking IP Restriction Message', 'modern-events-calendar-lite'), 'default'=>__('Maximum allowed number of tickets that you can book is %s.', 'modern-events-calendar-lite')),
|
7952 |
}
|
7953 |
}
|
7954 |
|
7955 |
+
public function is_multipleday_occurrence($event, $check_same_month = false)
|
7956 |
{
|
7957 |
$start_date = ((isset($event->date) and isset($event->date['start']) and isset($event->date['start']['date'])) ? $event->date['start']['date'] : NULL);
|
7958 |
$end_date = ((isset($event->date) and isset($event->date['end']) and isset($event->date['end']['date'])) ? $event->date['end']['date'] : NULL);
|
7959 |
|
7960 |
+
if($check_same_month)
|
7961 |
+
{
|
7962 |
+
$multipleday = (!is_null($start_date) and $start_date !== $end_date);
|
7963 |
+
return ($multipleday and (date('m', strtotime($start_date)) == date('m', strtotime($end_date))));
|
7964 |
+
}
|
7965 |
return (!is_null($start_date) and $start_date !== $end_date);
|
7966 |
}
|
7967 |
|
@@ -89,12 +89,15 @@ class MEC_notifications extends MEC_base
|
|
89 |
$recipients = array_map('trim', $recipients);
|
90 |
$recipients = array_unique($recipients);
|
91 |
|
|
|
|
|
|
|
92 |
foreach($recipients as $recipient)
|
93 |
{
|
94 |
// Skip if it's not a valid email
|
95 |
if(trim($recipient) == '' or !filter_var($recipient, FILTER_VALIDATE_EMAIL)) continue;
|
96 |
|
97 |
-
$headers[] = '
|
98 |
}
|
99 |
|
100 |
// Attendees
|
@@ -195,19 +198,22 @@ class MEC_notifications extends MEC_base
|
|
195 |
$recipients = array_map('trim', $recipients);
|
196 |
$recipients = array_unique($recipients);
|
197 |
|
|
|
|
|
|
|
198 |
foreach($recipients as $recipient)
|
199 |
{
|
200 |
// Skip if it's not a valid email
|
201 |
if(trim($recipient) == '' or !filter_var($recipient, FILTER_VALIDATE_EMAIL)) continue;
|
202 |
|
203 |
-
$headers[] = '
|
204 |
}
|
205 |
|
206 |
// Send the notification to event organizer
|
207 |
if(isset($this->notif_settings['booking_notification']['send_to_organizer']) and $this->notif_settings['booking_notification']['send_to_organizer'] == 1)
|
208 |
{
|
209 |
$organizer_email = $this->get_booking_organizer_email($book_id);
|
210 |
-
if($organizer_email !== false) $headers[] = '
|
211 |
}
|
212 |
|
213 |
// Attendees
|
@@ -307,12 +313,15 @@ class MEC_notifications extends MEC_base
|
|
307 |
$recipients = array_map('trim', $recipients);
|
308 |
$recipients = array_unique($recipients);
|
309 |
|
|
|
|
|
|
|
310 |
foreach($recipients as $recipient)
|
311 |
{
|
312 |
// Skip if it's not a valid email
|
313 |
if(trim($recipient) == '' or !filter_var($recipient, FILTER_VALIDATE_EMAIL)) continue;
|
314 |
|
315 |
-
$headers[] = '
|
316 |
}
|
317 |
|
318 |
// Attendees
|
@@ -444,12 +453,15 @@ class MEC_notifications extends MEC_base
|
|
444 |
$recipients = array_map('trim', $recipients);
|
445 |
$recipients = array_unique($recipients);
|
446 |
|
|
|
|
|
|
|
447 |
foreach($recipients as $recipient)
|
448 |
{
|
449 |
// Skip if it's not a valid email
|
450 |
if(trim($recipient) == '' or !filter_var($recipient, FILTER_VALIDATE_EMAIL)) continue;
|
451 |
|
452 |
-
$headers[] = '
|
453 |
}
|
454 |
|
455 |
// Event ID
|
@@ -580,12 +592,15 @@ class MEC_notifications extends MEC_base
|
|
580 |
$recipients = array_map('trim', $recipients);
|
581 |
$recipients = array_unique($recipients);
|
582 |
|
|
|
|
|
|
|
583 |
foreach($recipients as $recipient)
|
584 |
{
|
585 |
// Skip if it's not a valid email
|
586 |
if(trim($recipient) == '' or !filter_var($recipient, FILTER_VALIDATE_EMAIL)) continue;
|
587 |
|
588 |
-
$headers[] = '
|
589 |
}
|
590 |
|
591 |
// Event ID
|
@@ -692,19 +707,22 @@ class MEC_notifications extends MEC_base
|
|
692 |
else return;
|
693 |
}
|
694 |
|
|
|
|
|
|
|
695 |
foreach($recipients as $recipient)
|
696 |
{
|
697 |
// Skip if it's not a valid email
|
698 |
if(trim($recipient) == '' or !filter_var($recipient, FILTER_VALIDATE_EMAIL)) continue;
|
699 |
|
700 |
-
$headers[] = '
|
701 |
}
|
702 |
|
703 |
// Send the notification to event organizer
|
704 |
if(isset($this->notif_settings['admin_notification']['send_to_organizer']) and $this->notif_settings['admin_notification']['send_to_organizer'] == 1)
|
705 |
{
|
706 |
$organizer_email = $this->get_booking_organizer_email($book_id);
|
707 |
-
if($organizer_email !== false and $organizer_email != $to) $headers[] = '
|
708 |
}
|
709 |
|
710 |
$message = isset($this->notif_settings['admin_notification']['content']) ? $this->notif_settings['admin_notification']['content'] : '';
|
@@ -776,12 +794,15 @@ class MEC_notifications extends MEC_base
|
|
776 |
$recipients = array_map('trim', $recipients);
|
777 |
$recipients = array_unique($recipients);
|
778 |
|
|
|
|
|
|
|
779 |
foreach($recipients as $recipient)
|
780 |
{
|
781 |
// Skip if it's not a valid email
|
782 |
if(trim($recipient) == '' or !filter_var($recipient, FILTER_VALIDATE_EMAIL)) continue;
|
783 |
|
784 |
-
$headers[] = '
|
785 |
}
|
786 |
|
787 |
// Attendees
|
@@ -907,12 +928,15 @@ class MEC_notifications extends MEC_base
|
|
907 |
|
908 |
$headers = array('Content-Type: text/html; charset=UTF-8');
|
909 |
|
|
|
|
|
|
|
910 |
foreach($recipients as $recipient)
|
911 |
{
|
912 |
// Skip if it's not a valid email
|
913 |
if(trim($recipient) == '' or !filter_var($recipient, FILTER_VALIDATE_EMAIL)) continue;
|
914 |
|
915 |
-
$headers[] = '
|
916 |
}
|
917 |
|
918 |
// Date Format
|
@@ -1044,12 +1068,15 @@ class MEC_notifications extends MEC_base
|
|
1044 |
$recipients = array_map('trim', $recipients);
|
1045 |
$recipients = array_unique($recipients);
|
1046 |
|
|
|
|
|
|
|
1047 |
foreach($recipients as $recipient)
|
1048 |
{
|
1049 |
// Skip if it's not a valid email
|
1050 |
if(trim($recipient) == '' or !filter_var($recipient, FILTER_VALIDATE_EMAIL)) continue;
|
1051 |
|
1052 |
-
$headers[] = '
|
1053 |
}
|
1054 |
|
1055 |
$message = (isset($this->notif_settings['user_event_publishing']['content']) and trim($this->notif_settings['user_event_publishing']['content'])) ? $this->notif_settings['user_event_publishing']['content'] : '';
|
@@ -1174,12 +1201,15 @@ class MEC_notifications extends MEC_base
|
|
1174 |
$recipients = array_map('trim', $recipients);
|
1175 |
$recipients = array_unique($recipients);
|
1176 |
|
|
|
|
|
|
|
1177 |
foreach($recipients as $recipient)
|
1178 |
{
|
1179 |
// Skip if it's not a valid email
|
1180 |
if(trim($recipient) == '' or !filter_var($recipient, FILTER_VALIDATE_EMAIL)) continue;
|
1181 |
|
1182 |
-
$headers[] = '
|
1183 |
}
|
1184 |
|
1185 |
$subject = isset($this->notif_settings['event_soldout']['subject']) ? __($this->notif_settings['event_soldout']['subject'], 'modern-events-calendar-lite') : __('Event is soldout!', 'modern-events-calendar-lite');
|
@@ -1746,7 +1776,7 @@ class MEC_notifications extends MEC_base
|
|
1746 |
*/
|
1747 |
public function notification_sender_name($sender_name)
|
1748 |
{
|
1749 |
-
$sender_name = (isset($this->settings['booking_sender_name']) and trim($this->settings['booking_sender_name'])) ? trim($this->settings['booking_sender_name']) : $sender_name;
|
1750 |
return $sender_name;
|
1751 |
}
|
1752 |
|
@@ -1833,4 +1863,9 @@ class MEC_notifications extends MEC_base
|
|
1833 |
|
1834 |
return ((isset($notification['content']) and trim($notification['content'])) ? $notification['content'] : $value);
|
1835 |
}
|
|
|
|
|
|
|
|
|
|
|
1836 |
}
|
89 |
$recipients = array_map('trim', $recipients);
|
90 |
$recipients = array_unique($recipients);
|
91 |
|
92 |
+
// Recipient Type
|
93 |
+
$CCBCC = $this->get_cc_bcc_method();
|
94 |
+
|
95 |
foreach($recipients as $recipient)
|
96 |
{
|
97 |
// Skip if it's not a valid email
|
98 |
if(trim($recipient) == '' or !filter_var($recipient, FILTER_VALIDATE_EMAIL)) continue;
|
99 |
|
100 |
+
$headers[] = $CCBCC.': '.$recipient;
|
101 |
}
|
102 |
|
103 |
// Attendees
|
198 |
$recipients = array_map('trim', $recipients);
|
199 |
$recipients = array_unique($recipients);
|
200 |
|
201 |
+
// Recipient Type
|
202 |
+
$CCBCC = $this->get_cc_bcc_method();
|
203 |
+
|
204 |
foreach($recipients as $recipient)
|
205 |
{
|
206 |
// Skip if it's not a valid email
|
207 |
if(trim($recipient) == '' or !filter_var($recipient, FILTER_VALIDATE_EMAIL)) continue;
|
208 |
|
209 |
+
$headers[] = $CCBCC.': '.$recipient;
|
210 |
}
|
211 |
|
212 |
// Send the notification to event organizer
|
213 |
if(isset($this->notif_settings['booking_notification']['send_to_organizer']) and $this->notif_settings['booking_notification']['send_to_organizer'] == 1)
|
214 |
{
|
215 |
$organizer_email = $this->get_booking_organizer_email($book_id);
|
216 |
+
if($organizer_email !== false) $headers[] = $CCBCC.': '.trim($organizer_email);
|
217 |
}
|
218 |
|
219 |
// Attendees
|
313 |
$recipients = array_map('trim', $recipients);
|
314 |
$recipients = array_unique($recipients);
|
315 |
|
316 |
+
// Recipient Type
|
317 |
+
$CCBCC = $this->get_cc_bcc_method();
|
318 |
+
|
319 |
foreach($recipients as $recipient)
|
320 |
{
|
321 |
// Skip if it's not a valid email
|
322 |
if(trim($recipient) == '' or !filter_var($recipient, FILTER_VALIDATE_EMAIL)) continue;
|
323 |
|
324 |
+
$headers[] = $CCBCC.': '.$recipient;
|
325 |
}
|
326 |
|
327 |
// Attendees
|
453 |
$recipients = array_map('trim', $recipients);
|
454 |
$recipients = array_unique($recipients);
|
455 |
|
456 |
+
// Recipient Type
|
457 |
+
$CCBCC = $this->get_cc_bcc_method();
|
458 |
+
|
459 |
foreach($recipients as $recipient)
|
460 |
{
|
461 |
// Skip if it's not a valid email
|
462 |
if(trim($recipient) == '' or !filter_var($recipient, FILTER_VALIDATE_EMAIL)) continue;
|
463 |
|
464 |
+
$headers[] = $CCBCC.': '.$recipient;
|
465 |
}
|
466 |
|
467 |
// Event ID
|
592 |
$recipients = array_map('trim', $recipients);
|
593 |
$recipients = array_unique($recipients);
|
594 |
|
595 |
+
// Recipient Type
|
596 |
+
$CCBCC = $this->get_cc_bcc_method();
|
597 |
+
|
598 |
foreach($recipients as $recipient)
|
599 |
{
|
600 |
// Skip if it's not a valid email
|
601 |
if(trim($recipient) == '' or !filter_var($recipient, FILTER_VALIDATE_EMAIL)) continue;
|
602 |
|
603 |
+
$headers[] = $CCBCC.': '.$recipient;
|
604 |
}
|
605 |
|
606 |
// Event ID
|
707 |
else return;
|
708 |
}
|
709 |
|
710 |
+
// Recipient Type
|
711 |
+
$CCBCC = $this->get_cc_bcc_method();
|
712 |
+
|
713 |
foreach($recipients as $recipient)
|
714 |
{
|
715 |
// Skip if it's not a valid email
|
716 |
if(trim($recipient) == '' or !filter_var($recipient, FILTER_VALIDATE_EMAIL)) continue;
|
717 |
|
718 |
+
$headers[] = $CCBCC.': '.$recipient;
|
719 |
}
|
720 |
|
721 |
// Send the notification to event organizer
|
722 |
if(isset($this->notif_settings['admin_notification']['send_to_organizer']) and $this->notif_settings['admin_notification']['send_to_organizer'] == 1)
|
723 |
{
|
724 |
$organizer_email = $this->get_booking_organizer_email($book_id);
|
725 |
+
if($organizer_email !== false and $organizer_email != $to) $headers[] = $CCBCC.': '.trim($organizer_email);
|
726 |
}
|
727 |
|
728 |
$message = isset($this->notif_settings['admin_notification']['content']) ? $this->notif_settings['admin_notification']['content'] : '';
|
794 |
$recipients = array_map('trim', $recipients);
|
795 |
$recipients = array_unique($recipients);
|
796 |
|
797 |
+
// Recipient Type
|
798 |
+
$CCBCC = $this->get_cc_bcc_method();
|
799 |
+
|
800 |
foreach($recipients as $recipient)
|
801 |
{
|
802 |
// Skip if it's not a valid email
|
803 |
if(trim($recipient) == '' or !filter_var($recipient, FILTER_VALIDATE_EMAIL)) continue;
|
804 |
|
805 |
+
$headers[] = $CCBCC.': '.$recipient;
|
806 |
}
|
807 |
|
808 |
// Attendees
|
928 |
|
929 |
$headers = array('Content-Type: text/html; charset=UTF-8');
|
930 |
|
931 |
+
// Recipient Type
|
932 |
+
$CCBCC = $this->get_cc_bcc_method();
|
933 |
+
|
934 |
foreach($recipients as $recipient)
|
935 |
{
|
936 |
// Skip if it's not a valid email
|
937 |
if(trim($recipient) == '' or !filter_var($recipient, FILTER_VALIDATE_EMAIL)) continue;
|
938 |
|
939 |
+
$headers[] = $CCBCC.': '.$recipient;
|
940 |
}
|
941 |
|
942 |
// Date Format
|
1068 |
$recipients = array_map('trim', $recipients);
|
1069 |
$recipients = array_unique($recipients);
|
1070 |
|
1071 |
+
// Recipient Type
|
1072 |
+
$CCBCC = $this->get_cc_bcc_method();
|
1073 |
+
|
1074 |
foreach($recipients as $recipient)
|
1075 |
{
|
1076 |
// Skip if it's not a valid email
|
1077 |
if(trim($recipient) == '' or !filter_var($recipient, FILTER_VALIDATE_EMAIL)) continue;
|
1078 |
|
1079 |
+
$headers[] = $CCBCC.': '.$recipient;
|
1080 |
}
|
1081 |
|
1082 |
$message = (isset($this->notif_settings['user_event_publishing']['content']) and trim($this->notif_settings['user_event_publishing']['content'])) ? $this->notif_settings['user_event_publishing']['content'] : '';
|
1201 |
$recipients = array_map('trim', $recipients);
|
1202 |
$recipients = array_unique($recipients);
|
1203 |
|
1204 |
+
// Recipient Type
|
1205 |
+
$CCBCC = $this->get_cc_bcc_method();
|
1206 |
+
|
1207 |
foreach($recipients as $recipient)
|
1208 |
{
|
1209 |
// Skip if it's not a valid email
|
1210 |
if(trim($recipient) == '' or !filter_var($recipient, FILTER_VALIDATE_EMAIL)) continue;
|
1211 |
|
1212 |
+
$headers[] = $CCBCC.': '.$recipient;
|
1213 |
}
|
1214 |
|
1215 |
$subject = isset($this->notif_settings['event_soldout']['subject']) ? __($this->notif_settings['event_soldout']['subject'], 'modern-events-calendar-lite') : __('Event is soldout!', 'modern-events-calendar-lite');
|
1776 |
*/
|
1777 |
public function notification_sender_name($sender_name)
|
1778 |
{
|
1779 |
+
$sender_name = (isset($this->settings['booking_sender_name']) and trim($this->settings['booking_sender_name'])) ? stripslashes(trim($this->settings['booking_sender_name'])) : $sender_name;
|
1780 |
return $sender_name;
|
1781 |
}
|
1782 |
|
1863 |
|
1864 |
return ((isset($notification['content']) and trim($notification['content'])) ? $notification['content'] : $value);
|
1865 |
}
|
1866 |
+
|
1867 |
+
public function get_cc_bcc_method()
|
1868 |
+
{
|
1869 |
+
return ((isset($this->settings['booking_recipients_method']) and trim($this->settings['booking_recipients_method'])) ? strtoupper($this->settings['booking_recipients_method']) : 'BCC');
|
1870 |
+
}
|
1871 |
}
|
@@ -273,9 +273,10 @@ class MEC_render extends MEC_base
|
|
273 |
* Do the custom skin and returns its output
|
274 |
* @author Webnus <info@webnus.biz>
|
275 |
* @param array $atts
|
|
|
276 |
* @return string
|
277 |
*/
|
278 |
-
public function vcustom($atts
|
279 |
{
|
280 |
$k = 'custom_'.$type;
|
281 |
|
273 |
* Do the custom skin and returns its output
|
274 |
* @author Webnus <info@webnus.biz>
|
275 |
* @param array $atts
|
276 |
+
* @param string $type
|
277 |
* @return string
|
278 |
*/
|
279 |
+
public function vcustom($atts, $type = 'archive')
|
280 |
{
|
281 |
$k = 'custom_'.$type;
|
282 |
|
@@ -741,6 +741,7 @@ class MEC_skins extends MEC_base
|
|
741 |
*/
|
742 |
public function search()
|
743 |
{
|
|
|
744 |
if($this->show_only_expired_events)
|
745 |
{
|
746 |
$apply_sf_date = $this->request->getVar('apply_sf_date', 1);
|
@@ -823,7 +824,8 @@ class MEC_skins extends MEC_base
|
|
823 |
'start'=>array('date'=>$date),
|
824 |
'end'=>array('date'=>$this->main->get_end_date($date, $rendered))
|
825 |
);
|
826 |
-
|
|
|
827 |
$d[] = $this->render->after_render($data, $this, $i);
|
828 |
$found++;
|
829 |
}
|
@@ -1013,7 +1015,7 @@ class MEC_skins extends MEC_base
|
|
1013 |
|
1014 |
$output .= '</div>';
|
1015 |
}
|
1016 |
-
elseif($type == 'checkboxes')
|
1017 |
{
|
1018 |
$output .= '<div class="mec-checkboxes-search">
|
1019 |
<i class="mec-sl-folder"></i>';
|
741 |
*/
|
742 |
public function search()
|
743 |
{
|
744 |
+
global $MEC_Events_dates;
|
745 |
if($this->show_only_expired_events)
|
746 |
{
|
747 |
$apply_sf_date = $this->request->getVar('apply_sf_date', 1);
|
824 |
'start'=>array('date'=>$date),
|
825 |
'end'=>array('date'=>$this->main->get_end_date($date, $rendered))
|
826 |
);
|
827 |
+
// global variable for use dates
|
828 |
+
$MEC_Events_dates[$ID][] = $data->date;
|
829 |
$d[] = $this->render->after_render($data, $this, $i);
|
830 |
$found++;
|
831 |
}
|
1015 |
|
1016 |
$output .= '</div>';
|
1017 |
}
|
1018 |
+
elseif($type == 'checkboxes' and wp_count_terms(array('taxonomy' => 'mec_category')))
|
1019 |
{
|
1020 |
$output .= '<div class="mec-checkboxes-search">
|
1021 |
<i class="mec-sl-folder"></i>';
|
@@ -35,6 +35,8 @@ $javascript = '<script type="text/javascript">
|
|
35 |
var mec_tickets_availability_ajax'.$uniqueid.' = false;
|
36 |
function mec_get_tickets_availability'.$uniqueid.'(event_id, date)
|
37 |
{
|
|
|
|
|
38 |
// Add loading Class to the ticket list
|
39 |
jQuery(".mec-event-tickets-list").addClass("loading");
|
40 |
jQuery("#mec_booking'.$uniqueid.' .mec-event-tickets-list input").prop("disabled", true);
|
@@ -62,7 +64,6 @@ function mec_get_tickets_availability'.$uniqueid.'(event_id, date)
|
|
62 |
if(typeof data.availability.total != "undefined") jQuery("#mec_booking'.$uniqueid.' #mec_book_form_tickets_container'.$uniqueid.'").data("total-booking-limit", data.availability.total);
|
63 |
|
64 |
var available_spots = 0;
|
65 |
-
//console.log(data.availability);
|
66 |
|
67 |
for(ticket_id in data.availability)
|
68 |
{
|
35 |
var mec_tickets_availability_ajax'.$uniqueid.' = false;
|
36 |
function mec_get_tickets_availability'.$uniqueid.'(event_id, date)
|
37 |
{
|
38 |
+
if(!date) return;
|
39 |
+
|
40 |
// Add loading Class to the ticket list
|
41 |
jQuery(".mec-event-tickets-list").addClass("loading");
|
42 |
jQuery("#mec_booking'.$uniqueid.' .mec-event-tickets-list input").prop("disabled", true);
|
64 |
if(typeof data.availability.total != "undefined") jQuery("#mec_booking'.$uniqueid.' #mec_book_form_tickets_container'.$uniqueid.'").data("total-booking-limit", data.availability.total);
|
65 |
|
66 |
var available_spots = 0;
|
|
|
67 |
|
68 |
for(ticket_id in data.availability)
|
69 |
{
|
@@ -167,11 +167,11 @@ $modal_booking = (isset($_GET['method']) and $_GET['method'] === 'mec-booking-mo
|
|
167 |
</div>
|
168 |
<?php
|
169 |
$str_replace = isset($ticket['name']) ? '<strong>'.$ticket['name'].'</strong>' : '';
|
170 |
-
$ticket_message_sales =
|
171 |
-
$ticket_message_sold_out =
|
172 |
?>
|
173 |
<?php if(isset($stop_selling) and $stop_selling): ?>
|
174 |
-
<div id="mec-ticket-message-<?php echo $ticket_id; ?>" class="mec-ticket-unavailable-spots mec-error <?php echo ($ticket_limit
|
175 |
<div>
|
176 |
<?php echo $ticket_message_sales; ?>
|
177 |
</div>
|
167 |
</div>
|
168 |
<?php
|
169 |
$str_replace = isset($ticket['name']) ? '<strong>'.$ticket['name'].'</strong>' : '';
|
170 |
+
$ticket_message_sales = sprintf(__('The %s ticket sales has ended!', 'modern-events-calendar-lite'), $str_replace);
|
171 |
+
$ticket_message_sold_out = sprintf(__('The %s ticket is sold out. You can try another ticket or another date.', 'modern-events-calendar-lite'), $str_replace);
|
172 |
?>
|
173 |
<?php if(isset($stop_selling) and $stop_selling): ?>
|
174 |
+
<div id="mec-ticket-message-<?php echo $ticket_id; ?>" class="mec-ticket-unavailable-spots mec-error <?php echo (($ticket_limit != '0' or ($date_selection == 'calendar' and !$modal_booking)) ? 'mec-util-hidden' : ''); ?>">
|
175 |
<div>
|
176 |
<?php echo $ticket_message_sales; ?>
|
177 |
</div>
|
@@ -19,6 +19,9 @@ $uniqueid = (isset($uniqueid) ? $uniqueid : $event->data->ID);
|
|
19 |
// Map is disabled for this event
|
20 |
if(isset($event->data->meta['mec_dont_show_map']) and $event->data->meta['mec_dont_show_map']) return;
|
21 |
|
|
|
|
|
|
|
22 |
$location = isset($event->data->meta['mec_location_id']) && isset($event->data->locations[$event->data->meta['mec_location_id']]) ? $event->data->locations[$event->data->meta['mec_location_id']] : array();
|
23 |
|
24 |
// Event location geo point
|
@@ -50,24 +53,24 @@ if(!$this->is_ajax()) $this->load_map_assets();
|
|
50 |
// Get Direction Status
|
51 |
$get_direction = (isset($settings['google_maps_get_direction_status']) and in_array($settings['google_maps_get_direction_status'], array(0,1,2))) ? $settings['google_maps_get_direction_status'] : 0;
|
52 |
|
53 |
-
$additional_location_ids = get_post_meta($
|
54 |
$event_locations = array_keys($event->data->locations);
|
55 |
|
56 |
$map_data = new stdClass;
|
57 |
$map_data->id = $uniqueid;
|
58 |
$map_data->atts = array(
|
59 |
-
'location_map_zoom'=>isset($settings['google_maps_zoomlevel']) ? $settings['google_maps_zoomlevel'] : 14,
|
60 |
-
'location_center_lat'=>null,
|
61 |
-
'location_center_long'=>null,
|
62 |
'use_orig_map' => true
|
63 |
);
|
64 |
|
65 |
-
$map_data->events =
|
66 |
$map_data->render = $render;
|
67 |
$map_data->geolocation = '0';
|
68 |
$map_data->sf_status = null;
|
69 |
|
70 |
-
$current_event = (isset($map_data->events[$
|
71 |
$map_data->events = apply_filters('mec_location_load_additional', $current_event, $additional_location_ids, $event_locations);
|
72 |
|
73 |
// Initialize MEC Google Maps jQuery plugin
|
19 |
// Map is disabled for this event
|
20 |
if(isset($event->data->meta['mec_dont_show_map']) and $event->data->meta['mec_dont_show_map']) return;
|
21 |
|
22 |
+
// Event ID
|
23 |
+
$event_id = $event->ID;
|
24 |
+
|
25 |
$location = isset($event->data->meta['mec_location_id']) && isset($event->data->locations[$event->data->meta['mec_location_id']]) ? $event->data->locations[$event->data->meta['mec_location_id']] : array();
|
26 |
|
27 |
// Event location geo point
|
53 |
// Get Direction Status
|
54 |
$get_direction = (isset($settings['google_maps_get_direction_status']) and in_array($settings['google_maps_get_direction_status'], array(0,1,2))) ? $settings['google_maps_get_direction_status'] : 0;
|
55 |
|
56 |
+
$additional_location_ids = get_post_meta($event_id, 'mec_additional_location_ids', true);
|
57 |
$event_locations = array_keys($event->data->locations);
|
58 |
|
59 |
$map_data = new stdClass;
|
60 |
$map_data->id = $uniqueid;
|
61 |
$map_data->atts = array(
|
62 |
+
'location_map_zoom' => (isset($settings['google_maps_zoomlevel']) ? $settings['google_maps_zoomlevel'] : 14),
|
63 |
+
'location_center_lat' => null,
|
64 |
+
'location_center_long' => null,
|
65 |
'use_orig_map' => true
|
66 |
);
|
67 |
|
68 |
+
$map_data->events = array($event_id => $event);
|
69 |
$map_data->render = $render;
|
70 |
$map_data->geolocation = '0';
|
71 |
$map_data->sf_status = null;
|
72 |
|
73 |
+
$current_event = (isset($map_data->events[$event_id]) ? array($map_data->events[$event_id]) : array());
|
74 |
$map_data->events = apply_filters('mec_location_load_additional', $current_event, $additional_location_ids, $event_locations);
|
75 |
|
76 |
// Initialize MEC Google Maps jQuery plugin
|
@@ -35,15 +35,17 @@ if(empty($MEC_Events_dates_localtime)){
|
|
35 |
|
36 |
$dates = array();
|
37 |
|
38 |
-
if(is_array($MEC_Events_dates_localtime[$event_id]))
|
39 |
-
|
40 |
$k = array_key_first($MEC_Events_dates_localtime[$event_id]);
|
41 |
-
|
|
|
42 |
unset($MEC_Events_dates_localtime[$event_id][$k]);
|
43 |
}
|
44 |
-
|
45 |
-
$
|
46 |
-
|
|
|
47 |
$gmt_start_time = strtotime($start_date.' '.$start_time) - $gmt_offset_seconds;
|
48 |
$gmt_end_time = strtotime($end_date.' '.$end_time) - $gmt_offset_seconds;
|
49 |
|
35 |
|
36 |
$dates = array();
|
37 |
|
38 |
+
if(is_array($MEC_Events_dates_localtime[$event_id]))
|
39 |
+
{
|
40 |
$k = array_key_first($MEC_Events_dates_localtime[$event_id]);
|
41 |
+
|
42 |
+
$dates = (isset($MEC_Events_dates_localtime[$event_id][$k]) ? $MEC_Events_dates_localtime[$event_id][$k] : NULL);
|
43 |
unset($MEC_Events_dates_localtime[$event_id][$k]);
|
44 |
}
|
45 |
+
|
46 |
+
$start_date = (isset($dates['start']['date']) ? $dates['start']['date'] : get_option('mec_sd_time_option'));
|
47 |
+
$end_date = (isset($dates['start']['date']) ? $dates['start']['date'] : get_option('mec_esd_time_option'));
|
48 |
+
|
49 |
$gmt_start_time = strtotime($start_date.' '.$start_time) - $gmt_offset_seconds;
|
50 |
$gmt_end_time = strtotime($end_date.' '.$end_time) - $gmt_offset_seconds;
|
51 |
|
@@ -181,147 +181,6 @@ class MEC_skin_custom extends MEC_skins
|
|
181 |
// Found Events
|
182 |
$this->found = 0;
|
183 |
}
|
184 |
-
|
185 |
-
/**
|
186 |
-
* Perform the search
|
187 |
-
* @author Webnus <info@webnus.biz>
|
188 |
-
* TODO: Refactor
|
189 |
-
* @return array of objects \stdClass
|
190 |
-
*/
|
191 |
-
public function search()
|
192 |
-
{
|
193 |
-
global $MEC_Events_dates;
|
194 |
-
|
195 |
-
if($this->show_only_expired_events)
|
196 |
-
{
|
197 |
-
$apply_sf_date = $this->request->getVar('apply_sf_date', 1);
|
198 |
-
$start = ((isset($this->sf) || $this->request->getVar('sf', array())) and $apply_sf_date) ? date('Y-m-t', strtotime($this->start_date)) : $this->start_date;
|
199 |
-
|
200 |
-
$end = date('Y-m-01', strtotime('-15 Years', strtotime($start)));
|
201 |
-
}
|
202 |
-
else
|
203 |
-
{
|
204 |
-
$start = $this->start_date;
|
205 |
-
$end = date('Y-m-t', strtotime('+15 Years', strtotime($start)));
|
206 |
-
}
|
207 |
-
|
208 |
-
// Set a certain maximum date from shortcode page.
|
209 |
-
if(trim($this->maximum_date) == '' and (isset($this->maximum_date_range) and trim($this->maximum_date_range))) $this->maximum_date = $this->maximum_date_range;
|
210 |
-
|
211 |
-
// Date Events
|
212 |
-
$dates = $this->period($start, $end, true);
|
213 |
-
|
214 |
-
// Limit
|
215 |
-
$this->args['posts_per_page'] = apply_filters('mec_skins_search_posts_per_page', 100);
|
216 |
-
$dates = apply_filters('mec_event_dates_search', $dates, $start, $end, $this);
|
217 |
-
|
218 |
-
$i = 0;
|
219 |
-
$found = 0;
|
220 |
-
$events = array();
|
221 |
-
$skipped_for_next_query = (int)$this->offset;
|
222 |
-
$skipped = 0;
|
223 |
-
|
224 |
-
foreach($dates as $date=>$IDs)
|
225 |
-
{
|
226 |
-
// No Event
|
227 |
-
if(!is_array($IDs) or (is_array($IDs) and !count($IDs))) continue;
|
228 |
-
|
229 |
-
// Check Finish Date
|
230 |
-
if(isset($this->maximum_date) and strtotime($date) > strtotime($this->maximum_date)) break;
|
231 |
-
|
232 |
-
// Include Available Events
|
233 |
-
$this->args['post__in'] = $IDs;
|
234 |
-
|
235 |
-
// Count of events per day
|
236 |
-
$IDs_count = array_count_values($IDs);
|
237 |
-
|
238 |
-
// Extending the end date
|
239 |
-
$this->end_date = $date;
|
240 |
-
|
241 |
-
// The Query
|
242 |
-
$query = new WP_Query($this->args);
|
243 |
-
if($query->have_posts())
|
244 |
-
{
|
245 |
-
if(!isset($events[$date])) $events[$date] = array();
|
246 |
-
|
247 |
-
// Day Events
|
248 |
-
$d = array();
|
249 |
-
|
250 |
-
// The Loop
|
251 |
-
while($query->have_posts())
|
252 |
-
{
|
253 |
-
$query->the_post();
|
254 |
-
$ID = get_the_ID();
|
255 |
-
$ID_count = isset($IDs_count[$ID]) ? $IDs_count[$ID] : 1;
|
256 |
-
for($i = 1; $i <= $ID_count; $i++)
|
257 |
-
{
|
258 |
-
if($this->offset > $skipped){
|
259 |
-
$skipped++;
|
260 |
-
continue;
|
261 |
-
}
|
262 |
-
$skipped_for_next_query++;
|
263 |
-
|
264 |
-
$rendered = $this->render->data($ID);
|
265 |
-
|
266 |
-
$data = new stdClass();
|
267 |
-
$data->ID = $ID;
|
268 |
-
$data->data = $rendered;
|
269 |
-
|
270 |
-
$data->date = array
|
271 |
-
(
|
272 |
-
'start'=>array('date'=>$date),
|
273 |
-
'end'=>array('date'=>$this->main->get_end_date($date, $rendered))
|
274 |
-
);
|
275 |
-
|
276 |
-
// global variable for use dates
|
277 |
-
$MEC_Events_dates[$ID][] = $data->date;
|
278 |
-
$d[] = $this->render->after_render($data, $this, $i);
|
279 |
-
update_option( 'mec_sd_time_option', $data->date['start']['date'], true);
|
280 |
-
update_option( 'mec_sdn_time_option', $data->date['end']['date'], true);
|
281 |
-
update_option( 'mec_st_time_option', $data->data->time['start'], true);
|
282 |
-
update_option( 'mec_stn_time_option', $data->data->time['end'], true);
|
283 |
-
|
284 |
-
$found++;
|
285 |
-
}
|
286 |
-
|
287 |
-
if($found >= $this->limit)
|
288 |
-
{
|
289 |
-
// Next Offset
|
290 |
-
$this->next_offset = ($query->post_count-($query->current_post+1)) >= 0 ? ($query->current_post+1)+$this->offset : 0;
|
291 |
-
|
292 |
-
usort($d, array($this, 'sort_day_events'));
|
293 |
-
$events[$date] = $d;
|
294 |
-
|
295 |
-
// Restore original Post Data
|
296 |
-
wp_reset_postdata();
|
297 |
-
|
298 |
-
break 2;
|
299 |
-
}
|
300 |
-
}
|
301 |
-
|
302 |
-
usort($d, array($this, 'sort_day_events'));
|
303 |
-
$events[$date] = $d;
|
304 |
-
}
|
305 |
-
|
306 |
-
// Restore original Post Data
|
307 |
-
wp_reset_postdata();
|
308 |
-
|
309 |
-
$i++;
|
310 |
-
}
|
311 |
-
|
312 |
-
// Set Offset for Last Page
|
313 |
-
if($found < $this->limit)
|
314 |
-
{
|
315 |
-
// Next Offset
|
316 |
-
$this->next_offset = $found + ((isset($date) and $this->start_date === $date) ? $this->offset : 0);
|
317 |
-
}
|
318 |
-
|
319 |
-
$this->next_offset = $skipped_for_next_query;
|
320 |
-
// Set found events
|
321 |
-
$this->found = $found;
|
322 |
-
|
323 |
-
return $events;
|
324 |
-
}
|
325 |
|
326 |
/**
|
327 |
* Returns start day of skin for filtering events
|
181 |
// Found Events
|
182 |
$this->found = 0;
|
183 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
184 |
|
185 |
/**
|
186 |
* Returns start day of skin for filtering events
|
@@ -10,6 +10,9 @@ $event_colorskin = (isset($styling['mec_colorskin'] ) || isset($styling['color']
|
|
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')
|
10 |
$settings = $this->main->get_settings();
|
11 |
$current_month_divider = $this->request->getVar('current_month_divider', 0);
|
12 |
|
13 |
+
global $MEC_Shortcode_id;
|
14 |
+
$MEC_Shortcode_id = !empty($MEC_Shortcode_id) ? $MEC_Shortcode_id : $this->atts['id'];
|
15 |
+
|
16 |
// colorful
|
17 |
$colorful_flag = $colorful_class = '';
|
18 |
if($this->style == 'colorful')
|
@@ -6,7 +6,7 @@ defined('MECEXEC') or die();
|
|
6 |
$this->main->load_owl_assets();
|
7 |
|
8 |
$sed_method = $this->sed_method;
|
9 |
-
if
|
10 |
|
11 |
// Generating javascript code tpl
|
12 |
$javascript = '<script type="text/javascript">
|
@@ -84,4 +84,7 @@ do_action('mec_full_skin_head');
|
|
84 |
<?php echo $this->load_skin($this->default_view); ?>
|
85 |
</div>
|
86 |
|
87 |
-
</div>
|
|
|
|
|
|
6 |
$this->main->load_owl_assets();
|
7 |
|
8 |
$sed_method = $this->sed_method;
|
9 |
+
if($sed_method == 'new') $sed_method = '0';
|
10 |
|
11 |
// Generating javascript code tpl
|
12 |
$javascript = '<script type="text/javascript">
|
84 |
<?php echo $this->load_skin($this->default_view); ?>
|
85 |
</div>
|
86 |
|
87 |
+
</div>
|
88 |
+
<style type="text/css">
|
89 |
+
#mec_skin_<?php echo $this->id; ?> .mec-search-form .mec-date-search{width: 100%;}
|
90 |
+
</style>
|
@@ -6,7 +6,7 @@ defined('MECEXEC') or die();
|
|
6 |
$this->main->load_owl_assets();
|
7 |
|
8 |
$sed_method = $this->sed_method;
|
9 |
-
if
|
10 |
|
11 |
// Generating javascript code tpl
|
12 |
$javascript = '<script type="text/javascript">
|
6 |
$this->main->load_owl_assets();
|
7 |
|
8 |
$sed_method = $this->sed_method;
|
9 |
+
if($sed_method == 'new') $sed_method = '0';
|
10 |
|
11 |
// Generating javascript code tpl
|
12 |
$javascript = '<script type="text/javascript">
|
@@ -38,17 +38,33 @@ $map_events = array();
|
|
38 |
<article 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>
|
39 |
<?php if($this->style == 'modern'): ?>
|
40 |
<div class="col-md-2 col-sm-2">
|
|
|
|
|
41 |
<div class="mec-event-date">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
42 |
<div class="event-d mec-color"><?php echo $this->main->date_i18n($this->date_format_modern_1, strtotime($event->date['start']['date'])); ?></div>
|
43 |
<div class="event-f"><?php echo $this->main->date_i18n($this->date_format_modern_2, strtotime($event->date['start']['date'])); ?></div>
|
44 |
<div class="event-da"><?php echo $this->main->date_i18n($this->date_format_modern_3, strtotime($event->date['start']['date'])); ?></div>
|
45 |
</div>
|
46 |
-
|
47 |
-
<div class="mec-event-date">
|
48 |
<div class="event-d mec-color"><?php echo $this->main->date_i18n($this->date_format_modern_1, strtotime($event->date['end']['date'])); ?></div>
|
49 |
<div class="event-f"><?php echo $this->main->date_i18n($this->date_format_modern_2, strtotime($event->date['end']['date'])); ?></div>
|
50 |
<div class="event-da"><?php echo $this->main->date_i18n($this->date_format_modern_3, strtotime($event->date['end']['date'])); ?></div>
|
51 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
<?php endif; ?>
|
53 |
</div>
|
54 |
<div class="col-md-6 col-sm-6">
|
@@ -88,16 +104,28 @@ $map_events = array();
|
|
88 |
<?php elseif($this->style == 'minimal'): ?>
|
89 |
<?php echo $this->get_label_captions($event); ?>
|
90 |
<div class="col-md-9 col-sm-9">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
91 |
<div class="mec-event-date mec-bg-color">
|
92 |
<span><?php echo $this->main->date_i18n($this->date_format_minimal_1, strtotime($event->date['start']['date'])); ?></span>
|
93 |
<?php echo $this->main->date_i18n($this->date_format_minimal_2, strtotime($event->date['start']['date'])); ?>
|
94 |
</div>
|
95 |
-
<?php if($this->main->is_multipleday_occurrence($event)): ?>
|
96 |
<div class="mec-event-date mec-bg-color">
|
97 |
<span><?php echo $this->main->date_i18n($this->date_format_minimal_1, strtotime($event->date['end']['date'])); ?></span>
|
98 |
<?php echo $this->main->date_i18n($this->date_format_minimal_2, strtotime($event->date['end']['date'])); ?>
|
99 |
</div>
|
|
|
|
|
|
|
|
|
|
|
100 |
<?php endif; ?>
|
|
|
101 |
<?php if($this->include_events_times and trim($start_time)) echo $this->main->display_time($start_time, $end_time); ?>
|
102 |
<h4 class="mec-event-title"><?php echo $this->display_link($event); ?><?php echo $this->main->get_flags($event).$event_color.$this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event, $reason_for_cancellation); ?><?php do_action('mec_shortcode_virtual_badge', $event->data->ID ); ?></h4>
|
103 |
<div class="mec-event-detail">
|
38 |
<article 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>
|
39 |
<?php if($this->style == 'modern'): ?>
|
40 |
<div class="col-md-2 col-sm-2">
|
41 |
+
|
42 |
+
<?php if($this->main->is_multipleday_occurrence($event, true)): ?>
|
43 |
<div class="mec-event-date">
|
44 |
+
<div class="event-d mec-color mec-multiple-dates">
|
45 |
+
<?php echo $this->main->date_i18n($this->date_format_modern_1, strtotime($event->date['start']['date'])); ?> -
|
46 |
+
<?php echo $this->main->date_i18n($this->date_format_modern_1, strtotime($event->date['end']['date'])); ?>
|
47 |
+
</div>
|
48 |
+
<div class="event-f"><?php echo $this->main->date_i18n($this->date_format_modern_2, strtotime($event->date['start']['date'])); ?></div>
|
49 |
+
<div class="event-da"><?php echo $this->main->date_i18n($this->date_format_modern_3, strtotime($event->date['start']['date'])); ?></div>
|
50 |
+
</div>
|
51 |
+
<?php elseif($this->main->is_multipleday_occurrence($event)): ?>
|
52 |
+
<div class="mec-event-date mec-multiple-date-event">
|
53 |
<div class="event-d mec-color"><?php echo $this->main->date_i18n($this->date_format_modern_1, strtotime($event->date['start']['date'])); ?></div>
|
54 |
<div class="event-f"><?php echo $this->main->date_i18n($this->date_format_modern_2, strtotime($event->date['start']['date'])); ?></div>
|
55 |
<div class="event-da"><?php echo $this->main->date_i18n($this->date_format_modern_3, strtotime($event->date['start']['date'])); ?></div>
|
56 |
</div>
|
57 |
+
<div class="mec-event-date mec-multiple-date-event">
|
|
|
58 |
<div class="event-d mec-color"><?php echo $this->main->date_i18n($this->date_format_modern_1, strtotime($event->date['end']['date'])); ?></div>
|
59 |
<div class="event-f"><?php echo $this->main->date_i18n($this->date_format_modern_2, strtotime($event->date['end']['date'])); ?></div>
|
60 |
<div class="event-da"><?php echo $this->main->date_i18n($this->date_format_modern_3, strtotime($event->date['end']['date'])); ?></div>
|
61 |
</div>
|
62 |
+
<?php else: ?>
|
63 |
+
<div class="mec-event-date">
|
64 |
+
<div class="event-d mec-color"><?php echo $this->main->date_i18n($this->date_format_modern_1, strtotime($event->date['start']['date'])); ?></div>
|
65 |
+
<div class="event-f"><?php echo $this->main->date_i18n($this->date_format_modern_2, strtotime($event->date['start']['date'])); ?></div>
|
66 |
+
<div class="event-da"><?php echo $this->main->date_i18n($this->date_format_modern_3, strtotime($event->date['start']['date'])); ?></div>
|
67 |
+
</div>
|
68 |
<?php endif; ?>
|
69 |
</div>
|
70 |
<div class="col-md-6 col-sm-6">
|
104 |
<?php elseif($this->style == 'minimal'): ?>
|
105 |
<?php echo $this->get_label_captions($event); ?>
|
106 |
<div class="col-md-9 col-sm-9">
|
107 |
+
|
108 |
+
<?php if($this->main->is_multipleday_occurrence($event, true)): ?>
|
109 |
+
<div class="mec-event-date mec-bg-color">
|
110 |
+
<span class="mec-multiple-dates"><?php echo $this->main->date_i18n($this->date_format_minimal_1, strtotime($event->date['start']['date'])); ?> - <?php echo $this->main->date_i18n($this->date_format_minimal_1, strtotime($event->date['end']['date'])); ?></span>
|
111 |
+
<?php echo $this->main->date_i18n($this->date_format_minimal_2, strtotime($event->date['start']['date'])); ?>
|
112 |
+
</div>
|
113 |
+
<?php elseif($this->main->is_multipleday_occurrence($event)): ?>
|
114 |
<div class="mec-event-date mec-bg-color">
|
115 |
<span><?php echo $this->main->date_i18n($this->date_format_minimal_1, strtotime($event->date['start']['date'])); ?></span>
|
116 |
<?php echo $this->main->date_i18n($this->date_format_minimal_2, strtotime($event->date['start']['date'])); ?>
|
117 |
</div>
|
|
|
118 |
<div class="mec-event-date mec-bg-color">
|
119 |
<span><?php echo $this->main->date_i18n($this->date_format_minimal_1, strtotime($event->date['end']['date'])); ?></span>
|
120 |
<?php echo $this->main->date_i18n($this->date_format_minimal_2, strtotime($event->date['end']['date'])); ?>
|
121 |
</div>
|
122 |
+
<?php else: ?>
|
123 |
+
<div class="mec-event-date mec-bg-color">
|
124 |
+
<span><?php echo $this->main->date_i18n($this->date_format_minimal_1, strtotime($event->date['start']['date'])); ?></span>
|
125 |
+
<?php echo $this->main->date_i18n($this->date_format_minimal_2, strtotime($event->date['start']['date'])); ?>
|
126 |
+
</div>
|
127 |
<?php endif; ?>
|
128 |
+
|
129 |
<?php if($this->include_events_times and trim($start_time)) echo $this->main->display_time($start_time, $end_time); ?>
|
130 |
<h4 class="mec-event-title"><?php echo $this->display_link($event); ?><?php echo $this->main->get_flags($event).$event_color.$this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event, $reason_for_cancellation); ?><?php do_action('mec_shortcode_virtual_badge', $event->data->ID ); ?></h4>
|
131 |
<div class="mec-event-detail">
|
@@ -151,7 +151,7 @@ class MEC_skin_map extends MEC_skins
|
|
151 |
$events = array();
|
152 |
$sorted = array();
|
153 |
|
154 |
-
$this->args['meta_query']['relation'] = $this->args['meta_query']['relation']
|
155 |
$this->args['meta_query']['mec_start_date'] = array(
|
156 |
'key' => 'mec_start_date',
|
157 |
'value' => $this->start_date,
|
151 |
$events = array();
|
152 |
$sorted = array();
|
153 |
|
154 |
+
$this->args['meta_query']['relation'] = (isset($this->args['meta_query']['relation']) ? $this->args['meta_query']['relation'] : 'AND');
|
155 |
$this->args['meta_query']['mec_start_date'] = array(
|
156 |
'key' => 'mec_start_date',
|
157 |
'value' => $this->start_date,
|
@@ -88,37 +88,14 @@ $reason_for_cancellation = isset($this->skin_options['reason_for_cancellation'])
|
|
88 |
|
89 |
<div class="mec-masonry-content mec-event-grid-modern">
|
90 |
<div class="event-grid-modern-head clearfix">
|
|
|
91 |
<div class="mec-masonry-col<?php echo (isset($location['name']) and trim($location['name'])) ? '6' : '12'; ?>">
|
92 |
-
<?php
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
$months_name = $this->main->date_i18n($this->date_format_2, $start_date_time);
|
99 |
-
}
|
100 |
-
|
101 |
-
if(isset($settings['multiple_day_show_method']) and $settings['multiple_day_show_method'] == 'all_days'){
|
102 |
-
|
103 |
-
$end_date = $event->date['end']['date'];
|
104 |
-
$end_date_time = strtotime($end_date);
|
105 |
-
$day = $this->main->date_i18n($this->date_format_1, $end_date_time);
|
106 |
-
$m = $this->main->date_i18n($this->date_format_2, $end_date_time);
|
107 |
-
|
108 |
-
if($days_number != $day || $months_name != $m){
|
109 |
-
|
110 |
-
$days_number .= '-' . $day;
|
111 |
-
}
|
112 |
-
|
113 |
-
if($months_name != $m){
|
114 |
-
|
115 |
-
$months_name .= '-' . $m;
|
116 |
-
}
|
117 |
-
}
|
118 |
-
?>
|
119 |
-
<?php if(!empty($days_number) && !empty($months_name)): ?>
|
120 |
-
<div class="mec-event-date mec-color"><?php echo $days_number; ?></div>
|
121 |
-
<div class="mec-event-month"><?php echo $months_name; ?></div>
|
122 |
<?php endif; ?>
|
123 |
<div class="mec-event-detail"><?php echo $start_time.(trim($end_time) ? ' - '.$end_time : ''); ?></div>
|
124 |
<?php if($this->localtime) echo $this->main->module('local-time.type2', array('event'=>$event)); ?>
|
88 |
|
89 |
<div class="mec-masonry-content mec-event-grid-modern">
|
90 |
<div class="event-grid-modern-head clearfix">
|
91 |
+
|
92 |
<div class="mec-masonry-col<?php echo (isset($location['name']) and trim($location['name'])) ? '6' : '12'; ?>">
|
93 |
+
<?php if(isset($settings['multiple_day_show_method']) and ($settings['multiple_day_show_method'] == 'all_days' or $settings['multiple_day_show_method'] == 'first_day_listgrid')): ?>
|
94 |
+
<div class="mec-event-date mec-color"><?php echo $this->main->date_i18n($this->date_format_1, strtotime($event->date['start']['date'])); ?></div>
|
95 |
+
<div class="mec-event-month"><?php echo $this->main->date_i18n($this->date_format_2, strtotime($event->date['start']['date'])); ?></div>
|
96 |
+
<?php else: ?>
|
97 |
+
<div class="mec-event-date mec-color"><?php echo $this->main->dateify($event, $this->date_format_1); ?></div>
|
98 |
+
<div class="mec-event-month"><?php echo $this->main->dateify($event, $this->date_format_2); ?></div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
99 |
<?php endif; ?>
|
100 |
<div class="mec-event-detail"><?php echo $start_time.(trim($end_time) ? ' - '.$end_time : ''); ?></div>
|
101 |
<?php if($this->localtime) echo $this->main->module('local-time.type2', array('event'=>$event)); ?>
|
@@ -91,9 +91,19 @@ class MEC_skin_single extends MEC_skins
|
|
91 |
'posts_per_page' => 8,
|
92 |
'post_status' => 'publish',
|
93 |
'post__not_in' => array($event_id),
|
94 |
-
'order' => 'ASC',
|
95 |
-
'orderby' => 'post_date',
|
96 |
'tax_query' => array(),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
97 |
);
|
98 |
|
99 |
if(isset($this->settings['related_events_basedon_category']) && $this->settings['related_events_basedon_category'] == 1)
|
@@ -184,11 +194,11 @@ class MEC_skin_single extends MEC_skins
|
|
184 |
}
|
185 |
|
186 |
$dates = $this->render->dates(get_the_ID(), NULL, 1, $occurrence);
|
187 |
-
$d = isset($dates[0]) ? $dates[0] : array();
|
188 |
|
189 |
// Don't show Expired Events
|
190 |
$timestamp = (isset($d['start']) and isset($d['start']['timestamp'])) ? $d['start']['timestamp'] : 0;
|
191 |
-
if($timestamp <= 0
|
192 |
|
193 |
$printed += 1;
|
194 |
$mec_date = (isset($d['start']) and isset($d['start']['date'])) ? $d['start']['date'] : get_post_meta(get_the_ID(), 'mec_start_date', true);
|
@@ -940,7 +950,7 @@ class MEC_skin_single extends MEC_skins
|
|
940 |
<?php endif; ?>
|
941 |
<i class="mec-sl-location-pin"></i>
|
942 |
<h3 class="mec-events-single-section-title mec-location"><?php echo $this->main->m('taxonomy_location', __('Location', 'modern-events-calendar-lite')); ?></h3>
|
943 |
-
<dd class="author fn org"><?php echo $this->get_location_html($location); ?></dd
|
944 |
<dd class="location">
|
945 |
<address class="mec-events-address"><span class="mec-address"><?php echo (isset($location['address']) ? $location['address'] : ''); ?></span></address>
|
946 |
</dd>
|
@@ -1554,16 +1564,14 @@ class MEC_skin_single extends MEC_skins
|
|
1554 |
}
|
1555 |
}
|
1556 |
|
1557 |
-
public function get_location_html($location)
|
1558 |
-
|
1559 |
-
$
|
1560 |
-
$
|
1561 |
-
|
1562 |
-
|
1563 |
-
|
1564 |
-
|
1565 |
-
$location_html = $location_name;
|
1566 |
-
}
|
1567 |
|
1568 |
return $location_html;
|
1569 |
}
|
91 |
'posts_per_page' => 8,
|
92 |
'post_status' => 'publish',
|
93 |
'post__not_in' => array($event_id),
|
|
|
|
|
94 |
'tax_query' => array(),
|
95 |
+
'meta_query' => array(
|
96 |
+
'mec_start_date' => array(
|
97 |
+
'key' => 'mec_start_date',
|
98 |
+
),
|
99 |
+
'mec_start_day_seconds' => array(
|
100 |
+
'key' => 'mec_start_day_seconds',
|
101 |
+
),
|
102 |
+
),
|
103 |
+
'orderby' => array(
|
104 |
+
'mec_start_date' => 'ASC',
|
105 |
+
'mec_start_day_seconds' => 'ASC',
|
106 |
+
),
|
107 |
);
|
108 |
|
109 |
if(isset($this->settings['related_events_basedon_category']) && $this->settings['related_events_basedon_category'] == 1)
|
194 |
}
|
195 |
|
196 |
$dates = $this->render->dates(get_the_ID(), NULL, 1, $occurrence);
|
197 |
+
$d = (isset($dates[0]) ? $dates[0] : array());
|
198 |
|
199 |
// Don't show Expired Events
|
200 |
$timestamp = (isset($d['start']) and isset($d['start']['timestamp'])) ? $d['start']['timestamp'] : 0;
|
201 |
+
if($timestamp <= 0 or $timestamp < $now) continue;
|
202 |
|
203 |
$printed += 1;
|
204 |
$mec_date = (isset($d['start']) and isset($d['start']['date'])) ? $d['start']['date'] : get_post_meta(get_the_ID(), 'mec_start_date', true);
|
950 |
<?php endif; ?>
|
951 |
<i class="mec-sl-location-pin"></i>
|
952 |
<h3 class="mec-events-single-section-title mec-location"><?php echo $this->main->m('taxonomy_location', __('Location', 'modern-events-calendar-lite')); ?></h3>
|
953 |
+
<dd class="author fn org"><?php echo $this->get_location_html($location); ?></dd>
|
954 |
<dd class="location">
|
955 |
<address class="mec-events-address"><span class="mec-address"><?php echo (isset($location['address']) ? $location['address'] : ''); ?></span></address>
|
956 |
</dd>
|
1564 |
}
|
1565 |
}
|
1566 |
|
1567 |
+
public function get_location_html($location)
|
1568 |
+
{
|
1569 |
+
$location_id = (isset($location['id']) ? $location['id'] : '');
|
1570 |
+
$location_name = (isset($location['name']) ? $location['name'] : '');
|
1571 |
+
|
1572 |
+
$location_link = apply_filters('mec_location_single_page_link', '', $location_id, $location_name, $location);
|
1573 |
+
if(!empty($location_link)) $location_html ='<a href="'.$location_link.'">'.$location_name .'</a>';
|
1574 |
+
else $location_html = $location_name;
|
|
|
|
|
1575 |
|
1576 |
return $location_html;
|
1577 |
}
|
@@ -64,8 +64,8 @@ $bookings_limit_for_users = isset($booking_options['bookings_limit_for_users'])
|
|
64 |
if ( $this->main->is_sold( $event ) and count( $event->dates ) <= 1 ): ?>
|
65 |
<?php
|
66 |
$event_id = $event->ID;
|
67 |
-
$dates = $event->dates
|
68 |
-
$occurrence_time = $dates[0]['start']['timestamp']
|
69 |
$tickets = get_post_meta( $event_id, 'mec_tickets', true );
|
70 |
$book = $this->getBook();
|
71 |
$availability = $book->get_tickets_availability( $event_id, $occurrence_time );
|
@@ -75,7 +75,7 @@ $bookings_limit_for_users = isset($booking_options['bookings_limit_for_users'])
|
|
75 |
$stop_selling = '';
|
76 |
foreach ( $tickets as $ticket_id => $ticket ) {
|
77 |
|
78 |
-
$ticket_limit = $availability[ $ticket_id
|
79 |
$ticket_name = isset( $ticket['name'] ) ? '<strong>' . $ticket['name'] . '</strong>' : '';
|
80 |
|
81 |
$key = 'stop_selling_' . $ticket_id;
|
64 |
if ( $this->main->is_sold( $event ) and count( $event->dates ) <= 1 ): ?>
|
65 |
<?php
|
66 |
$event_id = $event->ID;
|
67 |
+
$dates = (isset($event->dates) ? $event->dates : array($event->date));
|
68 |
+
$occurrence_time = (isset($dates[0]['start']['timestamp']) ? $dates[0]['start']['timestamp'] : strtotime($dates[0]['start']['date']));
|
69 |
$tickets = get_post_meta( $event_id, 'mec_tickets', true );
|
70 |
$book = $this->getBook();
|
71 |
$availability = $book->get_tickets_availability( $event_id, $occurrence_time );
|
75 |
$stop_selling = '';
|
76 |
foreach ( $tickets as $ticket_id => $ticket ) {
|
77 |
|
78 |
+
$ticket_limit = (isset($availability[$ticket_id]) ? $availability[$ticket_id] : -1);
|
79 |
$ticket_name = isset( $ticket['name'] ) ? '<strong>' . $ticket['name'] . '</strong>' : '';
|
80 |
|
81 |
$key = 'stop_selling_' . $ticket_id;
|
@@ -1157,6 +1157,15 @@ span.mec-event-title-soldout {
|
|
1157 |
border-radius: 3px;
|
1158 |
}
|
1159 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1160 |
.mec-event-list-minimal .mec-event-date span {
|
1161 |
display: block;
|
1162 |
font-size: 24px;
|
@@ -1177,6 +1186,10 @@ span.mec-event-title-soldout {
|
|
1177 |
box-shadow: 0 4px 4px rgba(0,0,0,.02);
|
1178 |
}
|
1179 |
|
|
|
|
|
|
|
|
|
1180 |
.mec-event-list-minimal .mec-event-title {
|
1181 |
margin-top: 0;
|
1182 |
margin-bottom: 10px;
|
@@ -1331,6 +1344,41 @@ span.mec-event-title-soldout {
|
|
1331 |
padding: 10px 0 0;
|
1332 |
}
|
1333 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1334 |
.mec-event-list-modern .mec-event-date .event-f {
|
1335 |
font-size: 13px;
|
1336 |
display: table-cell;
|
@@ -1403,6 +1451,7 @@ span.mec-event-title-soldout {
|
|
1403 |
.mec-event-list-modern .mec-event-sharing {
|
1404 |
position: relative;
|
1405 |
margin: 10px 0;
|
|
|
1406 |
}
|
1407 |
|
1408 |
.mec-event-list-modern .mec-event-sharing>li {
|
@@ -3908,6 +3957,7 @@ focus,
|
|
3908 |
font-weight: 700;
|
3909 |
font-size: 21px;
|
3910 |
color: #222;
|
|
|
3911 |
}
|
3912 |
|
3913 |
.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label,
|
@@ -12906,8 +12956,10 @@ body .featherlight .featherlight-close-icon:hover {
|
|
12906 |
background-color: #40d9f1;
|
12907 |
}
|
12908 |
|
12909 |
-
.mec-box-marker
|
|
|
12910 |
box-shadow: 5px 0px 0 #40d9f1 inset;
|
|
|
12911 |
}
|
12912 |
|
12913 |
.mec-border-color,
|
@@ -15115,6 +15167,10 @@ article.mec-search-bar-result {
|
|
15115 |
margin: 40px 0 40px;
|
15116 |
}
|
15117 |
|
|
|
|
|
|
|
|
|
15118 |
.mec-next-previous-events li a {
|
15119 |
padding: 9px 14px 9px 14px;
|
15120 |
border: 1px solid #000;
|
@@ -15156,7 +15212,14 @@ article.mec-search-bar-result {
|
|
15156 |
.mec-next-multiple ul .mec-time,
|
15157 |
.mec-next-multiple ul .mec-date {
|
15158 |
display: inline-block;
|
15159 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15160 |
}
|
15161 |
|
15162 |
.mec-next-multiple ul .mec-date {
|
@@ -15175,9 +15238,10 @@ article.mec-search-bar-result {
|
|
15175 |
padding: 0
|
15176 |
}
|
15177 |
|
|
|
15178 |
.mec-next-multiple ul .mec-time .mec-events-abbr,
|
15179 |
.mec-next-multiple ul .mec-date .mec-start-date-label {
|
15180 |
-
font-size:
|
15181 |
line-height: 24px;
|
15182 |
}
|
15183 |
|
1157 |
border-radius: 3px;
|
1158 |
}
|
1159 |
|
1160 |
+
.mec-event-list-minimal .mec-event-date {
|
1161 |
+
min-width: 52px;
|
1162 |
+
width: fit-content;
|
1163 |
+
}
|
1164 |
+
|
1165 |
+
.mec-event-list-minimal .mec-event-date:nth-child(2) {
|
1166 |
+
margin: 0 30px 0 -20px;
|
1167 |
+
}
|
1168 |
+
|
1169 |
.mec-event-list-minimal .mec-event-date span {
|
1170 |
display: block;
|
1171 |
font-size: 24px;
|
1186 |
box-shadow: 0 4px 4px rgba(0,0,0,.02);
|
1187 |
}
|
1188 |
|
1189 |
+
.mec-event-list-minimal .mec-event-date:after {
|
1190 |
+
width: 100%;
|
1191 |
+
}
|
1192 |
+
|
1193 |
.mec-event-list-minimal .mec-event-title {
|
1194 |
margin-top: 0;
|
1195 |
margin-bottom: 10px;
|
1344 |
padding: 10px 0 0;
|
1345 |
}
|
1346 |
|
1347 |
+
.mec-event-list-modern .mec-event-date .event-d.mec-multiple-dates {
|
1348 |
+
font-size: 20px;
|
1349 |
+
padding: 0;
|
1350 |
+
}
|
1351 |
+
|
1352 |
+
.mec-event-list-modern .mec-event-date.mec-multiple-date-event:first-child {
|
1353 |
+
padding: 10px 0 6px 0;
|
1354 |
+
position: relative;
|
1355 |
+
width: fit-content;
|
1356 |
+
}
|
1357 |
+
|
1358 |
+
.mec-event-list-modern .mec-event-date.mec-multiple-date-event:first-child:after {
|
1359 |
+
content: '';
|
1360 |
+
position: absolute;
|
1361 |
+
bottom: 0;
|
1362 |
+
left: 0;
|
1363 |
+
width: 100%;
|
1364 |
+
height: 1px;
|
1365 |
+
background: silver;
|
1366 |
+
}
|
1367 |
+
|
1368 |
+
.mec-event-list-modern .mec-event-date.mec-multiple-date-event:last-child {
|
1369 |
+
padding: 5px 0 10px 0;
|
1370 |
+
}
|
1371 |
+
|
1372 |
+
.mec-event-list-modern .mec-event-date.mec-multiple-date-event .event-d {
|
1373 |
+
font-size: 20px;
|
1374 |
+
padding: 0;
|
1375 |
+
}
|
1376 |
+
|
1377 |
+
.mec-event-list-modern .mec-event-date.mec-multiple-date-event .event-da {
|
1378 |
+
font-size: 20px;
|
1379 |
+
margin: 0;
|
1380 |
+
}
|
1381 |
+
|
1382 |
.mec-event-list-modern .mec-event-date .event-f {
|
1383 |
font-size: 13px;
|
1384 |
display: table-cell;
|
1451 |
.mec-event-list-modern .mec-event-sharing {
|
1452 |
position: relative;
|
1453 |
margin: 10px 0;
|
1454 |
+
padding-left: 0
|
1455 |
}
|
1456 |
|
1457 |
.mec-event-list-modern .mec-event-sharing>li {
|
3957 |
font-weight: 700;
|
3958 |
font-size: 21px;
|
3959 |
color: #222;
|
3960 |
+
display: contents;
|
3961 |
}
|
3962 |
|
3963 |
.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label,
|
12956 |
background-color: #40d9f1;
|
12957 |
}
|
12958 |
|
12959 |
+
.mec-box-marker,
|
12960 |
+
.mec-vip-content-notice{
|
12961 |
box-shadow: 5px 0px 0 #40d9f1 inset;
|
12962 |
+
padding: 5px 10px;
|
12963 |
}
|
12964 |
|
12965 |
.mec-border-color,
|
15167 |
margin: 40px 0 40px;
|
15168 |
}
|
15169 |
|
15170 |
+
.mec-next-previous-events li:last-child {
|
15171 |
+
text-align: right;
|
15172 |
+
}
|
15173 |
+
|
15174 |
.mec-next-previous-events li a {
|
15175 |
padding: 9px 14px 9px 14px;
|
15176 |
border: 1px solid #000;
|
15212 |
.mec-next-multiple ul .mec-time,
|
15213 |
.mec-next-multiple ul .mec-date {
|
15214 |
display: inline-block;
|
15215 |
+
}
|
15216 |
+
|
15217 |
+
.mec-next-multiple ul .mec-time {
|
15218 |
+
width: 40%;
|
15219 |
+
}
|
15220 |
+
|
15221 |
+
.mec-next-multiple ul .mec-date {
|
15222 |
+
width: 60%;
|
15223 |
}
|
15224 |
|
15225 |
.mec-next-multiple ul .mec-date {
|
15238 |
padding: 0
|
15239 |
}
|
15240 |
|
15241 |
+
.mec-next-multiple ul .mec-date .mec-end-date-label,
|
15242 |
.mec-next-multiple ul .mec-time .mec-events-abbr,
|
15243 |
.mec-next-multiple ul .mec-date .mec-start-date-label {
|
15244 |
+
font-size: 11px;
|
15245 |
line-height: 24px;
|
15246 |
}
|
15247 |
|
@@ -1 +1 @@
|
|
1 |
-
.lity-container,.mec-wrap,.mec-wrap div:not([class^=elementor-]){font-family:Montserrat,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif}.entry-content .mec-wrap h1,.entry-content .mec-wrap h2,.entry-content .mec-wrap h3,.entry-content .mec-wrap h4,.entry-content .mec-wrap h5,.entry-content .mec-wrap h6,.mec-wrap h1,.mec-wrap h2,.mec-wrap h3,.mec-wrap h4,.mec-wrap h5,.mec-wrap h6{font-family:Montserrat,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;color:#171c24;font-weight:300;font-style:inherit;letter-spacing:normal;clear:none}.mec-wrap h1{font-size:50px;line-height:1.16;margin-bottom:12px;letter-spacing:-1px}.mec-wrap h2{font-size:36px;line-height:1.14;margin-bottom:10px}.mec-wrap h3{font-size:28px;line-height:1.2;margin-bottom:8px}.mec-wrap h4{font-size:24px;line-height:1.2;margin-bottom:10px}.mec-wrap h5{font-size:18px;line-height:1.3;margin-bottom:7px}.mec-wrap h6{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-wrap .subheader{color:#849098}.mec-wrap h1 strong{font-weight:700}.mec-wrap p{margin:0 0 20px 0;color:#616161;font-size:14px;line-height:1.8}.mec-wrap .mec-event-article .mec-color-hover{box-shadow:none;border:none}.mec-wrap abbr,.mec-wrap acronym{cursor:auto;border:none}.entry-content .mec-wrap a{box-shadow:none}.mec-wrap .button,.mec-wrap a.button:not(.owl-dot),.mec-wrap button:not(.owl-dot):not(.gm-control-active),.mec-wrap input[type=button],.mec-wrap input[type=reset],.mec-wrap input[type=submit]{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#24ca4f;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease}.mec-wrap .button:hover,.mec-wrap a.button:hover,.mec-wrap button:hover,.mec-wrap input[type=button]:hover,.mec-wrap input[type=reset]:hover,.mec-wrap input[type=submit]:hover{background:#222;color:#fff}.mec-wrap #mec_woo_add_to_cart_btn_r{min-width:155px;margin-top:5px;border-radius:2px;box-shadow:0 2px 1px rgba(0,0,0,.08);float:left;text-align:center}.mec-booking-form-container button{display:block}.vertical-space,.vertical-space1,.vertical-space2,.vertical-space3,.vertical-space4,.vertical-space5{display:block;width:100%;margin:0;clear:both;border:0 none;height:20px}.vertical-space2{height:40px}.vertical-space3{height:60px}.vertical-space4{height:80px}.vertical-space5{height:100px}@media only screen and (max-width:479px){.vertical-space,.vertical-space1{height:8px}.vertical-space2{height:14px}.vertical-space3{height:28px}.vertical-space4{height:40px}.vertical-space5{height:60px}}@media only screen and (max-width:960px){.vertical-space,.vertical-space1{height:12px}.vertical-space2{height:18px}.vertical-space3{height:36px}.vertical-space4{height:50px}.vertical-space5{height:80px}}.mec-wrap abbr{cursor:auto;border-bottom:0}@-webkit-keyframes rotating{from{-ms-transform:rotate(0);-moz-transform:rotate(0);-webkit-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}to{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes rotating{from{-ms-transform:rotate(0);-moz-transform:rotate(0);-webkit-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}to{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}.mec-wrap{font:14px/25px sans-serif;font-family:Montserrat,Helvetica,Arial,sans-serif;font-weight:400;color:#626262}.mec-wrap .mec-events a{border-bottom:none}.mec-wrap .mec-container a{box-shadow:none}.mec-event-content p{font-family:Roboto,sans-serif;font-weight:300}.mec-wrap .mec-clear:after,.mec-wrap .mec-clear:before{content:" ";display:table}.mec-wrap .mec-clear:after{clear:both}.mec-events-button{background:#fff;padding:12px 34px;font-size:13px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;margin-right:10px;transition:.3s}.mec-wrap .mec-events-button:hover{color:#fff}.mec-no-event{display:none}#mec-active-current{display:block}.current-hide #mec-active-current{display:none!important}.mec-event-grid-classic .mec-event-article{position:relative;border:2px solid #e3e3e3;box-shadow:0 2px 0 0 rgba(0,0,0,.016);margin-bottom:30px;max-width:none}.mec-event-grid-classic .mec-event-content{background:#fff;color:#767676;padding:0 20px 5px;text-align:center;min-height:125px}.mec-event-grid-classic .mec-event-title{color:#202020;margin:10px 0;font-weight:700;font-size:20px;letter-spacing:1px;text-transform:uppercase}.mec-event-grid-classic .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-classic .mec-event-date{font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:1px;color:#fff;padding:3px 20px;margin:0 -20px 20px -20px;text-align:center}.widget_mec_mec_widget .mec-event-grid-classic .mec-event-date{margin:0}.mec-event-grid-classic .mec-event-content p{font-size:15px;color:#8a8a8a}.mec-event-grid-classic .mec-event-detail{display:none}.mec-event-grid-classic img{margin-bottom:0;width:100%}.mec-event-footer{position:relative;border-top:1px solid #efefef;padding:20px;min-height:80px;margin:0;background:#fafafa}.mec-event-sharing-wrap{left:15px;position:absolute;list-style:none;margin:0;padding-left:0}.mec-event-sharing-wrap .mec-event-sharing{position:absolute;padding:8px 0 2px;left:-6px;bottom:54px;margin:0;margin-top:6px;border-radius:5px;width:50px;visibility:hidden;opacity:0;border:1px solid #e2e2e2;background:#fff;box-shadow:0 0 9px 0 rgba(0,0,0,.06);z-index:99;-webkit-transition:all .18s ease;transition:all .18s ease}.mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-sharing-wrap .mec-event-sharing:before{content:'';display:block;position:absolute;bottom:-10px;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-event-sharing-wrap .mec-event-sharing:before{bottom:-21px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-sharing-wrap .mec-event-sharing:after{bottom:-19px;border-color:#fff transparent transparent transparent}.mec-event-sharing-wrap:hover .mec-event-sharing{opacity:1;visibility:visible}.mec-event-sharing-wrap li{text-align:center;border:0;display:block;margin-right:2px;overflow:hidden;margin:0 auto 6px;width:38px}.mec-event-sharing-wrap:hover>li{cursor:pointer;background-color:#40d9f1}.mec-event-sharing-wrap:hover li a{color:#fff}.mec-event-sharing-wrap>li:first-of-type{border:1px solid #d9d9d9}.mec-event-sharing-wrap li a,.mec-event-sharing-wrap:hover li ul li a{border:none;color:#767676}.mec-event-sharing-wrap li i{width:36px;height:36px;display:table-cell;vertical-align:middle}.mec-event-sharing-wrap li svg{height:16px}.mec-event-sharing-wrap .mec-event-sharing li a{display:block}.mec-event-sharing-wrap .mec-event-sharing li:hover a{color:#40d9f1}.mec-event-sharing .mec-event-share:hover .event-sharing-icon{background:#40d9f1;border-width:0 1px 0;cursor:pointer}.mec-event-sharing .mec-event-map{border-width:1px 0 1px}.mec-event-footer .mec-booking-button{box-shadow:none;transition:all .21s ease;font-size:11px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:1px solid #e8e8e8;position:absolute;top:20px;right:15px;padding:0 16px;line-height:37px;height:38px}.mec-event-footer .mec-booking-button:hover{background:#191919;color:#fff;border-color:#191919}@media only screen and (max-width:960px){.mec-event-grid-classic{margin-bottom:30px}}.mec-widget .mec-event-grid-classic.mec-owl-carousel{padding:36px 0 16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav{margin:5px 0;width:100%;position:absolute;top:15px;padding:0}.mec-skin-grid-container.mec-widget{padding-top:18px}.mec-widget .mec-event-grid-classic.mec-owl-carousel{padding:20px 0 16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav{margin:0;width:100%;position:absolute;top:0;padding:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav div{position:absolute;background:#fff;line-height:0;width:34px;height:26px;padding:6px;text-align:center;margin-top:-17px;border-radius:3px;border:1px solid #e2e2e2;text-align:center;box-shadow:0 2px 0 0 rgba(0,0,0,.028);transition:all .33s ease}.mec-skin-grid-container .mec-categories{padding:0}.mec-skin-grid-container .mec-categories li{list-style:none}.mec-skin-grid-container .mec-categories li a{color:#000;line-height:24px;text-align:left;transition:all .23s ease;-webkit-transition:all .23s ease}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav .owl-next{right:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav .owl-prev{left:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-sharing{display:none}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-footer{text-align:center}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-footer .mec-booking-button{position:static;padding:11px 16px}.widget .mec-event-footer ul.mec-event-sharing-wrap li a.mec-event-share-icon{padding:0}@media screen and (min-width:56.875em){.mec-widget .mec-month-container dl{margin-bottom:0}}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-footer{text-align:right}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-sharing-wrap{left:5px;padding-left:5px}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-sharing-wrap .mec-event-sharing{left:0}.mec-widget .mec-event-sharing-wrap .mec-event-sharing{position:absolute;top:auto;bottom:52px;margin:0;margin-top:0;border-radius:5px}.mec-widget .mec-event-sharing-wrap .mec-event-sharing:after{top:auto;bottom:-17px;border-color:#fff transparent transparent transparent}.mec-widget .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-18px;border-color:#e2e2e2 transparent transparent transparent}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav button{position:absolute;background:#fff;padding:6px;margin-top:-17px;border-radius:3px;border:1px solid #e2e2e2;box-shadow:0 2px 0 0 rgba(0,0,0,.028)}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav button:hover{background:#40d9f1;border-color:#40d9f1}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav button:hover i{color:#fff}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-booking-button{width:40%;float:right;color:#202020;height:36px;line-height:14px;font-size:12px;width:auto}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-booking-button:hover{color:#fff}.mec-widget .mec-event-list-modern .col-md-2.col-sm-2,.mec-widget .mec-event-list-modern .col-md-6.col-sm-6{padding:0;width:100%;display:block;position:unset}.mec-widget .mec-event-list-modern .col-md-4.col-sm-4 .mec-booking-button{width:80%;height:46px;line-height:22px;padding:11px 20px;float:right}.mec-widget .mec-event-list-modern .col-md-4.col-sm-4.mec-btn-wrapper{top:auto;bottom:5%}@media (max-width:480px){.mec-widget .mec-event-list-modern .col-md-4.col-sm-4{padding:0}.mec-widget .mec-event-list-modern .col-md-4.col-sm-4 .mec-booking-button{width:100%}}.mec-event-grid-clean{margin-bottom:10px;max-width:none}.mec-event-grid-clean .mec-event-article{margin-bottom:30px;position:relative;border:1px solid #e2e2e2;text-align:center;padding:15px 15px 0;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-clean .mec-event-content{background:#fff;color:#767676;padding:25px 16px 0;text-align:left}.mec-event-grid-clean .mec-event-title{color:#202020;margin:0 0 10px 0;font-weight:700;font-size:21px;text-transform:capitalize}.mec-event-grid-clean .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-clean .mec-event-date{font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:1px;background-color:#40d9f1;color:#fff;padding:3px 0;margin:0;text-align:center}.mec-event-grid-clean .mec-event-content p{font-size:15px;color:#9a9a9a;line-height:1.54}.mec-event-grid-clean img{margin-bottom:0;width:100%}.mec-event-grid-clean .event-grid-t2-head{margin-bottom:10px;color:#fff;padding:9px 14px 6px;text-align:left}.mec-event-grid-clean .event-grid-t2-head .mec-event-date{font-size:50px;line-height:50px;float:left;margin-right:11px}.mec-event-grid-clean .event-grid-t2-head .mec-event-month{text-transform:uppercase;font-size:17px;line-height:20px;padding-top:4px}.mec-event-grid-clean .event-grid-t2-head .mec-event-detail{font-size:12px}.mec-event-grid-clean .event-grid-t2-head .mec-categories li a{margin-bottom:10px;color:#fff}.mec-event-grid-clean .event-grid-t2-head .mec-categories li a:hover{color:#000}.mec-event-grid-clean .mec-event-sharing-wrap{left:0;padding-left:0}.mec-event-grid-clean .mec-event-footer{position:relative;border-top:2px solid;padding:20px 0;margin:0 14px;text-align:left;background:0 0}.mec-event-grid-clean .mec-event-footer .mec-booking-button{right:0}.mec-event-grid-clean .row{margin-bottom:30px}.mec-event-grid-modern{margin-bottom:10px;max-width:none}.mec-event-grid-modern .mec-event-article{position:relative;border:1px solid #e2e2e2;text-align:center;margin-bottom:30px;padding:45px 15px 10px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-modern .mec-event-content{background:#fff;color:#767676;padding:35px 15px 10px;text-align:left}.mec-event-grid-modern .mec-event-title{color:#202020;margin:0 0 10px 0;font-weight:700;font-size:24px;text-transform:none;letter-spacing:-1px}.mec-event-grid-modern .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-modern .mec-event-content p{font-size:15px;color:#9a9a9a;line-height:1.54}.mec-event-grid-modern img{margin-bottom:0;width:100%}.mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:9px 14px 6px;text-align:left}.mec-event-grid-modern .event-grid-modern-head .mec-event-date{font-size:50px;line-height:50px;float:left;margin-right:11px}.mec-event-grid-modern .event-grid-modern-head .mec-event-month{text-transform:uppercase;font-size:17px;line-height:20px;padding-top:4px}.mec-event-grid-modern .event-grid-modern-head .mec-event-detail{font-size:12px}.mec-event-grid-modern .event-grid-modern-head .mec-event-day{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:35px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-event-grid-modern .mec-event-footer{position:relative;height:90px;padding:20px 0;border:none;margin:0 14px;text-align:left;background:0 0}.mec-event-grid-modern .mec-event-footer .mec-booking-button{right:auto;left:0}.mec-event-grid-modern .mec-event-sharing-wrap{left:auto;right:0;padding-left:0}.mec-event-grid-modern .mec-event-sharing{left:auto;right:-6px}.mec-event-grid-modern .mec-event-sharing-wrap li{border-radius:55px}.mec-event-grid-modern .row{margin-bottom:0}@media only screen and (max-width:479px){.mec-event-grid-modern .mec-event-article{padding-bottom:30px}.mec-event-grid-modern .mec-event-sharing{top:60px;left:0;right:auto}.mec-event-grid-modern .mec-event-footer .mec-booking-button{top:0}}span.mec-event-title-soldout{font-size:8px;font-weight:700;letter-spacing:.5px;text-transform:uppercase;background:#e63360;color:#fff;padding:3px 8px;line-height:1;border-radius:15px;white-space:nowrap;vertical-align:middle}.mec-event-grid-colorful .mec-event-article{min-height:400px;border:none;box-shadow:none;background:#40d9f1;padding-top:25px;margin:0;color:#fff}.mec-event-grid-colorful .mec-event-content{background:0 0}.mec-event-grid-colorful .event-grid-modern-head,.mec-event-grid-colorful .event-grid-modern-head .mec-event-date,.mec-event-grid-colorful .event-grid-modern-head .mec-event-day,.mec-event-grid-colorful .mec-event-content p,.mec-event-grid-colorful .mec-event-sharing-wrap>li>a,.mec-event-grid-colorful .mec-event-title a{color:#fff}.mec-event-grid-colorful .mec-event-footer .mec-booking-button{border:none}.mec-event-grid-colorful .mec-event-sharing-wrap>li{border-color:#fff}.mec-event-grid-colorful .mec-event-sharing-wrap:hover>li{background:#333;border-color:#333}.mec-event-grid-colorful .mec-event-title a.mec-color-hover:hover{color:#fff;text-decoration:underline}.mec-event-grid-colorful .mec-event-title .event-color{display:none}.mec-event-grid-colorful div[class^=col-md-]{padding:0 1px 1px 0;margin:0}.mec-event-grid-colorful .mec-event-article .mec-time-details{color:#fff}@media only screen and (min-width:768px){.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-day{font-size:26px}.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-month{font-size:15px}.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-date{font-size:50px}.mec-wrap.mec-sm959.mec-event-grid-colorful .mec-event-title{font-size:21px}.mec-wrap.mec-sm959.mec-event-grid-colorful .mec-event-content p{font-size:13px}}@media only screen and (min-width:768px) and (max-width:1200px){.mec-wrap.mec-sm959.mec-event-grid-colorful div[class^=col-md-]{width:50%}}.mec-event-list-minimal .mec-event-article{border-bottom:1px solid #efefef;padding:24px 0 16px}.mec-event-list-minimal .mec-wrap .col-md-9{padding:0}.mec-event-list-minimal .mec-event-date{position:relative;float:left;margin-right:30px;color:#fff;width:52px;padding:6px 4px 3px;text-align:center;text-transform:uppercase;border-radius:3px}.mec-event-list-minimal .mec-event-date span{display:block;font-size:24px;font-weight:700;text-align:center;margin-bottom:4px}.mec-event-list-minimal .mec-event-date:after{display:block;content:"";position:absolute;width:50px;left:1px;top:1px;height:34px;background:rgba(255,255,255,.1);box-shadow:0 4px 4px rgba(0,0,0,.02)}.mec-event-list-minimal .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;font-size:18px;text-transform:uppercase;letter-spacing:0;padding-top:10px}.mec-event-list-minimal .mec-event-detail,.mec-event-list-minimal .mec-time-details{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;font-family:Roboto,sans-serif}.mec-event-list-minimal .btn-wrapper{text-align:right;padding-right:0;padding-top:6px}.mec-event-list-minimal .btn-wrapper .mec-detail-button{border-bottom:0;margin-bottom:14px;margin-right:0;box-shadow:none}.mec-event-list-minimal a.mec-detail-button{text-align:center;display:inline-block;background:#ededed;color:#191919;padding:12px;border-radius:2px;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:2px;transition:all .24s ease}.mec-event-list-minimal a.mec-detail-button:hover{background:#292929;color:#fff}.vc_col-sm-4 .mec-event-list-minimal .mec-event-date,.vc_col-sm-6 .mec-event-list-minimal .mec-event-date{margin-right:12px}.vc_col-sm-4 .mec-event-list-minimal .mec-event-title,.vc_col-sm-6 .mec-event-list-minimal .mec-event-title{font-size:15px;letter-spacing:2px}@media only screen and (min-width:480px) and (max-width:767px){.mec-event-list-minimal .btn-wrapper{padding-left:0}.mec-event-list-minimal .mec-event-date{margin-right:10px}}@media only screen and (max-width:767px){.mec-event-list-minimal .btn-wrapper .mec-detail-button{display:block;text-align:center;margin:0;margin-top:16px;padding:8px}.mec-event-list-minimal .btn-wrapper{margin:12px 0}}@media only screen and (max-width:479px){.mec-event-list-minimal .mec-event-date{float:none;width:100%;margin-bottom:8px}.mec-event-list-minimal .mec-event-date span{display:inline;padding-right:25px;margin-right:7px;font-size:inherit}.mec-event-list-minimal .mec-event-date:after{width:45%;box-shadow:4px 0 4px rgba(0,0,0,.02)}.mec-event-list-minimal .btn-wrapper{text-align:center;padding-left:0}.mec-event-list-minimal{text-align:center}.mec-event-list-minimal .mec-event-detail{margin-bottom:10px}}.mec-wrap .mec-event-list-modern .mec-event-title{margin-top:0;margin-bottom:10px}.mec-event-list-modern .mec-event-article{border-bottom:1px solid #efefef;padding:30px 0 10px}.mec-event-list-modern .mec-event-article:last-child{border-bottom:none}.mec-event-list-modern .mec-event-title a{color:#191919;transition:all .24s ease;box-shadow:none}.mec-event-list-modern .mec-event-date{text-transform:uppercase;padding:10px 0}.mec-event-list-modern .mec-event-date .event-d{font-size:48px;display:table-cell;padding:10px 0 0}.mec-event-list-modern .mec-event-date .event-f{font-size:13px;display:table-cell;vertical-align:middle;padding-left:7px;font-weight:500;letter-spacing:3px;color:#777}.mec-event-list-modern .mec-event-detail{font-weight:300;color:#8a8a8a}.mec-event-list-modern .mec-event-detail .mec-time-details{display:inline}.mec-event-list-modern .mec-event-date .event-da{margin-top:9px;color:silver;font-size:28px;font-weight:100;text-transform:uppercase;letter-spacing:-1px;text-align:left}.mec-event-list-modern .mec-btn-wrapper .mec-booking-button{border-radius:1px;letter-spacing:2px;border:1px solid #e6e6e6;color:#333;background-color:#fff;padding:13px 20px;font-weight:700;font-size:11px;box-shadow:0 2px 0 0 rgba(0,0,0,.016);transition:all .28s ease}.mec-event-list-modern .mec-btn-wrapper .mec-booking-button:hover{border-color:#222;background:#222;color:#fff}.mec-event-list-modern .mec-event-title{font-weight:700;font-size:20px;text-transform:uppercase;letter-spacing:1px}.mec-event-list-modern .mec-event-detail{color:#9a9a9a;font-size:15px;font-weight:300;line-height:25px;font-family:Roboto,sans-serif}.mec-event-list-modern .mec-btn-wrapper{text-align:right;padding:10px 0;text-transform:uppercase}.mec-event-list-modern .mec-event-sharing{position:relative;margin:10px 0}.mec-event-list-modern .mec-event-sharing>li{display:inline-block;border:none;border-radius:50%;margin-right:3px}.mec-event-list-modern .mec-event-sharing .telegram{min-width:36px;min-height:36px;line-height:36px;padding:9px 1px 10px;border-radius:60px}.mec-event-list-modern .mec-event-sharing .telegram .svg-inline--fa.fa-telegram.fa-w-16{width:2.126rem;padding:2px 10px 0 10px;margin-bottom:-2px}.mec-event-list-modern .mec-event-sharing .telegram .svg-inline--fa.fa-telegram.fa-w-16 path{fill:#767676}.mec-event-list-modern .mec-event-sharing li:hover .telegram{background:#40d9f1}.mec-event-list-modern .mec-event-sharing li:hover .telegram .svg-inline--fa.fa-telegram.fa-w-16 path{fill:#fff}.mec-event-list-modern .mec-event-sharing>li:hover{display:inline-block}.mec-event-list-modern .mec-event-sharing>li:hover a i{color:#fff;background:#40d9f1;border-color:#40d9f1}.mec-event-list-modern .mec-event-sharing>li i{width:36px;display:inline-block;line-height:35px;color:#767676;text-align:center;border-radius:50%;border:1px solid #ddd;font-size:14px}.mec-event-list-modern .mec-event-sharing .mec-event-share:hover .mec-event-sharing-icon{background:#40d9f1;border-color:#40d9f1;cursor:pointer;border-radius:50%}.mec-event-list-modern .mec-event-sharing li:hover a i{background:#40d9f1}@media only screen and (min-width:768px){.mec-event-list-modern .mec-event-article{position:relative;min-height:160px;overflow:hidden}.mec-event-list-modern .col-md-2.col-sm-2{width:210px;position:absolute;left:0;top:20px}.mec-event-list-modern .col-md-4.col-sm-4.mec-btn-wrapper{width:180px;padding:0;position:absolute;right:0;top:30%}.mec-event-list-modern .col-md-6.col-sm-6{width:100%;padding-left:225px;padding-right:195px}}@media only screen and (max-width:767px){.mec-event-list-modern .mec-btn-wrapper .mec-booking-button{letter-spacing:1px;border:1px solid #e1e1e1;padding:8px 16px}.mec-event-list-modern .mec-btn-wrapper{padding:0 0 12px}.mec-event-list-modern .mec-event-sharing{margin-bottom:0}}.mec-event-grid-minimal .mec-event-article{margin:15px 0;min-height:80px;display:table}.mec-event-grid-minimal .event-detail-wrap{display:table-cell;vertical-align:middle}.mec-event-grid-minimal .mec-event-date{width:70px;float:left;margin-right:20px;padding:12px 16px 10px;text-align:center;text-transform:uppercase;border-radius:4px;border:1px solid #e6e6e6;transition:all .37s ease-in-out;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-minimal .mec-event-date span{display:block;font-size:24px;font-weight:700;text-align:center;margin-bottom:4px;color:#2a2a2a;transition:color .3s ease}.mec-event-grid-minimal .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;line-height:21px;font-size:16px;text-transform:uppercase;transition:color .3s ease}.mec-event-grid-minimal .mec-event-title a{color:#191919;transition:color .3s ease}.mec-event-grid-minimal .mec-event-detail,.mec-event-grid-minimal .mec-time-details{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;font-family:Roboto,sans-serif;margin-bottom:5px}.mec-event-grid-minimal .mec-event-date:hover{color:#fff}.mec-event-grid-minimal .mec-event-date:hover span{color:#fff}.mec-wrap .mec-event-grid-minimal .mec-event-date:hover{color:#fff}.mec-event-list-classic .mec-event-article{padding:12px 0;margin-bottom:20px}.mec-event-list-classic .mec-event-image{float:left;width:86px;margin-right:20px}.mec-event-list-classic .mec-event-date,.mec-event-list-classic .mec-event-time{font-weight:400;font-size:13px;letter-spacing:0;line-height:18px;text-align:left;display:initial;margin-right:12px}.mec-event-list-classic .mec-event-time .mec-time-details,.mec-event-list-classic .mec-event-time i{display:inline;margin-right:3px}.mec-event-list-classic .mec-event-date span{font-weight:500;margin-bottom:6px}.mec-event-list-classic .mec-event-title{font-size:15px;margin:10px 0 12px;font-weight:700;text-transform:uppercase}.mec-event-list-classic .mec-event-title a{color:#494949;transition:color .3s ease}.mec-event-list-classic .mec-event-detail{color:#777;font-weight:400;line-height:12px;font-size:12px;overflow:hidden}.mec-event-list-classic a.magicmore{padding:10px 16px;color:#fff;background:#222;letter-spacing:2px;font-size:11px}.mec-event-list-classic a.magicmore:after{content:"";display:none}.mec-event-list-classic a.magicmore:hover{color:#40d9f1}.mec-event-grid-simple .mec-event-article{position:relative;margin-bottom:30px}.mec-event-grid-simple .mec-event-article:after{border-right:1px solid #e6e6e6;height:60px;position:absolute;top:50%;margin-top:-30px;right:-1px}.mec-event-grid-simple .row div:last-child .mec-event-article:after{border:none}.mec-event-grid-simple .row{margin:15px 0 30px;text-align:center}.mec-event-grid-simple .mec-event-date{padding:0;margin:0;text-transform:capitalize;font-size:12px;font-weight:700}.mec-event-grid-simple .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;line-height:21px;font-size:15px;padding-top:5px;text-transform:uppercase;transition:color .37s ease}.mec-event-grid-simple .mec-event-title a{color:#494949;transition:color .3s ease}.mec-event-grid-simple .mec-event-detail{font-family:Roboto,sans-serif;font-weight:400;line-height:1;letter-spacing:0;font-size:13px;color:#777}.mec-event-grid-simple:hover .mec-event-title{color:#40d9f1}.mec-event-grid-simple:hover .mec-event-date{background:0 0}.event-last:after{display:none}@media only screen and (max-width:767px){.mec-event-grid-simple .mec-event-article{padding-bottom:20px;margin-bottom:20px;border-bottom:1px solid #eee}.mec-event-grid-simple .mec-event-article:after{border:none}}.mec-event-grid-novel .mec-event-article{position:relative;margin-bottom:30px;padding:60px 5% 60px 7%;border:1px solid rgba(255,255,255,.12);border-radius:10px;background-color:#0050fd;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease;z-index:1}.mec-event-grid-novel .mec-event-article .novel-grad-bg{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:10px;opacity:0;z-index:-1;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease}.mec-event-grid-novel .mec-event-article:hover{-webkit-box-shadow:0 13px 36px 0 rgba(0,0,0,.23);box-shadow:0 13px 36px 0 rgba(0,0,0,.23);border-color:transparent}.mec-event-grid-novel .mec-event-article:hover .novel-grad-bg{background-image:-webkit-gradient(linear,left top,right top,from(#262e32),to(#0e1015));background-image:-webkit-linear-gradient(left,#262e32 0,#0e1015 100%);background-image:-o-linear-gradient(left,#262e32 0,#0e1015 100%);background-image:linear-gradient(90deg,#262e32 0,#0e1015 100%);opacity:1}.mec-event-grid-novel .mec-event-image{float:left;width:150px;height:150px}.mec-event-grid-novel .mec-event-image img{width:150px;height:150px;border-radius:50%}.mec-event-grid-novel .mec-event-detail-wrap{margin-left:200px}.mec-event-grid-novel .mec-event-content h4{position:relative;margin-bottom:10px;display:inline-block}.mec-event-grid-novel .mec-event-content h4 a{font-size:24px;line-height:35px;color:#fafcff}.mec-event-grid-novel .mec-event-content h4::before{content:'';position:absolute;top:8px;left:-30px;width:17px;height:17px;background:#5cd0ed;opacity:.4;border-radius:50%}.mec-event-grid-novel .mec-event-content h4::after{content:'';position:absolute;top:12px;left:-26px;width:9px;height:9px;background:#5cd0ed;border-radius:50%}.mec-skin-grid-container .mec-event-grid-novel .mec-categories li a{color:#fff}.mec-event-grid-novel .mec-event-address,.mec-event-grid-novel .mec-event-detail,.mec-event-grid-novel .mec-event-month,.mec-event-grid-novel .mec-local-time-details{position:relative;padding-left:35px;font-size:15px;line-height:30px;color:rgba(255,255,255,.4)}.mec-event-grid-novel .mec-event-address::before,.mec-event-grid-novel .mec-event-detail::before,.mec-event-grid-novel .mec-event-month::before,.mec-event-grid-novel .mec-local-time-details:before{position:absolute;top:6px;left:6px;font-size:17px;font-family:simple-line-icons;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1}.mec-event-grid-novel .mec-local-time-details::before{content:"\e007"}.mec-event-grid-novel .mec-event-month::before{content:"\e075"}.mec-event-grid-novel .mec-event-detail::before{content:"\e081"}.mec-event-grid-novel .mec-event-address::before{content:"\e096"}.mec-event-grid-novel .mec-event-footer{clear:both;padding:20px 0;border-top:none;background:0 0}.mec-event-grid-novel .mec-event-footer .mec-booking-button{right:auto;left:0;height:42px;width:148px;padding:0 20px;font-size:14px;font-weight:400;line-height:42px;text-align:center;color:#fff;background:0 0;border-color:rgba(255,255,255,.1);border-radius:50px}.mec-event-grid-novel .mec-event-footer .mec-booking-button:hover{background-color:rgba(255,255,255,.1)}.mec-event-grid-novel .mec-event-sharing-wrap{left:175px;cursor:pointer;padding-left:0}.mec-event-grid-novel .mec-event-sharing-wrap>li{border-color:rgba(255,255,255,.1);border-radius:50%}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing{top:-5px;left:0;padding:5px 10px 2px 50px;min-width:150px;width:inherit;height:37px;background-color:rgba(255,255,255,.1);-webkit-box-shadow:none;box-shadow:none;border:none;border-radius:50px}.mec-event-grid-novel .mec-event-sharing-wrap:hover>li{background-color:rgba(255,255,255,.1)}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing::after,.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing::before{display:none}.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon,.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon a,.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li i{display:inline}.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon a{padding:0 10px}.mec-event-grid-novel .mec-event-sharing-wrap>li a{color:#fff}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li a{color:rgba(255,255,255,.4)}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li a:hover{color:rgba(255,255,255,1)}@media only screen and (max-width:1200px){.mec-event-grid-novel .row .col-md-6.col-sm-6{width:100%;float:none}.mec-event-grid-novel .mec-event-image{float:none;margin-top:-20px;margin-bottom:20px}.mec-event-grid-novel .mec-event-detail-wrap{margin-left:20px}.mec-event-grid-novel .mec-event-footer{margin-top:30px}}@media only screen and (max-width:767px){.mec-event-grid-novel .mec-event-footer{margin-top:0;padding-top:30px;margin-bottom:24px}.mec-event-grid-novel .mec-event-footer .mec-booking-button{display:block;position:relative}.mec-event-grid-novel .mec-event-sharing-wrap{left:0;bottom:-55px;padding-left:0}.mec-event-grid-novel .mec-event-content h4 a{font-size:20px;line-height:1.3}}.mec-event-grid-novel .mec-event-sharing-wrap{padding-left:0}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing{width:fit-content;z-index:999999}@media(min-width:1280px){.mec-event-grid-novel .col-md-4.col-sm-4 .mec-event-article img{width:100px;height:100px}.mec-event-grid-novel .col-md-4.col-sm-4 .mec-event-detail-wrap{margin-left:150px}}@media(min-width:760px) and (max-width:1024px){.mec-event-grid-novel .col-md-4.col-sm-4{width:100%}.mec-event-grid-novel .mec-event-image{float:left}.mec-event-grid-novel .col-md-4.col-sm-4 .mec-event-article img{width:100px;height:100px}}.mec-event-cover-modern{position:relative}.mec-event-cover-modern .mec-event-cover-a{background:0 0;position:absolute;color:#fff;bottom:0;left:0;text-decoration:none}.mec-event-cover-modern .mec-event-cover-a .mec-event-overlay{transition:all .5s;opacity:.8;width:100%;height:100%;position:absolute}.mec-event-cover-modern .mec-event-cover-a:hover .mec-event-overlay{opacity:1}.mec-event-cover-modern .mec-event-detail{padding:40px;position:relative}.mec-event-cover-modern .mec-event-cover-a:hover .mec-event-tag{color:#333;transition:all .5s}.mec-event-cover-modern .mec-event-cover-a .mec-event-title:hover{text-decoration:underline}.mec-event-cover-modern .mec-event-tag{background:#fff;display:inline-block;padding:5px 9px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:24px}.mec-event-cover-modern .mec-event-date{text-transform:uppercase;font-size:17px;font-weight:300}.mec-event-cover-modern .mec-event-title{color:#fff;text-transform:uppercase;font-size:40px;font-weight:700;margin:6px 0}.mec-event-cover-modern .mec-event-place{font-weight:400;font-size:18px;font-family:Roboto,sans-serif}@media only screen and (max-width:767px){.mec-event-cover-modern .mec-event-cover-a{width:100%}}.mec-event-cover-classic{position:relative;overflow:hidden;background:#fff;padding:6px;border:1px solid #e8e8e8}.mec-event-cover-classic .mec-event-overlay{position:absolute;left:6px;right:6px;bottom:6px;top:6px;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-cover-classic:hover .mec-event-overlay{background-color:rgba(36,36,36,.6)}.mec-event-cover-classic .mec-event-content{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out}.mec-event-cover-classic .mec-event-date{font-size:14px;text-transform:uppercase;font-weight:400;line-height:1.6}.mec-event-cover-classic .mec-event-date span{display:block;font-weight:700;font-size:16px}.mec-event-cover-classic .mec-event-title{color:#fff;margin:20px 0 38px;font-size:24px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-cover-classic .mec-btn-wrapper{text-align:left}.mec-event-cover-classic .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-cover-classic .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:12px 20px;letter-spacing:3px;font-size:12px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-cover-classic .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-cover-classic .mec-event-image img{min-width:100%}@media only screen and (max-width:960px){.mec-event-cover-classic .mec-event-content{padding:20px}.mec-event-cover-classic .mec-event-button{font-size:11px;padding:7px 10px;letter-spacing:1px}.mec-event-cover-classic .mec-event-title{font-size:19px;margin:15px 0 25px}.mec-event-cover-classic .mec-event-date{font-size:12px}}@media only screen and (max-width:767px){.mec-event-cover-classic{margin-bottom:30px}}@media only screen and (max-width:479px){.mec-event-cover-classic .mec-event-content{padding:15px;font-size:15px}.mec-event-cover-classic .mec-event-title{font-size:15px;margin:10px 0}.mec-event-cover-classic .mec-event-button{font-size:10px;padding:6px;letter-spacing:1px}.mec-event-cover-classic .mec-event-icon{padding:10px}}.mec-load-more-wrap{text-align:center;display:block;width:100%;padding-top:20px;text-align:center;position:relative}.mec-load-more-button{box-shadow:none;transition:all .21s ease;font-size:12px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:2px solid #e8e8e8;border-radius:50px;padding:0 28px;margin-bottom:20px;cursor:pointer;line-height:40px;font-family:Montserrat,Helvetica,Arial,sans-serif;height:42px;display:inline-block}.mec-load-more-button:hover{background:#191919;color:#fff;border-color:#191919}.mec-load-more-loading{content:url(../img/ajax-loader.gif);cursor:wait;background:0 0;border-style:none}.mec-load-more-loading:hover{background:0 0}.mec-modal-preloader,.mec-month-navigator-loading{width:100%;height:100%;background:no-repeat rgba(255,255,255,.88) url(../img/ajax-loader.gif) center;border-style:none;position:fixed;left:0;right:0;bottom:0;top:0;z-index:9}.mec-event-calendar-classic .mec-calendar-side .mec-calendar-table{min-height:1024px}.mec-calendar-side .mec-calendar-table{min-height:450px}.mec-skin-weekly-view-events-container.mec-month-navigator-loading{margin-top:0}.mec-calendar.mec-event-calendar-classic .mec-calendar-side{display:block}.mec-skin-daily-view-events-container.mec-month-navigator-loading{margin-top:0}@media only screen and (min-width:961px){.mec-wrap.mec-sm959 .mec-calendar-side .mec-calendar-table{min-height:1px}}@media only screen and (max-width:479px){.mec-calendar-side .mec-calendar-table{min-height:1px}}.mec-event-cover-clean{position:relative;border:1px solid #e6e6e6;padding:8px}.mec-event-cover-clean .mec-event-overlay{height:100%;background-color:rgba(36,36,36,.4);position:absolute;width:100%;left:0;border:8px solid #fff;top:0;transition:all .5s ease-in-out}.mec-event-cover-clean .mec-event-content{color:#fff;position:absolute;bottom:20px;padding:40px 60px;transition:all .5s ease-in-out}.mec-event-cover-clean .mec-event-title{color:#fff;font-weight:700;margin:46px 0 19px;font-size:29px;text-transform:uppercase;text-shadow:0 0 1px rgba(0,0,0,.5)}.mec-event-cover-clean .mec-event-title a{color:#fff;transition:all .5s;text-decoration:none;outline:0;border:none;box-shadow:none}.mec-event-cover-clean .mec-event-title a:hover{text-decoration:underline}.mec-event-cover-clean .mec-event-date{position:absolute;top:-20px;right:60px;color:#fff;width:60px;padding:14px 10px;z-index:1}.mec-event-cover-clean .mec-event-date div{text-align:center;text-transform:uppercase;letter-spacing:1px;line-height:16px}.mec-event-cover-clean .mec-event-date .dday{padding-bottom:15px;border-bottom:1px solid rgba(255,255,255,.5);margin-bottom:13px;font-size:24px}.mec-event-cover-clean .mec-event-date .dmonth{letter-spacing:2px}.mec-event-cover-clean .mec-event-place{font-size:18px;font-family:Roboto,sans-serif}.mec-event-cover-clean .mec-event-image img{width:100%}@media only screen and (max-width:768px){.mec-event-cover-clean .mec-event-content{padding:20px;bottom:5px}.mec-event-cover-clean .mec-event-title{font-size:23px}.mec-event-cover-clean .mec-event-date{right:20px;padding:10px;width:50px}}@media only screen and (max-width:479px){.mec-event-cover-clean .mec-event-content{padding:10px}.mec-event-cover-clean .mec-event-title{font-size:19px;padding-right:25px}.mec-event-cover-clean .mec-event-date{right:-20px;top:-10px}.mec-event-cover-clean .mec-event-detail{font-size:12px}}.mec-month-divider{text-align:center;margin:60px 0 40px 0}.widget .mec-month-divider{margin:10px 0}.mec-month-divider span{text-transform:uppercase;font-size:22px;font-weight:700;padding-bottom:5px;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative}.mec-month-divider span:before{border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-30px;left:50%;width:60px}.widget .mec-month-divider span{font-size:13px}.mec-event-list-standard .mec-events-pagination{margin-top:60px;border-top:4px solid #ebebeb;min-height:80px;padding-top:20px}.mec-event-list-standard .mec-events-pagination .mec-events-pag-previous{float:left;margin-left:0}.mec-event-list-standard .mec-events-pagination .mec-events-pag-next{float:right;margin-right:0}.mec-event-list-standard .mec-event-article{position:relative;display:block;margin-bottom:25px;border:1px solid #e9e9e9;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-list-standard .mec-topsec{display:table;width:100%}.mec-event-list-standard .col-md-3.mec-event-image-wrap{padding-left:0}.mec-event-list-standard .mec-event-content{padding-top:15px;padding-right:30px}.mec-event-list-standard .mec-event-title{font-size:29px;font-weight:700;letter-spacing:-1px;margin:0 0 10px}.mec-event-list-standard .mec-event-title a{color:#292929;transition:color .3s ease}.mec-event-list-standard .mec-col-table-c{display:table-cell;height:100%;vertical-align:middle;float:none!important}.mec-event-list-standard .mec-col-table-c.mec-event-meta-wrap{padding-top:15px}.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{vertical-align:top}.mec-topsec .mec-event-image{line-height:1px}.mec-event-list-standard .mec-event-meta-wrap{border-left:1px solid #eee}.mec-event-list-standard .mec-time-details{text-transform:uppercase;font-size:11px;font-weight:300;padding-top:0;text-align:left;padding-left:30px}.mec-event-list-standard .mec-event-meta .mec-event-address{font-style:normal;letter-spacing:0;font-size:13px;color:#8a8a8a}.mec-event-list-standard .mec-event-meta span.mec-event-d,.mec-event-list-standard .mec-event-meta span.mec-event-m{font-size:17px;font-weight:700;padding-right:6px;color:#444;text-transform:uppercase}.mec-event-list-standard .mec-date-details,.mec-event-list-standard .mec-local-time-details,.mec-event-list-standard .mec-time-details,.mec-event-list-standard .mec-venue-details{position:relative;padding-left:28px;margin-bottom:10px}.mec-event-list-standard .mec-date-details:before,.mec-event-list-standard .mec-local-time-details:before,.mec-event-list-standard .mec-time-details:before,.mec-event-list-standard .mec-venue-details:before{content:"\f041";font-family:fontawesome;position:absolute;left:6px;font-size:15px}.mec-event-list-standard .mec-date-details:before{content:"\f073"}.mec-event-list-standard .mec-time-details:before{content:"\f017"}.mec-event-list-standard .mec-local-time-details:before{content:"\f0ac"}.mec-event-list-standard .mec-local-time-details .mec-local-title{display:block}.mec-event-list-standard .mec-local-time-details .mec-local-date,.mec-event-list-standard .mec-local-time-details .mec-local-time{font-style:normal;letter-spacing:0;font-size:11px;color:#8a8a8a;font-weight:300;line-height:1.6}.mec-event-list-minimal .mec-event-title a{color:#292929;transition:color .3s ease}.mec-event-meta-wrap .mec-price-details{margin-bottom:10px}.mec-price-details i{margin-right:4px;vertical-align:text-top}.mec-event-meta-wrap .mec-event-meta .mec-price-details i:before{font-size:15px}.mec-event-list-standard .mec-price-details{text-transform:uppercase;font-size:11px;font-weight:300}.mec-event-list-standard .mec-price-details i{margin-left:6px}.mec-month-side .mec-price-details{margin-left:2px}.mec-event-article .mec-price-details i,.mec-month-side .mec-price-details i,.tooltipster-sidetip.tooltipster-shadow .tooltipster-content .mec-price-details i{padding-top:4px;vertical-align:unset}.mec-event-list-standard ul.mec-categories{position:relative;padding-left:28px;margin-bottom:10px}.mec-event-list-standard ul.mec-categories li.mec-category a:before{font-size:16px!important;content:"\f105";position:absolute;font-family:fontawesome;left:8px;font-size:15px}@media only screen and (max-width:960px){.mec-event-list-standard .mec-topsec{display:block}.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:block;width:40%}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{display:block;min-height:230px}.mec-event-list-standard .mec-event-meta-wrap{display:block;border-left:none;border-top:1px solid #eee;width:100%;float:none;padding-top:20px}}@media only screen and (min-width:480px) and (max-width:960px){.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:table-cell}}@media only screen and (max-width:479px){.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap img{float:none;width:100%;padding:0}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{padding:10px 10px 10px 30px}}.mec-localtime-details{color:#777;font-weight:400;line-height:12px;font-size:12px}.mec-localtime-details .mec-localdate,.mec-localtime-details .mec-localtime,.mec-localtime-details .mec-localtitle{display:inline-block}.mec-localtime-details .mec-start-date-label{padding-right:5px}.mec-localtime-details .mec-localtime{padding-left:5px}.mec-event-list-minimal .mec-localtime-details{display:inline-flex;font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;padding-left:9px}.mec-event-grid-classic .mec-localtime-details,.mec-event-grid-clean .mec-localtime-details{color:#fff;font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:-.02em;color:#fff;padding:0 0;line-height:18px;margin-top:-3px}.mec-event-grid-clean .mec-localtime-details,.mec-event-grid-colorful .mec-localtime-details,.tooltipster-box .mec-localtime-details{line-height:22px;padding-top:10px}.mec-event-grid-colorful .mec-localtime-details{color:#fff}.mec-event-grid-classic .mec-localtime-details{text-align:center}.mec-event-grid-minimal .mec-localtime-details{line-height:22px}.mec-wrap .mec-yearly-view-wrap .mec-localtime-wrap i{display:inline-block;margin-left:-1px}.mec-timetable-t2-content .mec-local-time-details{padding-left:19px}.mec-timetable-t2-content .mec-local-time-details{position:relative}.mec-timetable-t2-content .mec-local-time-details:before{content:"\e007";font-family:simple-line-icons;position:absolute;font-size:12px;margin-right:4px;left:0}.mec-masonry .mec-masonry-col6 .mec-localtime-details{margin-top:10px;line-height:21px}.mec-masonry .mec-masonry-col6 .mec-localtime-details i{height:auto}.mec-event-cover-classic .mec-localtime-details{color:#fff;margin-top:12px}.mec-event-cover-classic .mec-localtime-details i{padding-right:8px}.mec-event-cover-clean .mec-localtime-details{color:#fff;margin-bottom:20px}.mec-event-cover-modern .mec-localtime-details{color:#fff;margin:10px 0;font-weight:400;font-size:18px}.mec-event-countdown-style1 .mec-localtime-details,.mec-event-countdown-style2 .mec-localtime-details,.mec-event-countdown-style3 .mec-localtime-details{color:#fff;padding:8px 5px 0;font-size:14px;line-height:25px}.mec-event-countdown-style1 .mec-localtime-details{text-align:center}.mec-event-hover-carousel-type4 .mec-localtime-details{display:block;color:#fff;font-size:11px}.mec-event-footer-carousel-type3 .mec-localtime-details .mec-localdate,.mec-event-footer-carousel-type3 .mec-localtime-details .mec-localtime,.mec-event-footer-carousel-type3 .mec-localtime-details .mec-localtitle,.mec-event-footer-carousel-type3 .mec-localtime-details span{display:inline-flex;line-height:20px;text-align:left;margin:0!important;font-size:12px;color:#777;line-height:28px}.mec-owl-crousel-skin-type1 .mec-localtime-details{margin-top:-7px;margin-bottom:12px}.mec-wrap .mec-slider-t5 .mec-localtime-details{margin-top:14px;line-height:20px}.mec-wrap .mec-slider-t5 .mec-localtime-details i{font-size:18px;height:20px}.mec-timeline-event-local-time{background:rgba(64,217,241,.11);display:inline-block;padding:7px 20px 11px;border-radius:20px;line-height:1.24}.mec-timeline-event-local-time .mec-localtime-details{font-size:13px;font-weight:500;vertical-align:middle;margin-left:6px;color:inherit;line-height:24px}.mec-timeline-event-local-time .mec-localtime-details i{font-size:17px;vertical-align:middle;margin-left:-7px;padding-right:3px}.mec-booking-modal{background-color:#e6f7ff}.mec-booking-modal .mec-booking-shortcode .mec-book-form-gateway-label input[type=radio]:before{top:-1px}.mec-modal-booking-button{box-shadow:none;transition:all .21s ease;font-size:11px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:1px solid #e8e8e8;padding:12px 16px;line-height:37px;height:38px;margin:12px 0}.mec-modal-booking-button:hover{background:#191919;color:#fff;border-color:#191919}.mec-modal-booking-button.mec-mb-icon i{font-size:14px}.mec-event-list-classic .mec-modal-booking-button{height:0;line-height:1;margin:7px 0 0;display:inline-table;letter-spacing:0;padding:12px 14px}.mec-event-grid-novel ul.mec-categories{position:relative;line-height:30px;font-size:15px}.mec-event-grid-novel ul.mec-categories li.mec-category a{padding-left:35px;color:rgba(255,255,255,.4);line-height:30px;font-size:15px}.mec-event-grid-novel ul.mec-categories li.mec-category a:before{font-size:16px!important;content:"\f105";position:absolute;font-family:fontawesome;left:8px;font-size:15px;color:rgba(255,255,255,.4)}.mec-calendar-events-side .mec-modal-booking-button,.mec-event-container-classic .mec-modal-booking-button,.mec-event-grid-minimal .mec-modal-booking-button,.mec-event-list-minimal .mec-modal-booking-button,.mec-timetable-t2-col .mec-modal-booking-button{margin:0;color:#282828;font-size:12px;transition:all .5s ease;-webkit-transition:all .5s ease;position:relative;padding:0 0 0 24px;background:0 0;text-align:left;display:inline;border:0;font-weight:700}.mec-timetable-t2-col .mec-modal-booking-button{color:#fff;padding-left:19px}.mec-timetable-t2-col .mec-modal-booking-button:hover{color:#282828}.mec-event-list-minimal .mec-modal-booking-button{margin:0 4px 0 84px}.mec-calendar-events-side .mec-modal-booking-button:before,.mec-event-container-classic .mec-modal-booking-button:before,.mec-event-grid-minimal .mec-modal-booking-button:before,.mec-event-list-minimal .mec-modal-booking-button:before{content:'';position:absolute;background:#7a7272;width:18px;height:1px;left:0;top:45%;transition:all .1s ease;-webkit-transition:all .1s ease}.mec-skin-carousel-container .mec-modal-booking-button{line-height:70px}.mec-event-list-modern .mec-modal-booking-button.mec-mb-icon{border-radius:1px;letter-spacing:2px;border:1px solid #e6e6e6;color:#333;background-color:#fff;padding:13px 12px 13px 14px;font-weight:700;box-shadow:0 2px 0 0 rgba(0,0,0,.016);transition:all .28s ease;line-height:unset}.mec-event-list-modern .mec-modal-booking-button.mec-mb-icon:hover{border-color:#222;background:#222;color:#fff}.mec-event-footer .mec-modal-booking-button,.mec-skin-carousel-container .mec-event-footer-carousel-type2 .mec-modal-booking-button{position:absolute;top:20px;right:125px;margin:0;padding:0 16px;line-height:37px}.mec-skin-carousel-container .mec-event-footer-carousel-type2 .mec-modal-booking-button{top:0;line-height:41px;height:41px;right:121px}.mec-skin-carousel-container .mec-event-footer-carousel-type3 .mec-modal-booking-button{line-height:18px;font-size:12px;letter-spacing:0;float:right;height:41px;margin:0 12px 0 0}.mec-skin-carousel-container .mec-owl-crousel-skin-type4 .mec-modal-booking-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:10px 14px;letter-spacing:1.5px;font-size:11px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none;margin:0 0 0 12px}.mec-skin-carousel-container .mec-owl-crousel-skin-type4 .mec-modal-booking-button:hover{color:#191919;background-color:#fff;border:2px #fff solid}.mec-event-grid-modern .mec-event-footer .mec-modal-booking-button{right:auto;left:110px}.mec-event-grid-simple .mec-modal-booking-button,.mec-events-agenda .mec-modal-booking-button{margin:0;font-size:12px;transition:all .5s ease;-webkit-transition:all .5s ease;position:relative;padding:0;background:0 0;text-align:left;display:inline;border:0;font-weight:700}.mec-events-agenda .mec-modal-booking-button{display:block;height:unset;padding-left:173px;line-height:14px;margin-bottom:7px}.mec-yearly-view-wrap .mec-modal-booking-button{margin:0;padding-left:14px;text-transform:capitalize}.mec-event-grid-novel .mec-event-footer .mec-modal-booking-button.mec-mb-icon{right:auto;left:238px;width:36px;height:36px;display:table-cell;vertical-align:middle;padding:0 10px;border-color:rgba(255,255,255,.1);background-color:rgba(0,0,0,0);color:#fff;border-radius:36px}.mec-event-grid-novel .mec-event-footer .mec-modal-booking-button.mec-mb-icon:hover{background-color:rgba(255,255,255,.1)}.mec-event-grid-simple .mec-modal-booking-button:hover,.mec-events-agenda .mec-modal-booking-button:hover,.mec-events-yearlu .mec-modal-booking-button:hover{color:#191919}.mec-event-masonry .mec-event-footer .mec-modal-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05);right:auto;left:155px}.mec-timeline-event .mec-modal-booking-button{position:absolute;top:0;right:0;display:inline-block;padding:7px 20px 7px;line-height:22px;height:unset;border:unset;text-transform:capitalize;font-weight:500;font-size:13px;letter-spacing:0;margin:0;border-radius:0 0 0 10px}.mec-timeline-event .mec-modal-booking-button:hover{background:#191919;color:#fff}.mec-skin-daily-view-events-container .mec-modal-booking-button,.mec-weekly-view-dates-events .mec-event-article .mec-modal-booking-button{position:absolute;top:50%;transform:translateY(-50%);right:15px;line-height:26px;height:49px;border:unset;text-align:center;display:inline-block;background:#ededed;color:#191919;padding:12px;border-radius:2px;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:2px;transition:all .24s ease;margin:0}.mec-skin-daily-view-events-container .mec-modal-booking-button:hover,.mec-weekly-view-dates-events .mec-event-article .mec-modal-booking-button:hover{background:#292929;color:#fff}@media(max-width:1023px){.mec-skin-daily-view-events-container .mec-modal-booking-button,.mec-weekly-view-dates-events .mec-event-article .mec-modal-booking-button{position:relative;top:unset;transform:unset;margin:14px 16px 0;padding:8px;line-height:20px;height:35px}}@media(max-width:768px){.featherlight .featherlight-inner{width:100%}.mec-events-agenda .mec-modal-booking-button{padding:0}}@media(max-width:480px){.mec-booking-modal .mec-events-meta-group-booking-shortcode{padding:20px}.mec-booking-modal .mec-booking-shortcode .mec-book-reg-field-mec_email,.mec-booking-modal .mec-booking-shortcode .mec-book-reg-field-name{width:100%}.mec-booking-modal .mec-booking-shortcode button#mec-book-form-btn-step-2{margin-left:20px}.mec-booking-modal .mec-booking-shortcode .mec-click-pay button[type=submit]{bottom:22px}.mec-calendar-events-side .mec-modal-booking-button:before,.mec-event-container-classic .mec-modal-booking-button:before,.mec-event-grid-minimal .mec-modal-booking-button:before,.mec-event-list-minimal .mec-modal-booking-button:before{display:none}.mec-calendar-events-side .mec-modal-booking-button,.mec-event-container-classic .mec-modal-booking-button,.mec-event-grid-minimal .mec-modal-booking-button,.mec-event-list-minimal .mec-modal-booking-button,.mec-timetable-t2-col .mec-modal-booking-button{margin:0;padding:0}.mec-event-grid-modern .mec-event-footer .mec-booking-button{top:20px}}.mec-wrap .mec-events-cal-links{margin-bottom:0}.mec-single-event #mec-wrap{padding:0;margin-top:35px}.mec-wrap .mec-single-title,.single-mec-events .mec-wrap.mec-no-access-error h1{margin-top:0;margin-bottom:30px;font-weight:700;font-size:33px}.mec-single-event .mec-event-content{padding:40px 0 30px;margin-bottom:10px}.mec-single-event .mec-events-meta-group-booking,.mec-single-event .mec-frontbox{margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-wrap #main-content{overflow:hidden;padding-top:35px}.mec-single-event .mec-map-get-direction-address-cnt{position:relative}.mec-single-event .mec-map-get-direction-address-cnt input.mec-map-get-direction-address{width:100%;height:46px;padding:13px 10px;margin-bottom:0;background:#fcfcfc;border:1px solid #e0e0e0;border-radius:0;box-shadow:inset 0 2px 5px rgba(0,0,0,.081)}.mec-single-event .mec-map-get-direction-address-cnt input.mec-map-get-direction-address:focus{color:#444;background:#fff;border-color:#b0b0b0;box-shadow:0 0 3px rgba(0,0,0,.2)}.mec-single-event .mec-map-get-direction-btn-cnt input{width:100%}.mec-single-event .mec-map-get-direction-reset{position:absolute;z-index:2;top:5px;right:10px;font-size:11px;cursor:pointer}.mec-events-meta-group-tags{margin-top:20px}.mec-events-meta-group-tags a{display:inline-block;color:#444;font-size:11px;text-transform:uppercase;letter-spacing:1.5px;font-weight:500;padding:3px 7px;border:1px solid #ddd;border-radius:2px;background:#fff;margin:1px 3px}.mec-events-meta-group-tags a:hover{text-decoration:underline;background:#f9f9f9}.mec-local-time-details li{list-style:none}.mec-single-event:not(.mec-single-modern) .mec-local-time-details{background:#f7f7f7;padding:12px 14px 8px;margin-bottom:12px;vertical-align:baseline;position:relative;border:none}.mec-single-event:not(.mec-single-modern) .mec-local-time-details ul{margin:0;padding-left:35px}.mec-single-event:not(.mec-single-modern) .mec-local-time-details h3{border:none;padding-left:15px}.mec-single-event:not(.mec-single-modern) .mec-local-time-details h3:before{display:none}.mec-single-event.mec-single-modern i.mec-sl-speedometer{display:none}.mec-single-event .mec-events-meta-group-booking{padding-bottom:30px}.mec-single-event .mec-events-meta-group-booking ul{list-style:none;margin-left:0;padding-left:0}.mec-single-event .mec-booking .mec-book-bfixed-fields-container{padding-left:15px}.mec-single-event .mec-events-meta-group-booking ul li{padding:0;list-style:none;margin-top:40px}.mec-single-event .mec-events-meta-group-booking h4{margin-bottom:20px;font-size:23px;font-weight:700}.mec-single-event .mec-events-meta-group-booking li h4{font-size:19px}.mec-single-event .mec-events-meta-group-booking button,.mec-single-event .mec-events-meta-group-booking input{border-radius:0;margin-bottom:6px}.mec-single-event .mec-events-meta-group-booking button{min-width:155px;margin-top:5px;margin-left:10px;border-radius:2px;box-shadow:0 2px 1px rgba(0,0,0,.08)}.mec-single-event .mec-events-meta-group-booking button.mec-book-form-back-button{background:#c4cace;float:left}.mec-single-event .mec-events-meta-group-booking button.mec-book-form-back-button:hover{background:#000}.mec-single-event .mec-events-meta-group-booking button.mec-book-form-next-button{float:left;margin-left:0}button#mec-book-form-back-btn-step-3{float:none}.mec-next-occ-booking,.mec-next-occ-booking-p{padding-left:15px}.mec-events-meta-group-booking .mec-next-occ-booking,.mec-events-meta-group-booking .mec-next-occ-booking-p{padding:0;font-size:12px;letter-spacing:0;margin:3px 0;padding:5px 1em 3px 0}.mec-book-username-password-wrapper{padding:0 15px}.lity-container .mec-next-occ-booking,.lity-container .mec-next-occ-booking-p{padding-left:0}.mec-single-event .mec-events-meta-group-booking .mec-click-pay{max-width:350px}.mec-single-event .mec-events-meta-group-booking .mec-click-pay #mec_woo_add_to_cart_btn_r,.mec-single-event .mec-events-meta-group-booking .mec-click-pay button.mec-book-form-next-button{float:right}.mec-single-event .mec-events-meta-group-booking .mec-click-pay #mec_woo_add_to_cart_btn_r:hover,.mec-single-event .mec-events-meta-group-booking .mec-click-pay button.mec-book-form-next-button:hover{background:#000}.lity-container .mec-click-pay{max-width:400px}.lity-container .mec-book-form-btn-wrap button.mec-book-form-next-button,.lity-container .mec-click-pay #mec_woo_add_to_cart_btn_r{float:right}.lity-container button.mec-book-form-next-button{float:right}.lity-container .mec-click-pay #mec_woo_add_to_cart_btn_r:hover,.lity-container .mec-click-pay button.mec-book-form-next-button:hover{background:#000}.mec-single-event .mec-events-meta-group-booking .mec-click-next{float:right;position:relative;width:calc(100% - 186px)}.lity-container .mec-click-next{float:right;position:relative;width:calc(100% - 186px)}.mec-single-event .mec-book-form-coupon button{margin-left:0}.mec-single-event .mec-book-form-gateway-checkout button{margin-left:0}.mec-single-event .mec-single-event .mec-book-form-gateway-checkout button{margin-right:20px}.lity-content .mec-book-form-back-button{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-right:10px;line-height:1;padding:18px 20px 16px;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;min-width:170px;margin-top:5px;border-radius:0;margin-bottom:6px;background:#c4cace}.lity-content .mec-book-form-back-button:hover{background:#000}.lity-content button#mec-book-form-back-btn-step-3{float:none}.lity-content .mec-book-form-next-button{float:left}.lity-content .mec-book-bfixed-fields-container{list-style:none;padding-left:0}.mec-single-event .mec-book-first,.mec-single-event .mec-book-form-gateways,.mec-single-event .mec-book-form-price,.mec-single-event .mec-event-tickets-list,.mec-single-event form.mec-click-next{padding-left:0;padding-right:0}.mec-single-event label.mec-fill-attendees{margin-left:0}.mec-wrap .mec-events-meta-group-booking #mec-book-form-back-btn-step-2,.mec-wrap .mec-events-meta-group-booking #mec-book-form-back-btn-step-3,.mec-wrap .mec-events-meta-group-booking #mec-book-form-btn-step-1{margin-left:0}.mec-wrap .mec-booking-form-container .col-md-12{padding-left:0}.mec-wrap .mec-events-meta-group-booking .mec-wrap-checkout.row{margin:0}.mec-wrap .mec-wrap-checkout .mec-book-form-gateways .mec-book-form-gateway-label{padding-left:3px}.mec-wrap p.mec-gateway-comment{margin-top:20px}.mec-single-event .mec-events-meta-group-booking .mec-event-ticket-available{display:block;margin-bottom:20px;margin-top:-17px;font-size:11px;color:#8a8a8a}.mec-single-event .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.mec-single-event .mec-events-meta-group-booking form{margin:0}.mec-single-event .mec-events-meta-group-booking h5 span,.mec-single-event .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;display:block;clear:none;padding:5px 1em 3px 0}.mec-single-event .mec-events-meta-group-booking h5 span{display:inline-block}.mec-single-event .mec-events-meta-group-booking h5 span.mec-ticket-variation-name{padding-right:5px;text-transform:capitalize}.mec-single-event .mec-events-meta-group-booking input::-webkit-input-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input:-moz-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:330px;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both}.wbmec-mandatory{padding-left:5px;font-size:14px}.mec-single-event .mec-events-meta-group-booking .mec-red-notification input,.mec-single-event .mec-events-meta-group-booking .mec-red-notification select,.mec-single-event .mec-events-meta-group-booking .mec-red-notification textarea{border:1px solid #ff3c3c!important}.lity .mec-events-meta-group-booking .mec-red-notification input[type=checkbox],.lity .mec-events-meta-group-booking .mec-red-notification input[type=radio],.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=checkbox],.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=radio]{outline:1px solid #ff3c3c!important}.lity .mec-book-ticket-container .mec-red-notification input,.lity .mec-book-ticket-container .mec-red-notification select,.lity .mec-book-ticket-container .mec-red-notification textarea{border:1px solid #ff3c3c!important}.mec-booking .woocommerce-notices-wrapper .woocommerce-message{color:#0dbf52;background-color:#cef7ce;margin:0;padding-top:1rem;line-height:2.9rem;border:0}.mec-booking .woocommerce-notices-wrapper .woocommerce-message a{margin:0}@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;padding:0}.mec-single-event .mec-event-social li.mec-event-social-icon{display:inline-block}.mec-single-event .mec-event-social li.mec-event-social-icon a{display:inline-block;color:#fff;width:40px;height:40px;padding:9px;font-size:16px;margin-right:5px;margin-bottom:5px}.mec-single-event .mec-event-social a.facebook{background:#3b5996}.mec-single-event .mec-event-social a.facebook:hover{background:#28385c}.mec-single-event .mec-event-social a.twitter{background:#00acee}.mec-single-event .mec-event-social a.twitter:hover{background:#0087bd}.mec-single-event .mec-event-social a.vimeo{background:#0dadd6}.mec-single-event .mec-event-social a.vimeo:hover{background:#0a85a3}.mec-single-event .mec-event-social a.dribble{background:#d53e68}.mec-single-event .mec-event-social a.dribble:hover{background:#bf4c78}.mec-single-event .mec-event-social a.youtube{background:#cb322c}.mec-single-event .mec-event-social a.youtube:hover{background:#992622}.mec-single-event .mec-event-social a.pinterest{background:#cb2027}.mec-single-event .mec-event-social a.pinterest:hover{background:#99181d}.mec-single-event .mec-event-social a.google{background:#c3391c}.mec-single-event .mec-event-social a.google:hover{background:#99181f}.mec-single-event .mec-event-social a.linkedin{background:#0073b2}.mec-single-event .mec-event-social a.linkedin:hover{background:#005380}.mec-single-event .mec-event-social a.email{background:#ff5d5e}.mec-single-event .mec-event-social a.email:hover{background:#cc4949}.mec-single-event .mec-event-social a.vk{background:#5b88bd}.mec-single-event .mec-event-social a.vk:hover{background:#3d608a}.mec-single-event .mec-event-social a.tumblr{background:#34465d}.mec-single-event .mec-event-social a.tumblr:hover{background:#273649}.mec-single-event .mec-event-social a.telegram{background:#08c}.mec-single-event .mec-event-social a.telegram:hover{background:#1076be}.mec-single-event .mec-event-social a.whatsapp{background:#25d366}.mec-single-event .mec-event-social a.whatsapp:hover{background:#23ac55}.mec-single-event .mec-event-social a.flipboard{background:#e12828}.mec-single-event .mec-event-social a.flipboard:hover{background:#af1e1e}.mec-single-event .mec-event-social a.pocket{background:#ef4056}.mec-single-event .mec-event-social a.pocket:hover{background:#8d1717}.mec-single-event .mec-event-social a.reddit{background:#ff5700}.mec-single-event .mec-event-social a.reddit:hover{background:#c94909}.mec-single-event .mec-event-social a.flipboard svg,.mec-single-event .mec-event-social a.telegram svg{height:16px}.mec-single-event .mec-event-social li.mec-event-social-icon a svg{display:unset}.mec-single-event .mec-event-social a.rss{background:#f29a1d}.mec-single-event .mec-event-social a.rss:hover{background:#cc7400}.mec-single-event .mec-event-social a.instagram{background:#457399}.mec-single-event .mec-event-social a.instagram:hover{background:#2e4d66}.mec-single-event .mec-event-social a.linkedin{background:#457399}.mec-single-event .mec-event-social a.linkedin:hover{background:#2e4d66}.mec-single-event .mec-event-social a.other-social{background:#ff5d5e}.mec-single-event .mec-event-social a.other-social:hover{background:#cc4949}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4,.mec-single-event .mec-frontbox-title,.mec-single-event .mec-wrap-checkout h4{text-transform:uppercase;font-size:15px;font-weight:700;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative;text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4:before,.mec-single-event .mec-frontbox-title:before,.mec-single-event .mec-wrap-checkout h4:before{padding:1px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-35px;left:50%}.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-month],.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-year]{width:47%!important;margin-right:12px;margin-top:5px;display:inline-block!important}@media(max-width:768px){.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-month],.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-year]{width:100%!important;margin-right:0;display:block!important}}.mec-event-meta i:before{font-size:20px;vertical-align:middle}.mec-event-meta .mec-single-event-additional-organizers i:before,.mec-event-meta .mec-single-event-organizer i:before{font-size:14px;vertical-align:baseline}#mec-wrap .mec-events-day-time-slot .mec-events-content{float:left;width:33%;padding:0 15px}#mec-wrap .mec-events-day-time-slot .mec-events-event-image{padding-left:0}#mec-events-content .mec-events-abbr{color:#8d8d8d;font-size:14px}.mec-single-event .mec-events-content{margin-bottom:30px}.mec-single-event .mec-organizer-url a{word-wrap:break-word}.mec-single-event #headline{margin:0 0 10px}.mec-single-event #headline h2{padding:0}.mec-single-event .mec-events-meta-group.mec-events-meta-group-gmap .mec-events-venue-map{margin-top:0;padding:8px;border:1px solid #e5e5e5;border-radius:7px}#mec-events-gmap-0{height:325px!important}.mec-events-list .mec-events-day-time-slot .mec-events-event-meta{width:33%;float:left;padding:40px;height:auto;margin:0}.mec-events-day-time-slot .mec-events-content.description.entry-summary{font-size:15px;font-weight:300;color:#8d8d8d}.mec-events-day-time-slot .type-mec_events h2{font-size:28px;padding-bottom:20px}.mec-events-day .mec-events-day-time-slot .type-mec_events{margin:0}.mec-events-day .mec-events-day-time-slot h5{background-color:#8d8d8d}.mec-single-event .mec-event-meta .mec-single-event-additional-organizers .mec-events-single-section-title,.mec-single-event .mec-event-meta .mec-single-event-organizer .mec-events-single-section-title,.mec-single-event .mec-events-meta-date h3{padding-left:0;margin:10px;display:inline-block}.mec-single-event .mec-events-meta-date h3{width:100%}.mec-single-event .mec-events-event-image{border:0}.mec-single-event .mec-events-venue-map{padding:0}.mec-event-cost,.mec-event-more-info,.mec-event-website,.mec-events-meta-date,.mec-single-event-additional-organizers,.mec-single-event-category,.mec-single-event-date,.mec-single-event-label,.mec-single-event-location,.mec-single-event-organizer,.mec-single-event-time{background:#f7f7f7;padding:12px 14px 8px;margin-bottom:12px;vertical-align:baseline;position:relative}.mec-single-event .mec-events-meta-date dd,.mec-single-event .mec-single-event-additional-organizers dd,.mec-single-event .mec-single-event-organizer dd{padding-left:0;margin-bottom:10px}.mec-single-event .mec-events-meta-date dd span,.mec-single-event .mec-single-event-additional-organizers dd span,.mec-single-event .mec-single-event-organizer dd span{display:block;padding-left:12px;color:#8d8d8d}.mec-single-event .mec-events-meta-date i,.mec-single-event .mec-single-event-additional-organizers i,.mec-single-event .mec-single-event-organizer i{margin-right:10px;margin-left:12px}.mec-events-meta-group.mec-events-meta-group-venue dl{margin-bottom:0}address.mec-events-address{line-height:19px;font-style:normal;font-size:12px}.mec-single-event .mec-event-content dt{margin-top:5px}.mec-single-event .mec-single-event-additional-organizers .mec-single-event-additional-organizer{margin-bottom:15px;padding-bottom:5px;border-bottom:1px solid #e4e4e4}.mec-single-event .mec-single-event-additional-organizers .mec-single-event-additional-organizer:last-child{margin-bottom:0;padding-bottom:0;border:none}.mec-event-schedule-content{border-left:4px solid #f0f0f0;padding-top:10px;margin-top:30px;margin-left:25px;margin-bottom:20px;color:#8a8a8a}.mec-event-schedule-content dl{padding-left:24px;font-size:12px;position:relative;margin-bottom:35px}.mec-event-schedule-content dl:before{content:'';display:block;position:absolute;left:0;top:4px;width:20px;height:0;border-top:4px solid #f0f0f0}.mec-event-schedule-content dl dt{margin:0 0 10px;line-height:1.16}.mec-event-schedule-content dl dt.mec-schedule-title{font-size:13px;color:#5a5a5a;font-weight:700}.mec-event-schedule-content dl dt.mec-schedule-description{font-weight:300}.mec-event-schedule-content .mec-schedule-speakers{background:#f7f7f7;padding:10px}.mec-wrap .mec-event-schedule-content h6{font-size:13px;color:#5a5a5a;font-weight:700;display:inline-block}.mec-wrap .mec-event-schedule-content a{font-weight:400;color:#5a5a5a;transition:all .1s ease}.single-mec-events .mec-speakers-details ul{padding:0;margin-left:0}.mec-single-event .mec-speakers-details ul li{list-style:none;background:#f7f7f7;padding:5px 5px 18px 5px;margin-top:14px}.mec-single-event .mec-speakers-details ul li a{-webkit-transition:.2s all ease;transition:.2s all ease}.mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a img{float:left;border-radius:50%;transition:.2s all ease;border:2px solid transparent;width:68px;height:68px}.mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a:hover img{border-color:#40d9f1}.mec-single-event .mec-speakers-details ul li .mec-speaker-name{display:inline-block;margin-top:10px;font-size:15px;line-height:1.8;text-transform:capitalize;font-weight:700;padding-left:8px}.mec-single-event .mec-speakers-details ul li .mec-speaker-job-title{display:block;font-size:12px;margin-top:-1px;padding-left:75px;color:#888}.mec-single-event-location img,.mec-single-event-organizer img{margin-bottom:10px;width:100%}.mec-qrcode-details{text-align:center}.mec-time-comment{font-size:11px}.mec-wrap .mec-attendees-list-details p{font-weight:300;margin:20px 0 0 0;color:#8d8d8d}.mec-wrap .mec-attendees-list-details li{list-style:none;display:block;margin-top:15px}.mec-wrap .mec-attendees-list-details li .mec-attendee-avatar{display:inline-block}.mec-wrap .mec-attendees-list-details li .mec-attendee-profile-link{display:inline-block;vertical-align:top;margin-left:10px}.mec-attendees-list-details ul{margin-bottom:0}.mec-attendees-list-details .mec-attendee-profile-link a{color:#8d8d8d;display:block}.mec-attendees-list-details .mec-attendee-profile-link span{display:inline-block;color:#000;vertical-align:middle;cursor:pointer}.mec-attendees-list-details span.mec-attendee-profile-ticket-number{border-radius:50px;width:20px;height:20px;font-size:12px;text-align:center;color:#fff;margin-right:4px;line-height:20px}#wrap .mec-attendees-list-details span.mec-attendee-profile-ticket-number{line-height:19px}.mec-attendees-list-details .mec-attendee-profile-link span i{vertical-align:middle;font-size:9px;font-weight:700;margin-left:5px}.mec-attendees-list-details .mec-attendees-toggle{border:1px solid #e6e6e6;background:#fafafa;padding:15px 15px 0;border-radius:3px;margin:12px 0 20px 52px;position:relative;font-size:13px;box-shadow:0 3px 1px 0 rgba(0,0,0,.02)}.mec-attendees-list-details .mec-attendees-toggle:after,.mec-attendees-list-details .mec-attendees-toggle:before{content:'';display:block;position:absolute;left:50px;width:0;height:0;border-style:solid;border-width:10px}.mec-attendees-list-details .mec-attendees-toggle:after{top:-20px;border-color:transparent transparent #fafafa transparent}.mec-attendees-list-details .mec-attendees-toggle:before{top:-21px;border-color:transparent transparent #e1e1e1 transparent}.mec-attendees-list-details .mec-attendees-toggle .mec-attendees-item{padding-bottom:15px}.mec-attendees-list-details .mec-attendee-avatar img{border-radius:3px}.mec-attendee-avatar-sec{float:left;width:50px;margin-right:12px}.mec-attendee-profile-name-sec,.mec-attendee-profile-ticket-sec{float:left;width:calc(100% - 62px);margin-top:3px}.mec-calendar{margin-bottom:20px;border:1px solid #e8e8e8;width:100%;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-calendar .mec-calendar-topsec{display:table;background:#fff}.mec-calendar .mec-calendar-topsec .mec-calendar-events-sec{display:none}.mec-calendar .mec-calendar-side{width:590px;display:table-cell;padding:40px;position:relative;text-align:center;box-shadow:0 1px 5px 6px rgba(0,0,0,.005) inset}.mec-calendar .mec-calendar-events-side{display:table-cell;height:100%;border-left:1px solid #efefef;padding:40px;width:100%}.mec-calendar .mec-calendar-events-side .mec-table-side-day{width:46px;height:46px;margin:0 auto 20px;position:relative;text-align:center;line-height:46px;border:1px solid #40d9f1;border-radius:50%;font-size:12px;font-weight:600;padding:0}.mec-calendar .mec-calendar-events-side .mec-table-side-title{text-align:center;font-size:11px;text-transform:uppercase;letter-spacing:3px;margin-bottom:14px}.mec-calendar .mec-calendar-header{position:relative;width:560px;margin-top:8px;margin-bottom:16px}.mec-calendar .mec-calendar-header h2{text-transform:uppercase;font-size:22px;font-weight:700;color:#333}.mec-calendar .mec-event-footer{width:auto;min-height:60px}.mec-calendar dl{display:table;margin:0;border:none;padding:0;table-layout:fixed}.mec-calendar dt{display:table-cell;transition:all .66s ease;color:#4d4d4d;background:#fff;border-radius:44px;font-size:14px;width:80px;height:80px;line-height:80px;text-align:center}.excerpt-wrap .mec-wrap dt,.nv-content-wrap .mec-wrap dt{display:table-cell}.mec-calendar .mec-calendar-table .mec-no-event{display:none}.mec-calendar .mec-calendar-table-head dt{font-weight:700;text-transform:uppercase;font-size:15px}.mec-calendar .mec-calendar-row dt:hover{background:#f4f4f4}.mec-calendar .mec-table-nullday{color:#cacaca}.mec-calendar.mec-box-calendar .mec-table-nullday:last-child{border-right:1px solid #eaeaea}.mec-calendar .mec-next-month:hover,.mec-calendar .mec-prev-month:hover{background:#f4f4f4}.mec-calendar .mec-selected-day,.mec-calendar .mec-selected-day:hover{background:#40d9f1;color:#fff}.mec-calendar .mec-selected-day a{color:#fff}.mec-calendar .mec-has-event{position:relative}.mec-calendar .mec-calendar-row dt.mec-has-event:hover{background:#40d9f1}.mec-calendar .mec-has-event a{cursor:pointer;display:block;width:100%;height:100%;border-radius:50%;color:#4d4d4d;transition:all .25s ease;text-decoration:none;box-shadow:none}.mec-calendar .mec-calendar-row dt.mec-has-event.mec-selected-day a,.mec-calendar .mec-calendar-row dt.mec-has-event:hover a{color:#fff}.mec-calendar .mec-has-event:after{background-color:#40d9f1;border-radius:50%;display:block;content:'';width:8px;height:8px;bottom:14px;left:50%;margin:-4px 0 0 -4px;position:absolute;transition:all .25s ease}.mec-calendar .mec-calendar-row dt.mec-has-event:hover:after{background-color:#fff}.mec-calendar .mec-has-event.mec-selected-day:after{display:none}.mec-calendar .mec-event-article{text-align:left;margin-bottom:0;padding-bottom:25px;padding-top:26px;border-top:1px solid #efefef;transition:all .33s ease}.mec-calendar .mec-event-article:hover{background-color:#fafafa}.mec-calendar .mec-event-article .mec-event-time{font-size:11px;line-height:1.1;margin:0}.mec-calendar .mec-event-article .mec-event-title{font-size:13px;padding:0;margin:10px 0 8px;font-weight:700;text-transform:uppercase}.mec-calendar .mec-event-article .mec-event-title a{text-decoration:none;color:#494949;transition:color .3s ease}.mec-calendar .mec-event-article .mec-event-title a:hover{color:#40d9f1}.mec-calendar .mec-event-article .mec-event-image,.mec-calendar .mec-event-list-classic .mec-event-image img{width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-image{float:left;margin-right:20px;width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-detail,.mec-calendar .mec-event-article .mec-localtime-details div{font-size:13px;line-height:1.3;font-family:Roboto,sans-serif;color:#9a9a9a;margin-bottom:0}.mec-calendar .mec-calendar-side .mec-next-month,.mec-calendar .mec-calendar-side .mec-previous-month{cursor:pointer;position:absolute;top:0;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;color:#a9a9a9;font-size:12px;letter-spacing:1px;text-transform:uppercase;padding-left:10px;padding-right:10px;border:1px solid #efefef;border-top:none;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease}.mec-calendar .mec-calendar-side .mec-next-month i,.mec-calendar .mec-calendar-side .mec-previous-month i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-calendar .mec-calendar-side .mec-next-month:hover,.mec-calendar .mec-calendar-side .mec-previous-month:hover{background-color:#f9f9f9;color:#40d9f1}.mec-calendar .mec-calendar-side .mec-previous-month{left:0;border-bottom-right-radius:6px;border-left:none}.mec-calendar .mec-calendar-side .mec-next-month{right:0;border-bottom-left-radius:6px;border-right:none}@media only screen and (min-width:961px){.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-side{width:370px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-header{position:relative;width:350px;margin-top:30px;margin-bottom:20px;padding-top:20px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) dt{width:50px;height:50px;line-height:50px}.mec-wrap.mec-sm959 .mec-calendar.mec-event-calendar-classic dl dt{height:110px}}@media only screen and (max-width:1200px){.mec-calendar .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-calendar .mec-calendar-side{width:370px}.mec-calendar .mec-calendar-header{position:relative;width:350px;margin-top:30px}.mec-calendar dt{width:50px;height:50px;line-height:50px}}@media only screen and (max-width:767px){.mec-calendar .mec-calendar-header h2{font-size:18px}.mec-calendar .mec-calendar-topsec{width:100%}.mec-calendar .mec-calendar-side{width:100%;display:block;padding:30px}.mec-calendar .mec-calendar-header{width:auto}.mec-calendar .mec-calendar-events-side{width:100%;display:block;height:100%;border-left:none;border-top:1px solid #efefef;padding:20px}.mec-calendar dl{width:100%}.mec-calendar dt{width:14%;height:60px;line-height:60px;border-radius:50px}}@media only screen and (max-width:479px){.mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-calendar .mec-calendar-header h2{font-size:16px;margin-top:33px}.mec-calendar dt{height:38px;line-height:38px}.mec-calendar .mec-event-list-classic .mec-event-detail,.mec-calendar .mec-event-list-classic .mec-event-title{font-size:12px}.mec-calendar .mec-event-list-classic .mec-event-time{font-size:10px}}.mec-box-calendar.mec-calendar .mec-has-event a,.mec-box-calendar.mec-calendar dt{border-radius:0}.mec-box-calendar.mec-calendar .mec-calendar-header{margin-top:2px;margin-bottom:30px}.mec-box-calendar.mec-calendar dt{border-bottom:1px solid #eaeaea;border-left:1px solid #eaeaea}.mec-box-calendar.mec-calendar dl dt:last-child{border-right:1px solid #eaeaea}.mec-box-calendar.mec-calendar .mec-calendar-table-head dt{border-top:1px solid #eaeaea;background-color:#f8f8f8}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{background-color:#f4f4f4}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{border-radius:2px;top:40px;border:1px solid #eee;height:30px;line-height:30px;z-index:1}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:40px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:40px}.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-wrap .mec-calendar.mec-event-calendar-classic .mec-selected-day:hover{color:#fff!important}.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-event-container-simple .mec-calendar-side{min-width:600px!important;overflow-x:scroll}}.mec-wrap.colorskin-custom .mec-calendar.mec-event-container-simple .mec-selected-day:hover{background:#f4f4f4}.mec-event-container-simple .mec-calendar-day .mec-monthly-tooltip.event-single-link-simple:last-of-type{border:none}.mec-tooltip-event-title{font-size:16px;font-weight:700;color:#000;margin-bottom:2px}.mec-tooltip-event-time,.tooltipster-sidetip.tooltipster-shadow .tooltipster-content .mec-price-details{font-size:12px;color:#888;margin-bottom:8px;margin-top:5px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-content{padding:17px}.mec-tooltip-event-content{clear:both}.mec-tooltip-event-featured{float:left;margin-right:13px;margin-bottom:1px}.mec-tooltip-event-featured img{max-width:120px}.mec-tooltip-event-desc{font-size:14px;color:#444;line-height:18px}.mec-tooltip-event-desc p{font-size:13px;line-height:1.4;margin-bottom:10px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-box{border-radius:3px!important;border:1px solid #e2e3e4!important;background:#fff!important;box-shadow:0 -1px 30px -2px rgba(0,0,0,.15)!important}.tooltipster-box .mec-tooltip-event-desc{margin-bottom:12px}.tooltipster-sidetip .tooltipster-arrow{overflow:visible!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-border{border-width:12px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-right .tooltipster-arrow-border{border-right-color:#e2e3e4!important}.tooltipster-sidetip .tooltipster-arrow-border{left:-12px!important;z-index:9999999999!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-background{display:block!important}.tooltipster-sidetip .tooltipster-arrow-background{border-width:11px!important;z-index:99999999999!important}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background{left:-9px!important;top:1px!important;border-right-color:#fff!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background{border-top-color:#fff!important;left:0!important;top:-1px!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border{left:-1px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-top .tooltipster-arrow-border{border-top-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{left:-1px!important;top:-11px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{border-bottom-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background{top:-9px!important;border-bottom-color:#fff!important}.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background{border-left-color:#fff!important;left:-2px!important;top:0!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-left .tooltipster-arrow-border{border-left-color:#e2e3e4!important;left:-1px!important;top:-1px!important}@media (max-width:780px){.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4{word-break:break-all;font-size:13px}}@media (max-width:320px){.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4{font-size:10px}}.mec-calendar.mec-calendar-daily .mec-calendar-day-events .mec-event-article{padding-left:15px;padding-right:15px;position:relative}.mec-calendar.mec-calendar-daily .mec-calendar-a-month{text-align:center;background-color:#fff;border-bottom:2px solid #f4f4f4;position:relative}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{color:#444;font-size:18px;line-height:1.2;padding:15px 0 11px;margin:0;font-weight:700;letter-spacing:1px;text-transform:uppercase;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-top{text-align:center;padding:10px 0;position:relative;background-color:#fafafa}.mec-calendar.mec-calendar-daily .mec-next-month,.mec-calendar.mec-calendar-daily .mec-previous-month{position:absolute;top:50%;left:50%;margin-top:-25px;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;border:1px solid #e2e2e2;border-radius:50px;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month i,.mec-calendar.mec-calendar-daily .mec-previous-month i{font-size:14px;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month:hover,.mec-calendar.mec-calendar-daily .mec-previous-month:hover{border-color:#d0d0d0;color:#444;box-shadow:0 2px 5px 0 rgba(0,0,0,.075)}.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-150px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:100px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month{min-height:28px;height:28px;line-height:28px;width:28px;margin-top:-14px;border-radius:3px}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2,.mec-calendar.mec-calendar-daily .mec-calendar-d-top h3{margin-top:9px;color:#b9b9b9;font-family:Roboto,sans-serif;font-size:30px;font-weight:100;text-transform:uppercase;margin-bottom:12px;line-height:1}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2{font-size:81px;color:#444;margin-bottom:10px;line-height:1.1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table{overflow:hidden;background:#fff;min-height:60px;border-top:1px solid #e6e6e6;border-bottom:2px solid #f3f3f3;padding:0 50px;position:relative}@media only screen and (min-width:479px){.mec-calendar.mec-calendar-daily .mec-calendar-d-table{padding:0 55px}}.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl{width:1310px;display:block}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{display:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl.mec-weekly-view-week-active{display:block}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt{display:block;background:#fff;width:42px;height:60px;line-height:60px;text-align:center;float:left;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6;border-radius:0}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day:hover,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt:hover{background:#fafafa;box-shadow:0 2px 5px 0 rgba(0,0,0,.065) inset;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day{cursor:default;background:#fff;color:#c1c1c1;line-height:59px;text-align:center;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-has-event{cursor:pointer;font-weight:700;color:#4a4a4a}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-daily-view-day-active,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt.mec-table-d-current{font-size:18px;font-weight:700;background:#fafafa;color:#40d9f1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-prev{float:none;font-size:14px;width:55px;position:absolute;top:0;left:0;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next{left:auto;right:0;border-left:1px solid #e6e6e6;border-right:none}.mec-calendar.mec-calendar-daily .mec-today-container .mec-today-count{font-size:12px;color:#888;text-align:center}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}}.widget .mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}.widget .mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.widget .mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-util-hidden{display:none}.mec-daily-view-date-events,.mec-weekly-view-date-events{list-style:none;margin:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table{padding:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{width:calc(100% - 1px)}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt{width:14.286%;height:70px;line-height:normal;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:hover{background:#fff;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:last-child{border-right:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:12px;font-weight:700;text-transform:uppercase;display:block;margin:15px 0 6px}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-prev{display:none}ul.mec-weekly-view-dates-events,ul.mec-weekly-view-dates-events li{padding:0;margin:0;line-height:initial}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:64px;height:64px;margin-right:10px;font-size:11px;text-transform:uppercase;float:left;text-align:center;padding-top:2px}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:40px;line-height:30px;font-weight:700;display:block;margin-bottom:6px;letter-spacing:1px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-previous-month{margin-left:0;left:12px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-next-month{margin-left:0;left:auto;right:12px}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}}.widget .mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}.mec-week-events-container .mec-weekly-view-dates-events li.mec-no-event-found{list-style:none!important}li.mec-no-event-found .mec-event-title{text-align:center}.mec-widget .mec-calendar{max-width:100%}.mec-widget .mec-calendar dl dt,.mec-wrap.mec-sm959.mec-widget .mec-calendar.mec-event-calendar-classic dl dt{height:40px}.mec-widget .mec-calendar .mec-calendar-events-sec{padding:10px}.mec-widget .mec-calendar .mec-calendar-header h2{font-size:13px;margin-top:8px}.mec-widget .mec-calendar .mec-event-list-classic .mec-event-image{margin-right:12px}.mec-widget .mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-widget .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{font-size:14px}.mec-widget .mec-calendar .mec-event-article .mec-event-image{margin-right:11px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-header{margin-bottom:20px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{font-size:0;padding:4px 0;text-align:center;min-width:33px}.mec-widget .mec-event-calendar-classic .mec-calendar-side .mec-calendar-table{min-height:200px}.mec-widget .mec-event-list-classic{margin-bottom:8px;padding:8px 0}.mec-widget .mec-event-list-classic .mec-event-article{margin-bottom:0;padding:10px 0;position:relative;min-height:86px;padding-left:80px}.mec-widget .mec-event-list-classic .mec-event-date{font-size:10px;line-height:14px;text-transform:uppercase}.mec-widget .mec-event-list-classic .mec-event-title{font-size:13px}.mec-widget .mec-event-list-classic .mec-event-detail{font-size:11px}.mec-widget .mec-event-list-classic .mec-event-image{width:68px;position:absolute;left:0}.mec-event-list-classic .mec-event-image img{width:100%}.mec-widget .mec-event-list-classic .mec-event-detail{overflow:visible}.event-color{width:14px;display:inline-block;height:14px;margin-left:5px;border-radius:50%}.mec-map-lightbox-wp{width:580px;padding:15px 15px 0;background-color:#fff}.mec-map-view-event-detail.mec-event-detail{width:580px;background-color:#e9e9e9;padding:8px 15px}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-article{padding:0 0 15px;margin:0}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-image{width:70px;margin-right:15px}.mec-marker-infowindow-wp{padding:10px}.mec-marker-infowindow-wp .mec-marker-infowindow-count{width:60px;height:60px;display:block;text-align:center;line-height:60px;border:1px solid #40d9f1;border-radius:50%;font-size:32px;color:#40d9f1;float:left;margin-right:11px}.mec-marker-infowindow-wp .mec-marker-infowindow-content{overflow:hidden;padding-top:6px}.mec-marker-infowindow-wp .mec-marker-infowindow-content span{display:block;color:#222}.mec-marker-infowindow-wp .mec-marker-infowindow-content span:first-child{font-size:15px;font-weight:700}.mec-marker-wrap{display:inline-block;width:35px;height:35px;margin:15px 0 0 4px;border-radius:50% 50% 50% 0;background:#00cae9;animation-name:mec-map-bounce;animation-fill-mode:both;animation-duration:1s;border:3px solid #fff;cursor:pointer}.mec-marker-wrap .mec-marker{margin-top:5px;display:block;-webkit-transform:rotate(45deg);transform:rotate(45deg);text-align:center;color:#fff;font-size:17px}.mec-marker-wrap .mec-marker-pulse-wrap{-webkit-transform:rotate(45deg);transform:rotate(45deg);display:inline-block;margin-left:-11px;margin-top:0}.mec-marker-wrap .mec-marker-pulse{display:inline-block;background:#c5c5c5;border-radius:50%;height:14px;width:14px;-webkit-transform:rotateX(55deg);transform:rotateX(55deg);z-index:-2}.mec-marker-wrap .mec-marker-pulse:after{content:"";border-radius:50%;height:40px;width:40px;position:absolute;margin:-13px 0 0 -13px;animation:pulsate 1s ease-out;animation-iteration-count:infinite;opacity:0;box-shadow:0 0 1px 2px #00cae9;animation-delay:1.1s}@keyframes pulsate{0%{transform:scale(.1,.1);opacity:0}50%{opacity:1}100%{transform:scale(1.2,1.2);opacity:0}}@keyframes mec-map-bounce{0%{opacity:0;transform:translateY(-2000px) rotate(-45deg)}60%{opacity:1;transform:translateY(30px) rotate(-45deg)}80%{transform:translateY(-10px) rotate(-45deg)}100%{transform:translateY(0) rotate(-45deg)}}.mec-skin-grid-container .mec-skin-map-container,.mec-skin-list-container .mec-skin-map-container{margin-bottom:20px}.mec-single-event{margin-top:10px}.mec-single-event .mec-events-meta-group-countdown{color:#c9c9c9;text-align:center;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-events-meta-group-countdown .countdown-w{text-align:center;font-size:36px;margin:0 auto;padding:40px 0 0;position:relative;display:table;table-layout:fixed}.mec-events-meta-group-countdown .countdown-w .icon-w{font-size:24px}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:15px;font-weight:300;letter-spacing:1px;text-transform:uppercase;position:relative}.mec-events-meta-group-countdown .countdown-w .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px;width:190px;font-size:72px;transition:all .3s ease-in-out;line-height:1.2}.mec-events-meta-group-countdown .countdown-w .block-w.done-w{border:0 none}.mec-events-meta-group-countdown .countdown-w .block-w li{font-size:50px}.mec-events-meta-group-countdown .countdown-w span{padding:24px 0 20px}.mec-events-meta-group-countdown .countdown-w .div-d{display:none}.mec-events-meta-group-countdown .countdown-w .countdown-message{display:none}.mec-events-meta-group-countdown .countdown-w .block-w i{display:none}#countdown{list-style:none;margin-bottom:0;margin-top:0;margin-left:0;padding-left:0}.mec-events-meta-group-countdown .mec-end-counts h3{display:inherit;text-align:center;font-size:16px;right:50%}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:23px}@media (min-width:481px) and (max-width:768px){.mec-events-meta-group-countdown .countdown-w{padding:0}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:12px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:34px}}@media (min-width:320px) and (max-width:480px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:10px}.mec-events-meta-group-countdown .countdown-w span{font-size:28px}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:16px}}@media (max-width:320px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:9px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:22px}}.info-msg,.mec-error,.mec-success,.warning-msg{margin:10px 0;padding:10px;border-radius:3px 3px 3px 3px;font-size:13px}.info-msg{color:#059;background-color:#bef}.mec-success{color:#0dbf52;background-color:#cef7ce}.warning-msg{color:#9f6000;background-color:#feefb3}.mec-error{color:#d8000c!important;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;padding-left:40px}.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:680px){.mec-fes-list ul li .mec-event-title{width:100%;font-size:13px;margin:0 0 20px 0;display:block}.mec-fes-list ul li{padding:10px 12px 40px}}@media (max-width:480px){.mec-fes-list .mec-fes-list-top-actions,.mec-fes-list ul{padding-left:0}}.mec-fes-form .mec-required{color:#ff3c3c}.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,.single-mec-events .pmpro_content_message a,.single-mec-events .pmpro_content_message a:link{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,.single-mec-events .pmpro_content_message a:hover,.single-mec-events .pmpro_content_message a:hover:link{background:#222;color:#fff}.mec-fes-list-top-actions a{font-weight:600;text-transform:capitalize}.mec-fes-form-top-actions a:before{content:"";border:solid #fff;border-width:0 2px 2px 0;display:inline-block;padding:6px;margin-right:5px;vertical-align:sub;transform:rotate(135deg);-webkit-transform:rotate(135deg)}.mec-fes-form .mec-form-row,.mec-fes-list .mec-form-row{margin-bottom:10px;clear:both}.mec-fes-form label{font-size:13px;display:block;color:#798f96;font-weight:400;padding:0 0 4px 2px}.mec-fes-form input+label{padding-top:8px;padding-left:3px;margin:0;display:inline-block;vertical-align:top}#wrap .mec-fes-form input+label{padding-top:0}.mec-fes-form .post-status{float:right!important;margin:0 5px;color:#fff;padding:0 10px;border-radius:12px;font-style:italic;font-size:18px}.mec-fes-form #mec-event-data input[type=date],.mec-fes-form input[type=email],.mec-fes-form input[type=number],.mec-fes-form input[type=password],.mec-fes-form input[type=tel],.mec-fes-form input[type=text],.mec-fes-form input[type=url],.mec-fes-form select,.mec-fes-form textarea{min-width:inherit;width:auto;display:inline;min-height:30px;font-size:13px;padding:10px;margin-bottom:20px;clear:both;background:#fff;border:1px solid #cfeff5;box-shadow:0 2px 5px rgba(207,239,245,.38) inset;border-radius:3px;height:40px;max-width:280px;color:#798f96;font-family:inherit}#mec_fes_form input[type=date]::-webkit-calendar-picker-indicator,.lity-content #mec_fes_form input[type=date]::-webkit-calendar-picker-indicator,.lity-content .mec-events-meta-group-booking input[type=date]::-webkit-calendar-picker-indicator,.mec-single-event .mec-events-meta-group-booking input[type=date]::-webkit-calendar-picker-indicator{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQ1IDc5LjE2MzQ5OSwgMjAxOC8wOC8xMy0xNjo0MDoyMiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTkgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjA0QjQ2N0QwQjQ4MzExRUE4RDdFREZDRTUxMUVERTM5IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjA0QjQ2N0QxQjQ4MzExRUE4RDdFREZDRTUxMUVERTM5Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6MDRCNDY3Q0VCNDgzMTFFQThEN0VERkNFNTExRURFMzkiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MDRCNDY3Q0ZCNDgzMTFFQThEN0VERkNFNTExRURFMzkiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz6WW71PAAAGIklEQVR42qRXS28bVRQ+586Mx3ZC1DSpVFojRU2CqMIGiSKxAVoUduzoDjYIlhU/Av4AYsdjRXfkD0Cjom6QqIqEqEhRo1aRkkZpkpY6j7GduQ++c2dsj1+BlInGztxvzj3nfudpPlM/otc2W2QjJmU0rZ0uUytUpBxNnN9p/FYhctF0+XUi2nPGkX7WJOfwxNRzqXxtbfI4eUvm7xY1o4iiI0d/vFiisL2BgTAz0yvbCRnLhP0uNEtqrgUseZRcwPPvJewaldSA8o48vo+Tj0U+CnrkOgZwvkEzEmGm1PF9fzK5Y3U/YlllsjRUv19zXl7571HyAjooc/kmYerpcmPO0Mfa0SyxEtji44ynOjPuayjecd7M46/MQOdGyIs9ThnzMLD0XRrwIdeetmoLm41fWiG95Ar792tydLLrOPkAlpW027hbG3+T37lf/5EtvYcXUuhfBjWp9wHRBO63c5lbEkQj2B92uaHy4l2EAQ66GFgbmiD4id/9q661ooAtf8rsvmUEilAHEqcgtJvvNq3YPTkJA8PksT9ZFxD8+4my9pvAOqOMxIMoJHfPZoJkJNiYat3duOac6hxt1N3GR8lnt0O623s+c2CVZEGaZ8Oks1mElvxu7hGYaQjpHLpH3q/YFQE7Oh5Y6gFTaHhAXlasxmoWpZO5L9Ow4DTv+UBZBAkWNO+CqhkbSOzaXWWyzY+n3WcACdVscnklz5CHYsmv1L/RyUJ/cs7zdT3Ey8pTgw/QgNNuS4XjNMvffwvBNmwDH+pdeZ3J+1qDdW15vS0iBhjZWzF9ge8HWl7zNLluYhP/9/jvFANXyL+ufF4jZvOCZsK8isp77+sixf10n7QQjJT39bBtjzdA5chtLG61n7kgk6UvDy29z4HL4c/ifkN0hYV+cA3Bc7stKAfossgSSF06+3HOu8QovE8eThDlv4pu1TbUOpqySDNUKMSDQRIo6QgVRHbFcID1mCITUGgNKLI9uBbcCC59xUi+DsiHBq0XOLb3utqOUYV+LglH9XJASRAsRNqt4xHVj59Exqw3AlrYi0PaiwNqBKoX12Y9iQSP/GkD4xZC0yt/GPFCvZzhUBoMtmPftRwMEEtpupy2auzadLraXtlNoXLhKQYLbjrWRx0cXNf24wxPSmWw5aZPNXSNOi5ytXqZpjTwSqs3PsJi0I61LG29EFG9GtyaeqgvxU17TrAkDjbvnq/eKcTYrbcemi5eHoI/OLgUt7r4n+cqd04llmZ3mjBSDQ4kYtERLLz4OKGt0xGKA9+RgiSGSRV7+UlCVvka72lEvHRx04vLGW2f/PzTBk3VtddRrGlhMXVaIdME5sLJ3ZQOTPQBNqj58uzcxsXtZEkqmQ7IB9ihLeA2x6FQqyG4cRuvbh8uNZSigzBCALhBBtrjkwjjQItQ+kPXWY6eBuEi/lmOlC8kvTh38ZLH3QC+y+GiIl4OqbeZ9RggQZgcVIXe1ep48jPkz/oGw7x1yoytIq1o59AH1Wp1rNHBSXA9tip87zYyvFzpx8dXLVTvqySvhUMNsN6+1ERrrNQVQs57H4K6cR35GrapffICb16RpO7glOHrrQyvjHXxQHB0/j1ugV0LpcFwAzS4n6hiZoIvEp2znwcSigfGJhxpMmseLc0dvFjcvRuLvdEdNyl2+0DOALwE863TM/jnJqhfQa6v4AfJzUNOZ/aVlhqIUpoO4PuU4XFsqFrSM866m9hxBXSvWPx/wHpGqA96Vfa5AH9HnMjYNI96dbkwaVzcCw/nAK+xHzp4Hp89eD04nENzX6v4cYrnrVWXXQF/Fh7MQfWasmogCNsmaT+qwD0g4gYsuYqnWlboeKMUumUr86LycxdwdRUb+zQTvAzcgL0jLXFkbkQUX5UKyFTE2bvZD0a5B8SAUu6dPf+7AInssja2VPSZRud2Ni/NKse5M2VQqkO4BxSzZLmV8Wwpa8S9OHsK3X6+Lc7F/JidOwvkc7z3FbIgzd7smy1c35TEg7NGrg6Ucs88UsCliOLHH1+Td8HYFl++W//QxfT9iSee/3lJWy5X6aMwtK3rTVWJUU4/g4GzdLLp73ku8cEDxNmXUZhc/0eAAQAVgX0RHvvILQAAAABJRU5ErkJggg==);background-position:center;background-size:cover;width:10px;height:12px;display:block}.mec-fes-form input{background:#fff!important;border-radius:3px!important;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important}.mec-fes-form textarea{height:80px}.mec-fes-form input::-webkit-input-placeholder{color:#798f96}.mec-fes-form input::-moz-placeholder{color:#798f96}.mec-fes-form input:-ms-input-placeholder{color:#798f96}.mec-fes-form input:-moz-placeholder{color:#798f96}#mec-excerpt .mec-form-row .widefat{max-width:100%}#mec_more_info_target{width:100%}@media only screen and (min-width:961px){.mec-fes-form #mec-event-data input[type=date],.mec-fes-form #mec-event-data select,.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=tel],.mec-fes-form input[type=text],.mec-fes-form input[type=url],.mec-fes-form textarea{width:100%;display:inline-block}}@media only screen and (max-width:768px){.mec-fes-form #mec-event-data input[type=date],.mec-fes-form #mec-event-data select,.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form input[type=url],.mec-fes-form textarea{width:100%}}.mec-fes-form input[type=text]#mec_fes_title{padding:5px 10px;min-height:32px;height:50px;background:#fff!important;max-width:100%;font-size:19px;font-weight:400}.mec-fes-form input[type=checkbox],.mec-fes-form input[type=radio]{display:inline!important;float:left;margin:5px 5px 0 0}.mec-fes-form input[type=email]:focus,.mec-fes-form input[type=number]:focus,.mec-fes-form input[type=password]:focus,.mec-fes-form input[type=tel]:focus,.mec-fes-form input[type=text]:focus,.mec-fes-form input[type=url]:focus,.mec-fes-form select:focus,.mec-fes-form textarea:focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-form-row .mec-color{cursor:pointer}.mec-form-row.mec-available-color-row span{margin:10px;width:14px;height:14px;display:inline-block;margin-right:6px;border-radius:20px 20px 20px 20px;vertical-align:middle}.mec-form-row.mec-available-color-row span:first-of-type{margin-left:0}.mec-fes-form.mec-fes-form .mec-tooltip{display:inline}.mec-fes-form-cntt .dashicons-editor-help{display:block}.mec-fes-form .mec-tooltip:hover:after,.mec-fes-form .mec-tooltip:hover:before{display:none}.mec-fes-form.mec-fes-form .mec-tooltip{display:inline-flex;bottom:7px}.mec-fes-form .mec-tooltip .box{min-width:300px;max-width:600px;display:inline-block;left:26px;top:50%;transform:translateY(-50%);padding:0;margin-top:8px;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.3;position:absolute;z-index:9999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s}#webnus-dashboard .mec-fes-form .mec-tooltip .box p,.mec-fes-form .mec-tooltip .box p{color:#fff!important;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}.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-checkboxes-search .mec-searchbar-category-wrap,.mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-wrap .mec-totalcal-box input,.mec-wrap .mec-totalcal-box select{width:auto;min-height:36px;height:36px;line-height:36px;background:#fff;font-size:13px;color:#777;border:1px solid #efefef;margin:0 0 0 -1px;float:left;padding:0 5px;font-family:Roboto,Helvetica,Arial,sans-serif}.mec-wrap .mec-totalcal-box input[type=submit]{cursor:pointer;padding:0 16px;text-transform:uppercase;font-size:11px;font-family:Montserrat,Helvetica,Arial,sans-serif;transition:all .21s ease}.mec-wrap .mec-totalcal-box input[type=submit]:hover{background:#222;color:#fff}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{display:inline-block;text-transform:uppercase;font-family:Montserrat,Helvetica,Arial,sans-serif;font-size:11px;padding:0 12px;cursor:pointer}.mec-wrap .mec-totalcal-box .mec-totalcal-view span:hover{color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected{color:#fff;background:#40d9f1;border-color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view{text-align:right;float:right}.mec-wrap .mec-totalcal-box input[type=search]{width:calc(100% - 36px)}.mec-full-calendar-wrap .mec-search-form .col-md-7{padding:0}.mec-wrap .mec-date-search .mec-col-3,.mec-wrap .mec-minmax-event-cost .mec-minmax-price{width:calc(50% - 17px)}.mec-wrap .mec-text-address-search.with-mec-cost{width:calc(100% - 356px)}.mec-wrap .mec-minmax-event-cost{display:block;float:left;width:50%;margin-left:10px}.mec-wrap .mec-minmax-event-cost.with-mec-address{display:block;width:336px;max-width:50%;float:right;margin-left:0;margin-right:10px}.mec-wrap .mec-checkboxes-search{margin-left:10px;margin-right:10px;display:table-caption}.mec-wrap .mec-checkboxes-search .mec-searchbar-category-wrap{width:calc(100% - 36px)!important;max-width:calc(100% - 36px)!important;padding:0;position:relative;line-height:inherit;height:auto}.mec-wrap .mec-checkboxes-search .mec-searchbar-category-wrap select{line-height:20px}.mec-wrap .mec-checkboxes-search .mec-searchbar-category-wrap .select2-container.select2-container--default{width:calc(100% - 36px)!important}.mec-wrap .mec-checkboxes-search .mec-searchbar-category-wrap input[type=search]{width:calc(100% - 36px)!important;min-height:30px;margin:0}.mec-wrap .mec-checkboxes-search .mec-searchbar-category-wrap .select2-container .select2-selection--multiple ul,.mec-wrap .mec-checkboxes-search .mec-searchbar-category-wrap .select2-container.select2-container--default{height:auto;overflow:unset}.mec-wrap .mec-checkboxes-search .mec-searchbar-category-wrap .select2-container .select2-selection--multiple ul{display:block}.mec-wrap .mec-checkboxes-search .mec-searchbar-category-wrap .select2-container .select2-selection--multiple{border:unset;width:100%;height:0!important;border-radius:0}.mec-wrap .mec-checkboxes-search .mec-searchbar-category-wrap .select2-container .select2-selection--multiple ul li{line-height:12px!important;max-height:20px!important;width:auto;margin-right:5px;margin-top:5px}.mec-wrap .mec-checkboxes-search .mec-searchbar-category-wrap .select2-container .select2-selection--multiple .select2-selection__choice{letter-spacing:0;color:#777;text-transform:capitalize;padding:4px 6px;background-color:#efefef;border-radius:2px;border:0;cursor:default;float:left;margin-right:5px;margin-top:5px;margin-bottom:5px;font-size:11px;text-transform:uppercase}.mec-wrap .mec-checkboxes-search .mec-searchbar-category-wrap .select2-container .select2-selection--multiple .select2-selection__choice__remove{color:#777}@media only screen and (min-width:961px) and (max-width:1200px){.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-3,.mec-wrap .mec-totalcal-box .col-md-4,.mec-wrap .mec-totalcal-box .col-md-5{width:100%;float:none;clear:both;overflow:hidden}.mec-full-calendar-wrap .mec-search-form .col-md-3,.mec-full-calendar-wrap .mec-search-form .col-md-4,.mec-full-calendar-wrap .mec-search-form .col-md-5{display:block;max-width:100%;padding:0;margin:0 0 10px 0}.mec-full-calendar-wrap .mec-search-form .col-md-3{padding-bottom:10px!important}.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 106px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}.mec-wrap .mec-totalcal-box .mec-totalcal-view{float:none}.mec-wrap .mec-checkboxes-search .mec-searchbar-category-wrap .select2-container .select2-selection--multiple .select2-selection__choice{display:block;max-width:100%;white-space:break-spaces;max-height:unset!important;height:auto!important}}@media only screen and (min-width:768px) and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-4{position:relative;width:initial}.mec-wrap .mec-totalcal-box .col-md-5{padding-bottom:0}.mec-full-calendar-wrap .mec-search-form .col-md-5{margin-top:20px}.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:767px){.mec-wrap .mec-totalcal-box .mec-totalcal-view{float:none}.mec-wrap .mec-totalcal-box .col-md-4{padding-bottom:0}.mec-wrap .mec-minmax-event-cost.with-mec-address,.mec-wrap .mec-text-address-search.with-mec-cost{width:100%;float:left}.mec-wrap .mec-minmax-event-cost.with-mec-address{max-width:calc(100% - 20px);margin:0 10px 20px 10px}.mec-wrap .mec-minmax-event-cost .mec-minmax-price{width:calc(50% - 17px)}}@media only screen and (max-width:479px){.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 8px;font-size:10px}.mec-wrap .mec-totalcal-box input[type=submit]{padding:0 10px;font-size:10px}}@media only screen and (min-width:961px){.mec-wrap .mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5,.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-3{padding-bottom:20px;clear:both;overflow:hidden}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5{right:10px;width:initial}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-4{padding-bottom:0;width:100%}}@media (min-width:961px) and (max-width:1200px){.mec-full-calendar-wrap .mec-totalcal-box{padding:15px 10px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 10px}.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-address-search,.mec-search-form .mec-text-input-search{padding:0 4px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4,.mec-full-calendar-wrap .mec-totalcal-box .col-md-5{padding-bottom:20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{min-width:calc(30% - 10px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3:last-child select{min-width:calc(50% - 19px)}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:9px;text-align:center}}@media only screen and (max-width:1200px){.post-type-archive-mec-events .mec-totalcal-box .col-md-3,.post-type-archive-mec-events .mec-totalcal-box .col-md-4{width:100%;padding:0}.post-type-archive-mec-events .mec-totalcal-box select:last-child{min-width:auto}.post-type-archive-mec-events .mec-totalcal-box .col-md-5{position:relative;float:right;max-width:100%;left:0;top:20px;width:100%!important;display:block;clear:both}.post-type-archive-mec-events .mec-totalcal-box .mec-totalcal-view{max-width:100%;width:100%}.post-type-archive-mec-events .mec-totalcal-box .mec-totalcal-view span{width:20.1%;font-size:10px}}@media only screen and (max-width:960px){.post-type-archive-mec-events .mec-totalcal-box .col-md-5{top:10px}}@media only screen and (max-width:760px){.post-type-archive-mec-events .mec-totalcal-box .col-md-5{top:0!important}}@media only screen and (max-width:480px){.post-type-archive-mec-events .mec-totalcal-box .mec-totalcal-view span{font-size:8px}}@media (min-width:1201px) and (max-width:1280px){.mec-full-calendar-wrap .mec-totalcal-view span{font-size:9px;padding:0 10px}}@media (min-width:761px) and (max-width:1200px){.mec-full-calendar-wrap .mec-search-form .mec-dropdown-wrap .mec-dropdown-search{width:33.3333%;display:block;float:left}.mec-full-calendar-wrap .mec-search-form .col-md-4 .mec-text-input-search{padding:0;margin-bottom:20px}.mec-full-calendar-wrap .mec-search-form .col-md-3{width:100%}.mec-full-calendar-wrap .mec-search-form .mec-date-search select:last-child{min-width:70px;width:70px}.mec-full-calendar-wrap .mec-search-form .col-md-5{float:right;padding:0 0 10px 0}.mec-full-calendar-wrap .mec-totalcal-view span{font-size:11px}}@media (max-width:760px){.mec-full-calendar-wrap .mec-search-form .col-md-3{width:100%}.mec-full-calendar-wrap .mec-search-form .mec-date-search select:last-child{min-width:70px;width:70px}.mec-full-calendar-wrap .mec-search-form .col-md-5{float:right;padding:0 0 10px 0}.mec-full-calendar-wrap .mec-totalcal-view span{font-size:11px}}@media (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box{padding:20px 20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{padding-bottom:10px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px);margin-bottom:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view{margin-left:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:10px;text-align:center}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:100%}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:14.3%;text-align:center;font-size:10px;margin-right:-1px}}@media(max-width:780px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{width:calc(50% - 18px)!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:unset;padding-right:0}.mec-full-calendar-wrap .mec-search-form .col-md-3,.mec-full-calendar-wrap .mec-search-form .col-md-4,.mec-full-calendar-wrap .mec-search-form .col-md-5{margin:0;padding:0}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 7px;margin-top:20px}}@media(max-width:480px){.mec-full-calendar-wrap .mec-totalcal-box{padding:15px 10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:13.5%;text-align:center;font-size:11px}}@media(max-width:411px){.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:12%;font-size:10px}}@media(max-width:320px){.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:22.5%;font-size:11px}}.mec-totalcalview-selected:hover{color:#fff!important}.mec-search-form{padding:20px 10px}.mec-search-form .mec-dropdown-wrap{display:table;width:100%}.mec-search-form .mec-date-input-search,.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search,.mec-search-form .mec-time-input-search{padding:0 10px;float:left}.mec-search-form .mec-date-search,.mec-search-form .mec-time-picker-search,.mec-search-form .mec-totalcal-view{padding:0 10px}.mec-search-form .mec-text-input-search{width:100%}.mec-search-form .mec-full-calendar-search-ends .mec-text-input-search{width:50%}.mec-search-form .mec-date-search,.mec-search-form .mec-time-picker-search{width:50%;float:left}.mec-search-form .mec-date-search.with-mec-time-picker,.mec-search-form .mec-time-picker-search.with-mec-date-search{width:25%;float:left}.mec-search-form .mec-tab-loader.col-md-6 .mec-totalcal-view{padding:0}.mec-wrap .mec-search-form .with-mec-date-search .mec-timepicker-end,.mec-wrap .mec-search-form .with-mec-date-search .mec-timepicker-start{width:calc(50% - 17px)}.mec-search-form .mec-full-calendar-search-ends .mec-text-input-search.col-md-12,.mec-search-form .mec-minmax-event-cost,.mec-search-form .mec-text-address-search{min-height:55px}.mec-search-form .mec-full-calendar-search-ends .mec-text-input-search.col-md-12,.mec-widget .mec-search-form .mec-date-search,.mec-widget .mec-search-form .mec-text-input-search{width:100%}.mec-search-form .mec-full-calendar-search-ends .mec-text-input-search.col-md-12{padding:0 10px}.mec-search-form .mec-minmax-event-cost,.mec-search-form .mec-text-address-search,.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-checkboxes-search .mec-searchbar-category-wrap,.mec-wrap .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{width:calc(100% - 36px);margin-bottom:10px}.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 106px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}@media only screen and (max-width:781px){.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{width:100%;float:none}.mec-search-form .mec-date-search{min-height:55px}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:50%;float:left}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3{margin-bottom:0;padding-bottom:0!important}}@media only screen and (max-width:479px){.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:100%;float:none}}@media only screen and (min-width:961px) and (max-width:1200px){.post-type-archive-mec-events .mec-totalcal-box .col-md-3,.post-type-archive-mec-events .mec-totalcal-box .col-md-4,.post-type-archive-mec-events .mec-totalcal-box .col-md-5{max-width:100%;width:100%}.post-type-archive-mec-events .mec-totalcal-box .col-md-4{padding:0 10px}.post-type-archive-mec-events .mec-totalcal-box .col-md-4 .mec-text-input-search{margin:0}.post-type-archive-mec-events .mec-totalcal-box .col-md-5{margin-bottom:20px;padding:0 10px 10px 10px}}@media only screen and (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-4,.post-type-archive-mec-events .mec-totalcal-box .col-md-4{padding:0 10px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{margin-bottom:0}.post-type-archive-mec-events .mec-totalcal-box .col-md-4 .mec-text-input-search{margin:0}.post-type-archive-mec-events .mec-totalcal-box .mec-totalcal-view{padding-right:15px}.mec-full-calendar-wrap .mec-search-form .col-md-5{margin-bottom:0}.post-type-archive-mec-events .mec-totalcal-box .col-md-5{padding:0}}@media only screen and (max-width:780px){.post-type-archive-mec-events .mec-totalcal-box .mec-totalcal-view span{margin-top:10px;margin-bottom:10px}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{margin-top:0}}@media only screen and (max-width:760px){.post-type-archive-mec-events .mec-totalcal-box .mec-totalcal-view span{margin-top:20px;margin-bottom:0}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{margin-top:20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4,.post-type-archive-mec-events .mec-totalcal-box .col-md-4{padding:0}}@media only screen and (max-width:1200px){.post-type-archive-mec-events .mec-full-calendar-wrap .mec-totalcal-view span{width:14.333%;font-size:8px}}@media only screen and (min-width:320px) and (max-width:960px){.post-type-archive-mec-events .mec-search-form .col-md-5 span{width:20%!important}}.mec-search-form .mec-text-address-search{float:left;width:100%;padding:0 10px}@media (max-width:960px){.mec-search-form .mec-dropdown-search{margin-bottom:10px}.mec-wrap .mec-minmax-event-cost.with-mec-address,.mec-wrap .mec-text-address-search.with-mec-cost{margin-top:0}.mec-search-form .mec-date-search.with-mec-time-picker,.mec-search-form .mec-time-picker-search.with-mec-date-search{width:50%;margin-bottom:20px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view{margin:0}.mec-full-calendar-wrap .mec-tab-loader{width:100%;display:block;float:unset;padding:0 0 0 10px}}@media (max-width:780px){.mec-full-calendar-wrap .mec-totalcal-box{padding:10px}.mec-search-form .mec-date-search.with-mec-time-picker,.mec-search-form .mec-time-picker-search.with-mec-date-search{margin:20px 0;height:auto}.mec-search-form .mec-date-search{min-height:unset}}@media (max-width:480px){.mec-search-form .mec-date-search.with-mec-time-picker,.mec-search-form .mec-time-picker-search.with-mec-date-search{width:100%}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:12%;text-align:center;font-size:9px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-search-form .mec-date-search.with-mec-time-picker,.mec-search-form .mec-full-calendar-search-ends .mec-text-input-search,.mec-search-form .mec-minmax-event-cost,.mec-search-form .mec-text-address-search,.mec-search-form .mec-time-picker-search.with-mec-date-search,.mec-wrap .mec-minmax-event-cost.with-mec-address{margin-bottom:0;margin-top:10px;min-height:auto}.mec-wrap .mec-minmax-event-cost.with-mec-address{margin-bottom:10px}}.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)}.mec-skin-carousel-container .mec-multiple-event .mec-event-date-carousel{width:230px}.mec-skin-carousel-container .mec-multiple-event .event-carousel-type1-head .mec-event-date-info,.mec-skin-carousel-container .mec-multiple-event .event-carousel-type1-head .mec-event-date-info-year{left:159px}@media only screen and (min-width:768px) and (max-width:1000px),(min-width:270px) and (max-width:448px){.event-carousel-type1-head .mec-event-date-carousel{font-size:25px;line-height:2.5;padding-right:70px;height:64px;width:120px}.event-carousel-type1-head .mec-event-date-carousel:after{left:7px}.event-carousel-type1-head .mec-event-date-info{font-size:10px;top:13px;left:55px}.event-carousel-type1-head .mec-event-date-info-year{font-size:10px;top:25px;left:55px}.event-carousel-type1-head .mec-event-date-carousel:after{top:48px}}.event-carousel-type2-head{background:#fff;border:1px solid #e6e6e6}.event-carousel-type2-head .mec-event-carousel-content-type2{margin-top:15px;min-height:182px}.event-carousel-type2-head .mec-event-carousel-content-type2 .mec-event-date-info{font-size:15px;color:#9a9a9a;font-weight:300}.event-carousel-type2-head .mec-event-carousel-content-type2 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-carousel-content-type2 .mec-event-carousel-title a{color:inherit}.mec-event-carousel-type2 .event-carousel-type2-head .mec-event-carousel-content-type2 p{font-size:16px;font-weight:300;color:#444}.event-carousel-type2-head .mec-event-footer-carousel-type2{margin-top:33px;position:relative}.mec-event-carousel-type2 .mec-event-footer-carousel-type2 .mec-event-sharing-wrap{padding-left:0;left:0}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-event-sharing-wrap>li{border:none;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button{border:1px solid #e4e4e4;float:right;padding:7px 23px 7px;font-size:12px;text-transform:uppercase;color:#707070;font-weight:500;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button:hover{color:#fff}.mec-event-article .event-carousel-type2-head{padding:10%;margin-right:-1px}.mec-event-carousel-type2 .mec-owl-carousel .owl-wrapper-outer{border-right:1px solid #e6e6e6}.mec-wrap .mec-event-carousel-type2 .owl-next,.mec-wrap .mec-event-carousel-type2 .owl-prev,.mec-wrap .mec-event-carousel-type3 .owl-next,.mec-wrap .mec-event-carousel-type3 .owl-prev,.mec-wrap .mec-event-carousel-type4 .owl-next,.mec-wrap .mec-event-carousel-type4 .owl-prev{transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:47%;background-color:transparent!important}.mec-event-carousel-type2 .owl-next{right:-60px}.mec-event-carousel-type2 .owl-prev{left:-60px}.mec-event-carousel-type2 .owl-next i,.mec-event-carousel-type2 .owl-prev i,.mec-event-carousel-type3 .owl-next i,.mec-event-carousel-type3 .owl-prev i,.mec-event-carousel-type4 .owl-next i,.mec-event-carousel-type4 .owl-prev i{font-size:40px;color:#282828}.mec-event-carousel-type2 .owl-next i:hover,.mec-event-carousel-type2 .owl-prev i:hover,.mec-event-carousel-type3 .owl-next i:hover,.mec-event-carousel-type3 .owl-prev i:hover{color:#000;cursor:pointer}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}@media only screen and (min-width:320px) and (max-width:768px){.mec-event-carousel-type2 .owl-next,.mec-event-carousel-type2 .owl-prev,.mec-event-carousel-type3 .owl-next,.mec-event-carousel-type3 .owl-prev,.mec-event-carousel-type4 .owl-next,.mec-event-carousel-type4 .owl-prev{position:initial;top:100%}}.mec-event-carousel-type3 .mec-event-article{margin:0 10px}.event-carousel-type3-head .mec-event-image,.event-carousel-type3-head .mec-event-image img{width:100%;height:auto}.event-carousel-type3-head .mec-event-footer-carousel-type3{background:#fff;display:inline-block;width:calc(100% - 40px);margin-top:-74px;position:relative;margin-left:20px;margin-right:20px;margin-bottom:6px;padding:8% 11%;box-shadow:0 2px 10px -2px rgba(0,0,0,.2)}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button{border:1px solid #e4e4e4;text-transform:uppercase;float:right;padding:7px 23px 7px;font-size:12px;color:#707070;font-weight:500}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button:hover{color:#fff}.mec-event-footer-carousel-type3 span{font-size:15px;color:#9a9a9a;font-weight:300;display:block;margin-top:30px}.mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:29px;font-weight:700}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-footer-carousel-type3 .mec-event-carousel-title a{color:inherit}.event-carousel-type3-head .mec-event-footer-carousel-type3 p{font-size:16px;font-weight:300;color:#444!important;margin-bottom:36px}.mec-event-carousel-type3 .owl-next{right:-70px}.mec-event-carousel-type3 .owl-prev{left:-70px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap{left:11%}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}.event-carousel-type3-head .mec-end-date-label{display:inline;margin-left:2px}.event-carousel-type4-head.clearfix{position:relative;overflow:hidden;background:#fff}.event-carousel-type4-head .mec-event-overlay{position:absolute;left:0;right:0;bottom:0;top:0;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-hover-carousel-type4{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out;opacity:0;visibility:hidden}.mec-event-carousel-type4 .mec-event-article{margin:0 10px}.mec-event-carousel-type4 .mec-event-article:hover .mec-event-hover-carousel-type4{opacity:1;visibility:visible}.mec-event-hover-carousel-type4 .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-hover-carousel-type4 .mec-event-date{font-size:11px;text-transform:uppercase;font-weight:400;line-height:1.6}.mec-event-hover-carousel-type4 .mec-event-date span{display:block;font-weight:700;font-size:14px}.mec-event-hover-carousel-type4 .mec-event-title{color:#fff;margin:20px 0 38px;font-size:16px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-hover-carousel-type4 .mec-btn-wrapper{text-align:left}.mec-event-hover-carousel-type4 .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:10px 14px;letter-spacing:1.5px;font-size:11px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-hover-carousel-type4 .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-carousel-type4 .owl-next{right:-70px}.mec-event-carousel-type4 .owl-prev{left:-70px}.mec-carousel-type4-head{margin-bottom:25px}.mec-carousel-type4-head-title{padding:0 11px;text-align:left;font-weight:700;font-size:20px;color:#000}.mec-carousel-type4-head-link{text-align:right;padding:0 11px}.mec-carousel-type4-head-link a{background:#222;color:#fff;padding:10px 38px;transition:all .3s ease}.mec-carousel-type4-head-link a:hover,.mec-carousel-type4-head-link a:visited{color:#fff}@media (max-width:960px){.mec-event-carousel-type4 .owl-stage{left:-50px}}.mec-wrap .mec-event-countdown-style1{color:#fff;padding:0!important;display:table;background:#437df9}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1{z-index:5;padding:50px 1% 50px 4%;display:table-cell;float:none;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2{background-color:rgba(0,0,0,.05);height:100%;padding-top:0;display:table-cell;float:none;position:relative;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{background-color:#f8f8f8;display:table-cell;float:none;text-align:center;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style1 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{content:"";position:absolute;display:inline-block;z-index:1;top:50%;margin-top:-11px;right:-24px;width:0;border-width:12px;border-style:solid;border-color:transparent transparent transparent #4077ed}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style1 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto}.mec-event-countdown-style1 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style1 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (min-width:1200px){.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%}}@media (max-width:960px){.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%;transform:rotate(90deg)}}@media (max-width:480px){.mec-event-countdown-style1 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{padding:10px 5px;min-width:50px;margin:3px 1px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:8px}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{display:inline}}.mec-wrap .mec-event-countdown-style2{color:#fff;padding:30px 0;background:#437df9;max-width:600px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part3{width:100%;float:none;vertical-align:middle;padding:50px 10% 50px 10%}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2{padding-top:12%;padding-bottom:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style2 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date-place{text-align:left;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 8px}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#222;background:#fff;transition:all .24s ease}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button:hover{background:#222;color:#fff}.mec-event-countdown-style2 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0}.mec-event-countdown-style2 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style2 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (max-width:767px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:80px;padding:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:26px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:11px}}@media only screen and (max-width:479px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:40px;padding:15px 10px;margin:2px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:20px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:9px}}@media (max-width:380px){.mec-event-countdown-style2 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{padding:10px 4px;margin:4px 1px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:7px}}.mec-wrap .mec-event-countdown-style3{color:#fff;padding:0;background:#282828;display:table;width:100%}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1{width:68%;padding:50px 1% 50px 4%;vertical-align:middle;display:table-cell;position:relative}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:32%;display:table-cell;position:relative;padding-bottom:0;padding-top:0}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 img{width:100%;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{font-weight:300;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{color:#fff;font-size:36px;letter-spacing:-2px;font-weight:700;line-height:1;margin-top:-10px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style3 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style3 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto;position:absolute;top:40px;right:20px}.mec-event-countdown-style3 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style3 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:11px;color:#888;margin:8px 0 0;line-height:1}.mec-event-countdown-style3 .mec-event-date{width:176px;height:96px;background:#40d9f1;color:#fff;font-size:13px;position:absolute;left:-27px;top:146px}.mec-event-countdown-style3 .mec-event-date:after{content:"";position:absolute;display:inline-block;z-index:1;bottom:-18px;left:8px;width:0;border-width:19px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:50px;position:absolute;top:36px;left:12px;letter-spacing:-3px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:80px;top:26px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:80px;top:45px}.mec-event-countdown-style3 .mec-event-countdown-part-details{padding-top:35px;margin-bottom:50px;min-height:100px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-title{font-size:17px;color:#fff;line-height:1.4;padding-right:20px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link{color:#fff;font-size:12px;position:relative;padding-left:22px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link:before{content:"";display:inline-block;width:18px;border-top:1px solid #fff;position:absolute;left:0;top:8px}.mec-event-countdown-style3 .mec-event-title-link{position:absolute;left:190px;top:152px}.event-carousel-type1-head .mec-event-date-carousel:before,.mec-event-countdown-style3 .mec-event-date:before{content:'';position:absolute;left:0;bottom:0;z-index:2;width:100%;height:96px;display:inline-block;box-shadow:0 5px 5px rgba(0,0,0,.12);background:0 0}@media only screen and (min-width:960px){.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown li{padding:10px}.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:31px}}@media (max-width:959px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:100%;display:block}.mec-event-countdown-style3 .mec-event-title-link{top:190px}.mec-event-countdown-style3 .mec-event-countdown{top:96px}.mec-event-countdown-style3 .mec-event-date{left:0;top:190px}.mec-event-countdown-style3 .mec-event-date:after{display:none}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{display:inline}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:150px}}@media (max-width:767px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:26px;letter-spacing:-1px}.mec-event-countdown-style3 .mec-event-title-link{left:130px}.mec-event-countdown-style3 .mec-event-date{width:120px;font-size:10px;height:63px}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:36px;top:20px;left:4px;letter-spacing:-2px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:52px;top:12px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:52px;top:28px}}@media (max-width:380px){.mec-event-countdown-style3 .mec-event-title-link{left:10px;top:260px}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:300px}.mec-event-countdown-style3 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:10px 5px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:8px}}.mec-slider-t1-wrap{width:100%;padding:60px 90px;background:#f7f7f7;min-height:560px;position:relative}.mec-slider-t1{height:500px;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t1 .mec-event-article{position:relative;height:500px}.mec-slider-t1 .mec-slider-t1-img{position:relative;background-size:cover!important;background-position:center!important;width:50%;height:100%;float:right;margin:0;overflow:hidden}.mec-slider-t1 .mec-slider-t1-content{width:50%;float:left;height:100%;background:#fff;padding:6%}.mec-slider-t1-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t1-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:54px;height:54px;line-height:48px;border-radius:0;text-align:center;background:#fff;box-shadow:0 2px 11px 0 rgba(0,0,0,.045);transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-27px;cursor:pointer}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 29px 0 rgba(0,0,0,.095)}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:12px;color:#282828;transition:all .21s ease}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{font-size:13px;color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t1{margin:0 auto;max-width:900px}}@media only screen and (max-width:960px){.mec-slider-t1 .mec-slider-t1-content,.mec-slider-t1 .mec-slider-t1-img{width:100%;float:none}.mec-slider-t1 .mec-slider-t1-img{height:300px}.mec-slider-t1,.mec-slider-t1 .mec-event-article{height:auto}}@media only screen and (max-width:768px){.mec-slider-t1-wrap{padding:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:10px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}}@media only screen and (max-width:479px){.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t2-wrap{width:100%;padding:0;background:#fff;min-height:600px;position:relative}.mec-slider-t2 .mec-event-article{height:600px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t2 .mec-slider-t2-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:70%;height:100%;margin:0;overflow:hidden}.mec-slider-t2 .mec-slider-t2-content{width:50%;position:absolute;right:0;top:60px;bottom:60px;padding:5%}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern *{color:#fff}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-content,.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t2-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:84px;cursor:pointer}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}.mec-wrap.colorskin-custom .mec-slider-t2 .mec-event-article .mec-event-date.mec-color{color:#fff}@media only screen and (min-width:961px){.mec-slider-t2{margin:0 auto;max-width:1200px}}@media only screen and (max-width:960px){.mec-slider-t2 .mec-slider-t2-content,.mec-slider-t2 .mec-slider-t2-img{width:100%;float:none;position:static}.mec-slider-t2 .mec-slider-t2-img{height:300px}.mec-slider-t2 .mec-event-article{height:auto}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px}}@media only screen and (max-width:479px){.mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:22px}}.mec-slider-t3-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t3 .mec-event-article{height:700px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t3 .mec-slider-t3-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;opacity:.68;z-index:1}.mec-slider-t3 .mec-slider-t3-content{width:50%;height:auto;vertical-align:middle;display:table;position:absolute;left:0;top:50%;transform:translateY(-50%);bottom:0;padding:0 2% 0 7%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t3 .mec-slider-t3-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-content,.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-slider-t3-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t3-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{border-color:#40d9f1}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-22px;cursor:pointer}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next{right:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:50px;font-weight:300}.mec-slider-t3-content.mec-event-grid-modern .mec-event-description{font-size:19px}}@media only screen and (max-width:767px){.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}}@media only screen and (max-width:479px){.mec-slider-t3 .mec-slider-t3-content{width:100%}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t4-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t4 .mec-event-article{height:700px;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t4 .mec-slider-t4-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;z-index:1}.mec-slider-t4 .mec-slider-t4-content{width:auto;max-width:700px;background:rgba(37,37,37,.94)!important;height:auto;vertical-align:middle;display:table;position:absolute;left:8%;top:19%;padding:3%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t4 .mec-slider-t4-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-content,.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:13px;padding:0 42px;line-height:49px;height:50px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t4-content.mec-event-grid-modern .mec-slider-t4-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next{right:60px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{right:112px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:767px){.mec-slider-t4 .mec-slider-t4-content{width:100%;left:0;top:auto;bottom:0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t5-wrap{width:auto;max-width:570px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-slider-t5{height:auto;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t5 .mec-event-article{position:relative;height:auto}.mec-slider-t5 .mec-slider-t5-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:300px;float:none;margin:0;overflow:hidden}.mec-slider-t5 .mec-slider-t5-content{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-slider-t5 .mec-events-content p{margin-bottom:20px}.mec-slider-t5-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t5-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t5 .mec-slider-t5-col6{width:50%;float:left;height:100%}.mec-slider-t5 .mec-slider-t5-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-slider-t5 .mec-slider-t5-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-slider-t5 .mec-slider-t5-col6 address{font-size:12px;margin-bottom:0}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t5-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:768px){.mec-slider-t5 .mec-slider-t5-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-single-modern .mec-events-event-image{text-align:center}.mec-single-modern .mec-events-event-image img{width:100%}.mec-single-modern .mec-single-event-bar{background-color:#f7f7f7;margin:20px 0 0;padding:15px;display:table;width:100%}.mec-single-modern .mec-single-event-bar>div{display:table-cell}.mec-single-modern .mec-single-event-bar>div i{font-size:20px;vertical-align:middle}.mec-single-modern .mec-single-event-bar>div .mec-time-comment{font-size:12px;color:#999}.mec-single-modern .mec-single-event-bar>div h3{text-transform:uppercase;font-size:16px;font-weight:700;padding-bottom:5px;display:inline;color:#000;padding-left:10px}.mec-single-modern .mec-single-event-bar>div dd{font-size:14px;color:#8d8d8d;padding-left:34px;margin-bottom:0}.mec-single-modern .col-md-4 .mec-frontbox{margin-top:-50px;margin-bottom:70px;padding:20px;border:none;background:#f7f7f7;box-shadow:none}.mec-single-modern .col-md-4.mec-no-image .mec-frontbox{margin-top:20px}.mec-next-occurrence ul{padding-left:0;margin-left:0}.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:0;color:#8d8d8d}.mec-next-event-details i{margin-right:10px;margin-left:12px}.mec-next-event-details i:before{color:#40d9f1}.mec-next-event-details a{text-align:center;display:block;background:#fff;padding:6px 0;font-size:11px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;transition:.3s}.mec-single-modal.mec-single-modern .mec-single-title{text-align:center;padding:15px 10px 0}.admin-bar .mec-single-modal.mec-single-modern .mec-single-title{padding-top:40px}.mec-single-modal.mec-single-modern .mec-single-event-bar{padding:5px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div dd{font-size:13px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div h3{font-size:15px}@media only screen and (min-width:960px){.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-left:0}}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-top:10px;margin-bottom:10px}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox.mec-event-meta{padding:0}.mec-single-modal .mec-event-meta dd.mec-organizer-email a,.mec-single-modal .mec-event-meta dd.mec-organizer-url a{font-size:12px;display:block}.mec-organizer-description p{padding-left:12px}.mec-modal-wrap{max-width:60vw;max-height:90vh!important;background:#fff;box-shadow:0 1px 55px rgba(0,0,0,.5);overflow-x:hidden!important}@media(max-width:1023px){.mec-modal-wrap{max-width:80vw}}.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li,.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a.mec-events-button{display:block;text-align:center}.mec-holding-status-expired{color:#d8000c}.mec-holding-status-ongoing{color:#0dbf52}body .featherlight{z-index:999999!important}body .featherlight .featherlight-content{background:0 0;overflow:unset;z-index:9999}body .featherlight .featherlight-close-icon{position:fixed;top:40px;right:40px;background:0 0;color:#fff;border:1px solid #fff;border-radius:0}body .featherlight .featherlight-close-icon:hover{background:#fff;color:#000;border:1px solid #000}@media (max-width:320px){.mec-wrap span.flip-clock-divider{width:20px}.mec-single-event .mec-events-meta-group-countdown{padding:15px 12%}}@media (max-width:414px){.mec-wrap span.flip-clock-divider{width:30px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 7%}}@media (max-width:480px){body .featherlight .featherlight-content{width:95%}.mec-wrap span.flip-clock-divider{width:7px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 1%}body .featherlight .featherlight-close-icon{color:#000;border-color:#000}}@media(max-width:1366px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:20px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 15px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:48px}}@media(max-width:1280px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:14px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:15px 10px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:38px}}@media(min-width:961px) and (max-width:1024px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:7px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:15px 5px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:14px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul li a div{font-size:30px}}@media(max-width:640px){body .mec-modal-wrap .mec-single-modal.featherlight-close-icon{top:14px;right:14px}}@media(max-width:480px){.featherlight .featherlight-content,body .mec-modal-wrap{max-width:100%}body .mec-modal-wrap.flip-clock-divider .flip-clock-label{display:block}}@media (max-width:414px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:50px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 65px}body .featherlight-content .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 2px 20px 2px!important}body .featherlight-content .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:3px!important}}@media (max-width:375px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:50px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 45px}}@media (max-width:320px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:20px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 40px}}.mec-single-event-bar dd{margin-left:0}.mec-events-toggle{max-width:960px;margin-left:auto;margin-right:auto}.mec-events-toggle .mec-toggle-item{border:1px solid #e4e4e4;margin-bottom:15px;box-shadow:0 10px 15px #f3f3f3}.mec-events-toggle .mec-toggle-item-inner{cursor:pointer;position:relative;padding:30px 60px 30px 15px;background:#fff;transition:all .3s ease;min-height:100px;display:table;width:100%;border-collapse:separate}.mec-events-toggle .mec-toggle-item-inner:hover{background:#fbfbfb}.mec-toggle-item-col{width:200px;border-right:1px solid #e3e3e3;margin-right:15px;display:table-cell;padding-right:5px}.mec-toggle-item-col .mec-event-date{font-size:38px;line-height:40px;float:left;margin-right:8px}.mec-toggle-item-col .mec-event-month,.mec-toggle-item-col .mec-time-details{text-transform:uppercase;font-size:12px;line-height:14px;padding-top:4px;font-weight:700}.mec-toggle-item-col .mec-event-detail{font-size:10px}.mec-toggle-item-col .mec-event-day{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:35px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-events-toggle .mec-toggle-title{color:#000;font-size:23px;font-weight:600;margin-bottom:0;transition:all .3s ease;display:table-cell;text-align:left;max-width:calc(100% - 200px);padding-left:15px;vertical-align:middle}.mec-events-toggle .mec-toggle-item-inner span.event-color{width:5px;height:100%;position:absolute;left:-1px;top:0;bottom:0;border-radius:0;margin:0}.mec-events-toggle .mec-toggle-item-inner i{position:absolute;font-size:30px;right:25px;top:50%;transform:translate(0,-50%);cursor:pointer}.mec-events-toggle .mec-toggle-item.is-open i.mec-sl-plus:before{content:"\e615"}.mec-events-toggle .mec-toggle-item.is-open .mec-toggle-title{background:#f8f8f8;cursor:pointer}.mec-events-toggle .mec-toggle-content{border-top:1px solid #e4e4e4}.mec-events-toggle .mec-toggle-content .mec-modal-wrap{margin:0;max-width:100%;box-shadow:none}.mec-events-toggle .mec-toggle-content .mec-modal-wrap .mec-single-event{margin:0}.mec-events-toggle .mec-toggle-content .mec-single-event-bar,.mec-events-toggle .mec-toggle-content h1.mec-single-title{display:none}.mec-events-toggle .media-links a{margin-bottom:0}.mec-events-toggle .mec-toggle-content .mec-toggle-meta{margin-bottom:14px}.mec-events-toggle #mec_speakers_details.mec-frontbox{padding:0;margin:0}.mec-events-toggle .mec-toggle-item h3.mec-speakers{border:none;text-align:left}.mec-events-toggle .mec-toggle-item h3.mec-speakers:before{content:"\e063";font-family:simple-line-icons;border:none;position:relative;display:inline-block;left:unset;bottom:unset;font-size:22px;font-weight:400;padding:0 11px 0 28px;vertical-align:middle}@media only screen and (max-width:767px){.mec-toggle-item-inner .mec-toggle-item-col{float:none;width:100%;border-right:none;margin-bottom:5px;display:block;max-width:100%;padding-left:15px}.mec-events-toggle .mec-toggle-title{display:block;width:100%;max-width:100%}}.mec-events-agenda-wrap{margin:10px 0;border:1px solid #e9e9e9;padding-left:20px;box-shadow:0 2px 2px rgba(0,0,0,.03)}.mec-events-agenda{padding:0;border-bottom:1px solid #e9e9e9;overflow:hidden}.mec-agenda-date-wrap{width:210px;padding-top:15px;float:left;font-size:13px}.mec-agenda-date-wrap i,.mec-agenda-event i{font-size:11px;color:#aaa;margin-right:4px;margin-left:1px}.mec-agenda-event i{vertical-align:middle;margin-right:1px}.mec-agenda-events-wrap{float:left;width:calc(100% - 210px);background:#f9f9f9;padding:15px}.mec-agenda-time{font-size:11px;color:#707070;padding-right:10px;width:138px;display:inline-block}.mec-agenda-event-title{position:relative;padding-left:14px}.mec-agenda-event-title a{font-family:Roboto,Montserrat,Helvetica,Arial,sans-serif;font-size:14px;font-weight:600;color:#333}.mec-agenda-event-title span.event-color{width:9px;height:9px;position:absolute;left:0;top:4px;margin:0}.mec-agenda-date-wrap span.mec-agenda-day{color:#aaa;font-size:12px}@media only screen and (max-width:767px){.mec-agenda-date-wrap,.mec-agenda-events-wrap{float:none;width:100%}.mec-events-agenda span.mec-agenda-event-title{display:block;width:100%}.mec-agenda-event-title span.event-color{top:7px}.mec-agenda-event-title a{font-size:13px}}.mec-yearly-view-wrap{margin:0 0 15px;border:1px solid #e6e6e6;box-shadow:0 2px 4px rgba(0,0,0,.04);border-bottom-width:4px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar{max-width:100%;width:232px;padding:10px;background:#fff;margin:10px;display:inline-block}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar dl dt{transition:none;height:30px;width:30px;line-height:30px;border-radius:0;font-size:12px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar .mec-calendar-events-sec{padding:10px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar .mec-has-event:after{width:4px;height:4px;bottom:3px;margin-left:-2px}.mec-yearly-view-wrap .mec-calendar-side .mec-calendar-table{min-height:200px}.mec-calendar.mec-yearly-calendar .mec-calendar-table-head dl dt{background:#f9f9f9;font-size:13px}.mec-calendar.mec-yearly-calendar .mec-calendar-table-title{text-align:center;font-size:15px;font-weight:700;color:#222;margin-top:-5px;padding-bottom:5px}.mec-yearly-view-wrap .mec-yearly-calendar-sec{min-height:200px;width:538px;overflow:hidden;float:left;background:#f8f8f8;padding:15px}.mec-yearly-view-wrap .mec-yearly-agenda-sec{min-height:200px;width:calc(100% - 538px);float:left;padding:0 0 0 20px;overflow:hidden}.mec-yearly-view-wrap .mec-yearly-title-sec{position:relative;padding:15px;text-align:center;border-bottom:1px solid #e6e6e6;box-shadow:0 1px 3px rgba(0,0,0,.02)}.mec-yearly-view-wrap .mec-yearly-title-sec h2{font-size:30px;line-height:40px;color:#333;margin:0;font-weight:700}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year,.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{position:absolute;top:50%;margin-top:-15px;min-width:30px;height:30px;line-height:30px;padding:0 8px;text-align:center;background:#fff;color:#666;font-size:14px;border:1px solid #eee;border-radius:2px;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease;cursor:pointer}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{right:auto;left:20px;padding-right:14px}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year{left:auto;right:20px;padding-left:14px}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year i,.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-yearly-view-wrap .mec-events-agenda.mec-selected{box-shadow:-10px 0 0 0 #fffcf2,0 -1px 0 #fbebb6;background:#fffcf2;border-color:#fbebb6;color:#f9af29}.mec-yearly-agenda-sec span.mec-event-label-captions.mec-fc-style{right:0;top:0}@media only screen and (max-width:959px){.mec-yearly-view-wrap .mec-yearly-calendar-sec{width:268px;padding:10px 5px}.mec-yearly-view-wrap .mec-yearly-agenda-sec{width:calc(100% - 268px);padding:0 0 0 10px}}@media only screen and (max-width:767px){.mec-yearly-view-wrap .mec-yearly-agenda-sec,.mec-yearly-view-wrap .mec-yearly-calendar-sec{width:100%;float:none}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar{width:auto}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar dl dt{width:14.2%}.mec-yearly-view-wrap .mec-yearly-title-sec h2{font-size:25px}}.mec-yearly-view-wrap .mec-agenda-event i,.mec-yearly-view-wrap .mec-agenda-time{display:none}@media only screen and (min-width:768px){.mec-yearly-view-wrap .mec-events-agenda-wrap{margin-top:0;border:none;padding-left:0;box-shadow:none}.mec-yearly-view-wrap .mec-agenda-date-wrap{width:174px;font-size:11px;padding-top:10px}.mec-yearly-view-wrap .mec-agenda-events-wrap{width:calc(100% - 174px);padding:10px}.mec-yearly-view-wrap .mec-agenda-event-title a{font-size:13px}.mec-yearly-view-wrap .mec-agenda-event-title span.event-color{width:8px;height:8px}.mec-yearly-view-wrap .mec-agenda-date-wrap span.mec-agenda-day{font-size:11px}.mec-yearly-view-wrap .mec-yearly-calendar-sec{box-shadow:-2px 0 5px rgba(0,0,0,.03) inset}}@media only screen and (max-width:1200px){.mec-yearly-view-wrap .mec-agenda-event-title a{font-size:12px;padding-right:6px}}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table{padding-bottom:10px;border-bottom:none}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt:hover{cursor:pointer}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-has-no-event,.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-has-no-event:hover{color:#bbb;cursor:default}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-day-active{background:#40d9f1;color:#fff;position:relative}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-day-active:after{content:'';position:absolute;display:block;bottom:-20px;left:50%;margin-left:-10px;width:0;border-width:10px;border-style:solid;border-color:#40d9f1 transparent transparent transparent}.mec-timetable-events-list{padding:10px 20px;border:none;margin:0}.mec-timetable-events-list .mec-timetable-event{padding:10px 0;border-bottom:1px dashed #ddd}.mec-timetable-events-list .mec-timetable-event:last-child{border:none}.mec-timetable-event .mec-timetable-event-span{font-size:12px;color:#444;padding-right:30px;line-height:22px}.mec-timetable-events-list .mec-timetable-event i{font-size:13px;color:#aaa;margin-right:3px;vertical-align:baseline}.mec-timetable-event .mec-timetable-event-span a{color:#333}.mec-timetable-event .mec-timetable-event-time{font-size:11px}.mec-timetable-event .mec-timetable-event-time i{vertical-align:text-bottom}.mec-timetable-event .mec-timetable-event-title{font-size:13px}.mec-timetable-event .mec-timetable-event-title .event-color{width:10px;height:10px}.mec-timetable-events-list .mec-timetable-event.mec-util-hidden{display:none}.mec-timetable-events-list.mec-util-hidden{display:none}@media only screen and (min-width:768px){.mec-timetable-events-list{display:table;width:100%;margin:10px 0 20px}.mec-timetable-events-list .mec-timetable-event{display:table-row;padding:0;border:none;background:#fff}.mec-timetable-events-list .mec-timetable-event:hover{background:#fafafa}.mec-timetable-event .mec-timetable-event-span{display:table-cell;padding:10px 15px;border-bottom:1px solid #ebebeb}.mec-timetable-events-list .mec-timetable-event:last-child .mec-timetable-event-span{border-bottom:none}}@media only screen and (max-width:767px){.mec-timetable-event .mec-timetable-event-title{display:block;width:100%;padding:5px 0 10px;font-weight:700}}.mec-timetable-t2-wrap{border:1px solid #e6e6e6;background:#fafafa;padding:0 15px 15px;overflow:hidden;box-shadow:0 3px 2px 0 rgba(0,0,0,.012)}.mec-timetable-t2-col{width:20%;float:left;min-height:20px;padding-right:1px;background:0 0}.mec-ttt2-title{background:#fafafa;color:#333;font-size:13px;font-weight:600;text-transform:uppercase;letter-spacing:1px;text-align:center;padding:25px 10px 10px;margin-bottom:1px}.mec-timetable-t2-col .mec-event-article{position:relative}.mec-timetable-t2-col .mec-event-article .event-color{position:absolute;width:auto;height:auto;left:0;right:0;top:0;bottom:0;margin:0;z-index:1;border-radius:2px}.mec-timetable-t2-content{position:relative;z-index:2;color:#fff;padding:15px 15px 20px;text-align:left;height:185px;margin-bottom:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title{line-height:22px;margin-bottom:13px;white-space:nowrap;padding-right:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title a{color:#fff;font-size:15px;font-weight:600;white-space:pre-line;overflow:hidden}.mec-timetable-t2-content div{color:#fff;font-size:11px;font-weight:400;line-height:19px;white-space:nowrap}.mec-timetable-t2-content div i{font-size:12px;margin-right:4px}@media only screen and (max-width:960px){.mec-timetable-t2-col{width:100%;float:none}}@media(min-width:961px){.mec-timetable-col-7{width:14.28%}.mec-timetable-col-6{width:16.6666%}}.mec-timetable-t3-wrap td{position:relative;padding:0}.mec-timetable-t3-wrap td a{width:100%;display:block;min-height:110px}.mec-weather-box{padding:15px 0}.mec-weather-head{min-height:90px;padding:5px 0;clear:both;overflow:hidden;margin-bottom:25px;border-radius:10px;background:#238af5;position:relative}.mec-weather-icon-box{float:left;width:80px;height:80px;border-radius:10px;overflow:hidden;background:#238af5}.mec-weather-icon{width:80px;height:80px;display:inline-block;border-radius:10px}.mec-weather-summary{float:left;width:calc(100% - 80px);padding-left:10px;margin:10px 0;height:60px}.mec-weather-summary-report{font-size:15px;color:rgba(255,255,255,.68);margin-bottom:6px}.mec-weather-summary-temp{font-family:Roboto,Sans-serif;font-weight:300;color:#fff;font-size:29px;line-height:1}.degrees-mode{background:rgba(0,0,0,.2);cursor:pointer;font-weight:300;font-size:18px;padding:4px 5px;line-height:1;color:#fff;position:absolute;border-radius:8px;bottom:16px;left:16px}.mec-weather-extras{width:auto;padding:10px 15px 0 15px;float:right;min-height:80px;color:#fff;font-size:13px;line-height:1}.mec-weather-extras{width:auto;padding:10px 15px 0 15px;float:right;min-height:80px;color:#fff;font-size:13px;line-height:1}.mec-weather-extras div{line-height:20px;height:20px}.mec-weather-extras span{color:rgba(255,255,255,.68);font-size:12px;text-transform:uppercase}.mec-weather-extras var{font-size:11px;letter-spacing:.4px}.mec-weather-icon.clear-day,.mec-weather-icon.clear-night{background-image:url(../img/mec-weather-icon-01.png)}.mec-weather-icon.partly-sunny-day,.mec-weather-icon.partly-sunny-night{background-image:url(../img/mec-weather-icon-02.png)}.mec-weather-icon.partly-cloudy-day,.mec-weather-icon.partly-cloudy-night{background-image:url(../img/mec-weather-icon-03.png)}.mec-weather-icon.cloudy,.mec-weather-icon.fog,.mec-weather-icon.wind{background-image:url(../img/mec-weather-icon-04.png)}.mec-weather-icon.thunderstorm{background-image:url(../img/mec-weather-icon-05.png)}.mec-weather-icon.rain{background-image:url(../img/mec-weather-icon-06.png)}.mec-weather-icon.hail,.mec-weather-icon.sleet,.mec-weather-icon.snow{background-image:url(../img/mec-weather-icon-07.png)}.mec-av-spot-wrap{width:auto;max-width:1200px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-av-spot{height:auto;border:1px solid #eee;box-shadow:0 6px 12px -4px rgba(0,0,0,.05)}.mec-av-spot .mec-event-article{position:relative;height:auto}.mec-av-spot .mec-av-spot-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:330px;float:none;margin:0;overflow:hidden}.mec-av-spot .mec-av-spot-content,.mec-av-spot .mec-av-spot-head{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-av-spot .mec-av-spot-head{background:#222;color:#fff;min-height:80px}.mec-av-spot .mec-av-spot-head .mec-av-spot-box{padding-top:25px;font-size:13px;color:#ddd}.mec-av-spot .mec-av-spot-head .mec-av-spot-box span{color:#40d9f1;font-size:40px;font-weight:700;font-style:italic}.mec-av-spot .mec-av-spot-head .mec-event-countdown{text-align:center;padding-top:10px;display:table;table-layout:fixed;margin:0 auto;float:right}.mec-av-spot .mec-av-spot-head .mec-event-countdown li{display:table-cell;padding:10px 20px;position:relative;height:60px}.mec-av-spot .mec-av-spot-head .mec-event-countdown p{margin-bottom:0}.mec-av-spot .mec-events-content p{margin-bottom:20px}.mec-av-spot-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-av-spot-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-av-spot-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-av-spot .mec-av-spot-col6{width:50%;float:left;height:100%}.mec-av-spot .mec-av-spot-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-av-spot .mec-av-spot-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-av-spot .mec-av-spot-col6 address{font-size:12px;margin-bottom:0}.mec-av-spot-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-av-spot-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05)}@media only screen and (max-width:768px){.mec-av-spot .mec-av-spot-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-av-spot-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-events-masonry-wrap{display:block;width:auto}.mec-masonry-item-wrap{width:calc(33.33% - 30px);padding:0;margin:0 15px 30px;min-height:10px;position:relative;float:left}.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}@media (max-width:480px){.mec-masonry-content.mec-event-grid-modern .mec-labels-normal{display:block}}.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-box-marker{box-shadow:5px 0 0 #40d9f1 inset}.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,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-custom,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-featured{overflow:hidden;position:relative}.mec-event-label-captions{z-index:1;position:absolute;top:20px;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);list-style:none;text-align:center}.mec-box-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-event-label-captions{display:none}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled:before{background:#de0404}.mec-daily-view-date-events article:before,ul.mec-weekly-view-dates-events article:before{padding:7px 40px!important;top:27px!important}.mec-event-grid-classic article .mec-fc-style,.mec-event-grid-minimal article .mec-fc-style,.mec-event-grid-simple article .mec-fc-style,.mec-timeline-event .mec-fc-style,.mec-timetable-wrap article .mec-fc-style,.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article.mec-event-cover-modern .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{font-size:9px;letter-spacing:.5px;text-transform:uppercase;background:#04de78;padding:2px 7px;color:#fff;position:relative;margin-left:5px;border-radius:2px}.mec-timeline-event.mec-label-canceled .mec-fc-style,.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-modern.mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-minimal article .mec-fc-style:before,.mec-event-grid-simple article .mec-fc-style:before,.mec-timeline-event .mec-fc-style:before,.mec-timetable-wrap article .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article .mec-fc-style:before,.mec-wrap .mec-event-list-modern article .mec-fc-style:before,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style:before{width:0;height:0;border-top:4px solid transparent!important;border-right:5px solid;border-bottom:4px solid transparent;margin:0;top:50%;left:-5px;transform:translateY(-4.5px);position:absolute;content:'';color:var(--background-color)}.mec-timeline-event.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-event-grid-classic article.mec-label-canceled:before,.mec-event-grid-classic article.mec-label-featured:before,.mec-event-grid-minimal article.mec-label-canceled:before,.mec-event-grid-minimal article.mec-label-featured:before,.mec-event-grid-simple article.mec-label-canceled:before,.mec-event-grid-simple article.mec-label-featured:before,.mec-timetable-wrap article.mec-label-canceled:before,.mec-timetable-wrap article.mec-label-featured:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled:before,.mec-wrap .mec-event-list-accordion article.mec-label-featured:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled:before,.mec-wrap .mec-event-list-modern article.mec-label-featured:before{display:none}.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{top:-1px;right:-3px;font-size:11px;white-space:nowrap}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style:before,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-canceled:before,.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-featured:before{-ms-transform:none;-webkit-transform:none;transform:none;-webkit-transition:none;transition:none;top:271px;right:0}.mec-timetable-wrap article .mec-fc-style{top:-2px;font-size:10px;right:0}.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;-ms-transform:rotate(0);-webkit-transform:rotate(0);transform:rotate(0);right:0;top:0}.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;right:0}.mec-event-grid-classic article .mec-fc-style{padding:5px 20px;font-size:12px;margin-top:8px;display:inline-block}ul.mec-categories{padding:0}ul.mec-categories li.mec-category{list-style:none}ul.mec-categories li.mec-category a{font-weight:400;color:#626262;font-size:13px;text-align:left;transition:all .23s ease;-webkit-transition:all .23s ease}.mec-hourly-schedule-speaker-info{background:#fff;padding:30px;border:1px solid #e6e6e6;max-width:740px;width:740px;margin-left:-110px}.mec-hourly-schedule-speaker-thumbnail{float:left;max-width:30%;width:30%}.mec-hourly-schedule-speaker-name{font-weight:700;font-size:26px;line-height:1.2;color:#333;text-transform:uppercase}.mec-hourly-schedule-speaker-details{float:left;width:69%;padding-left:25px}.mec-hourly-schedule-speaker-job-title{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-hourly-schedule-speaker-description{font-size:14px;font-weight:400;color:#6d7683;line-height:1.7;text-align:left}.mec-hourly-schedule-speaker-contact-information a i{color:#6b6b6b;background:#ebebeb;line-height:29px;margin:9px 7px 9px 0;width:30px;height:30px;display:inline-block;text-align:center;transition:all .2s ease;font-size:15px;cursor:pointer;border-radius:3px}.mec-hourly-schedule-speaker-contact-information a i:hover{background:#222;color:#fff}@media only screen and (max-width:479px){.mec-hourly-schedule-speaker-thumbnail{float:none;max-width:none;margin-right:0;margin-bottom:15px;width:100%}.mec-hourly-schedule-speaker-thumbnail img{width:100%}.mec-hourly-schedule-speaker-details{padding-left:0}.mec-hourly-schedule-speaker-info{width:90%;margin:0 auto}}.mec-profile .mec-profile-bookings{border:2px solid #e6e6e6;text-align:center}.mec-profile .mec-profile-bookings tbody tr:first-child{background:#f7f7f7;font-weight:700;text-transform:capitalize}.mec-profile .mec-profile-bookings tbody tr{border-bottom:1px solid #e6e6e6;font-size:14px}.mec-profile .mec-profile-bookings tbody tr td{border:1px solid #e6e6e6;padding:10px;text-align:center;word-break:initial}.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:53%;text-align:left}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8) i{color:#fe686a}.mec-profile .mec-event-status{padding:5px 10px;color:#fff;border-radius:2px;font-size:12px;line-height:12px;letter-spacing:.4px}.mec-profile .mec-event-status.mec-book-confirmed{background:#50d477}.mec-profile .mec-event-status.mec-book-pending{background:#fcbe69}.mec-profile .mec-event-status.mec-book-rejected{background:#fe686a}.mec-profile .mec-event-date{font-size:12px;color:#888}.mec-event-date,.mec-event-status{text-align:center}.mec-event-date .mec-tooltip,.mec-event-status .mec-tooltip{position:relative;width:fit-content;margin:auto}.mec-profile i{font-size:15px;color:#008aff;vertical-align:text-bottom;margin-right:4px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{min-width:250px;max-width:300px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#000;color:#fff;font-weight:400;font-size:14px;letter-spacing:.5px;line-height:1.5;position:absolute;z-index:99999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #535a61;padding:5px 10px 6px;border-radius:8px;text-align:center;font-style:normal;opacity:0;visibility:hidden;display:none}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{font-size:13px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;letter-spacing:1.1px;font-weight:500}.mec-event-date .mec-tooltip:hover .box:after,.mec-event-status .mec-tooltip:hover .box:after{content:'';position:absolute;width:12px;height:12px;left:calc(50% - 12px);bottom:-12px;transform:translate(50%,-50%) rotate(-45deg);background-color:#000;box-shadow:0 8px 9px -4px #535a61}.mec-event-status .mec-tooltip .box{min-width:100px}.mec-event-status.mec-book-confirmed .mec-tooltip .box,.mec-event-status.mec-book-confirmed .mec-tooltip:hover .box:after{background-color:#50d477}.mec-event-status.mec-book-rejected .mec-tooltip .box,.mec-event-status.mec-book-rejected .mec-tooltip:hover .box:after{background-color:#fe686a}.mec-event-status.mec-book-pending .mec-tooltip .box,.mec-event-status.mec-book-pending .mec-tooltip:hover .box:after{background-color:#fcbe69}.mec-event-date .mec-tooltip:hover .box,.mec-event-status .mec-tooltip:hover .box{opacity:1;visibility:visible;display:block}.mec-profile .mec-event-status{padding:0}.mec-profile .mec-booking-number-of-attendees{font-size:13px;color:#888}.mec-profile .mec-booking-number-of-attendees i,.mec-profile .mec-profile-bookings-view-invoice i{font-size:15px;color:#008aff;vertical-align:text-bottom;margin-right:4px}.mec-booking-attendees{background:#fff;padding:10px}.mec-booking-attendees{width:850px;text-align:center}.mec-booking-attendees-wrapper{border:2px solid #e6e6e6;font-size:14px}.mec-booking-attendees-head{display:table;width:100%;background:#f7f7f7;border-bottom:1px solid #e6e6e6;font-weight:700}.mec-booking-attendees-head span,.mec-booking-attendees-head-content>span{vertical-align:middle;display:table-cell;padding:7px;border-right:1px solid #e6e6e6;font-size:12px}.mec-booking-attendees-head-content{display:table;width:100%;border-bottom:1px solid #e6e6e6}.mec-booking-attendees-wrapper .mec-booking-attendees-head-content:last-child{border:none}.mec-booking-attendees-head span:nth-child(1),.mec-booking-attendees-head-content>span:nth-child(1){width:4%}.mec-booking-attendees-head span:nth-child(2),.mec-booking-attendees-head-content>span:nth-child(2){width:20%}.mec-booking-attendees-head span:nth-child(3),.mec-booking-attendees-head-content>span:nth-child(3){width:24%}.mec-booking-attendees-head span:nth-child(4),.mec-booking-attendees-head-content>span:nth-child(4){width:26%}.mec-booking-attendees-head span:nth-child(5),.mec-booking-attendees-head-content>span:nth-child(5){width:26%}@media only screen and (max-width:759px){.mec-booking-attendees{width:470px}.mec-booking-attendees-head span,.mec-booking-attendees-head-content>span{word-break:break-all}}@media(max-width:1366px){.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:6%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:40%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:12%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:8%}}@media(max-width:1024px){.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:30%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:15%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:10%}}@media(max-width:780px){.mec-profile .mec-profile-bookings tbody tr,.mec-profile i{font-size:12px}.mec-event-date .mec-tooltip .box{min-width:200px}.mec-event-status .mec-tooltip .box{min-width:90px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{padding:4px 5px!important}.mec-profile .mec-profile-bookings tbody tr{font-size:12px}}@media(max-width:480px){.mec-profile .mec-booking-number-of-attendees,.mec-profile .mec-profile-bookings tbody tr,.mec-profile i{font-size:8px!important}.mec-profile .mec-profile-bookings tbody tr td{padding:3px}.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:19%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:12%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:18%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:13%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:13%}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{font-size:8px}.mec-event-date .mec-tooltip .box{min-width:75px}.mec-event-status .mec-tooltip .box{min-width:70px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{padding:4px 5px!important}}.mec-woo-booking-checkout{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;border-radius:0;margin-bottom:6px;min-width:170px;margin-top:5px;text-align:center}.mec-woo-booking-checkout:hover{background:#222;color:#fff}.mec-woo-booking-checkout:focus,.mec-woo-booking-checkout:visited{color:#fff}.single-mec-events .lity-container{max-width:480px;width:480px}.lity-content .mec-events-meta-group-booking{width:100%;padding:20px 50px;background:#fff}.lity-content .mec-events-meta-group-booking .mec-booking form>h4{text-transform:uppercase;font-size:15px;font-weight:700;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative;text-align:center;line-height:1.2;margin-bottom:10px}.lity-content .mec-events-meta-group-booking .mec-booking form>h4:before{padding:1px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-35px;left:50%}.lity-content .mec-events-meta-group-booking .mec-event-ticket-available,.lity-content .mec-events-meta-group-booking .mec-event-ticket-name,.lity-content .mec-events-meta-group-booking .mec-event-ticket-price,.lity-content .mec-events-meta-group-booking .mec-ticket-variation-name,.lity-content .mec-events-meta-group-booking .mec-ticket-variation-price,.lity-content .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;clear:none;padding:5px 1em 3px 0;display:inline-block}.lity-content .mec-events-meta-group-booking .mec-event-ticket-available{margin-bottom:12px}.lity-content .mec-events-meta-group-booking select{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both;font-family:Montserrat,Helvetica,Arial,sans-serif}.lity-content .mec-events-meta-group-booking input[type=email]{color:#888;border:1px solid #e1e1e1;font-size:14px;display:block;width:100%;outline:0}.lity-content .mec-events-meta-group-booking input{margin-bottom:10px!important}.lity-content .mec-book-ticket-variation h5{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:0;clear:none;padding:5px 1em 3px 0;display:inline-block;text-transform:capitalize;font-family:Montserrat,Helvetica,Arial,sans-serif}.lity-content ul.mec-book-tickets-container{padding:0}.lity-content .mec-events-meta-group-booking input[type=email],.lity-content .mec-events-meta-group-booking input[type=number],.lity-content .mec-events-meta-group-booking input[type=text]{outline:0;font-family:Montserrat,Helvetica,Arial,sans-serif;display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both;margin-bottom:2px!important}.lity-container .mec-click-pay #mec_woo_add_to_cart_btn_r,.lity-content button[type=submit]{position:relative;border:none;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;min-width:170px;margin-top:5px;border-radius:0;margin-bottom:6px}.lity-content button[type=submit]:hover{background:#222}.lity-content .mec-book-tickets-container li{list-style:none}.lity-content .mec-events-meta-group-booking #mec_book_payment_form h4,.lity-content .mec-events-meta-group-booking li h4{font-size:19px;font-weight:700}.lity-content .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li{width:50%}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li:nth-child(even){border:none}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li span{display:block}.lity-content .mec-events-meta-group-booking button[type=submit]:after{display:none;font-family:simple-line-icons;content:"\e098";margin-left:4px;-webkit-animation:rotating 1.2s linear infinite;-moz-animation:rotating 1.2s linear infinite;-ms-animation:rotating 1.2s linear infinite;-o-animation:rotating 1.2s linear infinite;animation:rotating 1.2s linear infinite}.lity-content .mec-events-meta-group-booking button[type=submit].loading:after{display:inline-block}@media only screen and (max-width:480px){.lity-content .mec-events-meta-group-booking{padding:20px;width:340px;margin:0 auto}}@media(max-width:480px){.single-mec-events .lity-container{max-width:440px;width:440px;margin:0 auto!important}}@media(max-width:411px){.single-mec-events .lity-container{max-width:380px;width:380px}}@media(max-width:375px){.single-mec-events .lity-container{max-width:350px;width:350px}}@media(max-width:320px){.single-mec-events .lity-container{max-width:300px;width:300px}}.mec-events-meta-group-booking{position:relative}.mec-cover-loader:after{content:'';position:absolute;top:0;right:0;left:0;bottom:0;background:rgba(255,255,255,.5);z-index:99999}.mec-loader{background:rgba(0,0,0,0);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);z-index:9}.mec-loader,.mec-loader:after{border-radius:50%;width:5em;height:5em;z-index:999999999999}.mec-loader{font-size:10px;text-indent:-9999em;border-top:.5em solid rgba(0,0,0,.2);border-right:.5em solid rgba(0,0,0,.2);border-bottom:.5em solid rgba(0,0,0,.2);border-left:.5em solid #fff;-webkit-transform:translateZ(0);-ms-transform:translateZ(0);transform:translateZ(0);-webkit-animation:mecloader 1.1s infinite linear;animation:mecloader 1.1s infinite linear}@-webkit-keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.mec-google-recaptcha{margin:0 0 20px 16px}.mec-wrap *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap :after,.mec-wrap :before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap .clearfix:after,.mec-wrap .clearfix:before{content:'\0020';display:block;overflow:hidden;visibility:hidden;width:0;height:0}.mec-wrap .clearfix:after{clear:both}.mec-wrap .clearfix{zoom:1}.mec-wrap .clear,.mec-wrap .clr{clear:both;display:block;overflow:hidden;visibility:hidden}.mec-wrap .clr{visibility:visible;overflow:visible}.mec-container [class*=col-] img{max-width:100%}.mec-container{margin-right:auto;margin-left:auto;padding-left:10px;padding-right:10px}.mec-container:after,.mec-container:before{content:" ";display:table}.mec-container:after{clear:both}@media only screen and (max-width:479px){.mec-container{width:300px}}@media only screen and (min-width:480px) and (max-width:767px){.mec-container{width:420px}}@media only screen and (min-width:768px) and (max-width:960px){.mec-container{width:768px}}@media only screen and (min-width:961px){.mec-container{width:960px}}@media only screen and (min-width:1200px){.mec-container{width:1196px;padding-left:15px;padding-right:15px}}@media only screen and (min-width:1921px){.mec-container{max-width:1690px}}.mec-wrap .row{margin-left:-10px;margin-right:-10px}.mec-wrap .row:after,.mec-wrap .row:before{content:" ";display:table}.mec-wrap .row:after{clear:both}.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{position:relative;min-height:1px;padding-left:10px;padding-right:10px}@media only screen and (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{padding-left:15px;padding-right:15px}.mec-wrap .row{margin-left:-15px;margin-right:-15px}}.mec-container [class*=col-].alpha{padding-left:0}.mec-container [class*=col-].omega{padding-right:0}.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{float:left}.mec-wrap .col-xs-12{width:100%}.mec-wrap .col-xs-11{width:91.66666666666666%}.mec-wrap .col-xs-10{width:83.33333333333334%}.mec-wrap .col-xs-9{width:75%}.mec-wrap .col-xs-8{width:66.66666666666666%}.mec-wrap .col-xs-7{width:58.333333333333336%}.mec-wrap .col-xs-6{width:50%}.mec-wrap .col-xs-5{width:41.66666666666667%}.mec-wrap .col-xs-4{width:33.33333333333333%}.mec-wrap .col-xs-3{width:25%}.mec-wrap .col-xs-2{width:16.666666666666664%}.mec-wrap .col-xs-1{width:8.333333333333332%}@media (min-width:768px){.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9{float:left}.mec-wrap .col-sm-12{width:100%}.mec-wrap .col-sm-11{width:91.66666666666666%}.mec-wrap .col-sm-10{width:83.33333333333334%}.mec-wrap .col-sm-9{width:75%}.mec-wrap .col-sm-8{width:66.66666666666666%}.mec-wrap .col-sm-7{width:58.333333333333336%}.mec-wrap .col-sm-6{width:50%}.mec-wrap .col-sm-5{width:41.66666666666667%}.mec-wrap .col-sm-4{width:33.33333333333333%}.mec-wrap .col-sm-3{width:25%}.mec-wrap .col-sm-2{width:16.666666666666664%}.mec-wrap .col-sm-1{width:8.333333333333332%}}@media (min-width:961px){.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9{float:left}.mec-wrap .col-md-12{width:100%}.mec-wrap .col-md-11{width:91.66666666666666%}.mec-wrap .col-md-10{width:83.33333333333334%}.mec-wrap .col-md-9{width:75%}.mec-wrap .col-md-8{width:66.66666666666666%}.mec-wrap .col-md-7{width:58.333333333333336%}.mec-wrap .col-md-6{width:50%}.mec-wrap .col-md-5{width:41.66666666666667%}.mec-wrap .col-md-4{width:33.33333333333333%}.mec-wrap .col-md-3{width:25%}.mec-wrap .col-md-2{width:16.666666666666664%}.mec-wrap .col-md-1{width:8.333333333333332%}}@media (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9{float:left}.mec-wrap .col-lg-12{width:100%}.mec-wrap .col-lg-11{width:91.66666666666666%}.mec-wrap .col-lg-10{width:83.33333333333334%}.mec-wrap .col-lg-9{width:75%}.mec-wrap .col-lg-8{width:66.66666666666666%}.mec-wrap .col-lg-7{width:58.333333333333336%}.mec-wrap .col-lg-6{width:50%}.mec-wrap .col-lg-5{width:41.66666666666667%}.mec-wrap .col-lg-4{width:33.33333333333333%}.mec-wrap .col-lg-3{width:25%}.mec-wrap .col-lg-2{width:16.666666666666664%}.mec-wrap .col-lg-1{width:8.333333333333332%}}#mec_woo_add_to_cart_btn{min-width:170px;margin-top:5px;text-align:center}.mec-breadcrumbs{border-radius:2px;padding:9px 15px 6px;font-size:11px;color:#8d8d8d;letter-spacing:0;text-transform:none;font-weight:500;margin:auto 15px 33px 15px;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.025)}.mec-breadcrumbs-modern{margin:auto 0 33px 0}.mec-breadcrumbs a{color:#000;padding-left:4px}.mec-breadcrumbs a:hover{text-decoration:underline}.mec-breadcrumbs i{font-size:8px;margin:0 0 0 4px}.mec-breadcrumbs .container{padding-left:20px}.mec-content-notification a{margin-left:5px}.mec-content-notification{background:#f7f7f7;padding:10px 10px 10px;border:1px solid #e8e8e8}.mec-content-notification p{margin-bottom:0}.mec-fes-form #mec-advanced-wraper div:first-child>ul{border:1px solid #cfeff5;width:auto;box-shadow:0 1px 4px -2px #cfeff5;display:block;margin:5px 0 10px;padding:5px 0;border-radius:2px}.mec-fes-form #mec-advanced-wraper div:first-child>ul:last-of-type{margin-bottom:35px}#mec-advanced-wraper div:first-child>ul span{display:none}#mec-advanced-wraper div:first-child>ul *{display:inline-block;background:#fff;font-size:12px;color:#717273;text-align:center}#mec-advanced-wraper div:first-child>ul>li{width:60px;font-weight:700;margin:0 10px 0 0;padding:4px 0;border-right:1px solid #cfeff5}#mec-advanced-wraper div:first-child>ul>ul>li{margin:0;padding:2px 10px;cursor:pointer;border-radius:2px;transition:all .18s ease}.mec-fes-form #mec-advanced-wraper div:first-child>ul>ul>li.mec-active,.mec-fes-form #mec-advanced-wraper div:first-child>ul>ul>li:hover{background:#40d9f1!important;box-shadow:0 1px 9px -3px #40d9f1;color:#fff!important}.mec-search-bar-wrap .mec-search-form .mec-text-input-search{width:83%}.mec-search-bar-wrap .mec-search-form .mec-ajax-search-result .mec-text-input-search{width:100%;float:none}.mec-search-bar-wrap input#mec-search-bar-input{width:calc(100% - 84%);margin-left:11px;background:#40d9f1;Color:#fff;font-weight:400}.mec-text-input-search+input#mec-search-bar-input{margin-left:-3px}.mec-search-bar-wrap input#mec-search-bar-input:hover{background:#000}.mec-wrap.mec-search-bar-wrap .mec-totalcal-box input{float:none}@media(max-width:768px){.mec-search-bar-wrap .mec-search-form .mec-text-input-search{display:inline-block}}@media(max-width:480px){.mec-search-bar-wrap .mec-search-form .mec-text-input-search{width:64%}.mec-search-bar-wrap input#mec-search-bar-input{width:calc(100% - 67%)}}.mec-wrap.mec-search-bar-wrap .mec-totalcal-box{overflow:visible}.mec-ajax-search-result{position:relative}.mec-search-bar-wrap.mec-wrap .mec-totalcal-box input[type=text]{width:calc(100% - 36px)}.mec-search-bar-wrap.mec-wrap .mec-totalcal-box input[type=text]:focus{border-color:#efefef}div#mec-ajax-search-result-wrap{position:absolute;top:100%;opacity:0;visibility:hidden;width:calc(100% - 2px);min-height:50px;left:0;right:0;padding:0 10px;z-index:9999;transition:all .3s ease}.mec-ajax-search-result-events{background:#fff;padding:10px 20px;border:1px solid #efefef;border-top:none}.mec-ajax-search-result-events article:first-of-type{border:none}article.mec-search-bar-result{text-align:left;margin-bottom:0;padding-bottom:25px;padding-top:26px;border-top:1px solid #efefef;transition:all .33s ease;clear:both}.mec-search-bar-result .mec-event-list-search-bar-date{width:64px;height:64px;margin-right:10px;font-size:11px;text-transform:uppercase;float:left;text-align:center;padding-top:2px}.mec-search-bar-result .mec-event-list-search-bar-date span{font-size:40px;line-height:30px;font-weight:700;display:block;margin-bottom:6px;letter-spacing:1px}.mec-search-bar-result .mec-event-image{float:left;margin-right:20px;width:65px;height:auto}.mec-search-bar-result .mec-event-time{font-size:11px;line-height:1.1;margin:0}.mec-search-bar-result .mec-event-time i{color:#40d9f1;float:none;width:unset;height:unset;font-size:inherit;margin-right:3px;border:none;padding:0}.mec-search-bar-result .mec-event-title{font-size:13px;padding:0;margin:10px 0 8px;font-weight:700;text-transform:uppercase}.mec-search-bar-result .mec-event-title a{text-decoration:none;color:#494949;transition:color .3s ease}.mec-search-bar-result .mec-event-detail{font-size:13px;line-height:1.3;font-family:Roboto,sans-serif;color:#9a9a9a;margin-bottom:0}.mec-wrap.mec-modern-search-bar .mec-totalcal-box{background:rgba(255,255,255,.87);border:none;padding:35px;border-radius:3px;box-shadow:0 3px 13px rgba(0,0,0,.4);position:relative}.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=search],.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=text]{height:58px;background:rgba(255,255,255,.99);border-radius:2px;box-shadow:0 4px 8px rgba(0,0,0,.1) inset;border:1px solid #ccc;width:100%;padding-left:45px;padding-right:13px;font-size:16px}.mec-wrap.mec-modern-search-bar .mec-totalcal-box .mec-text-input-search i{position:absolute;background:0 0;border:none;font-size:21px;left:15px;top:calc(50% - 19px);color:#40d9f1}.mec-wrap.mec-modern-search-bar .mec-text-input-search{position:relative;height:58px}.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=submit]{height:58px;border:none;border-radius:2px;background:#fc4a1a;font-size:17px;font-weight:700!important}.mec-wrap.mec-modern-search-bar .mec-text-input-search+input#mec-search-bar-input{margin-left:0}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{height:45px;background:rgba(255,255,255,.99);border-radius:2px;box-shadow:0 4px 8px rgba(0,0,0,.1) inset;border:1px solid #ccc;padding-right:13px;font-size:16px;border-left:0}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap i{height:45px;background:#ffff;border-radius:2px 0 0 2px;box-shadow:none;border:1px solid #ccc;font-size:15px;padding-top:14px;border-right:0;color:#40d9f1;margin-right:-1px}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap{min-height:64px}@media(max-width:768px){.mec-wrap.mec-modern-search-bar .mec-search-form .mec-text-input-search{width:70%}.mec-wrap.mec-modern-search-bar input#mec-search-bar-input{width:calc(100% - 72%)}}@media(max-width:480px){.mec-wrap.mec-modern-search-bar input#mec-search-bar-input{width:92%;padding:0 10px;position:relative;display:block;margin-left:11px}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-text-input-search{width:100%;margin-bottom:20px}.mec-wrap.mec-modern-search-bar .mec-text-input-search+input#mec-search-bar-input{margin-left:10px}}.mec-related-events{margin-right:-15px;margin-left:-15px}.mec-related-events-wrap{margin-top:50px}.mec-related-events-wrap h3.mec-rec-events-title:before{content:"";background:#2c2f34;width:46px;height:4px;position:absolute;top:59px;left:0}.mec-related-events-wrap h3.mec-rec-events-title{font-size:21px;font-weight:600;padding:17px 0;margin-bottom:28px;text-transform:uppercase;border-bottom:1px solid #e8e8e8;position:relative}.mec-related-event-post figure{margin:0}.mec-related-event-post figure img{width:100%}.mec-related-event-content{background-color:#fff;margin:-27px 30px 15px;position:relative;max-width:90%;padding:13px 21px 16px 19px}.mec-related-event-content h5 a{font-size:16px;color:#121212;font-weight:600;transition:all .3s ease}.mec-next-previous-events{width:100%;display:block;padding:0}.mec-next-previous-events li{list-style:none;width:50%;display:inline-block;margin:40px 0 40px}.mec-next-previous-events li a{padding:9px 14px 9px 14px;border:1px solid #000;transition:.3s}.mec-wrap .mec-next-previous-events li a:hover{color:#fff}.mec-previous-event{float:left;text-align:left}.mec-next-event ul{padding-left:0}.mec-next-previous-events .mec-previous-event i{padding-right:20px}.mec-next-previous-events .mec-next-event i{padding-left:20px}.mec-next-multiple ul{padding:0}.mec-next-multiple ul li a{display:block;position:relative;padding:11px 14px 9px;z-index:9}.mec-next-multiple ul .mec-date,.mec-next-multiple ul .mec-time{display:inline-block;width:50%}.mec-next-multiple ul .mec-date{float:left;text-align:left}.mec-next-multiple ul .mec-time{text-align:right;position:relative;z-index:-1}.mec-next-multiple ul .mec-time dd{margin:0;padding:0}.mec-next-multiple ul .mec-date .mec-start-date-label,.mec-next-multiple ul .mec-time .mec-events-abbr{font-size:14px;line-height:24px}@media(max-width:1280px){.mec-next-multiple ul li a{padding:7px 9px 5px}.mec-next-multiple ul .mec-date .mec-start-date-label,.mec-next-multiple ul .mec-time .mec-events-abbr{font-size:12px}}@media(max-width:480px){.mec-next-previous-events li{list-style:none;width:100%;display:block;margin:10px 0;float:unset}.mec-next-previous-events li a{width:100%;max-width:100%;float:unset;display:block;text-align:center;font-size:16px}}.mec-fes-form-cntt #mec-organizer-payments ul{list-style:none;background:0 0;margin:0;padding-left: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-fes-form #mec_gateway_options_form_stripe_connection_button{padding:9px 13px!important}#mec-login-form.mec-login-form{width:100%;background:#fff;padding:20px;margin:0 auto;text-align:center;position:relative}#mec-login-form.mec-login-form .mec-login-input{display:block;width:286px;margin:0 auto;margin-bottom:12px}#mec-login-form.mec-login-form .mec-login-forgotpassword{display:inline-block}.mec-login-forgotpassword a{color:#000}#mec-login-form.mec-login-form .mec-login-submit{float:right;text-align:right;width:49%;padding-right:2px}#mec-login-form.mec-login-form .mec-login-input input{border:none;box-shadow:none;background:#fff;color:#ccc;border-left:1px solid #e6e6e6;padding:0;height:100%;background-image:none!important;padding-left:10px;padding-right:0;width:222px;margin-left:0;clear:none;float:left}#mec-login-form.mec-login-form .mec-login-input label{border:1px solid #e6e6e6;height:52px;display:inline-block;padding:0;border-radius:3px;overflow:hidden;box-shadow:0 2px 4px rgba(0,0,0,.04)}#mec-login-form.mec-login-form .mec-login-input label i{padding:15px 13px 17px 16px;vertical-align:middle;font-size:20px;width:50px;color:#c5cad0;background:#fafafa;margin-right:0;float:left}#mec-login-form.mec-login-form .mec-login-forgotpassword{float:left;width:49%;text-align:left;padding-top:10px;font-size:13px;padding-left:2px}#mec-login-form.mec-login-form button{width:120px;height:44px;border:none;color:#fff;border-radius:3px;font-size:12px;font-weight:700;letter-spacing:1px;text-transform:uppercase;transition:all .22s ease;margin:0;min-width:unset}.mec-login-form button{box-shadow:0 4px 22px -7px #40d9f1;background-color:#40d9f1}#mec-login-form.mec-login-form button:hover{background:#222;box-shadow:0 3px 14px -4px #333}#mec-login-form.mec-login-form .mec-login-form-footer{width:286px;margin:0 auto;margin-top:20px;clear:both;position:relative;display:block;min-height:50px}#mec-login-form.mec-login-form .mec-ajax-login-loading{position:absolute;background:#ffffffc2;left:0;right:0;top:0;bottom:0}#mec-login-form.mec-login-form .lds-ripple{position:absolute;width:64px;height:64px;top:calc(50% - 23px);left:calc(50% - 23px)}#mec-login-form.mec-login-form .lds-ripple div{position:absolute;border:4px solid #40d9f1;opacity:1;border-radius:50%;animation:lds-ripple 1.2s cubic-bezier(0,.2,.1,.8) infinite}#mec-login-form.mec-login-form .lds-ripple div:nth-child(2){animation-delay:-.5s}#mec-login-form.mec-login-form .mec-ajax-login-loading-text{position:absolute;min-width:200px;top:calc(50% - 18px);left:calc(50% - 124px);color:#fff;padding:10px 22px;border-radius:3px;background:#fff;height:47px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text strong{color:#3fcc60}#mec-login-form.mec-login-form .mec-ajax-login-loading-text strong:before{content:"";position:absolute;top:8px;left:1px;border-right:2px solid #3fcc60;border-bottom:2px solid #3acb5c;transform:rotate(45deg);transform-origin:0 100%;color:#000;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards;width:8px;height:14px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong:after{content:"";position:absolute;top:14px;left:5px;border-bottom:2px solid #ff5d39;transform:rotate(45deg);transform-origin:0 100%;color:#000;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards;width:14px;height:4px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong{color:#ff5d39}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong:before{border-color:#ff5d39;border-bottom:none}@keyframes lds-ripple{0%{top:28px;left:28px;width:0;height:0;opacity:1}100%{top:-1px;left:-1px;width:58px;height:58px;opacity:0}}.mec-book-form-gateway-checkout [id*=mec_do_transaction_stripe_] .mec-form-row:first-child{margin-bottom:20px}.mec-events-meta-group-booking .StripeElement{box-sizing:border-box;height:40px;padding:10px 12px;border:1px solid transparent;border-radius:4px;background-color:#fff;box-shadow:0 1px 3px 0 #e6ebf1;-webkit-transition:box-shadow 150ms ease;transition:box-shadow 150ms ease;margin-bottom:20px;background:#fff}.mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text]{box-sizing:border-box;height:40px;padding:10px 12px;border:0!important;border-radius:4px;background-color:#fff;box-shadow:0 1px 3px 0 #e6ebf1!important;-webkit-transition:box-shadow 150ms ease;transition:box-shadow 150ms ease;margin-bottom:20px;background:#fff!important}.mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text]:focus{outline:0}.mec-events-meta-group-booking .StripeElement--focus{box-shadow:0 1px 3px 0 #cfd7df}.mec-events-meta-group-booking .StripeElement--invalid{border-color:#fa755a}.mec-events-meta-group-booking .StripeElement--webkit-autofill{background-color:#fefde5!important}.mec-booking-tab-content .button,.mec-booking-tab-content .mec-bfixed-field-add-option,.mec-booking-tab-content .mec-reg-field-add-option,.mec-fes-form .mec-form-row .button:not(.wp-color-result),.mec-fes-form input[type=file],ul#mec_bfixed_form_fields li .mec_bfixed_field_remove,ul#mec_reg_form_fields li .mec_reg_field_remove{height:40px;margin-top:1px;text-decoration:none;font-size:14px;line-height:34px!important;margin:0;padding:0 15px 1px!important;text-transform:none;letter-spacing:0;font-weight:600;color:#40d9f1;background:#fff;border-radius:3px;margin-right:8px;border:2px solid #cfeff5;box-shadow:0 2px 6px -3px #cfeff5}.mec-booking-tab-content .button:hover,.mec-booking-tab-content .mec-bfixed-field-add-option:hover,.mec-booking-tab-content .mec-reg-field-add-option:hover,.mec-fes-form .mec-form-row .button:not(.wp-color-result):hover{background:#40d9f1;color:#fff;border-color:#40d9f1;box-shadow:0 2px 6px -3px #40d9f1}.mec-fes-form .mec-form-row input+button.button{vertical-align:top}.mec-fes-form .mec-form-row .quicktags-toolbar input.button.button-small{border-width:1px;padding:0 7px;color:#80c6d2;font-weight:400;margin:1px;transform:none}.mec-fes-form input[type=file]{max-width:166px;text-align:center;height:44px;transition:all .2s ease;border-radius:5px!important;border:2px dashed #b8e9f3}.mec-fes-form input[type=file]:hover{box-shadow:0 2px 16px -3px #cfeff5}.mec-fes-form input[type=file]::-webkit-file-upload-button{visibility:hidden;width:1px;height:38px}.mec-fes-form input[type=file]::-moz-file-upload-button{visibility:hidden;width:1px;height:38px}.mec-fes-form .mec-meta-box-fields>label{padding:0}#mec_bfixed_form_fields li,#mec_reg_form_fields li{list-style:none}ul#mec_bfixed_form_fields,ul#mec_reg_form_fields{padding:0;margin:0}ul#mec_bfixed_form_fields li,ul#mec_reg_form_fields li{background:#f8feff;margin:6px -20px;padding:15px 25px 10px;width:auto;font-size:13px;border-top:1px solid #e8fafd;border-bottom:1px solid #e8fafd;position:relative}ul#mec_bfixed_form_fields li .mec_bfixed_field_remove,ul#mec_reg_form_fields li .mec_reg_field_remove{position:absolute;right:10px;top:10px;margin:0;padding:6px 8px!important;font-size:11px;line-height:12px!important;min-height:10px;height:auto;display:block;cursor:pointer;color:#ea6485;border-color:#ffd2dd;letter-spacing:.4px}ul#mec_bfixed_form_fields li .mec_bfixed_field_remove:hover,ul#mec_reg_form_fields li .mec_reg_field_remove:hover{background:#ea6485;color:#fff;border-color:#ea6485;box-shadow:0 2px 6px -3px #ea6485}#mec_bfixed_form_fields input[type=checkbox],#mec_bfixed_form_fields input[type=radio],#mec_reg_form_fields input[type=checkbox],#mec_reg_form_fields input[type=radio],.mec-form-row input[type=checkbox],.mec-form-row input[type=radio]{background-color:#fff;border:1px solid #cfeff5;box-shadow:0 1px 3px -1px #cfeff5;padding:9px;border-radius:3px;min-width:24px;min-height:24px;display:inline-block!important;vertical-align:middle;float:none;transition:all .18s ease;outline:0;margin:1px 4px 4px 0;text-align:left;cursor:pointer;-webkit-appearance:none;-moz-appearance:none}#mec_bfixed_form_fields input[type=checkbox]:focus,#mec_bfixed_form_fields input[type=radio]:focus,#mec_reg_form_fields input[type=checkbox]:focus,#mec_reg_form_fields input[type=radio]:focus,.mec-form-row input[type=checkbox]:focus,.mec-form-row input[type=radio]:focus{outline:0}#mec_bfixed_form_fields input[type=radio],#mec_reg_form_fields input[type=radio],.mec-form-row input[type=radio]{-webkit-appearance:none;border-radius:20px!important;min-width:20px;min-height:20px;margin:0 0 4px 0;vertical-align:middle}#mec_bfixed_form_fields input[type=checkbox]:hover,#mec_bfixed_form_fields input[type=radio]:hover,#mec_reg_form_fields input[type=checkbox]:hover,#mec_reg_form_fields input[type=radio]:hover,.mec-form-row input[type=checkbox]:hover,.mec-form-row input[type=radio]:hover{border-color:#40d9f1}#mec_bfixed_form_fields input[type=checkbox]:checked,#mec_bfixed_form_fields input[type=radio]:checked,#mec_reg_form_fields input[type=checkbox]:checked,#mec_reg_form_fields input[type=radio]:checked,.mec-fes-form .mec-form-row input[type=checkbox]:checked,.mec-fes-form .mec-form-row input[type=radio]:checked{box-shadow:0 1px 6px -2px #40d9f1;border-color:#40d9f1;background:#40d9f1!important;border-radius:2px;position:relative}.mec-form-row input[type=radio]:checked{box-shadow:0 1px 6px -2px #40d9f1,inset 0 0 0 3px #fff!important}#mec_bfixed_form_fields input[type=checkbox]:checked::before,#mec_reg_form_fields input[type=checkbox]:checked::before,.mec-form-row input[type=checkbox]:checked:before{content:"";font:normal;position:absolute;top:12px;left:5px;margin:0;vertical-align:middle;line-height:1;border-right:2px solid #fff!important;border-bottom:2px solid #fff!important;transform:rotate(45deg);transform-origin:0 100%;color:#fff;transition:all .2s ease;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards}@keyframes checkbox-check{0%{width:0;height:0;border-color:#fff;transform:translate3d(0,0,0) rotate(45deg)}33%{width:6px;height:0;transform:translate3d(0,0,0) rotate(45deg)}100%{width:6px;height:12px;border-color:#fff;transform:translate3d(0,-12px,0) rotate(45deg)}}#wrap #mec-event-data input[type=radio]{position:relative}#wrap #mec-event-data input[type=radio]:empty::before{display:none}#mec_bfixed_form_field_types .button,#mec_reg_form_field_types .button{position:relative;outline:0;border-radius:50px;padding:2px 21px 2px 31px!important;line-height:1;font-size:11px;font-weight:600;color:#40d9f1;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 2px 6px -3px #40d9f1;border:2px solid #cfeff5}#mec_fes_location_remove_image_button,#mec_fes_organizer_remove_image_button,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button,#mec_meta_box_tickets_form [id^=mec_ticket_row] button,#mec_reg_form_field_types .button.red{color:#ea6485;box-shadow:0 2px 6px -3px #ea6485;background:#fff;border-color:#ffd2dd}#mec_fes_location_remove_image_button:hover,#mec_fes_organizer_remove_image_button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button:hover,#mec_meta_box_tickets_form [id^=mec_ticket_row] button:hover,#mec_reg_form_field_types .button.red:hover{background:#ea6485;color:#fff}#mec_bfixed_form_field_types .button:before,#mec_reg_form_field_types .button:before{position:absolute;left:12px;color:#40d9f1;content:"\e095";font-family:simple-line-icons;font-size:13px;display:inline-block}#mec_reg_form_field_types .button.red:before{color:#ea6485}#mec_bfixed_form_field_types .button:hover:before,#mec_reg_form_field_types .button.red:hover:before,#mec_reg_form_field_types .button:hover:before{color:#fff}#mec_fes_location_remove_image_button:hover,#mec_fes_organizer_remove_image_button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button:hover,#mec_meta_box_tickets_form [id^=mec_ticket_row] button:hover,#mec_price_per_dates_container .button:hover,#mec_reg_form_field_types .button.red:hover{color:#fff;border:2px solid #ea6485}#mec_taxes_fees_container_toggle [id^=mec_remove_fee_button],#mec_ticket_variations_list [id^=mec_remove_ticket_variation_button]{color:#ea6485;border-color:#ffd2dd}#mec_taxes_fees_container_toggle [id^=mec_remove_fee_button]:hover,#mec_ticket_variations_list [id^=mec_remove_ticket_variation_button]:hover{color:#fff;border:2px solid #ea6485;background:#ea6485}#mec_fees_list [id^=mec_remove_fee_button],#mec_meta_box_ticket_variations_form .mec-form-row [id^=mec_remove_ticket_variation_button]{margin-left:14px!important}#mec_meta_box_hourly_schedule_days .mec-add-hourly-schedule-button{line-height:10px!important}#mec_meta_box_tickets_form [id^=mec_ticket_row] .mec_add_price_date_button{color:#40d9f1;box-shadow:0 2px 6px -3px #40d9f1;border:2px solid #cfeff5}#mec_meta_box_tickets_form [id^=mec_ticket_row] .mec_add_price_date_button:hover,#mec_reg_form_field_types .button:hover{color:#fff;border:2px solid #40d9f1;background:#40d9f1}.mec-fes-form #mec_bfixed_form_fields span.mec_bfixed_field_sort,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_sort{font-size:0;color:#fff;padding-left:20px}.mec-fes-form #mec_bfixed_form_fields .mec_bfixed_field_option_sort,.mec-fes-form #mec_reg_form_fields .mec_reg_field_options,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_option_sort{font-size:0}.mec-fes-form #mec_bfixed_form_fields span.mec_bfixed_field_option_sort:before,.mec-fes-form #mec_bfixed_form_fields span.mec_bfixed_field_sort:before,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_option_sort:before,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_options:before,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_sort:before{position:absolute;left:px;top:12px;width:80px;height:20px;display:block;cursor:move;font-family:simple-line-icons;content:"\e023";font-size:18px;color:#888}.mec-fes-form #mec_bfixed_form_fields span.mec_bfixed_field_option_sort:before,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_option_sort:before,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_options:before{font-size:13px;left:2px;top:26px;width:14px;height:14px}.mec-fes-form #mec_bfixed_form_fields .mec_bfixed_field_options,.mec-fes-form #mec_reg_form_fields .mec_reg_field_options{margin-top:20px}.mec-fes-form #mec_fes_form #mec_bfixed_form_fields .mec_bfixed_notification_placeholder{font-size:0}.mec-form-row input+span.mec-tooltip,.mec-form-row select+span.mec-tooltip{bottom:10px}.mec-form-row label+span.mec-tooltip{bottom:8px}.mec-form-row textarea+span.mec-tooltip{bottom:auto;vertical-align:top;top:12px}.mec-form-row span+span.mec-tooltip{bottom:0;vertical-align:middle}.mec-form-row .mec-col-8 input[type=text],.mec-form-row .mec-col-8 select,.mec-form-row .mec-col-8 span.mec-archive-skins{vertical-align:top}.mec-form-row input:disabled{opacity:.6;background:#f6f6f6}.mec-form-row p{font-size:12px!important;line-height:18px!important;color:#97b2bb!important}.mec-form-row p.description{font-style:italic}.ui-datepicker.ui-widget{border:1px solid #e8e8e8;box-shadow:0 1px 9px rgba(0,0,0,.12);font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif}table.ui-datepicker-calendar{margin-bottom:0}.ui-datepicker-calendar th{font-weight:700;color:#4a4b4c}.ui-datepicker-calendar td,.ui-datepicker-calendar th,.ui-datepicker-calendar tr{border:none}.ui-datepicker.ui-widget select{font-weight:600;font-size:12px;display:inline-block;border-radius:2px;padding:2px 10px;margin:5px 3px;width:auto;min-height:20px;height:26px;border:1px solid #e3e3e3;box-shadow:inset 0 1px 3px rgba(0,0,0,.04)}.ui-datepicker.ui-widget table{border-spacing:2px;border:none}.ui-datepicker.ui-widget td,.ui-datepicker.ui-widget tr{padding:0;background:0 0!important}.ui-datepicker.ui-widget td a{color:#9a9b9c;font-weight:600;width:30px;height:30px;line-height:30px;display:inline-block;border-radius:33px;padding:0;background:#fff;transition:all .2s ease}.ui-datepicker.ui-widget td a.ui-state-active,.ui-datepicker.ui-widget td a:hover{background:#40d9f1;color:#fff}.ui-datepicker.ui-widget .ui-datepicker-next,.ui-datepicker.ui-widget .ui-datepicker-prev{color:#40d9f1;width:30px;height:30px;line-height:30px;display:inline-block;text-align:center;border-radius:33px;background:#ecfcff;transition:all .2s ease}.ui-datepicker.ui-widget .ui-datepicker-next:hover,.ui-datepicker.ui-widget .ui-datepicker-prev:hover{background:#fff;box-shadow:0 0 7px -3px rgba(0,0,0,.4)}.mec-fes-form .mec-tooltip .dashicons-before:before{color:#40d9f1}.mec-fes-form button[type=submit].mec-fes-sub-button{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;border-radius:3px;background:#40d9f1;color:#fff;height:54px;font-size:17px;font-weight:700;box-shadow:0 2px 8px -4px #40d9f1;display:block;transition:all .28s ease;text-transform:uppercase;margin:20px 0 0;padding:14px 20px;border:0;cursor:pointer;text-align:center;letter-spacing:.1em;line-height:1}.mec-fes-form button[type=submit].mec-fes-sub-button:hover{box-shadow:0 2px 12px -2px #40d9f1}.mec-fes-form button[type=submit].mec-fes-sub-button:focus{margin-bottom:-2px;background:#1dc2dc}.mec-fes-form .mec-title span.mec-dashicons{color:#40d9f1;float:left;margin-right:5px}.mec-fes-form .mec-tooltip .box h5{padding:14px 2px}#mec_fes_form,.mec-fes-form-top-actions{max-width:838px;margin:0 auto}@media only screen and (min-width:961px){.mec-fes-form .mec-fes-form-cntt{width:calc(100% - 300px);float:left;padding-right:20px;max-width:538px;display:block}.mec-fes-form .mec-fes-form-sdbr{width:300px}}.mec-fes-form .quicktags-toolbar,.mec-fes-form div.mce-toolbar-grp{background:#ecfcff;border-bottom:1px solid #cfeff5;box-shadow:0 1px 0 1px #cfeff5}.mec-fes-form .quicktags-toolbar{margin-right:-1px;border-top:1px solid #cfeff5}.mec-fes-form div.mce-statusbar{border-top-color:#cfeff5}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-listbox{border:1px solid #cfeff5;border-radius:3px}.mec-fes-form .mce-tinymce.mce-container.mce-panel{border:1px solid #cfeff5;box-shadow:0 2px 6px -3px #cfeff5;border-radius:2px 0 2px 2px}.mec-fes-form .wp-editor-tools .wp-media-buttons{transform:translateY(-6px);margin-top:-6px}.mec-fes-form .wp-editor-tabs{padding-right:0;margin-right:-2px}.mec-fes-form .wp-editor-tabs .wp-switch-editor{border-radius:3px 3px 0 0;border-color:#cfeff5;background:#fff;color:#96b8bd;border-bottom:1px solid #ecfcff}.mec-fes-form .html-active .switch-html,.mec-fes-form .tmce-active .switch-tmce,.mec-fes-form .wp-editor-tabs .wp-switch-editor:active{background:#ecfcff;color:#40d9f1}.mec-fes-form .wp-editor-container,.mec-fes-form div.mce-edit-area.mce-panel{border:none;box-shadow:none}.mec-fes-form .wp-editor-container textarea.wp-editor-area{max-width:100%}.mec-fes-form .mce-toolbar .mce-listbox button{font-size:12px;line-height:22px;color:#798f96}.mec-fes-form .mce-toolbar .mce-ico{color:#627f88}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-active,.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn:active,.mec-fes-form .qt-dfw.active{background:#fff;border-color:#40d9f1;box-shadow:inset 0 2px 6px -3px rgba(106,231,255,.7)}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-active .mce-ico{color:#40d9f1}body .mce-menu .mce-menu-item.mce-active.mce-menu-item-normal,body .mce-menu .mce-menu-item.mce-selected,body .mce-menu .mce-menu-item:focus,body .mce-menu .mce-menu-item:hover,body.mce-menu .mce-menu-item.mce-active.mce-menu-item-preview{background:#40d9f1;color:#fff}.mec-fes-form .mec-not-in-days-day{display:inline-block;padding:4px 32px 4px 15px;border-radius:33px;border:1px solid #cfeff5;box-shadow:0 1px 3px -1px #cfeff5;background:#fbfeff;color:#40d9f1;vertical-align:top}.mec-fes-form .mec-not-in-days-remove{display:inline-block;padding:0 1px 0 0;margin-left:-30px;vertical-align:sub;background:#ff918a;color:#fff;font-family:cursive;width:21px;height:21px;line-height:17px;text-align:center;border-radius:20px;cursor:pointer}.mec-fes-list ul li .mec-event-status{float:left;margin-right:10px;margin-left:0;font-size:11px;font-weight:400;letter-spacing:.3px;border-radius:3px;padding:4px 8px}.mec-fes-form .post-status.mec-book-confirmed:before,.mec-fes-list ul li .mec-event-status.mec-book-confirmed:before{content:"";margin:0;vertical-align:middle;line-height:1;border-right:2px solid #fff!important;border-bottom:2px solid #fff!important;transform:rotate(45deg);color:#fff;width:6px;height:12px;float:left;margin-right:6px}.mec-fes-list ul li .mec-fes-event-export a:before,.mec-fes-list ul li .mec-fes-event-remove:before,.mec-fes-list ul li .mec-fes-event-view a:before,.mec-fes-list-top-actions a:before{content:"\e054";font-family:simple-line-icons;font-size:13px;vertical-align:middle}.mec-fes-list ul li .mec-fes-event-view a:before{content:"\e087"}.mec-fes-list-top-actions a:before{content:"\e095";font-weight:400;margin-right:6px}.mec-fes-list ul li .mec-fes-event-export a:before{content:"\e083"}.mec-fes-form .post-status{border-radius:20px}.mec-fes-form .post-status.mec-book-confirmed:before{height:20px;width:9px;margin:3px 10px}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker-calendar th{height:auto;padding:0}.ui-datepicker .ui-datepicker-calendar td a,.ui-datepicker-calendar th{font-size:14px;line-height:30px}.mec-fes-form .description{font-size:16px}.mec-fes-form input[type=file]{text-align:left}.mec-fes-export-wrapper{width:640px;background:#f8feff;padding:40px 25px}.mec-fes-export-wrapper .mec-fes-btn-date{font-size:16px;line-height:44px;overflow:hidden}.mec-fes-export-wrapper .date-messgae{font-family:sans-serif;padding:2px 18px}.mec-fes-list ul li .mec-event-export-csv,.mec-fes-list ul li .mec-event-export-excel{font-size:12px;border:1px solid #40d9f1;padding:1px 4px;background:rgba(141,229,243,.18);border-radius:4px;color:#40d9f1;font-family:sans-serif;cursor:pointer;display:inline-block;height:26px;line-height:22px}.mec-export-badge{font-size:11px;color:#40d9f1;width:auto;height:24px;line-height:25px;display:inline-block;padding:0 8px;text-align:center;border-radius:3px;background:#ecfcff;transition:all .2s ease}.mec-fes-list ul li .mec-fes-event-export{font-size:11px;background:#f7f7f7;float:right;margin-left:5px}.mec-fes-list ul li .mec-fes-event-export:hover{cursor:pointer;background:#90f0e0;border-color:#4dc8cc}.mec-fes-export-wrapper ul{padding:0;width:100%;text-align:center}.mec-fes-export-wrapper ul li{list-style:none;display:inline-block;width:30%;padding:10px 15px 10px 32px;border-radius:3px;margin-bottom:15px;border:1px solid #cfeff5;box-shadow:0 2px 6px -4px #cfeff5;background:#fff;line-height:normal;margin-right:10px;position:relative;cursor:pointer;font-size:13px;line-height:1;transition:all .2s ease}.mec-fes-export-wrapper ul li:nth-child(3n+0){margin-right:0}.mec-fes-export-wrapper ul li:hover{box-shadow:0 2px 16px -1px #c6e8ef}.mec-fes-export-wrapper ul li:before{content:"";position:absolute;display:inline-block;background:#fff;width:15px;height:15px;margin:-1px 0 0 5px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32);border-radius:50%;left:9px;top:calc(50% - 7px)}.mec-fes-export-wrapper ul li.fes-export-date-active{color:#40d9f1}.mec-fes-export-wrapper ul li.fes-export-date-active:before{width:15px;height:15px;border:6px solid #40d9f1;background:#fff;box-shadow:0 3px 16px -3px #40d9f1}.mec-fes-btn-export{margin-left:15px;margin-top:12px}.mec-fes-btn-export span{position:relative;border:none;border-radius:3px;color:#fff!important;display:inline-block;font-size:13px;line-height:1;text-transform:none;font-weight:400;text-decoration:none;cursor:pointer;margin-right:4px;line-height:1;letter-spacing:0;padding:15px 22px;background:#39c36e;box-shadow:0 1px 7px -3px #39c36e!important;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;cursor:pointer;margin-left:6px}.mec-fes-btn-export span:hover{background:#222}.mec-event-export-excel:before,span.mec-event-export-csv:before{content:"\e083";font-family:simple-line-icons;font-size:13px;vertical-align:middle;margin-right:7px;margin-top:-1px;display:inline-block}.mec-fes-list .wn-p-t-right{min-width:170px;max-width:200px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#000;color:#fff;font-weight:400;font-size:14px;letter-spacing:.5px;line-height:1.5;position:absolute;z-index:99999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #535a61;visibility:hidden;opacity:0;transition:opacity .23s;padding:5px 10px 6px;border-radius:8px;text-align:center;font-style:normal}.mec-fes-list .mec-fes-event-export:hover .wn-p-t-right,.mec-fes-list .mec-fes-event-remove:hover .wn-p-t-right,.mec-fes-list .mec-fes-event-view:hover .wn-p-t-right{visibility:visible;opacity:1}.mec-fes-list .wn-p-t-right i{position:absolute!important;top:100%;right:50%;margin-top:-6px!important;margin-right:-6px!important;width:12px;height:24px;overflow:hidden;transform:rotate(-90deg)}.mec-fes-list .wn-p-t-right i:after{content:'';position:absolute;width:12px;height:12px;left:0;top:50%;transform:translate(50%,-50%) rotate(-45deg);background-color:#000;box-shadow:0 8px 9px -4px #535a61}.mec-fes-form .select2-container{min-height:38px;box-sizing:border-box;margin-bottom:8px;padding:0 6px;border-radius:2px;border:1px solid #ddd;box-shadow:inset 0 1px 6px rgba(0,0,0,.07);background-color:#fff;color:#32373c;outline:0;transition:50ms border-color ease-in-out;min-width:200px;font-size:14px}.mec-fes-form .select2-selection{border:none;background:0 0;padding-top:2px;width:100%;height:100%}.mec-fes-form .select2-container--default.select2-container--focus .select2-selection{border:none!important;outline:0}.mec-fes-form .select2-container--default .select2-selection--single .select2-selection__arrow{top:5px;right:4px}.select2-results{font-size:14px}.mec-fes-category-children,.mec-fes-category-children .mec-fes-category-children{padding-left:24px}.mec-wrap .mec-timeline-events-container a,.mec-wrap .mec-timeline-events-container div,.mec-wrap .mec-timeline-events-container h4,.mec-wrap .mec-timeline-events-container p,.mec-wrap .mec-timeline-events-container span{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important}.mec-timeline-events-container{margin-left:19px;padding-top:20px;padding-bottom:9px}.mec-events-timeline-wrap{position:relative;display:block;overflow:visible;padding-left:95px}.mec-events-timeline-wrap:before{width:1px;content:'';height:100%;position:absolute;background:#b8f5ff;left:95px}.mec-timeline-month-divider+.mec-timeline-events-container{padding-top:110px}.mec-timeline-right-content{float:right;width:300px}.mec-timeline-left-content{float:left;width:calc(100% - 300px);padding-left:15px;padding-right:15px;position:relative}.mec-timeline-month-divider{position:absolute;display:block;background:#fff;right:calc(100% - 95px);left:0;width:190px;text-align:center;border:1px solid #b8f5ff;border-radius:50px;font-size:15px;padding:12px 27px;color:#40d9f1}.mec-timeline-event-date{position:relative}.mec-timeline-events-container .mec-timeline-event-date:before{content:'';width:11px;height:11px;position:absolute;background:#40d9f1;border-radius:50px;top:8px;left:-24px;z-index:9}.mec-timeline-events-container .mec-timeline-event-date:after{content:'';width:21px;height:21px;position:absolute;background:rgba(64,217,241,.3);border-radius:50px;top:3px;left:-29px}.mec-timeline-event-date{float:left;width:17%;margin-top:27px}.mec-timeline-event-content{float:left;width:82%;background:#fff;box-shadow:0 10px 30px 0 rgba(0,0,0,.1);border-radius:10px;overflow:visible;position:relative}.mec-timeline-main-content{padding:23px 30px}.mec-timeline-main-content h4{margin-bottom:15px}.mec-timeline-main-content h4 a{font-size:25px;font-weight:700;color:#000;line-height:33px;text-decoration:none}.mec-timeline-main-content p{font-size:15px;color:#515151;line-height:24px;margin-bottom:36px}a.mec-timeline-readmore{width:100%;display:block;text-align:center;color:#fff;text-decoration:none;line-height:52px;font-size:17px;font-weight:700;-webkit-transition:all .2s ease;transition:all .2s ease;border-radius:0 0 10px 10px}a.mec-timeline-readmore:hover{background:#222;color:#fff}.mec-timeline-event-time .mec-time-details{display:inline-block;margin-left:7px;font-size:13px;line-height:13px;font-weight:500}.mec-timeline-event-time i{vertical-align:middle}.mec-timeline-event-time{background:rgba(64,217,241,.11);display:inline-block;padding:4px 20px 8px;border-radius:50px}.mec-timeline-event-location address{font-style:normal;margin-bottom:0}.mec-timeline-event-location address span{font-size:13px;font-weight:500;vertical-align:middle;margin-left:6px}.mec-timeline-event-location address i{font-size:17px;vertical-align:middle}.mec-timeline-event-location{background:rgba(64,217,241,.11);display:inline-block;padding:7px 20px 11px;border-radius:20px;line-height:1.24}.mec-timeline-event-details+.mec-timeline-event-details{margin-top:12px}.mec-timeline-event-content .col-md-4{padding:0}.mec-timeline-event-content:after{content:'';display:block;position:absolute;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-timeline-event-content:after{top:30px;border-color:transparent #fff transparent transparent;left:-10px}.mec-timeline-event-image img{border-radius:0 10px 0 0;width:100%}.mec-timeline-event-image a{display:block;line-height:0}a.mec-timeline-readmore i{vertical-align:middle;margin-left:10px;font-size:9px}.mec-wrap .mec-timeline-event-content a.mec-timeline-readmore:hover{background:#444}@media(min-width:1024px){.mec-timeline-event{margin:50px 0}}@media(max-width:1023px){.mec-timeline-event{margin:25px 0}.mec-events-timeline-wrap{padding-left:20px}.mec-events-timeline-wrap:before{left:20px}}@media (max-width:1200px) and (min-width:992px){.mec-timeline-event-content{width:81%}.mec-timeline-event-date{width:18%}}@media (max-width:992px){.mec-timeline-left-content,.mec-timeline-right-content{float:none;width:100%;text-align:center}.mec-timeline-right-content .mec-timeline-event-image{text-align:center}.mec-timeline-right-content .mec-timeline-event-image img{max-width:300px;border-radius:10px;margin-top:35px}}@media (max-width:440px){.mec-timeline-right-content .mec-timeline-event-image img{margin-top:0}}@media (max-width:320px){.mec-timeline-event-content,.mec-timeline-event-date{float:none;width:100%}.mec-timeline-event-date{margin-bottom:8px}.mec-timeline-event-content:after{display:none}.mec-timeline-main-content{padding:23px 0}.mec-timeline-main-content p{font-size:13px}.mec-timeline-main-content h4 a{font-size:23px;line-height:24px}.mec-time-details span{font-size:11px}.mec-timeline-event-location address span{font-size:12px}a.mec-timeline-readmore{line-height:44px;font-size:14px}}.mec-event-tile-view article.mec-tile-item{height:400px;margin:15px 0;border-radius:22px;padding:35px 25px;position:relative;color:#fff;background-size:cover!important;background-position:center!important;box-shadow:0 2px 9px rgba(0,0,0,.25);transition:all .22s ease}.mec-event-tile-view article.mec-tile-item:hover{cursor:pointer;box-shadow:0 4px 19px rgba(0,0,0,.5)}.mec-event-tile-view article.mec-tile-item div{position:relative;z-index:3}.mec-event-tile-view article.mec-tile-item:after,.mec-event-tile-view article.mec-tile-item:before{position:absolute;background:-moz-linear-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);background:-webkit-gradient(left top,right top,color-stop(0,rgba(0,0,0,.35)),color-stop(65%,rgba(0,0,0,.48)),color-stop(100%,rgba(0,0,0,.72)));background:-webkit-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);background:linear-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);content:"";left:0;right:0;bottom:0;top:0;width:100%;height:100%;display:block;border-radius:22px;z-index:1}.mec-event-tile-view article.mec-tile-item:after{background-color:inherit;background-image:none;top:35px;bottom:auto;height:40px;border-radius:0 3px 3px 0;width:97px;z-index:2;box-shadow:2px 1px 7px rgba(0,0,0,.1)}.mec-event-tile-view article.mec-tile-item .event-tile-view-head{padding:8px 3px;font-size:16px;font-weight:700;margin-bottom:50px;text-transform:uppercase}.mec-event-tile-view article.mec-tile-item .event-tile-view-head>div{display:inline}.mec-event-tile-view article.mec-tile-item .mec-event-time{color:#d6d6d6;font-size:15px;font-weight:400;line-height:1;padding-top:4px;position:absolute;right:1px;top:10px}.mec-event-tile-view article.mec-tile-item .mec-event-time i{vertical-align:baseline;font-size:14px;float:left}.mec-event-tile-view article.mec-tile-item i{margin-right:5px}.mec-event-tile-view article.mec-tile-item .mec-event-title{color:#fff;font-weight:700;font-size:23px;padding-top:12px}.mec-event-tile-view article.mec-tile-item .mec-event-title a{color:#fff}.mec-event-tile-view article.mec-tile-item .mec-event-title a:hover{text-decoration:underline}.mec-event-tile-view article.mec-tile-item .mec-event-content{position:absolute;bottom:25px;left:25px;right:25px}.mec-event-tile-view article.mec-label-canceled:before,.mec-event-tile-view article.mec-label-featured:before{height:auto}.mec-skin-tile-month-navigator-container{position:relative;text-align:center;font-size:12px;height:80px;background:#f7f7f7;padding:28px;border-radius:11px;margin-bottom:20px}.mec-skin-tile-month-navigator-container:after,.mec-skin-tile-month-navigator-container:before{content:'';display:block;position:absolute;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-skin-tile-month-navigator-container:after{bottom:-20px;border-color:#f7f7f7 transparent transparent transparent}.mec-skin-tile-month-navigator-container:before{bottom:-21px;border-color:#fff transparent transparent transparent}@media only screen and (max-width:480px){.mec-skin-tile-month-navigator-container{height:110px;padding-top:68px}}.mec-skin-tile-month-navigator-container h2{font-size:23px;font-weight:700}.mec-skin-tile-month-navigator-container .mec-next-month,.mec-skin-tile-month-navigator-container .mec-previous-month{position:absolute;top:28px;left:20px;cursor:pointer;padding:3px 12px;line-height:23px;background:#fff;border-radius:32px;box-shadow:0 1px 3px rgba(0,0,0,.02);transition:all .22s ease}.mec-skin-tile-month-navigator-container .mec-next-month{left:auto;right:20px}.mec-skin-tile-month-navigator-container .mec-next-month:hover,.mec-skin-tile-month-navigator-container .mec-previous-month:hover{box-shadow:0 2px 5px rgba(0,0,0,.1);color:#000}.mec-wrap .mec-event-tile-view article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view article.mec-label-featured:before{position:absolute;bottom:auto;text-align:center;right:auto;font-size:10px}.mec-event-tile-view article.mec-tile-item .mec-tile-overlay{position:absolute;background:-moz-linear-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);background:-webkit-gradient(left top,right top,color-stop(0,rgba(0,0,0,.35)),color-stop(65%,rgba(0,0,0,.48)),color-stop(100%,rgba(0,0,0,.72)));background:-webkit-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);background:linear-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);content:"";left:0;right:0;bottom:0;top:0;width:100%;height:100%;display:block;border-radius:22px;z-index:1}.mec-wrap .mec-event-tile-view .col-md-3 article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view .col-md-3 article.mec-label-featured:before{top:12px;left:103px;z-index:9}.mec-wrap .mec-event-tile-view .col-md-4 article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view .col-md-4 article.mec-label-featured:before{top:18px;left:125px}.mec-wrap .mec-event-tile-view .col-md-6 article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view .col-md-6 article.mec-label-featured:before{top:20px;left:200px}@media (max-width:960px){.mec-wrap .mec-event-tile-view .col-sm-3{width:50%}}@media (max-width:480px){.mec-wrap .mec-event-tile-view .col-sm-3{width:100%}}.mec-event-tile-view article.mec-tile-item.tile-multipleday-event:after{width:165px}.mec-event-tile-view .col-md-6.col-sm-6 article.mec-label-canceled:before{top:100px;left:140px}.mec-event-tile-view .col-md-4.col-sm-4 article.mec-label-canceled:before{top:20px;left:140px}@media (min-width:761px) and (max-width:1200px){.mec-event-tile-view .col-md-3.col-sm-3{width:50%}.mec-event-tile-view .col-md-6.col-sm-6 article.mec-label-canceled:before{top:80px;left:90px}.mec-event-tile-view .col-md-4.col-sm-4 article.mec-label-canceled:before{top:40px;left:70px}.mec-event-tile-view .col-md-3.col-sm-3 article.mec-label-canceled:before{top:90px;left:110px}}@media (min-width:761px) and (max-width:1024px){.mec-event-tile-view .col-md-4.col-sm-4{width:50%}.mec-event-tile-view .col-md-4.col-sm-4:nth-child(1n+3){width:100%}}@media (max-width:760px){.mec-event-tile-view .col-md-3.col-sm-3{width:100%}.mec-event-tile-view .col-md-4.col-sm-4{width:100%}}@media (max-width:480px){.mec-event-tile-view .col-md-6.col-sm-6 article.mec-label-canceled:before{top:100px;left:80px}}.mec-ongoing-normal-label{background-color:#40d9f1}.mec-wrap .mec-cancellation-reason span,.mec-wrap .mec-labels-normal .mec-label-normal{position:relative;top:-3px;font-size:11px;font-weight:300;margin-left:10px;line-height:1.9;letter-spacing:1px;color:#fff;padding:2px 7px;border-radius:2px;white-space:nowrap}.mec-agenda-event-title .mec-labels-normal .mec-label-normal,.mec-timetable-event .mec-labels-normal .mec-label-normal,.tooltipster-box .mec-labels-normal .mec-label-normal{font-size:9px;letter-spacing:.5px;text-transform:uppercase;padding:2px 7px;color:#fff;position:relative;margin-left:5px;border-radius:2px;top:0}.mec-av-spot .mec-labels-normal .mec-label-normal,.mec-event-countdown-part1 .mec-labels-normal .mec-label-normal,.mec-event-countdown-part2 .mec-labels-normal .mec-label-normal,.mec-event-cover-modern .mec-labels-normal .mec-label-normal,.mec-masonry-content .mec-labels-normal .mec-label-normal,.mec-owl-carousel:not(.mec-slider-t1) .mec-labels-normal .mec-label-normal,.mec-tile-item .mec-labels-normal .mec-label-normal,.mec-timeline-event .mec-labels-normal .mec-label-normal,.tooltipster-box .mec-labels-normal .mec-label-normal{margin:0 5px 0 0}.mec-event-countdown-style3 .mec-labels-normal .mec-label-normal{margin:0 0 0 5px}.mec-event-footer-carousel-type3 .mec-labels-normal .mec-label-normal{display:inline}.mec-event-carousel-type4 .mec-fc-style{display:none}.mec-event-carousel-type4 .mec-labels-normal{top:-20px;position:relative}.mec-wrap .mec-cancellation-reason{display:inline-block}.mec-wrap .mec-cancellation-reason span{line-height:1.3;background:#eb3450;text-transform:none;display:inline-block;white-space:nowrap}.mec-wrap .mec-event-list-accordion .mec-cancellation-reason span,.mec-wrap .mec-event-list-accordion .mec-labels-normal .mec-label-normal{top:7px}.mec-agenda-event-title .mec-cancellation-reason span,.mec-timetable-event .mec-cancellation-reason span,.tooltipster-box .mec-cancellation-reason span{font-size:9px;letter-spacing:.5px;text-transform:uppercase;padding:2px 7px;color:#fff;position:relative;margin-left:5px;border-radius:2px;top:0}.mec-wrap .mec-event-container-novel .mec-cancellation-reason span,.mec-wrap .mec-event-container-novel .mec-labels-normal .mec-label-normal{white-space:inherit;margin-left:0}.mec-wrap .mec-event-container-simple .mec-cancellation-reason span,.mec-wrap .mec-event-container-simple .mec-labels-normal .mec-label-normal{top:-12px;white-space:inherit;margin-left:0}.mec-av-spot .mec-cancellation-reason span,.mec-event-countdown-part1 .mec-cancellation-reason span,.mec-event-countdown-part2 .mec-cancellation-reason span,.mec-event-cover-modern .mec-cancellation-reason span,.mec-masonry-content .mec-cancellation-reason span,.mec-owl-carousel:not(.mec-slider-t1) .mec-cancellation-reason span,.mec-tile-item .mec-cancellation-reason span,.mec-timeline-event .mec-cancellation-reason span,.tooltipster-box .mec-cancellation-reason span{margin:0 5px 0 0}.mec-owl-carousel .mec-event-footer-carousel-type3 span.mec-event-title-soldout,.mec-owl-carousel .mec-event-footer-carousel-type3 span.mec-few-tickets{display:inline}.mec-owl-carousel .mec-event-footer-carousel-type3 span.mec-labels-normal,.mec-owl-carousel .mec-event-footer-carousel-type3 span.soldout{margin-top:0;color:#fff;display:unset}.mec-wrap .mec-single-event .mec-cancellation-reason span{margin:0;padding:6px 12px;font-size:14px;font-weight:700;white-space:normal;word-break:break-word}.featherlight-content .mec-cancellation-reason{display:block;width:100%;text-align:center;margin-top:20px;margin-bottom:-10px}.mec-event-data-fields{margin-bottom:30px}.mec-event-data-fields ul.mec-event-data-field-items{overflow:hidden;padding-top:10px;padding-left:0}.mec-event-data-fields .mec-event-data-field-item{list-style:none;margin-bottom:10px;border-bottom:1px dashed #e3e3e3;padding-bottom:7px;width:50%;float:left}.mec-event-data-fields .mec-event-data-field-item .mec-event-data-field-value{margin:0 0 20px 0;color:#616161;font-size:14px;line-height:1.8}.mec-event-data-fields .mec-event-data-field-item:last-child{border:none;width:100%}.mec-event-data-fields .mec-event-data-field-item .mec-event-data-field-name{text-transform:none;font-size:13px;font-weight:600;padding-bottom:5px;color:#313131;width:100%;padding-bottom:10px;position:relative;letter-spacing:-.2px}@media (max-width:768px){.mec-event-data-fields .mec-event-data-field-item{width:100%}}.mec-shortcode-organizers{overflow:hidden;margin-top:7px;font-weight:400;line-height:19px;font-size:12px}.mec-event-list-minimal .mec-shortcode-organizers{margin-top:6px}.mec-shortcode-organizers i{color:#777}.mec-shortcode-organizers .mec-organizers{display:inline-block;list-style:none;padding:0 0 0 3px;vertical-align:top}.mec-organizer-item a{color:#777}.mec-event-list-standard .mec-shortcode-organizers .mec-sl-user:before{position:absolute;left:6px;font-size:15px;line-height:26px}.mec-organizer-item a{font:14px/25px sans-serif;font-family:Montserrat,Helvetica,Arial,sans-serif;font-weight:400;color:#626262}.mec-shortcode-organizers{position:relative;padding-left:28px;margin-bottom:10px}.mec-skin-grid-container .mec-organizers,.mec-skin-grid-container .mec-shortcode-organizers{padding:0;margin:0}.mec-skin-grid-container .mec-shortcode-organizers i{display:none}.mec-skin-grid-container .mec-event-grid-clean .mec-shortcode-organizers a,.mec-skin-grid-container .mec-event-grid-clean .mec-shortcode-organizers a:hover,.mec-skin-grid-container .mec-event-grid-colorful .mec-shortcode-organizers a,.mec-skin-grid-container .mec-event-grid-colorful .mec-shortcode-organizers a:hover{color:#fff;font-size:12px}.mec-skin-grid-container .mec-event-grid-clean .mec-shortcode-organizers a:hover,.mec-skin-grid-container .mec-event-grid-colorful .mec-shortcode-organizers a:hover{text-decoration:underline}.mec-skin-grid-container .mec-event-grid-minimal .mec-shortcode-organizers{margin-top:12px}.mec-skin-grid-container .mec-event-grid-novel .mec-shortcode-organizers{position:relative}.mec-skin-grid-container .mec-event-grid-novel .mec-shortcode-organizers i{display:block;color:rgba(255,255,255,.4)}.mec-skin-grid-container .mec-event-grid-novel .mec-shortcode-organizers i: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-skin-grid-container .mec-event-grid-novel .mec-shortcode-organizers a{padding-left:35px;font-size:15px;line-height:30px;color:rgba(255,255,255,.4)}.mec-skin-grid-container .mec-event-grid-novel .mec-shortcode-organizers a:hover{color:#fff}.mec-calendar-daily .mec-shortcode-organizers,.mec-calendar-daily .mec-shortcode-organizers .mec-organizers{padding:0}.mec-calendar-daily .mec-shortcode-organizers i{display:none}.mec-calendar-daily .mec-organizer-item a{font-size:13px;line-height:1.3;color:#9a9a9a;margin-bottom:0}.mec-events-masonry-wrap .mec-shortcode-organizers i{display:none}.mec-events-masonry-wrap .mec-shortcode-organizers,.mec-events-masonry-wrap .mec-shortcode-organizers .mec-organizers{padding:0}.mec-events-timeline-wrap .mec-shortcode-organizers{width:fit-content;display:inline-block;padding:4px 20px 8px;border-radius:50px}.mec-events-timeline-wrap .mec-organizer-item,.mec-events-timeline-wrap .mec-shortcode-organizers .mec-organizers{margin:0;display:inline-block;padding-right:7px}.mec-events-timeline-wrap .mec-shortcode-organizers i{line-height:24px;margin-right:7px}.mec-events-timeline-wrap .mec-organizer-item:after{content:','}.mec-events-timeline-wrap .mec-organizer-item:last-child:after{content:'';padding:0}.mec-events-timeline-wrap .mec-organizer-item a,.mec-events-timeline-wrap .mec-organizer-item:after{font-weight:500}.mec-events-timeline-wrap .mec-organizer-item a:hover{text-decoration:underline}.mec-event-tile-view .mec-shortcode-organizers,.mec-event-tile-view .mec-shortcode-organizers .mec-organizers{padding:0}.mec-event-tile-view .mec-shortcode-organizers i{line-height:24px}.mec-event-tile-view .mec-shortcode-organizers .mec-organizers a,.mec-event-tile-view .mec-shortcode-organizers i{color:#fff}.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-modal-wrap,.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-modal-wrap::-webkit-scrollbar{width:12px}.mec-dark-mode .mec-modal-wrap::-webkit-scrollbar-track{background:#000}.mec-dark-mode .mec-modal-wrap::-webkit-scrollbar-thumb{background-color:#333;border-radius:20px;border:2px solid #000}.mec-dark-mode .mec-modal-preloader,.mec-dark-mode .mec-month-navigator-loading{background-color:#1f1f1f}.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:#313131}.mec-dark-mode .event-carousel-type3-head .mec-event-footer-carousel-type3,.mec-dark-mode .mec-agenda-events-wrap,.mec-dark-mode .mec-av-spot .mec-av-spot-content,.mec-dark-mode .mec-av-spot .mec-av-spot-head,.mec-dark-mode .mec-av-spot-wrap .mec-event-grid-modern .event-grid-modern-head,.mec-dark-mode .mec-calendar .mec-calendar-side .mec-next-month:hover,.mec-dark-mode .mec-calendar .mec-calendar-side .mec-previous-month:hover,.mec-dark-mode .mec-calendar .mec-calendar-topsec,.mec-dark-mode .mec-calendar .mec-event-article:hover,.mec-dark-mode .mec-calendar dt,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-has-event:hover,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table a:hover,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-top,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-next-month:hover,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-previous-month:hover,.mec-dark-mode .mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:hover,.mec-dark-mode .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec,.mec-dark-mode .mec-event-cover-classic,.mec-dark-mode .mec-event-footer .mec-booking-button:hover,.mec-dark-mode .mec-event-grid-clean .mec-event-article,.mec-dark-mode .mec-event-grid-clean .mec-event-content,.mec-dark-mode .mec-event-grid-modern .mec-event-article,.mec-dark-mode .mec-event-grid-modern .mec-event-content,.mec-dark-mode .mec-event-list-minimal a.mec-detail-button:hover,.mec-dark-mode .mec-event-list-modern .mec-btn-wrapper .mec-booking-button:hover,.mec-dark-mode .mec-event-sharing-wrap .mec-event-sharing,.mec-dark-mode .mec-events-toggle .mec-toggle-item-inner:hover,.mec-dark-mode .mec-hourly-schedule-speaker-contact-information a:hover i,.mec-dark-mode .mec-masonry .mec-masonry-content,.mec-dark-mode .mec-masonry .mec-masonry-head,.mec-dark-mode .mec-slider-t1 .mec-slider-t1-content,.mec-dark-mode .mec-slider-t5 .mec-slider-t5-content,.mec-dark-mode .mec-slider-t5-wrap,.mec-dark-mode .mec-slider-t5-wrap .mec-event-grid-modern .event-grid-modern-head,.mec-dark-mode .mec-timeline-event-content,.mec-dark-mode .mec-timeline-month-divider,.mec-dark-mode .mec-timetable-events-list .mec-timetable-event:hover,.mec-dark-mode .mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3,.mec-dark-mode .mec-wrap .mec-totalcal-box,.mec-dark-mode .mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-calendar-sec,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year,.mec-dark-mode .tooltipster-sidetip .tooltipster-content{background:#191919}.mec-dark-mode .event-carousel-type3-head .mec-event-footer-carousel-type3,.mec-dark-mode .event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button,.mec-dark-mode .mec-av-spot,.mec-dark-mode .mec-av-spot-wrap .mec-event-grid-modern .event-grid-modern-head,.mec-dark-mode .mec-box-calendar.mec-calendar dl dt:last-child,.mec-dark-mode .mec-calendar,.mec-dark-mode .mec-calendar .mec-event-article,.mec-dark-mode .mec-calendar.mec-box-calendar .mec-table-nullday:last-child,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-next-month:hover,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-previous-month:hover,.mec-dark-mode .mec-event-cover-classic,.mec-dark-mode .mec-event-cover-clean,.mec-dark-mode .mec-event-grid-classic .mec-event-article,.mec-dark-mode .mec-event-grid-clean .mec-event-article,.mec-dark-mode .mec-event-grid-modern .mec-event-article,.mec-dark-mode .mec-event-sharing-wrap .mec-event-sharing,.mec-dark-mode .mec-event-sharing-wrap .mec-event-sharing:after,.mec-dark-mode .mec-event-sharing-wrap>li:first-of-type,.mec-dark-mode .mec-events-agenda,.mec-dark-mode .mec-fes-form .mec-meta-box-fields,.mec-dark-mode .mec-masonry,.mec-dark-mode .mec-slider-t5-wrap .mec-event-grid-modern .event-grid-modern-head,.mec-dark-mode .mec-timeline-month-divider,.mec-dark-mode .mec-wrap .mec-totalcal-box,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{border-color:#353535}.mec-dark-mode .mec-event-sharing-wrap .mec-event-sharing:after{border-color:#191919 transparent transparent transparent}.mec-dark-mode .mec-event-sharing-wrap .mec-event-sharing:before{border-color:#353535 transparent transparent transparent}.mec-dark-mode .mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text],.mec-dark-mode .mec-events-meta-group-booking .StripeElement,.mec-dark-mode .mec-slider-t2 .mec-event-article{background:#1f1f1f!important;border:1px solid #353535!important;box-shadow:none!important;color:#d2d2d2!important}.mec-dark-mode .CardField CardField--ltr .__PrivateStripeElement .InputContainer input{color:#d2d2d2!important}.mec-dark-mode .mec-events-toggle .mec-toggle-item{border:1px solid #e4e4e4;box-shadow:0 10px 15px #282828}.mec-dark-mode .mec-agenda-events-wrap .mec-event-grid-colorful .mec-event-content{background-color:transparent}.mec-dark-mode .mec-calendar .mec-calendar-side{box-shadow:0 1px 5px 6px rgba(255,255,255,.005) inset}.mec-dark-mode .tooltipster-sidetip.tooltipster-shadow .tooltipster-box{border:1px solid #282828!important}.mec-dark-mode .mec-timeline-event-content:after{border-color:transparent #191919 transparent transparent}.mec-dark-mode .mec-fes-form .mec-meta-box-fields{box-shadow:0 2px 6px -3px #353535}.mec-dark-mode .mec-fes-form .mec-meta-box-fields h4{color:#d2d2d2;background:#000}.mec-dark-mode .mec-fes-form input[type=email],.mec-dark-mode .mec-fes-form input[type=number],.mec-dark-mode .mec-fes-form input[type=password],.mec-dark-mode .mec-fes-form input[type=tel],.mec-dark-mode .mec-fes-form input[type=text],.mec-dark-mode .mec-fes-form select,.mec-dark-mode .mec-fes-form textarea{box-shadow:0 2px 5px rgba(0,0,0,.38) inset}.mec-dark-mode .mec-fes-form input{background:#353535!important;color:#d2d2d2!important}.mec-dark-mode .mec-booking-tab-content .button:hover,.mec-dark-mode .mec-booking-tab-content .mec-reg-field-add-option:hover,.mec-dark-mode .mec-fes-form .mec-form-row .button:not(.wp-color-result):hover{background:#353535;color:#d2d2d2;border-color:#353535;box-shadow:0 2px 6px -3px #353535}.mec-dark-mode .mec-booking-tab-content .button,.mec-dark-mode .mec-booking-tab-content .mec-reg-field-add-option,.mec-dark-mode .mec-fes-form .mec-form-row .button:not(.wp-color-result),.mec-dark-mode .mec-fes-form input[type=file],.mec-dark-mode ul#mec_reg_form_fields li .mec_reg_field_remove{color:#d2d2d2;background:#282828;border:2px solid #353535;box-shadow:0 2px 6px -3px #353535}.mec-dark-mode #mec_reg_form_fields input[type=checkbox],.mec-dark-mode #mec_reg_form_fields input[type=radio],.mec-dark-mode .mec-form-row input[type=checkbox],.mec-dark-mode .mec-form-row input[type=radio]{background-color:#000;border:1px solid #353535;box-shadow:0 1px 3px -1px #353535}.mec-dark-mode .mec-fes-form .select2-container{border:1px solid #353535;background-color:#282828;color:#d2d2d2}.mec-dark-mode ul#mec_bfixed_form_fields li,.mec-dark-mode ul#mec_reg_form_fields li{background:#000;border-color:#000}.mec-dark-mode #mec_meta_box_tickets_form [id^=mec_ticket_row] .mec_add_price_date_button{background:#000;border-color:#2d2d2d;box-shadow:0 2px 6px -3px #2d2d2d}.mec-dark-mode #mec_reg_form_field_types .button.red{background:#2d2d2d;border-color:#2d2d2d;box-shadow:0 2px 6px -3px #2d2d2d}.mec-dark-mode #mec_bfixed_form_field_types .button,.mec-dark-mode #mec_reg_form_field_types .button{color:#d2d2d2;box-shadow:0 2px 6px -3px #2d2d2d;border-color:#2d2d2d}.mec-dark-mode #mec_meta_box_tickets_form [id^=mec_ticket_row] .mec_add_price_date_button:hover,.mec-dark-mode #mec_reg_form_field_types .button:hover{background:#000}.mec-dark-mode ul#mec_bfixed_form_fields li .mec_bfixed_field_remove,.mec-dark-mode ul#mec_reg_form_fields li .mec_reg_field_remove{background:#282828}.mec-dark-mode #mec_taxes_fees_container_toggle [id^=mec_remove_fee_button]:hover,.mec-dark-mode #mec_ticket_variations_list [id^=mec_remove_ticket_variation_button]:hover,.mec-dark-mode ul#mec_bfixed_form_fields li .mec_bfixed_field_remove:hover,.mec-dark-mode ul#mec_reg_form_fields li .mec_reg_field_remove:hover{color:#fff;border:2px solid #ea6485;background:#ea6485}.mec-events-meta-group-booking-shortcode{background-color:#e6f7ff;padding:40px;position:relative}.mec-events-meta-group-booking-shortcode h4{margin-bottom:20px}.mec-booking-shortcode .mec-event-tickets-list.mec-sell-all-occurrences{width:100%}.mec-booking-shortcode .mec-book-reg-field-mec_email{width:48%;display:inline-block;margin-right:30px}.mec-booking-shortcode .mec-book-reg-field-name{width:48%;display:inline-block}.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-expiration-date-month{width:48%;display:inline-block;vertical-align:top;margin-right:30px}.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-cvv2{width:48%;display:inline-block}.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-expiration-date-month .nice-select{width:48%;display:inline-block}.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-expiration-date-month label{width:100%}.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-expiration-date-month .nice-select:first-of-type{margin-right:10px}.mec-booking-shortcode .mec-form-row.mec-name-stripe,.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-card-type,.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-first-name{width:48%;vertical-align:top;display:inline-block;margin-right:30px}.mec-booking-shortcode .mec-form-row.mec-email-stripe,.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-cc-number,.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-last-name{width:48%;display:inline-block}.mec-events-meta-group-booking .mec-booking-shortcode .StripeElement{height:56px;padding:19px 12px 0;max-width:420px}.mec-booking-shortcode .nice-select,.mec-booking-shortcode input{float:none;border:1px solid #c7ebfb!important;border-radius:3px;background-color:#fff;height:41px;line-height:39px;padding-left:15px;padding-right:15px;margin:0;margin-bottom:24px!important;color:#00acf8;font-size:14px;font-weight:400;box-shadow:none!important;min-height:unset;min-width:unset;padding-top:0;padding-bottom:0}.mec-booking-shortcode .mec-gateway-message.mec-success{font-size:14px}.mec-booking-shortcode .mec-form-row.mec-name-stripe{margin-bottom:0!important}.mec-booking-shortcode .mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text],.mec-events-meta-group-booking .mec-booking-shortcode .StripeElement{border:1px solid #c7ebfb!important;border-radius:3px;box-shadow:none!important}.mec-booking-shortcode .nice-select ul{width:100%}.mec-booking-shortcode .mec-event-ticket-name,.mec-booking-shortcode .mec-event-ticket-price,.mec-booking-shortcode .mec-ticket-variation-name,.mec-booking-shortcode .mec-ticket-variation-price,.mec-booking-shortcode label{font-size:14px;line-height:19px;font-weight:400;color:#00acf8;padding-right:5px;margin:0 0 4px!important}.mec-booking-shortcode span.mec-event-ticket-available{margin-top:-22px!important;margin-bottom:28px!important;display:block;font-size:11px;letter-spacing:.5px;font-weight:300;color:#80abbf}.mec-booking-shortcode button{background-color:#00acf8;border-radius:2px;box-shadow:0 2px 2px rgba(0,172,248,.27);font-weight:500;font-size:11px;letter-spacing:.5px;margin:0;min-width:116px;padding:16px 15px 14px;float:none;position:relative;border:none;color:#fff;display:inline-block}.mec-booking-shortcode .mec-booking-form-container ul li{list-style:none}.mec-booking-shortcode .mec-booking-form-container ul{padding:0}.mec-events-meta-group-booking-shortcode .mec-error{background-color:#ff017e;color:#fff;margin:24px 0 24px;padding:10px 15px;border-radius:3px}.mec-events-meta-group-booking-shortcode .info-msg{margin:24px 0 24px}.mec-booking-shortcode .mec-book-ticket-variation h5{margin:0 0 4px}.mec-booking-shortcode .mec-book-available-tickets-details-header{border-bottom:2px solid #00acf8}.mec-booking-shortcode .mec-book-available-tickets-details-header,.mec-booking-shortcode .mec-book-available-tickets-details-item,.mec-booking-shortcode .mec-book-price-detail{display:-webkit-box;display:flex;flex-wrap:wrap}.mec-booking-shortcode .mec-book-available-tickets-details-header span,.mec-booking-shortcode .mec-book-available-tickets-details-item span,.mec-booking-shortcode .mec-book-price-detail span{-webkit-box-flex:1.97;flex:1.97 1.97 0;min-height:1px;font-size:14px;line-height:22px;color:#616264;font-weight:500;padding-bottom:20px;padding-top:20px}.mec-booking-shortcode .mec-book-available-tickets-details span:nth-of-type(2),.mec-booking-shortcode .mec-book-available-tickets-details-item span:nth-of-type(2),.mec-booking-shortcode .mec-book-price-detail span:nth-of-type(2){-webkit-box-flex:1;flex:1 1 0}.mec-booking-shortcode .mec-book-available-tickets-details span:last-child,.mec-booking-shortcode .mec-book-available-tickets-details-item span:last-child,.mec-booking-shortcode .mec-book-price-detail span:last-child{-webkit-box-flex:1.085;flex:1.085 1.085 0}.mec-booking-shortcode .mec-book-available-tickets-details-header span{padding-bottom:11px}.mec-booking-shortcode .mec-book-available-tickets-details-item span{font-weight:400;font-size:12px}.mec-booking-shortcode span.mec-book-price-detail-amount,.mec-booking-shortcode span.mec-book-price-detail-description{font-size:14px;line-height:22px;font-weight:500;padding:6px 0;color:#000}.mec-booking-shortcode span.mec-book-price-detail-amount{color:#777}.mec-booking-shortcode .mec-book-form-gateways label{cursor:pointer}.mec-booking-shortcode .mec-book-form-gateways label{cursor:pointer}.mec-booking-shortcode span.mec-book-price-detail-description{padding:6px 13px 6px 0;font-size:14px;font-weight:400;color:#00acf8}.mec-booking-shortcode ul.mec-book-price-details li{border-right:1px solid #c7ebfb!important}.mec-booking-shortcode span.mec-book-price-total{font-size:22px;line-height:22px;font-weight:700;color:#2bbc10;margin-top:20px;margin-bottom:35px;display:inline-block}.mec-booking-shortcode ul.mec-book-price-details{border:1px solid #c7ebfb!important;border-radius:3px;box-shadow:none!important}.mec-booking-shortcode span.mec-book-price-total-description{font-size:18px;line-height:22px;font-weight:700;color:#000}.mec-booking-shortcode span.mec-book-price-total-amount{font-size:22px;line-height:22px;font-weight:700;color:#2bbc10}.mec-booking-shortcode .mec-book-form-price{clear:both;position:relative}.mec-booking-shortcode .mec-book-form-gateway-label input[type=radio]:after{content:"";display:inline-block;width:7px;height:7px;background-color:#fff;border-radius:50%;cursor:pointer;position:absolute;top:4px;left:3px}.mec-booking-shortcode .mec-book-form-gateway-label input[type=radio]:before{box-shadow:none;border:2px solid #a8e4ff;width:17px;height:17px;position:absolute;top:-9px;left:-2px;margin:0;content:"";display:inline-block;background:#fff;border-radius:18px;cursor:pointer;position:relative}.mec-booking-shortcode .mec-book-form-gateway-label{-webkit-box-flex:0;flex:0 0 50%;margin-bottom:14px;padding-right:15px}.mec-booking-shortcode .mec-book-form-gateways{display:-webkit-box;display:flex;flex-wrap:wrap;margin-bottom:20px}.mec-booking-shortcode .mec-book-form-gateway-checkout{-webkit-box-flex:0;flex:0 0 100%;max-width:100%}.mec-booking-shortcode input::-webkit-input-placeholder,.mec-booking-shortcode textarea::-webkit-input-placeholder{color:#afe6ff}.mec-booking-shortcode input::-moz-placeholder,.mec-booking-shortcode textarea::-moz-placeholder{color:#afe6ff}.mec-booking-shortcode input:-ms-input-placeholder,.mec-booking-shortcode textarea:-ms-input-placeholder{color:#afe6ff}.mec-booking-shortcode input:-moz-placeholder,.mec-booking-shortcode textarea:-moz-placeholder{color:#afe6ff}.mec-booking-shortcode input[type=radio]:checked:before{border:2px solid #a8e4ff;box-shadow:none}.mec-booking-shortcode input[type=radio]:checked:after{background-color:#00acf8}.mec-booking-shortcode .mec-book-form-gateway-label label input{position:relative;cursor:pointer;margin:0!important;height:auto;margin-right:4px!important}.mec-booking-shortcode .mec-click-pay button[type=submit]{position:absolute;left:190px;bottom:40px}.mec-booking-shortcode button#mec-book-form-btn-step-2{margin-left:30px}.mec-booking-shortcode .mec-ticket-name{display:inline-block;background-color:#fff;border-radius:3px;font-size:12px;line-height:12px;font-weight:400;color:#00acf8;padding:8px 13px;letter-spacing:0}.mec-booking-shortcode .mec_book_first_for_all{display:none}.mec-booking-shortcode li.mec-first-for-all-wrapper{margin-bottom:20px}.mec-booking-shortcode label.wn-checkbox-label:before{display:inline-block;-moz-transform-origin:left top;-ms-transform-origin:left top;-o-transform-origin:left top;-webkit-transform-origin:left top;transform-origin:left top;content:'';-webkit-transition:opacity ease .5;-moz-transition:opacity ease .5;transition:opacity ease .5;position:absolute;background-color:#00acf8;width:2px;-webkit-transform:rotate(-138deg);transform:rotate(-138deg)}.mec-booking-shortcode label.wn-checkbox-label{position:relative;display:inline-block;-moz-transition:border-color ease .2s;-o-transition:border-color ease .2s;-webkit-transition:border-color ease .2s;transition:border-color ease .2s;cursor:pointer;vertical-align:middle;font-size:14px;line-height:19px;font-weight:400;color:#00acf8;margin:0 0 4px!important;padding:0;background-color:#fff;border:2px solid #a8e4ff;width:17px;height:17px;border-radius:3px;margin-right:9px!important;box-shadow:none}.mec-booking-shortcode label.wn-checkbox-label:after{-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);transform:rotate(-45deg);-moz-animation:dothabottomcheck 80ms ease 0s forwards;-o-animation:dothabottomcheck 80ms ease 0s forwards;-webkit-animation:dothabottomcheck 80ms ease 0s forwards;animation:dothabottomcheck 80ms ease 0s forwards;content:'';display:inline-block;-moz-transform-origin:left top;-ms-transform-origin:left top;-o-transform-origin:left top;-webkit-transform-origin:left top;transform-origin:left top;content:'';-webkit-transition:opacity ease .5;-moz-transition:opacity ease .5;transition:opacity ease .5;position:absolute;background-color:#00acf8;width:2px}.mec-booking-shortcode input[type=checkbox]:checked+.wn-checkbox-label::after{height:5px;left:2px;top:7px;-moz-animation:dothatopcheck .16s ease 0s forwards;-o-animation:dothatopcheck .16s ease 0s forwards;-webkit-animation:dothatopcheck .16s ease 0s forwards;animation:dothatopcheck .16s ease 0s forwards}.mec-booking-shortcode input[type=checkbox]:checked+.wn-checkbox-label::before{height:6px;left:7px;top:9px;-moz-animation:dothatopcheck .16s ease 0s forwards;-o-animation:dothatopcheck .16s ease 0s forwards;-webkit-animation:dothatopcheck .16s ease 0s forwards;animation:dothatopcheck .16s ease 0s forwards}.mec-booking-shortcode button[type=button],.mec-booking-shortcode button[type=submit]{font-weight:500;font-size:13px;letter-spacing:.5px;line-height:16px;outline:0}.mec-booking-shortcode button.mec-book-form-back-button{background-color:#afe6ff;box-shadow:0 2px 2px rgba(175,230,255,.27)}.mec-booking-shortcode button[type=button]:hover,.mec-booking-shortcode button[type=submit]:hover{background-color:#000;text-decoration:none;box-shadow:0 4px 10px rgba(1,2,4,.32)}.mec-booking-shortcode a.button:after,.mec-booking-shortcode button[type=submit]:after{display:none;width:13px;height:13px;border-top:0;border-right:.1em solid #f0f1f1;border-bottom:.1em solid #fbfbfb;border-left:.1em solid #fff;content:"";-webkit-transform:translateZ(0);-ms-transform:translateZ(0);transform:translateZ(0);-webkit-animation:mecloader 1.1s infinite linear;animation:mecloader 1.1s infinite linear;background:rgba(0,0,0,0);position:absolute;top:18px;right:20px;border-radius:50%;z-index:999999999999}.mec-booking-shortcode a.button.loading:after,.mec-booking-shortcode button[type=submit].loading:after{display:block}.mec-booking-shortcode .mec-book-form-coupon{margin-bottom:35px}.mec-booking-calendar-month-navigation{position:relative;text-align:center;padding:1px 0 1px;max-width:330px}.mec-booking-calendar.mec-wrap{margin-bottom:20px;width:100%}.mec-booking-calendar.mec-wrap{max-width:330px;background:#fff;box-shadow:0 1px 5px 6px rgba(0,0,0,.005) inset;border:1px solid #efefef}.mec-booking-calendar-month-navigation .mec-calendar-header h2{text-transform:uppercase;font-size:13px;font-weight:700;line-height:1.14;margin:16px auto;color:#333}.mec-booking-calendar-month-navigation .mec-next-month,.mec-booking-calendar-month-navigation .mec-previous-month{cursor:pointer;position:absolute;top:0;min-width:40px;height:40px;line-height:40px;text-align:center;background:#fff;color:#a9a9a9;font-size:10px;letter-spacing:1px;text-transform:uppercase;padding-left:5px;padding-right:5px;border-top:none;transition:all .33s ease;border-bottom:1px solid #efefef;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease}.mec-booking-calendar-month-navigation .mec-previous-month{left:0;border-bottom-right-radius:6px;border-left:none;border-right:1px solid #efefef}.mec-booking-calendar-month-navigation .mec-next-month{right:0;border-bottom-left-radius:6px;border-right:none;border-left:1px solid #efefef}.mec-booking-calendar-month-navigation .mec-next-month:hover,.mec-booking-calendar-month-navigation .mec-previous-month:hover{background-color:#f9f9f9;color:#40d9f1}.mec-events-meta-group-booking .mec-booking-calendar .mec-calendar{margin-bottom:0;width:100%}.mec-events-meta-group-booking .mec-booking-calendar .mec-calendar dl dt{text-align:center;padding:0;height:47px;line-height:47px;border:0;cursor:pointer}.mec-events-meta-group-booking .mec-booking-calendar .mec-calendar dl dt:last-child{border:0}.mec-events-meta-group-booking .mec-booking-calendar .mec-calendar .mec-calendar-row dt:hover{background:0 0}.mec-events-meta-group-booking .mec-booking-calendar .mec-calendar .mec-calendar-novel-selected-day,.mec-events-meta-group-booking .mec-booking-calendar .mec-calendar .mec-calendar-novel-selected-day span{width:32px;height:32px;margin:auto;line-height:30px;border-radius:50%;font-size:12px;font-weight:600;padding:0}.mec-has-event-for-booking{position:relative}.mec-has-event-for-booking .mec-calendar-novel-selected-day{border:2px solid #40d9f1;border-radius:50px;cursor:pointer}.mec-has-event-for-booking.mec-active .mec-calendar-novel-selected-day{background-color:#40d9f1}.mec-has-event-for-booking .mec-booking-calendar-date,.mec-has-event-for-booking .mec-booking-tooltip,.mec-multiple-event .mec-has-event-for-booking .mec-booking-tooltip{opacity:0;visibility:hidden;transition:all .4s ease}.mec-has-event-for-booking .mec-booking-tooltip,.mec-multiple-event .mec-has-event-for-booking .mec-booking-tooltip{top:60px}.mec-has-event-for-booking .mec-booking-tooltip,.mec-multiple-event .mec-has-event-for-booking .mec-booking-tooltip{position:absolute;z-index:99;width:150px;font-size:9px;left:calc(50% - 75px);background:#535a61;line-height:29px;border-radius:4px;color:#fff;font-weight:400;letter-spacing:1px;text-transform:uppercase;padding:3px 5px;box-shadow:0 4px 15px -2px #444b50a3}.mec-has-event-for-booking:hover .mec-booking-calendar-date,.mec-has-event-for-booking:hover .mec-booking-tooltip,.mec-has-event-for-booking:hover .mec-booking-tooltip.multiple-time .mec-booking-calendar-date,.mec-multiple-event .mec-has-event-for-booking:hover .mec-booking-calendar-date,.mec-multiple-event .mec-has-event-for-booking:hover .mec-booking-tooltip{opacity:1;visibility:visible}.mec-has-event-for-booking:hover .mec-booking-tooltip,.mec-multiple-event .mec-has-event-for-booking:hover .mec-booking-tooltip{top:43px}.mec-has-event-for-booking .mec-booking-calendar-date:before,.mec-multiple-event .mec-has-event-for-booking .mec-booking-calendar-date:before{display:block;content:''!important;position:absolute!important;width:12px;height:12px;top:-6px;left:calc(50% - 6px);transform:rotate(-45deg)!important;background-color:#535a61;z-index:0!important;box-shadow:0 8px 9px -9px #535a61!important}.mec-multiple-event .mec-has-event-for-booking .mec-booking-calendar-date-hover{border-bottom:1px solid #ffffff30}.mec-events-meta-group-booking .mec-booking-calendar .mec-calendar.mec-multiple-event .first-day{position:relative;padding-left:7px}.mec-events-meta-group-booking .mec-booking-calendar .mec-calendar.mec-multiple-event .first-day .mec-calendar-novel-selected-day{border-radius:47px;border-top-right-radius:0;border-bottom-right-radius:0;border-right:0;width:100%}.mec-events-meta-group-booking .mec-booking-calendar .mec-calendar.mec-multiple-event .first-day .mec-calendar-novel-selected-day span{margin-left:-7px}.mec-events-meta-group-booking .mec-booking-calendar .mec-calendar.mec-multiple-event .last-day{position:relative;padding-right:7px}.mec-events-meta-group-booking .mec-booking-calendar .mec-calendar.mec-multiple-event .last-day .mec-calendar-novel-selected-day{border-radius:47px;border-top-left-radius:0;border-bottom-left-radius:0;border-left:0;width:100%}.mec-events-meta-group-booking .mec-booking-calendar .mec-calendar.mec-multiple-event .last-day .mec-calendar-novel-selected-day span{margin-right:-7px}.mec-events-meta-group-booking .mec-booking-calendar .mec-calendar.mec-multiple-event .middle-day .mec-calendar-novel-selected-day{border-radius:0;border-right:0;border-left:0;width:100%}.mec-booking-tooltip.multiple-time{color:#fff}.mec-booking-tooltip.multiple-time .mec-booking-calendar-date:before{display:none}.mec-booking-tooltip.multiple-time .mec-booking-calendar-date:first-child:before{display:block}.mec-booking-tooltip.multiple-time .mec-booking-calendar-date{border:1px dashed #68717a;line-height:25px;margin:8px 0;border-radius:20px;transition:all .17s ease;-webkit-transition:all .17s ease;-moz-transition:all .17s ease;-ms-transition:all .17s ease;-o-transition:all .17s ease}.mec-booking-tooltip.multiple-time .mec-booking-calendar-date:hover,.mec-calendar-day.mec-active .mec-booking-tooltip.multiple-time .mec-booking-calendar-date.mec-active{background:#40d9f1;border-color:#40d9f1}.mec-choosen-time-message{max-width:330px;padding:3px 14px;border-radius:4px;background:rgb(64 217 241 / 24%);color:#40d9f1;transition:all .17s ease;opacity:1;visibility:visible;font-size:12px;margin-bottom:20px}.mec-choosen-time-message .mec-choosen-time{padding-left:7px}.mec-choosen-time-message.disable,.mec-choosen-time-message.disable .mec-choosen-time-message{opacity:0;visibility:hidden;padding:0;font-size:0;margin:0}.lity-wrap .mec-booking-calendar.mec-wrap{margin-top:20px}.lity-wrap .mec-booking-calendar-month-navigation,.lity-wrap .mec-booking-calendar.mec-wrap,.lity-wrap .mec-choosen-time-message{max-width:100%}.mec-events-meta-group-booking-shortcode .mec-booking-calendar-wrapper .mec-booking-calendar .mec-calendar dl dt{height:47px!important}@media (min-width:961px){.mec-wrap .mec-events-meta-group-booking .mec-booking-calendar .mec-calendar dl dt{height:47px}}.mec-dark-mode .mec-single-event .mec-events-meta-group-booking .mec-booking-calendar-month-navigation,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking .mec-calendar{background:#000;border-color:#222;color:#999}.mec-dark-mode .mec-booking-calendar-month-navigation .mec-next-month,.mec-dark-mode .mec-booking-calendar-month-navigation .mec-previous-month{background:#222;border-color:#000;color:#d2d2d2}.mec-dark-mode .mec-booking-calendar.mec-wrap{border-color:#111}.mec-dark-mode .mec-events-meta-group-booking .mec-booking-calendar .mec-calendar .mec-calendar-row dt:hover{background:0 0!important}.mec-dark-mode .mec-calendar.mec-event-calendar-classic,.mec-dark-mode .mec-calendar.mec-event-calendar-classic .mec-calendar-side{height:auto}.is-light-theme .mec-fes-form textarea{border:1px solid #cfeff5;box-shadow:0 2px 5px rgba(207,239,245,.38) inset}.is-light-theme .mec-fes-form .select2-selection{height:auto}.is-light-theme .mec-fes-form input[type=checkbox]:after{border:unset!important}.is-light-theme .mec-fes-form input[type=radio]:after{background:unset!important}.is-light-theme .mec-fes-form input+label{padding-top:0}.is-light-theme .mec-events-event-image img{height:auto}
|
1 |
+
.lity-container,.mec-wrap,.mec-wrap div:not([class^=elementor-]){font-family:Montserrat,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif}.entry-content .mec-wrap h1,.entry-content .mec-wrap h2,.entry-content .mec-wrap h3,.entry-content .mec-wrap h4,.entry-content .mec-wrap h5,.entry-content .mec-wrap h6,.mec-wrap h1,.mec-wrap h2,.mec-wrap h3,.mec-wrap h4,.mec-wrap h5,.mec-wrap h6{font-family:Montserrat,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;color:#171c24;font-weight:300;font-style:inherit;letter-spacing:normal;clear:none}.mec-wrap h1{font-size:50px;line-height:1.16;margin-bottom:12px;letter-spacing:-1px}.mec-wrap h2{font-size:36px;line-height:1.14;margin-bottom:10px}.mec-wrap h3{font-size:28px;line-height:1.2;margin-bottom:8px}.mec-wrap h4{font-size:24px;line-height:1.2;margin-bottom:10px}.mec-wrap h5{font-size:18px;line-height:1.3;margin-bottom:7px}.mec-wrap h6{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-wrap .subheader{color:#849098}.mec-wrap h1 strong{font-weight:700}.mec-wrap p{margin:0 0 20px 0;color:#616161;font-size:14px;line-height:1.8}.mec-wrap .mec-event-article .mec-color-hover{box-shadow:none;border:none}.mec-wrap abbr,.mec-wrap acronym{cursor:auto;border:none}.entry-content .mec-wrap a{box-shadow:none}.mec-wrap .button,.mec-wrap a.button:not(.owl-dot),.mec-wrap button:not(.owl-dot):not(.gm-control-active),.mec-wrap input[type=button],.mec-wrap input[type=reset],.mec-wrap input[type=submit]{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#24ca4f;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease}.mec-wrap .button:hover,.mec-wrap a.button:hover,.mec-wrap button:hover,.mec-wrap input[type=button]:hover,.mec-wrap input[type=reset]:hover,.mec-wrap input[type=submit]:hover{background:#222;color:#fff}.mec-wrap #mec_woo_add_to_cart_btn_r{min-width:155px;margin-top:5px;border-radius:2px;box-shadow:0 2px 1px rgba(0,0,0,.08);float:left;text-align:center}.mec-booking-form-container button{display:block}.vertical-space,.vertical-space1,.vertical-space2,.vertical-space3,.vertical-space4,.vertical-space5{display:block;width:100%;margin:0;clear:both;border:0 none;height:20px}.vertical-space2{height:40px}.vertical-space3{height:60px}.vertical-space4{height:80px}.vertical-space5{height:100px}@media only screen and (max-width:479px){.vertical-space,.vertical-space1{height:8px}.vertical-space2{height:14px}.vertical-space3{height:28px}.vertical-space4{height:40px}.vertical-space5{height:60px}}@media only screen and (max-width:960px){.vertical-space,.vertical-space1{height:12px}.vertical-space2{height:18px}.vertical-space3{height:36px}.vertical-space4{height:50px}.vertical-space5{height:80px}}.mec-wrap abbr{cursor:auto;border-bottom:0}@-webkit-keyframes rotating{from{-ms-transform:rotate(0);-moz-transform:rotate(0);-webkit-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}to{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes rotating{from{-ms-transform:rotate(0);-moz-transform:rotate(0);-webkit-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}to{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}.mec-wrap{font:14px/25px sans-serif;font-family:Montserrat,Helvetica,Arial,sans-serif;font-weight:400;color:#626262}.mec-wrap .mec-events a{border-bottom:none}.mec-wrap .mec-container a{box-shadow:none}.mec-event-content p{font-family:Roboto,sans-serif;font-weight:300}.mec-wrap .mec-clear:after,.mec-wrap .mec-clear:before{content:" ";display:table}.mec-wrap .mec-clear:after{clear:both}.mec-events-button{background:#fff;padding:12px 34px;font-size:13px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;margin-right:10px;transition:.3s}.mec-wrap .mec-events-button:hover{color:#fff}.mec-no-event{display:none}#mec-active-current{display:block}.current-hide #mec-active-current{display:none!important}.mec-event-grid-classic .mec-event-article{position:relative;border:2px solid #e3e3e3;box-shadow:0 2px 0 0 rgba(0,0,0,.016);margin-bottom:30px;max-width:none}.mec-event-grid-classic .mec-event-content{background:#fff;color:#767676;padding:0 20px 5px;text-align:center;min-height:125px}.mec-event-grid-classic .mec-event-title{color:#202020;margin:10px 0;font-weight:700;font-size:20px;letter-spacing:1px;text-transform:uppercase}.mec-event-grid-classic .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-classic .mec-event-date{font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:1px;color:#fff;padding:3px 20px;margin:0 -20px 20px -20px;text-align:center}.widget_mec_mec_widget .mec-event-grid-classic .mec-event-date{margin:0}.mec-event-grid-classic .mec-event-content p{font-size:15px;color:#8a8a8a}.mec-event-grid-classic .mec-event-detail{display:none}.mec-event-grid-classic img{margin-bottom:0;width:100%}.mec-event-footer{position:relative;border-top:1px solid #efefef;padding:20px;min-height:80px;margin:0;background:#fafafa}.mec-event-sharing-wrap{left:15px;position:absolute;list-style:none;margin:0;padding-left:0}.mec-event-sharing-wrap .mec-event-sharing{position:absolute;padding:8px 0 2px;left:-6px;bottom:54px;margin:0;margin-top:6px;border-radius:5px;width:50px;visibility:hidden;opacity:0;border:1px solid #e2e2e2;background:#fff;box-shadow:0 0 9px 0 rgba(0,0,0,.06);z-index:99;-webkit-transition:all .18s ease;transition:all .18s ease}.mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-sharing-wrap .mec-event-sharing:before{content:'';display:block;position:absolute;bottom:-10px;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-event-sharing-wrap .mec-event-sharing:before{bottom:-21px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-sharing-wrap .mec-event-sharing:after{bottom:-19px;border-color:#fff transparent transparent transparent}.mec-event-sharing-wrap:hover .mec-event-sharing{opacity:1;visibility:visible}.mec-event-sharing-wrap li{text-align:center;border:0;display:block;margin-right:2px;overflow:hidden;margin:0 auto 6px;width:38px}.mec-event-sharing-wrap:hover>li{cursor:pointer;background-color:#40d9f1}.mec-event-sharing-wrap:hover li a{color:#fff}.mec-event-sharing-wrap>li:first-of-type{border:1px solid #d9d9d9}.mec-event-sharing-wrap li a,.mec-event-sharing-wrap:hover li ul li a{border:none;color:#767676}.mec-event-sharing-wrap li i{width:36px;height:36px;display:table-cell;vertical-align:middle}.mec-event-sharing-wrap li svg{height:16px}.mec-event-sharing-wrap .mec-event-sharing li a{display:block}.mec-event-sharing-wrap .mec-event-sharing li:hover a{color:#40d9f1}.mec-event-sharing .mec-event-share:hover .event-sharing-icon{background:#40d9f1;border-width:0 1px 0;cursor:pointer}.mec-event-sharing .mec-event-map{border-width:1px 0 1px}.mec-event-footer .mec-booking-button{box-shadow:none;transition:all .21s ease;font-size:11px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:1px solid #e8e8e8;position:absolute;top:20px;right:15px;padding:0 16px;line-height:37px;height:38px}.mec-event-footer .mec-booking-button:hover{background:#191919;color:#fff;border-color:#191919}@media only screen and (max-width:960px){.mec-event-grid-classic{margin-bottom:30px}}.mec-widget .mec-event-grid-classic.mec-owl-carousel{padding:36px 0 16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav{margin:5px 0;width:100%;position:absolute;top:15px;padding:0}.mec-skin-grid-container.mec-widget{padding-top:18px}.mec-widget .mec-event-grid-classic.mec-owl-carousel{padding:20px 0 16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav{margin:0;width:100%;position:absolute;top:0;padding:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav div{position:absolute;background:#fff;line-height:0;width:34px;height:26px;padding:6px;text-align:center;margin-top:-17px;border-radius:3px;border:1px solid #e2e2e2;text-align:center;box-shadow:0 2px 0 0 rgba(0,0,0,.028);transition:all .33s ease}.mec-skin-grid-container .mec-categories{padding:0}.mec-skin-grid-container .mec-categories li{list-style:none}.mec-skin-grid-container .mec-categories li a{color:#000;line-height:24px;text-align:left;transition:all .23s ease;-webkit-transition:all .23s ease}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav .owl-next{right:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav .owl-prev{left:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-sharing{display:none}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-footer{text-align:center}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-footer .mec-booking-button{position:static;padding:11px 16px}.widget .mec-event-footer ul.mec-event-sharing-wrap li a.mec-event-share-icon{padding:0}@media screen and (min-width:56.875em){.mec-widget .mec-month-container dl{margin-bottom:0}}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-footer{text-align:right}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-sharing-wrap{left:5px;padding-left:5px}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-sharing-wrap .mec-event-sharing{left:0}.mec-widget .mec-event-sharing-wrap .mec-event-sharing{position:absolute;top:auto;bottom:52px;margin:0;margin-top:0;border-radius:5px}.mec-widget .mec-event-sharing-wrap .mec-event-sharing:after{top:auto;bottom:-17px;border-color:#fff transparent transparent transparent}.mec-widget .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-18px;border-color:#e2e2e2 transparent transparent transparent}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav button{position:absolute;background:#fff;padding:6px;margin-top:-17px;border-radius:3px;border:1px solid #e2e2e2;box-shadow:0 2px 0 0 rgba(0,0,0,.028)}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav button:hover{background:#40d9f1;border-color:#40d9f1}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav button:hover i{color:#fff}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-booking-button{width:40%;float:right;color:#202020;height:36px;line-height:14px;font-size:12px;width:auto}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-booking-button:hover{color:#fff}.mec-widget .mec-event-list-modern .col-md-2.col-sm-2,.mec-widget .mec-event-list-modern .col-md-6.col-sm-6{padding:0;width:100%;display:block;position:unset}.mec-widget .mec-event-list-modern .col-md-4.col-sm-4 .mec-booking-button{width:80%;height:46px;line-height:22px;padding:11px 20px;float:right}.mec-widget .mec-event-list-modern .col-md-4.col-sm-4.mec-btn-wrapper{top:auto;bottom:5%}@media (max-width:480px){.mec-widget .mec-event-list-modern .col-md-4.col-sm-4{padding:0}.mec-widget .mec-event-list-modern .col-md-4.col-sm-4 .mec-booking-button{width:100%}}.mec-event-grid-clean{margin-bottom:10px;max-width:none}.mec-event-grid-clean .mec-event-article{margin-bottom:30px;position:relative;border:1px solid #e2e2e2;text-align:center;padding:15px 15px 0;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-clean .mec-event-content{background:#fff;color:#767676;padding:25px 16px 0;text-align:left}.mec-event-grid-clean .mec-event-title{color:#202020;margin:0 0 10px 0;font-weight:700;font-size:21px;text-transform:capitalize}.mec-event-grid-clean .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-clean .mec-event-date{font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:1px;background-color:#40d9f1;color:#fff;padding:3px 0;margin:0;text-align:center}.mec-event-grid-clean .mec-event-content p{font-size:15px;color:#9a9a9a;line-height:1.54}.mec-event-grid-clean img{margin-bottom:0;width:100%}.mec-event-grid-clean .event-grid-t2-head{margin-bottom:10px;color:#fff;padding:9px 14px 6px;text-align:left}.mec-event-grid-clean .event-grid-t2-head .mec-event-date{font-size:50px;line-height:50px;float:left;margin-right:11px}.mec-event-grid-clean .event-grid-t2-head .mec-event-month{text-transform:uppercase;font-size:17px;line-height:20px;padding-top:4px}.mec-event-grid-clean .event-grid-t2-head .mec-event-detail{font-size:12px}.mec-event-grid-clean .event-grid-t2-head .mec-categories li a{margin-bottom:10px;color:#fff}.mec-event-grid-clean .event-grid-t2-head .mec-categories li a:hover{color:#000}.mec-event-grid-clean .mec-event-sharing-wrap{left:0;padding-left:0}.mec-event-grid-clean .mec-event-footer{position:relative;border-top:2px solid;padding:20px 0;margin:0 14px;text-align:left;background:0 0}.mec-event-grid-clean .mec-event-footer .mec-booking-button{right:0}.mec-event-grid-clean .row{margin-bottom:30px}.mec-event-grid-modern{margin-bottom:10px;max-width:none}.mec-event-grid-modern .mec-event-article{position:relative;border:1px solid #e2e2e2;text-align:center;margin-bottom:30px;padding:45px 15px 10px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-modern .mec-event-content{background:#fff;color:#767676;padding:35px 15px 10px;text-align:left}.mec-event-grid-modern .mec-event-title{color:#202020;margin:0 0 10px 0;font-weight:700;font-size:24px;text-transform:none;letter-spacing:-1px}.mec-event-grid-modern .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-modern .mec-event-content p{font-size:15px;color:#9a9a9a;line-height:1.54}.mec-event-grid-modern img{margin-bottom:0;width:100%}.mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:9px 14px 6px;text-align:left}.mec-event-grid-modern .event-grid-modern-head .mec-event-date{font-size:50px;line-height:50px;float:left;margin-right:11px}.mec-event-grid-modern .event-grid-modern-head .mec-event-month{text-transform:uppercase;font-size:17px;line-height:20px;padding-top:4px}.mec-event-grid-modern .event-grid-modern-head .mec-event-detail{font-size:12px}.mec-event-grid-modern .event-grid-modern-head .mec-event-day{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:35px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-event-grid-modern .mec-event-footer{position:relative;height:90px;padding:20px 0;border:none;margin:0 14px;text-align:left;background:0 0}.mec-event-grid-modern .mec-event-footer .mec-booking-button{right:auto;left:0}.mec-event-grid-modern .mec-event-sharing-wrap{left:auto;right:0;padding-left:0}.mec-event-grid-modern .mec-event-sharing{left:auto;right:-6px}.mec-event-grid-modern .mec-event-sharing-wrap li{border-radius:55px}.mec-event-grid-modern .row{margin-bottom:0}@media only screen and (max-width:479px){.mec-event-grid-modern .mec-event-article{padding-bottom:30px}.mec-event-grid-modern .mec-event-sharing{top:60px;left:0;right:auto}.mec-event-grid-modern .mec-event-footer .mec-booking-button{top:0}}span.mec-event-title-soldout{font-size:8px;font-weight:700;letter-spacing:.5px;text-transform:uppercase;background:#e63360;color:#fff;padding:3px 8px;line-height:1;border-radius:15px;white-space:nowrap;vertical-align:middle}.mec-event-grid-colorful .mec-event-article{min-height:400px;border:none;box-shadow:none;background:#40d9f1;padding-top:25px;margin:0;color:#fff}.mec-event-grid-colorful .mec-event-content{background:0 0}.mec-event-grid-colorful .event-grid-modern-head,.mec-event-grid-colorful .event-grid-modern-head .mec-event-date,.mec-event-grid-colorful .event-grid-modern-head .mec-event-day,.mec-event-grid-colorful .mec-event-content p,.mec-event-grid-colorful .mec-event-sharing-wrap>li>a,.mec-event-grid-colorful .mec-event-title a{color:#fff}.mec-event-grid-colorful .mec-event-footer .mec-booking-button{border:none}.mec-event-grid-colorful .mec-event-sharing-wrap>li{border-color:#fff}.mec-event-grid-colorful .mec-event-sharing-wrap:hover>li{background:#333;border-color:#333}.mec-event-grid-colorful .mec-event-title a.mec-color-hover:hover{color:#fff;text-decoration:underline}.mec-event-grid-colorful .mec-event-title .event-color{display:none}.mec-event-grid-colorful div[class^=col-md-]{padding:0 1px 1px 0;margin:0}.mec-event-grid-colorful .mec-event-article .mec-time-details{color:#fff}@media only screen and (min-width:768px){.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-day{font-size:26px}.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-month{font-size:15px}.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-date{font-size:50px}.mec-wrap.mec-sm959.mec-event-grid-colorful .mec-event-title{font-size:21px}.mec-wrap.mec-sm959.mec-event-grid-colorful .mec-event-content p{font-size:13px}}@media only screen and (min-width:768px) and (max-width:1200px){.mec-wrap.mec-sm959.mec-event-grid-colorful div[class^=col-md-]{width:50%}}.mec-event-list-minimal .mec-event-article{border-bottom:1px solid #efefef;padding:24px 0 16px}.mec-event-list-minimal .mec-wrap .col-md-9{padding:0}.mec-event-list-minimal .mec-event-date{position:relative;float:left;margin-right:30px;color:#fff;width:52px;padding:6px 4px 3px;text-align:center;text-transform:uppercase;border-radius:3px}.mec-event-list-minimal .mec-event-date{min-width:52px;width:fit-content}.mec-event-list-minimal .mec-event-date:nth-child(2){margin:0 30px 0 -20px}.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-date:after{width:100%}.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-d.mec-multiple-dates{font-size:20px;padding:0}.mec-event-list-modern .mec-event-date.mec-multiple-date-event:first-child{padding:10px 0 6px 0;position:relative;width:fit-content}.mec-event-list-modern .mec-event-date.mec-multiple-date-event:first-child:after{content:'';position:absolute;bottom:0;left:0;width:100%;height:1px;background:silver}.mec-event-list-modern .mec-event-date.mec-multiple-date-event:last-child{padding:5px 0 10px 0}.mec-event-list-modern .mec-event-date.mec-multiple-date-event .event-d{font-size:20px;padding:0}.mec-event-list-modern .mec-event-date.mec-multiple-date-event .event-da{font-size:20px;margin: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;padding-left: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 .telegram{min-width:36px;min-height:36px;line-height:36px;padding:9px 1px 10px;border-radius:60px}.mec-event-list-modern .mec-event-sharing .telegram .svg-inline--fa.fa-telegram.fa-w-16{width:2.126rem;padding:2px 10px 0 10px;margin-bottom:-2px}.mec-event-list-modern .mec-event-sharing .telegram .svg-inline--fa.fa-telegram.fa-w-16 path{fill:#767676}.mec-event-list-modern .mec-event-sharing li:hover .telegram{background:#40d9f1}.mec-event-list-modern .mec-event-sharing li:hover .telegram .svg-inline--fa.fa-telegram.fa-w-16 path{fill:#fff}.mec-event-list-modern .mec-event-sharing>li:hover{display:inline-block}.mec-event-list-modern .mec-event-sharing>li:hover a i{color:#fff;background:#40d9f1;border-color:#40d9f1}.mec-event-list-modern .mec-event-sharing>li i{width:36px;display:inline-block;line-height:35px;color:#767676;text-align:center;border-radius:50%;border:1px solid #ddd;font-size:14px}.mec-event-list-modern .mec-event-sharing .mec-event-share:hover .mec-event-sharing-icon{background:#40d9f1;border-color:#40d9f1;cursor:pointer;border-radius:50%}.mec-event-list-modern .mec-event-sharing li:hover a i{background:#40d9f1}@media only screen and (min-width:768px){.mec-event-list-modern .mec-event-article{position:relative;min-height:160px;overflow:hidden}.mec-event-list-modern .col-md-2.col-sm-2{width:210px;position:absolute;left:0;top:20px}.mec-event-list-modern .col-md-4.col-sm-4.mec-btn-wrapper{width:180px;padding:0;position:absolute;right:0;top:30%}.mec-event-list-modern .col-md-6.col-sm-6{width:100%;padding-left:225px;padding-right:195px}}@media only screen and (max-width:767px){.mec-event-list-modern .mec-btn-wrapper .mec-booking-button{letter-spacing:1px;border:1px solid #e1e1e1;padding:8px 16px}.mec-event-list-modern .mec-btn-wrapper{padding:0 0 12px}.mec-event-list-modern .mec-event-sharing{margin-bottom:0}}.mec-event-grid-minimal .mec-event-article{margin:15px 0;min-height:80px;display:table}.mec-event-grid-minimal .event-detail-wrap{display:table-cell;vertical-align:middle}.mec-event-grid-minimal .mec-event-date{width:70px;float:left;margin-right:20px;padding:12px 16px 10px;text-align:center;text-transform:uppercase;border-radius:4px;border:1px solid #e6e6e6;transition:all .37s ease-in-out;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-minimal .mec-event-date span{display:block;font-size:24px;font-weight:700;text-align:center;margin-bottom:4px;color:#2a2a2a;transition:color .3s ease}.mec-event-grid-minimal .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;line-height:21px;font-size:16px;text-transform:uppercase;transition:color .3s ease}.mec-event-grid-minimal .mec-event-title a{color:#191919;transition:color .3s ease}.mec-event-grid-minimal .mec-event-detail,.mec-event-grid-minimal .mec-time-details{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;font-family:Roboto,sans-serif;margin-bottom:5px}.mec-event-grid-minimal .mec-event-date:hover{color:#fff}.mec-event-grid-minimal .mec-event-date:hover span{color:#fff}.mec-wrap .mec-event-grid-minimal .mec-event-date:hover{color:#fff}.mec-event-list-classic .mec-event-article{padding:12px 0;margin-bottom:20px}.mec-event-list-classic .mec-event-image{float:left;width:86px;margin-right:20px}.mec-event-list-classic .mec-event-date,.mec-event-list-classic .mec-event-time{font-weight:400;font-size:13px;letter-spacing:0;line-height:18px;text-align:left;display:initial;margin-right:12px}.mec-event-list-classic .mec-event-time .mec-time-details,.mec-event-list-classic .mec-event-time i{display:inline;margin-right:3px}.mec-event-list-classic .mec-event-date span{font-weight:500;margin-bottom:6px}.mec-event-list-classic .mec-event-title{font-size:15px;margin:10px 0 12px;font-weight:700;text-transform:uppercase}.mec-event-list-classic .mec-event-title a{color:#494949;transition:color .3s ease}.mec-event-list-classic .mec-event-detail{color:#777;font-weight:400;line-height:12px;font-size:12px;overflow:hidden}.mec-event-list-classic a.magicmore{padding:10px 16px;color:#fff;background:#222;letter-spacing:2px;font-size:11px}.mec-event-list-classic a.magicmore:after{content:"";display:none}.mec-event-list-classic a.magicmore:hover{color:#40d9f1}.mec-event-grid-simple .mec-event-article{position:relative;margin-bottom:30px}.mec-event-grid-simple .mec-event-article:after{border-right:1px solid #e6e6e6;height:60px;position:absolute;top:50%;margin-top:-30px;right:-1px}.mec-event-grid-simple .row div:last-child .mec-event-article:after{border:none}.mec-event-grid-simple .row{margin:15px 0 30px;text-align:center}.mec-event-grid-simple .mec-event-date{padding:0;margin:0;text-transform:capitalize;font-size:12px;font-weight:700}.mec-event-grid-simple .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;line-height:21px;font-size:15px;padding-top:5px;text-transform:uppercase;transition:color .37s ease}.mec-event-grid-simple .mec-event-title a{color:#494949;transition:color .3s ease}.mec-event-grid-simple .mec-event-detail{font-family:Roboto,sans-serif;font-weight:400;line-height:1;letter-spacing:0;font-size:13px;color:#777}.mec-event-grid-simple:hover .mec-event-title{color:#40d9f1}.mec-event-grid-simple:hover .mec-event-date{background:0 0}.event-last:after{display:none}@media only screen and (max-width:767px){.mec-event-grid-simple .mec-event-article{padding-bottom:20px;margin-bottom:20px;border-bottom:1px solid #eee}.mec-event-grid-simple .mec-event-article:after{border:none}}.mec-event-grid-novel .mec-event-article{position:relative;margin-bottom:30px;padding:60px 5% 60px 7%;border:1px solid rgba(255,255,255,.12);border-radius:10px;background-color:#0050fd;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease;z-index:1}.mec-event-grid-novel .mec-event-article .novel-grad-bg{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:10px;opacity:0;z-index:-1;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease}.mec-event-grid-novel .mec-event-article:hover{-webkit-box-shadow:0 13px 36px 0 rgba(0,0,0,.23);box-shadow:0 13px 36px 0 rgba(0,0,0,.23);border-color:transparent}.mec-event-grid-novel .mec-event-article:hover .novel-grad-bg{background-image:-webkit-gradient(linear,left top,right top,from(#262e32),to(#0e1015));background-image:-webkit-linear-gradient(left,#262e32 0,#0e1015 100%);background-image:-o-linear-gradient(left,#262e32 0,#0e1015 100%);background-image:linear-gradient(90deg,#262e32 0,#0e1015 100%);opacity:1}.mec-event-grid-novel .mec-event-image{float:left;width:150px;height:150px}.mec-event-grid-novel .mec-event-image img{width:150px;height:150px;border-radius:50%}.mec-event-grid-novel .mec-event-detail-wrap{margin-left:200px}.mec-event-grid-novel .mec-event-content h4{position:relative;margin-bottom:10px;display:inline-block}.mec-event-grid-novel .mec-event-content h4 a{font-size:24px;line-height:35px;color:#fafcff}.mec-event-grid-novel .mec-event-content h4::before{content:'';position:absolute;top:8px;left:-30px;width:17px;height:17px;background:#5cd0ed;opacity:.4;border-radius:50%}.mec-event-grid-novel .mec-event-content h4::after{content:'';position:absolute;top:12px;left:-26px;width:9px;height:9px;background:#5cd0ed;border-radius:50%}.mec-skin-grid-container .mec-event-grid-novel .mec-categories li a{color:#fff}.mec-event-grid-novel .mec-event-address,.mec-event-grid-novel .mec-event-detail,.mec-event-grid-novel .mec-event-month,.mec-event-grid-novel .mec-local-time-details{position:relative;padding-left:35px;font-size:15px;line-height:30px;color:rgba(255,255,255,.4)}.mec-event-grid-novel .mec-event-address::before,.mec-event-grid-novel .mec-event-detail::before,.mec-event-grid-novel .mec-event-month::before,.mec-event-grid-novel .mec-local-time-details:before{position:absolute;top:6px;left:6px;font-size:17px;font-family:simple-line-icons;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1}.mec-event-grid-novel .mec-local-time-details::before{content:"\e007"}.mec-event-grid-novel .mec-event-month::before{content:"\e075"}.mec-event-grid-novel .mec-event-detail::before{content:"\e081"}.mec-event-grid-novel .mec-event-address::before{content:"\e096"}.mec-event-grid-novel .mec-event-footer{clear:both;padding:20px 0;border-top:none;background:0 0}.mec-event-grid-novel .mec-event-footer .mec-booking-button{right:auto;left:0;height:42px;width:148px;padding:0 20px;font-size:14px;font-weight:400;line-height:42px;text-align:center;color:#fff;background:0 0;border-color:rgba(255,255,255,.1);border-radius:50px}.mec-event-grid-novel .mec-event-footer .mec-booking-button:hover{background-color:rgba(255,255,255,.1)}.mec-event-grid-novel .mec-event-sharing-wrap{left:175px;cursor:pointer;padding-left:0}.mec-event-grid-novel .mec-event-sharing-wrap>li{border-color:rgba(255,255,255,.1);border-radius:50%}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing{top:-5px;left:0;padding:5px 10px 2px 50px;min-width:150px;width:inherit;height:37px;background-color:rgba(255,255,255,.1);-webkit-box-shadow:none;box-shadow:none;border:none;border-radius:50px}.mec-event-grid-novel .mec-event-sharing-wrap:hover>li{background-color:rgba(255,255,255,.1)}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing::after,.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing::before{display:none}.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon,.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon a,.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li i{display:inline}.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon a{padding:0 10px}.mec-event-grid-novel .mec-event-sharing-wrap>li a{color:#fff}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li a{color:rgba(255,255,255,.4)}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li a:hover{color:rgba(255,255,255,1)}@media only screen and (max-width:1200px){.mec-event-grid-novel .row .col-md-6.col-sm-6{width:100%;float:none}.mec-event-grid-novel .mec-event-image{float:none;margin-top:-20px;margin-bottom:20px}.mec-event-grid-novel .mec-event-detail-wrap{margin-left:20px}.mec-event-grid-novel .mec-event-footer{margin-top:30px}}@media only screen and (max-width:767px){.mec-event-grid-novel .mec-event-footer{margin-top:0;padding-top:30px;margin-bottom:24px}.mec-event-grid-novel .mec-event-footer .mec-booking-button{display:block;position:relative}.mec-event-grid-novel .mec-event-sharing-wrap{left:0;bottom:-55px;padding-left:0}.mec-event-grid-novel .mec-event-content h4 a{font-size:20px;line-height:1.3}}.mec-event-grid-novel .mec-event-sharing-wrap{padding-left:0}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing{width:fit-content;z-index:999999}@media(min-width:1280px){.mec-event-grid-novel .col-md-4.col-sm-4 .mec-event-article img{width:100px;height:100px}.mec-event-grid-novel .col-md-4.col-sm-4 .mec-event-detail-wrap{margin-left:150px}}@media(min-width:760px) and (max-width:1024px){.mec-event-grid-novel .col-md-4.col-sm-4{width:100%}.mec-event-grid-novel .mec-event-image{float:left}.mec-event-grid-novel .col-md-4.col-sm-4 .mec-event-article img{width:100px;height:100px}}.mec-event-cover-modern{position:relative}.mec-event-cover-modern .mec-event-cover-a{background:0 0;position:absolute;color:#fff;bottom:0;left:0;text-decoration:none}.mec-event-cover-modern .mec-event-cover-a .mec-event-overlay{transition:all .5s;opacity:.8;width:100%;height:100%;position:absolute}.mec-event-cover-modern .mec-event-cover-a:hover .mec-event-overlay{opacity:1}.mec-event-cover-modern .mec-event-detail{padding:40px;position:relative}.mec-event-cover-modern .mec-event-cover-a:hover .mec-event-tag{color:#333;transition:all .5s}.mec-event-cover-modern .mec-event-cover-a .mec-event-title:hover{text-decoration:underline}.mec-event-cover-modern .mec-event-tag{background:#fff;display:inline-block;padding:5px 9px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:24px}.mec-event-cover-modern .mec-event-date{text-transform:uppercase;font-size:17px;font-weight:300}.mec-event-cover-modern .mec-event-title{color:#fff;text-transform:uppercase;font-size:40px;font-weight:700;margin:6px 0}.mec-event-cover-modern .mec-event-place{font-weight:400;font-size:18px;font-family:Roboto,sans-serif}@media only screen and (max-width:767px){.mec-event-cover-modern .mec-event-cover-a{width:100%}}.mec-event-cover-classic{position:relative;overflow:hidden;background:#fff;padding:6px;border:1px solid #e8e8e8}.mec-event-cover-classic .mec-event-overlay{position:absolute;left:6px;right:6px;bottom:6px;top:6px;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-cover-classic:hover .mec-event-overlay{background-color:rgba(36,36,36,.6)}.mec-event-cover-classic .mec-event-content{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out}.mec-event-cover-classic .mec-event-date{font-size:14px;text-transform:uppercase;font-weight:400;line-height:1.6}.mec-event-cover-classic .mec-event-date span{display:block;font-weight:700;font-size:16px}.mec-event-cover-classic .mec-event-title{color:#fff;margin:20px 0 38px;font-size:24px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-cover-classic .mec-btn-wrapper{text-align:left}.mec-event-cover-classic .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-cover-classic .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:12px 20px;letter-spacing:3px;font-size:12px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-cover-classic .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-cover-classic .mec-event-image img{min-width:100%}@media only screen and (max-width:960px){.mec-event-cover-classic .mec-event-content{padding:20px}.mec-event-cover-classic .mec-event-button{font-size:11px;padding:7px 10px;letter-spacing:1px}.mec-event-cover-classic .mec-event-title{font-size:19px;margin:15px 0 25px}.mec-event-cover-classic .mec-event-date{font-size:12px}}@media only screen and (max-width:767px){.mec-event-cover-classic{margin-bottom:30px}}@media only screen and (max-width:479px){.mec-event-cover-classic .mec-event-content{padding:15px;font-size:15px}.mec-event-cover-classic .mec-event-title{font-size:15px;margin:10px 0}.mec-event-cover-classic .mec-event-button{font-size:10px;padding:6px;letter-spacing:1px}.mec-event-cover-classic .mec-event-icon{padding:10px}}.mec-load-more-wrap{text-align:center;display:block;width:100%;padding-top:20px;text-align:center;position:relative}.mec-load-more-button{box-shadow:none;transition:all .21s ease;font-size:12px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:2px solid #e8e8e8;border-radius:50px;padding:0 28px;margin-bottom:20px;cursor:pointer;line-height:40px;font-family:Montserrat,Helvetica,Arial,sans-serif;height:42px;display:inline-block}.mec-load-more-button:hover{background:#191919;color:#fff;border-color:#191919}.mec-load-more-loading{content:url(../img/ajax-loader.gif);cursor:wait;background:0 0;border-style:none}.mec-load-more-loading:hover{background:0 0}.mec-modal-preloader,.mec-month-navigator-loading{width:100%;height:100%;background:no-repeat rgba(255,255,255,.88) url(../img/ajax-loader.gif) center;border-style:none;position:fixed;left:0;right:0;bottom:0;top:0;z-index:9}.mec-event-calendar-classic .mec-calendar-side .mec-calendar-table{min-height:1024px}.mec-calendar-side .mec-calendar-table{min-height:450px}.mec-skin-weekly-view-events-container.mec-month-navigator-loading{margin-top:0}.mec-calendar.mec-event-calendar-classic .mec-calendar-side{display:block}.mec-skin-daily-view-events-container.mec-month-navigator-loading{margin-top:0}@media only screen and (min-width:961px){.mec-wrap.mec-sm959 .mec-calendar-side .mec-calendar-table{min-height:1px}}@media only screen and (max-width:479px){.mec-calendar-side .mec-calendar-table{min-height:1px}}.mec-event-cover-clean{position:relative;border:1px solid #e6e6e6;padding:8px}.mec-event-cover-clean .mec-event-overlay{height:100%;background-color:rgba(36,36,36,.4);position:absolute;width:100%;left:0;border:8px solid #fff;top:0;transition:all .5s ease-in-out}.mec-event-cover-clean .mec-event-content{color:#fff;position:absolute;bottom:20px;padding:40px 60px;transition:all .5s ease-in-out}.mec-event-cover-clean .mec-event-title{color:#fff;font-weight:700;margin:46px 0 19px;font-size:29px;text-transform:uppercase;text-shadow:0 0 1px rgba(0,0,0,.5)}.mec-event-cover-clean .mec-event-title a{color:#fff;transition:all .5s;text-decoration:none;outline:0;border:none;box-shadow:none}.mec-event-cover-clean .mec-event-title a:hover{text-decoration:underline}.mec-event-cover-clean .mec-event-date{position:absolute;top:-20px;right:60px;color:#fff;width:60px;padding:14px 10px;z-index:1}.mec-event-cover-clean .mec-event-date div{text-align:center;text-transform:uppercase;letter-spacing:1px;line-height:16px}.mec-event-cover-clean .mec-event-date .dday{padding-bottom:15px;border-bottom:1px solid rgba(255,255,255,.5);margin-bottom:13px;font-size:24px}.mec-event-cover-clean .mec-event-date .dmonth{letter-spacing:2px}.mec-event-cover-clean .mec-event-place{font-size:18px;font-family:Roboto,sans-serif}.mec-event-cover-clean .mec-event-image img{width:100%}@media only screen and (max-width:768px){.mec-event-cover-clean .mec-event-content{padding:20px;bottom:5px}.mec-event-cover-clean .mec-event-title{font-size:23px}.mec-event-cover-clean .mec-event-date{right:20px;padding:10px;width:50px}}@media only screen and (max-width:479px){.mec-event-cover-clean .mec-event-content{padding:10px}.mec-event-cover-clean .mec-event-title{font-size:19px;padding-right:25px}.mec-event-cover-clean .mec-event-date{right:-20px;top:-10px}.mec-event-cover-clean .mec-event-detail{font-size:12px}}.mec-month-divider{text-align:center;margin:60px 0 40px 0}.widget .mec-month-divider{margin:10px 0}.mec-month-divider span{text-transform:uppercase;font-size:22px;font-weight:700;padding-bottom:5px;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative}.mec-month-divider span:before{border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-30px;left:50%;width:60px}.widget .mec-month-divider span{font-size:13px}.mec-event-list-standard .mec-events-pagination{margin-top:60px;border-top:4px solid #ebebeb;min-height:80px;padding-top:20px}.mec-event-list-standard .mec-events-pagination .mec-events-pag-previous{float:left;margin-left:0}.mec-event-list-standard .mec-events-pagination .mec-events-pag-next{float:right;margin-right:0}.mec-event-list-standard .mec-event-article{position:relative;display:block;margin-bottom:25px;border:1px solid #e9e9e9;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-list-standard .mec-topsec{display:table;width:100%}.mec-event-list-standard .col-md-3.mec-event-image-wrap{padding-left:0}.mec-event-list-standard .mec-event-content{padding-top:15px;padding-right:30px}.mec-event-list-standard .mec-event-title{font-size:29px;font-weight:700;letter-spacing:-1px;margin:0 0 10px}.mec-event-list-standard .mec-event-title a{color:#292929;transition:color .3s ease}.mec-event-list-standard .mec-col-table-c{display:table-cell;height:100%;vertical-align:middle;float:none!important}.mec-event-list-standard .mec-col-table-c.mec-event-meta-wrap{padding-top:15px}.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{vertical-align:top}.mec-topsec .mec-event-image{line-height:1px}.mec-event-list-standard .mec-event-meta-wrap{border-left:1px solid #eee}.mec-event-list-standard .mec-time-details{text-transform:uppercase;font-size:11px;font-weight:300;padding-top:0;text-align:left;padding-left:30px}.mec-event-list-standard .mec-event-meta .mec-event-address{font-style:normal;letter-spacing:0;font-size:13px;color:#8a8a8a}.mec-event-list-standard .mec-event-meta span.mec-event-d,.mec-event-list-standard .mec-event-meta span.mec-event-m{font-size:17px;font-weight:700;padding-right:6px;color:#444;text-transform:uppercase}.mec-event-list-standard .mec-date-details,.mec-event-list-standard .mec-local-time-details,.mec-event-list-standard .mec-time-details,.mec-event-list-standard .mec-venue-details{position:relative;padding-left:28px;margin-bottom:10px}.mec-event-list-standard .mec-date-details:before,.mec-event-list-standard .mec-local-time-details:before,.mec-event-list-standard .mec-time-details:before,.mec-event-list-standard .mec-venue-details:before{content:"\f041";font-family:fontawesome;position:absolute;left:6px;font-size:15px}.mec-event-list-standard .mec-date-details:before{content:"\f073"}.mec-event-list-standard .mec-time-details:before{content:"\f017"}.mec-event-list-standard .mec-local-time-details:before{content:"\f0ac"}.mec-event-list-standard .mec-local-time-details .mec-local-title{display:block}.mec-event-list-standard .mec-local-time-details .mec-local-date,.mec-event-list-standard .mec-local-time-details .mec-local-time{font-style:normal;letter-spacing:0;font-size:11px;color:#8a8a8a;font-weight:300;line-height:1.6}.mec-event-list-minimal .mec-event-title a{color:#292929;transition:color .3s ease}.mec-event-meta-wrap .mec-price-details{margin-bottom:10px}.mec-price-details i{margin-right:4px;vertical-align:text-top}.mec-event-meta-wrap .mec-event-meta .mec-price-details i:before{font-size:15px}.mec-event-list-standard .mec-price-details{text-transform:uppercase;font-size:11px;font-weight:300}.mec-event-list-standard .mec-price-details i{margin-left:6px}.mec-month-side .mec-price-details{margin-left:2px}.mec-event-article .mec-price-details i,.mec-month-side .mec-price-details i,.tooltipster-sidetip.tooltipster-shadow .tooltipster-content .mec-price-details i{padding-top:4px;vertical-align:unset}.mec-event-list-standard ul.mec-categories{position:relative;padding-left:28px;margin-bottom:10px}.mec-event-list-standard ul.mec-categories li.mec-category a:before{font-size:16px!important;content:"\f105";position:absolute;font-family:fontawesome;left:8px;font-size:15px}@media only screen and (max-width:960px){.mec-event-list-standard .mec-topsec{display:block}.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:block;width:40%}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{display:block;min-height:230px}.mec-event-list-standard .mec-event-meta-wrap{display:block;border-left:none;border-top:1px solid #eee;width:100%;float:none;padding-top:20px}}@media only screen and (min-width:480px) and (max-width:960px){.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:table-cell}}@media only screen and (max-width:479px){.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap img{float:none;width:100%;padding:0}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{padding:10px 10px 10px 30px}}.mec-localtime-details{color:#777;font-weight:400;line-height:12px;font-size:12px}.mec-localtime-details .mec-localdate,.mec-localtime-details .mec-localtime,.mec-localtime-details .mec-localtitle{display:inline-block}.mec-localtime-details .mec-start-date-label{padding-right:5px}.mec-localtime-details .mec-localtime{padding-left:5px}.mec-event-list-minimal .mec-localtime-details{display:inline-flex;font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;padding-left:9px}.mec-event-grid-classic .mec-localtime-details,.mec-event-grid-clean .mec-localtime-details{color:#fff;font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:-.02em;color:#fff;padding:0 0;line-height:18px;margin-top:-3px}.mec-event-grid-clean .mec-localtime-details,.mec-event-grid-colorful .mec-localtime-details,.tooltipster-box .mec-localtime-details{line-height:22px;padding-top:10px}.mec-event-grid-colorful .mec-localtime-details{color:#fff}.mec-event-grid-classic .mec-localtime-details{text-align:center}.mec-event-grid-minimal .mec-localtime-details{line-height:22px}.mec-wrap .mec-yearly-view-wrap .mec-localtime-wrap i{display:inline-block;margin-left:-1px}.mec-timetable-t2-content .mec-local-time-details{padding-left:19px}.mec-timetable-t2-content .mec-local-time-details{position:relative}.mec-timetable-t2-content .mec-local-time-details:before{content:"\e007";font-family:simple-line-icons;position:absolute;font-size:12px;margin-right:4px;left:0}.mec-masonry .mec-masonry-col6 .mec-localtime-details{margin-top:10px;line-height:21px}.mec-masonry .mec-masonry-col6 .mec-localtime-details i{height:auto}.mec-event-cover-classic .mec-localtime-details{color:#fff;margin-top:12px}.mec-event-cover-classic .mec-localtime-details i{padding-right:8px}.mec-event-cover-clean .mec-localtime-details{color:#fff;margin-bottom:20px}.mec-event-cover-modern .mec-localtime-details{color:#fff;margin:10px 0;font-weight:400;font-size:18px}.mec-event-countdown-style1 .mec-localtime-details,.mec-event-countdown-style2 .mec-localtime-details,.mec-event-countdown-style3 .mec-localtime-details{color:#fff;padding:8px 5px 0;font-size:14px;line-height:25px}.mec-event-countdown-style1 .mec-localtime-details{text-align:center}.mec-event-hover-carousel-type4 .mec-localtime-details{display:block;color:#fff;font-size:11px}.mec-event-footer-carousel-type3 .mec-localtime-details .mec-localdate,.mec-event-footer-carousel-type3 .mec-localtime-details .mec-localtime,.mec-event-footer-carousel-type3 .mec-localtime-details .mec-localtitle,.mec-event-footer-carousel-type3 .mec-localtime-details span{display:inline-flex;line-height:20px;text-align:left;margin:0!important;font-size:12px;color:#777;line-height:28px}.mec-owl-crousel-skin-type1 .mec-localtime-details{margin-top:-7px;margin-bottom:12px}.mec-wrap .mec-slider-t5 .mec-localtime-details{margin-top:14px;line-height:20px}.mec-wrap .mec-slider-t5 .mec-localtime-details i{font-size:18px;height:20px}.mec-timeline-event-local-time{background:rgba(64,217,241,.11);display:inline-block;padding:7px 20px 11px;border-radius:20px;line-height:1.24}.mec-timeline-event-local-time .mec-localtime-details{font-size:13px;font-weight:500;vertical-align:middle;margin-left:6px;color:inherit;line-height:24px}.mec-timeline-event-local-time .mec-localtime-details i{font-size:17px;vertical-align:middle;margin-left:-7px;padding-right:3px}.mec-booking-modal{background-color:#e6f7ff}.mec-booking-modal .mec-booking-shortcode .mec-book-form-gateway-label input[type=radio]:before{top:-1px}.mec-modal-booking-button{box-shadow:none;transition:all .21s ease;font-size:11px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:1px solid #e8e8e8;padding:12px 16px;line-height:37px;height:38px;margin:12px 0}.mec-modal-booking-button:hover{background:#191919;color:#fff;border-color:#191919}.mec-modal-booking-button.mec-mb-icon i{font-size:14px}.mec-event-list-classic .mec-modal-booking-button{height:0;line-height:1;margin:7px 0 0;display:inline-table;letter-spacing:0;padding:12px 14px}.mec-event-grid-novel ul.mec-categories{position:relative;line-height:30px;font-size:15px}.mec-event-grid-novel ul.mec-categories li.mec-category a{padding-left:35px;color:rgba(255,255,255,.4);line-height:30px;font-size:15px}.mec-event-grid-novel ul.mec-categories li.mec-category a:before{font-size:16px!important;content:"\f105";position:absolute;font-family:fontawesome;left:8px;font-size:15px;color:rgba(255,255,255,.4)}.mec-calendar-events-side .mec-modal-booking-button,.mec-event-container-classic .mec-modal-booking-button,.mec-event-grid-minimal .mec-modal-booking-button,.mec-event-list-minimal .mec-modal-booking-button,.mec-timetable-t2-col .mec-modal-booking-button{margin:0;color:#282828;font-size:12px;transition:all .5s ease;-webkit-transition:all .5s ease;position:relative;padding:0 0 0 24px;background:0 0;text-align:left;display:inline;border:0;font-weight:700}.mec-timetable-t2-col .mec-modal-booking-button{color:#fff;padding-left:19px}.mec-timetable-t2-col .mec-modal-booking-button:hover{color:#282828}.mec-event-list-minimal .mec-modal-booking-button{margin:0 4px 0 84px}.mec-calendar-events-side .mec-modal-booking-button:before,.mec-event-container-classic .mec-modal-booking-button:before,.mec-event-grid-minimal .mec-modal-booking-button:before,.mec-event-list-minimal .mec-modal-booking-button:before{content:'';position:absolute;background:#7a7272;width:18px;height:1px;left:0;top:45%;transition:all .1s ease;-webkit-transition:all .1s ease}.mec-skin-carousel-container .mec-modal-booking-button{line-height:70px}.mec-event-list-modern .mec-modal-booking-button.mec-mb-icon{border-radius:1px;letter-spacing:2px;border:1px solid #e6e6e6;color:#333;background-color:#fff;padding:13px 12px 13px 14px;font-weight:700;box-shadow:0 2px 0 0 rgba(0,0,0,.016);transition:all .28s ease;line-height:unset}.mec-event-list-modern .mec-modal-booking-button.mec-mb-icon:hover{border-color:#222;background:#222;color:#fff}.mec-event-footer .mec-modal-booking-button,.mec-skin-carousel-container .mec-event-footer-carousel-type2 .mec-modal-booking-button{position:absolute;top:20px;right:125px;margin:0;padding:0 16px;line-height:37px}.mec-skin-carousel-container .mec-event-footer-carousel-type2 .mec-modal-booking-button{top:0;line-height:41px;height:41px;right:121px}.mec-skin-carousel-container .mec-event-footer-carousel-type3 .mec-modal-booking-button{line-height:18px;font-size:12px;letter-spacing:0;float:right;height:41px;margin:0 12px 0 0}.mec-skin-carousel-container .mec-owl-crousel-skin-type4 .mec-modal-booking-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:10px 14px;letter-spacing:1.5px;font-size:11px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none;margin:0 0 0 12px}.mec-skin-carousel-container .mec-owl-crousel-skin-type4 .mec-modal-booking-button:hover{color:#191919;background-color:#fff;border:2px #fff solid}.mec-event-grid-modern .mec-event-footer .mec-modal-booking-button{right:auto;left:110px}.mec-event-grid-simple .mec-modal-booking-button,.mec-events-agenda .mec-modal-booking-button{margin:0;font-size:12px;transition:all .5s ease;-webkit-transition:all .5s ease;position:relative;padding:0;background:0 0;text-align:left;display:inline;border:0;font-weight:700}.mec-events-agenda .mec-modal-booking-button{display:block;height:unset;padding-left:173px;line-height:14px;margin-bottom:7px}.mec-yearly-view-wrap .mec-modal-booking-button{margin:0;padding-left:14px;text-transform:capitalize}.mec-event-grid-novel .mec-event-footer .mec-modal-booking-button.mec-mb-icon{right:auto;left:238px;width:36px;height:36px;display:table-cell;vertical-align:middle;padding:0 10px;border-color:rgba(255,255,255,.1);background-color:rgba(0,0,0,0);color:#fff;border-radius:36px}.mec-event-grid-novel .mec-event-footer .mec-modal-booking-button.mec-mb-icon:hover{background-color:rgba(255,255,255,.1)}.mec-event-grid-simple .mec-modal-booking-button:hover,.mec-events-agenda .mec-modal-booking-button:hover,.mec-events-yearlu .mec-modal-booking-button:hover{color:#191919}.mec-event-masonry .mec-event-footer .mec-modal-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05);right:auto;left:155px}.mec-timeline-event .mec-modal-booking-button{position:absolute;top:0;right:0;display:inline-block;padding:7px 20px 7px;line-height:22px;height:unset;border:unset;text-transform:capitalize;font-weight:500;font-size:13px;letter-spacing:0;margin:0;border-radius:0 0 0 10px}.mec-timeline-event .mec-modal-booking-button:hover{background:#191919;color:#fff}.mec-skin-daily-view-events-container .mec-modal-booking-button,.mec-weekly-view-dates-events .mec-event-article .mec-modal-booking-button{position:absolute;top:50%;transform:translateY(-50%);right:15px;line-height:26px;height:49px;border:unset;text-align:center;display:inline-block;background:#ededed;color:#191919;padding:12px;border-radius:2px;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:2px;transition:all .24s ease;margin:0}.mec-skin-daily-view-events-container .mec-modal-booking-button:hover,.mec-weekly-view-dates-events .mec-event-article .mec-modal-booking-button:hover{background:#292929;color:#fff}@media(max-width:1023px){.mec-skin-daily-view-events-container .mec-modal-booking-button,.mec-weekly-view-dates-events .mec-event-article .mec-modal-booking-button{position:relative;top:unset;transform:unset;margin:14px 16px 0;padding:8px;line-height:20px;height:35px}}@media(max-width:768px){.featherlight .featherlight-inner{width:100%}.mec-events-agenda .mec-modal-booking-button{padding:0}}@media(max-width:480px){.mec-booking-modal .mec-events-meta-group-booking-shortcode{padding:20px}.mec-booking-modal .mec-booking-shortcode .mec-book-reg-field-mec_email,.mec-booking-modal .mec-booking-shortcode .mec-book-reg-field-name{width:100%}.mec-booking-modal .mec-booking-shortcode button#mec-book-form-btn-step-2{margin-left:20px}.mec-booking-modal .mec-booking-shortcode .mec-click-pay button[type=submit]{bottom:22px}.mec-calendar-events-side .mec-modal-booking-button:before,.mec-event-container-classic .mec-modal-booking-button:before,.mec-event-grid-minimal .mec-modal-booking-button:before,.mec-event-list-minimal .mec-modal-booking-button:before{display:none}.mec-calendar-events-side .mec-modal-booking-button,.mec-event-container-classic .mec-modal-booking-button,.mec-event-grid-minimal .mec-modal-booking-button,.mec-event-list-minimal .mec-modal-booking-button,.mec-timetable-t2-col .mec-modal-booking-button{margin:0;padding:0}.mec-event-grid-modern .mec-event-footer .mec-booking-button{top:20px}}.mec-wrap .mec-events-cal-links{margin-bottom:0}.mec-single-event #mec-wrap{padding:0;margin-top:35px}.mec-wrap .mec-single-title,.single-mec-events .mec-wrap.mec-no-access-error h1{margin-top:0;margin-bottom:30px;font-weight:700;font-size:33px}.mec-single-event .mec-event-content{padding:40px 0 30px;margin-bottom:10px}.mec-single-event .mec-events-meta-group-booking,.mec-single-event .mec-frontbox{margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-wrap #main-content{overflow:hidden;padding-top:35px}.mec-single-event .mec-map-get-direction-address-cnt{position:relative}.mec-single-event .mec-map-get-direction-address-cnt input.mec-map-get-direction-address{width:100%;height:46px;padding:13px 10px;margin-bottom:0;background:#fcfcfc;border:1px solid #e0e0e0;border-radius:0;box-shadow:inset 0 2px 5px rgba(0,0,0,.081)}.mec-single-event .mec-map-get-direction-address-cnt input.mec-map-get-direction-address:focus{color:#444;background:#fff;border-color:#b0b0b0;box-shadow:0 0 3px rgba(0,0,0,.2)}.mec-single-event .mec-map-get-direction-btn-cnt input{width:100%}.mec-single-event .mec-map-get-direction-reset{position:absolute;z-index:2;top:5px;right:10px;font-size:11px;cursor:pointer}.mec-events-meta-group-tags{margin-top:20px}.mec-events-meta-group-tags a{display:inline-block;color:#444;font-size:11px;text-transform:uppercase;letter-spacing:1.5px;font-weight:500;padding:3px 7px;border:1px solid #ddd;border-radius:2px;background:#fff;margin:1px 3px}.mec-events-meta-group-tags a:hover{text-decoration:underline;background:#f9f9f9}.mec-local-time-details li{list-style:none}.mec-single-event:not(.mec-single-modern) .mec-local-time-details{background:#f7f7f7;padding:12px 14px 8px;margin-bottom:12px;vertical-align:baseline;position:relative;border:none}.mec-single-event:not(.mec-single-modern) .mec-local-time-details ul{margin:0;padding-left:35px}.mec-single-event:not(.mec-single-modern) .mec-local-time-details h3{border:none;padding-left:15px}.mec-single-event:not(.mec-single-modern) .mec-local-time-details h3:before{display:none}.mec-single-event.mec-single-modern i.mec-sl-speedometer{display:none}.mec-single-event .mec-events-meta-group-booking{padding-bottom:30px}.mec-single-event .mec-events-meta-group-booking ul{list-style:none;margin-left:0;padding-left:0}.mec-single-event .mec-booking .mec-book-bfixed-fields-container{padding-left:15px}.mec-single-event .mec-events-meta-group-booking ul li{padding:0;list-style:none;margin-top:40px}.mec-single-event .mec-events-meta-group-booking h4{margin-bottom:20px;font-size:23px;font-weight:700}.mec-single-event .mec-events-meta-group-booking li h4{font-size:19px}.mec-single-event .mec-events-meta-group-booking button,.mec-single-event .mec-events-meta-group-booking input{border-radius:0;margin-bottom:6px}.mec-single-event .mec-events-meta-group-booking button{min-width:155px;margin-top:5px;margin-left:10px;border-radius:2px;box-shadow:0 2px 1px rgba(0,0,0,.08)}.mec-single-event .mec-events-meta-group-booking button.mec-book-form-back-button{background:#c4cace;float:left}.mec-single-event .mec-events-meta-group-booking button.mec-book-form-back-button:hover{background:#000}.mec-single-event .mec-events-meta-group-booking button.mec-book-form-next-button{float:left;margin-left:0}button#mec-book-form-back-btn-step-3{float:none}.mec-next-occ-booking,.mec-next-occ-booking-p{padding-left:15px}.mec-events-meta-group-booking .mec-next-occ-booking,.mec-events-meta-group-booking .mec-next-occ-booking-p{padding:0;font-size:12px;letter-spacing:0;margin:3px 0;padding:5px 1em 3px 0}.mec-book-username-password-wrapper{padding:0 15px}.lity-container .mec-next-occ-booking,.lity-container .mec-next-occ-booking-p{padding-left:0}.mec-single-event .mec-events-meta-group-booking .mec-click-pay{max-width:350px}.mec-single-event .mec-events-meta-group-booking .mec-click-pay #mec_woo_add_to_cart_btn_r,.mec-single-event .mec-events-meta-group-booking .mec-click-pay button.mec-book-form-next-button{float:right}.mec-single-event .mec-events-meta-group-booking .mec-click-pay #mec_woo_add_to_cart_btn_r:hover,.mec-single-event .mec-events-meta-group-booking .mec-click-pay button.mec-book-form-next-button:hover{background:#000}.lity-container .mec-click-pay{max-width:400px}.lity-container .mec-book-form-btn-wrap button.mec-book-form-next-button,.lity-container .mec-click-pay #mec_woo_add_to_cart_btn_r{float:right}.lity-container button.mec-book-form-next-button{float:right}.lity-container .mec-click-pay #mec_woo_add_to_cart_btn_r:hover,.lity-container .mec-click-pay button.mec-book-form-next-button:hover{background:#000}.mec-single-event .mec-events-meta-group-booking .mec-click-next{float:right;position:relative;width:calc(100% - 186px)}.lity-container .mec-click-next{float:right;position:relative;width:calc(100% - 186px)}.mec-single-event .mec-book-form-coupon button{margin-left:0}.mec-single-event .mec-book-form-gateway-checkout button{margin-left:0}.mec-single-event .mec-single-event .mec-book-form-gateway-checkout button{margin-right:20px}.lity-content .mec-book-form-back-button{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-right:10px;line-height:1;padding:18px 20px 16px;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;min-width:170px;margin-top:5px;border-radius:0;margin-bottom:6px;background:#c4cace}.lity-content .mec-book-form-back-button:hover{background:#000}.lity-content button#mec-book-form-back-btn-step-3{float:none}.lity-content .mec-book-form-next-button{float:left}.lity-content .mec-book-bfixed-fields-container{list-style:none;padding-left:0}.mec-single-event .mec-book-first,.mec-single-event .mec-book-form-gateways,.mec-single-event .mec-book-form-price,.mec-single-event .mec-event-tickets-list,.mec-single-event form.mec-click-next{padding-left:0;padding-right:0}.mec-single-event label.mec-fill-attendees{margin-left:0}.mec-wrap .mec-events-meta-group-booking #mec-book-form-back-btn-step-2,.mec-wrap .mec-events-meta-group-booking #mec-book-form-back-btn-step-3,.mec-wrap .mec-events-meta-group-booking #mec-book-form-btn-step-1{margin-left:0}.mec-wrap .mec-booking-form-container .col-md-12{padding-left:0}.mec-wrap .mec-events-meta-group-booking .mec-wrap-checkout.row{margin:0}.mec-wrap .mec-wrap-checkout .mec-book-form-gateways .mec-book-form-gateway-label{padding-left:3px}.mec-wrap p.mec-gateway-comment{margin-top:20px}.mec-single-event .mec-events-meta-group-booking .mec-event-ticket-available{display:block;margin-bottom:20px;margin-top:-17px;font-size:11px;color:#8a8a8a}.mec-single-event .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.mec-single-event .mec-events-meta-group-booking form{margin:0}.mec-single-event .mec-events-meta-group-booking h5 span,.mec-single-event .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;display:block;clear:none;padding:5px 1em 3px 0}.mec-single-event .mec-events-meta-group-booking h5 span{display:inline-block}.mec-single-event .mec-events-meta-group-booking h5 span.mec-ticket-variation-name{padding-right:5px;text-transform:capitalize}.mec-single-event .mec-events-meta-group-booking input::-webkit-input-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input:-moz-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:330px;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both}.wbmec-mandatory{padding-left:5px;font-size:14px}.mec-single-event .mec-events-meta-group-booking .mec-red-notification input,.mec-single-event .mec-events-meta-group-booking .mec-red-notification select,.mec-single-event .mec-events-meta-group-booking .mec-red-notification textarea{border:1px solid #ff3c3c!important}.lity .mec-events-meta-group-booking .mec-red-notification input[type=checkbox],.lity .mec-events-meta-group-booking .mec-red-notification input[type=radio],.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=checkbox],.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=radio]{outline:1px solid #ff3c3c!important}.lity .mec-book-ticket-container .mec-red-notification input,.lity .mec-book-ticket-container .mec-red-notification select,.lity .mec-book-ticket-container .mec-red-notification textarea{border:1px solid #ff3c3c!important}.mec-booking .woocommerce-notices-wrapper .woocommerce-message{color:#0dbf52;background-color:#cef7ce;margin:0;padding-top:1rem;line-height:2.9rem;border:0}.mec-booking .woocommerce-notices-wrapper .woocommerce-message a{margin:0}@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;display:contents}.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;padding:0}.mec-single-event .mec-event-social li.mec-event-social-icon{display:inline-block}.mec-single-event .mec-event-social li.mec-event-social-icon a{display:inline-block;color:#fff;width:40px;height:40px;padding:9px;font-size:16px;margin-right:5px;margin-bottom:5px}.mec-single-event .mec-event-social a.facebook{background:#3b5996}.mec-single-event .mec-event-social a.facebook:hover{background:#28385c}.mec-single-event .mec-event-social a.twitter{background:#00acee}.mec-single-event .mec-event-social a.twitter:hover{background:#0087bd}.mec-single-event .mec-event-social a.vimeo{background:#0dadd6}.mec-single-event .mec-event-social a.vimeo:hover{background:#0a85a3}.mec-single-event .mec-event-social a.dribble{background:#d53e68}.mec-single-event .mec-event-social a.dribble:hover{background:#bf4c78}.mec-single-event .mec-event-social a.youtube{background:#cb322c}.mec-single-event .mec-event-social a.youtube:hover{background:#992622}.mec-single-event .mec-event-social a.pinterest{background:#cb2027}.mec-single-event .mec-event-social a.pinterest:hover{background:#99181d}.mec-single-event .mec-event-social a.google{background:#c3391c}.mec-single-event .mec-event-social a.google:hover{background:#99181f}.mec-single-event .mec-event-social a.linkedin{background:#0073b2}.mec-single-event .mec-event-social a.linkedin:hover{background:#005380}.mec-single-event .mec-event-social a.email{background:#ff5d5e}.mec-single-event .mec-event-social a.email:hover{background:#cc4949}.mec-single-event .mec-event-social a.vk{background:#5b88bd}.mec-single-event .mec-event-social a.vk:hover{background:#3d608a}.mec-single-event .mec-event-social a.tumblr{background:#34465d}.mec-single-event .mec-event-social a.tumblr:hover{background:#273649}.mec-single-event .mec-event-social a.telegram{background:#08c}.mec-single-event .mec-event-social a.telegram:hover{background:#1076be}.mec-single-event .mec-event-social a.whatsapp{background:#25d366}.mec-single-event .mec-event-social a.whatsapp:hover{background:#23ac55}.mec-single-event .mec-event-social a.flipboard{background:#e12828}.mec-single-event .mec-event-social a.flipboard:hover{background:#af1e1e}.mec-single-event .mec-event-social a.pocket{background:#ef4056}.mec-single-event .mec-event-social a.pocket:hover{background:#8d1717}.mec-single-event .mec-event-social a.reddit{background:#ff5700}.mec-single-event .mec-event-social a.reddit:hover{background:#c94909}.mec-single-event .mec-event-social a.flipboard svg,.mec-single-event .mec-event-social a.telegram svg{height:16px}.mec-single-event .mec-event-social li.mec-event-social-icon a svg{display:unset}.mec-single-event .mec-event-social a.rss{background:#f29a1d}.mec-single-event .mec-event-social a.rss:hover{background:#cc7400}.mec-single-event .mec-event-social a.instagram{background:#457399}.mec-single-event .mec-event-social a.instagram:hover{background:#2e4d66}.mec-single-event .mec-event-social a.linkedin{background:#457399}.mec-single-event .mec-event-social a.linkedin:hover{background:#2e4d66}.mec-single-event .mec-event-social a.other-social{background:#ff5d5e}.mec-single-event .mec-event-social a.other-social:hover{background:#cc4949}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4,.mec-single-event .mec-frontbox-title,.mec-single-event .mec-wrap-checkout h4{text-transform:uppercase;font-size:15px;font-weight:700;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative;text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4:before,.mec-single-event .mec-frontbox-title:before,.mec-single-event .mec-wrap-checkout h4:before{padding:1px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-35px;left:50%}.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-month],.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-year]{width:47%!important;margin-right:12px;margin-top:5px;display:inline-block!important}@media(max-width:768px){.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-month],.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-year]{width:100%!important;margin-right:0;display:block!important}}.mec-event-meta i:before{font-size:20px;vertical-align:middle}.mec-event-meta .mec-single-event-additional-organizers i:before,.mec-event-meta .mec-single-event-organizer i:before{font-size:14px;vertical-align:baseline}#mec-wrap .mec-events-day-time-slot .mec-events-content{float:left;width:33%;padding:0 15px}#mec-wrap .mec-events-day-time-slot .mec-events-event-image{padding-left:0}#mec-events-content .mec-events-abbr{color:#8d8d8d;font-size:14px}.mec-single-event .mec-events-content{margin-bottom:30px}.mec-single-event .mec-organizer-url a{word-wrap:break-word}.mec-single-event #headline{margin:0 0 10px}.mec-single-event #headline h2{padding:0}.mec-single-event .mec-events-meta-group.mec-events-meta-group-gmap .mec-events-venue-map{margin-top:0;padding:8px;border:1px solid #e5e5e5;border-radius:7px}#mec-events-gmap-0{height:325px!important}.mec-events-list .mec-events-day-time-slot .mec-events-event-meta{width:33%;float:left;padding:40px;height:auto;margin:0}.mec-events-day-time-slot .mec-events-content.description.entry-summary{font-size:15px;font-weight:300;color:#8d8d8d}.mec-events-day-time-slot .type-mec_events h2{font-size:28px;padding-bottom:20px}.mec-events-day .mec-events-day-time-slot .type-mec_events{margin:0}.mec-events-day .mec-events-day-time-slot h5{background-color:#8d8d8d}.mec-single-event .mec-event-meta .mec-single-event-additional-organizers .mec-events-single-section-title,.mec-single-event .mec-event-meta .mec-single-event-organizer .mec-events-single-section-title,.mec-single-event .mec-events-meta-date h3{padding-left:0;margin:10px;display:inline-block}.mec-single-event .mec-events-meta-date h3{width:100%}.mec-single-event .mec-events-event-image{border:0}.mec-single-event .mec-events-venue-map{padding:0}.mec-event-cost,.mec-event-more-info,.mec-event-website,.mec-events-meta-date,.mec-single-event-additional-organizers,.mec-single-event-category,.mec-single-event-date,.mec-single-event-label,.mec-single-event-location,.mec-single-event-organizer,.mec-single-event-time{background:#f7f7f7;padding:12px 14px 8px;margin-bottom:12px;vertical-align:baseline;position:relative}.mec-single-event .mec-events-meta-date dd,.mec-single-event .mec-single-event-additional-organizers dd,.mec-single-event .mec-single-event-organizer dd{padding-left:0;margin-bottom:10px}.mec-single-event .mec-events-meta-date dd span,.mec-single-event .mec-single-event-additional-organizers dd span,.mec-single-event .mec-single-event-organizer dd span{display:block;padding-left:12px;color:#8d8d8d}.mec-single-event .mec-events-meta-date i,.mec-single-event .mec-single-event-additional-organizers i,.mec-single-event .mec-single-event-organizer i{margin-right:10px;margin-left:12px}.mec-events-meta-group.mec-events-meta-group-venue dl{margin-bottom:0}address.mec-events-address{line-height:19px;font-style:normal;font-size:12px}.mec-single-event .mec-event-content dt{margin-top:5px}.mec-single-event .mec-single-event-additional-organizers .mec-single-event-additional-organizer{margin-bottom:15px;padding-bottom:5px;border-bottom:1px solid #e4e4e4}.mec-single-event .mec-single-event-additional-organizers .mec-single-event-additional-organizer:last-child{margin-bottom:0;padding-bottom:0;border:none}.mec-event-schedule-content{border-left:4px solid #f0f0f0;padding-top:10px;margin-top:30px;margin-left:25px;margin-bottom:20px;color:#8a8a8a}.mec-event-schedule-content dl{padding-left:24px;font-size:12px;position:relative;margin-bottom:35px}.mec-event-schedule-content dl:before{content:'';display:block;position:absolute;left:0;top:4px;width:20px;height:0;border-top:4px solid #f0f0f0}.mec-event-schedule-content dl dt{margin:0 0 10px;line-height:1.16}.mec-event-schedule-content dl dt.mec-schedule-title{font-size:13px;color:#5a5a5a;font-weight:700}.mec-event-schedule-content dl dt.mec-schedule-description{font-weight:300}.mec-event-schedule-content .mec-schedule-speakers{background:#f7f7f7;padding:10px}.mec-wrap .mec-event-schedule-content h6{font-size:13px;color:#5a5a5a;font-weight:700;display:inline-block}.mec-wrap .mec-event-schedule-content a{font-weight:400;color:#5a5a5a;transition:all .1s ease}.single-mec-events .mec-speakers-details ul{padding:0;margin-left:0}.mec-single-event .mec-speakers-details ul li{list-style:none;background:#f7f7f7;padding:5px 5px 18px 5px;margin-top:14px}.mec-single-event .mec-speakers-details ul li a{-webkit-transition:.2s all ease;transition:.2s all ease}.mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a img{float:left;border-radius:50%;transition:.2s all ease;border:2px solid transparent;width:68px;height:68px}.mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a:hover img{border-color:#40d9f1}.mec-single-event .mec-speakers-details ul li .mec-speaker-name{display:inline-block;margin-top:10px;font-size:15px;line-height:1.8;text-transform:capitalize;font-weight:700;padding-left:8px}.mec-single-event .mec-speakers-details ul li .mec-speaker-job-title{display:block;font-size:12px;margin-top:-1px;padding-left:75px;color:#888}.mec-single-event-location img,.mec-single-event-organizer img{margin-bottom:10px;width:100%}.mec-qrcode-details{text-align:center}.mec-time-comment{font-size:11px}.mec-wrap .mec-attendees-list-details p{font-weight:300;margin:20px 0 0 0;color:#8d8d8d}.mec-wrap .mec-attendees-list-details li{list-style:none;display:block;margin-top:15px}.mec-wrap .mec-attendees-list-details li .mec-attendee-avatar{display:inline-block}.mec-wrap .mec-attendees-list-details li .mec-attendee-profile-link{display:inline-block;vertical-align:top;margin-left:10px}.mec-attendees-list-details ul{margin-bottom:0}.mec-attendees-list-details .mec-attendee-profile-link a{color:#8d8d8d;display:block}.mec-attendees-list-details .mec-attendee-profile-link span{display:inline-block;color:#000;vertical-align:middle;cursor:pointer}.mec-attendees-list-details span.mec-attendee-profile-ticket-number{border-radius:50px;width:20px;height:20px;font-size:12px;text-align:center;color:#fff;margin-right:4px;line-height:20px}#wrap .mec-attendees-list-details span.mec-attendee-profile-ticket-number{line-height:19px}.mec-attendees-list-details .mec-attendee-profile-link span i{vertical-align:middle;font-size:9px;font-weight:700;margin-left:5px}.mec-attendees-list-details .mec-attendees-toggle{border:1px solid #e6e6e6;background:#fafafa;padding:15px 15px 0;border-radius:3px;margin:12px 0 20px 52px;position:relative;font-size:13px;box-shadow:0 3px 1px 0 rgba(0,0,0,.02)}.mec-attendees-list-details .mec-attendees-toggle:after,.mec-attendees-list-details .mec-attendees-toggle:before{content:'';display:block;position:absolute;left:50px;width:0;height:0;border-style:solid;border-width:10px}.mec-attendees-list-details .mec-attendees-toggle:after{top:-20px;border-color:transparent transparent #fafafa transparent}.mec-attendees-list-details .mec-attendees-toggle:before{top:-21px;border-color:transparent transparent #e1e1e1 transparent}.mec-attendees-list-details .mec-attendees-toggle .mec-attendees-item{padding-bottom:15px}.mec-attendees-list-details .mec-attendee-avatar img{border-radius:3px}.mec-attendee-avatar-sec{float:left;width:50px;margin-right:12px}.mec-attendee-profile-name-sec,.mec-attendee-profile-ticket-sec{float:left;width:calc(100% - 62px);margin-top:3px}.mec-calendar{margin-bottom:20px;border:1px solid #e8e8e8;width:100%;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-calendar .mec-calendar-topsec{display:table;background:#fff}.mec-calendar .mec-calendar-topsec .mec-calendar-events-sec{display:none}.mec-calendar .mec-calendar-side{width:590px;display:table-cell;padding:40px;position:relative;text-align:center;box-shadow:0 1px 5px 6px rgba(0,0,0,.005) inset}.mec-calendar .mec-calendar-events-side{display:table-cell;height:100%;border-left:1px solid #efefef;padding:40px;width:100%}.mec-calendar .mec-calendar-events-side .mec-table-side-day{width:46px;height:46px;margin:0 auto 20px;position:relative;text-align:center;line-height:46px;border:1px solid #40d9f1;border-radius:50%;font-size:12px;font-weight:600;padding:0}.mec-calendar .mec-calendar-events-side .mec-table-side-title{text-align:center;font-size:11px;text-transform:uppercase;letter-spacing:3px;margin-bottom:14px}.mec-calendar .mec-calendar-header{position:relative;width:560px;margin-top:8px;margin-bottom:16px}.mec-calendar .mec-calendar-header h2{text-transform:uppercase;font-size:22px;font-weight:700;color:#333}.mec-calendar .mec-event-footer{width:auto;min-height:60px}.mec-calendar dl{display:table;margin:0;border:none;padding:0;table-layout:fixed}.mec-calendar dt{display:table-cell;transition:all .66s ease;color:#4d4d4d;background:#fff;border-radius:44px;font-size:14px;width:80px;height:80px;line-height:80px;text-align:center}.excerpt-wrap .mec-wrap dt,.nv-content-wrap .mec-wrap dt{display:table-cell}.mec-calendar .mec-calendar-table .mec-no-event{display:none}.mec-calendar .mec-calendar-table-head dt{font-weight:700;text-transform:uppercase;font-size:15px}.mec-calendar .mec-calendar-row dt:hover{background:#f4f4f4}.mec-calendar .mec-table-nullday{color:#cacaca}.mec-calendar.mec-box-calendar .mec-table-nullday:last-child{border-right:1px solid #eaeaea}.mec-calendar .mec-next-month:hover,.mec-calendar .mec-prev-month:hover{background:#f4f4f4}.mec-calendar .mec-selected-day,.mec-calendar .mec-selected-day:hover{background:#40d9f1;color:#fff}.mec-calendar .mec-selected-day a{color:#fff}.mec-calendar .mec-has-event{position:relative}.mec-calendar .mec-calendar-row dt.mec-has-event:hover{background:#40d9f1}.mec-calendar .mec-has-event a{cursor:pointer;display:block;width:100%;height:100%;border-radius:50%;color:#4d4d4d;transition:all .25s ease;text-decoration:none;box-shadow:none}.mec-calendar .mec-calendar-row dt.mec-has-event.mec-selected-day a,.mec-calendar .mec-calendar-row dt.mec-has-event:hover a{color:#fff}.mec-calendar .mec-has-event:after{background-color:#40d9f1;border-radius:50%;display:block;content:'';width:8px;height:8px;bottom:14px;left:50%;margin:-4px 0 0 -4px;position:absolute;transition:all .25s ease}.mec-calendar .mec-calendar-row dt.mec-has-event:hover:after{background-color:#fff}.mec-calendar .mec-has-event.mec-selected-day:after{display:none}.mec-calendar .mec-event-article{text-align:left;margin-bottom:0;padding-bottom:25px;padding-top:26px;border-top:1px solid #efefef;transition:all .33s ease}.mec-calendar .mec-event-article:hover{background-color:#fafafa}.mec-calendar .mec-event-article .mec-event-time{font-size:11px;line-height:1.1;margin:0}.mec-calendar .mec-event-article .mec-event-title{font-size:13px;padding:0;margin:10px 0 8px;font-weight:700;text-transform:uppercase}.mec-calendar .mec-event-article .mec-event-title a{text-decoration:none;color:#494949;transition:color .3s ease}.mec-calendar .mec-event-article .mec-event-title a:hover{color:#40d9f1}.mec-calendar .mec-event-article .mec-event-image,.mec-calendar .mec-event-list-classic .mec-event-image img{width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-image{float:left;margin-right:20px;width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-detail,.mec-calendar .mec-event-article .mec-localtime-details div{font-size:13px;line-height:1.3;font-family:Roboto,sans-serif;color:#9a9a9a;margin-bottom:0}.mec-calendar .mec-calendar-side .mec-next-month,.mec-calendar .mec-calendar-side .mec-previous-month{cursor:pointer;position:absolute;top:0;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;color:#a9a9a9;font-size:12px;letter-spacing:1px;text-transform:uppercase;padding-left:10px;padding-right:10px;border:1px solid #efefef;border-top:none;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease}.mec-calendar .mec-calendar-side .mec-next-month i,.mec-calendar .mec-calendar-side .mec-previous-month i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-calendar .mec-calendar-side .mec-next-month:hover,.mec-calendar .mec-calendar-side .mec-previous-month:hover{background-color:#f9f9f9;color:#40d9f1}.mec-calendar .mec-calendar-side .mec-previous-month{left:0;border-bottom-right-radius:6px;border-left:none}.mec-calendar .mec-calendar-side .mec-next-month{right:0;border-bottom-left-radius:6px;border-right:none}@media only screen and (min-width:961px){.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-side{width:370px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-header{position:relative;width:350px;margin-top:30px;margin-bottom:20px;padding-top:20px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) dt{width:50px;height:50px;line-height:50px}.mec-wrap.mec-sm959 .mec-calendar.mec-event-calendar-classic dl dt{height:110px}}@media only screen and (max-width:1200px){.mec-calendar .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-calendar .mec-calendar-side{width:370px}.mec-calendar .mec-calendar-header{position:relative;width:350px;margin-top:30px}.mec-calendar dt{width:50px;height:50px;line-height:50px}}@media only screen and (max-width:767px){.mec-calendar .mec-calendar-header h2{font-size:18px}.mec-calendar .mec-calendar-topsec{width:100%}.mec-calendar .mec-calendar-side{width:100%;display:block;padding:30px}.mec-calendar .mec-calendar-header{width:auto}.mec-calendar .mec-calendar-events-side{width:100%;display:block;height:100%;border-left:none;border-top:1px solid #efefef;padding:20px}.mec-calendar dl{width:100%}.mec-calendar dt{width:14%;height:60px;line-height:60px;border-radius:50px}}@media only screen and (max-width:479px){.mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-calendar .mec-calendar-header h2{font-size:16px;margin-top:33px}.mec-calendar dt{height:38px;line-height:38px}.mec-calendar .mec-event-list-classic .mec-event-detail,.mec-calendar .mec-event-list-classic .mec-event-title{font-size:12px}.mec-calendar .mec-event-list-classic .mec-event-time{font-size:10px}}.mec-box-calendar.mec-calendar .mec-has-event a,.mec-box-calendar.mec-calendar dt{border-radius:0}.mec-box-calendar.mec-calendar .mec-calendar-header{margin-top:2px;margin-bottom:30px}.mec-box-calendar.mec-calendar dt{border-bottom:1px solid #eaeaea;border-left:1px solid #eaeaea}.mec-box-calendar.mec-calendar dl dt:last-child{border-right:1px solid #eaeaea}.mec-box-calendar.mec-calendar .mec-calendar-table-head dt{border-top:1px solid #eaeaea;background-color:#f8f8f8}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{background-color:#f4f4f4}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{border-radius:2px;top:40px;border:1px solid #eee;height:30px;line-height:30px;z-index:1}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:40px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:40px}.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-wrap .mec-calendar.mec-event-calendar-classic .mec-selected-day:hover{color:#fff!important}.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-event-container-simple .mec-calendar-side{min-width:600px!important;overflow-x:scroll}}.mec-wrap.colorskin-custom .mec-calendar.mec-event-container-simple .mec-selected-day:hover{background:#f4f4f4}.mec-event-container-simple .mec-calendar-day .mec-monthly-tooltip.event-single-link-simple:last-of-type{border:none}.mec-tooltip-event-title{font-size:16px;font-weight:700;color:#000;margin-bottom:2px}.mec-tooltip-event-time,.tooltipster-sidetip.tooltipster-shadow .tooltipster-content .mec-price-details{font-size:12px;color:#888;margin-bottom:8px;margin-top:5px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-content{padding:17px}.mec-tooltip-event-content{clear:both}.mec-tooltip-event-featured{float:left;margin-right:13px;margin-bottom:1px}.mec-tooltip-event-featured img{max-width:120px}.mec-tooltip-event-desc{font-size:14px;color:#444;line-height:18px}.mec-tooltip-event-desc p{font-size:13px;line-height:1.4;margin-bottom:10px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-box{border-radius:3px!important;border:1px solid #e2e3e4!important;background:#fff!important;box-shadow:0 -1px 30px -2px rgba(0,0,0,.15)!important}.tooltipster-box .mec-tooltip-event-desc{margin-bottom:12px}.tooltipster-sidetip .tooltipster-arrow{overflow:visible!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-border{border-width:12px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-right .tooltipster-arrow-border{border-right-color:#e2e3e4!important}.tooltipster-sidetip .tooltipster-arrow-border{left:-12px!important;z-index:9999999999!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-background{display:block!important}.tooltipster-sidetip .tooltipster-arrow-background{border-width:11px!important;z-index:99999999999!important}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background{left:-9px!important;top:1px!important;border-right-color:#fff!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background{border-top-color:#fff!important;left:0!important;top:-1px!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border{left:-1px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-top .tooltipster-arrow-border{border-top-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{left:-1px!important;top:-11px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{border-bottom-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background{top:-9px!important;border-bottom-color:#fff!important}.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background{border-left-color:#fff!important;left:-2px!important;top:0!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-left .tooltipster-arrow-border{border-left-color:#e2e3e4!important;left:-1px!important;top:-1px!important}@media (max-width:780px){.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4{word-break:break-all;font-size:13px}}@media (max-width:320px){.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4{font-size:10px}}.mec-calendar.mec-calendar-daily .mec-calendar-day-events .mec-event-article{padding-left:15px;padding-right:15px;position:relative}.mec-calendar.mec-calendar-daily .mec-calendar-a-month{text-align:center;background-color:#fff;border-bottom:2px solid #f4f4f4;position:relative}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{color:#444;font-size:18px;line-height:1.2;padding:15px 0 11px;margin:0;font-weight:700;letter-spacing:1px;text-transform:uppercase;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-top{text-align:center;padding:10px 0;position:relative;background-color:#fafafa}.mec-calendar.mec-calendar-daily .mec-next-month,.mec-calendar.mec-calendar-daily .mec-previous-month{position:absolute;top:50%;left:50%;margin-top:-25px;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;border:1px solid #e2e2e2;border-radius:50px;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month i,.mec-calendar.mec-calendar-daily .mec-previous-month i{font-size:14px;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month:hover,.mec-calendar.mec-calendar-daily .mec-previous-month:hover{border-color:#d0d0d0;color:#444;box-shadow:0 2px 5px 0 rgba(0,0,0,.075)}.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-150px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:100px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month{min-height:28px;height:28px;line-height:28px;width:28px;margin-top:-14px;border-radius:3px}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2,.mec-calendar.mec-calendar-daily .mec-calendar-d-top h3{margin-top:9px;color:#b9b9b9;font-family:Roboto,sans-serif;font-size:30px;font-weight:100;text-transform:uppercase;margin-bottom:12px;line-height:1}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2{font-size:81px;color:#444;margin-bottom:10px;line-height:1.1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table{overflow:hidden;background:#fff;min-height:60px;border-top:1px solid #e6e6e6;border-bottom:2px solid #f3f3f3;padding:0 50px;position:relative}@media only screen and (min-width:479px){.mec-calendar.mec-calendar-daily .mec-calendar-d-table{padding:0 55px}}.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl{width:1310px;display:block}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{display:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl.mec-weekly-view-week-active{display:block}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt{display:block;background:#fff;width:42px;height:60px;line-height:60px;text-align:center;float:left;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6;border-radius:0}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day:hover,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt:hover{background:#fafafa;box-shadow:0 2px 5px 0 rgba(0,0,0,.065) inset;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day{cursor:default;background:#fff;color:#c1c1c1;line-height:59px;text-align:center;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-has-event{cursor:pointer;font-weight:700;color:#4a4a4a}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-daily-view-day-active,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt.mec-table-d-current{font-size:18px;font-weight:700;background:#fafafa;color:#40d9f1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-prev{float:none;font-size:14px;width:55px;position:absolute;top:0;left:0;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next{left:auto;right:0;border-left:1px solid #e6e6e6;border-right:none}.mec-calendar.mec-calendar-daily .mec-today-container .mec-today-count{font-size:12px;color:#888;text-align:center}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}}.widget .mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}.widget .mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.widget .mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-util-hidden{display:none}.mec-daily-view-date-events,.mec-weekly-view-date-events{list-style:none;margin:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table{padding:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{width:calc(100% - 1px)}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt{width:14.286%;height:70px;line-height:normal;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:hover{background:#fff;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:last-child{border-right:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:12px;font-weight:700;text-transform:uppercase;display:block;margin:15px 0 6px}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-prev{display:none}ul.mec-weekly-view-dates-events,ul.mec-weekly-view-dates-events li{padding:0;margin:0;line-height:initial}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:64px;height:64px;margin-right:10px;font-size:11px;text-transform:uppercase;float:left;text-align:center;padding-top:2px}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:40px;line-height:30px;font-weight:700;display:block;margin-bottom:6px;letter-spacing:1px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-previous-month{margin-left:0;left:12px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-next-month{margin-left:0;left:auto;right:12px}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}}.widget .mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}.mec-week-events-container .mec-weekly-view-dates-events li.mec-no-event-found{list-style:none!important}li.mec-no-event-found .mec-event-title{text-align:center}.mec-widget .mec-calendar{max-width:100%}.mec-widget .mec-calendar dl dt,.mec-wrap.mec-sm959.mec-widget .mec-calendar.mec-event-calendar-classic dl dt{height:40px}.mec-widget .mec-calendar .mec-calendar-events-sec{padding:10px}.mec-widget .mec-calendar .mec-calendar-header h2{font-size:13px;margin-top:8px}.mec-widget .mec-calendar .mec-event-list-classic .mec-event-image{margin-right:12px}.mec-widget .mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-widget .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{font-size:14px}.mec-widget .mec-calendar .mec-event-article .mec-event-image{margin-right:11px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-header{margin-bottom:20px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{font-size:0;padding:4px 0;text-align:center;min-width:33px}.mec-widget .mec-event-calendar-classic .mec-calendar-side .mec-calendar-table{min-height:200px}.mec-widget .mec-event-list-classic{margin-bottom:8px;padding:8px 0}.mec-widget .mec-event-list-classic .mec-event-article{margin-bottom:0;padding:10px 0;position:relative;min-height:86px;padding-left:80px}.mec-widget .mec-event-list-classic .mec-event-date{font-size:10px;line-height:14px;text-transform:uppercase}.mec-widget .mec-event-list-classic .mec-event-title{font-size:13px}.mec-widget .mec-event-list-classic .mec-event-detail{font-size:11px}.mec-widget .mec-event-list-classic .mec-event-image{width:68px;position:absolute;left:0}.mec-event-list-classic .mec-event-image img{width:100%}.mec-widget .mec-event-list-classic .mec-event-detail{overflow:visible}.event-color{width:14px;display:inline-block;height:14px;margin-left:5px;border-radius:50%}.mec-map-lightbox-wp{width:580px;padding:15px 15px 0;background-color:#fff}.mec-map-view-event-detail.mec-event-detail{width:580px;background-color:#e9e9e9;padding:8px 15px}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-article{padding:0 0 15px;margin:0}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-image{width:70px;margin-right:15px}.mec-marker-infowindow-wp{padding:10px}.mec-marker-infowindow-wp .mec-marker-infowindow-count{width:60px;height:60px;display:block;text-align:center;line-height:60px;border:1px solid #40d9f1;border-radius:50%;font-size:32px;color:#40d9f1;float:left;margin-right:11px}.mec-marker-infowindow-wp .mec-marker-infowindow-content{overflow:hidden;padding-top:6px}.mec-marker-infowindow-wp .mec-marker-infowindow-content span{display:block;color:#222}.mec-marker-infowindow-wp .mec-marker-infowindow-content span:first-child{font-size:15px;font-weight:700}.mec-marker-wrap{display:inline-block;width:35px;height:35px;margin:15px 0 0 4px;border-radius:50% 50% 50% 0;background:#00cae9;animation-name:mec-map-bounce;animation-fill-mode:both;animation-duration:1s;border:3px solid #fff;cursor:pointer}.mec-marker-wrap .mec-marker{margin-top:5px;display:block;-webkit-transform:rotate(45deg);transform:rotate(45deg);text-align:center;color:#fff;font-size:17px}.mec-marker-wrap .mec-marker-pulse-wrap{-webkit-transform:rotate(45deg);transform:rotate(45deg);display:inline-block;margin-left:-11px;margin-top:0}.mec-marker-wrap .mec-marker-pulse{display:inline-block;background:#c5c5c5;border-radius:50%;height:14px;width:14px;-webkit-transform:rotateX(55deg);transform:rotateX(55deg);z-index:-2}.mec-marker-wrap .mec-marker-pulse:after{content:"";border-radius:50%;height:40px;width:40px;position:absolute;margin:-13px 0 0 -13px;animation:pulsate 1s ease-out;animation-iteration-count:infinite;opacity:0;box-shadow:0 0 1px 2px #00cae9;animation-delay:1.1s}@keyframes pulsate{0%{transform:scale(.1,.1);opacity:0}50%{opacity:1}100%{transform:scale(1.2,1.2);opacity:0}}@keyframes mec-map-bounce{0%{opacity:0;transform:translateY(-2000px) rotate(-45deg)}60%{opacity:1;transform:translateY(30px) rotate(-45deg)}80%{transform:translateY(-10px) rotate(-45deg)}100%{transform:translateY(0) rotate(-45deg)}}.mec-skin-grid-container .mec-skin-map-container,.mec-skin-list-container .mec-skin-map-container{margin-bottom:20px}.mec-single-event{margin-top:10px}.mec-single-event .mec-events-meta-group-countdown{color:#c9c9c9;text-align:center;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-events-meta-group-countdown .countdown-w{text-align:center;font-size:36px;margin:0 auto;padding:40px 0 0;position:relative;display:table;table-layout:fixed}.mec-events-meta-group-countdown .countdown-w .icon-w{font-size:24px}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:15px;font-weight:300;letter-spacing:1px;text-transform:uppercase;position:relative}.mec-events-meta-group-countdown .countdown-w .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px;width:190px;font-size:72px;transition:all .3s ease-in-out;line-height:1.2}.mec-events-meta-group-countdown .countdown-w .block-w.done-w{border:0 none}.mec-events-meta-group-countdown .countdown-w .block-w li{font-size:50px}.mec-events-meta-group-countdown .countdown-w span{padding:24px 0 20px}.mec-events-meta-group-countdown .countdown-w .div-d{display:none}.mec-events-meta-group-countdown .countdown-w .countdown-message{display:none}.mec-events-meta-group-countdown .countdown-w .block-w i{display:none}#countdown{list-style:none;margin-bottom:0;margin-top:0;margin-left:0;padding-left:0}.mec-events-meta-group-countdown .mec-end-counts h3{display:inherit;text-align:center;font-size:16px;right:50%}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:23px}@media (min-width:481px) and (max-width:768px){.mec-events-meta-group-countdown .countdown-w{padding:0}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:12px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:34px}}@media (min-width:320px) and (max-width:480px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:10px}.mec-events-meta-group-countdown .countdown-w span{font-size:28px}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:16px}}@media (max-width:320px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:9px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:22px}}.info-msg,.mec-error,.mec-success,.warning-msg{margin:10px 0;padding:10px;border-radius:3px 3px 3px 3px;font-size:13px}.info-msg{color:#059;background-color:#bef}.mec-success{color:#0dbf52;background-color:#cef7ce}.warning-msg{color:#9f6000;background-color:#feefb3}.mec-error{color:#d8000c!important;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;padding-left:40px}.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:680px){.mec-fes-list ul li .mec-event-title{width:100%;font-size:13px;margin:0 0 20px 0;display:block}.mec-fes-list ul li{padding:10px 12px 40px}}@media (max-width:480px){.mec-fes-list .mec-fes-list-top-actions,.mec-fes-list ul{padding-left:0}}.mec-fes-form .mec-required{color:#ff3c3c}.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,.single-mec-events .pmpro_content_message a,.single-mec-events .pmpro_content_message a:link{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,.single-mec-events .pmpro_content_message a:hover,.single-mec-events .pmpro_content_message a:hover:link{background:#222;color:#fff}.mec-fes-list-top-actions a{font-weight:600;text-transform:capitalize}.mec-fes-form-top-actions a:before{content:"";border:solid #fff;border-width:0 2px 2px 0;display:inline-block;padding:6px;margin-right:5px;vertical-align:sub;transform:rotate(135deg);-webkit-transform:rotate(135deg)}.mec-fes-form .mec-form-row,.mec-fes-list .mec-form-row{margin-bottom:10px;clear:both}.mec-fes-form label{font-size:13px;display:block;color:#798f96;font-weight:400;padding:0 0 4px 2px}.mec-fes-form input+label{padding-top:8px;padding-left:3px;margin:0;display:inline-block;vertical-align:top}#wrap .mec-fes-form input+label{padding-top:0}.mec-fes-form .post-status{float:right!important;margin:0 5px;color:#fff;padding:0 10px;border-radius:12px;font-style:italic;font-size:18px}.mec-fes-form #mec-event-data input[type=date],.mec-fes-form input[type=email],.mec-fes-form input[type=number],.mec-fes-form input[type=password],.mec-fes-form input[type=tel],.mec-fes-form input[type=text],.mec-fes-form input[type=url],.mec-fes-form select,.mec-fes-form textarea{min-width:inherit;width:auto;display:inline;min-height:30px;font-size:13px;padding:10px;margin-bottom:20px;clear:both;background:#fff;border:1px solid #cfeff5;box-shadow:0 2px 5px rgba(207,239,245,.38) inset;border-radius:3px;height:40px;max-width:280px;color:#798f96;font-family:inherit}#mec_fes_form input[type=date]::-webkit-calendar-picker-indicator,.lity-content #mec_fes_form input[type=date]::-webkit-calendar-picker-indicator,.lity-content .mec-events-meta-group-booking input[type=date]::-webkit-calendar-picker-indicator,.mec-single-event .mec-events-meta-group-booking input[type=date]::-webkit-calendar-picker-indicator{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQ1IDc5LjE2MzQ5OSwgMjAxOC8wOC8xMy0xNjo0MDoyMiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTkgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjA0QjQ2N0QwQjQ4MzExRUE4RDdFREZDRTUxMUVERTM5IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjA0QjQ2N0QxQjQ4MzExRUE4RDdFREZDRTUxMUVERTM5Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6MDRCNDY3Q0VCNDgzMTFFQThEN0VERkNFNTExRURFMzkiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MDRCNDY3Q0ZCNDgzMTFFQThEN0VERkNFNTExRURFMzkiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz6WW71PAAAGIklEQVR42qRXS28bVRQ+586Mx3ZC1DSpVFojRU2CqMIGiSKxAVoUduzoDjYIlhU/Av4AYsdjRXfkD0Cjom6QqIqEqEhRo1aRkkZpkpY6j7GduQ++c2dsj1+BlInGztxvzj3nfudpPlM/otc2W2QjJmU0rZ0uUytUpBxNnN9p/FYhctF0+XUi2nPGkX7WJOfwxNRzqXxtbfI4eUvm7xY1o4iiI0d/vFiisL2BgTAz0yvbCRnLhP0uNEtqrgUseZRcwPPvJewaldSA8o48vo+Tj0U+CnrkOgZwvkEzEmGm1PF9fzK5Y3U/YlllsjRUv19zXl7571HyAjooc/kmYerpcmPO0Mfa0SyxEtji44ynOjPuayjecd7M46/MQOdGyIs9ThnzMLD0XRrwIdeetmoLm41fWiG95Ar792tydLLrOPkAlpW027hbG3+T37lf/5EtvYcXUuhfBjWp9wHRBO63c5lbEkQj2B92uaHy4l2EAQ66GFgbmiD4id/9q661ooAtf8rsvmUEilAHEqcgtJvvNq3YPTkJA8PksT9ZFxD8+4my9pvAOqOMxIMoJHfPZoJkJNiYat3duOac6hxt1N3GR8lnt0O623s+c2CVZEGaZ8Oks1mElvxu7hGYaQjpHLpH3q/YFQE7Oh5Y6gFTaHhAXlasxmoWpZO5L9Ow4DTv+UBZBAkWNO+CqhkbSOzaXWWyzY+n3WcACdVscnklz5CHYsmv1L/RyUJ/cs7zdT3Ey8pTgw/QgNNuS4XjNMvffwvBNmwDH+pdeZ3J+1qDdW15vS0iBhjZWzF9ge8HWl7zNLluYhP/9/jvFANXyL+ufF4jZvOCZsK8isp77+sixf10n7QQjJT39bBtjzdA5chtLG61n7kgk6UvDy29z4HL4c/ifkN0hYV+cA3Bc7stKAfossgSSF06+3HOu8QovE8eThDlv4pu1TbUOpqySDNUKMSDQRIo6QgVRHbFcID1mCITUGgNKLI9uBbcCC59xUi+DsiHBq0XOLb3utqOUYV+LglH9XJASRAsRNqt4xHVj59Exqw3AlrYi0PaiwNqBKoX12Y9iQSP/GkD4xZC0yt/GPFCvZzhUBoMtmPftRwMEEtpupy2auzadLraXtlNoXLhKQYLbjrWRx0cXNf24wxPSmWw5aZPNXSNOi5ytXqZpjTwSqs3PsJi0I61LG29EFG9GtyaeqgvxU17TrAkDjbvnq/eKcTYrbcemi5eHoI/OLgUt7r4n+cqd04llmZ3mjBSDQ4kYtERLLz4OKGt0xGKA9+RgiSGSRV7+UlCVvka72lEvHRx04vLGW2f/PzTBk3VtddRrGlhMXVaIdME5sLJ3ZQOTPQBNqj58uzcxsXtZEkqmQ7IB9ihLeA2x6FQqyG4cRuvbh8uNZSigzBCALhBBtrjkwjjQItQ+kPXWY6eBuEi/lmOlC8kvTh38ZLH3QC+y+GiIl4OqbeZ9RggQZgcVIXe1ep48jPkz/oGw7x1yoytIq1o59AH1Wp1rNHBSXA9tip87zYyvFzpx8dXLVTvqySvhUMNsN6+1ERrrNQVQs57H4K6cR35GrapffICb16RpO7glOHrrQyvjHXxQHB0/j1ugV0LpcFwAzS4n6hiZoIvEp2znwcSigfGJhxpMmseLc0dvFjcvRuLvdEdNyl2+0DOALwE863TM/jnJqhfQa6v4AfJzUNOZ/aVlhqIUpoO4PuU4XFsqFrSM866m9hxBXSvWPx/wHpGqA96Vfa5AH9HnMjYNI96dbkwaVzcCw/nAK+xHzp4Hp89eD04nENzX6v4cYrnrVWXXQF/Fh7MQfWasmogCNsmaT+qwD0g4gYsuYqnWlboeKMUumUr86LycxdwdRUb+zQTvAzcgL0jLXFkbkQUX5UKyFTE2bvZD0a5B8SAUu6dPf+7AInssja2VPSZRud2Ni/NKse5M2VQqkO4BxSzZLmV8Wwpa8S9OHsK3X6+Lc7F/JidOwvkc7z3FbIgzd7smy1c35TEg7NGrg6Ucs88UsCliOLHH1+Td8HYFl++W//QxfT9iSee/3lJWy5X6aMwtK3rTVWJUU4/g4GzdLLp73ku8cEDxNmXUZhc/0eAAQAVgX0RHvvILQAAAABJRU5ErkJggg==);background-position:center;background-size:cover;width:10px;height:12px;display:block}.mec-fes-form input{background:#fff!important;border-radius:3px!important;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important}.mec-fes-form textarea{height:80px}.mec-fes-form input::-webkit-input-placeholder{color:#798f96}.mec-fes-form input::-moz-placeholder{color:#798f96}.mec-fes-form input:-ms-input-placeholder{color:#798f96}.mec-fes-form input:-moz-placeholder{color:#798f96}#mec-excerpt .mec-form-row .widefat{max-width:100%}#mec_more_info_target{width:100%}@media only screen and (min-width:961px){.mec-fes-form #mec-event-data input[type=date],.mec-fes-form #mec-event-data select,.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=tel],.mec-fes-form input[type=text],.mec-fes-form input[type=url],.mec-fes-form textarea{width:100%;display:inline-block}}@media only screen and (max-width:768px){.mec-fes-form #mec-event-data input[type=date],.mec-fes-form #mec-event-data select,.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form input[type=url],.mec-fes-form textarea{width:100%}}.mec-fes-form input[type=text]#mec_fes_title{padding:5px 10px;min-height:32px;height:50px;background:#fff!important;max-width:100%;font-size:19px;font-weight:400}.mec-fes-form input[type=checkbox],.mec-fes-form input[type=radio]{display:inline!important;float:left;margin:5px 5px 0 0}.mec-fes-form input[type=email]:focus,.mec-fes-form input[type=number]:focus,.mec-fes-form input[type=password]:focus,.mec-fes-form input[type=tel]:focus,.mec-fes-form input[type=text]:focus,.mec-fes-form input[type=url]:focus,.mec-fes-form select:focus,.mec-fes-form textarea:focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-form-row .mec-color{cursor:pointer}.mec-form-row.mec-available-color-row span{margin:10px;width:14px;height:14px;display:inline-block;margin-right:6px;border-radius:20px 20px 20px 20px;vertical-align:middle}.mec-form-row.mec-available-color-row span:first-of-type{margin-left:0}.mec-fes-form.mec-fes-form .mec-tooltip{display:inline}.mec-fes-form-cntt .dashicons-editor-help{display:block}.mec-fes-form .mec-tooltip:hover:after,.mec-fes-form .mec-tooltip:hover:before{display:none}.mec-fes-form.mec-fes-form .mec-tooltip{display:inline-flex;bottom:7px}.mec-fes-form .mec-tooltip .box{min-width:300px;max-width:600px;display:inline-block;left:26px;top:50%;transform:translateY(-50%);padding:0;margin-top:8px;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.3;position:absolute;z-index:9999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s}#webnus-dashboard .mec-fes-form .mec-tooltip .box p,.mec-fes-form .mec-tooltip .box p{color:#fff!important;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}.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-checkboxes-search .mec-searchbar-category-wrap,.mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-wrap .mec-totalcal-box input,.mec-wrap .mec-totalcal-box select{width:auto;min-height:36px;height:36px;line-height:36px;background:#fff;font-size:13px;color:#777;border:1px solid #efefef;margin:0 0 0 -1px;float:left;padding:0 5px;font-family:Roboto,Helvetica,Arial,sans-serif}.mec-wrap .mec-totalcal-box input[type=submit]{cursor:pointer;padding:0 16px;text-transform:uppercase;font-size:11px;font-family:Montserrat,Helvetica,Arial,sans-serif;transition:all .21s ease}.mec-wrap .mec-totalcal-box input[type=submit]:hover{background:#222;color:#fff}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{display:inline-block;text-transform:uppercase;font-family:Montserrat,Helvetica,Arial,sans-serif;font-size:11px;padding:0 12px;cursor:pointer}.mec-wrap .mec-totalcal-box .mec-totalcal-view span:hover{color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected{color:#fff;background:#40d9f1;border-color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view{text-align:right;float:right}.mec-wrap .mec-totalcal-box input[type=search]{width:calc(100% - 36px)}.mec-full-calendar-wrap .mec-search-form .col-md-7{padding:0}.mec-wrap .mec-date-search .mec-col-3,.mec-wrap .mec-minmax-event-cost .mec-minmax-price{width:calc(50% - 17px)}.mec-wrap .mec-text-address-search.with-mec-cost{width:calc(100% - 356px)}.mec-wrap .mec-minmax-event-cost{display:block;float:left;width:50%;margin-left:10px}.mec-wrap .mec-minmax-event-cost.with-mec-address{display:block;width:336px;max-width:50%;float:right;margin-left:0;margin-right:10px}.mec-wrap .mec-checkboxes-search{margin-left:10px;margin-right:10px;display:table-caption}.mec-wrap .mec-checkboxes-search .mec-searchbar-category-wrap{width:calc(100% - 36px)!important;max-width:calc(100% - 36px)!important;padding:0;position:relative;line-height:inherit;height:auto}.mec-wrap .mec-checkboxes-search .mec-searchbar-category-wrap select{line-height:20px}.mec-wrap .mec-checkboxes-search .mec-searchbar-category-wrap .select2-container.select2-container--default{width:calc(100% - 36px)!important}.mec-wrap .mec-checkboxes-search .mec-searchbar-category-wrap input[type=search]{width:calc(100% - 36px)!important;min-height:30px;margin:0}.mec-wrap .mec-checkboxes-search .mec-searchbar-category-wrap .select2-container .select2-selection--multiple ul,.mec-wrap .mec-checkboxes-search .mec-searchbar-category-wrap .select2-container.select2-container--default{height:auto;overflow:unset}.mec-wrap .mec-checkboxes-search .mec-searchbar-category-wrap .select2-container .select2-selection--multiple ul{display:block}.mec-wrap .mec-checkboxes-search .mec-searchbar-category-wrap .select2-container .select2-selection--multiple{border:unset;width:100%;height:0!important;border-radius:0}.mec-wrap .mec-checkboxes-search .mec-searchbar-category-wrap .select2-container .select2-selection--multiple ul li{line-height:12px!important;max-height:20px!important;width:auto;margin-right:5px;margin-top:5px}.mec-wrap .mec-checkboxes-search .mec-searchbar-category-wrap .select2-container .select2-selection--multiple .select2-selection__choice{letter-spacing:0;color:#777;text-transform:capitalize;padding:4px 6px;background-color:#efefef;border-radius:2px;border:0;cursor:default;float:left;margin-right:5px;margin-top:5px;margin-bottom:5px;font-size:11px;text-transform:uppercase}.mec-wrap .mec-checkboxes-search .mec-searchbar-category-wrap .select2-container .select2-selection--multiple .select2-selection__choice__remove{color:#777}@media only screen and (min-width:961px) and (max-width:1200px){.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-3,.mec-wrap .mec-totalcal-box .col-md-4,.mec-wrap .mec-totalcal-box .col-md-5{width:100%;float:none;clear:both;overflow:hidden}.mec-full-calendar-wrap .mec-search-form .col-md-3,.mec-full-calendar-wrap .mec-search-form .col-md-4,.mec-full-calendar-wrap .mec-search-form .col-md-5{display:block;max-width:100%;padding:0;margin:0 0 10px 0}.mec-full-calendar-wrap .mec-search-form .col-md-3{padding-bottom:10px!important}.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 106px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}.mec-wrap .mec-totalcal-box .mec-totalcal-view{float:none}.mec-wrap .mec-checkboxes-search .mec-searchbar-category-wrap .select2-container .select2-selection--multiple .select2-selection__choice{display:block;max-width:100%;white-space:break-spaces;max-height:unset!important;height:auto!important}}@media only screen and (min-width:768px) and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-4{position:relative;width:initial}.mec-wrap .mec-totalcal-box .col-md-5{padding-bottom:0}.mec-full-calendar-wrap .mec-search-form .col-md-5{margin-top:20px}.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:767px){.mec-wrap .mec-totalcal-box .mec-totalcal-view{float:none}.mec-wrap .mec-totalcal-box .col-md-4{padding-bottom:0}.mec-wrap .mec-minmax-event-cost.with-mec-address,.mec-wrap .mec-text-address-search.with-mec-cost{width:100%;float:left}.mec-wrap .mec-minmax-event-cost.with-mec-address{max-width:calc(100% - 20px);margin:0 10px 20px 10px}.mec-wrap .mec-minmax-event-cost .mec-minmax-price{width:calc(50% - 17px)}}@media only screen and (max-width:479px){.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 8px;font-size:10px}.mec-wrap .mec-totalcal-box input[type=submit]{padding:0 10px;font-size:10px}}@media only screen and (min-width:961px){.mec-wrap .mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5,.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-3{padding-bottom:20px;clear:both;overflow:hidden}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5{right:10px;width:initial}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-4{padding-bottom:0;width:100%}}@media (min-width:961px) and (max-width:1200px){.mec-full-calendar-wrap .mec-totalcal-box{padding:15px 10px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 10px}.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-address-search,.mec-search-form .mec-text-input-search{padding:0 4px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4,.mec-full-calendar-wrap .mec-totalcal-box .col-md-5{padding-bottom:20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{min-width:calc(30% - 10px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3:last-child select{min-width:calc(50% - 19px)}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:9px;text-align:center}}@media only screen and (max-width:1200px){.post-type-archive-mec-events .mec-totalcal-box .col-md-3,.post-type-archive-mec-events .mec-totalcal-box .col-md-4{width:100%;padding:0}.post-type-archive-mec-events .mec-totalcal-box select:last-child{min-width:auto}.post-type-archive-mec-events .mec-totalcal-box .col-md-5{position:relative;float:right;max-width:100%;left:0;top:20px;width:100%!important;display:block;clear:both}.post-type-archive-mec-events .mec-totalcal-box .mec-totalcal-view{max-width:100%;width:100%}.post-type-archive-mec-events .mec-totalcal-box .mec-totalcal-view span{width:20.1%;font-size:10px}}@media only screen and (max-width:960px){.post-type-archive-mec-events .mec-totalcal-box .col-md-5{top:10px}}@media only screen and (max-width:760px){.post-type-archive-mec-events .mec-totalcal-box .col-md-5{top:0!important}}@media only screen and (max-width:480px){.post-type-archive-mec-events .mec-totalcal-box .mec-totalcal-view span{font-size:8px}}@media (min-width:1201px) and (max-width:1280px){.mec-full-calendar-wrap .mec-totalcal-view span{font-size:9px;padding:0 10px}}@media (min-width:761px) and (max-width:1200px){.mec-full-calendar-wrap .mec-search-form .mec-dropdown-wrap .mec-dropdown-search{width:33.3333%;display:block;float:left}.mec-full-calendar-wrap .mec-search-form .col-md-4 .mec-text-input-search{padding:0;margin-bottom:20px}.mec-full-calendar-wrap .mec-search-form .col-md-3{width:100%}.mec-full-calendar-wrap .mec-search-form .mec-date-search select:last-child{min-width:70px;width:70px}.mec-full-calendar-wrap .mec-search-form .col-md-5{float:right;padding:0 0 10px 0}.mec-full-calendar-wrap .mec-totalcal-view span{font-size:11px}}@media (max-width:760px){.mec-full-calendar-wrap .mec-search-form .col-md-3{width:100%}.mec-full-calendar-wrap .mec-search-form .mec-date-search select:last-child{min-width:70px;width:70px}.mec-full-calendar-wrap .mec-search-form .col-md-5{float:right;padding:0 0 10px 0}.mec-full-calendar-wrap .mec-totalcal-view span{font-size:11px}}@media (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box{padding:20px 20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{padding-bottom:10px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px);margin-bottom:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view{margin-left:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:10px;text-align:center}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:100%}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:14.3%;text-align:center;font-size:10px;margin-right:-1px}}@media(max-width:780px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{width:calc(50% - 18px)!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:unset;padding-right:0}.mec-full-calendar-wrap .mec-search-form .col-md-3,.mec-full-calendar-wrap .mec-search-form .col-md-4,.mec-full-calendar-wrap .mec-search-form .col-md-5{margin:0;padding:0}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 7px;margin-top:20px}}@media(max-width:480px){.mec-full-calendar-wrap .mec-totalcal-box{padding:15px 10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:13.5%;text-align:center;font-size:11px}}@media(max-width:411px){.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:12%;font-size:10px}}@media(max-width:320px){.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:22.5%;font-size:11px}}.mec-totalcalview-selected:hover{color:#fff!important}.mec-search-form{padding:20px 10px}.mec-search-form .mec-dropdown-wrap{display:table;width:100%}.mec-search-form .mec-date-input-search,.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search,.mec-search-form .mec-time-input-search{padding:0 10px;float:left}.mec-search-form .mec-date-search,.mec-search-form .mec-time-picker-search,.mec-search-form .mec-totalcal-view{padding:0 10px}.mec-search-form .mec-text-input-search{width:100%}.mec-search-form .mec-full-calendar-search-ends .mec-text-input-search{width:50%}.mec-search-form .mec-date-search,.mec-search-form .mec-time-picker-search{width:50%;float:left}.mec-search-form .mec-date-search.with-mec-time-picker,.mec-search-form .mec-time-picker-search.with-mec-date-search{width:25%;float:left}.mec-search-form .mec-tab-loader.col-md-6 .mec-totalcal-view{padding:0}.mec-wrap .mec-search-form .with-mec-date-search .mec-timepicker-end,.mec-wrap .mec-search-form .with-mec-date-search .mec-timepicker-start{width:calc(50% - 17px)}.mec-search-form .mec-full-calendar-search-ends .mec-text-input-search.col-md-12,.mec-search-form .mec-minmax-event-cost,.mec-search-form .mec-text-address-search{min-height:55px}.mec-search-form .mec-full-calendar-search-ends .mec-text-input-search.col-md-12,.mec-widget .mec-search-form .mec-date-search,.mec-widget .mec-search-form .mec-text-input-search{width:100%}.mec-search-form .mec-full-calendar-search-ends .mec-text-input-search.col-md-12{padding:0 10px}.mec-search-form .mec-minmax-event-cost,.mec-search-form .mec-text-address-search,.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-checkboxes-search .mec-searchbar-category-wrap,.mec-wrap .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{width:calc(100% - 36px);margin-bottom:10px}.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 106px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}@media only screen and (max-width:781px){.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{width:100%;float:none}.mec-search-form .mec-date-search{min-height:55px}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:50%;float:left}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3{margin-bottom:0;padding-bottom:0!important}}@media only screen and (max-width:479px){.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:100%;float:none}}@media only screen and (min-width:961px) and (max-width:1200px){.post-type-archive-mec-events .mec-totalcal-box .col-md-3,.post-type-archive-mec-events .mec-totalcal-box .col-md-4,.post-type-archive-mec-events .mec-totalcal-box .col-md-5{max-width:100%;width:100%}.post-type-archive-mec-events .mec-totalcal-box .col-md-4{padding:0 10px}.post-type-archive-mec-events .mec-totalcal-box .col-md-4 .mec-text-input-search{margin:0}.post-type-archive-mec-events .mec-totalcal-box .col-md-5{margin-bottom:20px;padding:0 10px 10px 10px}}@media only screen and (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-4,.post-type-archive-mec-events .mec-totalcal-box .col-md-4{padding:0 10px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{margin-bottom:0}.post-type-archive-mec-events .mec-totalcal-box .col-md-4 .mec-text-input-search{margin:0}.post-type-archive-mec-events .mec-totalcal-box .mec-totalcal-view{padding-right:15px}.mec-full-calendar-wrap .mec-search-form .col-md-5{margin-bottom:0}.post-type-archive-mec-events .mec-totalcal-box .col-md-5{padding:0}}@media only screen and (max-width:780px){.post-type-archive-mec-events .mec-totalcal-box .mec-totalcal-view span{margin-top:10px;margin-bottom:10px}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{margin-top:0}}@media only screen and (max-width:760px){.post-type-archive-mec-events .mec-totalcal-box .mec-totalcal-view span{margin-top:20px;margin-bottom:0}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{margin-top:20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4,.post-type-archive-mec-events .mec-totalcal-box .col-md-4{padding:0}}@media only screen and (max-width:1200px){.post-type-archive-mec-events .mec-full-calendar-wrap .mec-totalcal-view span{width:14.333%;font-size:8px}}@media only screen and (min-width:320px) and (max-width:960px){.post-type-archive-mec-events .mec-search-form .col-md-5 span{width:20%!important}}.mec-search-form .mec-text-address-search{float:left;width:100%;padding:0 10px}@media (max-width:960px){.mec-search-form .mec-dropdown-search{margin-bottom:10px}.mec-wrap .mec-minmax-event-cost.with-mec-address,.mec-wrap .mec-text-address-search.with-mec-cost{margin-top:0}.mec-search-form .mec-date-search.with-mec-time-picker,.mec-search-form .mec-time-picker-search.with-mec-date-search{width:50%;margin-bottom:20px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view{margin:0}.mec-full-calendar-wrap .mec-tab-loader{width:100%;display:block;float:unset;padding:0 0 0 10px}}@media (max-width:780px){.mec-full-calendar-wrap .mec-totalcal-box{padding:10px}.mec-search-form .mec-date-search.with-mec-time-picker,.mec-search-form .mec-time-picker-search.with-mec-date-search{margin:20px 0;height:auto}.mec-search-form .mec-date-search{min-height:unset}}@media (max-width:480px){.mec-search-form .mec-date-search.with-mec-time-picker,.mec-search-form .mec-time-picker-search.with-mec-date-search{width:100%}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:12%;text-align:center;font-size:9px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-search-form .mec-date-search.with-mec-time-picker,.mec-search-form .mec-full-calendar-search-ends .mec-text-input-search,.mec-search-form .mec-minmax-event-cost,.mec-search-form .mec-text-address-search,.mec-search-form .mec-time-picker-search.with-mec-date-search,.mec-wrap .mec-minmax-event-cost.with-mec-address{margin-bottom:0;margin-top:10px;min-height:auto}.mec-wrap .mec-minmax-event-cost.with-mec-address{margin-bottom:10px}}.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)}.mec-skin-carousel-container .mec-multiple-event .mec-event-date-carousel{width:230px}.mec-skin-carousel-container .mec-multiple-event .event-carousel-type1-head .mec-event-date-info,.mec-skin-carousel-container .mec-multiple-event .event-carousel-type1-head .mec-event-date-info-year{left:159px}@media only screen and (min-width:768px) and (max-width:1000px),(min-width:270px) and (max-width:448px){.event-carousel-type1-head .mec-event-date-carousel{font-size:25px;line-height:2.5;padding-right:70px;height:64px;width:120px}.event-carousel-type1-head .mec-event-date-carousel:after{left:7px}.event-carousel-type1-head .mec-event-date-info{font-size:10px;top:13px;left:55px}.event-carousel-type1-head .mec-event-date-info-year{font-size:10px;top:25px;left:55px}.event-carousel-type1-head .mec-event-date-carousel:after{top:48px}}.event-carousel-type2-head{background:#fff;border:1px solid #e6e6e6}.event-carousel-type2-head .mec-event-carousel-content-type2{margin-top:15px;min-height:182px}.event-carousel-type2-head .mec-event-carousel-content-type2 .mec-event-date-info{font-size:15px;color:#9a9a9a;font-weight:300}.event-carousel-type2-head .mec-event-carousel-content-type2 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-carousel-content-type2 .mec-event-carousel-title a{color:inherit}.mec-event-carousel-type2 .event-carousel-type2-head .mec-event-carousel-content-type2 p{font-size:16px;font-weight:300;color:#444}.event-carousel-type2-head .mec-event-footer-carousel-type2{margin-top:33px;position:relative}.mec-event-carousel-type2 .mec-event-footer-carousel-type2 .mec-event-sharing-wrap{padding-left:0;left:0}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-event-sharing-wrap>li{border:none;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button{border:1px solid #e4e4e4;float:right;padding:7px 23px 7px;font-size:12px;text-transform:uppercase;color:#707070;font-weight:500;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button:hover{color:#fff}.mec-event-article .event-carousel-type2-head{padding:10%;margin-right:-1px}.mec-event-carousel-type2 .mec-owl-carousel .owl-wrapper-outer{border-right:1px solid #e6e6e6}.mec-wrap .mec-event-carousel-type2 .owl-next,.mec-wrap .mec-event-carousel-type2 .owl-prev,.mec-wrap .mec-event-carousel-type3 .owl-next,.mec-wrap .mec-event-carousel-type3 .owl-prev,.mec-wrap .mec-event-carousel-type4 .owl-next,.mec-wrap .mec-event-carousel-type4 .owl-prev{transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:47%;background-color:transparent!important}.mec-event-carousel-type2 .owl-next{right:-60px}.mec-event-carousel-type2 .owl-prev{left:-60px}.mec-event-carousel-type2 .owl-next i,.mec-event-carousel-type2 .owl-prev i,.mec-event-carousel-type3 .owl-next i,.mec-event-carousel-type3 .owl-prev i,.mec-event-carousel-type4 .owl-next i,.mec-event-carousel-type4 .owl-prev i{font-size:40px;color:#282828}.mec-event-carousel-type2 .owl-next i:hover,.mec-event-carousel-type2 .owl-prev i:hover,.mec-event-carousel-type3 .owl-next i:hover,.mec-event-carousel-type3 .owl-prev i:hover{color:#000;cursor:pointer}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}@media only screen and (min-width:320px) and (max-width:768px){.mec-event-carousel-type2 .owl-next,.mec-event-carousel-type2 .owl-prev,.mec-event-carousel-type3 .owl-next,.mec-event-carousel-type3 .owl-prev,.mec-event-carousel-type4 .owl-next,.mec-event-carousel-type4 .owl-prev{position:initial;top:100%}}.mec-event-carousel-type3 .mec-event-article{margin:0 10px}.event-carousel-type3-head .mec-event-image,.event-carousel-type3-head .mec-event-image img{width:100%;height:auto}.event-carousel-type3-head .mec-event-footer-carousel-type3{background:#fff;display:inline-block;width:calc(100% - 40px);margin-top:-74px;position:relative;margin-left:20px;margin-right:20px;margin-bottom:6px;padding:8% 11%;box-shadow:0 2px 10px -2px rgba(0,0,0,.2)}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button{border:1px solid #e4e4e4;text-transform:uppercase;float:right;padding:7px 23px 7px;font-size:12px;color:#707070;font-weight:500}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button:hover{color:#fff}.mec-event-footer-carousel-type3 span{font-size:15px;color:#9a9a9a;font-weight:300;display:block;margin-top:30px}.mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:29px;font-weight:700}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-footer-carousel-type3 .mec-event-carousel-title a{color:inherit}.event-carousel-type3-head .mec-event-footer-carousel-type3 p{font-size:16px;font-weight:300;color:#444!important;margin-bottom:36px}.mec-event-carousel-type3 .owl-next{right:-70px}.mec-event-carousel-type3 .owl-prev{left:-70px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap{left:11%}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}.event-carousel-type3-head .mec-end-date-label{display:inline;margin-left:2px}.event-carousel-type4-head.clearfix{position:relative;overflow:hidden;background:#fff}.event-carousel-type4-head .mec-event-overlay{position:absolute;left:0;right:0;bottom:0;top:0;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-hover-carousel-type4{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out;opacity:0;visibility:hidden}.mec-event-carousel-type4 .mec-event-article{margin:0 10px}.mec-event-carousel-type4 .mec-event-article:hover .mec-event-hover-carousel-type4{opacity:1;visibility:visible}.mec-event-hover-carousel-type4 .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-hover-carousel-type4 .mec-event-date{font-size:11px;text-transform:uppercase;font-weight:400;line-height:1.6}.mec-event-hover-carousel-type4 .mec-event-date span{display:block;font-weight:700;font-size:14px}.mec-event-hover-carousel-type4 .mec-event-title{color:#fff;margin:20px 0 38px;font-size:16px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-hover-carousel-type4 .mec-btn-wrapper{text-align:left}.mec-event-hover-carousel-type4 .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:10px 14px;letter-spacing:1.5px;font-size:11px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-hover-carousel-type4 .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-carousel-type4 .owl-next{right:-70px}.mec-event-carousel-type4 .owl-prev{left:-70px}.mec-carousel-type4-head{margin-bottom:25px}.mec-carousel-type4-head-title{padding:0 11px;text-align:left;font-weight:700;font-size:20px;color:#000}.mec-carousel-type4-head-link{text-align:right;padding:0 11px}.mec-carousel-type4-head-link a{background:#222;color:#fff;padding:10px 38px;transition:all .3s ease}.mec-carousel-type4-head-link a:hover,.mec-carousel-type4-head-link a:visited{color:#fff}@media (max-width:960px){.mec-event-carousel-type4 .owl-stage{left:-50px}}.mec-wrap .mec-event-countdown-style1{color:#fff;padding:0!important;display:table;background:#437df9}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1{z-index:5;padding:50px 1% 50px 4%;display:table-cell;float:none;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2{background-color:rgba(0,0,0,.05);height:100%;padding-top:0;display:table-cell;float:none;position:relative;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{background-color:#f8f8f8;display:table-cell;float:none;text-align:center;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style1 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{content:"";position:absolute;display:inline-block;z-index:1;top:50%;margin-top:-11px;right:-24px;width:0;border-width:12px;border-style:solid;border-color:transparent transparent transparent #4077ed}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style1 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto}.mec-event-countdown-style1 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style1 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (min-width:1200px){.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%}}@media (max-width:960px){.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%;transform:rotate(90deg)}}@media (max-width:480px){.mec-event-countdown-style1 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{padding:10px 5px;min-width:50px;margin:3px 1px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:8px}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{display:inline}}.mec-wrap .mec-event-countdown-style2{color:#fff;padding:30px 0;background:#437df9;max-width:600px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part3{width:100%;float:none;vertical-align:middle;padding:50px 10% 50px 10%}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2{padding-top:12%;padding-bottom:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style2 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date-place{text-align:left;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 8px}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#222;background:#fff;transition:all .24s ease}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button:hover{background:#222;color:#fff}.mec-event-countdown-style2 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0}.mec-event-countdown-style2 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style2 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (max-width:767px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:80px;padding:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:26px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:11px}}@media only screen and (max-width:479px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:40px;padding:15px 10px;margin:2px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:20px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:9px}}@media (max-width:380px){.mec-event-countdown-style2 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{padding:10px 4px;margin:4px 1px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:7px}}.mec-wrap .mec-event-countdown-style3{color:#fff;padding:0;background:#282828;display:table;width:100%}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1{width:68%;padding:50px 1% 50px 4%;vertical-align:middle;display:table-cell;position:relative}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:32%;display:table-cell;position:relative;padding-bottom:0;padding-top:0}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 img{width:100%;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{font-weight:300;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{color:#fff;font-size:36px;letter-spacing:-2px;font-weight:700;line-height:1;margin-top:-10px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style3 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style3 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto;position:absolute;top:40px;right:20px}.mec-event-countdown-style3 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style3 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:11px;color:#888;margin:8px 0 0;line-height:1}.mec-event-countdown-style3 .mec-event-date{width:176px;height:96px;background:#40d9f1;color:#fff;font-size:13px;position:absolute;left:-27px;top:146px}.mec-event-countdown-style3 .mec-event-date:after{content:"";position:absolute;display:inline-block;z-index:1;bottom:-18px;left:8px;width:0;border-width:19px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:50px;position:absolute;top:36px;left:12px;letter-spacing:-3px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:80px;top:26px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:80px;top:45px}.mec-event-countdown-style3 .mec-event-countdown-part-details{padding-top:35px;margin-bottom:50px;min-height:100px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-title{font-size:17px;color:#fff;line-height:1.4;padding-right:20px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link{color:#fff;font-size:12px;position:relative;padding-left:22px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link:before{content:"";display:inline-block;width:18px;border-top:1px solid #fff;position:absolute;left:0;top:8px}.mec-event-countdown-style3 .mec-event-title-link{position:absolute;left:190px;top:152px}.event-carousel-type1-head .mec-event-date-carousel:before,.mec-event-countdown-style3 .mec-event-date:before{content:'';position:absolute;left:0;bottom:0;z-index:2;width:100%;height:96px;display:inline-block;box-shadow:0 5px 5px rgba(0,0,0,.12);background:0 0}@media only screen and (min-width:960px){.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown li{padding:10px}.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:31px}}@media (max-width:959px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:100%;display:block}.mec-event-countdown-style3 .mec-event-title-link{top:190px}.mec-event-countdown-style3 .mec-event-countdown{top:96px}.mec-event-countdown-style3 .mec-event-date{left:0;top:190px}.mec-event-countdown-style3 .mec-event-date:after{display:none}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{display:inline}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:150px}}@media (max-width:767px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:26px;letter-spacing:-1px}.mec-event-countdown-style3 .mec-event-title-link{left:130px}.mec-event-countdown-style3 .mec-event-date{width:120px;font-size:10px;height:63px}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:36px;top:20px;left:4px;letter-spacing:-2px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:52px;top:12px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:52px;top:28px}}@media (max-width:380px){.mec-event-countdown-style3 .mec-event-title-link{left:10px;top:260px}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:300px}.mec-event-countdown-style3 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:10px 5px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:8px}}.mec-slider-t1-wrap{width:100%;padding:60px 90px;background:#f7f7f7;min-height:560px;position:relative}.mec-slider-t1{height:500px;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t1 .mec-event-article{position:relative;height:500px}.mec-slider-t1 .mec-slider-t1-img{position:relative;background-size:cover!important;background-position:center!important;width:50%;height:100%;float:right;margin:0;overflow:hidden}.mec-slider-t1 .mec-slider-t1-content{width:50%;float:left;height:100%;background:#fff;padding:6%}.mec-slider-t1-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t1-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:54px;height:54px;line-height:48px;border-radius:0;text-align:center;background:#fff;box-shadow:0 2px 11px 0 rgba(0,0,0,.045);transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-27px;cursor:pointer}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 29px 0 rgba(0,0,0,.095)}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:12px;color:#282828;transition:all .21s ease}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{font-size:13px;color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t1{margin:0 auto;max-width:900px}}@media only screen and (max-width:960px){.mec-slider-t1 .mec-slider-t1-content,.mec-slider-t1 .mec-slider-t1-img{width:100%;float:none}.mec-slider-t1 .mec-slider-t1-img{height:300px}.mec-slider-t1,.mec-slider-t1 .mec-event-article{height:auto}}@media only screen and (max-width:768px){.mec-slider-t1-wrap{padding:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:10px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}}@media only screen and (max-width:479px){.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t2-wrap{width:100%;padding:0;background:#fff;min-height:600px;position:relative}.mec-slider-t2 .mec-event-article{height:600px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t2 .mec-slider-t2-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:70%;height:100%;margin:0;overflow:hidden}.mec-slider-t2 .mec-slider-t2-content{width:50%;position:absolute;right:0;top:60px;bottom:60px;padding:5%}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern *{color:#fff}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-content,.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t2-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:84px;cursor:pointer}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}.mec-wrap.colorskin-custom .mec-slider-t2 .mec-event-article .mec-event-date.mec-color{color:#fff}@media only screen and (min-width:961px){.mec-slider-t2{margin:0 auto;max-width:1200px}}@media only screen and (max-width:960px){.mec-slider-t2 .mec-slider-t2-content,.mec-slider-t2 .mec-slider-t2-img{width:100%;float:none;position:static}.mec-slider-t2 .mec-slider-t2-img{height:300px}.mec-slider-t2 .mec-event-article{height:auto}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px}}@media only screen and (max-width:479px){.mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:22px}}.mec-slider-t3-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t3 .mec-event-article{height:700px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t3 .mec-slider-t3-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;opacity:.68;z-index:1}.mec-slider-t3 .mec-slider-t3-content{width:50%;height:auto;vertical-align:middle;display:table;position:absolute;left:0;top:50%;transform:translateY(-50%);bottom:0;padding:0 2% 0 7%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t3 .mec-slider-t3-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-content,.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-slider-t3-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t3-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{border-color:#40d9f1}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-22px;cursor:pointer}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next{right:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:50px;font-weight:300}.mec-slider-t3-content.mec-event-grid-modern .mec-event-description{font-size:19px}}@media only screen and (max-width:767px){.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}}@media only screen and (max-width:479px){.mec-slider-t3 .mec-slider-t3-content{width:100%}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t4-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t4 .mec-event-article{height:700px;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t4 .mec-slider-t4-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;z-index:1}.mec-slider-t4 .mec-slider-t4-content{width:auto;max-width:700px;background:rgba(37,37,37,.94)!important;height:auto;vertical-align:middle;display:table;position:absolute;left:8%;top:19%;padding:3%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t4 .mec-slider-t4-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-content,.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:13px;padding:0 42px;line-height:49px;height:50px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t4-content.mec-event-grid-modern .mec-slider-t4-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next{right:60px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{right:112px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:767px){.mec-slider-t4 .mec-slider-t4-content{width:100%;left:0;top:auto;bottom:0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t5-wrap{width:auto;max-width:570px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-slider-t5{height:auto;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t5 .mec-event-article{position:relative;height:auto}.mec-slider-t5 .mec-slider-t5-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:300px;float:none;margin:0;overflow:hidden}.mec-slider-t5 .mec-slider-t5-content{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-slider-t5 .mec-events-content p{margin-bottom:20px}.mec-slider-t5-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t5-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t5 .mec-slider-t5-col6{width:50%;float:left;height:100%}.mec-slider-t5 .mec-slider-t5-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-slider-t5 .mec-slider-t5-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-slider-t5 .mec-slider-t5-col6 address{font-size:12px;margin-bottom:0}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t5-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:768px){.mec-slider-t5 .mec-slider-t5-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-single-modern .mec-events-event-image{text-align:center}.mec-single-modern .mec-events-event-image img{width:100%}.mec-single-modern .mec-single-event-bar{background-color:#f7f7f7;margin:20px 0 0;padding:15px;display:table;width:100%}.mec-single-modern .mec-single-event-bar>div{display:table-cell}.mec-single-modern .mec-single-event-bar>div i{font-size:20px;vertical-align:middle}.mec-single-modern .mec-single-event-bar>div .mec-time-comment{font-size:12px;color:#999}.mec-single-modern .mec-single-event-bar>div h3{text-transform:uppercase;font-size:16px;font-weight:700;padding-bottom:5px;display:inline;color:#000;padding-left:10px}.mec-single-modern .mec-single-event-bar>div dd{font-size:14px;color:#8d8d8d;padding-left:34px;margin-bottom:0}.mec-single-modern .col-md-4 .mec-frontbox{margin-top:-50px;margin-bottom:70px;padding:20px;border:none;background:#f7f7f7;box-shadow:none}.mec-single-modern .col-md-4.mec-no-image .mec-frontbox{margin-top:20px}.mec-next-occurrence ul{padding-left:0;margin-left:0}.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:0;color:#8d8d8d}.mec-next-event-details i{margin-right:10px;margin-left:12px}.mec-next-event-details i:before{color:#40d9f1}.mec-next-event-details a{text-align:center;display:block;background:#fff;padding:6px 0;font-size:11px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;transition:.3s}.mec-single-modal.mec-single-modern .mec-single-title{text-align:center;padding:15px 10px 0}.admin-bar .mec-single-modal.mec-single-modern .mec-single-title{padding-top:40px}.mec-single-modal.mec-single-modern .mec-single-event-bar{padding:5px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div dd{font-size:13px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div h3{font-size:15px}@media only screen and (min-width:960px){.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-left:0}}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-top:10px;margin-bottom:10px}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox.mec-event-meta{padding:0}.mec-single-modal .mec-event-meta dd.mec-organizer-email a,.mec-single-modal .mec-event-meta dd.mec-organizer-url a{font-size:12px;display:block}.mec-organizer-description p{padding-left:12px}.mec-modal-wrap{max-width:60vw;max-height:90vh!important;background:#fff;box-shadow:0 1px 55px rgba(0,0,0,.5);overflow-x:hidden!important}@media(max-width:1023px){.mec-modal-wrap{max-width:80vw}}.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li,.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a.mec-events-button{display:block;text-align:center}.mec-holding-status-expired{color:#d8000c}.mec-holding-status-ongoing{color:#0dbf52}body .featherlight{z-index:999999!important}body .featherlight .featherlight-content{background:0 0;overflow:unset;z-index:9999}body .featherlight .featherlight-close-icon{position:fixed;top:40px;right:40px;background:0 0;color:#fff;border:1px solid #fff;border-radius:0}body .featherlight .featherlight-close-icon:hover{background:#fff;color:#000;border:1px solid #000}@media (max-width:320px){.mec-wrap span.flip-clock-divider{width:20px}.mec-single-event .mec-events-meta-group-countdown{padding:15px 12%}}@media (max-width:414px){.mec-wrap span.flip-clock-divider{width:30px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 7%}}@media (max-width:480px){body .featherlight .featherlight-content{width:95%}.mec-wrap span.flip-clock-divider{width:7px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 1%}body .featherlight .featherlight-close-icon{color:#000;border-color:#000}}@media(max-width:1366px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:20px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 15px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:48px}}@media(max-width:1280px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:14px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:15px 10px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:38px}}@media(min-width:961px) and (max-width:1024px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:7px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:15px 5px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:14px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul li a div{font-size:30px}}@media(max-width:640px){body .mec-modal-wrap .mec-single-modal.featherlight-close-icon{top:14px;right:14px}}@media(max-width:480px){.featherlight .featherlight-content,body .mec-modal-wrap{max-width:100%}body .mec-modal-wrap.flip-clock-divider .flip-clock-label{display:block}}@media (max-width:414px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:50px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 65px}body .featherlight-content .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 2px 20px 2px!important}body .featherlight-content .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:3px!important}}@media (max-width:375px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:50px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 45px}}@media (max-width:320px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:20px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 40px}}.mec-single-event-bar dd{margin-left:0}.mec-events-toggle{max-width:960px;margin-left:auto;margin-right:auto}.mec-events-toggle .mec-toggle-item{border:1px solid #e4e4e4;margin-bottom:15px;box-shadow:0 10px 15px #f3f3f3}.mec-events-toggle .mec-toggle-item-inner{cursor:pointer;position:relative;padding:30px 60px 30px 15px;background:#fff;transition:all .3s ease;min-height:100px;display:table;width:100%;border-collapse:separate}.mec-events-toggle .mec-toggle-item-inner:hover{background:#fbfbfb}.mec-toggle-item-col{width:200px;border-right:1px solid #e3e3e3;margin-right:15px;display:table-cell;padding-right:5px}.mec-toggle-item-col .mec-event-date{font-size:38px;line-height:40px;float:left;margin-right:8px}.mec-toggle-item-col .mec-event-month,.mec-toggle-item-col .mec-time-details{text-transform:uppercase;font-size:12px;line-height:14px;padding-top:4px;font-weight:700}.mec-toggle-item-col .mec-event-detail{font-size:10px}.mec-toggle-item-col .mec-event-day{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:35px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-events-toggle .mec-toggle-title{color:#000;font-size:23px;font-weight:600;margin-bottom:0;transition:all .3s ease;display:table-cell;text-align:left;max-width:calc(100% - 200px);padding-left:15px;vertical-align:middle}.mec-events-toggle .mec-toggle-item-inner span.event-color{width:5px;height:100%;position:absolute;left:-1px;top:0;bottom:0;border-radius:0;margin:0}.mec-events-toggle .mec-toggle-item-inner i{position:absolute;font-size:30px;right:25px;top:50%;transform:translate(0,-50%);cursor:pointer}.mec-events-toggle .mec-toggle-item.is-open i.mec-sl-plus:before{content:"\e615"}.mec-events-toggle .mec-toggle-item.is-open .mec-toggle-title{background:#f8f8f8;cursor:pointer}.mec-events-toggle .mec-toggle-content{border-top:1px solid #e4e4e4}.mec-events-toggle .mec-toggle-content .mec-modal-wrap{margin:0;max-width:100%;box-shadow:none}.mec-events-toggle .mec-toggle-content .mec-modal-wrap .mec-single-event{margin:0}.mec-events-toggle .mec-toggle-content .mec-single-event-bar,.mec-events-toggle .mec-toggle-content h1.mec-single-title{display:none}.mec-events-toggle .media-links a{margin-bottom:0}.mec-events-toggle .mec-toggle-content .mec-toggle-meta{margin-bottom:14px}.mec-events-toggle #mec_speakers_details.mec-frontbox{padding:0;margin:0}.mec-events-toggle .mec-toggle-item h3.mec-speakers{border:none;text-align:left}.mec-events-toggle .mec-toggle-item h3.mec-speakers:before{content:"\e063";font-family:simple-line-icons;border:none;position:relative;display:inline-block;left:unset;bottom:unset;font-size:22px;font-weight:400;padding:0 11px 0 28px;vertical-align:middle}@media only screen and (max-width:767px){.mec-toggle-item-inner .mec-toggle-item-col{float:none;width:100%;border-right:none;margin-bottom:5px;display:block;max-width:100%;padding-left:15px}.mec-events-toggle .mec-toggle-title{display:block;width:100%;max-width:100%}}.mec-events-agenda-wrap{margin:10px 0;border:1px solid #e9e9e9;padding-left:20px;box-shadow:0 2px 2px rgba(0,0,0,.03)}.mec-events-agenda{padding:0;border-bottom:1px solid #e9e9e9;overflow:hidden}.mec-agenda-date-wrap{width:210px;padding-top:15px;float:left;font-size:13px}.mec-agenda-date-wrap i,.mec-agenda-event i{font-size:11px;color:#aaa;margin-right:4px;margin-left:1px}.mec-agenda-event i{vertical-align:middle;margin-right:1px}.mec-agenda-events-wrap{float:left;width:calc(100% - 210px);background:#f9f9f9;padding:15px}.mec-agenda-time{font-size:11px;color:#707070;padding-right:10px;width:138px;display:inline-block}.mec-agenda-event-title{position:relative;padding-left:14px}.mec-agenda-event-title a{font-family:Roboto,Montserrat,Helvetica,Arial,sans-serif;font-size:14px;font-weight:600;color:#333}.mec-agenda-event-title span.event-color{width:9px;height:9px;position:absolute;left:0;top:4px;margin:0}.mec-agenda-date-wrap span.mec-agenda-day{color:#aaa;font-size:12px}@media only screen and (max-width:767px){.mec-agenda-date-wrap,.mec-agenda-events-wrap{float:none;width:100%}.mec-events-agenda span.mec-agenda-event-title{display:block;width:100%}.mec-agenda-event-title span.event-color{top:7px}.mec-agenda-event-title a{font-size:13px}}.mec-yearly-view-wrap{margin:0 0 15px;border:1px solid #e6e6e6;box-shadow:0 2px 4px rgba(0,0,0,.04);border-bottom-width:4px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar{max-width:100%;width:232px;padding:10px;background:#fff;margin:10px;display:inline-block}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar dl dt{transition:none;height:30px;width:30px;line-height:30px;border-radius:0;font-size:12px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar .mec-calendar-events-sec{padding:10px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar .mec-has-event:after{width:4px;height:4px;bottom:3px;margin-left:-2px}.mec-yearly-view-wrap .mec-calendar-side .mec-calendar-table{min-height:200px}.mec-calendar.mec-yearly-calendar .mec-calendar-table-head dl dt{background:#f9f9f9;font-size:13px}.mec-calendar.mec-yearly-calendar .mec-calendar-table-title{text-align:center;font-size:15px;font-weight:700;color:#222;margin-top:-5px;padding-bottom:5px}.mec-yearly-view-wrap .mec-yearly-calendar-sec{min-height:200px;width:538px;overflow:hidden;float:left;background:#f8f8f8;padding:15px}.mec-yearly-view-wrap .mec-yearly-agenda-sec{min-height:200px;width:calc(100% - 538px);float:left;padding:0 0 0 20px;overflow:hidden}.mec-yearly-view-wrap .mec-yearly-title-sec{position:relative;padding:15px;text-align:center;border-bottom:1px solid #e6e6e6;box-shadow:0 1px 3px rgba(0,0,0,.02)}.mec-yearly-view-wrap .mec-yearly-title-sec h2{font-size:30px;line-height:40px;color:#333;margin:0;font-weight:700}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year,.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{position:absolute;top:50%;margin-top:-15px;min-width:30px;height:30px;line-height:30px;padding:0 8px;text-align:center;background:#fff;color:#666;font-size:14px;border:1px solid #eee;border-radius:2px;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease;cursor:pointer}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{right:auto;left:20px;padding-right:14px}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year{left:auto;right:20px;padding-left:14px}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year i,.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-yearly-view-wrap .mec-events-agenda.mec-selected{box-shadow:-10px 0 0 0 #fffcf2,0 -1px 0 #fbebb6;background:#fffcf2;border-color:#fbebb6;color:#f9af29}.mec-yearly-agenda-sec span.mec-event-label-captions.mec-fc-style{right:0;top:0}@media only screen and (max-width:959px){.mec-yearly-view-wrap .mec-yearly-calendar-sec{width:268px;padding:10px 5px}.mec-yearly-view-wrap .mec-yearly-agenda-sec{width:calc(100% - 268px);padding:0 0 0 10px}}@media only screen and (max-width:767px){.mec-yearly-view-wrap .mec-yearly-agenda-sec,.mec-yearly-view-wrap .mec-yearly-calendar-sec{width:100%;float:none}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar{width:auto}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar dl dt{width:14.2%}.mec-yearly-view-wrap .mec-yearly-title-sec h2{font-size:25px}}.mec-yearly-view-wrap .mec-agenda-event i,.mec-yearly-view-wrap .mec-agenda-time{display:none}@media only screen and (min-width:768px){.mec-yearly-view-wrap .mec-events-agenda-wrap{margin-top:0;border:none;padding-left:0;box-shadow:none}.mec-yearly-view-wrap .mec-agenda-date-wrap{width:174px;font-size:11px;padding-top:10px}.mec-yearly-view-wrap .mec-agenda-events-wrap{width:calc(100% - 174px);padding:10px}.mec-yearly-view-wrap .mec-agenda-event-title a{font-size:13px}.mec-yearly-view-wrap .mec-agenda-event-title span.event-color{width:8px;height:8px}.mec-yearly-view-wrap .mec-agenda-date-wrap span.mec-agenda-day{font-size:11px}.mec-yearly-view-wrap .mec-yearly-calendar-sec{box-shadow:-2px 0 5px rgba(0,0,0,.03) inset}}@media only screen and (max-width:1200px){.mec-yearly-view-wrap .mec-agenda-event-title a{font-size:12px;padding-right:6px}}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table{padding-bottom:10px;border-bottom:none}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt:hover{cursor:pointer}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-has-no-event,.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-has-no-event:hover{color:#bbb;cursor:default}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-day-active{background:#40d9f1;color:#fff;position:relative}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-day-active:after{content:'';position:absolute;display:block;bottom:-20px;left:50%;margin-left:-10px;width:0;border-width:10px;border-style:solid;border-color:#40d9f1 transparent transparent transparent}.mec-timetable-events-list{padding:10px 20px;border:none;margin:0}.mec-timetable-events-list .mec-timetable-event{padding:10px 0;border-bottom:1px dashed #ddd}.mec-timetable-events-list .mec-timetable-event:last-child{border:none}.mec-timetable-event .mec-timetable-event-span{font-size:12px;color:#444;padding-right:30px;line-height:22px}.mec-timetable-events-list .mec-timetable-event i{font-size:13px;color:#aaa;margin-right:3px;vertical-align:baseline}.mec-timetable-event .mec-timetable-event-span a{color:#333}.mec-timetable-event .mec-timetable-event-time{font-size:11px}.mec-timetable-event .mec-timetable-event-time i{vertical-align:text-bottom}.mec-timetable-event .mec-timetable-event-title{font-size:13px}.mec-timetable-event .mec-timetable-event-title .event-color{width:10px;height:10px}.mec-timetable-events-list .mec-timetable-event.mec-util-hidden{display:none}.mec-timetable-events-list.mec-util-hidden{display:none}@media only screen and (min-width:768px){.mec-timetable-events-list{display:table;width:100%;margin:10px 0 20px}.mec-timetable-events-list .mec-timetable-event{display:table-row;padding:0;border:none;background:#fff}.mec-timetable-events-list .mec-timetable-event:hover{background:#fafafa}.mec-timetable-event .mec-timetable-event-span{display:table-cell;padding:10px 15px;border-bottom:1px solid #ebebeb}.mec-timetable-events-list .mec-timetable-event:last-child .mec-timetable-event-span{border-bottom:none}}@media only screen and (max-width:767px){.mec-timetable-event .mec-timetable-event-title{display:block;width:100%;padding:5px 0 10px;font-weight:700}}.mec-timetable-t2-wrap{border:1px solid #e6e6e6;background:#fafafa;padding:0 15px 15px;overflow:hidden;box-shadow:0 3px 2px 0 rgba(0,0,0,.012)}.mec-timetable-t2-col{width:20%;float:left;min-height:20px;padding-right:1px;background:0 0}.mec-ttt2-title{background:#fafafa;color:#333;font-size:13px;font-weight:600;text-transform:uppercase;letter-spacing:1px;text-align:center;padding:25px 10px 10px;margin-bottom:1px}.mec-timetable-t2-col .mec-event-article{position:relative}.mec-timetable-t2-col .mec-event-article .event-color{position:absolute;width:auto;height:auto;left:0;right:0;top:0;bottom:0;margin:0;z-index:1;border-radius:2px}.mec-timetable-t2-content{position:relative;z-index:2;color:#fff;padding:15px 15px 20px;text-align:left;height:185px;margin-bottom:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title{line-height:22px;margin-bottom:13px;white-space:nowrap;padding-right:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title a{color:#fff;font-size:15px;font-weight:600;white-space:pre-line;overflow:hidden}.mec-timetable-t2-content div{color:#fff;font-size:11px;font-weight:400;line-height:19px;white-space:nowrap}.mec-timetable-t2-content div i{font-size:12px;margin-right:4px}@media only screen and (max-width:960px){.mec-timetable-t2-col{width:100%;float:none}}@media(min-width:961px){.mec-timetable-col-7{width:14.28%}.mec-timetable-col-6{width:16.6666%}}.mec-timetable-t3-wrap td{position:relative;padding:0}.mec-timetable-t3-wrap td a{width:100%;display:block;min-height:110px}.mec-weather-box{padding:15px 0}.mec-weather-head{min-height:90px;padding:5px 0;clear:both;overflow:hidden;margin-bottom:25px;border-radius:10px;background:#238af5;position:relative}.mec-weather-icon-box{float:left;width:80px;height:80px;border-radius:10px;overflow:hidden;background:#238af5}.mec-weather-icon{width:80px;height:80px;display:inline-block;border-radius:10px}.mec-weather-summary{float:left;width:calc(100% - 80px);padding-left:10px;margin:10px 0;height:60px}.mec-weather-summary-report{font-size:15px;color:rgba(255,255,255,.68);margin-bottom:6px}.mec-weather-summary-temp{font-family:Roboto,Sans-serif;font-weight:300;color:#fff;font-size:29px;line-height:1}.degrees-mode{background:rgba(0,0,0,.2);cursor:pointer;font-weight:300;font-size:18px;padding:4px 5px;line-height:1;color:#fff;position:absolute;border-radius:8px;bottom:16px;left:16px}.mec-weather-extras{width:auto;padding:10px 15px 0 15px;float:right;min-height:80px;color:#fff;font-size:13px;line-height:1}.mec-weather-extras{width:auto;padding:10px 15px 0 15px;float:right;min-height:80px;color:#fff;font-size:13px;line-height:1}.mec-weather-extras div{line-height:20px;height:20px}.mec-weather-extras span{color:rgba(255,255,255,.68);font-size:12px;text-transform:uppercase}.mec-weather-extras var{font-size:11px;letter-spacing:.4px}.mec-weather-icon.clear-day,.mec-weather-icon.clear-night{background-image:url(../img/mec-weather-icon-01.png)}.mec-weather-icon.partly-sunny-day,.mec-weather-icon.partly-sunny-night{background-image:url(../img/mec-weather-icon-02.png)}.mec-weather-icon.partly-cloudy-day,.mec-weather-icon.partly-cloudy-night{background-image:url(../img/mec-weather-icon-03.png)}.mec-weather-icon.cloudy,.mec-weather-icon.fog,.mec-weather-icon.wind{background-image:url(../img/mec-weather-icon-04.png)}.mec-weather-icon.thunderstorm{background-image:url(../img/mec-weather-icon-05.png)}.mec-weather-icon.rain{background-image:url(../img/mec-weather-icon-06.png)}.mec-weather-icon.hail,.mec-weather-icon.sleet,.mec-weather-icon.snow{background-image:url(../img/mec-weather-icon-07.png)}.mec-av-spot-wrap{width:auto;max-width:1200px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-av-spot{height:auto;border:1px solid #eee;box-shadow:0 6px 12px -4px rgba(0,0,0,.05)}.mec-av-spot .mec-event-article{position:relative;height:auto}.mec-av-spot .mec-av-spot-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:330px;float:none;margin:0;overflow:hidden}.mec-av-spot .mec-av-spot-content,.mec-av-spot .mec-av-spot-head{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-av-spot .mec-av-spot-head{background:#222;color:#fff;min-height:80px}.mec-av-spot .mec-av-spot-head .mec-av-spot-box{padding-top:25px;font-size:13px;color:#ddd}.mec-av-spot .mec-av-spot-head .mec-av-spot-box span{color:#40d9f1;font-size:40px;font-weight:700;font-style:italic}.mec-av-spot .mec-av-spot-head .mec-event-countdown{text-align:center;padding-top:10px;display:table;table-layout:fixed;margin:0 auto;float:right}.mec-av-spot .mec-av-spot-head .mec-event-countdown li{display:table-cell;padding:10px 20px;position:relative;height:60px}.mec-av-spot .mec-av-spot-head .mec-event-countdown p{margin-bottom:0}.mec-av-spot .mec-events-content p{margin-bottom:20px}.mec-av-spot-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-av-spot-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-av-spot-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-av-spot .mec-av-spot-col6{width:50%;float:left;height:100%}.mec-av-spot .mec-av-spot-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-av-spot .mec-av-spot-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-av-spot .mec-av-spot-col6 address{font-size:12px;margin-bottom:0}.mec-av-spot-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-av-spot-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05)}@media only screen and (max-width:768px){.mec-av-spot .mec-av-spot-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-av-spot-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-events-masonry-wrap{display:block;width:auto}.mec-masonry-item-wrap{width:calc(33.33% - 30px);padding:0;margin:0 15px 30px;min-height:10px;position:relative;float:left}.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}@media (max-width:480px){.mec-masonry-content.mec-event-grid-modern .mec-labels-normal{display:block}}.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-box-marker,.mec-vip-content-notice{box-shadow:5px 0 0 #40d9f1 inset;padding:5px 10px}.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,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-custom,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-featured{overflow:hidden;position:relative}.mec-event-label-captions{z-index:1;position:absolute;top:20px;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);list-style:none;text-align:center}.mec-box-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-event-label-captions{display:none}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled:before{background:#de0404}.mec-daily-view-date-events article:before,ul.mec-weekly-view-dates-events article:before{padding:7px 40px!important;top:27px!important}.mec-event-grid-classic article .mec-fc-style,.mec-event-grid-minimal article .mec-fc-style,.mec-event-grid-simple article .mec-fc-style,.mec-timeline-event .mec-fc-style,.mec-timetable-wrap article .mec-fc-style,.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article.mec-event-cover-modern .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{font-size:9px;letter-spacing:.5px;text-transform:uppercase;background:#04de78;padding:2px 7px;color:#fff;position:relative;margin-left:5px;border-radius:2px}.mec-timeline-event.mec-label-canceled .mec-fc-style,.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-modern.mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-minimal article .mec-fc-style:before,.mec-event-grid-simple article .mec-fc-style:before,.mec-timeline-event .mec-fc-style:before,.mec-timetable-wrap article .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article .mec-fc-style:before,.mec-wrap .mec-event-list-modern article .mec-fc-style:before,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style:before{width:0;height:0;border-top:4px solid transparent!important;border-right:5px solid;border-bottom:4px solid transparent;margin:0;top:50%;left:-5px;transform:translateY(-4.5px);position:absolute;content:'';color:var(--background-color)}.mec-timeline-event.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-event-grid-classic article.mec-label-canceled:before,.mec-event-grid-classic article.mec-label-featured:before,.mec-event-grid-minimal article.mec-label-canceled:before,.mec-event-grid-minimal article.mec-label-featured:before,.mec-event-grid-simple article.mec-label-canceled:before,.mec-event-grid-simple article.mec-label-featured:before,.mec-timetable-wrap article.mec-label-canceled:before,.mec-timetable-wrap article.mec-label-featured:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled:before,.mec-wrap .mec-event-list-accordion article.mec-label-featured:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled:before,.mec-wrap .mec-event-list-modern article.mec-label-featured:before{display:none}.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{top:-1px;right:-3px;font-size:11px;white-space:nowrap}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style:before,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-canceled:before,.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-featured:before{-ms-transform:none;-webkit-transform:none;transform:none;-webkit-transition:none;transition:none;top:271px;right:0}.mec-timetable-wrap article .mec-fc-style{top:-2px;font-size:10px;right:0}.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;-ms-transform:rotate(0);-webkit-transform:rotate(0);transform:rotate(0);right:0;top:0}.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;right:0}.mec-event-grid-classic article .mec-fc-style{padding:5px 20px;font-size:12px;margin-top:8px;display:inline-block}ul.mec-categories{padding:0}ul.mec-categories li.mec-category{list-style:none}ul.mec-categories li.mec-category a{font-weight:400;color:#626262;font-size:13px;text-align:left;transition:all .23s ease;-webkit-transition:all .23s ease}.mec-hourly-schedule-speaker-info{background:#fff;padding:30px;border:1px solid #e6e6e6;max-width:740px;width:740px;margin-left:-110px}.mec-hourly-schedule-speaker-thumbnail{float:left;max-width:30%;width:30%}.mec-hourly-schedule-speaker-name{font-weight:700;font-size:26px;line-height:1.2;color:#333;text-transform:uppercase}.mec-hourly-schedule-speaker-details{float:left;width:69%;padding-left:25px}.mec-hourly-schedule-speaker-job-title{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-hourly-schedule-speaker-description{font-size:14px;font-weight:400;color:#6d7683;line-height:1.7;text-align:left}.mec-hourly-schedule-speaker-contact-information a i{color:#6b6b6b;background:#ebebeb;line-height:29px;margin:9px 7px 9px 0;width:30px;height:30px;display:inline-block;text-align:center;transition:all .2s ease;font-size:15px;cursor:pointer;border-radius:3px}.mec-hourly-schedule-speaker-contact-information a i:hover{background:#222;color:#fff}@media only screen and (max-width:479px){.mec-hourly-schedule-speaker-thumbnail{float:none;max-width:none;margin-right:0;margin-bottom:15px;width:100%}.mec-hourly-schedule-speaker-thumbnail img{width:100%}.mec-hourly-schedule-speaker-details{padding-left:0}.mec-hourly-schedule-speaker-info{width:90%;margin:0 auto}}.mec-profile .mec-profile-bookings{border:2px solid #e6e6e6;text-align:center}.mec-profile .mec-profile-bookings tbody tr:first-child{background:#f7f7f7;font-weight:700;text-transform:capitalize}.mec-profile .mec-profile-bookings tbody tr{border-bottom:1px solid #e6e6e6;font-size:14px}.mec-profile .mec-profile-bookings tbody tr td{border:1px solid #e6e6e6;padding:10px;text-align:center;word-break:initial}.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:53%;text-align:left}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8) i{color:#fe686a}.mec-profile .mec-event-status{padding:5px 10px;color:#fff;border-radius:2px;font-size:12px;line-height:12px;letter-spacing:.4px}.mec-profile .mec-event-status.mec-book-confirmed{background:#50d477}.mec-profile .mec-event-status.mec-book-pending{background:#fcbe69}.mec-profile .mec-event-status.mec-book-rejected{background:#fe686a}.mec-profile .mec-event-date{font-size:12px;color:#888}.mec-event-date,.mec-event-status{text-align:center}.mec-event-date .mec-tooltip,.mec-event-status .mec-tooltip{position:relative;width:fit-content;margin:auto}.mec-profile i{font-size:15px;color:#008aff;vertical-align:text-bottom;margin-right:4px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{min-width:250px;max-width:300px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#000;color:#fff;font-weight:400;font-size:14px;letter-spacing:.5px;line-height:1.5;position:absolute;z-index:99999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #535a61;padding:5px 10px 6px;border-radius:8px;text-align:center;font-style:normal;opacity:0;visibility:hidden;display:none}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{font-size:13px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;letter-spacing:1.1px;font-weight:500}.mec-event-date .mec-tooltip:hover .box:after,.mec-event-status .mec-tooltip:hover .box:after{content:'';position:absolute;width:12px;height:12px;left:calc(50% - 12px);bottom:-12px;transform:translate(50%,-50%) rotate(-45deg);background-color:#000;box-shadow:0 8px 9px -4px #535a61}.mec-event-status .mec-tooltip .box{min-width:100px}.mec-event-status.mec-book-confirmed .mec-tooltip .box,.mec-event-status.mec-book-confirmed .mec-tooltip:hover .box:after{background-color:#50d477}.mec-event-status.mec-book-rejected .mec-tooltip .box,.mec-event-status.mec-book-rejected .mec-tooltip:hover .box:after{background-color:#fe686a}.mec-event-status.mec-book-pending .mec-tooltip .box,.mec-event-status.mec-book-pending .mec-tooltip:hover .box:after{background-color:#fcbe69}.mec-event-date .mec-tooltip:hover .box,.mec-event-status .mec-tooltip:hover .box{opacity:1;visibility:visible;display:block}.mec-profile .mec-event-status{padding:0}.mec-profile .mec-booking-number-of-attendees{font-size:13px;color:#888}.mec-profile .mec-booking-number-of-attendees i,.mec-profile .mec-profile-bookings-view-invoice i{font-size:15px;color:#008aff;vertical-align:text-bottom;margin-right:4px}.mec-booking-attendees{background:#fff;padding:10px}.mec-booking-attendees{width:850px;text-align:center}.mec-booking-attendees-wrapper{border:2px solid #e6e6e6;font-size:14px}.mec-booking-attendees-head{display:table;width:100%;background:#f7f7f7;border-bottom:1px solid #e6e6e6;font-weight:700}.mec-booking-attendees-head span,.mec-booking-attendees-head-content>span{vertical-align:middle;display:table-cell;padding:7px;border-right:1px solid #e6e6e6;font-size:12px}.mec-booking-attendees-head-content{display:table;width:100%;border-bottom:1px solid #e6e6e6}.mec-booking-attendees-wrapper .mec-booking-attendees-head-content:last-child{border:none}.mec-booking-attendees-head span:nth-child(1),.mec-booking-attendees-head-content>span:nth-child(1){width:4%}.mec-booking-attendees-head span:nth-child(2),.mec-booking-attendees-head-content>span:nth-child(2){width:20%}.mec-booking-attendees-head span:nth-child(3),.mec-booking-attendees-head-content>span:nth-child(3){width:24%}.mec-booking-attendees-head span:nth-child(4),.mec-booking-attendees-head-content>span:nth-child(4){width:26%}.mec-booking-attendees-head span:nth-child(5),.mec-booking-attendees-head-content>span:nth-child(5){width:26%}@media only screen and (max-width:759px){.mec-booking-attendees{width:470px}.mec-booking-attendees-head span,.mec-booking-attendees-head-content>span{word-break:break-all}}@media(max-width:1366px){.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:6%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:40%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:12%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:8%}}@media(max-width:1024px){.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:30%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:15%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:10%}}@media(max-width:780px){.mec-profile .mec-profile-bookings tbody tr,.mec-profile i{font-size:12px}.mec-event-date .mec-tooltip .box{min-width:200px}.mec-event-status .mec-tooltip .box{min-width:90px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{padding:4px 5px!important}.mec-profile .mec-profile-bookings tbody tr{font-size:12px}}@media(max-width:480px){.mec-profile .mec-booking-number-of-attendees,.mec-profile .mec-profile-bookings tbody tr,.mec-profile i{font-size:8px!important}.mec-profile .mec-profile-bookings tbody tr td{padding:3px}.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:19%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:12%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:18%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:13%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:13%}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{font-size:8px}.mec-event-date .mec-tooltip .box{min-width:75px}.mec-event-status .mec-tooltip .box{min-width:70px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{padding:4px 5px!important}}.mec-woo-booking-checkout{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;border-radius:0;margin-bottom:6px;min-width:170px;margin-top:5px;text-align:center}.mec-woo-booking-checkout:hover{background:#222;color:#fff}.mec-woo-booking-checkout:focus,.mec-woo-booking-checkout:visited{color:#fff}.single-mec-events .lity-container{max-width:480px;width:480px}.lity-content .mec-events-meta-group-booking{width:100%;padding:20px 50px;background:#fff}.lity-content .mec-events-meta-group-booking .mec-booking form>h4{text-transform:uppercase;font-size:15px;font-weight:700;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative;text-align:center;line-height:1.2;margin-bottom:10px}.lity-content .mec-events-meta-group-booking .mec-booking form>h4:before{padding:1px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-35px;left:50%}.lity-content .mec-events-meta-group-booking .mec-event-ticket-available,.lity-content .mec-events-meta-group-booking .mec-event-ticket-name,.lity-content .mec-events-meta-group-booking .mec-event-ticket-price,.lity-content .mec-events-meta-group-booking .mec-ticket-variation-name,.lity-content .mec-events-meta-group-booking .mec-ticket-variation-price,.lity-content .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;clear:none;padding:5px 1em 3px 0;display:inline-block}.lity-content .mec-events-meta-group-booking .mec-event-ticket-available{margin-bottom:12px}.lity-content .mec-events-meta-group-booking select{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both;font-family:Montserrat,Helvetica,Arial,sans-serif}.lity-content .mec-events-meta-group-booking input[type=email]{color:#888;border:1px solid #e1e1e1;font-size:14px;display:block;width:100%;outline:0}.lity-content .mec-events-meta-group-booking input{margin-bottom:10px!important}.lity-content .mec-book-ticket-variation h5{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:0;clear:none;padding:5px 1em 3px 0;display:inline-block;text-transform:capitalize;font-family:Montserrat,Helvetica,Arial,sans-serif}.lity-content ul.mec-book-tickets-container{padding:0}.lity-content .mec-events-meta-group-booking input[type=email],.lity-content .mec-events-meta-group-booking input[type=number],.lity-content .mec-events-meta-group-booking input[type=text]{outline:0;font-family:Montserrat,Helvetica,Arial,sans-serif;display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both;margin-bottom:2px!important}.lity-container .mec-click-pay #mec_woo_add_to_cart_btn_r,.lity-content button[type=submit]{position:relative;border:none;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;min-width:170px;margin-top:5px;border-radius:0;margin-bottom:6px}.lity-content button[type=submit]:hover{background:#222}.lity-content .mec-book-tickets-container li{list-style:none}.lity-content .mec-events-meta-group-booking #mec_book_payment_form h4,.lity-content .mec-events-meta-group-booking li h4{font-size:19px;font-weight:700}.lity-content .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li{width:50%}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li:nth-child(even){border:none}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li span{display:block}.lity-content .mec-events-meta-group-booking button[type=submit]:after{display:none;font-family:simple-line-icons;content:"\e098";margin-left:4px;-webkit-animation:rotating 1.2s linear infinite;-moz-animation:rotating 1.2s linear infinite;-ms-animation:rotating 1.2s linear infinite;-o-animation:rotating 1.2s linear infinite;animation:rotating 1.2s linear infinite}.lity-content .mec-events-meta-group-booking button[type=submit].loading:after{display:inline-block}@media only screen and (max-width:480px){.lity-content .mec-events-meta-group-booking{padding:20px;width:340px;margin:0 auto}}@media(max-width:480px){.single-mec-events .lity-container{max-width:440px;width:440px;margin:0 auto!important}}@media(max-width:411px){.single-mec-events .lity-container{max-width:380px;width:380px}}@media(max-width:375px){.single-mec-events .lity-container{max-width:350px;width:350px}}@media(max-width:320px){.single-mec-events .lity-container{max-width:300px;width:300px}}.mec-events-meta-group-booking{position:relative}.mec-cover-loader:after{content:'';position:absolute;top:0;right:0;left:0;bottom:0;background:rgba(255,255,255,.5);z-index:99999}.mec-loader{background:rgba(0,0,0,0);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);z-index:9}.mec-loader,.mec-loader:after{border-radius:50%;width:5em;height:5em;z-index:999999999999}.mec-loader{font-size:10px;text-indent:-9999em;border-top:.5em solid rgba(0,0,0,.2);border-right:.5em solid rgba(0,0,0,.2);border-bottom:.5em solid rgba(0,0,0,.2);border-left:.5em solid #fff;-webkit-transform:translateZ(0);-ms-transform:translateZ(0);transform:translateZ(0);-webkit-animation:mecloader 1.1s infinite linear;animation:mecloader 1.1s infinite linear}@-webkit-keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.mec-google-recaptcha{margin:0 0 20px 16px}.mec-wrap *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap :after,.mec-wrap :before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap .clearfix:after,.mec-wrap .clearfix:before{content:'\0020';display:block;overflow:hidden;visibility:hidden;width:0;height:0}.mec-wrap .clearfix:after{clear:both}.mec-wrap .clearfix{zoom:1}.mec-wrap .clear,.mec-wrap .clr{clear:both;display:block;overflow:hidden;visibility:hidden}.mec-wrap .clr{visibility:visible;overflow:visible}.mec-container [class*=col-] img{max-width:100%}.mec-container{margin-right:auto;margin-left:auto;padding-left:10px;padding-right:10px}.mec-container:after,.mec-container:before{content:" ";display:table}.mec-container:after{clear:both}@media only screen and (max-width:479px){.mec-container{width:300px}}@media only screen and (min-width:480px) and (max-width:767px){.mec-container{width:420px}}@media only screen and (min-width:768px) and (max-width:960px){.mec-container{width:768px}}@media only screen and (min-width:961px){.mec-container{width:960px}}@media only screen and (min-width:1200px){.mec-container{width:1196px;padding-left:15px;padding-right:15px}}@media only screen and (min-width:1921px){.mec-container{max-width:1690px}}.mec-wrap .row{margin-left:-10px;margin-right:-10px}.mec-wrap .row:after,.mec-wrap .row:before{content:" ";display:table}.mec-wrap .row:after{clear:both}.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{position:relative;min-height:1px;padding-left:10px;padding-right:10px}@media only screen and (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{padding-left:15px;padding-right:15px}.mec-wrap .row{margin-left:-15px;margin-right:-15px}}.mec-container [class*=col-].alpha{padding-left:0}.mec-container [class*=col-].omega{padding-right:0}.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{float:left}.mec-wrap .col-xs-12{width:100%}.mec-wrap .col-xs-11{width:91.66666666666666%}.mec-wrap .col-xs-10{width:83.33333333333334%}.mec-wrap .col-xs-9{width:75%}.mec-wrap .col-xs-8{width:66.66666666666666%}.mec-wrap .col-xs-7{width:58.333333333333336%}.mec-wrap .col-xs-6{width:50%}.mec-wrap .col-xs-5{width:41.66666666666667%}.mec-wrap .col-xs-4{width:33.33333333333333%}.mec-wrap .col-xs-3{width:25%}.mec-wrap .col-xs-2{width:16.666666666666664%}.mec-wrap .col-xs-1{width:8.333333333333332%}@media (min-width:768px){.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9{float:left}.mec-wrap .col-sm-12{width:100%}.mec-wrap .col-sm-11{width:91.66666666666666%}.mec-wrap .col-sm-10{width:83.33333333333334%}.mec-wrap .col-sm-9{width:75%}.mec-wrap .col-sm-8{width:66.66666666666666%}.mec-wrap .col-sm-7{width:58.333333333333336%}.mec-wrap .col-sm-6{width:50%}.mec-wrap .col-sm-5{width:41.66666666666667%}.mec-wrap .col-sm-4{width:33.33333333333333%}.mec-wrap .col-sm-3{width:25%}.mec-wrap .col-sm-2{width:16.666666666666664%}.mec-wrap .col-sm-1{width:8.333333333333332%}}@media (min-width:961px){.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9{float:left}.mec-wrap .col-md-12{width:100%}.mec-wrap .col-md-11{width:91.66666666666666%}.mec-wrap .col-md-10{width:83.33333333333334%}.mec-wrap .col-md-9{width:75%}.mec-wrap .col-md-8{width:66.66666666666666%}.mec-wrap .col-md-7{width:58.333333333333336%}.mec-wrap .col-md-6{width:50%}.mec-wrap .col-md-5{width:41.66666666666667%}.mec-wrap .col-md-4{width:33.33333333333333%}.mec-wrap .col-md-3{width:25%}.mec-wrap .col-md-2{width:16.666666666666664%}.mec-wrap .col-md-1{width:8.333333333333332%}}@media (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9{float:left}.mec-wrap .col-lg-12{width:100%}.mec-wrap .col-lg-11{width:91.66666666666666%}.mec-wrap .col-lg-10{width:83.33333333333334%}.mec-wrap .col-lg-9{width:75%}.mec-wrap .col-lg-8{width:66.66666666666666%}.mec-wrap .col-lg-7{width:58.333333333333336%}.mec-wrap .col-lg-6{width:50%}.mec-wrap .col-lg-5{width:41.66666666666667%}.mec-wrap .col-lg-4{width:33.33333333333333%}.mec-wrap .col-lg-3{width:25%}.mec-wrap .col-lg-2{width:16.666666666666664%}.mec-wrap .col-lg-1{width:8.333333333333332%}}#mec_woo_add_to_cart_btn{min-width:170px;margin-top:5px;text-align:center}.mec-breadcrumbs{border-radius:2px;padding:9px 15px 6px;font-size:11px;color:#8d8d8d;letter-spacing:0;text-transform:none;font-weight:500;margin:auto 15px 33px 15px;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.025)}.mec-breadcrumbs-modern{margin:auto 0 33px 0}.mec-breadcrumbs a{color:#000;padding-left:4px}.mec-breadcrumbs a:hover{text-decoration:underline}.mec-breadcrumbs i{font-size:8px;margin:0 0 0 4px}.mec-breadcrumbs .container{padding-left:20px}.mec-content-notification a{margin-left:5px}.mec-content-notification{background:#f7f7f7;padding:10px 10px 10px;border:1px solid #e8e8e8}.mec-content-notification p{margin-bottom:0}.mec-fes-form #mec-advanced-wraper div:first-child>ul{border:1px solid #cfeff5;width:auto;box-shadow:0 1px 4px -2px #cfeff5;display:block;margin:5px 0 10px;padding:5px 0;border-radius:2px}.mec-fes-form #mec-advanced-wraper div:first-child>ul:last-of-type{margin-bottom:35px}#mec-advanced-wraper div:first-child>ul span{display:none}#mec-advanced-wraper div:first-child>ul *{display:inline-block;background:#fff;font-size:12px;color:#717273;text-align:center}#mec-advanced-wraper div:first-child>ul>li{width:60px;font-weight:700;margin:0 10px 0 0;padding:4px 0;border-right:1px solid #cfeff5}#mec-advanced-wraper div:first-child>ul>ul>li{margin:0;padding:2px 10px;cursor:pointer;border-radius:2px;transition:all .18s ease}.mec-fes-form #mec-advanced-wraper div:first-child>ul>ul>li.mec-active,.mec-fes-form #mec-advanced-wraper div:first-child>ul>ul>li:hover{background:#40d9f1!important;box-shadow:0 1px 9px -3px #40d9f1;color:#fff!important}.mec-search-bar-wrap .mec-search-form .mec-text-input-search{width:83%}.mec-search-bar-wrap .mec-search-form .mec-ajax-search-result .mec-text-input-search{width:100%;float:none}.mec-search-bar-wrap input#mec-search-bar-input{width:calc(100% - 84%);margin-left:11px;background:#40d9f1;Color:#fff;font-weight:400}.mec-text-input-search+input#mec-search-bar-input{margin-left:-3px}.mec-search-bar-wrap input#mec-search-bar-input:hover{background:#000}.mec-wrap.mec-search-bar-wrap .mec-totalcal-box input{float:none}@media(max-width:768px){.mec-search-bar-wrap .mec-search-form .mec-text-input-search{display:inline-block}}@media(max-width:480px){.mec-search-bar-wrap .mec-search-form .mec-text-input-search{width:64%}.mec-search-bar-wrap input#mec-search-bar-input{width:calc(100% - 67%)}}.mec-wrap.mec-search-bar-wrap .mec-totalcal-box{overflow:visible}.mec-ajax-search-result{position:relative}.mec-search-bar-wrap.mec-wrap .mec-totalcal-box input[type=text]{width:calc(100% - 36px)}.mec-search-bar-wrap.mec-wrap .mec-totalcal-box input[type=text]:focus{border-color:#efefef}div#mec-ajax-search-result-wrap{position:absolute;top:100%;opacity:0;visibility:hidden;width:calc(100% - 2px);min-height:50px;left:0;right:0;padding:0 10px;z-index:9999;transition:all .3s ease}.mec-ajax-search-result-events{background:#fff;padding:10px 20px;border:1px solid #efefef;border-top:none}.mec-ajax-search-result-events article:first-of-type{border:none}article.mec-search-bar-result{text-align:left;margin-bottom:0;padding-bottom:25px;padding-top:26px;border-top:1px solid #efefef;transition:all .33s ease;clear:both}.mec-search-bar-result .mec-event-list-search-bar-date{width:64px;height:64px;margin-right:10px;font-size:11px;text-transform:uppercase;float:left;text-align:center;padding-top:2px}.mec-search-bar-result .mec-event-list-search-bar-date span{font-size:40px;line-height:30px;font-weight:700;display:block;margin-bottom:6px;letter-spacing:1px}.mec-search-bar-result .mec-event-image{float:left;margin-right:20px;width:65px;height:auto}.mec-search-bar-result .mec-event-time{font-size:11px;line-height:1.1;margin:0}.mec-search-bar-result .mec-event-time i{color:#40d9f1;float:none;width:unset;height:unset;font-size:inherit;margin-right:3px;border:none;padding:0}.mec-search-bar-result .mec-event-title{font-size:13px;padding:0;margin:10px 0 8px;font-weight:700;text-transform:uppercase}.mec-search-bar-result .mec-event-title a{text-decoration:none;color:#494949;transition:color .3s ease}.mec-search-bar-result .mec-event-detail{font-size:13px;line-height:1.3;font-family:Roboto,sans-serif;color:#9a9a9a;margin-bottom:0}.mec-wrap.mec-modern-search-bar .mec-totalcal-box{background:rgba(255,255,255,.87);border:none;padding:35px;border-radius:3px;box-shadow:0 3px 13px rgba(0,0,0,.4);position:relative}.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=search],.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=text]{height:58px;background:rgba(255,255,255,.99);border-radius:2px;box-shadow:0 4px 8px rgba(0,0,0,.1) inset;border:1px solid #ccc;width:100%;padding-left:45px;padding-right:13px;font-size:16px}.mec-wrap.mec-modern-search-bar .mec-totalcal-box .mec-text-input-search i{position:absolute;background:0 0;border:none;font-size:21px;left:15px;top:calc(50% - 19px);color:#40d9f1}.mec-wrap.mec-modern-search-bar .mec-text-input-search{position:relative;height:58px}.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=submit]{height:58px;border:none;border-radius:2px;background:#fc4a1a;font-size:17px;font-weight:700!important}.mec-wrap.mec-modern-search-bar .mec-text-input-search+input#mec-search-bar-input{margin-left:0}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{height:45px;background:rgba(255,255,255,.99);border-radius:2px;box-shadow:0 4px 8px rgba(0,0,0,.1) inset;border:1px solid #ccc;padding-right:13px;font-size:16px;border-left:0}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap i{height:45px;background:#ffff;border-radius:2px 0 0 2px;box-shadow:none;border:1px solid #ccc;font-size:15px;padding-top:14px;border-right:0;color:#40d9f1;margin-right:-1px}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap{min-height:64px}@media(max-width:768px){.mec-wrap.mec-modern-search-bar .mec-search-form .mec-text-input-search{width:70%}.mec-wrap.mec-modern-search-bar input#mec-search-bar-input{width:calc(100% - 72%)}}@media(max-width:480px){.mec-wrap.mec-modern-search-bar input#mec-search-bar-input{width:92%;padding:0 10px;position:relative;display:block;margin-left:11px}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-text-input-search{width:100%;margin-bottom:20px}.mec-wrap.mec-modern-search-bar .mec-text-input-search+input#mec-search-bar-input{margin-left:10px}}.mec-related-events{margin-right:-15px;margin-left:-15px}.mec-related-events-wrap{margin-top:50px}.mec-related-events-wrap h3.mec-rec-events-title:before{content:"";background:#2c2f34;width:46px;height:4px;position:absolute;top:59px;left:0}.mec-related-events-wrap h3.mec-rec-events-title{font-size:21px;font-weight:600;padding:17px 0;margin-bottom:28px;text-transform:uppercase;border-bottom:1px solid #e8e8e8;position:relative}.mec-related-event-post figure{margin:0}.mec-related-event-post figure img{width:100%}.mec-related-event-content{background-color:#fff;margin:-27px 30px 15px;position:relative;max-width:90%;padding:13px 21px 16px 19px}.mec-related-event-content h5 a{font-size:16px;color:#121212;font-weight:600;transition:all .3s ease}.mec-next-previous-events{width:100%;display:block;padding:0}.mec-next-previous-events li{list-style:none;width:50%;display:inline-block;margin:40px 0 40px}.mec-next-previous-events li:last-child{text-align:right}.mec-next-previous-events li a{padding:9px 14px 9px 14px;border:1px solid #000;transition:.3s}.mec-wrap .mec-next-previous-events li a:hover{color:#fff}.mec-previous-event{float:left;text-align:left}.mec-next-event ul{padding-left:0}.mec-next-previous-events .mec-previous-event i{padding-right:20px}.mec-next-previous-events .mec-next-event i{padding-left:20px}.mec-next-multiple ul{padding:0}.mec-next-multiple ul li a{display:block;position:relative;padding:11px 14px 9px;z-index:9}.mec-next-multiple ul .mec-date,.mec-next-multiple ul .mec-time{display:inline-block}.mec-next-multiple ul .mec-time{width:40%}.mec-next-multiple ul .mec-date{width:60%}.mec-next-multiple ul .mec-date{float:left;text-align:left}.mec-next-multiple ul .mec-time{text-align:right;position:relative;z-index:-1}.mec-next-multiple ul .mec-time dd{margin:0;padding:0}.mec-next-multiple ul .mec-date .mec-end-date-label,.mec-next-multiple ul .mec-date .mec-start-date-label,.mec-next-multiple ul .mec-time .mec-events-abbr{font-size:11px;line-height:24px}@media(max-width:1280px){.mec-next-multiple ul li a{padding:7px 9px 5px}.mec-next-multiple ul .mec-date .mec-start-date-label,.mec-next-multiple ul .mec-time .mec-events-abbr{font-size:12px}}@media(max-width:480px){.mec-next-previous-events li{list-style:none;width:100%;display:block;margin:10px 0;float:unset}.mec-next-previous-events li a{width:100%;max-width:100%;float:unset;display:block;text-align:center;font-size:16px}}.mec-fes-form-cntt #mec-organizer-payments ul{list-style:none;background:0 0;margin:0;padding-left: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-fes-form #mec_gateway_options_form_stripe_connection_button{padding:9px 13px!important}#mec-login-form.mec-login-form{width:100%;background:#fff;padding:20px;margin:0 auto;text-align:center;position:relative}#mec-login-form.mec-login-form .mec-login-input{display:block;width:286px;margin:0 auto;margin-bottom:12px}#mec-login-form.mec-login-form .mec-login-forgotpassword{display:inline-block}.mec-login-forgotpassword a{color:#000}#mec-login-form.mec-login-form .mec-login-submit{float:right;text-align:right;width:49%;padding-right:2px}#mec-login-form.mec-login-form .mec-login-input input{border:none;box-shadow:none;background:#fff;color:#ccc;border-left:1px solid #e6e6e6;padding:0;height:100%;background-image:none!important;padding-left:10px;padding-right:0;width:222px;margin-left:0;clear:none;float:left}#mec-login-form.mec-login-form .mec-login-input label{border:1px solid #e6e6e6;height:52px;display:inline-block;padding:0;border-radius:3px;overflow:hidden;box-shadow:0 2px 4px rgba(0,0,0,.04)}#mec-login-form.mec-login-form .mec-login-input label i{padding:15px 13px 17px 16px;vertical-align:middle;font-size:20px;width:50px;color:#c5cad0;background:#fafafa;margin-right:0;float:left}#mec-login-form.mec-login-form .mec-login-forgotpassword{float:left;width:49%;text-align:left;padding-top:10px;font-size:13px;padding-left:2px}#mec-login-form.mec-login-form button{width:120px;height:44px;border:none;color:#fff;border-radius:3px;font-size:12px;font-weight:700;letter-spacing:1px;text-transform:uppercase;transition:all .22s ease;margin:0;min-width:unset}.mec-login-form button{box-shadow:0 4px 22px -7px #40d9f1;background-color:#40d9f1}#mec-login-form.mec-login-form button:hover{background:#222;box-shadow:0 3px 14px -4px #333}#mec-login-form.mec-login-form .mec-login-form-footer{width:286px;margin:0 auto;margin-top:20px;clear:both;position:relative;display:block;min-height:50px}#mec-login-form.mec-login-form .mec-ajax-login-loading{position:absolute;background:#ffffffc2;left:0;right:0;top:0;bottom:0}#mec-login-form.mec-login-form .lds-ripple{position:absolute;width:64px;height:64px;top:calc(50% - 23px);left:calc(50% - 23px)}#mec-login-form.mec-login-form .lds-ripple div{position:absolute;border:4px solid #40d9f1;opacity:1;border-radius:50%;animation:lds-ripple 1.2s cubic-bezier(0,.2,.1,.8) infinite}#mec-login-form.mec-login-form .lds-ripple div:nth-child(2){animation-delay:-.5s}#mec-login-form.mec-login-form .mec-ajax-login-loading-text{position:absolute;min-width:200px;top:calc(50% - 18px);left:calc(50% - 124px);color:#fff;padding:10px 22px;border-radius:3px;background:#fff;height:47px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text strong{color:#3fcc60}#mec-login-form.mec-login-form .mec-ajax-login-loading-text strong:before{content:"";position:absolute;top:8px;left:1px;border-right:2px solid #3fcc60;border-bottom:2px solid #3acb5c;transform:rotate(45deg);transform-origin:0 100%;color:#000;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards;width:8px;height:14px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong:after{content:"";position:absolute;top:14px;left:5px;border-bottom:2px solid #ff5d39;transform:rotate(45deg);transform-origin:0 100%;color:#000;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards;width:14px;height:4px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong{color:#ff5d39}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong:before{border-color:#ff5d39;border-bottom:none}@keyframes lds-ripple{0%{top:28px;left:28px;width:0;height:0;opacity:1}100%{top:-1px;left:-1px;width:58px;height:58px;opacity:0}}.mec-book-form-gateway-checkout [id*=mec_do_transaction_stripe_] .mec-form-row:first-child{margin-bottom:20px}.mec-events-meta-group-booking .StripeElement{box-sizing:border-box;height:40px;padding:10px 12px;border:1px solid transparent;border-radius:4px;background-color:#fff;box-shadow:0 1px 3px 0 #e6ebf1;-webkit-transition:box-shadow 150ms ease;transition:box-shadow 150ms ease;margin-bottom:20px;background:#fff}.mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text]{box-sizing:border-box;height:40px;padding:10px 12px;border:0!important;border-radius:4px;background-color:#fff;box-shadow:0 1px 3px 0 #e6ebf1!important;-webkit-transition:box-shadow 150ms ease;transition:box-shadow 150ms ease;margin-bottom:20px;background:#fff!important}.mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text]:focus{outline:0}.mec-events-meta-group-booking .StripeElement--focus{box-shadow:0 1px 3px 0 #cfd7df}.mec-events-meta-group-booking .StripeElement--invalid{border-color:#fa755a}.mec-events-meta-group-booking .StripeElement--webkit-autofill{background-color:#fefde5!important}.mec-booking-tab-content .button,.mec-booking-tab-content .mec-bfixed-field-add-option,.mec-booking-tab-content .mec-reg-field-add-option,.mec-fes-form .mec-form-row .button:not(.wp-color-result),.mec-fes-form input[type=file],ul#mec_bfixed_form_fields li .mec_bfixed_field_remove,ul#mec_reg_form_fields li .mec_reg_field_remove{height:40px;margin-top:1px;text-decoration:none;font-size:14px;line-height:34px!important;margin:0;padding:0 15px 1px!important;text-transform:none;letter-spacing:0;font-weight:600;color:#40d9f1;background:#fff;border-radius:3px;margin-right:8px;border:2px solid #cfeff5;box-shadow:0 2px 6px -3px #cfeff5}.mec-booking-tab-content .button:hover,.mec-booking-tab-content .mec-bfixed-field-add-option:hover,.mec-booking-tab-content .mec-reg-field-add-option:hover,.mec-fes-form .mec-form-row .button:not(.wp-color-result):hover{background:#40d9f1;color:#fff;border-color:#40d9f1;box-shadow:0 2px 6px -3px #40d9f1}.mec-fes-form .mec-form-row input+button.button{vertical-align:top}.mec-fes-form .mec-form-row .quicktags-toolbar input.button.button-small{border-width:1px;padding:0 7px;color:#80c6d2;font-weight:400;margin:1px;transform:none}.mec-fes-form input[type=file]{max-width:166px;text-align:center;height:44px;transition:all .2s ease;border-radius:5px!important;border:2px dashed #b8e9f3}.mec-fes-form input[type=file]:hover{box-shadow:0 2px 16px -3px #cfeff5}.mec-fes-form input[type=file]::-webkit-file-upload-button{visibility:hidden;width:1px;height:38px}.mec-fes-form input[type=file]::-moz-file-upload-button{visibility:hidden;width:1px;height:38px}.mec-fes-form .mec-meta-box-fields>label{padding:0}#mec_bfixed_form_fields li,#mec_reg_form_fields li{list-style:none}ul#mec_bfixed_form_fields,ul#mec_reg_form_fields{padding:0;margin:0}ul#mec_bfixed_form_fields li,ul#mec_reg_form_fields li{background:#f8feff;margin:6px -20px;padding:15px 25px 10px;width:auto;font-size:13px;border-top:1px solid #e8fafd;border-bottom:1px solid #e8fafd;position:relative}ul#mec_bfixed_form_fields li .mec_bfixed_field_remove,ul#mec_reg_form_fields li .mec_reg_field_remove{position:absolute;right:10px;top:10px;margin:0;padding:6px 8px!important;font-size:11px;line-height:12px!important;min-height:10px;height:auto;display:block;cursor:pointer;color:#ea6485;border-color:#ffd2dd;letter-spacing:.4px}ul#mec_bfixed_form_fields li .mec_bfixed_field_remove:hover,ul#mec_reg_form_fields li .mec_reg_field_remove:hover{background:#ea6485;color:#fff;border-color:#ea6485;box-shadow:0 2px 6px -3px #ea6485}#mec_bfixed_form_fields input[type=checkbox],#mec_bfixed_form_fields input[type=radio],#mec_reg_form_fields input[type=checkbox],#mec_reg_form_fields input[type=radio],.mec-form-row input[type=checkbox],.mec-form-row input[type=radio]{background-color:#fff;border:1px solid #cfeff5;box-shadow:0 1px 3px -1px #cfeff5;padding:9px;border-radius:3px;min-width:24px;min-height:24px;display:inline-block!important;vertical-align:middle;float:none;transition:all .18s ease;outline:0;margin:1px 4px 4px 0;text-align:left;cursor:pointer;-webkit-appearance:none;-moz-appearance:none}#mec_bfixed_form_fields input[type=checkbox]:focus,#mec_bfixed_form_fields input[type=radio]:focus,#mec_reg_form_fields input[type=checkbox]:focus,#mec_reg_form_fields input[type=radio]:focus,.mec-form-row input[type=checkbox]:focus,.mec-form-row input[type=radio]:focus{outline:0}#mec_bfixed_form_fields input[type=radio],#mec_reg_form_fields input[type=radio],.mec-form-row input[type=radio]{-webkit-appearance:none;border-radius:20px!important;min-width:20px;min-height:20px;margin:0 0 4px 0;vertical-align:middle}#mec_bfixed_form_fields input[type=checkbox]:hover,#mec_bfixed_form_fields input[type=radio]:hover,#mec_reg_form_fields input[type=checkbox]:hover,#mec_reg_form_fields input[type=radio]:hover,.mec-form-row input[type=checkbox]:hover,.mec-form-row input[type=radio]:hover{border-color:#40d9f1}#mec_bfixed_form_fields input[type=checkbox]:checked,#mec_bfixed_form_fields input[type=radio]:checked,#mec_reg_form_fields input[type=checkbox]:checked,#mec_reg_form_fields input[type=radio]:checked,.mec-fes-form .mec-form-row input[type=checkbox]:checked,.mec-fes-form .mec-form-row input[type=radio]:checked{box-shadow:0 1px 6px -2px #40d9f1;border-color:#40d9f1;background:#40d9f1!important;border-radius:2px;position:relative}.mec-form-row input[type=radio]:checked{box-shadow:0 1px 6px -2px #40d9f1,inset 0 0 0 3px #fff!important}#mec_bfixed_form_fields input[type=checkbox]:checked::before,#mec_reg_form_fields input[type=checkbox]:checked::before,.mec-form-row input[type=checkbox]:checked:before{content:"";font:normal;position:absolute;top:12px;left:5px;margin:0;vertical-align:middle;line-height:1;border-right:2px solid #fff!important;border-bottom:2px solid #fff!important;transform:rotate(45deg);transform-origin:0 100%;color:#fff;transition:all .2s ease;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards}@keyframes checkbox-check{0%{width:0;height:0;border-color:#fff;transform:translate3d(0,0,0) rotate(45deg)}33%{width:6px;height:0;transform:translate3d(0,0,0) rotate(45deg)}100%{width:6px;height:12px;border-color:#fff;transform:translate3d(0,-12px,0) rotate(45deg)}}#wrap #mec-event-data input[type=radio]{position:relative}#wrap #mec-event-data input[type=radio]:empty::before{display:none}#mec_bfixed_form_field_types .button,#mec_reg_form_field_types .button{position:relative;outline:0;border-radius:50px;padding:2px 21px 2px 31px!important;line-height:1;font-size:11px;font-weight:600;color:#40d9f1;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 2px 6px -3px #40d9f1;border:2px solid #cfeff5}#mec_fes_location_remove_image_button,#mec_fes_organizer_remove_image_button,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button,#mec_meta_box_tickets_form [id^=mec_ticket_row] button,#mec_reg_form_field_types .button.red{color:#ea6485;box-shadow:0 2px 6px -3px #ea6485;background:#fff;border-color:#ffd2dd}#mec_fes_location_remove_image_button:hover,#mec_fes_organizer_remove_image_button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button:hover,#mec_meta_box_tickets_form [id^=mec_ticket_row] button:hover,#mec_reg_form_field_types .button.red:hover{background:#ea6485;color:#fff}#mec_bfixed_form_field_types .button:before,#mec_reg_form_field_types .button:before{position:absolute;left:12px;color:#40d9f1;content:"\e095";font-family:simple-line-icons;font-size:13px;display:inline-block}#mec_reg_form_field_types .button.red:before{color:#ea6485}#mec_bfixed_form_field_types .button:hover:before,#mec_reg_form_field_types .button.red:hover:before,#mec_reg_form_field_types .button:hover:before{color:#fff}#mec_fes_location_remove_image_button:hover,#mec_fes_organizer_remove_image_button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button:hover,#mec_meta_box_tickets_form [id^=mec_ticket_row] button:hover,#mec_price_per_dates_container .button:hover,#mec_reg_form_field_types .button.red:hover{color:#fff;border:2px solid #ea6485}#mec_taxes_fees_container_toggle [id^=mec_remove_fee_button],#mec_ticket_variations_list [id^=mec_remove_ticket_variation_button]{color:#ea6485;border-color:#ffd2dd}#mec_taxes_fees_container_toggle [id^=mec_remove_fee_button]:hover,#mec_ticket_variations_list [id^=mec_remove_ticket_variation_button]:hover{color:#fff;border:2px solid #ea6485;background:#ea6485}#mec_fees_list [id^=mec_remove_fee_button],#mec_meta_box_ticket_variations_form .mec-form-row [id^=mec_remove_ticket_variation_button]{margin-left:14px!important}#mec_meta_box_hourly_schedule_days .mec-add-hourly-schedule-button{line-height:10px!important}#mec_meta_box_tickets_form [id^=mec_ticket_row] .mec_add_price_date_button{color:#40d9f1;box-shadow:0 2px 6px -3px #40d9f1;border:2px solid #cfeff5}#mec_meta_box_tickets_form [id^=mec_ticket_row] .mec_add_price_date_button:hover,#mec_reg_form_field_types .button:hover{color:#fff;border:2px solid #40d9f1;background:#40d9f1}.mec-fes-form #mec_bfixed_form_fields span.mec_bfixed_field_sort,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_sort{font-size:0;color:#fff;padding-left:20px}.mec-fes-form #mec_bfixed_form_fields .mec_bfixed_field_option_sort,.mec-fes-form #mec_reg_form_fields .mec_reg_field_options,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_option_sort{font-size:0}.mec-fes-form #mec_bfixed_form_fields span.mec_bfixed_field_option_sort:before,.mec-fes-form #mec_bfixed_form_fields span.mec_bfixed_field_sort:before,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_option_sort:before,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_options:before,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_sort:before{position:absolute;left:px;top:12px;width:80px;height:20px;display:block;cursor:move;font-family:simple-line-icons;content:"\e023";font-size:18px;color:#888}.mec-fes-form #mec_bfixed_form_fields span.mec_bfixed_field_option_sort:before,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_option_sort:before,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_options:before{font-size:13px;left:2px;top:26px;width:14px;height:14px}.mec-fes-form #mec_bfixed_form_fields .mec_bfixed_field_options,.mec-fes-form #mec_reg_form_fields .mec_reg_field_options{margin-top:20px}.mec-fes-form #mec_fes_form #mec_bfixed_form_fields .mec_bfixed_notification_placeholder{font-size:0}.mec-form-row input+span.mec-tooltip,.mec-form-row select+span.mec-tooltip{bottom:10px}.mec-form-row label+span.mec-tooltip{bottom:8px}.mec-form-row textarea+span.mec-tooltip{bottom:auto;vertical-align:top;top:12px}.mec-form-row span+span.mec-tooltip{bottom:0;vertical-align:middle}.mec-form-row .mec-col-8 input[type=text],.mec-form-row .mec-col-8 select,.mec-form-row .mec-col-8 span.mec-archive-skins{vertical-align:top}.mec-form-row input:disabled{opacity:.6;background:#f6f6f6}.mec-form-row p{font-size:12px!important;line-height:18px!important;color:#97b2bb!important}.mec-form-row p.description{font-style:italic}.ui-datepicker.ui-widget{border:1px solid #e8e8e8;box-shadow:0 1px 9px rgba(0,0,0,.12);font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif}table.ui-datepicker-calendar{margin-bottom:0}.ui-datepicker-calendar th{font-weight:700;color:#4a4b4c}.ui-datepicker-calendar td,.ui-datepicker-calendar th,.ui-datepicker-calendar tr{border:none}.ui-datepicker.ui-widget select{font-weight:600;font-size:12px;display:inline-block;border-radius:2px;padding:2px 10px;margin:5px 3px;width:auto;min-height:20px;height:26px;border:1px solid #e3e3e3;box-shadow:inset 0 1px 3px rgba(0,0,0,.04)}.ui-datepicker.ui-widget table{border-spacing:2px;border:none}.ui-datepicker.ui-widget td,.ui-datepicker.ui-widget tr{padding:0;background:0 0!important}.ui-datepicker.ui-widget td a{color:#9a9b9c;font-weight:600;width:30px;height:30px;line-height:30px;display:inline-block;border-radius:33px;padding:0;background:#fff;transition:all .2s ease}.ui-datepicker.ui-widget td a.ui-state-active,.ui-datepicker.ui-widget td a:hover{background:#40d9f1;color:#fff}.ui-datepicker.ui-widget .ui-datepicker-next,.ui-datepicker.ui-widget .ui-datepicker-prev{color:#40d9f1;width:30px;height:30px;line-height:30px;display:inline-block;text-align:center;border-radius:33px;background:#ecfcff;transition:all .2s ease}.ui-datepicker.ui-widget .ui-datepicker-next:hover,.ui-datepicker.ui-widget .ui-datepicker-prev:hover{background:#fff;box-shadow:0 0 7px -3px rgba(0,0,0,.4)}.mec-fes-form .mec-tooltip .dashicons-before:before{color:#40d9f1}.mec-fes-form button[type=submit].mec-fes-sub-button{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;border-radius:3px;background:#40d9f1;color:#fff;height:54px;font-size:17px;font-weight:700;box-shadow:0 2px 8px -4px #40d9f1;display:block;transition:all .28s ease;text-transform:uppercase;margin:20px 0 0;padding:14px 20px;border:0;cursor:pointer;text-align:center;letter-spacing:.1em;line-height:1}.mec-fes-form button[type=submit].mec-fes-sub-button:hover{box-shadow:0 2px 12px -2px #40d9f1}.mec-fes-form button[type=submit].mec-fes-sub-button:focus{margin-bottom:-2px;background:#1dc2dc}.mec-fes-form .mec-title span.mec-dashicons{color:#40d9f1;float:left;margin-right:5px}.mec-fes-form .mec-tooltip .box h5{padding:14px 2px}#mec_fes_form,.mec-fes-form-top-actions{max-width:838px;margin:0 auto}@media only screen and (min-width:961px){.mec-fes-form .mec-fes-form-cntt{width:calc(100% - 300px);float:left;padding-right:20px;max-width:538px;display:block}.mec-fes-form .mec-fes-form-sdbr{width:300px}}.mec-fes-form .quicktags-toolbar,.mec-fes-form div.mce-toolbar-grp{background:#ecfcff;border-bottom:1px solid #cfeff5;box-shadow:0 1px 0 1px #cfeff5}.mec-fes-form .quicktags-toolbar{margin-right:-1px;border-top:1px solid #cfeff5}.mec-fes-form div.mce-statusbar{border-top-color:#cfeff5}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-listbox{border:1px solid #cfeff5;border-radius:3px}.mec-fes-form .mce-tinymce.mce-container.mce-panel{border:1px solid #cfeff5;box-shadow:0 2px 6px -3px #cfeff5;border-radius:2px 0 2px 2px}.mec-fes-form .wp-editor-tools .wp-media-buttons{transform:translateY(-6px);margin-top:-6px}.mec-fes-form .wp-editor-tabs{padding-right:0;margin-right:-2px}.mec-fes-form .wp-editor-tabs .wp-switch-editor{border-radius:3px 3px 0 0;border-color:#cfeff5;background:#fff;color:#96b8bd;border-bottom:1px solid #ecfcff}.mec-fes-form .html-active .switch-html,.mec-fes-form .tmce-active .switch-tmce,.mec-fes-form .wp-editor-tabs .wp-switch-editor:active{background:#ecfcff;color:#40d9f1}.mec-fes-form .wp-editor-container,.mec-fes-form div.mce-edit-area.mce-panel{border:none;box-shadow:none}.mec-fes-form .wp-editor-container textarea.wp-editor-area{max-width:100%}.mec-fes-form .mce-toolbar .mce-listbox button{font-size:12px;line-height:22px;color:#798f96}.mec-fes-form .mce-toolbar .mce-ico{color:#627f88}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-active,.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn:active,.mec-fes-form .qt-dfw.active{background:#fff;border-color:#40d9f1;box-shadow:inset 0 2px 6px -3px rgba(106,231,255,.7)}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-active .mce-ico{color:#40d9f1}body .mce-menu .mce-menu-item.mce-active.mce-menu-item-normal,body .mce-menu .mce-menu-item.mce-selected,body .mce-menu .mce-menu-item:focus,body .mce-menu .mce-menu-item:hover,body.mce-menu .mce-menu-item.mce-active.mce-menu-item-preview{background:#40d9f1;color:#fff}.mec-fes-form .mec-not-in-days-day{display:inline-block;padding:4px 32px 4px 15px;border-radius:33px;border:1px solid #cfeff5;box-shadow:0 1px 3px -1px #cfeff5;background:#fbfeff;color:#40d9f1;vertical-align:top}.mec-fes-form .mec-not-in-days-remove{display:inline-block;padding:0 1px 0 0;margin-left:-30px;vertical-align:sub;background:#ff918a;color:#fff;font-family:cursive;width:21px;height:21px;line-height:17px;text-align:center;border-radius:20px;cursor:pointer}.mec-fes-list ul li .mec-event-status{float:left;margin-right:10px;margin-left:0;font-size:11px;font-weight:400;letter-spacing:.3px;border-radius:3px;padding:4px 8px}.mec-fes-form .post-status.mec-book-confirmed:before,.mec-fes-list ul li .mec-event-status.mec-book-confirmed:before{content:"";margin:0;vertical-align:middle;line-height:1;border-right:2px solid #fff!important;border-bottom:2px solid #fff!important;transform:rotate(45deg);color:#fff;width:6px;height:12px;float:left;margin-right:6px}.mec-fes-list ul li .mec-fes-event-export a:before,.mec-fes-list ul li .mec-fes-event-remove:before,.mec-fes-list ul li .mec-fes-event-view a:before,.mec-fes-list-top-actions a:before{content:"\e054";font-family:simple-line-icons;font-size:13px;vertical-align:middle}.mec-fes-list ul li .mec-fes-event-view a:before{content:"\e087"}.mec-fes-list-top-actions a:before{content:"\e095";font-weight:400;margin-right:6px}.mec-fes-list ul li .mec-fes-event-export a:before{content:"\e083"}.mec-fes-form .post-status{border-radius:20px}.mec-fes-form .post-status.mec-book-confirmed:before{height:20px;width:9px;margin:3px 10px}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker-calendar th{height:auto;padding:0}.ui-datepicker .ui-datepicker-calendar td a,.ui-datepicker-calendar th{font-size:14px;line-height:30px}.mec-fes-form .description{font-size:16px}.mec-fes-form input[type=file]{text-align:left}.mec-fes-export-wrapper{width:640px;background:#f8feff;padding:40px 25px}.mec-fes-export-wrapper .mec-fes-btn-date{font-size:16px;line-height:44px;overflow:hidden}.mec-fes-export-wrapper .date-messgae{font-family:sans-serif;padding:2px 18px}.mec-fes-list ul li .mec-event-export-csv,.mec-fes-list ul li .mec-event-export-excel{font-size:12px;border:1px solid #40d9f1;padding:1px 4px;background:rgba(141,229,243,.18);border-radius:4px;color:#40d9f1;font-family:sans-serif;cursor:pointer;display:inline-block;height:26px;line-height:22px}.mec-export-badge{font-size:11px;color:#40d9f1;width:auto;height:24px;line-height:25px;display:inline-block;padding:0 8px;text-align:center;border-radius:3px;background:#ecfcff;transition:all .2s ease}.mec-fes-list ul li .mec-fes-event-export{font-size:11px;background:#f7f7f7;float:right;margin-left:5px}.mec-fes-list ul li .mec-fes-event-export:hover{cursor:pointer;background:#90f0e0;border-color:#4dc8cc}.mec-fes-export-wrapper ul{padding:0;width:100%;text-align:center}.mec-fes-export-wrapper ul li{list-style:none;display:inline-block;width:30%;padding:10px 15px 10px 32px;border-radius:3px;margin-bottom:15px;border:1px solid #cfeff5;box-shadow:0 2px 6px -4px #cfeff5;background:#fff;line-height:normal;margin-right:10px;position:relative;cursor:pointer;font-size:13px;line-height:1;transition:all .2s ease}.mec-fes-export-wrapper ul li:nth-child(3n+0){margin-right:0}.mec-fes-export-wrapper ul li:hover{box-shadow:0 2px 16px -1px #c6e8ef}.mec-fes-export-wrapper ul li:before{content:"";position:absolute;display:inline-block;background:#fff;width:15px;height:15px;margin:-1px 0 0 5px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32);border-radius:50%;left:9px;top:calc(50% - 7px)}.mec-fes-export-wrapper ul li.fes-export-date-active{color:#40d9f1}.mec-fes-export-wrapper ul li.fes-export-date-active:before{width:15px;height:15px;border:6px solid #40d9f1;background:#fff;box-shadow:0 3px 16px -3px #40d9f1}.mec-fes-btn-export{margin-left:15px;margin-top:12px}.mec-fes-btn-export span{position:relative;border:none;border-radius:3px;color:#fff!important;display:inline-block;font-size:13px;line-height:1;text-transform:none;font-weight:400;text-decoration:none;cursor:pointer;margin-right:4px;line-height:1;letter-spacing:0;padding:15px 22px;background:#39c36e;box-shadow:0 1px 7px -3px #39c36e!important;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;cursor:pointer;margin-left:6px}.mec-fes-btn-export span:hover{background:#222}.mec-event-export-excel:before,span.mec-event-export-csv:before{content:"\e083";font-family:simple-line-icons;font-size:13px;vertical-align:middle;margin-right:7px;margin-top:-1px;display:inline-block}.mec-fes-list .wn-p-t-right{min-width:170px;max-width:200px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#000;color:#fff;font-weight:400;font-size:14px;letter-spacing:.5px;line-height:1.5;position:absolute;z-index:99999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #535a61;visibility:hidden;opacity:0;transition:opacity .23s;padding:5px 10px 6px;border-radius:8px;text-align:center;font-style:normal}.mec-fes-list .mec-fes-event-export:hover .wn-p-t-right,.mec-fes-list .mec-fes-event-remove:hover .wn-p-t-right,.mec-fes-list .mec-fes-event-view:hover .wn-p-t-right{visibility:visible;opacity:1}.mec-fes-list .wn-p-t-right i{position:absolute!important;top:100%;right:50%;margin-top:-6px!important;margin-right:-6px!important;width:12px;height:24px;overflow:hidden;transform:rotate(-90deg)}.mec-fes-list .wn-p-t-right i:after{content:'';position:absolute;width:12px;height:12px;left:0;top:50%;transform:translate(50%,-50%) rotate(-45deg);background-color:#000;box-shadow:0 8px 9px -4px #535a61}.mec-fes-form .select2-container{min-height:38px;box-sizing:border-box;margin-bottom:8px;padding:0 6px;border-radius:2px;border:1px solid #ddd;box-shadow:inset 0 1px 6px rgba(0,0,0,.07);background-color:#fff;color:#32373c;outline:0;transition:50ms border-color ease-in-out;min-width:200px;font-size:14px}.mec-fes-form .select2-selection{border:none;background:0 0;padding-top:2px;width:100%;height:100%}.mec-fes-form .select2-container--default.select2-container--focus .select2-selection{border:none!important;outline:0}.mec-fes-form .select2-container--default .select2-selection--single .select2-selection__arrow{top:5px;right:4px}.select2-results{font-size:14px}.mec-fes-category-children,.mec-fes-category-children .mec-fes-category-children{padding-left:24px}.mec-wrap .mec-timeline-events-container a,.mec-wrap .mec-timeline-events-container div,.mec-wrap .mec-timeline-events-container h4,.mec-wrap .mec-timeline-events-container p,.mec-wrap .mec-timeline-events-container span{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important}.mec-timeline-events-container{margin-left:19px;padding-top:20px;padding-bottom:9px}.mec-events-timeline-wrap{position:relative;display:block;overflow:visible;padding-left:95px}.mec-events-timeline-wrap:before{width:1px;content:'';height:100%;position:absolute;background:#b8f5ff;left:95px}.mec-timeline-month-divider+.mec-timeline-events-container{padding-top:110px}.mec-timeline-right-content{float:right;width:300px}.mec-timeline-left-content{float:left;width:calc(100% - 300px);padding-left:15px;padding-right:15px;position:relative}.mec-timeline-month-divider{position:absolute;display:block;background:#fff;right:calc(100% - 95px);left:0;width:190px;text-align:center;border:1px solid #b8f5ff;border-radius:50px;font-size:15px;padding:12px 27px;color:#40d9f1}.mec-timeline-event-date{position:relative}.mec-timeline-events-container .mec-timeline-event-date:before{content:'';width:11px;height:11px;position:absolute;background:#40d9f1;border-radius:50px;top:8px;left:-24px;z-index:9}.mec-timeline-events-container .mec-timeline-event-date:after{content:'';width:21px;height:21px;position:absolute;background:rgba(64,217,241,.3);border-radius:50px;top:3px;left:-29px}.mec-timeline-event-date{float:left;width:17%;margin-top:27px}.mec-timeline-event-content{float:left;width:82%;background:#fff;box-shadow:0 10px 30px 0 rgba(0,0,0,.1);border-radius:10px;overflow:visible;position:relative}.mec-timeline-main-content{padding:23px 30px}.mec-timeline-main-content h4{margin-bottom:15px}.mec-timeline-main-content h4 a{font-size:25px;font-weight:700;color:#000;line-height:33px;text-decoration:none}.mec-timeline-main-content p{font-size:15px;color:#515151;line-height:24px;margin-bottom:36px}a.mec-timeline-readmore{width:100%;display:block;text-align:center;color:#fff;text-decoration:none;line-height:52px;font-size:17px;font-weight:700;-webkit-transition:all .2s ease;transition:all .2s ease;border-radius:0 0 10px 10px}a.mec-timeline-readmore:hover{background:#222;color:#fff}.mec-timeline-event-time .mec-time-details{display:inline-block;margin-left:7px;font-size:13px;line-height:13px;font-weight:500}.mec-timeline-event-time i{vertical-align:middle}.mec-timeline-event-time{background:rgba(64,217,241,.11);display:inline-block;padding:4px 20px 8px;border-radius:50px}.mec-timeline-event-location address{font-style:normal;margin-bottom:0}.mec-timeline-event-location address span{font-size:13px;font-weight:500;vertical-align:middle;margin-left:6px}.mec-timeline-event-location address i{font-size:17px;vertical-align:middle}.mec-timeline-event-location{background:rgba(64,217,241,.11);display:inline-block;padding:7px 20px 11px;border-radius:20px;line-height:1.24}.mec-timeline-event-details+.mec-timeline-event-details{margin-top:12px}.mec-timeline-event-content .col-md-4{padding:0}.mec-timeline-event-content:after{content:'';display:block;position:absolute;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-timeline-event-content:after{top:30px;border-color:transparent #fff transparent transparent;left:-10px}.mec-timeline-event-image img{border-radius:0 10px 0 0;width:100%}.mec-timeline-event-image a{display:block;line-height:0}a.mec-timeline-readmore i{vertical-align:middle;margin-left:10px;font-size:9px}.mec-wrap .mec-timeline-event-content a.mec-timeline-readmore:hover{background:#444}@media(min-width:1024px){.mec-timeline-event{margin:50px 0}}@media(max-width:1023px){.mec-timeline-event{margin:25px 0}.mec-events-timeline-wrap{padding-left:20px}.mec-events-timeline-wrap:before{left:20px}}@media (max-width:1200px) and (min-width:992px){.mec-timeline-event-content{width:81%}.mec-timeline-event-date{width:18%}}@media (max-width:992px){.mec-timeline-left-content,.mec-timeline-right-content{float:none;width:100%;text-align:center}.mec-timeline-right-content .mec-timeline-event-image{text-align:center}.mec-timeline-right-content .mec-timeline-event-image img{max-width:300px;border-radius:10px;margin-top:35px}}@media (max-width:440px){.mec-timeline-right-content .mec-timeline-event-image img{margin-top:0}}@media (max-width:320px){.mec-timeline-event-content,.mec-timeline-event-date{float:none;width:100%}.mec-timeline-event-date{margin-bottom:8px}.mec-timeline-event-content:after{display:none}.mec-timeline-main-content{padding:23px 0}.mec-timeline-main-content p{font-size:13px}.mec-timeline-main-content h4 a{font-size:23px;line-height:24px}.mec-time-details span{font-size:11px}.mec-timeline-event-location address span{font-size:12px}a.mec-timeline-readmore{line-height:44px;font-size:14px}}.mec-event-tile-view article.mec-tile-item{height:400px;margin:15px 0;border-radius:22px;padding:35px 25px;position:relative;color:#fff;background-size:cover!important;background-position:center!important;box-shadow:0 2px 9px rgba(0,0,0,.25);transition:all .22s ease}.mec-event-tile-view article.mec-tile-item:hover{cursor:pointer;box-shadow:0 4px 19px rgba(0,0,0,.5)}.mec-event-tile-view article.mec-tile-item div{position:relative;z-index:3}.mec-event-tile-view article.mec-tile-item:after,.mec-event-tile-view article.mec-tile-item:before{position:absolute;background:-moz-linear-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);background:-webkit-gradient(left top,right top,color-stop(0,rgba(0,0,0,.35)),color-stop(65%,rgba(0,0,0,.48)),color-stop(100%,rgba(0,0,0,.72)));background:-webkit-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);background:linear-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);content:"";left:0;right:0;bottom:0;top:0;width:100%;height:100%;display:block;border-radius:22px;z-index:1}.mec-event-tile-view article.mec-tile-item:after{background-color:inherit;background-image:none;top:35px;bottom:auto;height:40px;border-radius:0 3px 3px 0;width:97px;z-index:2;box-shadow:2px 1px 7px rgba(0,0,0,.1)}.mec-event-tile-view article.mec-tile-item .event-tile-view-head{padding:8px 3px;font-size:16px;font-weight:700;margin-bottom:50px;text-transform:uppercase}.mec-event-tile-view article.mec-tile-item .event-tile-view-head>div{display:inline}.mec-event-tile-view article.mec-tile-item .mec-event-time{color:#d6d6d6;font-size:15px;font-weight:400;line-height:1;padding-top:4px;position:absolute;right:1px;top:10px}.mec-event-tile-view article.mec-tile-item .mec-event-time i{vertical-align:baseline;font-size:14px;float:left}.mec-event-tile-view article.mec-tile-item i{margin-right:5px}.mec-event-tile-view article.mec-tile-item .mec-event-title{color:#fff;font-weight:700;font-size:23px;padding-top:12px}.mec-event-tile-view article.mec-tile-item .mec-event-title a{color:#fff}.mec-event-tile-view article.mec-tile-item .mec-event-title a:hover{text-decoration:underline}.mec-event-tile-view article.mec-tile-item .mec-event-content{position:absolute;bottom:25px;left:25px;right:25px}.mec-event-tile-view article.mec-label-canceled:before,.mec-event-tile-view article.mec-label-featured:before{height:auto}.mec-skin-tile-month-navigator-container{position:relative;text-align:center;font-size:12px;height:80px;background:#f7f7f7;padding:28px;border-radius:11px;margin-bottom:20px}.mec-skin-tile-month-navigator-container:after,.mec-skin-tile-month-navigator-container:before{content:'';display:block;position:absolute;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-skin-tile-month-navigator-container:after{bottom:-20px;border-color:#f7f7f7 transparent transparent transparent}.mec-skin-tile-month-navigator-container:before{bottom:-21px;border-color:#fff transparent transparent transparent}@media only screen and (max-width:480px){.mec-skin-tile-month-navigator-container{height:110px;padding-top:68px}}.mec-skin-tile-month-navigator-container h2{font-size:23px;font-weight:700}.mec-skin-tile-month-navigator-container .mec-next-month,.mec-skin-tile-month-navigator-container .mec-previous-month{position:absolute;top:28px;left:20px;cursor:pointer;padding:3px 12px;line-height:23px;background:#fff;border-radius:32px;box-shadow:0 1px 3px rgba(0,0,0,.02);transition:all .22s ease}.mec-skin-tile-month-navigator-container .mec-next-month{left:auto;right:20px}.mec-skin-tile-month-navigator-container .mec-next-month:hover,.mec-skin-tile-month-navigator-container .mec-previous-month:hover{box-shadow:0 2px 5px rgba(0,0,0,.1);color:#000}.mec-wrap .mec-event-tile-view article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view article.mec-label-featured:before{position:absolute;bottom:auto;text-align:center;right:auto;font-size:10px}.mec-event-tile-view article.mec-tile-item .mec-tile-overlay{position:absolute;background:-moz-linear-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);background:-webkit-gradient(left top,right top,color-stop(0,rgba(0,0,0,.35)),color-stop(65%,rgba(0,0,0,.48)),color-stop(100%,rgba(0,0,0,.72)));background:-webkit-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);background:linear-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);content:"";left:0;right:0;bottom:0;top:0;width:100%;height:100%;display:block;border-radius:22px;z-index:1}.mec-wrap .mec-event-tile-view .col-md-3 article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view .col-md-3 article.mec-label-featured:before{top:12px;left:103px;z-index:9}.mec-wrap .mec-event-tile-view .col-md-4 article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view .col-md-4 article.mec-label-featured:before{top:18px;left:125px}.mec-wrap .mec-event-tile-view .col-md-6 article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view .col-md-6 article.mec-label-featured:before{top:20px;left:200px}@media (max-width:960px){.mec-wrap .mec-event-tile-view .col-sm-3{width:50%}}@media (max-width:480px){.mec-wrap .mec-event-tile-view .col-sm-3{width:100%}}.mec-event-tile-view article.mec-tile-item.tile-multipleday-event:after{width:165px}.mec-event-tile-view .col-md-6.col-sm-6 article.mec-label-canceled:before{top:100px;left:140px}.mec-event-tile-view .col-md-4.col-sm-4 article.mec-label-canceled:before{top:20px;left:140px}@media (min-width:761px) and (max-width:1200px){.mec-event-tile-view .col-md-3.col-sm-3{width:50%}.mec-event-tile-view .col-md-6.col-sm-6 article.mec-label-canceled:before{top:80px;left:90px}.mec-event-tile-view .col-md-4.col-sm-4 article.mec-label-canceled:before{top:40px;left:70px}.mec-event-tile-view .col-md-3.col-sm-3 article.mec-label-canceled:before{top:90px;left:110px}}@media (min-width:761px) and (max-width:1024px){.mec-event-tile-view .col-md-4.col-sm-4{width:50%}.mec-event-tile-view .col-md-4.col-sm-4:nth-child(1n+3){width:100%}}@media (max-width:760px){.mec-event-tile-view .col-md-3.col-sm-3{width:100%}.mec-event-tile-view .col-md-4.col-sm-4{width:100%}}@media (max-width:480px){.mec-event-tile-view .col-md-6.col-sm-6 article.mec-label-canceled:before{top:100px;left:80px}}.mec-ongoing-normal-label{background-color:#40d9f1}.mec-wrap .mec-cancellation-reason span,.mec-wrap .mec-labels-normal .mec-label-normal{position:relative;top:-3px;font-size:11px;font-weight:300;margin-left:10px;line-height:1.9;letter-spacing:1px;color:#fff;padding:2px 7px;border-radius:2px;white-space:nowrap}.mec-agenda-event-title .mec-labels-normal .mec-label-normal,.mec-timetable-event .mec-labels-normal .mec-label-normal,.tooltipster-box .mec-labels-normal .mec-label-normal{font-size:9px;letter-spacing:.5px;text-transform:uppercase;padding:2px 7px;color:#fff;position:relative;margin-left:5px;border-radius:2px;top:0}.mec-av-spot .mec-labels-normal .mec-label-normal,.mec-event-countdown-part1 .mec-labels-normal .mec-label-normal,.mec-event-countdown-part2 .mec-labels-normal .mec-label-normal,.mec-event-cover-modern .mec-labels-normal .mec-label-normal,.mec-masonry-content .mec-labels-normal .mec-label-normal,.mec-owl-carousel:not(.mec-slider-t1) .mec-labels-normal .mec-label-normal,.mec-tile-item .mec-labels-normal .mec-label-normal,.mec-timeline-event .mec-labels-normal .mec-label-normal,.tooltipster-box .mec-labels-normal .mec-label-normal{margin:0 5px 0 0}.mec-event-countdown-style3 .mec-labels-normal .mec-label-normal{margin:0 0 0 5px}.mec-event-footer-carousel-type3 .mec-labels-normal .mec-label-normal{display:inline}.mec-event-carousel-type4 .mec-fc-style{display:none}.mec-event-carousel-type4 .mec-labels-normal{top:-20px;position:relative}.mec-wrap .mec-cancellation-reason{display:inline-block}.mec-wrap .mec-cancellation-reason span{line-height:1.3;background:#eb3450;text-transform:none;display:inline-block;white-space:nowrap}.mec-wrap .mec-event-list-accordion .mec-cancellation-reason span,.mec-wrap .mec-event-list-accordion .mec-labels-normal .mec-label-normal{top:7px}.mec-agenda-event-title .mec-cancellation-reason span,.mec-timetable-event .mec-cancellation-reason span,.tooltipster-box .mec-cancellation-reason span{font-size:9px;letter-spacing:.5px;text-transform:uppercase;padding:2px 7px;color:#fff;position:relative;margin-left:5px;border-radius:2px;top:0}.mec-wrap .mec-event-container-novel .mec-cancellation-reason span,.mec-wrap .mec-event-container-novel .mec-labels-normal .mec-label-normal{white-space:inherit;margin-left:0}.mec-wrap .mec-event-container-simple .mec-cancellation-reason span,.mec-wrap .mec-event-container-simple .mec-labels-normal .mec-label-normal{top:-12px;white-space:inherit;margin-left:0}.mec-av-spot .mec-cancellation-reason span,.mec-event-countdown-part1 .mec-cancellation-reason span,.mec-event-countdown-part2 .mec-cancellation-reason span,.mec-event-cover-modern .mec-cancellation-reason span,.mec-masonry-content .mec-cancellation-reason span,.mec-owl-carousel:not(.mec-slider-t1) .mec-cancellation-reason span,.mec-tile-item .mec-cancellation-reason span,.mec-timeline-event .mec-cancellation-reason span,.tooltipster-box .mec-cancellation-reason span{margin:0 5px 0 0}.mec-owl-carousel .mec-event-footer-carousel-type3 span.mec-event-title-soldout,.mec-owl-carousel .mec-event-footer-carousel-type3 span.mec-few-tickets{display:inline}.mec-owl-carousel .mec-event-footer-carousel-type3 span.mec-labels-normal,.mec-owl-carousel .mec-event-footer-carousel-type3 span.soldout{margin-top:0;color:#fff;display:unset}.mec-wrap .mec-single-event .mec-cancellation-reason span{margin:0;padding:6px 12px;font-size:14px;font-weight:700;white-space:normal;word-break:break-word}.featherlight-content .mec-cancellation-reason{display:block;width:100%;text-align:center;margin-top:20px;margin-bottom:-10px}.mec-event-data-fields{margin-bottom:30px}.mec-event-data-fields ul.mec-event-data-field-items{overflow:hidden;padding-top:10px;padding-left:0}.mec-event-data-fields .mec-event-data-field-item{list-style:none;margin-bottom:10px;border-bottom:1px dashed #e3e3e3;padding-bottom:7px;width:50%;float:left}.mec-event-data-fields .mec-event-data-field-item .mec-event-data-field-value{margin:0 0 20px 0;color:#616161;font-size:14px;line-height:1.8}.mec-event-data-fields .mec-event-data-field-item:last-child{border:none;width:100%}.mec-event-data-fields .mec-event-data-field-item .mec-event-data-field-name{text-transform:none;font-size:13px;font-weight:600;padding-bottom:5px;color:#313131;width:100%;padding-bottom:10px;position:relative;letter-spacing:-.2px}@media (max-width:768px){.mec-event-data-fields .mec-event-data-field-item{width:100%}}.mec-shortcode-organizers{overflow:hidden;margin-top:7px;font-weight:400;line-height:19px;font-size:12px}.mec-event-list-minimal .mec-shortcode-organizers{margin-top:6px}.mec-shortcode-organizers i{color:#777}.mec-shortcode-organizers .mec-organizers{display:inline-block;list-style:none;padding:0 0 0 3px;vertical-align:top}.mec-organizer-item a{color:#777}.mec-event-list-standard .mec-shortcode-organizers .mec-sl-user:before{position:absolute;left:6px;font-size:15px;line-height:26px}.mec-organizer-item a{font:14px/25px sans-serif;font-family:Montserrat,Helvetica,Arial,sans-serif;font-weight:400;color:#626262}.mec-shortcode-organizers{position:relative;padding-left:28px;margin-bottom:10px}.mec-skin-grid-container .mec-organizers,.mec-skin-grid-container .mec-shortcode-organizers{padding:0;margin:0}.mec-skin-grid-container .mec-shortcode-organizers i{display:none}.mec-skin-grid-container .mec-event-grid-clean .mec-shortcode-organizers a,.mec-skin-grid-container .mec-event-grid-clean .mec-shortcode-organizers a:hover,.mec-skin-grid-container .mec-event-grid-colorful .mec-shortcode-organizers a,.mec-skin-grid-container .mec-event-grid-colorful .mec-shortcode-organizers a:hover{color:#fff;font-size:12px}.mec-skin-grid-container .mec-event-grid-clean .mec-shortcode-organizers a:hover,.mec-skin-grid-container .mec-event-grid-colorful .mec-shortcode-organizers a:hover{text-decoration:underline}.mec-skin-grid-container .mec-event-grid-minimal .mec-shortcode-organizers{margin-top:12px}.mec-skin-grid-container .mec-event-grid-novel .mec-shortcode-organizers{position:relative}.mec-skin-grid-container .mec-event-grid-novel .mec-shortcode-organizers i{display:block;color:rgba(255,255,255,.4)}.mec-skin-grid-container .mec-event-grid-novel .mec-shortcode-organizers i: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-skin-grid-container .mec-event-grid-novel .mec-shortcode-organizers a{padding-left:35px;font-size:15px;line-height:30px;color:rgba(255,255,255,.4)}.mec-skin-grid-container .mec-event-grid-novel .mec-shortcode-organizers a:hover{color:#fff}.mec-calendar-daily .mec-shortcode-organizers,.mec-calendar-daily .mec-shortcode-organizers .mec-organizers{padding:0}.mec-calendar-daily .mec-shortcode-organizers i{display:none}.mec-calendar-daily .mec-organizer-item a{font-size:13px;line-height:1.3;color:#9a9a9a;margin-bottom:0}.mec-events-masonry-wrap .mec-shortcode-organizers i{display:none}.mec-events-masonry-wrap .mec-shortcode-organizers,.mec-events-masonry-wrap .mec-shortcode-organizers .mec-organizers{padding:0}.mec-events-timeline-wrap .mec-shortcode-organizers{width:fit-content;display:inline-block;padding:4px 20px 8px;border-radius:50px}.mec-events-timeline-wrap .mec-organizer-item,.mec-events-timeline-wrap .mec-shortcode-organizers .mec-organizers{margin:0;display:inline-block;padding-right:7px}.mec-events-timeline-wrap .mec-shortcode-organizers i{line-height:24px;margin-right:7px}.mec-events-timeline-wrap .mec-organizer-item:after{content:','}.mec-events-timeline-wrap .mec-organizer-item:last-child:after{content:'';padding:0}.mec-events-timeline-wrap .mec-organizer-item a,.mec-events-timeline-wrap .mec-organizer-item:after{font-weight:500}.mec-events-timeline-wrap .mec-organizer-item a:hover{text-decoration:underline}.mec-event-tile-view .mec-shortcode-organizers,.mec-event-tile-view .mec-shortcode-organizers .mec-organizers{padding:0}.mec-event-tile-view .mec-shortcode-organizers i{line-height:24px}.mec-event-tile-view .mec-shortcode-organizers .mec-organizers a,.mec-event-tile-view .mec-shortcode-organizers i{color:#fff}.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-modal-wrap,.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-modal-wrap::-webkit-scrollbar{width:12px}.mec-dark-mode .mec-modal-wrap::-webkit-scrollbar-track{background:#000}.mec-dark-mode .mec-modal-wrap::-webkit-scrollbar-thumb{background-color:#333;border-radius:20px;border:2px solid #000}.mec-dark-mode .mec-modal-preloader,.mec-dark-mode .mec-month-navigator-loading{background-color:#1f1f1f}.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:#313131}.mec-dark-mode .event-carousel-type3-head .mec-event-footer-carousel-type3,.mec-dark-mode .mec-agenda-events-wrap,.mec-dark-mode .mec-av-spot .mec-av-spot-content,.mec-dark-mode .mec-av-spot .mec-av-spot-head,.mec-dark-mode .mec-av-spot-wrap .mec-event-grid-modern .event-grid-modern-head,.mec-dark-mode .mec-calendar .mec-calendar-side .mec-next-month:hover,.mec-dark-mode .mec-calendar .mec-calendar-side .mec-previous-month:hover,.mec-dark-mode .mec-calendar .mec-calendar-topsec,.mec-dark-mode .mec-calendar .mec-event-article:hover,.mec-dark-mode .mec-calendar dt,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-has-event:hover,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table a:hover,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-top,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-next-month:hover,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-previous-month:hover,.mec-dark-mode .mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:hover,.mec-dark-mode .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec,.mec-dark-mode .mec-event-cover-classic,.mec-dark-mode .mec-event-footer .mec-booking-button:hover,.mec-dark-mode .mec-event-grid-clean .mec-event-article,.mec-dark-mode .mec-event-grid-clean .mec-event-content,.mec-dark-mode .mec-event-grid-modern .mec-event-article,.mec-dark-mode .mec-event-grid-modern .mec-event-content,.mec-dark-mode .mec-event-list-minimal a.mec-detail-button:hover,.mec-dark-mode .mec-event-list-modern .mec-btn-wrapper .mec-booking-button:hover,.mec-dark-mode .mec-event-sharing-wrap .mec-event-sharing,.mec-dark-mode .mec-events-toggle .mec-toggle-item-inner:hover,.mec-dark-mode .mec-hourly-schedule-speaker-contact-information a:hover i,.mec-dark-mode .mec-masonry .mec-masonry-content,.mec-dark-mode .mec-masonry .mec-masonry-head,.mec-dark-mode .mec-slider-t1 .mec-slider-t1-content,.mec-dark-mode .mec-slider-t5 .mec-slider-t5-content,.mec-dark-mode .mec-slider-t5-wrap,.mec-dark-mode .mec-slider-t5-wrap .mec-event-grid-modern .event-grid-modern-head,.mec-dark-mode .mec-timeline-event-content,.mec-dark-mode .mec-timeline-month-divider,.mec-dark-mode .mec-timetable-events-list .mec-timetable-event:hover,.mec-dark-mode .mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3,.mec-dark-mode .mec-wrap .mec-totalcal-box,.mec-dark-mode .mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-calendar-sec,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year,.mec-dark-mode .tooltipster-sidetip .tooltipster-content{background:#191919}.mec-dark-mode .event-carousel-type3-head .mec-event-footer-carousel-type3,.mec-dark-mode .event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button,.mec-dark-mode .mec-av-spot,.mec-dark-mode .mec-av-spot-wrap .mec-event-grid-modern .event-grid-modern-head,.mec-dark-mode .mec-box-calendar.mec-calendar dl dt:last-child,.mec-dark-mode .mec-calendar,.mec-dark-mode .mec-calendar .mec-event-article,.mec-dark-mode .mec-calendar.mec-box-calendar .mec-table-nullday:last-child,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-next-month:hover,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-previous-month:hover,.mec-dark-mode .mec-event-cover-classic,.mec-dark-mode .mec-event-cover-clean,.mec-dark-mode .mec-event-grid-classic .mec-event-article,.mec-dark-mode .mec-event-grid-clean .mec-event-article,.mec-dark-mode .mec-event-grid-modern .mec-event-article,.mec-dark-mode .mec-event-sharing-wrap .mec-event-sharing,.mec-dark-mode .mec-event-sharing-wrap .mec-event-sharing:after,.mec-dark-mode .mec-event-sharing-wrap>li:first-of-type,.mec-dark-mode .mec-events-agenda,.mec-dark-mode .mec-fes-form .mec-meta-box-fields,.mec-dark-mode .mec-masonry,.mec-dark-mode .mec-slider-t5-wrap .mec-event-grid-modern .event-grid-modern-head,.mec-dark-mode .mec-timeline-month-divider,.mec-dark-mode .mec-wrap .mec-totalcal-box,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{border-color:#353535}.mec-dark-mode .mec-event-sharing-wrap .mec-event-sharing:after{border-color:#191919 transparent transparent transparent}.mec-dark-mode .mec-event-sharing-wrap .mec-event-sharing:before{border-color:#353535 transparent transparent transparent}.mec-dark-mode .mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text],.mec-dark-mode .mec-events-meta-group-booking .StripeElement,.mec-dark-mode .mec-slider-t2 .mec-event-article{background:#1f1f1f!important;border:1px solid #353535!important;box-shadow:none!important;color:#d2d2d2!important}.mec-dark-mode .CardField CardField--ltr .__PrivateStripeElement .InputContainer input{color:#d2d2d2!important}.mec-dark-mode .mec-events-toggle .mec-toggle-item{border:1px solid #e4e4e4;box-shadow:0 10px 15px #282828}.mec-dark-mode .mec-agenda-events-wrap .mec-event-grid-colorful .mec-event-content{background-color:transparent}.mec-dark-mode .mec-calendar .mec-calendar-side{box-shadow:0 1px 5px 6px rgba(255,255,255,.005) inset}.mec-dark-mode .tooltipster-sidetip.tooltipster-shadow .tooltipster-box{border:1px solid #282828!important}.mec-dark-mode .mec-timeline-event-content:after{border-color:transparent #191919 transparent transparent}.mec-dark-mode .mec-fes-form .mec-meta-box-fields{box-shadow:0 2px 6px -3px #353535}.mec-dark-mode .mec-fes-form .mec-meta-box-fields h4{color:#d2d2d2;background:#000}.mec-dark-mode .mec-fes-form input[type=email],.mec-dark-mode .mec-fes-form input[type=number],.mec-dark-mode .mec-fes-form input[type=password],.mec-dark-mode .mec-fes-form input[type=tel],.mec-dark-mode .mec-fes-form input[type=text],.mec-dark-mode .mec-fes-form select,.mec-dark-mode .mec-fes-form textarea{box-shadow:0 2px 5px rgba(0,0,0,.38) inset}.mec-dark-mode .mec-fes-form input{background:#353535!important;color:#d2d2d2!important}.mec-dark-mode .mec-booking-tab-content .button:hover,.mec-dark-mode .mec-booking-tab-content .mec-reg-field-add-option:hover,.mec-dark-mode .mec-fes-form .mec-form-row .button:not(.wp-color-result):hover{background:#353535;color:#d2d2d2;border-color:#353535;box-shadow:0 2px 6px -3px #353535}.mec-dark-mode .mec-booking-tab-content .button,.mec-dark-mode .mec-booking-tab-content .mec-reg-field-add-option,.mec-dark-mode .mec-fes-form .mec-form-row .button:not(.wp-color-result),.mec-dark-mode .mec-fes-form input[type=file],.mec-dark-mode ul#mec_reg_form_fields li .mec_reg_field_remove{color:#d2d2d2;background:#282828;border:2px solid #353535;box-shadow:0 2px 6px -3px #353535}.mec-dark-mode #mec_reg_form_fields input[type=checkbox],.mec-dark-mode #mec_reg_form_fields input[type=radio],.mec-dark-mode .mec-form-row input[type=checkbox],.mec-dark-mode .mec-form-row input[type=radio]{background-color:#000;border:1px solid #353535;box-shadow:0 1px 3px -1px #353535}.mec-dark-mode .mec-fes-form .select2-container{border:1px solid #353535;background-color:#282828;color:#d2d2d2}.mec-dark-mode ul#mec_bfixed_form_fields li,.mec-dark-mode ul#mec_reg_form_fields li{background:#000;border-color:#000}.mec-dark-mode #mec_meta_box_tickets_form [id^=mec_ticket_row] .mec_add_price_date_button{background:#000;border-color:#2d2d2d;box-shadow:0 2px 6px -3px #2d2d2d}.mec-dark-mode #mec_reg_form_field_types .button.red{background:#2d2d2d;border-color:#2d2d2d;box-shadow:0 2px 6px -3px #2d2d2d}.mec-dark-mode #mec_bfixed_form_field_types .button,.mec-dark-mode #mec_reg_form_field_types .button{color:#d2d2d2;box-shadow:0 2px 6px -3px #2d2d2d;border-color:#2d2d2d}.mec-dark-mode #mec_meta_box_tickets_form [id^=mec_ticket_row] .mec_add_price_date_button:hover,.mec-dark-mode #mec_reg_form_field_types .button:hover{background:#000}.mec-dark-mode ul#mec_bfixed_form_fields li .mec_bfixed_field_remove,.mec-dark-mode ul#mec_reg_form_fields li .mec_reg_field_remove{background:#282828}.mec-dark-mode #mec_taxes_fees_container_toggle [id^=mec_remove_fee_button]:hover,.mec-dark-mode #mec_ticket_variations_list [id^=mec_remove_ticket_variation_button]:hover,.mec-dark-mode ul#mec_bfixed_form_fields li .mec_bfixed_field_remove:hover,.mec-dark-mode ul#mec_reg_form_fields li .mec_reg_field_remove:hover{color:#fff;border:2px solid #ea6485;background:#ea6485}.mec-events-meta-group-booking-shortcode{background-color:#e6f7ff;padding:40px;position:relative}.mec-events-meta-group-booking-shortcode h4{margin-bottom:20px}.mec-booking-shortcode .mec-event-tickets-list.mec-sell-all-occurrences{width:100%}.mec-booking-shortcode .mec-book-reg-field-mec_email{width:48%;display:inline-block;margin-right:30px}.mec-booking-shortcode .mec-book-reg-field-name{width:48%;display:inline-block}.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-expiration-date-month{width:48%;display:inline-block;vertical-align:top;margin-right:30px}.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-cvv2{width:48%;display:inline-block}.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-expiration-date-month .nice-select{width:48%;display:inline-block}.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-expiration-date-month label{width:100%}.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-expiration-date-month .nice-select:first-of-type{margin-right:10px}.mec-booking-shortcode .mec-form-row.mec-name-stripe,.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-card-type,.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-first-name{width:48%;vertical-align:top;display:inline-block;margin-right:30px}.mec-booking-shortcode .mec-form-row.mec-email-stripe,.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-cc-number,.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-last-name{width:48%;display:inline-block}.mec-events-meta-group-booking .mec-booking-shortcode .StripeElement{height:56px;padding:19px 12px 0;max-width:420px}.mec-booking-shortcode .nice-select,.mec-booking-shortcode input{float:none;border:1px solid #c7ebfb!important;border-radius:3px;background-color:#fff;height:41px;line-height:39px;padding-left:15px;padding-right:15px;margin:0;margin-bottom:24px!important;color:#00acf8;font-size:14px;font-weight:400;box-shadow:none!important;min-height:unset;min-width:unset;padding-top:0;padding-bottom:0}.mec-booking-shortcode .mec-gateway-message.mec-success{font-size:14px}.mec-booking-shortcode .mec-form-row.mec-name-stripe{margin-bottom:0!important}.mec-booking-shortcode .mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text],.mec-events-meta-group-booking .mec-booking-shortcode .StripeElement{border:1px solid #c7ebfb!important;border-radius:3px;box-shadow:none!important}.mec-booking-shortcode .nice-select ul{width:100%}.mec-booking-shortcode .mec-event-ticket-name,.mec-booking-shortcode .mec-event-ticket-price,.mec-booking-shortcode .mec-ticket-variation-name,.mec-booking-shortcode .mec-ticket-variation-price,.mec-booking-shortcode label{font-size:14px;line-height:19px;font-weight:400;color:#00acf8;padding-right:5px;margin:0 0 4px!important}.mec-booking-shortcode span.mec-event-ticket-available{margin-top:-22px!important;margin-bottom:28px!important;display:block;font-size:11px;letter-spacing:.5px;font-weight:300;color:#80abbf}.mec-booking-shortcode button{background-color:#00acf8;border-radius:2px;box-shadow:0 2px 2px rgba(0,172,248,.27);font-weight:500;font-size:11px;letter-spacing:.5px;margin:0;min-width:116px;padding:16px 15px 14px;float:none;position:relative;border:none;color:#fff;display:inline-block}.mec-booking-shortcode .mec-booking-form-container ul li{list-style:none}.mec-booking-shortcode .mec-booking-form-container ul{padding:0}.mec-events-meta-group-booking-shortcode .mec-error{background-color:#ff017e;color:#fff;margin:24px 0 24px;padding:10px 15px;border-radius:3px}.mec-events-meta-group-booking-shortcode .info-msg{margin:24px 0 24px}.mec-booking-shortcode .mec-book-ticket-variation h5{margin:0 0 4px}.mec-booking-shortcode .mec-book-available-tickets-details-header{border-bottom:2px solid #00acf8}.mec-booking-shortcode .mec-book-available-tickets-details-header,.mec-booking-shortcode .mec-book-available-tickets-details-item,.mec-booking-shortcode .mec-book-price-detail{display:-webkit-box;display:flex;flex-wrap:wrap}.mec-booking-shortcode .mec-book-available-tickets-details-header span,.mec-booking-shortcode .mec-book-available-tickets-details-item span,.mec-booking-shortcode .mec-book-price-detail span{-webkit-box-flex:1.97;flex:1.97 1.97 0;min-height:1px;font-size:14px;line-height:22px;color:#616264;font-weight:500;padding-bottom:20px;padding-top:20px}.mec-booking-shortcode .mec-book-available-tickets-details span:nth-of-type(2),.mec-booking-shortcode .mec-book-available-tickets-details-item span:nth-of-type(2),.mec-booking-shortcode .mec-book-price-detail span:nth-of-type(2){-webkit-box-flex:1;flex:1 1 0}.mec-booking-shortcode .mec-book-available-tickets-details span:last-child,.mec-booking-shortcode .mec-book-available-tickets-details-item span:last-child,.mec-booking-shortcode .mec-book-price-detail span:last-child{-webkit-box-flex:1.085;flex:1.085 1.085 0}.mec-booking-shortcode .mec-book-available-tickets-details-header span{padding-bottom:11px}.mec-booking-shortcode .mec-book-available-tickets-details-item span{font-weight:400;font-size:12px}.mec-booking-shortcode span.mec-book-price-detail-amount,.mec-booking-shortcode span.mec-book-price-detail-description{font-size:14px;line-height:22px;font-weight:500;padding:6px 0;color:#000}.mec-booking-shortcode span.mec-book-price-detail-amount{color:#777}.mec-booking-shortcode .mec-book-form-gateways label{cursor:pointer}.mec-booking-shortcode .mec-book-form-gateways label{cursor:pointer}.mec-booking-shortcode span.mec-book-price-detail-description{padding:6px 13px 6px 0;font-size:14px;font-weight:400;color:#00acf8}.mec-booking-shortcode ul.mec-book-price-details li{border-right:1px solid #c7ebfb!important}.mec-booking-shortcode span.mec-book-price-total{font-size:22px;line-height:22px;font-weight:700;color:#2bbc10;margin-top:20px;margin-bottom:35px;display:inline-block}.mec-booking-shortcode ul.mec-book-price-details{border:1px solid #c7ebfb!important;border-radius:3px;box-shadow:none!important}.mec-booking-shortcode span.mec-book-price-total-description{font-size:18px;line-height:22px;font-weight:700;color:#000}.mec-booking-shortcode span.mec-book-price-total-amount{font-size:22px;line-height:22px;font-weight:700;color:#2bbc10}.mec-booking-shortcode .mec-book-form-price{clear:both;position:relative}.mec-booking-shortcode .mec-book-form-gateway-label input[type=radio]:after{content:"";display:inline-block;width:7px;height:7px;background-color:#fff;border-radius:50%;cursor:pointer;position:absolute;top:4px;left:3px}.mec-booking-shortcode .mec-book-form-gateway-label input[type=radio]:before{box-shadow:none;border:2px solid #a8e4ff;width:17px;height:17px;position:absolute;top:-9px;left:-2px;margin:0;content:"";display:inline-block;background:#fff;border-radius:18px;cursor:pointer;position:relative}.mec-booking-shortcode .mec-book-form-gateway-label{-webkit-box-flex:0;flex:0 0 50%;margin-bottom:14px;padding-right:15px}.mec-booking-shortcode .mec-book-form-gateways{display:-webkit-box;display:flex;flex-wrap:wrap;margin-bottom:20px}.mec-booking-shortcode .mec-book-form-gateway-checkout{-webkit-box-flex:0;flex:0 0 100%;max-width:100%}.mec-booking-shortcode input::-webkit-input-placeholder,.mec-booking-shortcode textarea::-webkit-input-placeholder{color:#afe6ff}.mec-booking-shortcode input::-moz-placeholder,.mec-booking-shortcode textarea::-moz-placeholder{color:#afe6ff}.mec-booking-shortcode input:-ms-input-placeholder,.mec-booking-shortcode textarea:-ms-input-placeholder{color:#afe6ff}.mec-booking-shortcode input:-moz-placeholder,.mec-booking-shortcode textarea:-moz-placeholder{color:#afe6ff}.mec-booking-shortcode input[type=radio]:checked:before{border:2px solid #a8e4ff;box-shadow:none}.mec-booking-shortcode input[type=radio]:checked:after{background-color:#00acf8}.mec-booking-shortcode .mec-book-form-gateway-label label input{position:relative;cursor:pointer;margin:0!important;height:auto;margin-right:4px!important}.mec-booking-shortcode .mec-click-pay button[type=submit]{position:absolute;left:190px;bottom:40px}.mec-booking-shortcode button#mec-book-form-btn-step-2{margin-left:30px}.mec-booking-shortcode .mec-ticket-name{display:inline-block;background-color:#fff;border-radius:3px;font-size:12px;line-height:12px;font-weight:400;color:#00acf8;padding:8px 13px;letter-spacing:0}.mec-booking-shortcode .mec_book_first_for_all{display:none}.mec-booking-shortcode li.mec-first-for-all-wrapper{margin-bottom:20px}.mec-booking-shortcode label.wn-checkbox-label:before{display:inline-block;-moz-transform-origin:left top;-ms-transform-origin:left top;-o-transform-origin:left top;-webkit-transform-origin:left top;transform-origin:left top;content:'';-webkit-transition:opacity ease .5;-moz-transition:opacity ease .5;transition:opacity ease .5;position:absolute;background-color:#00acf8;width:2px;-webkit-transform:rotate(-138deg);transform:rotate(-138deg)}.mec-booking-shortcode label.wn-checkbox-label{position:relative;display:inline-block;-moz-transition:border-color ease .2s;-o-transition:border-color ease .2s;-webkit-transition:border-color ease .2s;transition:border-color ease .2s;cursor:pointer;vertical-align:middle;font-size:14px;line-height:19px;font-weight:400;color:#00acf8;margin:0 0 4px!important;padding:0;background-color:#fff;border:2px solid #a8e4ff;width:17px;height:17px;border-radius:3px;margin-right:9px!important;box-shadow:none}.mec-booking-shortcode label.wn-checkbox-label:after{-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);transform:rotate(-45deg);-moz-animation:dothabottomcheck 80ms ease 0s forwards;-o-animation:dothabottomcheck 80ms ease 0s forwards;-webkit-animation:dothabottomcheck 80ms ease 0s forwards;animation:dothabottomcheck 80ms ease 0s forwards;content:'';display:inline-block;-moz-transform-origin:left top;-ms-transform-origin:left top;-o-transform-origin:left top;-webkit-transform-origin:left top;transform-origin:left top;content:'';-webkit-transition:opacity ease .5;-moz-transition:opacity ease .5;transition:opacity ease .5;position:absolute;background-color:#00acf8;width:2px}.mec-booking-shortcode input[type=checkbox]:checked+.wn-checkbox-label::after{height:5px;left:2px;top:7px;-moz-animation:dothatopcheck .16s ease 0s forwards;-o-animation:dothatopcheck .16s ease 0s forwards;-webkit-animation:dothatopcheck .16s ease 0s forwards;animation:dothatopcheck .16s ease 0s forwards}.mec-booking-shortcode input[type=checkbox]:checked+.wn-checkbox-label::before{height:6px;left:7px;top:9px;-moz-animation:dothatopcheck .16s ease 0s forwards;-o-animation:dothatopcheck .16s ease 0s forwards;-webkit-animation:dothatopcheck .16s ease 0s forwards;animation:dothatopcheck .16s ease 0s forwards}.mec-booking-shortcode button[type=button],.mec-booking-shortcode button[type=submit]{font-weight:500;font-size:13px;letter-spacing:.5px;line-height:16px;outline:0}.mec-booking-shortcode button.mec-book-form-back-button{background-color:#afe6ff;box-shadow:0 2px 2px rgba(175,230,255,.27)}.mec-booking-shortcode button[type=button]:hover,.mec-booking-shortcode button[type=submit]:hover{background-color:#000;text-decoration:none;box-shadow:0 4px 10px rgba(1,2,4,.32)}.mec-booking-shortcode a.button:after,.mec-booking-shortcode button[type=submit]:after{display:none;width:13px;height:13px;border-top:0;border-right:.1em solid #f0f1f1;border-bottom:.1em solid #fbfbfb;border-left:.1em solid #fff;content:"";-webkit-transform:translateZ(0);-ms-transform:translateZ(0);transform:translateZ(0);-webkit-animation:mecloader 1.1s infinite linear;animation:mecloader 1.1s infinite linear;background:rgba(0,0,0,0);position:absolute;top:18px;right:20px;border-radius:50%;z-index:999999999999}.mec-booking-shortcode a.button.loading:after,.mec-booking-shortcode button[type=submit].loading:after{display:block}.mec-booking-shortcode .mec-book-form-coupon{margin-bottom:35px}.mec-booking-calendar-month-navigation{position:relative;text-align:center;padding:1px 0 1px;max-width:330px}.mec-booking-calendar.mec-wrap{margin-bottom:20px;width:100%}.mec-booking-calendar.mec-wrap{max-width:330px;background:#fff;box-shadow:0 1px 5px 6px rgba(0,0,0,.005) inset;border:1px solid #efefef}.mec-booking-calendar-month-navigation .mec-calendar-header h2{text-transform:uppercase;font-size:13px;font-weight:700;line-height:1.14;margin:16px auto;color:#333}.mec-booking-calendar-month-navigation .mec-next-month,.mec-booking-calendar-month-navigation .mec-previous-month{cursor:pointer;position:absolute;top:0;min-width:40px;height:40px;line-height:40px;text-align:center;background:#fff;color:#a9a9a9;font-size:10px;letter-spacing:1px;text-transform:uppercase;padding-left:5px;padding-right:5px;border-top:none;transition:all .33s ease;border-bottom:1px solid #efefef;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease}.mec-booking-calendar-month-navigation .mec-previous-month{left:0;border-bottom-right-radius:6px;border-left:none;border-right:1px solid #efefef}.mec-booking-calendar-month-navigation .mec-next-month{right:0;border-bottom-left-radius:6px;border-right:none;border-left:1px solid #efefef}.mec-booking-calendar-month-navigation .mec-next-month:hover,.mec-booking-calendar-month-navigation .mec-previous-month:hover{background-color:#f9f9f9;color:#40d9f1}.mec-events-meta-group-booking .mec-booking-calendar .mec-calendar{margin-bottom:0;width:100%}.mec-events-meta-group-booking .mec-booking-calendar .mec-calendar dl dt{text-align:center;padding:0;height:47px;line-height:47px;border:0;cursor:pointer}.mec-events-meta-group-booking .mec-booking-calendar .mec-calendar dl dt:last-child{border:0}.mec-events-meta-group-booking .mec-booking-calendar .mec-calendar .mec-calendar-row dt:hover{background:0 0}.mec-events-meta-group-booking .mec-booking-calendar .mec-calendar .mec-calendar-novel-selected-day,.mec-events-meta-group-booking .mec-booking-calendar .mec-calendar .mec-calendar-novel-selected-day span{width:32px;height:32px;margin:auto;line-height:30px;border-radius:50%;font-size:12px;font-weight:600;padding:0}.mec-has-event-for-booking{position:relative}.mec-has-event-for-booking .mec-calendar-novel-selected-day{border:2px solid #40d9f1;border-radius:50px;cursor:pointer}.mec-has-event-for-booking.mec-active .mec-calendar-novel-selected-day{background-color:#40d9f1}.mec-has-event-for-booking .mec-booking-calendar-date,.mec-has-event-for-booking .mec-booking-tooltip,.mec-multiple-event .mec-has-event-for-booking .mec-booking-tooltip{opacity:0;visibility:hidden;transition:all .4s ease}.mec-has-event-for-booking .mec-booking-tooltip,.mec-multiple-event .mec-has-event-for-booking .mec-booking-tooltip{top:60px}.mec-has-event-for-booking .mec-booking-tooltip,.mec-multiple-event .mec-has-event-for-booking .mec-booking-tooltip{position:absolute;z-index:99;width:150px;font-size:9px;left:calc(50% - 75px);background:#535a61;line-height:29px;border-radius:4px;color:#fff;font-weight:400;letter-spacing:1px;text-transform:uppercase;padding:3px 5px;box-shadow:0 4px 15px -2px #444b50a3}.mec-has-event-for-booking:hover .mec-booking-calendar-date,.mec-has-event-for-booking:hover .mec-booking-tooltip,.mec-has-event-for-booking:hover .mec-booking-tooltip.multiple-time .mec-booking-calendar-date,.mec-multiple-event .mec-has-event-for-booking:hover .mec-booking-calendar-date,.mec-multiple-event .mec-has-event-for-booking:hover .mec-booking-tooltip{opacity:1;visibility:visible}.mec-has-event-for-booking:hover .mec-booking-tooltip,.mec-multiple-event .mec-has-event-for-booking:hover .mec-booking-tooltip{top:43px}.mec-has-event-for-booking .mec-booking-calendar-date:before,.mec-multiple-event .mec-has-event-for-booking .mec-booking-calendar-date:before{display:block;content:''!important;position:absolute!important;width:12px;height:12px;top:-6px;left:calc(50% - 6px);transform:rotate(-45deg)!important;background-color:#535a61;z-index:0!important;box-shadow:0 8px 9px -9px #535a61!important}.mec-multiple-event .mec-has-event-for-booking .mec-booking-calendar-date-hover{border-bottom:1px solid #ffffff30}.mec-events-meta-group-booking .mec-booking-calendar .mec-calendar.mec-multiple-event .first-day{position:relative;padding-left:7px}.mec-events-meta-group-booking .mec-booking-calendar .mec-calendar.mec-multiple-event .first-day .mec-calendar-novel-selected-day{border-radius:47px;border-top-right-radius:0;border-bottom-right-radius:0;border-right:0;width:100%}.mec-events-meta-group-booking .mec-booking-calendar .mec-calendar.mec-multiple-event .first-day .mec-calendar-novel-selected-day span{margin-left:-7px}.mec-events-meta-group-booking .mec-booking-calendar .mec-calendar.mec-multiple-event .last-day{position:relative;padding-right:7px}.mec-events-meta-group-booking .mec-booking-calendar .mec-calendar.mec-multiple-event .last-day .mec-calendar-novel-selected-day{border-radius:47px;border-top-left-radius:0;border-bottom-left-radius:0;border-left:0;width:100%}.mec-events-meta-group-booking .mec-booking-calendar .mec-calendar.mec-multiple-event .last-day .mec-calendar-novel-selected-day span{margin-right:-7px}.mec-events-meta-group-booking .mec-booking-calendar .mec-calendar.mec-multiple-event .middle-day .mec-calendar-novel-selected-day{border-radius:0;border-right:0;border-left:0;width:100%}.mec-booking-tooltip.multiple-time{color:#fff}.mec-booking-tooltip.multiple-time .mec-booking-calendar-date:before{display:none}.mec-booking-tooltip.multiple-time .mec-booking-calendar-date:first-child:before{display:block}.mec-booking-tooltip.multiple-time .mec-booking-calendar-date{border:1px dashed #68717a;line-height:25px;margin:8px 0;border-radius:20px;transition:all .17s ease;-webkit-transition:all .17s ease;-moz-transition:all .17s ease;-ms-transition:all .17s ease;-o-transition:all .17s ease}.mec-booking-tooltip.multiple-time .mec-booking-calendar-date:hover,.mec-calendar-day.mec-active .mec-booking-tooltip.multiple-time .mec-booking-calendar-date.mec-active{background:#40d9f1;border-color:#40d9f1}.mec-choosen-time-message{max-width:330px;padding:3px 14px;border-radius:4px;background:rgb(64 217 241 / 24%);color:#40d9f1;transition:all .17s ease;opacity:1;visibility:visible;font-size:12px;margin-bottom:20px}.mec-choosen-time-message .mec-choosen-time{padding-left:7px}.mec-choosen-time-message.disable,.mec-choosen-time-message.disable .mec-choosen-time-message{opacity:0;visibility:hidden;padding:0;font-size:0;margin:0}.lity-wrap .mec-booking-calendar.mec-wrap{margin-top:20px}.lity-wrap .mec-booking-calendar-month-navigation,.lity-wrap .mec-booking-calendar.mec-wrap,.lity-wrap .mec-choosen-time-message{max-width:100%}.mec-events-meta-group-booking-shortcode .mec-booking-calendar-wrapper .mec-booking-calendar .mec-calendar dl dt{height:47px!important}@media (min-width:961px){.mec-wrap .mec-events-meta-group-booking .mec-booking-calendar .mec-calendar dl dt{height:47px}}.mec-dark-mode .mec-single-event .mec-events-meta-group-booking .mec-booking-calendar-month-navigation,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking .mec-calendar{background:#000;border-color:#222;color:#999}.mec-dark-mode .mec-booking-calendar-month-navigation .mec-next-month,.mec-dark-mode .mec-booking-calendar-month-navigation .mec-previous-month{background:#222;border-color:#000;color:#d2d2d2}.mec-dark-mode .mec-booking-calendar.mec-wrap{border-color:#111}.mec-dark-mode .mec-events-meta-group-booking .mec-booking-calendar .mec-calendar .mec-calendar-row dt:hover{background:0 0!important}.mec-dark-mode .mec-calendar.mec-event-calendar-classic,.mec-dark-mode .mec-calendar.mec-event-calendar-classic .mec-calendar-side{height:auto}.is-light-theme .mec-fes-form textarea{border:1px solid #cfeff5;box-shadow:0 2px 5px rgba(207,239,245,.38) inset}.is-light-theme .mec-fes-form .select2-selection{height:auto}.is-light-theme .mec-fes-form input[type=checkbox]:after{border:unset!important}.is-light-theme .mec-fes-form input[type=radio]:after{background:unset!important}.is-light-theme .mec-fes-form input+label{padding-top:0}.is-light-theme .mec-events-event-image img{height:auto}
|
@@ -5023,6 +5023,9 @@ function mecFluentYearlyUI(eventID, yearID) {
|
|
5023 |
// HTML
|
5024 |
$('#mec_booking_calendar_wrapper'+settings.id).html(response.html);
|
5025 |
|
|
|
|
|
|
|
5026 |
// Empty the Date
|
5027 |
$('#mec_book_form_date' + settings.id).val('').trigger('change');
|
5028 |
|
5023 |
// HTML
|
5024 |
$('#mec_booking_calendar_wrapper'+settings.id).html(response.html);
|
5025 |
|
5026 |
+
// Hide Message
|
5027 |
+
$('#mec_book_form' + settings.id + ' .mec-ticket-unavailable-spots').addClass('mec-util-hidden');
|
5028 |
+
|
5029 |
// Empty the Date
|
5030 |
$('#mec_book_form_date' + settings.id).val('').trigger('change');
|
5031 |
|
@@ -1,8 +1,33 @@
|
|
1 |
-
v 5.17.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
- Added: A new option to manage a percentage of “Last Tickets” globally (pro)
|
3 |
- Added: An ability to manage a percentage of “Last Tickets” per event (pro)
|
4 |
- Improved: The accessibility of MEC invoices (pro)
|
5 |
-
- Improved: The storage of numeric fields of tickets and fees
|
6 |
- Improved: Display of featured canceled and custom labels
|
7 |
- Improved: Dark mode in backend and frontend
|
8 |
- Fixed: Settings menu
|
1 |
+
v 5.17.2 – 24 February 2021
|
2 |
+
- Added: An option to use CC instead of BCC for notification recipients
|
3 |
+
- Added: “No Event Found” message for archive pages
|
4 |
+
- Improved: The custom CSS loading to fix some unwanted issues with cache and minify plugins
|
5 |
+
- Improved: The message showing on the import menu
|
6 |
+
- Updated: Spanish language (Thanks to Eloy Perez)
|
7 |
+
- Fixed: A warning in Countdown, Available Spot and Slider skins (pro)
|
8 |
+
- Fixed: An issue in referred date for those events that are linked to external websites
|
9 |
+
- Fixed: An issue in default full calendar skin loaded in archive pages
|
10 |
+
- Fixed: A PHP fatal error in some hosts
|
11 |
+
- Fixed: An issue on ics link of email to show the correct time
|
12 |
+
- Fixed: An issue on showing expired events on “Related Events” section
|
13 |
+
- Fixed: Some issues on showing dates in minimal and modern styles of list view
|
14 |
+
- Fixed: An issue in map module of the single event (pro)
|
15 |
+
- Fixed: Some issues on booking module when date picker is set to calendar (pro)
|
16 |
+
- Fixed: An issue in storing sender email name
|
17 |
+
- Fixed: Some issues on category checkboxes
|
18 |
+
- Fixed: An issue in downloading attendees of a specific date
|
19 |
+
- Fixed: The datepicker style in the backend
|
20 |
+
- Fixed: Duplicated location in the single event page
|
21 |
+
- Fixed: Constant Contact integration lists (pro)
|
22 |
+
- Fixed: An issue regarding the showing date in the Masonry view (pro)
|
23 |
+
- Fixed: Typos in the booking messages (pro)
|
24 |
+
- Fixed: Some minor issues
|
25 |
+
|
26 |
+
v 5.17.1 – 17 February 2021
|
27 |
- Added: A new option to manage a percentage of “Last Tickets” globally (pro)
|
28 |
- Added: An ability to manage a percentage of “Last Tickets” per event (pro)
|
29 |
- Improved: The accessibility of MEC invoices (pro)
|
30 |
+
- Improved: The storage of numeric fields of tickets and fees (pro)
|
31 |
- Improved: Display of featured canceled and custom labels
|
32 |
- Improved: Dark mode in backend and frontend
|
33 |
- Fixed: Settings menu
|
Binary file
|
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar Lite\n"
|
4 |
-
"POT-Creation-Date: 2021-02-
|
5 |
-
"PO-Revision-Date: 2021-02-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: cs_CZ\n"
|
@@ -22,7 +22,7 @@ msgstr ""
|
|
22 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
23 |
|
24 |
#: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:24
|
25 |
-
#: app/features/ix/import.php:
|
26 |
#: app/features/ix/thirdparty.php:26 app/features/mec.php:1174
|
27 |
#: app/features/mec.php:1198 app/features/mec/dashboard.php:65
|
28 |
#: app/widgets/MEC.php:33
|
@@ -93,14 +93,14 @@ msgid "Select Shortcode"
|
|
93 |
msgstr "Přidat nový zkrácený kód"
|
94 |
|
95 |
#: app/features/booking/calendar_novel.php:136
|
96 |
-
#: app/features/search_bar/search_result.php:12 app/libraries/main.php:
|
97 |
-
#: app/libraries/main.php:
|
98 |
-
#: app/libraries/render.php:
|
99 |
-
#: app/libraries/render.php:
|
100 |
#: app/modules/local-time/details.php:50 app/modules/local-time/type1.php:45
|
101 |
-
#: app/modules/local-time/type2.php:
|
102 |
#: app/modules/next-event/details.php:154
|
103 |
-
#: app/modules/next-event/multiple.php:64 app/skins/single.php:
|
104 |
#: app/skins/single/default.php:172 app/skins/single/default.php:411
|
105 |
#: app/skins/single/m1.php:46 app/skins/single/modern.php:236
|
106 |
#, fuzzy
|
@@ -114,8 +114,8 @@ msgstr "Přidat den"
|
|
114 |
msgid "Chosen Time:"
|
115 |
msgstr "Místní čas"
|
116 |
|
117 |
-
#: app/features/colors.php:50 app/features/fes/form.php:
|
118 |
-
#: app/features/mec/settings.php:
|
119 |
msgid "Event Color"
|
120 |
msgstr "Barva události"
|
121 |
|
@@ -128,14 +128,14 @@ msgstr "Barva události"
|
|
128 |
#: app/features/contextual.php:55 app/features/mec.php:476
|
129 |
#: app/features/mec/dashboard.php:143 app/features/mec/support.php:20
|
130 |
#: app/features/popup/event.php:60 app/features/popup/shortcode.php:37
|
131 |
-
#: app/libraries/main.php:
|
132 |
msgid "Settings"
|
133 |
msgstr "Nastavení"
|
134 |
|
135 |
#: app/features/contextual.php:62 app/features/events.php:1516
|
136 |
#: app/features/events.php:2486 app/features/mec/booking.php:626
|
137 |
-
#: app/features/mec/booking.php:894 app/features/mec/settings.php:
|
138 |
-
#: app/features/mec/support.php:29 app/libraries/main.php:
|
139 |
msgid "Booking Form"
|
140 |
msgstr "Rezervační formulář"
|
141 |
|
@@ -164,7 +164,7 @@ msgstr ""
|
|
164 |
|
165 |
#: app/features/contextual.php:70 app/features/events.php:1524
|
166 |
#: app/features/mec/booking.php:836 app/features/mec/support-page.php:115
|
167 |
-
#: app/features/mec/support.php:36 app/libraries/main.php:
|
168 |
msgid "Payment Gateways"
|
169 |
msgstr "Platební brány"
|
170 |
|
@@ -180,7 +180,7 @@ msgstr ""
|
|
180 |
|
181 |
#: app/features/contextual.php:77 app/features/events.php:402
|
182 |
#: app/features/mec/support-page.php:117 app/features/mec/support.php:45
|
183 |
-
#: app/libraries/main.php:
|
184 |
msgid "Notifications"
|
185 |
msgstr "Upozornění"
|
186 |
|
@@ -265,12 +265,12 @@ msgstr ""
|
|
265 |
"height=\"420\" src=\"https://www.youtube.com/embed/dqgt1b8X8hs\" frameborder="
|
266 |
"\"0\" allowfullscreen></iframe>"
|
267 |
|
268 |
-
#: app/features/contextual.php:117 app/features/mec/settings.php:
|
269 |
#: app/features/mec/support-page.php:97 app/libraries/main.php:566
|
270 |
msgid "General Options"
|
271 |
msgstr "Obecné možnosti"
|
272 |
|
273 |
-
#: app/features/contextual.php:139 app/features/mec/settings.php:
|
274 |
#: app/libraries/main.php:568
|
275 |
msgid "Slugs/Permalinks"
|
276 |
msgstr "Název v URL / Trvalé odkazy"
|
@@ -279,7 +279,7 @@ msgstr "Název v URL / Trvalé odkazy"
|
|
279 |
msgid "Event Details/Single Event Page"
|
280 |
msgstr "Podrobnosti o události / Stránka jedné události"
|
281 |
|
282 |
-
#: app/features/contextual.php:166 app/features/mec/settings.php:
|
283 |
#: app/libraries/main.php:569
|
284 |
msgid "Currency Options"
|
285 |
msgstr "Možnosti Měna"
|
@@ -288,18 +288,18 @@ msgstr "Možnosti Měna"
|
|
288 |
msgid "Google Maps Options"
|
289 |
msgstr "Možnosti Google Maps"
|
290 |
|
291 |
-
#: app/features/contextual.php:244 app/features/mec/settings.php:
|
292 |
#: app/libraries/main.php:570
|
293 |
msgid "Google Recaptcha Options"
|
294 |
msgstr "Možnosti Google Recaptcha"
|
295 |
|
296 |
#: app/features/contextual.php:258 app/features/mec/single.php:298
|
297 |
-
#: app/libraries/main.php:
|
298 |
msgid "Countdown Options"
|
299 |
msgstr "Možnosti Odpočítávání"
|
300 |
|
301 |
#: app/features/contextual.php:268 app/features/mec/modules.php:269
|
302 |
-
#: app/libraries/main.php:
|
303 |
msgid "Social Networks"
|
304 |
msgstr "Sociální sítě"
|
305 |
|
@@ -307,36 +307,36 @@ msgstr "Sociální sítě"
|
|
307 |
msgid "Next Event Module"
|
308 |
msgstr "Modul Další události"
|
309 |
|
310 |
-
#: app/features/contextual.php:286 app/features/mec/settings.php:
|
311 |
#: app/features/mec/support-page.php:98 app/libraries/main.php:571
|
312 |
msgid "Frontend Event Submission"
|
313 |
msgstr "Předání události frontendu"
|
314 |
|
315 |
#: app/features/contextual.php:298 app/features/events.php:395
|
316 |
-
#: app/libraries/main.php:
|
317 |
msgid "Exceptional Days"
|
318 |
msgstr "Výjimečné dny"
|
319 |
|
320 |
#: app/features/contextual.php:308 app/features/events.php:365
|
321 |
#: app/features/mec/booking.php:88 app/features/mec/notifications.php:36
|
322 |
#: app/features/mec/support-page.php:110 app/features/mec/support-page.php:114
|
323 |
-
#: app/libraries/main.php:
|
324 |
-
#: app/libraries/main.php:
|
325 |
msgid "Booking"
|
326 |
msgstr "Rezervace"
|
327 |
|
328 |
#: app/features/contextual.php:318 app/features/mec/booking.php:448
|
329 |
-
#: app/features/mec/booking.php:852 app/libraries/main.php:
|
330 |
msgid "Coupons"
|
331 |
msgstr "Kupóny"
|
332 |
|
333 |
#: app/features/contextual.php:326 app/features/mec/modules.php:341
|
334 |
-
#: app/libraries/main.php:
|
335 |
msgid "BuddyPress Integration"
|
336 |
msgstr "Integrace BuddyPress"
|
337 |
|
338 |
-
#: app/features/contextual.php:334 app/features/mec/settings.php:
|
339 |
-
#: app/libraries/main.php:
|
340 |
msgid "Mailchimp Integration"
|
341 |
msgstr "Integrace Mailchimp"
|
342 |
|
@@ -345,7 +345,7 @@ msgid "MEC Activation"
|
|
345 |
msgstr "Aktivace MEC"
|
346 |
|
347 |
#: app/features/dlfile.php:121 app/features/events.php:1521
|
348 |
-
#: app/features/mec/booking.php:368 app/features/mec/settings.php:
|
349 |
#, fuzzy
|
350 |
#| msgid "Download ICS file"
|
351 |
msgid "Downloadable File"
|
@@ -384,8 +384,8 @@ msgid "File uploaded!"
|
|
384 |
msgstr "Obrázek je nahraný!"
|
385 |
|
386 |
#: app/features/events.php:183 app/features/ix/export.php:34
|
387 |
-
#: app/features/mec/dashboard.php:267 app/libraries/main.php:
|
388 |
-
#: app/libraries/main.php:
|
389 |
#: app/skins/monthly_view/tpl.php:73 app/skins/tile/tpl.php:83
|
390 |
#: app/skins/yearly_view/tpl.php:71
|
391 |
msgid "Events"
|
@@ -409,7 +409,7 @@ msgstr "Přidat událost"
|
|
409 |
msgid "Add New Event"
|
410 |
msgstr "Přidat novou událost"
|
411 |
|
412 |
-
#: app/features/events.php:187 app/features/ix.php:
|
413 |
#: app/features/ix/thirdparty.php:44 app/skins/map/tpl.php:69
|
414 |
#: app/skins/map/tpl.php:89
|
415 |
msgid "No events found!"
|
@@ -445,21 +445,21 @@ msgstr "V koši nebyly nalezeny žádné události!"
|
|
445 |
#: app/features/mec/meta_boxes/search_form.php:700
|
446 |
#: app/features/mec/meta_boxes/search_form.php:785
|
447 |
#: app/features/mec/meta_boxes/search_form.php:906
|
448 |
-
#: app/features/mec/settings.php:
|
449 |
#: app/features/mec/single.php:385 app/features/mec/single.php:427
|
450 |
-
#: app/features/search.php:68 app/libraries/main.php:
|
451 |
-
#: app/libraries/main.php:
|
452 |
-
#: app/skins/single.php:
|
453 |
#: app/skins/single/default.php:510 app/skins/single/m1.php:201
|
454 |
#: app/skins/single/m2.php:124 app/skins/single/modern.php:154
|
455 |
msgid "Category"
|
456 |
msgstr "Kategorie"
|
457 |
|
458 |
#: app/features/events.php:209 app/features/events.php:3533
|
459 |
-
#: app/features/fes/form.php:
|
460 |
#: app/features/mec/meta_boxes/filter.php:69
|
461 |
-
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:
|
462 |
-
#: app/libraries/main.php:
|
463 |
msgid "Categories"
|
464 |
msgstr "Kategorie"
|
465 |
|
@@ -563,7 +563,7 @@ msgstr "Podrobnosti události"
|
|
563 |
msgid "Date And Time"
|
564 |
msgstr "Datum a čas"
|
565 |
|
566 |
-
#: app/features/events.php:393 app/features/fes/form.php:
|
567 |
msgid "Event Repeating"
|
568 |
msgstr "Opakování události"
|
569 |
|
@@ -574,8 +574,8 @@ msgstr "Opakování události"
|
|
574 |
msgid "Event Data"
|
575 |
msgstr "Zobrazit událost"
|
576 |
|
577 |
-
#: app/features/events.php:396 app/features/mec/settings.php:
|
578 |
-
#: app/libraries/hourlyschedule.php:35 app/skins/single.php:
|
579 |
msgid "Hourly Schedule"
|
580 |
msgstr "Hodinový rozvrh"
|
581 |
|
@@ -592,8 +592,8 @@ msgid "Links"
|
|
592 |
msgstr "Odkaz"
|
593 |
|
594 |
#: app/features/events.php:399 app/features/events.php:3580
|
595 |
-
#: app/features/events.php:3787 app/features/ix.php:
|
596 |
-
#: app/features/ix.php:
|
597 |
#: app/features/mec/meta_boxes/display_options.php:1506
|
598 |
#: app/features/mec/meta_boxes/search_form.php:47
|
599 |
#: app/features/mec/meta_boxes/search_form.php:133
|
@@ -606,23 +606,23 @@ msgstr "Odkaz"
|
|
606 |
#: app/features/mec/meta_boxes/search_form.php:716
|
607 |
#: app/features/mec/meta_boxes/search_form.php:801
|
608 |
#: app/features/mec/meta_boxes/search_form.php:922
|
609 |
-
#: app/features/mec/settings.php:
|
610 |
#: app/features/mec/single.php:431 app/features/organizers.php:58
|
611 |
#: app/features/organizers.php:204 app/features/organizers.php:260
|
612 |
#: app/features/organizers.php:262 app/features/organizers.php:271
|
613 |
#: app/features/popup/event.php:163 app/features/popup/event.php:172
|
614 |
-
#: app/features/search.php:80 app/libraries/main.php:
|
615 |
-
#: app/libraries/main.php:
|
616 |
-
#: app/skins/single.php:
|
617 |
#: app/skins/single/default.php:535 app/skins/single/m1.php:102
|
618 |
#: app/skins/single/m2.php:25 app/skins/single/modern.php:50
|
619 |
msgid "Organizer"
|
620 |
msgstr "Organizátor"
|
621 |
|
622 |
#: app/features/events.php:400 app/features/events.php:1235
|
623 |
-
#: app/features/fes/form.php:
|
624 |
-
#: app/libraries/main.php:
|
625 |
-
#: app/skins/single.php:
|
626 |
#: app/skins/single/default.php:429 app/skins/single/m1.php:61
|
627 |
#: app/skins/single/modern.php:251
|
628 |
msgid "Cost"
|
@@ -644,26 +644,26 @@ msgstr "Údaje hosta"
|
|
644 |
|
645 |
#: app/features/events.php:569 app/features/events.php:2472
|
646 |
#: app/features/events.php:4110 app/features/fes.php:243
|
647 |
-
#: app/features/fes/form.php:
|
648 |
#: app/features/mec/booking.php:45 app/features/organizers.php:279
|
649 |
#: app/features/popup/event.php:182 app/features/profile/profile.php:149
|
650 |
-
#: app/libraries/notifications.php:
|
651 |
msgid "Name"
|
652 |
msgstr "Jméno"
|
653 |
|
654 |
#: app/features/events.php:570 app/features/events.php:2481
|
655 |
#: app/features/events.php:2548 app/features/events.php:2637
|
656 |
#: app/features/events.php:4113 app/features/fes.php:243
|
657 |
-
#: app/features/fes/form.php:
|
658 |
#: app/features/mec/booking.php:57 app/features/mec/booking.php:664
|
659 |
#: app/features/mec/booking.php:760 app/features/mec/single.php:240
|
660 |
#: app/features/organizers.php:111 app/features/organizers.php:152
|
661 |
#: app/features/profile/profile.php:152 app/features/speakers.php:127
|
662 |
-
#: app/features/speakers.php:204 app/libraries/main.php:
|
663 |
-
#: app/libraries/main.php:
|
664 |
-
#: app/libraries/notifications.php:
|
665 |
-
#: app/modules/booking/steps/form.php:213 app/skins/single.php:
|
666 |
-
#: app/skins/single.php:
|
667 |
#: app/skins/single/default.php:552 app/skins/single/m1.php:119
|
668 |
#: app/skins/single/m2.php:42 app/skins/single/modern.php:67
|
669 |
msgid "Email"
|
@@ -682,7 +682,7 @@ msgstr "Datum a čas"
|
|
682 |
#: app/features/events.php:586 app/features/events.php:590
|
683 |
#: app/features/events.php:3581 app/features/events.php:3787
|
684 |
#: app/features/fes/form.php:286 app/features/fes/form.php:290
|
685 |
-
#: app/features/ix.php:
|
686 |
#: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1394
|
687 |
#: app/features/mec/meta_boxes/display_options.php:52
|
688 |
#: app/features/mec/meta_boxes/display_options.php:305
|
@@ -706,7 +706,7 @@ msgstr "Počátečná den"
|
|
706 |
#: app/features/events.php:605 app/features/events.php:609
|
707 |
#: app/features/events.php:3582 app/features/events.php:3787
|
708 |
#: app/features/fes/form.php:305 app/features/fes/form.php:309
|
709 |
-
#: app/features/ix.php:
|
710 |
#: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1395
|
711 |
#: app/features/mec/meta_boxes/display_options.php:68
|
712 |
#: app/features/mec/meta_boxes/display_options.php:321
|
@@ -759,7 +759,7 @@ msgstr ""
|
|
759 |
#: app/features/events.php:2223 app/features/events.php:2259
|
760 |
#: app/features/events.php:2357 app/features/events.php:2372
|
761 |
#: app/features/events.php:2402 app/features/events.php:2415
|
762 |
-
#: app/features/fes/form.php:
|
763 |
#: app/features/locations.php:335 app/features/mec/booking.php:109
|
764 |
#: app/features/mec/booking.php:201 app/features/mec/booking.php:266
|
765 |
#: app/features/mec/booking.php:299 app/features/mec/booking.php:312
|
@@ -814,27 +814,28 @@ msgstr ""
|
|
814 |
#: app/features/mec/notifications.php:1195
|
815 |
#: app/features/mec/notifications.php:1210
|
816 |
#: app/features/mec/notifications.php:1367
|
817 |
-
#: app/features/mec/notifications.php:1479 app/features/mec/settings.php:
|
818 |
-
#: app/features/mec/settings.php:
|
819 |
-
#: app/features/mec/settings.php:
|
820 |
-
#: app/features/mec/settings.php:
|
821 |
-
#: app/features/mec/settings.php:
|
822 |
-
#: app/features/mec/settings.php:
|
823 |
-
#: app/features/mec/settings.php:
|
824 |
-
#: app/features/mec/settings.php:
|
825 |
-
#: app/features/mec/settings.php:
|
826 |
-
#: app/features/mec/settings.php:
|
827 |
-
#: app/features/mec/settings.php:
|
828 |
-
#: app/features/mec/single.php:
|
829 |
-
#: app/features/mec/single.php:
|
830 |
-
#: app/features/mec/single.php:
|
831 |
-
#: app/features/mec/single.php:
|
832 |
-
#: app/features/mec/styling.php:
|
833 |
-
#: app/features/mec/styling.php:
|
834 |
-
#: app/features/
|
835 |
-
#: app/
|
836 |
-
#: app/skins/single/default.php:
|
837 |
-
#: app/skins/single/
|
|
|
838 |
msgid "Read More"
|
839 |
msgstr "Číst více"
|
840 |
|
@@ -872,30 +873,31 @@ msgstr "Při spuštění události"
|
|
872 |
msgid "Count to Event End"
|
873 |
msgstr "Na konci události"
|
874 |
|
875 |
-
#: app/features/events.php:700 app/features/fes/form.php:
|
876 |
#: app/modules/weather/darksky.php:57
|
877 |
msgid "Visibility"
|
878 |
msgstr "Viditelnost"
|
879 |
|
880 |
-
#: app/features/events.php:703 app/features/fes/form.php:
|
|
|
881 |
#, fuzzy
|
882 |
#| msgid "Visibility"
|
883 |
msgid "Event Visibility"
|
884 |
msgstr "Viditelnost"
|
885 |
|
886 |
-
#: app/features/events.php:704 app/features/fes/form.php:
|
887 |
#, fuzzy
|
888 |
#| msgid "Booking Style"
|
889 |
msgid "Show on Shortcodes"
|
890 |
msgstr "Styl rezervace"
|
891 |
|
892 |
-
#: app/features/events.php:705 app/features/fes/form.php:
|
893 |
#, fuzzy
|
894 |
#| msgid "Shortcodes"
|
895 |
msgid "Hide on Shortcodes"
|
896 |
msgstr "Zkrácené kódy"
|
897 |
|
898 |
-
#: app/features/events.php:712
|
899 |
msgid "Repeating"
|
900 |
msgstr "Opakování"
|
901 |
|
@@ -903,63 +905,63 @@ msgstr "Opakování"
|
|
903 |
msgid "Event Repeating (Recurring events)"
|
904 |
msgstr "Opakování události (opakující se události)"
|
905 |
|
906 |
-
#: app/features/events.php:725 app/features/fes/form.php:
|
907 |
msgid "Repeats"
|
908 |
msgstr "Opakování"
|
909 |
|
910 |
-
#: app/features/events.php:733 app/features/fes/form.php:
|
911 |
#: app/features/mec.php:1397 app/skins/default_full_calendar/tpl.php:77
|
912 |
#: app/skins/full_calendar/tpl.php:125
|
913 |
msgid "Daily"
|
914 |
msgstr "Děnně"
|
915 |
|
916 |
-
#: app/features/events.php:740 app/features/fes/form.php:
|
917 |
msgid "Every Weekday"
|
918 |
msgstr "Každý všední den"
|
919 |
|
920 |
-
#: app/features/events.php:747 app/features/fes/form.php:
|
921 |
msgid "Every Weekend"
|
922 |
msgstr "Každý víkend"
|
923 |
|
924 |
-
#: app/features/events.php:754 app/features/fes/form.php:
|
925 |
msgid "Certain Weekdays"
|
926 |
msgstr "Určité pracovní dny"
|
927 |
|
928 |
-
#: app/features/events.php:761 app/features/fes/form.php:
|
929 |
#: app/skins/default_full_calendar/tpl.php:76
|
930 |
#: app/skins/full_calendar/tpl.php:124
|
931 |
msgid "Weekly"
|
932 |
msgstr "Týdně"
|
933 |
|
934 |
-
#: app/features/events.php:768 app/features/fes/form.php:
|
935 |
#: app/features/mec.php:1398 app/skins/default_full_calendar/tpl.php:75
|
936 |
#: app/skins/full_calendar/tpl.php:123
|
937 |
msgid "Monthly"
|
938 |
msgstr "Měsíčně"
|
939 |
|
940 |
-
#: app/features/events.php:775 app/features/fes/form.php:
|
941 |
#: app/features/mec.php:1399 app/skins/default_full_calendar/tpl.php:74
|
942 |
#: app/skins/full_calendar/tpl.php:122
|
943 |
msgid "Yearly"
|
944 |
msgstr "Ročně"
|
945 |
|
946 |
-
#: app/features/events.php:782 app/features/fes/form.php:
|
947 |
msgid "Custom Days"
|
948 |
msgstr "Vlastní dny"
|
949 |
|
950 |
-
#: app/features/events.php:789 app/features/fes/form.php:
|
951 |
msgid "Advanced"
|
952 |
msgstr "Pokročilé"
|
953 |
|
954 |
-
#: app/features/events.php:794 app/features/fes/form.php:
|
955 |
msgid "Repeat Interval"
|
956 |
msgstr "Interval opakování"
|
957 |
|
958 |
-
#: app/features/events.php:796 app/features/fes/form.php:
|
959 |
msgid "Repeat interval"
|
960 |
msgstr "Interval opakování"
|
961 |
|
962 |
-
#: app/features/events.php:800 app/features/fes/form.php:
|
963 |
msgid "Week Days"
|
964 |
msgstr "Dny v týdnu"
|
965 |
|
@@ -973,27 +975,27 @@ msgstr "Pro verze doplňku Modern Events Calendar"
|
|
973 |
|
974 |
#: app/features/events.php:823 app/features/events.php:1945
|
975 |
#: app/features/events.php:1973 app/features/events.php:2127
|
976 |
-
#: app/features/fes/form.php:
|
977 |
#: app/features/ix/import_g_calendar.php:51
|
978 |
#: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:35
|
979 |
-
#: app/libraries/skins.php:
|
980 |
msgid "Start"
|
981 |
msgstr "Začátek"
|
982 |
|
983 |
#: app/features/events.php:836 app/features/events.php:1343
|
984 |
#: app/features/events.php:1929 app/features/events.php:2116
|
985 |
#: app/features/events.php:2196 app/features/events.php:2329
|
986 |
-
#: app/features/fes/form.php:
|
987 |
#: app/features/occurrences.php:114 app/libraries/hourlyschedule.php:56
|
988 |
#: app/libraries/hourlyschedule.php:119
|
989 |
msgid "Add"
|
990 |
msgstr "Přidat"
|
991 |
|
992 |
-
#: app/features/events.php:839 app/features/fes/form.php:
|
993 |
msgid "Custom Days Repeating"
|
994 |
msgstr "Opakování vlastních dnů"
|
995 |
|
996 |
-
#: app/features/events.php:842 app/features/fes/form.php:
|
997 |
#, fuzzy
|
998 |
#| msgid ""
|
999 |
#| "Add certain days to event occurrence dates. If you have single day event, "
|
@@ -1010,50 +1012,50 @@ msgstr ""
|
|
1010 |
|
1011 |
#: app/features/events.php:853 app/features/events.php:1949
|
1012 |
#: app/features/events.php:1977 app/features/events.php:2131
|
1013 |
-
#: app/features/fes/form.php:
|
1014 |
msgid "End"
|
1015 |
msgstr "Konec"
|
1016 |
|
1017 |
-
#: app/features/events.php:930 app/features/fes/form.php:
|
1018 |
msgid "First"
|
1019 |
msgstr "První"
|
1020 |
|
1021 |
-
#: app/features/events.php:972 app/features/fes/form.php:
|
1022 |
msgid "Second"
|
1023 |
msgstr "Druhá"
|
1024 |
|
1025 |
-
#: app/features/events.php:1014 app/features/fes/form.php:
|
1026 |
msgid "Third"
|
1027 |
msgstr "Třetí"
|
1028 |
|
1029 |
-
#: app/features/events.php:1056 app/features/fes/form.php:
|
1030 |
msgid "Fourth"
|
1031 |
msgstr "Čtvrtá"
|
1032 |
|
1033 |
-
#: app/features/events.php:1098 app/features/fes/form.php:
|
1034 |
msgid "Last"
|
1035 |
msgstr "Poslední"
|
1036 |
|
1037 |
-
#: app/features/events.php:1145 app/features/fes/form.php:
|
1038 |
msgid "Ends Repeat"
|
1039 |
msgstr "Ukončení opakování"
|
1040 |
|
1041 |
-
#: app/features/events.php:1157 app/features/fes/form.php:
|
1042 |
msgid "Never"
|
1043 |
msgstr "Nikdy"
|
1044 |
|
1045 |
# Možná Zapnuto
|
1046 |
-
#: app/features/events.php:1169 app/features/fes/form.php:
|
1047 |
msgid "On"
|
1048 |
msgstr "Na"
|
1049 |
|
1050 |
-
#: app/features/events.php:1185 app/features/fes/form.php:
|
1051 |
#: app/features/mec/booking.php:157
|
1052 |
msgid "After"
|
1053 |
msgstr "Po"
|
1054 |
|
1055 |
#: app/features/events.php:1189 app/features/events.php:1193
|
1056 |
-
#: app/features/fes/form.php:
|
1057 |
msgid "Occurrences times"
|
1058 |
msgstr "Časy výskytu"
|
1059 |
|
@@ -1069,15 +1071,15 @@ msgstr ""
|
|
1069 |
"Událost bude ukončena po určitých opakováních. Pokud například nastavíte "
|
1070 |
"hodnotu 10, událost skončí po 10 opakováních."
|
1071 |
|
1072 |
-
#: app/features/events.php:1210 app/features/fes/form.php:
|
1073 |
#, fuzzy
|
1074 |
#| msgid "Next Occurrence of Other Events"
|
1075 |
msgid "Show only one occurrence of this event"
|
1076 |
msgstr "Další výskyt dalších událostí"
|
1077 |
|
1078 |
#: app/features/events.php:1231 app/features/events.php:3787
|
1079 |
-
#: app/features/fes/form.php:
|
1080 |
-
#: app/features/ix.php:
|
1081 |
#: app/features/mec/meta_boxes/search_form.php:168
|
1082 |
#: app/features/mec/meta_boxes/search_form.php:254
|
1083 |
#: app/features/mec/meta_boxes/search_form.php:340
|
@@ -1088,8 +1090,8 @@ msgstr "Další výskyt dalších událostí"
|
|
1088 |
#: app/features/mec/meta_boxes/search_form.php:751
|
1089 |
#: app/features/mec/meta_boxes/search_form.php:836
|
1090 |
#: app/features/mec/meta_boxes/search_form.php:957
|
1091 |
-
#: app/features/mec/settings.php:
|
1092 |
-
#: app/libraries/main.php:
|
1093 |
msgid "Event Cost"
|
1094 |
msgstr "Cena události"
|
1095 |
|
@@ -1105,9 +1107,9 @@ msgstr "Vyloučit určité dny"
|
|
1105 |
#: app/features/events.php:2638 app/features/fes.php:243
|
1106 |
#: app/features/mec/booking.php:665 app/features/mec/booking.php:761
|
1107 |
#: app/features/mec/single.php:242 app/features/profile/profile.php:36
|
1108 |
-
#: app/features/wc.php:83 app/libraries/main.php:
|
1109 |
#: app/modules/booking/steps/tickets.php:127
|
1110 |
-
#: app/modules/next-event/details.php:143 app/skins/single.php:
|
1111 |
#: app/skins/single/default.php:147 app/skins/single/default.php:386
|
1112 |
#: app/skins/single/m1.php:21 app/skins/single/modern.php:211
|
1113 |
msgid "Date"
|
@@ -1123,23 +1125,23 @@ msgstr ""
|
|
1123 |
"můžete vyloučit pouze výskyty za jeden den a nelze vyloučit jeden den z "
|
1124 |
"vícedenních výskytů."
|
1125 |
|
1126 |
-
#: app/features/events.php:1405 app/libraries/render.php:
|
1127 |
msgid "Day 1"
|
1128 |
msgstr "Den 1"
|
1129 |
|
1130 |
-
#: app/features/events.php:1449 app/features/fes/form.php:
|
1131 |
-
#: app/features/mec/settings.php:
|
1132 |
msgid "Event Links"
|
1133 |
msgstr "Odkazy na událost"
|
1134 |
|
1135 |
#: app/features/events.php:1452 app/features/events.php:1460
|
1136 |
-
#: app/features/fes/form.php:
|
1137 |
-
#: app/libraries/main.php:
|
1138 |
msgid "Event Link"
|
1139 |
msgstr "Odkaz na událost"
|
1140 |
|
1141 |
#: app/features/events.php:1455 app/features/events.php:1473
|
1142 |
-
#: app/features/fes/form.php:
|
1143 |
msgid "eg. http://yoursite.com/your-event"
|
1144 |
msgstr "např. http://yoursite.com/vase-udalost"
|
1145 |
|
@@ -1163,29 +1165,29 @@ msgid "URL Shortener"
|
|
1163 |
msgstr "Zkracovač URL"
|
1164 |
|
1165 |
#: app/features/events.php:1470 app/features/events.php:1483
|
1166 |
-
#: app/features/fes/form.php:
|
1167 |
-
#: app/libraries/main.php:
|
1168 |
#: app/skins/single/default.php:206 app/skins/single/default.php:443
|
1169 |
#: app/skins/single/m1.php:222 app/skins/single/m2.php:146
|
1170 |
#: app/skins/single/modern.php:176 app/widgets/single.php:109
|
1171 |
msgid "More Info"
|
1172 |
msgstr "Více info"
|
1173 |
|
1174 |
-
#: app/features/events.php:1476 app/features/fes/form.php:
|
1175 |
msgid "More Information"
|
1176 |
msgstr "Více informací"
|
1177 |
|
1178 |
-
#: app/features/events.php:1478 app/features/fes/form.php:
|
1179 |
#: app/features/mec.php:996 app/features/popup/shortcode.php:477
|
1180 |
msgid "Current Window"
|
1181 |
msgstr "Aktuální okno"
|
1182 |
|
1183 |
-
#: app/features/events.php:1479 app/features/fes/form.php:
|
1184 |
#: app/features/mec.php:997 app/features/popup/shortcode.php:481
|
1185 |
msgid "New Window"
|
1186 |
msgstr "Nové okno"
|
1187 |
|
1188 |
-
#: app/features/events.php:1484 app/features/fes/form.php:
|
1189 |
msgid ""
|
1190 |
"If you fill it, it will be shown in event details page as an optional link. "
|
1191 |
"Insert full link including http(s)://"
|
@@ -1193,19 +1195,19 @@ msgstr ""
|
|
1193 |
"Pokud ji vyplníte, zobrazí se jako volitelný odkaz na stránce s podrobnostmi "
|
1194 |
"o události. Vložte celý odkaz včetně http (s): //"
|
1195 |
|
1196 |
-
#: app/features/events.php:1507 app/features/mec/settings.php:
|
1197 |
msgid "Booking Options"
|
1198 |
msgstr "Možnosti rezervace"
|
1199 |
|
1200 |
#: app/features/events.php:1508 app/features/events.php:1721
|
1201 |
-
#: app/features/mec/settings.php:
|
1202 |
#, fuzzy
|
1203 |
#| msgid "Total user booking limits"
|
1204 |
msgid "Total User Booking Limits"
|
1205 |
msgstr "Celkové limity rezervace uživatelů"
|
1206 |
|
1207 |
#: app/features/events.php:1509 app/features/events.php:1777
|
1208 |
-
#: app/libraries/book.php:63 app/libraries/main.php:
|
1209 |
#: app/modules/booking/steps/tickets.php:159
|
1210 |
#: app/modules/booking/steps/tickets.php:165
|
1211 |
msgid "Tickets"
|
@@ -1216,7 +1218,7 @@ msgid "Fees"
|
|
1216 |
msgstr "Poplatky"
|
1217 |
|
1218 |
#: app/features/events.php:1514 app/features/events.php:2305
|
1219 |
-
#: app/features/mec/settings.php:
|
1220 |
msgid "Ticket Variations / Options"
|
1221 |
msgstr "Varianty vstupenky / možnosti"
|
1222 |
|
@@ -1232,7 +1234,7 @@ msgid "Total booking limit"
|
|
1232 |
msgstr "Celkové limity rezervace"
|
1233 |
|
1234 |
#: app/features/events.php:1596 app/features/events.php:1895
|
1235 |
-
#: app/features/events.php:2082 app/modules/booking/default.php:
|
1236 |
#: app/modules/booking/steps/tickets.php:159
|
1237 |
#: app/modules/booking/steps/tickets.php:165
|
1238 |
#: app/skins/available_spot/tpl.php:131
|
@@ -1266,7 +1268,7 @@ msgid "5"
|
|
1266 |
msgstr ""
|
1267 |
|
1268 |
#: app/features/events.php:1629 app/features/events.php:1643
|
1269 |
-
#: app/features/mec/settings.php:
|
1270 |
#, fuzzy
|
1271 |
#| msgid "Next Occurrence"
|
1272 |
msgid "Book All Occurrences"
|
@@ -1284,7 +1286,7 @@ msgid ""
|
|
1284 |
msgstr ""
|
1285 |
|
1286 |
#: app/features/events.php:1657 app/features/mec/booking.php:130
|
1287 |
-
#: app/features/mec/settings.php:
|
1288 |
#, fuzzy
|
1289 |
#| msgid "General Options"
|
1290 |
msgid "Interval Options"
|
@@ -1314,7 +1316,7 @@ msgstr ""
|
|
1314 |
"Pokud nastavíte tuto možnost na 30, rezervační formulář se otevře pouze 30 "
|
1315 |
"minut před zahájením akce!"
|
1316 |
|
1317 |
-
#: app/features/events.php:1674 app/features/mec/settings.php:
|
1318 |
msgid "Automatic Approval"
|
1319 |
msgstr ""
|
1320 |
|
@@ -1447,8 +1449,8 @@ msgstr "Ověřovací email"
|
|
1447 |
#: app/features/mec/meta_boxes/search_form.php:966
|
1448 |
#: app/features/mec/meta_boxes/search_form.php:973
|
1449 |
#: app/features/mec/meta_boxes/search_form.php:980
|
1450 |
-
#: app/features/mec/modules.php:115 app/features/mec/settings.php:
|
1451 |
-
#: app/features/mec/settings.php:
|
1452 |
msgid "Disabled"
|
1453 |
msgstr "Zakázaný"
|
1454 |
|
@@ -1456,18 +1458,18 @@ msgstr "Zakázaný"
|
|
1456 |
#: app/features/mec/booking.php:176 app/features/mec/booking.php:243
|
1457 |
#: app/features/mec/booking.php:260 app/features/mec/booking.php:861
|
1458 |
#: app/features/mec/booking.php:890 app/features/mec/modules.php:155
|
1459 |
-
#: app/features/mec/settings.php:
|
1460 |
msgid "Enabled"
|
1461 |
msgstr "Povoleno"
|
1462 |
|
1463 |
#: app/features/events.php:1686 app/features/mec/booking.php:395
|
1464 |
#: app/features/mec/notifications.php:334 app/features/notifications.php:161
|
1465 |
-
#: app/libraries/main.php:
|
1466 |
msgid "Booking Confirmation"
|
1467 |
msgstr "Potvrzení rezervace"
|
1468 |
|
1469 |
#: app/features/events.php:1699 app/features/mec/booking.php:279
|
1470 |
-
#: app/features/mec/settings.php:
|
1471 |
#, fuzzy
|
1472 |
#| msgid "Ticket"
|
1473 |
msgid "Last Few Tickets Percentage"
|
@@ -1517,7 +1519,7 @@ msgstr "Vstupenka"
|
|
1517 |
|
1518 |
#: app/features/events.php:1797 app/features/events.php:1997
|
1519 |
#: app/features/events.php:3787 app/features/fes.php:243
|
1520 |
-
#: app/features/ix.php:
|
1521 |
#: app/features/labels.php:179 app/features/locations.php:262
|
1522 |
#: app/features/organizers.php:203 app/features/speakers.php:282
|
1523 |
msgid "ID"
|
@@ -1528,14 +1530,14 @@ msgid "Ticket Name"
|
|
1528 |
msgstr "Název vstupenky"
|
1529 |
|
1530 |
#: app/features/events.php:1805 app/features/events.php:2004
|
1531 |
-
#: app/features/events.php:3787 app/features/ix.php:
|
1532 |
-
#: app/features/ix.php:
|
1533 |
msgid "Start Time"
|
1534 |
msgstr "Začátek"
|
1535 |
|
1536 |
#: app/features/events.php:1818 app/features/events.php:2017
|
1537 |
-
#: app/features/events.php:3787 app/features/ix.php:
|
1538 |
-
#: app/features/ix.php:
|
1539 |
msgid "End Time"
|
1540 |
msgstr "Konec"
|
1541 |
|
@@ -1644,9 +1646,9 @@ msgstr "Cena za datum"
|
|
1644 |
#: app/features/mec/meta_boxes/search_form.php:737
|
1645 |
#: app/features/mec/meta_boxes/search_form.php:822
|
1646 |
#: app/features/mec/meta_boxes/search_form.php:943
|
1647 |
-
#: app/features/mec/settings.php:
|
1648 |
#: app/features/mec/single.php:403 app/features/mec/single.php:445
|
1649 |
-
#: app/features/search.php:98 app/libraries/skins.php:
|
1650 |
msgid "Label"
|
1651 |
msgstr "Štítek"
|
1652 |
|
@@ -1658,14 +1660,14 @@ msgstr "Štítek"
|
|
1658 |
#: app/features/mec/booking.php:617 app/libraries/hourlyschedule.php:52
|
1659 |
#: app/libraries/hourlyschedule.php:66 app/libraries/hourlyschedule.php:87
|
1660 |
#: app/libraries/hourlyschedule.php:115 app/libraries/hourlyschedule.php:132
|
1661 |
-
#: app/libraries/main.php:
|
1662 |
-
#: app/libraries/main.php:
|
1663 |
-
#: app/libraries/main.php:
|
1664 |
-
#: app/libraries/main.php:
|
1665 |
-
#: app/libraries/main.php:
|
1666 |
-
#: app/libraries/main.php:
|
1667 |
-
#: app/libraries/main.php:
|
1668 |
-
#: app/libraries/main.php:
|
1669 |
msgid "Remove"
|
1670 |
msgstr "Odstranit"
|
1671 |
|
@@ -1707,8 +1709,8 @@ msgstr "Částka (za rezervaci)"
|
|
1707 |
|
1708 |
#: app/features/events.php:2344 app/features/events.php:2391
|
1709 |
#: app/features/events.php:3577 app/features/events.php:3787
|
1710 |
-
#: app/features/fes/form.php:260 app/features/ix.php:
|
1711 |
-
#: app/features/ix.php:
|
1712 |
#: app/features/mec/booking.php:594 app/features/mec/styling.php:134
|
1713 |
#: app/libraries/hourlyschedule.php:48 app/libraries/hourlyschedule.php:64
|
1714 |
#: app/libraries/hourlyschedule.php:85 app/libraries/hourlyschedule.php:110
|
@@ -1758,18 +1760,18 @@ msgid "Per Attendee Fields"
|
|
1758 |
msgstr "Limit účastníků"
|
1759 |
|
1760 |
#: app/features/events.php:2545 app/features/mec/booking.php:661
|
1761 |
-
#: app/libraries/main.php:
|
1762 |
msgid "MEC Name"
|
1763 |
msgstr "MEC Jméno"
|
1764 |
|
1765 |
#: app/features/events.php:2546 app/features/mec/booking.php:662
|
1766 |
-
#: app/libraries/main.php:
|
1767 |
msgid "MEC Email"
|
1768 |
msgstr "MEC Email"
|
1769 |
|
1770 |
#: app/features/events.php:2547 app/features/events.php:2636
|
1771 |
#: app/features/mec/booking.php:663 app/features/mec/booking.php:759
|
1772 |
-
#: app/features/mec/single.php:239 app/libraries/main.php:
|
1773 |
msgid "Text"
|
1774 |
msgstr "Text"
|
1775 |
|
@@ -1778,18 +1780,18 @@ msgstr "Text"
|
|
1778 |
#: app/features/mec/single.php:243 app/features/organizers.php:103
|
1779 |
#: app/features/organizers.php:148 app/features/speakers.php:119
|
1780 |
#: app/features/speakers.php:200 app/features/speakers.php:285
|
1781 |
-
#: app/libraries/main.php:
|
1782 |
msgid "Tel"
|
1783 |
msgstr "Tel"
|
1784 |
|
1785 |
#: app/features/events.php:2551 app/features/mec/booking.php:667
|
1786 |
-
#: app/libraries/main.php:
|
1787 |
msgid "File"
|
1788 |
msgstr "Soubor"
|
1789 |
|
1790 |
#: app/features/events.php:2552 app/features/events.php:2640
|
1791 |
#: app/features/mec/booking.php:668 app/features/mec/booking.php:763
|
1792 |
-
#: app/features/mec/single.php:244 app/libraries/main.php:
|
1793 |
msgid "Textarea"
|
1794 |
msgstr "Plocha textu"
|
1795 |
|
@@ -1806,13 +1808,13 @@ msgstr "Plocha textu"
|
|
1806 |
#: app/features/mec/meta_boxes/search_form.php:704
|
1807 |
#: app/features/mec/meta_boxes/search_form.php:789
|
1808 |
#: app/features/mec/meta_boxes/search_form.php:910
|
1809 |
-
#: app/features/mec/single.php:246 app/libraries/main.php:
|
1810 |
msgid "Checkboxes"
|
1811 |
msgstr "Zatržítko"
|
1812 |
|
1813 |
#: app/features/events.php:2554 app/features/events.php:2642
|
1814 |
#: app/features/mec/booking.php:670 app/features/mec/booking.php:765
|
1815 |
-
#: app/features/mec/single.php:247 app/libraries/main.php:
|
1816 |
msgid "Radio Buttons"
|
1817 |
msgstr "Přepínače"
|
1818 |
|
@@ -1892,19 +1894,19 @@ msgstr "Přepínače"
|
|
1892 |
#: app/features/mec/meta_boxes/search_form.php:939
|
1893 |
#: app/features/mec/meta_boxes/search_form.php:946
|
1894 |
#: app/features/mec/meta_boxes/search_form.php:967
|
1895 |
-
#: app/features/mec/single.php:248 app/libraries/main.php:
|
1896 |
msgid "Dropdown"
|
1897 |
msgstr "Rozbalovací"
|
1898 |
|
1899 |
#: app/features/events.php:2556 app/features/events.php:2644
|
1900 |
#: app/features/mec/booking.php:672 app/features/mec/booking.php:767
|
1901 |
-
#: app/libraries/main.php:
|
1902 |
msgid "Agreement"
|
1903 |
msgstr "Smlouva"
|
1904 |
|
1905 |
#: app/features/events.php:2557 app/features/events.php:2645
|
1906 |
#: app/features/mec/booking.php:673 app/features/mec/booking.php:768
|
1907 |
-
#: app/features/mec/single.php:245 app/libraries/main.php:
|
1908 |
msgid "Paragraph"
|
1909 |
msgstr "Paragraf"
|
1910 |
|
@@ -1939,7 +1941,7 @@ msgid "Attendees List"
|
|
1939 |
msgstr "Limit účastníků"
|
1940 |
|
1941 |
#: app/features/events.php:3579 app/features/events.php:3787
|
1942 |
-
#: app/features/ix.php:
|
1943 |
#: app/features/locations.php:58 app/features/locations.php:263
|
1944 |
#: app/features/locations.php:323 app/features/locations.php:325
|
1945 |
#: app/features/locations.php:334
|
@@ -1955,12 +1957,12 @@ msgstr "Limit účastníků"
|
|
1955 |
#: app/features/mec/meta_boxes/search_form.php:708
|
1956 |
#: app/features/mec/meta_boxes/search_form.php:793
|
1957 |
#: app/features/mec/meta_boxes/search_form.php:914
|
1958 |
-
#: app/features/mec/settings.php:
|
1959 |
#: app/features/mec/single.php:435 app/features/popup/event.php:116
|
1960 |
#: app/features/popup/event.php:125 app/features/search.php:74
|
1961 |
-
#: app/libraries/main.php:
|
1962 |
-
#: app/libraries/main.php:
|
1963 |
-
#: app/skins/single.php:
|
1964 |
#: app/skins/single/default.php:243 app/skins/single/default.php:481
|
1965 |
#: app/skins/single/m1.php:173 app/skins/single/m2.php:96
|
1966 |
#: app/skins/single/modern.php:125
|
@@ -2008,13 +2010,13 @@ msgstr "JSON Export"
|
|
2008 |
msgid "Duplicate"
|
2009 |
msgstr "Duplikát"
|
2010 |
|
2011 |
-
#: app/features/events.php:3787 app/features/ix.php:
|
2012 |
-
#: app/features/ix.php:
|
2013 |
msgid "Link"
|
2014 |
msgstr "Odkaz"
|
2015 |
|
2016 |
-
#: app/features/events.php:3787 app/features/ix.php:
|
2017 |
-
#: app/features/ix.php:
|
2018 |
#: app/features/locations.php:180 app/features/locations.php:264
|
2019 |
#: app/features/mec/meta_boxes/search_form.php:75
|
2020 |
#: app/features/mec/meta_boxes/search_form.php:161
|
@@ -2041,14 +2043,14 @@ msgid "%s Email"
|
|
2041 |
msgstr "%s Email"
|
2042 |
|
2043 |
# v kontextu
|
2044 |
-
#: app/features/events.php:3787 app/features/fes/form.php:
|
2045 |
-
#: app/features/mec/settings.php:
|
2046 |
msgid "Featured Image"
|
2047 |
msgstr "Hlavní obrázek"
|
2048 |
|
2049 |
#: app/features/events.php:4116 app/features/fes.php:243
|
2050 |
-
#: app/features/profile/profile.php:155 app/libraries/main.php:
|
2051 |
-
#: app/libraries/main.php:
|
2052 |
msgid "Ticket"
|
2053 |
msgstr "Vstupenka"
|
2054 |
|
@@ -2120,8 +2122,8 @@ msgstr "Událost byla odebrána!"
|
|
2120 |
msgid "Order Time"
|
2121 |
msgstr "Konec"
|
2122 |
|
2123 |
-
#: app/features/fes.php:243 app/features/wc.php:84 app/libraries/main.php:
|
2124 |
-
#: app/libraries/main.php:
|
2125 |
msgid "Transaction ID"
|
2126 |
msgstr "ID transakce"
|
2127 |
|
@@ -2129,7 +2131,7 @@ msgstr "ID transakce"
|
|
2129 |
msgid "Total Price"
|
2130 |
msgstr "Celková cena"
|
2131 |
|
2132 |
-
#: app/features/fes.php:243 app/libraries/main.php:
|
2133 |
#, fuzzy
|
2134 |
#| msgid "Payment Gateways"
|
2135 |
msgid "Gateway"
|
@@ -2213,8 +2215,8 @@ msgstr "Událost byla publikována."
|
|
2213 |
msgid "Go back to events list"
|
2214 |
msgstr "Přejít zpět na seznam událostí"
|
2215 |
|
2216 |
-
#: app/features/fes/form.php:268 app/features/mec/settings.php:
|
2217 |
-
#: app/features/mec/settings.php:
|
2218 |
msgid "Excerpt"
|
2219 |
msgstr ""
|
2220 |
|
@@ -2230,49 +2232,49 @@ msgid ""
|
|
2230 |
"overwrite in the next import from Google."
|
2231 |
msgstr ""
|
2232 |
|
2233 |
-
#: app/features/fes/form.php:
|
2234 |
#: app/features/mec/meta_boxes/display_options.php:1342
|
2235 |
#: app/libraries/main.php:444
|
2236 |
msgid "Monday"
|
2237 |
msgstr "Pondělí"
|
2238 |
|
2239 |
-
#: app/features/fes/form.php:
|
2240 |
#: app/features/mec/meta_boxes/display_options.php:1343
|
2241 |
#: app/libraries/main.php:444
|
2242 |
msgid "Tuesday"
|
2243 |
msgstr "Úterý"
|
2244 |
|
2245 |
-
#: app/features/fes/form.php:
|
2246 |
#: app/features/mec/meta_boxes/display_options.php:1344
|
2247 |
#: app/libraries/main.php:444
|
2248 |
msgid "Wednesday"
|
2249 |
msgstr "Středa"
|
2250 |
|
2251 |
-
#: app/features/fes/form.php:
|
2252 |
#: app/features/mec/meta_boxes/display_options.php:1345
|
2253 |
#: app/libraries/main.php:444
|
2254 |
msgid "Thursday"
|
2255 |
msgstr "Čtvrtek"
|
2256 |
|
2257 |
-
#: app/features/fes/form.php:
|
2258 |
#: app/features/mec/meta_boxes/display_options.php:1346
|
2259 |
#: app/libraries/main.php:444
|
2260 |
msgid "Friday"
|
2261 |
msgstr "Pátek"
|
2262 |
|
2263 |
-
#: app/features/fes/form.php:
|
2264 |
#: app/features/mec/meta_boxes/display_options.php:1347
|
2265 |
#: app/libraries/main.php:444
|
2266 |
msgid "Saturday"
|
2267 |
msgstr "Sobota"
|
2268 |
|
2269 |
-
#: app/features/fes/form.php:
|
2270 |
#: app/features/mec/meta_boxes/display_options.php:1341
|
2271 |
#: app/libraries/main.php:444
|
2272 |
msgid "Sunday"
|
2273 |
msgstr "Neděle"
|
2274 |
|
2275 |
-
#: app/features/fes/form.php:
|
2276 |
msgid ""
|
2277 |
"The event will finish after certain repeats. For example if you set it to "
|
2278 |
"10, the event will finish after 10 repeats."
|
@@ -2280,24 +2282,24 @@ msgstr ""
|
|
2280 |
"Událost bude ukončena po určitých opakováních. Pokud například nastavíte "
|
2281 |
"hodnotu 10, událost skončí po 10 opakováních."
|
2282 |
|
2283 |
-
#: app/features/fes/form.php:
|
2284 |
msgid "Note to reviewer"
|
2285 |
msgstr "Poznámka pro recenzenta"
|
2286 |
|
2287 |
-
#: app/features/fes/form.php:
|
2288 |
msgid "User Data"
|
2289 |
msgstr "Údaje uživatele"
|
2290 |
|
2291 |
-
#: app/features/fes/form.php:
|
2292 |
msgid "eg. yourname@gmail.com"
|
2293 |
msgstr "např. vasejmeno@gmail.com"
|
2294 |
|
2295 |
-
#: app/features/fes/form.php:
|
2296 |
#: app/features/popup/event.php:183
|
2297 |
msgid "eg. John Smith"
|
2298 |
msgstr "např. Jan Novák"
|
2299 |
|
2300 |
-
#: app/features/fes/form.php:
|
2301 |
#, fuzzy
|
2302 |
#| msgid ""
|
2303 |
#| "If you fill it, it will be replaced instead of default event page link. "
|
@@ -2309,50 +2311,50 @@ msgstr ""
|
|
2309 |
"Pokud toto vyplníte, nahradí se místo výchozího odkazu na stránku události. "
|
2310 |
"Vložte celý odkaz včetně http (s): //"
|
2311 |
|
2312 |
-
#: app/features/fes/form.php:
|
2313 |
msgid "Remove Image"
|
2314 |
msgstr "Odebrat obrázek"
|
2315 |
|
2316 |
-
#: app/features/fes/form.php:
|
2317 |
#: app/features/labels.php:223 app/features/mec.php:465
|
2318 |
#: app/features/mec/meta_boxes/filter.php:72
|
2319 |
-
#: app/features/mec/meta_boxes/filter.php:133 app/libraries/main.php:
|
2320 |
-
#: app/libraries/main.php:
|
2321 |
#: app/skins/single/default.php:221 app/skins/single/default.php:458
|
2322 |
#: app/skins/single/m1.php:76 app/skins/single/modern.php:266
|
2323 |
msgid "Labels"
|
2324 |
msgstr "Štítky"
|
2325 |
|
2326 |
-
#: app/features/fes/form.php:
|
2327 |
#: app/features/mec/meta_boxes/filter.php:73
|
2328 |
#: app/features/mec/meta_boxes/filter.php:151
|
2329 |
msgid "Tags"
|
2330 |
msgstr "Tagy"
|
2331 |
|
2332 |
-
#: app/features/fes/form.php:
|
2333 |
msgid "Insert your desired tags, comma separated."
|
2334 |
msgstr "Vložte požadované tagy oddělené čárkami."
|
2335 |
|
2336 |
-
#: app/features/fes/form.php:
|
2337 |
-
#: app/features/mec/modules.php:43 app/features/mec/settings.php:
|
2338 |
#: app/features/speakers.php:61 app/libraries/hourlyschedule.php:69
|
2339 |
#: app/libraries/hourlyschedule.php:90 app/libraries/hourlyschedule.php:135
|
2340 |
-
#: app/libraries/main.php:
|
2341 |
-
#: app/libraries/main.php:
|
2342 |
msgid "Speakers"
|
2343 |
msgstr "Řečníci"
|
2344 |
|
2345 |
-
#: app/features/fes/form.php:
|
2346 |
msgid "Speakers Names"
|
2347 |
msgstr "Jméno řečníka"
|
2348 |
|
2349 |
-
#: app/features/fes/form.php:
|
2350 |
#, fuzzy
|
2351 |
#| msgid "Separate names with commas Similar Justin, Cris"
|
2352 |
msgid "Separate names with commas: Justin, Chris"
|
2353 |
msgstr "Oddělte jména čárkami - Novák Petr, Pavel"
|
2354 |
|
2355 |
-
#: app/features/fes/form.php:
|
2356 |
msgid "Submit"
|
2357 |
msgstr "Potvrdit"
|
2358 |
|
@@ -2390,7 +2392,7 @@ msgid "MEC - Import / Export"
|
|
2390 |
msgstr "MEC Import / Export"
|
2391 |
|
2392 |
#: app/features/ix.php:107 app/features/mec/support.php:73
|
2393 |
-
#: app/libraries/main.php:
|
2394 |
msgid "Import / Export"
|
2395 |
msgstr "Import / Export"
|
2396 |
|
@@ -2406,31 +2408,31 @@ msgstr "Nahrajte prosím zdrojový soubor."
|
|
2406 |
msgid "The file type should be CSV."
|
2407 |
msgstr "Typ souboru by měl být XML nebo ICS."
|
2408 |
|
2409 |
-
#: app/features/ix.php:224 app/features/ix.php:
|
2410 |
msgid "An error occurred during the file upload! Please check permissions!"
|
2411 |
msgstr "Při nahrávání souboru došlo k chybě! Zkontrolujte oprávnění!"
|
2412 |
|
2413 |
-
#: app/features/ix.php:280 app/libraries/main.php:
|
2414 |
-
#: app/libraries/main.php:
|
2415 |
msgid "Confirmed"
|
2416 |
msgstr "Potvrzeno"
|
2417 |
|
2418 |
-
#: app/features/ix.php:281 app/libraries/main.php:
|
2419 |
-
#: app/libraries/main.php:
|
2420 |
msgid "Rejected"
|
2421 |
msgstr "Odmítnuto"
|
2422 |
|
2423 |
#: app/features/ix.php:285 app/features/mec/booking.php:1032
|
2424 |
#: app/features/mec/booking.php:1054 app/features/mec/modules.php:441
|
2425 |
#: app/features/mec/modules.php:463 app/features/mec/notifications.php:1597
|
2426 |
-
#: app/features/mec/notifications.php:1619 app/features/mec/settings.php:
|
2427 |
-
#: app/features/mec/settings.php:
|
2428 |
-
#: app/features/mec/single.php:522 app/libraries/main.php:
|
2429 |
msgid "Verified"
|
2430 |
msgstr "Ověřeno"
|
2431 |
|
2432 |
#: app/features/ix.php:286 app/features/labels.php:118
|
2433 |
-
#: app/features/labels.php:144 app/libraries/main.php:
|
2434 |
msgid "Canceled"
|
2435 |
msgstr "Zrušená"
|
2436 |
|
@@ -2450,77 +2452,77 @@ msgstr "Nebyly nalezeny žádné rezervace!"
|
|
2450 |
msgid "Please upload the feed file."
|
2451 |
msgstr "Nahrajte prosím zdrojový soubor."
|
2452 |
|
2453 |
-
#: app/features/ix.php:
|
2454 |
#, fuzzy
|
2455 |
#| msgid "Please upload the feed file."
|
2456 |
msgid "Please upload an XML or an ICS file."
|
2457 |
msgstr "Nahrajte prosím zdrojový soubor."
|
2458 |
|
2459 |
-
#: app/features/ix.php:
|
2460 |
msgid "The file type should be XML or ICS."
|
2461 |
msgstr "Typ souboru by měl být XML nebo ICS."
|
2462 |
|
2463 |
-
#: app/features/ix.php:
|
2464 |
msgid "The events are imported successfully!"
|
2465 |
msgstr "Události byly úspěšně importovány!"
|
2466 |
|
2467 |
-
#: app/features/ix.php:
|
2468 |
msgid "Third Party plugin is not installed and activated!"
|
2469 |
msgstr "Plugin třetích stran není nainstalován a aktivován!"
|
2470 |
|
2471 |
-
#: app/features/ix.php:
|
2472 |
msgid "Third Party plugin is invalid!"
|
2473 |
msgstr "Plugin třetí strany je neplatný!"
|
2474 |
|
2475 |
-
#: app/features/ix.php:
|
2476 |
#, fuzzy
|
2477 |
#| msgid "Both of API key and Calendar ID are required!"
|
2478 |
msgid "API key and Calendar ID are required!"
|
2479 |
msgstr "Obě hodnoty: klíč API a ID kalendáře jsou povinné!"
|
2480 |
|
2481 |
-
#: app/features/ix.php:
|
2482 |
#, fuzzy
|
2483 |
#| msgid "Please select some events to import!"
|
2484 |
msgid "Please select events to import!"
|
2485 |
msgstr "Vyberte události, které chcete importovat!"
|
2486 |
|
2487 |
-
#: app/features/ix.php:
|
2488 |
#, fuzzy
|
2489 |
#| msgid "Both of API key and Group URL are required!"
|
2490 |
msgid "API key and Group URL are required!"
|
2491 |
msgstr "Obě hodnoty: klíč API a skupina URL jsou povinné!"
|
2492 |
|
2493 |
-
#: app/features/ix.php:
|
2494 |
msgid "Check at Meetup"
|
2495 |
msgstr "Ověřit Meetup"
|
2496 |
|
2497 |
-
#: app/features/ix.php:
|
2498 |
msgid "Organizer Tel"
|
2499 |
msgstr "Organizátor Tel"
|
2500 |
|
2501 |
-
#: app/features/ix.php:
|
2502 |
msgid "Organizer Email"
|
2503 |
msgstr "Organizátor Email"
|
2504 |
|
2505 |
# Client Secret dle kontextu
|
2506 |
-
#: app/features/ix.php:
|
2507 |
#, fuzzy
|
2508 |
#| msgid "All of Client ID, Client Secret and Calendar ID are required!"
|
2509 |
msgid "All of Client ID, Client Secret, and Calendar ID are required!"
|
2510 |
msgstr ""
|
2511 |
"Vyžadují se všechny klientské ID, tajné informace klienta a ID kalendáře!"
|
2512 |
|
2513 |
-
#: app/features/ix.php:
|
2514 |
#, fuzzy, php-format
|
2515 |
#| msgid "All seems good! Please click %s for authenticating your app."
|
2516 |
msgid "All seems good! Please click %s to authenticate your app."
|
2517 |
msgstr "Vše vypadá dobře! Klikněte na % s pro ověření vaší aplikace."
|
2518 |
|
2519 |
-
#: app/features/ix.php:
|
2520 |
msgid "here"
|
2521 |
msgstr ""
|
2522 |
|
2523 |
-
#: app/features/ix.php:
|
2524 |
#, fuzzy
|
2525 |
#| msgid "All of Client App, Client Secret and Calendar ID are required!"
|
2526 |
msgid "Client App, Client Secret, and Calendar ID are all required!"
|
@@ -2528,28 +2530,28 @@ msgstr ""
|
|
2528 |
"Všechny klientské aplikace, tajné informace klienta a ID kalendáře jsou "
|
2529 |
"povinné!"
|
2530 |
|
2531 |
-
#: app/features/ix.php:
|
2532 |
#, fuzzy, php-format
|
2533 |
#| msgid "%s events added to Google Calendar successfully."
|
2534 |
msgid "%s events added to Google Calendar with success."
|
2535 |
msgstr "% s události byly přidané do Google kalendáře úspěšně."
|
2536 |
|
2537 |
-
#: app/features/ix.php:
|
2538 |
#, fuzzy, php-format
|
2539 |
#| msgid "%s previously added events get updated."
|
2540 |
msgid "%s Updated previously added events."
|
2541 |
msgstr "% s dříve přidané události byly aktualizovány."
|
2542 |
|
2543 |
-
#: app/features/ix.php:
|
2544 |
#, php-format
|
2545 |
msgid "%s events failed to add for following reasons: %s"
|
2546 |
msgstr "% s události se nepodařilo přidat z následujících důvodů: % s"
|
2547 |
|
2548 |
-
#: app/features/ix.php:
|
2549 |
msgid "Please insert your Facebook page's link."
|
2550 |
msgstr "Vložte prosím odkaz na svou stránku na Facebooku."
|
2551 |
|
2552 |
-
#: app/features/ix.php:
|
2553 |
#, fuzzy
|
2554 |
#| msgid ""
|
2555 |
#| "We couldn't recognize your Facebook page. Please check it and provide us "
|
@@ -2561,7 +2563,7 @@ msgstr ""
|
|
2561 |
"Vaši facebookovou stránku jsme nemohli rozpoznat. Zkontrolujte to a "
|
2562 |
"poskytněte nám platný odkaz na stránku Facebooku."
|
2563 |
|
2564 |
-
#: app/features/ix.php:
|
2565 |
msgid "Please insert your facebook page's link."
|
2566 |
msgstr "Vložte prosím odkaz na svou facebookovou stránku."
|
2567 |
|
@@ -2735,7 +2737,7 @@ msgstr "Přidat do Google kalendáře"
|
|
2735 |
|
2736 |
#: app/features/ix/export_g_calendar.php:93 app/features/mec/booking.php:1034
|
2737 |
#: app/features/mec/modules.php:443 app/features/mec/notifications.php:1599
|
2738 |
-
#: app/features/mec/settings.php:
|
2739 |
msgid "Checking ..."
|
2740 |
msgstr "Ověřování ..."
|
2741 |
|
@@ -2760,16 +2762,16 @@ msgstr ""
|
|
2760 |
msgid "XML Feed"
|
2761 |
msgstr "XML Feed"
|
2762 |
|
2763 |
-
#: app/features/ix/import.php:30 app/features/ix/import.php:
|
2764 |
-
#: app/features/ix/import.php:
|
2765 |
msgid "Upload & Import"
|
2766 |
msgstr "Nahrát & importovat"
|
2767 |
|
2768 |
-
#: app/features/ix/import.php:
|
2769 |
msgid "Import .ics File"
|
2770 |
msgstr "Import .ics souboru"
|
2771 |
|
2772 |
-
#: app/features/ix/import.php:
|
2773 |
#, php-format
|
2774 |
msgid ""
|
2775 |
"ICS format supports by many different service providers like Facebook. Apple "
|
@@ -2779,11 +2781,11 @@ msgstr ""
|
|
2779 |
"Apple Calendar atd. Můžete importovat svůj ics soubor do %s použitím tohoto "
|
2780 |
"formuláře."
|
2781 |
|
2782 |
-
#: app/features/ix/import.php:
|
2783 |
msgid "ICS Feed"
|
2784 |
msgstr "ICS Feed"
|
2785 |
|
2786 |
-
#: app/features/ix/import.php:
|
2787 |
#: app/features/mec/booking.php:91 app/features/mec/booking.php:435
|
2788 |
#: app/features/mec/booking.php:451 app/features/mec/booking.php:469
|
2789 |
#: app/features/mec/booking.php:546
|
@@ -2795,7 +2797,7 @@ msgstr "ICS Feed"
|
|
2795 |
msgid "%s is required to use this feature."
|
2796 |
msgstr "% s je vyžadováno pro použití této funkce."
|
2797 |
|
2798 |
-
#: app/features/ix/import.php:
|
2799 |
#: app/features/ix/sync.php:22 app/features/mec/booking.php:91
|
2800 |
#: app/features/mec/booking.php:435 app/features/mec/booking.php:451
|
2801 |
#: app/features/mec/booking.php:469 app/features/mec/booking.php:546
|
@@ -2813,13 +2815,13 @@ msgstr "% s je vyžadováno pro použití této funkce."
|
|
2813 |
msgid "Pro version of Modern Events Calendar"
|
2814 |
msgstr "Pro verze doplňku Modern Events Calendar"
|
2815 |
|
2816 |
-
#: app/features/ix/import.php:
|
2817 |
#, fuzzy
|
2818 |
#| msgid "Import .ics File"
|
2819 |
msgid "Import Booking CSV File"
|
2820 |
msgstr "Import .ics souboru"
|
2821 |
|
2822 |
-
#: app/features/ix/import.php:
|
2823 |
#, php-format
|
2824 |
msgid ""
|
2825 |
"You can export bookings from %s using the booking menu in source website. "
|
@@ -2827,13 +2829,13 @@ msgid ""
|
|
2827 |
"form in to your target website."
|
2828 |
msgstr ""
|
2829 |
|
2830 |
-
#: app/features/ix/import.php:
|
2831 |
msgid ""
|
2832 |
"Please note that you should create (or imports) events and tickets before "
|
2833 |
"importing the bookings otherwise booking won't import due to lack of data."
|
2834 |
msgstr ""
|
2835 |
|
2836 |
-
#: app/features/ix/import.php:
|
2837 |
#, fuzzy
|
2838 |
#| msgid "File"
|
2839 |
msgid "CSV File"
|
@@ -3234,8 +3236,8 @@ msgstr "Událost %s"
|
|
3234 |
|
3235 |
#: app/features/locations.php:59 app/features/mec.php:466
|
3236 |
#: app/features/mec/dashboard.php:281 app/features/mec/meta_boxes/filter.php:70
|
3237 |
-
#: app/features/mec/meta_boxes/filter.php:97 app/libraries/main.php:
|
3238 |
-
#: app/libraries/main.php:
|
3239 |
msgid "Locations"
|
3240 |
msgstr "Umístění"
|
3241 |
|
@@ -3300,7 +3302,7 @@ msgstr "Název místa"
|
|
3300 |
msgid "eg. City Hall"
|
3301 |
msgstr "např. Radnice"
|
3302 |
|
3303 |
-
#: app/features/locations.php:346 app/features/mec/settings.php:
|
3304 |
#: app/features/popup/event.php:143 app/widgets/single.php:117
|
3305 |
msgid "Event Location"
|
3306 |
msgstr "Místo události"
|
@@ -3340,8 +3342,8 @@ msgstr "Vyberte obrázek"
|
|
3340 |
msgid "Don't show map in single event page"
|
3341 |
msgstr "Nezobrazovat mapu na jednostránkové události"
|
3342 |
|
3343 |
-
#: app/features/locations.php:403 app/libraries/main.php:
|
3344 |
-
#: app/libraries/main.php:
|
3345 |
msgid "Other Locations"
|
3346 |
msgstr "Další místa"
|
3347 |
|
@@ -3429,7 +3431,7 @@ msgstr "Podpora"
|
|
3429 |
#: app/features/mec.php:467 app/features/mec/dashboard.php:288
|
3430 |
#: app/features/mec/meta_boxes/filter.php:71
|
3431 |
#: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
|
3432 |
-
#: app/libraries/main.php:
|
3433 |
msgid "Organizers"
|
3434 |
msgstr "Organizátoři"
|
3435 |
|
@@ -3550,7 +3552,7 @@ msgid "Modern Events Calendar (Lite)"
|
|
3550 |
msgstr "Modern Events Calendar (Lite)"
|
3551 |
|
3552 |
#: app/features/mec.php:1207 app/features/mec/dashboard.php:299
|
3553 |
-
#: app/features/mec/settings.php:
|
3554 |
msgid "Upcoming Events"
|
3555 |
msgstr "Nadcházející události"
|
3556 |
|
@@ -3635,7 +3637,7 @@ msgstr ""
|
|
3635 |
|
3636 |
#: app/features/mec/booking.php:70 app/features/mec/messages.php:13
|
3637 |
#: app/features/mec/modules.php:15 app/features/mec/notifications.php:12
|
3638 |
-
#: app/features/mec/settings.php:
|
3639 |
#: app/features/mec/styling.php:35
|
3640 |
msgid "Search..."
|
3641 |
msgstr "Vyhledávání ..."
|
@@ -3652,9 +3654,9 @@ msgstr "Vyhledávání ..."
|
|
3652 |
#: app/features/mec/notifications.php:1532
|
3653 |
#: app/features/mec/notifications.php:1544
|
3654 |
#: app/features/mec/notifications.php:1616
|
3655 |
-
#: app/features/mec/notifications.php:1630 app/features/mec/settings.php:
|
3656 |
-
#: app/features/mec/settings.php:
|
3657 |
-
#: app/features/mec/settings.php:
|
3658 |
#: app/features/mec/single.php:21 app/features/mec/single.php:467
|
3659 |
#: app/features/mec/single.php:477 app/features/mec/single.php:519
|
3660 |
#: app/features/mec/single.php:533 app/features/mec/styles.php:11
|
@@ -3909,8 +3911,8 @@ msgid ""
|
|
3909 |
msgstr ""
|
3910 |
|
3911 |
#: app/features/mec/booking.php:286 app/features/mec/booking.php:288
|
3912 |
-
#: app/features/mec/booking.php:298 app/features/mec/settings.php:
|
3913 |
-
#: app/features/mec/settings.php:
|
3914 |
msgid "Thank You Page"
|
3915 |
msgstr "Stránka s poděkováním"
|
3916 |
|
@@ -3923,15 +3925,15 @@ msgstr ""
|
|
3923 |
"vypnout, ponechte ji prázdnou."
|
3924 |
|
3925 |
#: app/features/mec/booking.php:306 app/features/mec/booking.php:311
|
3926 |
-
#: app/features/mec/settings.php:
|
3927 |
msgid "Thank You Page Time Interval"
|
3928 |
msgstr "Stránka s poděkováním časového intervalu"
|
3929 |
|
3930 |
-
#: app/features/mec/booking.php:308 app/features/mec/settings.php:
|
3931 |
msgid "2000 mean 2 seconds"
|
3932 |
msgstr "2000 znamená 2 vteřiny"
|
3933 |
|
3934 |
-
#: app/features/mec/booking.php:312 app/features/mec/settings.php:
|
3935 |
msgid ""
|
3936 |
"Waiting time before redirecting to thank you page. It's in miliseconds so "
|
3937 |
"2000 means 2 seconds."
|
@@ -4001,7 +4003,7 @@ msgstr "Automatické ověření pro placené rezervace"
|
|
4001 |
msgid "Send confirmation email in auto confirmation mode"
|
4002 |
msgstr ""
|
4003 |
|
4004 |
-
#: app/features/mec/booking.php:432 app/libraries/main.php:
|
4005 |
#, fuzzy
|
4006 |
#| msgid "Booking Style"
|
4007 |
msgid "Booking Shortcode"
|
@@ -4041,7 +4043,7 @@ msgstr ""
|
|
4041 |
"novou nabídku na řídícím panelu > Rezervace"
|
4042 |
|
4043 |
#: app/features/mec/booking.php:466 app/features/mec/booking.php:854
|
4044 |
-
#: app/libraries/main.php:
|
4045 |
msgid "Taxes / Fees"
|
4046 |
msgstr "Daně / poplatky"
|
4047 |
|
@@ -4053,7 +4055,7 @@ msgstr "Povolit modul daní / poplatků"
|
|
4053 |
msgid "Add Fee"
|
4054 |
msgstr "Přidat poplatek"
|
4055 |
|
4056 |
-
#: app/features/mec/booking.php:543 app/libraries/main.php:
|
4057 |
msgid "Ticket Variations & Options"
|
4058 |
msgstr "Varianty a možnosti vstupenek"
|
4059 |
|
@@ -4214,20 +4216,20 @@ msgstr ""
|
|
4214 |
|
4215 |
#: app/features/mec/booking.php:1029 app/features/mec/messages.php:78
|
4216 |
#: app/features/mec/modules.php:438 app/features/mec/notifications.php:1594
|
4217 |
-
#: app/features/mec/settings.php:
|
4218 |
#: app/features/mec/styles.php:62 app/features/mec/styling.php:340
|
4219 |
msgid "Saved"
|
4220 |
msgstr "Uloženo"
|
4221 |
|
4222 |
#: app/features/mec/booking.php:1030 app/features/mec/messages.php:79
|
4223 |
#: app/features/mec/modules.php:439 app/features/mec/notifications.php:1595
|
4224 |
-
#: app/features/mec/settings.php:
|
4225 |
#: app/features/mec/styles.php:63 app/features/mec/styling.php:341
|
4226 |
msgid "Settings Saved!"
|
4227 |
msgstr "Nastavení uložena!"
|
4228 |
|
4229 |
#: app/features/mec/booking.php:1056 app/features/mec/modules.php:465
|
4230 |
-
#: app/features/mec/notifications.php:1621 app/features/mec/settings.php:
|
4231 |
#: app/features/mec/single.php:524
|
4232 |
msgid "Please Refresh Page"
|
4233 |
msgstr "Prosím obnovte stránku"
|
@@ -4357,7 +4359,7 @@ msgid "Download Settings"
|
|
4357 |
msgstr "Stáhnout nastavení"
|
4358 |
|
4359 |
#: app/features/mec/messages.php:28 app/features/mec/support-page.php:102
|
4360 |
-
#: app/features/mec/support.php:66 app/libraries/main.php:
|
4361 |
msgid "Messages"
|
4362 |
msgstr "Zprávy"
|
4363 |
|
@@ -4388,9 +4390,9 @@ msgstr "Vzhled"
|
|
4388 |
#: app/features/mec/meta_boxes/display_options.php:974
|
4389 |
#: app/features/mec/meta_boxes/display_options.php:1305
|
4390 |
#: app/features/mec/meta_boxes/display_options.php:1603
|
4391 |
-
#: app/features/mec/settings.php:
|
4392 |
-
#: app/features/mec/settings.php:
|
4393 |
-
#: app/features/mec/settings.php:
|
4394 |
#: app/features/popup/shortcode.php:68 app/features/popup/shortcode.php:102
|
4395 |
#: app/features/popup/shortcode.php:199 app/features/popup/shortcode.php:236
|
4396 |
#: app/features/popup/shortcode.php:250 app/features/popup/shortcode.php:283
|
@@ -4401,8 +4403,8 @@ msgstr "Klasický"
|
|
4401 |
|
4402 |
#: app/features/mec/meta_boxes/display_options.php:44
|
4403 |
#: app/features/mec/meta_boxes/display_options.php:296
|
4404 |
-
#: app/features/mec/settings.php:
|
4405 |
-
#: app/features/mec/settings.php:
|
4406 |
#: app/features/popup/shortcode.php:73 app/features/popup/shortcode.php:112
|
4407 |
msgid "Minimal"
|
4408 |
msgstr "Minimální"
|
@@ -4413,10 +4415,10 @@ msgstr "Minimální"
|
|
4413 |
#: app/features/mec/meta_boxes/display_options.php:976
|
4414 |
#: app/features/mec/meta_boxes/display_options.php:1303
|
4415 |
#: app/features/mec/meta_boxes/display_options.php:1605
|
4416 |
-
#: app/features/mec/settings.php:
|
4417 |
-
#: app/features/mec/settings.php:
|
4418 |
-
#: app/features/mec/settings.php:
|
4419 |
-
#: app/features/mec/settings.php:
|
4420 |
#: app/features/popup/shortcode.php:78 app/features/popup/shortcode.php:117
|
4421 |
#: app/features/popup/shortcode.php:185 app/features/popup/shortcode.php:209
|
4422 |
#: app/features/popup/shortcode.php:263 app/features/popup/shortcode.php:306
|
@@ -4424,13 +4426,13 @@ msgid "Modern"
|
|
4424 |
msgstr "Moderní"
|
4425 |
|
4426 |
#: app/features/mec/meta_boxes/display_options.php:46
|
4427 |
-
#: app/features/mec/settings.php:
|
4428 |
#: app/features/popup/shortcode.php:83
|
4429 |
msgid "Standard"
|
4430 |
msgstr "Standardní"
|
4431 |
|
4432 |
#: app/features/mec/meta_boxes/display_options.php:47
|
4433 |
-
#: app/features/mec/settings.php:
|
4434 |
#: app/features/popup/shortcode.php:88
|
4435 |
msgid "Accordion"
|
4436 |
msgstr "Akordeon"
|
@@ -4839,9 +4841,9 @@ msgstr "Přepínač pro oddělovník měsíce"
|
|
4839 |
#: app/features/mec/meta_boxes/display_options.php:975
|
4840 |
#: app/features/mec/meta_boxes/display_options.php:1304
|
4841 |
#: app/features/mec/meta_boxes/display_options.php:1604
|
4842 |
-
#: app/features/mec/settings.php:
|
4843 |
-
#: app/features/mec/settings.php:
|
4844 |
-
#: app/features/mec/settings.php:
|
4845 |
#: app/features/popup/shortcode.php:107 app/features/popup/shortcode.php:146
|
4846 |
#: app/features/popup/shortcode.php:161 app/features/popup/shortcode.php:204
|
4847 |
#: app/features/popup/shortcode.php:268 app/features/popup/shortcode.php:301
|
@@ -4851,8 +4853,8 @@ msgstr "Čistý"
|
|
4851 |
#: app/features/mec/meta_boxes/display_options.php:298
|
4852 |
#: app/features/mec/meta_boxes/display_options.php:714
|
4853 |
#: app/features/mec/meta_boxes/display_options.php:978
|
4854 |
-
#: app/features/mec/settings.php:
|
4855 |
-
#: app/features/mec/settings.php:
|
4856 |
#: app/features/popup/shortcode.php:122 app/features/popup/shortcode.php:171
|
4857 |
#: app/features/popup/shortcode.php:219
|
4858 |
msgid "Simple"
|
@@ -4866,8 +4868,8 @@ msgstr "Plněbarevný"
|
|
4866 |
#: app/features/mec/meta_boxes/display_options.php:300
|
4867 |
#: app/features/mec/meta_boxes/display_options.php:713
|
4868 |
#: app/features/mec/meta_boxes/display_options.php:977
|
4869 |
-
#: app/features/mec/settings.php:
|
4870 |
-
#: app/features/mec/settings.php:
|
4871 |
#: app/features/popup/shortcode.php:132 app/features/popup/shortcode.php:166
|
4872 |
#: app/features/popup/shortcode.php:214
|
4873 |
msgid "Novel"
|
@@ -4917,15 +4919,15 @@ msgstr "Výchozí zobrazení"
|
|
4917 |
|
4918 |
#: app/features/mec/meta_boxes/display_options.php:700
|
4919 |
#: app/features/mec/meta_boxes/display_options.php:724
|
4920 |
-
#: app/libraries/main.php:364 app/libraries/main.php:
|
4921 |
-
#: app/libraries/main.php:
|
4922 |
msgid "List View"
|
4923 |
msgstr "Zobrazení seznamu"
|
4924 |
|
4925 |
#: app/features/mec/meta_boxes/display_options.php:701
|
4926 |
#: app/features/mec/meta_boxes/display_options.php:745
|
4927 |
-
#: app/libraries/main.php:365 app/libraries/main.php:
|
4928 |
-
#: app/libraries/main.php:
|
4929 |
msgid "Grid View"
|
4930 |
msgstr "Zobrazení mřížky"
|
4931 |
|
@@ -4939,8 +4941,8 @@ msgstr "Zobrazení rozvrhu"
|
|
4939 |
|
4940 |
#: app/features/mec/meta_boxes/display_options.php:703
|
4941 |
#: app/features/mec/meta_boxes/display_options.php:766
|
4942 |
-
#: app/libraries/main.php:368 app/libraries/main.php:
|
4943 |
-
#: app/libraries/main.php:
|
4944 |
msgid "Yearly View"
|
4945 |
msgstr "Roční zobrazení"
|
4946 |
|
@@ -4951,15 +4953,15 @@ msgstr "Měsíční / kalendářní zobrazení"
|
|
4951 |
|
4952 |
#: app/features/mec/meta_boxes/display_options.php:705
|
4953 |
#: app/features/mec/meta_boxes/display_options.php:815
|
4954 |
-
#: app/libraries/main.php:371 app/libraries/main.php:
|
4955 |
-
#: app/libraries/main.php:
|
4956 |
msgid "Weekly View"
|
4957 |
msgstr "Týdenní zobrazení"
|
4958 |
|
4959 |
#: app/features/mec/meta_boxes/display_options.php:706
|
4960 |
#: app/features/mec/meta_boxes/display_options.php:825
|
4961 |
-
#: app/libraries/main.php:370 app/libraries/main.php:
|
4962 |
-
#: app/libraries/main.php:
|
4963 |
msgid "Daily View"
|
4964 |
msgstr "Denní zobrazení"
|
4965 |
|
@@ -5397,7 +5399,7 @@ msgstr "Vložte požadované tagy oddělené čárkou."
|
|
5397 |
msgid "Choose your desired authors for filtering the events."
|
5398 |
msgstr "Vyberte požadované autory pro filtrování událostí."
|
5399 |
|
5400 |
-
#: app/features/mec/meta_boxes/filter.php:183 app/features/mec/settings.php:
|
5401 |
msgid "Expired Events"
|
5402 |
msgstr "Události vypršely"
|
5403 |
|
@@ -5477,11 +5479,11 @@ msgstr "Zobrazit vyhledávací formulář"
|
|
5477 |
#: app/features/mec/meta_boxes/search_form.php:723
|
5478 |
#: app/features/mec/meta_boxes/search_form.php:808
|
5479 |
#: app/features/mec/meta_boxes/search_form.php:929
|
5480 |
-
#: app/features/mec/settings.php:
|
5481 |
#: app/features/mec/single.php:440 app/features/search.php:86
|
5482 |
#: app/features/speakers.php:60 app/features/speakers.php:283
|
5483 |
-
#: app/libraries/main.php:
|
5484 |
-
#: app/libraries/skins.php:
|
5485 |
msgid "Speaker"
|
5486 |
msgstr "Řečník"
|
5487 |
|
@@ -5496,9 +5498,9 @@ msgstr "Řečník"
|
|
5496 |
#: app/features/mec/meta_boxes/search_form.php:730
|
5497 |
#: app/features/mec/meta_boxes/search_form.php:815
|
5498 |
#: app/features/mec/meta_boxes/search_form.php:936
|
5499 |
-
#: app/features/mec/settings.php:
|
5500 |
#: app/features/mec/single.php:449 app/features/search.php:92
|
5501 |
-
#: app/libraries/skins.php:
|
5502 |
msgid "Tag"
|
5503 |
msgstr "Štítek"
|
5504 |
|
@@ -5656,7 +5658,7 @@ msgstr ""
|
|
5656 |
"Po povolení a uložení nastavení byste měli stránku znovu načíst a zobrazit "
|
5657 |
"novou nabídku na řídícím panelu > MEC"
|
5658 |
|
5659 |
-
#: app/features/mec/modules.php:58 app/libraries/main.php:
|
5660 |
#, fuzzy
|
5661 |
#| msgid "Google Maps Options"
|
5662 |
msgid "Map Options"
|
@@ -5680,8 +5682,8 @@ msgstr "Google Maps API"
|
|
5680 |
msgid "Google Map Options"
|
5681 |
msgstr "Možnosti Google Maps"
|
5682 |
|
5683 |
-
#: app/features/mec/modules.php:76 app/features/mec/settings.php:
|
5684 |
-
#: app/features/mec/settings.php:
|
5685 |
msgid "Required!"
|
5686 |
msgstr "Požadované!"
|
5687 |
|
@@ -5749,7 +5751,7 @@ msgstr ""
|
|
5749 |
msgid "Fullscreen Button"
|
5750 |
msgstr ""
|
5751 |
|
5752 |
-
#: app/features/mec/modules.php:167 app/libraries/main.php:
|
5753 |
msgid "Export Options"
|
5754 |
msgstr "Možnosti exportu"
|
5755 |
|
@@ -5764,7 +5766,7 @@ msgstr ""
|
|
5764 |
msgid "Google Calendar"
|
5765 |
msgstr "Kalendář Google"
|
5766 |
|
5767 |
-
#: app/features/mec/modules.php:194 app/libraries/main.php:
|
5768 |
#: app/modules/local-time/details.php:45 app/modules/local-time/type1.php:42
|
5769 |
#: app/widgets/single.php:101
|
5770 |
msgid "Local Time"
|
@@ -5776,7 +5778,7 @@ msgstr ""
|
|
5776 |
"Zobrazit čas události na základě místního času návštěvníka na stránce "
|
5777 |
"události"
|
5778 |
|
5779 |
-
#: app/features/mec/modules.php:208 app/libraries/main.php:
|
5780 |
#: app/modules/qrcode/details.php:38 app/widgets/single.php:157
|
5781 |
msgid "QR Code"
|
5782 |
msgstr "QR kód"
|
@@ -5786,7 +5788,7 @@ msgid "Show QR code of event in details page and booking invoice"
|
|
5786 |
msgstr ""
|
5787 |
"Zobrazte QR kód události na stránce s podrobnostmi a fakturaci za rezervaci"
|
5788 |
|
5789 |
-
#: app/features/mec/modules.php:226 app/libraries/main.php:
|
5790 |
#: app/modules/weather/darksky.php:15 app/modules/weather/weatherapi.php:16
|
5791 |
msgid "Weather"
|
5792 |
msgstr "Počasí"
|
@@ -5825,7 +5827,7 @@ msgstr "Zobrazit tlačítko Změna jednotek počasí"
|
|
5825 |
msgid "Show social network module"
|
5826 |
msgstr "Zobrazit modul sociální sítě"
|
5827 |
|
5828 |
-
#: app/features/mec/modules.php:299 app/libraries/main.php:
|
5829 |
#: app/modules/next-event/details.php:136 app/widgets/single.php:141
|
5830 |
msgid "Next Event"
|
5831 |
msgstr "Další událost"
|
@@ -5886,7 +5888,7 @@ msgstr "Přidejte do uživatelského profilu rezervační aktivitu"
|
|
5886 |
msgid "Add events menu to user profile"
|
5887 |
msgstr "Přidejte do uživatelského profilu rezervační aktivitu"
|
5888 |
|
5889 |
-
#: app/features/mec/modules.php:376 app/libraries/main.php:
|
5890 |
#, fuzzy
|
5891 |
#| msgid "Mailchimp Integration"
|
5892 |
msgid "LearnDash Integration"
|
@@ -5904,7 +5906,7 @@ msgstr "Povolit integraci Mailchimp"
|
|
5904 |
msgid "LearnDash plugin should be installed and activated."
|
5905 |
msgstr "Plugin třetích stran není nainstalován a aktivován!"
|
5906 |
|
5907 |
-
#: app/features/mec/modules.php:386 app/libraries/main.php:
|
5908 |
#, fuzzy
|
5909 |
#| msgid "Mailchimp Integration"
|
5910 |
msgid "PaidMembership Pro Integration"
|
@@ -6646,7 +6648,7 @@ msgstr "Stáhnout ICS soubor"
|
|
6646 |
msgid "Add to Google Calendar Links for next 20 occurrences"
|
6647 |
msgstr ""
|
6648 |
|
6649 |
-
#: app/features/mec/notifications.php:191 app/libraries/main.php:
|
6650 |
msgid "Booking Verification"
|
6651 |
msgstr "Ověření rezervace"
|
6652 |
|
@@ -6688,7 +6690,7 @@ msgid "Booking cancellation link."
|
|
6688 |
msgstr "Odkaz na zrušení rezervace."
|
6689 |
|
6690 |
#: app/features/mec/notifications.php:494 app/features/notifications.php:164
|
6691 |
-
#: app/libraries/main.php:
|
6692 |
#, fuzzy
|
6693 |
#| msgid "Booking Verification"
|
6694 |
msgid "Booking Rejection"
|
@@ -6722,7 +6724,7 @@ msgid "Send the email to the booked user"
|
|
6722 |
msgstr "Pošlete rezervační e-mail uživateli"
|
6723 |
|
6724 |
#: app/features/mec/notifications.php:666 app/features/notifications.php:170
|
6725 |
-
#: app/libraries/main.php:
|
6726 |
msgid "Booking Cancellation"
|
6727 |
msgstr "Zrušení rezervace"
|
6728 |
|
@@ -6744,7 +6746,7 @@ msgstr "Po zrušení rezervace odešle vybraným příjemcům upozornění."
|
|
6744 |
msgid "Admin booking management link."
|
6745 |
msgstr "Odkaz administrátora na správu rezervace."
|
6746 |
|
6747 |
-
#: app/features/mec/notifications.php:824 app/libraries/main.php:
|
6748 |
msgid "Admin"
|
6749 |
msgstr "Administrátor"
|
6750 |
|
@@ -6759,7 +6761,7 @@ msgid "Sent to admin to notify them that a new booking has been received."
|
|
6759 |
msgstr "Zašle správci informaci o přijetí nové rezervace."
|
6760 |
|
6761 |
#: app/features/mec/notifications.php:979 app/features/notifications.php:176
|
6762 |
-
#: app/libraries/main.php:
|
6763 |
#, fuzzy
|
6764 |
#| msgid "Event Color"
|
6765 |
msgid "Event Soldout"
|
@@ -6780,7 +6782,7 @@ msgid ""
|
|
6780 |
msgstr "Zašle správci informaci o přijetí nové rezervace."
|
6781 |
|
6782 |
#: app/features/mec/notifications.php:1121 app/features/notifications.php:173
|
6783 |
-
#: app/libraries/main.php:
|
6784 |
msgid "Booking Reminder"
|
6785 |
msgstr "Připomenutí rezervace"
|
6786 |
|
@@ -6809,8 +6811,8 @@ msgstr ""
|
|
6809 |
msgid "only once per hour"
|
6810 |
msgstr "pouze jednou denně"
|
6811 |
|
6812 |
-
#: app/features/mec/notifications.php:1203 app/libraries/main.php:
|
6813 |
-
#: app/libraries/main.php:
|
6814 |
#, fuzzy
|
6815 |
#| msgid "hours"
|
6816 |
msgid "Hours"
|
@@ -6825,7 +6827,7 @@ msgid "Please, insert comma to separate reminder hours."
|
|
6825 |
msgstr ""
|
6826 |
|
6827 |
#: app/features/mec/notifications.php:1288 app/features/popup/event.php:253
|
6828 |
-
#: app/libraries/main.php:
|
6829 |
msgid "New Event"
|
6830 |
msgstr "Nová událost"
|
6831 |
|
@@ -6861,8 +6863,8 @@ msgid "Status of event"
|
|
6861 |
msgstr "Stav události"
|
6862 |
|
6863 |
#: app/features/mec/notifications.php:1392
|
6864 |
-
#: app/features/mec/notifications.php:1503 app/features/mec/settings.php:
|
6865 |
-
#: app/features/mec/settings.php:
|
6866 |
msgid "Event Note"
|
6867 |
msgstr "Poznámka události"
|
6868 |
|
@@ -6871,7 +6873,7 @@ msgstr "Poznámka události"
|
|
6871 |
msgid "Admin events management link."
|
6872 |
msgstr "Odkaz administrátora na správu událostí."
|
6873 |
|
6874 |
-
#: app/features/mec/notifications.php:1408 app/libraries/main.php:
|
6875 |
msgid "User Event Publishing"
|
6876 |
msgstr "Publikování uživatelských událostí"
|
6877 |
|
@@ -6891,7 +6893,7 @@ msgstr ""
|
|
6891 |
"Odešle po zveřejnění nové události ze zadání z webových stránek (frontend) "
|
6892 |
"nebo z administrace webových stránek (backend)."
|
6893 |
|
6894 |
-
#: app/features/mec/notifications.php:1517 app/libraries/main.php:
|
6895 |
#, fuzzy
|
6896 |
#| msgid "Notifications"
|
6897 |
msgid "Notifications Per Event"
|
@@ -6983,62 +6985,62 @@ msgstr "Pole možností nemůže být prázdné!"
|
|
6983 |
msgid "There was an error please try again!"
|
6984 |
msgstr ""
|
6985 |
|
6986 |
-
#: app/features/mec/settings.php:
|
6987 |
msgid "Hide Events"
|
6988 |
msgstr "Skrýt události"
|
6989 |
|
6990 |
-
#: app/features/mec/settings.php:
|
6991 |
msgid "On Event Start"
|
6992 |
msgstr "Při spuštění události"
|
6993 |
|
6994 |
-
#: app/features/mec/settings.php:
|
6995 |
msgid "+1 Hour after start"
|
6996 |
msgstr "+1 hodinu po zahájení"
|
6997 |
|
6998 |
-
#: app/features/mec/settings.php:
|
6999 |
msgid "+2 Hours after start"
|
7000 |
msgstr "+2 hodiny po zahájení"
|
7001 |
|
7002 |
-
#: app/features/mec/settings.php:
|
7003 |
msgid "On Event End"
|
7004 |
msgstr "Na konci události"
|
7005 |
|
7006 |
-
#: app/features/mec/settings.php:
|
7007 |
msgid ""
|
7008 |
"This option is for showing start/end time of events on frontend of website."
|
7009 |
msgstr ""
|
7010 |
"Tato možnost slouží k zobrazení času zahájení / ukončení událostí na "
|
7011 |
"rozhraní webových stránek (frontend)."
|
7012 |
|
7013 |
-
#: app/features/mec/settings.php:
|
7014 |
#, fuzzy
|
7015 |
#| msgid "Multiple Day Events"
|
7016 |
msgid "Multiple Day Events Show"
|
7017 |
msgstr "Vícedenní událost"
|
7018 |
|
7019 |
-
#: app/features/mec/settings.php:
|
7020 |
#, fuzzy
|
7021 |
#| msgid "Show only first day on List/Grid/Slider skins"
|
7022 |
msgid "First day on list/grid/slider/agenda skins"
|
7023 |
msgstr "Zobrazit pouze první den ve vzhledu Seznam / Mřížka / Posuvník"
|
7024 |
|
7025 |
-
#: app/features/mec/settings.php:
|
7026 |
#, fuzzy
|
7027 |
#| msgid "Show only first day on all skins"
|
7028 |
msgid "First day on all skins"
|
7029 |
msgstr "Zobrazit pouze první den ve všech vzhledech"
|
7030 |
|
7031 |
-
#: app/features/mec/settings.php:
|
7032 |
#, fuzzy
|
7033 |
#| msgid "Add Day"
|
7034 |
msgid "All days"
|
7035 |
msgstr "Přidat den"
|
7036 |
|
7037 |
-
#: app/features/mec/settings.php:
|
7038 |
msgid "Multiple Day Events"
|
7039 |
msgstr "Vícedenní událost"
|
7040 |
|
7041 |
-
#: app/features/mec/settings.php:
|
7042 |
msgid ""
|
7043 |
"For showing all days of multiple day events on frontend or only show the "
|
7044 |
"first day."
|
@@ -7046,43 +7048,23 @@ msgstr ""
|
|
7046 |
"Pro zobrazení všech dnů vícedenních událostí na webových stránkách "
|
7047 |
"(frontend) nebo zobrazení pouze prvního dne."
|
7048 |
|
7049 |
-
#: app/features/mec/settings.php:
|
7050 |
msgid "Remove MEC Data on Plugin Uninstall"
|
7051 |
msgstr "Odebrat data při odinstalování doplňku MEC"
|
7052 |
|
7053 |
-
#: app/features/mec/settings.php:
|
7054 |
-
#, fuzzy
|
7055 |
-
#| msgid "Speakers Names"
|
7056 |
-
msgid "Sender Name"
|
7057 |
-
msgstr "Jméno řečníka"
|
7058 |
-
|
7059 |
-
#: app/features/mec/settings.php:115
|
7060 |
-
msgid "e.g. Webnus"
|
7061 |
-
msgstr ""
|
7062 |
-
|
7063 |
-
#: app/features/mec/settings.php:122
|
7064 |
-
#, fuzzy
|
7065 |
-
#| msgid "Organizer Email"
|
7066 |
-
msgid "Sender Email"
|
7067 |
-
msgstr "Organizátor Email"
|
7068 |
-
|
7069 |
-
#: app/features/mec/settings.php:125
|
7070 |
-
msgid "e.g. info@webnus.biz"
|
7071 |
-
msgstr ""
|
7072 |
-
|
7073 |
-
#: app/features/mec/settings.php:131
|
7074 |
msgid "Exclude Date Suffix"
|
7075 |
msgstr "Vyloučit příponu data"
|
7076 |
|
7077 |
-
#: app/features/mec/settings.php:
|
7078 |
msgid "Remove suffix from calendars"
|
7079 |
msgstr "Odebrat příponu z kalendářů"
|
7080 |
|
7081 |
-
#: app/features/mec/settings.php:
|
7082 |
msgid "Remove \"Th\" on calendar"
|
7083 |
msgstr "Odebrat „Th“ z kalendáře"
|
7084 |
|
7085 |
-
#: app/features/mec/settings.php:
|
7086 |
msgid ""
|
7087 |
"Checked this checkbox to remove 'Th' on calendar ( ex: '12Th' remove Th, "
|
7088 |
"showing just '12' )"
|
@@ -7090,24 +7072,24 @@ msgstr ""
|
|
7090 |
"Zaškrtnutím tohoto políčka odstraníte „Th“ z kalendáře (např .: „12Th“ "
|
7091 |
"odstraní Th, zobrazí se pouze „12“)"
|
7092 |
|
7093 |
-
#: app/features/mec/settings.php:
|
7094 |
msgid "Schema"
|
7095 |
msgstr "Schéma"
|
7096 |
|
7097 |
-
#: app/features/mec/settings.php:
|
7098 |
msgid "Enable Schema Code"
|
7099 |
msgstr "Povolit kód schématu"
|
7100 |
|
7101 |
-
#: app/features/mec/settings.php:
|
7102 |
msgid "You can enable/disable Schema scripts"
|
7103 |
msgstr "Můžete povolit nebo zakázat skripty schématu"
|
7104 |
|
7105 |
-
#: app/features/mec/settings.php:
|
7106 |
-
#: app/libraries/main.php:
|
7107 |
msgid "Weekdays"
|
7108 |
msgstr "Pracovní dny"
|
7109 |
|
7110 |
-
#: app/features/mec/settings.php:
|
7111 |
msgid ""
|
7112 |
"Proceed with caution. Default is set to Monday, Tuesday, Wednesday, Thursday "
|
7113 |
"and Friday ( you can change 'Week Starts' on WordPress Dashboard > Settings "
|
@@ -7117,11 +7099,11 @@ msgstr ""
|
|
7117 |
"Pátek (můžete to změnit pomocí „Začátek týdne“ na řídícím panelu WordPress > "
|
7118 |
"Nastavení > Obecné - spodní část stránky)."
|
7119 |
|
7120 |
-
#: app/features/mec/settings.php:
|
7121 |
msgid "Weekends"
|
7122 |
msgstr "Víkendy"
|
7123 |
|
7124 |
-
#: app/features/mec/settings.php:
|
7125 |
#, fuzzy
|
7126 |
#| msgid ""
|
7127 |
#| "Proceed with caution. Default is set to Saturday and Sunday ( you can "
|
@@ -7136,158 +7118,198 @@ msgstr ""
|
|
7136 |
"to změnit pomocí „Začátek týdne“ na řídícím panelu WordPress > Nastavení > "
|
7137 |
"Obecné - dolní část stránky )."
|
7138 |
|
7139 |
-
#: app/features/mec/settings.php:
|
7140 |
#, fuzzy
|
7141 |
#| msgid "Date Format"
|
7142 |
msgid "Datepicker Format"
|
7143 |
msgstr "Formát data"
|
7144 |
|
7145 |
-
#: app/features/mec/settings.php:
|
7146 |
msgid "(Y-m-d)"
|
7147 |
msgstr ""
|
7148 |
|
7149 |
-
#: app/features/mec/settings.php:
|
7150 |
msgid "(d-m-Y)"
|
7151 |
msgstr ""
|
7152 |
|
7153 |
-
#: app/features/mec/settings.php:
|
7154 |
msgid "(Y/m/d)"
|
7155 |
msgstr ""
|
7156 |
|
7157 |
-
#: app/features/mec/settings.php:
|
7158 |
msgid "(m/d/Y)"
|
7159 |
msgstr ""
|
7160 |
|
7161 |
-
#: app/features/mec/settings.php:
|
7162 |
msgid "(Y.m.d)"
|
7163 |
msgstr ""
|
7164 |
|
7165 |
-
#: app/features/mec/settings.php:
|
7166 |
msgid "(d.m.Y)"
|
7167 |
msgstr ""
|
7168 |
|
7169 |
-
#: app/features/mec/settings.php:
|
7170 |
msgid "Midnight Hour"
|
7171 |
msgstr ""
|
7172 |
|
7173 |
-
#: app/features/mec/settings.php:
|
7174 |
msgid "12 AM"
|
7175 |
msgstr ""
|
7176 |
|
7177 |
-
#: app/features/mec/settings.php:
|
7178 |
msgid "1 AM"
|
7179 |
msgstr ""
|
7180 |
|
7181 |
-
#: app/features/mec/settings.php:
|
7182 |
msgid "2 AM"
|
7183 |
msgstr ""
|
7184 |
|
7185 |
-
#: app/features/mec/settings.php:
|
7186 |
msgid "3 AM"
|
7187 |
msgstr ""
|
7188 |
|
7189 |
-
#: app/features/mec/settings.php:
|
7190 |
msgid "4 AM"
|
7191 |
msgstr ""
|
7192 |
|
7193 |
-
#: app/features/mec/settings.php:
|
7194 |
msgid "5 AM"
|
7195 |
msgstr ""
|
7196 |
|
7197 |
-
#: app/features/mec/settings.php:
|
7198 |
msgid ""
|
7199 |
"12 AM is midnight by default but you can change it if your event ends after "
|
7200 |
"12 AM and you don't want those events considered as multiple days events!"
|
7201 |
msgstr ""
|
7202 |
|
7203 |
-
#: app/features/mec/settings.php:
|
7204 |
#, fuzzy
|
7205 |
#| msgid "Add Shortcode"
|
7206 |
msgid "Open \"Add Event\" as Popup"
|
7207 |
msgstr "Přidat zkrácený kód"
|
7208 |
|
7209 |
-
#: app/features/mec/settings.php:
|
7210 |
-
#: app/features/mec/settings.php:
|
7211 |
#: app/features/mec/single.php:111
|
7212 |
#, fuzzy
|
7213 |
#| msgid "Enabled"
|
7214 |
msgid "Enable"
|
7215 |
msgstr "Povoleno"
|
7216 |
|
7217 |
-
#: app/features/mec/settings.php:
|
7218 |
#, fuzzy
|
7219 |
#| msgid "Add Shortcode"
|
7220 |
msgid "Open \"Add Shortcode\" as Popup"
|
7221 |
msgstr "Přidat zkrácený kód"
|
7222 |
|
7223 |
# v kontextu
|
7224 |
-
#: app/features/mec/settings.php:
|
7225 |
#, fuzzy
|
7226 |
#| msgid "Featured Image"
|
7227 |
msgid "Include Event Featured Image in Feed"
|
7228 |
msgstr "Hlavní obrázek"
|
7229 |
|
7230 |
# v kontextu
|
7231 |
-
#: app/features/mec/settings.php:
|
7232 |
#, fuzzy
|
7233 |
#| msgid "Featured Image"
|
7234 |
msgid "Fallback Featured Image"
|
7235 |
msgstr "Hlavní obrázek"
|
7236 |
|
7237 |
-
#: app/features/mec/settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7238 |
msgid "Archive Pages"
|
7239 |
msgstr "Archivní stránky"
|
7240 |
|
7241 |
-
#: app/features/mec/settings.php:
|
7242 |
msgid "Archive Page Title"
|
7243 |
msgstr "Název stránky archivu"
|
7244 |
|
7245 |
-
#: app/features/mec/settings.php:
|
7246 |
msgid "Default value is Events - It's title of the page"
|
7247 |
msgstr "Výchozí hodnota je Události - to je název stránky"
|
7248 |
|
7249 |
-
#: app/features/mec/settings.php:
|
7250 |
msgid "Archive Page Skin"
|
7251 |
msgstr "Vzhled archivní stránky"
|
7252 |
|
7253 |
-
#: app/features/mec/settings.php:
|
7254 |
msgid "Put shortcode..."
|
7255 |
msgstr "Vložte zkrácený kód..."
|
7256 |
|
7257 |
-
#: app/features/mec/settings.php:
|
7258 |
-
#: app/features/mec/settings.php:
|
7259 |
-
#: app/features/mec/settings.php:
|
7260 |
-
#: app/features/mec/settings.php:
|
7261 |
-
#: app/features/mec/settings.php:
|
7262 |
msgid "There is no skins"
|
7263 |
msgstr "Neexistuje žádný vzhled"
|
7264 |
|
7265 |
-
#: app/features/mec/settings.php:
|
7266 |
#: app/features/mec/single.php:73
|
7267 |
msgid "Modern Style"
|
7268 |
msgstr "Moderní styl"
|
7269 |
|
7270 |
-
#: app/features/mec/settings.php:
|
7271 |
msgid "colorful"
|
7272 |
msgstr "pestrý"
|
7273 |
|
7274 |
-
#: app/features/mec/settings.php:
|
7275 |
msgid "Clean Style"
|
7276 |
msgstr "Čistý styl"
|
7277 |
|
7278 |
-
#: app/features/mec/settings.php:
|
7279 |
msgid "Default value is Calendar/Monthly View, But you can change it "
|
7280 |
msgstr "Výchozí hodnota je Kalendář / Měsíční zobrazení, ale můžete ji změnit "
|
7281 |
|
7282 |
-
#: app/features/mec/settings.php:
|
7283 |
msgid "See Demo"
|
7284 |
msgstr "Viz Demo"
|
7285 |
|
7286 |
-
#: app/features/mec/settings.php:
|
7287 |
msgid "Category Page Skin"
|
7288 |
msgstr "Vzhled stránky kategorie"
|
7289 |
|
7290 |
-
#: app/features/mec/settings.php:
|
7291 |
#, fuzzy
|
7292 |
#| msgid ""
|
7293 |
#| "Default value is List View - But you can change it Set a skin for all "
|
@@ -7299,24 +7321,24 @@ msgstr ""
|
|
7299 |
"Výchozí hodnota je Zobrazení seznamu - ale můžete ji změnit Nastavit vzhled "
|
7300 |
"pro všechny kategorie."
|
7301 |
|
7302 |
-
#: app/features/mec/settings.php:
|
7303 |
msgid "Category Events Method"
|
7304 |
msgstr "Kategorie Metoda události"
|
7305 |
|
7306 |
-
#: app/features/mec/settings.php:
|
7307 |
msgid "Default value is Upcoming Events"
|
7308 |
msgstr "Výchozí hodnota je Nadcházející události"
|
7309 |
|
7310 |
-
#: app/features/mec/settings.php:
|
7311 |
msgid "Events Archive Status"
|
7312 |
msgstr "Stav archivu událostí"
|
7313 |
|
7314 |
-
#: app/features/mec/settings.php:
|
7315 |
msgid "Enabled (Recommended)"
|
7316 |
msgstr "Povoleno (doporučeno)"
|
7317 |
|
7318 |
# Slug
|
7319 |
-
#: app/features/mec/settings.php:
|
7320 |
msgid ""
|
7321 |
"If you disable it, then you should create a page as archive page of MEC. "
|
7322 |
"Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
|
@@ -7327,11 +7349,11 @@ msgstr ""
|
|
7327 |
"přepisování MEC."
|
7328 |
|
7329 |
# Hlavní slug
|
7330 |
-
#: app/features/mec/settings.php:
|
7331 |
msgid "Main Slug"
|
7332 |
msgstr "Main Slug"
|
7333 |
|
7334 |
-
#: app/features/mec/settings.php:
|
7335 |
msgid ""
|
7336 |
"Default value is events. You can not have a page with this name. MEC allows "
|
7337 |
"you to create custom URLs for the permalinks and archives to enhance the "
|
@@ -7341,16 +7363,16 @@ msgstr ""
|
|
7341 |
"umožňuje vytvářet vlastní adresy URL pro permanentní odkazy a archivy, aby "
|
7342 |
"se zvýšila použitelnost a dopředná kompatibilita odkazů."
|
7343 |
|
7344 |
-
#: app/features/mec/settings.php:
|
7345 |
msgid "Valid characters are lowercase a-z, - character and numbers."
|
7346 |
msgstr "Platnými znaky jsou malá písmena a-z, - znak a čísla."
|
7347 |
|
7348 |
# Slug
|
7349 |
-
#: app/features/mec/settings.php:
|
7350 |
msgid "Category Slug"
|
7351 |
msgstr "Kategorie Slug"
|
7352 |
|
7353 |
-
#: app/features/mec/settings.php:
|
7354 |
msgid ""
|
7355 |
"It's slug of MEC categories, you can change it to events-cat or something "
|
7356 |
"else. Default value is mec-category. You can not have a page with this name."
|
@@ -7359,126 +7381,126 @@ msgstr ""
|
|
7359 |
"jiného. Výchozí hodnota je mec-kategorie. Nemůžete mít stránku s tímto "
|
7360 |
"názvem."
|
7361 |
|
7362 |
-
#: app/features/mec/settings.php:
|
7363 |
msgid "Currency"
|
7364 |
msgstr "Měna"
|
7365 |
|
7366 |
-
#: app/features/mec/settings.php:
|
7367 |
msgid "Currency Sign"
|
7368 |
msgstr "Symbol měny"
|
7369 |
|
7370 |
-
#: app/features/mec/settings.php:
|
7371 |
msgid "Default value will be \"currency\" if you leave it empty."
|
7372 |
msgstr "Výchozí hodnota bude „měna“, pokud ji necháte prázdnou."
|
7373 |
|
7374 |
-
#: app/features/mec/settings.php:
|
7375 |
msgid "Currency Position"
|
7376 |
msgstr "Pozice měny"
|
7377 |
|
7378 |
-
#: app/features/mec/settings.php:
|
7379 |
#, fuzzy
|
7380 |
#| msgid "Before $10"
|
7381 |
msgid "$10 (Before)"
|
7382 |
msgstr "Před $10"
|
7383 |
|
7384 |
-
#: app/features/mec/settings.php:
|
7385 |
msgid "$ 10 (Before with Space)"
|
7386 |
msgstr ""
|
7387 |
|
7388 |
-
#: app/features/mec/settings.php:
|
7389 |
#, fuzzy
|
7390 |
#| msgid "After"
|
7391 |
msgid "10$ (After)"
|
7392 |
msgstr "Po"
|
7393 |
|
7394 |
-
#: app/features/mec/settings.php:
|
7395 |
msgid "10 $ (After with Space)"
|
7396 |
msgstr ""
|
7397 |
|
7398 |
-
#: app/features/mec/settings.php:
|
7399 |
msgid "Thousand Separator"
|
7400 |
msgstr "Oddělovač tisíců"
|
7401 |
|
7402 |
-
#: app/features/mec/settings.php:
|
7403 |
msgid "Decimal Separator"
|
7404 |
msgstr "Oddělovač desítel"
|
7405 |
|
7406 |
-
#: app/features/mec/settings.php:
|
7407 |
msgid "No decimal"
|
7408 |
msgstr "Bez desetinných míst"
|
7409 |
|
7410 |
-
#: app/features/mec/settings.php:
|
7411 |
msgid "Enable Google Recaptcha"
|
7412 |
msgstr "Povolit Google Recaptcha"
|
7413 |
|
7414 |
-
#: app/features/mec/settings.php:
|
7415 |
msgid "Enable on booking form"
|
7416 |
msgstr "Povolit rezervační formulář"
|
7417 |
|
7418 |
-
#: app/features/mec/settings.php:
|
7419 |
msgid "Enable on \"Frontend Event Submission\" form"
|
7420 |
msgstr "Povolit ve formuláři „Odesílání událostí z frontendu“"
|
7421 |
|
7422 |
# místa
|
7423 |
-
#: app/features/mec/settings.php:
|
7424 |
msgid "Site Key"
|
7425 |
msgstr "Klíč webu"
|
7426 |
|
7427 |
-
#: app/features/mec/settings.php:
|
7428 |
msgid "Secret Key"
|
7429 |
msgstr "Tajný klíč"
|
7430 |
|
7431 |
-
#: app/features/mec/settings.php:
|
7432 |
msgid "Time Format"
|
7433 |
msgstr "Formát času"
|
7434 |
|
7435 |
-
#: app/features/mec/settings.php:
|
7436 |
msgid "12 hours format with AM/PM"
|
7437 |
msgstr "12 hodinový formát s dop./odp."
|
7438 |
|
7439 |
-
#: app/features/mec/settings.php:
|
7440 |
msgid "24 hours format"
|
7441 |
msgstr "24 hodinový fotmát"
|
7442 |
|
7443 |
-
#: app/features/mec/settings.php:
|
7444 |
msgid "This option, affects the selection of Start/End time."
|
7445 |
msgstr "Tato možnost ovlivňuje výběr času zahájení / ukončení."
|
7446 |
|
7447 |
-
#: app/features/mec/settings.php:
|
7448 |
msgid "Events List Page"
|
7449 |
msgstr "Stránka seznamu událostí"
|
7450 |
|
7451 |
-
#: app/features/mec/settings.php:
|
7452 |
#, php-format
|
7453 |
msgid "Put %s shortcode into the page."
|
7454 |
msgstr "Vložte %s na stránku zkrácené kódy."
|
7455 |
|
7456 |
-
#: app/features/mec/settings.php:
|
7457 |
msgid "Add/Edit Events Page"
|
7458 |
msgstr "Přidat / Editovat stránku událostí"
|
7459 |
|
7460 |
-
#: app/features/mec/settings.php:
|
7461 |
#, fuzzy
|
7462 |
#| msgid "On Event Start"
|
7463 |
msgid "New Events Status"
|
7464 |
msgstr "Při spuštění události"
|
7465 |
|
7466 |
-
#: app/features/mec/settings.php:
|
7467 |
#, fuzzy
|
7468 |
#| msgid "WordPress"
|
7469 |
msgid "Let WordPress decide"
|
7470 |
msgstr "WordPress"
|
7471 |
|
7472 |
-
#: app/features/mec/settings.php:
|
7473 |
-
#: app/libraries/main.php:
|
7474 |
msgid "Pending"
|
7475 |
msgstr "Nevyřízený"
|
7476 |
|
7477 |
-
#: app/features/mec/settings.php:
|
7478 |
msgid "Publish"
|
7479 |
msgstr ""
|
7480 |
|
7481 |
-
#: app/features/mec/settings.php:
|
7482 |
#, fuzzy
|
7483 |
#| msgid ""
|
7484 |
#| "User redirects to this page after booking. Leave it empty if you want to "
|
@@ -7490,120 +7512,126 @@ msgstr ""
|
|
7490 |
"Uživatel bude přesměrován na tuto stránku po rezervaci. Pokud ji chcete "
|
7491 |
"vypnout, ponechte ji prázdnou."
|
7492 |
|
7493 |
-
#: app/features/mec/settings.php:
|
7494 |
#, fuzzy
|
7495 |
#| msgid "Thank You Page"
|
7496 |
msgid "Thank You Page URL"
|
7497 |
msgstr "Stránka s poděkováním"
|
7498 |
|
7499 |
-
#: app/features/mec/settings.php:
|
7500 |
msgid "If filled it will use instead of thank you page set above."
|
7501 |
msgstr ""
|
7502 |
|
7503 |
-
#: app/features/mec/settings.php:
|
7504 |
#, fuzzy
|
7505 |
#| msgid "Maximum file size"
|
7506 |
msgid "Maximum File Size"
|
7507 |
msgstr "Maximální velikost souboru"
|
7508 |
|
7509 |
-
#: app/features/mec/settings.php:
|
7510 |
msgid "in KB"
|
7511 |
msgstr ""
|
7512 |
|
7513 |
-
#: app/features/mec/settings.php:
|
7514 |
msgid "In Kilo Bytes so 5000 means 5MB (Approximately)"
|
7515 |
msgstr ""
|
7516 |
|
7517 |
-
#: app/features/mec/settings.php:
|
7518 |
#, fuzzy
|
7519 |
#| msgid "Enable event submission by guest (Not logged-in) users"
|
7520 |
msgid "Enable event submission by guest (Not logged in) users"
|
7521 |
msgstr "Povolit odesílání události hosty (nepřihlášenými uživateli)"
|
7522 |
|
7523 |
-
#: app/features/mec/settings.php:
|
7524 |
msgid "Enable mandatory email and name for guest user"
|
7525 |
msgstr "Povolit povinný e-mail a jméno pro hostujícího uživatele"
|
7526 |
|
7527 |
-
#: app/features/mec/settings.php:
|
7528 |
msgid ""
|
7529 |
"Automatically create users after event publish and assign event to the "
|
7530 |
"created user"
|
7531 |
msgstr ""
|
7532 |
|
7533 |
-
#: app/features/mec/settings.php:
|
7534 |
msgid "Frontend Event Submission Sections"
|
7535 |
msgstr "Sekce pro zasílání událostí z webových stránek (frontend)"
|
7536 |
|
7537 |
-
#: app/features/mec/settings.php:
|
7538 |
#, fuzzy
|
7539 |
#| msgid "Event Details"
|
7540 |
msgid "Event Data Fields"
|
7541 |
msgstr "Podrobnosti události"
|
7542 |
|
7543 |
-
#: app/features/mec/settings.php:
|
7544 |
msgid "Event Categories"
|
7545 |
msgstr "Kategorie události"
|
7546 |
|
7547 |
-
#: app/features/mec/settings.php:
|
7548 |
msgid "Event Labels"
|
7549 |
msgstr "Štítky události"
|
7550 |
|
7551 |
-
#: app/features/mec/settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
7552 |
msgid "Event Tags"
|
7553 |
msgstr "Tagy události"
|
7554 |
|
7555 |
-
#: app/features/mec/settings.php:
|
7556 |
msgid "Event Organizer"
|
7557 |
msgstr "Organizátor události"
|
7558 |
|
7559 |
-
#: app/features/mec/settings.php:
|
7560 |
#, fuzzy
|
7561 |
#| msgid "Total booking limits"
|
7562 |
msgid "Total Booking Limit"
|
7563 |
msgstr "Celkové limity rezervace"
|
7564 |
|
7565 |
-
#: app/features/mec/settings.php:
|
7566 |
#, fuzzy
|
7567 |
#| msgid "Discount"
|
7568 |
msgid "Discount Per User Roles"
|
7569 |
msgstr "Sleva"
|
7570 |
|
7571 |
-
#: app/features/mec/settings.php:
|
7572 |
#, fuzzy
|
7573 |
#| msgid "Ticket Variations / Options"
|
7574 |
msgid "Ticket Options"
|
7575 |
msgstr "Varianty vstupenky / možnosti"
|
7576 |
|
7577 |
-
#: app/features/mec/settings.php:
|
7578 |
msgid "Fees / Taxes Options"
|
7579 |
msgstr "Možnosti Poplatky / Daně"
|
7580 |
|
7581 |
-
#: app/features/mec/settings.php:
|
7582 |
#, fuzzy
|
7583 |
#| msgid "Schema"
|
7584 |
msgid "SEO Schema"
|
7585 |
msgstr "Schéma"
|
7586 |
|
7587 |
-
#: app/features/mec/settings.php:
|
7588 |
#: app/features/occurrences.php:102
|
7589 |
#, fuzzy
|
7590 |
#| msgid "Occurrences times"
|
7591 |
msgid "Occurrences"
|
7592 |
msgstr "Časy výskytu"
|
7593 |
|
7594 |
-
#: app/features/mec/settings.php:
|
7595 |
#, fuzzy
|
7596 |
#| msgid "Edit Event"
|
7597 |
msgid "Virtual Event"
|
7598 |
msgstr "Editace události"
|
7599 |
|
7600 |
-
#: app/features/mec/settings.php:
|
7601 |
#, fuzzy
|
7602 |
#| msgid "Book Event"
|
7603 |
msgid "Zoom Event"
|
7604 |
msgstr "Rezervovat událost"
|
7605 |
|
7606 |
-
#: app/features/mec/settings.php:
|
7607 |
#, php-format
|
7608 |
msgid ""
|
7609 |
"Users can put a note for editors while they're submitting the event. Also "
|
@@ -7614,48 +7642,48 @@ msgstr ""
|
|
7614 |
"oznámení o nové události můžete také vložit %%event_note%%, abyste dostali e-"
|
7615 |
"mail s poznámkami uživatelů."
|
7616 |
|
7617 |
-
#: app/features/mec/settings.php:
|
7618 |
#, fuzzy
|
7619 |
#| msgid "Visibility"
|
7620 |
msgid "Note visibility"
|
7621 |
msgstr "Viditelnost"
|
7622 |
|
7623 |
-
#: app/features/mec/settings.php:
|
7624 |
msgid "Always"
|
7625 |
msgstr "Vždy"
|
7626 |
|
7627 |
-
#: app/features/mec/settings.php:
|
7628 |
msgid "While event is not published"
|
7629 |
msgstr "I když událost není zveřejněna"
|
7630 |
|
7631 |
-
#: app/features/mec/settings.php:
|
7632 |
msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
|
7633 |
msgstr ""
|
7634 |
"Poznámka k události se zobrazí ve formuláři pro zasílání z webových stránek "
|
7635 |
"(frontend) a Upravit událost v administraci stránek (backend)."
|
7636 |
|
7637 |
-
#: app/features/mec/settings.php:
|
7638 |
#, fuzzy
|
7639 |
#| msgid "Required Field"
|
7640 |
msgid "Required Fields"
|
7641 |
msgstr "Požadovaná pole"
|
7642 |
|
7643 |
-
#: app/features/mec/settings.php:
|
7644 |
#, fuzzy
|
7645 |
#| msgid "Description"
|
7646 |
msgid "Event Description"
|
7647 |
msgstr "Popis"
|
7648 |
|
7649 |
-
#: app/features/mec/settings.php:
|
7650 |
-
#: app/libraries/main.php:
|
7651 |
msgid "More Info Link"
|
7652 |
msgstr "Odkaz na více informací"
|
7653 |
|
7654 |
-
#: app/features/mec/settings.php:
|
7655 |
msgid "User Profile"
|
7656 |
msgstr "Uživatelský profil"
|
7657 |
|
7658 |
-
#: app/features/mec/settings.php:
|
7659 |
#, fuzzy, php-format
|
7660 |
#| msgid ""
|
7661 |
#| "Put %s shortcode into your desired page. Then users are able to see "
|
@@ -7667,13 +7695,13 @@ msgstr ""
|
|
7667 |
"Vložte %s krátký kód na požadovanou stránku. Uživatelé pak mohou vidět "
|
7668 |
"historii svých rezervací."
|
7669 |
|
7670 |
-
#: app/features/mec/settings.php:
|
7671 |
#, fuzzy
|
7672 |
#| msgid "Hide Events"
|
7673 |
msgid "User Events"
|
7674 |
msgstr "Skrýt události"
|
7675 |
|
7676 |
-
#: app/features/mec/settings.php:
|
7677 |
#, fuzzy, php-format
|
7678 |
#| msgid ""
|
7679 |
#| "Put %s shortcode into your desired page. Then users are able to search "
|
@@ -7685,11 +7713,11 @@ msgstr ""
|
|
7685 |
"Vložte %s krátký kód na požadovanou stránku. Uživatelé pak mohou vyhledávat "
|
7686 |
"události"
|
7687 |
|
7688 |
-
#: app/features/mec/settings.php:
|
7689 |
msgid "Search Bar"
|
7690 |
msgstr "Vyhledávací panel"
|
7691 |
|
7692 |
-
#: app/features/mec/settings.php:
|
7693 |
#, php-format
|
7694 |
msgid ""
|
7695 |
"Put %s shortcode into your desired page. Then users are able to search events"
|
@@ -7697,15 +7725,15 @@ msgstr ""
|
|
7697 |
"Vložte %s krátký kód na požadovanou stránku. Uživatelé pak mohou vyhledávat "
|
7698 |
"události"
|
7699 |
|
7700 |
-
#: app/features/mec/settings.php:
|
7701 |
msgid "Ajax Live mode"
|
7702 |
msgstr "Ajax Live mód"
|
7703 |
|
7704 |
-
#: app/features/mec/settings.php:
|
7705 |
msgid "Ajax mode"
|
7706 |
msgstr "Ajax mód"
|
7707 |
|
7708 |
-
#: app/features/mec/settings.php:
|
7709 |
#, fuzzy
|
7710 |
#| msgid ""
|
7711 |
#| "if you enable this option, search button disappeared and to use this "
|
@@ -7717,47 +7745,47 @@ msgstr ""
|
|
7717 |
"pokud tuto možnost povolíte, tlačítko pro vyhledávání zmizelo a pro použití "
|
7718 |
"této funkce musí být povoleno pole pro zadávání textu."
|
7719 |
|
7720 |
-
#: app/features/mec/settings.php:
|
7721 |
msgid "Modern Type"
|
7722 |
msgstr "Moderní typ"
|
7723 |
|
7724 |
-
#: app/features/mec/settings.php:
|
7725 |
msgid "Search bar fields"
|
7726 |
msgstr "Pole vyhledávacího panelu"
|
7727 |
|
7728 |
-
#: app/features/mec/settings.php:
|
7729 |
msgid "Text input"
|
7730 |
msgstr "Zadávání textu"
|
7731 |
|
7732 |
-
#: app/features/mec/settings.php:
|
7733 |
msgid "Enable Mailchimp Integration"
|
7734 |
msgstr "Povolit integraci Mailchimp"
|
7735 |
|
7736 |
-
#: app/features/mec/settings.php:
|
7737 |
-
#: app/features/mec/settings.php:
|
7738 |
-
#: app/features/mec/settings.php:
|
7739 |
msgid "API Key"
|
7740 |
msgstr "API Key"
|
7741 |
|
7742 |
-
#: app/features/mec/settings.php:
|
7743 |
-
#: app/features/mec/settings.php:
|
7744 |
-
#: app/features/mec/settings.php:
|
7745 |
msgid "List ID"
|
7746 |
msgstr "ID seznamu"
|
7747 |
|
7748 |
-
#: app/features/mec/settings.php:
|
7749 |
msgid "Subscription Status"
|
7750 |
msgstr "Stav odběru"
|
7751 |
|
7752 |
-
#: app/features/mec/settings.php:
|
7753 |
msgid "Subscribe automatically"
|
7754 |
msgstr "Odebírat automaticky"
|
7755 |
|
7756 |
-
#: app/features/mec/settings.php:
|
7757 |
msgid "Subscribe by verification"
|
7758 |
msgstr "Přihlaste se k odběru pomocí ověření"
|
7759 |
|
7760 |
-
#: app/features/mec/settings.php:
|
7761 |
#, fuzzy
|
7762 |
#| msgid ""
|
7763 |
#| "If you choose \"Subscribe by verification\" then an email will send to "
|
@@ -7769,152 +7797,152 @@ msgstr ""
|
|
7769 |
"Pokud zvolíte možnost „Přihlásit se k odběru pomocí ověření“, odešle e-mail "
|
7770 |
"uživateli mailchimp k ověření oběru."
|
7771 |
|
7772 |
-
#: app/features/mec/settings.php:
|
7773 |
msgid "Enable Segment Creation by Event Title and Booking Date"
|
7774 |
msgstr ""
|
7775 |
|
7776 |
-
#: app/features/mec/settings.php:
|
7777 |
#, fuzzy
|
7778 |
#| msgid "Mailchimp Integration"
|
7779 |
msgid "Campaign Monitor Integration"
|
7780 |
msgstr "Integrace Mailchimp"
|
7781 |
|
7782 |
-
#: app/features/mec/settings.php:
|
7783 |
#, fuzzy
|
7784 |
#| msgid "Enable Mailchimp Integration"
|
7785 |
msgid "Enable Campaign Monitor Integration"
|
7786 |
msgstr "Povolit integraci Mailchimp"
|
7787 |
|
7788 |
-
#: app/features/mec/settings.php:
|
7789 |
#, fuzzy
|
7790 |
#| msgid "Mailchimp Integration"
|
7791 |
msgid "MailerLite Integration"
|
7792 |
msgstr "Integrace Mailchimp"
|
7793 |
|
7794 |
-
#: app/features/mec/settings.php:
|
7795 |
#, fuzzy
|
7796 |
#| msgid "Enable Mailchimp Integration"
|
7797 |
msgid "Enable MailerLite Integration"
|
7798 |
msgstr "Povolit integraci Mailchimp"
|
7799 |
|
7800 |
-
#: app/features/mec/settings.php:
|
7801 |
#, fuzzy
|
7802 |
#| msgid "Group URL"
|
7803 |
msgid "Group ID"
|
7804 |
msgstr "Group URL"
|
7805 |
|
7806 |
-
#: app/features/mec/settings.php:
|
7807 |
#, fuzzy
|
7808 |
#| msgid "Enable Mailchimp Integration"
|
7809 |
msgid "Constant Contact Integration"
|
7810 |
msgstr "Povolit integraci Mailchimp"
|
7811 |
|
7812 |
-
#: app/features/mec/settings.php:
|
7813 |
#, fuzzy
|
7814 |
#| msgid "Enable Mailchimp Integration"
|
7815 |
msgid "Enable constantcontact Integration"
|
7816 |
msgstr "Povolit integraci Mailchimp"
|
7817 |
|
7818 |
-
#: app/features/mec/settings.php:
|
7819 |
#, fuzzy
|
7820 |
#| msgid "Facebook Page Access Token"
|
7821 |
msgid "Access Token"
|
7822 |
msgstr "Token pro přístup na stránku Facebook"
|
7823 |
|
7824 |
-
#: app/features/mec/settings.php:
|
7825 |
#, fuzzy
|
7826 |
#| msgid "Select icon"
|
7827 |
msgid "Select List"
|
7828 |
msgstr "Vybrat ikonu"
|
7829 |
|
7830 |
-
#: app/features/mec/settings.php:
|
7831 |
msgid ""
|
7832 |
"Please fill in the API key and Access Token field and save settings. after "
|
7833 |
"that, please refresh the page and select a list."
|
7834 |
msgstr ""
|
7835 |
|
7836 |
-
#: app/features/mec/settings.php:
|
7837 |
#, fuzzy
|
7838 |
#| msgid "Mailchimp Integration"
|
7839 |
msgid "Active Campaign Integration"
|
7840 |
msgstr "Integrace Mailchimp"
|
7841 |
|
7842 |
-
#: app/features/mec/settings.php:
|
7843 |
#, fuzzy
|
7844 |
#| msgid "Enable Mailchimp Integration"
|
7845 |
msgid "Enable Active Campaign Integration"
|
7846 |
msgstr "Povolit integraci Mailchimp"
|
7847 |
|
7848 |
-
#: app/features/mec/settings.php:
|
7849 |
msgid "API URL"
|
7850 |
msgstr ""
|
7851 |
|
7852 |
-
#: app/features/mec/settings.php:
|
7853 |
#, fuzzy
|
7854 |
#| msgid "Mailchimp Integration"
|
7855 |
msgid "AWeber Integration"
|
7856 |
msgstr "Integrace Mailchimp"
|
7857 |
|
7858 |
-
#: app/features/mec/settings.php:
|
7859 |
#, fuzzy
|
7860 |
#| msgid "Enable Mailchimp Integration"
|
7861 |
msgid "Enable AWeber Integration"
|
7862 |
msgstr "Povolit integraci Mailchimp"
|
7863 |
|
7864 |
-
#: app/features/mec/settings.php:
|
7865 |
#, fuzzy, php-format
|
7866 |
#| msgid "Third Party plugin is not installed and activated!"
|
7867 |
msgid "%s plugin should be installed and connected to your AWeber account."
|
7868 |
msgstr "Plugin třetích stran není nainstalován a aktivován!"
|
7869 |
|
7870 |
-
#: app/features/mec/settings.php:
|
7871 |
#, php-format
|
7872 |
msgid "More information about the list ID can be found %s."
|
7873 |
msgstr ""
|
7874 |
|
7875 |
-
#: app/features/mec/settings.php:
|
7876 |
#, fuzzy
|
7877 |
#| msgid "Mailchimp Integration"
|
7878 |
msgid "MailPoet Integration"
|
7879 |
msgstr "Integrace Mailchimp"
|
7880 |
|
7881 |
-
#: app/features/mec/settings.php:
|
7882 |
#, fuzzy
|
7883 |
#| msgid "Enable Mailchimp Integration"
|
7884 |
msgid "Enable MailPoet Integration"
|
7885 |
msgstr "Povolit integraci Mailchimp"
|
7886 |
|
7887 |
-
#: app/features/mec/settings.php:
|
7888 |
#: app/skins/default_full_calendar/tpl.php:78
|
7889 |
#: app/skins/full_calendar/tpl.php:126
|
7890 |
msgid "List"
|
7891 |
msgstr "Seznam"
|
7892 |
|
7893 |
-
#: app/features/mec/settings.php:
|
7894 |
#, fuzzy, php-format
|
7895 |
#| msgid "Third Party plugin is not installed and activated!"
|
7896 |
msgid "%s plugin should be installed and activated."
|
7897 |
msgstr "Plugin třetích stran není nainstalován a aktivován!"
|
7898 |
|
7899 |
-
#: app/features/mec/settings.php:
|
7900 |
#, fuzzy
|
7901 |
#| msgid "Mailchimp Integration"
|
7902 |
msgid "Sendfox Integration"
|
7903 |
msgstr "Integrace Mailchimp"
|
7904 |
|
7905 |
-
#: app/features/mec/settings.php:
|
7906 |
#, fuzzy
|
7907 |
#| msgid "Enable Mailchimp Integration"
|
7908 |
msgid "Enable Sendfox Integration"
|
7909 |
msgstr "Povolit integraci Mailchimp"
|
7910 |
|
7911 |
-
#: app/features/mec/settings.php:
|
7912 |
#, fuzzy, php-format
|
7913 |
#| msgid "Third Party plugin is not installed and activated!"
|
7914 |
msgid "%s plugin should be installed and connected to your Sendfox account."
|
7915 |
msgstr "Plugin třetích stran není nainstalován a aktivován!"
|
7916 |
|
7917 |
-
#: app/features/mec/single.php:38 app/libraries/main.php:
|
7918 |
msgid "Single Event Page"
|
7919 |
msgstr "Stránka jedné události"
|
7920 |
|
@@ -8078,13 +8106,13 @@ msgid ""
|
|
8078 |
"Alphabetic type."
|
8079 |
msgstr ""
|
8080 |
|
8081 |
-
#: app/features/mec/single.php:202 app/libraries/main.php:
|
8082 |
#, fuzzy
|
8083 |
#| msgid "Custom Styles"
|
8084 |
msgid "Custom Fields"
|
8085 |
msgstr "Vlastní styly"
|
8086 |
|
8087 |
-
#: app/features/mec/single.php:241 app/libraries/main.php:
|
8088 |
msgid "URL"
|
8089 |
msgstr ""
|
8090 |
|
@@ -8124,7 +8152,7 @@ msgid ""
|
|
8124 |
msgstr ""
|
8125 |
"Pomocí této možnosti můžete vyloučit určité dny z dat výskytu událostí."
|
8126 |
|
8127 |
-
#: app/features/mec/single.php:336 app/libraries/main.php:
|
8128 |
msgid "Additional Organizers"
|
8129 |
msgstr "Další organizátoři"
|
8130 |
|
@@ -8140,7 +8168,7 @@ msgstr ""
|
|
8140 |
msgid "Enable Description For Other Organizers."
|
8141 |
msgstr ""
|
8142 |
|
8143 |
-
#: app/features/mec/single.php:354 app/libraries/main.php:
|
8144 |
msgid "Additional Locations"
|
8145 |
msgstr "Další umístění"
|
8146 |
|
@@ -8156,8 +8184,8 @@ msgstr ""
|
|
8156 |
msgid "Enable Description For Other Locations."
|
8157 |
msgstr ""
|
8158 |
|
8159 |
-
#: app/features/mec/single.php:372 app/libraries/main.php:
|
8160 |
-
#: app/skins/single.php:
|
8161 |
msgid "Related Events"
|
8162 |
msgstr "Související události"
|
8163 |
|
@@ -8171,7 +8199,7 @@ msgstr ""
|
|
8171 |
msgid "Select Taxonomies:"
|
8172 |
msgstr "Vyberte taxonomie:"
|
8173 |
|
8174 |
-
#: app/features/mec/single.php:414 app/libraries/main.php:
|
8175 |
#, fuzzy
|
8176 |
#| msgid "Next/Previous Buttons"
|
8177 |
msgid "Next / Previous Events"
|
@@ -8185,7 +8213,7 @@ msgstr ""
|
|
8185 |
"Zobrazte související události na základě taxonomie na stránce s jednou "
|
8186 |
"událostí."
|
8187 |
|
8188 |
-
#: app/features/mec/single.php:456 app/libraries/main.php:
|
8189 |
#, fuzzy
|
8190 |
#| msgid "Next Occurrence"
|
8191 |
msgid "Edit Per Occurrences"
|
@@ -8222,7 +8250,7 @@ msgid "Default Font"
|
|
8222 |
msgstr "Výchozí písmo"
|
8223 |
|
8224 |
#: app/features/mec/styling.php:54 app/features/mec/support.php:52
|
8225 |
-
#: app/libraries/main.php:
|
8226 |
msgid "Styling Options"
|
8227 |
msgstr "Možnosti stylování"
|
8228 |
|
@@ -8414,7 +8442,7 @@ msgstr "Vytvářejte události pomocí Tvůrce stránek"
|
|
8414 |
msgid "MEC Settings"
|
8415 |
msgstr "MEC - Nastavení"
|
8416 |
|
8417 |
-
#: app/features/mec/support-page.php:99 app/libraries/main.php:
|
8418 |
msgid "Single Event"
|
8419 |
msgstr "Jedna událost"
|
8420 |
|
@@ -8774,7 +8802,7 @@ msgstr ""
|
|
8774 |
msgid "Create a support ticket"
|
8775 |
msgstr "Vytvořte lístek podpory"
|
8776 |
|
8777 |
-
#: app/features/mec/support.php:59 app/libraries/main.php:
|
8778 |
msgid "Custom CSS"
|
8779 |
msgstr "Vlastní CSS"
|
8780 |
|
@@ -9032,8 +9060,8 @@ msgstr "např. info@itreseni.cz"
|
|
9032 |
msgid "eg. https://webnus.net"
|
9033 |
msgstr "např. https://webnus.net"
|
9034 |
|
9035 |
-
#: app/features/organizers.php:312 app/libraries/main.php:
|
9036 |
-
#: app/libraries/main.php:
|
9037 |
msgid "Other Organizers"
|
9038 |
msgstr "Další organizátoři"
|
9039 |
|
@@ -9227,11 +9255,11 @@ msgstr "Prosím %s/%s za účelem zobrazení vašich rezervací / profilu."
|
|
9227 |
msgid "#"
|
9228 |
msgstr "#"
|
9229 |
|
9230 |
-
#: app/features/profile/profile.php:39 app/libraries/main.php:
|
9231 |
msgid "Status"
|
9232 |
msgstr "Stav"
|
9233 |
|
9234 |
-
#: app/features/profile/profile.php:42 app/libraries/main.php:
|
9235 |
msgid "Attendees"
|
9236 |
msgstr "Účastníci"
|
9237 |
|
@@ -9305,7 +9333,7 @@ msgid "Insert speaker email address."
|
|
9305 |
msgstr "Vložte email řečníka."
|
9306 |
|
9307 |
#: app/features/speakers.php:135 app/features/speakers.php:208
|
9308 |
-
#: app/skins/single.php:
|
9309 |
#: app/skins/single/default.php:250 app/skins/single/default.php:321
|
9310 |
#: app/skins/single/default.php:488 app/skins/single/default.php:559
|
9311 |
#: app/skins/single/m1.php:126 app/skins/single/m1.php:180
|
@@ -9380,9 +9408,9 @@ msgstr ""
|
|
9380 |
msgid "Please %s/%s in order to see your own events."
|
9381 |
msgstr "Prosím %s/%s za účelem odeslání nových událostí."
|
9382 |
|
9383 |
-
#: app/features/wc.php:103 app/libraries/notifications.php:
|
9384 |
-
#: app/libraries/notifications.php:
|
9385 |
-
#: app/libraries/notifications.php:
|
9386 |
#, php-format
|
9387 |
msgid "%s to %s"
|
9388 |
msgstr ""
|
@@ -9406,13 +9434,13 @@ msgstr "%s Cena"
|
|
9406 |
msgid "Discount"
|
9407 |
msgstr "Sleva"
|
9408 |
|
9409 |
-
#: app/libraries/book.php:897 app/modules/booking/default.php:
|
9410 |
-
#: app/modules/booking/default.php:
|
9411 |
msgid "Download Invoice"
|
9412 |
msgstr "Stáhnout fakturu"
|
9413 |
|
9414 |
#: app/libraries/envato.php:196 app/libraries/envato.php:274
|
9415 |
-
#: app/libraries/factory.php:
|
9416 |
msgid "This update includes only bug fixes."
|
9417 |
msgstr ""
|
9418 |
|
@@ -9435,55 +9463,55 @@ msgctxt "plugin link"
|
|
9435 |
msgid "Upgrade"
|
9436 |
msgstr "Upgrade"
|
9437 |
|
9438 |
-
#: app/libraries/factory.php:
|
9439 |
msgid "day"
|
9440 |
msgstr "den"
|
9441 |
|
9442 |
-
#: app/libraries/factory.php:
|
9443 |
#: app/skins/available_spot/tpl.php:138 app/skins/countdown/tpl.php:120
|
9444 |
#: app/skins/countdown/tpl.php:166 app/skins/countdown/tpl.php:217
|
9445 |
msgid "days"
|
9446 |
msgstr "dny"
|
9447 |
|
9448 |
-
#: app/libraries/factory.php:
|
9449 |
msgid "hour"
|
9450 |
msgstr "hodina"
|
9451 |
|
9452 |
-
#: app/libraries/factory.php:
|
9453 |
#: app/skins/available_spot/tpl.php:142 app/skins/countdown/tpl.php:126
|
9454 |
#: app/skins/countdown/tpl.php:172 app/skins/countdown/tpl.php:223
|
9455 |
msgid "hours"
|
9456 |
msgstr "hodiny"
|
9457 |
|
9458 |
-
#: app/libraries/factory.php:
|
9459 |
msgid "minute"
|
9460 |
msgstr "minuta"
|
9461 |
|
9462 |
-
#: app/libraries/factory.php:
|
9463 |
#: app/skins/available_spot/tpl.php:146 app/skins/countdown/tpl.php:132
|
9464 |
#: app/skins/countdown/tpl.php:178 app/skins/countdown/tpl.php:229
|
9465 |
msgid "minutes"
|
9466 |
msgstr "minuty"
|
9467 |
|
9468 |
-
#: app/libraries/factory.php:
|
9469 |
msgid "second"
|
9470 |
msgstr "vteřina"
|
9471 |
|
9472 |
-
#: app/libraries/factory.php:
|
9473 |
#: app/skins/available_spot/tpl.php:150 app/skins/countdown/tpl.php:138
|
9474 |
#: app/skins/countdown/tpl.php:184 app/skins/countdown/tpl.php:235
|
9475 |
msgid "seconds"
|
9476 |
msgstr "vteřiny"
|
9477 |
|
9478 |
-
#: app/libraries/factory.php:
|
9479 |
msgid "MEC Single Sidebar"
|
9480 |
msgstr "MEC Postranní panel"
|
9481 |
|
9482 |
-
#: app/libraries/factory.php:
|
9483 |
msgid "Custom sidebar for single and modal page of MEC."
|
9484 |
msgstr "Vlastní postranní panel pro jednu a modální stránku MEC."
|
9485 |
|
9486 |
-
#: app/libraries/factory.php:
|
9487 |
msgid "Notice:"
|
9488 |
msgstr ""
|
9489 |
|
@@ -9526,33 +9554,33 @@ msgstr "Do např. 8:45"
|
|
9526 |
msgid "New Day"
|
9527 |
msgstr "Nový den"
|
9528 |
|
9529 |
-
#: app/libraries/main.php:366 app/libraries/main.php:
|
9530 |
-
#: app/libraries/main.php:
|
9531 |
msgid "Agenda View"
|
9532 |
msgstr "Zobrazení agendy"
|
9533 |
|
9534 |
-
#: app/libraries/main.php:367 app/libraries/main.php:
|
9535 |
-
#: app/libraries/main.php:
|
9536 |
msgid "Full Calendar"
|
9537 |
msgstr "Plný kalendář"
|
9538 |
|
9539 |
-
#: app/libraries/main.php:369 app/libraries/main.php:
|
9540 |
-
#: app/libraries/main.php:
|
9541 |
msgid "Calendar/Monthly View"
|
9542 |
msgstr "Kalendář / zobrazení měsíce"
|
9543 |
|
9544 |
-
#: app/libraries/main.php:372 app/libraries/main.php:
|
9545 |
-
#: app/libraries/main.php:
|
9546 |
msgid "Timetable View"
|
9547 |
msgstr "Zobrazení rozvrhu"
|
9548 |
|
9549 |
-
#: app/libraries/main.php:373 app/libraries/main.php:
|
9550 |
-
#: app/libraries/main.php:
|
9551 |
msgid "Masonry View"
|
9552 |
msgstr "Zobrazení zdi"
|
9553 |
|
9554 |
-
#: app/libraries/main.php:374 app/libraries/main.php:
|
9555 |
-
#: app/libraries/main.php:
|
9556 |
msgid "Map View"
|
9557 |
msgstr "Zobrazení mapy"
|
9558 |
|
@@ -9583,54 +9611,54 @@ msgstr "Zobrazení posuvníku"
|
|
9583 |
msgid "Timeline View"
|
9584 |
msgstr "Zobrazení rozvrhu"
|
9585 |
|
9586 |
-
#: app/libraries/main.php:419 app/libraries/main.php:
|
9587 |
-
#: app/libraries/main.php:
|
9588 |
msgid "SU"
|
9589 |
msgstr "NE"
|
9590 |
|
9591 |
-
#: app/libraries/main.php:420 app/libraries/main.php:
|
9592 |
-
#: app/libraries/main.php:
|
9593 |
msgid "MO"
|
9594 |
msgstr "PO"
|
9595 |
|
9596 |
-
#: app/libraries/main.php:421 app/libraries/main.php:
|
9597 |
-
#: app/libraries/main.php:
|
9598 |
msgid "TU"
|
9599 |
msgstr "ÚT"
|
9600 |
|
9601 |
-
#: app/libraries/main.php:422 app/libraries/main.php:
|
9602 |
-
#: app/libraries/main.php:
|
9603 |
msgid "WE"
|
9604 |
msgstr "ST"
|
9605 |
|
9606 |
-
#: app/libraries/main.php:423 app/libraries/main.php:
|
9607 |
-
#: app/libraries/main.php:
|
9608 |
msgid "TH"
|
9609 |
msgstr "ČT"
|
9610 |
|
9611 |
-
#: app/libraries/main.php:424 app/libraries/main.php:
|
9612 |
-
#: app/libraries/main.php:
|
9613 |
msgid "FR"
|
9614 |
msgstr "PÁ"
|
9615 |
|
9616 |
-
#: app/libraries/main.php:425 app/libraries/main.php:
|
9617 |
-
#: app/libraries/main.php:
|
9618 |
msgid "SA"
|
9619 |
msgstr "SO"
|
9620 |
|
9621 |
-
#: app/libraries/main.php:
|
9622 |
msgid "Upload Field"
|
9623 |
msgstr "Nahrát pole"
|
9624 |
|
9625 |
-
#: app/libraries/main.php:
|
9626 |
msgid "Modules"
|
9627 |
msgstr "Moduly"
|
9628 |
|
9629 |
-
#: app/libraries/main.php:
|
9630 |
msgid "New Addons For MEC! Now Customize MEC in Elementor"
|
9631 |
msgstr "Nové doplňky pro MEC! Nyní přizpůsobte MEC v Elementoru"
|
9632 |
|
9633 |
-
#: app/libraries/main.php:
|
9634 |
msgid ""
|
9635 |
"The time has come at last, and the new practical add-ons for MEC have been "
|
9636 |
"released. This is a revolution in the world of Event Calendars. We have "
|
@@ -9641,7 +9669,7 @@ msgstr ""
|
|
9641 |
"revoluce ve světě kalendářů událostí. Poskytli jsme vám širokou škálu funkcí "
|
9642 |
"pouze tím, že máme 4 doplňky, viz níže:"
|
9643 |
|
9644 |
-
#: app/libraries/main.php:
|
9645 |
msgid ""
|
9646 |
"<strong>WooCommerce Integration:</strong> You can now purchase ticket (as "
|
9647 |
"products) and Woo products at the same time."
|
@@ -9649,7 +9677,7 @@ msgstr ""
|
|
9649 |
"<strong>Integrace WooCommerce:</strong> Nyní si můžete zakoupit lístek (jako "
|
9650 |
"produkty) a produkty Woo současně."
|
9651 |
|
9652 |
-
#: app/libraries/main.php:
|
9653 |
msgid ""
|
9654 |
"<strong>Event API:</strong> display your events (shortcodes/single event) on "
|
9655 |
"other websites without MEC. Use JSON output features to make your Apps "
|
@@ -9659,183 +9687,183 @@ msgstr ""
|
|
9659 |
"událost) na jiných webech bez MEC. Použijte výstupní funkce JSON, aby vaše "
|
9660 |
"aplikace byly kompatibilní s MEC."
|
9661 |
|
9662 |
-
#: app/libraries/main.php:
|
9663 |
msgid ""
|
9664 |
"<strong>Multisite Event Sync:</strong> Sync events between your subsites and "
|
9665 |
"main websites. Changes in the main one will be inherited by the subsites. "
|
9666 |
"you can set these up in the admin panel."
|
9667 |
msgstr ""
|
9668 |
|
9669 |
-
#: app/libraries/main.php:
|
9670 |
msgid ""
|
9671 |
"<strong>User Dashboard:</strong> Create exclusive pages for users. These "
|
9672 |
"pages can contain ticket purchase information, information about registered "
|
9673 |
"events. Users can now log in to purchase tickets."
|
9674 |
msgstr ""
|
9675 |
|
9676 |
-
#: app/libraries/main.php:
|
9677 |
msgid "find out more"
|
9678 |
msgstr ""
|
9679 |
|
9680 |
-
#: app/libraries/main.php:
|
9681 |
msgid "Events at this location"
|
9682 |
msgstr "Události na tomto místě"
|
9683 |
|
9684 |
-
#: app/libraries/main.php:
|
9685 |
msgid "Event at this location"
|
9686 |
msgstr "Událost na tomto místě"
|
9687 |
|
9688 |
-
#: app/libraries/main.php:
|
9689 |
msgid "Facebook"
|
9690 |
msgstr "Facebook"
|
9691 |
|
9692 |
-
#: app/libraries/main.php:
|
9693 |
msgid "Twitter"
|
9694 |
msgstr "Twitter"
|
9695 |
|
9696 |
-
#: app/libraries/main.php:
|
9697 |
msgid "Linkedin"
|
9698 |
msgstr "Linkedin"
|
9699 |
|
9700 |
-
#: app/libraries/main.php:
|
9701 |
msgid "VK"
|
9702 |
msgstr "VK"
|
9703 |
|
9704 |
-
#: app/libraries/main.php:
|
9705 |
msgid "Tumblr"
|
9706 |
msgstr ""
|
9707 |
|
9708 |
-
#: app/libraries/main.php:
|
9709 |
msgid "Pinterest"
|
9710 |
msgstr ""
|
9711 |
|
9712 |
-
#: app/libraries/main.php:
|
9713 |
msgid "Flipboard"
|
9714 |
msgstr ""
|
9715 |
|
9716 |
-
#: app/libraries/main.php:
|
9717 |
#, fuzzy
|
9718 |
#| msgid "Tickets"
|
9719 |
msgid "GetPocket"
|
9720 |
msgstr "Vstupenky"
|
9721 |
|
9722 |
-
#: app/libraries/main.php:
|
9723 |
msgid "Reddit"
|
9724 |
msgstr ""
|
9725 |
|
9726 |
-
#: app/libraries/main.php:
|
9727 |
msgid "WhatsApp"
|
9728 |
msgstr ""
|
9729 |
|
9730 |
-
#: app/libraries/main.php:
|
9731 |
msgid "Telegram"
|
9732 |
msgstr ""
|
9733 |
|
9734 |
-
#: app/libraries/main.php:
|
9735 |
msgid "Share on Facebook"
|
9736 |
msgstr "Sdílet na Facebooku"
|
9737 |
|
9738 |
-
#: app/libraries/main.php:
|
9739 |
msgid "Tweet"
|
9740 |
msgstr "Tweet"
|
9741 |
|
9742 |
-
#: app/libraries/main.php:
|
9743 |
#, fuzzy
|
9744 |
#| msgid "Share on Facebook"
|
9745 |
msgid "Share on Tumblr"
|
9746 |
msgstr "Sdílet na Facebooku"
|
9747 |
|
9748 |
-
#: app/libraries/main.php:
|
9749 |
msgid "Share on Pinterest"
|
9750 |
msgstr ""
|
9751 |
|
9752 |
-
#: app/libraries/main.php:
|
9753 |
#, fuzzy
|
9754 |
#| msgid "Share on Facebook"
|
9755 |
msgid "Share on Flipboard"
|
9756 |
msgstr "Sdílet na Facebooku"
|
9757 |
|
9758 |
-
#: app/libraries/main.php:
|
9759 |
#, fuzzy
|
9760 |
#| msgid "Share on Facebook"
|
9761 |
msgid "Share on GetPocket"
|
9762 |
msgstr "Sdílet na Facebooku"
|
9763 |
|
9764 |
-
#: app/libraries/main.php:
|
9765 |
#, fuzzy
|
9766 |
#| msgid "Share on Facebook"
|
9767 |
msgid "Share on Reddit"
|
9768 |
msgstr "Sdílet na Facebooku"
|
9769 |
|
9770 |
-
#: app/libraries/main.php:
|
9771 |
msgid "Share on Telegram"
|
9772 |
msgstr ""
|
9773 |
|
9774 |
-
#: app/libraries/main.php:
|
9775 |
msgid "Share on WhatsApp"
|
9776 |
msgstr ""
|
9777 |
|
9778 |
-
#: app/libraries/main.php:
|
9779 |
msgid "Custom Shortcode"
|
9780 |
msgstr "Uživatelské zkrácené kódy"
|
9781 |
|
9782 |
-
#: app/libraries/main.php:
|
9783 |
#, fuzzy
|
9784 |
#| msgid "The events are imported successfully!"
|
9785 |
msgid "Your booking has been verified successfully!"
|
9786 |
msgstr "Události byly úspěšně importovány!"
|
9787 |
|
9788 |
-
#: app/libraries/main.php:
|
9789 |
msgid "Your booking already verified!"
|
9790 |
msgstr "Vaše rezervace již byla ověřena!"
|
9791 |
|
9792 |
-
#: app/libraries/main.php:
|
9793 |
msgid "Your booking cannot verify!"
|
9794 |
msgstr "Vaši rezervaci nelze ověřit!"
|
9795 |
|
9796 |
-
#: app/libraries/main.php:
|
9797 |
msgid "Your booking successfully canceled."
|
9798 |
msgstr "Vaše rezervace byla úspěšně zrušena."
|
9799 |
|
9800 |
-
#: app/libraries/main.php:
|
9801 |
msgid "Your booking already canceled!"
|
9802 |
msgstr "Vaše rezervace již byla zrušena!"
|
9803 |
|
9804 |
-
#: app/libraries/main.php:
|
9805 |
#, fuzzy
|
9806 |
#| msgid "The event is finished."
|
9807 |
msgid "The event is already finished!"
|
9808 |
msgstr "Událost je ukončena."
|
9809 |
|
9810 |
-
#: app/libraries/main.php:
|
9811 |
msgid "The cancelation window is not started yet."
|
9812 |
msgstr ""
|
9813 |
|
9814 |
-
#: app/libraries/main.php:
|
9815 |
msgid "The cancelation window is passed."
|
9816 |
msgstr ""
|
9817 |
|
9818 |
-
#: app/libraries/main.php:
|
9819 |
msgid "Your booking cannot be canceled."
|
9820 |
msgstr "Vaši rezervaci nelze zrušit."
|
9821 |
|
9822 |
-
#: app/libraries/main.php:
|
9823 |
msgid "You canceled the payment successfully."
|
9824 |
msgstr "Platbu jste úspěšně zrušili."
|
9825 |
|
9826 |
-
#: app/libraries/main.php:
|
9827 |
msgid "You returned from payment gateway successfully."
|
9828 |
msgstr "Úspěšně jste se vrátili z platební brány."
|
9829 |
|
9830 |
-
#: app/libraries/main.php:
|
9831 |
msgid "Cannot find the invoice!"
|
9832 |
msgstr "Fakturu nelze najít!"
|
9833 |
|
9834 |
-
#: app/libraries/main.php:
|
9835 |
msgid "Invoice is invalid."
|
9836 |
msgstr "Faktura je neplatná."
|
9837 |
|
9838 |
-
#: app/libraries/main.php:
|
9839 |
#, fuzzy
|
9840 |
#| msgid ""
|
9841 |
#| "Your booking still is not confirmed. You able download it after "
|
@@ -9845,323 +9873,323 @@ msgid ""
|
|
9845 |
msgstr ""
|
9846 |
"Vaše rezervace stále není potvrzena. Můžete si ji stáhnout po potvrzení!"
|
9847 |
|
9848 |
-
#: app/libraries/main.php:
|
9849 |
msgid "Booking Not Confirmed."
|
9850 |
msgstr "Rezervace nebyla potvrzena."
|
9851 |
|
9852 |
-
#: app/libraries/main.php:
|
9853 |
msgid "Cannot find the booking!"
|
9854 |
msgstr "Nemohu najít rezervaci!"
|
9855 |
|
9856 |
-
#: app/libraries/main.php:
|
9857 |
msgid "Booking is invalid."
|
9858 |
msgstr "Rezervace není platná."
|
9859 |
|
9860 |
-
#: app/libraries/main.php:
|
9861 |
#, fuzzy
|
9862 |
#| msgid "Sorry! You don't have access to modify this event."
|
9863 |
msgid "You don't have access to view this invoice!"
|
9864 |
msgstr "Promiňte! Nemáte přístup k úpravě této události."
|
9865 |
|
9866 |
-
#: app/libraries/main.php:
|
9867 |
#, fuzzy
|
9868 |
#| msgid "Invoice is invalid."
|
9869 |
msgid "Key is invalid."
|
9870 |
msgstr "Faktura je neplatná."
|
9871 |
|
9872 |
-
#: app/libraries/main.php:
|
9873 |
#, php-format
|
9874 |
msgid "%s Invoice"
|
9875 |
msgstr "%s Faktura"
|
9876 |
|
9877 |
-
#: app/libraries/main.php:
|
9878 |
#, fuzzy
|
9879 |
#| msgid "Date and Time"
|
9880 |
msgid "Date & Time"
|
9881 |
msgstr "Datum a čas"
|
9882 |
|
9883 |
-
#: app/libraries/main.php:
|
9884 |
#, fuzzy
|
9885 |
#| msgid "Booking Price"
|
9886 |
msgid "Booking Fields"
|
9887 |
msgstr "Cena rezervace"
|
9888 |
|
9889 |
-
#: app/libraries/main.php:
|
9890 |
msgid "Billing"
|
9891 |
msgstr "Fakturace"
|
9892 |
|
9893 |
-
#: app/libraries/main.php:
|
9894 |
#, fuzzy
|
9895 |
#| msgid "Coupons"
|
9896 |
msgid "Coupon Code"
|
9897 |
msgstr "Kupóny"
|
9898 |
|
9899 |
-
#: app/libraries/main.php:
|
9900 |
msgid "Total"
|
9901 |
msgstr "Celkem"
|
9902 |
|
9903 |
-
#: app/libraries/main.php:
|
9904 |
#, fuzzy
|
9905 |
#| msgid "Payment Gateways"
|
9906 |
msgid "Payment"
|
9907 |
msgstr "Platební brány"
|
9908 |
|
9909 |
-
#: app/libraries/main.php:
|
9910 |
#, fuzzy
|
9911 |
#| msgid "Payment Gateways"
|
9912 |
msgid "Payment Time"
|
9913 |
msgstr "Platební brány"
|
9914 |
|
9915 |
-
#: app/libraries/main.php:
|
9916 |
msgid "Request is not valid."
|
9917 |
msgstr "Požadavek není platný."
|
9918 |
|
9919 |
-
#: app/libraries/main.php:
|
9920 |
msgid "iCal export stopped!"
|
9921 |
msgstr "iCal export byl zastaven!"
|
9922 |
|
9923 |
-
#: app/libraries/main.php:
|
9924 |
-
#: app/libraries/main.php:
|
9925 |
-
#: app/libraries/main.php:
|
9926 |
-
#: app/libraries/main.php:
|
9927 |
-
#: app/libraries/main.php:
|
9928 |
-
#: app/libraries/main.php:
|
9929 |
-
#: app/libraries/main.php:
|
9930 |
-
#: app/libraries/main.php:
|
9931 |
msgid "Sort"
|
9932 |
msgstr "Seřadit"
|
9933 |
|
9934 |
-
#: app/libraries/main.php:
|
9935 |
-
#: app/libraries/main.php:
|
9936 |
-
#: app/libraries/main.php:
|
9937 |
-
#: app/libraries/main.php:
|
9938 |
-
#: app/libraries/main.php:
|
9939 |
-
#: app/libraries/main.php:
|
9940 |
-
#: app/libraries/main.php:
|
9941 |
msgid "Required Field"
|
9942 |
msgstr "Požadovaná pole"
|
9943 |
|
9944 |
-
#: app/libraries/main.php:
|
9945 |
-
#: app/libraries/main.php:
|
9946 |
-
#: app/libraries/main.php:
|
9947 |
-
#: app/libraries/main.php:
|
9948 |
-
#: app/libraries/main.php:
|
9949 |
-
#: app/libraries/main.php:
|
9950 |
-
#: app/libraries/main.php:
|
9951 |
msgid "Insert a label for this field"
|
9952 |
msgstr "Vložte štítek pro toto pole"
|
9953 |
|
9954 |
-
#: app/libraries/main.php:
|
9955 |
msgid "HTML and shortcode are allowed."
|
9956 |
msgstr "HTML a zkrácené kódy jsou povoleny."
|
9957 |
|
9958 |
-
#: app/libraries/main.php:
|
9959 |
-
#: app/libraries/main.php:
|
9960 |
msgid "Option"
|
9961 |
msgstr "Možnost"
|
9962 |
|
9963 |
-
#: app/libraries/main.php:
|
9964 |
#, php-format
|
9965 |
msgid "Instead of %s, the page title with a link will be show."
|
9966 |
msgstr "Místo%s se zobrazí název stránky s odkazem."
|
9967 |
|
9968 |
-
#: app/libraries/main.php:
|
9969 |
msgid "Agreement Page"
|
9970 |
msgstr "Stránka smlouvy"
|
9971 |
|
9972 |
-
#: app/libraries/main.php:
|
9973 |
msgid "Checked by default"
|
9974 |
msgstr "Ve výchozím nastavení zaškrtnuto"
|
9975 |
|
9976 |
-
#: app/libraries/main.php:
|
9977 |
msgid "Unchecked by default"
|
9978 |
msgstr "Ve výchozím nastavení není zaškrtnuto"
|
9979 |
|
9980 |
-
#: app/libraries/main.php:
|
9981 |
msgid "Insert a label for this option"
|
9982 |
msgstr "Vložte štítek pro tuto možnost"
|
9983 |
|
9984 |
-
#: app/libraries/main.php:
|
9985 |
msgid "Free"
|
9986 |
msgstr "Zdarma"
|
9987 |
|
9988 |
-
#: app/libraries/main.php:
|
9989 |
msgid "M.E. Calender"
|
9990 |
msgstr "M.E. Kalendář"
|
9991 |
|
9992 |
-
#: app/libraries/main.php:
|
9993 |
#, php-format
|
9994 |
msgid "Copy of %s"
|
9995 |
msgstr "Kopie %s"
|
9996 |
|
9997 |
-
#: app/libraries/main.php:
|
9998 |
msgid "Booked an event."
|
9999 |
msgstr "Událost byla rezervována."
|
10000 |
|
10001 |
-
#: app/libraries/main.php:
|
10002 |
#, php-format
|
10003 |
msgid "%s booked %s event."
|
10004 |
msgstr "%s zarezervoval %s událost."
|
10005 |
|
10006 |
-
#: app/libraries/main.php:
|
10007 |
msgid "Taxonomies"
|
10008 |
msgstr "Taxonomie"
|
10009 |
|
10010 |
# Mrknout na kontext
|
10011 |
-
#: app/libraries/main.php:
|
10012 |
msgid "Category Plural Label"
|
10013 |
msgstr "Štítek množné kategorie"
|
10014 |
|
10015 |
# Mrknout na kontext
|
10016 |
-
#: app/libraries/main.php:
|
10017 |
msgid "Category Singular Label"
|
10018 |
msgstr "Štítek jednotné kategorie"
|
10019 |
|
10020 |
-
#: app/libraries/main.php:
|
10021 |
msgid "Label Plural Label"
|
10022 |
msgstr "Štítek množného štítku"
|
10023 |
|
10024 |
-
#: app/libraries/main.php:
|
10025 |
msgid "Label Singular Label"
|
10026 |
msgstr "Štítek jednotného štítku"
|
10027 |
|
10028 |
-
#: app/libraries/main.php:
|
10029 |
msgid "label"
|
10030 |
msgstr "štítek"
|
10031 |
|
10032 |
-
#: app/libraries/main.php:
|
10033 |
msgid "Location Plural Label"
|
10034 |
msgstr "Štítek množného umístění"
|
10035 |
|
10036 |
-
#: app/libraries/main.php:
|
10037 |
msgid "Location Singular Label"
|
10038 |
msgstr "Štítek jednotného umístění"
|
10039 |
|
10040 |
-
#: app/libraries/main.php:
|
10041 |
msgid "Organizer Plural Label"
|
10042 |
msgstr "Štítek množného organizátora"
|
10043 |
|
10044 |
-
#: app/libraries/main.php:
|
10045 |
msgid "Organizer Singular Label"
|
10046 |
msgstr "Štítek jednotného organizátora"
|
10047 |
|
10048 |
-
#: app/libraries/main.php:
|
10049 |
msgid "Speaker Plural Label"
|
10050 |
msgstr "Štítek množného řečníka"
|
10051 |
|
10052 |
-
#: app/libraries/main.php:
|
10053 |
msgid "Speaker Singular Label"
|
10054 |
msgstr "Štítek jednotného řečníka"
|
10055 |
|
10056 |
-
#: app/libraries/main.php:
|
10057 |
msgid "Sunday abbreviation"
|
10058 |
msgstr "Neděle zkratka"
|
10059 |
|
10060 |
-
#: app/libraries/main.php:
|
10061 |
msgid "Monday abbreviation"
|
10062 |
msgstr "Pondělí zkratka"
|
10063 |
|
10064 |
-
#: app/libraries/main.php:
|
10065 |
msgid "Tuesday abbreviation"
|
10066 |
msgstr "Úterý zkratka"
|
10067 |
|
10068 |
-
#: app/libraries/main.php:
|
10069 |
msgid "Wednesday abbreviation"
|
10070 |
msgstr "Středa zkratka"
|
10071 |
|
10072 |
-
#: app/libraries/main.php:
|
10073 |
msgid "Thursday abbreviation"
|
10074 |
msgstr "Čtvrtek zkratka"
|
10075 |
|
10076 |
-
#: app/libraries/main.php:
|
10077 |
msgid "Friday abbreviation"
|
10078 |
msgstr "Pátek zkratka"
|
10079 |
|
10080 |
-
#: app/libraries/main.php:
|
10081 |
msgid "Saturday abbreviation"
|
10082 |
msgstr "Sobota zkratka"
|
10083 |
|
10084 |
-
#: app/libraries/main.php:
|
10085 |
msgid "Others"
|
10086 |
msgstr "Další"
|
10087 |
|
10088 |
-
#: app/libraries/main.php:
|
10089 |
msgid "Booking Success Message"
|
10090 |
msgstr "Zpráva o úspěchu rezervace"
|
10091 |
|
10092 |
-
#: app/libraries/main.php:
|
10093 |
#, fuzzy
|
10094 |
#| msgid ""
|
10095 |
#| "Thanks for your booking. Your tickets booked, booking verification might "
|
10096 |
#| "be needed, please check your email."
|
10097 |
msgid ""
|
10098 |
-
"
|
10099 |
"be needed, please check your email."
|
10100 |
msgstr ""
|
10101 |
"Děkujeme za vaši rezervaci. Vaše vstupenky jsou rezervovány, může být nutné "
|
10102 |
"ověřit rezervaci. Zkontrolujte prosím svůj e-mail."
|
10103 |
|
10104 |
-
#: app/libraries/main.php:
|
10105 |
#, fuzzy
|
10106 |
#| msgid "Booking Success Message"
|
10107 |
msgid "Booking Restriction Message 1"
|
10108 |
msgstr "Zpráva o úspěchu rezervace"
|
10109 |
|
10110 |
-
#: app/libraries/main.php:
|
10111 |
#, php-format
|
10112 |
msgid ""
|
10113 |
"You selected %s tickets to book but maximum number of tikets per user is %s "
|
10114 |
"tickets."
|
10115 |
msgstr ""
|
10116 |
|
10117 |
-
#: app/libraries/main.php:
|
10118 |
#, fuzzy
|
10119 |
#| msgid "Booking Success Message"
|
10120 |
msgid "Booking Restriction Message 2"
|
10121 |
msgstr "Zpráva o úspěchu rezervace"
|
10122 |
|
10123 |
-
#: app/libraries/main.php:
|
10124 |
#, php-format
|
10125 |
msgid ""
|
10126 |
"You booked %s tickets till now but maximum number of tickets per user is %s "
|
10127 |
"tickets."
|
10128 |
msgstr ""
|
10129 |
|
10130 |
-
#: app/libraries/main.php:
|
10131 |
#, fuzzy
|
10132 |
#| msgid "Booking Success Message"
|
10133 |
msgid "Booking IP Restriction Message"
|
10134 |
msgstr "Zpráva o úspěchu rezervace"
|
10135 |
|
10136 |
-
#: app/libraries/main.php:
|
10137 |
#, php-format
|
10138 |
msgid "Maximum allowed number of tickets that you can book is %s."
|
10139 |
msgstr ""
|
10140 |
|
10141 |
-
#: app/libraries/main.php:
|
10142 |
#, fuzzy
|
10143 |
#| msgid "Booking Options"
|
10144 |
msgid "Booking Button"
|
10145 |
msgstr "Možnosti rezervace"
|
10146 |
|
10147 |
-
#: app/libraries/main.php:
|
10148 |
#, fuzzy
|
10149 |
#| msgid "Booking Form"
|
10150 |
msgid "Book Now"
|
10151 |
msgstr "Rezervační formulář"
|
10152 |
|
10153 |
-
#: app/libraries/main.php:
|
10154 |
#: app/widgets/single.php:133
|
10155 |
msgid "Register Button"
|
10156 |
msgstr "Registrační tlačítko"
|
10157 |
|
10158 |
-
#: app/libraries/main.php:
|
10159 |
#: app/skins/available_spot/tpl.php:199 app/skins/carousel/render.php:101
|
10160 |
#: app/skins/carousel/render.php:140 app/skins/grid/render.php:93
|
10161 |
#: app/skins/grid/render.php:152 app/skins/grid/render.php:213
|
10162 |
-
#: app/skins/grid/render.php:236 app/skins/list/render.php:
|
10163 |
-
#: app/skins/list/render.php:
|
10164 |
-
#: app/skins/single.php:
|
10165 |
#: app/skins/single/default.php:340 app/skins/single/default.php:342
|
10166 |
#: app/skins/single/default.php:578 app/skins/single/default.php:580
|
10167 |
#: app/skins/single/m1.php:143 app/skins/single/m1.php:145
|
@@ -10173,170 +10201,170 @@ msgstr "Registrační tlačítko"
|
|
10173 |
msgid "REGISTER"
|
10174 |
msgstr "REGISTROVAT"
|
10175 |
|
10176 |
-
#: app/libraries/main.php:
|
10177 |
msgid "View Detail Button"
|
10178 |
msgstr "Tlačítko Zobrazit detail"
|
10179 |
|
10180 |
-
#: app/libraries/main.php:
|
10181 |
#: app/skins/carousel/render.php:101 app/skins/carousel/render.php:140
|
10182 |
#: app/skins/grid/render.php:93 app/skins/grid/render.php:152
|
10183 |
#: app/skins/grid/render.php:213 app/skins/grid/render.php:236
|
10184 |
-
#: app/skins/list/render.php:
|
10185 |
-
#: app/skins/masonry/render.php:
|
10186 |
#: app/skins/slider/render.php:60 app/skins/slider/render.php:83
|
10187 |
#: app/skins/slider/render.php:105 app/skins/slider/render.php:128
|
10188 |
#: app/skins/slider/render.php:162
|
10189 |
msgid "View Detail"
|
10190 |
msgstr "Zobrazit detail"
|
10191 |
|
10192 |
-
#: app/libraries/main.php:
|
10193 |
msgid "Event Detail Button"
|
10194 |
msgstr "Tlačítko Detail události"
|
10195 |
|
10196 |
-
#: app/libraries/main.php:
|
10197 |
msgid "Event Detail"
|
10198 |
msgstr "Zobrazit událost"
|
10199 |
|
10200 |
-
#: app/libraries/main.php:
|
10201 |
msgid "Ticket (Singular)"
|
10202 |
msgstr "Vstupenka (Jednotné)"
|
10203 |
|
10204 |
-
#: app/libraries/main.php:
|
10205 |
msgid "Tickets (Plural)"
|
10206 |
msgstr "Vstupenky (Množné)"
|
10207 |
|
10208 |
-
#: app/libraries/main.php:
|
10209 |
msgid "EventON"
|
10210 |
msgstr "EventON"
|
10211 |
|
10212 |
-
#: app/libraries/main.php:
|
10213 |
msgid "The Events Calendar"
|
10214 |
msgstr "The Events Calendar"
|
10215 |
|
10216 |
-
#: app/libraries/main.php:
|
10217 |
msgid "Events Schedule WP Plugin"
|
10218 |
msgstr "Events Schedule WP Plugin"
|
10219 |
|
10220 |
-
#: app/libraries/main.php:
|
10221 |
msgid "Calendarize It"
|
10222 |
msgstr "Calendarize It"
|
10223 |
|
10224 |
-
#: app/libraries/main.php:
|
10225 |
#, fuzzy
|
10226 |
#| msgid "Event Speakers"
|
10227 |
msgid "Event Espresso"
|
10228 |
msgstr "Řečník události"
|
10229 |
|
10230 |
-
#: app/libraries/main.php:
|
10231 |
#, fuzzy
|
10232 |
#| msgid "Event Repeating (Recurring events)"
|
10233 |
msgid "Events Manager (Recurring)"
|
10234 |
msgstr "Opakování události (opakující se události)"
|
10235 |
|
10236 |
-
#: app/libraries/main.php:
|
10237 |
#, fuzzy
|
10238 |
#| msgid "Modern Events Calendar (Lite)"
|
10239 |
msgid "Events Manager (Single)"
|
10240 |
msgstr "Modern Events Calendar (Lite)"
|
10241 |
|
10242 |
-
#: app/libraries/main.php:
|
10243 |
#, fuzzy
|
10244 |
#| msgid "Modern Events Calendar (Lite)"
|
10245 |
msgid "WP Event Manager"
|
10246 |
msgstr "Modern Events Calendar (Lite)"
|
10247 |
|
10248 |
-
#: app/libraries/main.php:
|
10249 |
msgid "Waiting"
|
10250 |
msgstr "Čekající"
|
10251 |
|
10252 |
-
#: app/libraries/main.php:
|
10253 |
#, fuzzy
|
10254 |
#| msgid "Sunday"
|
10255 |
msgid "Sun"
|
10256 |
msgstr "Neděle"
|
10257 |
|
10258 |
-
#: app/libraries/main.php:
|
10259 |
#, fuzzy
|
10260 |
#| msgid "Monday"
|
10261 |
msgid "Mon"
|
10262 |
msgstr "Pondělí"
|
10263 |
|
10264 |
-
#: app/libraries/main.php:
|
10265 |
#, fuzzy
|
10266 |
#| msgid "Tel"
|
10267 |
msgid "Tue"
|
10268 |
msgstr "Tel"
|
10269 |
|
10270 |
-
#: app/libraries/main.php:
|
10271 |
msgid "Wed"
|
10272 |
msgstr ""
|
10273 |
|
10274 |
-
#: app/libraries/main.php:
|
10275 |
msgid "Thu"
|
10276 |
msgstr ""
|
10277 |
|
10278 |
-
#: app/libraries/main.php:
|
10279 |
#, fuzzy
|
10280 |
#| msgid "Friday"
|
10281 |
msgid "Fri"
|
10282 |
msgstr "Pátek"
|
10283 |
|
10284 |
-
#: app/libraries/main.php:
|
10285 |
#, fuzzy
|
10286 |
#| msgid "Start"
|
10287 |
msgid "Sat"
|
10288 |
msgstr "Začátek"
|
10289 |
|
10290 |
-
#: app/libraries/main.php:
|
10291 |
-
#: app/libraries/render.php:
|
10292 |
msgid "Skin controller does not exist."
|
10293 |
msgstr "Ovladač vzhledu neexistuje."
|
10294 |
|
10295 |
-
#: app/libraries/main.php:
|
10296 |
msgid "Sold Out"
|
10297 |
msgstr "Vyprodáno"
|
10298 |
|
10299 |
-
#: app/libraries/main.php:
|
10300 |
#, fuzzy
|
10301 |
#| msgid "Ticket"
|
10302 |
msgid "Last Few Tickets"
|
10303 |
msgstr "Vstupenka"
|
10304 |
|
10305 |
-
#: app/libraries/main.php:
|
10306 |
#, fuzzy
|
10307 |
#| msgid "Upcoming Events"
|
10308 |
msgid "Ongoing"
|
10309 |
msgstr "Nadcházející události"
|
10310 |
|
10311 |
-
#: app/libraries/main.php:
|
10312 |
#, fuzzy
|
10313 |
#| msgid "minutes"
|
10314 |
msgid "Minutes"
|
10315 |
msgstr "minuty"
|
10316 |
|
10317 |
-
#: app/libraries/main.php:
|
10318 |
msgid "AM / PM"
|
10319 |
msgstr ""
|
10320 |
|
10321 |
-
#: app/libraries/main.php:
|
10322 |
msgid "AM"
|
10323 |
msgstr "dop."
|
10324 |
|
10325 |
-
#: app/libraries/main.php:
|
10326 |
msgid "PM"
|
10327 |
msgstr "odp."
|
10328 |
|
10329 |
-
#: app/libraries/main.php:
|
10330 |
msgid "Ongoing..."
|
10331 |
msgstr ""
|
10332 |
|
10333 |
-
#: app/libraries/main.php:
|
10334 |
#, fuzzy
|
10335 |
#| msgid "Expired Events"
|
10336 |
msgid "Expired!"
|
10337 |
msgstr "Události vypršely"
|
10338 |
|
10339 |
-
#: app/libraries/main.php:
|
10340 |
msgid "Mapping with Profile Fields"
|
10341 |
msgstr ""
|
10342 |
|
@@ -10344,89 +10372,89 @@ msgstr ""
|
|
10344 |
msgid "Please verify your email."
|
10345 |
msgstr "Prosím, ověřte svůj e-mail."
|
10346 |
|
10347 |
-
#: app/libraries/notifications.php:
|
10348 |
msgid "Your booking is received."
|
10349 |
msgstr "Vaše rezervace je přijata."
|
10350 |
|
10351 |
-
#: app/libraries/notifications.php:
|
10352 |
msgid "Your booking is confirmed."
|
10353 |
msgstr "Vaše rezervace je potvrzena."
|
10354 |
|
10355 |
-
#: app/libraries/notifications.php:
|
10356 |
msgid "booking canceled."
|
10357 |
msgstr "rezervace zrušena."
|
10358 |
|
10359 |
-
#: app/libraries/notifications.php:
|
10360 |
#, fuzzy
|
10361 |
#| msgid "booking canceled."
|
10362 |
msgid "booking rejected."
|
10363 |
msgstr "rezervace zrušena."
|
10364 |
|
10365 |
-
#: app/libraries/notifications.php:
|
10366 |
msgid "A new booking is received."
|
10367 |
msgstr "Je přijata nová rezervace."
|
10368 |
|
10369 |
-
#: app/libraries/notifications.php:
|
10370 |
msgid "A new event is added."
|
10371 |
msgstr "Je přidána se nová událost."
|
10372 |
|
10373 |
-
#: app/libraries/notifications.php:
|
10374 |
msgid "Your event is published."
|
10375 |
msgstr "Vaše událost je zveřejněna."
|
10376 |
|
10377 |
-
#: app/libraries/notifications.php:
|
10378 |
#, fuzzy
|
10379 |
#| msgid "Event Color"
|
10380 |
msgid "Event is soldout!"
|
10381 |
msgstr "Barva události"
|
10382 |
|
10383 |
-
#: app/libraries/notifications.php:
|
10384 |
msgid "to"
|
10385 |
msgstr "do"
|
10386 |
|
10387 |
-
#: app/libraries/notifications.php:
|
10388 |
msgid "+ Add to Google Calendar"
|
10389 |
msgstr "+ Přidat do Google kalendáře"
|
10390 |
|
10391 |
-
#: app/libraries/notifications.php:
|
10392 |
#, fuzzy
|
10393 |
#| msgid "+ iCal export"
|
10394 |
msgid "+ iCal / Outlook export"
|
10395 |
msgstr "+ iCal export"
|
10396 |
|
10397 |
-
#: app/libraries/notifications.php:
|
10398 |
#, fuzzy, php-format
|
10399 |
#| msgid "+ Add to Google Calendar"
|
10400 |
msgid "+ %s to Google Calendar"
|
10401 |
msgstr "+ Přidat do Google kalendáře"
|
10402 |
|
10403 |
-
#: app/libraries/notifications.php:
|
10404 |
msgid "Yes"
|
10405 |
msgstr "Ano"
|
10406 |
|
10407 |
-
#: app/libraries/notifications.php:
|
10408 |
msgid "No"
|
10409 |
msgstr "Ne"
|
10410 |
|
10411 |
-
#: app/libraries/skins.php:
|
10412 |
#, fuzzy
|
10413 |
#| msgid "Select All"
|
10414 |
msgid "Select"
|
10415 |
msgstr "Vybrat vše"
|
10416 |
|
10417 |
-
#: app/libraries/skins.php:
|
10418 |
#, fuzzy
|
10419 |
#| msgid "Option Price"
|
10420 |
msgid "Min Price"
|
10421 |
msgstr "Možnosti ceny"
|
10422 |
|
10423 |
-
#: app/libraries/skins.php:
|
10424 |
#, fuzzy
|
10425 |
#| msgid "Price"
|
10426 |
msgid "Max Price"
|
10427 |
msgstr "Cena"
|
10428 |
|
10429 |
-
#: app/libraries/skins.php:
|
10430 |
msgid "Book Event"
|
10431 |
msgstr "Rezervovat událost"
|
10432 |
|
@@ -10574,15 +10602,15 @@ msgstr "Událost je ukončena."
|
|
10574 |
msgid "The event is ongoing."
|
10575 |
msgstr "Událost právě probíhá."
|
10576 |
|
10577 |
-
#: app/modules/googlemap/details.php:
|
10578 |
msgid "Address from ..."
|
10579 |
msgstr "Adresa od ..."
|
10580 |
|
10581 |
-
#: app/modules/googlemap/details.php:
|
10582 |
msgid "Get Directions"
|
10583 |
msgstr "Získat směr"
|
10584 |
|
10585 |
-
#: app/modules/links/details.php:17 app/skins/single.php:
|
10586 |
msgid "Share this event"
|
10587 |
msgstr "Sdílet tuto událost"
|
10588 |
|
@@ -10601,18 +10629,18 @@ msgstr "Datum: %s"
|
|
10601 |
msgid "Time: %s"
|
10602 |
msgstr "Čas: %s"
|
10603 |
|
10604 |
-
#: app/modules/local-time/type2.php:
|
10605 |
#, fuzzy
|
10606 |
#| msgid "Local Time"
|
10607 |
msgid "Local Time:"
|
10608 |
msgstr "Místní čas"
|
10609 |
|
10610 |
-
#: app/modules/local-time/type2.php:
|
10611 |
#, php-format
|
10612 |
msgid "%s |"
|
10613 |
msgstr ""
|
10614 |
|
10615 |
-
#: app/modules/local-time/type2.php:
|
10616 |
#, php-format
|
10617 |
msgid "%s"
|
10618 |
msgstr ""
|
@@ -10637,7 +10665,7 @@ msgstr "Další výskyt"
|
|
10637 |
msgid "Go to occurrence page"
|
10638 |
msgstr "Přejít na stránku výskytu"
|
10639 |
|
10640 |
-
#: app/modules/next-event/details.php:148 app/skins/single.php:
|
10641 |
#: app/skins/single/default.php:166 app/skins/single/default.php:405
|
10642 |
#: app/skins/single/m1.php:40 app/skins/single/modern.php:230
|
10643 |
msgid "Time"
|
@@ -10702,6 +10730,7 @@ msgstr ""
|
|
10702 |
#: app/skins/list/tpl.php:85 app/skins/masonry/tpl.php:71
|
10703 |
#: app/skins/masonry/tpl.php:75 app/skins/slider/tpl.php:50
|
10704 |
#: app/skins/timeline/tpl.php:65 app/skins/timeline/tpl.php:69
|
|
|
10705 |
msgid "No event found!"
|
10706 |
msgstr "Nebyla nalezena žádná událost!"
|
10707 |
|
@@ -10718,7 +10747,7 @@ msgstr "Dostupné spoty:"
|
|
10718 |
|
10719 |
#: app/skins/carousel/render.php:163 app/skins/countdown/tpl.php:146
|
10720 |
#: app/skins/countdown/tpl.php:192 app/skins/countdown/tpl.php:210
|
10721 |
-
#: app/skins/cover/tpl.php:63 app/skins/list/render.php:
|
10722 |
msgid "EVENT DETAIL"
|
10723 |
msgstr "DETAIL UDÁLOSTI"
|
10724 |
|
@@ -10765,36 +10794,36 @@ msgstr "Událost pro %s"
|
|
10765 |
msgid "No Events"
|
10766 |
msgstr "Žádné události"
|
10767 |
|
10768 |
-
#: app/skins/single.php:
|
10769 |
#, fuzzy
|
10770 |
#| msgid "View Event"
|
10771 |
msgid "PRV Event"
|
10772 |
msgstr "Zobrazit událost"
|
10773 |
|
10774 |
-
#: app/skins/single.php:
|
10775 |
#, fuzzy
|
10776 |
#| msgid "New Event"
|
10777 |
msgid "NXT Event"
|
10778 |
msgstr "Nová událost"
|
10779 |
|
10780 |
-
#: app/skins/single.php:
|
10781 |
msgid "Home"
|
10782 |
msgstr "Domů"
|
10783 |
|
10784 |
-
#: app/skins/single.php:
|
10785 |
#: app/skins/single/m1.php:283 app/skins/single/m2.php:204
|
10786 |
#: app/skins/single/modern.php:314
|
10787 |
msgid "Sold out!"
|
10788 |
msgstr "Vyprodáno!"
|
10789 |
|
10790 |
-
#: app/skins/single.php:
|
10791 |
#: app/skins/single/default.php:307 app/skins/single/default.php:545
|
10792 |
#: app/skins/single/m1.php:112 app/skins/single/m2.php:35
|
10793 |
#: app/skins/single/modern.php:60
|
10794 |
msgid "Phone"
|
10795 |
msgstr "Telefon"
|
10796 |
|
10797 |
-
#: app/skins/single.php:
|
10798 |
msgid "Speakers:"
|
10799 |
msgstr "Řečník:"
|
10800 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar Lite\n"
|
4 |
+
"POT-Creation-Date: 2021-02-24 11:23+0330\n"
|
5 |
+
"PO-Revision-Date: 2021-02-24 11:24+0330\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: cs_CZ\n"
|
22 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
23 |
|
24 |
#: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:24
|
25 |
+
#: app/features/ix/import.php:48 app/features/ix/import.php:77
|
26 |
#: app/features/ix/thirdparty.php:26 app/features/mec.php:1174
|
27 |
#: app/features/mec.php:1198 app/features/mec/dashboard.php:65
|
28 |
#: app/widgets/MEC.php:33
|
93 |
msgstr "Přidat nový zkrácený kód"
|
94 |
|
95 |
#: app/features/booking/calendar_novel.php:136
|
96 |
+
#: app/features/search_bar/search_result.php:12 app/libraries/main.php:6610
|
97 |
+
#: app/libraries/main.php:6657 app/libraries/notifications.php:1358
|
98 |
+
#: app/libraries/render.php:531 app/libraries/render.php:723
|
99 |
+
#: app/libraries/render.php:781 app/libraries/render.php:878
|
100 |
#: app/modules/local-time/details.php:50 app/modules/local-time/type1.php:45
|
101 |
+
#: app/modules/local-time/type2.php:70 app/modules/local-time/type3.php:45
|
102 |
#: app/modules/next-event/details.php:154
|
103 |
+
#: app/modules/next-event/multiple.php:64 app/skins/single.php:1215
|
104 |
#: app/skins/single/default.php:172 app/skins/single/default.php:411
|
105 |
#: app/skins/single/m1.php:46 app/skins/single/modern.php:236
|
106 |
#, fuzzy
|
114 |
msgid "Chosen Time:"
|
115 |
msgstr "Místní čas"
|
116 |
|
117 |
+
#: app/features/colors.php:50 app/features/fes/form.php:935
|
118 |
+
#: app/features/mec/settings.php:817
|
119 |
msgid "Event Color"
|
120 |
msgstr "Barva události"
|
121 |
|
128 |
#: app/features/contextual.php:55 app/features/mec.php:476
|
129 |
#: app/features/mec/dashboard.php:143 app/features/mec/support.php:20
|
130 |
#: app/features/popup/event.php:60 app/features/popup/shortcode.php:37
|
131 |
+
#: app/libraries/main.php:652
|
132 |
msgid "Settings"
|
133 |
msgstr "Nastavení"
|
134 |
|
135 |
#: app/features/contextual.php:62 app/features/events.php:1516
|
136 |
#: app/features/events.php:2486 app/features/mec/booking.php:626
|
137 |
+
#: app/features/mec/booking.php:894 app/features/mec/settings.php:910
|
138 |
+
#: app/features/mec/support.php:29 app/libraries/main.php:603
|
139 |
msgid "Booking Form"
|
140 |
msgstr "Rezervační formulář"
|
141 |
|
164 |
|
165 |
#: app/features/contextual.php:70 app/features/events.php:1524
|
166 |
#: app/features/mec/booking.php:836 app/features/mec/support-page.php:115
|
167 |
+
#: app/features/mec/support.php:36 app/libraries/main.php:605
|
168 |
msgid "Payment Gateways"
|
169 |
msgstr "Platební brány"
|
170 |
|
180 |
|
181 |
#: app/features/contextual.php:77 app/features/events.php:402
|
182 |
#: app/features/mec/support-page.php:117 app/features/mec/support.php:45
|
183 |
+
#: app/libraries/main.php:800
|
184 |
msgid "Notifications"
|
185 |
msgstr "Upozornění"
|
186 |
|
265 |
"height=\"420\" src=\"https://www.youtube.com/embed/dqgt1b8X8hs\" frameborder="
|
266 |
"\"0\" allowfullscreen></iframe>"
|
267 |
|
268 |
+
#: app/features/contextual.php:117 app/features/mec/settings.php:52
|
269 |
#: app/features/mec/support-page.php:97 app/libraries/main.php:566
|
270 |
msgid "General Options"
|
271 |
msgstr "Obecné možnosti"
|
272 |
|
273 |
+
#: app/features/contextual.php:139 app/features/mec/settings.php:498
|
274 |
#: app/libraries/main.php:568
|
275 |
msgid "Slugs/Permalinks"
|
276 |
msgstr "Název v URL / Trvalé odkazy"
|
279 |
msgid "Event Details/Single Event Page"
|
280 |
msgstr "Podrobnosti o události / Stránka jedné události"
|
281 |
|
282 |
+
#: app/features/contextual.php:166 app/features/mec/settings.php:530
|
283 |
#: app/libraries/main.php:569
|
284 |
msgid "Currency Options"
|
285 |
msgstr "Možnosti Měna"
|
288 |
msgid "Google Maps Options"
|
289 |
msgstr "Možnosti Google Maps"
|
290 |
|
291 |
+
#: app/features/contextual.php:244 app/features/mec/settings.php:589
|
292 |
#: app/libraries/main.php:570
|
293 |
msgid "Google Recaptcha Options"
|
294 |
msgstr "Možnosti Google Recaptcha"
|
295 |
|
296 |
#: app/features/contextual.php:258 app/features/mec/single.php:298
|
297 |
+
#: app/libraries/main.php:589
|
298 |
msgid "Countdown Options"
|
299 |
msgstr "Možnosti Odpočítávání"
|
300 |
|
301 |
#: app/features/contextual.php:268 app/features/mec/modules.php:269
|
302 |
+
#: app/libraries/main.php:615
|
303 |
msgid "Social Networks"
|
304 |
msgstr "Sociální sítě"
|
305 |
|
307 |
msgid "Next Event Module"
|
308 |
msgstr "Modul Další události"
|
309 |
|
310 |
+
#: app/features/contextual.php:286 app/features/mec/settings.php:629
|
311 |
#: app/features/mec/support-page.php:98 app/libraries/main.php:571
|
312 |
msgid "Frontend Event Submission"
|
313 |
msgstr "Předání události frontendu"
|
314 |
|
315 |
#: app/features/contextual.php:298 app/features/events.php:395
|
316 |
+
#: app/libraries/main.php:590
|
317 |
msgid "Exceptional Days"
|
318 |
msgstr "Výjimečné dny"
|
319 |
|
320 |
#: app/features/contextual.php:308 app/features/events.php:365
|
321 |
#: app/features/mec/booking.php:88 app/features/mec/notifications.php:36
|
322 |
#: app/features/mec/support-page.php:110 app/features/mec/support-page.php:114
|
323 |
+
#: app/libraries/main.php:598 app/libraries/main.php:630
|
324 |
+
#: app/libraries/main.php:717
|
325 |
msgid "Booking"
|
326 |
msgstr "Rezervace"
|
327 |
|
328 |
#: app/features/contextual.php:318 app/features/mec/booking.php:448
|
329 |
+
#: app/features/mec/booking.php:852 app/libraries/main.php:600
|
330 |
msgid "Coupons"
|
331 |
msgstr "Kupóny"
|
332 |
|
333 |
#: app/features/contextual.php:326 app/features/mec/modules.php:341
|
334 |
+
#: app/libraries/main.php:617
|
335 |
msgid "BuddyPress Integration"
|
336 |
msgstr "Integrace BuddyPress"
|
337 |
|
338 |
+
#: app/features/contextual.php:334 app/features/mec/settings.php:1124
|
339 |
+
#: app/libraries/main.php:576
|
340 |
msgid "Mailchimp Integration"
|
341 |
msgstr "Integrace Mailchimp"
|
342 |
|
345 |
msgstr "Aktivace MEC"
|
346 |
|
347 |
#: app/features/dlfile.php:121 app/features/events.php:1521
|
348 |
+
#: app/features/mec/booking.php:368 app/features/mec/settings.php:945
|
349 |
#, fuzzy
|
350 |
#| msgid "Download ICS file"
|
351 |
msgid "Downloadable File"
|
384 |
msgstr "Obrázek je nahraný!"
|
385 |
|
386 |
#: app/features/events.php:183 app/features/ix/export.php:34
|
387 |
+
#: app/features/mec/dashboard.php:267 app/libraries/main.php:5632
|
388 |
+
#: app/libraries/main.php:5652 app/skins/daily_view/tpl.php:82
|
389 |
#: app/skins/monthly_view/tpl.php:73 app/skins/tile/tpl.php:83
|
390 |
#: app/skins/yearly_view/tpl.php:71
|
391 |
msgid "Events"
|
409 |
msgid "Add New Event"
|
410 |
msgstr "Přidat novou událost"
|
411 |
|
412 |
+
#: app/features/events.php:187 app/features/ix.php:4474
|
413 |
#: app/features/ix/thirdparty.php:44 app/skins/map/tpl.php:69
|
414 |
#: app/skins/map/tpl.php:89
|
415 |
msgid "No events found!"
|
445 |
#: app/features/mec/meta_boxes/search_form.php:700
|
446 |
#: app/features/mec/meta_boxes/search_form.php:785
|
447 |
#: app/features/mec/meta_boxes/search_form.php:906
|
448 |
+
#: app/features/mec/settings.php:1017 app/features/mec/settings.php:1078
|
449 |
#: app/features/mec/single.php:385 app/features/mec/single.php:427
|
450 |
+
#: app/features/search.php:68 app/libraries/main.php:6568
|
451 |
+
#: app/libraries/main.php:6622 app/libraries/skins.php:1008
|
452 |
+
#: app/skins/single.php:1025 app/skins/single/default.php:272
|
453 |
#: app/skins/single/default.php:510 app/skins/single/m1.php:201
|
454 |
#: app/skins/single/m2.php:124 app/skins/single/modern.php:154
|
455 |
msgid "Category"
|
456 |
msgstr "Kategorie"
|
457 |
|
458 |
#: app/features/events.php:209 app/features/events.php:3533
|
459 |
+
#: app/features/fes/form.php:885 app/features/mec.php:464
|
460 |
#: app/features/mec/meta_boxes/filter.php:69
|
461 |
+
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:6567
|
462 |
+
#: app/libraries/main.php:6621
|
463 |
msgid "Categories"
|
464 |
msgstr "Kategorie"
|
465 |
|
563 |
msgid "Date And Time"
|
564 |
msgstr "Datum a čas"
|
565 |
|
566 |
+
#: app/features/events.php:393 app/features/fes/form.php:383
|
567 |
msgid "Event Repeating"
|
568 |
msgstr "Opakování události"
|
569 |
|
574 |
msgid "Event Data"
|
575 |
msgstr "Zobrazit událost"
|
576 |
|
577 |
+
#: app/features/events.php:396 app/features/mec/settings.php:847
|
578 |
+
#: app/libraries/hourlyschedule.php:35 app/skins/single.php:1431
|
579 |
msgid "Hourly Schedule"
|
580 |
msgstr "Hodinový rozvrh"
|
581 |
|
592 |
msgstr "Odkaz"
|
593 |
|
594 |
#: app/features/events.php:399 app/features/events.php:3580
|
595 |
+
#: app/features/events.php:3787 app/features/ix.php:4063
|
596 |
+
#: app/features/ix.php:4105
|
597 |
#: app/features/mec/meta_boxes/display_options.php:1506
|
598 |
#: app/features/mec/meta_boxes/search_form.php:47
|
599 |
#: app/features/mec/meta_boxes/search_form.php:133
|
606 |
#: app/features/mec/meta_boxes/search_form.php:716
|
607 |
#: app/features/mec/meta_boxes/search_form.php:801
|
608 |
#: app/features/mec/meta_boxes/search_form.php:922
|
609 |
+
#: app/features/mec/settings.php:1090 app/features/mec/single.php:389
|
610 |
#: app/features/mec/single.php:431 app/features/organizers.php:58
|
611 |
#: app/features/organizers.php:204 app/features/organizers.php:260
|
612 |
#: app/features/organizers.php:262 app/features/organizers.php:271
|
613 |
#: app/features/popup/event.php:163 app/features/popup/event.php:172
|
614 |
+
#: app/features/search.php:80 app/libraries/main.php:6574
|
615 |
+
#: app/libraries/main.php:6628 app/libraries/skins.php:1085
|
616 |
+
#: app/skins/single.php:1273 app/skins/single/default.php:297
|
617 |
#: app/skins/single/default.php:535 app/skins/single/m1.php:102
|
618 |
#: app/skins/single/m2.php:25 app/skins/single/modern.php:50
|
619 |
msgid "Organizer"
|
620 |
msgstr "Organizátor"
|
621 |
|
622 |
#: app/features/events.php:400 app/features/events.php:1235
|
623 |
+
#: app/features/fes/form.php:856 app/features/mec/settings.php:1014
|
624 |
+
#: app/libraries/main.php:6605 app/libraries/main.php:6654
|
625 |
+
#: app/skins/single.php:1051 app/skins/single/default.php:190
|
626 |
#: app/skins/single/default.php:429 app/skins/single/m1.php:61
|
627 |
#: app/skins/single/modern.php:251
|
628 |
msgid "Cost"
|
644 |
|
645 |
#: app/features/events.php:569 app/features/events.php:2472
|
646 |
#: app/features/events.php:4110 app/features/fes.php:243
|
647 |
+
#: app/features/fes/form.php:812 app/features/labels.php:180
|
648 |
#: app/features/mec/booking.php:45 app/features/organizers.php:279
|
649 |
#: app/features/popup/event.php:182 app/features/profile/profile.php:149
|
650 |
+
#: app/libraries/notifications.php:1721 app/modules/booking/steps/form.php:62
|
651 |
msgid "Name"
|
652 |
msgstr "Jméno"
|
653 |
|
654 |
#: app/features/events.php:570 app/features/events.php:2481
|
655 |
#: app/features/events.php:2548 app/features/events.php:2637
|
656 |
#: app/features/events.php:4113 app/features/fes.php:243
|
657 |
+
#: app/features/fes/form.php:808 app/features/login/login.php:5
|
658 |
#: app/features/mec/booking.php:57 app/features/mec/booking.php:664
|
659 |
#: app/features/mec/booking.php:760 app/features/mec/single.php:240
|
660 |
#: app/features/organizers.php:111 app/features/organizers.php:152
|
661 |
#: app/features/profile/profile.php:152 app/features/speakers.php:127
|
662 |
+
#: app/features/speakers.php:204 app/libraries/main.php:1916
|
663 |
+
#: app/libraries/main.php:1985 app/libraries/main.php:3426
|
664 |
+
#: app/libraries/notifications.php:1722 app/modules/booking/steps/form.php:71
|
665 |
+
#: app/modules/booking/steps/form.php:213 app/skins/single.php:1290
|
666 |
+
#: app/skins/single.php:1349 app/skins/single/default.php:314
|
667 |
#: app/skins/single/default.php:552 app/skins/single/m1.php:119
|
668 |
#: app/skins/single/m2.php:42 app/skins/single/modern.php:67
|
669 |
msgid "Email"
|
682 |
#: app/features/events.php:586 app/features/events.php:590
|
683 |
#: app/features/events.php:3581 app/features/events.php:3787
|
684 |
#: app/features/fes/form.php:286 app/features/fes/form.php:290
|
685 |
+
#: app/features/ix.php:4063 app/features/ix.php:4105
|
686 |
#: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1394
|
687 |
#: app/features/mec/meta_boxes/display_options.php:52
|
688 |
#: app/features/mec/meta_boxes/display_options.php:305
|
706 |
#: app/features/events.php:605 app/features/events.php:609
|
707 |
#: app/features/events.php:3582 app/features/events.php:3787
|
708 |
#: app/features/fes/form.php:305 app/features/fes/form.php:309
|
709 |
+
#: app/features/ix.php:4063 app/features/ix.php:4105
|
710 |
#: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1395
|
711 |
#: app/features/mec/meta_boxes/display_options.php:68
|
712 |
#: app/features/mec/meta_boxes/display_options.php:321
|
759 |
#: app/features/events.php:2223 app/features/events.php:2259
|
760 |
#: app/features/events.php:2357 app/features/events.php:2372
|
761 |
#: app/features/events.php:2402 app/features/events.php:2415
|
762 |
+
#: app/features/fes/form.php:456 app/features/fes/form.php:764
|
763 |
#: app/features/locations.php:335 app/features/mec/booking.php:109
|
764 |
#: app/features/mec/booking.php:201 app/features/mec/booking.php:266
|
765 |
#: app/features/mec/booking.php:299 app/features/mec/booking.php:312
|
814 |
#: app/features/mec/notifications.php:1195
|
815 |
#: app/features/mec/notifications.php:1210
|
816 |
#: app/features/mec/notifications.php:1367
|
817 |
+
#: app/features/mec/notifications.php:1479 app/features/mec/settings.php:67
|
818 |
+
#: app/features/mec/settings.php:86 app/features/mec/settings.php:113
|
819 |
+
#: app/features/mec/settings.php:149 app/features/mec/settings.php:172
|
820 |
+
#: app/features/mec/settings.php:218 app/features/mec/settings.php:299
|
821 |
+
#: app/features/mec/settings.php:376 app/features/mec/settings.php:453
|
822 |
+
#: app/features/mec/settings.php:470 app/features/mec/settings.php:487
|
823 |
+
#: app/features/mec/settings.php:506 app/features/mec/settings.php:520
|
824 |
+
#: app/features/mec/settings.php:548 app/features/mec/settings.php:641
|
825 |
+
#: app/features/mec/settings.php:809 app/features/mec/settings.php:985
|
826 |
+
#: app/features/mec/settings.php:1001 app/features/mec/settings.php:1139
|
827 |
+
#: app/features/mec/settings.php:1152 app/features/mec/settings.php:1168
|
828 |
+
#: app/features/mec/single.php:46 app/features/mec/single.php:62
|
829 |
+
#: app/features/mec/single.php:82 app/features/mec/single.php:100
|
830 |
+
#: app/features/mec/single.php:124 app/features/mec/single.php:141
|
831 |
+
#: app/features/mec/single.php:192 app/features/mec/single.php:327
|
832 |
+
#: app/features/mec/styling.php:123 app/features/mec/styling.php:223
|
833 |
+
#: app/features/mec/styling.php:240 app/features/mec/styling.php:254
|
834 |
+
#: app/features/organizers.php:272 app/features/popup/event.php:126
|
835 |
+
#: app/features/popup/event.php:173 app/skins/single.php:1136
|
836 |
+
#: app/skins/single/default.php:207 app/skins/single/default.php:444
|
837 |
+
#: app/skins/single/m1.php:223 app/skins/single/m2.php:147
|
838 |
+
#: app/skins/single/modern.php:177
|
839 |
msgid "Read More"
|
840 |
msgstr "Číst více"
|
841 |
|
873 |
msgid "Count to Event End"
|
874 |
msgstr "Na konci události"
|
875 |
|
876 |
+
#: app/features/events.php:700 app/features/fes/form.php:368
|
877 |
#: app/modules/weather/darksky.php:57
|
878 |
msgid "Visibility"
|
879 |
msgstr "Viditelnost"
|
880 |
|
881 |
+
#: app/features/events.php:703 app/features/fes/form.php:371
|
882 |
+
#: app/features/mec/settings.php:804 app/features/mec/settings.php:808
|
883 |
#, fuzzy
|
884 |
#| msgid "Visibility"
|
885 |
msgid "Event Visibility"
|
886 |
msgstr "Viditelnost"
|
887 |
|
888 |
+
#: app/features/events.php:704 app/features/fes/form.php:372
|
889 |
#, fuzzy
|
890 |
#| msgid "Booking Style"
|
891 |
msgid "Show on Shortcodes"
|
892 |
msgstr "Styl rezervace"
|
893 |
|
894 |
+
#: app/features/events.php:705 app/features/fes/form.php:373
|
895 |
#, fuzzy
|
896 |
#| msgid "Shortcodes"
|
897 |
msgid "Hide on Shortcodes"
|
898 |
msgstr "Zkrácené kódy"
|
899 |
|
900 |
+
#: app/features/events.php:712 app/features/fes/form.php:381
|
901 |
msgid "Repeating"
|
902 |
msgstr "Opakování"
|
903 |
|
905 |
msgid "Event Repeating (Recurring events)"
|
906 |
msgstr "Opakování události (opakující se události)"
|
907 |
|
908 |
+
#: app/features/events.php:725 app/features/fes/form.php:387
|
909 |
msgid "Repeats"
|
910 |
msgstr "Opakování"
|
911 |
|
912 |
+
#: app/features/events.php:733 app/features/fes/form.php:389
|
913 |
#: app/features/mec.php:1397 app/skins/default_full_calendar/tpl.php:77
|
914 |
#: app/skins/full_calendar/tpl.php:125
|
915 |
msgid "Daily"
|
916 |
msgstr "Děnně"
|
917 |
|
918 |
+
#: app/features/events.php:740 app/features/fes/form.php:390
|
919 |
msgid "Every Weekday"
|
920 |
msgstr "Každý všední den"
|
921 |
|
922 |
+
#: app/features/events.php:747 app/features/fes/form.php:391
|
923 |
msgid "Every Weekend"
|
924 |
msgstr "Každý víkend"
|
925 |
|
926 |
+
#: app/features/events.php:754 app/features/fes/form.php:392
|
927 |
msgid "Certain Weekdays"
|
928 |
msgstr "Určité pracovní dny"
|
929 |
|
930 |
+
#: app/features/events.php:761 app/features/fes/form.php:393
|
931 |
#: app/skins/default_full_calendar/tpl.php:76
|
932 |
#: app/skins/full_calendar/tpl.php:124
|
933 |
msgid "Weekly"
|
934 |
msgstr "Týdně"
|
935 |
|
936 |
+
#: app/features/events.php:768 app/features/fes/form.php:394
|
937 |
#: app/features/mec.php:1398 app/skins/default_full_calendar/tpl.php:75
|
938 |
#: app/skins/full_calendar/tpl.php:123
|
939 |
msgid "Monthly"
|
940 |
msgstr "Měsíčně"
|
941 |
|
942 |
+
#: app/features/events.php:775 app/features/fes/form.php:395
|
943 |
#: app/features/mec.php:1399 app/skins/default_full_calendar/tpl.php:74
|
944 |
#: app/skins/full_calendar/tpl.php:122
|
945 |
msgid "Yearly"
|
946 |
msgstr "Ročně"
|
947 |
|
948 |
+
#: app/features/events.php:782 app/features/fes/form.php:396
|
949 |
msgid "Custom Days"
|
950 |
msgstr "Vlastní dny"
|
951 |
|
952 |
+
#: app/features/events.php:789 app/features/fes/form.php:397
|
953 |
msgid "Advanced"
|
954 |
msgstr "Pokročilé"
|
955 |
|
956 |
+
#: app/features/events.php:794 app/features/fes/form.php:401
|
957 |
msgid "Repeat Interval"
|
958 |
msgstr "Interval opakování"
|
959 |
|
960 |
+
#: app/features/events.php:796 app/features/fes/form.php:402
|
961 |
msgid "Repeat interval"
|
962 |
msgstr "Interval opakování"
|
963 |
|
964 |
+
#: app/features/events.php:800 app/features/fes/form.php:405
|
965 |
msgid "Week Days"
|
966 |
msgstr "Dny v týdnu"
|
967 |
|
975 |
|
976 |
#: app/features/events.php:823 app/features/events.php:1945
|
977 |
#: app/features/events.php:1973 app/features/events.php:2127
|
978 |
+
#: app/features/fes/form.php:419 app/features/ix/import_f_calendar.php:42
|
979 |
#: app/features/ix/import_g_calendar.php:51
|
980 |
#: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:35
|
981 |
+
#: app/libraries/skins.php:1237
|
982 |
msgid "Start"
|
983 |
msgstr "Začátek"
|
984 |
|
985 |
#: app/features/events.php:836 app/features/events.php:1343
|
986 |
#: app/features/events.php:1929 app/features/events.php:2116
|
987 |
#: app/features/events.php:2196 app/features/events.php:2329
|
988 |
+
#: app/features/fes/form.php:449 app/features/fes/form.php:983
|
989 |
#: app/features/occurrences.php:114 app/libraries/hourlyschedule.php:56
|
990 |
#: app/libraries/hourlyschedule.php:119
|
991 |
msgid "Add"
|
992 |
msgstr "Přidat"
|
993 |
|
994 |
+
#: app/features/events.php:839 app/features/fes/form.php:452
|
995 |
msgid "Custom Days Repeating"
|
996 |
msgstr "Opakování vlastních dnů"
|
997 |
|
998 |
+
#: app/features/events.php:842 app/features/fes/form.php:455
|
999 |
#, fuzzy
|
1000 |
#| msgid ""
|
1001 |
#| "Add certain days to event occurrence dates. If you have single day event, "
|
1012 |
|
1013 |
#: app/features/events.php:853 app/features/events.php:1949
|
1014 |
#: app/features/events.php:1977 app/features/events.php:2131
|
1015 |
+
#: app/features/fes/form.php:434 app/libraries/skins.php:1240
|
1016 |
msgid "End"
|
1017 |
msgstr "Konec"
|
1018 |
|
1019 |
+
#: app/features/events.php:930 app/features/fes/form.php:528
|
1020 |
msgid "First"
|
1021 |
msgstr "První"
|
1022 |
|
1023 |
+
#: app/features/events.php:972 app/features/fes/form.php:570
|
1024 |
msgid "Second"
|
1025 |
msgstr "Druhá"
|
1026 |
|
1027 |
+
#: app/features/events.php:1014 app/features/fes/form.php:612
|
1028 |
msgid "Third"
|
1029 |
msgstr "Třetí"
|
1030 |
|
1031 |
+
#: app/features/events.php:1056 app/features/fes/form.php:654
|
1032 |
msgid "Fourth"
|
1033 |
msgstr "Čtvrtá"
|
1034 |
|
1035 |
+
#: app/features/events.php:1098 app/features/fes/form.php:696
|
1036 |
msgid "Last"
|
1037 |
msgstr "Poslední"
|
1038 |
|
1039 |
+
#: app/features/events.php:1145 app/features/fes/form.php:742
|
1040 |
msgid "Ends Repeat"
|
1041 |
msgstr "Ukončení opakování"
|
1042 |
|
1043 |
+
#: app/features/events.php:1157 app/features/fes/form.php:746
|
1044 |
msgid "Never"
|
1045 |
msgstr "Nikdy"
|
1046 |
|
1047 |
# Možná Zapnuto
|
1048 |
+
#: app/features/events.php:1169 app/features/fes/form.php:751
|
1049 |
msgid "On"
|
1050 |
msgstr "Na"
|
1051 |
|
1052 |
+
#: app/features/events.php:1185 app/features/fes/form.php:758
|
1053 |
#: app/features/mec/booking.php:157
|
1054 |
msgid "After"
|
1055 |
msgstr "Po"
|
1056 |
|
1057 |
#: app/features/events.php:1189 app/features/events.php:1193
|
1058 |
+
#: app/features/fes/form.php:760 app/features/fes/form.php:763
|
1059 |
msgid "Occurrences times"
|
1060 |
msgstr "Časy výskytu"
|
1061 |
|
1071 |
"Událost bude ukončena po určitých opakováních. Pokud například nastavíte "
|
1072 |
"hodnotu 10, událost skončí po 10 opakováních."
|
1073 |
|
1074 |
+
#: app/features/events.php:1210 app/features/fes/form.php:777
|
1075 |
#, fuzzy
|
1076 |
#| msgid "Next Occurrence of Other Events"
|
1077 |
msgid "Show only one occurrence of this event"
|
1078 |
msgstr "Další výskyt dalších událostí"
|
1079 |
|
1080 |
#: app/features/events.php:1231 app/features/events.php:3787
|
1081 |
+
#: app/features/fes/form.php:853 app/features/ix.php:4063
|
1082 |
+
#: app/features/ix.php:4105 app/features/mec/meta_boxes/search_form.php:82
|
1083 |
#: app/features/mec/meta_boxes/search_form.php:168
|
1084 |
#: app/features/mec/meta_boxes/search_form.php:254
|
1085 |
#: app/features/mec/meta_boxes/search_form.php:340
|
1090 |
#: app/features/mec/meta_boxes/search_form.php:751
|
1091 |
#: app/features/mec/meta_boxes/search_form.php:836
|
1092 |
#: app/features/mec/meta_boxes/search_form.php:957
|
1093 |
+
#: app/features/mec/settings.php:780 app/libraries/main.php:6604
|
1094 |
+
#: app/libraries/main.php:6653 app/widgets/single.php:105
|
1095 |
msgid "Event Cost"
|
1096 |
msgstr "Cena události"
|
1097 |
|
1107 |
#: app/features/events.php:2638 app/features/fes.php:243
|
1108 |
#: app/features/mec/booking.php:665 app/features/mec/booking.php:761
|
1109 |
#: app/features/mec/single.php:242 app/features/profile/profile.php:36
|
1110 |
+
#: app/features/wc.php:83 app/libraries/main.php:3515
|
1111 |
#: app/modules/booking/steps/tickets.php:127
|
1112 |
+
#: app/modules/next-event/details.php:143 app/skins/single.php:1109
|
1113 |
#: app/skins/single/default.php:147 app/skins/single/default.php:386
|
1114 |
#: app/skins/single/m1.php:21 app/skins/single/modern.php:211
|
1115 |
msgid "Date"
|
1125 |
"můžete vyloučit pouze výskyty za jeden den a nelze vyloučit jeden den z "
|
1126 |
"vícedenních výskytů."
|
1127 |
|
1128 |
+
#: app/features/events.php:1405 app/libraries/render.php:559
|
1129 |
msgid "Day 1"
|
1130 |
msgstr "Den 1"
|
1131 |
|
1132 |
+
#: app/features/events.php:1449 app/features/fes/form.php:827
|
1133 |
+
#: app/features/mec/settings.php:774
|
1134 |
msgid "Event Links"
|
1135 |
msgstr "Odkazy na událost"
|
1136 |
|
1137 |
#: app/features/events.php:1452 app/features/events.php:1460
|
1138 |
+
#: app/features/fes/form.php:829 app/features/mec/settings.php:1015
|
1139 |
+
#: app/libraries/main.php:6602 app/libraries/main.php:6651
|
1140 |
msgid "Event Link"
|
1141 |
msgstr "Odkaz na událost"
|
1142 |
|
1143 |
#: app/features/events.php:1455 app/features/events.php:1473
|
1144 |
+
#: app/features/fes/form.php:830 app/features/fes/form.php:835
|
1145 |
msgid "eg. http://yoursite.com/your-event"
|
1146 |
msgstr "např. http://yoursite.com/vase-udalost"
|
1147 |
|
1165 |
msgstr "Zkracovač URL"
|
1166 |
|
1167 |
#: app/features/events.php:1470 app/features/events.php:1483
|
1168 |
+
#: app/features/fes/form.php:834 app/libraries/main.php:6603
|
1169 |
+
#: app/libraries/main.php:6652 app/skins/single.php:1135
|
1170 |
#: app/skins/single/default.php:206 app/skins/single/default.php:443
|
1171 |
#: app/skins/single/m1.php:222 app/skins/single/m2.php:146
|
1172 |
#: app/skins/single/modern.php:176 app/widgets/single.php:109
|
1173 |
msgid "More Info"
|
1174 |
msgstr "Více info"
|
1175 |
|
1176 |
+
#: app/features/events.php:1476 app/features/fes/form.php:836
|
1177 |
msgid "More Information"
|
1178 |
msgstr "Více informací"
|
1179 |
|
1180 |
+
#: app/features/events.php:1478 app/features/fes/form.php:838
|
1181 |
#: app/features/mec.php:996 app/features/popup/shortcode.php:477
|
1182 |
msgid "Current Window"
|
1183 |
msgstr "Aktuální okno"
|
1184 |
|
1185 |
+
#: app/features/events.php:1479 app/features/fes/form.php:839
|
1186 |
#: app/features/mec.php:997 app/features/popup/shortcode.php:481
|
1187 |
msgid "New Window"
|
1188 |
msgstr "Nové okno"
|
1189 |
|
1190 |
+
#: app/features/events.php:1484 app/features/fes/form.php:841
|
1191 |
msgid ""
|
1192 |
"If you fill it, it will be shown in event details page as an optional link. "
|
1193 |
"Insert full link including http(s)://"
|
1195 |
"Pokud ji vyplníte, zobrazí se jako volitelný odkaz na stránce s podrobnostmi "
|
1196 |
"o události. Vložte celý odkaz včetně http (s): //"
|
1197 |
|
1198 |
+
#: app/features/events.php:1507 app/features/mec/settings.php:855
|
1199 |
msgid "Booking Options"
|
1200 |
msgstr "Možnosti rezervace"
|
1201 |
|
1202 |
#: app/features/events.php:1508 app/features/events.php:1721
|
1203 |
+
#: app/features/mec/settings.php:892
|
1204 |
#, fuzzy
|
1205 |
#| msgid "Total user booking limits"
|
1206 |
msgid "Total User Booking Limits"
|
1207 |
msgstr "Celkové limity rezervace uživatelů"
|
1208 |
|
1209 |
#: app/features/events.php:1509 app/features/events.php:1777
|
1210 |
+
#: app/libraries/book.php:63 app/libraries/main.php:6607
|
1211 |
#: app/modules/booking/steps/tickets.php:159
|
1212 |
#: app/modules/booking/steps/tickets.php:165
|
1213 |
msgid "Tickets"
|
1218 |
msgstr "Poplatky"
|
1219 |
|
1220 |
#: app/features/events.php:1514 app/features/events.php:2305
|
1221 |
+
#: app/features/mec/settings.php:922
|
1222 |
msgid "Ticket Variations / Options"
|
1223 |
msgstr "Varianty vstupenky / možnosti"
|
1224 |
|
1234 |
msgstr "Celkové limity rezervace"
|
1235 |
|
1236 |
#: app/features/events.php:1596 app/features/events.php:1895
|
1237 |
+
#: app/features/events.php:2082 app/modules/booking/default.php:99
|
1238 |
#: app/modules/booking/steps/tickets.php:159
|
1239 |
#: app/modules/booking/steps/tickets.php:165
|
1240 |
#: app/skins/available_spot/tpl.php:131
|
1268 |
msgstr ""
|
1269 |
|
1270 |
#: app/features/events.php:1629 app/features/events.php:1643
|
1271 |
+
#: app/features/mec/settings.php:874
|
1272 |
#, fuzzy
|
1273 |
#| msgid "Next Occurrence"
|
1274 |
msgid "Book All Occurrences"
|
1286 |
msgstr ""
|
1287 |
|
1288 |
#: app/features/events.php:1657 app/features/mec/booking.php:130
|
1289 |
+
#: app/features/mec/settings.php:880
|
1290 |
#, fuzzy
|
1291 |
#| msgid "General Options"
|
1292 |
msgid "Interval Options"
|
1316 |
"Pokud nastavíte tuto možnost na 30, rezervační formulář se otevře pouze 30 "
|
1317 |
"minut před zahájením akce!"
|
1318 |
|
1319 |
+
#: app/features/events.php:1674 app/features/mec/settings.php:886
|
1320 |
msgid "Automatic Approval"
|
1321 |
msgstr ""
|
1322 |
|
1449 |
#: app/features/mec/meta_boxes/search_form.php:966
|
1450 |
#: app/features/mec/meta_boxes/search_form.php:973
|
1451 |
#: app/features/mec/meta_boxes/search_form.php:980
|
1452 |
+
#: app/features/mec/modules.php:115 app/features/mec/settings.php:98
|
1453 |
+
#: app/features/mec/settings.php:482
|
1454 |
msgid "Disabled"
|
1455 |
msgstr "Zakázaný"
|
1456 |
|
1458 |
#: app/features/mec/booking.php:176 app/features/mec/booking.php:243
|
1459 |
#: app/features/mec/booking.php:260 app/features/mec/booking.php:861
|
1460 |
#: app/features/mec/booking.php:890 app/features/mec/modules.php:155
|
1461 |
+
#: app/features/mec/settings.php:99
|
1462 |
msgid "Enabled"
|
1463 |
msgstr "Povoleno"
|
1464 |
|
1465 |
#: app/features/events.php:1686 app/features/mec/booking.php:395
|
1466 |
#: app/features/mec/notifications.php:334 app/features/notifications.php:161
|
1467 |
+
#: app/libraries/main.php:631
|
1468 |
msgid "Booking Confirmation"
|
1469 |
msgstr "Potvrzení rezervace"
|
1470 |
|
1471 |
#: app/features/events.php:1699 app/features/mec/booking.php:279
|
1472 |
+
#: app/features/mec/settings.php:898
|
1473 |
#, fuzzy
|
1474 |
#| msgid "Ticket"
|
1475 |
msgid "Last Few Tickets Percentage"
|
1519 |
|
1520 |
#: app/features/events.php:1797 app/features/events.php:1997
|
1521 |
#: app/features/events.php:3787 app/features/fes.php:243
|
1522 |
+
#: app/features/ix.php:4063 app/features/ix.php:4105
|
1523 |
#: app/features/labels.php:179 app/features/locations.php:262
|
1524 |
#: app/features/organizers.php:203 app/features/speakers.php:282
|
1525 |
msgid "ID"
|
1530 |
msgstr "Název vstupenky"
|
1531 |
|
1532 |
#: app/features/events.php:1805 app/features/events.php:2004
|
1533 |
+
#: app/features/events.php:3787 app/features/ix.php:4063
|
1534 |
+
#: app/features/ix.php:4105 app/libraries/skins.php:1252
|
1535 |
msgid "Start Time"
|
1536 |
msgstr "Začátek"
|
1537 |
|
1538 |
#: app/features/events.php:1818 app/features/events.php:2017
|
1539 |
+
#: app/features/events.php:3787 app/features/ix.php:4063
|
1540 |
+
#: app/features/ix.php:4105 app/libraries/skins.php:1253
|
1541 |
msgid "End Time"
|
1542 |
msgstr "Konec"
|
1543 |
|
1646 |
#: app/features/mec/meta_boxes/search_form.php:737
|
1647 |
#: app/features/mec/meta_boxes/search_form.php:822
|
1648 |
#: app/features/mec/meta_boxes/search_form.php:943
|
1649 |
+
#: app/features/mec/settings.php:1018 app/features/mec/settings.php:1110
|
1650 |
#: app/features/mec/single.php:403 app/features/mec/single.php:445
|
1651 |
+
#: app/features/search.php:98 app/libraries/skins.php:1163
|
1652 |
msgid "Label"
|
1653 |
msgstr "Štítek"
|
1654 |
|
1660 |
#: app/features/mec/booking.php:617 app/libraries/hourlyschedule.php:52
|
1661 |
#: app/libraries/hourlyschedule.php:66 app/libraries/hourlyschedule.php:87
|
1662 |
#: app/libraries/hourlyschedule.php:115 app/libraries/hourlyschedule.php:132
|
1663 |
+
#: app/libraries/main.php:3347 app/libraries/main.php:3377
|
1664 |
+
#: app/libraries/main.php:3406 app/libraries/main.php:3435
|
1665 |
+
#: app/libraries/main.php:3465 app/libraries/main.php:3495
|
1666 |
+
#: app/libraries/main.php:3524 app/libraries/main.php:3554
|
1667 |
+
#: app/libraries/main.php:3584 app/libraries/main.php:3606
|
1668 |
+
#: app/libraries/main.php:3637 app/libraries/main.php:3684
|
1669 |
+
#: app/libraries/main.php:3731 app/libraries/main.php:3781
|
1670 |
+
#: app/libraries/main.php:3821
|
1671 |
msgid "Remove"
|
1672 |
msgstr "Odstranit"
|
1673 |
|
1709 |
|
1710 |
#: app/features/events.php:2344 app/features/events.php:2391
|
1711 |
#: app/features/events.php:3577 app/features/events.php:3787
|
1712 |
+
#: app/features/fes/form.php:260 app/features/ix.php:4063
|
1713 |
+
#: app/features/ix.php:4105 app/features/mec/booking.php:562
|
1714 |
#: app/features/mec/booking.php:594 app/features/mec/styling.php:134
|
1715 |
#: app/libraries/hourlyschedule.php:48 app/libraries/hourlyschedule.php:64
|
1716 |
#: app/libraries/hourlyschedule.php:85 app/libraries/hourlyschedule.php:110
|
1760 |
msgstr "Limit účastníků"
|
1761 |
|
1762 |
#: app/features/events.php:2545 app/features/mec/booking.php:661
|
1763 |
+
#: app/libraries/main.php:3368
|
1764 |
msgid "MEC Name"
|
1765 |
msgstr "MEC Jméno"
|
1766 |
|
1767 |
#: app/features/events.php:2546 app/features/mec/booking.php:662
|
1768 |
+
#: app/libraries/main.php:3397
|
1769 |
msgid "MEC Email"
|
1770 |
msgstr "MEC Email"
|
1771 |
|
1772 |
#: app/features/events.php:2547 app/features/events.php:2636
|
1773 |
#: app/features/mec/booking.php:663 app/features/mec/booking.php:759
|
1774 |
+
#: app/features/mec/single.php:239 app/libraries/main.php:3338
|
1775 |
msgid "Text"
|
1776 |
msgstr "Text"
|
1777 |
|
1780 |
#: app/features/mec/single.php:243 app/features/organizers.php:103
|
1781 |
#: app/features/organizers.php:148 app/features/speakers.php:119
|
1782 |
#: app/features/speakers.php:200 app/features/speakers.php:285
|
1783 |
+
#: app/libraries/main.php:3545
|
1784 |
msgid "Tel"
|
1785 |
msgstr "Tel"
|
1786 |
|
1787 |
#: app/features/events.php:2551 app/features/mec/booking.php:667
|
1788 |
+
#: app/libraries/main.php:3486
|
1789 |
msgid "File"
|
1790 |
msgstr "Soubor"
|
1791 |
|
1792 |
#: app/features/events.php:2552 app/features/events.php:2640
|
1793 |
#: app/features/mec/booking.php:668 app/features/mec/booking.php:763
|
1794 |
+
#: app/features/mec/single.php:244 app/libraries/main.php:3575
|
1795 |
msgid "Textarea"
|
1796 |
msgstr "Plocha textu"
|
1797 |
|
1808 |
#: app/features/mec/meta_boxes/search_form.php:704
|
1809 |
#: app/features/mec/meta_boxes/search_form.php:789
|
1810 |
#: app/features/mec/meta_boxes/search_form.php:910
|
1811 |
+
#: app/features/mec/single.php:246 app/libraries/main.php:3628
|
1812 |
msgid "Checkboxes"
|
1813 |
msgstr "Zatržítko"
|
1814 |
|
1815 |
#: app/features/events.php:2554 app/features/events.php:2642
|
1816 |
#: app/features/mec/booking.php:670 app/features/mec/booking.php:765
|
1817 |
+
#: app/features/mec/single.php:247 app/libraries/main.php:3675
|
1818 |
msgid "Radio Buttons"
|
1819 |
msgstr "Přepínače"
|
1820 |
|
1894 |
#: app/features/mec/meta_boxes/search_form.php:939
|
1895 |
#: app/features/mec/meta_boxes/search_form.php:946
|
1896 |
#: app/features/mec/meta_boxes/search_form.php:967
|
1897 |
+
#: app/features/mec/single.php:248 app/libraries/main.php:3722
|
1898 |
msgid "Dropdown"
|
1899 |
msgstr "Rozbalovací"
|
1900 |
|
1901 |
#: app/features/events.php:2556 app/features/events.php:2644
|
1902 |
#: app/features/mec/booking.php:672 app/features/mec/booking.php:767
|
1903 |
+
#: app/libraries/main.php:3772
|
1904 |
msgid "Agreement"
|
1905 |
msgstr "Smlouva"
|
1906 |
|
1907 |
#: app/features/events.php:2557 app/features/events.php:2645
|
1908 |
#: app/features/mec/booking.php:673 app/features/mec/booking.php:768
|
1909 |
+
#: app/features/mec/single.php:245 app/libraries/main.php:3605
|
1910 |
msgid "Paragraph"
|
1911 |
msgstr "Paragraf"
|
1912 |
|
1941 |
msgstr "Limit účastníků"
|
1942 |
|
1943 |
#: app/features/events.php:3579 app/features/events.php:3787
|
1944 |
+
#: app/features/ix.php:4063 app/features/ix.php:4105
|
1945 |
#: app/features/locations.php:58 app/features/locations.php:263
|
1946 |
#: app/features/locations.php:323 app/features/locations.php:325
|
1947 |
#: app/features/locations.php:334
|
1957 |
#: app/features/mec/meta_boxes/search_form.php:708
|
1958 |
#: app/features/mec/meta_boxes/search_form.php:793
|
1959 |
#: app/features/mec/meta_boxes/search_form.php:914
|
1960 |
+
#: app/features/mec/settings.php:1084 app/features/mec/single.php:393
|
1961 |
#: app/features/mec/single.php:435 app/features/popup/event.php:116
|
1962 |
#: app/features/popup/event.php:125 app/features/search.php:74
|
1963 |
+
#: app/libraries/main.php:2709 app/libraries/main.php:6572
|
1964 |
+
#: app/libraries/main.php:6626 app/libraries/skins.php:1059
|
1965 |
+
#: app/skins/single.php:952 app/skins/single.php:1395
|
1966 |
#: app/skins/single/default.php:243 app/skins/single/default.php:481
|
1967 |
#: app/skins/single/m1.php:173 app/skins/single/m2.php:96
|
1968 |
#: app/skins/single/modern.php:125
|
2010 |
msgid "Duplicate"
|
2011 |
msgstr "Duplikát"
|
2012 |
|
2013 |
+
#: app/features/events.php:3787 app/features/ix.php:4063
|
2014 |
+
#: app/features/ix.php:4105
|
2015 |
msgid "Link"
|
2016 |
msgstr "Odkaz"
|
2017 |
|
2018 |
+
#: app/features/events.php:3787 app/features/ix.php:4063
|
2019 |
+
#: app/features/ix.php:4105 app/features/locations.php:110
|
2020 |
#: app/features/locations.php:180 app/features/locations.php:264
|
2021 |
#: app/features/mec/meta_boxes/search_form.php:75
|
2022 |
#: app/features/mec/meta_boxes/search_form.php:161
|
2043 |
msgstr "%s Email"
|
2044 |
|
2045 |
# v kontextu
|
2046 |
+
#: app/features/events.php:3787 app/features/fes/form.php:870
|
2047 |
+
#: app/features/mec/settings.php:786
|
2048 |
msgid "Featured Image"
|
2049 |
msgstr "Hlavní obrázek"
|
2050 |
|
2051 |
#: app/features/events.php:4116 app/features/fes.php:243
|
2052 |
+
#: app/features/profile/profile.php:155 app/libraries/main.php:2793
|
2053 |
+
#: app/libraries/main.php:6606
|
2054 |
msgid "Ticket"
|
2055 |
msgstr "Vstupenka"
|
2056 |
|
2122 |
msgid "Order Time"
|
2123 |
msgstr "Konec"
|
2124 |
|
2125 |
+
#: app/features/fes.php:243 app/features/wc.php:84 app/libraries/main.php:2741
|
2126 |
+
#: app/libraries/main.php:2856
|
2127 |
msgid "Transaction ID"
|
2128 |
msgstr "ID transakce"
|
2129 |
|
2131 |
msgid "Total Price"
|
2132 |
msgstr "Celková cena"
|
2133 |
|
2134 |
+
#: app/features/fes.php:243 app/libraries/main.php:2851
|
2135 |
#, fuzzy
|
2136 |
#| msgid "Payment Gateways"
|
2137 |
msgid "Gateway"
|
2215 |
msgid "Go back to events list"
|
2216 |
msgstr "Přejít zpět na seznam událostí"
|
2217 |
|
2218 |
+
#: app/features/fes/form.php:268 app/features/mec/settings.php:937
|
2219 |
+
#: app/features/mec/settings.php:1013
|
2220 |
msgid "Excerpt"
|
2221 |
msgstr ""
|
2222 |
|
2232 |
"overwrite in the next import from Google."
|
2233 |
msgstr ""
|
2234 |
|
2235 |
+
#: app/features/fes/form.php:406
|
2236 |
#: app/features/mec/meta_boxes/display_options.php:1342
|
2237 |
#: app/libraries/main.php:444
|
2238 |
msgid "Monday"
|
2239 |
msgstr "Pondělí"
|
2240 |
|
2241 |
+
#: app/features/fes/form.php:407
|
2242 |
#: app/features/mec/meta_boxes/display_options.php:1343
|
2243 |
#: app/libraries/main.php:444
|
2244 |
msgid "Tuesday"
|
2245 |
msgstr "Úterý"
|
2246 |
|
2247 |
+
#: app/features/fes/form.php:408
|
2248 |
#: app/features/mec/meta_boxes/display_options.php:1344
|
2249 |
#: app/libraries/main.php:444
|
2250 |
msgid "Wednesday"
|
2251 |
msgstr "Středa"
|
2252 |
|
2253 |
+
#: app/features/fes/form.php:409
|
2254 |
#: app/features/mec/meta_boxes/display_options.php:1345
|
2255 |
#: app/libraries/main.php:444
|
2256 |
msgid "Thursday"
|
2257 |
msgstr "Čtvrtek"
|
2258 |
|
2259 |
+
#: app/features/fes/form.php:410
|
2260 |
#: app/features/mec/meta_boxes/display_options.php:1346
|
2261 |
#: app/libraries/main.php:444
|
2262 |
msgid "Friday"
|
2263 |
msgstr "Pátek"
|
2264 |
|
2265 |
+
#: app/features/fes/form.php:411
|
2266 |
#: app/features/mec/meta_boxes/display_options.php:1347
|
2267 |
#: app/libraries/main.php:444
|
2268 |
msgid "Saturday"
|
2269 |
msgstr "Sobota"
|
2270 |
|
2271 |
+
#: app/features/fes/form.php:412
|
2272 |
#: app/features/mec/meta_boxes/display_options.php:1341
|
2273 |
#: app/libraries/main.php:444
|
2274 |
msgid "Sunday"
|
2275 |
msgstr "Neděle"
|
2276 |
|
2277 |
+
#: app/features/fes/form.php:764
|
2278 |
msgid ""
|
2279 |
"The event will finish after certain repeats. For example if you set it to "
|
2280 |
"10, the event will finish after 10 repeats."
|
2282 |
"Událost bude ukončena po určitých opakováních. Pokud například nastavíte "
|
2283 |
"hodnotu 10, událost skončí po 10 opakováních."
|
2284 |
|
2285 |
+
#: app/features/fes/form.php:788
|
2286 |
msgid "Note to reviewer"
|
2287 |
msgstr "Poznámka pro recenzenta"
|
2288 |
|
2289 |
+
#: app/features/fes/form.php:806
|
2290 |
msgid "User Data"
|
2291 |
msgstr "Údaje uživatele"
|
2292 |
|
2293 |
+
#: app/features/fes/form.php:809
|
2294 |
msgid "eg. yourname@gmail.com"
|
2295 |
msgstr "např. vasejmeno@gmail.com"
|
2296 |
|
2297 |
+
#: app/features/fes/form.php:813 app/features/organizers.php:280
|
2298 |
#: app/features/popup/event.php:183
|
2299 |
msgid "eg. John Smith"
|
2300 |
msgstr "např. Jan Novák"
|
2301 |
|
2302 |
+
#: app/features/fes/form.php:831
|
2303 |
#, fuzzy
|
2304 |
#| msgid ""
|
2305 |
#| "If you fill it, it will be replaced instead of default event page link. "
|
2311 |
"Pokud toto vyplníte, nahradí se místo výchozího odkazu na stránku události. "
|
2312 |
"Vložte celý odkaz včetně http (s): //"
|
2313 |
|
2314 |
+
#: app/features/fes/form.php:875
|
2315 |
msgid "Remove Image"
|
2316 |
msgstr "Odebrat obrázek"
|
2317 |
|
2318 |
+
#: app/features/fes/form.php:911 app/features/labels.php:61
|
2319 |
#: app/features/labels.php:223 app/features/mec.php:465
|
2320 |
#: app/features/mec/meta_boxes/filter.php:72
|
2321 |
+
#: app/features/mec/meta_boxes/filter.php:133 app/libraries/main.php:6569
|
2322 |
+
#: app/libraries/main.php:6623 app/skins/single.php:1165
|
2323 |
#: app/skins/single/default.php:221 app/skins/single/default.php:458
|
2324 |
#: app/skins/single/m1.php:76 app/skins/single/modern.php:266
|
2325 |
msgid "Labels"
|
2326 |
msgstr "Štítky"
|
2327 |
|
2328 |
+
#: app/features/fes/form.php:957 app/features/mec.php:463
|
2329 |
#: app/features/mec/meta_boxes/filter.php:73
|
2330 |
#: app/features/mec/meta_boxes/filter.php:151
|
2331 |
msgid "Tags"
|
2332 |
msgstr "Tagy"
|
2333 |
|
2334 |
+
#: app/features/fes/form.php:959
|
2335 |
msgid "Insert your desired tags, comma separated."
|
2336 |
msgstr "Vložte požadované tagy oddělené čárkami."
|
2337 |
|
2338 |
+
#: app/features/fes/form.php:979 app/features/mec.php:472
|
2339 |
+
#: app/features/mec/modules.php:43 app/features/mec/settings.php:841
|
2340 |
#: app/features/speakers.php:61 app/libraries/hourlyschedule.php:69
|
2341 |
#: app/libraries/hourlyschedule.php:90 app/libraries/hourlyschedule.php:135
|
2342 |
+
#: app/libraries/main.php:609 app/libraries/main.php:6575
|
2343 |
+
#: app/libraries/main.php:6629 app/modules/speakers/details.php:18
|
2344 |
msgid "Speakers"
|
2345 |
msgstr "Řečníci"
|
2346 |
|
2347 |
+
#: app/features/fes/form.php:981
|
2348 |
msgid "Speakers Names"
|
2349 |
msgstr "Jméno řečníka"
|
2350 |
|
2351 |
+
#: app/features/fes/form.php:982
|
2352 |
#, fuzzy
|
2353 |
#| msgid "Separate names with commas Similar Justin, Cris"
|
2354 |
msgid "Separate names with commas: Justin, Chris"
|
2355 |
msgstr "Oddělte jména čárkami - Novák Petr, Pavel"
|
2356 |
|
2357 |
+
#: app/features/fes/form.php:1023 app/modules/booking/steps/form.php:352
|
2358 |
msgid "Submit"
|
2359 |
msgstr "Potvrdit"
|
2360 |
|
2392 |
msgstr "MEC Import / Export"
|
2393 |
|
2394 |
#: app/features/ix.php:107 app/features/mec/support.php:73
|
2395 |
+
#: app/libraries/main.php:860
|
2396 |
msgid "Import / Export"
|
2397 |
msgstr "Import / Export"
|
2398 |
|
2408 |
msgid "The file type should be CSV."
|
2409 |
msgstr "Typ souboru by měl být XML nebo ICS."
|
2410 |
|
2411 |
+
#: app/features/ix.php:224 app/features/ix.php:446
|
2412 |
msgid "An error occurred during the file upload! Please check permissions!"
|
2413 |
msgstr "Při nahrávání souboru došlo k chybě! Zkontrolujte oprávnění!"
|
2414 |
|
2415 |
+
#: app/features/ix.php:280 app/libraries/main.php:6854
|
2416 |
+
#: app/libraries/main.php:6874
|
2417 |
msgid "Confirmed"
|
2418 |
msgstr "Potvrzeno"
|
2419 |
|
2420 |
+
#: app/features/ix.php:281 app/libraries/main.php:6855
|
2421 |
+
#: app/libraries/main.php:6882
|
2422 |
msgid "Rejected"
|
2423 |
msgstr "Odmítnuto"
|
2424 |
|
2425 |
#: app/features/ix.php:285 app/features/mec/booking.php:1032
|
2426 |
#: app/features/mec/booking.php:1054 app/features/mec/modules.php:441
|
2427 |
#: app/features/mec/modules.php:463 app/features/mec/notifications.php:1597
|
2428 |
+
#: app/features/mec/notifications.php:1619 app/features/mec/settings.php:1449
|
2429 |
+
#: app/features/mec/settings.php:1471 app/features/mec/single.php:500
|
2430 |
+
#: app/features/mec/single.php:522 app/libraries/main.php:6902
|
2431 |
msgid "Verified"
|
2432 |
msgstr "Ověřeno"
|
2433 |
|
2434 |
#: app/features/ix.php:286 app/features/labels.php:118
|
2435 |
+
#: app/features/labels.php:144 app/libraries/main.php:6903
|
2436 |
msgid "Canceled"
|
2437 |
msgstr "Zrušená"
|
2438 |
|
2452 |
msgid "Please upload the feed file."
|
2453 |
msgstr "Nahrajte prosím zdrojový soubor."
|
2454 |
|
2455 |
+
#: app/features/ix.php:434 app/features/ix.php:451
|
2456 |
#, fuzzy
|
2457 |
#| msgid "Please upload the feed file."
|
2458 |
msgid "Please upload an XML or an ICS file."
|
2459 |
msgstr "Nahrajte prosím zdrojový soubor."
|
2460 |
|
2461 |
+
#: app/features/ix.php:437
|
2462 |
msgid "The file type should be XML or ICS."
|
2463 |
msgstr "Typ souboru by měl být XML nebo ICS."
|
2464 |
|
2465 |
+
#: app/features/ix.php:460
|
2466 |
msgid "The events are imported successfully!"
|
2467 |
msgstr "Události byly úspěšně importovány!"
|
2468 |
|
2469 |
+
#: app/features/ix.php:1204
|
2470 |
msgid "Third Party plugin is not installed and activated!"
|
2471 |
msgstr "Plugin třetích stran není nainstalován a aktivován!"
|
2472 |
|
2473 |
+
#: app/features/ix.php:1228
|
2474 |
msgid "Third Party plugin is invalid!"
|
2475 |
msgstr "Plugin třetí strany je neplatný!"
|
2476 |
|
2477 |
+
#: app/features/ix.php:3203 app/features/ix.php:3264
|
2478 |
#, fuzzy
|
2479 |
#| msgid "Both of API key and Calendar ID are required!"
|
2480 |
msgid "API key and Calendar ID are required!"
|
2481 |
msgstr "Obě hodnoty: klíč API a ID kalendáře jsou povinné!"
|
2482 |
|
2483 |
+
#: app/features/ix.php:3259 app/features/ix.php:3743 app/features/ix.php:4481
|
2484 |
#, fuzzy
|
2485 |
#| msgid "Please select some events to import!"
|
2486 |
msgid "Please select events to import!"
|
2487 |
msgstr "Vyberte události, které chcete importovat!"
|
2488 |
|
2489 |
+
#: app/features/ix.php:3685 app/features/ix.php:3748
|
2490 |
#, fuzzy
|
2491 |
#| msgid "Both of API key and Group URL are required!"
|
2492 |
msgid "API key and Group URL are required!"
|
2493 |
msgstr "Obě hodnoty: klíč API a skupina URL jsou povinné!"
|
2494 |
|
2495 |
+
#: app/features/ix.php:3987
|
2496 |
msgid "Check at Meetup"
|
2497 |
msgstr "Ověřit Meetup"
|
2498 |
|
2499 |
+
#: app/features/ix.php:4063 app/features/ix.php:4105
|
2500 |
msgid "Organizer Tel"
|
2501 |
msgstr "Organizátor Tel"
|
2502 |
|
2503 |
+
#: app/features/ix.php:4063 app/features/ix.php:4105
|
2504 |
msgid "Organizer Email"
|
2505 |
msgstr "Organizátor Email"
|
2506 |
|
2507 |
# Client Secret dle kontextu
|
2508 |
+
#: app/features/ix.php:4181
|
2509 |
#, fuzzy
|
2510 |
#| msgid "All of Client ID, Client Secret and Calendar ID are required!"
|
2511 |
msgid "All of Client ID, Client Secret, and Calendar ID are required!"
|
2512 |
msgstr ""
|
2513 |
"Vyžadují se všechny klientské ID, tajné informace klienta a ID kalendáře!"
|
2514 |
|
2515 |
+
#: app/features/ix.php:4204
|
2516 |
#, fuzzy, php-format
|
2517 |
#| msgid "All seems good! Please click %s for authenticating your app."
|
2518 |
msgid "All seems good! Please click %s to authenticate your app."
|
2519 |
msgstr "Vše vypadá dobře! Klikněte na % s pro ověření vaší aplikace."
|
2520 |
|
2521 |
+
#: app/features/ix.php:4204 app/features/mec/settings.php:1336
|
2522 |
msgid "here"
|
2523 |
msgstr ""
|
2524 |
|
2525 |
+
#: app/features/ix.php:4258
|
2526 |
#, fuzzy
|
2527 |
#| msgid "All of Client App, Client Secret and Calendar ID are required!"
|
2528 |
msgid "Client App, Client Secret, and Calendar ID are all required!"
|
2530 |
"Všechny klientské aplikace, tajné informace klienta a ID kalendáře jsou "
|
2531 |
"povinné!"
|
2532 |
|
2533 |
+
#: app/features/ix.php:4403
|
2534 |
#, fuzzy, php-format
|
2535 |
#| msgid "%s events added to Google Calendar successfully."
|
2536 |
msgid "%s events added to Google Calendar with success."
|
2537 |
msgstr "% s události byly přidané do Google kalendáře úspěšně."
|
2538 |
|
2539 |
+
#: app/features/ix.php:4404
|
2540 |
#, fuzzy, php-format
|
2541 |
#| msgid "%s previously added events get updated."
|
2542 |
msgid "%s Updated previously added events."
|
2543 |
msgstr "% s dříve přidané události byly aktualizovány."
|
2544 |
|
2545 |
+
#: app/features/ix.php:4405
|
2546 |
#, php-format
|
2547 |
msgid "%s events failed to add for following reasons: %s"
|
2548 |
msgstr "% s události se nepodařilo přidat z následujících důvodů: % s"
|
2549 |
|
2550 |
+
#: app/features/ix.php:4437
|
2551 |
msgid "Please insert your Facebook page's link."
|
2552 |
msgstr "Vložte prosím odkaz na svou stránku na Facebooku."
|
2553 |
|
2554 |
+
#: app/features/ix.php:4448 app/features/ix.php:4490
|
2555 |
#, fuzzy
|
2556 |
#| msgid ""
|
2557 |
#| "We couldn't recognize your Facebook page. Please check it and provide us "
|
2563 |
"Vaši facebookovou stránku jsme nemohli rozpoznat. Zkontrolujte to a "
|
2564 |
"poskytněte nám platný odkaz na stránku Facebooku."
|
2565 |
|
2566 |
+
#: app/features/ix.php:4485
|
2567 |
msgid "Please insert your facebook page's link."
|
2568 |
msgstr "Vložte prosím odkaz na svou facebookovou stránku."
|
2569 |
|
2737 |
|
2738 |
#: app/features/ix/export_g_calendar.php:93 app/features/mec/booking.php:1034
|
2739 |
#: app/features/mec/modules.php:443 app/features/mec/notifications.php:1599
|
2740 |
+
#: app/features/mec/settings.php:1451 app/features/mec/single.php:502
|
2741 |
msgid "Checking ..."
|
2742 |
msgstr "Ověřování ..."
|
2743 |
|
2762 |
msgid "XML Feed"
|
2763 |
msgstr "XML Feed"
|
2764 |
|
2765 |
+
#: app/features/ix/import.php:30 app/features/ix/import.php:54
|
2766 |
+
#: app/features/ix/import.php:84
|
2767 |
msgid "Upload & Import"
|
2768 |
msgstr "Nahrát & importovat"
|
2769 |
|
2770 |
+
#: app/features/ix/import.php:44
|
2771 |
msgid "Import .ics File"
|
2772 |
msgstr "Import .ics souboru"
|
2773 |
|
2774 |
+
#: app/features/ix/import.php:48
|
2775 |
#, php-format
|
2776 |
msgid ""
|
2777 |
"ICS format supports by many different service providers like Facebook. Apple "
|
2781 |
"Apple Calendar atd. Můžete importovat svůj ics soubor do %s použitím tohoto "
|
2782 |
"formuláře."
|
2783 |
|
2784 |
+
#: app/features/ix/import.php:51
|
2785 |
msgid "ICS Feed"
|
2786 |
msgstr "ICS Feed"
|
2787 |
|
2788 |
+
#: app/features/ix/import.php:58 app/features/ix/import.php:88
|
2789 |
#: app/features/mec/booking.php:91 app/features/mec/booking.php:435
|
2790 |
#: app/features/mec/booking.php:451 app/features/mec/booking.php:469
|
2791 |
#: app/features/mec/booking.php:546
|
2797 |
msgid "%s is required to use this feature."
|
2798 |
msgstr "% s je vyžadováno pro použití této funkce."
|
2799 |
|
2800 |
+
#: app/features/ix/import.php:58 app/features/ix/import.php:88
|
2801 |
#: app/features/ix/sync.php:22 app/features/mec/booking.php:91
|
2802 |
#: app/features/mec/booking.php:435 app/features/mec/booking.php:451
|
2803 |
#: app/features/mec/booking.php:469 app/features/mec/booking.php:546
|
2815 |
msgid "Pro version of Modern Events Calendar"
|
2816 |
msgstr "Pro verze doplňku Modern Events Calendar"
|
2817 |
|
2818 |
+
#: app/features/ix/import.php:73
|
2819 |
#, fuzzy
|
2820 |
#| msgid "Import .ics File"
|
2821 |
msgid "Import Booking CSV File"
|
2822 |
msgstr "Import .ics souboru"
|
2823 |
|
2824 |
+
#: app/features/ix/import.php:77
|
2825 |
#, php-format
|
2826 |
msgid ""
|
2827 |
"You can export bookings from %s using the booking menu in source website. "
|
2829 |
"form in to your target website."
|
2830 |
msgstr ""
|
2831 |
|
2832 |
+
#: app/features/ix/import.php:78
|
2833 |
msgid ""
|
2834 |
"Please note that you should create (or imports) events and tickets before "
|
2835 |
"importing the bookings otherwise booking won't import due to lack of data."
|
2836 |
msgstr ""
|
2837 |
|
2838 |
+
#: app/features/ix/import.php:81
|
2839 |
#, fuzzy
|
2840 |
#| msgid "File"
|
2841 |
msgid "CSV File"
|
3236 |
|
3237 |
#: app/features/locations.php:59 app/features/mec.php:466
|
3238 |
#: app/features/mec/dashboard.php:281 app/features/mec/meta_boxes/filter.php:70
|
3239 |
+
#: app/features/mec/meta_boxes/filter.php:97 app/libraries/main.php:6571
|
3240 |
+
#: app/libraries/main.php:6625
|
3241 |
msgid "Locations"
|
3242 |
msgstr "Umístění"
|
3243 |
|
3302 |
msgid "eg. City Hall"
|
3303 |
msgstr "např. Radnice"
|
3304 |
|
3305 |
+
#: app/features/locations.php:346 app/features/mec/settings.php:829
|
3306 |
#: app/features/popup/event.php:143 app/widgets/single.php:117
|
3307 |
msgid "Event Location"
|
3308 |
msgstr "Místo události"
|
3342 |
msgid "Don't show map in single event page"
|
3343 |
msgstr "Nezobrazovat mapu na jednostránkové události"
|
3344 |
|
3345 |
+
#: app/features/locations.php:403 app/libraries/main.php:6609
|
3346 |
+
#: app/libraries/main.php:6656
|
3347 |
msgid "Other Locations"
|
3348 |
msgstr "Další místa"
|
3349 |
|
3431 |
#: app/features/mec.php:467 app/features/mec/dashboard.php:288
|
3432 |
#: app/features/mec/meta_boxes/filter.php:71
|
3433 |
#: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
|
3434 |
+
#: app/libraries/main.php:6573 app/libraries/main.php:6627
|
3435 |
msgid "Organizers"
|
3436 |
msgstr "Organizátoři"
|
3437 |
|
3552 |
msgstr "Modern Events Calendar (Lite)"
|
3553 |
|
3554 |
#: app/features/mec.php:1207 app/features/mec/dashboard.php:299
|
3555 |
+
#: app/features/mec/settings.php:464
|
3556 |
msgid "Upcoming Events"
|
3557 |
msgstr "Nadcházející události"
|
3558 |
|
3637 |
|
3638 |
#: app/features/mec/booking.php:70 app/features/mec/messages.php:13
|
3639 |
#: app/features/mec/modules.php:15 app/features/mec/notifications.php:12
|
3640 |
+
#: app/features/mec/settings.php:33 app/features/mec/single.php:19
|
3641 |
#: app/features/mec/styling.php:35
|
3642 |
msgid "Search..."
|
3643 |
msgstr "Vyhledávání ..."
|
3654 |
#: app/features/mec/notifications.php:1532
|
3655 |
#: app/features/mec/notifications.php:1544
|
3656 |
#: app/features/mec/notifications.php:1616
|
3657 |
+
#: app/features/mec/notifications.php:1630 app/features/mec/settings.php:35
|
3658 |
+
#: app/features/mec/settings.php:1400 app/features/mec/settings.php:1410
|
3659 |
+
#: app/features/mec/settings.php:1468 app/features/mec/settings.php:1482
|
3660 |
#: app/features/mec/single.php:21 app/features/mec/single.php:467
|
3661 |
#: app/features/mec/single.php:477 app/features/mec/single.php:519
|
3662 |
#: app/features/mec/single.php:533 app/features/mec/styles.php:11
|
3911 |
msgstr ""
|
3912 |
|
3913 |
#: app/features/mec/booking.php:286 app/features/mec/booking.php:288
|
3914 |
+
#: app/features/mec/booking.php:298 app/features/mec/settings.php:684
|
3915 |
+
#: app/features/mec/settings.php:694
|
3916 |
msgid "Thank You Page"
|
3917 |
msgstr "Stránka s poděkováním"
|
3918 |
|
3925 |
"vypnout, ponechte ji prázdnou."
|
3926 |
|
3927 |
#: app/features/mec/booking.php:306 app/features/mec/booking.php:311
|
3928 |
+
#: app/features/mec/settings.php:717 app/features/mec/settings.php:722
|
3929 |
msgid "Thank You Page Time Interval"
|
3930 |
msgstr "Stránka s poděkováním časového intervalu"
|
3931 |
|
3932 |
+
#: app/features/mec/booking.php:308 app/features/mec/settings.php:719
|
3933 |
msgid "2000 mean 2 seconds"
|
3934 |
msgstr "2000 znamená 2 vteřiny"
|
3935 |
|
3936 |
+
#: app/features/mec/booking.php:312 app/features/mec/settings.php:723
|
3937 |
msgid ""
|
3938 |
"Waiting time before redirecting to thank you page. It's in miliseconds so "
|
3939 |
"2000 means 2 seconds."
|
4003 |
msgid "Send confirmation email in auto confirmation mode"
|
4004 |
msgstr ""
|
4005 |
|
4006 |
+
#: app/features/mec/booking.php:432 app/libraries/main.php:599
|
4007 |
#, fuzzy
|
4008 |
#| msgid "Booking Style"
|
4009 |
msgid "Booking Shortcode"
|
4043 |
"novou nabídku na řídícím panelu > Rezervace"
|
4044 |
|
4045 |
#: app/features/mec/booking.php:466 app/features/mec/booking.php:854
|
4046 |
+
#: app/libraries/main.php:601
|
4047 |
msgid "Taxes / Fees"
|
4048 |
msgstr "Daně / poplatky"
|
4049 |
|
4055 |
msgid "Add Fee"
|
4056 |
msgstr "Přidat poplatek"
|
4057 |
|
4058 |
+
#: app/features/mec/booking.php:543 app/libraries/main.php:602
|
4059 |
msgid "Ticket Variations & Options"
|
4060 |
msgstr "Varianty a možnosti vstupenek"
|
4061 |
|
4216 |
|
4217 |
#: app/features/mec/booking.php:1029 app/features/mec/messages.php:78
|
4218 |
#: app/features/mec/modules.php:438 app/features/mec/notifications.php:1594
|
4219 |
+
#: app/features/mec/settings.php:1446 app/features/mec/single.php:497
|
4220 |
#: app/features/mec/styles.php:62 app/features/mec/styling.php:340
|
4221 |
msgid "Saved"
|
4222 |
msgstr "Uloženo"
|
4223 |
|
4224 |
#: app/features/mec/booking.php:1030 app/features/mec/messages.php:79
|
4225 |
#: app/features/mec/modules.php:439 app/features/mec/notifications.php:1595
|
4226 |
+
#: app/features/mec/settings.php:1447 app/features/mec/single.php:498
|
4227 |
#: app/features/mec/styles.php:63 app/features/mec/styling.php:341
|
4228 |
msgid "Settings Saved!"
|
4229 |
msgstr "Nastavení uložena!"
|
4230 |
|
4231 |
#: app/features/mec/booking.php:1056 app/features/mec/modules.php:465
|
4232 |
+
#: app/features/mec/notifications.php:1621 app/features/mec/settings.php:1473
|
4233 |
#: app/features/mec/single.php:524
|
4234 |
msgid "Please Refresh Page"
|
4235 |
msgstr "Prosím obnovte stránku"
|
4359 |
msgstr "Stáhnout nastavení"
|
4360 |
|
4361 |
#: app/features/mec/messages.php:28 app/features/mec/support-page.php:102
|
4362 |
+
#: app/features/mec/support.php:66 app/libraries/main.php:853
|
4363 |
msgid "Messages"
|
4364 |
msgstr "Zprávy"
|
4365 |
|
4390 |
#: app/features/mec/meta_boxes/display_options.php:974
|
4391 |
#: app/features/mec/meta_boxes/display_options.php:1305
|
4392 |
#: app/features/mec/meta_boxes/display_options.php:1603
|
4393 |
+
#: app/features/mec/settings.php:325 app/features/mec/settings.php:349
|
4394 |
+
#: app/features/mec/settings.php:358 app/features/mec/settings.php:402
|
4395 |
+
#: app/features/mec/settings.php:426 app/features/mec/settings.php:435
|
4396 |
#: app/features/popup/shortcode.php:68 app/features/popup/shortcode.php:102
|
4397 |
#: app/features/popup/shortcode.php:199 app/features/popup/shortcode.php:236
|
4398 |
#: app/features/popup/shortcode.php:250 app/features/popup/shortcode.php:283
|
4403 |
|
4404 |
#: app/features/mec/meta_boxes/display_options.php:44
|
4405 |
#: app/features/mec/meta_boxes/display_options.php:296
|
4406 |
+
#: app/features/mec/settings.php:350 app/features/mec/settings.php:360
|
4407 |
+
#: app/features/mec/settings.php:427 app/features/mec/settings.php:437
|
4408 |
#: app/features/popup/shortcode.php:73 app/features/popup/shortcode.php:112
|
4409 |
msgid "Minimal"
|
4410 |
msgstr "Minimální"
|
4415 |
#: app/features/mec/meta_boxes/display_options.php:976
|
4416 |
#: app/features/mec/meta_boxes/display_options.php:1303
|
4417 |
#: app/features/mec/meta_boxes/display_options.php:1605
|
4418 |
+
#: app/features/mec/settings.php:327 app/features/mec/settings.php:340
|
4419 |
+
#: app/features/mec/settings.php:351 app/features/mec/settings.php:361
|
4420 |
+
#: app/features/mec/settings.php:404 app/features/mec/settings.php:417
|
4421 |
+
#: app/features/mec/settings.php:428 app/features/mec/settings.php:438
|
4422 |
#: app/features/popup/shortcode.php:78 app/features/popup/shortcode.php:117
|
4423 |
#: app/features/popup/shortcode.php:185 app/features/popup/shortcode.php:209
|
4424 |
#: app/features/popup/shortcode.php:263 app/features/popup/shortcode.php:306
|
4426 |
msgstr "Moderní"
|
4427 |
|
4428 |
#: app/features/mec/meta_boxes/display_options.php:46
|
4429 |
+
#: app/features/mec/settings.php:352 app/features/mec/settings.php:429
|
4430 |
#: app/features/popup/shortcode.php:83
|
4431 |
msgid "Standard"
|
4432 |
msgstr "Standardní"
|
4433 |
|
4434 |
#: app/features/mec/meta_boxes/display_options.php:47
|
4435 |
+
#: app/features/mec/settings.php:353 app/features/mec/settings.php:430
|
4436 |
#: app/features/popup/shortcode.php:88
|
4437 |
msgid "Accordion"
|
4438 |
msgstr "Akordeon"
|
4841 |
#: app/features/mec/meta_boxes/display_options.php:975
|
4842 |
#: app/features/mec/meta_boxes/display_options.php:1304
|
4843 |
#: app/features/mec/meta_boxes/display_options.php:1604
|
4844 |
+
#: app/features/mec/settings.php:326 app/features/mec/settings.php:341
|
4845 |
+
#: app/features/mec/settings.php:359 app/features/mec/settings.php:403
|
4846 |
+
#: app/features/mec/settings.php:418 app/features/mec/settings.php:436
|
4847 |
#: app/features/popup/shortcode.php:107 app/features/popup/shortcode.php:146
|
4848 |
#: app/features/popup/shortcode.php:161 app/features/popup/shortcode.php:204
|
4849 |
#: app/features/popup/shortcode.php:268 app/features/popup/shortcode.php:301
|
4853 |
#: app/features/mec/meta_boxes/display_options.php:298
|
4854 |
#: app/features/mec/meta_boxes/display_options.php:714
|
4855 |
#: app/features/mec/meta_boxes/display_options.php:978
|
4856 |
+
#: app/features/mec/settings.php:329 app/features/mec/settings.php:362
|
4857 |
+
#: app/features/mec/settings.php:406 app/features/mec/settings.php:439
|
4858 |
#: app/features/popup/shortcode.php:122 app/features/popup/shortcode.php:171
|
4859 |
#: app/features/popup/shortcode.php:219
|
4860 |
msgid "Simple"
|
4868 |
#: app/features/mec/meta_boxes/display_options.php:300
|
4869 |
#: app/features/mec/meta_boxes/display_options.php:713
|
4870 |
#: app/features/mec/meta_boxes/display_options.php:977
|
4871 |
+
#: app/features/mec/settings.php:328 app/features/mec/settings.php:364
|
4872 |
+
#: app/features/mec/settings.php:405 app/features/mec/settings.php:441
|
4873 |
#: app/features/popup/shortcode.php:132 app/features/popup/shortcode.php:166
|
4874 |
#: app/features/popup/shortcode.php:214
|
4875 |
msgid "Novel"
|
4919 |
|
4920 |
#: app/features/mec/meta_boxes/display_options.php:700
|
4921 |
#: app/features/mec/meta_boxes/display_options.php:724
|
4922 |
+
#: app/libraries/main.php:364 app/libraries/main.php:2134
|
4923 |
+
#: app/libraries/main.php:2159
|
4924 |
msgid "List View"
|
4925 |
msgstr "Zobrazení seznamu"
|
4926 |
|
4927 |
#: app/features/mec/meta_boxes/display_options.php:701
|
4928 |
#: app/features/mec/meta_boxes/display_options.php:745
|
4929 |
+
#: app/libraries/main.php:365 app/libraries/main.php:2135
|
4930 |
+
#: app/libraries/main.php:2160
|
4931 |
msgid "Grid View"
|
4932 |
msgstr "Zobrazení mřížky"
|
4933 |
|
4941 |
|
4942 |
#: app/features/mec/meta_boxes/display_options.php:703
|
4943 |
#: app/features/mec/meta_boxes/display_options.php:766
|
4944 |
+
#: app/libraries/main.php:368 app/libraries/main.php:2128
|
4945 |
+
#: app/libraries/main.php:2153
|
4946 |
msgid "Yearly View"
|
4947 |
msgstr "Roční zobrazení"
|
4948 |
|
4953 |
|
4954 |
#: app/features/mec/meta_boxes/display_options.php:705
|
4955 |
#: app/features/mec/meta_boxes/display_options.php:815
|
4956 |
+
#: app/libraries/main.php:371 app/libraries/main.php:2130
|
4957 |
+
#: app/libraries/main.php:2155
|
4958 |
msgid "Weekly View"
|
4959 |
msgstr "Týdenní zobrazení"
|
4960 |
|
4961 |
#: app/features/mec/meta_boxes/display_options.php:706
|
4962 |
#: app/features/mec/meta_boxes/display_options.php:825
|
4963 |
+
#: app/libraries/main.php:370 app/libraries/main.php:2131
|
4964 |
+
#: app/libraries/main.php:2156
|
4965 |
msgid "Daily View"
|
4966 |
msgstr "Denní zobrazení"
|
4967 |
|
5399 |
msgid "Choose your desired authors for filtering the events."
|
5400 |
msgstr "Vyberte požadované autory pro filtrování událostí."
|
5401 |
|
5402 |
+
#: app/features/mec/meta_boxes/filter.php:183 app/features/mec/settings.php:465
|
5403 |
msgid "Expired Events"
|
5404 |
msgstr "Události vypršely"
|
5405 |
|
5479 |
#: app/features/mec/meta_boxes/search_form.php:723
|
5480 |
#: app/features/mec/meta_boxes/search_form.php:808
|
5481 |
#: app/features/mec/meta_boxes/search_form.php:929
|
5482 |
+
#: app/features/mec/settings.php:1097 app/features/mec/single.php:398
|
5483 |
#: app/features/mec/single.php:440 app/features/search.php:86
|
5484 |
#: app/features/speakers.php:60 app/features/speakers.php:283
|
5485 |
+
#: app/libraries/main.php:6576 app/libraries/main.php:6630
|
5486 |
+
#: app/libraries/skins.php:1111 app/modules/speakers/details.php:18
|
5487 |
msgid "Speaker"
|
5488 |
msgstr "Řečník"
|
5489 |
|
5498 |
#: app/features/mec/meta_boxes/search_form.php:730
|
5499 |
#: app/features/mec/meta_boxes/search_form.php:815
|
5500 |
#: app/features/mec/meta_boxes/search_form.php:936
|
5501 |
+
#: app/features/mec/settings.php:1104 app/features/mec/single.php:407
|
5502 |
#: app/features/mec/single.php:449 app/features/search.php:92
|
5503 |
+
#: app/libraries/skins.php:1137
|
5504 |
msgid "Tag"
|
5505 |
msgstr "Štítek"
|
5506 |
|
5658 |
"Po povolení a uložení nastavení byste měli stránku znovu načíst a zobrazit "
|
5659 |
"novou nabídku na řídícím panelu > MEC"
|
5660 |
|
5661 |
+
#: app/features/mec/modules.php:58 app/libraries/main.php:610
|
5662 |
#, fuzzy
|
5663 |
#| msgid "Google Maps Options"
|
5664 |
msgid "Map Options"
|
5682 |
msgid "Google Map Options"
|
5683 |
msgstr "Možnosti Google Maps"
|
5684 |
|
5685 |
+
#: app/features/mec/modules.php:76 app/features/mec/settings.php:1139
|
5686 |
+
#: app/features/mec/settings.php:1152
|
5687 |
msgid "Required!"
|
5688 |
msgstr "Požadované!"
|
5689 |
|
5751 |
msgid "Fullscreen Button"
|
5752 |
msgstr ""
|
5753 |
|
5754 |
+
#: app/features/mec/modules.php:167 app/libraries/main.php:611
|
5755 |
msgid "Export Options"
|
5756 |
msgstr "Možnosti exportu"
|
5757 |
|
5766 |
msgid "Google Calendar"
|
5767 |
msgstr "Kalendář Google"
|
5768 |
|
5769 |
+
#: app/features/mec/modules.php:194 app/libraries/main.php:612
|
5770 |
#: app/modules/local-time/details.php:45 app/modules/local-time/type1.php:42
|
5771 |
#: app/widgets/single.php:101
|
5772 |
msgid "Local Time"
|
5778 |
"Zobrazit čas události na základě místního času návštěvníka na stránce "
|
5779 |
"události"
|
5780 |
|
5781 |
+
#: app/features/mec/modules.php:208 app/libraries/main.php:613
|
5782 |
#: app/modules/qrcode/details.php:38 app/widgets/single.php:157
|
5783 |
msgid "QR Code"
|
5784 |
msgstr "QR kód"
|
5788 |
msgstr ""
|
5789 |
"Zobrazte QR kód události na stránce s podrobnostmi a fakturaci za rezervaci"
|
5790 |
|
5791 |
+
#: app/features/mec/modules.php:226 app/libraries/main.php:614
|
5792 |
#: app/modules/weather/darksky.php:15 app/modules/weather/weatherapi.php:16
|
5793 |
msgid "Weather"
|
5794 |
msgstr "Počasí"
|
5827 |
msgid "Show social network module"
|
5828 |
msgstr "Zobrazit modul sociální sítě"
|
5829 |
|
5830 |
+
#: app/features/mec/modules.php:299 app/libraries/main.php:616
|
5831 |
#: app/modules/next-event/details.php:136 app/widgets/single.php:141
|
5832 |
msgid "Next Event"
|
5833 |
msgstr "Další událost"
|
5888 |
msgid "Add events menu to user profile"
|
5889 |
msgstr "Přidejte do uživatelského profilu rezervační aktivitu"
|
5890 |
|
5891 |
+
#: app/features/mec/modules.php:376 app/libraries/main.php:618
|
5892 |
#, fuzzy
|
5893 |
#| msgid "Mailchimp Integration"
|
5894 |
msgid "LearnDash Integration"
|
5906 |
msgid "LearnDash plugin should be installed and activated."
|
5907 |
msgstr "Plugin třetích stran není nainstalován a aktivován!"
|
5908 |
|
5909 |
+
#: app/features/mec/modules.php:386 app/libraries/main.php:619
|
5910 |
#, fuzzy
|
5911 |
#| msgid "Mailchimp Integration"
|
5912 |
msgid "PaidMembership Pro Integration"
|
6648 |
msgid "Add to Google Calendar Links for next 20 occurrences"
|
6649 |
msgstr ""
|
6650 |
|
6651 |
+
#: app/features/mec/notifications.php:191 app/libraries/main.php:633
|
6652 |
msgid "Booking Verification"
|
6653 |
msgstr "Ověření rezervace"
|
6654 |
|
6690 |
msgstr "Odkaz na zrušení rezervace."
|
6691 |
|
6692 |
#: app/features/mec/notifications.php:494 app/features/notifications.php:164
|
6693 |
+
#: app/libraries/main.php:632
|
6694 |
#, fuzzy
|
6695 |
#| msgid "Booking Verification"
|
6696 |
msgid "Booking Rejection"
|
6724 |
msgstr "Pošlete rezervační e-mail uživateli"
|
6725 |
|
6726 |
#: app/features/mec/notifications.php:666 app/features/notifications.php:170
|
6727 |
+
#: app/libraries/main.php:634
|
6728 |
msgid "Booking Cancellation"
|
6729 |
msgstr "Zrušení rezervace"
|
6730 |
|
6746 |
msgid "Admin booking management link."
|
6747 |
msgstr "Odkaz administrátora na správu rezervace."
|
6748 |
|
6749 |
+
#: app/features/mec/notifications.php:824 app/libraries/main.php:637
|
6750 |
msgid "Admin"
|
6751 |
msgstr "Administrátor"
|
6752 |
|
6761 |
msgstr "Zašle správci informaci o přijetí nové rezervace."
|
6762 |
|
6763 |
#: app/features/mec/notifications.php:979 app/features/notifications.php:176
|
6764 |
+
#: app/libraries/main.php:636
|
6765 |
#, fuzzy
|
6766 |
#| msgid "Event Color"
|
6767 |
msgid "Event Soldout"
|
6782 |
msgstr "Zašle správci informaci o přijetí nové rezervace."
|
6783 |
|
6784 |
#: app/features/mec/notifications.php:1121 app/features/notifications.php:173
|
6785 |
+
#: app/libraries/main.php:635 app/libraries/notifications.php:777
|
6786 |
msgid "Booking Reminder"
|
6787 |
msgstr "Připomenutí rezervace"
|
6788 |
|
6811 |
msgid "only once per hour"
|
6812 |
msgstr "pouze jednou denně"
|
6813 |
|
6814 |
+
#: app/features/mec/notifications.php:1203 app/libraries/main.php:7701
|
6815 |
+
#: app/libraries/main.php:7718
|
6816 |
#, fuzzy
|
6817 |
#| msgid "hours"
|
6818 |
msgid "Hours"
|
6827 |
msgstr ""
|
6828 |
|
6829 |
#: app/features/mec/notifications.php:1288 app/features/popup/event.php:253
|
6830 |
+
#: app/libraries/main.php:623
|
6831 |
msgid "New Event"
|
6832 |
msgstr "Nová událost"
|
6833 |
|
6863 |
msgstr "Stav události"
|
6864 |
|
6865 |
#: app/features/mec/notifications.php:1392
|
6866 |
+
#: app/features/mec/notifications.php:1503 app/features/mec/settings.php:980
|
6867 |
+
#: app/features/mec/settings.php:984 app/features/notifications.php:147
|
6868 |
msgid "Event Note"
|
6869 |
msgstr "Poznámka události"
|
6870 |
|
6873 |
msgid "Admin events management link."
|
6874 |
msgstr "Odkaz administrátora na správu událostí."
|
6875 |
|
6876 |
+
#: app/features/mec/notifications.php:1408 app/libraries/main.php:624
|
6877 |
msgid "User Event Publishing"
|
6878 |
msgstr "Publikování uživatelských událostí"
|
6879 |
|
6893 |
"Odešle po zveřejnění nové události ze zadání z webových stránek (frontend) "
|
6894 |
"nebo z administrace webových stránek (backend)."
|
6895 |
|
6896 |
+
#: app/features/mec/notifications.php:1517 app/libraries/main.php:640
|
6897 |
#, fuzzy
|
6898 |
#| msgid "Notifications"
|
6899 |
msgid "Notifications Per Event"
|
6985 |
msgid "There was an error please try again!"
|
6986 |
msgstr ""
|
6987 |
|
6988 |
+
#: app/features/mec/settings.php:55 app/features/mec/settings.php:66
|
6989 |
msgid "Hide Events"
|
6990 |
msgstr "Skrýt události"
|
6991 |
|
6992 |
+
#: app/features/mec/settings.php:58
|
6993 |
msgid "On Event Start"
|
6994 |
msgstr "Při spuštění události"
|
6995 |
|
6996 |
+
#: app/features/mec/settings.php:59
|
6997 |
msgid "+1 Hour after start"
|
6998 |
msgstr "+1 hodinu po zahájení"
|
6999 |
|
7000 |
+
#: app/features/mec/settings.php:60
|
7001 |
msgid "+2 Hours after start"
|
7002 |
msgstr "+2 hodiny po zahájení"
|
7003 |
|
7004 |
+
#: app/features/mec/settings.php:61
|
7005 |
msgid "On Event End"
|
7006 |
msgstr "Na konci události"
|
7007 |
|
7008 |
+
#: app/features/mec/settings.php:67
|
7009 |
msgid ""
|
7010 |
"This option is for showing start/end time of events on frontend of website."
|
7011 |
msgstr ""
|
7012 |
"Tato možnost slouží k zobrazení času zahájení / ukončení událostí na "
|
7013 |
"rozhraní webových stránek (frontend)."
|
7014 |
|
7015 |
+
#: app/features/mec/settings.php:76
|
7016 |
#, fuzzy
|
7017 |
#| msgid "Multiple Day Events"
|
7018 |
msgid "Multiple Day Events Show"
|
7019 |
msgstr "Vícedenní událost"
|
7020 |
|
7021 |
+
#: app/features/mec/settings.php:79
|
7022 |
#, fuzzy
|
7023 |
#| msgid "Show only first day on List/Grid/Slider skins"
|
7024 |
msgid "First day on list/grid/slider/agenda skins"
|
7025 |
msgstr "Zobrazit pouze první den ve vzhledu Seznam / Mřížka / Posuvník"
|
7026 |
|
7027 |
+
#: app/features/mec/settings.php:80
|
7028 |
#, fuzzy
|
7029 |
#| msgid "Show only first day on all skins"
|
7030 |
msgid "First day on all skins"
|
7031 |
msgstr "Zobrazit pouze první den ve všech vzhledech"
|
7032 |
|
7033 |
+
#: app/features/mec/settings.php:81
|
7034 |
#, fuzzy
|
7035 |
#| msgid "Add Day"
|
7036 |
msgid "All days"
|
7037 |
msgstr "Přidat den"
|
7038 |
|
7039 |
+
#: app/features/mec/settings.php:85
|
7040 |
msgid "Multiple Day Events"
|
7041 |
msgstr "Vícedenní událost"
|
7042 |
|
7043 |
+
#: app/features/mec/settings.php:86
|
7044 |
msgid ""
|
7045 |
"For showing all days of multiple day events on frontend or only show the "
|
7046 |
"first day."
|
7048 |
"Pro zobrazení všech dnů vícedenních událostí na webových stránkách "
|
7049 |
"(frontend) nebo zobrazení pouze prvního dne."
|
7050 |
|
7051 |
+
#: app/features/mec/settings.php:95
|
7052 |
msgid "Remove MEC Data on Plugin Uninstall"
|
7053 |
msgstr "Odebrat data při odinstalování doplňku MEC"
|
7054 |
|
7055 |
+
#: app/features/mec/settings.php:105
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7056 |
msgid "Exclude Date Suffix"
|
7057 |
msgstr "Vyloučit příponu data"
|
7058 |
|
7059 |
+
#: app/features/mec/settings.php:108
|
7060 |
msgid "Remove suffix from calendars"
|
7061 |
msgstr "Odebrat příponu z kalendářů"
|
7062 |
|
7063 |
+
#: app/features/mec/settings.php:112
|
7064 |
msgid "Remove \"Th\" on calendar"
|
7065 |
msgstr "Odebrat „Th“ z kalendáře"
|
7066 |
|
7067 |
+
#: app/features/mec/settings.php:113
|
7068 |
msgid ""
|
7069 |
"Checked this checkbox to remove 'Th' on calendar ( ex: '12Th' remove Th, "
|
7070 |
"showing just '12' )"
|
7072 |
"Zaškrtnutím tohoto políčka odstraníte „Th“ z kalendáře (např .: „12Th“ "
|
7073 |
"odstraní Th, zobrazí se pouze „12“)"
|
7074 |
|
7075 |
+
#: app/features/mec/settings.php:120 app/features/mec/settings.php:127
|
7076 |
msgid "Schema"
|
7077 |
msgstr "Schéma"
|
7078 |
|
7079 |
+
#: app/features/mec/settings.php:123
|
7080 |
msgid "Enable Schema Code"
|
7081 |
msgstr "Povolit kód schématu"
|
7082 |
|
7083 |
+
#: app/features/mec/settings.php:128
|
7084 |
msgid "You can enable/disable Schema scripts"
|
7085 |
msgstr "Můžete povolit nebo zakázat skripty schématu"
|
7086 |
|
7087 |
+
#: app/features/mec/settings.php:137 app/features/mec/settings.php:148
|
7088 |
+
#: app/libraries/main.php:6580 app/libraries/main.php:6634
|
7089 |
msgid "Weekdays"
|
7090 |
msgstr "Pracovní dny"
|
7091 |
|
7092 |
+
#: app/features/mec/settings.php:149
|
7093 |
msgid ""
|
7094 |
"Proceed with caution. Default is set to Monday, Tuesday, Wednesday, Thursday "
|
7095 |
"and Friday ( you can change 'Week Starts' on WordPress Dashboard > Settings "
|
7099 |
"Pátek (můžete to změnit pomocí „Začátek týdne“ na řídícím panelu WordPress > "
|
7100 |
"Nastavení > Obecné - spodní část stránky)."
|
7101 |
|
7102 |
+
#: app/features/mec/settings.php:160 app/features/mec/settings.php:171
|
7103 |
msgid "Weekends"
|
7104 |
msgstr "Víkendy"
|
7105 |
|
7106 |
+
#: app/features/mec/settings.php:172
|
7107 |
#, fuzzy
|
7108 |
#| msgid ""
|
7109 |
#| "Proceed with caution. Default is set to Saturday and Sunday ( you can "
|
7118 |
"to změnit pomocí „Začátek týdne“ na řídícím panelu WordPress > Nastavení > "
|
7119 |
"Obecné - dolní část stránky )."
|
7120 |
|
7121 |
+
#: app/features/mec/settings.php:182
|
7122 |
#, fuzzy
|
7123 |
#| msgid "Date Format"
|
7124 |
msgid "Datepicker Format"
|
7125 |
msgstr "Formát data"
|
7126 |
|
7127 |
+
#: app/features/mec/settings.php:190
|
7128 |
msgid "(Y-m-d)"
|
7129 |
msgstr ""
|
7130 |
|
7131 |
+
#: app/features/mec/settings.php:191
|
7132 |
msgid "(d-m-Y)"
|
7133 |
msgstr ""
|
7134 |
|
7135 |
+
#: app/features/mec/settings.php:194
|
7136 |
msgid "(Y/m/d)"
|
7137 |
msgstr ""
|
7138 |
|
7139 |
+
#: app/features/mec/settings.php:195
|
7140 |
msgid "(m/d/Y)"
|
7141 |
msgstr ""
|
7142 |
|
7143 |
+
#: app/features/mec/settings.php:198
|
7144 |
msgid "(Y.m.d)"
|
7145 |
msgstr ""
|
7146 |
|
7147 |
+
#: app/features/mec/settings.php:199
|
7148 |
msgid "(d.m.Y)"
|
7149 |
msgstr ""
|
7150 |
|
7151 |
+
#: app/features/mec/settings.php:205 app/features/mec/settings.php:217
|
7152 |
msgid "Midnight Hour"
|
7153 |
msgstr ""
|
7154 |
|
7155 |
+
#: app/features/mec/settings.php:208
|
7156 |
msgid "12 AM"
|
7157 |
msgstr ""
|
7158 |
|
7159 |
+
#: app/features/mec/settings.php:209
|
7160 |
msgid "1 AM"
|
7161 |
msgstr ""
|
7162 |
|
7163 |
+
#: app/features/mec/settings.php:210
|
7164 |
msgid "2 AM"
|
7165 |
msgstr ""
|
7166 |
|
7167 |
+
#: app/features/mec/settings.php:211
|
7168 |
msgid "3 AM"
|
7169 |
msgstr ""
|
7170 |
|
7171 |
+
#: app/features/mec/settings.php:212
|
7172 |
msgid "4 AM"
|
7173 |
msgstr ""
|
7174 |
|
7175 |
+
#: app/features/mec/settings.php:213
|
7176 |
msgid "5 AM"
|
7177 |
msgstr ""
|
7178 |
|
7179 |
+
#: app/features/mec/settings.php:218
|
7180 |
msgid ""
|
7181 |
"12 AM is midnight by default but you can change it if your event ends after "
|
7182 |
"12 AM and you don't want those events considered as multiple days events!"
|
7183 |
msgstr ""
|
7184 |
|
7185 |
+
#: app/features/mec/settings.php:226
|
7186 |
#, fuzzy
|
7187 |
#| msgid "Add Shortcode"
|
7188 |
msgid "Open \"Add Event\" as Popup"
|
7189 |
msgstr "Přidat zkrácený kód"
|
7190 |
|
7191 |
+
#: app/features/mec/settings.php:229 app/features/mec/settings.php:237
|
7192 |
+
#: app/features/mec/settings.php:245 app/features/mec/settings.php:253
|
7193 |
#: app/features/mec/single.php:111
|
7194 |
#, fuzzy
|
7195 |
#| msgid "Enabled"
|
7196 |
msgid "Enable"
|
7197 |
msgstr "Povoleno"
|
7198 |
|
7199 |
+
#: app/features/mec/settings.php:234
|
7200 |
#, fuzzy
|
7201 |
#| msgid "Add Shortcode"
|
7202 |
msgid "Open \"Add Shortcode\" as Popup"
|
7203 |
msgstr "Přidat zkrácený kód"
|
7204 |
|
7205 |
# v kontextu
|
7206 |
+
#: app/features/mec/settings.php:242
|
7207 |
#, fuzzy
|
7208 |
#| msgid "Featured Image"
|
7209 |
msgid "Include Event Featured Image in Feed"
|
7210 |
msgstr "Hlavní obrázek"
|
7211 |
|
7212 |
# v kontextu
|
7213 |
+
#: app/features/mec/settings.php:250
|
7214 |
#, fuzzy
|
7215 |
#| msgid "Featured Image"
|
7216 |
msgid "Fallback Featured Image"
|
7217 |
msgstr "Hlavní obrázek"
|
7218 |
|
7219 |
+
#: app/features/mec/settings.php:261 app/libraries/main.php:575
|
7220 |
+
#, fuzzy
|
7221 |
+
#| msgid "Google Maps Options"
|
7222 |
+
msgid "Email Options"
|
7223 |
+
msgstr "Možnosti Google Maps"
|
7224 |
+
|
7225 |
+
#: app/features/mec/settings.php:264
|
7226 |
+
#, fuzzy
|
7227 |
+
#| msgid "Speakers Names"
|
7228 |
+
msgid "Sender Name"
|
7229 |
+
msgstr "Jméno řečníka"
|
7230 |
+
|
7231 |
+
#: app/features/mec/settings.php:267
|
7232 |
+
msgid "e.g. Webnus"
|
7233 |
+
msgstr ""
|
7234 |
+
|
7235 |
+
#: app/features/mec/settings.php:271
|
7236 |
+
#, fuzzy
|
7237 |
+
#| msgid "Organizer Email"
|
7238 |
+
msgid "Sender Email"
|
7239 |
+
msgstr "Organizátor Email"
|
7240 |
+
|
7241 |
+
#: app/features/mec/settings.php:274
|
7242 |
+
msgid "e.g. info@webnus.biz"
|
7243 |
+
msgstr ""
|
7244 |
+
|
7245 |
+
#: app/features/mec/settings.php:278
|
7246 |
+
#, fuzzy
|
7247 |
+
#| msgid "Simple Method"
|
7248 |
+
msgid "Recipients Method"
|
7249 |
+
msgstr "Jednoduchá metoda"
|
7250 |
+
|
7251 |
+
#: app/features/mec/settings.php:281
|
7252 |
+
msgid "BCC (Invisible)"
|
7253 |
+
msgstr ""
|
7254 |
+
|
7255 |
+
#: app/features/mec/settings.php:282
|
7256 |
+
msgid "CC (Visible)"
|
7257 |
+
msgstr ""
|
7258 |
+
|
7259 |
+
#: app/features/mec/settings.php:290 app/libraries/main.php:567
|
7260 |
msgid "Archive Pages"
|
7261 |
msgstr "Archivní stránky"
|
7262 |
|
7263 |
+
#: app/features/mec/settings.php:293 app/features/mec/settings.php:298
|
7264 |
msgid "Archive Page Title"
|
7265 |
msgstr "Název stránky archivu"
|
7266 |
|
7267 |
+
#: app/features/mec/settings.php:299
|
7268 |
msgid "Default value is Events - It's title of the page"
|
7269 |
msgstr "Výchozí hodnota je Události - to je název stránky"
|
7270 |
|
7271 |
+
#: app/features/mec/settings.php:307 app/features/mec/settings.php:375
|
7272 |
msgid "Archive Page Skin"
|
7273 |
msgstr "Vzhled archivní stránky"
|
7274 |
|
7275 |
+
#: app/features/mec/settings.php:315 app/features/mec/settings.php:392
|
7276 |
msgid "Put shortcode..."
|
7277 |
msgstr "Vložte zkrácený kód..."
|
7278 |
|
7279 |
+
#: app/features/mec/settings.php:318 app/features/mec/settings.php:333
|
7280 |
+
#: app/features/mec/settings.php:336 app/features/mec/settings.php:345
|
7281 |
+
#: app/features/mec/settings.php:371 app/features/mec/settings.php:395
|
7282 |
+
#: app/features/mec/settings.php:410 app/features/mec/settings.php:413
|
7283 |
+
#: app/features/mec/settings.php:422 app/features/mec/settings.php:448
|
7284 |
msgid "There is no skins"
|
7285 |
msgstr "Neexistuje žádný vzhled"
|
7286 |
|
7287 |
+
#: app/features/mec/settings.php:321 app/features/mec/settings.php:398
|
7288 |
#: app/features/mec/single.php:73
|
7289 |
msgid "Modern Style"
|
7290 |
msgstr "Moderní styl"
|
7291 |
|
7292 |
+
#: app/features/mec/settings.php:363 app/features/mec/settings.php:440
|
7293 |
msgid "colorful"
|
7294 |
msgstr "pestrý"
|
7295 |
|
7296 |
+
#: app/features/mec/settings.php:368 app/features/mec/settings.php:445
|
7297 |
msgid "Clean Style"
|
7298 |
msgstr "Čistý styl"
|
7299 |
|
7300 |
+
#: app/features/mec/settings.php:376
|
7301 |
msgid "Default value is Calendar/Monthly View, But you can change it "
|
7302 |
msgstr "Výchozí hodnota je Kalendář / Měsíční zobrazení, ale můžete ji změnit "
|
7303 |
|
7304 |
+
#: app/features/mec/settings.php:376 app/features/mec/settings.php:453
|
7305 |
msgid "See Demo"
|
7306 |
msgstr "Viz Demo"
|
7307 |
|
7308 |
+
#: app/features/mec/settings.php:384 app/features/mec/settings.php:452
|
7309 |
msgid "Category Page Skin"
|
7310 |
msgstr "Vzhled stránky kategorie"
|
7311 |
|
7312 |
+
#: app/features/mec/settings.php:453
|
7313 |
#, fuzzy
|
7314 |
#| msgid ""
|
7315 |
#| "Default value is List View - But you can change it Set a skin for all "
|
7321 |
"Výchozí hodnota je Zobrazení seznamu - ale můžete ji změnit Nastavit vzhled "
|
7322 |
"pro všechny kategorie."
|
7323 |
|
7324 |
+
#: app/features/mec/settings.php:461 app/features/mec/settings.php:469
|
7325 |
msgid "Category Events Method"
|
7326 |
msgstr "Kategorie Metoda události"
|
7327 |
|
7328 |
+
#: app/features/mec/settings.php:470
|
7329 |
msgid "Default value is Upcoming Events"
|
7330 |
msgstr "Výchozí hodnota je Nadcházející události"
|
7331 |
|
7332 |
+
#: app/features/mec/settings.php:478 app/features/mec/settings.php:486
|
7333 |
msgid "Events Archive Status"
|
7334 |
msgstr "Stav archivu událostí"
|
7335 |
|
7336 |
+
#: app/features/mec/settings.php:481
|
7337 |
msgid "Enabled (Recommended)"
|
7338 |
msgstr "Povoleno (doporučeno)"
|
7339 |
|
7340 |
# Slug
|
7341 |
+
#: app/features/mec/settings.php:487
|
7342 |
msgid ""
|
7343 |
"If you disable it, then you should create a page as archive page of MEC. "
|
7344 |
"Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
|
7349 |
"přepisování MEC."
|
7350 |
|
7351 |
# Hlavní slug
|
7352 |
+
#: app/features/mec/settings.php:500 app/features/mec/settings.php:505
|
7353 |
msgid "Main Slug"
|
7354 |
msgstr "Main Slug"
|
7355 |
|
7356 |
+
#: app/features/mec/settings.php:506
|
7357 |
msgid ""
|
7358 |
"Default value is events. You can not have a page with this name. MEC allows "
|
7359 |
"you to create custom URLs for the permalinks and archives to enhance the "
|
7363 |
"umožňuje vytvářet vlastní adresy URL pro permanentní odkazy a archivy, aby "
|
7364 |
"se zvýšila použitelnost a dopředná kompatibilita odkazů."
|
7365 |
|
7366 |
+
#: app/features/mec/settings.php:510 app/features/mec/settings.php:524
|
7367 |
msgid "Valid characters are lowercase a-z, - character and numbers."
|
7368 |
msgstr "Platnými znaky jsou malá písmena a-z, - znak a čísla."
|
7369 |
|
7370 |
# Slug
|
7371 |
+
#: app/features/mec/settings.php:514 app/features/mec/settings.php:519
|
7372 |
msgid "Category Slug"
|
7373 |
msgstr "Kategorie Slug"
|
7374 |
|
7375 |
+
#: app/features/mec/settings.php:520
|
7376 |
msgid ""
|
7377 |
"It's slug of MEC categories, you can change it to events-cat or something "
|
7378 |
"else. Default value is mec-category. You can not have a page with this name."
|
7381 |
"jiného. Výchozí hodnota je mec-kategorie. Nemůžete mít stránku s tímto "
|
7382 |
"názvem."
|
7383 |
|
7384 |
+
#: app/features/mec/settings.php:532
|
7385 |
msgid "Currency"
|
7386 |
msgstr "Měna"
|
7387 |
|
7388 |
+
#: app/features/mec/settings.php:542 app/features/mec/settings.php:547
|
7389 |
msgid "Currency Sign"
|
7390 |
msgstr "Symbol měny"
|
7391 |
|
7392 |
+
#: app/features/mec/settings.php:548
|
7393 |
msgid "Default value will be \"currency\" if you leave it empty."
|
7394 |
msgstr "Výchozí hodnota bude „měna“, pokud ji necháte prázdnou."
|
7395 |
|
7396 |
+
#: app/features/mec/settings.php:555
|
7397 |
msgid "Currency Position"
|
7398 |
msgstr "Pozice měny"
|
7399 |
|
7400 |
+
#: app/features/mec/settings.php:558
|
7401 |
#, fuzzy
|
7402 |
#| msgid "Before $10"
|
7403 |
msgid "$10 (Before)"
|
7404 |
msgstr "Před $10"
|
7405 |
|
7406 |
+
#: app/features/mec/settings.php:559
|
7407 |
msgid "$ 10 (Before with Space)"
|
7408 |
msgstr ""
|
7409 |
|
7410 |
+
#: app/features/mec/settings.php:560
|
7411 |
#, fuzzy
|
7412 |
#| msgid "After"
|
7413 |
msgid "10$ (After)"
|
7414 |
msgstr "Po"
|
7415 |
|
7416 |
+
#: app/features/mec/settings.php:561
|
7417 |
msgid "10 $ (After with Space)"
|
7418 |
msgstr ""
|
7419 |
|
7420 |
+
#: app/features/mec/settings.php:566
|
7421 |
msgid "Thousand Separator"
|
7422 |
msgstr "Oddělovač tisíců"
|
7423 |
|
7424 |
+
#: app/features/mec/settings.php:572
|
7425 |
msgid "Decimal Separator"
|
7426 |
msgstr "Oddělovač desítel"
|
7427 |
|
7428 |
+
#: app/features/mec/settings.php:582
|
7429 |
msgid "No decimal"
|
7430 |
msgstr "Bez desetinných míst"
|
7431 |
|
7432 |
+
#: app/features/mec/settings.php:593
|
7433 |
msgid "Enable Google Recaptcha"
|
7434 |
msgstr "Povolit Google Recaptcha"
|
7435 |
|
7436 |
+
#: app/features/mec/settings.php:602
|
7437 |
msgid "Enable on booking form"
|
7438 |
msgstr "Povolit rezervační formulář"
|
7439 |
|
7440 |
+
#: app/features/mec/settings.php:610
|
7441 |
msgid "Enable on \"Frontend Event Submission\" form"
|
7442 |
msgstr "Povolit ve formuláři „Odesílání událostí z frontendu“"
|
7443 |
|
7444 |
# místa
|
7445 |
+
#: app/features/mec/settings.php:614
|
7446 |
msgid "Site Key"
|
7447 |
msgstr "Klíč webu"
|
7448 |
|
7449 |
+
#: app/features/mec/settings.php:620
|
7450 |
msgid "Secret Key"
|
7451 |
msgstr "Tajný klíč"
|
7452 |
|
7453 |
+
#: app/features/mec/settings.php:632 app/features/mec/settings.php:640
|
7454 |
msgid "Time Format"
|
7455 |
msgstr "Formát času"
|
7456 |
|
7457 |
+
#: app/features/mec/settings.php:635
|
7458 |
msgid "12 hours format with AM/PM"
|
7459 |
msgstr "12 hodinový formát s dop./odp."
|
7460 |
|
7461 |
+
#: app/features/mec/settings.php:636
|
7462 |
msgid "24 hours format"
|
7463 |
msgstr "24 hodinový fotmát"
|
7464 |
|
7465 |
+
#: app/features/mec/settings.php:641
|
7466 |
msgid "This option, affects the selection of Start/End time."
|
7467 |
msgstr "Tato možnost ovlivňuje výběr času zahájení / ukončení."
|
7468 |
|
7469 |
+
#: app/features/mec/settings.php:649
|
7470 |
msgid "Events List Page"
|
7471 |
msgstr "Stránka seznamu událostí"
|
7472 |
|
7473 |
+
#: app/features/mec/settings.php:657 app/features/mec/settings.php:669
|
7474 |
#, php-format
|
7475 |
msgid "Put %s shortcode into the page."
|
7476 |
msgstr "Vložte %s na stránku zkrácené kódy."
|
7477 |
|
7478 |
+
#: app/features/mec/settings.php:661
|
7479 |
msgid "Add/Edit Events Page"
|
7480 |
msgstr "Přidat / Editovat stránku událostí"
|
7481 |
|
7482 |
+
#: app/features/mec/settings.php:673
|
7483 |
#, fuzzy
|
7484 |
#| msgid "On Event Start"
|
7485 |
msgid "New Events Status"
|
7486 |
msgstr "Při spuštění události"
|
7487 |
|
7488 |
+
#: app/features/mec/settings.php:676
|
7489 |
#, fuzzy
|
7490 |
#| msgid "WordPress"
|
7491 |
msgid "Let WordPress decide"
|
7492 |
msgstr "WordPress"
|
7493 |
|
7494 |
+
#: app/features/mec/settings.php:677 app/libraries/main.php:6856
|
7495 |
+
#: app/libraries/main.php:6878
|
7496 |
msgid "Pending"
|
7497 |
msgstr "Nevyřízený"
|
7498 |
|
7499 |
+
#: app/features/mec/settings.php:678
|
7500 |
msgid "Publish"
|
7501 |
msgstr ""
|
7502 |
|
7503 |
+
#: app/features/mec/settings.php:695
|
7504 |
#, fuzzy
|
7505 |
#| msgid ""
|
7506 |
#| "User redirects to this page after booking. Leave it empty if you want to "
|
7512 |
"Uživatel bude přesměrován na tuto stránku po rezervaci. Pokud ji chcete "
|
7513 |
"vypnout, ponechte ji prázdnou."
|
7514 |
|
7515 |
+
#: app/features/mec/settings.php:702 app/features/mec/settings.php:707
|
7516 |
#, fuzzy
|
7517 |
#| msgid "Thank You Page"
|
7518 |
msgid "Thank You Page URL"
|
7519 |
msgstr "Stránka s poděkováním"
|
7520 |
|
7521 |
+
#: app/features/mec/settings.php:708
|
7522 |
msgid "If filled it will use instead of thank you page set above."
|
7523 |
msgstr ""
|
7524 |
|
7525 |
+
#: app/features/mec/settings.php:731 app/features/mec/settings.php:736
|
7526 |
#, fuzzy
|
7527 |
#| msgid "Maximum file size"
|
7528 |
msgid "Maximum File Size"
|
7529 |
msgstr "Maximální velikost souboru"
|
7530 |
|
7531 |
+
#: app/features/mec/settings.php:733
|
7532 |
msgid "in KB"
|
7533 |
msgstr ""
|
7534 |
|
7535 |
+
#: app/features/mec/settings.php:737
|
7536 |
msgid "In Kilo Bytes so 5000 means 5MB (Approximately)"
|
7537 |
msgstr ""
|
7538 |
|
7539 |
+
#: app/features/mec/settings.php:746
|
7540 |
#, fuzzy
|
7541 |
#| msgid "Enable event submission by guest (Not logged-in) users"
|
7542 |
msgid "Enable event submission by guest (Not logged in) users"
|
7543 |
msgstr "Povolit odesílání události hosty (nepřihlášenými uživateli)"
|
7544 |
|
7545 |
+
#: app/features/mec/settings.php:753
|
7546 |
msgid "Enable mandatory email and name for guest user"
|
7547 |
msgstr "Povolit povinný e-mail a jméno pro hostujícího uživatele"
|
7548 |
|
7549 |
+
#: app/features/mec/settings.php:759
|
7550 |
msgid ""
|
7551 |
"Automatically create users after event publish and assign event to the "
|
7552 |
"created user"
|
7553 |
msgstr ""
|
7554 |
|
7555 |
+
#: app/features/mec/settings.php:764
|
7556 |
msgid "Frontend Event Submission Sections"
|
7557 |
msgstr "Sekce pro zasílání událostí z webových stránek (frontend)"
|
7558 |
|
7559 |
+
#: app/features/mec/settings.php:768
|
7560 |
#, fuzzy
|
7561 |
#| msgid "Event Details"
|
7562 |
msgid "Event Data Fields"
|
7563 |
msgstr "Podrobnosti události"
|
7564 |
|
7565 |
+
#: app/features/mec/settings.php:792 app/widgets/single.php:121
|
7566 |
msgid "Event Categories"
|
7567 |
msgstr "Kategorie události"
|
7568 |
|
7569 |
+
#: app/features/mec/settings.php:798
|
7570 |
msgid "Event Labels"
|
7571 |
msgstr "Štítky události"
|
7572 |
|
7573 |
+
#: app/features/mec/settings.php:809
|
7574 |
+
msgid ""
|
7575 |
+
"This feature adds the ability to hide the current event to all MEC "
|
7576 |
+
"Shortcodes."
|
7577 |
+
msgstr ""
|
7578 |
+
|
7579 |
+
#: app/features/mec/settings.php:823
|
7580 |
msgid "Event Tags"
|
7581 |
msgstr "Tagy události"
|
7582 |
|
7583 |
+
#: app/features/mec/settings.php:835 app/widgets/single.php:125
|
7584 |
msgid "Event Organizer"
|
7585 |
msgstr "Organizátor události"
|
7586 |
|
7587 |
+
#: app/features/mec/settings.php:862 app/features/occurrences.php:386
|
7588 |
#, fuzzy
|
7589 |
#| msgid "Total booking limits"
|
7590 |
msgid "Total Booking Limit"
|
7591 |
msgstr "Celkové limity rezervace"
|
7592 |
|
7593 |
+
#: app/features/mec/settings.php:868
|
7594 |
#, fuzzy
|
7595 |
#| msgid "Discount"
|
7596 |
msgid "Discount Per User Roles"
|
7597 |
msgstr "Sleva"
|
7598 |
|
7599 |
+
#: app/features/mec/settings.php:904
|
7600 |
#, fuzzy
|
7601 |
#| msgid "Ticket Variations / Options"
|
7602 |
msgid "Ticket Options"
|
7603 |
msgstr "Varianty vstupenky / možnosti"
|
7604 |
|
7605 |
+
#: app/features/mec/settings.php:916
|
7606 |
msgid "Fees / Taxes Options"
|
7607 |
msgstr "Možnosti Poplatky / Daně"
|
7608 |
|
7609 |
+
#: app/features/mec/settings.php:931 app/features/schema.php:64
|
7610 |
#, fuzzy
|
7611 |
#| msgid "Schema"
|
7612 |
msgid "SEO Schema"
|
7613 |
msgstr "Schéma"
|
7614 |
|
7615 |
+
#: app/features/mec/settings.php:954 app/features/occurrences.php:72
|
7616 |
#: app/features/occurrences.php:102
|
7617 |
#, fuzzy
|
7618 |
#| msgid "Occurrences times"
|
7619 |
msgid "Occurrences"
|
7620 |
msgstr "Časy výskytu"
|
7621 |
|
7622 |
+
#: app/features/mec/settings.php:963 app/widgets/single.php:165
|
7623 |
#, fuzzy
|
7624 |
#| msgid "Edit Event"
|
7625 |
msgid "Virtual Event"
|
7626 |
msgstr "Editace události"
|
7627 |
|
7628 |
+
#: app/features/mec/settings.php:972
|
7629 |
#, fuzzy
|
7630 |
#| msgid "Book Event"
|
7631 |
msgid "Zoom Event"
|
7632 |
msgstr "Rezervovat událost"
|
7633 |
|
7634 |
+
#: app/features/mec/settings.php:985
|
7635 |
#, php-format
|
7636 |
msgid ""
|
7637 |
"Users can put a note for editors while they're submitting the event. Also "
|
7642 |
"oznámení o nové události můžete také vložit %%event_note%%, abyste dostali e-"
|
7643 |
"mail s poznámkami uživatelů."
|
7644 |
|
7645 |
+
#: app/features/mec/settings.php:992 app/features/mec/settings.php:1000
|
7646 |
#, fuzzy
|
7647 |
#| msgid "Visibility"
|
7648 |
msgid "Note visibility"
|
7649 |
msgstr "Viditelnost"
|
7650 |
|
7651 |
+
#: app/features/mec/settings.php:995
|
7652 |
msgid "Always"
|
7653 |
msgstr "Vždy"
|
7654 |
|
7655 |
+
#: app/features/mec/settings.php:996
|
7656 |
msgid "While event is not published"
|
7657 |
msgstr "I když událost není zveřejněna"
|
7658 |
|
7659 |
+
#: app/features/mec/settings.php:1001
|
7660 |
msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
|
7661 |
msgstr ""
|
7662 |
"Poznámka k události se zobrazí ve formuláři pro zasílání z webových stránek "
|
7663 |
"(frontend) a Upravit událost v administraci stránek (backend)."
|
7664 |
|
7665 |
+
#: app/features/mec/settings.php:1009
|
7666 |
#, fuzzy
|
7667 |
#| msgid "Required Field"
|
7668 |
msgid "Required Fields"
|
7669 |
msgstr "Požadovaná pole"
|
7670 |
|
7671 |
+
#: app/features/mec/settings.php:1012
|
7672 |
#, fuzzy
|
7673 |
#| msgid "Description"
|
7674 |
msgid "Event Description"
|
7675 |
msgstr "Popis"
|
7676 |
|
7677 |
+
#: app/features/mec/settings.php:1016 app/libraries/main.php:6603
|
7678 |
+
#: app/libraries/main.php:6652
|
7679 |
msgid "More Info Link"
|
7680 |
msgstr "Odkaz na více informací"
|
7681 |
|
7682 |
+
#: app/features/mec/settings.php:1029 app/libraries/main.php:572
|
7683 |
msgid "User Profile"
|
7684 |
msgstr "Uživatelský profil"
|
7685 |
|
7686 |
+
#: app/features/mec/settings.php:1031
|
7687 |
#, fuzzy, php-format
|
7688 |
#| msgid ""
|
7689 |
#| "Put %s shortcode into your desired page. Then users are able to see "
|
7695 |
"Vložte %s krátký kód na požadovanou stránku. Uživatelé pak mohou vidět "
|
7696 |
"historii svých rezervací."
|
7697 |
|
7698 |
+
#: app/features/mec/settings.php:1036 app/libraries/main.php:573
|
7699 |
#, fuzzy
|
7700 |
#| msgid "Hide Events"
|
7701 |
msgid "User Events"
|
7702 |
msgstr "Skrýt události"
|
7703 |
|
7704 |
+
#: app/features/mec/settings.php:1038
|
7705 |
#, fuzzy, php-format
|
7706 |
#| msgid ""
|
7707 |
#| "Put %s shortcode into your desired page. Then users are able to search "
|
7713 |
"Vložte %s krátký kód na požadovanou stránku. Uživatelé pak mohou vyhledávat "
|
7714 |
"události"
|
7715 |
|
7716 |
+
#: app/features/mec/settings.php:1050 app/libraries/main.php:574
|
7717 |
msgid "Search Bar"
|
7718 |
msgstr "Vyhledávací panel"
|
7719 |
|
7720 |
+
#: app/features/mec/settings.php:1052
|
7721 |
#, php-format
|
7722 |
msgid ""
|
7723 |
"Put %s shortcode into your desired page. Then users are able to search events"
|
7725 |
"Vložte %s krátký kód na požadovanou stránku. Uživatelé pak mohou vyhledávat "
|
7726 |
"události"
|
7727 |
|
7728 |
+
#: app/features/mec/settings.php:1057
|
7729 |
msgid "Ajax Live mode"
|
7730 |
msgstr "Ajax Live mód"
|
7731 |
|
7732 |
+
#: app/features/mec/settings.php:1061
|
7733 |
msgid "Ajax mode"
|
7734 |
msgstr "Ajax mód"
|
7735 |
|
7736 |
+
#: app/features/mec/settings.php:1062
|
7737 |
#, fuzzy
|
7738 |
#| msgid ""
|
7739 |
#| "if you enable this option, search button disappeared and to use this "
|
7745 |
"pokud tuto možnost povolíte, tlačítko pro vyhledávání zmizelo a pro použití "
|
7746 |
"této funkce musí být povoleno pole pro zadávání textu."
|
7747 |
|
7748 |
+
#: app/features/mec/settings.php:1070
|
7749 |
msgid "Modern Type"
|
7750 |
msgstr "Moderní typ"
|
7751 |
|
7752 |
+
#: app/features/mec/settings.php:1074
|
7753 |
msgid "Search bar fields"
|
7754 |
msgstr "Pole vyhledávacího panelu"
|
7755 |
|
7756 |
+
#: app/features/mec/settings.php:1116
|
7757 |
msgid "Text input"
|
7758 |
msgstr "Zadávání textu"
|
7759 |
|
7760 |
+
#: app/features/mec/settings.php:1128
|
7761 |
msgid "Enable Mailchimp Integration"
|
7762 |
msgstr "Povolit integraci Mailchimp"
|
7763 |
|
7764 |
+
#: app/features/mec/settings.php:1133 app/features/mec/settings.php:1138
|
7765 |
+
#: app/features/mec/settings.php:1193 app/features/mec/settings.php:1217
|
7766 |
+
#: app/features/mec/settings.php:1241 app/features/mec/settings.php:1308
|
7767 |
msgid "API Key"
|
7768 |
msgstr "API Key"
|
7769 |
|
7770 |
+
#: app/features/mec/settings.php:1146 app/features/mec/settings.php:1151
|
7771 |
+
#: app/features/mec/settings.php:1199 app/features/mec/settings.php:1314
|
7772 |
+
#: app/features/mec/settings.php:1332 app/features/mec/settings.php:1380
|
7773 |
msgid "List ID"
|
7774 |
msgstr "ID seznamu"
|
7775 |
|
7776 |
+
#: app/features/mec/settings.php:1159 app/features/mec/settings.php:1167
|
7777 |
msgid "Subscription Status"
|
7778 |
msgstr "Stav odběru"
|
7779 |
|
7780 |
+
#: app/features/mec/settings.php:1162
|
7781 |
msgid "Subscribe automatically"
|
7782 |
msgstr "Odebírat automaticky"
|
7783 |
|
7784 |
+
#: app/features/mec/settings.php:1163
|
7785 |
msgid "Subscribe by verification"
|
7786 |
msgstr "Přihlaste se k odběru pomocí ověření"
|
7787 |
|
7788 |
+
#: app/features/mec/settings.php:1168
|
7789 |
#, fuzzy
|
7790 |
#| msgid ""
|
7791 |
#| "If you choose \"Subscribe by verification\" then an email will send to "
|
7797 |
"Pokud zvolíte možnost „Přihlásit se k odběru pomocí ověření“, odešle e-mail "
|
7798 |
"uživateli mailchimp k ověření oběru."
|
7799 |
|
7800 |
+
#: app/features/mec/settings.php:1177
|
7801 |
msgid "Enable Segment Creation by Event Title and Booking Date"
|
7802 |
msgstr ""
|
7803 |
|
7804 |
+
#: app/features/mec/settings.php:1184 app/libraries/main.php:577
|
7805 |
#, fuzzy
|
7806 |
#| msgid "Mailchimp Integration"
|
7807 |
msgid "Campaign Monitor Integration"
|
7808 |
msgstr "Integrace Mailchimp"
|
7809 |
|
7810 |
+
#: app/features/mec/settings.php:1188
|
7811 |
#, fuzzy
|
7812 |
#| msgid "Enable Mailchimp Integration"
|
7813 |
msgid "Enable Campaign Monitor Integration"
|
7814 |
msgstr "Povolit integraci Mailchimp"
|
7815 |
|
7816 |
+
#: app/features/mec/settings.php:1208 app/libraries/main.php:578
|
7817 |
#, fuzzy
|
7818 |
#| msgid "Mailchimp Integration"
|
7819 |
msgid "MailerLite Integration"
|
7820 |
msgstr "Integrace Mailchimp"
|
7821 |
|
7822 |
+
#: app/features/mec/settings.php:1212
|
7823 |
#, fuzzy
|
7824 |
#| msgid "Enable Mailchimp Integration"
|
7825 |
msgid "Enable MailerLite Integration"
|
7826 |
msgstr "Povolit integraci Mailchimp"
|
7827 |
|
7828 |
+
#: app/features/mec/settings.php:1223
|
7829 |
#, fuzzy
|
7830 |
#| msgid "Group URL"
|
7831 |
msgid "Group ID"
|
7832 |
msgstr "Group URL"
|
7833 |
|
7834 |
+
#: app/features/mec/settings.php:1232 app/libraries/main.php:579
|
7835 |
#, fuzzy
|
7836 |
#| msgid "Enable Mailchimp Integration"
|
7837 |
msgid "Constant Contact Integration"
|
7838 |
msgstr "Povolit integraci Mailchimp"
|
7839 |
|
7840 |
+
#: app/features/mec/settings.php:1236
|
7841 |
#, fuzzy
|
7842 |
#| msgid "Enable Mailchimp Integration"
|
7843 |
msgid "Enable constantcontact Integration"
|
7844 |
msgstr "Povolit integraci Mailchimp"
|
7845 |
|
7846 |
+
#: app/features/mec/settings.php:1247
|
7847 |
#, fuzzy
|
7848 |
#| msgid "Facebook Page Access Token"
|
7849 |
msgid "Access Token"
|
7850 |
msgstr "Token pro přístup na stránku Facebook"
|
7851 |
|
7852 |
+
#: app/features/mec/settings.php:1267 app/features/mec/settings.php:1282
|
7853 |
#, fuzzy
|
7854 |
#| msgid "Select icon"
|
7855 |
msgid "Select List"
|
7856 |
msgstr "Vybrat ikonu"
|
7857 |
|
7858 |
+
#: app/features/mec/settings.php:1283
|
7859 |
msgid ""
|
7860 |
"Please fill in the API key and Access Token field and save settings. after "
|
7861 |
"that, please refresh the page and select a list."
|
7862 |
msgstr ""
|
7863 |
|
7864 |
+
#: app/features/mec/settings.php:1293 app/libraries/main.php:580
|
7865 |
#, fuzzy
|
7866 |
#| msgid "Mailchimp Integration"
|
7867 |
msgid "Active Campaign Integration"
|
7868 |
msgstr "Integrace Mailchimp"
|
7869 |
|
7870 |
+
#: app/features/mec/settings.php:1297
|
7871 |
#, fuzzy
|
7872 |
#| msgid "Enable Mailchimp Integration"
|
7873 |
msgid "Enable Active Campaign Integration"
|
7874 |
msgstr "Povolit integraci Mailchimp"
|
7875 |
|
7876 |
+
#: app/features/mec/settings.php:1302
|
7877 |
msgid "API URL"
|
7878 |
msgstr ""
|
7879 |
|
7880 |
+
#: app/features/mec/settings.php:1323 app/libraries/main.php:581
|
7881 |
#, fuzzy
|
7882 |
#| msgid "Mailchimp Integration"
|
7883 |
msgid "AWeber Integration"
|
7884 |
msgstr "Integrace Mailchimp"
|
7885 |
|
7886 |
+
#: app/features/mec/settings.php:1327
|
7887 |
#, fuzzy
|
7888 |
#| msgid "Enable Mailchimp Integration"
|
7889 |
msgid "Enable AWeber Integration"
|
7890 |
msgstr "Povolit integraci Mailchimp"
|
7891 |
|
7892 |
+
#: app/features/mec/settings.php:1335
|
7893 |
#, fuzzy, php-format
|
7894 |
#| msgid "Third Party plugin is not installed and activated!"
|
7895 |
msgid "%s plugin should be installed and connected to your AWeber account."
|
7896 |
msgstr "Plugin třetích stran není nainstalován a aktivován!"
|
7897 |
|
7898 |
+
#: app/features/mec/settings.php:1336
|
7899 |
#, php-format
|
7900 |
msgid "More information about the list ID can be found %s."
|
7901 |
msgstr ""
|
7902 |
|
7903 |
+
#: app/features/mec/settings.php:1343 app/libraries/main.php:582
|
7904 |
#, fuzzy
|
7905 |
#| msgid "Mailchimp Integration"
|
7906 |
msgid "MailPoet Integration"
|
7907 |
msgstr "Integrace Mailchimp"
|
7908 |
|
7909 |
+
#: app/features/mec/settings.php:1347
|
7910 |
#, fuzzy
|
7911 |
#| msgid "Enable Mailchimp Integration"
|
7912 |
msgid "Enable MailPoet Integration"
|
7913 |
msgstr "Povolit integraci Mailchimp"
|
7914 |
|
7915 |
+
#: app/features/mec/settings.php:1353
|
7916 |
#: app/skins/default_full_calendar/tpl.php:78
|
7917 |
#: app/skins/full_calendar/tpl.php:126
|
7918 |
msgid "List"
|
7919 |
msgstr "Seznam"
|
7920 |
|
7921 |
+
#: app/features/mec/settings.php:1364
|
7922 |
#, fuzzy, php-format
|
7923 |
#| msgid "Third Party plugin is not installed and activated!"
|
7924 |
msgid "%s plugin should be installed and activated."
|
7925 |
msgstr "Plugin třetích stran není nainstalován a aktivován!"
|
7926 |
|
7927 |
+
#: app/features/mec/settings.php:1369 app/libraries/main.php:583
|
7928 |
#, fuzzy
|
7929 |
#| msgid "Mailchimp Integration"
|
7930 |
msgid "Sendfox Integration"
|
7931 |
msgstr "Integrace Mailchimp"
|
7932 |
|
7933 |
+
#: app/features/mec/settings.php:1373
|
7934 |
#, fuzzy
|
7935 |
#| msgid "Enable Mailchimp Integration"
|
7936 |
msgid "Enable Sendfox Integration"
|
7937 |
msgstr "Povolit integraci Mailchimp"
|
7938 |
|
7939 |
+
#: app/features/mec/settings.php:1390
|
7940 |
#, fuzzy, php-format
|
7941 |
#| msgid "Third Party plugin is not installed and activated!"
|
7942 |
msgid "%s plugin should be installed and connected to your Sendfox account."
|
7943 |
msgstr "Plugin třetích stran není nainstalován a aktivován!"
|
7944 |
|
7945 |
+
#: app/features/mec/single.php:38 app/libraries/main.php:587
|
7946 |
msgid "Single Event Page"
|
7947 |
msgstr "Stránka jedné události"
|
7948 |
|
8106 |
"Alphabetic type."
|
8107 |
msgstr ""
|
8108 |
|
8109 |
+
#: app/features/mec/single.php:202 app/libraries/main.php:588
|
8110 |
#, fuzzy
|
8111 |
#| msgid "Custom Styles"
|
8112 |
msgid "Custom Fields"
|
8113 |
msgstr "Vlastní styly"
|
8114 |
|
8115 |
+
#: app/features/mec/single.php:241 app/libraries/main.php:3456
|
8116 |
msgid "URL"
|
8117 |
msgstr ""
|
8118 |
|
8152 |
msgstr ""
|
8153 |
"Pomocí této možnosti můžete vyloučit určité dny z dat výskytu událostí."
|
8154 |
|
8155 |
+
#: app/features/mec/single.php:336 app/libraries/main.php:591
|
8156 |
msgid "Additional Organizers"
|
8157 |
msgstr "Další organizátoři"
|
8158 |
|
8168 |
msgid "Enable Description For Other Organizers."
|
8169 |
msgstr ""
|
8170 |
|
8171 |
+
#: app/features/mec/single.php:354 app/libraries/main.php:592
|
8172 |
msgid "Additional Locations"
|
8173 |
msgstr "Další umístění"
|
8174 |
|
8184 |
msgid "Enable Description For Other Locations."
|
8185 |
msgstr ""
|
8186 |
|
8187 |
+
#: app/features/mec/single.php:372 app/libraries/main.php:593
|
8188 |
+
#: app/skins/single.php:180 app/skins/single.php:446
|
8189 |
msgid "Related Events"
|
8190 |
msgstr "Související události"
|
8191 |
|
8199 |
msgid "Select Taxonomies:"
|
8200 |
msgstr "Vyberte taxonomie:"
|
8201 |
|
8202 |
+
#: app/features/mec/single.php:414 app/libraries/main.php:594
|
8203 |
#, fuzzy
|
8204 |
#| msgid "Next/Previous Buttons"
|
8205 |
msgid "Next / Previous Events"
|
8213 |
"Zobrazte související události na základě taxonomie na stránce s jednou "
|
8214 |
"událostí."
|
8215 |
|
8216 |
+
#: app/features/mec/single.php:456 app/libraries/main.php:641
|
8217 |
#, fuzzy
|
8218 |
#| msgid "Next Occurrence"
|
8219 |
msgid "Edit Per Occurrences"
|
8250 |
msgstr "Výchozí písmo"
|
8251 |
|
8252 |
#: app/features/mec/styling.php:54 app/features/mec/support.php:52
|
8253 |
+
#: app/libraries/main.php:839
|
8254 |
msgid "Styling Options"
|
8255 |
msgstr "Možnosti stylování"
|
8256 |
|
8442 |
msgid "MEC Settings"
|
8443 |
msgstr "MEC - Nastavení"
|
8444 |
|
8445 |
+
#: app/features/mec/support-page.php:99 app/libraries/main.php:693
|
8446 |
msgid "Single Event"
|
8447 |
msgstr "Jedna událost"
|
8448 |
|
8802 |
msgid "Create a support ticket"
|
8803 |
msgstr "Vytvořte lístek podpory"
|
8804 |
|
8805 |
+
#: app/features/mec/support.php:59 app/libraries/main.php:846
|
8806 |
msgid "Custom CSS"
|
8807 |
msgstr "Vlastní CSS"
|
8808 |
|
9060 |
msgid "eg. https://webnus.net"
|
9061 |
msgstr "např. https://webnus.net"
|
9062 |
|
9063 |
+
#: app/features/organizers.php:312 app/libraries/main.php:6608
|
9064 |
+
#: app/libraries/main.php:6655 app/skins/single.php:1323
|
9065 |
msgid "Other Organizers"
|
9066 |
msgstr "Další organizátoři"
|
9067 |
|
9255 |
msgid "#"
|
9256 |
msgstr "#"
|
9257 |
|
9258 |
+
#: app/features/profile/profile.php:39 app/libraries/main.php:3795
|
9259 |
msgid "Status"
|
9260 |
msgstr "Stav"
|
9261 |
|
9262 |
+
#: app/features/profile/profile.php:42 app/libraries/main.php:2777
|
9263 |
msgid "Attendees"
|
9264 |
msgstr "Účastníci"
|
9265 |
|
9333 |
msgstr "Vložte email řečníka."
|
9334 |
|
9335 |
#: app/features/speakers.php:135 app/features/speakers.php:208
|
9336 |
+
#: app/skins/single.php:1297 app/skins/single.php:1356
|
9337 |
#: app/skins/single/default.php:250 app/skins/single/default.php:321
|
9338 |
#: app/skins/single/default.php:488 app/skins/single/default.php:559
|
9339 |
#: app/skins/single/m1.php:126 app/skins/single/m1.php:180
|
9408 |
msgid "Please %s/%s in order to see your own events."
|
9409 |
msgstr "Prosím %s/%s za účelem odeslání nových událostí."
|
9410 |
|
9411 |
+
#: app/features/wc.php:103 app/libraries/notifications.php:1343
|
9412 |
+
#: app/libraries/notifications.php:1358 app/libraries/notifications.php:1369
|
9413 |
+
#: app/libraries/notifications.php:1646 app/libraries/notifications.php:1647
|
9414 |
#, php-format
|
9415 |
msgid "%s to %s"
|
9416 |
msgstr ""
|
9434 |
msgid "Discount"
|
9435 |
msgstr "Sleva"
|
9436 |
|
9437 |
+
#: app/libraries/book.php:897 app/modules/booking/default.php:435
|
9438 |
+
#: app/modules/booking/default.php:540
|
9439 |
msgid "Download Invoice"
|
9440 |
msgstr "Stáhnout fakturu"
|
9441 |
|
9442 |
#: app/libraries/envato.php:196 app/libraries/envato.php:274
|
9443 |
+
#: app/libraries/factory.php:1172
|
9444 |
msgid "This update includes only bug fixes."
|
9445 |
msgstr ""
|
9446 |
|
9463 |
msgid "Upgrade"
|
9464 |
msgstr "Upgrade"
|
9465 |
|
9466 |
+
#: app/libraries/factory.php:375
|
9467 |
msgid "day"
|
9468 |
msgstr "den"
|
9469 |
|
9470 |
+
#: app/libraries/factory.php:376 app/modules/countdown/details.php:142
|
9471 |
#: app/skins/available_spot/tpl.php:138 app/skins/countdown/tpl.php:120
|
9472 |
#: app/skins/countdown/tpl.php:166 app/skins/countdown/tpl.php:217
|
9473 |
msgid "days"
|
9474 |
msgstr "dny"
|
9475 |
|
9476 |
+
#: app/libraries/factory.php:377
|
9477 |
msgid "hour"
|
9478 |
msgstr "hodina"
|
9479 |
|
9480 |
+
#: app/libraries/factory.php:378 app/modules/countdown/details.php:149
|
9481 |
#: app/skins/available_spot/tpl.php:142 app/skins/countdown/tpl.php:126
|
9482 |
#: app/skins/countdown/tpl.php:172 app/skins/countdown/tpl.php:223
|
9483 |
msgid "hours"
|
9484 |
msgstr "hodiny"
|
9485 |
|
9486 |
+
#: app/libraries/factory.php:379
|
9487 |
msgid "minute"
|
9488 |
msgstr "minuta"
|
9489 |
|
9490 |
+
#: app/libraries/factory.php:380 app/modules/countdown/details.php:156
|
9491 |
#: app/skins/available_spot/tpl.php:146 app/skins/countdown/tpl.php:132
|
9492 |
#: app/skins/countdown/tpl.php:178 app/skins/countdown/tpl.php:229
|
9493 |
msgid "minutes"
|
9494 |
msgstr "minuty"
|
9495 |
|
9496 |
+
#: app/libraries/factory.php:381
|
9497 |
msgid "second"
|
9498 |
msgstr "vteřina"
|
9499 |
|
9500 |
+
#: app/libraries/factory.php:382 app/modules/countdown/details.php:163
|
9501 |
#: app/skins/available_spot/tpl.php:150 app/skins/countdown/tpl.php:138
|
9502 |
#: app/skins/countdown/tpl.php:184 app/skins/countdown/tpl.php:235
|
9503 |
msgid "seconds"
|
9504 |
msgstr "vteřiny"
|
9505 |
|
9506 |
+
#: app/libraries/factory.php:428
|
9507 |
msgid "MEC Single Sidebar"
|
9508 |
msgstr "MEC Postranní panel"
|
9509 |
|
9510 |
+
#: app/libraries/factory.php:429
|
9511 |
msgid "Custom sidebar for single and modal page of MEC."
|
9512 |
msgstr "Vlastní postranní panel pro jednu a modální stránku MEC."
|
9513 |
|
9514 |
+
#: app/libraries/factory.php:1171
|
9515 |
msgid "Notice:"
|
9516 |
msgstr ""
|
9517 |
|
9554 |
msgid "New Day"
|
9555 |
msgstr "Nový den"
|
9556 |
|
9557 |
+
#: app/libraries/main.php:366 app/libraries/main.php:2136
|
9558 |
+
#: app/libraries/main.php:2161
|
9559 |
msgid "Agenda View"
|
9560 |
msgstr "Zobrazení agendy"
|
9561 |
|
9562 |
+
#: app/libraries/main.php:367 app/libraries/main.php:2127
|
9563 |
+
#: app/libraries/main.php:2152
|
9564 |
msgid "Full Calendar"
|
9565 |
msgstr "Plný kalendář"
|
9566 |
|
9567 |
+
#: app/libraries/main.php:369 app/libraries/main.php:2129
|
9568 |
+
#: app/libraries/main.php:2154
|
9569 |
msgid "Calendar/Monthly View"
|
9570 |
msgstr "Kalendář / zobrazení měsíce"
|
9571 |
|
9572 |
+
#: app/libraries/main.php:372 app/libraries/main.php:2132
|
9573 |
+
#: app/libraries/main.php:2157
|
9574 |
msgid "Timetable View"
|
9575 |
msgstr "Zobrazení rozvrhu"
|
9576 |
|
9577 |
+
#: app/libraries/main.php:373 app/libraries/main.php:2133
|
9578 |
+
#: app/libraries/main.php:2158
|
9579 |
msgid "Masonry View"
|
9580 |
msgstr "Zobrazení zdi"
|
9581 |
|
9582 |
+
#: app/libraries/main.php:374 app/libraries/main.php:2137
|
9583 |
+
#: app/libraries/main.php:2162
|
9584 |
msgid "Map View"
|
9585 |
msgstr "Zobrazení mapy"
|
9586 |
|
9611 |
msgid "Timeline View"
|
9612 |
msgstr "Zobrazení rozvrhu"
|
9613 |
|
9614 |
+
#: app/libraries/main.php:419 app/libraries/main.php:6582
|
9615 |
+
#: app/libraries/main.php:6636
|
9616 |
msgid "SU"
|
9617 |
msgstr "NE"
|
9618 |
|
9619 |
+
#: app/libraries/main.php:420 app/libraries/main.php:6583
|
9620 |
+
#: app/libraries/main.php:6637
|
9621 |
msgid "MO"
|
9622 |
msgstr "PO"
|
9623 |
|
9624 |
+
#: app/libraries/main.php:421 app/libraries/main.php:6584
|
9625 |
+
#: app/libraries/main.php:6638
|
9626 |
msgid "TU"
|
9627 |
msgstr "ÚT"
|
9628 |
|
9629 |
+
#: app/libraries/main.php:422 app/libraries/main.php:6585
|
9630 |
+
#: app/libraries/main.php:6639
|
9631 |
msgid "WE"
|
9632 |
msgstr "ST"
|
9633 |
|
9634 |
+
#: app/libraries/main.php:423 app/libraries/main.php:6586
|
9635 |
+
#: app/libraries/main.php:6640
|
9636 |
msgid "TH"
|
9637 |
msgstr "ČT"
|
9638 |
|
9639 |
+
#: app/libraries/main.php:424 app/libraries/main.php:6587
|
9640 |
+
#: app/libraries/main.php:6641
|
9641 |
msgid "FR"
|
9642 |
msgstr "PÁ"
|
9643 |
|
9644 |
+
#: app/libraries/main.php:425 app/libraries/main.php:6588
|
9645 |
+
#: app/libraries/main.php:6642
|
9646 |
msgid "SA"
|
9647 |
msgstr "SO"
|
9648 |
|
9649 |
+
#: app/libraries/main.php:604
|
9650 |
msgid "Upload Field"
|
9651 |
msgstr "Nahrát pole"
|
9652 |
|
9653 |
+
#: app/libraries/main.php:759
|
9654 |
msgid "Modules"
|
9655 |
msgstr "Moduly"
|
9656 |
|
9657 |
+
#: app/libraries/main.php:932
|
9658 |
msgid "New Addons For MEC! Now Customize MEC in Elementor"
|
9659 |
msgstr "Nové doplňky pro MEC! Nyní přizpůsobte MEC v Elementoru"
|
9660 |
|
9661 |
+
#: app/libraries/main.php:939
|
9662 |
msgid ""
|
9663 |
"The time has come at last, and the new practical add-ons for MEC have been "
|
9664 |
"released. This is a revolution in the world of Event Calendars. We have "
|
9669 |
"revoluce ve světě kalendářů událostí. Poskytli jsme vám širokou škálu funkcí "
|
9670 |
"pouze tím, že máme 4 doplňky, viz níže:"
|
9671 |
|
9672 |
+
#: app/libraries/main.php:941
|
9673 |
msgid ""
|
9674 |
"<strong>WooCommerce Integration:</strong> You can now purchase ticket (as "
|
9675 |
"products) and Woo products at the same time."
|
9677 |
"<strong>Integrace WooCommerce:</strong> Nyní si můžete zakoupit lístek (jako "
|
9678 |
"produkty) a produkty Woo současně."
|
9679 |
|
9680 |
+
#: app/libraries/main.php:942
|
9681 |
msgid ""
|
9682 |
"<strong>Event API:</strong> display your events (shortcodes/single event) on "
|
9683 |
"other websites without MEC. Use JSON output features to make your Apps "
|
9687 |
"událost) na jiných webech bez MEC. Použijte výstupní funkce JSON, aby vaše "
|
9688 |
"aplikace byly kompatibilní s MEC."
|
9689 |
|
9690 |
+
#: app/libraries/main.php:943
|
9691 |
msgid ""
|
9692 |
"<strong>Multisite Event Sync:</strong> Sync events between your subsites and "
|
9693 |
"main websites. Changes in the main one will be inherited by the subsites. "
|
9694 |
"you can set these up in the admin panel."
|
9695 |
msgstr ""
|
9696 |
|
9697 |
+
#: app/libraries/main.php:944
|
9698 |
msgid ""
|
9699 |
"<strong>User Dashboard:</strong> Create exclusive pages for users. These "
|
9700 |
"pages can contain ticket purchase information, information about registered "
|
9701 |
"events. Users can now log in to purchase tickets."
|
9702 |
msgstr ""
|
9703 |
|
9704 |
+
#: app/libraries/main.php:946
|
9705 |
msgid "find out more"
|
9706 |
msgstr ""
|
9707 |
|
9708 |
+
#: app/libraries/main.php:1853
|
9709 |
msgid "Events at this location"
|
9710 |
msgstr "Události na tomto místě"
|
9711 |
|
9712 |
+
#: app/libraries/main.php:1853
|
9713 |
msgid "Event at this location"
|
9714 |
msgstr "Událost na tomto místě"
|
9715 |
|
9716 |
+
#: app/libraries/main.php:1905
|
9717 |
msgid "Facebook"
|
9718 |
msgstr "Facebook"
|
9719 |
|
9720 |
+
#: app/libraries/main.php:1906
|
9721 |
msgid "Twitter"
|
9722 |
msgstr "Twitter"
|
9723 |
|
9724 |
+
#: app/libraries/main.php:1907 app/libraries/main.php:1964
|
9725 |
msgid "Linkedin"
|
9726 |
msgstr "Linkedin"
|
9727 |
|
9728 |
+
#: app/libraries/main.php:1908 app/libraries/main.php:2000
|
9729 |
msgid "VK"
|
9730 |
msgstr "VK"
|
9731 |
|
9732 |
+
#: app/libraries/main.php:1909
|
9733 |
msgid "Tumblr"
|
9734 |
msgstr ""
|
9735 |
|
9736 |
+
#: app/libraries/main.php:1910
|
9737 |
msgid "Pinterest"
|
9738 |
msgstr ""
|
9739 |
|
9740 |
+
#: app/libraries/main.php:1911
|
9741 |
msgid "Flipboard"
|
9742 |
msgstr ""
|
9743 |
|
9744 |
+
#: app/libraries/main.php:1912
|
9745 |
#, fuzzy
|
9746 |
#| msgid "Tickets"
|
9747 |
msgid "GetPocket"
|
9748 |
msgstr "Vstupenky"
|
9749 |
|
9750 |
+
#: app/libraries/main.php:1913
|
9751 |
msgid "Reddit"
|
9752 |
msgstr ""
|
9753 |
|
9754 |
+
#: app/libraries/main.php:1914
|
9755 |
msgid "WhatsApp"
|
9756 |
msgstr ""
|
9757 |
|
9758 |
+
#: app/libraries/main.php:1915
|
9759 |
msgid "Telegram"
|
9760 |
msgstr ""
|
9761 |
|
9762 |
+
#: app/libraries/main.php:1934
|
9763 |
msgid "Share on Facebook"
|
9764 |
msgstr "Sdílet na Facebooku"
|
9765 |
|
9766 |
+
#: app/libraries/main.php:1949
|
9767 |
msgid "Tweet"
|
9768 |
msgstr "Tweet"
|
9769 |
|
9770 |
+
#: app/libraries/main.php:2015
|
9771 |
#, fuzzy
|
9772 |
#| msgid "Share on Facebook"
|
9773 |
msgid "Share on Tumblr"
|
9774 |
msgstr "Sdílet na Facebooku"
|
9775 |
|
9776 |
+
#: app/libraries/main.php:2031
|
9777 |
msgid "Share on Pinterest"
|
9778 |
msgstr ""
|
9779 |
|
9780 |
+
#: app/libraries/main.php:2047
|
9781 |
#, fuzzy
|
9782 |
#| msgid "Share on Facebook"
|
9783 |
msgid "Share on Flipboard"
|
9784 |
msgstr "Sdílet na Facebooku"
|
9785 |
|
9786 |
+
#: app/libraries/main.php:2065
|
9787 |
#, fuzzy
|
9788 |
#| msgid "Share on Facebook"
|
9789 |
msgid "Share on GetPocket"
|
9790 |
msgstr "Sdílet na Facebooku"
|
9791 |
|
9792 |
+
#: app/libraries/main.php:2081
|
9793 |
#, fuzzy
|
9794 |
#| msgid "Share on Facebook"
|
9795 |
msgid "Share on Reddit"
|
9796 |
msgstr "Sdílet na Facebooku"
|
9797 |
|
9798 |
+
#: app/libraries/main.php:2097
|
9799 |
msgid "Share on Telegram"
|
9800 |
msgstr ""
|
9801 |
|
9802 |
+
#: app/libraries/main.php:2115
|
9803 |
msgid "Share on WhatsApp"
|
9804 |
msgstr ""
|
9805 |
|
9806 |
+
#: app/libraries/main.php:2138 app/libraries/main.php:2163
|
9807 |
msgid "Custom Shortcode"
|
9808 |
msgstr "Uživatelské zkrácené kódy"
|
9809 |
|
9810 |
+
#: app/libraries/main.php:2512 app/libraries/main.php:2523
|
9811 |
#, fuzzy
|
9812 |
#| msgid "The events are imported successfully!"
|
9813 |
msgid "Your booking has been verified successfully!"
|
9814 |
msgstr "Události byly úspěšně importovány!"
|
9815 |
|
9816 |
+
#: app/libraries/main.php:2517
|
9817 |
msgid "Your booking already verified!"
|
9818 |
msgstr "Vaše rezervace již byla ověřena!"
|
9819 |
|
9820 |
+
#: app/libraries/main.php:2524
|
9821 |
msgid "Your booking cannot verify!"
|
9822 |
msgstr "Vaši rezervaci nelze ověřit!"
|
9823 |
|
9824 |
+
#: app/libraries/main.php:2546 app/libraries/main.php:2603
|
9825 |
msgid "Your booking successfully canceled."
|
9826 |
msgstr "Vaše rezervace byla úspěšně zrušena."
|
9827 |
|
9828 |
+
#: app/libraries/main.php:2551
|
9829 |
msgid "Your booking already canceled!"
|
9830 |
msgstr "Vaše rezervace již byla zrušena!"
|
9831 |
|
9832 |
+
#: app/libraries/main.php:2563
|
9833 |
#, fuzzy
|
9834 |
#| msgid "The event is finished."
|
9835 |
msgid "The event is already finished!"
|
9836 |
msgstr "Událost je ukončena."
|
9837 |
|
9838 |
+
#: app/libraries/main.php:2584
|
9839 |
msgid "The cancelation window is not started yet."
|
9840 |
msgstr ""
|
9841 |
|
9842 |
+
#: app/libraries/main.php:2596
|
9843 |
msgid "The cancelation window is passed."
|
9844 |
msgstr ""
|
9845 |
|
9846 |
+
#: app/libraries/main.php:2604
|
9847 |
msgid "Your booking cannot be canceled."
|
9848 |
msgstr "Vaši rezervaci nelze zrušit."
|
9849 |
|
9850 |
+
#: app/libraries/main.php:2608
|
9851 |
msgid "You canceled the payment successfully."
|
9852 |
msgstr "Platbu jste úspěšně zrušili."
|
9853 |
|
9854 |
+
#: app/libraries/main.php:2612
|
9855 |
msgid "You returned from payment gateway successfully."
|
9856 |
msgstr "Úspěšně jste se vrátili z platební brány."
|
9857 |
|
9858 |
+
#: app/libraries/main.php:2631
|
9859 |
msgid "Cannot find the invoice!"
|
9860 |
msgstr "Fakturu nelze najít!"
|
9861 |
|
9862 |
+
#: app/libraries/main.php:2631
|
9863 |
msgid "Invoice is invalid."
|
9864 |
msgstr "Faktura je neplatná."
|
9865 |
|
9866 |
+
#: app/libraries/main.php:2651
|
9867 |
#, fuzzy
|
9868 |
#| msgid ""
|
9869 |
#| "Your booking still is not confirmed. You able download it after "
|
9873 |
msgstr ""
|
9874 |
"Vaše rezervace stále není potvrzena. Můžete si ji stáhnout po potvrzení!"
|
9875 |
|
9876 |
+
#: app/libraries/main.php:2651
|
9877 |
msgid "Booking Not Confirmed."
|
9878 |
msgstr "Rezervace nebyla potvrzena."
|
9879 |
|
9880 |
+
#: app/libraries/main.php:2657
|
9881 |
msgid "Cannot find the booking!"
|
9882 |
msgstr "Nemohu najít rezervaci!"
|
9883 |
|
9884 |
+
#: app/libraries/main.php:2657
|
9885 |
msgid "Booking is invalid."
|
9886 |
msgstr "Rezervace není platná."
|
9887 |
|
9888 |
+
#: app/libraries/main.php:2665
|
9889 |
#, fuzzy
|
9890 |
#| msgid "Sorry! You don't have access to modify this event."
|
9891 |
msgid "You don't have access to view this invoice!"
|
9892 |
msgstr "Promiňte! Nemáte přístup k úpravě této události."
|
9893 |
|
9894 |
+
#: app/libraries/main.php:2665
|
9895 |
#, fuzzy
|
9896 |
#| msgid "Invoice is invalid."
|
9897 |
msgid "Key is invalid."
|
9898 |
msgstr "Faktura je neplatná."
|
9899 |
|
9900 |
+
#: app/libraries/main.php:2698
|
9901 |
#, php-format
|
9902 |
msgid "%s Invoice"
|
9903 |
msgstr "%s Faktura"
|
9904 |
|
9905 |
+
#: app/libraries/main.php:2734
|
9906 |
#, fuzzy
|
9907 |
#| msgid "Date and Time"
|
9908 |
msgid "Date & Time"
|
9909 |
msgstr "Datum a čas"
|
9910 |
|
9911 |
+
#: app/libraries/main.php:2751
|
9912 |
#, fuzzy
|
9913 |
#| msgid "Booking Price"
|
9914 |
msgid "Booking Fields"
|
9915 |
msgstr "Cena rezervace"
|
9916 |
|
9917 |
+
#: app/libraries/main.php:2823
|
9918 |
msgid "Billing"
|
9919 |
msgstr "Fakturace"
|
9920 |
|
9921 |
+
#: app/libraries/main.php:2835
|
9922 |
#, fuzzy
|
9923 |
#| msgid "Coupons"
|
9924 |
msgid "Coupon Code"
|
9925 |
msgstr "Kupóny"
|
9926 |
|
9927 |
+
#: app/libraries/main.php:2840
|
9928 |
msgid "Total"
|
9929 |
msgstr "Celkem"
|
9930 |
|
9931 |
+
#: app/libraries/main.php:2847
|
9932 |
#, fuzzy
|
9933 |
#| msgid "Payment Gateways"
|
9934 |
msgid "Payment"
|
9935 |
msgstr "Platební brány"
|
9936 |
|
9937 |
+
#: app/libraries/main.php:2864
|
9938 |
#, fuzzy
|
9939 |
#| msgid "Payment Gateways"
|
9940 |
msgid "Payment Time"
|
9941 |
msgstr "Platební brány"
|
9942 |
|
9943 |
+
#: app/libraries/main.php:3006
|
9944 |
msgid "Request is not valid."
|
9945 |
msgstr "Požadavek není platný."
|
9946 |
|
9947 |
+
#: app/libraries/main.php:3006
|
9948 |
msgid "iCal export stopped!"
|
9949 |
msgstr "iCal export byl zastaven!"
|
9950 |
|
9951 |
+
#: app/libraries/main.php:3337 app/libraries/main.php:3367
|
9952 |
+
#: app/libraries/main.php:3396 app/libraries/main.php:3425
|
9953 |
+
#: app/libraries/main.php:3455 app/libraries/main.php:3485
|
9954 |
+
#: app/libraries/main.php:3514 app/libraries/main.php:3544
|
9955 |
+
#: app/libraries/main.php:3574 app/libraries/main.php:3604
|
9956 |
+
#: app/libraries/main.php:3627 app/libraries/main.php:3674
|
9957 |
+
#: app/libraries/main.php:3721 app/libraries/main.php:3771
|
9958 |
+
#: app/libraries/main.php:3820
|
9959 |
msgid "Sort"
|
9960 |
msgstr "Seřadit"
|
9961 |
|
9962 |
+
#: app/libraries/main.php:3344 app/libraries/main.php:3374
|
9963 |
+
#: app/libraries/main.php:3403 app/libraries/main.php:3432
|
9964 |
+
#: app/libraries/main.php:3462 app/libraries/main.php:3492
|
9965 |
+
#: app/libraries/main.php:3521 app/libraries/main.php:3551
|
9966 |
+
#: app/libraries/main.php:3581 app/libraries/main.php:3634
|
9967 |
+
#: app/libraries/main.php:3681 app/libraries/main.php:3728
|
9968 |
+
#: app/libraries/main.php:3778
|
9969 |
msgid "Required Field"
|
9970 |
msgstr "Požadovaná pole"
|
9971 |
|
9972 |
+
#: app/libraries/main.php:3350 app/libraries/main.php:3380
|
9973 |
+
#: app/libraries/main.php:3409 app/libraries/main.php:3438
|
9974 |
+
#: app/libraries/main.php:3468 app/libraries/main.php:3498
|
9975 |
+
#: app/libraries/main.php:3527 app/libraries/main.php:3557
|
9976 |
+
#: app/libraries/main.php:3587 app/libraries/main.php:3640
|
9977 |
+
#: app/libraries/main.php:3687 app/libraries/main.php:3734
|
9978 |
+
#: app/libraries/main.php:3784
|
9979 |
msgid "Insert a label for this field"
|
9980 |
msgstr "Vložte štítek pro toto pole"
|
9981 |
|
9982 |
+
#: app/libraries/main.php:3610
|
9983 |
msgid "HTML and shortcode are allowed."
|
9984 |
msgstr "HTML a zkrácené kódy jsou povoleny."
|
9985 |
|
9986 |
+
#: app/libraries/main.php:3654 app/libraries/main.php:3701
|
9987 |
+
#: app/libraries/main.php:3748
|
9988 |
msgid "Option"
|
9989 |
msgstr "Možnost"
|
9990 |
|
9991 |
+
#: app/libraries/main.php:3784
|
9992 |
#, php-format
|
9993 |
msgid "Instead of %s, the page title with a link will be show."
|
9994 |
msgstr "Místo%s se zobrazí název stránky s odkazem."
|
9995 |
|
9996 |
+
#: app/libraries/main.php:3786
|
9997 |
msgid "Agreement Page"
|
9998 |
msgstr "Stránka smlouvy"
|
9999 |
|
10000 |
+
#: app/libraries/main.php:3797
|
10001 |
msgid "Checked by default"
|
10002 |
msgstr "Ve výchozím nastavení zaškrtnuto"
|
10003 |
|
10004 |
+
#: app/libraries/main.php:3798
|
10005 |
msgid "Unchecked by default"
|
10006 |
msgstr "Ve výchozím nastavení není zaškrtnuto"
|
10007 |
|
10008 |
+
#: app/libraries/main.php:3822
|
10009 |
msgid "Insert a label for this option"
|
10010 |
msgstr "Vložte štítek pro tuto možnost"
|
10011 |
|
10012 |
+
#: app/libraries/main.php:3835
|
10013 |
msgid "Free"
|
10014 |
msgstr "Zdarma"
|
10015 |
|
10016 |
+
#: app/libraries/main.php:4510 app/libraries/main.php:6917
|
10017 |
msgid "M.E. Calender"
|
10018 |
msgstr "M.E. Kalendář"
|
10019 |
|
10020 |
+
#: app/libraries/main.php:4666
|
10021 |
#, php-format
|
10022 |
msgid "Copy of %s"
|
10023 |
msgstr "Kopie %s"
|
10024 |
|
10025 |
+
#: app/libraries/main.php:5556
|
10026 |
msgid "Booked an event."
|
10027 |
msgstr "Událost byla rezervována."
|
10028 |
|
10029 |
+
#: app/libraries/main.php:5597
|
10030 |
#, php-format
|
10031 |
msgid "%s booked %s event."
|
10032 |
msgstr "%s zarezervoval %s událost."
|
10033 |
|
10034 |
+
#: app/libraries/main.php:6565 app/libraries/main.php:6619
|
10035 |
msgid "Taxonomies"
|
10036 |
msgstr "Taxonomie"
|
10037 |
|
10038 |
# Mrknout na kontext
|
10039 |
+
#: app/libraries/main.php:6567 app/libraries/main.php:6621
|
10040 |
msgid "Category Plural Label"
|
10041 |
msgstr "Štítek množné kategorie"
|
10042 |
|
10043 |
# Mrknout na kontext
|
10044 |
+
#: app/libraries/main.php:6568 app/libraries/main.php:6622
|
10045 |
msgid "Category Singular Label"
|
10046 |
msgstr "Štítek jednotné kategorie"
|
10047 |
|
10048 |
+
#: app/libraries/main.php:6569 app/libraries/main.php:6623
|
10049 |
msgid "Label Plural Label"
|
10050 |
msgstr "Štítek množného štítku"
|
10051 |
|
10052 |
+
#: app/libraries/main.php:6570 app/libraries/main.php:6624
|
10053 |
msgid "Label Singular Label"
|
10054 |
msgstr "Štítek jednotného štítku"
|
10055 |
|
10056 |
+
#: app/libraries/main.php:6570 app/libraries/main.php:6624
|
10057 |
msgid "label"
|
10058 |
msgstr "štítek"
|
10059 |
|
10060 |
+
#: app/libraries/main.php:6571 app/libraries/main.php:6625
|
10061 |
msgid "Location Plural Label"
|
10062 |
msgstr "Štítek množného umístění"
|
10063 |
|
10064 |
+
#: app/libraries/main.php:6572 app/libraries/main.php:6626
|
10065 |
msgid "Location Singular Label"
|
10066 |
msgstr "Štítek jednotného umístění"
|
10067 |
|
10068 |
+
#: app/libraries/main.php:6573 app/libraries/main.php:6627
|
10069 |
msgid "Organizer Plural Label"
|
10070 |
msgstr "Štítek množného organizátora"
|
10071 |
|
10072 |
+
#: app/libraries/main.php:6574 app/libraries/main.php:6628
|
10073 |
msgid "Organizer Singular Label"
|
10074 |
msgstr "Štítek jednotného organizátora"
|
10075 |
|
10076 |
+
#: app/libraries/main.php:6575 app/libraries/main.php:6629
|
10077 |
msgid "Speaker Plural Label"
|
10078 |
msgstr "Štítek množného řečníka"
|
10079 |
|
10080 |
+
#: app/libraries/main.php:6576 app/libraries/main.php:6630
|
10081 |
msgid "Speaker Singular Label"
|
10082 |
msgstr "Štítek jednotného řečníka"
|
10083 |
|
10084 |
+
#: app/libraries/main.php:6582 app/libraries/main.php:6636
|
10085 |
msgid "Sunday abbreviation"
|
10086 |
msgstr "Neděle zkratka"
|
10087 |
|
10088 |
+
#: app/libraries/main.php:6583 app/libraries/main.php:6637
|
10089 |
msgid "Monday abbreviation"
|
10090 |
msgstr "Pondělí zkratka"
|
10091 |
|
10092 |
+
#: app/libraries/main.php:6584 app/libraries/main.php:6638
|
10093 |
msgid "Tuesday abbreviation"
|
10094 |
msgstr "Úterý zkratka"
|
10095 |
|
10096 |
+
#: app/libraries/main.php:6585 app/libraries/main.php:6639
|
10097 |
msgid "Wednesday abbreviation"
|
10098 |
msgstr "Středa zkratka"
|
10099 |
|
10100 |
+
#: app/libraries/main.php:6586 app/libraries/main.php:6640
|
10101 |
msgid "Thursday abbreviation"
|
10102 |
msgstr "Čtvrtek zkratka"
|
10103 |
|
10104 |
+
#: app/libraries/main.php:6587 app/libraries/main.php:6641
|
10105 |
msgid "Friday abbreviation"
|
10106 |
msgstr "Pátek zkratka"
|
10107 |
|
10108 |
+
#: app/libraries/main.php:6588 app/libraries/main.php:6642
|
10109 |
msgid "Saturday abbreviation"
|
10110 |
msgstr "Sobota zkratka"
|
10111 |
|
10112 |
+
#: app/libraries/main.php:6592 app/libraries/main.php:6646
|
10113 |
msgid "Others"
|
10114 |
msgstr "Další"
|
10115 |
|
10116 |
+
#: app/libraries/main.php:6594
|
10117 |
msgid "Booking Success Message"
|
10118 |
msgstr "Zpráva o úspěchu rezervace"
|
10119 |
|
10120 |
+
#: app/libraries/main.php:6594
|
10121 |
#, fuzzy
|
10122 |
#| msgid ""
|
10123 |
#| "Thanks for your booking. Your tickets booked, booking verification might "
|
10124 |
#| "be needed, please check your email."
|
10125 |
msgid ""
|
10126 |
+
"Thank you for booking. Your tickets are booked, booking verification might "
|
10127 |
"be needed, please check your email."
|
10128 |
msgstr ""
|
10129 |
"Děkujeme za vaši rezervaci. Vaše vstupenky jsou rezervovány, může být nutné "
|
10130 |
"ověřit rezervaci. Zkontrolujte prosím svůj e-mail."
|
10131 |
|
10132 |
+
#: app/libraries/main.php:6595
|
10133 |
#, fuzzy
|
10134 |
#| msgid "Booking Success Message"
|
10135 |
msgid "Booking Restriction Message 1"
|
10136 |
msgstr "Zpráva o úspěchu rezervace"
|
10137 |
|
10138 |
+
#: app/libraries/main.php:6595
|
10139 |
#, php-format
|
10140 |
msgid ""
|
10141 |
"You selected %s tickets to book but maximum number of tikets per user is %s "
|
10142 |
"tickets."
|
10143 |
msgstr ""
|
10144 |
|
10145 |
+
#: app/libraries/main.php:6596
|
10146 |
#, fuzzy
|
10147 |
#| msgid "Booking Success Message"
|
10148 |
msgid "Booking Restriction Message 2"
|
10149 |
msgstr "Zpráva o úspěchu rezervace"
|
10150 |
|
10151 |
+
#: app/libraries/main.php:6596
|
10152 |
#, php-format
|
10153 |
msgid ""
|
10154 |
"You booked %s tickets till now but maximum number of tickets per user is %s "
|
10155 |
"tickets."
|
10156 |
msgstr ""
|
10157 |
|
10158 |
+
#: app/libraries/main.php:6597
|
10159 |
#, fuzzy
|
10160 |
#| msgid "Booking Success Message"
|
10161 |
msgid "Booking IP Restriction Message"
|
10162 |
msgstr "Zpráva o úspěchu rezervace"
|
10163 |
|
10164 |
+
#: app/libraries/main.php:6597
|
10165 |
#, php-format
|
10166 |
msgid "Maximum allowed number of tickets that you can book is %s."
|
10167 |
msgstr ""
|
10168 |
|
10169 |
+
#: app/libraries/main.php:6598
|
10170 |
#, fuzzy
|
10171 |
#| msgid "Booking Options"
|
10172 |
msgid "Booking Button"
|
10173 |
msgstr "Možnosti rezervace"
|
10174 |
|
10175 |
+
#: app/libraries/main.php:6598
|
10176 |
#, fuzzy
|
10177 |
#| msgid "Booking Form"
|
10178 |
msgid "Book Now"
|
10179 |
msgstr "Rezervační formulář"
|
10180 |
|
10181 |
+
#: app/libraries/main.php:6599 app/libraries/main.php:6648
|
10182 |
#: app/widgets/single.php:133
|
10183 |
msgid "Register Button"
|
10184 |
msgstr "Registrační tlačítko"
|
10185 |
|
10186 |
+
#: app/libraries/main.php:6599 app/libraries/main.php:6648
|
10187 |
#: app/skins/available_spot/tpl.php:199 app/skins/carousel/render.php:101
|
10188 |
#: app/skins/carousel/render.php:140 app/skins/grid/render.php:93
|
10189 |
#: app/skins/grid/render.php:152 app/skins/grid/render.php:213
|
10190 |
+
#: app/skins/grid/render.php:236 app/skins/list/render.php:85
|
10191 |
+
#: app/skins/list/render.php:211 app/skins/masonry/render.php:142
|
10192 |
+
#: app/skins/single.php:506 app/skins/single.php:1236 app/skins/single.php:1239
|
10193 |
#: app/skins/single/default.php:340 app/skins/single/default.php:342
|
10194 |
#: app/skins/single/default.php:578 app/skins/single/default.php:580
|
10195 |
#: app/skins/single/m1.php:143 app/skins/single/m1.php:145
|
10201 |
msgid "REGISTER"
|
10202 |
msgstr "REGISTROVAT"
|
10203 |
|
10204 |
+
#: app/libraries/main.php:6600 app/libraries/main.php:6649
|
10205 |
msgid "View Detail Button"
|
10206 |
msgstr "Tlačítko Zobrazit detail"
|
10207 |
|
10208 |
+
#: app/libraries/main.php:6600 app/libraries/main.php:6649
|
10209 |
#: app/skins/carousel/render.php:101 app/skins/carousel/render.php:140
|
10210 |
#: app/skins/grid/render.php:93 app/skins/grid/render.php:152
|
10211 |
#: app/skins/grid/render.php:213 app/skins/grid/render.php:236
|
10212 |
+
#: app/skins/list/render.php:85 app/skins/list/render.php:211
|
10213 |
+
#: app/skins/masonry/render.php:142 app/skins/single.php:506
|
10214 |
#: app/skins/slider/render.php:60 app/skins/slider/render.php:83
|
10215 |
#: app/skins/slider/render.php:105 app/skins/slider/render.php:128
|
10216 |
#: app/skins/slider/render.php:162
|
10217 |
msgid "View Detail"
|
10218 |
msgstr "Zobrazit detail"
|
10219 |
|
10220 |
+
#: app/libraries/main.php:6601 app/libraries/main.php:6650
|
10221 |
msgid "Event Detail Button"
|
10222 |
msgstr "Tlačítko Detail události"
|
10223 |
|
10224 |
+
#: app/libraries/main.php:6601 app/libraries/main.php:6650
|
10225 |
msgid "Event Detail"
|
10226 |
msgstr "Zobrazit událost"
|
10227 |
|
10228 |
+
#: app/libraries/main.php:6606
|
10229 |
msgid "Ticket (Singular)"
|
10230 |
msgstr "Vstupenka (Jednotné)"
|
10231 |
|
10232 |
+
#: app/libraries/main.php:6607
|
10233 |
msgid "Tickets (Plural)"
|
10234 |
msgstr "Vstupenky (Množné)"
|
10235 |
|
10236 |
+
#: app/libraries/main.php:6765
|
10237 |
msgid "EventON"
|
10238 |
msgstr "EventON"
|
10239 |
|
10240 |
+
#: app/libraries/main.php:6766
|
10241 |
msgid "The Events Calendar"
|
10242 |
msgstr "The Events Calendar"
|
10243 |
|
10244 |
+
#: app/libraries/main.php:6767
|
10245 |
msgid "Events Schedule WP Plugin"
|
10246 |
msgstr "Events Schedule WP Plugin"
|
10247 |
|
10248 |
+
#: app/libraries/main.php:6768
|
10249 |
msgid "Calendarize It"
|
10250 |
msgstr "Calendarize It"
|
10251 |
|
10252 |
+
#: app/libraries/main.php:6769
|
10253 |
#, fuzzy
|
10254 |
#| msgid "Event Speakers"
|
10255 |
msgid "Event Espresso"
|
10256 |
msgstr "Řečník události"
|
10257 |
|
10258 |
+
#: app/libraries/main.php:6770
|
10259 |
#, fuzzy
|
10260 |
#| msgid "Event Repeating (Recurring events)"
|
10261 |
msgid "Events Manager (Recurring)"
|
10262 |
msgstr "Opakování události (opakující se události)"
|
10263 |
|
10264 |
+
#: app/libraries/main.php:6771
|
10265 |
#, fuzzy
|
10266 |
#| msgid "Modern Events Calendar (Lite)"
|
10267 |
msgid "Events Manager (Single)"
|
10268 |
msgstr "Modern Events Calendar (Lite)"
|
10269 |
|
10270 |
+
#: app/libraries/main.php:6772
|
10271 |
#, fuzzy
|
10272 |
#| msgid "Modern Events Calendar (Lite)"
|
10273 |
msgid "WP Event Manager"
|
10274 |
msgstr "Modern Events Calendar (Lite)"
|
10275 |
|
10276 |
+
#: app/libraries/main.php:6904
|
10277 |
msgid "Waiting"
|
10278 |
msgstr "Čekající"
|
10279 |
|
10280 |
+
#: app/libraries/main.php:6947
|
10281 |
#, fuzzy
|
10282 |
#| msgid "Sunday"
|
10283 |
msgid "Sun"
|
10284 |
msgstr "Neděle"
|
10285 |
|
10286 |
+
#: app/libraries/main.php:6947
|
10287 |
#, fuzzy
|
10288 |
#| msgid "Monday"
|
10289 |
msgid "Mon"
|
10290 |
msgstr "Pondělí"
|
10291 |
|
10292 |
+
#: app/libraries/main.php:6947
|
10293 |
#, fuzzy
|
10294 |
#| msgid "Tel"
|
10295 |
msgid "Tue"
|
10296 |
msgstr "Tel"
|
10297 |
|
10298 |
+
#: app/libraries/main.php:6947
|
10299 |
msgid "Wed"
|
10300 |
msgstr ""
|
10301 |
|
10302 |
+
#: app/libraries/main.php:6947
|
10303 |
msgid "Thu"
|
10304 |
msgstr ""
|
10305 |
|
10306 |
+
#: app/libraries/main.php:6947
|
10307 |
#, fuzzy
|
10308 |
#| msgid "Friday"
|
10309 |
msgid "Fri"
|
10310 |
msgstr "Pátek"
|
10311 |
|
10312 |
+
#: app/libraries/main.php:6947
|
10313 |
#, fuzzy
|
10314 |
#| msgid "Start"
|
10315 |
msgid "Sat"
|
10316 |
msgstr "Začátek"
|
10317 |
|
10318 |
+
#: app/libraries/main.php:7136 app/libraries/render.php:82
|
10319 |
+
#: app/libraries/render.php:444
|
10320 |
msgid "Skin controller does not exist."
|
10321 |
msgstr "Ovladač vzhledu neexistuje."
|
10322 |
|
10323 |
+
#: app/libraries/main.php:7351
|
10324 |
msgid "Sold Out"
|
10325 |
msgstr "Vyprodáno"
|
10326 |
|
10327 |
+
#: app/libraries/main.php:7371
|
10328 |
#, fuzzy
|
10329 |
#| msgid "Ticket"
|
10330 |
msgid "Last Few Tickets"
|
10331 |
msgstr "Vstupenka"
|
10332 |
|
10333 |
+
#: app/libraries/main.php:7641
|
10334 |
#, fuzzy
|
10335 |
#| msgid "Upcoming Events"
|
10336 |
msgid "Ongoing"
|
10337 |
msgstr "Nadcházející události"
|
10338 |
|
10339 |
+
#: app/libraries/main.php:7707 app/libraries/main.php:7724
|
10340 |
#, fuzzy
|
10341 |
#| msgid "minutes"
|
10342 |
msgid "Minutes"
|
10343 |
msgstr "minuty"
|
10344 |
|
10345 |
+
#: app/libraries/main.php:7729
|
10346 |
msgid "AM / PM"
|
10347 |
msgstr ""
|
10348 |
|
10349 |
+
#: app/libraries/main.php:7730
|
10350 |
msgid "AM"
|
10351 |
msgstr "dop."
|
10352 |
|
10353 |
+
#: app/libraries/main.php:7731
|
10354 |
msgid "PM"
|
10355 |
msgstr "odp."
|
10356 |
|
10357 |
+
#: app/libraries/main.php:7739
|
10358 |
msgid "Ongoing..."
|
10359 |
msgstr ""
|
10360 |
|
10361 |
+
#: app/libraries/main.php:7740
|
10362 |
#, fuzzy
|
10363 |
#| msgid "Expired Events"
|
10364 |
msgid "Expired!"
|
10365 |
msgstr "Události vypršely"
|
10366 |
|
10367 |
+
#: app/libraries/main.php:8015
|
10368 |
msgid "Mapping with Profile Fields"
|
10369 |
msgstr ""
|
10370 |
|
10372 |
msgid "Please verify your email."
|
10373 |
msgstr "Prosím, ověřte svůj e-mail."
|
10374 |
|
10375 |
+
#: app/libraries/notifications.php:181
|
10376 |
msgid "Your booking is received."
|
10377 |
msgstr "Vaše rezervace je přijata."
|
10378 |
|
10379 |
+
#: app/libraries/notifications.php:296
|
10380 |
msgid "Your booking is confirmed."
|
10381 |
msgstr "Vaše rezervace je potvrzena."
|
10382 |
|
10383 |
+
#: app/libraries/notifications.php:470
|
10384 |
msgid "booking canceled."
|
10385 |
msgstr "rezervace zrušena."
|
10386 |
|
10387 |
+
#: app/libraries/notifications.php:609
|
10388 |
#, fuzzy
|
10389 |
#| msgid "booking canceled."
|
10390 |
msgid "booking rejected."
|
10391 |
msgstr "rezervace zrušena."
|
10392 |
|
10393 |
+
#: app/libraries/notifications.php:674
|
10394 |
msgid "A new booking is received."
|
10395 |
msgstr "Je přijata nová rezervace."
|
10396 |
|
10397 |
+
#: app/libraries/notifications.php:926
|
10398 |
msgid "A new event is added."
|
10399 |
msgstr "Je přidána se nová událost."
|
10400 |
|
10401 |
+
#: app/libraries/notifications.php:1051
|
10402 |
msgid "Your event is published."
|
10403 |
msgstr "Vaše událost je zveřejněna."
|
10404 |
|
10405 |
+
#: app/libraries/notifications.php:1215
|
10406 |
#, fuzzy
|
10407 |
#| msgid "Event Color"
|
10408 |
msgid "Event is soldout!"
|
10409 |
msgstr "Barva události"
|
10410 |
|
10411 |
+
#: app/libraries/notifications.php:1589
|
10412 |
msgid "to"
|
10413 |
msgstr "do"
|
10414 |
|
10415 |
+
#: app/libraries/notifications.php:1611 app/modules/export/details.php:72
|
10416 |
msgid "+ Add to Google Calendar"
|
10417 |
msgstr "+ Přidat do Google kalendáře"
|
10418 |
|
10419 |
+
#: app/libraries/notifications.php:1612 app/modules/export/details.php:73
|
10420 |
#, fuzzy
|
10421 |
#| msgid "+ iCal export"
|
10422 |
msgid "+ iCal / Outlook export"
|
10423 |
msgstr "+ iCal export"
|
10424 |
|
10425 |
+
#: app/libraries/notifications.php:1661
|
10426 |
#, fuzzy, php-format
|
10427 |
#| msgid "+ Add to Google Calendar"
|
10428 |
msgid "+ %s to Google Calendar"
|
10429 |
msgstr "+ Přidat do Google kalendáře"
|
10430 |
|
10431 |
+
#: app/libraries/notifications.php:1741
|
10432 |
msgid "Yes"
|
10433 |
msgstr "Ano"
|
10434 |
|
10435 |
+
#: app/libraries/notifications.php:1741
|
10436 |
msgid "No"
|
10437 |
msgstr "Ne"
|
10438 |
|
10439 |
+
#: app/libraries/skins.php:1184
|
10440 |
#, fuzzy
|
10441 |
#| msgid "Select All"
|
10442 |
msgid "Select"
|
10443 |
msgstr "Vybrat vše"
|
10444 |
|
10445 |
+
#: app/libraries/skins.php:1283
|
10446 |
#, fuzzy
|
10447 |
#| msgid "Option Price"
|
10448 |
msgid "Min Price"
|
10449 |
msgstr "Možnosti ceny"
|
10450 |
|
10451 |
+
#: app/libraries/skins.php:1284
|
10452 |
#, fuzzy
|
10453 |
#| msgid "Price"
|
10454 |
msgid "Max Price"
|
10455 |
msgstr "Cena"
|
10456 |
|
10457 |
+
#: app/libraries/skins.php:1434 app/modules/booking/steps/tickets.php:108
|
10458 |
msgid "Book Event"
|
10459 |
msgstr "Rezervovat událost"
|
10460 |
|
10602 |
msgid "The event is ongoing."
|
10603 |
msgstr "Událost právě probíhá."
|
10604 |
|
10605 |
+
#: app/modules/googlemap/details.php:131
|
10606 |
msgid "Address from ..."
|
10607 |
msgstr "Adresa od ..."
|
10608 |
|
10609 |
+
#: app/modules/googlemap/details.php:135
|
10610 |
msgid "Get Directions"
|
10611 |
msgstr "Získat směr"
|
10612 |
|
10613 |
+
#: app/modules/links/details.php:17 app/skins/single.php:919
|
10614 |
msgid "Share this event"
|
10615 |
msgstr "Sdílet tuto událost"
|
10616 |
|
10629 |
msgid "Time: %s"
|
10630 |
msgstr "Čas: %s"
|
10631 |
|
10632 |
+
#: app/modules/local-time/type2.php:67
|
10633 |
#, fuzzy
|
10634 |
#| msgid "Local Time"
|
10635 |
msgid "Local Time:"
|
10636 |
msgstr "Místní čas"
|
10637 |
|
10638 |
+
#: app/modules/local-time/type2.php:68
|
10639 |
#, php-format
|
10640 |
msgid "%s |"
|
10641 |
msgstr ""
|
10642 |
|
10643 |
+
#: app/modules/local-time/type2.php:70
|
10644 |
#, php-format
|
10645 |
msgid "%s"
|
10646 |
msgstr ""
|
10665 |
msgid "Go to occurrence page"
|
10666 |
msgstr "Přejít na stránku výskytu"
|
10667 |
|
10668 |
+
#: app/modules/next-event/details.php:148 app/skins/single.php:1209
|
10669 |
#: app/skins/single/default.php:166 app/skins/single/default.php:405
|
10670 |
#: app/skins/single/m1.php:40 app/skins/single/modern.php:230
|
10671 |
msgid "Time"
|
10730 |
#: app/skins/list/tpl.php:85 app/skins/masonry/tpl.php:71
|
10731 |
#: app/skins/masonry/tpl.php:75 app/skins/slider/tpl.php:50
|
10732 |
#: app/skins/timeline/tpl.php:65 app/skins/timeline/tpl.php:69
|
10733 |
+
#: templates/archive-mec-events.php:33
|
10734 |
msgid "No event found!"
|
10735 |
msgstr "Nebyla nalezena žádná událost!"
|
10736 |
|
10747 |
|
10748 |
#: app/skins/carousel/render.php:163 app/skins/countdown/tpl.php:146
|
10749 |
#: app/skins/countdown/tpl.php:192 app/skins/countdown/tpl.php:210
|
10750 |
+
#: app/skins/cover/tpl.php:63 app/skins/list/render.php:140
|
10751 |
msgid "EVENT DETAIL"
|
10752 |
msgstr "DETAIL UDÁLOSTI"
|
10753 |
|
10794 |
msgid "No Events"
|
10795 |
msgstr "Žádné události"
|
10796 |
|
10797 |
+
#: app/skins/single.php:345
|
10798 |
#, fuzzy
|
10799 |
#| msgid "View Event"
|
10800 |
msgid "PRV Event"
|
10801 |
msgstr "Zobrazit událost"
|
10802 |
|
10803 |
+
#: app/skins/single.php:350
|
10804 |
#, fuzzy
|
10805 |
#| msgid "New Event"
|
10806 |
msgid "NXT Event"
|
10807 |
msgstr "Nová událost"
|
10808 |
|
10809 |
+
#: app/skins/single.php:547
|
10810 |
msgid "Home"
|
10811 |
msgstr "Domů"
|
10812 |
|
10813 |
+
#: app/skins/single.php:1003 app/skins/single/default.php:111
|
10814 |
#: app/skins/single/m1.php:283 app/skins/single/m2.php:204
|
10815 |
#: app/skins/single/modern.php:314
|
10816 |
msgid "Sold out!"
|
10817 |
msgstr "Vyprodáno!"
|
10818 |
|
10819 |
+
#: app/skins/single.php:1283 app/skins/single.php:1342
|
10820 |
#: app/skins/single/default.php:307 app/skins/single/default.php:545
|
10821 |
#: app/skins/single/m1.php:112 app/skins/single/m2.php:35
|
10822 |
#: app/skins/single/modern.php:60
|
10823 |
msgid "Phone"
|
10824 |
msgstr "Telefon"
|
10825 |
|
10826 |
+
#: app/skins/single.php:1445
|
10827 |
msgid "Speakers:"
|
10828 |
msgstr "Řečník:"
|
10829 |
|
Binary file
|
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: ME Calender\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2021-02-
|
6 |
-
"PO-Revision-Date: 2021-02-
|
7 |
"Last-Translator: Jogon <koenig@kafinanz.de>\n"
|
8 |
"Language-Team: German\n"
|
9 |
"Language: de_DE\n"
|
@@ -18,7 +18,7 @@ msgstr ""
|
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:24
|
21 |
-
#: app/features/ix/import.php:
|
22 |
#: app/features/ix/thirdparty.php:26 app/features/mec.php:1174
|
23 |
#: app/features/mec.php:1198 app/features/mec/dashboard.php:65
|
24 |
#: app/widgets/MEC.php:33
|
@@ -95,14 +95,14 @@ msgid "Select Shortcode"
|
|
95 |
msgstr "Neuen Shortcode hinzufügen"
|
96 |
|
97 |
#: app/features/booking/calendar_novel.php:136
|
98 |
-
#: app/features/search_bar/search_result.php:12 app/libraries/main.php:
|
99 |
-
#: app/libraries/main.php:
|
100 |
-
#: app/libraries/render.php:
|
101 |
-
#: app/libraries/render.php:
|
102 |
#: app/modules/local-time/details.php:50 app/modules/local-time/type1.php:45
|
103 |
-
#: app/modules/local-time/type2.php:
|
104 |
#: app/modules/next-event/details.php:154
|
105 |
-
#: app/modules/next-event/multiple.php:64 app/skins/single.php:
|
106 |
#: app/skins/single/default.php:172 app/skins/single/default.php:411
|
107 |
#: app/skins/single/m1.php:46 app/skins/single/modern.php:236
|
108 |
#, fuzzy
|
@@ -116,8 +116,8 @@ msgstr "Tag hinzufügen"
|
|
116 |
msgid "Chosen Time:"
|
117 |
msgstr "Lokale Zeit"
|
118 |
|
119 |
-
#: app/features/colors.php:50 app/features/fes/form.php:
|
120 |
-
#: app/features/mec/settings.php:
|
121 |
msgid "Event Color"
|
122 |
msgstr "Farbe der Veranstaltung"
|
123 |
|
@@ -130,14 +130,14 @@ msgstr "Farbe der Veranstaltung"
|
|
130 |
#: app/features/contextual.php:55 app/features/mec.php:476
|
131 |
#: app/features/mec/dashboard.php:143 app/features/mec/support.php:20
|
132 |
#: app/features/popup/event.php:60 app/features/popup/shortcode.php:37
|
133 |
-
#: app/libraries/main.php:
|
134 |
msgid "Settings"
|
135 |
msgstr "Einstellungen"
|
136 |
|
137 |
#: app/features/contextual.php:62 app/features/events.php:1516
|
138 |
#: app/features/events.php:2486 app/features/mec/booking.php:626
|
139 |
-
#: app/features/mec/booking.php:894 app/features/mec/settings.php:
|
140 |
-
#: app/features/mec/support.php:29 app/libraries/main.php:
|
141 |
msgid "Booking Form"
|
142 |
msgstr "Buchungsformular"
|
143 |
|
@@ -165,7 +165,7 @@ msgstr ""
|
|
165 |
|
166 |
#: app/features/contextual.php:70 app/features/events.php:1524
|
167 |
#: app/features/mec/booking.php:836 app/features/mec/support-page.php:115
|
168 |
-
#: app/features/mec/support.php:36 app/libraries/main.php:
|
169 |
msgid "Payment Gateways"
|
170 |
msgstr "Zahlungs-Gateways"
|
171 |
|
@@ -181,7 +181,7 @@ msgstr ""
|
|
181 |
|
182 |
#: app/features/contextual.php:77 app/features/events.php:402
|
183 |
#: app/features/mec/support-page.php:117 app/features/mec/support.php:45
|
184 |
-
#: app/libraries/main.php:
|
185 |
msgid "Notifications"
|
186 |
msgstr "Benachrichtigungen"
|
187 |
|
@@ -266,12 +266,12 @@ msgstr ""
|
|
266 |
"height=\"420\" src=\"https://www.youtube.com/embed/dqgt1b8X8hs\" frameborder="
|
267 |
"\"0\" allowfullscreen></iframe>"
|
268 |
|
269 |
-
#: app/features/contextual.php:117 app/features/mec/settings.php:
|
270 |
#: app/features/mec/support-page.php:97 app/libraries/main.php:566
|
271 |
msgid "General Options"
|
272 |
msgstr "Allgemeine Einstellungen"
|
273 |
|
274 |
-
#: app/features/contextual.php:139 app/features/mec/settings.php:
|
275 |
#: app/libraries/main.php:568
|
276 |
msgid "Slugs/Permalinks"
|
277 |
msgstr "Slug/Permalinks"
|
@@ -280,7 +280,7 @@ msgstr "Slug/Permalinks"
|
|
280 |
msgid "Event Details/Single Event Page"
|
281 |
msgstr "Event Details / Einzelveranstaltungsseite"
|
282 |
|
283 |
-
#: app/features/contextual.php:166 app/features/mec/settings.php:
|
284 |
#: app/libraries/main.php:569
|
285 |
msgid "Currency Options"
|
286 |
msgstr "Währungseinstellungen"
|
@@ -289,18 +289,18 @@ msgstr "Währungseinstellungen"
|
|
289 |
msgid "Google Maps Options"
|
290 |
msgstr "Google Maps Einstellungen"
|
291 |
|
292 |
-
#: app/features/contextual.php:244 app/features/mec/settings.php:
|
293 |
#: app/libraries/main.php:570
|
294 |
msgid "Google Recaptcha Options"
|
295 |
msgstr "Google Recaptcha Einstellungen"
|
296 |
|
297 |
#: app/features/contextual.php:258 app/features/mec/single.php:298
|
298 |
-
#: app/libraries/main.php:
|
299 |
msgid "Countdown Options"
|
300 |
msgstr "Countdown Einstellungsoptionen"
|
301 |
|
302 |
#: app/features/contextual.php:268 app/features/mec/modules.php:269
|
303 |
-
#: app/libraries/main.php:
|
304 |
msgid "Social Networks"
|
305 |
msgstr "Soziale Netzwerke"
|
306 |
|
@@ -308,36 +308,36 @@ msgstr "Soziale Netzwerke"
|
|
308 |
msgid "Next Event Module"
|
309 |
msgstr "Nächstes Veranstaltung Modul"
|
310 |
|
311 |
-
#: app/features/contextual.php:286 app/features/mec/settings.php:
|
312 |
#: app/features/mec/support-page.php:98 app/libraries/main.php:571
|
313 |
msgid "Frontend Event Submission"
|
314 |
msgstr "Erstellung von Veranstaltungen im Frontend"
|
315 |
|
316 |
#: app/features/contextual.php:298 app/features/events.php:395
|
317 |
-
#: app/libraries/main.php:
|
318 |
msgid "Exceptional Days"
|
319 |
msgstr "Herausgenommene Tage "
|
320 |
|
321 |
#: app/features/contextual.php:308 app/features/events.php:365
|
322 |
#: app/features/mec/booking.php:88 app/features/mec/notifications.php:36
|
323 |
#: app/features/mec/support-page.php:110 app/features/mec/support-page.php:114
|
324 |
-
#: app/libraries/main.php:
|
325 |
-
#: app/libraries/main.php:
|
326 |
msgid "Booking"
|
327 |
msgstr "Buchung / Reservierung"
|
328 |
|
329 |
#: app/features/contextual.php:318 app/features/mec/booking.php:448
|
330 |
-
#: app/features/mec/booking.php:852 app/libraries/main.php:
|
331 |
msgid "Coupons"
|
332 |
msgstr "Gutscheine"
|
333 |
|
334 |
#: app/features/contextual.php:326 app/features/mec/modules.php:341
|
335 |
-
#: app/libraries/main.php:
|
336 |
msgid "BuddyPress Integration"
|
337 |
msgstr "Buddy Press Integration"
|
338 |
|
339 |
-
#: app/features/contextual.php:334 app/features/mec/settings.php:
|
340 |
-
#: app/libraries/main.php:
|
341 |
msgid "Mailchimp Integration"
|
342 |
msgstr "Mailchimp Integration"
|
343 |
|
@@ -346,7 +346,7 @@ msgid "MEC Activation"
|
|
346 |
msgstr "MEC Aktivierung"
|
347 |
|
348 |
#: app/features/dlfile.php:121 app/features/events.php:1521
|
349 |
-
#: app/features/mec/booking.php:368 app/features/mec/settings.php:
|
350 |
#, fuzzy
|
351 |
#| msgid "Download ICS file"
|
352 |
msgid "Downloadable File"
|
@@ -383,8 +383,8 @@ msgid "File uploaded!"
|
|
383 |
msgstr "Das Bild ist hochgeladen"
|
384 |
|
385 |
#: app/features/events.php:183 app/features/ix/export.php:34
|
386 |
-
#: app/features/mec/dashboard.php:267 app/libraries/main.php:
|
387 |
-
#: app/libraries/main.php:
|
388 |
#: app/skins/monthly_view/tpl.php:73 app/skins/tile/tpl.php:83
|
389 |
#: app/skins/yearly_view/tpl.php:71
|
390 |
msgid "Events"
|
@@ -408,7 +408,7 @@ msgstr "Veranstaltung hinzufügen"
|
|
408 |
msgid "Add New Event"
|
409 |
msgstr "Neue Veranstaltung hinzufügen"
|
410 |
|
411 |
-
#: app/features/events.php:187 app/features/ix.php:
|
412 |
#: app/features/ix/thirdparty.php:44 app/skins/map/tpl.php:69
|
413 |
#: app/skins/map/tpl.php:89
|
414 |
msgid "No events found!"
|
@@ -444,21 +444,21 @@ msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
|
|
444 |
#: app/features/mec/meta_boxes/search_form.php:700
|
445 |
#: app/features/mec/meta_boxes/search_form.php:785
|
446 |
#: app/features/mec/meta_boxes/search_form.php:906
|
447 |
-
#: app/features/mec/settings.php:
|
448 |
#: app/features/mec/single.php:385 app/features/mec/single.php:427
|
449 |
-
#: app/features/search.php:68 app/libraries/main.php:
|
450 |
-
#: app/libraries/main.php:
|
451 |
-
#: app/skins/single.php:
|
452 |
#: app/skins/single/default.php:510 app/skins/single/m1.php:201
|
453 |
#: app/skins/single/m2.php:124 app/skins/single/modern.php:154
|
454 |
msgid "Category"
|
455 |
msgstr "Kategorie"
|
456 |
|
457 |
#: app/features/events.php:209 app/features/events.php:3533
|
458 |
-
#: app/features/fes/form.php:
|
459 |
#: app/features/mec/meta_boxes/filter.php:69
|
460 |
-
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:
|
461 |
-
#: app/libraries/main.php:
|
462 |
msgid "Categories"
|
463 |
msgstr "Kategorien"
|
464 |
|
@@ -560,7 +560,7 @@ msgstr "Veranstaltungsdetails"
|
|
560 |
msgid "Date And Time"
|
561 |
msgstr "Datum und Uhrzeit"
|
562 |
|
563 |
-
#: app/features/events.php:393 app/features/fes/form.php:
|
564 |
msgid "Event Repeating"
|
565 |
msgstr "Wiederholende Veranstaltung"
|
566 |
|
@@ -571,8 +571,8 @@ msgstr "Wiederholende Veranstaltung"
|
|
571 |
msgid "Event Data"
|
572 |
msgstr "Veranstaltungsdetails"
|
573 |
|
574 |
-
#: app/features/events.php:396 app/features/mec/settings.php:
|
575 |
-
#: app/libraries/hourlyschedule.php:35 app/skins/single.php:
|
576 |
msgid "Hourly Schedule"
|
577 |
msgstr "Stundenplan"
|
578 |
|
@@ -585,8 +585,8 @@ msgid "Links"
|
|
585 |
msgstr "Links"
|
586 |
|
587 |
#: app/features/events.php:399 app/features/events.php:3580
|
588 |
-
#: app/features/events.php:3787 app/features/ix.php:
|
589 |
-
#: app/features/ix.php:
|
590 |
#: app/features/mec/meta_boxes/display_options.php:1506
|
591 |
#: app/features/mec/meta_boxes/search_form.php:47
|
592 |
#: app/features/mec/meta_boxes/search_form.php:133
|
@@ -599,23 +599,23 @@ msgstr "Links"
|
|
599 |
#: app/features/mec/meta_boxes/search_form.php:716
|
600 |
#: app/features/mec/meta_boxes/search_form.php:801
|
601 |
#: app/features/mec/meta_boxes/search_form.php:922
|
602 |
-
#: app/features/mec/settings.php:
|
603 |
#: app/features/mec/single.php:431 app/features/organizers.php:58
|
604 |
#: app/features/organizers.php:204 app/features/organizers.php:260
|
605 |
#: app/features/organizers.php:262 app/features/organizers.php:271
|
606 |
#: app/features/popup/event.php:163 app/features/popup/event.php:172
|
607 |
-
#: app/features/search.php:80 app/libraries/main.php:
|
608 |
-
#: app/libraries/main.php:
|
609 |
-
#: app/skins/single.php:
|
610 |
#: app/skins/single/default.php:535 app/skins/single/m1.php:102
|
611 |
#: app/skins/single/m2.php:25 app/skins/single/modern.php:50
|
612 |
msgid "Organizer"
|
613 |
msgstr "Veranstalter"
|
614 |
|
615 |
#: app/features/events.php:400 app/features/events.php:1235
|
616 |
-
#: app/features/fes/form.php:
|
617 |
-
#: app/libraries/main.php:
|
618 |
-
#: app/skins/single.php:
|
619 |
#: app/skins/single/default.php:429 app/skins/single/m1.php:61
|
620 |
#: app/skins/single/modern.php:251
|
621 |
msgid "Cost"
|
@@ -637,26 +637,26 @@ msgstr "Gäste Daten"
|
|
637 |
|
638 |
#: app/features/events.php:569 app/features/events.php:2472
|
639 |
#: app/features/events.php:4110 app/features/fes.php:243
|
640 |
-
#: app/features/fes/form.php:
|
641 |
#: app/features/mec/booking.php:45 app/features/organizers.php:279
|
642 |
#: app/features/popup/event.php:182 app/features/profile/profile.php:149
|
643 |
-
#: app/libraries/notifications.php:
|
644 |
msgid "Name"
|
645 |
msgstr "Name"
|
646 |
|
647 |
#: app/features/events.php:570 app/features/events.php:2481
|
648 |
#: app/features/events.php:2548 app/features/events.php:2637
|
649 |
#: app/features/events.php:4113 app/features/fes.php:243
|
650 |
-
#: app/features/fes/form.php:
|
651 |
#: app/features/mec/booking.php:57 app/features/mec/booking.php:664
|
652 |
#: app/features/mec/booking.php:760 app/features/mec/single.php:240
|
653 |
#: app/features/organizers.php:111 app/features/organizers.php:152
|
654 |
#: app/features/profile/profile.php:152 app/features/speakers.php:127
|
655 |
-
#: app/features/speakers.php:204 app/libraries/main.php:
|
656 |
-
#: app/libraries/main.php:
|
657 |
-
#: app/libraries/notifications.php:
|
658 |
-
#: app/modules/booking/steps/form.php:213 app/skins/single.php:
|
659 |
-
#: app/skins/single.php:
|
660 |
#: app/skins/single/default.php:552 app/skins/single/m1.php:119
|
661 |
#: app/skins/single/m2.php:42 app/skins/single/modern.php:67
|
662 |
msgid "Email"
|
@@ -675,7 +675,7 @@ msgstr "Datum und Uhrzeit"
|
|
675 |
#: app/features/events.php:586 app/features/events.php:590
|
676 |
#: app/features/events.php:3581 app/features/events.php:3787
|
677 |
#: app/features/fes/form.php:286 app/features/fes/form.php:290
|
678 |
-
#: app/features/ix.php:
|
679 |
#: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1394
|
680 |
#: app/features/mec/meta_boxes/display_options.php:52
|
681 |
#: app/features/mec/meta_boxes/display_options.php:305
|
@@ -699,7 +699,7 @@ msgstr "Start Datum"
|
|
699 |
#: app/features/events.php:605 app/features/events.php:609
|
700 |
#: app/features/events.php:3582 app/features/events.php:3787
|
701 |
#: app/features/fes/form.php:305 app/features/fes/form.php:309
|
702 |
-
#: app/features/ix.php:
|
703 |
#: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1395
|
704 |
#: app/features/mec/meta_boxes/display_options.php:68
|
705 |
#: app/features/mec/meta_boxes/display_options.php:321
|
@@ -752,7 +752,7 @@ msgstr ""
|
|
752 |
#: app/features/events.php:2223 app/features/events.php:2259
|
753 |
#: app/features/events.php:2357 app/features/events.php:2372
|
754 |
#: app/features/events.php:2402 app/features/events.php:2415
|
755 |
-
#: app/features/fes/form.php:
|
756 |
#: app/features/locations.php:335 app/features/mec/booking.php:109
|
757 |
#: app/features/mec/booking.php:201 app/features/mec/booking.php:266
|
758 |
#: app/features/mec/booking.php:299 app/features/mec/booking.php:312
|
@@ -807,27 +807,28 @@ msgstr ""
|
|
807 |
#: app/features/mec/notifications.php:1195
|
808 |
#: app/features/mec/notifications.php:1210
|
809 |
#: app/features/mec/notifications.php:1367
|
810 |
-
#: app/features/mec/notifications.php:1479 app/features/mec/settings.php:
|
811 |
-
#: app/features/mec/settings.php:
|
812 |
-
#: app/features/mec/settings.php:
|
813 |
-
#: app/features/mec/settings.php:
|
814 |
-
#: app/features/mec/settings.php:
|
815 |
-
#: app/features/mec/settings.php:
|
816 |
-
#: app/features/mec/settings.php:
|
817 |
-
#: app/features/mec/settings.php:
|
818 |
-
#: app/features/mec/settings.php:
|
819 |
-
#: app/features/mec/settings.php:
|
820 |
-
#: app/features/mec/settings.php:
|
821 |
-
#: app/features/mec/single.php:
|
822 |
-
#: app/features/mec/single.php:
|
823 |
-
#: app/features/mec/single.php:
|
824 |
-
#: app/features/mec/single.php:
|
825 |
-
#: app/features/mec/styling.php:
|
826 |
-
#: app/features/mec/styling.php:
|
827 |
-
#: app/features/
|
828 |
-
#: app/
|
829 |
-
#: app/skins/single/default.php:
|
830 |
-
#: app/skins/single/
|
|
|
831 |
msgid "Read More"
|
832 |
msgstr "Mehr lesen"
|
833 |
|
@@ -865,30 +866,31 @@ msgstr "Am Event Start"
|
|
865 |
msgid "Count to Event End"
|
866 |
msgstr "Am Event Ende"
|
867 |
|
868 |
-
#: app/features/events.php:700 app/features/fes/form.php:
|
869 |
#: app/modules/weather/darksky.php:57
|
870 |
msgid "Visibility"
|
871 |
msgstr "Sichtbarkeit"
|
872 |
|
873 |
-
#: app/features/events.php:703 app/features/fes/form.php:
|
|
|
874 |
#, fuzzy
|
875 |
#| msgid "Visibility"
|
876 |
msgid "Event Visibility"
|
877 |
msgstr "Sichtbarkeit"
|
878 |
|
879 |
-
#: app/features/events.php:704 app/features/fes/form.php:
|
880 |
#, fuzzy
|
881 |
#| msgid "Booking"
|
882 |
msgid "Show on Shortcodes"
|
883 |
msgstr "Buchung / Reservierung"
|
884 |
|
885 |
-
#: app/features/events.php:705 app/features/fes/form.php:
|
886 |
#, fuzzy
|
887 |
#| msgid "Shortcodes"
|
888 |
msgid "Hide on Shortcodes"
|
889 |
msgstr "Shortcodes"
|
890 |
|
891 |
-
#: app/features/events.php:712
|
892 |
msgid "Repeating"
|
893 |
msgstr "Wiederholen"
|
894 |
|
@@ -896,63 +898,63 @@ msgstr "Wiederholen"
|
|
896 |
msgid "Event Repeating (Recurring events)"
|
897 |
msgstr "Wiederholende Veranstaltung"
|
898 |
|
899 |
-
#: app/features/events.php:725 app/features/fes/form.php:
|
900 |
msgid "Repeats"
|
901 |
msgstr "Wiederholend"
|
902 |
|
903 |
-
#: app/features/events.php:733 app/features/fes/form.php:
|
904 |
#: app/features/mec.php:1397 app/skins/default_full_calendar/tpl.php:77
|
905 |
#: app/skins/full_calendar/tpl.php:125
|
906 |
msgid "Daily"
|
907 |
msgstr "Täglich"
|
908 |
|
909 |
-
#: app/features/events.php:740 app/features/fes/form.php:
|
910 |
msgid "Every Weekday"
|
911 |
msgstr "An jedem Wochentag"
|
912 |
|
913 |
-
#: app/features/events.php:747 app/features/fes/form.php:
|
914 |
msgid "Every Weekend"
|
915 |
msgstr "An jedem Wochenende"
|
916 |
|
917 |
-
#: app/features/events.php:754 app/features/fes/form.php:
|
918 |
msgid "Certain Weekdays"
|
919 |
msgstr "Bestimmte Wochentage"
|
920 |
|
921 |
-
#: app/features/events.php:761 app/features/fes/form.php:
|
922 |
#: app/skins/default_full_calendar/tpl.php:76
|
923 |
#: app/skins/full_calendar/tpl.php:124
|
924 |
msgid "Weekly"
|
925 |
msgstr "Wöchentlich"
|
926 |
|
927 |
-
#: app/features/events.php:768 app/features/fes/form.php:
|
928 |
#: app/features/mec.php:1398 app/skins/default_full_calendar/tpl.php:75
|
929 |
#: app/skins/full_calendar/tpl.php:123
|
930 |
msgid "Monthly"
|
931 |
msgstr "Monatlich"
|
932 |
|
933 |
-
#: app/features/events.php:775 app/features/fes/form.php:
|
934 |
#: app/features/mec.php:1399 app/skins/default_full_calendar/tpl.php:74
|
935 |
#: app/skins/full_calendar/tpl.php:122
|
936 |
msgid "Yearly"
|
937 |
msgstr "Jährlich"
|
938 |
|
939 |
-
#: app/features/events.php:782 app/features/fes/form.php:
|
940 |
msgid "Custom Days"
|
941 |
msgstr "Benutzerdefinierte Tage"
|
942 |
|
943 |
-
#: app/features/events.php:789 app/features/fes/form.php:
|
944 |
msgid "Advanced"
|
945 |
msgstr "Fortgeschritten"
|
946 |
|
947 |
-
#: app/features/events.php:794 app/features/fes/form.php:
|
948 |
msgid "Repeat Interval"
|
949 |
msgstr "Wiederholungsintervall"
|
950 |
|
951 |
-
#: app/features/events.php:796 app/features/fes/form.php:
|
952 |
msgid "Repeat interval"
|
953 |
msgstr "Wiederholungsintervall"
|
954 |
|
955 |
-
#: app/features/events.php:800 app/features/fes/form.php:
|
956 |
msgid "Week Days"
|
957 |
msgstr "Wochentage"
|
958 |
|
@@ -966,27 +968,27 @@ msgstr "Pro Version vom Modernen Event Calendar"
|
|
966 |
|
967 |
#: app/features/events.php:823 app/features/events.php:1945
|
968 |
#: app/features/events.php:1973 app/features/events.php:2127
|
969 |
-
#: app/features/fes/form.php:
|
970 |
#: app/features/ix/import_g_calendar.php:51
|
971 |
#: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:35
|
972 |
-
#: app/libraries/skins.php:
|
973 |
msgid "Start"
|
974 |
msgstr "Start"
|
975 |
|
976 |
#: app/features/events.php:836 app/features/events.php:1343
|
977 |
#: app/features/events.php:1929 app/features/events.php:2116
|
978 |
#: app/features/events.php:2196 app/features/events.php:2329
|
979 |
-
#: app/features/fes/form.php:
|
980 |
#: app/features/occurrences.php:114 app/libraries/hourlyschedule.php:56
|
981 |
#: app/libraries/hourlyschedule.php:119
|
982 |
msgid "Add"
|
983 |
msgstr "Hinzufügen"
|
984 |
|
985 |
-
#: app/features/events.php:839 app/features/fes/form.php:
|
986 |
msgid "Custom Days Repeating"
|
987 |
msgstr "Benutzerdefinierte Wiederholende Tage"
|
988 |
|
989 |
-
#: app/features/events.php:842 app/features/fes/form.php:
|
990 |
msgid ""
|
991 |
"Add certain days to event occurrence dates. If you have a single day event, "
|
992 |
"start and end dates should be the same, If you have a multiple day event, "
|
@@ -995,49 +997,49 @@ msgstr ""
|
|
995 |
|
996 |
#: app/features/events.php:853 app/features/events.php:1949
|
997 |
#: app/features/events.php:1977 app/features/events.php:2131
|
998 |
-
#: app/features/fes/form.php:
|
999 |
msgid "End"
|
1000 |
msgstr "Ende"
|
1001 |
|
1002 |
-
#: app/features/events.php:930 app/features/fes/form.php:
|
1003 |
msgid "First"
|
1004 |
msgstr "Erster"
|
1005 |
|
1006 |
-
#: app/features/events.php:972 app/features/fes/form.php:
|
1007 |
msgid "Second"
|
1008 |
msgstr "Zweiter"
|
1009 |
|
1010 |
-
#: app/features/events.php:1014 app/features/fes/form.php:
|
1011 |
msgid "Third"
|
1012 |
msgstr "Dritter"
|
1013 |
|
1014 |
-
#: app/features/events.php:1056 app/features/fes/form.php:
|
1015 |
msgid "Fourth"
|
1016 |
msgstr "Vierte"
|
1017 |
|
1018 |
-
#: app/features/events.php:1098 app/features/fes/form.php:
|
1019 |
msgid "Last"
|
1020 |
msgstr "Letzter"
|
1021 |
|
1022 |
-
#: app/features/events.php:1145 app/features/fes/form.php:
|
1023 |
msgid "Ends Repeat"
|
1024 |
msgstr "Wiederholung endet"
|
1025 |
|
1026 |
-
#: app/features/events.php:1157 app/features/fes/form.php:
|
1027 |
msgid "Never"
|
1028 |
msgstr "Niemals"
|
1029 |
|
1030 |
-
#: app/features/events.php:1169 app/features/fes/form.php:
|
1031 |
msgid "On"
|
1032 |
msgstr "Am"
|
1033 |
|
1034 |
-
#: app/features/events.php:1185 app/features/fes/form.php:
|
1035 |
#: app/features/mec/booking.php:157
|
1036 |
msgid "After"
|
1037 |
msgstr "Nach"
|
1038 |
|
1039 |
#: app/features/events.php:1189 app/features/events.php:1193
|
1040 |
-
#: app/features/fes/form.php:
|
1041 |
msgid "Occurrences times"
|
1042 |
msgstr " mal vorkommen"
|
1043 |
|
@@ -1053,15 +1055,15 @@ msgstr ""
|
|
1053 |
"Das Event ist nach einer bestimmten Anzahl von Wiederholungen zu Ende. Zum "
|
1054 |
"Beispiel: Bei Eingabe von 10 wird das Event nach 10 Wiederholungen beendet"
|
1055 |
|
1056 |
-
#: app/features/events.php:1210 app/features/fes/form.php:
|
1057 |
#, fuzzy
|
1058 |
#| msgid "Next Occurrence of Other Events"
|
1059 |
msgid "Show only one occurrence of this event"
|
1060 |
msgstr "Nächstes Auftreten von anderen Events."
|
1061 |
|
1062 |
#: app/features/events.php:1231 app/features/events.php:3787
|
1063 |
-
#: app/features/fes/form.php:
|
1064 |
-
#: app/features/ix.php:
|
1065 |
#: app/features/mec/meta_boxes/search_form.php:168
|
1066 |
#: app/features/mec/meta_boxes/search_form.php:254
|
1067 |
#: app/features/mec/meta_boxes/search_form.php:340
|
@@ -1072,8 +1074,8 @@ msgstr "Nächstes Auftreten von anderen Events."
|
|
1072 |
#: app/features/mec/meta_boxes/search_form.php:751
|
1073 |
#: app/features/mec/meta_boxes/search_form.php:836
|
1074 |
#: app/features/mec/meta_boxes/search_form.php:957
|
1075 |
-
#: app/features/mec/settings.php:
|
1076 |
-
#: app/libraries/main.php:
|
1077 |
msgid "Event Cost"
|
1078 |
msgstr ""
|
1079 |
"Bruttopreis des Events in Euro, 0 für kostenlos oder z.B. 39, ohne €-Zeichen"
|
@@ -1092,9 +1094,9 @@ msgstr "Ausschluss bestimmter Tage"
|
|
1092 |
#: app/features/events.php:2638 app/features/fes.php:243
|
1093 |
#: app/features/mec/booking.php:665 app/features/mec/booking.php:761
|
1094 |
#: app/features/mec/single.php:242 app/features/profile/profile.php:36
|
1095 |
-
#: app/features/wc.php:83 app/libraries/main.php:
|
1096 |
#: app/modules/booking/steps/tickets.php:127
|
1097 |
-
#: app/modules/next-event/details.php:143 app/skins/single.php:
|
1098 |
#: app/skins/single/default.php:147 app/skins/single/default.php:386
|
1099 |
#: app/skins/single/m1.php:21 app/skins/single/modern.php:211
|
1100 |
msgid "Date"
|
@@ -1107,23 +1109,23 @@ msgid ""
|
|
1107 |
"multiple day occurrences."
|
1108 |
msgstr ""
|
1109 |
|
1110 |
-
#: app/features/events.php:1405 app/libraries/render.php:
|
1111 |
msgid "Day 1"
|
1112 |
msgstr "Tag 1"
|
1113 |
|
1114 |
-
#: app/features/events.php:1449 app/features/fes/form.php:
|
1115 |
-
#: app/features/mec/settings.php:
|
1116 |
msgid "Event Links"
|
1117 |
msgstr "Veranstaltungslinks"
|
1118 |
|
1119 |
#: app/features/events.php:1452 app/features/events.php:1460
|
1120 |
-
#: app/features/fes/form.php:
|
1121 |
-
#: app/libraries/main.php:
|
1122 |
msgid "Event Link"
|
1123 |
msgstr "Veranstaltungslink"
|
1124 |
|
1125 |
#: app/features/events.php:1455 app/features/events.php:1473
|
1126 |
-
#: app/features/fes/form.php:
|
1127 |
msgid "eg. http://yoursite.com/your-event"
|
1128 |
msgstr "z.B. http://yoursite.com/your-event"
|
1129 |
|
@@ -1146,29 +1148,29 @@ msgid "URL Shortener"
|
|
1146 |
msgstr ""
|
1147 |
|
1148 |
#: app/features/events.php:1470 app/features/events.php:1483
|
1149 |
-
#: app/features/fes/form.php:
|
1150 |
-
#: app/libraries/main.php:
|
1151 |
#: app/skins/single/default.php:206 app/skins/single/default.php:443
|
1152 |
#: app/skins/single/m1.php:222 app/skins/single/m2.php:146
|
1153 |
#: app/skins/single/modern.php:176 app/widgets/single.php:109
|
1154 |
msgid "More Info"
|
1155 |
msgstr "Mehr Informationen"
|
1156 |
|
1157 |
-
#: app/features/events.php:1476 app/features/fes/form.php:
|
1158 |
msgid "More Information"
|
1159 |
msgstr "z.B. Noch mehr Informationen "
|
1160 |
|
1161 |
-
#: app/features/events.php:1478 app/features/fes/form.php:
|
1162 |
#: app/features/mec.php:996 app/features/popup/shortcode.php:477
|
1163 |
msgid "Current Window"
|
1164 |
msgstr "Aktuelles Fenster"
|
1165 |
|
1166 |
-
#: app/features/events.php:1479 app/features/fes/form.php:
|
1167 |
#: app/features/mec.php:997 app/features/popup/shortcode.php:481
|
1168 |
msgid "New Window"
|
1169 |
msgstr "Neues Fenster"
|
1170 |
|
1171 |
-
#: app/features/events.php:1484 app/features/fes/form.php:
|
1172 |
msgid ""
|
1173 |
"If you fill it, it will be shown in event details page as an optional link. "
|
1174 |
"Insert full link including http(s)://"
|
@@ -1179,19 +1181,19 @@ msgstr ""
|
|
1179 |
"Text angezeigt werden soll: zum Beispiel: Noch mehr Informationen oder Hier "
|
1180 |
"zur Anmeldung (z.B. bei Webinaren sinnvoll) "
|
1181 |
|
1182 |
-
#: app/features/events.php:1507 app/features/mec/settings.php:
|
1183 |
msgid "Booking Options"
|
1184 |
msgstr "Buchungsoptionen"
|
1185 |
|
1186 |
#: app/features/events.php:1508 app/features/events.php:1721
|
1187 |
-
#: app/features/mec/settings.php:
|
1188 |
#, fuzzy
|
1189 |
#| msgid "Total booking limits"
|
1190 |
msgid "Total User Booking Limits"
|
1191 |
msgstr "Gesamt Verfügbare Plätze"
|
1192 |
|
1193 |
#: app/features/events.php:1509 app/features/events.php:1777
|
1194 |
-
#: app/libraries/book.php:63 app/libraries/main.php:
|
1195 |
#: app/modules/booking/steps/tickets.php:159
|
1196 |
#: app/modules/booking/steps/tickets.php:165
|
1197 |
msgid "Tickets"
|
@@ -1202,7 +1204,7 @@ msgid "Fees"
|
|
1202 |
msgstr "Gebühren"
|
1203 |
|
1204 |
#: app/features/events.php:1514 app/features/events.php:2305
|
1205 |
-
#: app/features/mec/settings.php:
|
1206 |
msgid "Ticket Variations / Options"
|
1207 |
msgstr ""
|
1208 |
|
@@ -1220,7 +1222,7 @@ msgid "Total booking limit"
|
|
1220 |
msgstr "Gesamt Verfügbare Plätze"
|
1221 |
|
1222 |
#: app/features/events.php:1596 app/features/events.php:1895
|
1223 |
-
#: app/features/events.php:2082 app/modules/booking/default.php:
|
1224 |
#: app/modules/booking/steps/tickets.php:159
|
1225 |
#: app/modules/booking/steps/tickets.php:165
|
1226 |
#: app/skins/available_spot/tpl.php:131
|
@@ -1254,7 +1256,7 @@ msgid "5"
|
|
1254 |
msgstr ""
|
1255 |
|
1256 |
#: app/features/events.php:1629 app/features/events.php:1643
|
1257 |
-
#: app/features/mec/settings.php:
|
1258 |
#, fuzzy
|
1259 |
#| msgid "Next Occurrence"
|
1260 |
msgid "Book All Occurrences"
|
@@ -1272,7 +1274,7 @@ msgid ""
|
|
1272 |
msgstr ""
|
1273 |
|
1274 |
#: app/features/events.php:1657 app/features/mec/booking.php:130
|
1275 |
-
#: app/features/mec/settings.php:
|
1276 |
#, fuzzy
|
1277 |
#| msgid "General Options"
|
1278 |
msgid "Interval Options"
|
@@ -1296,7 +1298,7 @@ msgid ""
|
|
1296 |
"starting the event! One day is 1440 minutes."
|
1297 |
msgstr ""
|
1298 |
|
1299 |
-
#: app/features/events.php:1674 app/features/mec/settings.php:
|
1300 |
msgid "Automatic Approval"
|
1301 |
msgstr ""
|
1302 |
|
@@ -1429,8 +1431,8 @@ msgstr "Email-Verifizierung"
|
|
1429 |
#: app/features/mec/meta_boxes/search_form.php:966
|
1430 |
#: app/features/mec/meta_boxes/search_form.php:973
|
1431 |
#: app/features/mec/meta_boxes/search_form.php:980
|
1432 |
-
#: app/features/mec/modules.php:115 app/features/mec/settings.php:
|
1433 |
-
#: app/features/mec/settings.php:
|
1434 |
msgid "Disabled"
|
1435 |
msgstr "Deaktiviert"
|
1436 |
|
@@ -1438,18 +1440,18 @@ msgstr "Deaktiviert"
|
|
1438 |
#: app/features/mec/booking.php:176 app/features/mec/booking.php:243
|
1439 |
#: app/features/mec/booking.php:260 app/features/mec/booking.php:861
|
1440 |
#: app/features/mec/booking.php:890 app/features/mec/modules.php:155
|
1441 |
-
#: app/features/mec/settings.php:
|
1442 |
msgid "Enabled"
|
1443 |
msgstr "Aktiviert"
|
1444 |
|
1445 |
#: app/features/events.php:1686 app/features/mec/booking.php:395
|
1446 |
#: app/features/mec/notifications.php:334 app/features/notifications.php:161
|
1447 |
-
#: app/libraries/main.php:
|
1448 |
msgid "Booking Confirmation"
|
1449 |
msgstr "Buchungsbestätigung"
|
1450 |
|
1451 |
#: app/features/events.php:1699 app/features/mec/booking.php:279
|
1452 |
-
#: app/features/mec/settings.php:
|
1453 |
#, fuzzy
|
1454 |
#| msgid "Last Few Tickets"
|
1455 |
msgid "Last Few Tickets Percentage"
|
@@ -1494,7 +1496,7 @@ msgstr "Ticket"
|
|
1494 |
|
1495 |
#: app/features/events.php:1797 app/features/events.php:1997
|
1496 |
#: app/features/events.php:3787 app/features/fes.php:243
|
1497 |
-
#: app/features/ix.php:
|
1498 |
#: app/features/labels.php:179 app/features/locations.php:262
|
1499 |
#: app/features/organizers.php:203 app/features/speakers.php:282
|
1500 |
msgid "ID"
|
@@ -1505,14 +1507,14 @@ msgid "Ticket Name"
|
|
1505 |
msgstr "Ticket Name"
|
1506 |
|
1507 |
#: app/features/events.php:1805 app/features/events.php:2004
|
1508 |
-
#: app/features/events.php:3787 app/features/ix.php:
|
1509 |
-
#: app/features/ix.php:
|
1510 |
msgid "Start Time"
|
1511 |
msgstr "Uhrzeit des Beginns"
|
1512 |
|
1513 |
#: app/features/events.php:1818 app/features/events.php:2017
|
1514 |
-
#: app/features/events.php:3787 app/features/ix.php:
|
1515 |
-
#: app/features/ix.php:
|
1516 |
msgid "End Time"
|
1517 |
msgstr "Uhrzeit Ende"
|
1518 |
|
@@ -1615,9 +1617,9 @@ msgstr "Preis pro Datum"
|
|
1615 |
#: app/features/mec/meta_boxes/search_form.php:737
|
1616 |
#: app/features/mec/meta_boxes/search_form.php:822
|
1617 |
#: app/features/mec/meta_boxes/search_form.php:943
|
1618 |
-
#: app/features/mec/settings.php:
|
1619 |
#: app/features/mec/single.php:403 app/features/mec/single.php:445
|
1620 |
-
#: app/features/search.php:98 app/libraries/skins.php:
|
1621 |
msgid "Label"
|
1622 |
msgstr "Label"
|
1623 |
|
@@ -1629,14 +1631,14 @@ msgstr "Label"
|
|
1629 |
#: app/features/mec/booking.php:617 app/libraries/hourlyschedule.php:52
|
1630 |
#: app/libraries/hourlyschedule.php:66 app/libraries/hourlyschedule.php:87
|
1631 |
#: app/libraries/hourlyschedule.php:115 app/libraries/hourlyschedule.php:132
|
1632 |
-
#: app/libraries/main.php:
|
1633 |
-
#: app/libraries/main.php:
|
1634 |
-
#: app/libraries/main.php:
|
1635 |
-
#: app/libraries/main.php:
|
1636 |
-
#: app/libraries/main.php:
|
1637 |
-
#: app/libraries/main.php:
|
1638 |
-
#: app/libraries/main.php:
|
1639 |
-
#: app/libraries/main.php:
|
1640 |
msgid "Remove"
|
1641 |
msgstr "Entfernen"
|
1642 |
|
@@ -1678,8 +1680,8 @@ msgstr "Betrag (pro Buchung)"
|
|
1678 |
|
1679 |
#: app/features/events.php:2344 app/features/events.php:2391
|
1680 |
#: app/features/events.php:3577 app/features/events.php:3787
|
1681 |
-
#: app/features/fes/form.php:260 app/features/ix.php:
|
1682 |
-
#: app/features/ix.php:
|
1683 |
#: app/features/mec/booking.php:594 app/features/mec/styling.php:134
|
1684 |
#: app/libraries/hourlyschedule.php:48 app/libraries/hourlyschedule.php:64
|
1685 |
#: app/libraries/hourlyschedule.php:85 app/libraries/hourlyschedule.php:110
|
@@ -1720,18 +1722,18 @@ msgid "Per Attendee Fields"
|
|
1720 |
msgstr "Teilnehmer Liste"
|
1721 |
|
1722 |
#: app/features/events.php:2545 app/features/mec/booking.php:661
|
1723 |
-
#: app/libraries/main.php:
|
1724 |
msgid "MEC Name"
|
1725 |
msgstr "MEC Name"
|
1726 |
|
1727 |
#: app/features/events.php:2546 app/features/mec/booking.php:662
|
1728 |
-
#: app/libraries/main.php:
|
1729 |
msgid "MEC Email"
|
1730 |
msgstr "MEC Email"
|
1731 |
|
1732 |
#: app/features/events.php:2547 app/features/events.php:2636
|
1733 |
#: app/features/mec/booking.php:663 app/features/mec/booking.php:759
|
1734 |
-
#: app/features/mec/single.php:239 app/libraries/main.php:
|
1735 |
msgid "Text"
|
1736 |
msgstr "Text"
|
1737 |
|
@@ -1740,18 +1742,18 @@ msgstr "Text"
|
|
1740 |
#: app/features/mec/single.php:243 app/features/organizers.php:103
|
1741 |
#: app/features/organizers.php:148 app/features/speakers.php:119
|
1742 |
#: app/features/speakers.php:200 app/features/speakers.php:285
|
1743 |
-
#: app/libraries/main.php:
|
1744 |
msgid "Tel"
|
1745 |
msgstr "Tel"
|
1746 |
|
1747 |
#: app/features/events.php:2551 app/features/mec/booking.php:667
|
1748 |
-
#: app/libraries/main.php:
|
1749 |
msgid "File"
|
1750 |
msgstr "Datei"
|
1751 |
|
1752 |
#: app/features/events.php:2552 app/features/events.php:2640
|
1753 |
#: app/features/mec/booking.php:668 app/features/mec/booking.php:763
|
1754 |
-
#: app/features/mec/single.php:244 app/libraries/main.php:
|
1755 |
msgid "Textarea"
|
1756 |
msgstr "Textbereich"
|
1757 |
|
@@ -1768,13 +1770,13 @@ msgstr "Textbereich"
|
|
1768 |
#: app/features/mec/meta_boxes/search_form.php:704
|
1769 |
#: app/features/mec/meta_boxes/search_form.php:789
|
1770 |
#: app/features/mec/meta_boxes/search_form.php:910
|
1771 |
-
#: app/features/mec/single.php:246 app/libraries/main.php:
|
1772 |
msgid "Checkboxes"
|
1773 |
msgstr "Checkboxes"
|
1774 |
|
1775 |
#: app/features/events.php:2554 app/features/events.php:2642
|
1776 |
#: app/features/mec/booking.php:670 app/features/mec/booking.php:765
|
1777 |
-
#: app/features/mec/single.php:247 app/libraries/main.php:
|
1778 |
msgid "Radio Buttons"
|
1779 |
msgstr "Radio Buttons"
|
1780 |
|
@@ -1854,19 +1856,19 @@ msgstr "Radio Buttons"
|
|
1854 |
#: app/features/mec/meta_boxes/search_form.php:939
|
1855 |
#: app/features/mec/meta_boxes/search_form.php:946
|
1856 |
#: app/features/mec/meta_boxes/search_form.php:967
|
1857 |
-
#: app/features/mec/single.php:248 app/libraries/main.php:
|
1858 |
msgid "Dropdown"
|
1859 |
msgstr "Dropdown"
|
1860 |
|
1861 |
#: app/features/events.php:2556 app/features/events.php:2644
|
1862 |
#: app/features/mec/booking.php:672 app/features/mec/booking.php:767
|
1863 |
-
#: app/libraries/main.php:
|
1864 |
msgid "Agreement"
|
1865 |
msgstr "Zustimmung"
|
1866 |
|
1867 |
#: app/features/events.php:2557 app/features/events.php:2645
|
1868 |
#: app/features/mec/booking.php:673 app/features/mec/booking.php:768
|
1869 |
-
#: app/features/mec/single.php:245 app/libraries/main.php:
|
1870 |
msgid "Paragraph"
|
1871 |
msgstr "Absatz"
|
1872 |
|
@@ -1899,7 +1901,7 @@ msgid "Attendees List"
|
|
1899 |
msgstr "Teilnehmer Liste"
|
1900 |
|
1901 |
#: app/features/events.php:3579 app/features/events.php:3787
|
1902 |
-
#: app/features/ix.php:
|
1903 |
#: app/features/locations.php:58 app/features/locations.php:263
|
1904 |
#: app/features/locations.php:323 app/features/locations.php:325
|
1905 |
#: app/features/locations.php:334
|
@@ -1915,12 +1917,12 @@ msgstr "Teilnehmer Liste"
|
|
1915 |
#: app/features/mec/meta_boxes/search_form.php:708
|
1916 |
#: app/features/mec/meta_boxes/search_form.php:793
|
1917 |
#: app/features/mec/meta_boxes/search_form.php:914
|
1918 |
-
#: app/features/mec/settings.php:
|
1919 |
#: app/features/mec/single.php:435 app/features/popup/event.php:116
|
1920 |
#: app/features/popup/event.php:125 app/features/search.php:74
|
1921 |
-
#: app/libraries/main.php:
|
1922 |
-
#: app/libraries/main.php:
|
1923 |
-
#: app/skins/single.php:
|
1924 |
#: app/skins/single/default.php:243 app/skins/single/default.php:481
|
1925 |
#: app/skins/single/m1.php:173 app/skins/single/m2.php:96
|
1926 |
#: app/skins/single/modern.php:125
|
@@ -1968,13 +1970,13 @@ msgstr "JSON Export"
|
|
1968 |
msgid "Duplicate"
|
1969 |
msgstr "Kopie"
|
1970 |
|
1971 |
-
#: app/features/events.php:3787 app/features/ix.php:
|
1972 |
-
#: app/features/ix.php:
|
1973 |
msgid "Link"
|
1974 |
msgstr "Link"
|
1975 |
|
1976 |
-
#: app/features/events.php:3787 app/features/ix.php:
|
1977 |
-
#: app/features/ix.php:
|
1978 |
#: app/features/locations.php:180 app/features/locations.php:264
|
1979 |
#: app/features/mec/meta_boxes/search_form.php:75
|
1980 |
#: app/features/mec/meta_boxes/search_form.php:161
|
@@ -2000,14 +2002,14 @@ msgstr "%s Tel"
|
|
2000 |
msgid "%s Email"
|
2001 |
msgstr "%s Email"
|
2002 |
|
2003 |
-
#: app/features/events.php:3787 app/features/fes/form.php:
|
2004 |
-
#: app/features/mec/settings.php:
|
2005 |
msgid "Featured Image"
|
2006 |
msgstr "Ausgewähltes Bild"
|
2007 |
|
2008 |
#: app/features/events.php:4116 app/features/fes.php:243
|
2009 |
-
#: app/features/profile/profile.php:155 app/libraries/main.php:
|
2010 |
-
#: app/libraries/main.php:
|
2011 |
msgid "Ticket"
|
2012 |
msgstr "Ticket"
|
2013 |
|
@@ -2075,8 +2077,8 @@ msgstr "Die Veranstaltung wurde entfernt."
|
|
2075 |
msgid "Order Time"
|
2076 |
msgstr "Uhrzeit Bestellung"
|
2077 |
|
2078 |
-
#: app/features/fes.php:243 app/features/wc.php:84 app/libraries/main.php:
|
2079 |
-
#: app/libraries/main.php:
|
2080 |
msgid "Transaction ID"
|
2081 |
msgstr "Transaktions-ID"
|
2082 |
|
@@ -2084,7 +2086,7 @@ msgstr "Transaktions-ID"
|
|
2084 |
msgid "Total Price"
|
2085 |
msgstr "Gesamt Preis"
|
2086 |
|
2087 |
-
#: app/features/fes.php:243 app/libraries/main.php:
|
2088 |
msgid "Gateway"
|
2089 |
msgstr "Gateway"
|
2090 |
|
@@ -2164,8 +2166,8 @@ msgstr "Die Veranstaltung wurde veröffentlicht."
|
|
2164 |
msgid "Go back to events list"
|
2165 |
msgstr "Zurück zur Liste der Veranstaltungen"
|
2166 |
|
2167 |
-
#: app/features/fes/form.php:268 app/features/mec/settings.php:
|
2168 |
-
#: app/features/mec/settings.php:
|
2169 |
msgid "Excerpt"
|
2170 |
msgstr ""
|
2171 |
|
@@ -2181,49 +2183,49 @@ msgid ""
|
|
2181 |
"overwrite in the next import from Google."
|
2182 |
msgstr ""
|
2183 |
|
2184 |
-
#: app/features/fes/form.php:
|
2185 |
#: app/features/mec/meta_boxes/display_options.php:1342
|
2186 |
#: app/libraries/main.php:444
|
2187 |
msgid "Monday"
|
2188 |
msgstr "Montag"
|
2189 |
|
2190 |
-
#: app/features/fes/form.php:
|
2191 |
#: app/features/mec/meta_boxes/display_options.php:1343
|
2192 |
#: app/libraries/main.php:444
|
2193 |
msgid "Tuesday"
|
2194 |
msgstr "Dienstag"
|
2195 |
|
2196 |
-
#: app/features/fes/form.php:
|
2197 |
#: app/features/mec/meta_boxes/display_options.php:1344
|
2198 |
#: app/libraries/main.php:444
|
2199 |
msgid "Wednesday"
|
2200 |
msgstr "Mittwoch"
|
2201 |
|
2202 |
-
#: app/features/fes/form.php:
|
2203 |
#: app/features/mec/meta_boxes/display_options.php:1345
|
2204 |
#: app/libraries/main.php:444
|
2205 |
msgid "Thursday"
|
2206 |
msgstr "Donnerstag"
|
2207 |
|
2208 |
-
#: app/features/fes/form.php:
|
2209 |
#: app/features/mec/meta_boxes/display_options.php:1346
|
2210 |
#: app/libraries/main.php:444
|
2211 |
msgid "Friday"
|
2212 |
msgstr "Freitag"
|
2213 |
|
2214 |
-
#: app/features/fes/form.php:
|
2215 |
#: app/features/mec/meta_boxes/display_options.php:1347
|
2216 |
#: app/libraries/main.php:444
|
2217 |
msgid "Saturday"
|
2218 |
msgstr "Samstag"
|
2219 |
|
2220 |
-
#: app/features/fes/form.php:
|
2221 |
#: app/features/mec/meta_boxes/display_options.php:1341
|
2222 |
#: app/libraries/main.php:444
|
2223 |
msgid "Sunday"
|
2224 |
msgstr "Sonntag"
|
2225 |
|
2226 |
-
#: app/features/fes/form.php:
|
2227 |
msgid ""
|
2228 |
"The event will finish after certain repeats. For example if you set it to "
|
2229 |
"10, the event will finish after 10 repeats."
|
@@ -2231,24 +2233,24 @@ msgstr ""
|
|
2231 |
"Das Event ist nach einer bestimmten Anzahl von Wiederholungen zu Ende. Zum "
|
2232 |
"Beispiel: Bei Eingabe von 10 wird das Event nach 10 Wiederholungen beendet"
|
2233 |
|
2234 |
-
#: app/features/fes/form.php:
|
2235 |
msgid "Note to reviewer"
|
2236 |
msgstr "Zusätzliche Anmerkungen zum Event "
|
2237 |
|
2238 |
-
#: app/features/fes/form.php:
|
2239 |
msgid "User Data"
|
2240 |
msgstr "Benutzerdaten"
|
2241 |
|
2242 |
-
#: app/features/fes/form.php:
|
2243 |
msgid "eg. yourname@gmail.com"
|
2244 |
msgstr "z.B. IhrName@ihrewebseite.de"
|
2245 |
|
2246 |
-
#: app/features/fes/form.php:
|
2247 |
#: app/features/popup/event.php:183
|
2248 |
msgid "eg. John Smith"
|
2249 |
msgstr "z.B. Max Mustermann"
|
2250 |
|
2251 |
-
#: app/features/fes/form.php:
|
2252 |
#, fuzzy
|
2253 |
#| msgid ""
|
2254 |
#| "If you fill it, it will be replaced instead of default event page link. "
|
@@ -2261,51 +2263,51 @@ msgstr ""
|
|
2261 |
"dieser durch einen neuen link ersetzt werden. Vollständigen Link einfügen, "
|
2262 |
"einschließlich http(s)://"
|
2263 |
|
2264 |
-
#: app/features/fes/form.php:
|
2265 |
msgid "Remove Image"
|
2266 |
msgstr "Bild entfernen"
|
2267 |
|
2268 |
-
#: app/features/fes/form.php:
|
2269 |
#: app/features/labels.php:223 app/features/mec.php:465
|
2270 |
#: app/features/mec/meta_boxes/filter.php:72
|
2271 |
-
#: app/features/mec/meta_boxes/filter.php:133 app/libraries/main.php:
|
2272 |
-
#: app/libraries/main.php:
|
2273 |
#: app/skins/single/default.php:221 app/skins/single/default.php:458
|
2274 |
#: app/skins/single/m1.php:76 app/skins/single/modern.php:266
|
2275 |
msgid "Labels"
|
2276 |
msgstr "Labels"
|
2277 |
|
2278 |
-
#: app/features/fes/form.php:
|
2279 |
#: app/features/mec/meta_boxes/filter.php:73
|
2280 |
#: app/features/mec/meta_boxes/filter.php:151
|
2281 |
msgid "Tags"
|
2282 |
msgstr "Schlagworte"
|
2283 |
|
2284 |
-
#: app/features/fes/form.php:
|
2285 |
msgid "Insert your desired tags, comma separated."
|
2286 |
msgstr ""
|
2287 |
"Geben Sie die gewünschten Tags (Schlagworte) durch ein Komma separiert ein"
|
2288 |
|
2289 |
-
#: app/features/fes/form.php:
|
2290 |
-
#: app/features/mec/modules.php:43 app/features/mec/settings.php:
|
2291 |
#: app/features/speakers.php:61 app/libraries/hourlyschedule.php:69
|
2292 |
#: app/libraries/hourlyschedule.php:90 app/libraries/hourlyschedule.php:135
|
2293 |
-
#: app/libraries/main.php:
|
2294 |
-
#: app/libraries/main.php:
|
2295 |
msgid "Speakers"
|
2296 |
msgstr "Sprecher"
|
2297 |
|
2298 |
-
#: app/features/fes/form.php:
|
2299 |
msgid "Speakers Names"
|
2300 |
msgstr "Sprecher Namen"
|
2301 |
|
2302 |
-
#: app/features/fes/form.php:
|
2303 |
#, fuzzy
|
2304 |
#| msgid "Separate names with commas Similar Justin, Cris"
|
2305 |
msgid "Separate names with commas: Justin, Chris"
|
2306 |
msgstr "Unterteile Namen mit Kommas. z.B. Hans, Maier"
|
2307 |
|
2308 |
-
#: app/features/fes/form.php:
|
2309 |
msgid "Submit"
|
2310 |
msgstr "Buchung abschließen"
|
2311 |
|
@@ -2343,7 +2345,7 @@ msgid "MEC - Import / Export"
|
|
2343 |
msgstr "MEC - Import / Export"
|
2344 |
|
2345 |
#: app/features/ix.php:107 app/features/mec/support.php:73
|
2346 |
-
#: app/libraries/main.php:
|
2347 |
msgid "Import / Export"
|
2348 |
msgstr "Import / Export"
|
2349 |
|
@@ -2357,31 +2359,31 @@ msgstr ""
|
|
2357 |
msgid "The file type should be CSV."
|
2358 |
msgstr "Der Datei Typ muss XML oder ICS sein."
|
2359 |
|
2360 |
-
#: app/features/ix.php:224 app/features/ix.php:
|
2361 |
msgid "An error occurred during the file upload! Please check permissions!"
|
2362 |
msgstr ""
|
2363 |
|
2364 |
-
#: app/features/ix.php:280 app/libraries/main.php:
|
2365 |
-
#: app/libraries/main.php:
|
2366 |
msgid "Confirmed"
|
2367 |
msgstr "Bestätigt"
|
2368 |
|
2369 |
-
#: app/features/ix.php:281 app/libraries/main.php:
|
2370 |
-
#: app/libraries/main.php:
|
2371 |
msgid "Rejected"
|
2372 |
msgstr "Abgelehnt"
|
2373 |
|
2374 |
#: app/features/ix.php:285 app/features/mec/booking.php:1032
|
2375 |
#: app/features/mec/booking.php:1054 app/features/mec/modules.php:441
|
2376 |
#: app/features/mec/modules.php:463 app/features/mec/notifications.php:1597
|
2377 |
-
#: app/features/mec/notifications.php:1619 app/features/mec/settings.php:
|
2378 |
-
#: app/features/mec/settings.php:
|
2379 |
-
#: app/features/mec/single.php:522 app/libraries/main.php:
|
2380 |
msgid "Verified"
|
2381 |
msgstr "Verifiziert"
|
2382 |
|
2383 |
#: app/features/ix.php:286 app/features/labels.php:118
|
2384 |
-
#: app/features/labels.php:144 app/libraries/main.php:
|
2385 |
msgid "Canceled"
|
2386 |
msgstr "Abgesagt"
|
2387 |
|
@@ -2401,103 +2403,103 @@ msgstr "Keine Buchungen gefunden"
|
|
2401 |
msgid "Please upload the feed file."
|
2402 |
msgstr ""
|
2403 |
|
2404 |
-
#: app/features/ix.php:
|
2405 |
msgid "Please upload an XML or an ICS file."
|
2406 |
msgstr ""
|
2407 |
|
2408 |
-
#: app/features/ix.php:
|
2409 |
msgid "The file type should be XML or ICS."
|
2410 |
msgstr "Der Datei Typ muss XML oder ICS sein."
|
2411 |
|
2412 |
-
#: app/features/ix.php:
|
2413 |
msgid "The events are imported successfully!"
|
2414 |
msgstr "Die Events wurden erfolgreich importiert!"
|
2415 |
|
2416 |
-
#: app/features/ix.php:
|
2417 |
msgid "Third Party plugin is not installed and activated!"
|
2418 |
msgstr "Drittanbieter-Plugin ist nicht installiert und aktiviert!"
|
2419 |
|
2420 |
-
#: app/features/ix.php:
|
2421 |
msgid "Third Party plugin is invalid!"
|
2422 |
msgstr "Drittanbieter-Plugin ist ungültig!"
|
2423 |
|
2424 |
-
#: app/features/ix.php:
|
2425 |
#, fuzzy
|
2426 |
#| msgid "Both of API key and Calendar ID are required!"
|
2427 |
msgid "API key and Calendar ID are required!"
|
2428 |
msgstr "Beide, API Schlüssel und Calender ID wird benötigt"
|
2429 |
|
2430 |
-
#: app/features/ix.php:
|
2431 |
#, fuzzy
|
2432 |
#| msgid "Please select some events to import!"
|
2433 |
msgid "Please select events to import!"
|
2434 |
msgstr "Bitte wählen Sie einige Veranstaltungen aus zum importieren"
|
2435 |
|
2436 |
-
#: app/features/ix.php:
|
2437 |
#, fuzzy
|
2438 |
#| msgid "Both of API key and Calendar ID are required!"
|
2439 |
msgid "API key and Group URL are required!"
|
2440 |
msgstr "Beide, API Schlüssel und Calender ID wird benötigt"
|
2441 |
|
2442 |
-
#: app/features/ix.php:
|
2443 |
msgid "Check at Meetup"
|
2444 |
msgstr ""
|
2445 |
|
2446 |
-
#: app/features/ix.php:
|
2447 |
msgid "Organizer Tel"
|
2448 |
msgstr "Organisator Telefon"
|
2449 |
|
2450 |
-
#: app/features/ix.php:
|
2451 |
msgid "Organizer Email"
|
2452 |
msgstr "Organisator Email"
|
2453 |
|
2454 |
-
#: app/features/ix.php:
|
2455 |
#, fuzzy
|
2456 |
#| msgid "All of Client ID, Client Secret and Calendar ID are required!"
|
2457 |
msgid "All of Client ID, Client Secret, and Calendar ID are required!"
|
2458 |
msgstr "Dies wird alles benötigt: Client ID, Client Secret und Calender ID!"
|
2459 |
|
2460 |
-
#: app/features/ix.php:
|
2461 |
#, fuzzy, php-format
|
2462 |
#| msgid "All seems good! Please click %s for authenticating your app."
|
2463 |
msgid "All seems good! Please click %s to authenticate your app."
|
2464 |
msgstr ""
|
2465 |
"Alles scheint gut zu sein! Bitte klicken %s um Ihre App zu authentifizieren."
|
2466 |
|
2467 |
-
#: app/features/ix.php:
|
2468 |
msgid "here"
|
2469 |
msgstr ""
|
2470 |
|
2471 |
-
#: app/features/ix.php:
|
2472 |
#, fuzzy
|
2473 |
#| msgid "All of Client App, Client Secret and Calendar ID are required!"
|
2474 |
msgid "Client App, Client Secret, and Calendar ID are all required!"
|
2475 |
msgstr "Dies wird alles benötigt: Client ID, Client Secret und Calender ID!"
|
2476 |
|
2477 |
-
#: app/features/ix.php:
|
2478 |
#, fuzzy, php-format
|
2479 |
#| msgid "%s events added to Google Calendar successfully."
|
2480 |
msgid "%s events added to Google Calendar with success."
|
2481 |
msgstr "%s Events wurden erfolgreich zum Google Kalender hinzugefügt."
|
2482 |
|
2483 |
-
#: app/features/ix.php:
|
2484 |
#, fuzzy, php-format
|
2485 |
#| msgid "%s previously added events get updated."
|
2486 |
msgid "%s Updated previously added events."
|
2487 |
msgstr "%s vorherige hinzugefügte Events wurden aktualisiert."
|
2488 |
|
2489 |
-
#: app/features/ix.php:
|
2490 |
#, php-format
|
2491 |
msgid "%s events failed to add for following reasons: %s"
|
2492 |
msgstr "%s Events wurde aus folgenden Gründen nicht hinzugefügt: %s"
|
2493 |
|
2494 |
-
#: app/features/ix.php:
|
2495 |
#, fuzzy
|
2496 |
#| msgid "Please insert your facebook page's link."
|
2497 |
msgid "Please insert your Facebook page's link."
|
2498 |
msgstr "Bitte Ihren Facebook Seitenlink eingeben."
|
2499 |
|
2500 |
-
#: app/features/ix.php:
|
2501 |
#, fuzzy
|
2502 |
#| msgid ""
|
2503 |
#| "We couldn't recognize your Facebook page. Please check it and provide us "
|
@@ -2509,7 +2511,7 @@ msgstr ""
|
|
2509 |
"Wir konnten Ihre Facebookseite nicht erkennen. Bitte checken Sie das und "
|
2510 |
"stellen Sie uns einen gültigen Facebookseitenlink zur Verfügung."
|
2511 |
|
2512 |
-
#: app/features/ix.php:
|
2513 |
msgid "Please insert your facebook page's link."
|
2514 |
msgstr "Bitte Ihren Facebook Seitenlink eingeben."
|
2515 |
|
@@ -2686,7 +2688,7 @@ msgstr "Zum Google Kalender hinzufügen"
|
|
2686 |
|
2687 |
#: app/features/ix/export_g_calendar.php:93 app/features/mec/booking.php:1034
|
2688 |
#: app/features/mec/modules.php:443 app/features/mec/notifications.php:1599
|
2689 |
-
#: app/features/mec/settings.php:
|
2690 |
msgid "Checking ..."
|
2691 |
msgstr "Überprüfung"
|
2692 |
|
@@ -2709,27 +2711,27 @@ msgstr ""
|
|
2709 |
msgid "XML Feed"
|
2710 |
msgstr ""
|
2711 |
|
2712 |
-
#: app/features/ix/import.php:30 app/features/ix/import.php:
|
2713 |
-
#: app/features/ix/import.php:
|
2714 |
msgid "Upload & Import"
|
2715 |
msgstr "Hochladen & Importieren"
|
2716 |
|
2717 |
-
#: app/features/ix/import.php:
|
2718 |
msgid "Import .ics File"
|
2719 |
msgstr ""
|
2720 |
|
2721 |
-
#: app/features/ix/import.php:
|
2722 |
#, php-format
|
2723 |
msgid ""
|
2724 |
"ICS format supports by many different service providers like Facebook. Apple "
|
2725 |
"Calendar etc. You can import your ics file into the %s using this form."
|
2726 |
msgstr ""
|
2727 |
|
2728 |
-
#: app/features/ix/import.php:
|
2729 |
msgid "ICS Feed"
|
2730 |
msgstr ""
|
2731 |
|
2732 |
-
#: app/features/ix/import.php:
|
2733 |
#: app/features/mec/booking.php:91 app/features/mec/booking.php:435
|
2734 |
#: app/features/mec/booking.php:451 app/features/mec/booking.php:469
|
2735 |
#: app/features/mec/booking.php:546
|
@@ -2741,7 +2743,7 @@ msgstr ""
|
|
2741 |
msgid "%s is required to use this feature."
|
2742 |
msgstr ""
|
2743 |
|
2744 |
-
#: app/features/ix/import.php:
|
2745 |
#: app/features/ix/sync.php:22 app/features/mec/booking.php:91
|
2746 |
#: app/features/mec/booking.php:435 app/features/mec/booking.php:451
|
2747 |
#: app/features/mec/booking.php:469 app/features/mec/booking.php:546
|
@@ -2759,13 +2761,13 @@ msgstr ""
|
|
2759 |
msgid "Pro version of Modern Events Calendar"
|
2760 |
msgstr "Pro Version vom Modernen Event Calendar"
|
2761 |
|
2762 |
-
#: app/features/ix/import.php:
|
2763 |
#, fuzzy
|
2764 |
#| msgid "Booking"
|
2765 |
msgid "Import Booking CSV File"
|
2766 |
msgstr "Buchung / Reservierung"
|
2767 |
|
2768 |
-
#: app/features/ix/import.php:
|
2769 |
#, php-format
|
2770 |
msgid ""
|
2771 |
"You can export bookings from %s using the booking menu in source website. "
|
@@ -2773,13 +2775,13 @@ msgid ""
|
|
2773 |
"form in to your target website."
|
2774 |
msgstr ""
|
2775 |
|
2776 |
-
#: app/features/ix/import.php:
|
2777 |
msgid ""
|
2778 |
"Please note that you should create (or imports) events and tickets before "
|
2779 |
"importing the bookings otherwise booking won't import due to lack of data."
|
2780 |
msgstr ""
|
2781 |
|
2782 |
-
#: app/features/ix/import.php:
|
2783 |
#, fuzzy
|
2784 |
#| msgid "File"
|
2785 |
msgid "CSV File"
|
@@ -3203,8 +3205,8 @@ msgstr "Event %s"
|
|
3203 |
|
3204 |
#: app/features/locations.php:59 app/features/mec.php:466
|
3205 |
#: app/features/mec/dashboard.php:281 app/features/mec/meta_boxes/filter.php:70
|
3206 |
-
#: app/features/mec/meta_boxes/filter.php:97 app/libraries/main.php:
|
3207 |
-
#: app/libraries/main.php:
|
3208 |
msgid "Locations"
|
3209 |
msgstr "Orte"
|
3210 |
|
@@ -3272,7 +3274,7 @@ msgstr ""
|
|
3272 |
"z.B. Karlsruhe Schlosshotel oder Frankfurt Allianz oder Dortmund "
|
3273 |
"Westfalenhalle"
|
3274 |
|
3275 |
-
#: app/features/locations.php:346 app/features/mec/settings.php:
|
3276 |
#: app/features/popup/event.php:143 app/widgets/single.php:117
|
3277 |
msgid "Event Location"
|
3278 |
msgstr "Veranstaltungsort"
|
@@ -3311,8 +3313,8 @@ msgstr "Bild wählen"
|
|
3311 |
msgid "Don't show map in single event page"
|
3312 |
msgstr "Karte in Einzelansicht nicht anzeigen"
|
3313 |
|
3314 |
-
#: app/features/locations.php:403 app/libraries/main.php:
|
3315 |
-
#: app/libraries/main.php:
|
3316 |
msgid "Other Locations"
|
3317 |
msgstr "Andere Orte"
|
3318 |
|
@@ -3396,7 +3398,7 @@ msgstr "Support"
|
|
3396 |
#: app/features/mec.php:467 app/features/mec/dashboard.php:288
|
3397 |
#: app/features/mec/meta_boxes/filter.php:71
|
3398 |
#: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
|
3399 |
-
#: app/libraries/main.php:
|
3400 |
msgid "Organizers"
|
3401 |
msgstr "Veranstalter"
|
3402 |
|
@@ -3517,7 +3519,7 @@ msgid "Modern Events Calendar (Lite)"
|
|
3517 |
msgstr "Moderner Event Kalender (Lite)"
|
3518 |
|
3519 |
#: app/features/mec.php:1207 app/features/mec/dashboard.php:299
|
3520 |
-
#: app/features/mec/settings.php:
|
3521 |
msgid "Upcoming Events"
|
3522 |
msgstr "Bevorstehende Events"
|
3523 |
|
@@ -3599,7 +3601,7 @@ msgstr ""
|
|
3599 |
|
3600 |
#: app/features/mec/booking.php:70 app/features/mec/messages.php:13
|
3601 |
#: app/features/mec/modules.php:15 app/features/mec/notifications.php:12
|
3602 |
-
#: app/features/mec/settings.php:
|
3603 |
#: app/features/mec/styling.php:35
|
3604 |
msgid "Search..."
|
3605 |
msgstr "Suche…"
|
@@ -3616,9 +3618,9 @@ msgstr "Suche…"
|
|
3616 |
#: app/features/mec/notifications.php:1532
|
3617 |
#: app/features/mec/notifications.php:1544
|
3618 |
#: app/features/mec/notifications.php:1616
|
3619 |
-
#: app/features/mec/notifications.php:1630 app/features/mec/settings.php:
|
3620 |
-
#: app/features/mec/settings.php:
|
3621 |
-
#: app/features/mec/settings.php:
|
3622 |
#: app/features/mec/single.php:21 app/features/mec/single.php:467
|
3623 |
#: app/features/mec/single.php:477 app/features/mec/single.php:519
|
3624 |
#: app/features/mec/single.php:533 app/features/mec/styles.php:11
|
@@ -3868,8 +3870,8 @@ msgid ""
|
|
3868 |
msgstr ""
|
3869 |
|
3870 |
#: app/features/mec/booking.php:286 app/features/mec/booking.php:288
|
3871 |
-
#: app/features/mec/booking.php:298 app/features/mec/settings.php:
|
3872 |
-
#: app/features/mec/settings.php:
|
3873 |
msgid "Thank You Page"
|
3874 |
msgstr "Danke Seite"
|
3875 |
|
@@ -3882,15 +3884,15 @@ msgstr ""
|
|
3882 |
"es leer, wenn Sie es deaktivieren möchten."
|
3883 |
|
3884 |
#: app/features/mec/booking.php:306 app/features/mec/booking.php:311
|
3885 |
-
#: app/features/mec/settings.php:
|
3886 |
msgid "Thank You Page Time Interval"
|
3887 |
msgstr "Dauer bis zur Weiterleitung auf die Danke Seite"
|
3888 |
|
3889 |
-
#: app/features/mec/booking.php:308 app/features/mec/settings.php:
|
3890 |
msgid "2000 mean 2 seconds"
|
3891 |
msgstr "2000 bedeutet 2 Sekunden"
|
3892 |
|
3893 |
-
#: app/features/mec/booking.php:312 app/features/mec/settings.php:
|
3894 |
msgid ""
|
3895 |
"Waiting time before redirecting to thank you page. It's in miliseconds so "
|
3896 |
"2000 means 2 seconds."
|
@@ -3958,7 +3960,7 @@ msgstr "Automatische Bestätigung für kostenpflichtige Buchungen"
|
|
3958 |
msgid "Send confirmation email in auto confirmation mode"
|
3959 |
msgstr ""
|
3960 |
|
3961 |
-
#: app/features/mec/booking.php:432 app/libraries/main.php:
|
3962 |
#, fuzzy
|
3963 |
#| msgid "Booking"
|
3964 |
msgid "Booking Shortcode"
|
@@ -3992,7 +3994,7 @@ msgid ""
|
|
3992 |
msgstr ""
|
3993 |
|
3994 |
#: app/features/mec/booking.php:466 app/features/mec/booking.php:854
|
3995 |
-
#: app/libraries/main.php:
|
3996 |
msgid "Taxes / Fees"
|
3997 |
msgstr "Steuern/Gebühren"
|
3998 |
|
@@ -4004,7 +4006,7 @@ msgstr "Modul für Gebühren/Steuern aktivieren"
|
|
4004 |
msgid "Add Fee"
|
4005 |
msgstr "Gebühr hinzufügen"
|
4006 |
|
4007 |
-
#: app/features/mec/booking.php:543 app/libraries/main.php:
|
4008 |
msgid "Ticket Variations & Options"
|
4009 |
msgstr ""
|
4010 |
|
@@ -4164,20 +4166,20 @@ msgstr ""
|
|
4164 |
|
4165 |
#: app/features/mec/booking.php:1029 app/features/mec/messages.php:78
|
4166 |
#: app/features/mec/modules.php:438 app/features/mec/notifications.php:1594
|
4167 |
-
#: app/features/mec/settings.php:
|
4168 |
#: app/features/mec/styles.php:62 app/features/mec/styling.php:340
|
4169 |
msgid "Saved"
|
4170 |
msgstr "Gesichert"
|
4171 |
|
4172 |
#: app/features/mec/booking.php:1030 app/features/mec/messages.php:79
|
4173 |
#: app/features/mec/modules.php:439 app/features/mec/notifications.php:1595
|
4174 |
-
#: app/features/mec/settings.php:
|
4175 |
#: app/features/mec/styles.php:63 app/features/mec/styling.php:341
|
4176 |
msgid "Settings Saved!"
|
4177 |
msgstr "Einstellungen gespeichert!"
|
4178 |
|
4179 |
#: app/features/mec/booking.php:1056 app/features/mec/modules.php:465
|
4180 |
-
#: app/features/mec/notifications.php:1621 app/features/mec/settings.php:
|
4181 |
#: app/features/mec/single.php:524
|
4182 |
msgid "Please Refresh Page"
|
4183 |
msgstr "Bitte Seiten Refresh vornehmen"
|
@@ -4294,7 +4296,7 @@ msgid "Download Settings"
|
|
4294 |
msgstr "Einstellungen Herunterladen"
|
4295 |
|
4296 |
#: app/features/mec/messages.php:28 app/features/mec/support-page.php:102
|
4297 |
-
#: app/features/mec/support.php:66 app/libraries/main.php:
|
4298 |
msgid "Messages"
|
4299 |
msgstr "Nachrichten"
|
4300 |
|
@@ -4325,9 +4327,9 @@ msgstr "Skin"
|
|
4325 |
#: app/features/mec/meta_boxes/display_options.php:974
|
4326 |
#: app/features/mec/meta_boxes/display_options.php:1305
|
4327 |
#: app/features/mec/meta_boxes/display_options.php:1603
|
4328 |
-
#: app/features/mec/settings.php:
|
4329 |
-
#: app/features/mec/settings.php:
|
4330 |
-
#: app/features/mec/settings.php:
|
4331 |
#: app/features/popup/shortcode.php:68 app/features/popup/shortcode.php:102
|
4332 |
#: app/features/popup/shortcode.php:199 app/features/popup/shortcode.php:236
|
4333 |
#: app/features/popup/shortcode.php:250 app/features/popup/shortcode.php:283
|
@@ -4338,8 +4340,8 @@ msgstr "Klassisch"
|
|
4338 |
|
4339 |
#: app/features/mec/meta_boxes/display_options.php:44
|
4340 |
#: app/features/mec/meta_boxes/display_options.php:296
|
4341 |
-
#: app/features/mec/settings.php:
|
4342 |
-
#: app/features/mec/settings.php:
|
4343 |
#: app/features/popup/shortcode.php:73 app/features/popup/shortcode.php:112
|
4344 |
msgid "Minimal"
|
4345 |
msgstr "Minimal"
|
@@ -4350,10 +4352,10 @@ msgstr "Minimal"
|
|
4350 |
#: app/features/mec/meta_boxes/display_options.php:976
|
4351 |
#: app/features/mec/meta_boxes/display_options.php:1303
|
4352 |
#: app/features/mec/meta_boxes/display_options.php:1605
|
4353 |
-
#: app/features/mec/settings.php:
|
4354 |
-
#: app/features/mec/settings.php:
|
4355 |
-
#: app/features/mec/settings.php:
|
4356 |
-
#: app/features/mec/settings.php:
|
4357 |
#: app/features/popup/shortcode.php:78 app/features/popup/shortcode.php:117
|
4358 |
#: app/features/popup/shortcode.php:185 app/features/popup/shortcode.php:209
|
4359 |
#: app/features/popup/shortcode.php:263 app/features/popup/shortcode.php:306
|
@@ -4361,13 +4363,13 @@ msgid "Modern"
|
|
4361 |
msgstr "Modern"
|
4362 |
|
4363 |
#: app/features/mec/meta_boxes/display_options.php:46
|
4364 |
-
#: app/features/mec/settings.php:
|
4365 |
#: app/features/popup/shortcode.php:83
|
4366 |
msgid "Standard"
|
4367 |
msgstr "Standard"
|
4368 |
|
4369 |
#: app/features/mec/meta_boxes/display_options.php:47
|
4370 |
-
#: app/features/mec/settings.php:
|
4371 |
#: app/features/popup/shortcode.php:88
|
4372 |
msgid "Accordion"
|
4373 |
msgstr "Accordion"
|
@@ -4780,9 +4782,9 @@ msgstr "Zeige Monatsteilung"
|
|
4780 |
#: app/features/mec/meta_boxes/display_options.php:975
|
4781 |
#: app/features/mec/meta_boxes/display_options.php:1304
|
4782 |
#: app/features/mec/meta_boxes/display_options.php:1604
|
4783 |
-
#: app/features/mec/settings.php:
|
4784 |
-
#: app/features/mec/settings.php:
|
4785 |
-
#: app/features/mec/settings.php:
|
4786 |
#: app/features/popup/shortcode.php:107 app/features/popup/shortcode.php:146
|
4787 |
#: app/features/popup/shortcode.php:161 app/features/popup/shortcode.php:204
|
4788 |
#: app/features/popup/shortcode.php:268 app/features/popup/shortcode.php:301
|
@@ -4792,8 +4794,8 @@ msgstr "Clean"
|
|
4792 |
#: app/features/mec/meta_boxes/display_options.php:298
|
4793 |
#: app/features/mec/meta_boxes/display_options.php:714
|
4794 |
#: app/features/mec/meta_boxes/display_options.php:978
|
4795 |
-
#: app/features/mec/settings.php:
|
4796 |
-
#: app/features/mec/settings.php:
|
4797 |
#: app/features/popup/shortcode.php:122 app/features/popup/shortcode.php:171
|
4798 |
#: app/features/popup/shortcode.php:219
|
4799 |
msgid "Simple"
|
@@ -4807,8 +4809,8 @@ msgstr "Farbenfroh"
|
|
4807 |
#: app/features/mec/meta_boxes/display_options.php:300
|
4808 |
#: app/features/mec/meta_boxes/display_options.php:713
|
4809 |
#: app/features/mec/meta_boxes/display_options.php:977
|
4810 |
-
#: app/features/mec/settings.php:
|
4811 |
-
#: app/features/mec/settings.php:
|
4812 |
#: app/features/popup/shortcode.php:132 app/features/popup/shortcode.php:166
|
4813 |
#: app/features/popup/shortcode.php:214
|
4814 |
msgid "Novel"
|
@@ -4858,15 +4860,15 @@ msgstr "Standardansicht"
|
|
4858 |
|
4859 |
#: app/features/mec/meta_boxes/display_options.php:700
|
4860 |
#: app/features/mec/meta_boxes/display_options.php:724
|
4861 |
-
#: app/libraries/main.php:364 app/libraries/main.php:
|
4862 |
-
#: app/libraries/main.php:
|
4863 |
msgid "List View"
|
4864 |
msgstr "Listenansicht"
|
4865 |
|
4866 |
#: app/features/mec/meta_boxes/display_options.php:701
|
4867 |
#: app/features/mec/meta_boxes/display_options.php:745
|
4868 |
-
#: app/libraries/main.php:365 app/libraries/main.php:
|
4869 |
-
#: app/libraries/main.php:
|
4870 |
msgid "Grid View"
|
4871 |
msgstr "Rasterdarstellung"
|
4872 |
|
@@ -4880,8 +4882,8 @@ msgstr "Stundenplan"
|
|
4880 |
|
4881 |
#: app/features/mec/meta_boxes/display_options.php:703
|
4882 |
#: app/features/mec/meta_boxes/display_options.php:766
|
4883 |
-
#: app/libraries/main.php:368 app/libraries/main.php:
|
4884 |
-
#: app/libraries/main.php:
|
4885 |
msgid "Yearly View"
|
4886 |
msgstr "Jahresansicht"
|
4887 |
|
@@ -4892,15 +4894,15 @@ msgstr "Monatliche Kalenderansicht"
|
|
4892 |
|
4893 |
#: app/features/mec/meta_boxes/display_options.php:705
|
4894 |
#: app/features/mec/meta_boxes/display_options.php:815
|
4895 |
-
#: app/libraries/main.php:371 app/libraries/main.php:
|
4896 |
-
#: app/libraries/main.php:
|
4897 |
msgid "Weekly View"
|
4898 |
msgstr "Wochenansicht"
|
4899 |
|
4900 |
#: app/features/mec/meta_boxes/display_options.php:706
|
4901 |
#: app/features/mec/meta_boxes/display_options.php:825
|
4902 |
-
#: app/libraries/main.php:370 app/libraries/main.php:
|
4903 |
-
#: app/libraries/main.php:
|
4904 |
msgid "Daily View"
|
4905 |
msgstr "Tagesansicht"
|
4906 |
|
@@ -5347,7 +5349,7 @@ msgstr "Geben Sie die gewünschten Tags (Schlagworte) durch Komma getrennt ein"
|
|
5347 |
msgid "Choose your desired authors for filtering the events."
|
5348 |
msgstr "Wählen Sie die gewünschten Autoren zum Filtern aus"
|
5349 |
|
5350 |
-
#: app/features/mec/meta_boxes/filter.php:183 app/features/mec/settings.php:
|
5351 |
msgid "Expired Events"
|
5352 |
msgstr "Abgelaufene Events"
|
5353 |
|
@@ -5422,11 +5424,11 @@ msgstr "Such Formular anzeigen"
|
|
5422 |
#: app/features/mec/meta_boxes/search_form.php:723
|
5423 |
#: app/features/mec/meta_boxes/search_form.php:808
|
5424 |
#: app/features/mec/meta_boxes/search_form.php:929
|
5425 |
-
#: app/features/mec/settings.php:
|
5426 |
#: app/features/mec/single.php:440 app/features/search.php:86
|
5427 |
#: app/features/speakers.php:60 app/features/speakers.php:283
|
5428 |
-
#: app/libraries/main.php:
|
5429 |
-
#: app/libraries/skins.php:
|
5430 |
msgid "Speaker"
|
5431 |
msgstr "Sprecher"
|
5432 |
|
@@ -5441,9 +5443,9 @@ msgstr "Sprecher"
|
|
5441 |
#: app/features/mec/meta_boxes/search_form.php:730
|
5442 |
#: app/features/mec/meta_boxes/search_form.php:815
|
5443 |
#: app/features/mec/meta_boxes/search_form.php:936
|
5444 |
-
#: app/features/mec/settings.php:
|
5445 |
#: app/features/mec/single.php:449 app/features/search.php:92
|
5446 |
-
#: app/libraries/skins.php:
|
5447 |
msgid "Tag"
|
5448 |
msgstr "Schlagwort"
|
5449 |
|
@@ -5598,7 +5600,7 @@ msgid ""
|
|
5598 |
"new menu on the Dashboard > MEC"
|
5599 |
msgstr ""
|
5600 |
|
5601 |
-
#: app/features/mec/modules.php:58 app/libraries/main.php:
|
5602 |
#, fuzzy
|
5603 |
#| msgid "Google Maps Options"
|
5604 |
msgid "Map Options"
|
@@ -5622,8 +5624,8 @@ msgstr "Google Maps API"
|
|
5622 |
msgid "Google Map Options"
|
5623 |
msgstr "Google Maps Einstellungen"
|
5624 |
|
5625 |
-
#: app/features/mec/modules.php:76 app/features/mec/settings.php:
|
5626 |
-
#: app/features/mec/settings.php:
|
5627 |
msgid "Required!"
|
5628 |
msgstr "Erforderlich (Pflichtfeld)"
|
5629 |
|
@@ -5691,7 +5693,7 @@ msgstr ""
|
|
5691 |
msgid "Fullscreen Button"
|
5692 |
msgstr ""
|
5693 |
|
5694 |
-
#: app/features/mec/modules.php:167 app/libraries/main.php:
|
5695 |
msgid "Export Options"
|
5696 |
msgstr "Export Optionen"
|
5697 |
|
@@ -5706,7 +5708,7 @@ msgstr ""
|
|
5706 |
msgid "Google Calendar"
|
5707 |
msgstr "Google Calendar"
|
5708 |
|
5709 |
-
#: app/features/mec/modules.php:194 app/libraries/main.php:
|
5710 |
#: app/modules/local-time/details.php:45 app/modules/local-time/type1.php:42
|
5711 |
#: app/widgets/single.php:101
|
5712 |
msgid "Local Time"
|
@@ -5718,7 +5720,7 @@ msgstr ""
|
|
5718 |
"Zeige die Eventzeit basierend auf der Ortszeit des Besuchers auf der "
|
5719 |
"Eventseite"
|
5720 |
|
5721 |
-
#: app/features/mec/modules.php:208 app/libraries/main.php:
|
5722 |
#: app/modules/qrcode/details.php:38 app/widgets/single.php:157
|
5723 |
msgid "QR Code"
|
5724 |
msgstr "QR Code"
|
@@ -5729,7 +5731,7 @@ msgstr ""
|
|
5729 |
"Zeigen Sie QR-Code des Events in der Detailseite und in der Buchungsrechnung "
|
5730 |
"an"
|
5731 |
|
5732 |
-
#: app/features/mec/modules.php:226 app/libraries/main.php:
|
5733 |
#: app/modules/weather/darksky.php:15 app/modules/weather/weatherapi.php:16
|
5734 |
msgid "Weather"
|
5735 |
msgstr "Wetter"
|
@@ -5770,7 +5772,7 @@ msgstr ""
|
|
5770 |
msgid "Show social network module"
|
5771 |
msgstr "Modul für Soziale Netzwerke anzeigen"
|
5772 |
|
5773 |
-
#: app/features/mec/modules.php:299 app/libraries/main.php:
|
5774 |
#: app/modules/next-event/details.php:136 app/widgets/single.php:141
|
5775 |
msgid "Next Event"
|
5776 |
msgstr "Nächstes Event"
|
@@ -5831,7 +5833,7 @@ msgstr "Fügt Buchungsaktivitäten dem Benutzerprofil hinzu"
|
|
5831 |
msgid "Add events menu to user profile"
|
5832 |
msgstr "Fügt Buchungsaktivitäten dem Benutzerprofil hinzu"
|
5833 |
|
5834 |
-
#: app/features/mec/modules.php:376 app/libraries/main.php:
|
5835 |
#, fuzzy
|
5836 |
#| msgid "Mailchimp Integration"
|
5837 |
msgid "LearnDash Integration"
|
@@ -5849,7 +5851,7 @@ msgstr "Mailchimp Integration deaktivieren"
|
|
5849 |
msgid "LearnDash plugin should be installed and activated."
|
5850 |
msgstr "Drittanbieter-Plugin ist nicht installiert und aktiviert!"
|
5851 |
|
5852 |
-
#: app/features/mec/modules.php:386 app/libraries/main.php:
|
5853 |
#, fuzzy
|
5854 |
#| msgid "Mailchimp Integration"
|
5855 |
msgid "PaidMembership Pro Integration"
|
@@ -6589,7 +6591,7 @@ msgstr "Download ICS Datei"
|
|
6589 |
msgid "Add to Google Calendar Links for next 20 occurrences"
|
6590 |
msgstr ""
|
6591 |
|
6592 |
-
#: app/features/mec/notifications.php:191 app/libraries/main.php:
|
6593 |
msgid "Booking Verification"
|
6594 |
msgstr "Verifizierung der Buchung"
|
6595 |
|
@@ -6636,7 +6638,7 @@ msgid "Booking cancellation link."
|
|
6636 |
msgstr "Link zur Stornierung der Buchung"
|
6637 |
|
6638 |
#: app/features/mec/notifications.php:494 app/features/notifications.php:164
|
6639 |
-
#: app/libraries/main.php:
|
6640 |
#, fuzzy
|
6641 |
#| msgid "Booking Verification"
|
6642 |
msgid "Booking Rejection"
|
@@ -6672,7 +6674,7 @@ msgid "Send the email to the booked user"
|
|
6672 |
msgstr "Sendet die Email zum Buchungs "
|
6673 |
|
6674 |
#: app/features/mec/notifications.php:666 app/features/notifications.php:170
|
6675 |
-
#: app/libraries/main.php:
|
6676 |
msgid "Booking Cancellation"
|
6677 |
msgstr "Buchung stornieren"
|
6678 |
|
@@ -6694,7 +6696,7 @@ msgstr ""
|
|
6694 |
msgid "Admin booking management link."
|
6695 |
msgstr "Admin-link zur Buchungsverwaltung"
|
6696 |
|
6697 |
-
#: app/features/mec/notifications.php:824 app/libraries/main.php:
|
6698 |
msgid "Admin"
|
6699 |
msgstr "Admin"
|
6700 |
|
@@ -6711,7 +6713,7 @@ msgstr ""
|
|
6711 |
"Informieren, dass eine neue Buchung eingegangen ist."
|
6712 |
|
6713 |
#: app/features/mec/notifications.php:979 app/features/notifications.php:176
|
6714 |
-
#: app/libraries/main.php:
|
6715 |
#, fuzzy
|
6716 |
#| msgid "Event Color"
|
6717 |
msgid "Event Soldout"
|
@@ -6734,7 +6736,7 @@ msgstr ""
|
|
6734 |
"Informieren, dass eine neue Buchung eingegangen ist."
|
6735 |
|
6736 |
#: app/features/mec/notifications.php:1121 app/features/notifications.php:173
|
6737 |
-
#: app/libraries/main.php:
|
6738 |
msgid "Booking Reminder"
|
6739 |
msgstr "Buchungs Erinnerung"
|
6740 |
|
@@ -6764,8 +6766,8 @@ msgstr ""
|
|
6764 |
msgid "only once per hour"
|
6765 |
msgstr "nur einmal pro Tag"
|
6766 |
|
6767 |
-
#: app/features/mec/notifications.php:1203 app/libraries/main.php:
|
6768 |
-
#: app/libraries/main.php:
|
6769 |
#, fuzzy
|
6770 |
#| msgid "Hour"
|
6771 |
msgid "Hours"
|
@@ -6780,7 +6782,7 @@ msgid "Please, insert comma to separate reminder hours."
|
|
6780 |
msgstr ""
|
6781 |
|
6782 |
#: app/features/mec/notifications.php:1288 app/features/popup/event.php:253
|
6783 |
-
#: app/libraries/main.php:
|
6784 |
msgid "New Event"
|
6785 |
msgstr "Neue Veranstaltung"
|
6786 |
|
@@ -6816,8 +6818,8 @@ msgid "Status of event"
|
|
6816 |
msgstr "Status der Veranstaltung"
|
6817 |
|
6818 |
#: app/features/mec/notifications.php:1392
|
6819 |
-
#: app/features/mec/notifications.php:1503 app/features/mec/settings.php:
|
6820 |
-
#: app/features/mec/settings.php:
|
6821 |
msgid "Event Note"
|
6822 |
msgstr "Veranstaltungsnotiz"
|
6823 |
|
@@ -6826,7 +6828,7 @@ msgstr "Veranstaltungsnotiz"
|
|
6826 |
msgid "Admin events management link."
|
6827 |
msgstr "Admin-link zur Veranstaltungsverwaltung"
|
6828 |
|
6829 |
-
#: app/features/mec/notifications.php:1408 app/libraries/main.php:
|
6830 |
msgid "User Event Publishing"
|
6831 |
msgstr "Nutzer Event wurde veröffentlicht."
|
6832 |
|
@@ -6846,7 +6848,7 @@ msgstr ""
|
|
6846 |
"Wird nach dem Hinzufügen einer neuen Veranstaltung aus der Frontend-"
|
6847 |
"Übermittlung oder dem Backend versandt."
|
6848 |
|
6849 |
-
#: app/features/mec/notifications.php:1517 app/libraries/main.php:
|
6850 |
#, fuzzy
|
6851 |
#| msgid "Notifications"
|
6852 |
msgid "Notifications Per Event"
|
@@ -6928,62 +6930,62 @@ msgstr "E-Mail Inhalt darf nicht leer sein!"
|
|
6928 |
msgid "There was an error please try again!"
|
6929 |
msgstr "Es ist ein Fehler aufgetreten, bitte erneut Versuchen!"
|
6930 |
|
6931 |
-
#: app/features/mec/settings.php:
|
6932 |
msgid "Hide Events"
|
6933 |
msgstr "Events verbergen"
|
6934 |
|
6935 |
-
#: app/features/mec/settings.php:
|
6936 |
msgid "On Event Start"
|
6937 |
msgstr "Am Event Start"
|
6938 |
|
6939 |
-
#: app/features/mec/settings.php:
|
6940 |
msgid "+1 Hour after start"
|
6941 |
msgstr "+1 Stunde nach dem Start"
|
6942 |
|
6943 |
-
#: app/features/mec/settings.php:
|
6944 |
msgid "+2 Hours after start"
|
6945 |
msgstr "+2 Stunden nach dem Start"
|
6946 |
|
6947 |
-
#: app/features/mec/settings.php:
|
6948 |
msgid "On Event End"
|
6949 |
msgstr "Am Event Ende"
|
6950 |
|
6951 |
-
#: app/features/mec/settings.php:
|
6952 |
msgid ""
|
6953 |
"This option is for showing start/end time of events on frontend of website."
|
6954 |
msgstr ""
|
6955 |
"Diese Option ist um die Start/Endezeit von Events im Frontend der Webseite "
|
6956 |
"anzuzeigen"
|
6957 |
|
6958 |
-
#: app/features/mec/settings.php:
|
6959 |
#, fuzzy
|
6960 |
#| msgid "Multiple Day Events"
|
6961 |
msgid "Multiple Day Events Show"
|
6962 |
msgstr "Mehrtagesveranstaltung"
|
6963 |
|
6964 |
-
#: app/features/mec/settings.php:
|
6965 |
#, fuzzy
|
6966 |
#| msgid "Show only first day on List/Grid/Slider skins"
|
6967 |
msgid "First day on list/grid/slider/agenda skins"
|
6968 |
msgstr "Zeige nur den ersten Tag auf Listen/Raster(Grid)/Slider skins."
|
6969 |
|
6970 |
-
#: app/features/mec/settings.php:
|
6971 |
#, fuzzy
|
6972 |
#| msgid "Show only first day on all skins"
|
6973 |
msgid "First day on all skins"
|
6974 |
msgstr "Nur den ersten Tag in allen Ansichten zeigen"
|
6975 |
|
6976 |
-
#: app/features/mec/settings.php:
|
6977 |
#, fuzzy
|
6978 |
#| msgid "Add Day"
|
6979 |
msgid "All days"
|
6980 |
msgstr "Tag hinzufügen"
|
6981 |
|
6982 |
-
#: app/features/mec/settings.php:
|
6983 |
msgid "Multiple Day Events"
|
6984 |
msgstr "Mehrtagesveranstaltung"
|
6985 |
|
6986 |
-
#: app/features/mec/settings.php:
|
6987 |
msgid ""
|
6988 |
"For showing all days of multiple day events on frontend or only show the "
|
6989 |
"first day."
|
@@ -6991,68 +6993,50 @@ msgstr ""
|
|
6991 |
"Um alle Tage anzuzeigen bei Events über mehrere Tage im Frontend oder nur "
|
6992 |
"den ersten Tag anzeigen"
|
6993 |
|
6994 |
-
#: app/features/mec/settings.php:
|
6995 |
msgid "Remove MEC Data on Plugin Uninstall"
|
6996 |
msgstr "Entfernen von MEC Data auf dem Plugin Deinstallierer"
|
6997 |
|
6998 |
-
#: app/features/mec/settings.php:
|
6999 |
-
#, fuzzy
|
7000 |
-
#| msgid "No Search Options"
|
7001 |
-
msgid "Sender Name"
|
7002 |
-
msgstr "Keine Suchoptionen"
|
7003 |
-
|
7004 |
-
#: app/features/mec/settings.php:115
|
7005 |
-
msgid "e.g. Webnus"
|
7006 |
-
msgstr "z.B. Webnus"
|
7007 |
-
|
7008 |
-
#: app/features/mec/settings.php:122
|
7009 |
-
msgid "Sender Email"
|
7010 |
-
msgstr "Absender (E-Mail)"
|
7011 |
-
|
7012 |
-
#: app/features/mec/settings.php:125
|
7013 |
-
msgid "e.g. info@webnus.biz"
|
7014 |
-
msgstr "z.B. info@webnus.biz"
|
7015 |
-
|
7016 |
-
#: app/features/mec/settings.php:131
|
7017 |
msgid "Exclude Date Suffix"
|
7018 |
msgstr "Ausschlussdatum Suffix"
|
7019 |
|
7020 |
-
#: app/features/mec/settings.php:
|
7021 |
msgid "Remove suffix from calendars"
|
7022 |
msgstr "Suffix aus den Kalendern entfernen"
|
7023 |
|
7024 |
-
#: app/features/mec/settings.php:
|
7025 |
#, fuzzy
|
7026 |
#| msgid "Remove suffix from calendars"
|
7027 |
msgid "Remove \"Th\" on calendar"
|
7028 |
msgstr "Suffix aus den Kalendern entfernen"
|
7029 |
|
7030 |
-
#: app/features/mec/settings.php:
|
7031 |
msgid ""
|
7032 |
"Checked this checkbox to remove 'Th' on calendar ( ex: '12Th' remove Th, "
|
7033 |
"showing just '12' )"
|
7034 |
msgstr ""
|
7035 |
|
7036 |
-
#: app/features/mec/settings.php:
|
7037 |
msgid "Schema"
|
7038 |
msgstr ""
|
7039 |
|
7040 |
-
#: app/features/mec/settings.php:
|
7041 |
#, fuzzy
|
7042 |
#| msgid "Enable coupons module"
|
7043 |
msgid "Enable Schema Code"
|
7044 |
msgstr "Gutscheinmodul aktivieren"
|
7045 |
|
7046 |
-
#: app/features/mec/settings.php:
|
7047 |
msgid "You can enable/disable Schema scripts"
|
7048 |
msgstr ""
|
7049 |
|
7050 |
-
#: app/features/mec/settings.php:
|
7051 |
-
#: app/libraries/main.php:
|
7052 |
msgid "Weekdays"
|
7053 |
msgstr "Wochentage"
|
7054 |
|
7055 |
-
#: app/features/mec/settings.php:
|
7056 |
#, fuzzy
|
7057 |
#| msgid ""
|
7058 |
#| "Proceed with caution. Default is set to Monday, Tuesday, Wednesday, "
|
@@ -7065,11 +7049,11 @@ msgstr ""
|
|
7065 |
"Vorsichtig vorgehen. Standardwert ist auf Montag, Dienstag, Mittwoch, "
|
7066 |
"Donnerstag und Freitag gesetzt."
|
7067 |
|
7068 |
-
#: app/features/mec/settings.php:
|
7069 |
msgid "Weekends"
|
7070 |
msgstr "Wochenenden"
|
7071 |
|
7072 |
-
#: app/features/mec/settings.php:
|
7073 |
#, fuzzy
|
7074 |
#| msgid ""
|
7075 |
#| "Proceed with caution. Default is set to Monday, Tuesday, Wednesday, "
|
@@ -7082,166 +7066,204 @@ msgstr ""
|
|
7082 |
"Vorsichtig vorgehen. Standardwert ist auf Montag, Dienstag, Mittwoch, "
|
7083 |
"Donnerstag und Freitag gesetzt."
|
7084 |
|
7085 |
-
#: app/features/mec/settings.php:
|
7086 |
#, fuzzy
|
7087 |
#| msgid "Date Format"
|
7088 |
msgid "Datepicker Format"
|
7089 |
msgstr "Datumsformat"
|
7090 |
|
7091 |
-
#: app/features/mec/settings.php:
|
7092 |
msgid "(Y-m-d)"
|
7093 |
msgstr ""
|
7094 |
|
7095 |
-
#: app/features/mec/settings.php:
|
7096 |
msgid "(d-m-Y)"
|
7097 |
msgstr ""
|
7098 |
|
7099 |
-
#: app/features/mec/settings.php:
|
7100 |
msgid "(Y/m/d)"
|
7101 |
msgstr ""
|
7102 |
|
7103 |
-
#: app/features/mec/settings.php:
|
7104 |
msgid "(m/d/Y)"
|
7105 |
msgstr ""
|
7106 |
|
7107 |
-
#: app/features/mec/settings.php:
|
7108 |
msgid "(Y.m.d)"
|
7109 |
msgstr ""
|
7110 |
|
7111 |
-
#: app/features/mec/settings.php:
|
7112 |
msgid "(d.m.Y)"
|
7113 |
msgstr ""
|
7114 |
|
7115 |
-
#: app/features/mec/settings.php:
|
7116 |
msgid "Midnight Hour"
|
7117 |
msgstr "Mitternacht"
|
7118 |
|
7119 |
-
#: app/features/mec/settings.php:
|
7120 |
msgid "12 AM"
|
7121 |
msgstr "00:00"
|
7122 |
|
7123 |
-
#: app/features/mec/settings.php:
|
7124 |
msgid "1 AM"
|
7125 |
msgstr "01:00"
|
7126 |
|
7127 |
-
#: app/features/mec/settings.php:
|
7128 |
msgid "2 AM"
|
7129 |
msgstr "02:00"
|
7130 |
|
7131 |
-
#: app/features/mec/settings.php:
|
7132 |
msgid "3 AM"
|
7133 |
msgstr "03:00"
|
7134 |
|
7135 |
-
#: app/features/mec/settings.php:
|
7136 |
msgid "4 AM"
|
7137 |
msgstr "04:00"
|
7138 |
|
7139 |
-
#: app/features/mec/settings.php:
|
7140 |
msgid "5 AM"
|
7141 |
msgstr "05:00"
|
7142 |
|
7143 |
-
#: app/features/mec/settings.php:
|
7144 |
msgid ""
|
7145 |
"12 AM is midnight by default but you can change it if your event ends after "
|
7146 |
"12 AM and you don't want those events considered as multiple days events!"
|
7147 |
msgstr ""
|
7148 |
|
7149 |
-
#: app/features/mec/settings.php:
|
7150 |
#, fuzzy
|
7151 |
#| msgid "Add Shortcode"
|
7152 |
msgid "Open \"Add Event\" as Popup"
|
7153 |
msgstr "Shortcode hinzufügen"
|
7154 |
|
7155 |
-
#: app/features/mec/settings.php:
|
7156 |
-
#: app/features/mec/settings.php:
|
7157 |
#: app/features/mec/single.php:111
|
7158 |
#, fuzzy
|
7159 |
#| msgid "Enabled"
|
7160 |
msgid "Enable"
|
7161 |
msgstr "Aktiviert"
|
7162 |
|
7163 |
-
#: app/features/mec/settings.php:
|
7164 |
#, fuzzy
|
7165 |
#| msgid "Add Shortcode"
|
7166 |
msgid "Open \"Add Shortcode\" as Popup"
|
7167 |
msgstr "Shortcode hinzufügen"
|
7168 |
|
7169 |
-
#: app/features/mec/settings.php:
|
7170 |
#, fuzzy
|
7171 |
#| msgid "Featured Image"
|
7172 |
msgid "Include Event Featured Image in Feed"
|
7173 |
msgstr "Ausgewähltes Bild"
|
7174 |
|
7175 |
-
#: app/features/mec/settings.php:
|
7176 |
#, fuzzy
|
7177 |
#| msgid "Featured Image"
|
7178 |
msgid "Fallback Featured Image"
|
7179 |
msgstr "Ausgewähltes Bild"
|
7180 |
|
7181 |
-
#: app/features/mec/settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7182 |
msgid "Archive Pages"
|
7183 |
msgstr ""
|
7184 |
|
7185 |
-
#: app/features/mec/settings.php:
|
7186 |
msgid "Archive Page Title"
|
7187 |
msgstr "Titel der Archivseite"
|
7188 |
|
7189 |
-
#: app/features/mec/settings.php:
|
7190 |
#, fuzzy
|
7191 |
#| msgid "Default value is Events"
|
7192 |
msgid "Default value is Events - It's title of the page"
|
7193 |
msgstr "Der Standardwert ist Ereignisse (Events)"
|
7194 |
|
7195 |
-
#: app/features/mec/settings.php:
|
7196 |
msgid "Archive Page Skin"
|
7197 |
msgstr "Skin Seite Archiv"
|
7198 |
|
7199 |
-
#: app/features/mec/settings.php:
|
7200 |
#, fuzzy
|
7201 |
#| msgid "Edit shortcodes"
|
7202 |
msgid "Put shortcode..."
|
7203 |
msgstr "Shortcode ändern"
|
7204 |
|
7205 |
-
#: app/features/mec/settings.php:
|
7206 |
-
#: app/features/mec/settings.php:
|
7207 |
-
#: app/features/mec/settings.php:
|
7208 |
-
#: app/features/mec/settings.php:
|
7209 |
-
#: app/features/mec/settings.php:
|
7210 |
#, fuzzy
|
7211 |
#| msgid "The event is ongoing."
|
7212 |
msgid "There is no skins"
|
7213 |
msgstr "Die Veranstaltung ist im Gange."
|
7214 |
|
7215 |
-
#: app/features/mec/settings.php:
|
7216 |
#: app/features/mec/single.php:73
|
7217 |
msgid "Modern Style"
|
7218 |
msgstr "Moderner Stil"
|
7219 |
|
7220 |
-
#: app/features/mec/settings.php:
|
7221 |
msgid "colorful"
|
7222 |
msgstr "Farbenfroh"
|
7223 |
|
7224 |
-
#: app/features/mec/settings.php:
|
7225 |
#, fuzzy
|
7226 |
#| msgid "Plain Style"
|
7227 |
msgid "Clean Style"
|
7228 |
msgstr "Einfacher schlichter Stil"
|
7229 |
|
7230 |
-
#: app/features/mec/settings.php:
|
7231 |
#, fuzzy
|
7232 |
#| msgid "Default value is Calendar/Monthly View"
|
7233 |
msgid "Default value is Calendar/Monthly View, But you can change it "
|
7234 |
msgstr "Der Standardwert ist Kalender / Monatsansicht"
|
7235 |
|
7236 |
-
#: app/features/mec/settings.php:
|
7237 |
msgid "See Demo"
|
7238 |
msgstr ""
|
7239 |
|
7240 |
-
#: app/features/mec/settings.php:
|
7241 |
msgid "Category Page Skin"
|
7242 |
msgstr "Kategorie Seiten Skin"
|
7243 |
|
7244 |
-
#: app/features/mec/settings.php:
|
7245 |
#, fuzzy
|
7246 |
#| msgid "Default value is Calendar/Monthly View"
|
7247 |
msgid ""
|
@@ -7249,23 +7271,23 @@ msgid ""
|
|
7249 |
"categories."
|
7250 |
msgstr "Der Standardwert ist Kalender / Monatsansicht"
|
7251 |
|
7252 |
-
#: app/features/mec/settings.php:
|
7253 |
msgid "Category Events Method"
|
7254 |
msgstr ""
|
7255 |
|
7256 |
-
#: app/features/mec/settings.php:
|
7257 |
msgid "Default value is Upcoming Events"
|
7258 |
msgstr ""
|
7259 |
|
7260 |
-
#: app/features/mec/settings.php:
|
7261 |
msgid "Events Archive Status"
|
7262 |
msgstr "Events Archiv Status"
|
7263 |
|
7264 |
-
#: app/features/mec/settings.php:
|
7265 |
msgid "Enabled (Recommended)"
|
7266 |
msgstr "Ist aktiviert (empfohlen)"
|
7267 |
|
7268 |
-
#: app/features/mec/settings.php:
|
7269 |
msgid ""
|
7270 |
"If you disable it, then you should create a page as archive page of MEC. "
|
7271 |
"Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
|
@@ -7275,18 +7297,18 @@ msgstr ""
|
|
7275 |
"erstellen. Page´s slug muss gleich sein wie \"Main Slug\" von MEC. Außerdem "
|
7276 |
"werden alle MEC-Rewrite-Regeln deaktiviert."
|
7277 |
|
7278 |
-
#: app/features/mec/settings.php:
|
7279 |
msgid "Main Slug"
|
7280 |
msgstr "Main Slug"
|
7281 |
|
7282 |
-
#: app/features/mec/settings.php:
|
7283 |
msgid ""
|
7284 |
"Default value is events. You can not have a page with this name. MEC allows "
|
7285 |
"you to create custom URLs for the permalinks and archives to enhance the "
|
7286 |
"applicability and forward-compatibility of the links."
|
7287 |
msgstr ""
|
7288 |
|
7289 |
-
#: app/features/mec/settings.php:
|
7290 |
#, fuzzy
|
7291 |
#| msgid ""
|
7292 |
#| "Default value is events. Valid characters are lowercase a-z, - character "
|
@@ -7296,11 +7318,11 @@ msgstr ""
|
|
7296 |
"Standardwert ist Events. Gültige Zeichen sind Kleinbuchstaben a-z, - Zeichen "
|
7297 |
"und Zahlen."
|
7298 |
|
7299 |
-
#: app/features/mec/settings.php:
|
7300 |
msgid "Category Slug"
|
7301 |
msgstr "Category Slug"
|
7302 |
|
7303 |
-
#: app/features/mec/settings.php:
|
7304 |
#, fuzzy
|
7305 |
#| msgid ""
|
7306 |
#| "It's slug of MEC categories, you can change it to events-cat or something "
|
@@ -7316,129 +7338,129 @@ msgstr ""
|
|
7316 |
"für den link. Zum Beispiel example.com/events-cat oder example.com/mec-"
|
7317 |
"category"
|
7318 |
|
7319 |
-
#: app/features/mec/settings.php:
|
7320 |
msgid "Currency"
|
7321 |
msgstr "Währung"
|
7322 |
|
7323 |
-
#: app/features/mec/settings.php:
|
7324 |
msgid "Currency Sign"
|
7325 |
msgstr "Währungssymbol"
|
7326 |
|
7327 |
-
#: app/features/mec/settings.php:
|
7328 |
msgid "Default value will be \"currency\" if you leave it empty."
|
7329 |
msgstr "Standardwert wird \"currency\" sein wenn Sie es leer lassen"
|
7330 |
|
7331 |
-
#: app/features/mec/settings.php:
|
7332 |
msgid "Currency Position"
|
7333 |
msgstr "Position des Währungssymbols"
|
7334 |
|
7335 |
-
#: app/features/mec/settings.php:
|
7336 |
#, fuzzy
|
7337 |
#| msgid "Before $10"
|
7338 |
msgid "$10 (Before)"
|
7339 |
msgstr "Vor €10"
|
7340 |
|
7341 |
-
#: app/features/mec/settings.php:
|
7342 |
msgid "$ 10 (Before with Space)"
|
7343 |
msgstr ""
|
7344 |
|
7345 |
-
#: app/features/mec/settings.php:
|
7346 |
#, fuzzy
|
7347 |
#| msgid "After"
|
7348 |
msgid "10$ (After)"
|
7349 |
msgstr "Nach"
|
7350 |
|
7351 |
-
#: app/features/mec/settings.php:
|
7352 |
msgid "10 $ (After with Space)"
|
7353 |
msgstr ""
|
7354 |
|
7355 |
-
#: app/features/mec/settings.php:
|
7356 |
msgid "Thousand Separator"
|
7357 |
msgstr "Tausendertrennzeichen"
|
7358 |
|
7359 |
-
#: app/features/mec/settings.php:
|
7360 |
msgid "Decimal Separator"
|
7361 |
msgstr "Dezimaltrennzeichen"
|
7362 |
|
7363 |
-
#: app/features/mec/settings.php:
|
7364 |
msgid "No decimal"
|
7365 |
msgstr "Keine Dezimale"
|
7366 |
|
7367 |
-
#: app/features/mec/settings.php:
|
7368 |
msgid "Enable Google Recaptcha"
|
7369 |
msgstr "Google Recaptcha aktivieren"
|
7370 |
|
7371 |
-
#: app/features/mec/settings.php:
|
7372 |
msgid "Enable on booking form"
|
7373 |
msgstr "Auf dem Buchungsformular aktivieren"
|
7374 |
|
7375 |
-
#: app/features/mec/settings.php:
|
7376 |
#, fuzzy
|
7377 |
#| msgid "Enable on \"Frontend Event Submittion\" form"
|
7378 |
msgid "Enable on \"Frontend Event Submission\" form"
|
7379 |
msgstr "Aktivieren auf dem \"Frontend Event Submittion\" Formular"
|
7380 |
|
7381 |
-
#: app/features/mec/settings.php:
|
7382 |
msgid "Site Key"
|
7383 |
msgstr "Site Key (Seitenschlüssel)"
|
7384 |
|
7385 |
-
#: app/features/mec/settings.php:
|
7386 |
msgid "Secret Key"
|
7387 |
msgstr "Geheimschlüssel"
|
7388 |
|
7389 |
-
#: app/features/mec/settings.php:
|
7390 |
msgid "Time Format"
|
7391 |
msgstr "Zeitformat"
|
7392 |
|
7393 |
-
#: app/features/mec/settings.php:
|
7394 |
msgid "12 hours format with AM/PM"
|
7395 |
msgstr "12-Stunden-Format mit AM/FM"
|
7396 |
|
7397 |
-
#: app/features/mec/settings.php:
|
7398 |
msgid "24 hours format"
|
7399 |
msgstr "24-Stunden-Format"
|
7400 |
|
7401 |
-
#: app/features/mec/settings.php:
|
7402 |
msgid "This option, affects the selection of Start/End time."
|
7403 |
msgstr ""
|
7404 |
|
7405 |
-
#: app/features/mec/settings.php:
|
7406 |
msgid "Events List Page"
|
7407 |
msgstr "Seite Liste der Veranstaltungen"
|
7408 |
|
7409 |
-
#: app/features/mec/settings.php:
|
7410 |
#, php-format
|
7411 |
msgid "Put %s shortcode into the page."
|
7412 |
msgstr "%s shortcode in die Seite einfügen"
|
7413 |
|
7414 |
-
#: app/features/mec/settings.php:
|
7415 |
msgid "Add/Edit Events Page"
|
7416 |
msgstr "Veranstaltungsseite hinzufügen/bearbeiten"
|
7417 |
|
7418 |
-
#: app/features/mec/settings.php:
|
7419 |
#, fuzzy
|
7420 |
#| msgid "On Event Start"
|
7421 |
msgid "New Events Status"
|
7422 |
msgstr "Am Event Start"
|
7423 |
|
7424 |
-
#: app/features/mec/settings.php:
|
7425 |
#, fuzzy
|
7426 |
#| msgid "WordPress"
|
7427 |
msgid "Let WordPress decide"
|
7428 |
msgstr "WordPress"
|
7429 |
|
7430 |
-
#: app/features/mec/settings.php:
|
7431 |
-
#: app/libraries/main.php:
|
7432 |
msgid "Pending"
|
7433 |
msgstr "Ausstehend"
|
7434 |
|
7435 |
-
#: app/features/mec/settings.php:
|
7436 |
#, fuzzy
|
7437 |
#| msgid "Publishable Key"
|
7438 |
msgid "Publish"
|
7439 |
msgstr "publizierbarer Schlüssel"
|
7440 |
|
7441 |
-
#: app/features/mec/settings.php:
|
7442 |
#, fuzzy
|
7443 |
#| msgid ""
|
7444 |
#| "User redirects to this page after new event submission. Leave it empty if "
|
@@ -7450,31 +7472,31 @@ msgstr ""
|
|
7450 |
"Benutzer werden auf diese Seite nach der Buchung weitergeleitet. Lassen Sie "
|
7451 |
"es leer, wenn Sie es deaktivieren möchten."
|
7452 |
|
7453 |
-
#: app/features/mec/settings.php:
|
7454 |
#, fuzzy
|
7455 |
#| msgid "Thank You Page"
|
7456 |
msgid "Thank You Page URL"
|
7457 |
msgstr "Danke Seite"
|
7458 |
|
7459 |
-
#: app/features/mec/settings.php:
|
7460 |
msgid "If filled it will use instead of thank you page set above."
|
7461 |
msgstr ""
|
7462 |
|
7463 |
-
#: app/features/mec/settings.php:
|
7464 |
#, fuzzy
|
7465 |
#| msgid "Amount (Per Ticket)"
|
7466 |
msgid "Maximum File Size"
|
7467 |
msgstr "Betrag (pro Ticket)"
|
7468 |
|
7469 |
-
#: app/features/mec/settings.php:
|
7470 |
msgid "in KB"
|
7471 |
msgstr ""
|
7472 |
|
7473 |
-
#: app/features/mec/settings.php:
|
7474 |
msgid "In Kilo Bytes so 5000 means 5MB (Approximately)"
|
7475 |
msgstr ""
|
7476 |
|
7477 |
-
#: app/features/mec/settings.php:
|
7478 |
#, fuzzy
|
7479 |
#| msgid "Enable event submission by guest (Not logged-in) users"
|
7480 |
msgid "Enable event submission by guest (Not logged in) users"
|
@@ -7482,91 +7504,97 @@ msgstr ""
|
|
7482 |
"Das Erstellen von Veranstaltungen durch Gäste (nicht angemeldete Nutzer) "
|
7483 |
"erlauben"
|
7484 |
|
7485 |
-
#: app/features/mec/settings.php:
|
7486 |
msgid "Enable mandatory email and name for guest user"
|
7487 |
msgstr ""
|
7488 |
"Aktivieren Sie die obligatorische E-Mail und den Namen für Gastbenutzer"
|
7489 |
|
7490 |
-
#: app/features/mec/settings.php:
|
7491 |
msgid ""
|
7492 |
"Automatically create users after event publish and assign event to the "
|
7493 |
"created user"
|
7494 |
msgstr ""
|
7495 |
|
7496 |
-
#: app/features/mec/settings.php:
|
7497 |
msgid "Frontend Event Submission Sections"
|
7498 |
msgstr "Frontend Veranstaltungen Einreichung Sektionen"
|
7499 |
|
7500 |
-
#: app/features/mec/settings.php:
|
7501 |
#, fuzzy
|
7502 |
#| msgid "Event Details"
|
7503 |
msgid "Event Data Fields"
|
7504 |
msgstr "Veranstaltungsdetails"
|
7505 |
|
7506 |
-
#: app/features/mec/settings.php:
|
7507 |
msgid "Event Categories"
|
7508 |
msgstr "Veranstaltungskategorien"
|
7509 |
|
7510 |
-
#: app/features/mec/settings.php:
|
7511 |
msgid "Event Labels"
|
7512 |
msgstr "Event Labels"
|
7513 |
|
7514 |
-
#: app/features/mec/settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
7515 |
msgid "Event Tags"
|
7516 |
msgstr "Event Schlagworte"
|
7517 |
|
7518 |
-
#: app/features/mec/settings.php:
|
7519 |
msgid "Event Organizer"
|
7520 |
msgstr "Veranstaltungsmanager"
|
7521 |
|
7522 |
-
#: app/features/mec/settings.php:
|
7523 |
#, fuzzy
|
7524 |
#| msgid "Total booking limits"
|
7525 |
msgid "Total Booking Limit"
|
7526 |
msgstr "Gesamt Verfügbare Plätze"
|
7527 |
|
7528 |
-
#: app/features/mec/settings.php:
|
7529 |
#, fuzzy
|
7530 |
#| msgid "Discount Type"
|
7531 |
msgid "Discount Per User Roles"
|
7532 |
msgstr "Rabatt-Art"
|
7533 |
|
7534 |
-
#: app/features/mec/settings.php:
|
7535 |
#, fuzzy
|
7536 |
#| msgid "Ticket Variation"
|
7537 |
msgid "Ticket Options"
|
7538 |
msgstr "Ticket Variationen"
|
7539 |
|
7540 |
-
#: app/features/mec/settings.php:
|
7541 |
#, fuzzy
|
7542 |
#| msgid "Fees/Taxes Options"
|
7543 |
msgid "Fees / Taxes Options"
|
7544 |
msgstr "Gebühren/Steuer Optionen"
|
7545 |
|
7546 |
-
#: app/features/mec/settings.php:
|
7547 |
msgid "SEO Schema"
|
7548 |
msgstr ""
|
7549 |
|
7550 |
-
#: app/features/mec/settings.php:
|
7551 |
#: app/features/occurrences.php:102
|
7552 |
#, fuzzy
|
7553 |
#| msgid "Occurrences times"
|
7554 |
msgid "Occurrences"
|
7555 |
msgstr " mal vorkommen"
|
7556 |
|
7557 |
-
#: app/features/mec/settings.php:
|
7558 |
#, fuzzy
|
7559 |
#| msgid "Edit Event"
|
7560 |
msgid "Virtual Event"
|
7561 |
msgstr "Event Bearbeiten"
|
7562 |
|
7563 |
-
#: app/features/mec/settings.php:
|
7564 |
#, fuzzy
|
7565 |
#| msgid "Book Event"
|
7566 |
msgid "Zoom Event"
|
7567 |
msgstr "Veranstaltung buchen"
|
7568 |
|
7569 |
-
#: app/features/mec/settings.php:
|
7570 |
#, php-format
|
7571 |
msgid ""
|
7572 |
"Users can put a note for editors while they're submitting the event. Also "
|
@@ -7578,138 +7606,138 @@ msgstr ""
|
|
7578 |
"Eventbenachrichtigung setzen, um die Notizen der Benutzer in der E-Mail zu "
|
7579 |
"erhalten."
|
7580 |
|
7581 |
-
#: app/features/mec/settings.php:
|
7582 |
#, fuzzy
|
7583 |
#| msgid "Visibility"
|
7584 |
msgid "Note visibility"
|
7585 |
msgstr "Sichtbarkeit"
|
7586 |
|
7587 |
-
#: app/features/mec/settings.php:
|
7588 |
msgid "Always"
|
7589 |
msgstr "Immer"
|
7590 |
|
7591 |
-
#: app/features/mec/settings.php:
|
7592 |
msgid "While event is not published"
|
7593 |
msgstr "Das Ereignis wird nicht veröffentlicht"
|
7594 |
|
7595 |
-
#: app/features/mec/settings.php:
|
7596 |
msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
|
7597 |
msgstr ""
|
7598 |
"Die Ereignisnotiz wird im Frontend-Einreichungsformular angezeigt und das "
|
7599 |
"Ereignis im Backend bearbeitet."
|
7600 |
|
7601 |
-
#: app/features/mec/settings.php:
|
7602 |
#, fuzzy
|
7603 |
#| msgid "Required Field"
|
7604 |
msgid "Required Fields"
|
7605 |
msgstr "Pflichtfeld"
|
7606 |
|
7607 |
-
#: app/features/mec/settings.php:
|
7608 |
#, fuzzy
|
7609 |
#| msgid "Description"
|
7610 |
msgid "Event Description"
|
7611 |
msgstr "Beschreibung"
|
7612 |
|
7613 |
-
#: app/features/mec/settings.php:
|
7614 |
-
#: app/libraries/main.php:
|
7615 |
msgid "More Info Link"
|
7616 |
msgstr "Link Mehr Informationen"
|
7617 |
|
7618 |
-
#: app/features/mec/settings.php:
|
7619 |
msgid "User Profile"
|
7620 |
msgstr "Benutzer Profil"
|
7621 |
|
7622 |
-
#: app/features/mec/settings.php:
|
7623 |
#, php-format
|
7624 |
msgid ""
|
7625 |
"Put %s shortcode into your desired page. Then users are able to see the "
|
7626 |
"history of their bookings."
|
7627 |
msgstr ""
|
7628 |
|
7629 |
-
#: app/features/mec/settings.php:
|
7630 |
#, fuzzy
|
7631 |
#| msgid "Hide Events"
|
7632 |
msgid "User Events"
|
7633 |
msgstr "Events verbergen"
|
7634 |
|
7635 |
-
#: app/features/mec/settings.php:
|
7636 |
#, php-format
|
7637 |
msgid ""
|
7638 |
"Put %s shortcode into your desired page. Then users are able to see the "
|
7639 |
"their own events."
|
7640 |
msgstr ""
|
7641 |
|
7642 |
-
#: app/features/mec/settings.php:
|
7643 |
msgid "Search Bar"
|
7644 |
msgstr "Suche"
|
7645 |
|
7646 |
-
#: app/features/mec/settings.php:
|
7647 |
#, php-format
|
7648 |
msgid ""
|
7649 |
"Put %s shortcode into your desired page. Then users are able to search events"
|
7650 |
msgstr ""
|
7651 |
|
7652 |
-
#: app/features/mec/settings.php:
|
7653 |
msgid "Ajax Live mode"
|
7654 |
msgstr ""
|
7655 |
|
7656 |
-
#: app/features/mec/settings.php:
|
7657 |
msgid "Ajax mode"
|
7658 |
msgstr ""
|
7659 |
|
7660 |
-
#: app/features/mec/settings.php:
|
7661 |
msgid ""
|
7662 |
"if you enable this option, the search button will disappear. To use this "
|
7663 |
"feature, text input field must be enabled."
|
7664 |
msgstr ""
|
7665 |
|
7666 |
-
#: app/features/mec/settings.php:
|
7667 |
#, fuzzy
|
7668 |
#| msgid "Modern Style"
|
7669 |
msgid "Modern Type"
|
7670 |
msgstr "Moderner Stil"
|
7671 |
|
7672 |
-
#: app/features/mec/settings.php:
|
7673 |
msgid "Search bar fields"
|
7674 |
msgstr "Such Felder"
|
7675 |
|
7676 |
-
#: app/features/mec/settings.php:
|
7677 |
#, fuzzy
|
7678 |
#| msgid "Text Input"
|
7679 |
msgid "Text input"
|
7680 |
msgstr "Text eingeben"
|
7681 |
|
7682 |
-
#: app/features/mec/settings.php:
|
7683 |
msgid "Enable Mailchimp Integration"
|
7684 |
msgstr "Mailchimp Integration deaktivieren"
|
7685 |
|
7686 |
-
#: app/features/mec/settings.php:
|
7687 |
-
#: app/features/mec/settings.php:
|
7688 |
-
#: app/features/mec/settings.php:
|
7689 |
msgid "API Key"
|
7690 |
msgstr "API Schlüssel"
|
7691 |
|
7692 |
-
#: app/features/mec/settings.php:
|
7693 |
-
#: app/features/mec/settings.php:
|
7694 |
-
#: app/features/mec/settings.php:
|
7695 |
msgid "List ID"
|
7696 |
msgstr "List ID"
|
7697 |
|
7698 |
-
#: app/features/mec/settings.php:
|
7699 |
msgid "Subscription Status"
|
7700 |
msgstr "Buchungsstatus"
|
7701 |
|
7702 |
-
#: app/features/mec/settings.php:
|
7703 |
msgid "Subscribe automatically"
|
7704 |
msgstr "automatisch Anmelden/Abonnieren"
|
7705 |
|
7706 |
-
#: app/features/mec/settings.php:
|
7707 |
msgid "Subscribe by verification"
|
7708 |
msgstr ""
|
7709 |
"Anmelden/Abonnieren durch Bestätigung\n"
|
7710 |
" "
|
7711 |
|
7712 |
-
#: app/features/mec/settings.php:
|
7713 |
#, fuzzy
|
7714 |
#| msgid ""
|
7715 |
#| "If you choose \"Subscribe by verification\" then an email will send to "
|
@@ -7721,150 +7749,150 @@ msgstr ""
|
|
7721 |
"Wenn Sie \"Anmelden durch Verifizierung\" wählen, wird eine E-Mail an den "
|
7722 |
"Benutzer per Mailchimp zur Bestätigung gesendet."
|
7723 |
|
7724 |
-
#: app/features/mec/settings.php:
|
7725 |
msgid "Enable Segment Creation by Event Title and Booking Date"
|
7726 |
msgstr ""
|
7727 |
|
7728 |
-
#: app/features/mec/settings.php:
|
7729 |
#, fuzzy
|
7730 |
#| msgid "Mailchimp Integration"
|
7731 |
msgid "Campaign Monitor Integration"
|
7732 |
msgstr "Mailchimp Integration"
|
7733 |
|
7734 |
-
#: app/features/mec/settings.php:
|
7735 |
#, fuzzy
|
7736 |
#| msgid "Enable Mailchimp Integration"
|
7737 |
msgid "Enable Campaign Monitor Integration"
|
7738 |
msgstr "Mailchimp Integration deaktivieren"
|
7739 |
|
7740 |
-
#: app/features/mec/settings.php:
|
7741 |
#, fuzzy
|
7742 |
#| msgid "Mailchimp Integration"
|
7743 |
msgid "MailerLite Integration"
|
7744 |
msgstr "Mailchimp Integration"
|
7745 |
|
7746 |
-
#: app/features/mec/settings.php:
|
7747 |
#, fuzzy
|
7748 |
#| msgid "Enable Mailchimp Integration"
|
7749 |
msgid "Enable MailerLite Integration"
|
7750 |
msgstr "Mailchimp Integration deaktivieren"
|
7751 |
|
7752 |
-
#: app/features/mec/settings.php:
|
7753 |
msgid "Group ID"
|
7754 |
msgstr "Gruppen ID "
|
7755 |
|
7756 |
-
#: app/features/mec/settings.php:
|
7757 |
#, fuzzy
|
7758 |
#| msgid "BuddyPress Integration"
|
7759 |
msgid "Constant Contact Integration"
|
7760 |
msgstr "Buddy Press Integration"
|
7761 |
|
7762 |
-
#: app/features/mec/settings.php:
|
7763 |
#, fuzzy
|
7764 |
#| msgid "Enable Mailchimp Integration"
|
7765 |
msgid "Enable constantcontact Integration"
|
7766 |
msgstr "Mailchimp Integration deaktivieren"
|
7767 |
|
7768 |
-
#: app/features/mec/settings.php:
|
7769 |
#, fuzzy
|
7770 |
#| msgid "Facebook Page Link"
|
7771 |
msgid "Access Token"
|
7772 |
msgstr "Facebook Seiten Link"
|
7773 |
|
7774 |
-
#: app/features/mec/settings.php:
|
7775 |
#, fuzzy
|
7776 |
#| msgid "Select icon"
|
7777 |
msgid "Select List"
|
7778 |
msgstr "Wählen Sie ein Symbol"
|
7779 |
|
7780 |
-
#: app/features/mec/settings.php:
|
7781 |
msgid ""
|
7782 |
"Please fill in the API key and Access Token field and save settings. after "
|
7783 |
"that, please refresh the page and select a list."
|
7784 |
msgstr ""
|
7785 |
|
7786 |
-
#: app/features/mec/settings.php:
|
7787 |
#, fuzzy
|
7788 |
#| msgid "Mailchimp Integration"
|
7789 |
msgid "Active Campaign Integration"
|
7790 |
msgstr "Mailchimp Integration"
|
7791 |
|
7792 |
-
#: app/features/mec/settings.php:
|
7793 |
#, fuzzy
|
7794 |
#| msgid "Enable Mailchimp Integration"
|
7795 |
msgid "Enable Active Campaign Integration"
|
7796 |
msgstr "Mailchimp Integration deaktivieren"
|
7797 |
|
7798 |
-
#: app/features/mec/settings.php:
|
7799 |
msgid "API URL"
|
7800 |
msgstr ""
|
7801 |
|
7802 |
-
#: app/features/mec/settings.php:
|
7803 |
#, fuzzy
|
7804 |
#| msgid "Mailchimp Integration"
|
7805 |
msgid "AWeber Integration"
|
7806 |
msgstr "Mailchimp Integration"
|
7807 |
|
7808 |
-
#: app/features/mec/settings.php:
|
7809 |
#, fuzzy
|
7810 |
#| msgid "Enable Mailchimp Integration"
|
7811 |
msgid "Enable AWeber Integration"
|
7812 |
msgstr "Mailchimp Integration deaktivieren"
|
7813 |
|
7814 |
-
#: app/features/mec/settings.php:
|
7815 |
#, fuzzy, php-format
|
7816 |
#| msgid "Third Party plugin is not installed and activated!"
|
7817 |
msgid "%s plugin should be installed and connected to your AWeber account."
|
7818 |
msgstr "Drittanbieter-Plugin ist nicht installiert und aktiviert!"
|
7819 |
|
7820 |
-
#: app/features/mec/settings.php:
|
7821 |
#, php-format
|
7822 |
msgid "More information about the list ID can be found %s."
|
7823 |
msgstr ""
|
7824 |
|
7825 |
-
#: app/features/mec/settings.php:
|
7826 |
#, fuzzy
|
7827 |
#| msgid "Mailchimp Integration"
|
7828 |
msgid "MailPoet Integration"
|
7829 |
msgstr "Mailchimp Integration"
|
7830 |
|
7831 |
-
#: app/features/mec/settings.php:
|
7832 |
#, fuzzy
|
7833 |
#| msgid "Enable Mailchimp Integration"
|
7834 |
msgid "Enable MailPoet Integration"
|
7835 |
msgstr "Mailchimp Integration deaktivieren"
|
7836 |
|
7837 |
-
#: app/features/mec/settings.php:
|
7838 |
#: app/skins/default_full_calendar/tpl.php:78
|
7839 |
#: app/skins/full_calendar/tpl.php:126
|
7840 |
msgid "List"
|
7841 |
msgstr "Liste / Listenansicht"
|
7842 |
|
7843 |
-
#: app/features/mec/settings.php:
|
7844 |
#, fuzzy, php-format
|
7845 |
#| msgid "Third Party plugin is not installed and activated!"
|
7846 |
msgid "%s plugin should be installed and activated."
|
7847 |
msgstr "Drittanbieter-Plugin ist nicht installiert und aktiviert!"
|
7848 |
|
7849 |
-
#: app/features/mec/settings.php:
|
7850 |
#, fuzzy
|
7851 |
#| msgid "Mailchimp Integration"
|
7852 |
msgid "Sendfox Integration"
|
7853 |
msgstr "Mailchimp Integration"
|
7854 |
|
7855 |
-
#: app/features/mec/settings.php:
|
7856 |
#, fuzzy
|
7857 |
#| msgid "Enable Mailchimp Integration"
|
7858 |
msgid "Enable Sendfox Integration"
|
7859 |
msgstr "Mailchimp Integration deaktivieren"
|
7860 |
|
7861 |
-
#: app/features/mec/settings.php:
|
7862 |
#, fuzzy, php-format
|
7863 |
#| msgid "Third Party plugin is not installed and activated!"
|
7864 |
msgid "%s plugin should be installed and connected to your Sendfox account."
|
7865 |
msgstr "Drittanbieter-Plugin ist nicht installiert und aktiviert!"
|
7866 |
|
7867 |
-
#: app/features/mec/single.php:38 app/libraries/main.php:
|
7868 |
#, fuzzy
|
7869 |
#| msgid "Single Event Style"
|
7870 |
msgid "Single Event Page"
|
@@ -8027,13 +8055,13 @@ msgid ""
|
|
8027 |
"Alphabetic type."
|
8028 |
msgstr ""
|
8029 |
|
8030 |
-
#: app/features/mec/single.php:202 app/libraries/main.php:
|
8031 |
#, fuzzy
|
8032 |
#| msgid "Custom Styles"
|
8033 |
msgid "Custom Fields"
|
8034 |
msgstr "Benutzerdefinierte Stile"
|
8035 |
|
8036 |
-
#: app/features/mec/single.php:241 app/libraries/main.php:
|
8037 |
msgid "URL"
|
8038 |
msgstr ""
|
8039 |
|
@@ -8082,7 +8110,7 @@ msgstr ""
|
|
8082 |
"Mit dieser Option können Sie bestimmte Tage von vorkommenden Eventdaten ein-/"
|
8083 |
"ausschließen."
|
8084 |
|
8085 |
-
#: app/features/mec/single.php:336 app/libraries/main.php:
|
8086 |
msgid "Additional Organizers"
|
8087 |
msgstr "Zusätzliche Organisatoren"
|
8088 |
|
@@ -8098,7 +8126,7 @@ msgstr ""
|
|
8098 |
msgid "Enable Description For Other Organizers."
|
8099 |
msgstr ""
|
8100 |
|
8101 |
-
#: app/features/mec/single.php:354 app/libraries/main.php:
|
8102 |
msgid "Additional Locations"
|
8103 |
msgstr "Zusätzliche Locations"
|
8104 |
|
@@ -8118,8 +8146,8 @@ msgstr ""
|
|
8118 |
msgid "Enable Description For Other Locations."
|
8119 |
msgstr ""
|
8120 |
|
8121 |
-
#: app/features/mec/single.php:372 app/libraries/main.php:
|
8122 |
-
#: app/skins/single.php:
|
8123 |
msgid "Related Events"
|
8124 |
msgstr "Vorgeschlagene Veranstaltungen"
|
8125 |
|
@@ -8133,7 +8161,7 @@ msgstr ""
|
|
8133 |
msgid "Select Taxonomies:"
|
8134 |
msgstr "Klassifizierung "
|
8135 |
|
8136 |
-
#: app/features/mec/single.php:414 app/libraries/main.php:
|
8137 |
#, fuzzy
|
8138 |
#| msgid "Next/Previous Buttons"
|
8139 |
msgid "Next / Previous Events"
|
@@ -8143,7 +8171,7 @@ msgstr "Schaltfläche \"Nächste/Letzte\""
|
|
8143 |
msgid "Display next / previous events based on taxonomy in single event page."
|
8144 |
msgstr ""
|
8145 |
|
8146 |
-
#: app/features/mec/single.php:456 app/libraries/main.php:
|
8147 |
#, fuzzy
|
8148 |
#| msgid "Next Occurrence"
|
8149 |
msgid "Edit Per Occurrences"
|
@@ -8179,7 +8207,7 @@ msgid "Default Font"
|
|
8179 |
msgstr "Standardschriftart des Themas "
|
8180 |
|
8181 |
#: app/features/mec/styling.php:54 app/features/mec/support.php:52
|
8182 |
-
#: app/libraries/main.php:
|
8183 |
msgid "Styling Options"
|
8184 |
msgstr "Styling-Optionen"
|
8185 |
|
@@ -8368,7 +8396,7 @@ msgstr ""
|
|
8368 |
msgid "MEC Settings"
|
8369 |
msgstr "MEC - Einstellungen"
|
8370 |
|
8371 |
-
#: app/features/mec/support-page.php:99 app/libraries/main.php:
|
8372 |
#, fuzzy
|
8373 |
#| msgid "Single Event Style"
|
8374 |
msgid "Single Event"
|
@@ -8733,7 +8761,7 @@ msgstr ""
|
|
8733 |
msgid "Create a support ticket"
|
8734 |
msgstr "Erstelle ein Support-Ticket"
|
8735 |
|
8736 |
-
#: app/features/mec/support.php:59 app/libraries/main.php:
|
8737 |
msgid "Custom CSS"
|
8738 |
msgstr "Custom CSS"
|
8739 |
|
@@ -8986,8 +9014,8 @@ msgstr "z.B.. max@mustermann.com"
|
|
8986 |
msgid "eg. https://webnus.net"
|
8987 |
msgstr "http://webnus.net"
|
8988 |
|
8989 |
-
#: app/features/organizers.php:312 app/libraries/main.php:
|
8990 |
-
#: app/libraries/main.php:
|
8991 |
msgid "Other Organizers"
|
8992 |
msgstr "Andere Veranstalter"
|
8993 |
|
@@ -9181,11 +9209,11 @@ msgstr "Um neue Veranstaltungen einzugeben, bitte %s/%s"
|
|
9181 |
msgid "#"
|
9182 |
msgstr ""
|
9183 |
|
9184 |
-
#: app/features/profile/profile.php:39 app/libraries/main.php:
|
9185 |
msgid "Status"
|
9186 |
msgstr ""
|
9187 |
|
9188 |
-
#: app/features/profile/profile.php:42 app/libraries/main.php:
|
9189 |
msgid "Attendees"
|
9190 |
msgstr "Teilnehmer"
|
9191 |
|
@@ -9263,7 +9291,7 @@ msgid "Insert speaker email address."
|
|
9263 |
msgstr "Veranstalter Email-Adresse hinzufügen"
|
9264 |
|
9265 |
#: app/features/speakers.php:135 app/features/speakers.php:208
|
9266 |
-
#: app/skins/single.php:
|
9267 |
#: app/skins/single/default.php:250 app/skins/single/default.php:321
|
9268 |
#: app/skins/single/default.php:488 app/skins/single/default.php:559
|
9269 |
#: app/skins/single/m1.php:126 app/skins/single/m1.php:180
|
@@ -9346,9 +9374,9 @@ msgstr ""
|
|
9346 |
msgid "Please %s/%s in order to see your own events."
|
9347 |
msgstr "Um neue Veranstaltungen einzugeben, bitte %s/%s"
|
9348 |
|
9349 |
-
#: app/features/wc.php:103 app/libraries/notifications.php:
|
9350 |
-
#: app/libraries/notifications.php:
|
9351 |
-
#: app/libraries/notifications.php:
|
9352 |
#, php-format
|
9353 |
msgid "%s to %s"
|
9354 |
msgstr "%s zu %s"
|
@@ -9372,13 +9400,13 @@ msgstr "%s Preis"
|
|
9372 |
msgid "Discount"
|
9373 |
msgstr "Rabatt"
|
9374 |
|
9375 |
-
#: app/libraries/book.php:897 app/modules/booking/default.php:
|
9376 |
-
#: app/modules/booking/default.php:
|
9377 |
msgid "Download Invoice"
|
9378 |
msgstr "Download Rechnung"
|
9379 |
|
9380 |
#: app/libraries/envato.php:196 app/libraries/envato.php:274
|
9381 |
-
#: app/libraries/factory.php:
|
9382 |
msgid "This update includes only bug fixes."
|
9383 |
msgstr ""
|
9384 |
|
@@ -9403,55 +9431,55 @@ msgctxt "plugin link"
|
|
9403 |
msgid "Upgrade"
|
9404 |
msgstr ""
|
9405 |
|
9406 |
-
#: app/libraries/factory.php:
|
9407 |
msgid "day"
|
9408 |
msgstr "Tag"
|
9409 |
|
9410 |
-
#: app/libraries/factory.php:
|
9411 |
#: app/skins/available_spot/tpl.php:138 app/skins/countdown/tpl.php:120
|
9412 |
#: app/skins/countdown/tpl.php:166 app/skins/countdown/tpl.php:217
|
9413 |
msgid "days"
|
9414 |
msgstr "Tage"
|
9415 |
|
9416 |
-
#: app/libraries/factory.php:
|
9417 |
msgid "hour"
|
9418 |
msgstr "Stunde"
|
9419 |
|
9420 |
-
#: app/libraries/factory.php:
|
9421 |
#: app/skins/available_spot/tpl.php:142 app/skins/countdown/tpl.php:126
|
9422 |
#: app/skins/countdown/tpl.php:172 app/skins/countdown/tpl.php:223
|
9423 |
msgid "hours"
|
9424 |
msgstr "Stunden"
|
9425 |
|
9426 |
-
#: app/libraries/factory.php:
|
9427 |
msgid "minute"
|
9428 |
msgstr "Minute"
|
9429 |
|
9430 |
-
#: app/libraries/factory.php:
|
9431 |
#: app/skins/available_spot/tpl.php:146 app/skins/countdown/tpl.php:132
|
9432 |
#: app/skins/countdown/tpl.php:178 app/skins/countdown/tpl.php:229
|
9433 |
msgid "minutes"
|
9434 |
msgstr "Minuten"
|
9435 |
|
9436 |
-
#: app/libraries/factory.php:
|
9437 |
msgid "second"
|
9438 |
msgstr "Sekunde"
|
9439 |
|
9440 |
-
#: app/libraries/factory.php:
|
9441 |
#: app/skins/available_spot/tpl.php:150 app/skins/countdown/tpl.php:138
|
9442 |
#: app/skins/countdown/tpl.php:184 app/skins/countdown/tpl.php:235
|
9443 |
msgid "seconds"
|
9444 |
msgstr "Sekunden"
|
9445 |
|
9446 |
-
#: app/libraries/factory.php:
|
9447 |
msgid "MEC Single Sidebar"
|
9448 |
msgstr "MEC Single Sidebar"
|
9449 |
|
9450 |
-
#: app/libraries/factory.php:
|
9451 |
msgid "Custom sidebar for single and modal page of MEC."
|
9452 |
msgstr "Custom sidebar for single and modal page of MEC."
|
9453 |
|
9454 |
-
#: app/libraries/factory.php:
|
9455 |
msgid "Notice:"
|
9456 |
msgstr ""
|
9457 |
|
@@ -9494,33 +9522,33 @@ msgstr "bis zum Beispiel 08:45 Uhr"
|
|
9494 |
msgid "New Day"
|
9495 |
msgstr "Neuer Tag"
|
9496 |
|
9497 |
-
#: app/libraries/main.php:366 app/libraries/main.php:
|
9498 |
-
#: app/libraries/main.php:
|
9499 |
msgid "Agenda View"
|
9500 |
msgstr "Agendaansicht"
|
9501 |
|
9502 |
-
#: app/libraries/main.php:367 app/libraries/main.php:
|
9503 |
-
#: app/libraries/main.php:
|
9504 |
msgid "Full Calendar"
|
9505 |
msgstr "Ganzer Kalender"
|
9506 |
|
9507 |
-
#: app/libraries/main.php:369 app/libraries/main.php:
|
9508 |
-
#: app/libraries/main.php:
|
9509 |
msgid "Calendar/Monthly View"
|
9510 |
msgstr "Kalender-/Monatsansicht"
|
9511 |
|
9512 |
-
#: app/libraries/main.php:372 app/libraries/main.php:
|
9513 |
-
#: app/libraries/main.php:
|
9514 |
msgid "Timetable View"
|
9515 |
msgstr "Stundenplan"
|
9516 |
|
9517 |
-
#: app/libraries/main.php:373 app/libraries/main.php:
|
9518 |
-
#: app/libraries/main.php:
|
9519 |
msgid "Masonry View"
|
9520 |
msgstr "Kachel Ansicht"
|
9521 |
|
9522 |
-
#: app/libraries/main.php:374 app/libraries/main.php:
|
9523 |
-
#: app/libraries/main.php:
|
9524 |
msgid "Map View"
|
9525 |
msgstr "Kartenansicht"
|
9526 |
|
@@ -9550,58 +9578,58 @@ msgstr "Slideransicht"
|
|
9550 |
msgid "Timeline View"
|
9551 |
msgstr "Stundenplan"
|
9552 |
|
9553 |
-
#: app/libraries/main.php:419 app/libraries/main.php:
|
9554 |
-
#: app/libraries/main.php:
|
9555 |
msgid "SU"
|
9556 |
msgstr "SO"
|
9557 |
|
9558 |
-
#: app/libraries/main.php:420 app/libraries/main.php:
|
9559 |
-
#: app/libraries/main.php:
|
9560 |
msgid "MO"
|
9561 |
msgstr "MO"
|
9562 |
|
9563 |
-
#: app/libraries/main.php:421 app/libraries/main.php:
|
9564 |
-
#: app/libraries/main.php:
|
9565 |
msgid "TU"
|
9566 |
msgstr "DI"
|
9567 |
|
9568 |
-
#: app/libraries/main.php:422 app/libraries/main.php:
|
9569 |
-
#: app/libraries/main.php:
|
9570 |
msgid "WE"
|
9571 |
msgstr "MI"
|
9572 |
|
9573 |
-
#: app/libraries/main.php:423 app/libraries/main.php:
|
9574 |
-
#: app/libraries/main.php:
|
9575 |
msgid "TH"
|
9576 |
msgstr "DO"
|
9577 |
|
9578 |
-
#: app/libraries/main.php:424 app/libraries/main.php:
|
9579 |
-
#: app/libraries/main.php:
|
9580 |
msgid "FR"
|
9581 |
msgstr "FR"
|
9582 |
|
9583 |
-
#: app/libraries/main.php:425 app/libraries/main.php:
|
9584 |
-
#: app/libraries/main.php:
|
9585 |
msgid "SA"
|
9586 |
msgstr "SA"
|
9587 |
|
9588 |
-
#: app/libraries/main.php:
|
9589 |
#, fuzzy
|
9590 |
#| msgid "Upload/Add image"
|
9591 |
msgid "Upload Field"
|
9592 |
msgstr "Bild hochladen/hinzufügen"
|
9593 |
|
9594 |
-
#: app/libraries/main.php:
|
9595 |
#, fuzzy
|
9596 |
#| msgid "Social Module : "
|
9597 |
msgid "Modules"
|
9598 |
msgstr "Social Modul:"
|
9599 |
|
9600 |
-
#: app/libraries/main.php:
|
9601 |
msgid "New Addons For MEC! Now Customize MEC in Elementor"
|
9602 |
msgstr ""
|
9603 |
|
9604 |
-
#: app/libraries/main.php:
|
9605 |
msgid ""
|
9606 |
"The time has come at last, and the new practical add-ons for MEC have been "
|
9607 |
"released. This is a revolution in the world of Event Calendars. We have "
|
@@ -9609,518 +9637,518 @@ msgid ""
|
|
9609 |
"below:"
|
9610 |
msgstr ""
|
9611 |
|
9612 |
-
#: app/libraries/main.php:
|
9613 |
msgid ""
|
9614 |
"<strong>WooCommerce Integration:</strong> You can now purchase ticket (as "
|
9615 |
"products) and Woo products at the same time."
|
9616 |
msgstr ""
|
9617 |
|
9618 |
-
#: app/libraries/main.php:
|
9619 |
msgid ""
|
9620 |
"<strong>Event API:</strong> display your events (shortcodes/single event) on "
|
9621 |
"other websites without MEC. Use JSON output features to make your Apps "
|
9622 |
"compatible with MEC."
|
9623 |
msgstr ""
|
9624 |
|
9625 |
-
#: app/libraries/main.php:
|
9626 |
msgid ""
|
9627 |
"<strong>Multisite Event Sync:</strong> Sync events between your subsites and "
|
9628 |
"main websites. Changes in the main one will be inherited by the subsites. "
|
9629 |
"you can set these up in the admin panel."
|
9630 |
msgstr ""
|
9631 |
|
9632 |
-
#: app/libraries/main.php:
|
9633 |
msgid ""
|
9634 |
"<strong>User Dashboard:</strong> Create exclusive pages for users. These "
|
9635 |
"pages can contain ticket purchase information, information about registered "
|
9636 |
"events. Users can now log in to purchase tickets."
|
9637 |
msgstr ""
|
9638 |
|
9639 |
-
#: app/libraries/main.php:
|
9640 |
msgid "find out more"
|
9641 |
msgstr ""
|
9642 |
|
9643 |
-
#: app/libraries/main.php:
|
9644 |
msgid "Events at this location"
|
9645 |
msgstr "Veranstaltungen an diesem Ort "
|
9646 |
|
9647 |
-
#: app/libraries/main.php:
|
9648 |
msgid "Event at this location"
|
9649 |
msgstr "Veranstaltung an diesem Ort "
|
9650 |
|
9651 |
-
#: app/libraries/main.php:
|
9652 |
msgid "Facebook"
|
9653 |
msgstr "Facebook"
|
9654 |
|
9655 |
-
#: app/libraries/main.php:
|
9656 |
msgid "Twitter"
|
9657 |
msgstr "Twitter"
|
9658 |
|
9659 |
-
#: app/libraries/main.php:
|
9660 |
msgid "Linkedin"
|
9661 |
msgstr "Linkedin"
|
9662 |
|
9663 |
-
#: app/libraries/main.php:
|
9664 |
msgid "VK"
|
9665 |
msgstr ""
|
9666 |
|
9667 |
-
#: app/libraries/main.php:
|
9668 |
msgid "Tumblr"
|
9669 |
msgstr ""
|
9670 |
|
9671 |
-
#: app
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: ME Calender\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2021-02-24 11:23+0330\n"
|
6 |
+
"PO-Revision-Date: 2021-02-24 11:26+0330\n"
|
7 |
"Last-Translator: Jogon <koenig@kafinanz.de>\n"
|
8 |
"Language-Team: German\n"
|
9 |
"Language: de_DE\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:24
|
21 |
+
#: app/features/ix/import.php:48 app/features/ix/import.php:77
|
22 |
#: app/features/ix/thirdparty.php:26 app/features/mec.php:1174
|
23 |
#: app/features/mec.php:1198 app/features/mec/dashboard.php:65
|
24 |
#: app/widgets/MEC.php:33
|
95 |
msgstr "Neuen Shortcode hinzufügen"
|
96 |
|
97 |
#: app/features/booking/calendar_novel.php:136
|
98 |
+
#: app/features/search_bar/search_result.php:12 app/libraries/main.php:6610
|
99 |
+
#: app/libraries/main.php:6657 app/libraries/notifications.php:1358
|
100 |
+
#: app/libraries/render.php:531 app/libraries/render.php:723
|
101 |
+
#: app/libraries/render.php:781 app/libraries/render.php:878
|
102 |
#: app/modules/local-time/details.php:50 app/modules/local-time/type1.php:45
|
103 |
+
#: app/modules/local-time/type2.php:70 app/modules/local-time/type3.php:45
|
104 |
#: app/modules/next-event/details.php:154
|
105 |
+
#: app/modules/next-event/multiple.php:64 app/skins/single.php:1215
|
106 |
#: app/skins/single/default.php:172 app/skins/single/default.php:411
|
107 |
#: app/skins/single/m1.php:46 app/skins/single/modern.php:236
|
108 |
#, fuzzy
|
116 |
msgid "Chosen Time:"
|
117 |
msgstr "Lokale Zeit"
|
118 |
|
119 |
+
#: app/features/colors.php:50 app/features/fes/form.php:935
|
120 |
+
#: app/features/mec/settings.php:817
|
121 |
msgid "Event Color"
|
122 |
msgstr "Farbe der Veranstaltung"
|
123 |
|
130 |
#: app/features/contextual.php:55 app/features/mec.php:476
|
131 |
#: app/features/mec/dashboard.php:143 app/features/mec/support.php:20
|
132 |
#: app/features/popup/event.php:60 app/features/popup/shortcode.php:37
|
133 |
+
#: app/libraries/main.php:652
|
134 |
msgid "Settings"
|
135 |
msgstr "Einstellungen"
|
136 |
|
137 |
#: app/features/contextual.php:62 app/features/events.php:1516
|
138 |
#: app/features/events.php:2486 app/features/mec/booking.php:626
|
139 |
+
#: app/features/mec/booking.php:894 app/features/mec/settings.php:910
|
140 |
+
#: app/features/mec/support.php:29 app/libraries/main.php:603
|
141 |
msgid "Booking Form"
|
142 |
msgstr "Buchungsformular"
|
143 |
|
165 |
|
166 |
#: app/features/contextual.php:70 app/features/events.php:1524
|
167 |
#: app/features/mec/booking.php:836 app/features/mec/support-page.php:115
|
168 |
+
#: app/features/mec/support.php:36 app/libraries/main.php:605
|
169 |
msgid "Payment Gateways"
|
170 |
msgstr "Zahlungs-Gateways"
|
171 |
|
181 |
|
182 |
#: app/features/contextual.php:77 app/features/events.php:402
|
183 |
#: app/features/mec/support-page.php:117 app/features/mec/support.php:45
|
184 |
+
#: app/libraries/main.php:800
|
185 |
msgid "Notifications"
|
186 |
msgstr "Benachrichtigungen"
|
187 |
|
266 |
"height=\"420\" src=\"https://www.youtube.com/embed/dqgt1b8X8hs\" frameborder="
|
267 |
"\"0\" allowfullscreen></iframe>"
|
268 |
|
269 |
+
#: app/features/contextual.php:117 app/features/mec/settings.php:52
|
270 |
#: app/features/mec/support-page.php:97 app/libraries/main.php:566
|
271 |
msgid "General Options"
|
272 |
msgstr "Allgemeine Einstellungen"
|
273 |
|
274 |
+
#: app/features/contextual.php:139 app/features/mec/settings.php:498
|
275 |
#: app/libraries/main.php:568
|
276 |
msgid "Slugs/Permalinks"
|
277 |
msgstr "Slug/Permalinks"
|
280 |
msgid "Event Details/Single Event Page"
|
281 |
msgstr "Event Details / Einzelveranstaltungsseite"
|
282 |
|
283 |
+
#: app/features/contextual.php:166 app/features/mec/settings.php:530
|
284 |
#: app/libraries/main.php:569
|
285 |
msgid "Currency Options"
|
286 |
msgstr "Währungseinstellungen"
|
289 |
msgid "Google Maps Options"
|
290 |
msgstr "Google Maps Einstellungen"
|
291 |
|
292 |
+
#: app/features/contextual.php:244 app/features/mec/settings.php:589
|
293 |
#: app/libraries/main.php:570
|
294 |
msgid "Google Recaptcha Options"
|
295 |
msgstr "Google Recaptcha Einstellungen"
|
296 |
|
297 |
#: app/features/contextual.php:258 app/features/mec/single.php:298
|
298 |
+
#: app/libraries/main.php:589
|
299 |
msgid "Countdown Options"
|
300 |
msgstr "Countdown Einstellungsoptionen"
|
301 |
|
302 |
#: app/features/contextual.php:268 app/features/mec/modules.php:269
|
303 |
+
#: app/libraries/main.php:615
|
304 |
msgid "Social Networks"
|
305 |
msgstr "Soziale Netzwerke"
|
306 |
|
308 |
msgid "Next Event Module"
|
309 |
msgstr "Nächstes Veranstaltung Modul"
|
310 |
|
311 |
+
#: app/features/contextual.php:286 app/features/mec/settings.php:629
|
312 |
#: app/features/mec/support-page.php:98 app/libraries/main.php:571
|
313 |
msgid "Frontend Event Submission"
|
314 |
msgstr "Erstellung von Veranstaltungen im Frontend"
|
315 |
|
316 |
#: app/features/contextual.php:298 app/features/events.php:395
|
317 |
+
#: app/libraries/main.php:590
|
318 |
msgid "Exceptional Days"
|
319 |
msgstr "Herausgenommene Tage "
|
320 |
|
321 |
#: app/features/contextual.php:308 app/features/events.php:365
|
322 |
#: app/features/mec/booking.php:88 app/features/mec/notifications.php:36
|
323 |
#: app/features/mec/support-page.php:110 app/features/mec/support-page.php:114
|
324 |
+
#: app/libraries/main.php:598 app/libraries/main.php:630
|
325 |
+
#: app/libraries/main.php:717
|
326 |
msgid "Booking"
|
327 |
msgstr "Buchung / Reservierung"
|
328 |
|
329 |
#: app/features/contextual.php:318 app/features/mec/booking.php:448
|
330 |
+
#: app/features/mec/booking.php:852 app/libraries/main.php:600
|
331 |
msgid "Coupons"
|
332 |
msgstr "Gutscheine"
|
333 |
|
334 |
#: app/features/contextual.php:326 app/features/mec/modules.php:341
|
335 |
+
#: app/libraries/main.php:617
|
336 |
msgid "BuddyPress Integration"
|
337 |
msgstr "Buddy Press Integration"
|
338 |
|
339 |
+
#: app/features/contextual.php:334 app/features/mec/settings.php:1124
|
340 |
+
#: app/libraries/main.php:576
|
341 |
msgid "Mailchimp Integration"
|
342 |
msgstr "Mailchimp Integration"
|
343 |
|
346 |
msgstr "MEC Aktivierung"
|
347 |
|
348 |
#: app/features/dlfile.php:121 app/features/events.php:1521
|
349 |
+
#: app/features/mec/booking.php:368 app/features/mec/settings.php:945
|
350 |
#, fuzzy
|
351 |
#| msgid "Download ICS file"
|
352 |
msgid "Downloadable File"
|
383 |
msgstr "Das Bild ist hochgeladen"
|
384 |
|
385 |
#: app/features/events.php:183 app/features/ix/export.php:34
|
386 |
+
#: app/features/mec/dashboard.php:267 app/libraries/main.php:5632
|
387 |
+
#: app/libraries/main.php:5652 app/skins/daily_view/tpl.php:82
|
388 |
#: app/skins/monthly_view/tpl.php:73 app/skins/tile/tpl.php:83
|
389 |
#: app/skins/yearly_view/tpl.php:71
|
390 |
msgid "Events"
|
408 |
msgid "Add New Event"
|
409 |
msgstr "Neue Veranstaltung hinzufügen"
|
410 |
|
411 |
+
#: app/features/events.php:187 app/features/ix.php:4474
|
412 |
#: app/features/ix/thirdparty.php:44 app/skins/map/tpl.php:69
|
413 |
#: app/skins/map/tpl.php:89
|
414 |
msgid "No events found!"
|
444 |
#: app/features/mec/meta_boxes/search_form.php:700
|
445 |
#: app/features/mec/meta_boxes/search_form.php:785
|
446 |
#: app/features/mec/meta_boxes/search_form.php:906
|
447 |
+
#: app/features/mec/settings.php:1017 app/features/mec/settings.php:1078
|
448 |
#: app/features/mec/single.php:385 app/features/mec/single.php:427
|
449 |
+
#: app/features/search.php:68 app/libraries/main.php:6568
|
450 |
+
#: app/libraries/main.php:6622 app/libraries/skins.php:1008
|
451 |
+
#: app/skins/single.php:1025 app/skins/single/default.php:272
|
452 |
#: app/skins/single/default.php:510 app/skins/single/m1.php:201
|
453 |
#: app/skins/single/m2.php:124 app/skins/single/modern.php:154
|
454 |
msgid "Category"
|
455 |
msgstr "Kategorie"
|
456 |
|
457 |
#: app/features/events.php:209 app/features/events.php:3533
|
458 |
+
#: app/features/fes/form.php:885 app/features/mec.php:464
|
459 |
#: app/features/mec/meta_boxes/filter.php:69
|
460 |
+
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:6567
|
461 |
+
#: app/libraries/main.php:6621
|
462 |
msgid "Categories"
|
463 |
msgstr "Kategorien"
|
464 |
|
560 |
msgid "Date And Time"
|
561 |
msgstr "Datum und Uhrzeit"
|
562 |
|
563 |
+
#: app/features/events.php:393 app/features/fes/form.php:383
|
564 |
msgid "Event Repeating"
|
565 |
msgstr "Wiederholende Veranstaltung"
|
566 |
|
571 |
msgid "Event Data"
|
572 |
msgstr "Veranstaltungsdetails"
|
573 |
|
574 |
+
#: app/features/events.php:396 app/features/mec/settings.php:847
|
575 |
+
#: app/libraries/hourlyschedule.php:35 app/skins/single.php:1431
|
576 |
msgid "Hourly Schedule"
|
577 |
msgstr "Stundenplan"
|
578 |
|
585 |
msgstr "Links"
|
586 |
|
587 |
#: app/features/events.php:399 app/features/events.php:3580
|
588 |
+
#: app/features/events.php:3787 app/features/ix.php:4063
|
589 |
+
#: app/features/ix.php:4105
|
590 |
#: app/features/mec/meta_boxes/display_options.php:1506
|
591 |
#: app/features/mec/meta_boxes/search_form.php:47
|
592 |
#: app/features/mec/meta_boxes/search_form.php:133
|
599 |
#: app/features/mec/meta_boxes/search_form.php:716
|
600 |
#: app/features/mec/meta_boxes/search_form.php:801
|
601 |
#: app/features/mec/meta_boxes/search_form.php:922
|
602 |
+
#: app/features/mec/settings.php:1090 app/features/mec/single.php:389
|
603 |
#: app/features/mec/single.php:431 app/features/organizers.php:58
|
604 |
#: app/features/organizers.php:204 app/features/organizers.php:260
|
605 |
#: app/features/organizers.php:262 app/features/organizers.php:271
|
606 |
#: app/features/popup/event.php:163 app/features/popup/event.php:172
|
607 |
+
#: app/features/search.php:80 app/libraries/main.php:6574
|
608 |
+
#: app/libraries/main.php:6628 app/libraries/skins.php:1085
|
609 |
+
#: app/skins/single.php:1273 app/skins/single/default.php:297
|
610 |
#: app/skins/single/default.php:535 app/skins/single/m1.php:102
|
611 |
#: app/skins/single/m2.php:25 app/skins/single/modern.php:50
|
612 |
msgid "Organizer"
|
613 |
msgstr "Veranstalter"
|
614 |
|
615 |
#: app/features/events.php:400 app/features/events.php:1235
|
616 |
+
#: app/features/fes/form.php:856 app/features/mec/settings.php:1014
|
617 |
+
#: app/libraries/main.php:6605 app/libraries/main.php:6654
|
618 |
+
#: app/skins/single.php:1051 app/skins/single/default.php:190
|
619 |
#: app/skins/single/default.php:429 app/skins/single/m1.php:61
|
620 |
#: app/skins/single/modern.php:251
|
621 |
msgid "Cost"
|
637 |
|
638 |
#: app/features/events.php:569 app/features/events.php:2472
|
639 |
#: app/features/events.php:4110 app/features/fes.php:243
|
640 |
+
#: app/features/fes/form.php:812 app/features/labels.php:180
|
641 |
#: app/features/mec/booking.php:45 app/features/organizers.php:279
|
642 |
#: app/features/popup/event.php:182 app/features/profile/profile.php:149
|
643 |
+
#: app/libraries/notifications.php:1721 app/modules/booking/steps/form.php:62
|
644 |
msgid "Name"
|
645 |
msgstr "Name"
|
646 |
|
647 |
#: app/features/events.php:570 app/features/events.php:2481
|
648 |
#: app/features/events.php:2548 app/features/events.php:2637
|
649 |
#: app/features/events.php:4113 app/features/fes.php:243
|
650 |
+
#: app/features/fes/form.php:808 app/features/login/login.php:5
|
651 |
#: app/features/mec/booking.php:57 app/features/mec/booking.php:664
|
652 |
#: app/features/mec/booking.php:760 app/features/mec/single.php:240
|
653 |
#: app/features/organizers.php:111 app/features/organizers.php:152
|
654 |
#: app/features/profile/profile.php:152 app/features/speakers.php:127
|
655 |
+
#: app/features/speakers.php:204 app/libraries/main.php:1916
|
656 |
+
#: app/libraries/main.php:1985 app/libraries/main.php:3426
|
657 |
+
#: app/libraries/notifications.php:1722 app/modules/booking/steps/form.php:71
|
658 |
+
#: app/modules/booking/steps/form.php:213 app/skins/single.php:1290
|
659 |
+
#: app/skins/single.php:1349 app/skins/single/default.php:314
|
660 |
#: app/skins/single/default.php:552 app/skins/single/m1.php:119
|
661 |
#: app/skins/single/m2.php:42 app/skins/single/modern.php:67
|
662 |
msgid "Email"
|
675 |
#: app/features/events.php:586 app/features/events.php:590
|
676 |
#: app/features/events.php:3581 app/features/events.php:3787
|
677 |
#: app/features/fes/form.php:286 app/features/fes/form.php:290
|
678 |
+
#: app/features/ix.php:4063 app/features/ix.php:4105
|
679 |
#: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1394
|
680 |
#: app/features/mec/meta_boxes/display_options.php:52
|
681 |
#: app/features/mec/meta_boxes/display_options.php:305
|
699 |
#: app/features/events.php:605 app/features/events.php:609
|
700 |
#: app/features/events.php:3582 app/features/events.php:3787
|
701 |
#: app/features/fes/form.php:305 app/features/fes/form.php:309
|
702 |
+
#: app/features/ix.php:4063 app/features/ix.php:4105
|
703 |
#: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1395
|
704 |
#: app/features/mec/meta_boxes/display_options.php:68
|
705 |
#: app/features/mec/meta_boxes/display_options.php:321
|
752 |
#: app/features/events.php:2223 app/features/events.php:2259
|
753 |
#: app/features/events.php:2357 app/features/events.php:2372
|
754 |
#: app/features/events.php:2402 app/features/events.php:2415
|
755 |
+
#: app/features/fes/form.php:456 app/features/fes/form.php:764
|
756 |
#: app/features/locations.php:335 app/features/mec/booking.php:109
|
757 |
#: app/features/mec/booking.php:201 app/features/mec/booking.php:266
|
758 |
#: app/features/mec/booking.php:299 app/features/mec/booking.php:312
|
807 |
#: app/features/mec/notifications.php:1195
|
808 |
#: app/features/mec/notifications.php:1210
|
809 |
#: app/features/mec/notifications.php:1367
|
810 |
+
#: app/features/mec/notifications.php:1479 app/features/mec/settings.php:67
|
811 |
+
#: app/features/mec/settings.php:86 app/features/mec/settings.php:113
|
812 |
+
#: app/features/mec/settings.php:149 app/features/mec/settings.php:172
|
813 |
+
#: app/features/mec/settings.php:218 app/features/mec/settings.php:299
|
814 |
+
#: app/features/mec/settings.php:376 app/features/mec/settings.php:453
|
815 |
+
#: app/features/mec/settings.php:470 app/features/mec/settings.php:487
|
816 |
+
#: app/features/mec/settings.php:506 app/features/mec/settings.php:520
|
817 |
+
#: app/features/mec/settings.php:548 app/features/mec/settings.php:641
|
818 |
+
#: app/features/mec/settings.php:809 app/features/mec/settings.php:985
|
819 |
+
#: app/features/mec/settings.php:1001 app/features/mec/settings.php:1139
|
820 |
+
#: app/features/mec/settings.php:1152 app/features/mec/settings.php:1168
|
821 |
+
#: app/features/mec/single.php:46 app/features/mec/single.php:62
|
822 |
+
#: app/features/mec/single.php:82 app/features/mec/single.php:100
|
823 |
+
#: app/features/mec/single.php:124 app/features/mec/single.php:141
|
824 |
+
#: app/features/mec/single.php:192 app/features/mec/single.php:327
|
825 |
+
#: app/features/mec/styling.php:123 app/features/mec/styling.php:223
|
826 |
+
#: app/features/mec/styling.php:240 app/features/mec/styling.php:254
|
827 |
+
#: app/features/organizers.php:272 app/features/popup/event.php:126
|
828 |
+
#: app/features/popup/event.php:173 app/skins/single.php:1136
|
829 |
+
#: app/skins/single/default.php:207 app/skins/single/default.php:444
|
830 |
+
#: app/skins/single/m1.php:223 app/skins/single/m2.php:147
|
831 |
+
#: app/skins/single/modern.php:177
|
832 |
msgid "Read More"
|
833 |
msgstr "Mehr lesen"
|
834 |
|
866 |
msgid "Count to Event End"
|
867 |
msgstr "Am Event Ende"
|
868 |
|
869 |
+
#: app/features/events.php:700 app/features/fes/form.php:368
|
870 |
#: app/modules/weather/darksky.php:57
|
871 |
msgid "Visibility"
|
872 |
msgstr "Sichtbarkeit"
|
873 |
|
874 |
+
#: app/features/events.php:703 app/features/fes/form.php:371
|
875 |
+
#: app/features/mec/settings.php:804 app/features/mec/settings.php:808
|
876 |
#, fuzzy
|
877 |
#| msgid "Visibility"
|
878 |
msgid "Event Visibility"
|
879 |
msgstr "Sichtbarkeit"
|
880 |
|
881 |
+
#: app/features/events.php:704 app/features/fes/form.php:372
|
882 |
#, fuzzy
|
883 |
#| msgid "Booking"
|
884 |
msgid "Show on Shortcodes"
|
885 |
msgstr "Buchung / Reservierung"
|
886 |
|
887 |
+
#: app/features/events.php:705 app/features/fes/form.php:373
|
888 |
#, fuzzy
|
889 |
#| msgid "Shortcodes"
|
890 |
msgid "Hide on Shortcodes"
|
891 |
msgstr "Shortcodes"
|
892 |
|
893 |
+
#: app/features/events.php:712 app/features/fes/form.php:381
|
894 |
msgid "Repeating"
|
895 |
msgstr "Wiederholen"
|
896 |
|
898 |
msgid "Event Repeating (Recurring events)"
|
899 |
msgstr "Wiederholende Veranstaltung"
|
900 |
|
901 |
+
#: app/features/events.php:725 app/features/fes/form.php:387
|
902 |
msgid "Repeats"
|
903 |
msgstr "Wiederholend"
|
904 |
|
905 |
+
#: app/features/events.php:733 app/features/fes/form.php:389
|
906 |
#: app/features/mec.php:1397 app/skins/default_full_calendar/tpl.php:77
|
907 |
#: app/skins/full_calendar/tpl.php:125
|
908 |
msgid "Daily"
|
909 |
msgstr "Täglich"
|
910 |
|
911 |
+
#: app/features/events.php:740 app/features/fes/form.php:390
|
912 |
msgid "Every Weekday"
|
913 |
msgstr "An jedem Wochentag"
|
914 |
|
915 |
+
#: app/features/events.php:747 app/features/fes/form.php:391
|
916 |
msgid "Every Weekend"
|
917 |
msgstr "An jedem Wochenende"
|
918 |
|
919 |
+
#: app/features/events.php:754 app/features/fes/form.php:392
|
920 |
msgid "Certain Weekdays"
|
921 |
msgstr "Bestimmte Wochentage"
|
922 |
|
923 |
+
#: app/features/events.php:761 app/features/fes/form.php:393
|
924 |
#: app/skins/default_full_calendar/tpl.php:76
|
925 |
#: app/skins/full_calendar/tpl.php:124
|
926 |
msgid "Weekly"
|
927 |
msgstr "Wöchentlich"
|
928 |
|
929 |
+
#: app/features/events.php:768 app/features/fes/form.php:394
|
930 |
#: app/features/mec.php:1398 app/skins/default_full_calendar/tpl.php:75
|
931 |
#: app/skins/full_calendar/tpl.php:123
|
932 |
msgid "Monthly"
|
933 |
msgstr "Monatlich"
|
934 |
|
935 |
+
#: app/features/events.php:775 app/features/fes/form.php:395
|
936 |
#: app/features/mec.php:1399 app/skins/default_full_calendar/tpl.php:74
|
937 |
#: app/skins/full_calendar/tpl.php:122
|
938 |
msgid "Yearly"
|
939 |
msgstr "Jährlich"
|
940 |
|
941 |
+
#: app/features/events.php:782 app/features/fes/form.php:396
|
942 |
msgid "Custom Days"
|
943 |
msgstr "Benutzerdefinierte Tage"
|
944 |
|
945 |
+
#: app/features/events.php:789 app/features/fes/form.php:397
|
946 |
msgid "Advanced"
|
947 |
msgstr "Fortgeschritten"
|
948 |
|
949 |
+
#: app/features/events.php:794 app/features/fes/form.php:401
|
950 |
msgid "Repeat Interval"
|
951 |
msgstr "Wiederholungsintervall"
|
952 |
|
953 |
+
#: app/features/events.php:796 app/features/fes/form.php:402
|
954 |
msgid "Repeat interval"
|
955 |
msgstr "Wiederholungsintervall"
|
956 |
|
957 |
+
#: app/features/events.php:800 app/features/fes/form.php:405
|
958 |
msgid "Week Days"
|
959 |
msgstr "Wochentage"
|
960 |
|
968 |
|
969 |
#: app/features/events.php:823 app/features/events.php:1945
|
970 |
#: app/features/events.php:1973 app/features/events.php:2127
|
971 |
+
#: app/features/fes/form.php:419 app/features/ix/import_f_calendar.php:42
|
972 |
#: app/features/ix/import_g_calendar.php:51
|
973 |
#: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:35
|
974 |
+
#: app/libraries/skins.php:1237
|
975 |
msgid "Start"
|
976 |
msgstr "Start"
|
977 |
|
978 |
#: app/features/events.php:836 app/features/events.php:1343
|
979 |
#: app/features/events.php:1929 app/features/events.php:2116
|
980 |
#: app/features/events.php:2196 app/features/events.php:2329
|
981 |
+
#: app/features/fes/form.php:449 app/features/fes/form.php:983
|
982 |
#: app/features/occurrences.php:114 app/libraries/hourlyschedule.php:56
|
983 |
#: app/libraries/hourlyschedule.php:119
|
984 |
msgid "Add"
|
985 |
msgstr "Hinzufügen"
|
986 |
|
987 |
+
#: app/features/events.php:839 app/features/fes/form.php:452
|
988 |
msgid "Custom Days Repeating"
|
989 |
msgstr "Benutzerdefinierte Wiederholende Tage"
|
990 |
|
991 |
+
#: app/features/events.php:842 app/features/fes/form.php:455
|
992 |
msgid ""
|
993 |
"Add certain days to event occurrence dates. If you have a single day event, "
|
994 |
"start and end dates should be the same, If you have a multiple day event, "
|
997 |
|
998 |
#: app/features/events.php:853 app/features/events.php:1949
|
999 |
#: app/features/events.php:1977 app/features/events.php:2131
|
1000 |
+
#: app/features/fes/form.php:434 app/libraries/skins.php:1240
|
1001 |
msgid "End"
|
1002 |
msgstr "Ende"
|
1003 |
|
1004 |
+
#: app/features/events.php:930 app/features/fes/form.php:528
|
1005 |
msgid "First"
|
1006 |
msgstr "Erster"
|
1007 |
|
1008 |
+
#: app/features/events.php:972 app/features/fes/form.php:570
|
1009 |
msgid "Second"
|
1010 |
msgstr "Zweiter"
|
1011 |
|
1012 |
+
#: app/features/events.php:1014 app/features/fes/form.php:612
|
1013 |
msgid "Third"
|
1014 |
msgstr "Dritter"
|
1015 |
|
1016 |
+
#: app/features/events.php:1056 app/features/fes/form.php:654
|
1017 |
msgid "Fourth"
|
1018 |
msgstr "Vierte"
|
1019 |
|
1020 |
+
#: app/features/events.php:1098 app/features/fes/form.php:696
|
1021 |
msgid "Last"
|
1022 |
msgstr "Letzter"
|
1023 |
|
1024 |
+
#: app/features/events.php:1145 app/features/fes/form.php:742
|
1025 |
msgid "Ends Repeat"
|
1026 |
msgstr "Wiederholung endet"
|
1027 |
|
1028 |
+
#: app/features/events.php:1157 app/features/fes/form.php:746
|
1029 |
msgid "Never"
|
1030 |
msgstr "Niemals"
|
1031 |
|
1032 |
+
#: app/features/events.php:1169 app/features/fes/form.php:751
|
1033 |
msgid "On"
|
1034 |
msgstr "Am"
|
1035 |
|
1036 |
+
#: app/features/events.php:1185 app/features/fes/form.php:758
|
1037 |
#: app/features/mec/booking.php:157
|
1038 |
msgid "After"
|
1039 |
msgstr "Nach"
|
1040 |
|
1041 |
#: app/features/events.php:1189 app/features/events.php:1193
|
1042 |
+
#: app/features/fes/form.php:760 app/features/fes/form.php:763
|
1043 |
msgid "Occurrences times"
|
1044 |
msgstr " mal vorkommen"
|
1045 |
|
1055 |
"Das Event ist nach einer bestimmten Anzahl von Wiederholungen zu Ende. Zum "
|
1056 |
"Beispiel: Bei Eingabe von 10 wird das Event nach 10 Wiederholungen beendet"
|
1057 |
|
1058 |
+
#: app/features/events.php:1210 app/features/fes/form.php:777
|
1059 |
#, fuzzy
|
1060 |
#| msgid "Next Occurrence of Other Events"
|
1061 |
msgid "Show only one occurrence of this event"
|
1062 |
msgstr "Nächstes Auftreten von anderen Events."
|
1063 |
|
1064 |
#: app/features/events.php:1231 app/features/events.php:3787
|
1065 |
+
#: app/features/fes/form.php:853 app/features/ix.php:4063
|
1066 |
+
#: app/features/ix.php:4105 app/features/mec/meta_boxes/search_form.php:82
|
1067 |
#: app/features/mec/meta_boxes/search_form.php:168
|
1068 |
#: app/features/mec/meta_boxes/search_form.php:254
|
1069 |
#: app/features/mec/meta_boxes/search_form.php:340
|
1074 |
#: app/features/mec/meta_boxes/search_form.php:751
|
1075 |
#: app/features/mec/meta_boxes/search_form.php:836
|
1076 |
#: app/features/mec/meta_boxes/search_form.php:957
|
1077 |
+
#: app/features/mec/settings.php:780 app/libraries/main.php:6604
|
1078 |
+
#: app/libraries/main.php:6653 app/widgets/single.php:105
|
1079 |
msgid "Event Cost"
|
1080 |
msgstr ""
|
1081 |
"Bruttopreis des Events in Euro, 0 für kostenlos oder z.B. 39, ohne €-Zeichen"
|
1094 |
#: app/features/events.php:2638 app/features/fes.php:243
|
1095 |
#: app/features/mec/booking.php:665 app/features/mec/booking.php:761
|
1096 |
#: app/features/mec/single.php:242 app/features/profile/profile.php:36
|
1097 |
+
#: app/features/wc.php:83 app/libraries/main.php:3515
|
1098 |
#: app/modules/booking/steps/tickets.php:127
|
1099 |
+
#: app/modules/next-event/details.php:143 app/skins/single.php:1109
|
1100 |
#: app/skins/single/default.php:147 app/skins/single/default.php:386
|
1101 |
#: app/skins/single/m1.php:21 app/skins/single/modern.php:211
|
1102 |
msgid "Date"
|
1109 |
"multiple day occurrences."
|
1110 |
msgstr ""
|
1111 |
|
1112 |
+
#: app/features/events.php:1405 app/libraries/render.php:559
|
1113 |
msgid "Day 1"
|
1114 |
msgstr "Tag 1"
|
1115 |
|
1116 |
+
#: app/features/events.php:1449 app/features/fes/form.php:827
|
1117 |
+
#: app/features/mec/settings.php:774
|
1118 |
msgid "Event Links"
|
1119 |
msgstr "Veranstaltungslinks"
|
1120 |
|
1121 |
#: app/features/events.php:1452 app/features/events.php:1460
|
1122 |
+
#: app/features/fes/form.php:829 app/features/mec/settings.php:1015
|
1123 |
+
#: app/libraries/main.php:6602 app/libraries/main.php:6651
|
1124 |
msgid "Event Link"
|
1125 |
msgstr "Veranstaltungslink"
|
1126 |
|
1127 |
#: app/features/events.php:1455 app/features/events.php:1473
|
1128 |
+
#: app/features/fes/form.php:830 app/features/fes/form.php:835
|
1129 |
msgid "eg. http://yoursite.com/your-event"
|
1130 |
msgstr "z.B. http://yoursite.com/your-event"
|
1131 |
|
1148 |
msgstr ""
|
1149 |
|
1150 |
#: app/features/events.php:1470 app/features/events.php:1483
|
1151 |
+
#: app/features/fes/form.php:834 app/libraries/main.php:6603
|
1152 |
+
#: app/libraries/main.php:6652 app/skins/single.php:1135
|
1153 |
#: app/skins/single/default.php:206 app/skins/single/default.php:443
|
1154 |
#: app/skins/single/m1.php:222 app/skins/single/m2.php:146
|
1155 |
#: app/skins/single/modern.php:176 app/widgets/single.php:109
|
1156 |
msgid "More Info"
|
1157 |
msgstr "Mehr Informationen"
|
1158 |
|
1159 |
+
#: app/features/events.php:1476 app/features/fes/form.php:836
|
1160 |
msgid "More Information"
|
1161 |
msgstr "z.B. Noch mehr Informationen "
|
1162 |
|
1163 |
+
#: app/features/events.php:1478 app/features/fes/form.php:838
|
1164 |
#: app/features/mec.php:996 app/features/popup/shortcode.php:477
|
1165 |
msgid "Current Window"
|
1166 |
msgstr "Aktuelles Fenster"
|
1167 |
|
1168 |
+
#: app/features/events.php:1479 app/features/fes/form.php:839
|
1169 |
#: app/features/mec.php:997 app/features/popup/shortcode.php:481
|
1170 |
msgid "New Window"
|
1171 |
msgstr "Neues Fenster"
|
1172 |
|
1173 |
+
#: app/features/events.php:1484 app/features/fes/form.php:841
|
1174 |
msgid ""
|
1175 |
"If you fill it, it will be shown in event details page as an optional link. "
|
1176 |
"Insert full link including http(s)://"
|
1181 |
"Text angezeigt werden soll: zum Beispiel: Noch mehr Informationen oder Hier "
|
1182 |
"zur Anmeldung (z.B. bei Webinaren sinnvoll) "
|
1183 |
|
1184 |
+
#: app/features/events.php:1507 app/features/mec/settings.php:855
|
1185 |
msgid "Booking Options"
|
1186 |
msgstr "Buchungsoptionen"
|
1187 |
|
1188 |
#: app/features/events.php:1508 app/features/events.php:1721
|
1189 |
+
#: app/features/mec/settings.php:892
|
1190 |
#, fuzzy
|
1191 |
#| msgid "Total booking limits"
|
1192 |
msgid "Total User Booking Limits"
|
1193 |
msgstr "Gesamt Verfügbare Plätze"
|
1194 |
|
1195 |
#: app/features/events.php:1509 app/features/events.php:1777
|
1196 |
+
#: app/libraries/book.php:63 app/libraries/main.php:6607
|
1197 |
#: app/modules/booking/steps/tickets.php:159
|
1198 |
#: app/modules/booking/steps/tickets.php:165
|
1199 |
msgid "Tickets"
|
1204 |
msgstr "Gebühren"
|
1205 |
|
1206 |
#: app/features/events.php:1514 app/features/events.php:2305
|
1207 |
+
#: app/features/mec/settings.php:922
|
1208 |
msgid "Ticket Variations / Options"
|
1209 |
msgstr ""
|
1210 |
|
1222 |
msgstr "Gesamt Verfügbare Plätze"
|
1223 |
|
1224 |
#: app/features/events.php:1596 app/features/events.php:1895
|
1225 |
+
#: app/features/events.php:2082 app/modules/booking/default.php:99
|
1226 |
#: app/modules/booking/steps/tickets.php:159
|
1227 |
#: app/modules/booking/steps/tickets.php:165
|
1228 |
#: app/skins/available_spot/tpl.php:131
|
1256 |
msgstr ""
|
1257 |
|
1258 |
#: app/features/events.php:1629 app/features/events.php:1643
|
1259 |
+
#: app/features/mec/settings.php:874
|
1260 |
#, fuzzy
|
1261 |
#| msgid "Next Occurrence"
|
1262 |
msgid "Book All Occurrences"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
#: app/features/events.php:1657 app/features/mec/booking.php:130
|
1277 |
+
#: app/features/mec/settings.php:880
|
1278 |
#, fuzzy
|
1279 |
#| msgid "General Options"
|
1280 |
msgid "Interval Options"
|
1298 |
"starting the event! One day is 1440 minutes."
|
1299 |
msgstr ""
|
1300 |
|
1301 |
+
#: app/features/events.php:1674 app/features/mec/settings.php:886
|
1302 |
msgid "Automatic Approval"
|
1303 |
msgstr ""
|
1304 |
|
1431 |
#: app/features/mec/meta_boxes/search_form.php:966
|
1432 |
#: app/features/mec/meta_boxes/search_form.php:973
|
1433 |
#: app/features/mec/meta_boxes/search_form.php:980
|
1434 |
+
#: app/features/mec/modules.php:115 app/features/mec/settings.php:98
|
1435 |
+
#: app/features/mec/settings.php:482
|
1436 |
msgid "Disabled"
|
1437 |
msgstr "Deaktiviert"
|
1438 |
|
1440 |
#: app/features/mec/booking.php:176 app/features/mec/booking.php:243
|
1441 |
#: app/features/mec/booking.php:260 app/features/mec/booking.php:861
|
1442 |
#: app/features/mec/booking.php:890 app/features/mec/modules.php:155
|
1443 |
+
#: app/features/mec/settings.php:99
|
1444 |
msgid "Enabled"
|
1445 |
msgstr "Aktiviert"
|
1446 |
|
1447 |
#: app/features/events.php:1686 app/features/mec/booking.php:395
|
1448 |
#: app/features/mec/notifications.php:334 app/features/notifications.php:161
|
1449 |
+
#: app/libraries/main.php:631
|
1450 |
msgid "Booking Confirmation"
|
1451 |
msgstr "Buchungsbestätigung"
|
1452 |
|
1453 |
#: app/features/events.php:1699 app/features/mec/booking.php:279
|
1454 |
+
#: app/features/mec/settings.php:898
|
1455 |
#, fuzzy
|
1456 |
#| msgid "Last Few Tickets"
|
1457 |
msgid "Last Few Tickets Percentage"
|
1496 |
|
1497 |
#: app/features/events.php:1797 app/features/events.php:1997
|
1498 |
#: app/features/events.php:3787 app/features/fes.php:243
|
1499 |
+
#: app/features/ix.php:4063 app/features/ix.php:4105
|
1500 |
#: app/features/labels.php:179 app/features/locations.php:262
|
1501 |
#: app/features/organizers.php:203 app/features/speakers.php:282
|
1502 |
msgid "ID"
|
1507 |
msgstr "Ticket Name"
|
1508 |
|
1509 |
#: app/features/events.php:1805 app/features/events.php:2004
|
1510 |
+
#: app/features/events.php:3787 app/features/ix.php:4063
|
1511 |
+
#: app/features/ix.php:4105 app/libraries/skins.php:1252
|
1512 |
msgid "Start Time"
|
1513 |
msgstr "Uhrzeit des Beginns"
|
1514 |
|
1515 |
#: app/features/events.php:1818 app/features/events.php:2017
|
1516 |
+
#: app/features/events.php:3787 app/features/ix.php:4063
|
1517 |
+
#: app/features/ix.php:4105 app/libraries/skins.php:1253
|
1518 |
msgid "End Time"
|
1519 |
msgstr "Uhrzeit Ende"
|
1520 |
|
1617 |
#: app/features/mec/meta_boxes/search_form.php:737
|
1618 |
#: app/features/mec/meta_boxes/search_form.php:822
|
1619 |
#: app/features/mec/meta_boxes/search_form.php:943
|
1620 |
+
#: app/features/mec/settings.php:1018 app/features/mec/settings.php:1110
|
1621 |
#: app/features/mec/single.php:403 app/features/mec/single.php:445
|
1622 |
+
#: app/features/search.php:98 app/libraries/skins.php:1163
|
1623 |
msgid "Label"
|
1624 |
msgstr "Label"
|
1625 |
|
1631 |
#: app/features/mec/booking.php:617 app/libraries/hourlyschedule.php:52
|
1632 |
#: app/libraries/hourlyschedule.php:66 app/libraries/hourlyschedule.php:87
|
1633 |
#: app/libraries/hourlyschedule.php:115 app/libraries/hourlyschedule.php:132
|
1634 |
+
#: app/libraries/main.php:3347 app/libraries/main.php:3377
|
1635 |
+
#: app/libraries/main.php:3406 app/libraries/main.php:3435
|
1636 |
+
#: app/libraries/main.php:3465 app/libraries/main.php:3495
|
1637 |
+
#: app/libraries/main.php:3524 app/libraries/main.php:3554
|
1638 |
+
#: app/libraries/main.php:3584 app/libraries/main.php:3606
|
1639 |
+
#: app/libraries/main.php:3637 app/libraries/main.php:3684
|
1640 |
+
#: app/libraries/main.php:3731 app/libraries/main.php:3781
|
1641 |
+
#: app/libraries/main.php:3821
|
1642 |
msgid "Remove"
|
1643 |
msgstr "Entfernen"
|
1644 |
|
1680 |
|
1681 |
#: app/features/events.php:2344 app/features/events.php:2391
|
1682 |
#: app/features/events.php:3577 app/features/events.php:3787
|
1683 |
+
#: app/features/fes/form.php:260 app/features/ix.php:4063
|
1684 |
+
#: app/features/ix.php:4105 app/features/mec/booking.php:562
|
1685 |
#: app/features/mec/booking.php:594 app/features/mec/styling.php:134
|
1686 |
#: app/libraries/hourlyschedule.php:48 app/libraries/hourlyschedule.php:64
|
1687 |
#: app/libraries/hourlyschedule.php:85 app/libraries/hourlyschedule.php:110
|
1722 |
msgstr "Teilnehmer Liste"
|
1723 |
|
1724 |
#: app/features/events.php:2545 app/features/mec/booking.php:661
|
1725 |
+
#: app/libraries/main.php:3368
|
1726 |
msgid "MEC Name"
|
1727 |
msgstr "MEC Name"
|
1728 |
|
1729 |
#: app/features/events.php:2546 app/features/mec/booking.php:662
|
1730 |
+
#: app/libraries/main.php:3397
|
1731 |
msgid "MEC Email"
|
1732 |
msgstr "MEC Email"
|
1733 |
|
1734 |
#: app/features/events.php:2547 app/features/events.php:2636
|
1735 |
#: app/features/mec/booking.php:663 app/features/mec/booking.php:759
|
1736 |
+
#: app/features/mec/single.php:239 app/libraries/main.php:3338
|
1737 |
msgid "Text"
|
1738 |
msgstr "Text"
|
1739 |
|
1742 |
#: app/features/mec/single.php:243 app/features/organizers.php:103
|
1743 |
#: app/features/organizers.php:148 app/features/speakers.php:119
|
1744 |
#: app/features/speakers.php:200 app/features/speakers.php:285
|
1745 |
+
#: app/libraries/main.php:3545
|
1746 |
msgid "Tel"
|
1747 |
msgstr "Tel"
|
1748 |
|
1749 |
#: app/features/events.php:2551 app/features/mec/booking.php:667
|
1750 |
+
#: app/libraries/main.php:3486
|
1751 |
msgid "File"
|
1752 |
msgstr "Datei"
|
1753 |
|
1754 |
#: app/features/events.php:2552 app/features/events.php:2640
|
1755 |
#: app/features/mec/booking.php:668 app/features/mec/booking.php:763
|
1756 |
+
#: app/features/mec/single.php:244 app/libraries/main.php:3575
|
1757 |
msgid "Textarea"
|
1758 |
msgstr "Textbereich"
|
1759 |
|
1770 |
#: app/features/mec/meta_boxes/search_form.php:704
|
1771 |
#: app/features/mec/meta_boxes/search_form.php:789
|
1772 |
#: app/features/mec/meta_boxes/search_form.php:910
|
1773 |
+
#: app/features/mec/single.php:246 app/libraries/main.php:3628
|
1774 |
msgid "Checkboxes"
|
1775 |
msgstr "Checkboxes"
|
1776 |
|
1777 |
#: app/features/events.php:2554 app/features/events.php:2642
|
1778 |
#: app/features/mec/booking.php:670 app/features/mec/booking.php:765
|
1779 |
+
#: app/features/mec/single.php:247 app/libraries/main.php:3675
|
1780 |
msgid "Radio Buttons"
|
1781 |
msgstr "Radio Buttons"
|
1782 |
|
1856 |
#: app/features/mec/meta_boxes/search_form.php:939
|
1857 |
#: app/features/mec/meta_boxes/search_form.php:946
|
1858 |
#: app/features/mec/meta_boxes/search_form.php:967
|
1859 |
+
#: app/features/mec/single.php:248 app/libraries/main.php:3722
|
1860 |
msgid "Dropdown"
|
1861 |
msgstr "Dropdown"
|
1862 |
|
1863 |
#: app/features/events.php:2556 app/features/events.php:2644
|
1864 |
#: app/features/mec/booking.php:672 app/features/mec/booking.php:767
|
1865 |
+
#: app/libraries/main.php:3772
|
1866 |
msgid "Agreement"
|
1867 |
msgstr "Zustimmung"
|
1868 |
|
1869 |
#: app/features/events.php:2557 app/features/events.php:2645
|
1870 |
#: app/features/mec/booking.php:673 app/features/mec/booking.php:768
|
1871 |
+
#: app/features/mec/single.php:245 app/libraries/main.php:3605
|
1872 |
msgid "Paragraph"
|
1873 |
msgstr "Absatz"
|
1874 |
|
1901 |
msgstr "Teilnehmer Liste"
|
1902 |
|
1903 |
#: app/features/events.php:3579 app/features/events.php:3787
|
1904 |
+
#: app/features/ix.php:4063 app/features/ix.php:4105
|
1905 |
#: app/features/locations.php:58 app/features/locations.php:263
|
1906 |
#: app/features/locations.php:323 app/features/locations.php:325
|
1907 |
#: app/features/locations.php:334
|
1917 |
#: app/features/mec/meta_boxes/search_form.php:708
|
1918 |
#: app/features/mec/meta_boxes/search_form.php:793
|
1919 |
#: app/features/mec/meta_boxes/search_form.php:914
|
1920 |
+
#: app/features/mec/settings.php:1084 app/features/mec/single.php:393
|
1921 |
#: app/features/mec/single.php:435 app/features/popup/event.php:116
|
1922 |
#: app/features/popup/event.php:125 app/features/search.php:74
|
1923 |
+
#: app/libraries/main.php:2709 app/libraries/main.php:6572
|
1924 |
+
#: app/libraries/main.php:6626 app/libraries/skins.php:1059
|
1925 |
+
#: app/skins/single.php:952 app/skins/single.php:1395
|
1926 |
#: app/skins/single/default.php:243 app/skins/single/default.php:481
|
1927 |
#: app/skins/single/m1.php:173 app/skins/single/m2.php:96
|
1928 |
#: app/skins/single/modern.php:125
|
1970 |
msgid "Duplicate"
|
1971 |
msgstr "Kopie"
|
1972 |
|
1973 |
+
#: app/features/events.php:3787 app/features/ix.php:4063
|
1974 |
+
#: app/features/ix.php:4105
|
1975 |
msgid "Link"
|
1976 |
msgstr "Link"
|
1977 |
|
1978 |
+
#: app/features/events.php:3787 app/features/ix.php:4063
|
1979 |
+
#: app/features/ix.php:4105 app/features/locations.php:110
|
1980 |
#: app/features/locations.php:180 app/features/locations.php:264
|
1981 |
#: app/features/mec/meta_boxes/search_form.php:75
|
1982 |
#: app/features/mec/meta_boxes/search_form.php:161
|
2002 |
msgid "%s Email"
|
2003 |
msgstr "%s Email"
|
2004 |
|
2005 |
+
#: app/features/events.php:3787 app/features/fes/form.php:870
|
2006 |
+
#: app/features/mec/settings.php:786
|
2007 |
msgid "Featured Image"
|
2008 |
msgstr "Ausgewähltes Bild"
|
2009 |
|
2010 |
#: app/features/events.php:4116 app/features/fes.php:243
|
2011 |
+
#: app/features/profile/profile.php:155 app/libraries/main.php:2793
|
2012 |
+
#: app/libraries/main.php:6606
|
2013 |
msgid "Ticket"
|
2014 |
msgstr "Ticket"
|
2015 |
|
2077 |
msgid "Order Time"
|
2078 |
msgstr "Uhrzeit Bestellung"
|
2079 |
|
2080 |
+
#: app/features/fes.php:243 app/features/wc.php:84 app/libraries/main.php:2741
|
2081 |
+
#: app/libraries/main.php:2856
|
2082 |
msgid "Transaction ID"
|
2083 |
msgstr "Transaktions-ID"
|
2084 |
|
2086 |
msgid "Total Price"
|
2087 |
msgstr "Gesamt Preis"
|
2088 |
|
2089 |
+
#: app/features/fes.php:243 app/libraries/main.php:2851
|
2090 |
msgid "Gateway"
|
2091 |
msgstr "Gateway"
|
2092 |
|
2166 |
msgid "Go back to events list"
|
2167 |
msgstr "Zurück zur Liste der Veranstaltungen"
|
2168 |
|
2169 |
+
#: app/features/fes/form.php:268 app/features/mec/settings.php:937
|
2170 |
+
#: app/features/mec/settings.php:1013
|
2171 |
msgid "Excerpt"
|
2172 |
msgstr ""
|
2173 |
|
2183 |
"overwrite in the next import from Google."
|
2184 |
msgstr ""
|
2185 |
|
2186 |
+
#: app/features/fes/form.php:406
|
2187 |
#: app/features/mec/meta_boxes/display_options.php:1342
|
2188 |
#: app/libraries/main.php:444
|
2189 |
msgid "Monday"
|
2190 |
msgstr "Montag"
|
2191 |
|
2192 |
+
#: app/features/fes/form.php:407
|
2193 |
#: app/features/mec/meta_boxes/display_options.php:1343
|
2194 |
#: app/libraries/main.php:444
|
2195 |
msgid "Tuesday"
|
2196 |
msgstr "Dienstag"
|
2197 |
|
2198 |
+
#: app/features/fes/form.php:408
|
2199 |
#: app/features/mec/meta_boxes/display_options.php:1344
|
2200 |
#: app/libraries/main.php:444
|
2201 |
msgid "Wednesday"
|
2202 |
msgstr "Mittwoch"
|
2203 |
|
2204 |
+
#: app/features/fes/form.php:409
|
2205 |
#: app/features/mec/meta_boxes/display_options.php:1345
|
2206 |
#: app/libraries/main.php:444
|
2207 |
msgid "Thursday"
|
2208 |
msgstr "Donnerstag"
|
2209 |
|
2210 |
+
#: app/features/fes/form.php:410
|
2211 |
#: app/features/mec/meta_boxes/display_options.php:1346
|
2212 |
#: app/libraries/main.php:444
|
2213 |
msgid "Friday"
|
2214 |
msgstr "Freitag"
|
2215 |
|
2216 |
+
#: app/features/fes/form.php:411
|
2217 |
#: app/features/mec/meta_boxes/display_options.php:1347
|
2218 |
#: app/libraries/main.php:444
|
2219 |
msgid "Saturday"
|
2220 |
msgstr "Samstag"
|
2221 |
|
2222 |
+
#: app/features/fes/form.php:412
|
2223 |
#: app/features/mec/meta_boxes/display_options.php:1341
|
2224 |
#: app/libraries/main.php:444
|
2225 |
msgid "Sunday"
|
2226 |
msgstr "Sonntag"
|
2227 |
|
2228 |
+
#: app/features/fes/form.php:764
|
2229 |
msgid ""
|
2230 |
"The event will finish after certain repeats. For example if you set it to "
|
2231 |
"10, the event will finish after 10 repeats."
|
2233 |
"Das Event ist nach einer bestimmten Anzahl von Wiederholungen zu Ende. Zum "
|
2234 |
"Beispiel: Bei Eingabe von 10 wird das Event nach 10 Wiederholungen beendet"
|
2235 |
|
2236 |
+
#: app/features/fes/form.php:788
|
2237 |
msgid "Note to reviewer"
|
2238 |
msgstr "Zusätzliche Anmerkungen zum Event "
|
2239 |
|
2240 |
+
#: app/features/fes/form.php:806
|
2241 |
msgid "User Data"
|
2242 |
msgstr "Benutzerdaten"
|
2243 |
|
2244 |
+
#: app/features/fes/form.php:809
|
2245 |
msgid "eg. yourname@gmail.com"
|
2246 |
msgstr "z.B. IhrName@ihrewebseite.de"
|
2247 |
|
2248 |
+
#: app/features/fes/form.php:813 app/features/organizers.php:280
|
2249 |
#: app/features/popup/event.php:183
|
2250 |
msgid "eg. John Smith"
|
2251 |
msgstr "z.B. Max Mustermann"
|
2252 |
|
2253 |
+
#: app/features/fes/form.php:831
|
2254 |
#, fuzzy
|
2255 |
#| msgid ""
|
2256 |
#| "If you fill it, it will be replaced instead of default event page link. "
|
2263 |
"dieser durch einen neuen link ersetzt werden. Vollständigen Link einfügen, "
|
2264 |
"einschließlich http(s)://"
|
2265 |
|
2266 |
+
#: app/features/fes/form.php:875
|
2267 |
msgid "Remove Image"
|
2268 |
msgstr "Bild entfernen"
|
2269 |
|
2270 |
+
#: app/features/fes/form.php:911 app/features/labels.php:61
|
2271 |
#: app/features/labels.php:223 app/features/mec.php:465
|
2272 |
#: app/features/mec/meta_boxes/filter.php:72
|
2273 |
+
#: app/features/mec/meta_boxes/filter.php:133 app/libraries/main.php:6569
|
2274 |
+
#: app/libraries/main.php:6623 app/skins/single.php:1165
|
2275 |
#: app/skins/single/default.php:221 app/skins/single/default.php:458
|
2276 |
#: app/skins/single/m1.php:76 app/skins/single/modern.php:266
|
2277 |
msgid "Labels"
|
2278 |
msgstr "Labels"
|
2279 |
|
2280 |
+
#: app/features/fes/form.php:957 app/features/mec.php:463
|
2281 |
#: app/features/mec/meta_boxes/filter.php:73
|
2282 |
#: app/features/mec/meta_boxes/filter.php:151
|
2283 |
msgid "Tags"
|
2284 |
msgstr "Schlagworte"
|
2285 |
|
2286 |
+
#: app/features/fes/form.php:959
|
2287 |
msgid "Insert your desired tags, comma separated."
|
2288 |
msgstr ""
|
2289 |
"Geben Sie die gewünschten Tags (Schlagworte) durch ein Komma separiert ein"
|
2290 |
|
2291 |
+
#: app/features/fes/form.php:979 app/features/mec.php:472
|
2292 |
+
#: app/features/mec/modules.php:43 app/features/mec/settings.php:841
|
2293 |
#: app/features/speakers.php:61 app/libraries/hourlyschedule.php:69
|
2294 |
#: app/libraries/hourlyschedule.php:90 app/libraries/hourlyschedule.php:135
|
2295 |
+
#: app/libraries/main.php:609 app/libraries/main.php:6575
|
2296 |
+
#: app/libraries/main.php:6629 app/modules/speakers/details.php:18
|
2297 |
msgid "Speakers"
|
2298 |
msgstr "Sprecher"
|
2299 |
|
2300 |
+
#: app/features/fes/form.php:981
|
2301 |
msgid "Speakers Names"
|
2302 |
msgstr "Sprecher Namen"
|
2303 |
|
2304 |
+
#: app/features/fes/form.php:982
|
2305 |
#, fuzzy
|
2306 |
#| msgid "Separate names with commas Similar Justin, Cris"
|
2307 |
msgid "Separate names with commas: Justin, Chris"
|
2308 |
msgstr "Unterteile Namen mit Kommas. z.B. Hans, Maier"
|
2309 |
|
2310 |
+
#: app/features/fes/form.php:1023 app/modules/booking/steps/form.php:352
|
2311 |
msgid "Submit"
|
2312 |
msgstr "Buchung abschließen"
|
2313 |
|
2345 |
msgstr "MEC - Import / Export"
|
2346 |
|
2347 |
#: app/features/ix.php:107 app/features/mec/support.php:73
|
2348 |
+
#: app/libraries/main.php:860
|
2349 |
msgid "Import / Export"
|
2350 |
msgstr "Import / Export"
|
2351 |
|
2359 |
msgid "The file type should be CSV."
|
2360 |
msgstr "Der Datei Typ muss XML oder ICS sein."
|
2361 |
|
2362 |
+
#: app/features/ix.php:224 app/features/ix.php:446
|
2363 |
msgid "An error occurred during the file upload! Please check permissions!"
|
2364 |
msgstr ""
|
2365 |
|
2366 |
+
#: app/features/ix.php:280 app/libraries/main.php:6854
|
2367 |
+
#: app/libraries/main.php:6874
|
2368 |
msgid "Confirmed"
|
2369 |
msgstr "Bestätigt"
|
2370 |
|
2371 |
+
#: app/features/ix.php:281 app/libraries/main.php:6855
|
2372 |
+
#: app/libraries/main.php:6882
|
2373 |
msgid "Rejected"
|
2374 |
msgstr "Abgelehnt"
|
2375 |
|
2376 |
#: app/features/ix.php:285 app/features/mec/booking.php:1032
|
2377 |
#: app/features/mec/booking.php:1054 app/features/mec/modules.php:441
|
2378 |
#: app/features/mec/modules.php:463 app/features/mec/notifications.php:1597
|
2379 |
+
#: app/features/mec/notifications.php:1619 app/features/mec/settings.php:1449
|
2380 |
+
#: app/features/mec/settings.php:1471 app/features/mec/single.php:500
|
2381 |
+
#: app/features/mec/single.php:522 app/libraries/main.php:6902
|
2382 |
msgid "Verified"
|
2383 |
msgstr "Verifiziert"
|
2384 |
|
2385 |
#: app/features/ix.php:286 app/features/labels.php:118
|
2386 |
+
#: app/features/labels.php:144 app/libraries/main.php:6903
|
2387 |
msgid "Canceled"
|
2388 |
msgstr "Abgesagt"
|
2389 |
|
2403 |
msgid "Please upload the feed file."
|
2404 |
msgstr ""
|
2405 |
|
2406 |
+
#: app/features/ix.php:434 app/features/ix.php:451
|
2407 |
msgid "Please upload an XML or an ICS file."
|
2408 |
msgstr ""
|
2409 |
|
2410 |
+
#: app/features/ix.php:437
|
2411 |
msgid "The file type should be XML or ICS."
|
2412 |
msgstr "Der Datei Typ muss XML oder ICS sein."
|
2413 |
|
2414 |
+
#: app/features/ix.php:460
|
2415 |
msgid "The events are imported successfully!"
|
2416 |
msgstr "Die Events wurden erfolgreich importiert!"
|
2417 |
|
2418 |
+
#: app/features/ix.php:1204
|
2419 |
msgid "Third Party plugin is not installed and activated!"
|
2420 |
msgstr "Drittanbieter-Plugin ist nicht installiert und aktiviert!"
|
2421 |
|
2422 |
+
#: app/features/ix.php:1228
|
2423 |
msgid "Third Party plugin is invalid!"
|
2424 |
msgstr "Drittanbieter-Plugin ist ungültig!"
|
2425 |
|
2426 |
+
#: app/features/ix.php:3203 app/features/ix.php:3264
|
2427 |
#, fuzzy
|
2428 |
#| msgid "Both of API key and Calendar ID are required!"
|
2429 |
msgid "API key and Calendar ID are required!"
|
2430 |
msgstr "Beide, API Schlüssel und Calender ID wird benötigt"
|
2431 |
|
2432 |
+
#: app/features/ix.php:3259 app/features/ix.php:3743 app/features/ix.php:4481
|
2433 |
#, fuzzy
|
2434 |
#| msgid "Please select some events to import!"
|
2435 |
msgid "Please select events to import!"
|
2436 |
msgstr "Bitte wählen Sie einige Veranstaltungen aus zum importieren"
|
2437 |
|
2438 |
+
#: app/features/ix.php:3685 app/features/ix.php:3748
|
2439 |
#, fuzzy
|
2440 |
#| msgid "Both of API key and Calendar ID are required!"
|
2441 |
msgid "API key and Group URL are required!"
|
2442 |
msgstr "Beide, API Schlüssel und Calender ID wird benötigt"
|
2443 |
|
2444 |
+
#: app/features/ix.php:3987
|
2445 |
msgid "Check at Meetup"
|
2446 |
msgstr ""
|
2447 |
|
2448 |
+
#: app/features/ix.php:4063 app/features/ix.php:4105
|
2449 |
msgid "Organizer Tel"
|
2450 |
msgstr "Organisator Telefon"
|
2451 |
|
2452 |
+
#: app/features/ix.php:4063 app/features/ix.php:4105
|
2453 |
msgid "Organizer Email"
|
2454 |
msgstr "Organisator Email"
|
2455 |
|
2456 |
+
#: app/features/ix.php:4181
|
2457 |
#, fuzzy
|
2458 |
#| msgid "All of Client ID, Client Secret and Calendar ID are required!"
|
2459 |
msgid "All of Client ID, Client Secret, and Calendar ID are required!"
|
2460 |
msgstr "Dies wird alles benötigt: Client ID, Client Secret und Calender ID!"
|
2461 |
|
2462 |
+
#: app/features/ix.php:4204
|
2463 |
#, fuzzy, php-format
|
2464 |
#| msgid "All seems good! Please click %s for authenticating your app."
|
2465 |
msgid "All seems good! Please click %s to authenticate your app."
|
2466 |
msgstr ""
|
2467 |
"Alles scheint gut zu sein! Bitte klicken %s um Ihre App zu authentifizieren."
|
2468 |
|
2469 |
+
#: app/features/ix.php:4204 app/features/mec/settings.php:1336
|
2470 |
msgid "here"
|
2471 |
msgstr ""
|
2472 |
|
2473 |
+
#: app/features/ix.php:4258
|
2474 |
#, fuzzy
|
2475 |
#| msgid "All of Client App, Client Secret and Calendar ID are required!"
|
2476 |
msgid "Client App, Client Secret, and Calendar ID are all required!"
|
2477 |
msgstr "Dies wird alles benötigt: Client ID, Client Secret und Calender ID!"
|
2478 |
|
2479 |
+
#: app/features/ix.php:4403
|
2480 |
#, fuzzy, php-format
|
2481 |
#| msgid "%s events added to Google Calendar successfully."
|
2482 |
msgid "%s events added to Google Calendar with success."
|
2483 |
msgstr "%s Events wurden erfolgreich zum Google Kalender hinzugefügt."
|
2484 |
|
2485 |
+
#: app/features/ix.php:4404
|
2486 |
#, fuzzy, php-format
|
2487 |
#| msgid "%s previously added events get updated."
|
2488 |
msgid "%s Updated previously added events."
|
2489 |
msgstr "%s vorherige hinzugefügte Events wurden aktualisiert."
|
2490 |
|
2491 |
+
#: app/features/ix.php:4405
|
2492 |
#, php-format
|
2493 |
msgid "%s events failed to add for following reasons: %s"
|
2494 |
msgstr "%s Events wurde aus folgenden Gründen nicht hinzugefügt: %s"
|
2495 |
|
2496 |
+
#: app/features/ix.php:4437
|
2497 |
#, fuzzy
|
2498 |
#| msgid "Please insert your facebook page's link."
|
2499 |
msgid "Please insert your Facebook page's link."
|
2500 |
msgstr "Bitte Ihren Facebook Seitenlink eingeben."
|
2501 |
|
2502 |
+
#: app/features/ix.php:4448 app/features/ix.php:4490
|
2503 |
#, fuzzy
|
2504 |
#| msgid ""
|
2505 |
#| "We couldn't recognize your Facebook page. Please check it and provide us "
|
2511 |
"Wir konnten Ihre Facebookseite nicht erkennen. Bitte checken Sie das und "
|
2512 |
"stellen Sie uns einen gültigen Facebookseitenlink zur Verfügung."
|
2513 |
|
2514 |
+
#: app/features/ix.php:4485
|
2515 |
msgid "Please insert your facebook page's link."
|
2516 |
msgstr "Bitte Ihren Facebook Seitenlink eingeben."
|
2517 |
|
2688 |
|
2689 |
#: app/features/ix/export_g_calendar.php:93 app/features/mec/booking.php:1034
|
2690 |
#: app/features/mec/modules.php:443 app/features/mec/notifications.php:1599
|
2691 |
+
#: app/features/mec/settings.php:1451 app/features/mec/single.php:502
|
2692 |
msgid "Checking ..."
|
2693 |
msgstr "Überprüfung"
|
2694 |
|
2711 |
msgid "XML Feed"
|
2712 |
msgstr ""
|
2713 |
|
2714 |
+
#: app/features/ix/import.php:30 app/features/ix/import.php:54
|
2715 |
+
#: app/features/ix/import.php:84
|
2716 |
msgid "Upload & Import"
|
2717 |
msgstr "Hochladen & Importieren"
|
2718 |
|
2719 |
+
#: app/features/ix/import.php:44
|
2720 |
msgid "Import .ics File"
|
2721 |
msgstr ""
|
2722 |
|
2723 |
+
#: app/features/ix/import.php:48
|
2724 |
#, php-format
|
2725 |
msgid ""
|
2726 |
"ICS format supports by many different service providers like Facebook. Apple "
|
2727 |
"Calendar etc. You can import your ics file into the %s using this form."
|
2728 |
msgstr ""
|
2729 |
|
2730 |
+
#: app/features/ix/import.php:51
|
2731 |
msgid "ICS Feed"
|
2732 |
msgstr ""
|
2733 |
|
2734 |
+
#: app/features/ix/import.php:58 app/features/ix/import.php:88
|
2735 |
#: app/features/mec/booking.php:91 app/features/mec/booking.php:435
|
2736 |
#: app/features/mec/booking.php:451 app/features/mec/booking.php:469
|
2737 |
#: app/features/mec/booking.php:546
|
2743 |
msgid "%s is required to use this feature."
|
2744 |
msgstr ""
|
2745 |
|
2746 |
+
#: app/features/ix/import.php:58 app/features/ix/import.php:88
|
2747 |
#: app/features/ix/sync.php:22 app/features/mec/booking.php:91
|
2748 |
#: app/features/mec/booking.php:435 app/features/mec/booking.php:451
|
2749 |
#: app/features/mec/booking.php:469 app/features/mec/booking.php:546
|
2761 |
msgid "Pro version of Modern Events Calendar"
|
2762 |
msgstr "Pro Version vom Modernen Event Calendar"
|
2763 |
|
2764 |
+
#: app/features/ix/import.php:73
|
2765 |
#, fuzzy
|
2766 |
#| msgid "Booking"
|
2767 |
msgid "Import Booking CSV File"
|
2768 |
msgstr "Buchung / Reservierung"
|
2769 |
|
2770 |
+
#: app/features/ix/import.php:77
|
2771 |
#, php-format
|
2772 |
msgid ""
|
2773 |
"You can export bookings from %s using the booking menu in source website. "
|
2775 |
"form in to your target website."
|
2776 |
msgstr ""
|
2777 |
|
2778 |
+
#: app/features/ix/import.php:78
|
2779 |
msgid ""
|
2780 |
"Please note that you should create (or imports) events and tickets before "
|
2781 |
"importing the bookings otherwise booking won't import due to lack of data."
|
2782 |
msgstr ""
|
2783 |
|
2784 |
+
#: app/features/ix/import.php:81
|
2785 |
#, fuzzy
|
2786 |
#| msgid "File"
|
2787 |
msgid "CSV File"
|
3205 |
|
3206 |
#: app/features/locations.php:59 app/features/mec.php:466
|
3207 |
#: app/features/mec/dashboard.php:281 app/features/mec/meta_boxes/filter.php:70
|
3208 |
+
#: app/features/mec/meta_boxes/filter.php:97 app/libraries/main.php:6571
|
3209 |
+
#: app/libraries/main.php:6625
|
3210 |
msgid "Locations"
|
3211 |
msgstr "Orte"
|
3212 |
|
3274 |
"z.B. Karlsruhe Schlosshotel oder Frankfurt Allianz oder Dortmund "
|
3275 |
"Westfalenhalle"
|
3276 |
|
3277 |
+
#: app/features/locations.php:346 app/features/mec/settings.php:829
|
3278 |
#: app/features/popup/event.php:143 app/widgets/single.php:117
|
3279 |
msgid "Event Location"
|
3280 |
msgstr "Veranstaltungsort"
|
3313 |
msgid "Don't show map in single event page"
|
3314 |
msgstr "Karte in Einzelansicht nicht anzeigen"
|
3315 |
|
3316 |
+
#: app/features/locations.php:403 app/libraries/main.php:6609
|
3317 |
+
#: app/libraries/main.php:6656
|
3318 |
msgid "Other Locations"
|
3319 |
msgstr "Andere Orte"
|
3320 |
|
3398 |
#: app/features/mec.php:467 app/features/mec/dashboard.php:288
|
3399 |
#: app/features/mec/meta_boxes/filter.php:71
|
3400 |
#: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
|
3401 |
+
#: app/libraries/main.php:6573 app/libraries/main.php:6627
|
3402 |
msgid "Organizers"
|
3403 |
msgstr "Veranstalter"
|
3404 |
|
3519 |
msgstr "Moderner Event Kalender (Lite)"
|
3520 |
|
3521 |
#: app/features/mec.php:1207 app/features/mec/dashboard.php:299
|
3522 |
+
#: app/features/mec/settings.php:464
|
3523 |
msgid "Upcoming Events"
|
3524 |
msgstr "Bevorstehende Events"
|
3525 |
|
3601 |
|
3602 |
#: app/features/mec/booking.php:70 app/features/mec/messages.php:13
|
3603 |
#: app/features/mec/modules.php:15 app/features/mec/notifications.php:12
|
3604 |
+
#: app/features/mec/settings.php:33 app/features/mec/single.php:19
|
3605 |
#: app/features/mec/styling.php:35
|
3606 |
msgid "Search..."
|
3607 |
msgstr "Suche…"
|
3618 |
#: app/features/mec/notifications.php:1532
|
3619 |
#: app/features/mec/notifications.php:1544
|
3620 |
#: app/features/mec/notifications.php:1616
|
3621 |
+
#: app/features/mec/notifications.php:1630 app/features/mec/settings.php:35
|
3622 |
+
#: app/features/mec/settings.php:1400 app/features/mec/settings.php:1410
|
3623 |
+
#: app/features/mec/settings.php:1468 app/features/mec/settings.php:1482
|
3624 |
#: app/features/mec/single.php:21 app/features/mec/single.php:467
|
3625 |
#: app/features/mec/single.php:477 app/features/mec/single.php:519
|
3626 |
#: app/features/mec/single.php:533 app/features/mec/styles.php:11
|
3870 |
msgstr ""
|
3871 |
|
3872 |
#: app/features/mec/booking.php:286 app/features/mec/booking.php:288
|
3873 |
+
#: app/features/mec/booking.php:298 app/features/mec/settings.php:684
|
3874 |
+
#: app/features/mec/settings.php:694
|
3875 |
msgid "Thank You Page"
|
3876 |
msgstr "Danke Seite"
|
3877 |
|
3884 |
"es leer, wenn Sie es deaktivieren möchten."
|
3885 |
|
3886 |
#: app/features/mec/booking.php:306 app/features/mec/booking.php:311
|
3887 |
+
#: app/features/mec/settings.php:717 app/features/mec/settings.php:722
|
3888 |
msgid "Thank You Page Time Interval"
|
3889 |
msgstr "Dauer bis zur Weiterleitung auf die Danke Seite"
|
3890 |
|
3891 |
+
#: app/features/mec/booking.php:308 app/features/mec/settings.php:719
|
3892 |
msgid "2000 mean 2 seconds"
|
3893 |
msgstr "2000 bedeutet 2 Sekunden"
|
3894 |
|
3895 |
+
#: app/features/mec/booking.php:312 app/features/mec/settings.php:723
|
3896 |
msgid ""
|
3897 |
"Waiting time before redirecting to thank you page. It's in miliseconds so "
|
3898 |
"2000 means 2 seconds."
|
3960 |
msgid "Send confirmation email in auto confirmation mode"
|
3961 |
msgstr ""
|
3962 |
|
3963 |
+
#: app/features/mec/booking.php:432 app/libraries/main.php:599
|
3964 |
#, fuzzy
|
3965 |
#| msgid "Booking"
|
3966 |
msgid "Booking Shortcode"
|
3994 |
msgstr ""
|
3995 |
|
3996 |
#: app/features/mec/booking.php:466 app/features/mec/booking.php:854
|
3997 |
+
#: app/libraries/main.php:601
|
3998 |
msgid "Taxes / Fees"
|
3999 |
msgstr "Steuern/Gebühren"
|
4000 |
|
4006 |
msgid "Add Fee"
|
4007 |
msgstr "Gebühr hinzufügen"
|
4008 |
|
4009 |
+
#: app/features/mec/booking.php:543 app/libraries/main.php:602
|
4010 |
msgid "Ticket Variations & Options"
|
4011 |
msgstr ""
|
4012 |
|
4166 |
|
4167 |
#: app/features/mec/booking.php:1029 app/features/mec/messages.php:78
|
4168 |
#: app/features/mec/modules.php:438 app/features/mec/notifications.php:1594
|
4169 |
+
#: app/features/mec/settings.php:1446 app/features/mec/single.php:497
|
4170 |
#: app/features/mec/styles.php:62 app/features/mec/styling.php:340
|
4171 |
msgid "Saved"
|
4172 |
msgstr "Gesichert"
|
4173 |
|
4174 |
#: app/features/mec/booking.php:1030 app/features/mec/messages.php:79
|
4175 |
#: app/features/mec/modules.php:439 app/features/mec/notifications.php:1595
|
4176 |
+
#: app/features/mec/settings.php:1447 app/features/mec/single.php:498
|
4177 |
#: app/features/mec/styles.php:63 app/features/mec/styling.php:341
|
4178 |
msgid "Settings Saved!"
|
4179 |
msgstr "Einstellungen gespeichert!"
|
4180 |
|
4181 |
#: app/features/mec/booking.php:1056 app/features/mec/modules.php:465
|
4182 |
+
#: app/features/mec/notifications.php:1621 app/features/mec/settings.php:1473
|
4183 |
#: app/features/mec/single.php:524
|
4184 |
msgid "Please Refresh Page"
|
4185 |
msgstr "Bitte Seiten Refresh vornehmen"
|
4296 |
msgstr "Einstellungen Herunterladen"
|
4297 |
|
4298 |
#: app/features/mec/messages.php:28 app/features/mec/support-page.php:102
|
4299 |
+
#: app/features/mec/support.php:66 app/libraries/main.php:853
|
4300 |
msgid "Messages"
|
4301 |
msgstr "Nachrichten"
|
4302 |
|
4327 |
#: app/features/mec/meta_boxes/display_options.php:974
|
4328 |
#: app/features/mec/meta_boxes/display_options.php:1305
|
4329 |
#: app/features/mec/meta_boxes/display_options.php:1603
|
4330 |
+
#: app/features/mec/settings.php:325 app/features/mec/settings.php:349
|
4331 |
+
#: app/features/mec/settings.php:358 app/features/mec/settings.php:402
|
4332 |
+
#: app/features/mec/settings.php:426 app/features/mec/settings.php:435
|
4333 |
#: app/features/popup/shortcode.php:68 app/features/popup/shortcode.php:102
|
4334 |
#: app/features/popup/shortcode.php:199 app/features/popup/shortcode.php:236
|
4335 |
#: app/features/popup/shortcode.php:250 app/features/popup/shortcode.php:283
|
4340 |
|
4341 |
#: app/features/mec/meta_boxes/display_options.php:44
|
4342 |
#: app/features/mec/meta_boxes/display_options.php:296
|
4343 |
+
#: app/features/mec/settings.php:350 app/features/mec/settings.php:360
|
4344 |
+
#: app/features/mec/settings.php:427 app/features/mec/settings.php:437
|
4345 |
#: app/features/popup/shortcode.php:73 app/features/popup/shortcode.php:112
|
4346 |
msgid "Minimal"
|
4347 |
msgstr "Minimal"
|
4352 |
#: app/features/mec/meta_boxes/display_options.php:976
|
4353 |
#: app/features/mec/meta_boxes/display_options.php:1303
|
4354 |
#: app/features/mec/meta_boxes/display_options.php:1605
|
4355 |
+
#: app/features/mec/settings.php:327 app/features/mec/settings.php:340
|
4356 |
+
#: app/features/mec/settings.php:351 app/features/mec/settings.php:361
|
4357 |
+
#: app/features/mec/settings.php:404 app/features/mec/settings.php:417
|
4358 |
+
#: app/features/mec/settings.php:428 app/features/mec/settings.php:438
|
4359 |
#: app/features/popup/shortcode.php:78 app/features/popup/shortcode.php:117
|
4360 |
#: app/features/popup/shortcode.php:185 app/features/popup/shortcode.php:209
|
4361 |
#: app/features/popup/shortcode.php:263 app/features/popup/shortcode.php:306
|
4363 |
msgstr "Modern"
|
4364 |
|
4365 |
#: app/features/mec/meta_boxes/display_options.php:46
|
4366 |
+
#: app/features/mec/settings.php:352 app/features/mec/settings.php:429
|
4367 |
#: app/features/popup/shortcode.php:83
|
4368 |
msgid "Standard"
|
4369 |
msgstr "Standard"
|
4370 |
|
4371 |
#: app/features/mec/meta_boxes/display_options.php:47
|
4372 |
+
#: app/features/mec/settings.php:353 app/features/mec/settings.php:430
|
4373 |
#: app/features/popup/shortcode.php:88
|
4374 |
msgid "Accordion"
|
4375 |
msgstr "Accordion"
|
4782 |
#: app/features/mec/meta_boxes/display_options.php:975
|
4783 |
#: app/features/mec/meta_boxes/display_options.php:1304
|
4784 |
#: app/features/mec/meta_boxes/display_options.php:1604
|
4785 |
+
#: app/features/mec/settings.php:326 app/features/mec/settings.php:341
|
4786 |
+
#: app/features/mec/settings.php:359 app/features/mec/settings.php:403
|
4787 |
+
#: app/features/mec/settings.php:418 app/features/mec/settings.php:436
|
4788 |
#: app/features/popup/shortcode.php:107 app/features/popup/shortcode.php:146
|
4789 |
#: app/features/popup/shortcode.php:161 app/features/popup/shortcode.php:204
|
4790 |
#: app/features/popup/shortcode.php:268 app/features/popup/shortcode.php:301
|
4794 |
#: app/features/mec/meta_boxes/display_options.php:298
|
4795 |
#: app/features/mec/meta_boxes/display_options.php:714
|
4796 |
#: app/features/mec/meta_boxes/display_options.php:978
|
4797 |
+
#: app/features/mec/settings.php:329 app/features/mec/settings.php:362
|
4798 |
+
#: app/features/mec/settings.php:406 app/features/mec/settings.php:439
|
4799 |
#: app/features/popup/shortcode.php:122 app/features/popup/shortcode.php:171
|
4800 |
#: app/features/popup/shortcode.php:219
|
4801 |
msgid "Simple"
|
4809 |
#: app/features/mec/meta_boxes/display_options.php:300
|
4810 |
#: app/features/mec/meta_boxes/display_options.php:713
|
4811 |
#: app/features/mec/meta_boxes/display_options.php:977
|
4812 |
+
#: app/features/mec/settings.php:328 app/features/mec/settings.php:364
|
4813 |
+
#: app/features/mec/settings.php:405 app/features/mec/settings.php:441
|
4814 |
#: app/features/popup/shortcode.php:132 app/features/popup/shortcode.php:166
|
4815 |
#: app/features/popup/shortcode.php:214
|
4816 |
msgid "Novel"
|
4860 |
|
4861 |
#: app/features/mec/meta_boxes/display_options.php:700
|
4862 |
#: app/features/mec/meta_boxes/display_options.php:724
|
4863 |
+
#: app/libraries/main.php:364 app/libraries/main.php:2134
|
4864 |
+
#: app/libraries/main.php:2159
|
4865 |
msgid "List View"
|
4866 |
msgstr "Listenansicht"
|
4867 |
|
4868 |
#: app/features/mec/meta_boxes/display_options.php:701
|
4869 |
#: app/features/mec/meta_boxes/display_options.php:745
|
4870 |
+
#: app/libraries/main.php:365 app/libraries/main.php:2135
|
4871 |
+
#: app/libraries/main.php:2160
|
4872 |
msgid "Grid View"
|
4873 |
msgstr "Rasterdarstellung"
|
4874 |
|
4882 |
|
4883 |
#: app/features/mec/meta_boxes/display_options.php:703
|
4884 |
#: app/features/mec/meta_boxes/display_options.php:766
|
4885 |
+
#: app/libraries/main.php:368 app/libraries/main.php:2128
|
4886 |
+
#: app/libraries/main.php:2153
|
4887 |
msgid "Yearly View"
|
4888 |
msgstr "Jahresansicht"
|
4889 |
|
4894 |
|
4895 |
#: app/features/mec/meta_boxes/display_options.php:705
|
4896 |
#: app/features/mec/meta_boxes/display_options.php:815
|
4897 |
+
#: app/libraries/main.php:371 app/libraries/main.php:2130
|
4898 |
+
#: app/libraries/main.php:2155
|
4899 |
msgid "Weekly View"
|
4900 |
msgstr "Wochenansicht"
|
4901 |
|
4902 |
#: app/features/mec/meta_boxes/display_options.php:706
|
4903 |
#: app/features/mec/meta_boxes/display_options.php:825
|
4904 |
+
#: app/libraries/main.php:370 app/libraries/main.php:2131
|
4905 |
+
#: app/libraries/main.php:2156
|
4906 |
msgid "Daily View"
|
4907 |
msgstr "Tagesansicht"
|
4908 |
|
5349 |
msgid "Choose your desired authors for filtering the events."
|
5350 |
msgstr "Wählen Sie die gewünschten Autoren zum Filtern aus"
|
5351 |
|
5352 |
+
#: app/features/mec/meta_boxes/filter.php:183 app/features/mec/settings.php:465
|
5353 |
msgid "Expired Events"
|
5354 |
msgstr "Abgelaufene Events"
|
5355 |
|
5424 |
#: app/features/mec/meta_boxes/search_form.php:723
|
5425 |
#: app/features/mec/meta_boxes/search_form.php:808
|
5426 |
#: app/features/mec/meta_boxes/search_form.php:929
|
5427 |
+
#: app/features/mec/settings.php:1097 app/features/mec/single.php:398
|
5428 |
#: app/features/mec/single.php:440 app/features/search.php:86
|
5429 |
#: app/features/speakers.php:60 app/features/speakers.php:283
|
5430 |
+
#: app/libraries/main.php:6576 app/libraries/main.php:6630
|
5431 |
+
#: app/libraries/skins.php:1111 app/modules/speakers/details.php:18
|
5432 |
msgid "Speaker"
|
5433 |
msgstr "Sprecher"
|
5434 |
|
5443 |
#: app/features/mec/meta_boxes/search_form.php:730
|
5444 |
#: app/features/mec/meta_boxes/search_form.php:815
|
5445 |
#: app/features/mec/meta_boxes/search_form.php:936
|
5446 |
+
#: app/features/mec/settings.php:1104 app/features/mec/single.php:407
|
5447 |
#: app/features/mec/single.php:449 app/features/search.php:92
|
5448 |
+
#: app/libraries/skins.php:1137
|
5449 |
msgid "Tag"
|
5450 |
msgstr "Schlagwort"
|
5451 |
|
5600 |
"new menu on the Dashboard > MEC"
|
5601 |
msgstr ""
|
5602 |
|
5603 |
+
#: app/features/mec/modules.php:58 app/libraries/main.php:610
|
5604 |
#, fuzzy
|
5605 |
#| msgid "Google Maps Options"
|
5606 |
msgid "Map Options"
|
5624 |
msgid "Google Map Options"
|
5625 |
msgstr "Google Maps Einstellungen"
|
5626 |
|
5627 |
+
#: app/features/mec/modules.php:76 app/features/mec/settings.php:1139
|
5628 |
+
#: app/features/mec/settings.php:1152
|
5629 |
msgid "Required!"
|
5630 |
msgstr "Erforderlich (Pflichtfeld)"
|
5631 |
|
5693 |
msgid "Fullscreen Button"
|
5694 |
msgstr ""
|
5695 |
|
5696 |
+
#: app/features/mec/modules.php:167 app/libraries/main.php:611
|
5697 |
msgid "Export Options"
|
5698 |
msgstr "Export Optionen"
|
5699 |
|
5708 |
msgid "Google Calendar"
|
5709 |
msgstr "Google Calendar"
|
5710 |
|
5711 |
+
#: app/features/mec/modules.php:194 app/libraries/main.php:612
|
5712 |
#: app/modules/local-time/details.php:45 app/modules/local-time/type1.php:42
|
5713 |
#: app/widgets/single.php:101
|
5714 |
msgid "Local Time"
|
5720 |
"Zeige die Eventzeit basierend auf der Ortszeit des Besuchers auf der "
|
5721 |
"Eventseite"
|
5722 |
|
5723 |
+
#: app/features/mec/modules.php:208 app/libraries/main.php:613
|
5724 |
#: app/modules/qrcode/details.php:38 app/widgets/single.php:157
|
5725 |
msgid "QR Code"
|
5726 |
msgstr "QR Code"
|
5731 |
"Zeigen Sie QR-Code des Events in der Detailseite und in der Buchungsrechnung "
|
5732 |
"an"
|
5733 |
|
5734 |
+
#: app/features/mec/modules.php:226 app/libraries/main.php:614
|
5735 |
#: app/modules/weather/darksky.php:15 app/modules/weather/weatherapi.php:16
|
5736 |
msgid "Weather"
|
5737 |
msgstr "Wetter"
|
5772 |
msgid "Show social network module"
|
5773 |
msgstr "Modul für Soziale Netzwerke anzeigen"
|
5774 |
|
5775 |
+
#: app/features/mec/modules.php:299 app/libraries/main.php:616
|
5776 |
#: app/modules/next-event/details.php:136 app/widgets/single.php:141
|
5777 |
msgid "Next Event"
|
5778 |
msgstr "Nächstes Event"
|
5833 |
msgid "Add events menu to user profile"
|
5834 |
msgstr "Fügt Buchungsaktivitäten dem Benutzerprofil hinzu"
|
5835 |
|
5836 |
+
#: app/features/mec/modules.php:376 app/libraries/main.php:618
|
5837 |
#, fuzzy
|
5838 |
#| msgid "Mailchimp Integration"
|
5839 |
msgid "LearnDash Integration"
|
5851 |
msgid "LearnDash plugin should be installed and activated."
|
5852 |
msgstr "Drittanbieter-Plugin ist nicht installiert und aktiviert!"
|
5853 |
|
5854 |
+
#: app/features/mec/modules.php:386 app/libraries/main.php:619
|
5855 |
#, fuzzy
|
5856 |
#| msgid "Mailchimp Integration"
|
5857 |
msgid "PaidMembership Pro Integration"
|
6591 |
msgid "Add to Google Calendar Links for next 20 occurrences"
|
6592 |
msgstr ""
|
6593 |
|
6594 |
+
#: app/features/mec/notifications.php:191 app/libraries/main.php:633
|
6595 |
msgid "Booking Verification"
|
6596 |
msgstr "Verifizierung der Buchung"
|
6597 |
|
6638 |
msgstr "Link zur Stornierung der Buchung"
|
6639 |
|
6640 |
#: app/features/mec/notifications.php:494 app/features/notifications.php:164
|
6641 |
+
#: app/libraries/main.php:632
|
6642 |
#, fuzzy
|
6643 |
#| msgid "Booking Verification"
|
6644 |
msgid "Booking Rejection"
|
6674 |
msgstr "Sendet die Email zum Buchungs "
|
6675 |
|
6676 |
#: app/features/mec/notifications.php:666 app/features/notifications.php:170
|
6677 |
+
#: app/libraries/main.php:634
|
6678 |
msgid "Booking Cancellation"
|
6679 |
msgstr "Buchung stornieren"
|
6680 |
|
6696 |
msgid "Admin booking management link."
|
6697 |
msgstr "Admin-link zur Buchungsverwaltung"
|
6698 |
|
6699 |
+
#: app/features/mec/notifications.php:824 app/libraries/main.php:637
|
6700 |
msgid "Admin"
|
6701 |
msgstr "Admin"
|
6702 |
|
6713 |
"Informieren, dass eine neue Buchung eingegangen ist."
|
6714 |
|
6715 |
#: app/features/mec/notifications.php:979 app/features/notifications.php:176
|
6716 |
+
#: app/libraries/main.php:636
|
6717 |
#, fuzzy
|
6718 |
#| msgid "Event Color"
|
6719 |
msgid "Event Soldout"
|
6736 |
"Informieren, dass eine neue Buchung eingegangen ist."
|
6737 |
|
6738 |
#: app/features/mec/notifications.php:1121 app/features/notifications.php:173
|
6739 |
+
#: app/libraries/main.php:635 app/libraries/notifications.php:777
|
6740 |
msgid "Booking Reminder"
|
6741 |
msgstr "Buchungs Erinnerung"
|
6742 |
|
6766 |
msgid "only once per hour"
|
6767 |
msgstr "nur einmal pro Tag"
|
6768 |
|
6769 |
+
#: app/features/mec/notifications.php:1203 app/libraries/main.php:7701
|
6770 |
+
#: app/libraries/main.php:7718
|
6771 |
#, fuzzy
|
6772 |
#| msgid "Hour"
|
6773 |
msgid "Hours"
|
6782 |
msgstr ""
|
6783 |
|
6784 |
#: app/features/mec/notifications.php:1288 app/features/popup/event.php:253
|
6785 |
+
#: app/libraries/main.php:623
|
6786 |
msgid "New Event"
|
6787 |
msgstr "Neue Veranstaltung"
|
6788 |
|
6818 |
msgstr "Status der Veranstaltung"
|
6819 |
|
6820 |
#: app/features/mec/notifications.php:1392
|
6821 |
+
#: app/features/mec/notifications.php:1503 app/features/mec/settings.php:980
|
6822 |
+
#: app/features/mec/settings.php:984 app/features/notifications.php:147
|
6823 |
msgid "Event Note"
|
6824 |
msgstr "Veranstaltungsnotiz"
|
6825 |
|
6828 |
msgid "Admin events management link."
|
6829 |
msgstr "Admin-link zur Veranstaltungsverwaltung"
|
6830 |
|
6831 |
+
#: app/features/mec/notifications.php:1408 app/libraries/main.php:624
|
6832 |
msgid "User Event Publishing"
|
6833 |
msgstr "Nutzer Event wurde veröffentlicht."
|
6834 |
|
6848 |
"Wird nach dem Hinzufügen einer neuen Veranstaltung aus der Frontend-"
|
6849 |
"Übermittlung oder dem Backend versandt."
|
6850 |
|
6851 |
+
#: app/features/mec/notifications.php:1517 app/libraries/main.php:640
|
6852 |
#, fuzzy
|
6853 |
#| msgid "Notifications"
|
6854 |
msgid "Notifications Per Event"
|
6930 |
msgid "There was an error please try again!"
|
6931 |
msgstr "Es ist ein Fehler aufgetreten, bitte erneut Versuchen!"
|
6932 |
|
6933 |
+
#: app/features/mec/settings.php:55 app/features/mec/settings.php:66
|
6934 |
msgid "Hide Events"
|
6935 |
msgstr "Events verbergen"
|
6936 |
|
6937 |
+
#: app/features/mec/settings.php:58
|
6938 |
msgid "On Event Start"
|
6939 |
msgstr "Am Event Start"
|
6940 |
|
6941 |
+
#: app/features/mec/settings.php:59
|
6942 |
msgid "+1 Hour after start"
|
6943 |
msgstr "+1 Stunde nach dem Start"
|
6944 |
|
6945 |
+
#: app/features/mec/settings.php:60
|
6946 |
msgid "+2 Hours after start"
|
6947 |
msgstr "+2 Stunden nach dem Start"
|
6948 |
|
6949 |
+
#: app/features/mec/settings.php:61
|
6950 |
msgid "On Event End"
|
6951 |
msgstr "Am Event Ende"
|
6952 |
|
6953 |
+
#: app/features/mec/settings.php:67
|
6954 |
msgid ""
|
6955 |
"This option is for showing start/end time of events on frontend of website."
|
6956 |
msgstr ""
|
6957 |
"Diese Option ist um die Start/Endezeit von Events im Frontend der Webseite "
|
6958 |
"anzuzeigen"
|
6959 |
|
6960 |
+
#: app/features/mec/settings.php:76
|
6961 |
#, fuzzy
|
6962 |
#| msgid "Multiple Day Events"
|
6963 |
msgid "Multiple Day Events Show"
|
6964 |
msgstr "Mehrtagesveranstaltung"
|
6965 |
|
6966 |
+
#: app/features/mec/settings.php:79
|
6967 |
#, fuzzy
|
6968 |
#| msgid "Show only first day on List/Grid/Slider skins"
|
6969 |
msgid "First day on list/grid/slider/agenda skins"
|
6970 |
msgstr "Zeige nur den ersten Tag auf Listen/Raster(Grid)/Slider skins."
|
6971 |
|
6972 |
+
#: app/features/mec/settings.php:80
|
6973 |
#, fuzzy
|
6974 |
#| msgid "Show only first day on all skins"
|
6975 |
msgid "First day on all skins"
|
6976 |
msgstr "Nur den ersten Tag in allen Ansichten zeigen"
|
6977 |
|
6978 |
+
#: app/features/mec/settings.php:81
|
6979 |
#, fuzzy
|
6980 |
#| msgid "Add Day"
|
6981 |
msgid "All days"
|
6982 |
msgstr "Tag hinzufügen"
|
6983 |
|
6984 |
+
#: app/features/mec/settings.php:85
|
6985 |
msgid "Multiple Day Events"
|
6986 |
msgstr "Mehrtagesveranstaltung"
|
6987 |
|
6988 |
+
#: app/features/mec/settings.php:86
|
6989 |
msgid ""
|
6990 |
"For showing all days of multiple day events on frontend or only show the "
|
6991 |
"first day."
|
6993 |
"Um alle Tage anzuzeigen bei Events über mehrere Tage im Frontend oder nur "
|
6994 |
"den ersten Tag anzeigen"
|
6995 |
|
6996 |
+
#: app/features/mec/settings.php:95
|
6997 |
msgid "Remove MEC Data on Plugin Uninstall"
|
6998 |
msgstr "Entfernen von MEC Data auf dem Plugin Deinstallierer"
|
6999 |
|
7000 |
+
#: app/features/mec/settings.php:105
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7001 |
msgid "Exclude Date Suffix"
|
7002 |
msgstr "Ausschlussdatum Suffix"
|
7003 |
|
7004 |
+
#: app/features/mec/settings.php:108
|
7005 |
msgid "Remove suffix from calendars"
|
7006 |
msgstr "Suffix aus den Kalendern entfernen"
|
7007 |
|
7008 |
+
#: app/features/mec/settings.php:112
|
7009 |
#, fuzzy
|
7010 |
#| msgid "Remove suffix from calendars"
|
7011 |
msgid "Remove \"Th\" on calendar"
|
7012 |
msgstr "Suffix aus den Kalendern entfernen"
|
7013 |
|
7014 |
+
#: app/features/mec/settings.php:113
|
7015 |
msgid ""
|
7016 |
"Checked this checkbox to remove 'Th' on calendar ( ex: '12Th' remove Th, "
|
7017 |
"showing just '12' )"
|
7018 |
msgstr ""
|
7019 |
|
7020 |
+
#: app/features/mec/settings.php:120 app/features/mec/settings.php:127
|
7021 |
msgid "Schema"
|
7022 |
msgstr ""
|
7023 |
|
7024 |
+
#: app/features/mec/settings.php:123
|
7025 |
#, fuzzy
|
7026 |
#| msgid "Enable coupons module"
|
7027 |
msgid "Enable Schema Code"
|
7028 |
msgstr "Gutscheinmodul aktivieren"
|
7029 |
|
7030 |
+
#: app/features/mec/settings.php:128
|
7031 |
msgid "You can enable/disable Schema scripts"
|
7032 |
msgstr ""
|
7033 |
|
7034 |
+
#: app/features/mec/settings.php:137 app/features/mec/settings.php:148
|
7035 |
+
#: app/libraries/main.php:6580 app/libraries/main.php:6634
|
7036 |
msgid "Weekdays"
|
7037 |
msgstr "Wochentage"
|
7038 |
|
7039 |
+
#: app/features/mec/settings.php:149
|
7040 |
#, fuzzy
|
7041 |
#| msgid ""
|
7042 |
#| "Proceed with caution. Default is set to Monday, Tuesday, Wednesday, "
|
7049 |
"Vorsichtig vorgehen. Standardwert ist auf Montag, Dienstag, Mittwoch, "
|
7050 |
"Donnerstag und Freitag gesetzt."
|
7051 |
|
7052 |
+
#: app/features/mec/settings.php:160 app/features/mec/settings.php:171
|
7053 |
msgid "Weekends"
|
7054 |
msgstr "Wochenenden"
|
7055 |
|
7056 |
+
#: app/features/mec/settings.php:172
|
7057 |
#, fuzzy
|
7058 |
#| msgid ""
|
7059 |
#| "Proceed with caution. Default is set to Monday, Tuesday, Wednesday, "
|
7066 |
"Vorsichtig vorgehen. Standardwert ist auf Montag, Dienstag, Mittwoch, "
|
7067 |
"Donnerstag und Freitag gesetzt."
|
7068 |
|
7069 |
+
#: app/features/mec/settings.php:182
|
7070 |
#, fuzzy
|
7071 |
#| msgid "Date Format"
|
7072 |
msgid "Datepicker Format"
|
7073 |
msgstr "Datumsformat"
|
7074 |
|
7075 |
+
#: app/features/mec/settings.php:190
|
7076 |
msgid "(Y-m-d)"
|
7077 |
msgstr ""
|
7078 |
|
7079 |
+
#: app/features/mec/settings.php:191
|
7080 |
msgid "(d-m-Y)"
|
7081 |
msgstr ""
|
7082 |
|
7083 |
+
#: app/features/mec/settings.php:194
|
7084 |
msgid "(Y/m/d)"
|
7085 |
msgstr ""
|
7086 |
|
7087 |
+
#: app/features/mec/settings.php:195
|
7088 |
msgid "(m/d/Y)"
|
7089 |
msgstr ""
|
7090 |
|
7091 |
+
#: app/features/mec/settings.php:198
|
7092 |
msgid "(Y.m.d)"
|
7093 |
msgstr ""
|
7094 |
|
7095 |
+
#: app/features/mec/settings.php:199
|
7096 |
msgid "(d.m.Y)"
|
7097 |
msgstr ""
|
7098 |
|
7099 |
+
#: app/features/mec/settings.php:205 app/features/mec/settings.php:217
|
7100 |
msgid "Midnight Hour"
|
7101 |
msgstr "Mitternacht"
|
7102 |
|
7103 |
+
#: app/features/mec/settings.php:208
|
7104 |
msgid "12 AM"
|
7105 |
msgstr "00:00"
|
7106 |
|
7107 |
+
#: app/features/mec/settings.php:209
|
7108 |
msgid "1 AM"
|
7109 |
msgstr "01:00"
|
7110 |
|
7111 |
+
#: app/features/mec/settings.php:210
|
7112 |
msgid "2 AM"
|
7113 |
msgstr "02:00"
|
7114 |
|
7115 |
+
#: app/features/mec/settings.php:211
|
7116 |
msgid "3 AM"
|
7117 |
msgstr "03:00"
|
7118 |
|
7119 |
+
#: app/features/mec/settings.php:212
|
7120 |
msgid "4 AM"
|
7121 |
msgstr "04:00"
|
7122 |
|
7123 |
+
#: app/features/mec/settings.php:213
|
7124 |
msgid "5 AM"
|
7125 |
msgstr "05:00"
|
7126 |
|
7127 |
+
#: app/features/mec/settings.php:218
|
7128 |
msgid ""
|
7129 |
"12 AM is midnight by default but you can change it if your event ends after "
|
7130 |
"12 AM and you don't want those events considered as multiple days events!"
|
7131 |
msgstr ""
|
7132 |
|
7133 |
+
#: app/features/mec/settings.php:226
|
7134 |
#, fuzzy
|
7135 |
#| msgid "Add Shortcode"
|
7136 |
msgid "Open \"Add Event\" as Popup"
|
7137 |
msgstr "Shortcode hinzufügen"
|
7138 |
|
7139 |
+
#: app/features/mec/settings.php:229 app/features/mec/settings.php:237
|
7140 |
+
#: app/features/mec/settings.php:245 app/features/mec/settings.php:253
|
7141 |
#: app/features/mec/single.php:111
|
7142 |
#, fuzzy
|
7143 |
#| msgid "Enabled"
|
7144 |
msgid "Enable"
|
7145 |
msgstr "Aktiviert"
|
7146 |
|
7147 |
+
#: app/features/mec/settings.php:234
|
7148 |
#, fuzzy
|
7149 |
#| msgid "Add Shortcode"
|
7150 |
msgid "Open \"Add Shortcode\" as Popup"
|
7151 |
msgstr "Shortcode hinzufügen"
|
7152 |
|
7153 |
+
#: app/features/mec/settings.php:242
|
7154 |
#, fuzzy
|
7155 |
#| msgid "Featured Image"
|
7156 |
msgid "Include Event Featured Image in Feed"
|
7157 |
msgstr "Ausgewähltes Bild"
|
7158 |
|
7159 |
+
#: app/features/mec/settings.php:250
|
7160 |
#, fuzzy
|
7161 |
#| msgid "Featured Image"
|
7162 |
msgid "Fallback Featured Image"
|
7163 |
msgstr "Ausgewähltes Bild"
|
7164 |
|
7165 |
+
#: app/features/mec/settings.php:261 app/libraries/main.php:575
|
7166 |
+
#, fuzzy
|
7167 |
+
#| msgid "Google Maps Options"
|
7168 |
+
msgid "Email Options"
|
7169 |
+
msgstr "Google Maps Einstellungen"
|
7170 |
+
|
7171 |
+
#: app/features/mec/settings.php:264
|
7172 |
+
#, fuzzy
|
7173 |
+
#| msgid "No Search Options"
|
7174 |
+
msgid "Sender Name"
|
7175 |
+
msgstr "Keine Suchoptionen"
|
7176 |
+
|
7177 |
+
#: app/features/mec/settings.php:267
|
7178 |
+
msgid "e.g. Webnus"
|
7179 |
+
msgstr "z.B. Webnus"
|
7180 |
+
|
7181 |
+
#: app/features/mec/settings.php:271
|
7182 |
+
msgid "Sender Email"
|
7183 |
+
msgstr "Absender (E-Mail)"
|
7184 |
+
|
7185 |
+
#: app/features/mec/settings.php:274
|
7186 |
+
msgid "e.g. info@webnus.biz"
|
7187 |
+
msgstr "z.B. info@webnus.biz"
|
7188 |
+
|
7189 |
+
#: app/features/mec/settings.php:278
|
7190 |
+
#, fuzzy
|
7191 |
+
#| msgid "Simple Method"
|
7192 |
+
msgid "Recipients Method"
|
7193 |
+
msgstr "Einfache Methode"
|
7194 |
+
|
7195 |
+
#: app/features/mec/settings.php:281
|
7196 |
+
msgid "BCC (Invisible)"
|
7197 |
+
msgstr ""
|
7198 |
+
|
7199 |
+
#: app/features/mec/settings.php:282
|
7200 |
+
msgid "CC (Visible)"
|
7201 |
+
msgstr ""
|
7202 |
+
|
7203 |
+
#: app/features/mec/settings.php:290 app/libraries/main.php:567
|
7204 |
msgid "Archive Pages"
|
7205 |
msgstr ""
|
7206 |
|
7207 |
+
#: app/features/mec/settings.php:293 app/features/mec/settings.php:298
|
7208 |
msgid "Archive Page Title"
|
7209 |
msgstr "Titel der Archivseite"
|
7210 |
|
7211 |
+
#: app/features/mec/settings.php:299
|
7212 |
#, fuzzy
|
7213 |
#| msgid "Default value is Events"
|
7214 |
msgid "Default value is Events - It's title of the page"
|
7215 |
msgstr "Der Standardwert ist Ereignisse (Events)"
|
7216 |
|
7217 |
+
#: app/features/mec/settings.php:307 app/features/mec/settings.php:375
|
7218 |
msgid "Archive Page Skin"
|
7219 |
msgstr "Skin Seite Archiv"
|
7220 |
|
7221 |
+
#: app/features/mec/settings.php:315 app/features/mec/settings.php:392
|
7222 |
#, fuzzy
|
7223 |
#| msgid "Edit shortcodes"
|
7224 |
msgid "Put shortcode..."
|
7225 |
msgstr "Shortcode ändern"
|
7226 |
|
7227 |
+
#: app/features/mec/settings.php:318 app/features/mec/settings.php:333
|
7228 |
+
#: app/features/mec/settings.php:336 app/features/mec/settings.php:345
|
7229 |
+
#: app/features/mec/settings.php:371 app/features/mec/settings.php:395
|
7230 |
+
#: app/features/mec/settings.php:410 app/features/mec/settings.php:413
|
7231 |
+
#: app/features/mec/settings.php:422 app/features/mec/settings.php:448
|
7232 |
#, fuzzy
|
7233 |
#| msgid "The event is ongoing."
|
7234 |
msgid "There is no skins"
|
7235 |
msgstr "Die Veranstaltung ist im Gange."
|
7236 |
|
7237 |
+
#: app/features/mec/settings.php:321 app/features/mec/settings.php:398
|
7238 |
#: app/features/mec/single.php:73
|
7239 |
msgid "Modern Style"
|
7240 |
msgstr "Moderner Stil"
|
7241 |
|
7242 |
+
#: app/features/mec/settings.php:363 app/features/mec/settings.php:440
|
7243 |
msgid "colorful"
|
7244 |
msgstr "Farbenfroh"
|
7245 |
|
7246 |
+
#: app/features/mec/settings.php:368 app/features/mec/settings.php:445
|
7247 |
#, fuzzy
|
7248 |
#| msgid "Plain Style"
|
7249 |
msgid "Clean Style"
|
7250 |
msgstr "Einfacher schlichter Stil"
|
7251 |
|
7252 |
+
#: app/features/mec/settings.php:376
|
7253 |
#, fuzzy
|
7254 |
#| msgid "Default value is Calendar/Monthly View"
|
7255 |
msgid "Default value is Calendar/Monthly View, But you can change it "
|
7256 |
msgstr "Der Standardwert ist Kalender / Monatsansicht"
|
7257 |
|
7258 |
+
#: app/features/mec/settings.php:376 app/features/mec/settings.php:453
|
7259 |
msgid "See Demo"
|
7260 |
msgstr ""
|
7261 |
|
7262 |
+
#: app/features/mec/settings.php:384 app/features/mec/settings.php:452
|
7263 |
msgid "Category Page Skin"
|
7264 |
msgstr "Kategorie Seiten Skin"
|
7265 |
|
7266 |
+
#: app/features/mec/settings.php:453
|
7267 |
#, fuzzy
|
7268 |
#| msgid "Default value is Calendar/Monthly View"
|
7269 |
msgid ""
|
7271 |
"categories."
|
7272 |
msgstr "Der Standardwert ist Kalender / Monatsansicht"
|
7273 |
|
7274 |
+
#: app/features/mec/settings.php:461 app/features/mec/settings.php:469
|
7275 |
msgid "Category Events Method"
|
7276 |
msgstr ""
|
7277 |
|
7278 |
+
#: app/features/mec/settings.php:470
|
7279 |
msgid "Default value is Upcoming Events"
|
7280 |
msgstr ""
|
7281 |
|
7282 |
+
#: app/features/mec/settings.php:478 app/features/mec/settings.php:486
|
7283 |
msgid "Events Archive Status"
|
7284 |
msgstr "Events Archiv Status"
|
7285 |
|
7286 |
+
#: app/features/mec/settings.php:481
|
7287 |
msgid "Enabled (Recommended)"
|
7288 |
msgstr "Ist aktiviert (empfohlen)"
|
7289 |
|
7290 |
+
#: app/features/mec/settings.php:487
|
7291 |
msgid ""
|
7292 |
"If you disable it, then you should create a page as archive page of MEC. "
|
7293 |
"Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
|
7297 |
"erstellen. Page´s slug muss gleich sein wie \"Main Slug\" von MEC. Außerdem "
|
7298 |
"werden alle MEC-Rewrite-Regeln deaktiviert."
|
7299 |
|
7300 |
+
#: app/features/mec/settings.php:500 app/features/mec/settings.php:505
|
7301 |
msgid "Main Slug"
|
7302 |
msgstr "Main Slug"
|
7303 |
|
7304 |
+
#: app/features/mec/settings.php:506
|
7305 |
msgid ""
|
7306 |
"Default value is events. You can not have a page with this name. MEC allows "
|
7307 |
"you to create custom URLs for the permalinks and archives to enhance the "
|
7308 |
"applicability and forward-compatibility of the links."
|
7309 |
msgstr ""
|
7310 |
|
7311 |
+
#: app/features/mec/settings.php:510 app/features/mec/settings.php:524
|
7312 |
#, fuzzy
|
7313 |
#| msgid ""
|
7314 |
#| "Default value is events. Valid characters are lowercase a-z, - character "
|
7318 |
"Standardwert ist Events. Gültige Zeichen sind Kleinbuchstaben a-z, - Zeichen "
|
7319 |
"und Zahlen."
|
7320 |
|
7321 |
+
#: app/features/mec/settings.php:514 app/features/mec/settings.php:519
|
7322 |
msgid "Category Slug"
|
7323 |
msgstr "Category Slug"
|
7324 |
|
7325 |
+
#: app/features/mec/settings.php:520
|
7326 |
#, fuzzy
|
7327 |
#| msgid ""
|
7328 |
#| "It's slug of MEC categories, you can change it to events-cat or something "
|
7338 |
"für den link. Zum Beispiel example.com/events-cat oder example.com/mec-"
|
7339 |
"category"
|
7340 |
|
7341 |
+
#: app/features/mec/settings.php:532
|
7342 |
msgid "Currency"
|
7343 |
msgstr "Währung"
|
7344 |
|
7345 |
+
#: app/features/mec/settings.php:542 app/features/mec/settings.php:547
|
7346 |
msgid "Currency Sign"
|
7347 |
msgstr "Währungssymbol"
|
7348 |
|
7349 |
+
#: app/features/mec/settings.php:548
|
7350 |
msgid "Default value will be \"currency\" if you leave it empty."
|
7351 |
msgstr "Standardwert wird \"currency\" sein wenn Sie es leer lassen"
|
7352 |
|
7353 |
+
#: app/features/mec/settings.php:555
|
7354 |
msgid "Currency Position"
|
7355 |
msgstr "Position des Währungssymbols"
|
7356 |
|
7357 |
+
#: app/features/mec/settings.php:558
|
7358 |
#, fuzzy
|
7359 |
#| msgid "Before $10"
|
7360 |
msgid "$10 (Before)"
|
7361 |
msgstr "Vor €10"
|
7362 |
|
7363 |
+
#: app/features/mec/settings.php:559
|
7364 |
msgid "$ 10 (Before with Space)"
|
7365 |
msgstr ""
|
7366 |
|
7367 |
+
#: app/features/mec/settings.php:560
|
7368 |
#, fuzzy
|
7369 |
#| msgid "After"
|
7370 |
msgid "10$ (After)"
|
7371 |
msgstr "Nach"
|
7372 |
|
7373 |
+
#: app/features/mec/settings.php:561
|
7374 |
msgid "10 $ (After with Space)"
|
7375 |
msgstr ""
|
7376 |
|
7377 |
+
#: app/features/mec/settings.php:566
|
7378 |
msgid "Thousand Separator"
|
7379 |
msgstr "Tausendertrennzeichen"
|
7380 |
|
7381 |
+
#: app/features/mec/settings.php:572
|
7382 |
msgid "Decimal Separator"
|
7383 |
msgstr "Dezimaltrennzeichen"
|
7384 |
|
7385 |
+
#: app/features/mec/settings.php:582
|
7386 |
msgid "No decimal"
|
7387 |
msgstr "Keine Dezimale"
|
7388 |
|
7389 |
+
#: app/features/mec/settings.php:593
|
7390 |
msgid "Enable Google Recaptcha"
|
7391 |
msgstr "Google Recaptcha aktivieren"
|
7392 |
|
7393 |
+
#: app/features/mec/settings.php:602
|
7394 |
msgid "Enable on booking form"
|
7395 |
msgstr "Auf dem Buchungsformular aktivieren"
|
7396 |
|
7397 |
+
#: app/features/mec/settings.php:610
|
7398 |
#, fuzzy
|
7399 |
#| msgid "Enable on \"Frontend Event Submittion\" form"
|
7400 |
msgid "Enable on \"Frontend Event Submission\" form"
|
7401 |
msgstr "Aktivieren auf dem \"Frontend Event Submittion\" Formular"
|
7402 |
|
7403 |
+
#: app/features/mec/settings.php:614
|
7404 |
msgid "Site Key"
|
7405 |
msgstr "Site Key (Seitenschlüssel)"
|
7406 |
|
7407 |
+
#: app/features/mec/settings.php:620
|
7408 |
msgid "Secret Key"
|
7409 |
msgstr "Geheimschlüssel"
|
7410 |
|
7411 |
+
#: app/features/mec/settings.php:632 app/features/mec/settings.php:640
|
7412 |
msgid "Time Format"
|
7413 |
msgstr "Zeitformat"
|
7414 |
|
7415 |
+
#: app/features/mec/settings.php:635
|
7416 |
msgid "12 hours format with AM/PM"
|
7417 |
msgstr "12-Stunden-Format mit AM/FM"
|
7418 |
|
7419 |
+
#: app/features/mec/settings.php:636
|
7420 |
msgid "24 hours format"
|
7421 |
msgstr "24-Stunden-Format"
|
7422 |
|
7423 |
+
#: app/features/mec/settings.php:641
|
7424 |
msgid "This option, affects the selection of Start/End time."
|
7425 |
msgstr ""
|
7426 |
|
7427 |
+
#: app/features/mec/settings.php:649
|
7428 |
msgid "Events List Page"
|
7429 |
msgstr "Seite Liste der Veranstaltungen"
|
7430 |
|
7431 |
+
#: app/features/mec/settings.php:657 app/features/mec/settings.php:669
|
7432 |
#, php-format
|
7433 |
msgid "Put %s shortcode into the page."
|
7434 |
msgstr "%s shortcode in die Seite einfügen"
|
7435 |
|
7436 |
+
#: app/features/mec/settings.php:661
|
7437 |
msgid "Add/Edit Events Page"
|
7438 |
msgstr "Veranstaltungsseite hinzufügen/bearbeiten"
|
7439 |
|
7440 |
+
#: app/features/mec/settings.php:673
|
7441 |
#, fuzzy
|
7442 |
#| msgid "On Event Start"
|
7443 |
msgid "New Events Status"
|
7444 |
msgstr "Am Event Start"
|
7445 |
|
7446 |
+
#: app/features/mec/settings.php:676
|
7447 |
#, fuzzy
|
7448 |
#| msgid "WordPress"
|
7449 |
msgid "Let WordPress decide"
|
7450 |
msgstr "WordPress"
|
7451 |
|
7452 |
+
#: app/features/mec/settings.php:677 app/libraries/main.php:6856
|
7453 |
+
#: app/libraries/main.php:6878
|
7454 |
msgid "Pending"
|
7455 |
msgstr "Ausstehend"
|
7456 |
|
7457 |
+
#: app/features/mec/settings.php:678
|
7458 |
#, fuzzy
|
7459 |
#| msgid "Publishable Key"
|
7460 |
msgid "Publish"
|
7461 |
msgstr "publizierbarer Schlüssel"
|
7462 |
|
7463 |
+
#: app/features/mec/settings.php:695
|
7464 |
#, fuzzy
|
7465 |
#| msgid ""
|
7466 |
#| "User redirects to this page after new event submission. Leave it empty if "
|
7472 |
"Benutzer werden auf diese Seite nach der Buchung weitergeleitet. Lassen Sie "
|
7473 |
"es leer, wenn Sie es deaktivieren möchten."
|
7474 |
|
7475 |
+
#: app/features/mec/settings.php:702 app/features/mec/settings.php:707
|
7476 |
#, fuzzy
|
7477 |
#| msgid "Thank You Page"
|
7478 |
msgid "Thank You Page URL"
|
7479 |
msgstr "Danke Seite"
|
7480 |
|
7481 |
+
#: app/features/mec/settings.php:708
|
7482 |
msgid "If filled it will use instead of thank you page set above."
|
7483 |
msgstr ""
|
7484 |
|
7485 |
+
#: app/features/mec/settings.php:731 app/features/mec/settings.php:736
|
7486 |
#, fuzzy
|
7487 |
#| msgid "Amount (Per Ticket)"
|
7488 |
msgid "Maximum File Size"
|
7489 |
msgstr "Betrag (pro Ticket)"
|
7490 |
|
7491 |
+
#: app/features/mec/settings.php:733
|
7492 |
msgid "in KB"
|
7493 |
msgstr ""
|
7494 |
|
7495 |
+
#: app/features/mec/settings.php:737
|
7496 |
msgid "In Kilo Bytes so 5000 means 5MB (Approximately)"
|
7497 |
msgstr ""
|
7498 |
|
7499 |
+
#: app/features/mec/settings.php:746
|
7500 |
#, fuzzy
|
7501 |
#| msgid "Enable event submission by guest (Not logged-in) users"
|
7502 |
msgid "Enable event submission by guest (Not logged in) users"
|
7504 |
"Das Erstellen von Veranstaltungen durch Gäste (nicht angemeldete Nutzer) "
|
7505 |
"erlauben"
|
7506 |
|
7507 |
+
#: app/features/mec/settings.php:753
|
7508 |
msgid "Enable mandatory email and name for guest user"
|
7509 |
msgstr ""
|
7510 |
"Aktivieren Sie die obligatorische E-Mail und den Namen für Gastbenutzer"
|
7511 |
|
7512 |
+
#: app/features/mec/settings.php:759
|
7513 |
msgid ""
|
7514 |
"Automatically create users after event publish and assign event to the "
|
7515 |
"created user"
|
7516 |
msgstr ""
|
7517 |
|
7518 |
+
#: app/features/mec/settings.php:764
|
7519 |
msgid "Frontend Event Submission Sections"
|
7520 |
msgstr "Frontend Veranstaltungen Einreichung Sektionen"
|
7521 |
|
7522 |
+
#: app/features/mec/settings.php:768
|
7523 |
#, fuzzy
|
7524 |
#| msgid "Event Details"
|
7525 |
msgid "Event Data Fields"
|
7526 |
msgstr "Veranstaltungsdetails"
|
7527 |
|
7528 |
+
#: app/features/mec/settings.php:792 app/widgets/single.php:121
|
7529 |
msgid "Event Categories"
|
7530 |
msgstr "Veranstaltungskategorien"
|
7531 |
|
7532 |
+
#: app/features/mec/settings.php:798
|
7533 |
msgid "Event Labels"
|
7534 |
msgstr "Event Labels"
|
7535 |
|
7536 |
+
#: app/features/mec/settings.php:809
|
7537 |
+
msgid ""
|
7538 |
+
"This feature adds the ability to hide the current event to all MEC "
|
7539 |
+
"Shortcodes."
|
7540 |
+
msgstr ""
|
7541 |
+
|
7542 |
+
#: app/features/mec/settings.php:823
|
7543 |
msgid "Event Tags"
|
7544 |
msgstr "Event Schlagworte"
|
7545 |
|
7546 |
+
#: app/features/mec/settings.php:835 app/widgets/single.php:125
|
7547 |
msgid "Event Organizer"
|
7548 |
msgstr "Veranstaltungsmanager"
|
7549 |
|
7550 |
+
#: app/features/mec/settings.php:862 app/features/occurrences.php:386
|
7551 |
#, fuzzy
|
7552 |
#| msgid "Total booking limits"
|
7553 |
msgid "Total Booking Limit"
|
7554 |
msgstr "Gesamt Verfügbare Plätze"
|
7555 |
|
7556 |
+
#: app/features/mec/settings.php:868
|
7557 |
#, fuzzy
|
7558 |
#| msgid "Discount Type"
|
7559 |
msgid "Discount Per User Roles"
|
7560 |
msgstr "Rabatt-Art"
|
7561 |
|
7562 |
+
#: app/features/mec/settings.php:904
|
7563 |
#, fuzzy
|
7564 |
#| msgid "Ticket Variation"
|
7565 |
msgid "Ticket Options"
|
7566 |
msgstr "Ticket Variationen"
|
7567 |
|
7568 |
+
#: app/features/mec/settings.php:916
|
7569 |
#, fuzzy
|
7570 |
#| msgid "Fees/Taxes Options"
|
7571 |
msgid "Fees / Taxes Options"
|
7572 |
msgstr "Gebühren/Steuer Optionen"
|
7573 |
|
7574 |
+
#: app/features/mec/settings.php:931 app/features/schema.php:64
|
7575 |
msgid "SEO Schema"
|
7576 |
msgstr ""
|
7577 |
|
7578 |
+
#: app/features/mec/settings.php:954 app/features/occurrences.php:72
|
7579 |
#: app/features/occurrences.php:102
|
7580 |
#, fuzzy
|
7581 |
#| msgid "Occurrences times"
|
7582 |
msgid "Occurrences"
|
7583 |
msgstr " mal vorkommen"
|
7584 |
|
7585 |
+
#: app/features/mec/settings.php:963 app/widgets/single.php:165
|
7586 |
#, fuzzy
|
7587 |
#| msgid "Edit Event"
|
7588 |
msgid "Virtual Event"
|
7589 |
msgstr "Event Bearbeiten"
|
7590 |
|
7591 |
+
#: app/features/mec/settings.php:972
|
7592 |
#, fuzzy
|
7593 |
#| msgid "Book Event"
|
7594 |
msgid "Zoom Event"
|
7595 |
msgstr "Veranstaltung buchen"
|
7596 |
|
7597 |
+
#: app/features/mec/settings.php:985
|
7598 |
#, php-format
|
7599 |
msgid ""
|
7600 |
"Users can put a note for editors while they're submitting the event. Also "
|
7606 |
"Eventbenachrichtigung setzen, um die Notizen der Benutzer in der E-Mail zu "
|
7607 |
"erhalten."
|
7608 |
|
7609 |
+
#: app/features/mec/settings.php:992 app/features/mec/settings.php:1000
|
7610 |
#, fuzzy
|
7611 |
#| msgid "Visibility"
|
7612 |
msgid "Note visibility"
|
7613 |
msgstr "Sichtbarkeit"
|
7614 |
|
7615 |
+
#: app/features/mec/settings.php:995
|
7616 |
msgid "Always"
|
7617 |
msgstr "Immer"
|
7618 |
|
7619 |
+
#: app/features/mec/settings.php:996
|
7620 |
msgid "While event is not published"
|
7621 |
msgstr "Das Ereignis wird nicht veröffentlicht"
|
7622 |
|
7623 |
+
#: app/features/mec/settings.php:1001
|
7624 |
msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
|
7625 |
msgstr ""
|
7626 |
"Die Ereignisnotiz wird im Frontend-Einreichungsformular angezeigt und das "
|
7627 |
"Ereignis im Backend bearbeitet."
|
7628 |
|
7629 |
+
#: app/features/mec/settings.php:1009
|
7630 |
#, fuzzy
|
7631 |
#| msgid "Required Field"
|
7632 |
msgid "Required Fields"
|
7633 |
msgstr "Pflichtfeld"
|
7634 |
|
7635 |
+
#: app/features/mec/settings.php:1012
|
7636 |
#, fuzzy
|
7637 |
#| msgid "Description"
|
7638 |
msgid "Event Description"
|
7639 |
msgstr "Beschreibung"
|
7640 |
|
7641 |
+
#: app/features/mec/settings.php:1016 app/libraries/main.php:6603
|
7642 |
+
#: app/libraries/main.php:6652
|
7643 |
msgid "More Info Link"
|
7644 |
msgstr "Link Mehr Informationen"
|
7645 |
|
7646 |
+
#: app/features/mec/settings.php:1029 app/libraries/main.php:572
|
7647 |
msgid "User Profile"
|
7648 |
msgstr "Benutzer Profil"
|
7649 |
|
7650 |
+
#: app/features/mec/settings.php:1031
|
7651 |
#, php-format
|
7652 |
msgid ""
|
7653 |
"Put %s shortcode into your desired page. Then users are able to see the "
|
7654 |
"history of their bookings."
|
7655 |
msgstr ""
|
7656 |
|
7657 |
+
#: app/features/mec/settings.php:1036 app/libraries/main.php:573
|
7658 |
#, fuzzy
|
7659 |
#| msgid "Hide Events"
|
7660 |
msgid "User Events"
|
7661 |
msgstr "Events verbergen"
|
7662 |
|
7663 |
+
#: app/features/mec/settings.php:1038
|
7664 |
#, php-format
|
7665 |
msgid ""
|
7666 |
"Put %s shortcode into your desired page. Then users are able to see the "
|
7667 |
"their own events."
|
7668 |
msgstr ""
|
7669 |
|
7670 |
+
#: app/features/mec/settings.php:1050 app/libraries/main.php:574
|
7671 |
msgid "Search Bar"
|
7672 |
msgstr "Suche"
|
7673 |
|
7674 |
+
#: app/features/mec/settings.php:1052
|
7675 |
#, php-format
|
7676 |
msgid ""
|
7677 |
"Put %s shortcode into your desired page. Then users are able to search events"
|
7678 |
msgstr ""
|
7679 |
|
7680 |
+
#: app/features/mec/settings.php:1057
|
7681 |
msgid "Ajax Live mode"
|
7682 |
msgstr ""
|
7683 |
|
7684 |
+
#: app/features/mec/settings.php:1061
|
7685 |
msgid "Ajax mode"
|
7686 |
msgstr ""
|
7687 |
|
7688 |
+
#: app/features/mec/settings.php:1062
|
7689 |
msgid ""
|
7690 |
"if you enable this option, the search button will disappear. To use this "
|
7691 |
"feature, text input field must be enabled."
|
7692 |
msgstr ""
|
7693 |
|
7694 |
+
#: app/features/mec/settings.php:1070
|
7695 |
#, fuzzy
|
7696 |
#| msgid "Modern Style"
|
7697 |
msgid "Modern Type"
|
7698 |
msgstr "Moderner Stil"
|
7699 |
|
7700 |
+
#: app/features/mec/settings.php:1074
|
7701 |
msgid "Search bar fields"
|
7702 |
msgstr "Such Felder"
|
7703 |
|
7704 |
+
#: app/features/mec/settings.php:1116
|
7705 |
#, fuzzy
|
7706 |
#| msgid "Text Input"
|
7707 |
msgid "Text input"
|
7708 |
msgstr "Text eingeben"
|
7709 |
|
7710 |
+
#: app/features/mec/settings.php:1128
|
7711 |
msgid "Enable Mailchimp Integration"
|
7712 |
msgstr "Mailchimp Integration deaktivieren"
|
7713 |
|
7714 |
+
#: app/features/mec/settings.php:1133 app/features/mec/settings.php:1138
|
7715 |
+
#: app/features/mec/settings.php:1193 app/features/mec/settings.php:1217
|
7716 |
+
#: app/features/mec/settings.php:1241 app/features/mec/settings.php:1308
|
7717 |
msgid "API Key"
|
7718 |
msgstr "API Schlüssel"
|
7719 |
|
7720 |
+
#: app/features/mec/settings.php:1146 app/features/mec/settings.php:1151
|
7721 |
+
#: app/features/mec/settings.php:1199 app/features/mec/settings.php:1314
|
7722 |
+
#: app/features/mec/settings.php:1332 app/features/mec/settings.php:1380
|
7723 |
msgid "List ID"
|
7724 |
msgstr "List ID"
|
7725 |
|
7726 |
+
#: app/features/mec/settings.php:1159 app/features/mec/settings.php:1167
|
7727 |
msgid "Subscription Status"
|
7728 |
msgstr "Buchungsstatus"
|
7729 |
|
7730 |
+
#: app/features/mec/settings.php:1162
|
7731 |
msgid "Subscribe automatically"
|
7732 |
msgstr "automatisch Anmelden/Abonnieren"
|
7733 |
|
7734 |
+
#: app/features/mec/settings.php:1163
|
7735 |
msgid "Subscribe by verification"
|
7736 |
msgstr ""
|
7737 |
"Anmelden/Abonnieren durch Bestätigung\n"
|
7738 |
" "
|
7739 |
|
7740 |
+
#: app/features/mec/settings.php:1168
|
7741 |
#, fuzzy
|
7742 |
#| msgid ""
|
7743 |
#| "If you choose \"Subscribe by verification\" then an email will send to "
|
7749 |
"Wenn Sie \"Anmelden durch Verifizierung\" wählen, wird eine E-Mail an den "
|
7750 |
"Benutzer per Mailchimp zur Bestätigung gesendet."
|
7751 |
|
7752 |
+
#: app/features/mec/settings.php:1177
|
7753 |
msgid "Enable Segment Creation by Event Title and Booking Date"
|
7754 |
msgstr ""
|
7755 |
|
7756 |
+
#: app/features/mec/settings.php:1184 app/libraries/main.php:577
|
7757 |
#, fuzzy
|
7758 |
#| msgid "Mailchimp Integration"
|
7759 |
msgid "Campaign Monitor Integration"
|
7760 |
msgstr "Mailchimp Integration"
|
7761 |
|
7762 |
+
#: app/features/mec/settings.php:1188
|
7763 |
#, fuzzy
|
7764 |
#| msgid "Enable Mailchimp Integration"
|
7765 |
msgid "Enable Campaign Monitor Integration"
|
7766 |
msgstr "Mailchimp Integration deaktivieren"
|
7767 |
|
7768 |
+
#: app/features/mec/settings.php:1208 app/libraries/main.php:578
|
7769 |
#, fuzzy
|
7770 |
#| msgid "Mailchimp Integration"
|
7771 |
msgid "MailerLite Integration"
|
7772 |
msgstr "Mailchimp Integration"
|
7773 |
|
7774 |
+
#: app/features/mec/settings.php:1212
|
7775 |
#, fuzzy
|
7776 |
#| msgid "Enable Mailchimp Integration"
|
7777 |
msgid "Enable MailerLite Integration"
|
7778 |
msgstr "Mailchimp Integration deaktivieren"
|
7779 |
|
7780 |
+
#: app/features/mec/settings.php:1223
|
7781 |
msgid "Group ID"
|
7782 |
msgstr "Gruppen ID "
|
7783 |
|
7784 |
+
#: app/features/mec/settings.php:1232 app/libraries/main.php:579
|
7785 |
#, fuzzy
|
7786 |
#| msgid "BuddyPress Integration"
|
7787 |
msgid "Constant Contact Integration"
|
7788 |
msgstr "Buddy Press Integration"
|
7789 |
|
7790 |
+
#: app/features/mec/settings.php:1236
|
7791 |
#, fuzzy
|
7792 |
#| msgid "Enable Mailchimp Integration"
|
7793 |
msgid "Enable constantcontact Integration"
|
7794 |
msgstr "Mailchimp Integration deaktivieren"
|
7795 |
|
7796 |
+
#: app/features/mec/settings.php:1247
|
7797 |
#, fuzzy
|
7798 |
#| msgid "Facebook Page Link"
|
7799 |
msgid "Access Token"
|
7800 |
msgstr "Facebook Seiten Link"
|
7801 |
|
7802 |
+
#: app/features/mec/settings.php:1267 app/features/mec/settings.php:1282
|
7803 |
#, fuzzy
|
7804 |
#| msgid "Select icon"
|
7805 |
msgid "Select List"
|
7806 |
msgstr "Wählen Sie ein Symbol"
|
7807 |
|
7808 |
+
#: app/features/mec/settings.php:1283
|
7809 |
msgid ""
|
7810 |
"Please fill in the API key and Access Token field and save settings. after "
|
7811 |
"that, please refresh the page and select a list."
|
7812 |
msgstr ""
|
7813 |
|
7814 |
+
#: app/features/mec/settings.php:1293 app/libraries/main.php:580
|
7815 |
#, fuzzy
|
7816 |
#| msgid "Mailchimp Integration"
|
7817 |
msgid "Active Campaign Integration"
|
7818 |
msgstr "Mailchimp Integration"
|
7819 |
|
7820 |
+
#: app/features/mec/settings.php:1297
|
7821 |
#, fuzzy
|
7822 |
#| msgid "Enable Mailchimp Integration"
|
7823 |
msgid "Enable Active Campaign Integration"
|
7824 |
msgstr "Mailchimp Integration deaktivieren"
|
7825 |
|
7826 |
+
#: app/features/mec/settings.php:1302
|
7827 |
msgid "API URL"
|
7828 |
msgstr ""
|
7829 |
|
7830 |
+
#: app/features/mec/settings.php:1323 app/libraries/main.php:581
|
7831 |
#, fuzzy
|
7832 |
#| msgid "Mailchimp Integration"
|
7833 |
msgid "AWeber Integration"
|
7834 |
msgstr "Mailchimp Integration"
|
7835 |
|
7836 |
+
#: app/features/mec/settings.php:1327
|
7837 |
#, fuzzy
|
7838 |
#| msgid "Enable Mailchimp Integration"
|
7839 |
msgid "Enable AWeber Integration"
|
7840 |
msgstr "Mailchimp Integration deaktivieren"
|
7841 |
|
7842 |
+
#: app/features/mec/settings.php:1335
|
7843 |
#, fuzzy, php-format
|
7844 |
#| msgid "Third Party plugin is not installed and activated!"
|
7845 |
msgid "%s plugin should be installed and connected to your AWeber account."
|
7846 |
msgstr "Drittanbieter-Plugin ist nicht installiert und aktiviert!"
|
7847 |
|
7848 |
+
#: app/features/mec/settings.php:1336
|
7849 |
#, php-format
|
7850 |
msgid "More information about the list ID can be found %s."
|
7851 |
msgstr ""
|
7852 |
|
7853 |
+
#: app/features/mec/settings.php:1343 app/libraries/main.php:582
|
7854 |
#, fuzzy
|
7855 |
#| msgid "Mailchimp Integration"
|
7856 |
msgid "MailPoet Integration"
|
7857 |
msgstr "Mailchimp Integration"
|
7858 |
|
7859 |
+
#: app/features/mec/settings.php:1347
|
7860 |
#, fuzzy
|
7861 |
#| msgid "Enable Mailchimp Integration"
|
7862 |
msgid "Enable MailPoet Integration"
|
7863 |
msgstr "Mailchimp Integration deaktivieren"
|
7864 |
|
7865 |
+
#: app/features/mec/settings.php:1353
|
7866 |
#: app/skins/default_full_calendar/tpl.php:78
|
7867 |
#: app/skins/full_calendar/tpl.php:126
|
7868 |
msgid "List"
|
7869 |
msgstr "Liste / Listenansicht"
|
7870 |
|
7871 |
+
#: app/features/mec/settings.php:1364
|
7872 |
#, fuzzy, php-format
|
7873 |
#| msgid "Third Party plugin is not installed and activated!"
|
7874 |
msgid "%s plugin should be installed and activated."
|
7875 |
msgstr "Drittanbieter-Plugin ist nicht installiert und aktiviert!"
|
7876 |
|
7877 |
+
#: app/features/mec/settings.php:1369 app/libraries/main.php:583
|
7878 |
#, fuzzy
|
7879 |
#| msgid "Mailchimp Integration"
|
7880 |
msgid "Sendfox Integration"
|
7881 |
msgstr "Mailchimp Integration"
|
7882 |
|
7883 |
+
#: app/features/mec/settings.php:1373
|
7884 |
#, fuzzy
|
7885 |
#| msgid "Enable Mailchimp Integration"
|
7886 |
msgid "Enable Sendfox Integration"
|
7887 |
msgstr "Mailchimp Integration deaktivieren"
|
7888 |
|
7889 |
+
#: app/features/mec/settings.php:1390
|
7890 |
#, fuzzy, php-format
|
7891 |
#| msgid "Third Party plugin is not installed and activated!"
|
7892 |
msgid "%s plugin should be installed and connected to your Sendfox account."
|
7893 |
msgstr "Drittanbieter-Plugin ist nicht installiert und aktiviert!"
|
7894 |
|
7895 |
+
#: app/features/mec/single.php:38 app/libraries/main.php:587
|
7896 |
#, fuzzy
|
7897 |
#| msgid "Single Event Style"
|
7898 |
msgid "Single Event Page"
|
8055 |
"Alphabetic type."
|
8056 |
msgstr ""
|
8057 |
|
8058 |
+
#: app/features/mec/single.php:202 app/libraries/main.php:588
|
8059 |
#, fuzzy
|
8060 |
#| msgid "Custom Styles"
|
8061 |
msgid "Custom Fields"
|
8062 |
msgstr "Benutzerdefinierte Stile"
|
8063 |
|
8064 |
+
#: app/features/mec/single.php:241 app/libraries/main.php:3456
|
8065 |
msgid "URL"
|
8066 |
msgstr ""
|
8067 |
|
8110 |
"Mit dieser Option können Sie bestimmte Tage von vorkommenden Eventdaten ein-/"
|
8111 |
"ausschließen."
|
8112 |
|
8113 |
+
#: app/features/mec/single.php:336 app/libraries/main.php:591
|
8114 |
msgid "Additional Organizers"
|
8115 |
msgstr "Zusätzliche Organisatoren"
|
8116 |
|
8126 |
msgid "Enable Description For Other Organizers."
|
8127 |
msgstr ""
|
8128 |
|
8129 |
+
#: app/features/mec/single.php:354 app/libraries/main.php:592
|
8130 |
msgid "Additional Locations"
|
8131 |
msgstr "Zusätzliche Locations"
|
8132 |
|
8146 |
msgid "Enable Description For Other Locations."
|
8147 |
msgstr ""
|
8148 |
|
8149 |
+
#: app/features/mec/single.php:372 app/libraries/main.php:593
|
8150 |
+
#: app/skins/single.php:180 app/skins/single.php:446
|
8151 |
msgid "Related Events"
|
8152 |
msgstr "Vorgeschlagene Veranstaltungen"
|
8153 |
|
8161 |
msgid "Select Taxonomies:"
|
8162 |
msgstr "Klassifizierung "
|
8163 |
|
8164 |
+
#: app/features/mec/single.php:414 app/libraries/main.php:594
|
8165 |
#, fuzzy
|
8166 |
#| msgid "Next/Previous Buttons"
|
8167 |
msgid "Next / Previous Events"
|
8171 |
msgid "Display next / previous events based on taxonomy in single event page."
|
8172 |
msgstr ""
|
8173 |
|
8174 |
+
#: app/features/mec/single.php:456 app/libraries/main.php:641
|
8175 |
#, fuzzy
|
8176 |
#| msgid "Next Occurrence"
|
8177 |
msgid "Edit Per Occurrences"
|
8207 |
msgstr "Standardschriftart des Themas "
|
8208 |
|
8209 |
#: app/features/mec/styling.php:54 app/features/mec/support.php:52
|
8210 |
+
#: app/libraries/main.php:839
|
8211 |
msgid "Styling Options"
|
8212 |
msgstr "Styling-Optionen"
|
8213 |
|
8396 |
msgid "MEC Settings"
|
8397 |
msgstr "MEC - Einstellungen"
|
8398 |
|
8399 |
+
#: app/features/mec/support-page.php:99 app/libraries/main.php:693
|
8400 |
#, fuzzy
|
8401 |
#| msgid "Single Event Style"
|
8402 |
msgid "Single Event"
|
8761 |
msgid "Create a support ticket"
|
8762 |
msgstr "Erstelle ein Support-Ticket"
|
8763 |
|
8764 |
+
#: app/features/mec/support.php:59 app/libraries/main.php:846
|
8765 |
msgid "Custom CSS"
|
8766 |
msgstr "Custom CSS"
|
8767 |
|
9014 |
msgid "eg. https://webnus.net"
|
9015 |
msgstr "http://webnus.net"
|
9016 |
|
9017 |
+
#: app/features/organizers.php:312 app/libraries/main.php:6608
|
9018 |
+
#: app/libraries/main.php:6655 app/skins/single.php:1323
|
9019 |
msgid "Other Organizers"
|
9020 |
msgstr "Andere Veranstalter"
|
9021 |
|
9209 |
msgid "#"
|
9210 |
msgstr ""
|
9211 |
|
9212 |
+
#: app/features/profile/profile.php:39 app/libraries/main.php:3795
|
9213 |
msgid "Status"
|
9214 |
msgstr ""
|
9215 |
|
9216 |
+
#: app/features/profile/profile.php:42 app/libraries/main.php:2777
|
9217 |
msgid "Attendees"
|
9218 |
msgstr "Teilnehmer"
|
9219 |
|
9291 |
msgstr "Veranstalter Email-Adresse hinzufügen"
|
9292 |
|
9293 |
#: app/features/speakers.php:135 app/features/speakers.php:208
|
9294 |
+
#: app/skins/single.php:1297 app/skins/single.php:1356
|
9295 |
#: app/skins/single/default.php:250 app/skins/single/default.php:321
|
9296 |
#: app/skins/single/default.php:488 app/skins/single/default.php:559
|
9297 |
#: app/skins/single/m1.php:126 app/skins/single/m1.php:180
|
9374 |
msgid "Please %s/%s in order to see your own events."
|
9375 |
msgstr "Um neue Veranstaltungen einzugeben, bitte %s/%s"
|
9376 |
|
9377 |
+
#: app/features/wc.php:103 app/libraries/notifications.php:1343
|
9378 |
+
#: app/libraries/notifications.php:1358 app/libraries/notifications.php:1369
|
9379 |
+
#: app/libraries/notifications.php:1646 app/libraries/notifications.php:1647
|
9380 |
#, php-format
|
9381 |
msgid "%s to %s"
|
9382 |
msgstr "%s zu %s"
|
9400 |
msgid "Discount"
|
9401 |
msgstr "Rabatt"
|
9402 |
|
9403 |
+
#: app/libraries/book.php:897 app/modules/booking/default.php:435
|
9404 |
+
#: app/modules/booking/default.php:540
|
9405 |
msgid "Download Invoice"
|
9406 |
msgstr "Download Rechnung"
|
9407 |
|
9408 |
#: app/libraries/envato.php:196 app/libraries/envato.php:274
|
9409 |
+
#: app/libraries/factory.php:1172
|
9410 |
msgid "This update includes only bug fixes."
|
9411 |
msgstr ""
|
9412 |
|
9431 |
msgid "Upgrade"
|
9432 |
msgstr ""
|
9433 |
|
9434 |
+
#: app/libraries/factory.php:375
|
9435 |
msgid "day"
|
9436 |
msgstr "Tag"
|
9437 |
|
9438 |
+
#: app/libraries/factory.php:376 app/modules/countdown/details.php:142
|
9439 |
#: app/skins/available_spot/tpl.php:138 app/skins/countdown/tpl.php:120
|
9440 |
#: app/skins/countdown/tpl.php:166 app/skins/countdown/tpl.php:217
|
9441 |
msgid "days"
|
9442 |
msgstr "Tage"
|
9443 |
|
9444 |
+
#: app/libraries/factory.php:377
|
9445 |
msgid "hour"
|
9446 |
msgstr "Stunde"
|
9447 |
|
9448 |
+
#: app/libraries/factory.php:378 app/modules/countdown/details.php:149
|
9449 |
#: app/skins/available_spot/tpl.php:142 app/skins/countdown/tpl.php:126
|
9450 |
#: app/skins/countdown/tpl.php:172 app/skins/countdown/tpl.php:223
|
9451 |
msgid "hours"
|
9452 |
msgstr "Stunden"
|
9453 |
|
9454 |
+
#: app/libraries/factory.php:379
|
9455 |
msgid "minute"
|
9456 |
msgstr "Minute"
|
9457 |
|
9458 |
+
#: app/libraries/factory.php:380 app/modules/countdown/details.php:156
|
9459 |
#: app/skins/available_spot/tpl.php:146 app/skins/countdown/tpl.php:132
|
9460 |
#: app/skins/countdown/tpl.php:178 app/skins/countdown/tpl.php:229
|
9461 |
msgid "minutes"
|
9462 |
msgstr "Minuten"
|
9463 |
|
9464 |
+
#: app/libraries/factory.php:381
|
9465 |
msgid "second"
|
9466 |
msgstr "Sekunde"
|
9467 |
|
9468 |
+
#: app/libraries/factory.php:382 app/modules/countdown/details.php:163
|
9469 |
#: app/skins/available_spot/tpl.php:150 app/skins/countdown/tpl.php:138
|
9470 |
#: app/skins/countdown/tpl.php:184 app/skins/countdown/tpl.php:235
|
9471 |
msgid "seconds"
|
9472 |
msgstr "Sekunden"
|
9473 |
|
9474 |
+
#: app/libraries/factory.php:428
|
9475 |
msgid "MEC Single Sidebar"
|
9476 |
msgstr "MEC Single Sidebar"
|
9477 |
|
9478 |
+
#: app/libraries/factory.php:429
|
9479 |
msgid "Custom sidebar for single and modal page of MEC."
|
9480 |
msgstr "Custom sidebar for single and modal page of MEC."
|
9481 |
|
9482 |
+
#: app/libraries/factory.php:1171
|
9483 |
msgid "Notice:"
|
9484 |
msgstr ""
|
9485 |
|
9522 |
msgid "New Day"
|
9523 |
msgstr "Neuer Tag"
|
9524 |
|
9525 |
+
#: app/libraries/main.php:366 app/libraries/main.php:2136
|
9526 |
+
#: app/libraries/main.php:2161
|
9527 |
msgid "Agenda View"
|
9528 |
msgstr "Agendaansicht"
|
9529 |
|
9530 |
+
#: app/libraries/main.php:367 app/libraries/main.php:2127
|
9531 |
+
#: app/libraries/main.php:2152
|
9532 |
msgid "Full Calendar"
|
9533 |
msgstr "Ganzer Kalender"
|
9534 |
|
9535 |
+
#: app/libraries/main.php:369 app/libraries/main.php:2129
|
9536 |
+
#: app/libraries/main.php:2154
|
9537 |
msgid "Calendar/Monthly View"
|
9538 |
msgstr "Kalender-/Monatsansicht"
|
9539 |
|
9540 |
+
#: app/libraries/main.php:372 app/libraries/main.php:2132
|
9541 |
+
#: app/libraries/main.php:2157
|
9542 |
msgid "Timetable View"
|
9543 |
msgstr "Stundenplan"
|
9544 |
|
9545 |
+
#: app/libraries/main.php:373 app/libraries/main.php:2133
|
9546 |
+
#: app/libraries/main.php:2158
|
9547 |
msgid "Masonry View"
|
9548 |
msgstr "Kachel Ansicht"
|
9549 |
|
9550 |
+
#: app/libraries/main.php:374 app/libraries/main.php:2137
|
9551 |
+
#: app/libraries/main.php:2162
|
9552 |
msgid "Map View"
|
9553 |
msgstr "Kartenansicht"
|
9554 |
|
9578 |
msgid "Timeline View"
|
9579 |
msgstr "Stundenplan"
|
9580 |
|
9581 |
+
#: app/libraries/main.php:419 app/libraries/main.php:6582
|
9582 |
+
#: app/libraries/main.php:6636
|
9583 |
msgid "SU"
|
9584 |
msgstr "SO"
|
9585 |
|
9586 |
+
#: app/libraries/main.php:420 app/libraries/main.php:6583
|
9587 |
+
#: app/libraries/main.php:6637
|
9588 |
msgid "MO"
|
9589 |
msgstr "MO"
|
9590 |
|
9591 |
+
#: app/libraries/main.php:421 app/libraries/main.php:6584
|
9592 |
+
#: app/libraries/main.php:6638
|
9593 |
msgid "TU"
|
9594 |
msgstr "DI"
|
9595 |
|
9596 |
+
#: app/libraries/main.php:422 app/libraries/main.php:6585
|
9597 |
+
#: app/libraries/main.php:6639
|
9598 |
msgid "WE"
|
9599 |
msgstr "MI"
|
9600 |
|
9601 |
+
#: app/libraries/main.php:423 app/libraries/main.php:6586
|
9602 |
+
#: app/libraries/main.php:6640
|
9603 |
msgid "TH"
|
9604 |
msgstr "DO"
|
9605 |
|
9606 |
+
#: app/libraries/main.php:424 app/libraries/main.php:6587
|
9607 |
+
#: app/libraries/main.php:6641
|
9608 |
msgid "FR"
|
9609 |
msgstr "FR"
|
9610 |
|
9611 |
+
#: app/libraries/main.php:425 app/libraries/main.php:6588
|
9612 |
+
#: app/libraries/main.php:6642
|
9613 |
msgid "SA"
|
9614 |
msgstr "SA"
|
9615 |
|
9616 |
+
#: app/libraries/main.php:604
|
9617 |
#, fuzzy
|
9618 |
#| msgid "Upload/Add image"
|
9619 |
msgid "Upload Field"
|
9620 |
msgstr "Bild hochladen/hinzufügen"
|
9621 |
|
9622 |
+
#: app/libraries/main.php:759
|
9623 |
#, fuzzy
|
9624 |
#| msgid "Social Module : "
|
9625 |
msgid "Modules"
|
9626 |
msgstr "Social Modul:"
|
9627 |
|
9628 |
+
#: app/libraries/main.php:932
|
9629 |
msgid "New Addons For MEC! Now Customize MEC in Elementor"
|
9630 |
msgstr ""
|
9631 |
|
9632 |
+
#: app/libraries/main.php:939
|
9633 |
msgid ""
|
9634 |
"The time has come at last, and the new practical add-ons for MEC have been "
|
9635 |
"released. This is a revolution in the world of Event Calendars. We have "
|
9637 |
"below:"
|
9638 |
msgstr ""
|
9639 |
|
9640 |
+
#: app/libraries/main.php:941
|
9641 |
msgid ""
|
9642 |
"<strong>WooCommerce Integration:</strong> You can now purchase ticket (as "
|
9643 |
"products) and Woo products at the same time."
|
9644 |
msgstr ""
|
9645 |
|
9646 |
+
#: app/libraries/main.php:942
|
9647 |
msgid ""
|
9648 |
"<strong>Event API:</strong> display your events (shortcodes/single event) on "
|
9649 |
"other websites without MEC. Use JSON output features to make your Apps "
|
9650 |
"compatible with MEC."
|
9651 |
msgstr ""
|
9652 |
|
9653 |
+
#: app/libraries/main.php:943
|
9654 |
msgid ""
|
9655 |
"<strong>Multisite Event Sync:</strong> Sync events between your subsites and "
|
9656 |
"main websites. Changes in the main one will be inherited by the subsites. "
|
9657 |
"you can set these up in the admin panel."
|
9658 |
msgstr ""
|
9659 |
|
9660 |
+
#: app/libraries/main.php:944
|
9661 |
msgid ""
|
9662 |
"<strong>User Dashboard:</strong> Create exclusive pages for users. These "
|
9663 |
"pages can contain ticket purchase information, information about registered "
|
9664 |
"events. Users can now log in to purchase tickets."
|
9665 |
msgstr ""
|
9666 |
|
9667 |
+
#: app/libraries/main.php:946
|
9668 |
msgid "find out more"
|
9669 |
msgstr ""
|
9670 |
|
9671 |
+
#: app/libraries/main.php:1853
|
9672 |
msgid "Events at this location"
|
9673 |
msgstr "Veranstaltungen an diesem Ort "
|
9674 |
|
9675 |
+
#: app/libraries/main.php:1853
|
9676 |
msgid "Event at this location"
|
9677 |
msgstr "Veranstaltung an diesem Ort "
|
9678 |
|
9679 |
+
#: app/libraries/main.php:1905
|
9680 |
msgid "Facebook"
|
9681 |
msgstr "Facebook"
|
9682 |
|
9683 |
+
#: app/libraries/main.php:1906
|
9684 |
msgid "Twitter"
|
9685 |
msgstr "Twitter"
|
9686 |
|
9687 |
+
#: app/libraries/main.php:1907 app/libraries/main.php:1964
|
9688 |
msgid "Linkedin"
|
9689 |
msgstr "Linkedin"
|
9690 |
|
9691 |
+
#: app/libraries/main.php:1908 app/libraries/main.php:2000
|
9692 |
msgid "VK"
|
9693 |
msgstr ""
|
9694 |
|
9695 |
+
#: app/libraries/main.php:1909
|
9696 |
msgid "Tumblr"
|
9697 |
msgstr ""
|
9698 |
|
9699 |
+
#: app
|