Version Description
- 15 October 2019 =
- Added: Name field for Stripe gateways (pro)
- Added: Cancel links and map view to the profile shortcode (pro)
- Added: Booking fields to the translatable strings for WPML (pro)
- Added: Show cancellation time for canceled bookings (pro)
- Updated: Facebook documentation link
- Fixed: Disabled once to fix some issues on servers with cache (pro)
- Fixed: Showing dates in grid skin
- Fixed: Event title has special characters on email
- Fixed: Referred date option of weekdays and weekend events recurring
- Fixed: Showing ongoing events on shortcode
- Fixed: Number of tickets available (pro)
- Fixed: Hide event feature
- Fixed: Sorting dates on custom days
- Fixed: YouTube video on modal view
- Fixed: Cancelation notification (pro)
- Fixed: Categories icons view
- Fixed: Settings fields animations on Firefox
- Fixed: Some minor issues
Download this release
Release Info
Developer | webnus |
Plugin | Modern Events Calendar Lite |
Version | 4.7.5 |
Comparing to | |
See all releases |
Code changes from version 4.7.0 to 4.7.5
- app/features/events.php +9 -2
- app/features/fes/form.php +2 -1
- app/features/fes/list.php +4 -4
- app/features/mec.php +0 -45
- app/features/mec/single.php +2 -2
- app/features/organizers.php +3 -3
- app/features/profile/profile.php +69 -1
- app/features/search.php +1 -0
- app/features/speakers.php +2 -2
- app/libraries/book.php +2 -1
- app/libraries/factory.php +5 -0
- app/libraries/main.php +30 -2
- app/libraries/skins.php +3 -3
- app/modules/booking/steps/form.php +5 -5
- app/skins/grid/render.php +16 -16
- app/skins/list/render.php +2 -1
- app/skins/single.php +2 -2
- assets/css/backend.css +10 -0
- assets/css/backend.min.css +2 -2
- assets/css/frontend.css +276 -34
- assets/css/frontend.min.css +1 -1
- assets/js/frontend.js +6 -1
- assets/js/jquery.nice-select.min.js +3 -3
- assets/packages/featherlight/featherlight.css +164 -0
- assets/packages/featherlight/featherlight.js +667 -0
- changelog.txt +25 -2
- languages/mec-de_DE.mo +0 -0
- languages/mec-de_DE.po +0 -7870
- languages/mec-en_US.mo +0 -0
- languages/mec-en_US.po +0 -323
app/features/events.php
CHANGED
@@ -711,7 +711,7 @@ class MEC_feature_events extends MEC_base
|
|
711 |
}
|
712 |
?>
|
713 |
type="checkbox" name="mec[date][repeat][status]" id="mec_repeat" value="1"/><label
|
714 |
-
for="mec_repeat"><?php _e('Event Repeating', 'modern-events-calendar-lite'); ?></label>
|
715 |
</div>
|
716 |
<div class="mec-form-repeating-event-row">
|
717 |
<div class="mec-form-row">
|
@@ -1175,7 +1175,7 @@ class MEC_feature_events extends MEC_base
|
|
1175 |
$not_in_days = trim($not_in_days_str) ? explode(',', $not_in_days_str) : array();
|
1176 |
?>
|
1177 |
<div class="mec-meta-box-fields mec-event-tab-content" id="mec-exceptional-days">
|
1178 |
-
<h4><?php _e('Exceptional Days', 'modern-events-calendar-lite'); ?></h4>
|
1179 |
<div id="mec_meta_box_exceptions_form">
|
1180 |
|
1181 |
<div id="mec_exceptions_not_in_days_container">
|
@@ -2886,6 +2886,13 @@ class MEC_feature_events extends MEC_base
|
|
2886 |
|
2887 |
$in_days = '';
|
2888 |
if (count($in_days_arr)) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2889 |
foreach ($in_days_arr as $key => $in_day_arr) {
|
2890 |
if (is_numeric($key)) {
|
2891 |
$in_days .= $in_day_arr . ',';
|
711 |
}
|
712 |
?>
|
713 |
type="checkbox" name="mec[date][repeat][status]" id="mec_repeat" value="1"/><label
|
714 |
+
for="mec_repeat"><?php _e('Event Repeating (Recurring events)', 'modern-events-calendar-lite'); ?></label>
|
715 |
</div>
|
716 |
<div class="mec-form-repeating-event-row">
|
717 |
<div class="mec-form-row">
|
1175 |
$not_in_days = trim($not_in_days_str) ? explode(',', $not_in_days_str) : array();
|
1176 |
?>
|
1177 |
<div class="mec-meta-box-fields mec-event-tab-content" id="mec-exceptional-days">
|
1178 |
+
<h4><?php _e('Exceptional Days (Exclude Dates)', 'modern-events-calendar-lite'); ?></h4>
|
1179 |
<div id="mec_meta_box_exceptions_form">
|
1180 |
|
1181 |
<div id="mec_exceptions_not_in_days_container">
|
2886 |
|
2887 |
$in_days = '';
|
2888 |
if (count($in_days_arr)) {
|
2889 |
+
if(isset($in_days_arr[':i:'])) unset($in_days_arr[':i:']);
|
2890 |
+
usort($in_days_arr, function($a, $b)
|
2891 |
+
{
|
2892 |
+
return strtotime(explode(':', $a)[0]) - strtotime(explode(':', $b)[0]);
|
2893 |
+
});
|
2894 |
+
|
2895 |
+
if(!isset($in_days_arr[':i:'])) $in_days_arr[':i:'] = ':val:';
|
2896 |
foreach ($in_days_arr as $key => $in_day_arr) {
|
2897 |
if (is_numeric($key)) {
|
2898 |
$in_days .= $in_day_arr . ',';
|
app/features/fes/form.php
CHANGED
@@ -156,7 +156,8 @@ $this->factory->params('footer', $javascript);
|
|
156 |
<div class="mec-fes-form">
|
157 |
<?php if(is_user_logged_in()): ?>
|
158 |
<div class="mec-fes-form-top-actions">
|
159 |
-
|
|
|
160 |
<?php $status = $this->main->get_event_label_status(get_post_status($post_id)); ?>
|
161 |
<?php if(trim($status['label']) != "Empty"): ?>
|
162 |
<span class="post-status <?php echo $status['status_class']; ?>"><?php echo $status['label']; ?></span>
|
156 |
<div class="mec-fes-form">
|
157 |
<?php if(is_user_logged_in()): ?>
|
158 |
<div class="mec-fes-form-top-actions">
|
159 |
+
<?php do_action('mec_fes_form_top_actions'); ?>
|
160 |
+
<a class="mec-fes-form-back-to" href="<?php echo $this->link_list_events(); ?>"><?php echo __('Go back to events list', 'modern-events-calendar-lite'); ?></a>
|
161 |
<?php $status = $this->main->get_event_label_status(get_post_status($post_id)); ?>
|
162 |
<?php if(trim($status['label']) != "Empty"): ?>
|
163 |
<span class="post-status <?php echo $status['status_class']; ?>"><?php echo $status['label']; ?></span>
|
app/features/fes/list.php
CHANGED
@@ -77,11 +77,11 @@ $this->factory->params('footer', $javascript);
|
|
77 |
$event_status = get_post_status(get_the_ID());
|
78 |
if(isset($event_status) and strtolower($event_status) == 'publish'):
|
79 |
?>
|
80 |
-
<span class="mec-fes-event-export"><a href="#mec-fes-export-wrapper-<?php echo get_the_ID(); ?>" data-lity></a></span>
|
81 |
<?php endif; ?>
|
82 |
-
<span class="mec-fes-event-view"><a href="<?php the_permalink(); ?>"></a></span>
|
83 |
<?php if(current_user_can('delete_post', get_the_ID())): ?>
|
84 |
-
<span class="mec-fes-event-remove" data-confirmed="0" data-id="<?php echo get_the_ID(); ?>"></span>
|
85 |
<?php endif; ?>
|
86 |
<span class="mec-fes-event-view mec-event-status <?php echo $status['status_class']; ?>"><?php echo $status['label']; ?></span>
|
87 |
<div class="mec-fes-export-wrapper mec-modal-wrap lity-hide" id="mec-fes-export-wrapper-<?php echo get_the_ID(); ?>" data-event-id="<?php echo get_the_ID(); ?>">
|
@@ -159,7 +159,7 @@ $this->factory->params('footer', $javascript);
|
|
159 |
</ul>
|
160 |
<?php else: ?>
|
161 |
<div class="date-messgae">
|
162 |
-
<?php _e('Event is not repeating.
|
163 |
</div>
|
164 |
<?php endif; ?>
|
165 |
<input type="hidden" class="mec-certain-user-booking-ids" value="<?php echo $ids_text_field; ?>">
|
77 |
$event_status = get_post_status(get_the_ID());
|
78 |
if(isset($event_status) and strtolower($event_status) == 'publish'):
|
79 |
?>
|
80 |
+
<span class="mec-fes-event-export"><a href="#mec-fes-export-wrapper-<?php echo get_the_ID(); ?>" data-lity><div class="wn-p-t-right"><div class="wn-p-t-text-content"><?php echo esc_html__('Download Attendees', 'modern-events-calendar-lite'); ?></div><i></i></div></a></span>
|
81 |
<?php endif; ?>
|
82 |
+
<span class="mec-fes-event-view"><a href="<?php the_permalink(); ?>"><div class="wn-p-t-right"><div class="wn-p-t-text-content"><?php echo esc_html__('View Event', 'modern-events-calendar-lite'); ?></div><i></i></div></a></span>
|
83 |
<?php if(current_user_can('delete_post', get_the_ID())): ?>
|
84 |
+
<span class="mec-fes-event-remove" data-confirmed="0" data-id="<?php echo get_the_ID(); ?>"><div class="wn-p-t-right"><div class="wn-p-t-text-content"><?php echo esc_html__('Remove Event', 'modern-events-calendar-lite'); ?></div><i></i></div></span>
|
85 |
<?php endif; ?>
|
86 |
<span class="mec-fes-event-view mec-event-status <?php echo $status['status_class']; ?>"><?php echo $status['label']; ?></span>
|
87 |
<div class="mec-fes-export-wrapper mec-modal-wrap lity-hide" id="mec-fes-export-wrapper-<?php echo get_the_ID(); ?>" data-event-id="<?php echo get_the_ID(); ?>">
|
159 |
</ul>
|
160 |
<?php else: ?>
|
161 |
<div class="date-messgae">
|
162 |
+
<?php _e('Event is not repeating. No dates exist for this event!', 'modern-events-calendar-lite'); ?>
|
163 |
</div>
|
164 |
<?php endif; ?>
|
165 |
<input type="hidden" class="mec-certain-user-booking-ids" value="<?php echo $ids_text_field; ?>">
|
app/features/mec.php
CHANGED
@@ -605,9 +605,6 @@ class MEC_feature_mec extends MEC_base
|
|
605 |
|
606 |
if($tab == 'MEC-customcss') $this->styles();
|
607 |
elseif($tab == 'MEC-ie') $this->import_export();
|
608 |
-
//elseif($tab == 'MEC-support') $this->support();
|
609 |
-
// elseif($tab == 'MEC-reg-form') $this->regform();
|
610 |
-
// elseif($tab == 'MEC-gateways') $this->gateways();
|
611 |
elseif($tab == 'MEC-notifications') $this->notifications();
|
612 |
elseif($tab == 'MEC-messages') $this->messages();
|
613 |
elseif($tab == 'MEC-styling') $this->styling();
|
@@ -715,48 +712,6 @@ class MEC_feature_mec extends MEC_base
|
|
715 |
echo $output = ob_get_clean();
|
716 |
}
|
717 |
|
718 |
-
/**
|
719 |
-
* Show content of support tab
|
720 |
-
* @author Webnus <info@webnus.biz>
|
721 |
-
* @return void
|
722 |
-
*/
|
723 |
-
// public function support()
|
724 |
-
// {
|
725 |
-
// $path = MEC::import('app.features.mec.support', true, true);
|
726 |
-
|
727 |
-
// ob_start();
|
728 |
-
// include $path;
|
729 |
-
// echo $output = ob_get_clean();
|
730 |
-
// }
|
731 |
-
|
732 |
-
/**
|
733 |
-
* Show content of registration form tab
|
734 |
-
* @author Webnus <info@webnus.biz>
|
735 |
-
* @return void
|
736 |
-
*/
|
737 |
-
// public function regform()
|
738 |
-
// {
|
739 |
-
// $path = MEC::import('app.features.mec.regform', true, true);
|
740 |
-
|
741 |
-
// ob_start();
|
742 |
-
// include $path;
|
743 |
-
// echo $output = ob_get_clean();
|
744 |
-
// }
|
745 |
-
|
746 |
-
/**
|
747 |
-
* Show content of gateways tab
|
748 |
-
* @author Webnus <info@webnus.biz>
|
749 |
-
* @return void
|
750 |
-
*/
|
751 |
-
// public function gateways()
|
752 |
-
// {
|
753 |
-
// $path = MEC::import('app.features.mec.gateways', true, true);
|
754 |
-
|
755 |
-
// ob_start();
|
756 |
-
// include $path;
|
757 |
-
// echo $output = ob_get_clean();
|
758 |
-
// }
|
759 |
-
|
760 |
/**
|
761 |
* Show content of notifications tab
|
762 |
* @author Webnus <info@webnus.biz>
|
605 |
|
606 |
if($tab == 'MEC-customcss') $this->styles();
|
607 |
elseif($tab == 'MEC-ie') $this->import_export();
|
|
|
|
|
|
|
608 |
elseif($tab == 'MEC-notifications') $this->notifications();
|
609 |
elseif($tab == 'MEC-messages') $this->messages();
|
610 |
elseif($tab == 'MEC-styling') $this->styling();
|
712 |
echo $output = ob_get_clean();
|
713 |
}
|
714 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
715 |
/**
|
716 |
* Show content of notifications tab
|
717 |
* @author Webnus <info@webnus.biz>
|
app/features/mec/single.php
CHANGED
@@ -151,14 +151,14 @@ $pages = get_pages();
|
|
151 |
</div>
|
152 |
|
153 |
<div id="exceptional_option" class="mec-options-fields">
|
154 |
-
<h4 class="mec-form-subtitle"><?php _e('Exceptional days', 'modern-events-calendar-lite'); ?></h4>
|
155 |
<div class="mec-form-row">
|
156 |
<label>
|
157 |
<input type="hidden" name="mec[settings][exceptional_days]" value="0" />
|
158 |
<input value="1" type="checkbox" name="mec[settings][exceptional_days]" <?php if(isset($settings['exceptional_days']) and $settings['exceptional_days']) echo 'checked="checked"'; ?> /> <?php _e('Show exceptional days option on Add/Edit events page', 'modern-events-calendar-lite'); ?>
|
159 |
<span class="mec-tooltip">
|
160 |
<div class="box">
|
161 |
-
<h5 class="title"><?php _e('Exceptional days', 'modern-events-calendar-lite'); ?></h5>
|
162 |
<div class="content"><p><?php esc_attr_e("Using this option you can exclude certain days from event occurrence dates.", 'modern-events-calendar-lite'); ?><a href="https://webnus.net/dox/modern-events-calendar/exceptional-days/" target="_blank"><?php _e('Read More', 'modern-events-calendar-lite'); ?></a></p></div>
|
163 |
</div>
|
164 |
<i title="" class="dashicons-before dashicons-editor-help"></i>
|
151 |
</div>
|
152 |
|
153 |
<div id="exceptional_option" class="mec-options-fields">
|
154 |
+
<h4 class="mec-form-subtitle"><?php _e('Exceptional days (Exclude Dates)', 'modern-events-calendar-lite'); ?></h4>
|
155 |
<div class="mec-form-row">
|
156 |
<label>
|
157 |
<input type="hidden" name="mec[settings][exceptional_days]" value="0" />
|
158 |
<input value="1" type="checkbox" name="mec[settings][exceptional_days]" <?php if(isset($settings['exceptional_days']) and $settings['exceptional_days']) echo 'checked="checked"'; ?> /> <?php _e('Show exceptional days option on Add/Edit events page', 'modern-events-calendar-lite'); ?>
|
159 |
<span class="mec-tooltip">
|
160 |
<div class="box">
|
161 |
+
<h5 class="title"><?php _e('Exceptional days (Exclude Dates)', 'modern-events-calendar-lite'); ?></h5>
|
162 |
<div class="content"><p><?php esc_attr_e("Using this option you can exclude certain days from event occurrence dates.", 'modern-events-calendar-lite'); ?><a href="https://webnus.net/dox/modern-events-calendar/exceptional-days/" target="_blank"><?php _e('Read More', 'modern-events-calendar-lite'); ?></a></p></div>
|
163 |
</div>
|
164 |
<i title="" class="dashicons-before dashicons-editor-help"></i>
|
app/features/organizers.php
CHANGED
@@ -205,8 +205,8 @@ class MEC_feature_organizers extends MEC_base
|
|
205 |
$columns['contact'] = __('Contact info', 'modern-events-calendar-lite');
|
206 |
$columns['posts'] = __('Count', 'modern-events-calendar-lite');
|
207 |
$columns['slug'] = __('Slug', 'modern-events-calendar-lite');
|
208 |
-
|
209 |
-
return $columns;
|
210 |
}
|
211 |
|
212 |
/**
|
@@ -238,7 +238,7 @@ class MEC_feature_organizers extends MEC_base
|
|
238 |
break;
|
239 |
}
|
240 |
|
241 |
-
return $content;
|
242 |
}
|
243 |
|
244 |
/**
|
205 |
$columns['contact'] = __('Contact info', 'modern-events-calendar-lite');
|
206 |
$columns['posts'] = __('Count', 'modern-events-calendar-lite');
|
207 |
$columns['slug'] = __('Slug', 'modern-events-calendar-lite');
|
208 |
+
|
209 |
+
return apply_filters('organizer_filter_column', $columns);
|
210 |
}
|
211 |
|
212 |
/**
|
238 |
break;
|
239 |
}
|
240 |
|
241 |
+
return apply_filters('organizer_filter_column_content', $content , $column_name, $term_id);
|
242 |
}
|
243 |
|
244 |
/**
|
app/features/profile/profile.php
CHANGED
@@ -2,6 +2,28 @@
|
|
2 |
/** no direct access **/
|
3 |
defined('MECEXEC') or die();
|
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
// MEC Render
|
6 |
$render = $this->getRender();
|
7 |
|
@@ -39,6 +61,12 @@ $id = 1;
|
|
39 |
<td>
|
40 |
<?php esc_html_e('Invoice' , 'modern-events-calendar-lite'); ?>
|
41 |
</td>
|
|
|
|
|
|
|
|
|
|
|
|
|
42 |
</tr>
|
43 |
<?php while($query->have_posts()): $query->the_post(); $ID = get_the_ID(); ?>
|
44 |
<?php
|
@@ -59,7 +87,7 @@ $id = 1;
|
|
59 |
<span class="mec-event-id"><?php echo $id; ?></span>
|
60 |
</td>
|
61 |
<td>
|
62 |
-
<
|
63 |
</td>
|
64 |
<td>
|
65 |
<span class="mec-event-date">
|
@@ -79,6 +107,46 @@ $id = 1;
|
|
79 |
<td>
|
80 |
<span class="mec-profile-bookings-view-invoice"><a target="_blank" href="<?php echo $this->book->get_invoice_link($transaction_id); ?>"><i class="mec-sl-cloud-download"></i></a></span>
|
81 |
</td>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
82 |
</tr>
|
83 |
<div id="mec_profile_booking_<?php echo $ID; ?>" class="mec-booking-attendees lity-hide">
|
84 |
<div class="mec-booking-attendees-wrapper">
|
2 |
/** no direct access **/
|
3 |
defined('MECEXEC') or die();
|
4 |
|
5 |
+
// MEC Cancel
|
6 |
+
if(isset($_GET['cancel']) and trim($_GET['cancel']))
|
7 |
+
{
|
8 |
+
$cancellation_key = trim($_GET['cancel']);
|
9 |
+
|
10 |
+
$db = $this->getDB();
|
11 |
+
$book_id = $db->select("SELECT `post_id` FROM `#__postmeta` WHERE `meta_key`='mec_cancellation_key' AND `meta_value`='$cancellation_key'", 'loadResult');
|
12 |
+
|
13 |
+
if($book_id)
|
14 |
+
{
|
15 |
+
$status = get_post_meta($book_id, 'mec_verified', true);
|
16 |
+
if($status == '-1')
|
17 |
+
{
|
18 |
+
echo '<p class="mec-error">'.__('Your booking already canceled!', 'modern-events-calendar-lite').'</p>';
|
19 |
+
}
|
20 |
+
else
|
21 |
+
{
|
22 |
+
$this->book->cancel($book_id);
|
23 |
+
}
|
24 |
+
}
|
25 |
+
}
|
26 |
+
|
27 |
// MEC Render
|
28 |
$render = $this->getRender();
|
29 |
|
61 |
<td>
|
62 |
<?php esc_html_e('Invoice' , 'modern-events-calendar-lite'); ?>
|
63 |
</td>
|
64 |
+
<td>
|
65 |
+
<?php esc_html_e('Map' , 'modern-events-calendar-lite'); ?>
|
66 |
+
</td>
|
67 |
+
<td>
|
68 |
+
<?php esc_html_e('Cancel' , 'modern-events-calendar-lite'); ?>
|
69 |
+
</td>
|
70 |
</tr>
|
71 |
<?php while($query->have_posts()): $query->the_post(); $ID = get_the_ID(); ?>
|
72 |
<?php
|
87 |
<span class="mec-event-id"><?php echo $id; ?></span>
|
88 |
</td>
|
89 |
<td>
|
90 |
+
<a class="mec-event-title" href="<?php echo get_the_permalink($event->ID); ?>"><?php echo $event->title; ?></a>
|
91 |
</td>
|
92 |
<td>
|
93 |
<span class="mec-event-date">
|
107 |
<td>
|
108 |
<span class="mec-profile-bookings-view-invoice"><a target="_blank" href="<?php echo $this->book->get_invoice_link($transaction_id); ?>"><i class="mec-sl-cloud-download"></i></a></span>
|
109 |
</td>
|
110 |
+
<td>
|
111 |
+
<?php
|
112 |
+
$location_id = get_post_meta($event->ID, 'mec_location_id', true);
|
113 |
+
$location_latitude = isset($event->locations[$location_id]['latitude']) ? $event->locations[$location_id]['latitude'] : NULL;
|
114 |
+
$location_longitude = isset($event->locations[$location_id]['longitude']) ? $event->locations[$location_id]['longitude'] : NULL;
|
115 |
+
?>
|
116 |
+
<span class="mec-profile-bookings-view-google-map">
|
117 |
+
<?php
|
118 |
+
if($location_latitude and $location_longitude):
|
119 |
+
?>
|
120 |
+
<a target="_blank" href="<?php echo "https://www.google.com/maps?q={$location_latitude},{$location_longitude}"; ?>"><i class="mec-sl-map"></i></a>
|
121 |
+
<?php
|
122 |
+
else:
|
123 |
+
?>
|
124 |
+
<i class="mec-sl-question mec-profile-no-location"></i>
|
125 |
+
<?php
|
126 |
+
endif;
|
127 |
+
?>
|
128 |
+
</span>
|
129 |
+
</td>
|
130 |
+
<td>
|
131 |
+
<?php
|
132 |
+
$mec_verified = get_post_meta($ID, 'mec_verified', true);
|
133 |
+
?>
|
134 |
+
<span class="mec-profile-bookings-cancelation">
|
135 |
+
<?php
|
136 |
+
if(intval($mec_verified) != -1):
|
137 |
+
$current_url = $this->main->get_full_url();
|
138 |
+
$cancellation_url = $this->main->add_query_string($current_url, 'cancel', get_post_meta($ID, 'mec_cancellation_key', true));
|
139 |
+
?>
|
140 |
+
<a href="<?php echo $cancellation_url; ?>"><i class="mec-fa-calendar-times-o"></i></a>
|
141 |
+
<?php
|
142 |
+
else:
|
143 |
+
?>
|
144 |
+
<i class="mec-sl-close mec-profile-cancel-booking"></i>
|
145 |
+
<?php
|
146 |
+
endif;
|
147 |
+
?>
|
148 |
+
</span>
|
149 |
+
</td>
|
150 |
</tr>
|
151 |
<div id="mec_profile_booking_<?php echo $ID; ?>" class="mec-booking-attendees lity-hide">
|
152 |
<div class="mec-booking-attendees-wrapper">
|
app/features/search.php
CHANGED
@@ -254,6 +254,7 @@ class MEC_feature_search extends MEC_base
|
|
254 |
|
255 |
// wordpress event list search
|
256 |
$post_types = array('post', 'mec-events');
|
|
|
257 |
$current_screen = isset(get_current_screen()->id) ? get_current_screen()->id : false;
|
258 |
if($current_screen and trim($current_screen) == 'edit-mec-events') $post_types = 'mec-events';
|
259 |
|
254 |
|
255 |
// wordpress event list search
|
256 |
$post_types = array('post', 'mec-events');
|
257 |
+
if ( !function_exists('get_current_screen')) require_once(ABSPATH . 'wp-admin/includes/screen.php');
|
258 |
$current_screen = isset(get_current_screen()->id) ? get_current_screen()->id : false;
|
259 |
if($current_screen and trim($current_screen) == 'edit-mec-events') $post_types = 'mec-events';
|
260 |
|
app/features/speakers.php
CHANGED
@@ -254,7 +254,7 @@ class MEC_feature_speakers extends MEC_base
|
|
254 |
$columns['tel'] = __('Tel', 'modern-events-calendar-lite');
|
255 |
$columns['posts'] = __('Count', 'modern-events-calendar-lite');
|
256 |
|
257 |
-
return $columns;
|
258 |
}
|
259 |
|
260 |
/**
|
@@ -290,7 +290,7 @@ class MEC_feature_speakers extends MEC_base
|
|
290 |
break;
|
291 |
}
|
292 |
|
293 |
-
return $content;
|
294 |
}
|
295 |
|
296 |
/**
|
254 |
$columns['tel'] = __('Tel', 'modern-events-calendar-lite');
|
255 |
$columns['posts'] = __('Count', 'modern-events-calendar-lite');
|
256 |
|
257 |
+
return apply_filters('speaker_filter_column', $columns);
|
258 |
}
|
259 |
|
260 |
/**
|
290 |
break;
|
291 |
}
|
292 |
|
293 |
+
return apply_filters('speaker_filter_column_content', $content , $column_name, $term_id);
|
294 |
}
|
295 |
|
296 |
/**
|
app/libraries/book.php
CHANGED
@@ -337,7 +337,8 @@ class MEC_book extends MEC_base
|
|
337 |
public function cancel($book_id)
|
338 |
{
|
339 |
update_post_meta($book_id, 'mec_verified', -1);
|
340 |
-
|
|
|
341 |
// Fires after canceling a booking to send notifications etc.
|
342 |
do_action('mec_booking_canceled', $book_id);
|
343 |
|
337 |
public function cancel($book_id)
|
338 |
{
|
339 |
update_post_meta($book_id, 'mec_verified', -1);
|
340 |
+
update_post_meta($book_id, 'mec_cancelled_date', date('Y-m-d H:i:s', current_time('timestamp', 0)));
|
341 |
+
|
342 |
// Fires after canceling a booking to send notifications etc.
|
343 |
do_action('mec_booking_canceled', $book_id);
|
344 |
|
app/libraries/factory.php
CHANGED
@@ -305,9 +305,13 @@ class MEC_factory extends MEC_base
|
|
305 |
wp_enqueue_script('jquery-ui-datepicker');
|
306 |
|
307 |
// Load Isotope
|
|
|
308 |
if(class_exists('ET_Builder_Element')) $this->main->load_isotope_assets();
|
|
|
|
|
309 |
|
310 |
wp_enqueue_script('mec-typekit-script', $this->main->asset('js/jquery.typewatch.js'));
|
|
|
311 |
|
312 |
// Include MEC frontend script files
|
313 |
wp_enqueue_script('mec-frontend-script', $this->main->asset('js/frontend.js'));
|
@@ -360,6 +364,7 @@ class MEC_factory extends MEC_base
|
|
360 |
wp_enqueue_style('mec-frontend-style', $this->main->asset('css/frontend.min.css'));
|
361 |
wp_enqueue_style('mec-tooltip-style', $this->main->asset('packages/tooltip/tooltip.css'));
|
362 |
wp_enqueue_style('mec-tooltip-shadow-style', $this->main->asset('packages/tooltip/tooltipster-sideTip-shadow.min.css'));
|
|
|
363 |
|
364 |
// Include "Right to Left" CSS file
|
365 |
if(is_rtl()) wp_enqueue_style('mec-frontend-rtl-style', $this->main->asset('css/mecrtl.min.css'));
|
305 |
wp_enqueue_script('jquery-ui-datepicker');
|
306 |
|
307 |
// Load Isotope
|
308 |
+
|
309 |
if(class_exists('ET_Builder_Element')) $this->main->load_isotope_assets();
|
310 |
+
include_once(ABSPATH.'wp-admin/includes/plugin.php');
|
311 |
+
if(is_plugin_active( 'elementor/elementor.php' ) && \Elementor\Plugin::$instance->preview->is_preview_mode()) $this->main->load_isotope_assets();
|
312 |
|
313 |
wp_enqueue_script('mec-typekit-script', $this->main->asset('js/jquery.typewatch.js'));
|
314 |
+
wp_enqueue_script('mec-featherlight-script', $this->main->asset('packages/featherlight/featherlight.js'));
|
315 |
|
316 |
// Include MEC frontend script files
|
317 |
wp_enqueue_script('mec-frontend-script', $this->main->asset('js/frontend.js'));
|
364 |
wp_enqueue_style('mec-frontend-style', $this->main->asset('css/frontend.min.css'));
|
365 |
wp_enqueue_style('mec-tooltip-style', $this->main->asset('packages/tooltip/tooltip.css'));
|
366 |
wp_enqueue_style('mec-tooltip-shadow-style', $this->main->asset('packages/tooltip/tooltipster-sideTip-shadow.min.css'));
|
367 |
+
wp_enqueue_style('mec-featherlight-style', $this->main->asset('packages/featherlight/featherlight.css'));
|
368 |
|
369 |
// Include "Right to Left" CSS file
|
370 |
if(is_rtl()) wp_enqueue_style('mec-frontend-rtl-style', $this->main->asset('css/mecrtl.min.css'));
|
app/libraries/main.php
CHANGED
@@ -1532,10 +1532,13 @@ class MEC_main extends MEC_base
|
|
1532 |
$occurrence = (isset($_GET['occurrence']) ? sanitize_text_field($_GET['occurrence']) : '');
|
1533 |
if(trim($occurrence) != '') $url = $this->add_qs_var('occurrence', $occurrence, $url);
|
1534 |
|
|
|
|
|
|
|
1535 |
$event->data->title = str_replace('&', '%26', $event->data->title);
|
1536 |
$event->data->title = str_replace('#038;', '', $event->data->title);
|
1537 |
|
1538 |
-
return '<li class="mec-event-social-icon"><a class="email" href="mailto:?subject='
|
1539 |
}
|
1540 |
|
1541 |
/**
|
@@ -3211,7 +3214,7 @@ class MEC_main extends MEC_base
|
|
3211 |
else
|
3212 |
{
|
3213 |
$time_format = 'Y-m-d';
|
3214 |
-
$render_date =
|
3215 |
|
3216 |
if(!trim($event->data->meta['mec_repeat_status']))
|
3217 |
{
|
@@ -5432,4 +5435,29 @@ class MEC_main extends MEC_base
|
|
5432 |
|
5433 |
return (isset($is_soldout) and current($is_soldout) === 0) ? true : false;
|
5434 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5435 |
}
|
1532 |
$occurrence = (isset($_GET['occurrence']) ? sanitize_text_field($_GET['occurrence']) : '');
|
1533 |
if(trim($occurrence) != '') $url = $this->add_qs_var('occurrence', $occurrence, $url);
|
1534 |
|
1535 |
+
$event->data->title = str_replace('–', '-', $event->data->title);
|
1536 |
+
$event->data->title = str_replace('”', '’’', $event->data->title);
|
1537 |
+
$event->data->title = str_replace('’', "’", $event->data->title);
|
1538 |
$event->data->title = str_replace('&', '%26', $event->data->title);
|
1539 |
$event->data->title = str_replace('#038;', '', $event->data->title);
|
1540 |
|
1541 |
+
return '<li class="mec-event-social-icon"><a class="email" href="mailto:?subject='.wp_specialchars_decode($event->data->title).'&body='.rawurlencode($url).'" title="'.__('Email', 'modern-events-calendar-lite').'"><i class="mec-fa-envelope"></i></a></li>';
|
1542 |
}
|
1543 |
|
1544 |
/**
|
3214 |
else
|
3215 |
{
|
3216 |
$time_format = 'Y-m-d';
|
3217 |
+
$render_date = isset($next_date['start']) ? trim($next_date['start']['date']) : false;
|
3218 |
|
3219 |
if(!trim($event->data->meta['mec_repeat_status']))
|
3220 |
{
|
5435 |
|
5436 |
return (isset($is_soldout) and current($is_soldout) === 0) ? true : false;
|
5437 |
}
|
5438 |
+
|
5439 |
+
/**
|
5440 |
+
* Add Query String To URL
|
5441 |
+
* @param string $url
|
5442 |
+
* @param array $key
|
5443 |
+
* @param string $value
|
5444 |
+
* @resourse wp-mix.com
|
5445 |
+
* @return string
|
5446 |
+
*/
|
5447 |
+
function add_query_string($url, $key, $value)
|
5448 |
+
{
|
5449 |
+
$url = preg_replace('/([?&])'. $key .'=.*?(&|$)/i', '$1$2$4', $url);
|
5450 |
+
|
5451 |
+
if(substr($url, strlen($url) - 1) == "?" or substr($url, strlen($url) - 1) == "&")
|
5452 |
+
$url = substr($url, 0, -1);
|
5453 |
+
|
5454 |
+
if(strpos($url, '?') === false)
|
5455 |
+
{
|
5456 |
+
return ($url .'?'. $key .'='. $value);
|
5457 |
+
}
|
5458 |
+
else
|
5459 |
+
{
|
5460 |
+
return ($url .'&'. $key .'='. $value);
|
5461 |
+
}
|
5462 |
+
}
|
5463 |
}
|
app/libraries/skins.php
CHANGED
@@ -478,7 +478,7 @@ class MEC_skins extends MEC_base
|
|
478 |
}
|
479 |
elseif($this->show_ongoing_events)
|
480 |
{
|
481 |
-
$now =
|
482 |
$where_OR = "(`tstart`<='".$now."' AND `tend`>='".$now."')";
|
483 |
}
|
484 |
|
@@ -495,7 +495,7 @@ class MEC_skins extends MEC_base
|
|
495 |
|
496 |
// Today and Now
|
497 |
$today = current_time('Y-m-d');
|
498 |
-
$now =
|
499 |
|
500 |
$dates = array();
|
501 |
foreach($mec_dates as $mec_date)
|
@@ -751,7 +751,7 @@ class MEC_skins extends MEC_base
|
|
751 |
if(in_array($field,$fields_array) and $first_row == 'not-started')
|
752 |
{
|
753 |
$first_row = 'started';
|
754 |
-
if ( $this->sf_options['category']['type'] != 'dropdown' and $this->sf_options['location']['type'] != 'dropdown' and $this->sf_options['organizer']['type'] != 'dropdown' and $this->sf_options['speaker']['type'] != 'dropdown' and $this->sf_options['tag']['type'] != 'dropdown' and $this->sf_options['label']['type'] != 'dropdown' )
|
755 |
{
|
756 |
$display_style = 'style="display: none;"';
|
757 |
}
|
478 |
}
|
479 |
elseif($this->show_ongoing_events)
|
480 |
{
|
481 |
+
$now = current_time('timestamp', 0);
|
482 |
$where_OR = "(`tstart`<='".$now."' AND `tend`>='".$now."')";
|
483 |
}
|
484 |
|
495 |
|
496 |
// Today and Now
|
497 |
$today = current_time('Y-m-d');
|
498 |
+
$now = current_time('timestamp', 0);
|
499 |
|
500 |
$dates = array();
|
501 |
foreach($mec_dates as $mec_date)
|
751 |
if(in_array($field,$fields_array) and $first_row == 'not-started')
|
752 |
{
|
753 |
$first_row = 'started';
|
754 |
+
if ( $this->sf_options['category']['type'] != 'dropdown' and $this->sf_options['location']['type'] != 'dropdown' and $this->sf_options['organizer']['type'] != 'dropdown' and (isset($this->sf_options['speaker']['type']) && $this->sf_options['speaker']['type'] != 'dropdown') and (isset($this->sf_options['tag']['type']) && $this->sf_options['tag']['type'] != 'dropdown') and $this->sf_options['label']['type'] != 'dropdown' )
|
755 |
{
|
756 |
$display_style = 'style="display: none;"';
|
757 |
}
|
app/modules/booking/steps/form.php
CHANGED
@@ -49,7 +49,7 @@ if(!$mec_email)
|
|
49 |
?>
|
50 |
|
51 |
<form id="mec_book_form<?php echo $uniqueid; ?>" class="mec-booking-form-container row" novalidate="novalidate" enctype="multipart/form-data" method="post">
|
52 |
-
<h4><?php
|
53 |
<ul class="mec-book-tickets-container">
|
54 |
|
55 |
<?php $j = 0; foreach($tickets as $ticket_id=>$count): if(!$count) continue; $ticket = $event_tickets[$ticket_id]; for($i = 1; $i <= $count; $i++): $j++; ?>
|
@@ -64,7 +64,7 @@ if(!$mec_email)
|
|
64 |
<!-- Custom fields -->
|
65 |
<?php if(count($reg_fields)): foreach($reg_fields as $reg_field_id=>$reg_field): if(!is_numeric($reg_field_id) or !isset($reg_field['type'])) continue; ?>
|
66 |
|
67 |
-
|
68 |
<?php $reg_field_name = strtolower( str_replace([' ',',',':','"',"'"], '_', $reg_field['label']) ); ?>
|
69 |
|
70 |
<div class="mec-book-reg-field-<?php echo $reg_field['type']; ?> <?php echo ((isset($reg_field['mandatory']) and $reg_field['mandatory']) ? 'mec-reg-mandatory' : ''); ?><?php
|
@@ -72,7 +72,7 @@ if(!$mec_email)
|
|
72 |
echo ' col-md-6'; } else { echo ' col-md-12'; }
|
73 |
?>" data-ticket-id="<?php echo $j; ?>" data-field-id="<?php echo $reg_field_id; ?>">
|
74 |
<?php if(isset($reg_field['label']) and $reg_field['type'] != 'agreement' && $reg_field['type'] != 'name' && $reg_field['type'] != 'mec_email' ): ?><label for="mec_book_reg_field_reg<?php echo $j.'_'.$reg_field_id; ?>"><?php _e($reg_field['label'], 'modern-events-calendar-lite'); ?><?php echo ((isset($reg_field['mandatory']) and $reg_field['mandatory']) ? '<span class="wbmec-mandatory">*</span>' : ''); ?></label><?php endif; ?>
|
75 |
-
|
76 |
<?php /** Name **/ if($reg_field['type'] == 'name'): ?>
|
77 |
<?php $reg_field['label'] = ($reg_field['label']) ? $reg_field['label'] : 'Name'; ?>
|
78 |
<label for="mec_book_reg_field_name<?php echo $reg_field_id; ?>"><?php _e($reg_field['label'], 'modern-events-calendar-lite'); ?><span class="wbmec-mandatory">*</span></label>
|
@@ -88,13 +88,13 @@ if(!$mec_email)
|
|
88 |
|
89 |
<?php /** Date **/ elseif($reg_field['type'] == 'date'): ?>
|
90 |
<input id="mec_book_reg_field_reg<?php echo $j.'_'.$reg_field_id; ?>" type="date" name="book[tickets][<?php echo $j; ?>][reg][<?php echo $reg_field_id; ?>]" value="" placeholder="<?php _e($reg_field['label'], 'modern-events-calendar-lite'); ?>" <?php if(isset($reg_field['mandatory']) and $reg_field['mandatory']) echo 'required'; ?> min="1970-01-01" max="2099-12-31" />
|
91 |
-
|
92 |
<?php /** File **/ elseif($reg_field['type'] == 'file'): ?>
|
93 |
<input id="mec_book_reg_field_reg<?php echo $j.'_'.$reg_field_id; ?>" type="file" name="book[tickets][<?php echo $j; ?>][reg][<?php echo $reg_field_id; ?>]" value="" placeholder="<?php _e($reg_field['label'], 'modern-events-calendar-lite'); ?>" <?php if(isset($reg_field['mandatory']) and $reg_field['mandatory']) echo 'required'; ?> />
|
94 |
|
95 |
<?php /** Email **/ elseif($reg_field['type'] == 'email'): ?>
|
96 |
<input id="mec_book_reg_field_reg<?php echo $j.'_'.$reg_field_id; ?>" type="email" name="book[tickets][<?php echo $j; ?>][reg][<?php echo $reg_field_id; ?>]" value="" placeholder="<?php _e($reg_field['label'], 'modern-events-calendar-lite'); ?>" <?php if(isset($reg_field['mandatory']) and $reg_field['mandatory']) echo 'required'; ?> />
|
97 |
-
|
98 |
<?php /** Tel **/ elseif($reg_field['type'] == 'tel'): ?>
|
99 |
<input id="mec_book_reg_field_reg<?php echo $j.'_'.$reg_field_id; ?>" oninput="this.value=this.value.replace(/(?![0-9])./gmi,'')" type="tel" name="book[tickets][<?php echo $j; ?>][reg][<?php echo $reg_field_id; ?>]" value="" placeholder="<?php _e($reg_field['label'], 'modern-events-calendar-lite'); ?>" <?php if(isset($reg_field['mandatory']) and $reg_field['mandatory']) echo 'required'; ?> />
|
100 |
|
49 |
?>
|
50 |
|
51 |
<form id="mec_book_form<?php echo $uniqueid; ?>" class="mec-booking-form-container row" novalidate="novalidate" enctype="multipart/form-data" method="post">
|
52 |
+
<h4><?php echo apply_filters('mec-attendees-title', __('Attendees Form', 'modern-events-calendar-lite')) ?></h4>
|
53 |
<ul class="mec-book-tickets-container">
|
54 |
|
55 |
<?php $j = 0; foreach($tickets as $ticket_id=>$count): if(!$count) continue; $ticket = $event_tickets[$ticket_id]; for($i = 1; $i <= $count; $i++): $j++; ?>
|
64 |
<!-- Custom fields -->
|
65 |
<?php if(count($reg_fields)): foreach($reg_fields as $reg_field_id=>$reg_field): if(!is_numeric($reg_field_id) or !isset($reg_field['type'])) continue; ?>
|
66 |
|
67 |
+
|
68 |
<?php $reg_field_name = strtolower( str_replace([' ',',',':','"',"'"], '_', $reg_field['label']) ); ?>
|
69 |
|
70 |
<div class="mec-book-reg-field-<?php echo $reg_field['type']; ?> <?php echo ((isset($reg_field['mandatory']) and $reg_field['mandatory']) ? 'mec-reg-mandatory' : ''); ?><?php
|
72 |
echo ' col-md-6'; } else { echo ' col-md-12'; }
|
73 |
?>" data-ticket-id="<?php echo $j; ?>" data-field-id="<?php echo $reg_field_id; ?>">
|
74 |
<?php if(isset($reg_field['label']) and $reg_field['type'] != 'agreement' && $reg_field['type'] != 'name' && $reg_field['type'] != 'mec_email' ): ?><label for="mec_book_reg_field_reg<?php echo $j.'_'.$reg_field_id; ?>"><?php _e($reg_field['label'], 'modern-events-calendar-lite'); ?><?php echo ((isset($reg_field['mandatory']) and $reg_field['mandatory']) ? '<span class="wbmec-mandatory">*</span>' : ''); ?></label><?php endif; ?>
|
75 |
+
|
76 |
<?php /** Name **/ if($reg_field['type'] == 'name'): ?>
|
77 |
<?php $reg_field['label'] = ($reg_field['label']) ? $reg_field['label'] : 'Name'; ?>
|
78 |
<label for="mec_book_reg_field_name<?php echo $reg_field_id; ?>"><?php _e($reg_field['label'], 'modern-events-calendar-lite'); ?><span class="wbmec-mandatory">*</span></label>
|
88 |
|
89 |
<?php /** Date **/ elseif($reg_field['type'] == 'date'): ?>
|
90 |
<input id="mec_book_reg_field_reg<?php echo $j.'_'.$reg_field_id; ?>" type="date" name="book[tickets][<?php echo $j; ?>][reg][<?php echo $reg_field_id; ?>]" value="" placeholder="<?php _e($reg_field['label'], 'modern-events-calendar-lite'); ?>" <?php if(isset($reg_field['mandatory']) and $reg_field['mandatory']) echo 'required'; ?> min="1970-01-01" max="2099-12-31" />
|
91 |
+
|
92 |
<?php /** File **/ elseif($reg_field['type'] == 'file'): ?>
|
93 |
<input id="mec_book_reg_field_reg<?php echo $j.'_'.$reg_field_id; ?>" type="file" name="book[tickets][<?php echo $j; ?>][reg][<?php echo $reg_field_id; ?>]" value="" placeholder="<?php _e($reg_field['label'], 'modern-events-calendar-lite'); ?>" <?php if(isset($reg_field['mandatory']) and $reg_field['mandatory']) echo 'required'; ?> />
|
94 |
|
95 |
<?php /** Email **/ elseif($reg_field['type'] == 'email'): ?>
|
96 |
<input id="mec_book_reg_field_reg<?php echo $j.'_'.$reg_field_id; ?>" type="email" name="book[tickets][<?php echo $j; ?>][reg][<?php echo $reg_field_id; ?>]" value="" placeholder="<?php _e($reg_field['label'], 'modern-events-calendar-lite'); ?>" <?php if(isset($reg_field['mandatory']) and $reg_field['mandatory']) echo 'required'; ?> />
|
97 |
+
|
98 |
<?php /** Tel **/ elseif($reg_field['type'] == 'tel'): ?>
|
99 |
<input id="mec_book_reg_field_reg<?php echo $j.'_'.$reg_field_id; ?>" oninput="this.value=this.value.replace(/(?![0-9])./gmi,'')" type="tel" name="book[tickets][<?php echo $j; ?>][reg][<?php echo $reg_field_id; ?>]" value="" placeholder="<?php _e($reg_field['label'], 'modern-events-calendar-lite'); ?>" <?php if(isset($reg_field['mandatory']) and $reg_field['mandatory']) echo 'required'; ?> />
|
100 |
|
app/skins/grid/render.php
CHANGED
@@ -14,7 +14,6 @@ if($this->style == 'colorful')
|
|
14 |
$this->style = 'modern';
|
15 |
$colorful_class = ' mec-event-grid-colorful';
|
16 |
}
|
17 |
-
|
18 |
?>
|
19 |
<div class="mec-wrap <?php echo $event_colorskin . $colorful_class; ?>">
|
20 |
<div class="mec-event-grid-<?php echo $this->style; ?>">
|
@@ -39,36 +38,37 @@ if($this->style == 'colorful')
|
|
39 |
|
40 |
// colorful
|
41 |
$colorful_bg_color = ($colorful_flag && isset($event->data->meta['mec_color'])) ? ' style="background: #' . $event->data->meta['mec_color'] . '"' : '';
|
|
|
42 |
$label_style = '';
|
43 |
-
if
|
44 |
-
foreach( $event->data->labels as $label)
|
45 |
{
|
46 |
-
|
47 |
-
if ( $label['style'] == 'mec-label-featured' )
|
48 |
-
{
|
49 |
-
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite' );
|
50 |
-
}
|
51 |
-
elseif ( $label['style'] == 'mec-label-canceled' )
|
52 |
{
|
53 |
-
$
|
|
|
|
|
|
|
54 |
}
|
55 |
}
|
56 |
-
|
57 |
$speakers = '""';
|
58 |
-
if
|
59 |
{
|
60 |
$speakers= [];
|
61 |
-
foreach
|
|
|
62 |
$speakers[] = array(
|
63 |
"@type" => "Person",
|
64 |
"name" => $value['name'],
|
65 |
"image" => $value['thumbnail'],
|
66 |
"sameAs" => $value['facebook'],
|
67 |
);
|
68 |
-
}
|
|
|
69 |
$speakers = json_encode($speakers);
|
70 |
}
|
71 |
-
|
|
|
72 |
if($schema_settings == '1' ):
|
73 |
?>
|
74 |
<script type="application/ld+json">
|
@@ -105,7 +105,7 @@ if($this->style == 'colorful')
|
|
105 |
<div class="mec-event-date"><?php echo date_i18n($this->date_format_modern_1, strtotime($event->date['start']['date'])); ?></div>
|
106 |
<div class="mec-event-month"><?php echo date_i18n($this->date_format_modern_2, strtotime($event->date['start']['date'])); ?></div>
|
107 |
<?php else: ?>
|
108 |
-
<div class="mec-event-month"><?php echo $this->main->date_label($event->date['start'], $event->date['end'], $this->date_format_modern_1
|
109 |
<?php endif; ?>
|
110 |
<div class="mec-event-detail"><?php echo (isset($location['name']) ? $location['name'] : ''); ?></div>
|
111 |
<div class="mec-event-day"><?php echo date_i18n($this->date_format_modern_3, strtotime($event->date['start']['date'])); ?></div>
|
14 |
$this->style = 'modern';
|
15 |
$colorful_class = ' mec-event-grid-colorful';
|
16 |
}
|
|
|
17 |
?>
|
18 |
<div class="mec-wrap <?php echo $event_colorskin . $colorful_class; ?>">
|
19 |
<div class="mec-event-grid-<?php echo $this->style; ?>">
|
38 |
|
39 |
// colorful
|
40 |
$colorful_bg_color = ($colorful_flag && isset($event->data->meta['mec_color'])) ? ' style="background: #' . $event->data->meta['mec_color'] . '"' : '';
|
41 |
+
|
42 |
$label_style = '';
|
43 |
+
if(!empty($event->data->labels))
|
|
|
44 |
{
|
45 |
+
foreach( $event->data->labels as $label)
|
|
|
|
|
|
|
|
|
|
|
46 |
{
|
47 |
+
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
48 |
+
|
49 |
+
if($label['style'] == 'mec-label-featured') $label_style = esc_html__('Featured' , 'modern-events-calendar-lite');
|
50 |
+
elseif($label['style'] == 'mec-label-canceled') $label_style = esc_html__('Canceled' , 'modern-events-calendar-lite');
|
51 |
}
|
52 |
}
|
53 |
+
|
54 |
$speakers = '""';
|
55 |
+
if(!empty($event->data->speakers))
|
56 |
{
|
57 |
$speakers= [];
|
58 |
+
foreach($event->data->speakers as $key => $value)
|
59 |
+
{
|
60 |
$speakers[] = array(
|
61 |
"@type" => "Person",
|
62 |
"name" => $value['name'],
|
63 |
"image" => $value['thumbnail'],
|
64 |
"sameAs" => $value['facebook'],
|
65 |
);
|
66 |
+
}
|
67 |
+
|
68 |
$speakers = json_encode($speakers);
|
69 |
}
|
70 |
+
|
71 |
+
$schema_settings = isset($settings['schema']) ? $settings['schema'] : '';
|
72 |
if($schema_settings == '1' ):
|
73 |
?>
|
74 |
<script type="application/ld+json">
|
105 |
<div class="mec-event-date"><?php echo date_i18n($this->date_format_modern_1, strtotime($event->date['start']['date'])); ?></div>
|
106 |
<div class="mec-event-month"><?php echo date_i18n($this->date_format_modern_2, strtotime($event->date['start']['date'])); ?></div>
|
107 |
<?php else: ?>
|
108 |
+
<div class="mec-event-month"><?php echo $this->main->date_label($event->date['start'], $event->date['end'], $this->date_format_modern_1 .' '. $this->date_format_modern_2); ?></div>
|
109 |
<?php endif; ?>
|
110 |
<div class="mec-event-detail"><?php echo (isset($location['name']) ? $location['name'] : ''); ?></div>
|
111 |
<div class="mec-event-day"><?php echo date_i18n($this->date_format_modern_3, strtotime($event->date['start']['date'])); ?></div>
|
app/skins/list/render.php
CHANGED
@@ -179,7 +179,7 @@ $event_colorskin = (isset($styling['mec_colorskin']) || isset($styling['color'])
|
|
179 |
</div>
|
180 |
</div>
|
181 |
<div class="mec-event-footer">
|
182 |
-
<?php if($settings['social_network_status'] != '0') : ?>
|
183 |
<ul class="mec-event-sharing-wrap">
|
184 |
<li class="mec-event-share">
|
185 |
<a href="#" class="mec-event-share-icon">
|
@@ -193,6 +193,7 @@ $event_colorskin = (isset($styling['mec_colorskin']) || isset($styling['color'])
|
|
193 |
</li>
|
194 |
</ul>
|
195 |
<?php endif; ?>
|
|
|
196 |
<a class="mec-booking-button" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo (is_array($event->data->tickets) and count($event->data->tickets)) ? $this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite')) : $this->main->m('view_detail', __('View Detail', 'modern-events-calendar-lite')); ?></a>
|
197 |
</div>
|
198 |
<?php elseif($this->style == 'accordion'): ?>
|
179 |
</div>
|
180 |
</div>
|
181 |
<div class="mec-event-footer">
|
182 |
+
<?php if(isset($settings['social_network_status']) and $settings['social_network_status'] != '0') : ?>
|
183 |
<ul class="mec-event-sharing-wrap">
|
184 |
<li class="mec-event-share">
|
185 |
<a href="#" class="mec-event-share-icon">
|
193 |
</li>
|
194 |
</ul>
|
195 |
<?php endif; ?>
|
196 |
+
<?php do_action('mec_standard_booking_button' ,$event ); ?>
|
197 |
<a class="mec-booking-button" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo (is_array($event->data->tickets) and count($event->data->tickets)) ? $this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite')) : $this->main->m('view_detail', __('View Detail', 'modern-events-calendar-lite')); ?></a>
|
198 |
</div>
|
199 |
<?php elseif($this->style == 'accordion'): ?>
|
app/skins/single.php
CHANGED
@@ -227,8 +227,8 @@ class MEC_skin_single extends MEC_skins
|
|
227 |
$repeat_type = !empty($rendered->meta['mec_repeat_type']) ? $rendered->meta['mec_repeat_type'] : '';
|
228 |
|
229 |
$occurrence = isset($_GET['occurrence']) ? sanitize_text_field($_GET['occurrence']) : date('Y-m-d');
|
230 |
-
|
231 |
-
if(strtotime($occurrence) and in_array($repeat_type, array('certain_weekdays', 'custom_days'))) $occurrence = date('Y-m-d', strtotime($occurrence));
|
232 |
elseif(strtotime($occurrence)) $occurrence = date('Y-m-d', strtotime('-1 day', strtotime($occurrence)));
|
233 |
else $occurrence = NULL;
|
234 |
|
227 |
$repeat_type = !empty($rendered->meta['mec_repeat_type']) ? $rendered->meta['mec_repeat_type'] : '';
|
228 |
|
229 |
$occurrence = isset($_GET['occurrence']) ? sanitize_text_field($_GET['occurrence']) : date('Y-m-d');
|
230 |
+
|
231 |
+
if(strtotime($occurrence) and in_array($repeat_type, array('certain_weekdays', 'custom_days', 'weekday', 'weekend'))) $occurrence = date('Y-m-d', strtotime($occurrence));
|
232 |
elseif(strtotime($occurrence)) $occurrence = date('Y-m-d', strtotime('-1 day', strtotime($occurrence)));
|
233 |
else $occurrence = NULL;
|
234 |
|
assets/css/backend.css
CHANGED
@@ -938,6 +938,10 @@ body.post-type-mec-books th.column-author {
|
|
938 |
color: #555;
|
939 |
}
|
940 |
|
|
|
|
|
|
|
|
|
941 |
.mec-form-row .time-dv {
|
942 |
font-size: 14px;
|
943 |
font-weight: 700
|
@@ -6042,3 +6046,9 @@ a.mec-create-shortcode-tabs-link {
|
|
6042 |
visibility: visible;
|
6043 |
opacity: 1;
|
6044 |
}
|
|
|
|
|
|
|
|
|
|
|
|
938 |
color: #555;
|
939 |
}
|
940 |
|
941 |
+
.mec-form-row .description code {
|
942 |
+
font-style: normal;
|
943 |
+
}
|
944 |
+
|
945 |
.mec-form-row .time-dv {
|
946 |
font-size: 14px;
|
947 |
font-weight: 700
|
6046 |
visibility: visible;
|
6047 |
opacity: 1;
|
6048 |
}
|
6049 |
+
|
6050 |
+
/* User Dashboard */
|
6051 |
+
#mec_organizer_user + .select2-container,
|
6052 |
+
#mec_speaker_user + .select2-container {
|
6053 |
+
min-width: 224px !important;
|
6054 |
+
}
|
assets/css/backend.min.css
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
-
#mec_location_thumbnail_img img,#mec_organizer_thumbnail_img img,#mec_thumbnail_img img{max-width:250px}.taxonomy-mec_label .column-id,.taxonomy-mec_location .column-id,.taxonomy-mec_organizer .column-id,.taxonomy-mec_speaker .column-id{width:40px}.taxonomy-mec_label .column-primary,.taxonomy-mec_location .column-primary,.taxonomy-mec_organizer .column-primary,.taxonomy-mec_speaker .column-primary{width:250px}.mec-color{margin:10px;width:14px;height:14px;display:inline-block;margin-right:6px;border-radius:20px 20px 20px 20px;vertical-align:middle}.mec-event-color-container,.mec-event-title-container{display:inline-block}.mec-available-color-row{margin-top:15px}.mec-available-color-row .mec-color{cursor:pointer}.mec-widget-container a{text-decoration:none}.mec-widget-container label{padding-right:15px}.mec-util-hidden{display:none}.button.mec-util-hidden{display:none}.wns-be-container{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Oxygen,Roboto,sans-serif;max-width:100%;background-color:#f6f6f6;border:1px solid #c1cad2;box-shadow:0 1px 1px rgba(0,0,0,.04);margin-top:40px;margin-right:15px;overflow:hidden}.wns-be-sidebar{width:260px;float:left;position:relative}.wns-be-sidebar ul.wns-be-group-menu,.wns-be-sidebar ul.wns-be-group-menu li{list-style:none;margin:0}.wns-be-sidebar .wns-be-group-menu li a{display:block;position:relative;outline:0;padding:13px 4px 13px 20px;background:#e0e0e0;background:0 0;border:none;color:#3f454a;font-size:13px;font-weight:600;text-decoration:none;-webkit-transition:none;transition:none}.wns-be-sidebar .wns-be-group-menu li a:hover{background:#fff;color:#008aff;opacity:1}.wns-be-sidebar .wns-be-group-menu>li.active>a,.wns-be-sidebar .wns-be-group-menu>li.active>a:hover{background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff}.wns-be-sidebar .wns-be-group-menu>li.active>a{box-shadow:0 2px 12px -5px #008aff}.wns-be-sidebar .wns-be-group-menu li a:first-child{border-top:none}.wns-be-main{background:#fff;margin-left:260px;border-left:1px solid #dedede;padding-bottom:84px;box-shadow:inset 0 1px 0 #fff;min-height:1120px;position:relative}.wns-be-main .wns-saved-settings{margin:0;border-bottom:1px solid #dedede;background:#dff0d8;color:#468847;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.6)}.wns-be-container .dpr-btn{display:inline-block;font-size:13px;padding:0 16px 1px;height:36px;margin-right:3px;line-height:35px;color:#555;border:1px solid #ccc;background:#f7f7f7;text-decoration:none;transition:.24s all ease;-webkit-transition:.24s all ease}.wns-be-container .dpr-btn:hover{background:#fcfcfc;border-color:#999;color:#303030}.wns-be-container .dpr-btn.dpr-save-btn{color:#fff;font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s}.wns-be-container .dpr-btn.dpr-save-btn:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5);cursor:pointer}.wns-be-container .wns-be-group-tab h2,.wns-be-container .wns-be-group-tab h4{color:#000;margin-bottom:25px;padding:15px;background:#f5f5f5;font-size:21px;line-height:23px;letter-spacing:.4px;font-weight:700;position:relative}.wns-be-container .wns-be-group-tab h2{margin-top:10px}.wns-be-container .wns-be-group-tab h2:before,.wns-be-container .wns-be-group-tab h4:before{content:"";width:4px;height:16px;margin-right:5px;background-color:#008aff;display:block;position:absolute;left:0;top:18px}.wns-be-container .wns-be-group-tab h4:before{width:2px;top:16px}.wns-be-container .wns-be-group-tab h4{font-size:16px;font-weight:600;background:#f8f8f8;border:none;padding:12px 15px 12px 15px}.wns-be-container .wns-be-group-tab p{font-size:13px;color:#888}.wns-be-sidebar .wns-be-group-tab-link-a:hover{cursor:pointer}.wns-be-sidebar .wns-be-group-tab-link-a span{display:block}.wns-be-sidebar .wns-be-group-tab-link-a span.wns-be-group-menu-title{padding-left:24px}.wns-be-sidebar li.active ul.subsection{padding-top:8px;padding-bottom:12px;background:#fff;border-bottom:1px solid #dedede;margin:0}.wns-be-sidebar li .subsection a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 46px}.wns-be-sidebar li .subsection a:hover{background:#f6f6f6;color:#222}.wns-be-sidebar .wns-be-group-menu li .subsection li.active a{color:#008aff}.wns-be-sidebar .wns-be-group-menu li .subsection li.active a:after,.wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;right:-1px;top:10px}.wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{border-right-color:#c5c5c5;right:0}.wns-be-sidebar li a i{color:#a0abb5;vertical-align:middle;font-size:18px;position:absolute;margin-top:0;margin-left:-4px}.wns-be-sidebar .wns-be-group-menu li.active>a i{color:#fff}.wns-be-sidebar .has-sub span.extra-icon{display:inline-block;float:right;padding:4px 7px 4px;margin-left:4px;margin-right:10px;font-family:sans-serif;font-size:9px;font-weight:600;line-height:9px;border-radius:10px;-moz-border-radius:10px;-webkit-border-radius:10px;border:0 solid transparent}.wns-be-sidebar .has-sub span.extra-icon i{margin-left:-3px;margin-top:2px;color:#bac6d0;font-size:10px}.wns-be-sidebar .wns-be-group-tab-link-a span.extra-icon i{right:10px;font-size:10px}.wns-be-sidebar .wns-be-group-menu li.active>a span.extra-icon i{margin-top:1px}.wns-be-container #wns-be-footer{border-top:1px solid #dedede;z-index:999;padding:25px 20px 20px;background:#fafafa!important;height:44px;text-align:right}.wns-be-container #wns-be-content{padding:5px 40px 40px}.wns-be-container #wns-be-infobar{background:#fff;border-bottom:1px solid #dedede;padding:20px;text-align:right;box-shadow:inset 0 1px 0 #fcfcfc;height:79px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;position:relative}.wns-be-container #wns-be-infobar:before{content:"";width:261px;height:78px;display:block;position:absolute;left:0;top:0;background:#fff url(../img/webnus-logo.png) no-repeat center;border-bottom:1px solid #dedede;background-size:220px;z-index:997}.wns-be-container .notice-yellow{margin:0;border-bottom:1px solid #dedede;background-color:#fcf8e3;color:#c09853;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.5)}.wns-be-container .notice-red,.wns-be-container .wns-be-field-errors{margin:0;border-bottom:1px solid #dedede;background-color:#f2dede;color:#b94a48;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.5)}@media(max-width:480px){a.dpr-btn.dpr-save-btn{display:block!important;text-align:center!important;margin-top:20px!important}.mec-search-settings-wrap{margin-top:73px!important;text-align:center!important;display:block!important}#mec-search-settings{margin:0!important;width:100%!important}.wns-be-container #wns-be-infobar{height:auto!important}}body.post-type-mec-events th.column-primary{width:35%}body.post-type-mec-events th.column-start_date{width:100px}body.post-type-mec-events th.column-end_date{width:100px}body.post-type-mec-events th.column-repeat{width:75px}body.post-type-mec-events th.column-author{width:150px}body.post-type-mec-books th.column-primary{width:20%}body.post-type-mec-books th.column-event{width:170px}body.post-type-mec-books th.column-bdate{width:120px}body.post-type-mec-books th.column-confirmation{width:120px}body.post-type-mec-books th.column-verification{width:120px}body.post-type-mec-books th.column-author{width:150px}.mec-meta-box-labels-container .mec-form-row{height:100px;overflow:auto}.mec-tooltip{display:inline;position:relative;margin-right:10px;cursor:help;bottom:5px;left:3px}.mec-tooltip:last-child{margin-right:0}.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-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-tooltip .dashicons-before:before{font-size:24px;color:#40d9f1;line-height:37px}.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-tooltiptext{visibility:hidden;width:120px;background-color:red;color:#fff;text-align:center;border-radius:6px;padding:5px 0;position:absolute;z-index:1}.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-col-1,.mec-col-10,.mec-col-11,.mec-col-12,.mec-col-2,.mec-col-3,.mec-col-4,.mec-col-5,.mec-col-6,.mec-col-7,.mec-col-8,.mec-col-9{position:relative;min-height:1px;padding:0;margin:0 1% 0 0}@media (min-width:783px){.mec-col-1,.mec-col-10,.mec-col-11,.mec-col-12,.mec-col-2,.mec-col-3,.mec-col-4,.mec-col-5,.mec-col-6,.mec-col-7,.mec-col-8,.mec-col-9{float:left}.mec-col-12{width:99%}.mec-col-11{width:90.66666667%}.mec-col-10{width:82.33333333%}.mec-col-9{width:74%}.mec-col-8{width:65.66666667%}.mec-col-7{width:57.33333333%}.mec-col-6{width:49%}.mec-col-5{width:40.66666667%}.mec-col-4{width:32.33333333%}.mec-col-3{width:24%}.mec-col-2{width:15.66666667%}.mec-col-1{width:7.33333333%}}#mec_reg_form_fields{background:#eee;padding:20px}#mec_reg_form_fields li{margin:4px;border-radius:2px;padding:20px 34px 24px;background:#fff;position:relative;transition:all .3s ease}#mec_reg_form_fields li ul{padding-top:15px;padding-bottom:15px;margin:1px}#mec_reg_form_fields li ul li{padding:7px 30px 7px 46px}#mec_reg_form_fields span.mec_reg_field_type{font-size:11px;font-weight:600;color:#8a8a8a;text-transform:uppercase;letter-spacing:2px}#mec_reg_form_fields span.mec_reg_field_option_sort,#mec_reg_form_fields span.mec_reg_field_remove,#mec_reg_form_fields span.mec_reg_field_sort{font-size:0;color:#fff}#mec_reg_form_fields span.mec_reg_field_remove{position:absolute;right:0;top:0}#mec_reg_form_fields span.mec_reg_field_option_sort:before,#mec_reg_form_fields span.mec_reg_field_remove:before,#mec_reg_form_fields span.mec_reg_field_sort:before{position:absolute;left:10px;top:20px;width:80px;height:20px;display:block;cursor:move;font-family:simple-line-icons;content:"\e023";font-size:18px;color:#888}#mec_reg_form_fields span.mec_reg_field_remove:before{content:"\e082";width:20px;height:20px;left:auto;right:15px;color:#f96666;cursor:pointer}#mec_reg_form_fields span.mec_reg_field_option_sort:before{font-size:13px;left:2px;top:23px;width:14px;height:14px}#mec_reg_form_fields li ul li span.mec_reg_field_remove{right:auto;left:60px;top:2px}#mec_reg_form_fields p.mec_reg_field_options{margin:6px 0 8px}#mec_reg_form_fields input[type=number],#mec_reg_form_fields input[type=text],#mec_reg_form_fields select,#mec_reg_form_fields textarea{min-width:260px;min-height:34px;margin-bottom:7px;margin-top:7px}#mec_reg_form_fields textarea{min-height:66px}#mec_reg_form_field_types button,#mec_reg_form_fields button{position:relative;outline:0;background:#fff;border:1px solid #e2e2e2;border-radius:50px;padding:11px 21px 11px 31px;line-height:1;font-size:11px;font-weight:600;color:#444;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 0 3px rgba(0,0,0,.03)}#mec_reg_form_field_types button:hover,#mec_reg_form_fields button:hover{border-color:#008aff;box-shadow:0 0 7px rgba(0,0,0,.1)}#mec_reg_form_field_types button:before,#mec_reg_form_fields button:before{position:absolute;left:12px;color:#008aff;content:"\e095";font-family:simple-line-icons;font-size:13px;display:inline-block}#mec_reg_form_field_types button.red:hover,#mec_reg_form_fields button.red:hover{border-color:red;box-shadow:0 0 7px rgba(0,0,0,.1)}#mec_reg_form_field_types button.red:before,#mec_reg_form_fields button.red:before{position:absolute;left:12px;color:red;content:"\e095";font-family:simple-line-icons;font-size:13px;display:inline-block}@media (max-width:768px){#mec_reg_form_fields input[type=number],#mec_reg_form_fields input[type=text],#mec_reg_form_fields select,#mec_reg_form_fields textarea{min-width:80px;width:100%}}.mec-form-row{margin:0 auto 16px}.mec-options-fields{padding-top:25px;overflow:hidden;animation:fadeEffect .31s}#mec_booking_form .mec-options-fields,#mec_modules_form .mec-options-fields,#mec_notifications_form .mec-options-fields,#mec_settings_form .mec-options-fields,#mec_single_form .mec-options-fields{display:none}.mec-options-fields.active{display:block!important}@keyframes fadeEffect{from{opacity:0;margin-left:12px}to{opacity:1;margin-left:0}}.mec-form-row:after,.mec-form-row:before{content:" ";display:table}.mec-form-row:after{clear:both}.mec-form-row input[type=number],.mec-form-row input[type=text],.mec-form-row select,.mec-form-row textarea{height:38px;box-sizing:border-box;margin-bottom:8px;padding:0 6px;box-shadow:none;border-radius:2px;box-shadow:inset 0 1px 5px rgba(0,0,0,.05)}.mec-form-row input[type=radio]{margin:5px 0}.mec-form-row select{margin-top:1px}.mec-book-status-form select{display:block;width:99%;margin-top:10px;margin-bottom:10px}.mec-form-row label{margin:10px 0}.mec-form-row input[type=checkbox]{background-color:#fafafa;border:1px solid #cacece;box-shadow:0 1px 2px rgba(0,0,0,.05),inset 0 -15px 10px -12px rgba(0,0,0,.05);padding:9px;border-radius:3px;min-width:20px;min-height:20px;display:inline-block}.mec-form-row input[type=checkbox]:checked{box-shadow:0 3px 11px -4px #008aff;border-color:#008aff;background:#fff}.mec-form-row input[type=checkbox]:checked:before{color:#008aff;width:20px;font:400 24px/1 dashicons}.mec-form-row .mec-col-4 input[type=number],.mec-form-row .mec-col-4 input[type=text],.mec-form-row .mec-col-4 select,.mec-form-row .mec-col-4 textarea{width:75%}.mec-form-row .description{display:inline-block;border-left:1px dashed #ccc;margin-left:12px;line-height:32px;padding-left:12px;margin-top:5px;color:#555}.mec-form-row .time-dv{font-size:14px;font-weight:700}.mec-meta-box-fields{margin:30px 10px}.mec-meta-box-fields>.mec-meta-box-fields{margin-left:0}.mec-meta-box-fields .mec-title{margin:5px 0}.mec-meta-box-fields h4.mec-title{margin:40px 0 16px}.mec-meta-box-fields .mec-dashicons{font-size:20px;line-height:22px;color:#008aff}.mec-form-row .mec-box,.mec-meta-box-fields .mec-box{background:#f7f7f7;padding:10px;margin:10px 0;border-radius:2px;border:1px solid #e6e6e6}.mec-form-row .mec-box{max-width:960px}.mec-form-row .mec-box .button,.mec-meta-box-fields .mec-box .button{float:right}#mec_gateways_form .mec-form-row:first-child,#mec_notifications_form_container .mec-form-row:nth-child(2){overflow:hidden}#mec_gateways_form .mec-tooltip{float:right}.mec-container{background:#fff;padding:15px}.nav-tab-active{background:#fff;border-bottom:1px solid #fff}#mec_social_networks .mec-form-row{margin-bottom:0}#mec_gateways_form h4,.mec-meta-box-fields h4,.mec-options-fields h4,h4.mec-form-subtitle{text-transform:capitalize;border-bottom:1px solid #e5e5e5;padding-bottom:6px;margin:40px 0 16px;font-size:15px;font-weight:600}#mec_gateways_form h4{margin-bottom:0}#mec_styles_form #mec_styles_CSS{height:200px;margin-bottom:5px;font-family:Consolas,Monaco,monospace;font-size:13px;width:97%;background:#f9f9f9;outline:0}#mec_calendar_filter .description,#mec_styles_form .description{max-width:500px;display:block;margin:0 0 5px 0;padding:0;border:none}.mec-sed-methods li{display:inline-block;padding:8px 12px;border:1px solid #ddd;margin:0 5px 5px 0;cursor:pointer;border-radius:3px;box-shadow:0 2px 15px -2px rgba(0,0,0,.1)}.mec-sed-methods li:hover{border-color:#008aff}.mec-sed-methods li.active{border-color:#008aff;background-color:#fff;color:#008aff;font-weight:600;cursor:default;box-shadow:0 0 4px rgba(1,138,255,.3) inset}.mec-switcher input+label{display:block;position:relative;cursor:pointer;outline:0;padding:2px;width:38px;height:22px;background-color:#ddd;border-radius:60px}.mec-switcher input:checked+label{background-color:#008aff;box-shadow:0 3px 22px -6px #008aff}.mec-switcher input:checked+label:after{margin-left:16px}#mec_gateways_form input[type=text],#mec_gateways_form select,#mec_gateways_form textarea{width:calc(100% - 30px)}#mec_gateways_form textarea{min-height:65px}#mec_gateways_form li .mec-gateway-options-form,#payment_gateways_option li .mec-gateway-options-form{padding:15px 20px;background-color:#f7f7f7;border-left:6px solid #e3e3e3;margin-bottom:20px}#mec_notifications_form label{display:inline-block;min-width:160px}#mec_notifications_form input[type=text],#mec_notifications_form select{min-width:300px}@media (max-width:536px){#mec_notifications_form input[type=text],#mec_notifications_form select{min-width:100%}}#mec_notifications_form .wp-editor-container{margin-bottom:45px}#mec_notifications_form ul li:last-child .wp-editor-container{margin-bottom:0}#mec_messages_form_container ul li label{display:block;font-weight:700}#mec_messages_form_container ul li input{display:block;width:100%}.mec-message-categories li.mec-acc-label{font-size:15px;font-weight:600;padding:25px 30px;cursor:pointer;background-color:#fff;border:none;border-bottom:1px solid #e6e6e6;margin:0;letter-spacing:.5px;position:relative}.mec-message-categories ul{margin:15px 5px}.webnus-icons-list li{width:40px;display:inline-block;list-style:none;padding:0}.webnus-icons-list input{visibility:hidden;margin:0;padding:0;width:1px;height:1px;-moz-opacity:0;-khtml-opacity:0;opacity:0;cursor:pointer}.webnus-icons-list li label{color:#777;display:inline-block!important;float:none!important;width:33px!important;text-align:center;font-size:23px!important;font-weight:400!important;padding:5px 0!important;border:1px solid #eee!important}.mec-webnus-icon{float:left;margin-right:10px}.mec-webnus-icon i{font-size:24px;color:#222}.mec-accordion ul{display:none}.mec-switcher input{position:absolute;margin-left:-9999px;visibility:hidden}.mec-switcher input+label{display:block;position:relative;cursor:pointer;outline:0;padding:2px;width:50px;height:22px;background-color:#ddd;border-radius:60px}.mec-switcher input+label:after,.mec-switcher input+label:before{display:block;position:absolute;top:1px;left:1px;bottom:1px;content:""}.mec-switcher input+label:before{right:1px;background-color:#f1f1f1;border-radius:60px;transition:background .4s}.mec-switcher input+label:after{width:24px;background-color:#fff;border-radius:100%;box-shadow:0 2px 3px rgba(0,0,0,.1);transition:margin .4s}.wns-be-group-tab .mec-switcher input[value="1"]+label,.wns-be-group-tab .mec-switcher input[value="1"]+label:before{background-color:#008aff;background:linear-gradient(95deg,#4dacfd 0,#0d90ff 50%,#008aff 100%);box-shadow:0 3px 11px -7px #008aff}.wns-be-group-tab .mec-switcher input[value="1"]+label:after{margin-left:28px}.mec-switcher input:checked+label{box-shadow:0 3px 11px -7px #008aff}.mec-switcher input:checked+label:before{background-color:#008aff;background:linear-gradient(95deg,#4dacfd 0,#0d90ff 50%,#008aff 100%)}.mec-switcher input:checked+label:after{margin-left:28px}.mec-switcher label{display:block}.mec-sed-methods li{display:inline-block;padding:10px;border:1px solid #ddd;margin:0 5px 5px 0;cursor:pointer}#wpwrap .mec-button-primary{border-bottom:none;letter-spacing:.5px;line-height:18px;height:46px;transition:all .5s ease;color:#fff;padding:12px 25px;display:block;text-align:center;font-size:14px;background:0 0;background-color:#008aff;text-shadow:none;border:0;box-shadow:none;display:inline-block;margin:25px 0 12px;min-width:146px}#wpwrap .mec-button-primary:hover{background-color:#41c9de}#wpwrap .mec-button-primary.loading{background-color:#73c02a}#wpwrap .mec-button-primary:before{content:"\f00c";font-family:fontawesome;margin-right:4px;font-size:16px;display:none}#wpwrap .mec-button-primary.loading:before{display:inline-block}.mec-image-select-wrap{clear:both;overflow:hidden;padding:10px 0;margin:0}.mec-image-select-wrap li{float:left;display:block;margin-right:15px;margin-bottom:15px}.mec-image-select-wrap li input{display:none}.mec-image-select-wrap li span{width:35px;height:35px;display:block;margin:3px;border-radius:2px;border:3px solid transparent;transition:all .2s ease}.mec-image-select-wrap li input:checked+span{border-color:#fff;box-shadow:0 0 14px rgba(0,0,0,.25)}.mec-image-select-wrap li input:checked+span:after{content:"\f00c";font-family:fontawesome;font-size:20px;display:inline-block;color:#fff;padding:8px;max-width:100%;max-height:100%}.mec-image-select-wrap .mec-colorskin-1{background-color:#40d9f1}.mec-image-select-wrap .mec-colorskin-2{background-color:#0093d0}.mec-image-select-wrap .mec-colorskin-3{background-color:#e53f51}.mec-image-select-wrap .mec-colorskin-4{background-color:#f1c40f}.mec-image-select-wrap .mec-colorskin-5{background-color:#e64883}.mec-image-select-wrap .mec-colorskin-6{background-color:#45ab48}.mec-image-select-wrap .mec-colorskin-7{background-color:#9661ab}.mec-image-select-wrap .mec-colorskin-8{background-color:#0aad80}.mec-image-select-wrap .mec-colorskin-9{background-color:#0ab1f0}.mec-image-select-wrap .mec-colorskin-10{background-color:#ff5a00}.mec-image-select-wrap .mec-colorskin-11{background-color:#c3512f}.mec-image-select-wrap .mec-colorskin-12{background-color:#55606e}.mec-image-select-wrap .mec-colorskin-13{background-color:#fe8178}.mec-image-select-wrap .mec-colorskin-14{background-color:#7c6853}.mec-image-select-wrap .mec-colorskin-15{background-color:#bed431}.mec-image-select-wrap .mec-colorskin-16{background-color:#2d5c88}.mec-image-select-wrap .mec-colorskin-17{background-color:#77da55}.mec-image-select-wrap .mec-colorskin-18{background-color:#2997ab}.mec-image-select-wrap .mec-colorskin-19{background-color:#734854}.mec-image-select-wrap .mec-colorskin-20{background-color:#a81010}.mec-image-select-wrap .mec-colorskin-21{background-color:#4ccfad}.mec-image-select-wrap .mec-colorskin-22{background-color:#3a609f}@media screen and (max-width:782px){.mec-form-row .description{max-width:500px;display:block;margin:0 0 5px 0;padding:0;border:none}.mec-col-1,.mec-col-10,.mec-col-11,.mec-col-12,.mec-col-2,.mec-col-3,.mec-col-4,.mec-col-5,.mec-col-6,.mec-col-7,.mec-col-8,.mec-col-9{margin-bottom:5px;display:block}.mec-form-row .mec-box .button,.mec-meta-box-fields .mec-box .button{float:left}.mec-form-row .time-dv{padding:0 4px}.mec-form-row .mec-col-4 input[type=text],.mec-form-row .mec-col-4 select{width:auto;min-width:192px}.mec-tooltip .dashicons-before:before{font-size:32px}}#frmb-0-clear-all,#frmb-0-save,#frmb-0-view-data{display:none}#mec_sn_googlecal{margin-bottom:0}#mec_fee_row1 .button{margin-right:10px}h4.mec-form-subtitle{font-size:15px;margin-top:0}h5.mec-form-second-title{font-size:15px;margin-top:0}#webnus-dashboard *{box-sizing:border-box}#webnus-dashboard.about-wrap{max-width:1240px;margin:25px auto 20px}#webnus-dashboard .change-log{word-wrap:break-word}#webnus-dashboard .welcome-head img{border:none}.w-welcome{position:relative;margin-top:30px;margin-bottom:10px}.w-box{position:relative;background:#fff;padding:5px 25px;margin-top:30px}.w-theme-version{box-shadow:0 3px 30px -4px #40d8f0;text-shadow:none;background:#40d8f0;background:linear-gradient(95deg,#40d8f0 0,#2dd1ea 50%,#13cbe8 100%);text-align:center;display:block;padding:10px 0;color:#fff;font-weight:600;margin-top:10px;border-radius:2px}.w-box{padding:0;min-height:310px;box-shadow:0 1px 16px rgba(0,0,0,.034);border-radius:2px}.w-box-head{font-weight:600;padding:20px 72px;position:relative;border-bottom:2px solid #008aff;font-size:20px}.w-box-head span{position:absolute;left:0;padding:0 25px;line-height:58px;background:#008aff;height:100%;top:0;color:#fff}.w-box-child,.w-box-content{padding:18px;line-height:24px;font-size:14px}.mec-count-child{width:50%;margin:0 auto}#webnus-dashboard .w-button a{color:#fff!important;border-radius:0;padding:10px 24px;font-size:12px;letter-spacing:1px;font-weight:600;background:#008aff;margin:10px 0;display:inline-block;text-transform:uppercase}#webnus-dashboard .w-box .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}.w-system-info{margin-bottom:7px}.w-system-info:first-child{margin-top:20px}.w-system-info>span{display:inline-block;min-width:145px;line-height:20px;font-size:13px}#webnus-dashboard .w-current{min-width:110px}#webnus-dashboard .w-min{min-width:65px}.w-icon{color:#fff;padding:3px;border-radius:4px;margin-right:10px;vertical-align:middle}.w-icon-green{background:#27ae60}.w-icon-red{background:#e74c3c}.extra .w-box-head{padding:20px;border-bottom:1px solid #ededed}.doc .w-box-head{color:#4cbf67}#webnus-dashboard .doc .w-button a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);margin:35px 0 17px;box-shadow:0 5px 10px -5px #4cbf67;background-color:#fff}#webnus-dashboard .support .w-button a{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);margin:13px 0 18px;box-shadow:0 5px 10px -5px #ff876c}.doc .w-box-content{background:url(../img/document.png) no-repeat right center}.doc .w-box-content p,.w-box.support .w-box-content p{width:54%;color:#666;margin-top:10px;max-width:380px}.w-box-child p{color:#666;margin-top:10px}.w-box.support{background:#fff url(../img/support.png) no-repeat top right}.w-box.support .w-box-head{width:50%;color:#ff876c}.w-box-content pre{text-align:left;background:#f5f5f5;font-size:13px;padding:20px 25px;height:480px;overflow-y:scroll}.w-box.change-log .w-box-head{color:#01c6d9}#webnus-dashboard .button:not(.mec-intro-section-link-tag){border:0;background:0 0;box-shadow:none;color:#e74c3c;font-weight:700}.w-box .state{position:absolute;top:0;left:-100vw}#webnus-dashboard .button:hover{color:#222}.w-box .state:checked~.content{-webkit-transform:none;-ms-transform:none;transform:none}.w-box .state:checked~.backdrop{bottom:0;opacity:1;z-index:1}.w-box .lightbox{position:fixed;top:0;right:0;left:0;height:0;padding:0 20px}.w-box .lightbox .content{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;overflow:hidden;position:relative;z-index:2;max-width:500px;max-height:95vh;margin:20px auto;padding:20px;background:#fff;-webkit-transform:translateY(-200%);-ms-transform:translateY(-200%);transform:translateY(-200%);-webkit-transition:.3s -webkit-transform ease-in-out;transition:.3s transform ease-in-out;border:1px solid rgba(0,0,0,.1)}.w-box .lightbox .main{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1}.w-box .lightbox .backdrop{position:fixed;z-index:-1;top:0;right:0;bottom:100%;left:0;opacity:0;background:rgba(0,0,0,.3);-webkit-transition:.3s opacity ease-in-out;transition:.3s opacity ease-in-out}.content .main p{color:#bf3737}p.mec_dash_count{font-size:60px;font-weight:600;margin:0;color:#01c6d9}.w-col-sm-3 .w-box.doc{text-align:center;min-height:auto}.w-Knowledgebase{color:#8e5cea}.mec-view-all-articles a{margin:30px 0 17px;display:inline-block;color:#fff!important;border-radius:0;padding:10px 24px;font-size:12px;letter-spacing:1px;font-weight:600;background:#8e5cea;display:inline-block;text-transform:uppercase;transition:all .24s ease;-webkit-transition:all .24s ease}.mec-view-all-articles a:hover{background-color:#222}.w-box.upcoming-events .mec-event-article{margin-bottom:22px;border-bottom:1px solid #eee;padding-bottom:16px}.w-box.upcoming-events .mec-event-article .mec-event-date{font-size:14px;color:#666}.w-box.upcoming-events .mec-event-article .mec-event-date span{font-weight:600;margin-right:4px}.w-box.upcoming-events .mec-event-article h4.mec-event-title{margin:0;font-size:15px}.w-box.upcoming-events .mec-event-article .mec-event-detail{font-size:13px;color:#999}.w-box.upcoming-events .mec-event-article .mec-detail-button{font-size:10px;font-weight:600;letter-spacing:1px;padding:4px 12px;background:#f2f2f2;float:right}.w-box.total-bookings ul li{display:inline-block;padding:4px 12px;background:#f1f1f1;margin-right:5px;border-radius:3px}.w-box.total-bookings ul li.selected{background:#fff;border:1px solid #e9e9e9}.info-msg,.mec-error,.mec-success,.warning-msg{margin:10px 0;padding:10px;border-radius:3px 3px 3px 3px}.info-msg{color:#059;background-color:#bef}.info-msg-link{background:#fff;padding:4px 12px 6px;border-radius:3px;line-height:1;font-weight:600;color:#008aff}.mec-success{color:#270;background-color:#dff2bf}.warning-msg{color:#9f6000;background-color:#feefb3}.mec-error{color:#d8000c;background-color:#ffbaba}.mec-certain-day>div,.mec-select-deselect-actions li,.mec-xi-facebook-import-events .mec-select-deselect-actions li,.mec-xi-google-import-events .mec-select-deselect-actions li{display:inline-block;position:relative;outline:0;background:#fff;border:1px solid #e2e2e2;border-radius:50px;padding:11px 21px 11px 21px;line-height:1;font-size:11px;font-weight:600;color:#444;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 0 3px rgba(0,0,0,.03)}.mec-certain-day>div:hover,.mec-select-deselect-actions li:hover,.mec-xi-facebook-import-events .mec-select-deselect-actions li:hover,.mec-xi-google-import-events .mec-select-deselect-actions li:hover{border-color:#008aff;box-shadow:0 0 7px rgba(0,0,0,.1)}.mec-not-in-days-remove{border:1px solid #ff4b64;border-radius:20px;padding:0 0 0 1px;color:#ff4b64;width:11px;height:12px;text-align:center;line-height:12px;display:inline-block;margin-right:-5px;margin-left:6px}div#mec_not_in_days_row2:hover{border-color:#e2e2e2!important;box-shadow:none!important}.mec-xi-facebook-import-events .mec-success,.mec-xi-google-import-events .mec-success{width:460px}.mec-xi-facebook-import-events .mec-select-deselect-actions li,.mec-xi-google-import-events .mec-select-deselect-actions li{display:inline-block;cursor:pointer}.lity-content>div{overflow:auto}.mce-mec-mce-items{text-transform:capitalize!important}#mec_setting_contextual li{list-style:none!important;font-size:12px;margin:0;padding:6px}.mec-bbf-field-container{margin-bottom:10px}.mec-bbf-field-container label{display:block}.kc-components ul.kc-components-list li .cpicon.mec-kingcomposer-icon,.kc-element-icon .cpicon.mec-kingcomposer-icon{background:url(../img/ico-mec-vc.png) no-repeat center center;background-size:auto;background-repeat:no-repeat}.mec-archive-skinsm.mec-category-skins,.mec-carousel-archive-link,.mec-carousel-head-text,.mec-toggle-month-divider{display:none}span.mec-archive-skins,span.mec-category-skins{margin-left:10px;vertical-align:text-bottom}.mec-archive-skins input,.mec-archive-skins select,.mec-category-skins input,.mec-category-skins select{min-width:225px;vertical-align:baseline}#mec_settings_default_skin_archive,#mec_settings_default_skin_category{min-width:225px}.w-welcome p span{background:#fff;padding:4px 10px}#mec_masonry_skin_options_container .mec-form-row .description{margin-left:0;padding-left:0;border:none;margin-top:-4px}@media (max-width:1280px){span.mec-archive-skins,span.mec-category-skins{margin-left:0}}/*!
|
2 |
* Bootstrap v3.3.7 (http://getbootstrap.com)
|
3 |
* Copyright 2011-2016 Twitter, Inc.
|
4 |
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
5 |
-
*/#webnus-dashboard button,#webnus-dashboard input,#webnus-dashboard select,#webnus-dashboard textarea{font-family:inherit;font-size:inherit;line-height:inherit}#webnus-dashboard a{color:#337ab7;text-decoration:none}#webnus-dashboard a:focus,#webnus-dashboard a:hover{color:#23527c}#webnus-dashboard a:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}#webnus-dashboard figure{margin:0}#webnus-dashboard img{vertical-align:middle}.w-img-responsive{display:block;max-width:100%;height:auto}.w-img-rounded{border-radius:6px}.w-img-thumbnail{padding:4px;line-height:1w-42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all 0w-2s ease-in-out;-o-transition:all 0w-2s ease-in-out;transition:all 0w-2s ease-in-out;display:inline-block;max-width:100%;height:auto}.w-img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.w-sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.w-sr-only-focusable:active,.w-sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.w-container,.w-container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}[role=button]{cursor:pointer}@media (min-width:768px){.w-container{width:750px}}@media (min-width:992px){.w-container{width:970px}}@media (min-width:1200px){.w-container{width:1170px}}.w-row{margin-left:-15px;margin-right:-15px}.w-col-lg-1,.w-col-lg-10,.w-col-lg-11,.w-col-lg-12,.w-col-lg-2,.w-col-lg-3,.w-col-lg-4,.w-col-lg-5,.w-col-lg-6,.w-col-lg-7,.w-col-lg-8,.w-col-lg-9,.w-col-md-1,.w-col-md-10,.w-col-md-11,.w-col-md-12,.w-col-md-2,.w-col-md-3,.w-col-md-4,.w-col-md-5,.w-col-md-6,.w-col-md-7,.w-col-md-8,.w-col-md-9,.w-col-sm-1,.w-col-sm-10,.w-col-sm-11,.w-col-sm-12,.w-col-sm-2,.w-col-sm-3,.w-col-sm-4,.w-col-sm-5,.w-col-sm-6,.w-col-sm-7,.w-col-sm-8,.w-col-sm-9,.w-col-xs-1,.w-col-xs-10,.w-col-xs-11,.w-col-xs-12,.w-col-xs-2,.w-col-xs-3,.w-col-xs-4,.w-col-xs-5,.w-col-xs-6,.w-col-xs-7,.w-col-xs-8,.w-col-xs-9{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.w-col-xs-1,.w-col-xs-10,.w-col-xs-11,.w-col-xs-12,.w-col-xs-2,.w-col-xs-3,.w-col-xs-4,.w-col-xs-5,.w-col-xs-6,.w-col-xs-7,.w-col-xs-8,.w-col-xs-9{float:left}.w-col-xs-12{width:100%}.w-col-xs-11{width:91.66666667%}.w-col-xs-10{width:83.33333333%}.w-col-xs-9{width:75%}.w-col-xs-8{width:66.66666667%}.w-col-xs-7{width:58.33333333%}.w-col-xs-6{width:50%}.w-col-xs-5{width:41.66666667%}.w-col-xs-4{width:33.33333333%}.w-col-xs-3{width:25%}.w-col-xs-2{width:16.66666667%}.w-col-xs-1{width:8w-33333333%}.w-col-xs-pull-12{right:100%}.w-col-xs-pull-11{right:91.66666667%}.w-col-xs-pull-10{right:83.33333333%}.w-col-xs-pull-9{right:75%}.w-col-xs-pull-8{right:66.66666667%}.w-col-xs-pull-7{right:58.33333333%}.w-col-xs-pull-6{right:50%}.w-col-xs-pull-5{right:41.66666667%}.w-col-xs-pull-4{right:33.33333333%}.w-col-xs-pull-3{right:25%}.w-col-xs-pull-2{right:16.66666667%}.w-col-xs-pull-1{right:8w-33333333%}.w-col-xs-pull-0{right:auto}.w-col-xs-push-12{left:100%}.w-col-xs-push-11{left:91.66666667%}.w-col-xs-push-10{left:83.33333333%}.w-col-xs-push-9{left:75%}.w-col-xs-push-8{left:66.66666667%}.w-col-xs-push-7{left:58.33333333%}.w-col-xs-push-6{left:50%}.w-col-xs-push-5{left:41.66666667%}.w-col-xs-push-4{left:33.33333333%}.w-col-xs-push-3{left:25%}.w-col-xs-push-2{left:16.66666667%}.w-col-xs-push-1{left:8w-33333333%}.w-col-xs-push-0{left:auto}.w-col-xs-offset-12{margin-left:100%}.w-col-xs-offset-11{margin-left:91.66666667%}.w-col-xs-offset-10{margin-left:83.33333333%}.w-col-xs-offset-9{margin-left:75%}.w-col-xs-offset-8{margin-left:66.66666667%}.w-col-xs-offset-7{margin-left:58.33333333%}.w-col-xs-offset-6{margin-left:50%}.w-col-xs-offset-5{margin-left:41.66666667%}.w-col-xs-offset-4{margin-left:33.33333333%}.w-col-xs-offset-3{margin-left:25%}.w-col-xs-offset-2{margin-left:16.66666667%}.w-col-xs-offset-1{margin-left:8w-33333333%}.w-col-xs-offset-0{margin-left:0}@media (min-width:768px){.w-col-sm-1,.w-col-sm-10,.w-col-sm-11,.w-col-sm-12,.w-col-sm-2,.w-col-sm-3,.w-col-sm-4,.w-col-sm-5,.w-col-sm-6,.w-col-sm-7,.w-col-sm-8,.w-col-sm-9{float:left}.w-col-sm-12{width:100%}.w-col-sm-11{width:91.66666667%}.w-col-sm-10{width:83.33333333%}.w-col-sm-9{width:75%}.w-col-sm-8{width:66.66666667%}.w-col-sm-7{width:58.33333333%}.w-col-sm-6{width:50%}.w-col-sm-5{width:41.66666667%}.w-col-sm-4{width:33.33333333%}.w-col-sm-3{width:25%}.w-col-sm-2{width:16.66666667%}.w-col-sm-1{width:8w-33333333%}.w-col-sm-pull-12{right:100%}.w-col-sm-pull-11{right:91.66666667%}.w-col-sm-pull-10{right:83.33333333%}.w-col-sm-pull-9{right:75%}.w-col-sm-pull-8{right:66.66666667%}.w-col-sm-pull-7{right:58.33333333%}.w-col-sm-pull-6{right:50%}.w-col-sm-pull-5{right:41.66666667%}.w-col-sm-pull-4{right:33.33333333%}.w-col-sm-pull-3{right:25%}.w-col-sm-pull-2{right:16.66666667%}.w-col-sm-pull-1{right:8w-33333333%}.w-col-sm-pull-0{right:auto}.w-col-sm-push-12{left:100%}.w-col-sm-push-11{left:91.66666667%}.w-col-sm-push-10{left:83.33333333%}.w-col-sm-push-9{left:75%}.w-col-sm-push-8{left:66.66666667%}.w-col-sm-push-7{left:58.33333333%}.w-col-sm-push-6{left:50%}.w-col-sm-push-5{left:41.66666667%}.w-col-sm-push-4{left:33.33333333%}.w-col-sm-push-3{left:25%}.w-col-sm-push-2{left:16.66666667%}.w-col-sm-push-1{left:8w-33333333%}.w-col-sm-push-0{left:auto}.w-col-sm-offset-12{margin-left:100%}.w-col-sm-offset-11{margin-left:91.66666667%}.w-col-sm-offset-10{margin-left:83.33333333%}.w-col-sm-offset-9{margin-left:75%}.w-col-sm-offset-8{margin-left:66.66666667%}.w-col-sm-offset-7{margin-left:58.33333333%}.w-col-sm-offset-6{margin-left:50%}.w-col-sm-offset-5{margin-left:41.66666667%}.w-col-sm-offset-4{margin-left:33.33333333%}.w-col-sm-offset-3{margin-left:25%}.w-col-sm-offset-2{margin-left:16.66666667%}.w-col-sm-offset-1{margin-left:8w-33333333%}.w-col-sm-offset-0{margin-left:0}}@media (min-width:992px){.w-col-md-1,.w-col-md-10,.w-col-md-11,.w-col-md-12,.w-col-md-2,.w-col-md-3,.w-col-md-4,.w-col-md-5,.w-col-md-6,.w-col-md-7,.w-col-md-8,.w-col-md-9{float:left}.w-col-md-12{width:100%}.w-col-md-11{width:91.66666667%}.w-col-md-10{width:83.33333333%}.w-col-md-9{width:75%}.w-col-md-8{width:66.66666667%}.w-col-md-7{width:58.33333333%}.w-col-md-6{width:50%}.w-col-md-5{width:41.66666667%}.w-col-md-4{width:33.33333333%}.w-col-md-3{width:25%}.w-col-md-2{width:16.66666667%}.w-col-md-1{width:8w-33333333%}.w-col-md-pull-12{right:100%}.w-col-md-pull-11{right:91.66666667%}.w-col-md-pull-10{right:83.33333333%}.w-col-md-pull-9{right:75%}.w-col-md-pull-8{right:66.66666667%}.w-col-md-pull-7{right:58.33333333%}.w-col-md-pull-6{right:50%}.w-col-md-pull-5{right:41.66666667%}.w-col-md-pull-4{right:33.33333333%}.w-col-md-pull-3{right:25%}.w-col-md-pull-2{right:16.66666667%}.w-col-md-pull-1{right:8w-33333333%}.w-col-md-pull-0{right:auto}.w-col-md-push-12{left:100%}.w-col-md-push-11{left:91.66666667%}.w-col-md-push-10{left:83.33333333%}.w-col-md-push-9{left:75%}.w-col-md-push-8{left:66.66666667%}.w-col-md-push-7{left:58.33333333%}.w-col-md-push-6{left:50%}.w-col-md-push-5{left:41.66666667%}.w-col-md-push-4{left:33.33333333%}.w-col-md-push-3{left:25%}.w-col-md-push-2{left:16.66666667%}.w-col-md-push-1{left:8w-33333333%}.w-col-md-push-0{left:auto}.w-col-md-offset-12{margin-left:100%}.w-col-md-offset-11{margin-left:91.66666667%}.w-col-md-offset-10{margin-left:83.33333333%}.w-col-md-offset-9{margin-left:75%}.w-col-md-offset-8{margin-left:66.66666667%}.w-col-md-offset-7{margin-left:58.33333333%}.w-col-md-offset-6{margin-left:50%}.w-col-md-offset-5{margin-left:41.66666667%}.w-col-md-offset-4{margin-left:33.33333333%}.w-col-md-offset-3{margin-left:25%}.w-col-md-offset-2{margin-left:16.66666667%}.w-col-md-offset-1{margin-left:8w-33333333%}.w-col-md-offset-0{margin-left:0}}@media (min-width:1200px){.w-col-lg-1,.w-col-lg-10,.w-col-lg-11,.w-col-lg-12,.w-col-lg-2,.w-col-lg-3,.w-col-lg-4,.w-col-lg-5,.w-col-lg-6,.w-col-lg-7,.w-col-lg-8,.w-col-lg-9{float:left}.w-col-lg-12{width:100%}.w-col-lg-11{width:91.66666667%}.w-col-lg-10{width:83.33333333%}.w-col-lg-9{width:75%}.w-col-lg-8{width:66.66666667%}.w-col-lg-7{width:58.33333333%}.w-col-lg-6{width:50%}.w-col-lg-5{width:41.66666667%}.w-col-lg-4{width:33.33333333%}.w-col-lg-3{width:25%}.w-col-lg-2{width:16.66666667%}.w-col-lg-1{width:8w-33333333%}.w-col-lg-pull-12{right:100%}.w-col-lg-pull-11{right:91.66666667%}.w-col-lg-pull-10{right:83.33333333%}.w-col-lg-pull-9{right:75%}.w-col-lg-pull-8{right:66.66666667%}.w-col-lg-pull-7{right:58.33333333%}.w-col-lg-pull-6{right:50%}.w-col-lg-pull-5{right:41.66666667%}.w-col-lg-pull-4{right:33.33333333%}.w-col-lg-pull-3{right:25%}.w-col-lg-pull-2{right:16.66666667%}.w-col-lg-pull-1{right:8w-33333333%}.w-col-lg-pull-0{right:auto}.w-col-lg-push-12{left:100%}.w-col-lg-push-11{left:91.66666667%}.w-col-lg-push-10{left:83.33333333%}.w-col-lg-push-9{left:75%}.w-col-lg-push-8{left:66.66666667%}.w-col-lg-push-7{left:58.33333333%}.w-col-lg-push-6{left:50%}.w-col-lg-push-5{left:41.66666667%}.w-col-lg-push-4{left:33.33333333%}.w-col-lg-push-3{left:25%}.w-col-lg-push-2{left:16.66666667%}.w-col-lg-push-1{left:8w-33333333%}.w-col-lg-push-0{left:auto}.w-col-lg-offset-12{margin-left:100%}.w-col-lg-offset-11{margin-left:91.66666667%}.w-col-lg-offset-10{margin-left:83.33333333%}.w-col-lg-offset-9{margin-left:75%}.w-col-lg-offset-8{margin-left:66.66666667%}.w-col-lg-offset-7{margin-left:58.33333333%}.w-col-lg-offset-6{margin-left:50%}.w-col-lg-offset-5{margin-left:41.66666667%}.w-col-lg-offset-4{margin-left:33.33333333%}.w-col-lg-offset-3{margin-left:25%}.w-col-lg-offset-2{margin-left:16.66666667%}.w-col-lg-offset-1{margin-left:8w-33333333%}.w-col-lg-offset-0{margin-left:0}}.w-clearfix:after,.w-clearfix:before,.w-container-fluid:after,.w-container-fluid:before,.w-container:after,.w-container:before,.w-row:after,.w-row:before{content:" ";display:table}.w-clearfix:after,.w-container-fluid:after,.w-container:after,.w-row:after{clear:both}.w-center-block{display:block;margin-left:auto;margin-right:auto}.w-pull-right{float:right!important}.w-pull-left{float:left!important}.w-hide{display:none!important}.w-show{display:block!important}.w-invisible{visibility:hidden}.w-text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.w-hidden{display:none!important}.w-affix{position:fixed}.mec-image-popup-wrap{display:none}#wns-be-infobar.sticky{position:fixed;top:32px;background:#fff;z-index:9999;width:82%}.wns-be-main .wns-saved-settings.sticky{position:fixed;width:62.5%;top:111px;z-index:999999999999999999}.mec-export-settings,.mec-import-settings{font-weight:700;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:8px 32px;height:36px;letter-spacing:.2px;line-height:36px;font-size:13px;color:#fff;text-decoration:none;display:inline-block}.mec-export-settings:hover,.mec-import-settings:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5);color:#fff}textarea.mec-import-settings-content{display:block;width:100%;min-height:120px;margin-bottom:25px;padding:10px 15px}.mec-import-options-notification{display:inline-block}.mec-import-options-notification .mec-message-import-error,.mec-import-options-notification .mec-message-import-success{display:inline-block;padding:15px 12px;margin-left:12px;opacity:0;visibility:hidden;font-weight:700}.mec-import-options-notification .mec-message-import-success{opacity:1;visibility:visible;border:2px solid green}.mec-import-options-notification .mec-message-import-error{opacity:1;visibility:visible;border:2px solid #e62117}.mec-export-settings:focus,.mec-import-settings:focus{color:#fff}.mec-import-settings-wrap{position:relative}.mec-loarder-wrap{position:absolute;top:0;bottom:0;left:0;right:0;background:rgba(202,202,202,.7);z-index:9999}.mec-loarder-wrap.mec-settings-loader{top:34px}.mec-loarder{position:absolute;width:64px;height:64px;top:calc(50% - 32px);left:calc(50% - 36px)}.mec-loarder div{display:inline-block;position:absolute;left:6px;width:4px;background:#fff;animation:mec-loarder 1.2s cubic-bezier(0,.5,.5,1) infinite}.mec-loarder div:nth-child(1){left:27px;animation-delay:-.24s;background:#0075ff}.mec-loarder div:nth-child(2){left:36px;animation-delay:-.12s;background:#028bff}.mec-loarder div:nth-child(3){left:45px;animation-delay:0;background:#32a0ff}@keyframes mec-loarder{0%{top:6px;height:51px}100%,50%{top:19px;height:26px}}.w-box.support-page.searchbox{background:#008aff;background:linear-gradient(180deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff;min-height:260px;text-align:center;border-radius:2px}#webnus-dashboard .search-form input{background:rgba(255,255,255,.2);border:none;width:50%;outline:0;color:rgba(255,255,255,.7);font-size:18px;border-radius:4px 0 0 4px;box-shadow:0 1px 2px 0 rgba(0,0,0,.03);-webkit-transition:background .4s,box-shadow .2s;transition:background .4s,box-shadow .2s;padding:20px 32px;margin:0}#webnus-dashboard .search-form button{background:rgba(255,255,255,.2);border:none;padding:20px 32px;margin-left:-2px;color:#fff;border-radius:0 4px 4px 0;font-size:18px;cursor:pointer;-webkit-transition:background .4s,box-shadow .2s;transition:background .4s,box-shadow .2s}#webnus-dashboard .search-form button:hover{background:#fff;color:#3a3c4c}.w-box.support-page.searchbox p{font-size:30px}.search-form input::-webkit-input-placeholder{color:rgba(255,255,255,.7)}.search-form input::-moz-placeholder{color:rgba(255,255,255,.7)}.search-form input:-ms-input-placeholder{color:rgba(255,255,255,.7)}.search-form input:-moz-placeholder{color:rgba(255,255,255,.7)}#webnus-dashboard .search-form input:active,#webnus-dashboard .search-form input:focus{box-shadow:0 10px 20px rgba(0,0,0,.14);background:#fff;color:#3a3c4c}#webnus-dashboard .search-form input:active::-webkit-input-placeholder,#webnus-dashboard .search-form input:focus::-webkit-input-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active::-moz-placeholder,#webnus-dashboard .search-form input:focus::-moz-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active:-ms-input-placeholder,#webnus-dashboard .search-form input:focus:-ms-input-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active:-moz-placeholder,#webnus-dashboard .search-form input:focus:-moz-placeholder{color:#3a3c4c}#webnus-dashboard .w-box.support-page.mec-ticksy{text-align:center;min-height:260px}#webnus-dashboard .w-box.support-page.mec-ticksy p{font-size:20px;width:70%;margin:0 auto;margin-bottom:40px;margin-top:40px}#webnus-dashboard .w-box.support-page.mec-ticksy a{color:#fff;font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:12px 20px;cursor:pointer;margin-bottom:40px;display:inline-block}#webnus-dashboard .w-box.support-page.mec-ticksy a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5)}.mec-faq-accordion>.mec-faq-accordion-content{display:none}#webnus-dashboard .mec-faq-accordion-trigger a{font-size:16px;padding:12px;background:#f1f1f1;display:block;color:#222;line-height:17px;outline:0}.mec-faq-accordion-trigger{margin-bottom:5px;position:relative}#webnus-dashboard .mec-faq-accordion-trigger a:after{font-family:simple-line-icons;content:"\e095";position:absolute;right:12px;font-weight:700}.mec-faq-accordion-content{padding:5px 14px 25px}#webnus-dashboard .mec-faq-accordion-trigger a.active:after{content:"\e082"}#webnus-dashboard .support-page-links a{background-color:#fff;color:#fff;border-radius:2px;padding:13px 24px;font-size:12px;letter-spacing:1px;font-weight:600;text-transform:uppercase}#webnus-dashboard .support-page-links a:hover,#webnus-dashboard .w-box.support-page.videobox .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}#webnus-dashboard .support-page-links{display:inline-block;margin:12px 4px 16px 0}.support-page-links.link-to-doc a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.support-page-links.link-to-videos a{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);box-shadow:0 5px 10px -5px #ff876c}.support-page-links.link-to-articles a{background:#b092e6;background:linear-gradient(95deg,#b092e6 0,#9b70e8 50%,#8e5cea 100%);box-shadow:0 5px 10px -5px #b092e6}.w-box.support-page.articles-box .w-box-content a{display:block;padding:6px 0}#webnus-dashboard .w-box.support-page.videobox .w-button a{color:#fff;font-size:10px;padding:5px 15px;min-height:10px;font-weight:500;border-radius:22px;box-shadow:0 3px 10px -4px #ff5a35;text-shadow:none;background:#ff5a35;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);border:none;transition:.24s}.w-box.support-page.articles-box,.w-box.support-page.faq-box{min-height:500px}.w-box.support-page.videobox{border-radius:2px;min-height:282px;box-shadow:0 1px 6px rgba(0,0,0,.039)!important}#webnus-dashboard .w-box.support-page.videobox .w-button a i{margin-right:6px}.support-page .w-box-content ul{margin-top:5px;padding-left:5px}.support-page .w-box-content ul li{font-size:13px}.support-page .w-box-content ul li i{font-size:17px;vertical-align:text-bottom;margin-right:7px;color:#999}.w-box.mec-activation{background:#fff url(../img/dp-dsb-support.jpg) no-repeat top right}.w-box.mec-activation .w-box-head{color:#40d8f0;width:75%}.w-box.mec-activation .w-box-content{padding:10px 30px}.w-box.mec-activation input[type=radio]{display:none}.w-box.mec-activation input[type=radio]+label{color:#000;font-size:13px;line-height:14px!important;color:#7b7b7b}.w-box.mec-activation input[type=radio].checked+label{color:#40d8f0}.w-box.mec-activation input[type=radio]+label span{display:inline-block;margin:-2px 6px 0 0;vertical-align:middle;cursor:pointer;height:14px;width:14px;text-align:center;background-color:#fff;border:1px solid #d4d4d4;border-radius:100%;box-shadow:0 2px 16px -2px rgba(0,0,0,.2);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;position:relative}.w-box.mec-activation input[type=radio].checked+label span{background-color:#40d8f0;border-color:#40d8f0;box-shadow:0 2px 14px -3px #40d8f0}.w-box.mec-activation input[type=radio].checked+label span:after{content:'';display:block;position:absolute;top:4px;left:4px;width:4px;height:4px;background:#fff;border-radius:100%}.w-box.mec-activation .LicenseType label{padding-right:20px;font-weight:500}.w-box.mec-activation .LicenseField{display:inline-block;position:relative;margin-top:20px}.w-box.mec-activation input[name=MECPurchaseCode]{box-shadow:inset 0 1px 2px rgba(0,0,0,.07);min-width:220px;background:#f4f4f4;border:none;border-radius:33px;width:500px;min-height:50px;margin:0;padding-left:20px;text-align:left}#webnus-dashboard .w-box.mec-activation input[type=submit]{height:40px;line-height:40px;font-weight:600;border:none;cursor:pointer;padding:0 30px;border-radius:33px;color:#fff;letter-spacing:1px;text-transform:uppercase;font-size:12px;background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67;transition:all .28s ease;position:absolute;right:5px;top:4px;font-size:12px}#webnus-dashboard .w-box.mec-activation input[type=submit]:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5)}#MECActivation .MECPurchaseStatus,.addon-activation-form .MECPurchaseStatus{display:inline-block;width:40px;height:40px;text-align:center;padding-top:9px;color:#fff;font-weight:700;font-size:18px;border-radius:50%;padding-top:8px;position:absolute;right:-51px;top:calc(50% - 20px)}.MECPurchaseStatus:after,.MECPurchaseStatus:before{position:absolute;border-radius:50px;background:#fff;content:'';transform:rotate(45deg)}.MECPurchaseStatus.PurchaseError:before{width:22px;height:4px;right:9px;top:18px;transform:rotate(45deg)}.MECPurchaseStatus.PurchaseError:after{width:22px;height:4px;right:9px;top:18px;transform:rotate(-45deg)}.MECPurchaseStatus.PurchaseSuccess:before{width:13px;height:4px;right:19px;top:21px;transform:rotate(45deg)}.MECPurchaseStatus.PurchaseSuccess:after{width:22px;height:4px;right:5px;top:18px;transform:rotate(-45deg)}#MECActivation .MECPurchaseStatus.PurchaseError,.addon-activation-form .MECPurchaseStatus.PurchaseError{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);box-shadow:0 5px 10px -5px #ff876c}#MECActivation .MECPurchaseStatus.PurchaseSuccess,.addon-activation-form .MECPurchaseStatus.PurchaseSuccess{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.wna-spinner-wrap{position:absolute;background:#000;width:509px;height:64px;top:-8px;border-radius:50px;z-index:999;background-color:#fff;opacity:.9}.wna-spinner{width:40px;height:40px;position:relative;margin:6px auto}.wna-spinner .double-bounce1,.wna-spinner .double-bounce2{width:100%;height:100%;border-radius:50%;background-color:#40d8f0;opacity:.6;position:absolute;top:0;left:0;-webkit-animation:sk-bounce 2s infinite ease-in-out;animation:sk-bounce 2s infinite ease-in-out}.wna-spinner .double-bounce2{-webkit-animation-delay:-1s;animation-delay:-1s}#MECActivation .MECLicenseMessage,.addon-activation-form .MECLicenseMessage{margin-top:24px;color:#f64;max-width:570px}.box-addon-activation-toggle-content,.box-addon-activation-toggle-head{display:none}.addon-activation-form h3{font-size:15px;font-weight:400;margin:34px 0 -7px}.box-addon-activation-toggle-head{line-height:1.5;font-size:16px;margin-top:20px;cursor:pointer}.box-addon-activation-toggle-head i{margin-right:7px;cursor:pointer;font-weight:700}#mec-advanced-wraper div:first-child>ul{display:block;margin:5px 0;padding:5px 0;width:390px;border:1px solid #e1e2e3;border-radius:2px;box-shadow:0 1px 3px rgba(0,0,0,.05)}#mec-advanced-wraper div:first-child>ul span{display:none}#mec-advanced-wraper div:first-child>ul *{display:inline-block;background:#fff;font-size:12px;color:#717273;text-align:center}#mec-advanced-wraper div:first-child>ul>li{width:60px;font-weight:700;margin:0 10px 0 0;padding:4px 0;border-right:1px solid #e1e2e3}#mec-advanced-wraper div:first-child>ul>ul>li{margin:0;padding:2px 10px;cursor:pointer;border-radius:2px;transition:all .18s ease}#mec-advanced-wraper div:first-child>ul>ul>li:hover,.mec-active{background:#008aff!important;color:#fff!important}@-webkit-keyframes sk-bounce{0%,100%{-webkit-transform:scale(0)}50%{-webkit-transform:scale(1)}}@keyframes sk-bounce{0%,100%{transform:scale(0);-webkit-transform:scale(0)}50%{transform:scale(1);-webkit-transform:scale(1)}}.w-col-sm-3 .w-box.addon{min-height:auto;box-shadow:0 3px 16px -5px rgba(0,0,0,.1);border-radius:2px}.w-box-child.mec-addon-box{padding:20px 20px}.mec-addon-box-head{border-bottom:1px solid #e8e8e8;padding-bottom:5px;margin-bottom:14px;position:relative}.mec-addon-box-version{position:relative;background:#eaeaea;border-radius:1px;padding:0 8px;color:#5a5a5a;font-size:11px;letter-spacing:.2px;line-height:21px;display:inline-block;margin:10px 0}.mec-addon-box-head img{display:block;width:60px;margin-bottom:10px}.mec-addon-box-title{font-weight:700;font-size:18px;line-height:25px}.mec-addon-box-title a span{color:#444;font-size:15px}.mec-addon-box-content p{color:#777;font-size:13px;letter-spacing:.1px}.mec-addon-box-mec-version{background:#f3f3f3;padding:10px;font-size:13px}#webnus-dashboard .addons-page-links{display:inline-block;margin:12px 4px 16px 0}#webnus-dashboard .addons-page-links a{background-color:#fff;color:#fff;border-radius:2px;padding:13px 24px;font-size:12px;letter-spacing:1px;font-weight:600;text-transform:uppercase}.addons-page-links.link-to-purchase a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.addons-page-links.link-to-install-addons a{background:#b092e6;background:linear-gradient(95deg,#b092e6 0,#9b70e8 50%,#8e5cea 100%);box-shadow:0 5px 10px -5px #b092e6}#webnus-dashboard .addons-page-links a:hover,#webnus-dashboard .w-box.addons-page.videobox .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}.mec-addon-box-footer{margin-top:25px;text-align:center}#webnus-dashboard .mec-addon-box-footer a{background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);margin-top:10px;display:inline-block;text-shadow:none;border:none;transition:.24s;position:relative;margin-right:7px;font-size:12px;font-weight:500;border-radius:7px;padding:9px 18px 8px;width:53px;height:34px;line-height:21px;box-shadow:0 2px 8px -3px #008aff}#webnus-dashboard .mec-addon-box-footer a:last-of-type{margin-right:0}#webnus-dashboard .mec-addon-box-footer a.mec-addon-box-intro{box-shadow:0 3px 10px -4px #ff3535;background:linear-gradient(95deg,#ff6c6c 0,#f55 50%,#ff3535 100%)}#webnus-dashboard .mec-addon-box-footer a:hover{background:#222!important;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%)!important;box-shadow:0 5px 23px -7px rgba(0,0,0,.5)!important;cursor:pointer!important}#webnus-dashboard .mec-addon-box-footer a i{color:#fff;font-size:16px}@media(max-width:1366px){.wns-be-container #wns-be-content{padding:5px 15px 0}.mec-form-row .mec-col-8 label{font-size:10px}#webnus-dashboard .mec-tooltip .box p,.mec-tooltip .box p{font-size:10px}}@media (max-width:780px){.wns-be-container #wns-be-content{padding:10px 0}.wns-be-container .mec-form-row .mec-col-8 label{width:50%;display:block}.wns-be-container .mec-form-row input[type=checkbox]{width:14px;height:14px}.wns-be-container .wns-be-sidebar li .subsection a{padding-left:30px}.wns-be-container .wns-be-sidebar{width:200px}.wns-be-container .wns-be-main{margin-left:200px}.wns-be-container .mec-tooltip .box{min-width:235px!important}.wns-be-container .mec-tooltip .box p{font-size:12px!important}#wns-be-infobar.sticky{position:unset}}@media (max-width:480px){.wns-be-container .wns-be-sidebar{width:100%;position:unset;float:none}.wns-be-container .wns-be-main{margin-left:0;width:100%;position:unset}.wns-be-container{margin-top:50px}.wns-be-container #wns-be-infobar:before{width:100%}.wns-be-container #wns-be-infobar{height:150px}#mec-search-settings{margin-top:80px;width:181px}}.addons-page-error,.addons-page-notice{display:block;margin-top:15px;margin-bottom:0;background:#fff;border-left:4px solid #00a0d2;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);padding:1px 12px}.addons-page-error p,.addons-page-notice p{margin:.5em 0;padding:2px;font-size:13px}.addons-page-error{border-left-color:#dc3232}.mec-addon-box-comingsoon{background:#eaeaea;padding:8px 11px;color:#5a5a5a;font-size:14px;font-weight:500;text-align:center}.mec-addons .w-row .w-col-sm-3:nth-child(4n+1){clear:left}@media (min-width:960px){#webnus-dashboard .mec-addon-box-footer .w-button{text-align:right}}@media (min-width:1401px){.mec-addon-box-title a span{font-size:17px}}.mec-pro-notice{margin-top:24px;line-height:30px}.mec-pro-notice .info-msg{padding:50px 30px;margin-bottom:0}#webnus-dashboard .mec-pro-notice .info-msg{background:#fff;box-shadow:0 1px 16px rgba(0,0,0,.034);text-align:center;color:#000}#webnus-dashboard a.info-msg-link{background:#e66f52;background:linear-gradient(95deg,#ff8162 0,#e66f52 50%,#ff4c20 100%);box-shadow:0 5px 10px -5px #e66f52;border-radius:2px;padding:12px 50px;font-size:16px;line-height:24px;border:none;margin:20px auto 0;color:#fff;transition:all .3s ease;display:inline-block}#webnus-dashboard a.info-msg-link:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}#webnus-dashboard .info-msg p{width:70%;margin:0 auto;line-height:1.8}#webnus-dashboard .info-msg-coupon{font-size:13px;color:#777;max-width:600px;line-height:1.68;margin:25px auto 0}#webnus-dashboard .info-msg-coupon strong{font-weight:700;color:#19ce18}.info-msg .socialfollow{padding-top:20px}.info-msg .socialfollow a{margin:0 2px;display:inline-block}.info-msg .socialfollow a i{background:#96a4b1;color:#fff;padding:6px;border-radius:3px;font-size:18px;box-shadow:0 2px 3px rgba(0,0,0,.1);transition:all .25s}.info-msg .socialfollow a:hover i{background:#008aff}.mec-intro-section .w-box-content{text-align:center}.mec-intro-section .w-box-content.mec-intro-section-welcome{max-width:600px;margin:0 auto}.mec-intro-section .w-box-content.mec-intro-section-welcome h3{font-size:27px}a.mec-intro-section-link-tag.button.button-hero{margin:0 10px 40px}a.mec-intro-section-link-tag.button.button-primary.button-hero{color:#fff!important}a.mec-intro-section-link-tag.button.button-secondary.button-hero{color:#000!important}.mec-intro-section-ifarme iframe{border:1px solid #e7e7e7;border-radius:3px;padding:10px;box-shadow:0 3px 10px -6px rgba(0,0,0,.2)}.w-box-content.mec-intro-section-welcome p{margin-bottom:0}.mec-tooltip a:focus{box-shadow:none}#mec_booking_form .mec-options-fields,#mec_modules_form .mec-options-fields,#mec_settings_form .mec-options-fields,#mec_single_form .mec-options-fields{padding-bottom:150px!important}#mec_taxes_fees_container_toggle{margin-bottom:60px}#mec_taxes_fees_container_toggle{margin-bottom:60px}.wns-be-sidebar li{position:relative}.wns-be-sidebar li .submneu-hover{position:absolute;top:-1px;right:-222px;width:220px;z-index:9;background:#fff;border:1px;border-style:solid;border-color:#dedede;margin:0;overflow:visible;opacity:0;visibility:hidden;transition:all .23s ease;padding-top:8px;padding-bottom:12px}.wns-be-sidebar li:hover{background:#fff}.wns-be-sidebar li:hover .submneu-hover{opacity:1;visibility:visible}.wns-be-sidebar li .submneu-hover a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 26px}.wns-be-sidebar li .submneu-hover a:hover{background:#f6f6f6;color:#222}.wns-be-sidebar li .submneu-hover:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-15px;top:14px;border-right-color:#c5c5c5;right:0}.wns-be-sidebar li .submneu-hover:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-14px;top:14px}.wns-be-sidebar li a:focus,.wns-be-sidebar li:focus{outline:-webkit-focus-ring-color auto 0;border:0;box-shadow:none}@media (max-width:480px){.wns-be-sidebar li .submneu-hover{width:175px;right:0}.wns-be-sidebar li .submneu-hover a{font-size:11px;padding:5px 5px 5px 20px}}.mec-tooltip:hover:after,.mec-tooltip:hover:before{display:none}.mec-tooltip{display:inline-flex;bottom:7px}.mec-tooltip .box{min-width:300px;max-width:600px;display:inline-block;left:26px;top:50%;transform:translateY(-50%);padding:0;margin-top:8px;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.3;position:absolute;z-index:9999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s}#webnus-dashboard .mec-tooltip .box p,.mec-tooltip .box p{color:#fff;font-size:14px;line-height:1.3;margin:0;font-style:normal}.mec-tooltip:hover .box{visibility:visible;opacity:1}.mec-tooltip:hover .box{padding:20px;border-radius:8px}.mec-tooltip .box h5{color:#fff;font-size:17px;font-weight:600;margin:-30px -20px;padding:15px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #30353a;border-radius:6px 6px 0 0;z-index:9999}#webnus-dashboard .mec-tooltip .box p a,.mec-tooltip .box p a{color:#40d9f1;margin-top:10px;margin-left:0;font-weight:400;position:relative;text-decoration:none;display:block;width:max-content}.mec-tooltip .box a:hover{color:#f90}.mec-tooltip .box:after{display:block;position:absolute!important;top:100%!important;right:50%!important;margin-top:-6px!important;margin-right:-6px!important;width:12px!important;height:24px!important;overflow:hidden!important;transform:rotate(-90deg)!important}.mec-tooltip .box:before{display:block;content:''!important;position:absolute!important;width:12px;height:12px;left:-10px!important;top:50%!important;transform:translate(50%,-50%) rotate(-45deg)!important;background-color:#535a61!important;box-shadow:0 8px 9px -4px #535a61!important;z-index:0!important}.mec-tooltip .box.top{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-tooltip .box.top:after{top:50%!important;right:100%!important}.mec-tooltip .box.top:before{left:50%!important;top:100%!important}.mec-tooltip .box.bottom{left:50%;top:auto;bottom:0;transform:translate(-50%,100%);margin-bottom:-20px;margin-left:-10px}.mec-tooltip .box.bottom:after{top:0!important;right:50%!important;background-color:#3a3f44!important}.mec-tooltip .box.bottom:before{left:50%!important;top:-7px!important;transform:translateX(-50%);background-color:#3a3f44!important}.mec-tooltip .box.left{left:auto;right:26px;top:50%;transform:translateY(-50%)}.mec-tooltip .box.left:before{right:0!important;left:auto!important;top:50%!important}form#mec_reg_fields_form input[type=radio]:before{content:"";display:inline-block;background:#fff;border-radius:18px;width:14px;height:14px;margin:-1px 0 0 -2px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32)}form#mec_reg_fields_form input[type=radio]:checked:before{border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff;width:4px;height:4px}form#mec_reg_fields_form input[type=radio]{min-height:0;margin-right:6px}form#mec_reg_fields_form label{margin-right:20px}@media(min-width:1200px) and (max-width:1366px){.mec-tooltip .box.left{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-tooltip .box.left:after{top:50%!important;right:100%!important}.mec-tooltip .box.left:before{left:50%!important;top:100%!important}.mec-tooltip .box{min-width:225px}.mec-tooltip .box h5{font-size:15px}.mec-tooltip .box .content{font-size:12px}}@media(max-width:1366px){.wns-be-container .wns-be-group-tab p{margin-top:0}}.mec-addons-notification-box-wrap .w-col-sm-12{padding:0}.mec-addons-notification-box-wrap img{width:auto}.mec-addons-notification-box-image{width:555px;display:inline-block;vertical-align:top}.mec-addons-notification-box-content{width:calc(100% - 559px);display:inline-block}.mec-addons-notification-box-content p{margin-top:1%;line-height:1.5;font-size:16px}.mec-addons-notification-box-content .w-box-content{padding-top:0;padding-bottom:0}.mec-addons-notification-box-content ol{font-size:16px}.mec-addons-notification-box-content a{background:#38d5ed;color:#fff!important;padding:10px 26px;margin-top:5px;display:inline-block;border-radius:3px;text-transform:capitalize;font-size:16px;letter-spacing:.4px;transition:all .1s ease;font-weight:600;text-decoration:none}.mec-addons-notification-box-content a:hover{background:#000}.w-clearfix.w-box.mec-addons-notification-box-wrap span{right:0;left:unset;cursor:pointer;background:#fff;padding:0 16px}.w-clearfix.w-box.mec-addons-notification-box-wrap span i{font-size:28px;vertical-align:sub;color:#f2113e}.wns-be-container .mec-addons-notification-wrap{padding:0;margin:0}.wns-be-container .mec-addons-notification-wrap .w-col-sm-12{padding:0}.wns-be-container .w-box{margin-top:0}.wns-be-container.mec-addons-notification-set-box{margin-right:15px;margin-top:50px;margin-bottom:27px}@media(max-width:1200px){.mec-addons-notification-box-content,.mec-addons-notification-box-image{width:100%;display:block}.mec-addons-notification-box-image{text-align:center}}@media(max-width:768px){.mec-addons-notification-box-image img{width:100%;height:auto}}body.rtl .wns-be-sidebar{width:260px;float:right;position:relative}body.rtl .wns-be-main{margin-left:0;border-left:0;margin-right:260px;border-right:1px solid #dedede}body.rtl .w-box.mec-activation .LicenseField{direction:rtl}body.rtl .w-box.mec-activation input[name=MECPurchaseCode]{text-align:right;padding-right:20px}body.rtl #MECActivation .MECPurchaseStatus,body.rtl .addon-activation-form .MECPurchaseStatus{right:auto;left:-51px}body.rtl #webnus-dashboard .w-box.mec-activation input[type=submit]{right:auto;left:5px}body.rtl .wns-be-sidebar .wns-be-group-menu li a{padding:13px 20px 13px 4px}body.rtl .wns-be-sidebar .wns-be-group-tab-link-a span.wns-be-group-menu-title{padding-left:0;padding-right:24px}body.rtl .wns-be-sidebar .has-sub span.extra-icon{float:left}body.rtl .wns-be-sidebar .wns-be-group-tab-link-a span.extra-icon i{right:auto;left:10px}body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:after,body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:transparent;border-left-color:#fff;right:auto;left:-1px;top:10px}body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{border-right-color:transparent;border-left-color:#c5c5c5;right:auto;left:0}body.rtl .mec-col-1,body.rtl .mec-col-10,body.rtl .mec-col-11,body.rtl .mec-col-12,body.rtl .mec-col-2,body.rtl .mec-col-3,body.rtl .mec-col-4,body.rtl .mec-col-5,body.rtl .mec-col-6,body.rtl .mec-col-7,body.rtl .mec-col-8,body.rtl .mec-col-9{float:right;margin:0 1% 0 0}body.rtl .wns-be-sidebar li .submneu-hover{right:auto;left:-222px}body.rtl .wns-be-sidebar li .submneu-hover:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:auto;right:-1px;top:14px}body.rtl #mec_styles_form #mec_styles_CSS{direction:ltr}body.rtl .w-box.mec-activation{-moz-transform:scaleY(-1);-o-transform:scaleY(-1);-webkit-transform:scaleY(-1);transform:scaleX(-1)}body.rtl .w-box.mec-activation .w-box-content,body.rtl .w-box.mec-activation .w-box-head{-moz-transform:scaleY(-1);-o-transform:scaleY(-1);-webkit-transform:scaleY(-1);transform:scaleX(-1);display:block}body.rtl .w-box.mec-activation .w-box-head{width:100%}body.rtl .wns-be-container #wns-be-infobar:before{left:auto;right:0}body.rtl .wns-be-container .dpr-btn.dpr-save-btn{float:left}body.rtl .wns-be-container .wns-be-group-tab h2:before,body.rtl .wns-be-container .wns-be-group-tab h4:before{left:auto;right:0;margin-right:0;margin-left:5px}body.rtl #mec_gateways_form .mec-tooltip{float:left}.mec-details-addons-container{margin-top:20px}.mec-details-addons-wrap img{float:left;width:19%;margin-right:17px}.mec-details-addons-wrap{clear:both;margin-bottom:80px;display:block;position:relative}.mec-details-addons-wrap a{text-decoration:none}.mec-details-addons-wrap p{float:left;width:340px;margin-top:0;margin-bottom:30px}.mec-details-addons-title{font-weight:700}.mec-details-addons-title a{color:#444}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx{border-radius:10px!important;box-shadow:0 4px 38px rgba(0,0,0,.14)!important}body .crisp-client .crisp-1rjpbb7 .crisp-13qutdl,body .crisp-client .crisp-1rjpbb7 .crisp-13qutdl *,body .crisp-client .crisp-1rjpbb7 .crisp-9dgo7z,body .crisp-client .crisp-1rjpbb7 .crisp-9dgo7z *{font-family:proxima-nova,-apple-system,BlinkMacSystemFont,"Segoe UI",Catamaran,sans-serif!important}body .crisp-client .crisp-1rjpbb7 .crisp-145mbcr,body .crisp-client .crisp-1rjpbb7 .crisp-1jrqqbm:hover{background-color:#fff!important}body .crisp-client .crisp-1rjpbb7 .crisp-14u434g{border-color:#e7e8e9!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-1bkorcf .crisp-1vzg1qq{font-size:20px!important;width:14px!important;height:19px!important;opacity:.85}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-1bkorcf .crisp-1vzg1qq:hover{opacity:.99}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-1sps3eb .crisp-1vd2grm .crisp-12w4w1a{font-size:13px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-1sps3eb .crisp-1vd2grm .crisp-12w4w1a::-webkit-input-placeholder{color:#717273!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=visitor] .crisp-z89v5n .crisp-162m9xf{background-color:#008aff!important;color:#fff!important;box-shadow:none!important;border-radius:5px!important;padding:15px 25px 15px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=visitor] .crisp-z89v5n .crisp-162m9xf .crisp-1o2g4mc{color:#fff!important;font-size:13px!important;letter-spacing:.3px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-z89v5n .crisp-162m9xf{background-color:#f1f2f3!important;border-radius:5px!important;padding:15px 25px 15px!important;box-shadow:none!important;color:#121314!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-type=audio] .crisp-z89v5n .crisp-162m9xf{background-color:#d1d7dc!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=operator] .crisp-z89v5n .crisp-1o2g4mc{color:#121314!important;-webkit-text-fill-color:#121314!important;font-size:13px!important;letter-spacing:.3px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-mkirz6 .crisp-12qaym5 .crisp-39hskb{opacity:.4;margin-right:5px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-mkirz6 .crisp-12qaym5 .crisp-ehr6mw{opacity:.68;font-size:12px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg{background-image:linear-gradient(125deg,#008aff -10%,#0066b1 100%)!important;height:110px!important;padding-top:35px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-1uw6f17,body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-85evuk,body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-nu40j6{font-size:17px!important;line-height:28px!important;padding-top:10px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-kquevr .crisp-x94m06{background-color:#008aff!important;background-image:linear-gradient(125deg,#008aff -10%,#008af0 100%)!important;box-shadow:0 5px 34px -6px #008aff!important}body .crisp-client .crisp-1rjpbb7 .crisp-4oo1n4{background-color:transparent!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx[data-chat-status=ongoing] .crisp-1784wh6 .crisp-1xmtdlg .crisp-172kolj{margin-top:-10px!important}body .crisp-client .crisp-1rjpbb7[data-last-operator-face=false] .crisp-1rf4xdh .crisp-kquevr .crisp-x94m06 .crisp-16qgsyi .crisp-101bp3x[data-is-ongoing=false]{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1OCIgaGVpZ2h0PSI1NSIgdmlld0JveD0iMCAwIDU4IDU1Ij4NCiAgPGcgaWQ9ImNoYXQtc3ZncmVwby1jb21fMV8iIGRhdGEtbmFtZT0iY2hhdC1zdmdyZXBvLWNvbSAoMSkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgLTEuNSkiPg0KICAgIDxwYXRoIGlkPSJQYXRoXzEiIGRhdGEtbmFtZT0iUGF0aCAxIiBkPSJNMjksMS41YzE2LjAxNiwwLDI5LDExLjY0MSwyOSwyNmEyNC4wMSwyNC4wMSwwLDAsMS00LjgsMTQuMzE4Yy40LDQuNzQ1LDEuNTQyLDExLjQyOCw0LjgsMTQuNjgyLDAsMC05Ljk0My0xLjQtMTYuNjc3LTUuNDYybC0uMDIyLjAwOWMtMi43NjQtMS44LTUuNTMyLTMuNjU2LTYuMS00LjEyNmExLDEsMCwwLDAtMS4zMy0uMjc3LDEuMDE3LDEuMDE3LDAsMCwwLS40ODkuODQ4Yy0uMDEuNjIyLjAwNS43ODQsNS41ODUsNC40MjFBMzEuOTE0LDMxLjkxNCwwLDAsMSwyOSw1My41Yy0xNi4wMTYsMC0yOS0xMS42NDEtMjktMjZTMTIuOTg0LDEuNSwyOSwxLjVaIiBmaWxsPSIjZmZmIi8+DQogICAgPGNpcmNsZSBpZD0iRWxsaXBzZV8xIiBkYXRhLW5hbWU9IkVsbGlwc2UgMSIgY3g9IjMiIGN5PSIzIiByPSIzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMiAyNC41KSIgZmlsbD0iIzAwOGFmZiIvPg0KICAgIDxjaXJjbGUgaWQ9IkVsbGlwc2VfMiIgZGF0YS1uYW1lPSJFbGxpcHNlIDIiIGN4PSIzIiBjeT0iMyIgcj0iMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjYgMjQuNSkiIGZpbGw9IiMwMDhhZmYiLz4NCiAgICA8Y2lyY2xlIGlkPSJFbGxpcHNlXzMiIGRhdGEtbmFtZT0iRWxsaXBzZSAzIiBjeD0iMyIgY3k9IjMiIHI9IjMiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQwIDI0LjUpIiBmaWxsPSIjMDA4YWZmIi8+DQogIDwvZz4NCjwvc3ZnPg0K)!important;height:31px!important;top:16px!important;left:14px!important}body .csh-category-item a h6{text-align:left}.mec-form-row.mec-syn-schedule{background:#f7f7f7;padding:20px;border:1px solid #eee;box-shadow:0 1px 11px rgba(0,0,0,.034);margin-bottom:20px}.mec-form-row.mec-syn-schedule p{padding-left:26px}.mec-form-row.mec-syn-schedule h2{margin-top:0}.mec-form-row.mec-syn-schedule h4{margin:10px 0}li.wns-be-group-menu-li.mec-settings-menu .mec-settings-submenu{position:absolute;top:-1px;right:-222px;width:220px;z-index:9;background:#fff;border:1px;border-style:solid;border-color:#dedede;margin:0;overflow:visible;opacity:0;visibility:hidden;transition:all .23s ease;padding-top:8px;padding-bottom:12px}li.wns-be-group-menu-li.mec-settings-menu:hover>.mec-settings-submenu{visibility:visible;opacity:1}.mec-settings-menu .mec-settings-submenu:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-15px;top:14px;border-right-color:#c5c5c5;right:0}.mec-settings-menu .mec-settings-submenu:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-14px;top:14px}.wns-be-sidebar .mec-settings-menu .mec-settings-submenu a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 26px}.wn-mec-select{width:32.33333333%!important;clear:unset!important}.wn-mec-select{-webkit-tap-highlight-color:transparent;background-color:#fff;border-radius:3px;border:1px solid #ddd;margin-bottom:8px;position:relative;text-align:left!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;box-shadow:0 3px 13px -5px rgba(0,0,0,.1),inset 0 1px 2px rgba(0,0,0,.07)}.wn-mec-select:hover{border-color:#dbdbdb}.wn-mec-select.open .list{overflow:unset;width:100%;margin:0}.wn-mec-select .list{background-color:#fff;border-radius:2px;box-shadow:0 2px 33px -2px rgba(0,0,0,.2),inset 0 1px 2px rgba(0,0,0,.07);box-sizing:border-box;margin-top:4px;opacity:0;overflow:hidden;padding:0;pointer-events:none;position:absolute;top:100%;left:0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0;-webkit-transform:scale(.75) translateY(-21px);-ms-transform:scale(.75) translateY(-21px);transform:scale(.75) translateY(-21px);-webkit-transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;z-index:9}.wn-mec-select{-webkit-tap-highlight-color:transparent;background-color:#fff;border-radius:5px;border:solid 1px #e8e8e8;box-sizing:border-box;clear:both;cursor:pointer;display:block;float:left;font-family:inherit;font-size:14px;font-weight:400;height:42px;line-height:40px;outline:0;padding-left:18px;padding-right:30px;position:relative;text-align:left!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap;width:auto}.wn-mec-select:hover{border-color:#dbdbdb}.wn-mec-select:after{border-bottom:2px solid #999;border-right:2px solid #999;content:'';display:block;height:5px;margin-top:-4px;pointer-events:none;position:absolute;right:12px;top:50%;-webkit-transform-origin:66% 66%;-ms-transform-origin:66% 66%;transform-origin:66% 66%;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:all .15s ease-in-out;transition:all .15s ease-in-out;width:5px}.wn-mec-select.open:after{-webkit-transform:rotate(-135deg);-ms-transform:rotate(-135deg);transform:rotate(-135deg)}.wn-mec-select.open .list{opacity:1;pointer-events:auto;-webkit-transform:scale(1) translateY(0);-ms-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}.wn-mec-select.disabled{border-color:#ededed;color:#999;pointer-events:none}.wn-mec-select.disabled:after{border-color:#ccc}.wn-mec-select.wide{width:100%}.wn-mec-select.wide .list{left:0!important;right:0!important}.wn-mec-select.right{float:right}.wn-mec-select.right .list{left:auto;right:0}.wn-mec-select.small{font-size:12px;height:36px;line-height:34px}.wn-mec-select.small:after{height:4px;width:4px}.wn-mec-select .list{background-color:#fff;border-radius:5px;box-shadow:0 0 0 1px rgba(68,68,68,.11);box-sizing:border-box;margin-top:4px;opacity:0;overflow:hidden;padding:0;pointer-events:none;position:absolute;top:100%;left:0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0;-webkit-transform:scale(.75) translateY(-21px);-ms-transform:scale(.75) translateY(-21px);transform:scale(.75) translateY(-21px);-webkit-transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;z-index:9}.wn-mec-select .list:hover .option:not(:hover){background-color:transparent!important}.wn-mec-select .option{cursor:pointer;font-weight:400;list-style:none;min-height:40px;outline:0;text-align:left;position:relative;font-size:12px!important;padding:1px 12px!important;margin:0!important;line-height:28px!important;min-height:28px!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.wn-mec-select .option .wn-hover-img-sh img{position:absolute;padding:3px;top:-1px;left:100%;box-shadow:0 4px 42px -5px rgba(0,0,0,.16);visibility:hidden;opacity:0;border:1px solid #e3e3e3;border-radius:2px;z-index:99999999;background:#fff}.wn-mec-select .option:hover .wn-hover-img-sh img{visibility:visible;opacity:1}.wn-mec-select .option.focus,.wn-mec-select .option.selected.focus,.wn-mec-select .option:hover{background-color:#f6f6f6}.wn-mec-select .option.selected{font-weight:700}.wn-mec-select .option.disabled{background-color:transparent;color:#999;cursor:default}.no-csspointerevents .wn-mec-select .list{display:none}.no-csspointerevents .wn-mec-select.open .list{display:block}.mec-custom-nice-select ul.list li.option{width:30%!important;float:left!important;min-height:135px!important;height:135px;margin:1.66%!important;box-sizing:border-box;text-align:center;padding:10px!important;border-radius:3px;border:1px solid #eee;box-shadow:0 1px 3px rgba(0,0,0,.025);background:#fff!important}.mec-custom-nice-select ul.list li.option:hover{box-shadow:0 2px 7px rgba(0,0,0,.06);borde-color:#e0e0e0}.mec-custom-nice-select .list:hover .option:not(:hover),.mec-custom-nice-select ul.list:hover li.option{background:#fff!important}.mec-custom-nice-select ul.list{min-width:600px!important;padding:20px 10px!important;background:#fcfbfd;border:1px solid #e9e9e9;box-shadow:0 1px 4px rgba(0,0,0,.05)}.mec-custom-nice-select ul.list li.option.selected{border:1px solid #40d9f1;box-shadow:0 1px 8px -3px #40d9f1 inset;color:#00cae6;padding:12px 0 0 0!important}.mec-custom-nice-select .wn-img-sh img{margin:4px 0 1px 1px;line-height:1;max-width:68px;max-height:56px;filter:grayscale(1);-webkit-filter:grayscale(1);transition:all .22s ease;-webkit-transition:all .22s ease;-moz-transition:all .22s ease;-ms-transition:all .22s ease;-o-transition:all .22s ease}.wn-mec-select .option.focus .wn-img-sh img,.wn-mec-select .option.selected.focus .wn-img-sh img,.wn-mec-select .option:hover .wn-img-sh img{background-color:#f6f6f6;filter:grayscale(0);-webkit-filter:grayscale(0)}@media(max-width:768px){.wn-mec-select{width:45%!important}.mec-custom-nice-select ul.list{margin-left:-24px!important;min-width:404px!important}.mec-custom-nice-select ul.list li.option{width:46.6%!important}.wn-hover-img-sh{display:none}}@media(max-width:480px){.wn-mec-select{width:100%!important}.mec-custom-nice-select ul.list{min-width:337px!important}}@media(max-width:320px){.mec-custom-nice-select ul.list li.option{width:100%!important}.mec-custom-nice-select ul.list{min-width:298px!important}}.mec-sed-methods li{line-height:28px;padding-left:38px;position:relative}.mec-sed-methods li:before{margin-right:0}.mec-sed-methods li:before{border-radius:18px}.mec-custom-nice-select ul.list li .wn-mec-text:after,.mec-sed-methods li:before{content:"";position:absolute;display:inline-block;background:#fff;border-radius:2px;width:12px;height:12px;margin:-1px 0 0 -1px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32);border-radius:50%}.mec-custom-nice-select ul.list li .wn-mec-text{position:relative;padding-top:0;padding-bottom:28px}.mec-custom-nice-select ul.list li .wn-mec-text:after{left:calc(50% - 7px);top:auto;bottom:1px}.mec-custom-nice-select ul.list li .wn-img-sh{line-height:1}.mec-sed-methods li:before{left:9px;top:calc(50% - 7px)}.mec-custom-nice-select ul.list li.option.selected .wn-mec-text:after,.mec-sed-methods li.active:before{width:4px;height:4px;border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff}.menu-icon-mec-books .wp-menu-image img,.toplevel_page_mec-intro .wp-menu-image img{width:18px!important;padding-top:7px!important}.mec-add-booking-tabs-wrap,.mec-add-event-tabs-wrap,.mec-create-shortcode-tabs-wrap{display:flex;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox}.mec-add-booking-tabs-left,.mec-add-event-tabs-left,.mec-create-shortcode-tabs-left{flex:1}.mec-add-booking-tabs-right,.mec-add-event-tabs-right,.mec-create-shortcode-tabs-right{flex:6}a.mec-add-booking-tabs-link,a.mec-add-event-tabs-link,a.mec-create-shortcode-tabs-link{display:block}.mec-booking-tab-content,.mec-create-shortcode-tab-content,.mec-event-tab-content{display:none;transition:all .3s ease}.mec-booking-tab-content.mec-tab-active,.mec-create-shortcode-tab-content.mec-tab-active,.mec-event-tab-content.mec-tab-active{display:block}.mec-add-booking-tabs-wrap,.mec-add-event-tabs-wrap{background:#fff;margin:-6px -12px -12px}.mec-create-shortcode-tabs-wrap{margin:-30px -22px -42px}.mec-add-booking-tabs-left,.mec-add-event-tabs-left,.mec-create-shortcode-tabs-left{padding:0 0 38px;background:#fff;min-width:210px}.mec-add-booking-tabs-left a,.mec-add-event-tabs-left a,.mec-create-shortcode-tabs-left a{line-height:16px;font-size:13px;font-weight:600;letter-spacing:.3px;color:#6a6f77;text-decoration:none;background:#f7f7f7;padding:13px 20px;border-bottom:1px solid #e3e3e3;outline:0;box-shadow:none;transition:all .2s ease}.mec-add-booking-tabs-left a:hover,.mec-add-event-tabs-left a:hover,.mec-create-shortcode-tabs-left a:hover{color:#008aff;background:#fff}.mec-add-booking-tabs-left a.mec-tab-active,.mec-add-event-tabs-left a.mec-tab-active,.mec-create-shortcode-tabs-left a.mec-tab-active{background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff;margin:0 -6px;border-radius:5px;box-shadow:0 2px 12px -5px #36a2ff;border-bottom-color:transparent;position:relative}.mec-add-booking-tabs-right,.mec-add-event-tabs-right,.mec-create-shortcode-tabs-right{padding:0 30px 40px;border-left:1px solid #e2e2e2}.mec-booking-tab-content.mec-tab-active,.mec-create-shortcode-tab-content.mec-tab-active,.mec-event-tab-content.mec-tab-active{animation:fadeEffect2 .31s}@media (max-width:550px){.mec-add-booking-tabs-left,.mec-add-event-tabs-left,.mec-create-shortcode-tabs-left{min-width:100px}.mec-add-booking-tabs-left a,.mec-add-event-tabs-left a,.mec-create-shortcode-tabs-left a{font-size:11px;padding:12px 8px;line-height:1.2;letter-spacing:0}}@keyframes fadeEffect2{from{opacity:0;transform:translateX(11px)}to{opacity:1;transform:translateX(0)}}.mec-form-row .mec-col-8 label{padding-right:20px}.mec-calendar-metabox .wn-mec-select{border:solid 1px #ddd;border-radius:2px;height:40px;line-height:38px;padding-left:10px;box-shadow:0 3px 10px -2px rgba(0,0,0,.05),inset 0 1px 2px rgba(0,0,0,.02)}.mec-calendar-metabox .wn-mec-select.open .list{border-radius:0 0 2px 2px;box-shadow:0 0 0 1px #ddd,0 2px 6px rgba(0,0,0,.07)}.mec-calendar-metabox .mec-custom-nice-select.open ul.list{border-radius:3px;box-shadow:0 2px 6px rgba(0,0,0,.07);margin-left:0!important;transform:translateX(-50%);left:50%}.mec-custom-nice-select ul.list li.option.selected .wn-mec-text:after{border:6px solid #40d9f1;box-shadow:0 3px 16px -3px #40d9f1}.mec-form-row input[type=checkbox]{background-color:#fff;border:1px solid #cacece;box-shadow:0 1px 2px rgba(0,0,0,.05);padding:9px;border-radius:3px;min-width:24px;min-height:24px;display:inline-block;transition:all .18s ease;outline:0;margin:2px 4px 4px 0}.mec-form-row input[type=checkbox]:focus{outline:0}.mec-form-row input[type=checkbox]:hover{border-color:#62b6ff}.mec-form-row input[type=checkbox]:checked{box-shadow:0 1px 6px -2px #008aff;border-color:#008aff;background:#008aff;border-radius:2px;position:relative}.mec-form-row.mec-switcher input[type=checkbox]{position:absolute}.mec-form-row input[type=checkbox]:checked:before{content:"";font:normal;position:absolute;top:12px;left:8px;border-right:2px solid transparent;border-bottom:2px solid transparent;transform:rotate(45deg);transform-origin:0 100%;color:#fff;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards}@keyframes checkbox-check{0%{width:0;height:0;border-color:#fff;transform:translate3d(0,0,0) rotate(45deg)}33%{width:5px;height:0;transform:translate3d(0,0,0) rotate(45deg)}100%{width:5px;height:11px;border-color:#fff;transform:translate3d(0,-11px,0) rotate(45deg)}}.mec-form-row input+span.mec-tooltip,.mec-form-row select+span.mec-tooltip{bottom:10px}.mec-form-row label+span.mec-tooltip{bottom:8px}.mec-form-row textarea+span.mec-tooltip{bottom:auto;vertical-align:top;top:12px}.mec-form-row span+span.mec-tooltip{bottom:0;vertical-align:middle}.mec-form-row .mec-col-8 input[type=text],.mec-form-row .mec-col-8 select,.mec-form-row .mec-col-8 span.mec-archive-skins{vertical-align:top}.mec-form-row input:disabled{opacity:.6;background:#f6f6f6}.wns-be-group-tab h5{font-size:16px;font-weight:600;color:#444;margin:45px 0 25px}.mec-form-row textarea{height:auto;margin-bottom:0;min-height:60px}.mec-form-row .wp-picker-container input[type=text].wp-color-picker{height:25px;vertical-align:top;margin:0}.mec-form-row .wp-picker-container label{margin:0}.mec-image-select-wrap li span:hover{border-color:#fff;box-shadow:0 1px 8px rgba(0,0,0,.12)}.mec-message-categories li.mec-acc-label:after{content:"\e604";font-family:simple-line-icons;speak:none;font-style:normal;font-weight:400;display:block;font-size:13px;color:#999;position:absolute;right:27px;top:26px}.mec-message-categories>li.mec-acc-label[data-status=open]:after{content:"\e607";color:#008aff}.mec-message-categories>li.mec-acc-label[data-status=open]{color:#008aff}.mec-message-categories>li.mec-acc-label:last-of-type{border-bottom:none}.mec-message-categories>li.mec-acc-label[data-status=open]{border-bottom:1px solid #e6e6e6}.mec-form-row ul.mec-message-categories{box-shadow:0 2px 16px rgba(0,0,0,.03);border-radius:5px;overflow:hidden;margin-top:30px;background:#f5f5f5;border:2px solid #e6e6e6;max-width:700px}.mec-form-row ul.mec-message-categories li ul{padding:10px 40px 40px;margin:25px -30px -25px;background:#f5f5f5;box-shadow:inset 0 4px 7px rgba(0,0,0,.04);cursor:default}.mec-form-row ul.mec-message-categories ul label{margin:25px 8px 7px;font-weight:600!important;font-size:13px;color:#888;cursor:default}.wns-be-sidebar li:hover a i,.wns-be-sidebar>li:hover a{color:#008aff}.mec-form-row.mec-skin-list-date-format-container input[type=text]{margin-right:2px}.mec-form-row.mec-skin-list-date-format-container span.mec-tooltip{top:2px}.mec-calendar-metabox .mec-form-row input[type=checkbox],.mec-meta-box-fields .mec-form-row input[type=checkbox]{margin-right:6px}.mec-meta-box-fields .mec-form-row .button:not(.wp-color-result){height:37px;margin-top:1px;box-shadow:inset 0 2px 4px #fff,inset 0 -2px 4px rgba(0,0,0,.05),0 2px 2px rgba(0,0,0,.06)}#mec-read-more .mec-form-row span.mec-tooltip{top:2px;left:-4px}#mec-search-settings{border-radius:21px;min-height:32px;box-shadow:inset 0 1px 2px rgba(0,0,0,.06);padding:9px 10px 12px 34px;margin-right:10px;color:#7c838a;font-size:13px;width:260px;background:#f5f5f5;border:none;z-index:1;transition:all .18s ease;outline:0}#mec-search-settings:focus{background:#fff;box-shadow:0 1px 6px rgba(0,0,0,.07),0 0 0 1px #e6e6e6;width:270px}.mec-search-settings-wrap{display:inline-block;position:relative}.mec-search-settings-wrap i{position:absolute;left:14px;top:14px;font-size:13px;color:#7e8c98;display:block;z-index:2}#mec-search-settings::-webkit-input-placeholder{color:#7c838a}#mec-search-settings::-moz-placeholder{color:#7c838a}#mec-search-settings:-ms-input-placeholder{color:#7c838a}#mec-search-settings:-moz-placeholder{color:#7c838a}.ui-datepicker.ui-widget{border:1px solid #e8e8e8;box-shadow:0 1px 9px rgba(0,0,0,.12)}.ui-datepicker.ui-widget select{font-weight:600;font-size:12px;border-radius:2px;padding:2px 10px;margin:1px 3px 5px}.ui-datepicker.ui-widget table{border-spacing:2px}.ui-datepicker.ui-widget td,.ui-datepicker.ui-widget tr{padding:0;background:0 0!important}.ui-datepicker.ui-widget td a{color:#777;font-weight:600;width:30px;height:30px;line-height:30px;display:inline-block;border-radius:33px;padding:0;background:#fff;transition:all .2s ease}.ui-datepicker.ui-widget td a.ui-state-active,.ui-datepicker.ui-widget td a:hover{background:#40d9f1;color:#fff}.ui-datepicker.ui-widget .ui-datepicker-next,.ui-datepicker.ui-widget .ui-datepicker-prev{color:#40d9f1;width:30px;height:30px;line-height:30px;display:inline-block;text-align:center;border-radius:33px;background:#ecfcff;transition:all .2s ease}.ui-datepicker.ui-widget .ui-datepicker-next:hover,.ui-datepicker.ui-widget .ui-datepicker-prev:hover{background:#fff;box-shadow:0 0 7px -3px rgba(0,0,0,.4)}#mec-wrap{width:92%;margin:20px auto;max-width:1384px}#mec-wrap h2.nav-tab-wrapper{margin-bottom:40px;padding:0;border:none;margin-top:35px;clear:both;background:#fff;box-shadow:0 3px 12px -4px rgba(0,0,0,.13)}#mec-wrap .nav-tab-wrapper .nav-tab{position:relative;padding:28px 22px;border:none;margin:0;background:#fff;font-size:13px;color:#444;outline:0;box-shadow:none}#mec-wrap .nav-tab-wrapper .nav-tab:hover{color:#008aff}#mec-wrap .nav-tab-wrapper .nav-tab:after{content:"";display:inline-block;width:1px;height:30%;position:absolute;right:0;top:35%;background:#e9e9e9}#mec-wrap .nav-tab-wrapper .nav-tab-active,#mec-wrap .nav-tab-wrapper .nav-tab-active:focus,#mec-wrap .nav-tab-wrapper .nav-tab-active:focus:active,#mec-wrap .nav-tab-wrapper .nav-tab-active:hover{background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff;outline:0;box-shadow:0 5px 25px -7px #008aff;margin-left:-1px;z-index:2}#mec-wrap .nav-tab-wrapper .nav-tab-active:after{content:'';position:absolute;display:block;background:0 0;top:auto;height:auto;bottom:-20px;left:50%;margin-left:-10px;width:0;border-width:10px;border-style:solid;border-color:#008aff transparent transparent}#mec-wrap .mec-container{padding:25px 40px 40px;box-shadow:0 3px 10px -4px rgba(0,0,0,.1)}#wpwrap .mec-button-primary{color:#fff;font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s}#wpwrap .mec-button-primary:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 15px -7px rgba(0,0,0,.5);cursor:pointer}.wn-p-t-right{min-width:300px;max-width:400px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.5;position:absolute;z-index:99999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s;padding:20px;border-radius:8px}.wn-p-t-right i{position:absolute!important;top:100%;right:50%;margin-top:-6px!important;margin-right:-6px!important;width:12px;height:24px;overflow:hidden;transform:rotate(-90deg)}.wn-p-t-right i:after{content:'';position:absolute;width:12px;height:12px;left:0;top:50%;transform:translate(50%,-50%) rotate(-45deg);background-color:#535a61;box-shadow:0 8px 9px -4px #535a61}.wn-p-t-right .wn-p-t-text-content h5{color:#fff;font-size:17px;font-weight:600;margin:-20px;padding:15px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #32363a;border-radius:6px 6px 0 0}.mec-addon-box-footer a:hover .wn-p-t-right{visibility:visible;opacity:1}
|
1 |
+
#mec_location_thumbnail_img img,#mec_organizer_thumbnail_img img,#mec_thumbnail_img img{max-width:250px}.taxonomy-mec_label .column-id,.taxonomy-mec_location .column-id,.taxonomy-mec_organizer .column-id,.taxonomy-mec_speaker .column-id{width:40px}.taxonomy-mec_label .column-primary,.taxonomy-mec_location .column-primary,.taxonomy-mec_organizer .column-primary,.taxonomy-mec_speaker .column-primary{width:250px}.mec-color{margin:10px;width:14px;height:14px;display:inline-block;margin-right:6px;border-radius:20px 20px 20px 20px;vertical-align:middle}.mec-event-color-container,.mec-event-title-container{display:inline-block}.mec-available-color-row{margin-top:15px}.mec-available-color-row .mec-color{cursor:pointer}.mec-widget-container a{text-decoration:none}.mec-widget-container label{padding-right:15px}.mec-util-hidden{display:none}.button.mec-util-hidden{display:none}.wns-be-container{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Oxygen,Roboto,sans-serif;max-width:100%;background-color:#f6f6f6;border:1px solid #c1cad2;box-shadow:0 1px 1px rgba(0,0,0,.04);margin-top:40px;margin-right:15px;overflow:hidden}.wns-be-sidebar{width:260px;float:left;position:relative}.wns-be-sidebar ul.wns-be-group-menu,.wns-be-sidebar ul.wns-be-group-menu li{list-style:none;margin:0}.wns-be-sidebar .wns-be-group-menu li a{display:block;position:relative;outline:0;padding:13px 4px 13px 20px;background:#e0e0e0;background:0 0;border:none;color:#3f454a;font-size:13px;font-weight:600;text-decoration:none;-webkit-transition:none;transition:none}.wns-be-sidebar .wns-be-group-menu li a:hover{background:#fff;color:#008aff;opacity:1}.wns-be-sidebar .wns-be-group-menu>li.active>a,.wns-be-sidebar .wns-be-group-menu>li.active>a:hover{background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff}.wns-be-sidebar .wns-be-group-menu>li.active>a{box-shadow:0 2px 12px -5px #008aff}.wns-be-sidebar .wns-be-group-menu li a:first-child{border-top:none}.wns-be-main{background:#fff;margin-left:260px;border-left:1px solid #dedede;padding-bottom:84px;box-shadow:inset 0 1px 0 #fff;min-height:1120px;position:relative}.wns-be-main .wns-saved-settings{margin:0;border-bottom:1px solid #dedede;background:#dff0d8;color:#468847;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.6)}.wns-be-container .dpr-btn{display:inline-block;font-size:13px;padding:0 16px 1px;height:36px;margin-right:3px;line-height:35px;color:#555;border:1px solid #ccc;background:#f7f7f7;text-decoration:none;transition:.24s all ease;-webkit-transition:.24s all ease}.wns-be-container .dpr-btn:hover{background:#fcfcfc;border-color:#999;color:#303030}.wns-be-container .dpr-btn.dpr-save-btn{color:#fff;font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s}.wns-be-container .dpr-btn.dpr-save-btn:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5);cursor:pointer}.wns-be-container .wns-be-group-tab h2,.wns-be-container .wns-be-group-tab h4{color:#000;margin-bottom:25px;padding:15px;background:#f5f5f5;font-size:21px;line-height:23px;letter-spacing:.4px;font-weight:700;position:relative}.wns-be-container .wns-be-group-tab h2{margin-top:10px}.wns-be-container .wns-be-group-tab h2:before,.wns-be-container .wns-be-group-tab h4:before{content:"";width:4px;height:16px;margin-right:5px;background-color:#008aff;display:block;position:absolute;left:0;top:18px}.wns-be-container .wns-be-group-tab h4:before{width:2px;top:16px}.wns-be-container .wns-be-group-tab h4{font-size:16px;font-weight:600;background:#f8f8f8;border:none;padding:12px 15px 12px 15px}.wns-be-container .wns-be-group-tab p{font-size:13px;color:#888}.wns-be-sidebar .wns-be-group-tab-link-a:hover{cursor:pointer}.wns-be-sidebar .wns-be-group-tab-link-a span{display:block}.wns-be-sidebar .wns-be-group-tab-link-a span.wns-be-group-menu-title{padding-left:24px}.wns-be-sidebar li.active ul.subsection{padding-top:8px;padding-bottom:12px;background:#fff;border-bottom:1px solid #dedede;margin:0}.wns-be-sidebar li .subsection a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 46px}.wns-be-sidebar li .subsection a:hover{background:#f6f6f6;color:#222}.wns-be-sidebar .wns-be-group-menu li .subsection li.active a{color:#008aff}.wns-be-sidebar .wns-be-group-menu li .subsection li.active a:after,.wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;right:-1px;top:10px}.wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{border-right-color:#c5c5c5;right:0}.wns-be-sidebar li a i{color:#a0abb5;vertical-align:middle;font-size:18px;position:absolute;margin-top:0;margin-left:-4px}.wns-be-sidebar .wns-be-group-menu li.active>a i{color:#fff}.wns-be-sidebar .has-sub span.extra-icon{display:inline-block;float:right;padding:4px 7px 4px;margin-left:4px;margin-right:10px;font-family:sans-serif;font-size:9px;font-weight:600;line-height:9px;border-radius:10px;-moz-border-radius:10px;-webkit-border-radius:10px;border:0 solid transparent}.wns-be-sidebar .has-sub span.extra-icon i{margin-left:-3px;margin-top:2px;color:#bac6d0;font-size:10px}.wns-be-sidebar .wns-be-group-tab-link-a span.extra-icon i{right:10px;font-size:10px}.wns-be-sidebar .wns-be-group-menu li.active>a span.extra-icon i{margin-top:1px}.wns-be-container #wns-be-footer{border-top:1px solid #dedede;z-index:999;padding:25px 20px 20px;background:#fafafa!important;height:44px;text-align:right}.wns-be-container #wns-be-content{padding:5px 40px 40px}.wns-be-container #wns-be-infobar{background:#fff;border-bottom:1px solid #dedede;padding:20px;text-align:right;box-shadow:inset 0 1px 0 #fcfcfc;height:79px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;position:relative}.wns-be-container #wns-be-infobar:before{content:"";width:261px;height:78px;display:block;position:absolute;left:0;top:0;background:#fff url(../img/webnus-logo.png) no-repeat center;border-bottom:1px solid #dedede;background-size:220px;z-index:997}.wns-be-container .notice-yellow{margin:0;border-bottom:1px solid #dedede;background-color:#fcf8e3;color:#c09853;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.5)}.wns-be-container .notice-red,.wns-be-container .wns-be-field-errors{margin:0;border-bottom:1px solid #dedede;background-color:#f2dede;color:#b94a48;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.5)}@media(max-width:480px){a.dpr-btn.dpr-save-btn{display:block!important;text-align:center!important;margin-top:20px!important}.mec-search-settings-wrap{margin-top:73px!important;text-align:center!important;display:block!important}#mec-search-settings{margin:0!important;width:100%!important}.wns-be-container #wns-be-infobar{height:auto!important}}body.post-type-mec-events th.column-primary{width:35%}body.post-type-mec-events th.column-start_date{width:100px}body.post-type-mec-events th.column-end_date{width:100px}body.post-type-mec-events th.column-repeat{width:75px}body.post-type-mec-events th.column-author{width:150px}body.post-type-mec-books th.column-primary{width:20%}body.post-type-mec-books th.column-event{width:170px}body.post-type-mec-books th.column-bdate{width:120px}body.post-type-mec-books th.column-confirmation{width:120px}body.post-type-mec-books th.column-verification{width:120px}body.post-type-mec-books th.column-author{width:150px}.mec-meta-box-labels-container .mec-form-row{height:100px;overflow:auto}.mec-tooltip{display:inline;position:relative;margin-right:10px;cursor:help;bottom:5px;left:3px}.mec-tooltip:last-child{margin-right:0}.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-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-tooltip .dashicons-before:before{font-size:24px;color:#40d9f1;line-height:37px}.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-tooltiptext{visibility:hidden;width:120px;background-color:red;color:#fff;text-align:center;border-radius:6px;padding:5px 0;position:absolute;z-index:1}.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-col-1,.mec-col-10,.mec-col-11,.mec-col-12,.mec-col-2,.mec-col-3,.mec-col-4,.mec-col-5,.mec-col-6,.mec-col-7,.mec-col-8,.mec-col-9{position:relative;min-height:1px;padding:0;margin:0 1% 0 0}@media (min-width:783px){.mec-col-1,.mec-col-10,.mec-col-11,.mec-col-12,.mec-col-2,.mec-col-3,.mec-col-4,.mec-col-5,.mec-col-6,.mec-col-7,.mec-col-8,.mec-col-9{float:left}.mec-col-12{width:99%}.mec-col-11{width:90.66666667%}.mec-col-10{width:82.33333333%}.mec-col-9{width:74%}.mec-col-8{width:65.66666667%}.mec-col-7{width:57.33333333%}.mec-col-6{width:49%}.mec-col-5{width:40.66666667%}.mec-col-4{width:32.33333333%}.mec-col-3{width:24%}.mec-col-2{width:15.66666667%}.mec-col-1{width:7.33333333%}}#mec_reg_form_fields{background:#eee;padding:20px}#mec_reg_form_fields li{margin:4px;border-radius:2px;padding:20px 34px 24px;background:#fff;position:relative;transition:all .3s ease}#mec_reg_form_fields li ul{padding-top:15px;padding-bottom:15px;margin:1px}#mec_reg_form_fields li ul li{padding:7px 30px 7px 46px}#mec_reg_form_fields span.mec_reg_field_type{font-size:11px;font-weight:600;color:#8a8a8a;text-transform:uppercase;letter-spacing:2px}#mec_reg_form_fields span.mec_reg_field_option_sort,#mec_reg_form_fields span.mec_reg_field_remove,#mec_reg_form_fields span.mec_reg_field_sort{font-size:0;color:#fff}#mec_reg_form_fields span.mec_reg_field_remove{position:absolute;right:0;top:0}#mec_reg_form_fields span.mec_reg_field_option_sort:before,#mec_reg_form_fields span.mec_reg_field_remove:before,#mec_reg_form_fields span.mec_reg_field_sort:before{position:absolute;left:10px;top:20px;width:80px;height:20px;display:block;cursor:move;font-family:simple-line-icons;content:"\e023";font-size:18px;color:#888}#mec_reg_form_fields span.mec_reg_field_remove:before{content:"\e082";width:20px;height:20px;left:auto;right:15px;color:#f96666;cursor:pointer}#mec_reg_form_fields span.mec_reg_field_option_sort:before{font-size:13px;left:2px;top:23px;width:14px;height:14px}#mec_reg_form_fields li ul li span.mec_reg_field_remove{right:auto;left:60px;top:2px}#mec_reg_form_fields p.mec_reg_field_options{margin:6px 0 8px}#mec_reg_form_fields input[type=number],#mec_reg_form_fields input[type=text],#mec_reg_form_fields select,#mec_reg_form_fields textarea{min-width:260px;min-height:34px;margin-bottom:7px;margin-top:7px}#mec_reg_form_fields textarea{min-height:66px}#mec_reg_form_field_types button,#mec_reg_form_fields button{position:relative;outline:0;background:#fff;border:1px solid #e2e2e2;border-radius:50px;padding:11px 21px 11px 31px;line-height:1;font-size:11px;font-weight:600;color:#444;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 0 3px rgba(0,0,0,.03)}#mec_reg_form_field_types button:hover,#mec_reg_form_fields button:hover{border-color:#008aff;box-shadow:0 0 7px rgba(0,0,0,.1)}#mec_reg_form_field_types button:before,#mec_reg_form_fields button:before{position:absolute;left:12px;color:#008aff;content:"\e095";font-family:simple-line-icons;font-size:13px;display:inline-block}#mec_reg_form_field_types button.red:hover,#mec_reg_form_fields button.red:hover{border-color:red;box-shadow:0 0 7px rgba(0,0,0,.1)}#mec_reg_form_field_types button.red:before,#mec_reg_form_fields button.red:before{position:absolute;left:12px;color:red;content:"\e095";font-family:simple-line-icons;font-size:13px;display:inline-block}@media (max-width:768px){#mec_reg_form_fields input[type=number],#mec_reg_form_fields input[type=text],#mec_reg_form_fields select,#mec_reg_form_fields textarea{min-width:80px;width:100%}}.mec-form-row{margin:0 auto 16px}.mec-options-fields{padding-top:25px;overflow:hidden;animation:fadeEffect .31s}#mec_booking_form .mec-options-fields,#mec_modules_form .mec-options-fields,#mec_notifications_form .mec-options-fields,#mec_settings_form .mec-options-fields,#mec_single_form .mec-options-fields{display:none}.mec-options-fields.active{display:block!important}@keyframes fadeEffect{from{opacity:0;margin-left:12px}to{opacity:1;margin-left:0}}.mec-form-row:after,.mec-form-row:before{content:" ";display:table}.mec-form-row:after{clear:both}.mec-form-row input[type=number],.mec-form-row input[type=text],.mec-form-row select,.mec-form-row textarea{height:38px;box-sizing:border-box;margin-bottom:8px;padding:0 6px;box-shadow:none;border-radius:2px;box-shadow:inset 0 1px 5px rgba(0,0,0,.05)}.mec-form-row input[type=radio]{margin:5px 0}.mec-form-row select{margin-top:1px}.mec-book-status-form select{display:block;width:99%;margin-top:10px;margin-bottom:10px}.mec-form-row label{margin:10px 0}.mec-form-row input[type=checkbox]{background-color:#fafafa;border:1px solid #cacece;box-shadow:0 1px 2px rgba(0,0,0,.05),inset 0 -15px 10px -12px rgba(0,0,0,.05);padding:9px;border-radius:3px;min-width:20px;min-height:20px;display:inline-block}.mec-form-row input[type=checkbox]:checked{box-shadow:0 3px 11px -4px #008aff;border-color:#008aff;background:#fff}.mec-form-row input[type=checkbox]:checked:before{color:#008aff;width:20px;font:400 24px/1 dashicons}.mec-form-row .mec-col-4 input[type=number],.mec-form-row .mec-col-4 input[type=text],.mec-form-row .mec-col-4 select,.mec-form-row .mec-col-4 textarea{width:75%}.mec-form-row .description{display:inline-block;border-left:1px dashed #ccc;margin-left:12px;line-height:32px;padding-left:12px;margin-top:5px;color:#555}.mec-form-row .description code{font-style:normal}.mec-form-row .time-dv{font-size:14px;font-weight:700}.mec-meta-box-fields{margin:30px 10px}.mec-meta-box-fields>.mec-meta-box-fields{margin-left:0}.mec-meta-box-fields .mec-title{margin:5px 0}.mec-meta-box-fields h4.mec-title{margin:40px 0 16px}.mec-meta-box-fields .mec-dashicons{font-size:20px;line-height:22px;color:#008aff}.mec-form-row .mec-box,.mec-meta-box-fields .mec-box{background:#f7f7f7;padding:10px;margin:10px 0;border-radius:2px;border:1px solid #e6e6e6}.mec-form-row .mec-box{max-width:960px}.mec-form-row .mec-box .button,.mec-meta-box-fields .mec-box .button{float:right}#mec_gateways_form .mec-form-row:first-child,#mec_notifications_form_container .mec-form-row:nth-child(2){overflow:hidden}#mec_gateways_form .mec-tooltip{float:right}.mec-container{background:#fff;padding:15px}.nav-tab-active{background:#fff;border-bottom:1px solid #fff}#mec_social_networks .mec-form-row{margin-bottom:0}#mec_gateways_form h4,.mec-meta-box-fields h4,.mec-options-fields h4,h4.mec-form-subtitle{text-transform:capitalize;border-bottom:1px solid #e5e5e5;padding-bottom:6px;margin:40px 0 16px;font-size:15px;font-weight:600}#mec_gateways_form h4{margin-bottom:0}#mec_styles_form #mec_styles_CSS{height:200px;margin-bottom:5px;font-family:Consolas,Monaco,monospace;font-size:13px;width:97%;background:#f9f9f9;outline:0}#mec_calendar_filter .description,#mec_styles_form .description{max-width:500px;display:block;margin:0 0 5px 0;padding:0;border:none}.mec-sed-methods li{display:inline-block;padding:8px 12px;border:1px solid #ddd;margin:0 5px 5px 0;cursor:pointer;border-radius:3px;box-shadow:0 2px 15px -2px rgba(0,0,0,.1)}.mec-sed-methods li:hover{border-color:#008aff}.mec-sed-methods li.active{border-color:#008aff;background-color:#fff;color:#008aff;font-weight:600;cursor:default;box-shadow:0 0 4px rgba(1,138,255,.3) inset}.mec-switcher input+label{display:block;position:relative;cursor:pointer;outline:0;padding:2px;width:38px;height:22px;background-color:#ddd;border-radius:60px}.mec-switcher input:checked+label{background-color:#008aff;box-shadow:0 3px 22px -6px #008aff}.mec-switcher input:checked+label:after{margin-left:16px}#mec_gateways_form input[type=text],#mec_gateways_form select,#mec_gateways_form textarea{width:calc(100% - 30px)}#mec_gateways_form textarea{min-height:65px}#mec_gateways_form li .mec-gateway-options-form,#payment_gateways_option li .mec-gateway-options-form{padding:15px 20px;background-color:#f7f7f7;border-left:6px solid #e3e3e3;margin-bottom:20px}#mec_notifications_form label{display:inline-block;min-width:160px}#mec_notifications_form input[type=text],#mec_notifications_form select{min-width:300px}@media (max-width:536px){#mec_notifications_form input[type=text],#mec_notifications_form select{min-width:100%}}#mec_notifications_form .wp-editor-container{margin-bottom:45px}#mec_notifications_form ul li:last-child .wp-editor-container{margin-bottom:0}#mec_messages_form_container ul li label{display:block;font-weight:700}#mec_messages_form_container ul li input{display:block;width:100%}.mec-message-categories li.mec-acc-label{font-size:15px;font-weight:600;padding:25px 30px;cursor:pointer;background-color:#fff;border:none;border-bottom:1px solid #e6e6e6;margin:0;letter-spacing:.5px;position:relative}.mec-message-categories ul{margin:15px 5px}.webnus-icons-list li{width:40px;display:inline-block;list-style:none;padding:0}.webnus-icons-list input{visibility:hidden;margin:0;padding:0;width:1px;height:1px;-moz-opacity:0;-khtml-opacity:0;opacity:0;cursor:pointer}.webnus-icons-list li label{color:#777;display:inline-block!important;float:none!important;width:33px!important;text-align:center;font-size:23px!important;font-weight:400!important;padding:5px 0!important;border:1px solid #eee!important}.mec-webnus-icon{float:left;margin-right:10px}.mec-webnus-icon i{font-size:24px;color:#222}.mec-accordion ul{display:none}.mec-switcher input{position:absolute;margin-left:-9999px;visibility:hidden}.mec-switcher input+label{display:block;position:relative;cursor:pointer;outline:0;padding:2px;width:50px;height:22px;background-color:#ddd;border-radius:60px}.mec-switcher input+label:after,.mec-switcher input+label:before{display:block;position:absolute;top:1px;left:1px;bottom:1px;content:""}.mec-switcher input+label:before{right:1px;background-color:#f1f1f1;border-radius:60px;transition:background .4s}.mec-switcher input+label:after{width:24px;background-color:#fff;border-radius:100%;box-shadow:0 2px 3px rgba(0,0,0,.1);transition:margin .4s}.wns-be-group-tab .mec-switcher input[value="1"]+label,.wns-be-group-tab .mec-switcher input[value="1"]+label:before{background-color:#008aff;background:linear-gradient(95deg,#4dacfd 0,#0d90ff 50%,#008aff 100%);box-shadow:0 3px 11px -7px #008aff}.wns-be-group-tab .mec-switcher input[value="1"]+label:after{margin-left:28px}.mec-switcher input:checked+label{box-shadow:0 3px 11px -7px #008aff}.mec-switcher input:checked+label:before{background-color:#008aff;background:linear-gradient(95deg,#4dacfd 0,#0d90ff 50%,#008aff 100%)}.mec-switcher input:checked+label:after{margin-left:28px}.mec-switcher label{display:block}.mec-sed-methods li{display:inline-block;padding:10px;border:1px solid #ddd;margin:0 5px 5px 0;cursor:pointer}#wpwrap .mec-button-primary{border-bottom:none;letter-spacing:.5px;line-height:18px;height:46px;transition:all .5s ease;color:#fff;padding:12px 25px;display:block;text-align:center;font-size:14px;background:0 0;background-color:#008aff;text-shadow:none;border:0;box-shadow:none;display:inline-block;margin:25px 0 12px;min-width:146px}#wpwrap .mec-button-primary:hover{background-color:#41c9de}#wpwrap .mec-button-primary.loading{background-color:#73c02a}#wpwrap .mec-button-primary:before{content:"\f00c";font-family:fontawesome;margin-right:4px;font-size:16px;display:none}#wpwrap .mec-button-primary.loading:before{display:inline-block}.mec-image-select-wrap{clear:both;overflow:hidden;padding:10px 0;margin:0}.mec-image-select-wrap li{float:left;display:block;margin-right:15px;margin-bottom:15px}.mec-image-select-wrap li input{display:none}.mec-image-select-wrap li span{width:35px;height:35px;display:block;margin:3px;border-radius:2px;border:3px solid transparent;transition:all .2s ease}.mec-image-select-wrap li input:checked+span{border-color:#fff;box-shadow:0 0 14px rgba(0,0,0,.25)}.mec-image-select-wrap li input:checked+span:after{content:"\f00c";font-family:fontawesome;font-size:20px;display:inline-block;color:#fff;padding:8px;max-width:100%;max-height:100%}.mec-image-select-wrap .mec-colorskin-1{background-color:#40d9f1}.mec-image-select-wrap .mec-colorskin-2{background-color:#0093d0}.mec-image-select-wrap .mec-colorskin-3{background-color:#e53f51}.mec-image-select-wrap .mec-colorskin-4{background-color:#f1c40f}.mec-image-select-wrap .mec-colorskin-5{background-color:#e64883}.mec-image-select-wrap .mec-colorskin-6{background-color:#45ab48}.mec-image-select-wrap .mec-colorskin-7{background-color:#9661ab}.mec-image-select-wrap .mec-colorskin-8{background-color:#0aad80}.mec-image-select-wrap .mec-colorskin-9{background-color:#0ab1f0}.mec-image-select-wrap .mec-colorskin-10{background-color:#ff5a00}.mec-image-select-wrap .mec-colorskin-11{background-color:#c3512f}.mec-image-select-wrap .mec-colorskin-12{background-color:#55606e}.mec-image-select-wrap .mec-colorskin-13{background-color:#fe8178}.mec-image-select-wrap .mec-colorskin-14{background-color:#7c6853}.mec-image-select-wrap .mec-colorskin-15{background-color:#bed431}.mec-image-select-wrap .mec-colorskin-16{background-color:#2d5c88}.mec-image-select-wrap .mec-colorskin-17{background-color:#77da55}.mec-image-select-wrap .mec-colorskin-18{background-color:#2997ab}.mec-image-select-wrap .mec-colorskin-19{background-color:#734854}.mec-image-select-wrap .mec-colorskin-20{background-color:#a81010}.mec-image-select-wrap .mec-colorskin-21{background-color:#4ccfad}.mec-image-select-wrap .mec-colorskin-22{background-color:#3a609f}@media screen and (max-width:782px){.mec-form-row .description{max-width:500px;display:block;margin:0 0 5px 0;padding:0;border:none}.mec-col-1,.mec-col-10,.mec-col-11,.mec-col-12,.mec-col-2,.mec-col-3,.mec-col-4,.mec-col-5,.mec-col-6,.mec-col-7,.mec-col-8,.mec-col-9{margin-bottom:5px;display:block}.mec-form-row .mec-box .button,.mec-meta-box-fields .mec-box .button{float:left}.mec-form-row .time-dv{padding:0 4px}.mec-form-row .mec-col-4 input[type=text],.mec-form-row .mec-col-4 select{width:auto;min-width:192px}.mec-tooltip .dashicons-before:before{font-size:32px}}#frmb-0-clear-all,#frmb-0-save,#frmb-0-view-data{display:none}#mec_sn_googlecal{margin-bottom:0}#mec_fee_row1 .button{margin-right:10px}h4.mec-form-subtitle{font-size:15px;margin-top:0}h5.mec-form-second-title{font-size:15px;margin-top:0}#webnus-dashboard *{box-sizing:border-box}#webnus-dashboard.about-wrap{max-width:1240px;margin:25px auto 20px}#webnus-dashboard .change-log{word-wrap:break-word}#webnus-dashboard .welcome-head img{border:none}.w-welcome{position:relative;margin-top:30px;margin-bottom:10px}.w-box{position:relative;background:#fff;padding:5px 25px;margin-top:30px}.w-theme-version{box-shadow:0 3px 30px -4px #40d8f0;text-shadow:none;background:#40d8f0;background:linear-gradient(95deg,#40d8f0 0,#2dd1ea 50%,#13cbe8 100%);text-align:center;display:block;padding:10px 0;color:#fff;font-weight:600;margin-top:10px;border-radius:2px}.w-box{padding:0;min-height:310px;box-shadow:0 1px 16px rgba(0,0,0,.034);border-radius:2px}.w-box-head{font-weight:600;padding:20px 72px;position:relative;border-bottom:2px solid #008aff;font-size:20px}.w-box-head span{position:absolute;left:0;padding:0 25px;line-height:58px;background:#008aff;height:100%;top:0;color:#fff}.w-box-child,.w-box-content{padding:18px;line-height:24px;font-size:14px}.mec-count-child{width:50%;margin:0 auto}#webnus-dashboard .w-button a{color:#fff!important;border-radius:0;padding:10px 24px;font-size:12px;letter-spacing:1px;font-weight:600;background:#008aff;margin:10px 0;display:inline-block;text-transform:uppercase}#webnus-dashboard .w-box .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}.w-system-info{margin-bottom:7px}.w-system-info:first-child{margin-top:20px}.w-system-info>span{display:inline-block;min-width:145px;line-height:20px;font-size:13px}#webnus-dashboard .w-current{min-width:110px}#webnus-dashboard .w-min{min-width:65px}.w-icon{color:#fff;padding:3px;border-radius:4px;margin-right:10px;vertical-align:middle}.w-icon-green{background:#27ae60}.w-icon-red{background:#e74c3c}.extra .w-box-head{padding:20px;border-bottom:1px solid #ededed}.doc .w-box-head{color:#4cbf67}#webnus-dashboard .doc .w-button a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);margin:35px 0 17px;box-shadow:0 5px 10px -5px #4cbf67;background-color:#fff}#webnus-dashboard .support .w-button a{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);margin:13px 0 18px;box-shadow:0 5px 10px -5px #ff876c}.doc .w-box-content{background:url(../img/document.png) no-repeat right center}.doc .w-box-content p,.w-box.support .w-box-content p{width:54%;color:#666;margin-top:10px;max-width:380px}.w-box-child p{color:#666;margin-top:10px}.w-box.support{background:#fff url(../img/support.png) no-repeat top right}.w-box.support .w-box-head{width:50%;color:#ff876c}.w-box-content pre{text-align:left;background:#f5f5f5;font-size:13px;padding:20px 25px;height:480px;overflow-y:scroll}.w-box.change-log .w-box-head{color:#01c6d9}#webnus-dashboard .button:not(.mec-intro-section-link-tag){border:0;background:0 0;box-shadow:none;color:#e74c3c;font-weight:700}.w-box .state{position:absolute;top:0;left:-100vw}#webnus-dashboard .button:hover{color:#222}.w-box .state:checked~.content{-webkit-transform:none;-ms-transform:none;transform:none}.w-box .state:checked~.backdrop{bottom:0;opacity:1;z-index:1}.w-box .lightbox{position:fixed;top:0;right:0;left:0;height:0;padding:0 20px}.w-box .lightbox .content{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;overflow:hidden;position:relative;z-index:2;max-width:500px;max-height:95vh;margin:20px auto;padding:20px;background:#fff;-webkit-transform:translateY(-200%);-ms-transform:translateY(-200%);transform:translateY(-200%);-webkit-transition:.3s -webkit-transform ease-in-out;transition:.3s transform ease-in-out;border:1px solid rgba(0,0,0,.1)}.w-box .lightbox .main{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1}.w-box .lightbox .backdrop{position:fixed;z-index:-1;top:0;right:0;bottom:100%;left:0;opacity:0;background:rgba(0,0,0,.3);-webkit-transition:.3s opacity ease-in-out;transition:.3s opacity ease-in-out}.content .main p{color:#bf3737}p.mec_dash_count{font-size:60px;font-weight:600;margin:0;color:#01c6d9}.w-col-sm-3 .w-box.doc{text-align:center;min-height:auto}.w-Knowledgebase{color:#8e5cea}.mec-view-all-articles a{margin:30px 0 17px;display:inline-block;color:#fff!important;border-radius:0;padding:10px 24px;font-size:12px;letter-spacing:1px;font-weight:600;background:#8e5cea;display:inline-block;text-transform:uppercase;transition:all .24s ease;-webkit-transition:all .24s ease}.mec-view-all-articles a:hover{background-color:#222}.w-box.upcoming-events .mec-event-article{margin-bottom:22px;border-bottom:1px solid #eee;padding-bottom:16px}.w-box.upcoming-events .mec-event-article .mec-event-date{font-size:14px;color:#666}.w-box.upcoming-events .mec-event-article .mec-event-date span{font-weight:600;margin-right:4px}.w-box.upcoming-events .mec-event-article h4.mec-event-title{margin:0;font-size:15px}.w-box.upcoming-events .mec-event-article .mec-event-detail{font-size:13px;color:#999}.w-box.upcoming-events .mec-event-article .mec-detail-button{font-size:10px;font-weight:600;letter-spacing:1px;padding:4px 12px;background:#f2f2f2;float:right}.w-box.total-bookings ul li{display:inline-block;padding:4px 12px;background:#f1f1f1;margin-right:5px;border-radius:3px}.w-box.total-bookings ul li.selected{background:#fff;border:1px solid #e9e9e9}.info-msg,.mec-error,.mec-success,.warning-msg{margin:10px 0;padding:10px;border-radius:3px 3px 3px 3px}.info-msg{color:#059;background-color:#bef}.info-msg-link{background:#fff;padding:4px 12px 6px;border-radius:3px;line-height:1;font-weight:600;color:#008aff}.mec-success{color:#270;background-color:#dff2bf}.warning-msg{color:#9f6000;background-color:#feefb3}.mec-error{color:#d8000c;background-color:#ffbaba}.mec-certain-day>div,.mec-select-deselect-actions li,.mec-xi-facebook-import-events .mec-select-deselect-actions li,.mec-xi-google-import-events .mec-select-deselect-actions li{display:inline-block;position:relative;outline:0;background:#fff;border:1px solid #e2e2e2;border-radius:50px;padding:11px 21px 11px 21px;line-height:1;font-size:11px;font-weight:600;color:#444;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 0 3px rgba(0,0,0,.03)}.mec-certain-day>div:hover,.mec-select-deselect-actions li:hover,.mec-xi-facebook-import-events .mec-select-deselect-actions li:hover,.mec-xi-google-import-events .mec-select-deselect-actions li:hover{border-color:#008aff;box-shadow:0 0 7px rgba(0,0,0,.1)}.mec-not-in-days-remove{border:1px solid #ff4b64;border-radius:20px;padding:0 0 0 1px;color:#ff4b64;width:11px;height:12px;text-align:center;line-height:12px;display:inline-block;margin-right:-5px;margin-left:6px}div#mec_not_in_days_row2:hover{border-color:#e2e2e2!important;box-shadow:none!important}.mec-xi-facebook-import-events .mec-success,.mec-xi-google-import-events .mec-success{width:460px}.mec-xi-facebook-import-events .mec-select-deselect-actions li,.mec-xi-google-import-events .mec-select-deselect-actions li{display:inline-block;cursor:pointer}.lity-content>div{overflow:auto}.mce-mec-mce-items{text-transform:capitalize!important}#mec_setting_contextual li{list-style:none!important;font-size:12px;margin:0;padding:6px}.mec-bbf-field-container{margin-bottom:10px}.mec-bbf-field-container label{display:block}.kc-components ul.kc-components-list li .cpicon.mec-kingcomposer-icon,.kc-element-icon .cpicon.mec-kingcomposer-icon{background:url(../img/ico-mec-vc.png) no-repeat center center;background-size:auto;background-repeat:no-repeat}.mec-archive-skinsm.mec-category-skins,.mec-carousel-archive-link,.mec-carousel-head-text,.mec-toggle-month-divider{display:none}span.mec-archive-skins,span.mec-category-skins{margin-left:10px;vertical-align:text-bottom}.mec-archive-skins input,.mec-archive-skins select,.mec-category-skins input,.mec-category-skins select{min-width:225px;vertical-align:baseline}#mec_settings_default_skin_archive,#mec_settings_default_skin_category{min-width:225px}.w-welcome p span{background:#fff;padding:4px 10px}#mec_masonry_skin_options_container .mec-form-row .description{margin-left:0;padding-left:0;border:none;margin-top:-4px}@media (max-width:1280px){span.mec-archive-skins,span.mec-category-skins{margin-left:0}}/*!
|
2 |
* Bootstrap v3.3.7 (http://getbootstrap.com)
|
3 |
* Copyright 2011-2016 Twitter, Inc.
|
4 |
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
5 |
+
*/#webnus-dashboard button,#webnus-dashboard input,#webnus-dashboard select,#webnus-dashboard textarea{font-family:inherit;font-size:inherit;line-height:inherit}#webnus-dashboard a{color:#337ab7;text-decoration:none}#webnus-dashboard a:focus,#webnus-dashboard a:hover{color:#23527c}#webnus-dashboard a:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}#webnus-dashboard figure{margin:0}#webnus-dashboard img{vertical-align:middle}.w-img-responsive{display:block;max-width:100%;height:auto}.w-img-rounded{border-radius:6px}.w-img-thumbnail{padding:4px;line-height:1w-42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all 0w-2s ease-in-out;-o-transition:all 0w-2s ease-in-out;transition:all 0w-2s ease-in-out;display:inline-block;max-width:100%;height:auto}.w-img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.w-sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.w-sr-only-focusable:active,.w-sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.w-container,.w-container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}[role=button]{cursor:pointer}@media (min-width:768px){.w-container{width:750px}}@media (min-width:992px){.w-container{width:970px}}@media (min-width:1200px){.w-container{width:1170px}}.w-row{margin-left:-15px;margin-right:-15px}.w-col-lg-1,.w-col-lg-10,.w-col-lg-11,.w-col-lg-12,.w-col-lg-2,.w-col-lg-3,.w-col-lg-4,.w-col-lg-5,.w-col-lg-6,.w-col-lg-7,.w-col-lg-8,.w-col-lg-9,.w-col-md-1,.w-col-md-10,.w-col-md-11,.w-col-md-12,.w-col-md-2,.w-col-md-3,.w-col-md-4,.w-col-md-5,.w-col-md-6,.w-col-md-7,.w-col-md-8,.w-col-md-9,.w-col-sm-1,.w-col-sm-10,.w-col-sm-11,.w-col-sm-12,.w-col-sm-2,.w-col-sm-3,.w-col-sm-4,.w-col-sm-5,.w-col-sm-6,.w-col-sm-7,.w-col-sm-8,.w-col-sm-9,.w-col-xs-1,.w-col-xs-10,.w-col-xs-11,.w-col-xs-12,.w-col-xs-2,.w-col-xs-3,.w-col-xs-4,.w-col-xs-5,.w-col-xs-6,.w-col-xs-7,.w-col-xs-8,.w-col-xs-9{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.w-col-xs-1,.w-col-xs-10,.w-col-xs-11,.w-col-xs-12,.w-col-xs-2,.w-col-xs-3,.w-col-xs-4,.w-col-xs-5,.w-col-xs-6,.w-col-xs-7,.w-col-xs-8,.w-col-xs-9{float:left}.w-col-xs-12{width:100%}.w-col-xs-11{width:91.66666667%}.w-col-xs-10{width:83.33333333%}.w-col-xs-9{width:75%}.w-col-xs-8{width:66.66666667%}.w-col-xs-7{width:58.33333333%}.w-col-xs-6{width:50%}.w-col-xs-5{width:41.66666667%}.w-col-xs-4{width:33.33333333%}.w-col-xs-3{width:25%}.w-col-xs-2{width:16.66666667%}.w-col-xs-1{width:8w-33333333%}.w-col-xs-pull-12{right:100%}.w-col-xs-pull-11{right:91.66666667%}.w-col-xs-pull-10{right:83.33333333%}.w-col-xs-pull-9{right:75%}.w-col-xs-pull-8{right:66.66666667%}.w-col-xs-pull-7{right:58.33333333%}.w-col-xs-pull-6{right:50%}.w-col-xs-pull-5{right:41.66666667%}.w-col-xs-pull-4{right:33.33333333%}.w-col-xs-pull-3{right:25%}.w-col-xs-pull-2{right:16.66666667%}.w-col-xs-pull-1{right:8w-33333333%}.w-col-xs-pull-0{right:auto}.w-col-xs-push-12{left:100%}.w-col-xs-push-11{left:91.66666667%}.w-col-xs-push-10{left:83.33333333%}.w-col-xs-push-9{left:75%}.w-col-xs-push-8{left:66.66666667%}.w-col-xs-push-7{left:58.33333333%}.w-col-xs-push-6{left:50%}.w-col-xs-push-5{left:41.66666667%}.w-col-xs-push-4{left:33.33333333%}.w-col-xs-push-3{left:25%}.w-col-xs-push-2{left:16.66666667%}.w-col-xs-push-1{left:8w-33333333%}.w-col-xs-push-0{left:auto}.w-col-xs-offset-12{margin-left:100%}.w-col-xs-offset-11{margin-left:91.66666667%}.w-col-xs-offset-10{margin-left:83.33333333%}.w-col-xs-offset-9{margin-left:75%}.w-col-xs-offset-8{margin-left:66.66666667%}.w-col-xs-offset-7{margin-left:58.33333333%}.w-col-xs-offset-6{margin-left:50%}.w-col-xs-offset-5{margin-left:41.66666667%}.w-col-xs-offset-4{margin-left:33.33333333%}.w-col-xs-offset-3{margin-left:25%}.w-col-xs-offset-2{margin-left:16.66666667%}.w-col-xs-offset-1{margin-left:8w-33333333%}.w-col-xs-offset-0{margin-left:0}@media (min-width:768px){.w-col-sm-1,.w-col-sm-10,.w-col-sm-11,.w-col-sm-12,.w-col-sm-2,.w-col-sm-3,.w-col-sm-4,.w-col-sm-5,.w-col-sm-6,.w-col-sm-7,.w-col-sm-8,.w-col-sm-9{float:left}.w-col-sm-12{width:100%}.w-col-sm-11{width:91.66666667%}.w-col-sm-10{width:83.33333333%}.w-col-sm-9{width:75%}.w-col-sm-8{width:66.66666667%}.w-col-sm-7{width:58.33333333%}.w-col-sm-6{width:50%}.w-col-sm-5{width:41.66666667%}.w-col-sm-4{width:33.33333333%}.w-col-sm-3{width:25%}.w-col-sm-2{width:16.66666667%}.w-col-sm-1{width:8w-33333333%}.w-col-sm-pull-12{right:100%}.w-col-sm-pull-11{right:91.66666667%}.w-col-sm-pull-10{right:83.33333333%}.w-col-sm-pull-9{right:75%}.w-col-sm-pull-8{right:66.66666667%}.w-col-sm-pull-7{right:58.33333333%}.w-col-sm-pull-6{right:50%}.w-col-sm-pull-5{right:41.66666667%}.w-col-sm-pull-4{right:33.33333333%}.w-col-sm-pull-3{right:25%}.w-col-sm-pull-2{right:16.66666667%}.w-col-sm-pull-1{right:8w-33333333%}.w-col-sm-pull-0{right:auto}.w-col-sm-push-12{left:100%}.w-col-sm-push-11{left:91.66666667%}.w-col-sm-push-10{left:83.33333333%}.w-col-sm-push-9{left:75%}.w-col-sm-push-8{left:66.66666667%}.w-col-sm-push-7{left:58.33333333%}.w-col-sm-push-6{left:50%}.w-col-sm-push-5{left:41.66666667%}.w-col-sm-push-4{left:33.33333333%}.w-col-sm-push-3{left:25%}.w-col-sm-push-2{left:16.66666667%}.w-col-sm-push-1{left:8w-33333333%}.w-col-sm-push-0{left:auto}.w-col-sm-offset-12{margin-left:100%}.w-col-sm-offset-11{margin-left:91.66666667%}.w-col-sm-offset-10{margin-left:83.33333333%}.w-col-sm-offset-9{margin-left:75%}.w-col-sm-offset-8{margin-left:66.66666667%}.w-col-sm-offset-7{margin-left:58.33333333%}.w-col-sm-offset-6{margin-left:50%}.w-col-sm-offset-5{margin-left:41.66666667%}.w-col-sm-offset-4{margin-left:33.33333333%}.w-col-sm-offset-3{margin-left:25%}.w-col-sm-offset-2{margin-left:16.66666667%}.w-col-sm-offset-1{margin-left:8w-33333333%}.w-col-sm-offset-0{margin-left:0}}@media (min-width:992px){.w-col-md-1,.w-col-md-10,.w-col-md-11,.w-col-md-12,.w-col-md-2,.w-col-md-3,.w-col-md-4,.w-col-md-5,.w-col-md-6,.w-col-md-7,.w-col-md-8,.w-col-md-9{float:left}.w-col-md-12{width:100%}.w-col-md-11{width:91.66666667%}.w-col-md-10{width:83.33333333%}.w-col-md-9{width:75%}.w-col-md-8{width:66.66666667%}.w-col-md-7{width:58.33333333%}.w-col-md-6{width:50%}.w-col-md-5{width:41.66666667%}.w-col-md-4{width:33.33333333%}.w-col-md-3{width:25%}.w-col-md-2{width:16.66666667%}.w-col-md-1{width:8w-33333333%}.w-col-md-pull-12{right:100%}.w-col-md-pull-11{right:91.66666667%}.w-col-md-pull-10{right:83.33333333%}.w-col-md-pull-9{right:75%}.w-col-md-pull-8{right:66.66666667%}.w-col-md-pull-7{right:58.33333333%}.w-col-md-pull-6{right:50%}.w-col-md-pull-5{right:41.66666667%}.w-col-md-pull-4{right:33.33333333%}.w-col-md-pull-3{right:25%}.w-col-md-pull-2{right:16.66666667%}.w-col-md-pull-1{right:8w-33333333%}.w-col-md-pull-0{right:auto}.w-col-md-push-12{left:100%}.w-col-md-push-11{left:91.66666667%}.w-col-md-push-10{left:83.33333333%}.w-col-md-push-9{left:75%}.w-col-md-push-8{left:66.66666667%}.w-col-md-push-7{left:58.33333333%}.w-col-md-push-6{left:50%}.w-col-md-push-5{left:41.66666667%}.w-col-md-push-4{left:33.33333333%}.w-col-md-push-3{left:25%}.w-col-md-push-2{left:16.66666667%}.w-col-md-push-1{left:8w-33333333%}.w-col-md-push-0{left:auto}.w-col-md-offset-12{margin-left:100%}.w-col-md-offset-11{margin-left:91.66666667%}.w-col-md-offset-10{margin-left:83.33333333%}.w-col-md-offset-9{margin-left:75%}.w-col-md-offset-8{margin-left:66.66666667%}.w-col-md-offset-7{margin-left:58.33333333%}.w-col-md-offset-6{margin-left:50%}.w-col-md-offset-5{margin-left:41.66666667%}.w-col-md-offset-4{margin-left:33.33333333%}.w-col-md-offset-3{margin-left:25%}.w-col-md-offset-2{margin-left:16.66666667%}.w-col-md-offset-1{margin-left:8w-33333333%}.w-col-md-offset-0{margin-left:0}}@media (min-width:1200px){.w-col-lg-1,.w-col-lg-10,.w-col-lg-11,.w-col-lg-12,.w-col-lg-2,.w-col-lg-3,.w-col-lg-4,.w-col-lg-5,.w-col-lg-6,.w-col-lg-7,.w-col-lg-8,.w-col-lg-9{float:left}.w-col-lg-12{width:100%}.w-col-lg-11{width:91.66666667%}.w-col-lg-10{width:83.33333333%}.w-col-lg-9{width:75%}.w-col-lg-8{width:66.66666667%}.w-col-lg-7{width:58.33333333%}.w-col-lg-6{width:50%}.w-col-lg-5{width:41.66666667%}.w-col-lg-4{width:33.33333333%}.w-col-lg-3{width:25%}.w-col-lg-2{width:16.66666667%}.w-col-lg-1{width:8w-33333333%}.w-col-lg-pull-12{right:100%}.w-col-lg-pull-11{right:91.66666667%}.w-col-lg-pull-10{right:83.33333333%}.w-col-lg-pull-9{right:75%}.w-col-lg-pull-8{right:66.66666667%}.w-col-lg-pull-7{right:58.33333333%}.w-col-lg-pull-6{right:50%}.w-col-lg-pull-5{right:41.66666667%}.w-col-lg-pull-4{right:33.33333333%}.w-col-lg-pull-3{right:25%}.w-col-lg-pull-2{right:16.66666667%}.w-col-lg-pull-1{right:8w-33333333%}.w-col-lg-pull-0{right:auto}.w-col-lg-push-12{left:100%}.w-col-lg-push-11{left:91.66666667%}.w-col-lg-push-10{left:83.33333333%}.w-col-lg-push-9{left:75%}.w-col-lg-push-8{left:66.66666667%}.w-col-lg-push-7{left:58.33333333%}.w-col-lg-push-6{left:50%}.w-col-lg-push-5{left:41.66666667%}.w-col-lg-push-4{left:33.33333333%}.w-col-lg-push-3{left:25%}.w-col-lg-push-2{left:16.66666667%}.w-col-lg-push-1{left:8w-33333333%}.w-col-lg-push-0{left:auto}.w-col-lg-offset-12{margin-left:100%}.w-col-lg-offset-11{margin-left:91.66666667%}.w-col-lg-offset-10{margin-left:83.33333333%}.w-col-lg-offset-9{margin-left:75%}.w-col-lg-offset-8{margin-left:66.66666667%}.w-col-lg-offset-7{margin-left:58.33333333%}.w-col-lg-offset-6{margin-left:50%}.w-col-lg-offset-5{margin-left:41.66666667%}.w-col-lg-offset-4{margin-left:33.33333333%}.w-col-lg-offset-3{margin-left:25%}.w-col-lg-offset-2{margin-left:16.66666667%}.w-col-lg-offset-1{margin-left:8w-33333333%}.w-col-lg-offset-0{margin-left:0}}.w-clearfix:after,.w-clearfix:before,.w-container-fluid:after,.w-container-fluid:before,.w-container:after,.w-container:before,.w-row:after,.w-row:before{content:" ";display:table}.w-clearfix:after,.w-container-fluid:after,.w-container:after,.w-row:after{clear:both}.w-center-block{display:block;margin-left:auto;margin-right:auto}.w-pull-right{float:right!important}.w-pull-left{float:left!important}.w-hide{display:none!important}.w-show{display:block!important}.w-invisible{visibility:hidden}.w-text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.w-hidden{display:none!important}.w-affix{position:fixed}.mec-image-popup-wrap{display:none}#wns-be-infobar.sticky{position:fixed;top:32px;background:#fff;z-index:9999;width:82%}.wns-be-main .wns-saved-settings.sticky{position:fixed;width:62.5%;top:111px;z-index:999999999999999999}.mec-export-settings,.mec-import-settings{font-weight:700;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:8px 32px;height:36px;letter-spacing:.2px;line-height:36px;font-size:13px;color:#fff;text-decoration:none;display:inline-block}.mec-export-settings:hover,.mec-import-settings:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5);color:#fff}textarea.mec-import-settings-content{display:block;width:100%;min-height:120px;margin-bottom:25px;padding:10px 15px}.mec-import-options-notification{display:inline-block}.mec-import-options-notification .mec-message-import-error,.mec-import-options-notification .mec-message-import-success{display:inline-block;padding:15px 12px;margin-left:12px;opacity:0;visibility:hidden;font-weight:700}.mec-import-options-notification .mec-message-import-success{opacity:1;visibility:visible;border:2px solid green}.mec-import-options-notification .mec-message-import-error{opacity:1;visibility:visible;border:2px solid #e62117}.mec-export-settings:focus,.mec-import-settings:focus{color:#fff}.mec-import-settings-wrap{position:relative}.mec-loarder-wrap{position:absolute;top:0;bottom:0;left:0;right:0;background:rgba(202,202,202,.7);z-index:9999}.mec-loarder-wrap.mec-settings-loader{top:34px}.mec-loarder{position:absolute;width:64px;height:64px;top:calc(50% - 32px);left:calc(50% - 36px)}.mec-loarder div{display:inline-block;position:absolute;left:6px;width:4px;background:#fff;animation:mec-loarder 1.2s cubic-bezier(0,.5,.5,1) infinite}.mec-loarder div:nth-child(1){left:27px;animation-delay:-.24s;background:#0075ff}.mec-loarder div:nth-child(2){left:36px;animation-delay:-.12s;background:#028bff}.mec-loarder div:nth-child(3){left:45px;animation-delay:0;background:#32a0ff}@keyframes mec-loarder{0%{top:6px;height:51px}100%,50%{top:19px;height:26px}}.w-box.support-page.searchbox{background:#008aff;background:linear-gradient(180deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff;min-height:260px;text-align:center;border-radius:2px}#webnus-dashboard .search-form input{background:rgba(255,255,255,.2);border:none;width:50%;outline:0;color:rgba(255,255,255,.7);font-size:18px;border-radius:4px 0 0 4px;box-shadow:0 1px 2px 0 rgba(0,0,0,.03);-webkit-transition:background .4s,box-shadow .2s;transition:background .4s,box-shadow .2s;padding:20px 32px;margin:0}#webnus-dashboard .search-form button{background:rgba(255,255,255,.2);border:none;padding:20px 32px;margin-left:-2px;color:#fff;border-radius:0 4px 4px 0;font-size:18px;cursor:pointer;-webkit-transition:background .4s,box-shadow .2s;transition:background .4s,box-shadow .2s}#webnus-dashboard .search-form button:hover{background:#fff;color:#3a3c4c}.w-box.support-page.searchbox p{font-size:30px}.search-form input::-webkit-input-placeholder{color:rgba(255,255,255,.7)}.search-form input::-moz-placeholder{color:rgba(255,255,255,.7)}.search-form input:-ms-input-placeholder{color:rgba(255,255,255,.7)}.search-form input:-moz-placeholder{color:rgba(255,255,255,.7)}#webnus-dashboard .search-form input:active,#webnus-dashboard .search-form input:focus{box-shadow:0 10px 20px rgba(0,0,0,.14);background:#fff;color:#3a3c4c}#webnus-dashboard .search-form input:active::-webkit-input-placeholder,#webnus-dashboard .search-form input:focus::-webkit-input-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active::-moz-placeholder,#webnus-dashboard .search-form input:focus::-moz-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active:-ms-input-placeholder,#webnus-dashboard .search-form input:focus:-ms-input-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active:-moz-placeholder,#webnus-dashboard .search-form input:focus:-moz-placeholder{color:#3a3c4c}#webnus-dashboard .w-box.support-page.mec-ticksy{text-align:center;min-height:260px}#webnus-dashboard .w-box.support-page.mec-ticksy p{font-size:20px;width:70%;margin:0 auto;margin-bottom:40px;margin-top:40px}#webnus-dashboard .w-box.support-page.mec-ticksy a{color:#fff;font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:12px 20px;cursor:pointer;margin-bottom:40px;display:inline-block}#webnus-dashboard .w-box.support-page.mec-ticksy a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5)}.mec-faq-accordion>.mec-faq-accordion-content{display:none}#webnus-dashboard .mec-faq-accordion-trigger a{font-size:16px;padding:12px;background:#f1f1f1;display:block;color:#222;line-height:17px;outline:0}.mec-faq-accordion-trigger{margin-bottom:5px;position:relative}#webnus-dashboard .mec-faq-accordion-trigger a:after{font-family:simple-line-icons;content:"\e095";position:absolute;right:12px;font-weight:700}.mec-faq-accordion-content{padding:5px 14px 25px}#webnus-dashboard .mec-faq-accordion-trigger a.active:after{content:"\e082"}#webnus-dashboard .support-page-links a{background-color:#fff;color:#fff;border-radius:2px;padding:13px 24px;font-size:12px;letter-spacing:1px;font-weight:600;text-transform:uppercase}#webnus-dashboard .support-page-links a:hover,#webnus-dashboard .w-box.support-page.videobox .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}#webnus-dashboard .support-page-links{display:inline-block;margin:12px 4px 16px 0}.support-page-links.link-to-doc a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.support-page-links.link-to-videos a{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);box-shadow:0 5px 10px -5px #ff876c}.support-page-links.link-to-articles a{background:#b092e6;background:linear-gradient(95deg,#b092e6 0,#9b70e8 50%,#8e5cea 100%);box-shadow:0 5px 10px -5px #b092e6}.w-box.support-page.articles-box .w-box-content a{display:block;padding:6px 0}#webnus-dashboard .w-box.support-page.videobox .w-button a{color:#fff;font-size:10px;padding:5px 15px;min-height:10px;font-weight:500;border-radius:22px;box-shadow:0 3px 10px -4px #ff5a35;text-shadow:none;background:#ff5a35;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);border:none;transition:.24s}.w-box.support-page.articles-box,.w-box.support-page.faq-box{min-height:500px}.w-box.support-page.videobox{border-radius:2px;min-height:282px;box-shadow:0 1px 6px rgba(0,0,0,.039)!important}#webnus-dashboard .w-box.support-page.videobox .w-button a i{margin-right:6px}.support-page .w-box-content ul{margin-top:5px;padding-left:5px}.support-page .w-box-content ul li{font-size:13px}.support-page .w-box-content ul li i{font-size:17px;vertical-align:text-bottom;margin-right:7px;color:#999}.w-box.mec-activation{background:#fff url(../img/dp-dsb-support.jpg) no-repeat top right}.w-box.mec-activation .w-box-head{color:#40d8f0;width:75%}.w-box.mec-activation .w-box-content{padding:10px 30px}.w-box.mec-activation input[type=radio]{display:none}.w-box.mec-activation input[type=radio]+label{color:#000;font-size:13px;line-height:14px!important;color:#7b7b7b}.w-box.mec-activation input[type=radio].checked+label{color:#40d8f0}.w-box.mec-activation input[type=radio]+label span{display:inline-block;margin:-2px 6px 0 0;vertical-align:middle;cursor:pointer;height:14px;width:14px;text-align:center;background-color:#fff;border:1px solid #d4d4d4;border-radius:100%;box-shadow:0 2px 16px -2px rgba(0,0,0,.2);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;position:relative}.w-box.mec-activation input[type=radio].checked+label span{background-color:#40d8f0;border-color:#40d8f0;box-shadow:0 2px 14px -3px #40d8f0}.w-box.mec-activation input[type=radio].checked+label span:after{content:'';display:block;position:absolute;top:4px;left:4px;width:4px;height:4px;background:#fff;border-radius:100%}.w-box.mec-activation .LicenseType label{padding-right:20px;font-weight:500}.w-box.mec-activation .LicenseField{display:inline-block;position:relative;margin-top:20px}.w-box.mec-activation input[name=MECPurchaseCode]{box-shadow:inset 0 1px 2px rgba(0,0,0,.07);min-width:220px;background:#f4f4f4;border:none;border-radius:33px;width:500px;min-height:50px;margin:0;padding-left:20px;text-align:left}#webnus-dashboard .w-box.mec-activation input[type=submit]{height:40px;line-height:40px;font-weight:600;border:none;cursor:pointer;padding:0 30px;border-radius:33px;color:#fff;letter-spacing:1px;text-transform:uppercase;font-size:12px;background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67;transition:all .28s ease;position:absolute;right:5px;top:4px;font-size:12px}#webnus-dashboard .w-box.mec-activation input[type=submit]:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5)}#MECActivation .MECPurchaseStatus,.addon-activation-form .MECPurchaseStatus{display:inline-block;width:40px;height:40px;text-align:center;padding-top:9px;color:#fff;font-weight:700;font-size:18px;border-radius:50%;padding-top:8px;position:absolute;right:-51px;top:calc(50% - 20px)}.MECPurchaseStatus:after,.MECPurchaseStatus:before{position:absolute;border-radius:50px;background:#fff;content:'';transform:rotate(45deg)}.MECPurchaseStatus.PurchaseError:before{width:22px;height:4px;right:9px;top:18px;transform:rotate(45deg)}.MECPurchaseStatus.PurchaseError:after{width:22px;height:4px;right:9px;top:18px;transform:rotate(-45deg)}.MECPurchaseStatus.PurchaseSuccess:before{width:13px;height:4px;right:19px;top:21px;transform:rotate(45deg)}.MECPurchaseStatus.PurchaseSuccess:after{width:22px;height:4px;right:5px;top:18px;transform:rotate(-45deg)}#MECActivation .MECPurchaseStatus.PurchaseError,.addon-activation-form .MECPurchaseStatus.PurchaseError{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);box-shadow:0 5px 10px -5px #ff876c}#MECActivation .MECPurchaseStatus.PurchaseSuccess,.addon-activation-form .MECPurchaseStatus.PurchaseSuccess{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.wna-spinner-wrap{position:absolute;background:#000;width:509px;height:64px;top:-8px;border-radius:50px;z-index:999;background-color:#fff;opacity:.9}.wna-spinner{width:40px;height:40px;position:relative;margin:6px auto}.wna-spinner .double-bounce1,.wna-spinner .double-bounce2{width:100%;height:100%;border-radius:50%;background-color:#40d8f0;opacity:.6;position:absolute;top:0;left:0;-webkit-animation:sk-bounce 2s infinite ease-in-out;animation:sk-bounce 2s infinite ease-in-out}.wna-spinner .double-bounce2{-webkit-animation-delay:-1s;animation-delay:-1s}#MECActivation .MECLicenseMessage,.addon-activation-form .MECLicenseMessage{margin-top:24px;color:#f64;max-width:570px}.box-addon-activation-toggle-content,.box-addon-activation-toggle-head{display:none}.addon-activation-form h3{font-size:15px;font-weight:400;margin:34px 0 -7px}.box-addon-activation-toggle-head{line-height:1.5;font-size:16px;margin-top:20px;cursor:pointer}.box-addon-activation-toggle-head i{margin-right:7px;cursor:pointer;font-weight:700}#mec-advanced-wraper div:first-child>ul{display:block;margin:5px 0;padding:5px 0;width:390px;border:1px solid #e1e2e3;border-radius:2px;box-shadow:0 1px 3px rgba(0,0,0,.05)}#mec-advanced-wraper div:first-child>ul span{display:none}#mec-advanced-wraper div:first-child>ul *{display:inline-block;background:#fff;font-size:12px;color:#717273;text-align:center}#mec-advanced-wraper div:first-child>ul>li{width:60px;font-weight:700;margin:0 10px 0 0;padding:4px 0;border-right:1px solid #e1e2e3}#mec-advanced-wraper div:first-child>ul>ul>li{margin:0;padding:2px 10px;cursor:pointer;border-radius:2px;transition:all .18s ease}#mec-advanced-wraper div:first-child>ul>ul>li:hover,.mec-active{background:#008aff!important;color:#fff!important}@-webkit-keyframes sk-bounce{0%,100%{-webkit-transform:scale(0)}50%{-webkit-transform:scale(1)}}@keyframes sk-bounce{0%,100%{transform:scale(0);-webkit-transform:scale(0)}50%{transform:scale(1);-webkit-transform:scale(1)}}.w-col-sm-3 .w-box.addon{min-height:auto;box-shadow:0 3px 16px -5px rgba(0,0,0,.1);border-radius:2px}.w-box-child.mec-addon-box{padding:20px 20px}.mec-addon-box-head{border-bottom:1px solid #e8e8e8;padding-bottom:5px;margin-bottom:14px;position:relative}.mec-addon-box-version{position:relative;background:#eaeaea;border-radius:1px;padding:0 8px;color:#5a5a5a;font-size:11px;letter-spacing:.2px;line-height:21px;display:inline-block;margin:10px 0}.mec-addon-box-head img{display:block;width:60px;margin-bottom:10px}.mec-addon-box-title{font-weight:700;font-size:18px;line-height:25px}.mec-addon-box-title a span{color:#444;font-size:15px}.mec-addon-box-content p{color:#777;font-size:13px;letter-spacing:.1px}.mec-addon-box-mec-version{background:#f3f3f3;padding:10px;font-size:13px}#webnus-dashboard .addons-page-links{display:inline-block;margin:12px 4px 16px 0}#webnus-dashboard .addons-page-links a{background-color:#fff;color:#fff;border-radius:2px;padding:13px 24px;font-size:12px;letter-spacing:1px;font-weight:600;text-transform:uppercase}.addons-page-links.link-to-purchase a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.addons-page-links.link-to-install-addons a{background:#b092e6;background:linear-gradient(95deg,#b092e6 0,#9b70e8 50%,#8e5cea 100%);box-shadow:0 5px 10px -5px #b092e6}#webnus-dashboard .addons-page-links a:hover,#webnus-dashboard .w-box.addons-page.videobox .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}.mec-addon-box-footer{margin-top:25px;text-align:center}#webnus-dashboard .mec-addon-box-footer a{background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);margin-top:10px;display:inline-block;text-shadow:none;border:none;transition:.24s;position:relative;margin-right:7px;font-size:12px;font-weight:500;border-radius:7px;padding:9px 18px 8px;width:53px;height:34px;line-height:21px;box-shadow:0 2px 8px -3px #008aff}#webnus-dashboard .mec-addon-box-footer a:last-of-type{margin-right:0}#webnus-dashboard .mec-addon-box-footer a.mec-addon-box-intro{box-shadow:0 3px 10px -4px #ff3535;background:linear-gradient(95deg,#ff6c6c 0,#f55 50%,#ff3535 100%)}#webnus-dashboard .mec-addon-box-footer a:hover{background:#222!important;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%)!important;box-shadow:0 5px 23px -7px rgba(0,0,0,.5)!important;cursor:pointer!important}#webnus-dashboard .mec-addon-box-footer a i{color:#fff;font-size:16px}@media(max-width:1366px){.wns-be-container #wns-be-content{padding:5px 15px 0}.mec-form-row .mec-col-8 label{font-size:10px}#webnus-dashboard .mec-tooltip .box p,.mec-tooltip .box p{font-size:10px}}@media (max-width:780px){.wns-be-container #wns-be-content{padding:10px 0}.wns-be-container .mec-form-row .mec-col-8 label{width:50%;display:block}.wns-be-container .mec-form-row input[type=checkbox]{width:14px;height:14px}.wns-be-container .wns-be-sidebar li .subsection a{padding-left:30px}.wns-be-container .wns-be-sidebar{width:200px}.wns-be-container .wns-be-main{margin-left:200px}.wns-be-container .mec-tooltip .box{min-width:235px!important}.wns-be-container .mec-tooltip .box p{font-size:12px!important}#wns-be-infobar.sticky{position:unset}}@media (max-width:480px){.wns-be-container .wns-be-sidebar{width:100%;position:unset;float:none}.wns-be-container .wns-be-main{margin-left:0;width:100%;position:unset}.wns-be-container{margin-top:50px}.wns-be-container #wns-be-infobar:before{width:100%}.wns-be-container #wns-be-infobar{height:150px}#mec-search-settings{margin-top:80px;width:181px}}.addons-page-error,.addons-page-notice{display:block;margin-top:15px;margin-bottom:0;background:#fff;border-left:4px solid #00a0d2;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);padding:1px 12px}.addons-page-error p,.addons-page-notice p{margin:.5em 0;padding:2px;font-size:13px}.addons-page-error{border-left-color:#dc3232}.mec-addon-box-comingsoon{background:#eaeaea;padding:8px 11px;color:#5a5a5a;font-size:14px;font-weight:500;text-align:center}.mec-addons .w-row .w-col-sm-3:nth-child(4n+1){clear:left}@media (min-width:960px){#webnus-dashboard .mec-addon-box-footer .w-button{text-align:right}}@media (min-width:1401px){.mec-addon-box-title a span{font-size:17px}}.mec-pro-notice{margin-top:24px;line-height:30px}.mec-pro-notice .info-msg{padding:50px 30px;margin-bottom:0}#webnus-dashboard .mec-pro-notice .info-msg{background:#fff;box-shadow:0 1px 16px rgba(0,0,0,.034);text-align:center;color:#000}#webnus-dashboard a.info-msg-link{background:#e66f52;background:linear-gradient(95deg,#ff8162 0,#e66f52 50%,#ff4c20 100%);box-shadow:0 5px 10px -5px #e66f52;border-radius:2px;padding:12px 50px;font-size:16px;line-height:24px;border:none;margin:20px auto 0;color:#fff;transition:all .3s ease;display:inline-block}#webnus-dashboard a.info-msg-link:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}#webnus-dashboard .info-msg p{width:70%;margin:0 auto;line-height:1.8}#webnus-dashboard .info-msg-coupon{font-size:13px;color:#777;max-width:600px;line-height:1.68;margin:25px auto 0}#webnus-dashboard .info-msg-coupon strong{font-weight:700;color:#19ce18}.info-msg .socialfollow{padding-top:20px}.info-msg .socialfollow a{margin:0 2px;display:inline-block}.info-msg .socialfollow a i{background:#96a4b1;color:#fff;padding:6px;border-radius:3px;font-size:18px;box-shadow:0 2px 3px rgba(0,0,0,.1);transition:all .25s}.info-msg .socialfollow a:hover i{background:#008aff}.mec-intro-section .w-box-content{text-align:center}.mec-intro-section .w-box-content.mec-intro-section-welcome{max-width:600px;margin:0 auto}.mec-intro-section .w-box-content.mec-intro-section-welcome h3{font-size:27px}a.mec-intro-section-link-tag.button.button-hero{margin:0 10px 40px}a.mec-intro-section-link-tag.button.button-primary.button-hero{color:#fff!important}a.mec-intro-section-link-tag.button.button-secondary.button-hero{color:#000!important}.mec-intro-section-ifarme iframe{border:1px solid #e7e7e7;border-radius:3px;padding:10px;box-shadow:0 3px 10px -6px rgba(0,0,0,.2)}.w-box-content.mec-intro-section-welcome p{margin-bottom:0}.mec-tooltip a:focus{box-shadow:none}#mec_booking_form .mec-options-fields,#mec_modules_form .mec-options-fields,#mec_settings_form .mec-options-fields,#mec_single_form .mec-options-fields{padding-bottom:150px!important}#mec_taxes_fees_container_toggle{margin-bottom:60px}#mec_taxes_fees_container_toggle{margin-bottom:60px}.wns-be-sidebar li{position:relative}.wns-be-sidebar li .submneu-hover{position:absolute;top:-1px;right:-222px;width:220px;z-index:9;background:#fff;border:1px;border-style:solid;border-color:#dedede;margin:0;overflow:visible;opacity:0;visibility:hidden;transition:all .23s ease;padding-top:8px;padding-bottom:12px}.wns-be-sidebar li:hover{background:#fff}.wns-be-sidebar li:hover .submneu-hover{opacity:1;visibility:visible}.wns-be-sidebar li .submneu-hover a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 26px}.wns-be-sidebar li .submneu-hover a:hover{background:#f6f6f6;color:#222}.wns-be-sidebar li .submneu-hover:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-15px;top:14px;border-right-color:#c5c5c5;right:0}.wns-be-sidebar li .submneu-hover:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-14px;top:14px}.wns-be-sidebar li a:focus,.wns-be-sidebar li:focus{outline:-webkit-focus-ring-color auto 0;border:0;box-shadow:none}@media (max-width:480px){.wns-be-sidebar li .submneu-hover{width:175px;right:0}.wns-be-sidebar li .submneu-hover a{font-size:11px;padding:5px 5px 5px 20px}}.mec-tooltip:hover:after,.mec-tooltip:hover:before{display:none}.mec-tooltip{display:inline-flex;bottom:7px}.mec-tooltip .box{min-width:300px;max-width:600px;display:inline-block;left:26px;top:50%;transform:translateY(-50%);padding:0;margin-top:8px;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.3;position:absolute;z-index:9999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s}#webnus-dashboard .mec-tooltip .box p,.mec-tooltip .box p{color:#fff;font-size:14px;line-height:1.3;margin:0;font-style:normal}.mec-tooltip:hover .box{visibility:visible;opacity:1}.mec-tooltip:hover .box{padding:20px;border-radius:8px}.mec-tooltip .box h5{color:#fff;font-size:17px;font-weight:600;margin:-30px -20px;padding:15px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #30353a;border-radius:6px 6px 0 0;z-index:9999}#webnus-dashboard .mec-tooltip .box p a,.mec-tooltip .box p a{color:#40d9f1;margin-top:10px;margin-left:0;font-weight:400;position:relative;text-decoration:none;display:block;width:max-content}.mec-tooltip .box a:hover{color:#f90}.mec-tooltip .box:after{display:block;position:absolute!important;top:100%!important;right:50%!important;margin-top:-6px!important;margin-right:-6px!important;width:12px!important;height:24px!important;overflow:hidden!important;transform:rotate(-90deg)!important}.mec-tooltip .box:before{display:block;content:''!important;position:absolute!important;width:12px;height:12px;left:-10px!important;top:50%!important;transform:translate(50%,-50%) rotate(-45deg)!important;background-color:#535a61!important;box-shadow:0 8px 9px -4px #535a61!important;z-index:0!important}.mec-tooltip .box.top{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-tooltip .box.top:after{top:50%!important;right:100%!important}.mec-tooltip .box.top:before{left:50%!important;top:100%!important}.mec-tooltip .box.bottom{left:50%;top:auto;bottom:0;transform:translate(-50%,100%);margin-bottom:-20px;margin-left:-10px}.mec-tooltip .box.bottom:after{top:0!important;right:50%!important;background-color:#3a3f44!important}.mec-tooltip .box.bottom:before{left:50%!important;top:-7px!important;transform:translateX(-50%);background-color:#3a3f44!important}.mec-tooltip .box.left{left:auto;right:26px;top:50%;transform:translateY(-50%)}.mec-tooltip .box.left:before{right:0!important;left:auto!important;top:50%!important}form#mec_reg_fields_form input[type=radio]:before{content:"";display:inline-block;background:#fff;border-radius:18px;width:14px;height:14px;margin:-1px 0 0 -2px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32)}form#mec_reg_fields_form input[type=radio]:checked:before{border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff;width:4px;height:4px}form#mec_reg_fields_form input[type=radio]{min-height:0;margin-right:6px}form#mec_reg_fields_form label{margin-right:20px}@media(min-width:1200px) and (max-width:1366px){.mec-tooltip .box.left{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-tooltip .box.left:after{top:50%!important;right:100%!important}.mec-tooltip .box.left:before{left:50%!important;top:100%!important}.mec-tooltip .box{min-width:225px}.mec-tooltip .box h5{font-size:15px}.mec-tooltip .box .content{font-size:12px}}@media(max-width:1366px){.wns-be-container .wns-be-group-tab p{margin-top:0}}.mec-addons-notification-box-wrap .w-col-sm-12{padding:0}.mec-addons-notification-box-wrap img{width:auto}.mec-addons-notification-box-image{width:555px;display:inline-block;vertical-align:top}.mec-addons-notification-box-content{width:calc(100% - 559px);display:inline-block}.mec-addons-notification-box-content p{margin-top:1%;line-height:1.5;font-size:16px}.mec-addons-notification-box-content .w-box-content{padding-top:0;padding-bottom:0}.mec-addons-notification-box-content ol{font-size:16px}.mec-addons-notification-box-content a{background:#38d5ed;color:#fff!important;padding:10px 26px;margin-top:5px;display:inline-block;border-radius:3px;text-transform:capitalize;font-size:16px;letter-spacing:.4px;transition:all .1s ease;font-weight:600;text-decoration:none}.mec-addons-notification-box-content a:hover{background:#000}.w-clearfix.w-box.mec-addons-notification-box-wrap span{right:0;left:unset;cursor:pointer;background:#fff;padding:0 16px}.w-clearfix.w-box.mec-addons-notification-box-wrap span i{font-size:28px;vertical-align:sub;color:#f2113e}.wns-be-container .mec-addons-notification-wrap{padding:0;margin:0}.wns-be-container .mec-addons-notification-wrap .w-col-sm-12{padding:0}.wns-be-container .w-box{margin-top:0}.wns-be-container.mec-addons-notification-set-box{margin-right:15px;margin-top:50px;margin-bottom:27px}@media(max-width:1200px){.mec-addons-notification-box-content,.mec-addons-notification-box-image{width:100%;display:block}.mec-addons-notification-box-image{text-align:center}}@media(max-width:768px){.mec-addons-notification-box-image img{width:100%;height:auto}}body.rtl .wns-be-sidebar{width:260px;float:right;position:relative}body.rtl .wns-be-main{margin-left:0;border-left:0;margin-right:260px;border-right:1px solid #dedede}body.rtl .w-box.mec-activation .LicenseField{direction:rtl}body.rtl .w-box.mec-activation input[name=MECPurchaseCode]{text-align:right;padding-right:20px}body.rtl #MECActivation .MECPurchaseStatus,body.rtl .addon-activation-form .MECPurchaseStatus{right:auto;left:-51px}body.rtl #webnus-dashboard .w-box.mec-activation input[type=submit]{right:auto;left:5px}body.rtl .wns-be-sidebar .wns-be-group-menu li a{padding:13px 20px 13px 4px}body.rtl .wns-be-sidebar .wns-be-group-tab-link-a span.wns-be-group-menu-title{padding-left:0;padding-right:24px}body.rtl .wns-be-sidebar .has-sub span.extra-icon{float:left}body.rtl .wns-be-sidebar .wns-be-group-tab-link-a span.extra-icon i{right:auto;left:10px}body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:after,body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:transparent;border-left-color:#fff;right:auto;left:-1px;top:10px}body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{border-right-color:transparent;border-left-color:#c5c5c5;right:auto;left:0}body.rtl .mec-col-1,body.rtl .mec-col-10,body.rtl .mec-col-11,body.rtl .mec-col-12,body.rtl .mec-col-2,body.rtl .mec-col-3,body.rtl .mec-col-4,body.rtl .mec-col-5,body.rtl .mec-col-6,body.rtl .mec-col-7,body.rtl .mec-col-8,body.rtl .mec-col-9{float:right;margin:0 1% 0 0}body.rtl .wns-be-sidebar li .submneu-hover{right:auto;left:-222px}body.rtl .wns-be-sidebar li .submneu-hover:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:auto;right:-1px;top:14px}body.rtl #mec_styles_form #mec_styles_CSS{direction:ltr}body.rtl .w-box.mec-activation{-moz-transform:scaleY(-1);-o-transform:scaleY(-1);-webkit-transform:scaleY(-1);transform:scaleX(-1)}body.rtl .w-box.mec-activation .w-box-content,body.rtl .w-box.mec-activation .w-box-head{-moz-transform:scaleY(-1);-o-transform:scaleY(-1);-webkit-transform:scaleY(-1);transform:scaleX(-1);display:block}body.rtl .w-box.mec-activation .w-box-head{width:100%}body.rtl .wns-be-container #wns-be-infobar:before{left:auto;right:0}body.rtl .wns-be-container .dpr-btn.dpr-save-btn{float:left}body.rtl .wns-be-container .wns-be-group-tab h2:before,body.rtl .wns-be-container .wns-be-group-tab h4:before{left:auto;right:0;margin-right:0;margin-left:5px}body.rtl #mec_gateways_form .mec-tooltip{float:left}.mec-details-addons-container{margin-top:20px}.mec-details-addons-wrap img{float:left;width:19%;margin-right:17px}.mec-details-addons-wrap{clear:both;margin-bottom:80px;display:block;position:relative}.mec-details-addons-wrap a{text-decoration:none}.mec-details-addons-wrap p{float:left;width:340px;margin-top:0;margin-bottom:30px}.mec-details-addons-title{font-weight:700}.mec-details-addons-title a{color:#444}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx{border-radius:10px!important;box-shadow:0 4px 38px rgba(0,0,0,.14)!important}body .crisp-client .crisp-1rjpbb7 .crisp-13qutdl,body .crisp-client .crisp-1rjpbb7 .crisp-13qutdl *,body .crisp-client .crisp-1rjpbb7 .crisp-9dgo7z,body .crisp-client .crisp-1rjpbb7 .crisp-9dgo7z *{font-family:proxima-nova,-apple-system,BlinkMacSystemFont,"Segoe UI",Catamaran,sans-serif!important}body .crisp-client .crisp-1rjpbb7 .crisp-145mbcr,body .crisp-client .crisp-1rjpbb7 .crisp-1jrqqbm:hover{background-color:#fff!important}body .crisp-client .crisp-1rjpbb7 .crisp-14u434g{border-color:#e7e8e9!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-1bkorcf .crisp-1vzg1qq{font-size:20px!important;width:14px!important;height:19px!important;opacity:.85}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-1bkorcf .crisp-1vzg1qq:hover{opacity:.99}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-1sps3eb .crisp-1vd2grm .crisp-12w4w1a{font-size:13px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-1sps3eb .crisp-1vd2grm .crisp-12w4w1a::-webkit-input-placeholder{color:#717273!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=visitor] .crisp-z89v5n .crisp-162m9xf{background-color:#008aff!important;color:#fff!important;box-shadow:none!important;border-radius:5px!important;padding:15px 25px 15px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=visitor] .crisp-z89v5n .crisp-162m9xf .crisp-1o2g4mc{color:#fff!important;font-size:13px!important;letter-spacing:.3px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-z89v5n .crisp-162m9xf{background-color:#f1f2f3!important;border-radius:5px!important;padding:15px 25px 15px!important;box-shadow:none!important;color:#121314!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-type=audio] .crisp-z89v5n .crisp-162m9xf{background-color:#d1d7dc!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=operator] .crisp-z89v5n .crisp-1o2g4mc{color:#121314!important;-webkit-text-fill-color:#121314!important;font-size:13px!important;letter-spacing:.3px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-mkirz6 .crisp-12qaym5 .crisp-39hskb{opacity:.4;margin-right:5px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-mkirz6 .crisp-12qaym5 .crisp-ehr6mw{opacity:.68;font-size:12px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg{background-image:linear-gradient(125deg,#008aff -10%,#0066b1 100%)!important;height:110px!important;padding-top:35px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-1uw6f17,body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-85evuk,body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-nu40j6{font-size:17px!important;line-height:28px!important;padding-top:10px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-kquevr .crisp-x94m06{background-color:#008aff!important;background-image:linear-gradient(125deg,#008aff -10%,#008af0 100%)!important;box-shadow:0 5px 34px -6px #008aff!important}body .crisp-client .crisp-1rjpbb7 .crisp-4oo1n4{background-color:transparent!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx[data-chat-status=ongoing] .crisp-1784wh6 .crisp-1xmtdlg .crisp-172kolj{margin-top:-10px!important}body .crisp-client .crisp-1rjpbb7[data-last-operator-face=false] .crisp-1rf4xdh .crisp-kquevr .crisp-x94m06 .crisp-16qgsyi .crisp-101bp3x[data-is-ongoing=false]{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1OCIgaGVpZ2h0PSI1NSIgdmlld0JveD0iMCAwIDU4IDU1Ij4NCiAgPGcgaWQ9ImNoYXQtc3ZncmVwby1jb21fMV8iIGRhdGEtbmFtZT0iY2hhdC1zdmdyZXBvLWNvbSAoMSkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgLTEuNSkiPg0KICAgIDxwYXRoIGlkPSJQYXRoXzEiIGRhdGEtbmFtZT0iUGF0aCAxIiBkPSJNMjksMS41YzE2LjAxNiwwLDI5LDExLjY0MSwyOSwyNmEyNC4wMSwyNC4wMSwwLDAsMS00LjgsMTQuMzE4Yy40LDQuNzQ1LDEuNTQyLDExLjQyOCw0LjgsMTQuNjgyLDAsMC05Ljk0My0xLjQtMTYuNjc3LTUuNDYybC0uMDIyLjAwOWMtMi43NjQtMS44LTUuNTMyLTMuNjU2LTYuMS00LjEyNmExLDEsMCwwLDAtMS4zMy0uMjc3LDEuMDE3LDEuMDE3LDAsMCwwLS40ODkuODQ4Yy0uMDEuNjIyLjAwNS43ODQsNS41ODUsNC40MjFBMzEuOTE0LDMxLjkxNCwwLDAsMSwyOSw1My41Yy0xNi4wMTYsMC0yOS0xMS42NDEtMjktMjZTMTIuOTg0LDEuNSwyOSwxLjVaIiBmaWxsPSIjZmZmIi8+DQogICAgPGNpcmNsZSBpZD0iRWxsaXBzZV8xIiBkYXRhLW5hbWU9IkVsbGlwc2UgMSIgY3g9IjMiIGN5PSIzIiByPSIzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMiAyNC41KSIgZmlsbD0iIzAwOGFmZiIvPg0KICAgIDxjaXJjbGUgaWQ9IkVsbGlwc2VfMiIgZGF0YS1uYW1lPSJFbGxpcHNlIDIiIGN4PSIzIiBjeT0iMyIgcj0iMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjYgMjQuNSkiIGZpbGw9IiMwMDhhZmYiLz4NCiAgICA8Y2lyY2xlIGlkPSJFbGxpcHNlXzMiIGRhdGEtbmFtZT0iRWxsaXBzZSAzIiBjeD0iMyIgY3k9IjMiIHI9IjMiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQwIDI0LjUpIiBmaWxsPSIjMDA4YWZmIi8+DQogIDwvZz4NCjwvc3ZnPg0K)!important;height:31px!important;top:16px!important;left:14px!important}body .csh-category-item a h6{text-align:left}.mec-form-row.mec-syn-schedule{background:#f7f7f7;padding:20px;border:1px solid #eee;box-shadow:0 1px 11px rgba(0,0,0,.034);margin-bottom:20px}.mec-form-row.mec-syn-schedule p{padding-left:26px}.mec-form-row.mec-syn-schedule h2{margin-top:0}.mec-form-row.mec-syn-schedule h4{margin:10px 0}li.wns-be-group-menu-li.mec-settings-menu .mec-settings-submenu{position:absolute;top:-1px;right:-222px;width:220px;z-index:9;background:#fff;border:1px;border-style:solid;border-color:#dedede;margin:0;overflow:visible;opacity:0;visibility:hidden;transition:all .23s ease;padding-top:8px;padding-bottom:12px}li.wns-be-group-menu-li.mec-settings-menu:hover>.mec-settings-submenu{visibility:visible;opacity:1}.mec-settings-menu .mec-settings-submenu:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-15px;top:14px;border-right-color:#c5c5c5;right:0}.mec-settings-menu .mec-settings-submenu:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-14px;top:14px}.wns-be-sidebar .mec-settings-menu .mec-settings-submenu a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 26px}.wn-mec-select{width:32.33333333%!important;clear:unset!important}.wn-mec-select{-webkit-tap-highlight-color:transparent;background-color:#fff;border-radius:3px;border:1px solid #ddd;margin-bottom:8px;position:relative;text-align:left!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;box-shadow:0 3px 13px -5px rgba(0,0,0,.1),inset 0 1px 2px rgba(0,0,0,.07)}.wn-mec-select:hover{border-color:#dbdbdb}.wn-mec-select.open .list{overflow:unset;width:100%;margin:0}.wn-mec-select .list{background-color:#fff;border-radius:2px;box-shadow:0 2px 33px -2px rgba(0,0,0,.2),inset 0 1px 2px rgba(0,0,0,.07);box-sizing:border-box;margin-top:4px;opacity:0;overflow:hidden;padding:0;pointer-events:none;position:absolute;top:100%;left:0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0;-webkit-transform:scale(.75) translateY(-21px);-ms-transform:scale(.75) translateY(-21px);transform:scale(.75) translateY(-21px);-webkit-transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;z-index:9}.wn-mec-select{-webkit-tap-highlight-color:transparent;background-color:#fff;border-radius:5px;border:solid 1px #e8e8e8;box-sizing:border-box;clear:both;cursor:pointer;display:block;float:left;font-family:inherit;font-size:14px;font-weight:400;height:42px;line-height:40px;outline:0;padding-left:18px;padding-right:30px;position:relative;text-align:left!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap;width:auto}.wn-mec-select:hover{border-color:#dbdbdb}.wn-mec-select:after{border-bottom:2px solid #999;border-right:2px solid #999;content:'';display:block;height:5px;margin-top:-4px;pointer-events:none;position:absolute;right:12px;top:50%;-webkit-transform-origin:66% 66%;-ms-transform-origin:66% 66%;transform-origin:66% 66%;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:all .15s ease-in-out;transition:all .15s ease-in-out;width:5px}.wn-mec-select.open:after{-webkit-transform:rotate(-135deg);-ms-transform:rotate(-135deg);transform:rotate(-135deg)}.wn-mec-select.open .list{opacity:1;pointer-events:auto;-webkit-transform:scale(1) translateY(0);-ms-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}.wn-mec-select.disabled{border-color:#ededed;color:#999;pointer-events:none}.wn-mec-select.disabled:after{border-color:#ccc}.wn-mec-select.wide{width:100%}.wn-mec-select.wide .list{left:0!important;right:0!important}.wn-mec-select.right{float:right}.wn-mec-select.right .list{left:auto;right:0}.wn-mec-select.small{font-size:12px;height:36px;line-height:34px}.wn-mec-select.small:after{height:4px;width:4px}.wn-mec-select .list{background-color:#fff;border-radius:5px;box-shadow:0 0 0 1px rgba(68,68,68,.11);box-sizing:border-box;margin-top:4px;opacity:0;overflow:hidden;padding:0;pointer-events:none;position:absolute;top:100%;left:0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0;-webkit-transform:scale(.75) translateY(-21px);-ms-transform:scale(.75) translateY(-21px);transform:scale(.75) translateY(-21px);-webkit-transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;z-index:9}.wn-mec-select .list:hover .option:not(:hover){background-color:transparent!important}.wn-mec-select .option{cursor:pointer;font-weight:400;list-style:none;min-height:40px;outline:0;text-align:left;position:relative;font-size:12px!important;padding:1px 12px!important;margin:0!important;line-height:28px!important;min-height:28px!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.wn-mec-select .option .wn-hover-img-sh img{position:absolute;padding:3px;top:-1px;left:100%;box-shadow:0 4px 42px -5px rgba(0,0,0,.16);visibility:hidden;opacity:0;border:1px solid #e3e3e3;border-radius:2px;z-index:99999999;background:#fff}.wn-mec-select .option:hover .wn-hover-img-sh img{visibility:visible;opacity:1}.wn-mec-select .option.focus,.wn-mec-select .option.selected.focus,.wn-mec-select .option:hover{background-color:#f6f6f6}.wn-mec-select .option.selected{font-weight:700}.wn-mec-select .option.disabled{background-color:transparent;color:#999;cursor:default}.no-csspointerevents .wn-mec-select .list{display:none}.no-csspointerevents .wn-mec-select.open .list{display:block}.mec-custom-nice-select ul.list li.option{width:30%!important;float:left!important;min-height:135px!important;height:135px;margin:1.66%!important;box-sizing:border-box;text-align:center;padding:10px!important;border-radius:3px;border:1px solid #eee;box-shadow:0 1px 3px rgba(0,0,0,.025);background:#fff!important}.mec-custom-nice-select ul.list li.option:hover{box-shadow:0 2px 7px rgba(0,0,0,.06);borde-color:#e0e0e0}.mec-custom-nice-select .list:hover .option:not(:hover),.mec-custom-nice-select ul.list:hover li.option{background:#fff!important}.mec-custom-nice-select ul.list{min-width:600px!important;padding:20px 10px!important;background:#fcfbfd;border:1px solid #e9e9e9;box-shadow:0 1px 4px rgba(0,0,0,.05)}.mec-custom-nice-select ul.list li.option.selected{border:1px solid #40d9f1;box-shadow:0 1px 8px -3px #40d9f1 inset;color:#00cae6;padding:12px 0 0 0!important}.mec-custom-nice-select .wn-img-sh img{margin:4px 0 1px 1px;line-height:1;max-width:68px;max-height:56px;filter:grayscale(1);-webkit-filter:grayscale(1);transition:all .22s ease;-webkit-transition:all .22s ease;-moz-transition:all .22s ease;-ms-transition:all .22s ease;-o-transition:all .22s ease}.wn-mec-select .option.focus .wn-img-sh img,.wn-mec-select .option.selected.focus .wn-img-sh img,.wn-mec-select .option:hover .wn-img-sh img{background-color:#f6f6f6;filter:grayscale(0);-webkit-filter:grayscale(0)}@media(max-width:768px){.wn-mec-select{width:45%!important}.mec-custom-nice-select ul.list{margin-left:-24px!important;min-width:404px!important}.mec-custom-nice-select ul.list li.option{width:46.6%!important}.wn-hover-img-sh{display:none}}@media(max-width:480px){.wn-mec-select{width:100%!important}.mec-custom-nice-select ul.list{min-width:337px!important}}@media(max-width:320px){.mec-custom-nice-select ul.list li.option{width:100%!important}.mec-custom-nice-select ul.list{min-width:298px!important}}.mec-sed-methods li{line-height:28px;padding-left:38px;position:relative}.mec-sed-methods li:before{margin-right:0}.mec-sed-methods li:before{border-radius:18px}.mec-custom-nice-select ul.list li .wn-mec-text:after,.mec-sed-methods li:before{content:"";position:absolute;display:inline-block;background:#fff;border-radius:2px;width:12px;height:12px;margin:-1px 0 0 -1px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32);border-radius:50%}.mec-custom-nice-select ul.list li .wn-mec-text{position:relative;padding-top:0;padding-bottom:28px}.mec-custom-nice-select ul.list li .wn-mec-text:after{left:calc(50% - 7px);top:auto;bottom:1px}.mec-custom-nice-select ul.list li .wn-img-sh{line-height:1}.mec-sed-methods li:before{left:9px;top:calc(50% - 7px)}.mec-custom-nice-select ul.list li.option.selected .wn-mec-text:after,.mec-sed-methods li.active:before{width:4px;height:4px;border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff}.menu-icon-mec-books .wp-menu-image img,.toplevel_page_mec-intro .wp-menu-image img{width:18px!important;padding-top:7px!important}.mec-add-booking-tabs-wrap,.mec-add-event-tabs-wrap,.mec-create-shortcode-tabs-wrap{display:flex;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox}.mec-add-booking-tabs-left,.mec-add-event-tabs-left,.mec-create-shortcode-tabs-left{flex:1}.mec-add-booking-tabs-right,.mec-add-event-tabs-right,.mec-create-shortcode-tabs-right{flex:6}a.mec-add-booking-tabs-link,a.mec-add-event-tabs-link,a.mec-create-shortcode-tabs-link{display:block}.mec-booking-tab-content,.mec-create-shortcode-tab-content,.mec-event-tab-content{display:none;transition:all .3s ease}.mec-booking-tab-content.mec-tab-active,.mec-create-shortcode-tab-content.mec-tab-active,.mec-event-tab-content.mec-tab-active{display:block}.mec-add-booking-tabs-wrap,.mec-add-event-tabs-wrap{background:#fff;margin:-6px -12px -12px}.mec-create-shortcode-tabs-wrap{margin:-30px -22px -42px}.mec-add-booking-tabs-left,.mec-add-event-tabs-left,.mec-create-shortcode-tabs-left{padding:0 0 38px;background:#fff;min-width:210px}.mec-add-booking-tabs-left a,.mec-add-event-tabs-left a,.mec-create-shortcode-tabs-left a{line-height:16px;font-size:13px;font-weight:600;letter-spacing:.3px;color:#6a6f77;text-decoration:none;background:#f7f7f7;padding:13px 20px;border-bottom:1px solid #e3e3e3;outline:0;box-shadow:none;transition:all .2s ease}.mec-add-booking-tabs-left a:hover,.mec-add-event-tabs-left a:hover,.mec-create-shortcode-tabs-left a:hover{color:#008aff;background:#fff}.mec-add-booking-tabs-left a.mec-tab-active,.mec-add-event-tabs-left a.mec-tab-active,.mec-create-shortcode-tabs-left a.mec-tab-active{background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff;margin:0 -6px;border-radius:5px;box-shadow:0 2px 12px -5px #36a2ff;border-bottom-color:transparent;position:relative}.mec-add-booking-tabs-right,.mec-add-event-tabs-right,.mec-create-shortcode-tabs-right{padding:0 30px 40px;border-left:1px solid #e2e2e2}.mec-booking-tab-content.mec-tab-active,.mec-create-shortcode-tab-content.mec-tab-active,.mec-event-tab-content.mec-tab-active{animation:fadeEffect2 .31s}@media (max-width:550px){.mec-add-booking-tabs-left,.mec-add-event-tabs-left,.mec-create-shortcode-tabs-left{min-width:100px}.mec-add-booking-tabs-left a,.mec-add-event-tabs-left a,.mec-create-shortcode-tabs-left a{font-size:11px;padding:12px 8px;line-height:1.2;letter-spacing:0}}@keyframes fadeEffect2{from{opacity:0;transform:translateX(11px)}to{opacity:1;transform:translateX(0)}}.mec-form-row .mec-col-8 label{padding-right:20px}.mec-calendar-metabox .wn-mec-select{border:solid 1px #ddd;border-radius:2px;height:40px;line-height:38px;padding-left:10px;box-shadow:0 3px 10px -2px rgba(0,0,0,.05),inset 0 1px 2px rgba(0,0,0,.02)}.mec-calendar-metabox .wn-mec-select.open .list{border-radius:0 0 2px 2px;box-shadow:0 0 0 1px #ddd,0 2px 6px rgba(0,0,0,.07)}.mec-calendar-metabox .mec-custom-nice-select.open ul.list{border-radius:3px;box-shadow:0 2px 6px rgba(0,0,0,.07);margin-left:0!important;transform:translateX(-50%);left:50%}.mec-custom-nice-select ul.list li.option.selected .wn-mec-text:after{border:6px solid #40d9f1;box-shadow:0 3px 16px -3px #40d9f1}.mec-form-row input[type=checkbox]{background-color:#fff;border:1px solid #cacece;box-shadow:0 1px 2px rgba(0,0,0,.05);padding:9px;border-radius:3px;min-width:24px;min-height:24px;display:inline-block;transition:all .18s ease;outline:0;margin:2px 4px 4px 0}.mec-form-row input[type=checkbox]:focus{outline:0}.mec-form-row input[type=checkbox]:hover{border-color:#62b6ff}.mec-form-row input[type=checkbox]:checked{box-shadow:0 1px 6px -2px #008aff;border-color:#008aff;background:#008aff;border-radius:2px;position:relative}.mec-form-row.mec-switcher input[type=checkbox]{position:absolute}.mec-form-row input[type=checkbox]:checked:before{content:"";font:normal;position:absolute;top:12px;left:8px;border-right:2px solid transparent;border-bottom:2px solid transparent;transform:rotate(45deg);transform-origin:0 100%;color:#fff;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards}@keyframes checkbox-check{0%{width:0;height:0;border-color:#fff;transform:translate3d(0,0,0) rotate(45deg)}33%{width:5px;height:0;transform:translate3d(0,0,0) rotate(45deg)}100%{width:5px;height:11px;border-color:#fff;transform:translate3d(0,-11px,0) rotate(45deg)}}.mec-form-row input+span.mec-tooltip,.mec-form-row select+span.mec-tooltip{bottom:10px}.mec-form-row label+span.mec-tooltip{bottom:8px}.mec-form-row textarea+span.mec-tooltip{bottom:auto;vertical-align:top;top:12px}.mec-form-row span+span.mec-tooltip{bottom:0;vertical-align:middle}.mec-form-row .mec-col-8 input[type=text],.mec-form-row .mec-col-8 select,.mec-form-row .mec-col-8 span.mec-archive-skins{vertical-align:top}.mec-form-row input:disabled{opacity:.6;background:#f6f6f6}.wns-be-group-tab h5{font-size:16px;font-weight:600;color:#444;margin:45px 0 25px}.mec-form-row textarea{height:auto;margin-bottom:0;min-height:60px}.mec-form-row .wp-picker-container input[type=text].wp-color-picker{height:25px;vertical-align:top;margin:0}.mec-form-row .wp-picker-container label{margin:0}.mec-image-select-wrap li span:hover{border-color:#fff;box-shadow:0 1px 8px rgba(0,0,0,.12)}.mec-message-categories li.mec-acc-label:after{content:"\e604";font-family:simple-line-icons;speak:none;font-style:normal;font-weight:400;display:block;font-size:13px;color:#999;position:absolute;right:27px;top:26px}.mec-message-categories>li.mec-acc-label[data-status=open]:after{content:"\e607";color:#008aff}.mec-message-categories>li.mec-acc-label[data-status=open]{color:#008aff}.mec-message-categories>li.mec-acc-label:last-of-type{border-bottom:none}.mec-message-categories>li.mec-acc-label[data-status=open]{border-bottom:1px solid #e6e6e6}.mec-form-row ul.mec-message-categories{box-shadow:0 2px 16px rgba(0,0,0,.03);border-radius:5px;overflow:hidden;margin-top:30px;background:#f5f5f5;border:2px solid #e6e6e6;max-width:700px}.mec-form-row ul.mec-message-categories li ul{padding:10px 40px 40px;margin:25px -30px -25px;background:#f5f5f5;box-shadow:inset 0 4px 7px rgba(0,0,0,.04);cursor:default}.mec-form-row ul.mec-message-categories ul label{margin:25px 8px 7px;font-weight:600!important;font-size:13px;color:#888;cursor:default}.wns-be-sidebar li:hover a i,.wns-be-sidebar>li:hover a{color:#008aff}.mec-form-row.mec-skin-list-date-format-container input[type=text]{margin-right:2px}.mec-form-row.mec-skin-list-date-format-container span.mec-tooltip{top:2px}.mec-calendar-metabox .mec-form-row input[type=checkbox],.mec-meta-box-fields .mec-form-row input[type=checkbox]{margin-right:6px}.mec-meta-box-fields .mec-form-row .button:not(.wp-color-result){height:37px;margin-top:1px;box-shadow:inset 0 2px 4px #fff,inset 0 -2px 4px rgba(0,0,0,.05),0 2px 2px rgba(0,0,0,.06)}#mec-read-more .mec-form-row span.mec-tooltip{top:2px;left:-4px}#mec-search-settings{border-radius:21px;min-height:32px;box-shadow:inset 0 1px 2px rgba(0,0,0,.06);padding:9px 10px 12px 34px;margin-right:10px;color:#7c838a;font-size:13px;width:260px;background:#f5f5f5;border:none;z-index:1;transition:all .18s ease;outline:0}#mec-search-settings:focus{background:#fff;box-shadow:0 1px 6px rgba(0,0,0,.07),0 0 0 1px #e6e6e6;width:270px}.mec-search-settings-wrap{display:inline-block;position:relative}.mec-search-settings-wrap i{position:absolute;left:14px;top:14px;font-size:13px;color:#7e8c98;display:block;z-index:2}#mec-search-settings::-webkit-input-placeholder{color:#7c838a}#mec-search-settings::-moz-placeholder{color:#7c838a}#mec-search-settings:-ms-input-placeholder{color:#7c838a}#mec-search-settings:-moz-placeholder{color:#7c838a}.ui-datepicker.ui-widget{border:1px solid #e8e8e8;box-shadow:0 1px 9px rgba(0,0,0,.12)}.ui-datepicker.ui-widget select{font-weight:600;font-size:12px;border-radius:2px;padding:2px 10px;margin:1px 3px 5px}.ui-datepicker.ui-widget table{border-spacing:2px}.ui-datepicker.ui-widget td,.ui-datepicker.ui-widget tr{padding:0;background:0 0!important}.ui-datepicker.ui-widget td a{color:#777;font-weight:600;width:30px;height:30px;line-height:30px;display:inline-block;border-radius:33px;padding:0;background:#fff;transition:all .2s ease}.ui-datepicker.ui-widget td a.ui-state-active,.ui-datepicker.ui-widget td a:hover{background:#40d9f1;color:#fff}.ui-datepicker.ui-widget .ui-datepicker-next,.ui-datepicker.ui-widget .ui-datepicker-prev{color:#40d9f1;width:30px;height:30px;line-height:30px;display:inline-block;text-align:center;border-radius:33px;background:#ecfcff;transition:all .2s ease}.ui-datepicker.ui-widget .ui-datepicker-next:hover,.ui-datepicker.ui-widget .ui-datepicker-prev:hover{background:#fff;box-shadow:0 0 7px -3px rgba(0,0,0,.4)}#mec-wrap{width:92%;margin:20px auto;max-width:1384px}#mec-wrap h2.nav-tab-wrapper{margin-bottom:40px;padding:0;border:none;margin-top:35px;clear:both;background:#fff;box-shadow:0 3px 12px -4px rgba(0,0,0,.13)}#mec-wrap .nav-tab-wrapper .nav-tab{position:relative;padding:28px 22px;border:none;margin:0;background:#fff;font-size:13px;color:#444;outline:0;box-shadow:none}#mec-wrap .nav-tab-wrapper .nav-tab:hover{color:#008aff}#mec-wrap .nav-tab-wrapper .nav-tab:after{content:"";display:inline-block;width:1px;height:30%;position:absolute;right:0;top:35%;background:#e9e9e9}#mec-wrap .nav-tab-wrapper .nav-tab-active,#mec-wrap .nav-tab-wrapper .nav-tab-active:focus,#mec-wrap .nav-tab-wrapper .nav-tab-active:focus:active,#mec-wrap .nav-tab-wrapper .nav-tab-active:hover{background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff;outline:0;box-shadow:0 5px 25px -7px #008aff;margin-left:-1px;z-index:2}#mec-wrap .nav-tab-wrapper .nav-tab-active:after{content:'';position:absolute;display:block;background:0 0;top:auto;height:auto;bottom:-20px;left:50%;margin-left:-10px;width:0;border-width:10px;border-style:solid;border-color:#008aff transparent transparent}#mec-wrap .mec-container{padding:25px 40px 40px;box-shadow:0 3px 10px -4px rgba(0,0,0,.1)}#wpwrap .mec-button-primary{color:#fff;font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s}#wpwrap .mec-button-primary:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 15px -7px rgba(0,0,0,.5);cursor:pointer}.wn-p-t-right{min-width:300px;max-width:400px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.5;position:absolute;z-index:99999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s;padding:20px;border-radius:8px}.wn-p-t-right i{position:absolute!important;top:100%;right:50%;margin-top:-6px!important;margin-right:-6px!important;width:12px;height:24px;overflow:hidden;transform:rotate(-90deg)}.wn-p-t-right i:after{content:'';position:absolute;width:12px;height:12px;left:0;top:50%;transform:translate(50%,-50%) rotate(-45deg);background-color:#535a61;box-shadow:0 8px 9px -4px #535a61}.wn-p-t-right .wn-p-t-text-content h5{color:#fff;font-size:17px;font-weight:600;margin:-20px;padding:15px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #32363a;border-radius:6px 6px 0 0}.mec-addon-box-footer a:hover .wn-p-t-right{visibility:visible;opacity:1}#mec_organizer_user+.select2-container,#mec_speaker_user+.select2-container{min-width:224px!important}
|
assets/css/frontend.css
CHANGED
@@ -3191,7 +3191,6 @@ focus,
|
|
3191 |
}
|
3192 |
|
3193 |
.mec-single-event .mec-event-meta dd a i {
|
3194 |
-
vertical-align: top;
|
3195 |
margin-right: 8px;
|
3196 |
}
|
3197 |
|
@@ -5646,6 +5645,7 @@ li.mec-no-event-found .mec-event-title {
|
|
5646 |
border: 1px solid #e7e8e9;
|
5647 |
border-radius: 2px;
|
5648 |
color: #789;
|
|
|
5649 |
}
|
5650 |
|
5651 |
@media (max-width: 600px) {
|
@@ -5735,6 +5735,7 @@ li.mec-no-event-found .mec-event-title {
|
|
5735 |
}
|
5736 |
|
5737 |
.mec-fes-form input+label {
|
|
|
5738 |
padding-left: 3px;
|
5739 |
margin: 0;
|
5740 |
display: inline-block;
|
@@ -6540,7 +6541,6 @@ li.mec-no-event-found .mec-event-title {
|
|
6540 |
|
6541 |
.mec-search-form .mec-dropdown-wrap {
|
6542 |
display: table;
|
6543 |
-
min-height: 55px;
|
6544 |
width: 100%;
|
6545 |
}
|
6546 |
|
@@ -6595,6 +6595,7 @@ li.mec-no-event-found .mec-event-title {
|
|
6595 |
|
6596 |
.mec-wrap .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select {
|
6597 |
width: calc(100% - 36px);
|
|
|
6598 |
}
|
6599 |
|
6600 |
.mec-wrap .mec-search-form .mec-date-search select {
|
@@ -6764,6 +6765,9 @@ li.mec-no-event-found .mec-event-title {
|
|
6764 |
|
6765 |
/* MEC Events Carousel Type1
|
6766 |
—--------------------------- */
|
|
|
|
|
|
|
6767 |
.event-carousel-type1-head .mec-event-image {
|
6768 |
position: relative;
|
6769 |
min-height: 150px;
|
@@ -9021,33 +9025,171 @@ li.mec-no-event-found .mec-event-title {
|
|
9021 |
text-align: center;
|
9022 |
}
|
9023 |
|
9024 |
-
|
9025 |
-
|
9026 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9027 |
}
|
9028 |
|
9029 |
-
|
9030 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9031 |
}
|
9032 |
|
9033 |
-
|
9034 |
-
|
9035 |
-
|
|
|
|
|
9036 |
}
|
9037 |
|
9038 |
-
|
9039 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9040 |
}
|
9041 |
|
9042 |
-
|
9043 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9044 |
}
|
9045 |
|
9046 |
-
|
9047 |
-
.mec-single-modal .
|
9048 |
-
|
9049 |
-
|
9050 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9051 |
}
|
9052 |
|
9053 |
/* MEC Toggle List
|
@@ -11477,27 +11619,40 @@ ul.mec-weekly-view-dates-events article:before,
|
|
11477 |
}
|
11478 |
|
11479 |
.mec-profile .mec-profile-bookings tbody tr td:nth-child(1) {
|
11480 |
-
width:
|
11481 |
}
|
11482 |
|
11483 |
.mec-profile .mec-profile-bookings tbody tr td:nth-child(2) {
|
11484 |
-
width:
|
|
|
11485 |
}
|
11486 |
|
11487 |
.mec-profile .mec-profile-bookings tbody tr td:nth-child(3) {
|
11488 |
-
width:
|
11489 |
}
|
11490 |
|
11491 |
.mec-profile .mec-profile-bookings tbody tr td:nth-child(4) {
|
11492 |
-
width:
|
11493 |
}
|
11494 |
|
11495 |
.mec-profile .mec-profile-bookings tbody tr td:nth-child(5) {
|
11496 |
-
width:
|
11497 |
}
|
11498 |
|
11499 |
.mec-profile .mec-profile-bookings tbody tr td:nth-child(6) {
|
11500 |
-
width:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11501 |
}
|
11502 |
|
11503 |
.mec-profile .mec-event-status {
|
@@ -11545,7 +11700,7 @@ ul.mec-weekly-view-dates-events article:before,
|
|
11545 |
}
|
11546 |
|
11547 |
.mec-booking-attendees {
|
11548 |
-
width:
|
11549 |
text-align: center;
|
11550 |
}
|
11551 |
|
@@ -11568,6 +11723,7 @@ ul.mec-weekly-view-dates-events article:before,
|
|
11568 |
display: table-cell;
|
11569 |
padding: 7px;
|
11570 |
border-right: 1px solid #e6e6e6;
|
|
|
11571 |
}
|
11572 |
|
11573 |
.mec-booking-attendees-head-content {
|
@@ -12908,18 +13064,19 @@ article.mec-search-bar-result {
|
|
12908 |
background: #fff;
|
12909 |
padding: 20px;
|
12910 |
margin: 0 auto;
|
12911 |
-
text-align: center
|
|
|
12912 |
}
|
12913 |
|
12914 |
#mec-login-form.mec-login-form .mec-login-input {
|
12915 |
display: block;
|
12916 |
width: 286px;
|
12917 |
margin: 0 auto;
|
12918 |
-
margin-bottom: 12px
|
12919 |
}
|
12920 |
|
12921 |
#mec-login-form.mec-login-form .mec-login-forgotpassword {
|
12922 |
-
display: inline-block
|
12923 |
}
|
12924 |
|
12925 |
.mec-login-forgotpassword a {
|
@@ -13115,8 +13272,6 @@ article.mec-search-bar-result {
|
|
13115 |
|
13116 |
/* Stripe V3 */
|
13117 |
.mec-book-form-gateway-checkout [id*="mec_do_transaction_stripe_"] .mec-form-row:first-child {
|
13118 |
-
background: #f7f8f9;
|
13119 |
-
padding: 18px 22px;
|
13120 |
margin-bottom: 20px;
|
13121 |
}
|
13122 |
|
@@ -13134,6 +13289,25 @@ article.mec-search-bar-result {
|
|
13134 |
background: #fff;
|
13135 |
}
|
13136 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13137 |
.mec-events-meta-group-booking .StripeElement--focus {
|
13138 |
box-shadow: 0 1px 3px 0 #cfd7df;
|
13139 |
}
|
@@ -13339,8 +13513,8 @@ ul#mec_reg_form_fields li .mec_reg_field_remove:hover {
|
|
13339 |
margin: 0;
|
13340 |
vertical-align: middle;
|
13341 |
line-height: 1;
|
13342 |
-
|
13343 |
-
|
13344 |
transform: rotate(45deg);
|
13345 |
transform-origin: 0% 100%;
|
13346 |
color: #fff;
|
@@ -13862,6 +14036,11 @@ body .mce-menu .mce-menu-item:hover {
|
|
13862 |
font-size: 16px;
|
13863 |
}
|
13864 |
|
|
|
|
|
|
|
|
|
|
|
13865 |
/* FES Export */
|
13866 |
.mec-fes-export-wrapper {
|
13867 |
width: 640px;
|
@@ -13999,7 +14178,7 @@ body .mce-menu .mce-menu-item:hover {
|
|
13999 |
font-weight: 400;
|
14000 |
text-decoration: none;
|
14001 |
cursor: pointer;
|
14002 |
-
margin-right:
|
14003 |
line-height: 1;
|
14004 |
letter-spacing: 0;
|
14005 |
padding: 15px 22px;
|
@@ -14009,6 +14188,7 @@ body .mce-menu .mce-menu-item:hover {
|
|
14009 |
-moz-transition: all .21s ease;
|
14010 |
transition: all .21s ease;
|
14011 |
cursor: pointer;
|
|
|
14012 |
}
|
14013 |
|
14014 |
.mec-fes-btn-export span:hover {
|
@@ -14026,4 +14206,66 @@ span.mec-event-export-csv:before,
|
|
14026 |
display: inline-block;
|
14027 |
}
|
14028 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14029 |
/* --------------------- */
|
3191 |
}
|
3192 |
|
3193 |
.mec-single-event .mec-event-meta dd a i {
|
|
|
3194 |
margin-right: 8px;
|
3195 |
}
|
3196 |
|
5645 |
border: 1px solid #e7e8e9;
|
5646 |
border-radius: 2px;
|
5647 |
color: #789;
|
5648 |
+
position: relative;
|
5649 |
}
|
5650 |
|
5651 |
@media (max-width: 600px) {
|
5735 |
}
|
5736 |
|
5737 |
.mec-fes-form input+label {
|
5738 |
+
padding-top: 8px;
|
5739 |
padding-left: 3px;
|
5740 |
margin: 0;
|
5741 |
display: inline-block;
|
6541 |
|
6542 |
.mec-search-form .mec-dropdown-wrap {
|
6543 |
display: table;
|
|
|
6544 |
width: 100%;
|
6545 |
}
|
6546 |
|
6595 |
|
6596 |
.mec-wrap .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select {
|
6597 |
width: calc(100% - 36px);
|
6598 |
+
margin-bottom:20px;
|
6599 |
}
|
6600 |
|
6601 |
.mec-wrap .mec-search-form .mec-date-search select {
|
6765 |
|
6766 |
/* MEC Events Carousel Type1
|
6767 |
—--------------------------- */
|
6768 |
+
.mec-owl-theme .owl-dots .owl-dot {
|
6769 |
+
border:none;
|
6770 |
+
}
|
6771 |
.event-carousel-type1-head .mec-event-image {
|
6772 |
position: relative;
|
6773 |
min-height: 150px;
|
9025 |
text-align: center;
|
9026 |
}
|
9027 |
|
9028 |
+
/* Feather Light Modal */
|
9029 |
+
body .featherlight .featherlight-content {
|
9030 |
+
background: transparent;
|
9031 |
+
overflow: unset;
|
9032 |
+
z-index: 9999;
|
9033 |
+
}
|
9034 |
+
|
9035 |
+
body .featherlight .featherlight-close-icon {
|
9036 |
+
position: fixed;
|
9037 |
+
top: 40px;
|
9038 |
+
right: 40px;
|
9039 |
+
background: transparent;
|
9040 |
+
color: #fff;
|
9041 |
+
border: 1px solid #fff;
|
9042 |
+
border-radius: 0;
|
9043 |
+
}
|
9044 |
+
|
9045 |
+
body .featherlight .featherlight-close-icon:hover {
|
9046 |
+
background: #fff;
|
9047 |
+
color: #000;
|
9048 |
+
border: 1px solid #000;
|
9049 |
+
}
|
9050 |
+
|
9051 |
+
/* filp-clock Responsive */
|
9052 |
+
@media (max-width: 320px) {
|
9053 |
+
.mec-wrap span.flip-clock-divider {
|
9054 |
+
width: 20px;
|
9055 |
+
}
|
9056 |
+
|
9057 |
+
.mec-single-event .mec-events-meta-group-countdown {
|
9058 |
+
padding: 15px 12%;
|
9059 |
+
}
|
9060 |
+
}
|
9061 |
+
|
9062 |
+
@media (max-width: 414px) {
|
9063 |
+
.mec-wrap span.flip-clock-divider {
|
9064 |
+
width: 30px;
|
9065 |
+
}
|
9066 |
+
|
9067 |
+
.mec-single-event .mec-events-meta-group-countdown {
|
9068 |
+
margin-left: 0;
|
9069 |
+
padding: 15px 7%;
|
9070 |
+
}
|
9071 |
+
}
|
9072 |
+
|
9073 |
+
@media (max-width: 480px) {
|
9074 |
+
.mec-wrap span.flip-clock-divider {
|
9075 |
+
width: 7px;
|
9076 |
+
}
|
9077 |
+
|
9078 |
+
.mec-single-event .mec-events-meta-group-countdown {
|
9079 |
+
margin-left: 0;
|
9080 |
+
padding: 15px 1%;
|
9081 |
+
}
|
9082 |
+
}
|
9083 |
+
|
9084 |
+
@media(max-width: 1366px) {
|
9085 |
+
body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child) {
|
9086 |
+
width: 20px !important;
|
9087 |
+
}
|
9088 |
+
|
9089 |
+
body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown {
|
9090 |
+
padding: 20px 15px;
|
9091 |
+
}
|
9092 |
+
|
9093 |
+
body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul {
|
9094 |
+
width: 48px;
|
9095 |
+
}
|
9096 |
+
}
|
9097 |
+
|
9098 |
+
@media(max-width: 1280px) {
|
9099 |
+
body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child) {
|
9100 |
+
width: 14px !important;
|
9101 |
+
}
|
9102 |
+
|
9103 |
+
body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown {
|
9104 |
+
padding: 15px 10px;
|
9105 |
+
}
|
9106 |
+
|
9107 |
+
body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul {
|
9108 |
+
width: 38px;
|
9109 |
+
}
|
9110 |
}
|
9111 |
|
9112 |
+
@media(min-width: 961px) and (max-width: 1024px) {
|
9113 |
+
body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child) {
|
9114 |
+
width: 7px !important;
|
9115 |
+
}
|
9116 |
+
|
9117 |
+
body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown {
|
9118 |
+
padding: 15px 5px;
|
9119 |
+
}
|
9120 |
+
|
9121 |
+
body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul {
|
9122 |
+
width: 14px;
|
9123 |
+
}
|
9124 |
+
|
9125 |
+
body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul li a div {
|
9126 |
+
font-size: 30px ;
|
9127 |
+
}
|
9128 |
}
|
9129 |
|
9130 |
+
@media(max-width: 640px) {
|
9131 |
+
body .mec-modal-wrap .mec-single-modal.featherlight-close-icon {
|
9132 |
+
top: 14px;
|
9133 |
+
right: 14px;
|
9134 |
+
}
|
9135 |
}
|
9136 |
|
9137 |
+
@media(max-width: 480px) {
|
9138 |
+
.featherlight .featherlight-content,
|
9139 |
+
body .mec-modal-wrap {
|
9140 |
+
max-width: 100%;
|
9141 |
+
}
|
9142 |
+
|
9143 |
+
body .mec-modal-wrap.flip-clock-divider .flip-clock-label {
|
9144 |
+
display: block;
|
9145 |
+
}
|
9146 |
}
|
9147 |
|
9148 |
+
@media (max-width: 414px) {
|
9149 |
+
body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child) {
|
9150 |
+
width: 50px !important;
|
9151 |
+
}
|
9152 |
+
|
9153 |
+
.mec-wrap .flip-clock-divider .flip-clock-label {
|
9154 |
+
display: none;
|
9155 |
+
}
|
9156 |
+
|
9157 |
+
body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown {
|
9158 |
+
padding: 20px 5px 20px 65px;
|
9159 |
+
}
|
9160 |
+
|
9161 |
+
body .featherlight-content .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown {
|
9162 |
+
padding: 20px 2px 20px 2px !important;
|
9163 |
+
}
|
9164 |
+
|
9165 |
+
body .featherlight-content .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child) {
|
9166 |
+
width: 3px !important;
|
9167 |
+
}
|
9168 |
+
|
9169 |
}
|
9170 |
|
9171 |
+
@media (max-width: 375px) {
|
9172 |
+
body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child) {
|
9173 |
+
width: 50px !important;
|
9174 |
+
}
|
9175 |
+
|
9176 |
+
.mec-wrap .flip-clock-divider .flip-clock-label {
|
9177 |
+
display: none;
|
9178 |
+
}
|
9179 |
+
|
9180 |
+
body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown {
|
9181 |
+
padding: 20px 5px 20px 45px;
|
9182 |
+
}
|
9183 |
+
}
|
9184 |
+
|
9185 |
+
@media (max-width: 320px) {
|
9186 |
+
body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child) {
|
9187 |
+
width: 20px !important;
|
9188 |
+
}
|
9189 |
+
|
9190 |
+
body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown {
|
9191 |
+
padding: 20px 5px 20px 40px;
|
9192 |
+
}
|
9193 |
}
|
9194 |
|
9195 |
/* MEC Toggle List
|
11619 |
}
|
11620 |
|
11621 |
.mec-profile .mec-profile-bookings tbody tr td:nth-child(1) {
|
11622 |
+
width: 5%;
|
11623 |
}
|
11624 |
|
11625 |
.mec-profile .mec-profile-bookings tbody tr td:nth-child(2) {
|
11626 |
+
width: 30%;
|
11627 |
+
text-align: left;
|
11628 |
}
|
11629 |
|
11630 |
.mec-profile .mec-profile-bookings tbody tr td:nth-child(3) {
|
11631 |
+
width: 20%;
|
11632 |
}
|
11633 |
|
11634 |
.mec-profile .mec-profile-bookings tbody tr td:nth-child(4) {
|
11635 |
+
width: 9%;
|
11636 |
}
|
11637 |
|
11638 |
.mec-profile .mec-profile-bookings tbody tr td:nth-child(5) {
|
11639 |
+
width: 9%;
|
11640 |
}
|
11641 |
|
11642 |
.mec-profile .mec-profile-bookings tbody tr td:nth-child(6) {
|
11643 |
+
width: 9%;
|
11644 |
+
}
|
11645 |
+
|
11646 |
+
.mec-profile .mec-profile-bookings tbody tr td:nth-child(7) {
|
11647 |
+
width: 9%;
|
11648 |
+
}
|
11649 |
+
|
11650 |
+
.mec-profile .mec-profile-bookings tbody tr td:nth-child(8) {
|
11651 |
+
width: 9%;
|
11652 |
+
}
|
11653 |
+
|
11654 |
+
.mec-profile .mec-profile-bookings tbody tr td:nth-child(8) i {
|
11655 |
+
color: #fe686a;
|
11656 |
}
|
11657 |
|
11658 |
.mec-profile .mec-event-status {
|
11700 |
}
|
11701 |
|
11702 |
.mec-booking-attendees {
|
11703 |
+
width: 850px;
|
11704 |
text-align: center;
|
11705 |
}
|
11706 |
|
11723 |
display: table-cell;
|
11724 |
padding: 7px;
|
11725 |
border-right: 1px solid #e6e6e6;
|
11726 |
+
font-size: 12px;
|
11727 |
}
|
11728 |
|
11729 |
.mec-booking-attendees-head-content {
|
13064 |
background: #fff;
|
13065 |
padding: 20px;
|
13066 |
margin: 0 auto;
|
13067 |
+
text-align: center;
|
13068 |
+
position: relative;
|
13069 |
}
|
13070 |
|
13071 |
#mec-login-form.mec-login-form .mec-login-input {
|
13072 |
display: block;
|
13073 |
width: 286px;
|
13074 |
margin: 0 auto;
|
13075 |
+
margin-bottom: 12px;
|
13076 |
}
|
13077 |
|
13078 |
#mec-login-form.mec-login-form .mec-login-forgotpassword {
|
13079 |
+
display: inline-block;
|
13080 |
}
|
13081 |
|
13082 |
.mec-login-forgotpassword a {
|
13272 |
|
13273 |
/* Stripe V3 */
|
13274 |
.mec-book-form-gateway-checkout [id*="mec_do_transaction_stripe_"] .mec-form-row:first-child {
|
|
|
|
|
13275 |
margin-bottom: 20px;
|
13276 |
}
|
13277 |
|
13289 |
background: #fff;
|
13290 |
}
|
13291 |
|
13292 |
+
.mec-book-form-gateways [id*="mec_book_form_gateway_checkout"] input[type=text] {
|
13293 |
+
box-sizing: border-box;
|
13294 |
+
height: 40px;
|
13295 |
+
padding: 10px 12px;
|
13296 |
+
border: 0 !important;
|
13297 |
+
border-radius: 4px;
|
13298 |
+
background-color: #fff;
|
13299 |
+
box-shadow: 0 1px 3px 0 #e6ebf1 !important;
|
13300 |
+
-webkit-transition: box-shadow 150ms ease;
|
13301 |
+
transition: box-shadow 150ms ease;
|
13302 |
+
margin-bottom: 20px;
|
13303 |
+
background: #fff !important;
|
13304 |
+
}
|
13305 |
+
|
13306 |
+
.mec-book-form-gateways [id*="mec_book_form_gateway_checkout"] input[type=text]:focus {
|
13307 |
+
outline: none;
|
13308 |
+
}
|
13309 |
+
|
13310 |
+
|
13311 |
.mec-events-meta-group-booking .StripeElement--focus {
|
13312 |
box-shadow: 0 1px 3px 0 #cfd7df;
|
13313 |
}
|
13513 |
margin: 0;
|
13514 |
vertical-align: middle;
|
13515 |
line-height: 1;
|
13516 |
+
border-right: 2px solid #fff !important;
|
13517 |
+
border-bottom: 2px solid #fff !important;
|
13518 |
transform: rotate(45deg);
|
13519 |
transform-origin: 0% 100%;
|
13520 |
color: #fff;
|
14036 |
font-size: 16px;
|
14037 |
}
|
14038 |
|
14039 |
+
/* FireFox Checkbox */
|
14040 |
+
.mec-fes-form input[type="file"] {
|
14041 |
+
text-align: left;
|
14042 |
+
}
|
14043 |
+
|
14044 |
/* FES Export */
|
14045 |
.mec-fes-export-wrapper {
|
14046 |
width: 640px;
|
14178 |
font-weight: 400;
|
14179 |
text-decoration: none;
|
14180 |
cursor: pointer;
|
14181 |
+
margin-right: 4px;
|
14182 |
line-height: 1;
|
14183 |
letter-spacing: 0;
|
14184 |
padding: 15px 22px;
|
14188 |
-moz-transition: all .21s ease;
|
14189 |
transition: all .21s ease;
|
14190 |
cursor: pointer;
|
14191 |
+
margin-left:6px;
|
14192 |
}
|
14193 |
|
14194 |
.mec-fes-btn-export span:hover {
|
14206 |
display: inline-block;
|
14207 |
}
|
14208 |
|
14209 |
+
.mec-fes-list .wn-p-t-right {
|
14210 |
+
min-width: 170px;
|
14211 |
+
max-width: 200px;
|
14212 |
+
display: inline-block;
|
14213 |
+
top: -8px;
|
14214 |
+
left: 50%;
|
14215 |
+
margin-top: 0;
|
14216 |
+
transform: translate(-50%, -100%);
|
14217 |
+
padding: 0;
|
14218 |
+
background-color: #000;
|
14219 |
+
color: #fff;
|
14220 |
+
font-weight: 400;
|
14221 |
+
font-size: 14px;
|
14222 |
+
letter-spacing: .5px;
|
14223 |
+
line-height: 1.5;
|
14224 |
+
position: absolute;
|
14225 |
+
z-index: 99999999;
|
14226 |
+
box-sizing: border-box;
|
14227 |
+
border-radius: 6px;
|
14228 |
+
box-shadow: 0 4px 45px -8px #535a61;
|
14229 |
+
visibility: hidden;
|
14230 |
+
opacity: 0;
|
14231 |
+
transition: opacity .23s;
|
14232 |
+
padding: 5px 10px 6px;
|
14233 |
+
border-radius: 8px;
|
14234 |
+
text-align: center;
|
14235 |
+
font-style: normal;
|
14236 |
+
|
14237 |
+
}
|
14238 |
+
|
14239 |
+
.mec-fes-list .mec-fes-event-export:hover .wn-p-t-right,
|
14240 |
+
.mec-fes-list .mec-fes-event-view:hover .wn-p-t-right,
|
14241 |
+
.mec-fes-list .mec-fes-event-remove:hover .wn-p-t-right {
|
14242 |
+
visibility: visible;
|
14243 |
+
opacity: 1;
|
14244 |
+
}
|
14245 |
+
|
14246 |
+
.mec-fes-list .wn-p-t-right i {
|
14247 |
+
position: absolute !important;
|
14248 |
+
top: 100%;
|
14249 |
+
right: 50%;
|
14250 |
+
margin-top: -6px !important;
|
14251 |
+
margin-right: -6px !important;
|
14252 |
+
width: 12px;
|
14253 |
+
height: 24px;
|
14254 |
+
overflow: hidden;
|
14255 |
+
transform: rotate(-90deg);
|
14256 |
+
}
|
14257 |
+
|
14258 |
+
.mec-fes-list .wn-p-t-right i:after {
|
14259 |
+
content: '';
|
14260 |
+
position: absolute;
|
14261 |
+
width: 12px;
|
14262 |
+
height: 12px;
|
14263 |
+
left: 0;
|
14264 |
+
top: 50%;
|
14265 |
+
transform: translate(50%, -50%) rotate(-45deg);
|
14266 |
+
background-color: #000;
|
14267 |
+
box-shadow: 0 8px 9px -4px #535a61;
|
14268 |
+
}
|
14269 |
+
|
14270 |
+
|
14271 |
/* --------------------- */
|
assets/css/frontend.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.lity-container,.mec-wrap,.mec-wrap div:not([class^=elementor-]){font-family:Montserrat,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif}.entry-content .mec-wrap h1,.entry-content .mec-wrap h2,.entry-content .mec-wrap h3,.entry-content .mec-wrap h4,.entry-content .mec-wrap h5,.entry-content .mec-wrap h6,.mec-wrap h1,.mec-wrap h2,.mec-wrap h3,.mec-wrap h4,.mec-wrap h5,.mec-wrap h6{font-family:Montserrat,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;color:#171c24;font-weight:300;font-style:inherit;letter-spacing:normal;clear:none}.mec-wrap h1{font-size:50px;line-height:1.16;margin-bottom:12px;letter-spacing:-1px}.mec-wrap h2{font-size:36px;line-height:1.14;margin-bottom:10px}.mec-wrap h3{font-size:28px;line-height:1.2;margin-bottom:8px}.mec-wrap h4{font-size:24px;line-height:1.2;margin-bottom:10px}.mec-wrap h5{font-size:18px;line-height:1.3;margin-bottom:7px}.mec-wrap h6{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-wrap .subheader{color:#849098}.mec-wrap h1 strong{font-weight:700}.mec-wrap p{margin:0 0 20px 0;color:#616161;font-size:14px;line-height:1.8}.mec-wrap .mec-event-article .mec-color-hover{box-shadow:none;border:none}.mec-wrap abbr,.mec-wrap acronym{cursor:auto;border:none}.entry-content .mec-wrap a{box-shadow:none}.mec-wrap .button,.mec-wrap a.button:not(.owl-dot),.mec-wrap button:not(.owl-dot),.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:#39c36e;-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-booking-form-container button{display:block!important}.vertical-space,.vertical-space1,.vertical-space2,.vertical-space3,.vertical-space4,.vertical-space5{display:block;width:100%;margin:0;clear:both;border:0 none;height:20px}.vertical-space2{height:40px}.vertical-space3{height:60px}.vertical-space4{height:80px}.vertical-space5{height:100px}@media only screen and (max-width:479px){.vertical-space,.vertical-space1{height:8px}.vertical-space2{height:14px}.vertical-space3{height:28px}.vertical-space4{height:40px}.vertical-space5{height:60px}}@media only screen and (max-width:960px){.vertical-space,.vertical-space1{height:12px}.vertical-space2{height:18px}.vertical-space3{height:36px}.vertical-space4{height:50px}.vertical-space5{height:80px}}.mec-wrap abbr{cursor:auto;border-bottom:0}@-webkit-keyframes rotating{from{-ms-transform:rotate(0);-moz-transform:rotate(0);-webkit-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}to{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes rotating{from{-ms-transform:rotate(0);-moz-transform:rotate(0);-webkit-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}to{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}.mec-wrap{font:14px/25px sans-serif;font-family:Montserrat,Helvetica,Arial,sans-serif;font-weight:400;color:#626262}.mec-wrap .mec-events a{border-bottom:none}.mec-wrap .mec-container a{box-shadow:none}.mec-event-content p{font-family:Roboto,sans-serif;font-weight:300}.mec-wrap .mec-clear:after,.mec-wrap .mec-clear:before{content:" ";display:table}.mec-wrap .mec-clear:after{clear:both}.mec-events-button{background:#fff;padding:12px 34px;font-size:13px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;margin-right:10px;transition:.3s}.mec-wrap .mec-events-button:hover{color:#fff}.mec-no-event{display:none}#mec-active-current{display:block!important}.current-hide #mec-active-current{display:none!important}.mec-event-grid-classic .mec-event-article{position:relative;border:2px solid #e3e3e3;box-shadow:0 2px 0 0 rgba(0,0,0,.016);margin-bottom:30px;max-width:none}.mec-event-grid-classic .mec-event-content{background:#fff;color:#767676;padding:0 20px 5px;text-align:center;min-height:125px}.mec-event-grid-classic .mec-event-title{color:#202020;margin:10px 0;font-weight:700;font-size:20px;letter-spacing:1px;text-transform:uppercase}.mec-event-grid-classic .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-classic .mec-event-date{font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:1px;color:#fff;padding:3px 20px;margin:0 -20px 20px -20px;text-align:center}.mec-event-grid-classic .mec-event-content p{font-size:15px;color:#8a8a8a}.mec-event-grid-classic .mec-event-detail{display:none}.mec-event-grid-classic img{margin-bottom:0;width:100%}.mec-event-footer{position:relative;border-top:1px solid #efefef;padding:20px;min-height:80px;margin:0;background:#fafafa}.mec-event-sharing-wrap{left:15px;position:absolute;list-style:none;margin:0}.mec-event-sharing-wrap .mec-event-sharing{position:absolute;padding:8px 0 2px;left:-6px;bottom:54px;margin:0;margin-top:6px;border-radius:5px;width:50px;visibility:hidden;opacity:0;border:1px solid #e2e2e2;background:#fff;box-shadow:0 0 9px 0 rgba(0,0,0,.06);z-index:99;-webkit-transition:all .18s ease;transition:all .18s ease}.mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-sharing-wrap .mec-event-sharing:before{content:'';display:block;position:absolute;bottom:-10px;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-event-sharing-wrap .mec-event-sharing:before{bottom:-21px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-sharing-wrap .mec-event-sharing:after{bottom:-19px;border-color:#fff transparent transparent transparent}.mec-event-sharing-wrap:hover .mec-event-sharing{opacity:1;visibility:visible}.mec-event-sharing-wrap li{text-align:center;border:0;display:block;margin-right:2px;overflow:hidden;margin:0 auto 6px;width:38px}.mec-event-sharing-wrap:hover>li{cursor:pointer;background-color:#40d9f1}.mec-event-sharing-wrap:hover li a{color:#fff}.mec-event-sharing-wrap>li:first-of-type{border:1px solid #d9d9d9}.mec-event-sharing-wrap li a,.mec-event-sharing-wrap:hover li ul li a{border:none;color:#767676}.mec-event-sharing-wrap li i{width:36px;height:36px;display:table-cell;vertical-align:middle}.mec-event-sharing-wrap .mec-event-sharing li a{display:block}.mec-event-sharing-wrap .mec-event-sharing li:hover a{color:#40d9f1}.mec-event-sharing .mec-event-share:hover .event-sharing-icon{background:#40d9f1;border-width:0 1px 0;cursor:pointer}.mec-event-sharing .mec-event-map{border-width:1px 0 1px}.mec-event-footer .mec-booking-button{box-shadow:none;transition:all .21s ease;font-size:11px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:1px solid #e8e8e8;position:absolute;top:20px;right:15px;padding:0 16px;line-height:37px;height:38px}.mec-event-footer .mec-booking-button:hover{background:#191919;color:#fff;border-color:#191919}@media only screen and (max-width:960px){.mec-event-grid-classic{margin-bottom:30px}}.mec-widget .mec-event-grid-classic.mec-owl-carousel{padding:36px 0 16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav{margin:5px 0;width:100%;position:absolute;top:15px;padding:0}.mec-skin-grid-container.mec-widget{padding-top:18px}.mec-widget .mec-event-grid-classic.mec-owl-carousel{padding:20px 0 16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav{margin:0;width:100%;position:absolute;top:0;padding:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav div{position:absolute;background:#fff;line-height:0;width:34px;height:26px;padding:6px;text-align:center;margin-top:-17px;border-radius:3px;border:1px solid #e2e2e2;text-align:center;box-shadow:0 2px 0 0 rgba(0,0,0,.028);transition:all .33s ease}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav .owl-next{right:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav .owl-prev{left:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-sharing{display:none}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-footer{text-align:center}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-footer .mec-booking-button{position:static;padding:11px 16px}.widget .mec-event-footer ul.mec-event-sharing-wrap li a.mec-event-share-icon{padding:0}@media screen and (min-width:56.875em){.mec-widget .mec-month-container dl{margin-bottom:0}}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-footer{text-align:right}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-sharing-wrap{left:5px;padding-left:5px}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-sharing-wrap .mec-event-sharing{left:0}.mec-widget .mec-event-sharing-wrap .mec-event-sharing{position:absolute;top:auto;bottom:52px;margin:0;margin-top:0;border-radius:5px}.mec-widget .mec-event-sharing-wrap .mec-event-sharing:after{top:auto;bottom:-17px;border-color:#fff transparent transparent transparent}.mec-widget .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-18px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-grid-clean{margin-bottom:10px;max-width:none}.mec-event-grid-clean .mec-event-article{margin-bottom:30px;position:relative;border:1px solid #e2e2e2;text-align:center;padding:15px 15px 0;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-clean .mec-event-content{background:#fff;color:#767676;padding:25px 16px 0;text-align:left}.mec-event-grid-clean .mec-event-title{color:#202020;margin:0 0 10px 0;font-weight:700;font-size:21px;text-transform:capitalize}.mec-event-grid-clean .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-clean .mec-event-date{font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:1px;background-color:#40d9f1;color:#fff;padding:3px 0;margin:0;text-align:center}.mec-event-grid-clean .mec-event-content p{font-size:15px;color:#9a9a9a;line-height:1.54}.mec-event-grid-clean img{margin-bottom:0;width:100%}.mec-event-grid-clean .event-grid-t2-head{margin-bottom:10px;color:#fff;padding:9px 14px 6px;text-align:left}.mec-event-grid-clean .event-grid-t2-head .mec-event-date{font-size:50px;line-height:50px;float:left;margin-right:11px}.mec-event-grid-clean .event-grid-t2-head .mec-event-month{text-transform:uppercase;font-size:17px;line-height:20px;padding-top:4px}.mec-event-grid-clean .event-grid-t2-head .mec-event-detail{font-size:12px}.mec-event-grid-clean .mec-event-sharing-wrap{left:0}.mec-event-grid-clean .mec-event-footer{position:relative;border-top:2px solid;padding:20px 0;margin:0 14px;text-align:left;background:0 0}.mec-event-grid-clean .mec-event-footer .mec-booking-button{right:0}.mec-event-grid-clean .row{margin-bottom:30px}.mec-event-grid-modern{margin-bottom:10px;max-width:none}.mec-event-grid-modern .mec-event-article{position:relative;border:1px solid #e2e2e2;text-align:center;margin-bottom:30px;padding:45px 15px 10px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-modern .mec-event-content{background:#fff;color:#767676;padding:35px 15px 10px;text-align:left}.mec-event-grid-modern .mec-event-title{color:#202020;margin:0 0 10px 0;font-weight:700;font-size:24px;text-transform:none;letter-spacing:-1px}.mec-event-grid-modern .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-modern .mec-event-content p{font-size:15px;color:#9a9a9a;line-height:1.54}.mec-event-grid-modern img{margin-bottom:0;width:100%}.mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:9px 14px 6px;text-align:left}.mec-event-grid-modern .event-grid-modern-head .mec-event-date{font-size:50px;line-height:50px;float:left;margin-right:11px}.mec-event-grid-modern .event-grid-modern-head .mec-event-month{text-transform:uppercase;font-size:17px;line-height:20px;padding-top:4px}.mec-event-grid-modern .event-grid-modern-head .mec-event-detail{font-size:12px}.mec-event-grid-modern .event-grid-modern-head .mec-event-day{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:35px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-event-grid-modern .mec-event-footer{position:relative;height:90px;padding:20px 0;border:none;margin:0 14px;text-align:left;background:0 0}.mec-event-grid-modern .mec-event-footer .mec-booking-button{right:auto;left:0}.mec-event-grid-modern .mec-event-sharing-wrap{left:auto;right:0}.mec-event-grid-modern .mec-event-sharing{left:auto;right:-6px}.mec-event-grid-modern .mec-event-sharing-wrap li{border-radius:55px}.mec-event-grid-modern .row{margin-bottom:0}@media only screen and (max-width:479px){.mec-event-grid-modern .mec-event-article{padding-bottom:30px}.mec-event-grid-modern .mec-event-sharing{top:60px;left:0;right:auto}.mec-event-grid-modern .mec-event-footer .mec-booking-button{top:0}}.mec-event-title-soldout .soldout{background:#de3120;padding:4px 5px;color:#fff}.mec-event-title-soldout .soldout{background:#de3120;position:relative;top:-2px;border-radius:10px 0 0 20px;padding:2px 4px 2px 10px;color:#fff}.mec-event-title-soldout .soldout:before{content:' ';position:absolute;width:0;height:0;border-top:10px solid #de3120;border-bottom:10px solid #de3120;right:-10px;border-right:10px solid transparent;border-left:10px solid transparent;top:0}.mec-event-title-soldout .soldout:after{content:' ';position:absolute;width:6px;height:6px;background:#de3120;border-radius:50%;left:3px;top:4px;border:2px dashed #fff}.mec-event-grid-colorful .mec-event-article{min-height:400px;border:none;box-shadow:none;background:#40d9f1;padding-top:25px;margin:0;color:#fff}.mec-event-grid-colorful .mec-event-content{background:0 0}.mec-event-grid-colorful .event-grid-modern-head,.mec-event-grid-colorful .event-grid-modern-head .mec-event-date,.mec-event-grid-colorful .event-grid-modern-head .mec-event-day,.mec-event-grid-colorful .mec-event-content p,.mec-event-grid-colorful .mec-event-sharing-wrap>li>a,.mec-event-grid-colorful .mec-event-title a{color:#fff}.mec-event-grid-colorful .mec-event-footer .mec-booking-button{border:none}.mec-event-grid-colorful .mec-event-sharing-wrap>li{border-color:#fff}.mec-event-grid-colorful .mec-event-sharing-wrap:hover>li{background:#333;border-color:#333}.mec-event-grid-colorful .mec-event-title a.mec-color-hover:hover{color:#fff;text-decoration:underline}.mec-event-grid-colorful .mec-event-title .event-color{display:none}.mec-event-grid-colorful div[class^=col-md-]{padding:0 1px 1px 0;margin:0}@media only screen and (min-width:768px){.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-day{font-size:26px}.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-month{font-size:15px}.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-date{font-size:50px}.mec-wrap.mec-sm959.mec-event-grid-colorful .mec-event-title{font-size:21px}.mec-wrap.mec-sm959.mec-event-grid-colorful .mec-event-content p{font-size:13px}}@media only screen and (min-width:768px) and (max-width:1200px){.mec-wrap.mec-sm959.mec-event-grid-colorful div[class^=col-md-]{width:50%}}.mec-event-list-minimal .mec-event-article{border-bottom:1px solid #efefef;padding:24px 0 16px}.mec-event-list-minimal .mec-wrap .col-md-9{padding:0}.mec-event-list-minimal .mec-event-date{position:relative;float:left;margin-right:30px;color:#fff;width:52px;padding:6px 4px 3px;text-align:center;text-transform:uppercase;border-radius:3px}.mec-event-list-minimal .mec-event-date span{display:block;font-size:24px;font-weight:700;text-align:center;margin-bottom:4px}.mec-event-list-minimal .mec-event-date:after{display:block;content:"";position:absolute;width:50px;left:1px;top:1px;height:30px;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:5px}.mec-event-list-minimal .mec-event-detail{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;font-family:Roboto,sans-serif}.mec-event-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-date .event-da{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:28px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-event-list-modern .mec-btn-wrapper .mec-booking-button{border-radius:1px;letter-spacing:2px;border:1px solid #e6e6e6;color:#333;background-color:#fff;padding:13px 20px;font-weight:700;font-size:11px;box-shadow:0 2px 0 0 rgba(0,0,0,.016);transition:all .28s ease}.mec-event-list-modern .mec-btn-wrapper .mec-booking-button:hover{border-color:#222;background:#222;color:#fff}.mec-event-list-modern .mec-event-title{font-weight:700;font-size:20px;text-transform:uppercase;letter-spacing:1px}.mec-event-list-modern .mec-event-detail{color:#9a9a9a;font-size:15px;font-weight:300;line-height:25px;font-family:Roboto,sans-serif}.mec-event-list-modern .mec-btn-wrapper{text-align:right;padding:10px 0;text-transform:uppercase}.mec-event-list-modern .mec-event-sharing{position:relative;margin:10px 0}.mec-event-list-modern .mec-event-sharing>li{display:inline-block;border:none;border-radius:50%;margin-right:3px}.mec-event-list-modern .mec-event-sharing>li:hover{display:inline-block}.mec-event-list-modern .mec-event-sharing>li:hover a i{color:#fff;background:#40d9f1;border-color:#40d9f1}.mec-event-list-modern .mec-event-sharing>li i{width:36px;display:inline-block;line-height:35px;color:#767676;text-align:center;border-radius:50%;border:1px solid #ddd;font-size:14px}.mec-event-list-modern .mec-event-sharing .mec-event-share:hover .mec-event-sharing-icon{background:#40d9f1;border-color:#40d9f1;cursor:pointer;border-radius:50%}.mec-event-list-modern .mec-event-sharing li:hover a i{background:#40d9f1}@media only screen and (min-width:768px){.mec-event-list-modern .mec-event-article{position:relative;min-height:160px;overflow:hidden}.mec-event-list-modern .col-md-2.col-sm-2{width:210px;position:absolute;left:0;top:20px}.mec-event-list-modern .col-md-4.col-sm-4.mec-btn-wrapper{width:180px;padding:0;position:absolute;right:0;top:30%}.mec-event-list-modern .col-md-6.col-sm-6{width:100%;padding-left:225px;padding-right:195px}}@media only screen and (max-width:767px){.mec-event-list-modern .mec-btn-wrapper .mec-booking-button{letter-spacing:1px;border:1px solid #e1e1e1;padding:8px 16px}.mec-event-list-modern .mec-btn-wrapper{padding:0 0 12px}.mec-event-list-modern .mec-event-sharing{margin-bottom:0}}.mec-event-grid-minimal .mec-event-article{margin:15px 0;min-height:80px;display:table}.mec-event-grid-minimal .event-detail-wrap{display:table-cell;vertical-align:middle}.mec-event-grid-minimal .mec-event-date{width:70px;float:left;margin-right:20px;padding:12px 16px 10px;text-align:center;text-transform:uppercase;border-radius:4px;border:1px solid #e6e6e6;transition:all .37s ease-in-out;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-minimal .mec-event-date span{display:block;font-size:24px;font-weight:700;text-align:center;margin-bottom:4px;color:#2a2a2a;transition:color .3s ease}.mec-event-grid-minimal .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;line-height:21px;font-size:16px;text-transform:uppercase;transition:color .3s ease}.mec-event-grid-minimal .mec-event-title a{color:#191919;transition:color .3s ease}.mec-event-grid-minimal .mec-event-detail{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;font-family:Roboto,sans-serif}.mec-event-grid-minimal .mec-event-date:hover{color:#fff}.mec-event-grid-minimal .mec-event-date:hover span{color:#fff}.mec-event-list-classic .mec-event-article{padding:12px 0;margin-bottom:20px}.mec-event-list-classic .mec-event-image{float:left;width:86px;margin-right:20px}.mec-event-list-classic .mec-event-date{font-weight:400;font-size:13px;letter-spacing:0;line-height:18px}.mec-event-list-classic .mec-event-date span{font-weight:500;margin-bottom:6px}.mec-event-list-classic .mec-event-title{font-size:15px;margin:10px 0 12px;font-weight:700;text-transform:uppercase}.mec-event-list-classic .mec-event-title a{color:#494949;transition:color .3s ease}.mec-event-list-classic .mec-event-detail{color:#777;font-weight:400;line-height:12px;font-size:12px;overflow:hidden}.mec-event-list-classic a.magicmore{padding:10px 16px;color:#fff;background:#222;letter-spacing:2px;font-size:11px}.mec-event-list-classic a.magicmore:after{content:"";display:none}.mec-event-list-classic a.magicmore:hover{color:#40d9f1}.mec-event-grid-simple .mec-event-article{position:relative;margin-bottom:30px}.mec-event-grid-simple .mec-event-article:after{border-right:1px solid #e6e6e6;height:60px;position:absolute;top:50%;margin-top:-30px;right:-1px}.mec-event-grid-simple .row div:last-child .mec-event-article:after{border:none}.mec-event-grid-simple .row{margin:15px 0 30px;text-align:center}.mec-event-grid-simple .mec-event-date{padding:0;margin:0;text-transform:capitalize;font-size:12px;font-weight:700}.mec-event-grid-simple .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;line-height:21px;font-size:15px;padding-top:5px;text-transform:uppercase;transition:color .37s ease}.mec-event-grid-simple .mec-event-title a{color:#494949;transition:color .3s ease}.mec-event-grid-simple .mec-event-detail{font-family:Roboto,sans-serif;font-weight:400;line-height:1;letter-spacing:0;font-size:13px;color:#777}.mec-event-grid-simple:hover .mec-event-title{color:#40d9f1}.mec-event-grid-simple:hover .mec-event-date{background:0 0}.event-last:after{display:none}@media only screen and (max-width:767px){.mec-event-grid-simple .mec-event-article{padding-bottom:20px;margin-bottom:20px;border-bottom:1px solid #eee}.mec-event-grid-simple .mec-event-article:after{border:none}}.mec-event-grid-novel .mec-event-article{position:relative;margin-bottom:30px;padding:60px 5% 60px 7%;border:1px solid rgba(255,255,255,.12);border-radius:10px;background-color:#0050fd;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease;z-index:1}.mec-event-grid-novel .mec-event-article .novel-grad-bg{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:10px;opacity:0;z-index:-1;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease}.mec-event-grid-novel .mec-event-article:hover{-webkit-box-shadow:0 13px 36px 0 rgba(0,0,0,.23);box-shadow:0 13px 36px 0 rgba(0,0,0,.23);border-color:transparent}.mec-event-grid-novel .mec-event-article:hover .novel-grad-bg{background-image:-webkit-gradient(linear,left top,right top,from(#262e32),to(#0e1015));background-image:-webkit-linear-gradient(left,#262e32 0,#0e1015 100%);background-image:-o-linear-gradient(left,#262e32 0,#0e1015 100%);background-image:linear-gradient(90deg,#262e32 0,#0e1015 100%);opacity:1}.mec-event-grid-novel .mec-event-image{float:left;width:150px;height:150px}.mec-event-grid-novel .mec-event-image img{width:150px;height:150px;border-radius:50%}.mec-event-grid-novel .mec-event-detail-wrap{margin-left:200px}.mec-event-grid-novel .mec-event-content h4{position:relative;margin-bottom:10px;display:inline-block}.mec-event-grid-novel .mec-event-content h4 a{font-size:24px;line-height:35px;color:#fafcff}.mec-event-grid-novel .mec-event-content h4::before{content:'';position:absolute;top:8px;left:-30px;width:17px;height:17px;background:#5cd0ed;opacity:.4;border-radius:50%}.mec-event-grid-novel .mec-event-content h4::after{content:'';position:absolute;top:12px;left:-26px;width:9px;height:9px;background:#5cd0ed;border-radius:50%}.mec-event-grid-novel .mec-event-address,.mec-event-grid-novel .mec-event-detail,.mec-event-grid-novel .mec-event-month{position:relative;padding-left:35px;font-size:15px;line-height:30px;color:rgba(255,255,255,.4)}.mec-event-grid-novel .mec-event-address::before,.mec-event-grid-novel .mec-event-detail::before,.mec-event-grid-novel .mec-event-month::before{position:absolute;top:6px;left:6px;font-size:17px;font-family:simple-line-icons;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1}.mec-event-grid-novel .mec-event-month::before{content:"\e075"}.mec-event-grid-novel .mec-event-detail::before{content:"\e081"}.mec-event-grid-novel .mec-event-address::before{content:"\e096"}.mec-event-grid-novel .mec-event-footer{clear:both;padding:20px 0;border-top:none;background:0 0}.mec-event-grid-novel .mec-event-footer .mec-booking-button{right:auto;left:0;height:42px;width:148px;padding:0 20px;font-size:14px;font-weight:400;line-height:42px;text-align:center;color:#fff;background:0 0;border-color:rgba(255,255,255,.1);border-radius:50px}.mec-event-grid-novel .mec-event-footer .mec-booking-button:hover{background-color:rgba(255,255,255,.1)}.mec-event-grid-novel .mec-event-sharing-wrap{left:175px;cursor:pointer}.mec-event-grid-novel .mec-event-sharing-wrap>li{border-color:rgba(255,255,255,.1);border-radius:50%}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing{top:-5px;left:0;padding:5px 10px 2px 50px;min-width:150px;width:inherit;height:37px;background-color:rgba(255,255,255,.1);-webkit-box-shadow:none;box-shadow:none;border:none;border-radius:50px}.mec-event-grid-novel .mec-event-sharing-wrap:hover>li{background-color:rgba(255,255,255,.1)}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing::after,.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing::before{display:none}.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon,.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon a,.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li i{display:inline}.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon a{padding:0 10px}.mec-event-grid-novel .mec-event-sharing-wrap>li a{color:#fff}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li a{color:rgba(255,255,255,.4)}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li a:hover{color:rgba(255,255,255,1)}@media only screen and (max-width:1200px){.mec-event-grid-novel .row .col-md-6.col-sm-6{width:100%;float:none}.mec-event-grid-novel .mec-event-image{float:none;margin-top:-20px;margin-bottom:20px}.mec-event-grid-novel .mec-event-detail-wrap{margin-left:20px}.mec-event-grid-novel .mec-event-footer{margin-top:30px}}@media only screen and (max-width:767px){.mec-event-grid-novel .mec-event-footer{margin-top:0;padding-top:30px;margin-bottom:24px}.mec-event-grid-novel .mec-event-footer .mec-booking-button{display:block;position:relative}.mec-event-grid-novel .mec-event-sharing-wrap{left:0;bottom:-55px}.mec-event-grid-novel .mec-event-content h4 a{font-size:20px;line-height:1.3}}.mec-event-cover-modern{position:relative}.mec-event-cover-modern .mec-event-cover-a{background:0 0;position:absolute;color:#fff;bottom:0;left:0;text-decoration:none}.mec-event-cover-modern .mec-event-cover-a .mec-event-overlay{transition:all .5s;opacity:.8;width:100%;height:100%;position:absolute}.mec-event-cover-modern .mec-event-cover-a:hover .mec-event-overlay{opacity:1}.mec-event-cover-modern .mec-event-detail{padding:40px;position:relative}.mec-event-cover-modern .mec-event-cover-a:hover .mec-event-tag{color:#333;transition:all .5s}.mec-event-cover-modern .mec-event-cover-a .mec-event-title:hover{text-decoration:underline}.mec-event-cover-modern .mec-event-tag{background:#fff;display:inline-block;padding:5px 9px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:24px}.mec-event-cover-modern .mec-event-date{text-transform:uppercase;font-size:17px;font-weight:300}.mec-event-cover-modern .mec-event-title{color:#fff;text-transform:uppercase;font-size:40px;font-weight:700;margin:6px 0}.mec-event-cover-modern .mec-event-place{font-weight:400;font-size:18px;font-family:Roboto,sans-serif}@media only screen and (max-width:767px){.mec-event-cover-modern .mec-event-cover-a{width:100%}}.mec-event-cover-classic{position:relative;overflow:hidden;background:#fff;padding:6px;border:1px solid #e8e8e8}.mec-event-cover-classic .mec-event-overlay{position:absolute;left:6px;right:6px;bottom:6px;top:6px;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-cover-classic:hover .mec-event-overlay{background-color:rgba(36,36,36,.6)}.mec-event-cover-classic .mec-event-content{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out}.mec-event-cover-classic .mec-event-date{font-size:14px;text-transform:uppercase;font-weight:400;line-height:1.6}.mec-event-cover-classic .mec-event-date span{display:block;font-weight:700;font-size:16px}.mec-event-cover-classic .mec-event-title{color:#fff;margin:20px 0 38px;font-size:24px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-cover-classic .mec-btn-wrapper{text-align:left}.mec-event-cover-classic .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-cover-classic .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:12px 20px;letter-spacing:3px;font-size:12px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-cover-classic .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-cover-classic .mec-event-image img{min-width:100%}@media only screen and (max-width:960px){.mec-event-cover-classic .mec-event-content{padding:20px}.mec-event-cover-classic .mec-event-button{font-size:11px;padding:7px 10px;letter-spacing:1px}.mec-event-cover-classic .mec-event-title{font-size:19px;margin:15px 0 25px}.mec-event-cover-classic .mec-event-date{font-size:12px}}@media only screen and (max-width:767px){.mec-event-cover-classic{margin-bottom:30px}}@media only screen and (max-width:479px){.mec-event-cover-classic .mec-event-content{padding:15px;font-size:15px}.mec-event-cover-classic .mec-event-title{font-size:15px;margin:10px 0}.mec-event-cover-classic .mec-event-button{font-size:10px;padding:6px;letter-spacing:1px}.mec-event-cover-classic .mec-event-icon{padding:10px}}.mec-load-more-wrap{text-align:center;display:block;width:100%;padding-top:20px;text-align:center;position:relative}.mec-load-more-button{box-shadow:none;transition:all .21s ease;font-size:12px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:2px solid #e8e8e8;border-radius:50px;padding:0 28px;margin-bottom:20px;cursor:pointer;line-height:40px;font-family:Montserrat,Helvetica,Arial,sans-serif;height:42px;display:inline-block}.mec-load-more-button:hover{background:#191919;color:#fff;border-color:#191919}.mec-load-more-loading{content:url(../img/ajax-loader.gif);cursor:wait;background:0 0;border-style:none}.mec-load-more-loading:hover{background:0 0}.mec-modal-preloader,.mec-month-navigator-loading{width:100%;height:100%;background:no-repeat rgba(255,255,255,.88) url(../img/ajax-loader.gif) center;border-style:none;position:fixed;left:0;right:0;bottom:0;top:0;z-index:9}.mec-event-calendar-classic .mec-calendar-side .mec-calendar-table{min-height:1024px}.mec-calendar-side .mec-calendar-table{min-height:450px}.mec-skin-weekly-view-events-container.mec-month-navigator-loading{margin-top:0}.mec-calendar.mec-event-calendar-classic .mec-calendar-side{display:block}.mec-skin-daily-view-events-container.mec-month-navigator-loading{margin-top:0}@media only screen and (min-width:961px){.mec-wrap.mec-sm959 .mec-calendar-side .mec-calendar-table{min-height:1px}}@media only screen and (max-width:479px){.mec-calendar-side .mec-calendar-table{min-height:1px}}.mec-event-cover-clean{position:relative;border:1px solid #e6e6e6;padding:8px}.mec-event-cover-clean .mec-event-overlay{height:100%;background-color:rgba(36,36,36,.4);position:absolute;width:100%;left:0;border:8px solid #fff;top:0;transition:all .5s ease-in-out}.mec-event-cover-clean .mec-event-content{color:#fff;position:absolute;bottom:20px;padding:40px 60px;transition:all .5s ease-in-out}.mec-event-cover-clean .mec-event-title{color:#fff;font-weight:700;margin:46px 0 19px;font-size:29px;text-transform:uppercase;text-shadow:0 0 1px rgba(0,0,0,.5)}.mec-event-cover-clean .mec-event-title a{color:#fff;transition:all .5s;text-decoration:none;outline:0;border:none;box-shadow:none}.mec-event-cover-clean .mec-event-title a:hover{text-decoration:underline}.mec-event-cover-clean .mec-event-date{position:absolute;top:-20px;right:60px;color:#fff;width:60px;padding:14px 10px;z-index:1}.mec-event-cover-clean .mec-event-date div{text-align:center;text-transform:uppercase;letter-spacing:1px;line-height:16px}.mec-event-cover-clean .mec-event-date .dday{padding-bottom:15px;border-bottom:1px solid rgba(255,255,255,.5);margin-bottom:13px;font-size:24px}.mec-event-cover-clean .mec-event-date .dmonth{letter-spacing:2px}.mec-event-cover-clean .mec-event-place{font-size:18px;font-family:Roboto,sans-serif}.mec-event-cover-clean .mec-event-image img{width:100%}@media only screen and (max-width:768px){.mec-event-cover-clean .mec-event-content{padding:20px;bottom:5px}.mec-event-cover-clean .mec-event-title{font-size:23px}.mec-event-cover-clean .mec-event-date{right:20px;padding:10px;width:50px}}@media only screen and (max-width:479px){.mec-event-cover-clean .mec-event-content{padding:10px}.mec-event-cover-clean .mec-event-title{font-size:19px;padding-right:25px}.mec-event-cover-clean .mec-event-date{right:-20px;top:-10px}.mec-event-cover-clean .mec-event-detail{font-size:12px}}.mec-month-divider{text-align:center;margin:60px 0 40px 0}.widget .mec-month-divider{margin:10px 0}.mec-month-divider span{text-transform:uppercase;font-size:22px;font-weight:700;padding-bottom:5px;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative}.mec-month-divider span:before{border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-30px;left:50%;width:60px}.widget .mec-month-divider span{font-size:13px}.mec-event-list-standard .mec-events-pagination{margin-top:60px;border-top:4px solid #ebebeb;min-height:80px;padding-top:20px}.mec-event-list-standard .mec-events-pagination .mec-events-pag-previous{float:left;margin-left:0}.mec-event-list-standard .mec-events-pagination .mec-events-pag-next{float:right;margin-right:0}.mec-event-list-standard .mec-event-article{position:relative;display:block;margin-bottom:25px;border:1px solid #e9e9e9;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-list-standard .mec-topsec{display:table;width:100%}.mec-event-list-standard .col-md-3.mec-event-image-wrap{padding-left:0}.mec-event-list-standard .mec-event-content{padding-top:15px;padding-right:30px}.mec-event-list-standard .mec-event-title{font-size:29px;font-weight:700;letter-spacing:-1px;margin:0 0 10px}.mec-event-list-standard .mec-event-title a{color:#292929;transition:color .3s ease}.mec-event-list-standard .mec-col-table-c{display:table-cell;height:100%;vertical-align:middle;float:none!important}.mec-event-list-standard .mec-col-table-c.mec-event-meta-wrap{padding-top:15px}.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{vertical-align:top}.mec-topsec .mec-event-image{line-height:1px}.mec-event-list-standard .mec-event-meta-wrap{border-left:1px solid #eee}.mec-event-list-standard .mec-time-details{text-transform:uppercase;font-size:11px;font-weight:300;padding-top:0;text-align:left;padding-left:30px}.mec-event-list-standard .mec-event-meta .mec-event-address{font-style:normal;letter-spacing:0;font-size:13px;color:#8a8a8a}.mec-event-list-standard .mec-event-meta span.mec-event-d,.mec-event-list-standard .mec-event-meta span.mec-event-m{font-size:17px;font-weight:700;padding-right:6px;color:#444;text-transform:uppercase}.mec-event-list-standard .mec-date-details,.mec-event-list-standard .mec-time-details,.mec-event-list-standard .mec-venue-details{position:relative;padding-left:28px;margin-bottom:10px}.mec-event-list-standard .mec-date-details:before,.mec-event-list-standard .mec-time-details:before,.mec-event-list-standard .mec-venue-details:before{content:"\f041";font-family:fontawesome;position:absolute;left:6px;font-size:15px}.mec-event-list-standard .mec-date-details:before{content:"\f073"}.mec-event-list-standard .mec-time-details:before{content:"\f017"}.mec-event-list-minimal .mec-event-title a{color:#292929;transition:color .3s ease}.mec-event-meta-wrap .mec-price-details{margin-bottom:10px}.mec-price-details i{margin-right:5px;vertical-align:text-top}.mec-event-meta-wrap .mec-event-meta .mec-price-details i:before{font-size:15px}@media only screen and (max-width:960px){.mec-event-list-standard .mec-topsec{display:block}.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:block;width:40%}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{display:block;min-height:230px}.mec-event-list-standard .mec-event-meta-wrap{display:block;border-left:none;border-top:1px solid #eee;width:100%;float:none;padding-top:20px}}@media only screen and (min-width:480px) and (max-width:960px){.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:table-cell}}@media only screen and (max-width:479px){.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap img{float:none;width:100%;padding:0}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{padding:10px 10px 10px 30px}}.mec-wrap .mec-events-cal-links{margin-bottom:0}.mec-single-event #mec-wrap{padding:0;margin-top:35px}.mec-wrap .mec-single-title{margin-top:0;margin-bottom:30px;font-weight:700;font-size:33px}.mec-single-event .mec-event-content{padding:40px 0 30px;margin-bottom:10px}.mec-single-event .mec-events-meta-group-booking,.mec-single-event .mec-frontbox{margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-wrap #main-content{overflow:hidden;padding-top:35px}.mec-single-event .mec-map-get-direction-address-cnt{position:relative}.mec-single-event .mec-map-get-direction-address-cnt input.mec-map-get-direction-address{width:100%;height:46px;padding:13px 10px;margin-bottom:0;background:#fcfcfc;border:1px solid #e0e0e0;border-radius:0;box-shadow:inset 0 2px 5px rgba(0,0,0,.081)}.mec-single-event .mec-map-get-direction-address-cnt input.mec-map-get-direction-address:focus{color:#444;background:#fff;border-color:#b0b0b0;box-shadow:0 0 3px rgba(0,0,0,.2)}.mec-single-event .mec-map-get-direction-btn-cnt input{width:100%}.mec-single-event .mec-map-get-direction-reset{position:absolute;z-index:2;top:5px;right:10px;font-size:11px;cursor:pointer}.mec-events-meta-group-tags{margin-top:20px}.mec-events-meta-group-tags a{display:inline-block;color:#444;font-size:11px;text-transform:uppercase;letter-spacing:1.5px;font-weight:500;padding:3px 7px;border:1px solid #ddd;border-radius:2px;background:#fff;margin:1px 3px}.mec-events-meta-group-tags a:hover{text-decoration:underline;background:#f9f9f9}.mec-local-time-details li{list-style:none}.mec-single-event:not(.mec-single-modern) .mec-local-time-details{background:#f7f7f7;padding:12px 14px 8px;margin-bottom:12px;vertical-align:baseline;position:relative;border:none}.mec-single-event:not(.mec-single-modern) .mec-local-time-details ul{margin:0;padding-left:35px}.mec-single-event:not(.mec-single-modern) .mec-local-time-details h3{border:none;padding-left:15px}.mec-single-event:not(.mec-single-modern) .mec-local-time-details h3:before{display:none}.mec-single-event.mec-single-modern i.mec-sl-speedometer{display:none}.mec-single-event .mec-events-meta-group-booking{padding-bottom:30px}.mec-single-event .mec-events-meta-group-booking ul{list-style:none;margin-left:0;padding-left:0}.mec-single-event .mec-events-meta-group-booking ul li{padding:0;list-style:none;margin-top:40px}.mec-single-event .mec-events-meta-group-booking h4{margin-bottom:20px;font-size:23px;font-weight:700}.mec-single-event .mec-events-meta-group-booking li h4{font-size:19px}.mec-single-event .mec-events-meta-group-booking button,.mec-single-event .mec-events-meta-group-booking input{border-radius:0;margin-bottom:6px}.mec-single-event .mec-events-meta-group-booking button{min-width:170px;margin-top:5px}.mec-single-event .mec-events-meta-group-booking button{margin-left:15px}.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-book-first,.mec-single-event .mec-event-tickets-list{padding-left:15px;padding-right:15px}.mec-single-event label.mec-fill-attendees{margin-left:15px!important}.mec-single-event .mec-events-meta-group-booking .mec-event-ticket-available{display:block;margin-bottom:20px;margin-top:-17px;font-size:11px;color:#8a8a8a}.mec-single-event .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.mec-single-event .mec-events-meta-group-booking form{margin:0}.mec-single-event .mec-events-meta-group-booking h5 span,.mec-single-event .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;display:block;clear:none;padding:5px 1em 3px 0}.mec-single-event .mec-events-meta-group-booking h5 span{display:inline-block}.mec-single-event .mec-events-meta-group-booking h5 span.mec-ticket-variation-name{padding-right:5px;text-transform:capitalize}.mec-single-event .mec-events-meta-group-booking input::-webkit-input-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input:-moz-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:330px;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both}.wbmec-mandatory{padding-left:5px;font-size:14px}.mec-single-event .mec-events-meta-group-booking .mec-red-notification input,.mec-single-event .mec-events-meta-group-booking .mec-red-notification select,.mec-single-event .mec-events-meta-group-booking .mec-red-notification textarea{border:1px solid #ff3c3c}.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=checkbox],.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=radio]{outline:1px solid #ff3c3c}@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{vertical-align:top;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}.mec-single-event .mec-booking-button:hover{background-color:#101010!important}.mec-single-event .mec-event-tags a{display:inline-block;color:#444;font-size:11px;text-transform:uppercase;letter-spacing:1.5px;font-weight:500;padding:3px 7px;border:1px solid #ddd;border-radius:2px;background:#fff;margin:1px 3px}.mec-single-event .mec-event-tags:before{font-size:24px;color:#303030;margin-right:5px;content:"\f02c";font-family:fontawesome}.mec-single-event .mec-event-tags{padding-top:13px}.mec-single-event .mec-event-sharing{margin:30px 0 10px}.mec-region.mec-events-abbr,.mec-single-event .mec-street-address{font-style:normal;font-size:13px}.mec-events-meta-group.mec-events-meta-group-venue:before,.mec-single-event-date:before,.mec-single-event-time:before{color:#40d9f1}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-event-social h3{text-transform:uppercase;font-size:15px;font-weight:700;padding-bottom:5px;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative}.mec-single-event .mec-social-single:before{padding:13px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:39px}.mec-single-event .mec-event-social .event-sharing{margin-top:30px}.mec-single-event .mec-event-social ul{list-style:none;margin-left:0}.mec-single-event .mec-event-social li.mec-event-social-icon{display:inline-block}.mec-single-event .mec-event-social li.mec-event-social-icon a{display:inline-block;color:#fff;width:40px;height:40px;padding:9px;font-size:16px;margin-right:5px}.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.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.other-social{background:#ff5d5e}.mec-single-event .mec-event-social a.other-social:hover{background:#cc4949}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4,.mec-single-event .mec-frontbox-title{text-transform:uppercase;font-size:15px;font-weight:700;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative;text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4:before,.mec-single-event .mec-frontbox-title:before{padding:1px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-35px;left:50%}.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-month],.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-year]{width:47%!important;margin-right:12px;margin-top:5px;display:inline-block!important}@media(max-width:768px){.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-month],.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-year]{width:100%!important;margin-right:0;display:block!important}}.mec-event-meta i:before{font-size:20px;vertical-align:middle}.mec-event-meta .mec-single-event-additional-organizers i:before,.mec-event-meta .mec-single-event-organizer i:before{font-size:14px;vertical-align:baseline}#mec-wrap .mec-events-day-time-slot .mec-events-content{float:left;width:33%;padding:0 15px}#mec-wrap .mec-events-day-time-slot .mec-events-event-image{padding-left:0}#mec-events-content .mec-events-abbr{color:#8d8d8d;font-size:14px}.mec-single-event .mec-events-content{margin-bottom:30px}.mec-single-event .mec-organizer-url a{word-wrap:break-word}.mec-single-event #headline{margin:0 0 10px}.mec-single-event #headline h2{padding:0}.mec-single-event .mec-events-meta-group.mec-events-meta-group-gmap .mec-events-venue-map{margin-top:0;padding:8px;border:1px solid #e5e5e5;border-radius:7px}#mec-events-gmap-0{height:325px!important}.mec-events-list .mec-events-day-time-slot .mec-events-event-meta{width:33%;float:left;padding:40px;height:auto;margin:0}.mec-events-day-time-slot .mec-events-content.description.entry-summary{font-size:15px;font-weight:300;color:#8d8d8d}.mec-events-day-time-slot .type-mec_events h2{font-size:28px;padding-bottom:20px}.mec-events-day .mec-events-day-time-slot .type-mec_events{margin:0}.mec-events-day .mec-events-day-time-slot h5{background-color:#8d8d8d}.mec-single-event .mec-event-meta .mec-single-event-additional-organizers .mec-events-single-section-title,.mec-single-event .mec-event-meta .mec-single-event-organizer .mec-events-single-section-title,.mec-single-event .mec-events-meta-date h3{padding-left:0;margin:10px;display:inline-block}.mec-single-event .mec-events-meta-date h3{width:100%}.mec-single-event .mec-events-event-image{border:0}.mec-single-event .mec-events-venue-map{padding:0}.mec-event-cost,.mec-event-more-info,.mec-event-website,.mec-events-meta-date,.mec-single-event-additional-organizers,.mec-single-event-category,.mec-single-event-date,.mec-single-event-label,.mec-single-event-location,.mec-single-event-organizer,.mec-single-event-time{background:#f7f7f7;padding:12px 14px 8px;margin-bottom:12px;vertical-align:baseline;position:relative}.mec-single-event .mec-events-meta-date dd,.mec-single-event .mec-single-event-additional-organizers dd,.mec-single-event .mec-single-event-organizer dd{padding-left:0;margin-bottom:10px}.mec-single-event .mec-events-meta-date dd span,.mec-single-event .mec-single-event-additional-organizers dd span,.mec-single-event .mec-single-event-organizer dd span{display:block;padding-left:12px;color:#8d8d8d}.mec-single-event .mec-events-meta-date i,.mec-single-event .mec-single-event-additional-organizers i,.mec-single-event .mec-single-event-organizer i{margin-right:10px;margin-left:12px}.mec-events-meta-group.mec-events-meta-group-venue dl{margin-bottom:0}address.mec-events-address{line-height:19px;font-style:normal;font-size:12px}.mec-single-event .mec-event-content dt{margin-top:5px}.mec-single-event .mec-single-event-additional-organizers .mec-single-event-additional-organizer{margin-bottom:15px;padding-bottom:5px;border-bottom:1px solid #e4e4e4}.mec-single-event .mec-single-event-additional-organizers .mec-single-event-additional-organizer:last-child{margin-bottom:0;padding-bottom:0;border:none}.mec-event-schedule-content{border-left:4px solid #f0f0f0;padding-top:10px;margin-top:30px;margin-left:25px;margin-bottom:20px;color:#8a8a8a}.mec-event-schedule-content dl{padding-left:24px;font-size:12px;position:relative;margin-bottom:35px}.mec-event-schedule-content dl:before{content:'';display:block;position:absolute;left:0;top:4px;width:20px;height:0;border-top:4px solid #f0f0f0}.mec-event-schedule-content dl dt{margin:0 0 10px;line-height:1.16}.mec-event-schedule-content dl dt.mec-schedule-title{font-size:13px;color:#5a5a5a;font-weight:700}.mec-event-schedule-content dl dt.mec-schedule-description{font-weight:300}.mec-event-schedule-content .mec-schedule-speakers{background:#f7f7f7;padding:10px}.mec-wrap .mec-event-schedule-content h6{font-size:13px;color:#5a5a5a;font-weight:700;display:inline-block}.mec-wrap .mec-event-schedule-content a{font-weight:400;color:#5a5a5a;transition:all .1s ease}.single-mec-events .mec-speakers-details ul{padding:0}.mec-single-event .mec-speakers-details ul li{list-style:none;background:#f7f7f7;padding:5px 5px 18px 5px;margin-top:14px}.mec-single-event .mec-speakers-details ul li a{-webkit-transition:.2s all ease;transition:.2s all ease}.mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a img{float:left;border-radius:50%;transition:.2s all ease;border:2px solid transparent;width:68px;height:68px}.mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a:hover img{border-color:#40d9f1}.mec-single-event .mec-speakers-details ul li .mec-speaker-name{display:inline-block;margin-top:6px;font-size:14px;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}.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}.mec-attendees-list-details .mec-attendee-profile-link span{display:block;color:#000}.mec-calendar{margin-bottom:20px;border:1px solid #e8e8e8;width:100%;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-calendar .mec-calendar-topsec{display:table;background:#fff}.mec-calendar .mec-calendar-topsec .mec-calendar-events-sec{display:none}.mec-calendar .mec-calendar-side{width:590px;display:table-cell;padding:40px;position:relative;text-align:center;box-shadow:0 1px 5px 6px rgba(0,0,0,.005) inset}.mec-calendar .mec-calendar-events-side{display:table-cell;height:100%;border-left:1px solid #efefef;padding:40px;width:100%}.mec-calendar .mec-calendar-events-side .mec-table-side-day{width:46px;height:46px;margin:0 auto 20px;position:relative;text-align:center;line-height:46px;border:1px solid #40d9f1;border-radius:50%;font-size:12px;font-weight:600;padding:0}.mec-calendar .mec-calendar-events-side .mec-table-side-title{text-align:center;font-size:11px;text-transform:uppercase;letter-spacing:3px;margin-bottom:14px}.mec-calendar .mec-calendar-header{position:relative;width:560px;margin-top:8px;margin-bottom:16px}.mec-calendar .mec-calendar-header h2{text-transform:uppercase;font-size:22px;font-weight:700;color:#333}.mec-calendar .mec-event-footer{width:auto;min-height:60px}.mec-calendar dl{display:table;margin:0;border:none;padding:0;table-layout:fixed}.mec-calendar dt{display:table-cell;transition:all .66s ease;color:#4d4d4d;background:#fff;border-radius:44px;font-size:14px;width:80px;height:80px;line-height:80px;text-align:center}.mec-calendar .mec-calendar-table .mec-no-event{display:none}.mec-calendar .mec-calendar-table-head dt{font-weight:700;text-transform:uppercase;font-size:15px}.mec-calendar .mec-calendar-row dt:hover{background:#f4f4f4}.mec-calendar .mec-table-nullday{color:#cacaca}.mec-calendar.mec-box-calendar .mec-table-nullday:last-child{border-right:1px solid #eaeaea}.mec-calendar .mec-next-month:hover,.mec-calendar .mec-prev-month:hover{background:#f4f4f4}.mec-calendar .mec-selected-day,.mec-calendar .mec-selected-day:hover{background:#40d9f1;color:#fff}.mec-calendar .mec-selected-day a{color:#fff}.mec-calendar .mec-has-event{position:relative}.mec-calendar .mec-calendar-row dt.mec-has-event:hover{background:#40d9f1}.mec-calendar .mec-has-event a{cursor:pointer;display:block;width:100%;height:100%;border-radius:50%;color:#4d4d4d;transition:all .25s ease;text-decoration:none;box-shadow:none}.mec-calendar .mec-calendar-row dt.mec-has-event.mec-selected-day a,.mec-calendar .mec-calendar-row dt.mec-has-event:hover a{color:#fff}.mec-calendar .mec-has-event:after{background-color:#40d9f1;border-radius:50%;display:block;content:'';width:8px;height:8px;bottom:14px;left:50%;margin:-4px 0 0 -4px;position:absolute;transition:all .25s ease}.mec-calendar .mec-calendar-row dt.mec-has-event:hover:after{background-color:#fff}.mec-calendar .mec-has-event.mec-selected-day:after{display:none}.mec-calendar .mec-event-article{text-align:left;margin-bottom:0;padding-bottom:25px;padding-top:26px;border-top:1px solid #efefef;transition:all .33s ease}.mec-calendar .mec-event-article:hover{background-color:#fafafa}.mec-calendar .mec-event-article .mec-event-time{font-size:11px;line-height:1.1;margin:0}.mec-calendar .mec-event-article .mec-event-title{font-size:13px;padding:0;margin:10px 0 8px;font-weight:700;text-transform:uppercase}.mec-calendar .mec-event-article .mec-event-title a{text-decoration:none;color:#494949;transition:color .3s ease}.mec-calendar .mec-event-article .mec-event-title a:hover{color:#40d9f1}.mec-calendar .mec-event-article .mec-event-image,.mec-calendar .mec-event-list-classic .mec-event-image img{width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-image{float:left;margin-right:20px;width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-detail{font-size:13px;line-height:1.3;font-family:Roboto,sans-serif;color:#9a9a9a;margin-bottom:0}.mec-calendar .mec-calendar-side .mec-next-month,.mec-calendar .mec-calendar-side .mec-previous-month{cursor:pointer;position:absolute;top:0;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;color:#a9a9a9;font-size:12px;letter-spacing:1px;text-transform:uppercase;padding-left:10px;padding-right:10px;border:1px solid #efefef;border-top:none;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease}.mec-calendar .mec-calendar-side .mec-next-month i,.mec-calendar .mec-calendar-side .mec-previous-month i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-calendar .mec-calendar-side .mec-next-month:hover,.mec-calendar .mec-calendar-side .mec-previous-month:hover{background-color:#f9f9f9;color:#40d9f1}.mec-calendar .mec-calendar-side .mec-previous-month{left:0;border-bottom-right-radius:6px;border-left:none}.mec-calendar .mec-calendar-side .mec-next-month{right:0;border-bottom-left-radius:6px;border-right:none}@media only screen and (min-width:961px){.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-side{width:370px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-header{position:relative;width:350px;margin-top:30px;margin-bottom:20px;padding-top:20px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) dt{width:50px;height:50px;line-height:50px}.mec-wrap.mec-sm959 .mec-calendar.mec-event-calendar-classic dl dt{height:110px}}@media only screen and (max-width:1200px){.mec-calendar .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-calendar .mec-calendar-side{width:370px}.mec-calendar .mec-calendar-header{position:relative;width:350px;margin-top:30px}.mec-calendar dt{width:50px;height:50px;line-height:50px}}@media only screen and (max-width:767px){.mec-calendar .mec-calendar-header h2{font-size:18px}.mec-calendar .mec-calendar-topsec{width:100%}.mec-calendar .mec-calendar-side{width:100%;display:block;padding:30px}.mec-calendar .mec-calendar-header{width:auto}.mec-calendar .mec-calendar-events-side{width:100%;display:block;height:100%;border-left:none;border-top:1px solid #efefef;padding:20px}.mec-calendar dl{width:100%}.mec-calendar dt{width:14%;height:60px;line-height:60px;border-radius:50px}}@media only screen and (max-width:479px){.mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-calendar .mec-calendar-header h2{font-size:16px;margin-top:33px}.mec-calendar dt{height:38px;line-height:38px}.mec-calendar .mec-event-list-classic .mec-event-detail,.mec-calendar .mec-event-list-classic .mec-event-title{font-size:12px}.mec-calendar .mec-event-list-classic .mec-event-time{font-size:10px}}.mec-box-calendar.mec-calendar .mec-has-event a,.mec-box-calendar.mec-calendar dt{border-radius:0}.mec-box-calendar.mec-calendar .mec-calendar-header{margin-top:2px;margin-bottom:30px}.mec-box-calendar.mec-calendar dt{border-bottom:1px solid #eaeaea;border-left:1px solid #eaeaea}.mec-box-calendar.mec-calendar dl dt:last-child{border-right:1px solid #eaeaea}.mec-box-calendar.mec-calendar .mec-calendar-table-head dt{border-top:1px solid #eaeaea;background-color:#f8f8f8}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{background-color:#f4f4f4}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{border-radius:2px;top:40px;border:1px solid #eee;height:30px;line-height:30px;z-index:1}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:60px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:60px}.mec-box-calendar.mec-calendar .mec-calendar-side{box-shadow:none}.mec-box-calendar.mec-calendar .mec-calendar-events-side{border:none}.mec-box-calendar.mec-calendar .mec-calendar-events-side .mec-table-side-day{border-radius:2px}.mec-box-calendar.mec-calendar h4.mec-month-label{position:relative;width:560px;margin-top:2px;margin-bottom:30px;text-transform:uppercase;font-size:22px;font-weight:700;color:#333}.mec-widget .mec-box-calendar.mec-calendar h4.mec-month-label{width:100%;margin-top:8px;font-size:13px}@media only screen and (max-width:1200px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:42px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:42px}.mec-calendar .mec-calendar-header h2{font-size:17px;margin-top:7px}}@media only screen and (max-width:767px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{top:28px;font-size:10px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:30px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:30px}.mec-calendar .mec-calendar-header h2{font-size:15px}}@media only screen and (max-width:479px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{top:16px;font-size:0;padding:4px 0;text-align:center;min-width:33px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:10px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:10px}.mec-box-calendar.mec-calendar .mec-calendar-header h2{font-size:12px;margin-top:15px}.mec-box-calendar.mec-calendar .mec-event-image{margin-right:12px}}.mec-calendar.mec-event-calendar-classic,.mec-calendar.mec-event-calendar-classic .mec-calendar-side{border:none;padding:0;width:100%;height:100%;box-shadow:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-side{display:block}.mec-calendar.mec-event-calendar-classic .mec-calendar-header,.mec-calendar.mec-event-calendar-classic dl{width:100%}.mec-calendar.mec-event-calendar-classic dl dt{width:15%;height:136px;line-height:1.2;text-align:left;padding:5px 7px;position:relative}.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{height:30px!important}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{top:0}.mec-calendar.mec-event-calendar-classic .mec-has-event:after{bottom:auto;top:24px;left:7px;margin:0}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{left:0}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month{right:0}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{text-align:left;background:#fafafa;border:1px solid #eaeaea;border-top:none;padding:10px 20px}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{display:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-event-article:hover{background-color:#fcfcfc}.mec-calendar.mec-event-calendar-classic .mec-selected-day,.mec-calendar.mec-event-calendar-classic dt.mec-selected-day:hover{color:#40d9f1;font-weight:700;background:#fafafa;border-bottom:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-day,.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{display:inline-block;margin:0;margin-bottom:15px;font-weight:700}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-day{margin-left:4px}.mec-calendar.mec-event-calendar-classic .mec-calendar-row dt.mec-has-event a{color:#4d4d4d}.mec-calendar.mec-event-calendar-classic .mec-calendar-row dt.mec-has-event:not(.mec-selected-day):hover a{color:#fff}@media only screen and (max-width:1200px){.mec-calendar.mec-event-calendar-classic dl dt{height:100px}}@media only screen and (max-width:767px){.mec-calendar.mec-event-calendar-classic dl dt{height:40px}}@media only screen and (max-width:479px){.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{padding:10px}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-header h2{font-size:13px;margin-top:8px}}.mec-calendar .mec-event-article.mec-single-event-novel{padding:4px 8px;min-height:25px;margin:0 -4px;border-radius:0}.mec-calendar .mec-event-article.mec-single-event-novel h4{margin:0;font-size:10px;line-height:18px}.mec-calendar.mec-event-container-novel dl dt{padding:3px}.mec-calendar.mec-event-calendar-classic .mec-calendar-novel-selected-day{display:inline-block;padding:4px;margin-left:1px}.mec-calendar.mec-event-calendar-classic .mec-selected-day .mec-calendar-novel-selected-day{color:#fff}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-selected-day,.mec-calendar.mec-event-calendar-classic.mec-event-container-novel dt.mec-selected-day:hover{border-bottom:1px solid #eaeaea}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-calendar-side .mec-calendar-table{min-height:auto}.mec-single-event-novel.light h4{color:#000!important}.mec-single-event-novel.dark h4{color:#fff!important}@media only screen and (max-width:768px){.mec-calendar .mec-event-article.mec-single-event-novel{padding:0;min-height:5px}.mec-calendar .mec-event-article.mec-single-event-novel h4{display:block;font-size:9px}}.mec-event-container-simple .event-single-content-simple{display:none}.mec-event-calendar-classic.mec-event-container-simple .mec-calendar-side .mec-calendar-table{min-height:unset}.mec-event-container-simple .mec-monthly-tooltip h4{font-size:13px;font-weight:500;margin:0;color:#444}.mec-event-container-simple .mec-monthly-tooltip h4:hover{text-decoration:underline;color:#111}.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple{border-bottom:1px dashed #e3e3e3;padding:10px 2px;display:block}.mec-calendar.mec-event-container-simple dl dt.mec-calendar-day{font-size:30px;color:#000}.mec-calendar.mec-event-container-simple .mec-calendar-row dt:hover{background:unset}.mec-calendar.mec-event-container-simple .mec-calendar-row dt,.mec-calendar.mec-event-container-simple .mec-calendar-row dt:last-child,.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt,.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt:last-child{border-width:2px}.mec-calendar.mec-event-container-simple dl dt.mec-selected-day,.mec-calendar.mec-event-container-simple dl dt.mec-selected-day:hover{border-bottom:2px solid #40d9f1;background:unset}.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt{line-height:36px}@media (max-width:768px){.mec-calendar.mec-event-container-simple{overflow-x:scroll}.mec-calendar.mec-event-container-simple .mec-calendar-side{min-width:700px}.mec-event-container-simple .mec-monthly-tooltip h4{font-size:12px}}.mec-wrap.colorskin-custom .mec-calendar.mec-event-container-simple .mec-selected-day:hover{background:#f4f4f4}.mec-event-container-simple .mec-calendar-day .mec-monthly-tooltip.event-single-link-simple:last-of-type{border:none}.mec-tooltip-event-title{font-size:16px;font-weight:700;color:#000;margin-bottom:2px}.mec-tooltip-event-time{font-size:12px;color:#888;margin-bottom:8px;margin-top:5px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-content{padding:17px}.mec-tooltip-event-content{clear:both}.mec-tooltip-event-featured{float:left;margin-right:13px;margin-bottom:1px}.mec-tooltip-event-featured img{max-width:120px}.mec-tooltip-event-desc{font-size:14px;color:#444;line-height:18px}.mec-tooltip-event-desc p{font-size:13px;line-height:1.4;margin-bottom:10px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-box{border-radius:3px!important;border:1px solid #e2e3e4!important;background:#fff!important;box-shadow:0 -1px 30px -2px rgba(0,0,0,.15)!important}.tooltipster-sidetip .tooltipster-arrow{overflow:visible!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-border{border-width:12px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-right .tooltipster-arrow-border{border-right-color:#e2e3e4!important}.tooltipster-sidetip .tooltipster-arrow-border{left:-12px!important;z-index:9999999999!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-background{display:block!important}.tooltipster-sidetip .tooltipster-arrow-background{border-width:11px!important;z-index:99999999999!important}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background{left:-9px!important;top:1px!important;border-right-color:#fff!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background{border-top-color:#fff!important;left:0!important;top:-1px!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border{left:-1px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-top .tooltipster-arrow-border{border-top-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{left:-1px!important;top:-11px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{border-bottom-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background{top:-9px!important;border-bottom-color:#fff!important}.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background{border-left-color:#fff!important;left:-2px!important;top:0!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-left .tooltipster-arrow-border{border-left-color:#e2e3e4!important;left:-1px!important;top:-1px!important}@media (max-width:780px){.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4{word-break:break-all;font-size:13px}}@media (max-width:320px){.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4{font-size:10px}}.mec-calendar.mec-calendar-daily .mec-calendar-day-events .mec-event-article{padding-left:15px;padding-right:15px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month{text-align:center;background-color:#fff;border-bottom:2px solid #f4f4f4;position:relative}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{color:#444;font-size:18px;line-height:1.2;padding:15px 0 11px;margin:0;font-weight:700;letter-spacing:1px;text-transform:uppercase;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-top{text-align:center;padding:10px 0;position:relative;background-color:#fafafa}.mec-calendar.mec-calendar-daily .mec-next-month,.mec-calendar.mec-calendar-daily .mec-previous-month{position:absolute;top:50%;left:50%;margin-top:-25px;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;border:1px solid #e2e2e2;border-radius:50px;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month i,.mec-calendar.mec-calendar-daily .mec-previous-month i{font-size:14px;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month:hover,.mec-calendar.mec-calendar-daily .mec-previous-month:hover{border-color:#d0d0d0;color:#444;box-shadow:0 2px 5px 0 rgba(0,0,0,.075)}.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-150px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:100px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month{min-height:28px;height:28px;line-height:28px;width:28px;margin-top:-14px;border-radius:3px}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2,.mec-calendar.mec-calendar-daily .mec-calendar-d-top h3{margin-top:9px;color:#b9b9b9;font-family:Roboto,sans-serif;font-size:30px;font-weight:100;text-transform:uppercase;margin-bottom:12px;line-height:1}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2{font-size:81px;color:#444;margin-bottom:10px;line-height:1.1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table{overflow:hidden;background:#fff;min-height:60px;border-top:1px solid #e6e6e6;border-bottom:2px solid #f3f3f3;padding:0 50px;position:relative}@media only screen and (min-width:479px){.mec-calendar.mec-calendar-daily .mec-calendar-d-table{padding:0 55px}}.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl{width:1310px;display:block}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{display:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl.mec-weekly-view-week-active{display:block}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt{display:block;background:#fff;width:42px;height:60px;line-height:60px;text-align:center;float:left;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6;border-radius:0}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day:hover,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt:hover{background:#fafafa;box-shadow:0 2px 5px 0 rgba(0,0,0,.065) inset;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day{cursor:default;background:#fff;color:#c1c1c1;line-height:59px;text-align:center;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-has-event{cursor:pointer;font-weight:700;color:#4a4a4a}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-daily-view-day-active,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt.mec-table-d-current{font-size:18px;font-weight:700;background:#fafafa;color:#40d9f1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-prev{float:none;font-size:14px;width:55px;position:absolute;top:0;left:0;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next{left:auto;right:0;border-left:1px solid #e6e6e6;border-right:none}.mec-calendar.mec-calendar-daily .mec-today-container .mec-today-count{font-size:12px;color:#888;text-align:center}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}}.widget .mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}.widget .mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.widget .mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-util-hidden{display:none}.mec-daily-view-date-events,.mec-weekly-view-date-events{list-style:none;margin:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table{padding:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{width:calc(100% - 1px)}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt{width:14.286%;height:70px;line-height:normal;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:hover{background:#fff;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:last-child{border-right:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:12px;font-weight:700;text-transform:uppercase;display:block;margin:15px 0 6px}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-prev{display:none}ul.mec-weekly-view-dates-events,ul.mec-weekly-view-dates-events li{padding:0;margin:0;line-height:initial}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:64px;height:64px;margin-right:10px;font-size:11px;text-transform:uppercase;float:left;text-align:center;padding-top:2px}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:40px;line-height:30px;font-weight:700;display:block;margin-bottom:6px;letter-spacing:1px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-previous-month{margin-left:0;left:12px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-next-month{margin-left:0;left:auto;right:12px}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}}.widget .mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}.mec-week-events-container .mec-weekly-view-dates-events li.mec-no-event-found{list-style:none!important}li.mec-no-event-found .mec-event-title{text-align:center}.mec-widget .mec-calendar{max-width:100%}.mec-widget .mec-calendar dl dt,.mec-wrap.mec-sm959.mec-widget .mec-calendar.mec-event-calendar-classic dl dt{height:40px}.mec-widget .mec-calendar .mec-calendar-events-sec{padding:10px}.mec-widget .mec-calendar .mec-calendar-header h2{font-size:13px;margin-top:8px}.mec-widget .mec-calendar .mec-event-list-classic .mec-event-image{margin-right:12px}.mec-widget .mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-widget .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{font-size:14px}.mec-widget .mec-calendar .mec-event-article .mec-event-image{margin-right:11px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-header{margin-bottom:20px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{font-size:0;padding:4px 0;text-align:center;min-width:33px}.mec-widget .mec-event-calendar-classic .mec-calendar-side .mec-calendar-table{min-height:200px}.mec-widget .mec-event-list-classic{margin-bottom:8px;padding:8px 0}.mec-widget .mec-event-list-classic .mec-event-article{margin-bottom:0;padding:10px 0;position:relative;min-height:86px;padding-left:80px}.mec-widget .mec-event-list-classic .mec-event-date{font-size:10px;line-height:14px;text-transform:uppercase}.mec-widget .mec-event-list-classic .mec-event-title{font-size:13px}.mec-widget .mec-event-list-classic .mec-event-detail{font-size:11px}.mec-widget .mec-event-list-classic .mec-event-image{width:68px;position:absolute;left:0}.mec-event-list-classic .mec-event-image img{width:100%}.mec-widget .mec-event-list-classic .mec-event-detail{overflow:visible}.event-color{width:14px;display:inline-block;height:14px;margin-left:5px;border-radius:50%}.mec-map-lightbox-wp{width:580px;padding:15px 15px 0;background-color:#fff}.mec-map-view-event-detail.mec-event-detail{width:580px;background-color:#e9e9e9;padding:8px 15px}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-article{padding:0 0 15px;margin:0}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-image{width:70px;margin-right:15px}.mec-marker-infowindow-wp{padding:10px}.mec-marker-infowindow-wp .mec-marker-infowindow-count{width:60px;height:60px;display:block;text-align:center;line-height:60px;border:1px solid #40d9f1;border-radius:50%;font-size:32px;color:#40d9f1;float:left;margin-right:11px}.mec-marker-infowindow-wp .mec-marker-infowindow-content{overflow:hidden;padding-top:6px}.mec-marker-infowindow-wp .mec-marker-infowindow-content span{display:block;color:#222}.mec-marker-infowindow-wp .mec-marker-infowindow-content span:first-child{font-size:15px;font-weight:700}.mec-marker-wrap{display:inline-block;width:35px;height:35px;margin:15px 0 0 4px;border-radius:50% 50% 50% 0;background:#00cae9;animation-name:mec-map-bounce;animation-fill-mode:both;animation-duration:1s;border:3px solid #fff;cursor:pointer}.mec-marker-wrap .mec-marker{margin-top:5px;display:block;-webkit-transform:rotate(45deg);transform:rotate(45deg);text-align:center;color:#fff;font-size:17px}.mec-marker-wrap .mec-marker-pulse-wrap{-webkit-transform:rotate(45deg);transform:rotate(45deg);display:inline-block;margin-left:-11px;margin-top:0}.mec-marker-wrap .mec-marker-pulse{display:inline-block;background:#c5c5c5;border-radius:50%;height:14px;width:14px;-webkit-transform:rotateX(55deg);transform:rotateX(55deg);z-index:-2}.mec-marker-wrap .mec-marker-pulse:after{content:"";border-radius:50%;height:40px;width:40px;position:absolute;margin:-13px 0 0 -13px;animation:pulsate 1s ease-out;animation-iteration-count:infinite;opacity:0;box-shadow:0 0 1px 2px #00cae9;animation-delay:1.1s}@keyframes pulsate{0%{transform:scale(.1,.1);opacity:0}50%{opacity:1}100%{transform:scale(1.2,1.2);opacity:0}}@keyframes mec-map-bounce{0%{opacity:0;transform:translateY(-2000px) rotate(-45deg)}60%{opacity:1;transform:translateY(30px) rotate(-45deg)}80%{transform:translateY(-10px) rotate(-45deg)}100%{transform:translateY(0) rotate(-45deg)}}.mec-skin-grid-container .mec-skin-map-container,.mec-skin-list-container .mec-skin-map-container{margin-bottom:20px}.mec-single-event{margin-top:10px}.mec-single-event .mec-events-meta-group-countdown{color:#c9c9c9;text-align:center;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-events-meta-group-countdown .countdown-w{text-align:center;font-size:36px;margin:0 auto;padding:40px 0 0;position:relative;display:table;table-layout:fixed}.mec-events-meta-group-countdown .countdown-w .icon-w{font-size:24px}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:15px;font-weight:300;letter-spacing:1px;text-transform:uppercase;position:relative}.mec-events-meta-group-countdown .countdown-w .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px;width:190px;font-size:72px;transition:all .3s ease-in-out;line-height:1.2}.mec-events-meta-group-countdown .countdown-w .block-w.done-w{border:0 none}.mec-events-meta-group-countdown .countdown-w span{padding:24px 0 20px}.mec-events-meta-group-countdown .countdown-w .div-d{display:none}.mec-events-meta-group-countdown .countdown-w .countdown-message{display:none}.mec-events-meta-group-countdown .countdown-w .block-w i{display:none}#countdown{list-style:none;margin-bottom:0;margin-top:0;margin-left:0;padding-left:0}.mec-events-meta-group-countdown .mec-end-counts h3{display:inherit;text-align:center;font-size:16px;right:50%}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:23px}@media (min-width:481px) and (max-width:768px){.mec-events-meta-group-countdown .countdown-w{padding:0}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:12px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:34px}}@media (min-width:320px) and (max-width:480px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:10px}.mec-events-meta-group-countdown .countdown-w span{font-size:28px}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:16px}}@media (max-width:320px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:9px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:22px}}.info-msg,.mec-error,.mec-success,.warning-msg{margin:10px 0;padding:10px;border-radius:3px 3px 3px 3px;font-size:13px}.info-msg{color:#059;background-color:#bef}.mec-success{color:#0dbf52;background-color:#cef7ce}.warning-msg{color:#9f6000;background-color:#feefb3}.mec-error{color:#d8000c;background-color:#ffbaba}.mec-fes-form,.mec-fes-list{background:#f8feff;padding:30px 3%;color:#798f96;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important}.mec-fes-list .mec-fes-list-top-actions,.mec-fes-list ul{margin:0 auto 15px;max-width:960px;list-style:none}.mec-fes-form-cntt .dashicons-editor-help{display:none}.mec-fes-list ul li *{text-decoration:none!important}.mec-fes-list ul li{padding:20px 15px;border-radius:3px;margin-bottom:15px;border:1px solid #cfeff5;box-shadow:0 2px 6px -4px #cfeff5;background:#fff;line-height:normal}.mec-fes-list ul li a{box-shadow:none;color:#181818}.mec-fes-list ul li a:hover{color:#40d9f1}.mec-fes-list ul li .mec-event-title{font-size:17px;font-weight:600;width:calc(100% - 250px);display:inline-block}@media (max-width:600px){.mec-fes-list ul li .mec-event-title{font-size:13px}}.mec-fes-list .mec-event-status{color:#fff!important;border-color:transparent!important}.mec-fes-form .mec-book-confirmed,.mec-fes-list .mec-book-confirmed{background:#50d477!important}.mec-fes-form .mec-book-pending,.mec-fes-list .mec-book-pending{background:#fcbe69!important}.mec-fes-form .mec-book-rejected,.mec-fes-list .mec-book-rejected{background:#fe686a!important}.mec-fes-form .mec-book-other,.mec-fes-list .mec-book-other{background:#40d9f1!important}.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view{font-size:11px;padding:0;border:0;background:#f7f8f9;float:right;margin-left:5px;border-radius:2px;transition:all .2s ease}.mec-fes-list ul li .mec-fes-event-export a,.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view a{padding:4px 8px;display:inline-block;border:1px solid #e7e8e9;border-radius:2px;color:#789}@media (max-width:600px){.mec-fes-list ul li .mec-fes-event-export a,.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view a{font-size:10px}}.mec-fes-list ul li .mec-fes-event-remove:hover{cursor:pointer;background:#f96f8a;border-color:#f96f8a;color:#fff}.mec-fes-list ul li .mec-fes-event-export a:hover,.mec-fes-list ul li .mec-fes-event-view a:hover{background:#40d9f1;color:#fff;border-color:#40d9f1}.mec-fes-form-top-actions a,.mec-fes-list-top-actions a{position:relative;border:none;border-radius:3px;color:#fff!important;display:inline-block;font-size:13px;line-height:1;text-transform:none;font-weight:400;text-decoration:none;cursor:pointer;margin-bottom:20px!important;margin-right:10px;line-height:1;letter-spacing:0;padding:15px 22px;background:#39c36e;box-shadow:0 1px 7px -3px #39c36e!important;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease}.mec-fes-form-top-actions a:hover,.mec-fes-list-top-actions a:hover{background:#222;color:#fff}.mec-fes-list-top-actions a{font-weight:600;text-transform:capitalize}.mec-fes-form-top-actions a:before{content:"";border:solid #fff;border-width:0 2px 2px 0;display:inline-block;padding:6px;margin-right:5px;vertical-align:sub;transform:rotate(135deg);-webkit-transform:rotate(135deg)}.mec-fes-form .mec-form-row,.mec-fes-list .mec-form-row{margin-bottom:10px;clear:both}.mec-fes-form label{font-size:13px;display:block;color:#798f96;font-weight:400;padding:0 0 4px 2px}.mec-fes-form input+label{padding-left:3px;margin:0;display:inline-block;vertical-align:top}.mec-fes-form .post-status{float:right!important;margin:0 5px;color:#fff;padding:0 10px;border-radius:12px;font-style:italic;font-size:18px}.mec-fes-form input[type=email],.mec-fes-form input[type=number],.mec-fes-form input[type=password],.mec-fes-form input[type=tel],.mec-fes-form input[type=text],.mec-fes-form select,.mec-fes-form textarea{min-width:inherit;width:auto;display:inline;min-height:30px;font-size:13px;padding:10px;margin-bottom:20px;clear:both;background:#fff;border:1px solid #cfeff5;box-shadow:0 2px 5px rgba(207,239,245,.38) inset;border-radius:3px;height:40px;max-width:280px;color:#798f96}.mec-fes-form input{background:#fff!important;border-radius:3px!important;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important}.mec-fes-form textarea{height:80px}.mec-fes-form input::-webkit-input-placeholder{color:#798f96}.mec-fes-form input::-moz-placeholder{color:#798f96}.mec-fes-form input:-ms-input-placeholder{color:#798f96}.mec-fes-form input:-moz-placeholder{color:#798f96}#mec_more_info_target{width:100%}@media only screen and (min-width:961px){.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form textarea{width:100%;display:inline-block}}@media only screen and (max-width:768px){.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form textarea{width:100%}}.mec-fes-form input[type=text]#mec_fes_title{padding:5px 10px;min-height:32px;height:50px;background:#fff!important;max-width:100%;font-size:19px;font-weight:400}.mec-fes-form input[type=checkbox],.mec-fes-form input[type=radio]{display:inline!important;float:left;margin:5px 5px 0 0}.mec-fes-form input[type=email]:focus,.mec-fes-form input[type=number]:focus,.mec-fes-form input[type=password]:focus,.mec-fes-form input[type=tel]:focus,.mec-fes-form input[type=text]:focus,.mec-fes-form select:focus,.mec-fes-form textarea:focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-form-row .mec-color{cursor:pointer}.mec-form-row.mec-available-color-row span{margin:10px;width:14px;height:14px;display:inline-block;margin-right:6px;border-radius:20px 20px 20px 20px;vertical-align:middle}.mec-form-row.mec-available-color-row span:first-of-type{margin-left:0}.mec-fes-form.mec-fes-form .mec-tooltip{display:inline}.mec-fes-form-cntt .dashicons-editor-help{display:block}.mec-fes-form .mec-tooltip:hover:after,.mec-fes-form .mec-tooltip:hover:before{display:none}.mec-fes-form.mec-fes-form .mec-tooltip{display:inline-flex;bottom:7px}.mec-fes-form .mec-tooltip .box{min-width:300px;max-width:600px;display:inline-block;left:26px;top:50%;transform:translateY(-50%);padding:0;margin-top:8px;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.3;position:absolute;z-index:9999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s}#webnus-dashboard .mec-fes-form .mec-tooltip .box p,.mec-fes-form .mec-tooltip .box p{color:#fff;font-size:14px;line-height:1.3;margin:0}.mec-fes-form .mec-tooltip:hover .box{visibility:visible;opacity:1}.mec-fes-form .mec-tooltip:hover .box{padding:20px;border-radius:8px}.mec-fes-form .mec-tooltip .box h5{color:#fff;font-size:17px;font-weight:600;margin:-30px -20px;padding:20px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #32363a;border-radius:6px 6px 0 0;z-index:9999}#webnus-dashboard .mec-fes-form .mec-tooltip .box p a,.mec-fes-form .mec-tooltip .box p a{color:#40d9f1;margin-top:10px;margin-left:0;font-weight:400;position:relative;text-decoration:none;display:block;width:max-content}.mec-fes-form .mec-tooltip .box a:hover{color:#f90}.mec-fes-form .mec-tooltip .box:after{display:block;position:absolute!important;top:100%!important;right:50%!important;margin-top:-6px!important;margin-right:-6px!important;width:12px!important;height:24px!important;overflow:hidden!important;transform:rotate(-90deg)!important}.mec-fes-form .mec-tooltip .box:before{display:block;content:''!important;position:absolute!important;width:12px;height:12px;left:-10px!important;top:50%!important;transform:translate(50%,-50%) rotate(-45deg)!important;background-color:#535a61!important;box-shadow:0 8px 9px -4px #535a61!important;z-index:0!important}.mec-fes-form .mec-tooltip .box.top{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-fes-form .mec-tooltip .box.top:after{top:50%!important;right:100%!important}.mec-fes-form .mec-tooltip .box.top:before{left:50%!important;top:100%!important}.mec-fes-form .mec-tooltip .box.bottom{left:50%;top:auto;bottom:0;transform:translate(-50%,100%);margin-bottom:-20px;margin-left:-10px}.mec-fes-form .mec-tooltip .box.bottom:after{top:0!important;right:50%!important;background-color:#3a3f44!important}.mec-fes-form .mec-tooltip .box.bottom:before{left:50%!important;top:-7px!important;transform:translateX(-50%);background-color:#3a3f44!important}.mec-fes-form .mec-tooltip .box.left{left:auto;right:26px;top:50%;transform:translateY(-50%)}.mec-fes-form .mec-tooltip .box.left:before{right:0!important;left:auto!important;top:50%!important}.mec-fes-form .mec-tooltip{display:inline-block;position:relative;margin-right:10px;cursor:help;bottom:5px;left:3px}.mec-fes-form .mec-tooltip:last-child{margin-right:0}.mec-fes-form .mec-tooltip:hover:after{background:#313130;border-radius:5px;bottom:24px;color:#fff;content:attr(title);left:-75px;padding:10px;position:absolute;z-index:98;width:240px}.mec-fes-form .mec-tooltip:hover:before{border:solid;border-color:#313130 transparent;border-width:6px 6px 0;bottom:18px;content:"";left:30%;position:absolute;z-index:99}.mec-fes-form .mec-tooltip .dashicons-before:before{font-size:24px;color:#008aff;line-height:37px}.mec-fes-form .mec-tooltip a:focus{box-shadow:none}.mec-form-row .bootstrap_unvalid{display:block;border:2px solid red;position:relative;display:inline-block;border-bottom:1px dotted #000}.mec-fes-form .mec-tooltiptext{visibility:hidden;width:120px;background-color:red;color:#fff;text-align:center;border-radius:6px;padding:5px 0;position:absolute;z-index:1}.mec-fes-form .mec-tooltip .content p a{display:none}@media only screen and (min-width:961px){.mec-fes-form .mec-fes-form-cntt,.mec-fes-form .mec-fes-form-sdbr{width:68%;float:left;padding-right:20px}.mec-fes-form .mec-fes-form-sdbr{width:32%;padding-right:0;padding-left:20px}.mec-fes-submit-mobile{display:none}}.mec-fes-form .mec-meta-box-fields{padding:0 20px 20px;border:1px solid #cfeff5;margin-bottom:20px!important;box-shadow:0 2px 6px -3px #cfeff5;border-radius:3px;background:#fff}.mec-fes-form .mec-meta-box-fields h4{margin:0 -20px;font-size:15px;font-weight:600;letter-spacing:0;color:#40d9f1;text-transform:capitalize;padding:15px 20px;background:#ecfcff;margin-bottom:20px;border-radius:3px}.mec-fes-sub-button{width:100%}.mec-available-color-row span.color-selected{border:3px solid #fff;box-sizing:content-box;box-shadow:0 0 0 2px #40d9f1,0 2px 8px -1px #40d9f1}.mec-fes-loading:before{content:url(../img/ajax-loader.gif);background:0 0;border-style:none;display:block;margin-left:47%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:190px;margin-right:1.4%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-1,.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-2{width:120px;margin-right:10px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].widefat{width:100%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row{border-bottom:none;padding-bottom:10px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-6{width:39%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row button{margin-right:0;padding:9px 26px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row button.mec-add-hourly-schedule-button{font-size:12px;height:30px;line-height:25px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row .description{display:inline-block;border-left:1px dashed #bfcacc;margin-left:12px;line-height:28px;padding-left:12px;margin-top:5px;font-style:italic}@media only screen and (max-width:768px){.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:100%!important}}#mec_fes_form_message{max-width:838px;margin:10px auto;display:block!important;text-align:center}.mec-wrap .mec-totalcal-box{position:relative;border:1px solid #efefef;padding:20px 5px;margin:0 0 20px;background:#fafafa;overflow:hidden;box-shadow:0 3px 2px 0 rgba(0,0,0,.012);min-height:78px}.mec-wrap .mec-totalcal-box i{float:left;margin:0;width:36px;height:36px;background:#fff;border:1px solid #efefef;text-align:center;padding:10px 0;font-size:15px;color:#888}.mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-wrap .mec-totalcal-box input,.mec-wrap .mec-totalcal-box select{width:auto;min-height:36px;height:36px;line-height:36px;background:#fff;font-size:13px;color:#777;border:1px solid #efefef;margin:0 0 0 -1px;float:left;padding:0 5px;font-family:Roboto,Helvetica,Arial,sans-serif}.mec-wrap .mec-totalcal-box input[type=submit]{cursor:pointer;padding:0 16px;text-transform:uppercase;font-size:11px;font-family:Montserrat,Helvetica,Arial,sans-serif;transition:all .21s ease}.mec-wrap .mec-totalcal-box input[type=submit]:hover{background:#222;color:#fff}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{display:inline-block;text-transform:uppercase;font-family:Montserrat,Helvetica,Arial,sans-serif;font-size:11px;padding:0 12px;cursor:pointer}.mec-wrap .mec-totalcal-box .mec-totalcal-view span:hover{color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected{color:#fff;background:#40d9f1;border-color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view{text-align:right;float:right}.mec-wrap .mec-totalcal-box input[type=search]{width:calc(100% - 36px)}@media only screen and (min-width:961px) and (max-width:1200px){.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-3,.mec-wrap .mec-totalcal-box .col-md-4,.mec-wrap .mec-totalcal-box .col-md-5{width:100%;float:none;padding-bottom:20px;clear:both;overflow:hidden}}@media only screen and (min-width:768px) and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-4{position:relative;right:10px;top:20px;width:initial}.mec-wrap .mec-totalcal-box .col-md-5{padding-bottom:0}.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:767px){.mec-wrap .mec-totalcal-box .mec-totalcal-view{float:none}.mec-wrap .mec-totalcal-box .col-md-4{padding-bottom:0}}@media only screen and (max-width:479px){.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 8px;font-size:10px}.mec-wrap .mec-totalcal-box input[type=submit]{padding:0 10px;font-size:10px}}@media only screen and (min-width:961px){.mec-wrap .mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5,.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-3{width:100%;float:none;padding-bottom:20px;clear:both;overflow:hidden}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-4{position:absolute;right:10px;top:20px;width:initial}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5{padding-bottom:0;width:100%}}@media (min-width:961px) and (max-width:1200px){.mec-full-calendar-wrap .mec-totalcal-box{padding:20px 20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{padding-bottom:20px!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{min-width:calc(30% - 10px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3:last-child select{min-width:calc(50% - 19px)}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view{margin-right:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:10px;text-align:center}}@media (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box{padding:20px 20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{padding-bottom:10px!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px);margin-bottom:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view{margin-right:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:10px;text-align:center}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:100%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:absolute;top:20px}}@media (min-width:780px) and (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:absolute;top:20px}}@media(max-width:780px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{width:calc(50% - 18px)!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:unset;padding-right:0}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:20%;text-align:center;font-size:10px}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 7px;margin-top:20px}}@media(max-width:480px){.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:20%;text-align:center;font-size:10px}}.mec-search-form{padding:20px 10px}.mec-search-form .mec-dropdown-wrap{display:table;min-height:55px;width:100%}.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{padding:0 10px;float:left;min-height:55px}.mec-search-form .mec-date-search,.mec-search-form .mec-text-input-search{width:50%;min-height:36px;display:block}.mec-full-calendar-wrap .mec-search-form .mec-date-search,.mec-full-calendar-wrap .mec-search-form .mec-text-input-search{width:100%}.mec-full-calendar-wrap .mec-search-form .col-md-3,.mec-full-calendar-wrap .mec-search-form .col-md-5,.mec-full-calendar-wrap .mec-search-form .col-md-6,.mec-full-calendar-wrap .mec-search-form .col-md-8{padding:0}.mec-widget .mec-search-form .mec-date-search,.mec-widget .mec-search-form .mec-text-input-search{width:100%}.mec-widget .mec-search-form .mec-text-input-search{margin-top:10px}.mec-search-form .mec-date-search{clear:left}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:table-cell;float:none}.mec-widget .mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block}.mec-wrap .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{width:calc(100% - 36px)}.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 106px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}@media only screen and (max-width:767px){.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{width:100%;float:none}.mec-search-form .mec-date-search{min-height:55px}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:50%;float:left}}@media only screen and (max-width:960px){.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 124px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}}@media only screen and (max-width:479px){.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:100%;float:none}}.ui-datepicker{background-color:#fff;border:1px solid #66afe9;border-radius:4px;box-shadow:0 0 8px rgba(102,175,233,.6);display:none;margin-top:4px;padding:10px;width:240px}.ui-datepicker a,.ui-datepicker a:hover{text-decoration:none;cursor:pointer}.ui-datepicker a:hover,.ui-datepicker td:hover a{color:#2c6396;-webkit-transition:color .1s ease-in-out;-moz-transition:color .1s ease-in-out;-o-transition:color .1s ease-in-out;transition:color .1s ease-in-out}.ui-datepicker .ui-datepicker-header{margin-bottom:4px;text-align:center}.ui-datepicker .ui-datepicker-title{font-weight:700}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{cursor:default;font-family:dashicons;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;height:20px;line-height:1.4;margin-top:2px;width:20px}.ui-datepicker .ui-datepicker-prev{float:left;text-align:left}.ui-datepicker .ui-datepicker-next{float:right;text-align:center}.ui-datepicker .ui-datepicker-prev:before{content:"\f341"}.ui-datepicker .ui-datepicker-next:before{content:"\f345"}.ui-datepicker .ui-icon{display:none}.ui-datepicker .ui-datepicker-calendar{table-layout:fixed;width:100%}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker .ui-datepicker-calendar th{text-align:center;padding:4px 0}.ui-datepicker .ui-datepicker-calendar td{border-radius:4px;-webkit-transition:background-color .1s ease-in-out,color .1s ease-in-out;-moz-transition:background-color .1s ease-in-out,color .1s ease-in-out;-o-transition:background-color .1s ease-in-out,color .1s ease-in-out;transition:background-color .1s ease-in-out,color .1s ease-in-out}.ui-datepicker .ui-datepicker-calendar td:hover{background-color:#eee;cursor:pointer}.ui-datepicker .ui-datepicker-calendar td a{text-decoration:none}.ui-datepicker .ui-datepicker-current-day{background-color:#4289cc}.ui-datepicker .ui-datepicker-current-day a{color:#fff}.ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover{background-color:#fff;cursor:default}.event-carousel-type1-head .mec-event-image{position:relative;min-height:150px}.event-carousel-type1-head .mec-event-image img{width:100%}.mec-event-carousel-content .mec-event-carousel-title a{transition:all .2s ease}.event-carousel-type1-head .mec-event-date-carousel{position:absolute;top:25px;left:1px;font-size:41px;width:160px;color:#fff;font-weight:500;background-color:#40d9f1;padding-left:21px;height:97px;line-height:2.3;padding-right:85px}.event-carousel-type1-head .mec-event-date-carousel:after{content:"";position:absolute;display:inline-block;z-index:-1;bottom:-13px;left:5px;width:0;border-width:13px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.event-carousel-type1-head .mec-event-date-info{font-size:12px;font-weight:300;position:absolute;top:27px;left:75px}.event-carousel-type1-head .mec-event-date-info-year{font-size:12px;font-weight:300;position:absolute;top:45px;left:75px}.mec-event-carousel-content{border:1px solid #e8e8e8;border-top:none;margin-top:-5px;padding:34px 9px 11px 37px}.mec-event-carousel-content .mec-event-carousel-title a{font-size:23px;font-weight:500;color:#000;letter-spacing:-1px}.mec-event-carousel-content p{font-size:14px;color:#7a7272;font-weight:300}.mec-owl-crousel-skin-type1 .owl-item .mec-event-article{padding:0 19px}.mec-event-carousel-type1 .owl-page.active span{background-color:#00aeef;height:14px;width:14px}.mec-event-carousel-type1 .mec-event-carousel-content{margin-bottom:15px;box-shadow:0 1px 2px rgba(0,0,0,.04);transition:all .27s ease}.mec-event-carousel-type1 .mec-event-carousel-content:hover{box-shadow:0 0 35px rgba(0,0,0,.07)}@media only screen and (min-width:768px) and (max-width:1000px),(min-width:270px) and (max-width:448px){.event-carousel-type1-head .mec-event-date-carousel{font-size:25px;line-height:2.5;padding-right:70px;height:64px;width:120px}.event-carousel-type1-head .mec-event-date-carousel:after{left:7px}.event-carousel-type1-head .mec-event-date-info{font-size:10px;top:13px;left:55px}.event-carousel-type1-head .mec-event-date-info-year{font-size:10px;top:25px;left:55px}.event-carousel-type1-head .mec-event-date-carousel:after{top:48px}}.event-carousel-type2-head{background:#fff;border:1px solid #e6e6e6}.event-carousel-type2-head .mec-event-carousel-content-type2{margin-top:15px;min-height:182px}.event-carousel-type2-head .mec-event-carousel-content-type2 .mec-event-date-info{font-size:15px;color:#9a9a9a;font-weight:300}.event-carousel-type2-head .mec-event-carousel-content-type2 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-carousel-content-type2 .mec-event-carousel-title a{color:inherit}.mec-event-carousel-type2 .event-carousel-type2-head .mec-event-carousel-content-type2 p{font-size:16px;font-weight:300;color:#444}.event-carousel-type2-head .mec-event-footer-carousel-type2{margin-top:33px;position:relative}.mec-event-carousel-type2 .mec-event-footer-carousel-type2 .mec-event-sharing-wrap{left:0}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-event-sharing-wrap>li{border:none;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button{border:1px solid #e4e4e4;float:right;padding:7px 23px 7px;font-size:12px;text-transform:uppercase;color:#707070;font-weight:500;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button:hover{color:#fff}.mec-event-article .event-carousel-type2-head{padding:10%;margin-right:-1px}.mec-event-carousel-type2 .mec-owl-carousel .owl-wrapper-outer{border-right:1px solid #e6e6e6}.mec-wrap .mec-event-carousel-type2 .owl-next,.mec-wrap .mec-event-carousel-type2 .owl-prev,.mec-wrap .mec-event-carousel-type3 .owl-next,.mec-wrap .mec-event-carousel-type3 .owl-prev,.mec-wrap .mec-event-carousel-type4 .owl-next,.mec-wrap .mec-event-carousel-type4 .owl-prev{transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:47%;background-color:transparent!important}.mec-event-carousel-type2 .owl-next{right:-60px}.mec-event-carousel-type2 .owl-prev{left:-60px}.mec-event-carousel-type2 .owl-next i,.mec-event-carousel-type2 .owl-prev i,.mec-event-carousel-type3 .owl-next i,.mec-event-carousel-type3 .owl-prev i,.mec-event-carousel-type4 .owl-next i,.mec-event-carousel-type4 .owl-prev i{font-size:40px;color:#282828}.mec-event-carousel-type2 .owl-next i:hover,.mec-event-carousel-type2 .owl-prev i:hover,.mec-event-carousel-type3 .owl-next i:hover,.mec-event-carousel-type3 .owl-prev i:hover{color:#000;cursor:pointer}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}@media only screen and (min-width:320px) and (max-width:768px){.mec-event-carousel-type2 .owl-next,.mec-event-carousel-type2 .owl-prev,.mec-event-carousel-type3 .owl-next,.mec-event-carousel-type3 .owl-prev,.mec-event-carousel-type4 .owl-next,.mec-event-carousel-type4 .owl-prev{position:initial;top:100%}}.mec-event-carousel-type3 .mec-event-article{margin:0 10px}.event-carousel-type3-head .mec-event-image,.event-carousel-type3-head .mec-event-image img{width:100%;height:auto}.event-carousel-type3-head .mec-event-footer-carousel-type3{background:#fff;display:inline-block;width:calc(100% - 40px);margin-top:-74px;position:relative;margin-left:20px;margin-right:20px;margin-bottom:6px;padding:8% 11%;box-shadow:0 2px 10px -2px rgba(0,0,0,.2)}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button{border:1px solid #e4e4e4;text-transform:uppercase;float:right;padding:7px 23px 7px;font-size:12px;color:#707070;font-weight:500}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button:hover{color:#fff}.mec-event-footer-carousel-type3 span{font-size:15px;color:#9a9a9a;font-weight:300;display:block;margin-top:30px}.mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:29px;font-weight:700}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-footer-carousel-type3 .mec-event-carousel-title a{color:inherit}.event-carousel-type3-head .mec-event-footer-carousel-type3 p{font-size:16px;font-weight:300;color:#444!important;margin-bottom:36px}.mec-event-carousel-type3 .owl-next{right:-70px}.mec-event-carousel-type3 .owl-prev{left:-70px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap{left:11%}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}.event-carousel-type3-head .mec-end-date-label{display:inline;margin-left:2px}.event-carousel-type4-head.clearfix{position:relative;overflow:hidden;background:#fff}.event-carousel-type4-head .mec-event-overlay{position:absolute;left:0;right:0;bottom:0;top:0;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-hover-carousel-type4{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out;opacity:0;visibility:hidden}.mec-event-carousel-type4 .mec-event-article{margin:0 10px}.mec-event-carousel-type4 .mec-event-article:hover .mec-event-hover-carousel-type4{opacity:1;visibility:visible}.mec-event-hover-carousel-type4 .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-hover-carousel-type4 .mec-event-date{font-size:11px;text-transform:uppercase;font-weight:400;line-height:1.6}.mec-event-hover-carousel-type4 .mec-event-date span{display:block;font-weight:700;font-size:14px}.mec-event-hover-carousel-type4 .mec-event-title{color:#fff;margin:20px 0 38px;font-size:16px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-hover-carousel-type4 .mec-btn-wrapper{text-align:left}.mec-event-hover-carousel-type4 .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:10px 14px;letter-spacing:1.5px;font-size:11px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-hover-carousel-type4 .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-carousel-type4 .owl-next{right:-70px}.mec-event-carousel-type4 .owl-prev{left:-70px}.mec-carousel-type4-head{margin-bottom:25px}.mec-carousel-type4-head-title{padding:0 11px;text-align:left;font-weight:700;font-size:20px;color:#000}.mec-carousel-type4-head-link{text-align:right;padding:0 11px}.mec-carousel-type4-head-link a{background:#222;color:#fff;padding:10px 38px;transition:all .3s ease}.mec-carousel-type4-head-link a:hover,.mec-carousel-type4-head-link a:visited{color:#fff}@media (max-width:960px){.mec-event-carousel-type4 .owl-stage{left:-50px}}.mec-wrap .mec-event-countdown-style1{color:#fff;padding:0!important;display:table;background:#437df9}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1{z-index:5;padding:50px 1% 50px 4%;display:table-cell;float:none;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2{background-color:rgba(0,0,0,.05);height:100%;padding-top:0;display:table-cell;float:none;position:relative;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{background-color:#f8f8f8;display:table-cell;float:none;text-align:center;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style1 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{content:"";position:absolute;display:inline-block;z-index:1;top:50%;margin-top:-11px;right:-24px;width:0;border-width:12px;border-style:solid;border-color:transparent transparent transparent #4077ed}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style1 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto}.mec-event-countdown-style1 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style1 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (min-width:1200px){.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%}}@media (max-width:960px){.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%;transform:rotate(90deg)}}@media (max-width:480px){.mec-event-countdown-style1 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{padding:10px 5px;min-width:50px;margin:3px 1px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:8px}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{display:inline}}.mec-wrap .mec-event-countdown-style2{color:#fff;padding:30px 0;background:#437df9;max-width:600px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part3{width:100%;float:none;vertical-align:middle;padding:50px 10% 50px 10%}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2{padding-top:12%;padding-bottom:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style2 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date-place{text-align:left;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 8px}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#222;background:#fff;transition:all .24s ease}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button:hover{background:#222;color:#fff}.mec-event-countdown-style2 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0}.mec-event-countdown-style2 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style2 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (max-width:767px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:80px;padding:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:26px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:11px}}@media only screen and (max-width:479px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:40px;padding:15px 10px;margin:2px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:20px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:9px}}@media (max-width:380px){.mec-event-countdown-style2 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{padding:10px 4px;margin:4px 1px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:7px}}.mec-wrap .mec-event-countdown-style3{color:#fff;padding:0;background:#282828;display:table;width:100%}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1{width:68%;padding:50px 1% 50px 4%;vertical-align:middle;display:table-cell;position:relative}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:32%;display:table-cell;position:relative;padding-bottom:0;padding-top:0}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 img{width:100%;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{font-weight:300;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{color:#fff;font-size:36px;letter-spacing:-2px;font-weight:700;line-height:1;margin-top:-10px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style3 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style3 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto;position:absolute;top:40px;right:20px}.mec-event-countdown-style3 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style3 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:11px;color:#888;margin:8px 0 0;line-height:1}.mec-event-countdown-style3 .mec-event-date{width:176px;height:96px;background:#40d9f1;color:#fff;font-size:13px;position:absolute;left:-27px;top:146px}.mec-event-countdown-style3 .mec-event-date:after{content:"";position:absolute;display:inline-block;z-index:1;bottom:-18px;left:8px;width:0;border-width:19px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:50px;position:absolute;top:36px;left:12px;letter-spacing:-3px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:80px;top:26px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:80px;top:45px}.mec-event-countdown-style3 .mec-event-countdown-part-details{padding-top:35px;margin-bottom:50px;min-height:100px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-title{font-size:17px;color:#fff;line-height:1.4;padding-right:20px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link{color:#fff;font-size:12px;position:relative;padding-left:22px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link:before{content:"";display:inline-block;width:18px;border-top:1px solid #fff;position:absolute;left:0;top:8px}.mec-event-countdown-style3 .mec-event-title-link{position:absolute;left:190px;top:152px}.event-carousel-type1-head .mec-event-date-carousel:before,.mec-event-countdown-style3 .mec-event-date:before{content:'';position:absolute;left:0;bottom:0;z-index:2;width:100%;height:96px;background:0 0;display:inline-block;box-shadow:0 5px 5px rgba(0,0,0,.12)}@media only screen and (min-width:960px){.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown li{padding:10px}.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:31px}}@media (max-width:959px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:100%;display:block}.mec-event-countdown-style3 .mec-event-title-link{top:190px}.mec-event-countdown-style3 .mec-event-countdown{top:96px}.mec-event-countdown-style3 .mec-event-date{left:0;top:190px}.mec-event-countdown-style3 .mec-event-date:after{display:none}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{display:inline}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:150px}}@media (max-width:767px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:26px;letter-spacing:-1px}.mec-event-countdown-style3 .mec-event-title-link{left:130px}.mec-event-countdown-style3 .mec-event-date{width:120px;font-size:10px;height:63px}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:36px;top:20px;left:4px;letter-spacing:-2px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:52px;top:12px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:52px;top:28px}}@media (max-width:380px){.mec-event-countdown-style3 .mec-event-title-link{left:10px;top:260px}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:300px}.mec-event-countdown-style3 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:10px 5px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:8px}}.mec-slider-t1-wrap{width:100%;padding:60px 90px;background:#f7f7f7;min-height:560px;position:relative}.mec-slider-t1{height:500px;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t1 .mec-event-article{position:relative;height:500px}.mec-slider-t1 .mec-slider-t1-img{position:relative;background-size:cover!important;background-position:center!important;width:50%;height:100%;float:right;margin:0;overflow:hidden}.mec-slider-t1 .mec-slider-t1-content{width:50%;float:left;height:100%;background:#fff;padding:6%}.mec-slider-t1-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t1-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:54px;height:54px;line-height:48px;border-radius:0;text-align:center;background:#fff;box-shadow:0 2px 11px 0 rgba(0,0,0,.045);transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-27px;cursor:pointer}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 29px 0 rgba(0,0,0,.095)}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:12px;color:#282828;transition:all .21s ease}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{font-size:13px;color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t1{margin:0 auto;max-width:900px}}@media only screen and (max-width:960px){.mec-slider-t1 .mec-slider-t1-content,.mec-slider-t1 .mec-slider-t1-img{width:100%;float:none}.mec-slider-t1 .mec-slider-t1-img{height:300px}.mec-slider-t1,.mec-slider-t1 .mec-event-article{height:auto}}@media only screen and (max-width:768px){.mec-slider-t1-wrap{padding:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:10px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}}@media only screen and (max-width:479px){.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t2-wrap{width:100%;padding:0;background:#fff;min-height:600px;position:relative}.mec-slider-t2 .mec-event-article{height:600px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t2 .mec-slider-t2-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:70%;height:100%;margin:0;overflow:hidden}.mec-slider-t2 .mec-slider-t2-content{width:50%;position:absolute;right:0;top:60px;bottom:60px;padding:5%}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern *{color:#fff}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-content,.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t2-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:84px;cursor:pointer}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}.mec-wrap.colorskin-custom .mec-slider-t2 .mec-event-article .mec-event-date.mec-color{color:#fff}@media only screen and (min-width:961px){.mec-slider-t2{margin:0 auto;max-width:1200px}}@media only screen and (max-width:960px){.mec-slider-t2 .mec-slider-t2-content,.mec-slider-t2 .mec-slider-t2-img{width:100%;float:none;position:static}.mec-slider-t2 .mec-slider-t2-img{height:300px}.mec-slider-t2 .mec-event-article{height:auto}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px}}@media only screen and (max-width:479px){.mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:22px}}.mec-slider-t3-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t3 .mec-event-article{height:700px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t3 .mec-slider-t3-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;opacity:.68;z-index:1}.mec-slider-t3 .mec-slider-t3-content{width:50%;height:auto;vertical-align:middle;display:table;position:absolute;left:0;top:0;bottom:0;padding:0 2% 0 7%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t3 .mec-slider-t3-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-content,.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-slider-t3-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t3-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{border-color:#40d9f1}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-22px;cursor:pointer}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next{right:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:50px;font-weight:300}.mec-slider-t3-content.mec-event-grid-modern .mec-event-description{font-size:19px}}@media only screen and (max-width:767px){.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}}@media only screen and (max-width:479px){.mec-slider-t3 .mec-slider-t3-content{width:100%}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t4-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t4 .mec-event-article{height:700px;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t4 .mec-slider-t4-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;z-index:1}.mec-slider-t4 .mec-slider-t4-content{width:auto;max-width:700px;background:rgba(37,37,37,.94)!important;height:auto;vertical-align:middle;display:table;position:absolute;left:8%;top:19%;padding:3%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t4 .mec-slider-t4-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-content,.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:13px;padding:0 42px;line-height:49px;height:50px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t4-content.mec-event-grid-modern .mec-slider-t4-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next{right:60px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{right:112px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:767px){.mec-slider-t4 .mec-slider-t4-content{width:100%;left:0;top:auto;bottom:0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t5-wrap{width:auto;max-width:570px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-slider-t5{height:auto;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t5 .mec-event-article{position:relative;height:auto}.mec-slider-t5 .mec-slider-t5-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:300px;float:none;margin:0;overflow:hidden}.mec-slider-t5 .mec-slider-t5-content{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-slider-t5 .mec-events-content p{margin-bottom:20px}.mec-slider-t5-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t5-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t5 .mec-slider-t5-col6{width:50%;float:left;height:100%}.mec-slider-t5 .mec-slider-t5-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-slider-t5 .mec-slider-t5-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-slider-t5 .mec-slider-t5-col6 address{font-size:12px;margin-bottom:0}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t5-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:768px){.mec-slider-t5 .mec-slider-t5-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-single-modern .mec-events-event-image{text-align:center}.mec-single-modern .mec-events-event-image img{width:100%}.mec-single-modern .mec-single-event-bar{background-color:#f7f7f7;margin:20px 0 0;padding:15px;display:table;width:100%}.mec-single-modern .mec-single-event-bar>div{display:table-cell}.mec-single-modern .mec-single-event-bar>div i{font-size:20px;vertical-align:middle}.mec-single-modern .mec-single-event-bar>div .mec-time-comment{font-size:12px;color:#999}.mec-single-modern .mec-single-event-bar>div h3{text-transform:uppercase;font-size:16px;font-weight:700;padding-bottom:5px;display:inline;color:#000;padding-left:10px}.mec-single-modern .mec-single-event-bar>div dd{font-size:14px;color:#8d8d8d;padding-left:34px;margin-bottom:0}.mec-single-modern .col-md-4 .mec-frontbox{margin-top:-50px;margin-bottom:70px;padding:20px;border:none;background:#f7f7f7;box-shadow:none}.mec-next-occurrence li{list-style:none}@media only screen and (min-width:960px){.mec-single-modern .col-md-4 .mec-frontbox{margin-left:20px}}@media only screen and (max-width:960px){.mec-single-modern .mec-single-event-bar>div{display:block}}.lity-content>div{overflow:auto}.mec-next-event-details li{list-style:none;margin-top:20px}.mec-next-event-details h6{text-transform:uppercase;font-size:13px;padding-bottom:5px;display:inline;color:#222;padding-left:0}.mec-next-event-details abbr{display:block;padding-left:12px;color:#8d8d8d}.mec-next-event-details i{margin-right:10px;margin-left:12px}.mec-next-event-details i:before{color:#40d9f1}.mec-next-event-details a{text-align:center;display:block;background:#fff;padding:6px 0;font-size:11px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;transition:.3s}.mec-single-modal.mec-single-modern .mec-single-title{text-align:center;padding:15px 10px 0}.admin-bar .mec-single-modal.mec-single-modern .mec-single-title{padding-top:40px}.mec-single-modal.mec-single-modern .mec-single-event-bar{padding:5px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div dd{font-size:13px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div h3{font-size:15px}@media only screen and (min-width:960px){.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-left:0}}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-top:10px;margin-bottom:10px}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox.mec-event-meta{padding:0}.mec-single-modal .mec-event-meta dd.mec-organizer-email a,.mec-single-modal .mec-event-meta dd.mec-organizer-url a{font-size:12px;display:block}.mec-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-single-modal .flip-clock-divider .flip-clock-label{position:absolute;top:60px}.mec-single-modal .flip-clock-divider:not(:first-child){width:48px!important}.mec-single-modal .flip-clock-divider.minutes .flip-clock-label{top:150px;left:-539px}.mec-single-modal .flip-clock-divider.seconds .flip-clock-label{top:87px}.mec-single-modal .flip-clock-wrapper{left:14%}.mec-single-modal .twodaydigits>ul:nth-child(11),.mec-single-modal .twodaydigits>ul:nth-child(12),.mec-single-modal .twodaydigits>ul:nth-child(8),.mec-single-modal .twodaydigits>ul:nth-child(9){margin-top:30px!important}.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{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}@media only screen and (max-width:959px){.mec-yearly-view-wrap .mec-yearly-calendar-sec{width:268px;padding:10px 5px}.mec-yearly-view-wrap .mec-yearly-agenda-sec{width:calc(100% - 268px);padding:0 0 0 10px}}@media only screen and (max-width:767px){.mec-yearly-view-wrap .mec-yearly-agenda-sec,.mec-yearly-view-wrap .mec-yearly-calendar-sec{width:100%;float:none}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar{width:auto}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar dl dt{width:14.2%}.mec-yearly-view-wrap .mec-yearly-title-sec h2{font-size:25px}}.mec-yearly-view-wrap .mec-agenda-event i,.mec-yearly-view-wrap .mec-agenda-time{display:none}@media only screen and (min-width:768px){.mec-yearly-view-wrap .mec-events-agenda-wrap{margin-top:0;border:none;padding-left:0;box-shadow:none}.mec-yearly-view-wrap .mec-agenda-date-wrap{width:174px;font-size:11px;padding-top:10px}.mec-yearly-view-wrap .mec-agenda-events-wrap{width:calc(100% - 174px);padding:10px}.mec-yearly-view-wrap .mec-agenda-event-title a{font-size:13px}.mec-yearly-view-wrap .mec-agenda-event-title span.event-color{width:8px;height:8px}.mec-yearly-view-wrap .mec-agenda-date-wrap span.mec-agenda-day{font-size:11px}.mec-yearly-view-wrap .mec-yearly-calendar-sec{box-shadow:-2px 0 5px rgba(0,0,0,.03) inset}}@media only screen and (max-width:1200px){.mec-yearly-view-wrap .mec-agenda-event-title a{font-size:12px;padding-right:6px}}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table{padding-bottom:10px;border-bottom:none}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt:hover{cursor:pointer}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-has-no-event,.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-has-no-event:hover{color:#bbb;cursor:default}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-day-active{background:#40d9f1;color:#fff;position:relative}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-day-active:after{content:'';position:absolute;display:block;bottom:-20px;left:50%;margin-left:-10px;width:0;border-width:10px;border-style:solid;border-color:#40d9f1 transparent transparent transparent}.mec-timetable-events-list{padding:10px 20px;border:none;margin:0}.mec-timetable-events-list .mec-timetable-event{padding:10px 0;border-bottom:1px dashed #ddd}.mec-timetable-events-list .mec-timetable-event:last-child{border:none}.mec-timetable-event .mec-timetable-event-span{font-size:12px;color:#444;padding-right:30px;line-height:22px}.mec-timetable-events-list .mec-timetable-event i{font-size:13px;color:#aaa;margin-right:3px;vertical-align:baseline}.mec-timetable-event .mec-timetable-event-span a{color:#333}.mec-timetable-event .mec-timetable-event-time{font-size:11px}.mec-timetable-event .mec-timetable-event-time i{vertical-align:text-bottom}.mec-timetable-event .mec-timetable-event-title{font-size:13px}.mec-timetable-event .mec-timetable-event-title .event-color{width:10px;height:10px}.mec-timetable-events-list .mec-timetable-event.mec-util-hidden{display:none}.mec-timetable-events-list.mec-util-hidden{display:none}@media only screen and (min-width:768px){.mec-timetable-events-list{display:table;width:100%;margin:10px 0 20px}.mec-timetable-events-list .mec-timetable-event{display:table-row;padding:0;border:none;background:#fff}.mec-timetable-events-list .mec-timetable-event:hover{background:#fafafa}.mec-timetable-event .mec-timetable-event-span{display:table-cell;padding:10px 15px;border-bottom:1px solid #ebebeb}.mec-timetable-events-list .mec-timetable-event:last-child .mec-timetable-event-span{border-bottom:none}}@media only screen and (max-width:767px){.mec-timetable-event .mec-timetable-event-title{display:block;width:100%;padding:5px 0 10px;font-weight:700}}.mec-timetable-t2-wrap{border:1px solid #e6e6e6;background:#fafafa;padding:0 15px 15px;overflow:hidden;box-shadow:0 3px 2px 0 rgba(0,0,0,.012)}.mec-timetable-t2-col{width:20%;float:left;min-height:20px;padding-right:1px;background:0 0}.mec-ttt2-title{background:#fafafa;color:#333;font-size:13px;font-weight:600;text-transform:uppercase;letter-spacing:1px;text-align:center;padding:25px 10px 10px;margin-bottom:1px}.mec-timetable-t2-col .mec-event-article{position:relative}.mec-timetable-t2-col .mec-event-article .event-color{position:absolute;width:auto;height:auto;left:0;right:0;top:0;bottom:0;margin:0;z-index:1;border-radius:2px}.mec-timetable-t2-content{position:relative;z-index:2;color:#fff;padding:15px 15px 20px;text-align:left;height:130px;margin-bottom:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title{line-height:22px;margin-bottom:13px;white-space:nowrap;padding-right:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title a{color:#fff;font-size:15px;font-weight:600;white-space:nowrap;overflow:hidden}.mec-timetable-t2-content div{color:#fff;font-size:11px;font-weight:400;line-height:19px;white-space:nowrap}.mec-timetable-t2-content div i{font-size:12px;margin-right:4px}@media only screen and (max-width:960px){.mec-timetable-t2-col{width:100%;float:none}}@media(min-width:961px){.mec-timetable-col-7{width:14.28%}.mec-timetable-col-6{width:16.6666%}}.mec-weather-box{padding:15px 0}.mec-weather-head{min-height:90px;padding:5px 0;clear:both;overflow:hidden;margin-bottom:25px;border-radius:10px;background:#238af5;position:relative}.mec-weather-icon-box{float:left;width:80px;height:80px;border-radius:10px;overflow:hidden;background:#238af5}.mec-weather-icon{width:80px;height:80px;display:inline-block;border-radius:10px}.mec-weather-summary{float:left;width:calc(100% - 80px);padding-left:10px;margin:10px 0;height:60px}.mec-weather-summary-report{font-size:15px;color:rgba(255,255,255,.68);margin-bottom:6px}.mec-weather-summary-temp{font-family:Roboto,Sans-serif;font-weight:300;color:#fff;font-size:29px;line-height:1}.degrees-mode{background:rgba(0,0,0,.2);cursor:pointer;font-weight:300;font-size:18px;padding:4px 5px;line-height:1;color:#fff;position:absolute;border-radius:8px;bottom:16px;left:16px}.mec-weather-extras{width:auto;padding:10px 15px 0 15px;float:right;min-height:80px;color:#fff;font-size:13px;line-height:1}.mec-weather-extras{width:auto;padding:10px 15px 0 15px;float:right;min-height:80px;color:#fff;font-size:13px;line-height:1}.mec-weather-extras div{line-height:20px;height:20px}.mec-weather-extras span{color:rgba(255,255,255,.68);font-size:12px;text-transform:uppercase}.mec-weather-extras var{font-size:11px;letter-spacing:.4px}.mec-weather-icon.clear-day,.mec-weather-icon.clear-night{background-image:url(../img/mec-weather-icon-01.png)}.mec-weather-icon.partly-sunny-day,.mec-weather-icon.partly-sunny-night{background-image:url(../img/mec-weather-icon-02.png)}.mec-weather-icon.partly-cloudy-day,.mec-weather-icon.partly-cloudy-night{background-image:url(../img/mec-weather-icon-03.png)}.mec-weather-icon.cloudy,.mec-weather-icon.fog,.mec-weather-icon.wind{background-image:url(../img/mec-weather-icon-04.png)}.mec-weather-icon.thunderstorm{background-image:url(../img/mec-weather-icon-05.png)}.mec-weather-icon.rain{background-image:url(../img/mec-weather-icon-06.png)}.mec-weather-icon.hail,.mec-weather-icon.sleet,.mec-weather-icon.snow{background-image:url(../img/mec-weather-icon-07.png)}.mec-av-spot-wrap{width:auto;max-width:1200px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-av-spot{height:auto;border:1px solid #eee;box-shadow:0 6px 12px -4px rgba(0,0,0,.05)}.mec-av-spot .mec-event-article{position:relative;height:auto}.mec-av-spot .mec-av-spot-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:330px;float:none;margin:0;overflow:hidden}.mec-av-spot .mec-av-spot-content,.mec-av-spot .mec-av-spot-head{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-av-spot .mec-av-spot-head{background:#222;color:#fff;min-height:80px}.mec-av-spot .mec-av-spot-head .mec-av-spot-box{padding-top:25px;font-size:13px;color:#ddd}.mec-av-spot .mec-av-spot-head .mec-av-spot-box span{color:#40d9f1;font-size:40px;font-weight:700;font-style:italic}.mec-av-spot .mec-av-spot-head .mec-event-countdown{text-align:center;padding-top:10px;display:table;table-layout:fixed;margin:0 auto;float:right}.mec-av-spot .mec-av-spot-head .mec-event-countdown li{display:table-cell;padding:10px 20px;position:relative;height:60px}.mec-av-spot .mec-av-spot-head .mec-event-countdown p{margin-bottom:0}.mec-av-spot .mec-events-content p{margin-bottom:20px}.mec-av-spot-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-av-spot-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-av-spot-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-av-spot .mec-av-spot-col6{width:50%;float:left;height:100%}.mec-av-spot .mec-av-spot-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-av-spot .mec-av-spot-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-av-spot .mec-av-spot-col6 address{font-size:12px;margin-bottom:0}.mec-av-spot-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-av-spot-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05)}@media only screen and (max-width:768px){.mec-av-spot .mec-av-spot-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-av-spot-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-events-masonry-wrap{display:block;width:auto}.mec-masonry-item-wrap{width:calc(33.33% - 30px);padding:0;margin:0 15px 30px;min-height:10px;position:relative}.isotope-item{z-index:2}.isotope-hidden.isotope-item{pointer-events:none;z-index:1}.isotope,.isotope .isotope-item{-webkit-transition-duration:.8s;-moz-transition-duration:.8s;transition-duration:.8s}.isotope{-webkit-transition-property:height,width;-moz-transition-property:height,width;transition-property:height,width}.isotope .isotope-item{-webkit-transition-property:-webkit-transform,opacity;-moz-transition-property:-moz-transform,opacity;transition-property:transform,opacity}.mec-events-masonry-cats{padding:10px;margin-bottom:25px;text-align:center;clear:both;list-style:none outside none}.mec-events-masonry-cats a{border-radius:2px;padding:6px 12px;font-size:13px;line-height:1.2;color:#333;font-weight:400;margin-top:0!important;text-align:center;display:inline-block;width:auto;border:2px solid transparent;transition:all .2s ease}.mec-events-masonry-cats a:hover{border-color:#40d9f1;color:#333}.mec-events-masonry-cats a.mec-masonry-cat-selected{border:2px solid #40d9f1;color:#40d9f1}.mec-masonry{background:#f7f7f7;height:auto;border:1px solid #eee;box-shadow:0 6px 12px -4px rgba(0,0,0,.05)}.mec-masonry .mec-event-article{position:relative;height:auto}.mec-masonry .mec-masonry-img{position:relative;width:100%;height:auto;float:none;margin:0;overflow:hidden}.mec-masonry .mec-masonry-img img{width:100%}.mec-masonry .mec-masonry-content,.mec-masonry .mec-masonry-head{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-masonry .mec-events-content p{margin-bottom:20px}.mec-masonry-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-masonry-item-wrap .mec-event-grid-modern .event-grid-modern-head{min-height:79px;margin-bottom:10px;padding:14px 5%;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-masonry-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-masonry-content.mec-event-grid-modern .mec-event-content{padding-top:20px}.mec-masonry-content.mec-event-grid-modern .mec-event-footer{height:auto}.mec-masonry .mec-masonry-col6 .mec-event-date{font-size:34px;letter-spacing:-2px}.mec-masonry .mec-masonry-col6{width:50%;float:left;height:100%}.mec-masonry .mec-masonry-col6 i{font-size:24px;float:left;margin-right:7px;height:50px}.mec-masonry .mec-masonry-col6 .mec-event-month,.mec-masonry .mec-masonry-col6 h6{text-transform:capitalize;font-size:15px;padding:4px 0;display:inline;color:#444}.mec-masonry .mec-masonry-col6 .mec-event-detail,.mec-masonry .mec-masonry-col6 address{font-size:11px;margin-bottom:0}.mec-masonry-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-masonry-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05)}@media only screen and (max-width:960px){.mec-masonry-item-wrap{width:calc(50% - 30px)}}@media only screen and (max-width:768px){.mec-masonry .mec-masonry-col6{width:100%;margin:10px 0}.mec-masonry-item-wrap{width:calc(100% - 30px)}}@media only screen and (max-width:479px){.mec-masonry-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.btn-wrapper{text-align:center}.countdown-wrapper .btn-wrapper{padding-top:10px;padding-right:0}.countdown-wrapper h5.countdown-message{letter-spacing:5px;font-weight:500;font-size:18px}.blox.dar .countdown-wrapper p,.countdown-wrapper p{color:#888}.countdown-wrapper a.button.black{float:right;margin-right:0}.mec-wrap .threedaydigits .days .flip-clock-label{right:-100px}@media only screen and (min-width:320px) and (max-width:767px){.mec-wrap .flip-clock-wrapper ul{width:29px!important}.mec-wrap .flip-clock-wrapper ul li a div div.inn{font-size:25px!important}.mec-wrap .flip-clock-divider .flip-clock-label{left:0;font-weight:300}.mec-wrap span.flip-clock-divider{width:12px}}@media only screen and (min-width:320px) and (max-width:480px){.mec-wrap .flip-clock-wrapper ul{width:29px!important}.mec-wrap .flip-clock-wrapper ul li a div div.inn{font-size:25px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}.mec-wrap span.flip-clock-divider:first-child{width:0}.mec-wrap span.flip-clock-divider{width:20px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 18%}}@media screen and (min-width:960px) and (max-width:1200px){.mec-wrap .threedaydigits ul{height:50px;width:47px}}@media screen and (min-width:480px) and (max-width:768px){.mec-wrap .threedaydigits ul{height:48px;width:26px!important}.mec-wrap .threedaydigits .flip-clock-label{font-size:8px;left:-8px}}@media screen and (min-width:320px) and (max-width:480px){.mec-wrap .threedaydigits ul{height:48px;width:22px!important}}.mec-wrap .flip-clock-wrapper *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;-o-box-sizing:border-box;box-sizing:border-box;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden}.mec-wrap .flip-clock-wrapper a{cursor:pointer;text-decoration:none;color:#ccc}.mec-wrap .flip-clock-wrapper a:hover{color:#fff}.mec-wrap .flip-clock-wrapper ul{list-style:none}.flip-clock-wrapper.clearfix:after,.mec-wrap .flip-clock-wrapper.clearfix:before{content:" ";display:table}.mec-wrap .flip-clock-wrapper.clearfix:after{clear:both}.mec-wrap .flip-clock-wrapper{font:normal 11px "helvetica neue",helvetica,sans-serif;-webkit-user-select:none}.mec-wrap .flip-clock-meridium{background:0 0!important;box-shadow:0 0 0!important;font-size:36px!important}.mec-wrap .flip-clock-meridium a{color:#313333}.mec-wrap .flip-clock-wrapper{text-align:center;position:relative;display:inline-block;padding-bottom:10px}.flip-clock-wrapper:after,.mec-wrap .flip-clock-wrapper:before{content:" ";display:table}.mec-wrap .flip-clock-wrapper:after{clear:both}.mec-wrap .flip-clock-wrapper ul{position:relative;float:left;margin:2px;width:50px;height:50px;font-size:80px;font-weight:700;line-height:87px;border-radius:3px;background:rgba(0,0,0,.21)}.mec-wrap .flip-clock-wrapper ul li{z-index:1;position:absolute;left:0;top:0;width:100%;height:100%;line-height:54px;text-decoration:none!important}.mec-wrap .flip-clock-wrapper ul li:first-child{z-index:2}.mec-wrap .flip-clock-wrapper ul li a{display:block;height:100%;-webkit-perspective:200px;-moz-perspective:200px;perspective:200px;margin:0!important;overflow:visible!important;cursor:default!important}.mec-wrap .flip-clock-wrapper ul li a div{z-index:1;position:absolute;left:0;width:100%;height:50%;font-size:80px;overflow:hidden;outline:1px solid transparent}.mec-wrap .flip-clock-wrapper ul li a div .shadow{position:absolute;width:100%;height:100%;z-index:2}.mec-wrap .flip-clock-wrapper ul li a div.up{-webkit-transform-origin:50% 100%;-moz-transform-origin:50% 100%;-ms-transform-origin:50% 100%;-o-transform-origin:50% 100%;transform-origin:50% 100%;top:0}.mec-wrap .flip-clock-wrapper ul li a div.up:after{content:"";position:absolute;top:24px;left:0;z-index:5;width:100%;height:3px;background-color:rgba(0,0,0,.12)}.mec-wrap .flip-clock-wrapper ul li a div.down{-webkit-transform-origin:50% 0;-moz-transform-origin:50% 0;-ms-transform-origin:50% 0;-o-transform-origin:50% 0;transform-origin:50% 0;bottom:0;border-bottom-left-radius:3px;border-bottom-right-radius:3px}.mec-wrap .flip-clock-wrapper ul li a div div.inn{position:absolute;left:0;z-index:1;width:100%;height:200%;color:#fff;text-shadow:0 0 2px rgba(0,0,0,.25);text-align:center;background-color:#40d9f1;border-radius:3px;font-size:48px}.mec-wrap .flip-clock-wrapper ul li a div.up div.inn{top:0}.mec-wrap .flip-clock-wrapper ul li a div.down div.inn{bottom:0}.mec-wrap .flip-clock-wrapper ul.play li.flip-clock-before{z-index:3}.mec-wrap .flip-clock-wrapper .flip{box-shadow:0 2px 5px rgba(0,0,0,.17)}.mec-wrap .flip-clock-wrapper ul.play li.flip-clock-active{-webkit-animation:asd .5s .5s linear both;-moz-animation:asd .5s .5s linear both;animation:asd .5s .5s linear both;z-index:5}.mec-wrap .flip-clock-divider{float:left;display:inline-block;position:relative;width:18px;height:62px}.mec-wrap .flip-clock-divider:first-child{width:0}.mec-wrap .flip-clock-dot{display:none;background:#323434;width:10px;height:10px;position:absolute;border-radius:50%;box-shadow:0 0 5px rgba(0,0,0,.5);left:5px}.mec-wrap .flip-clock-divider .flip-clock-label{position:absolute;bottom:-1.5em;right:-71px;color:#101010;font-weight:700;text-shadow:none;text-transform:uppercase}.mec-wrap .blox.dark .flip-clock-divider .flip-clock-label{color:#8a8a8a}.mec-wrap .flip-clock-divider.seconds .flip-clock-label{right:-82px}.mec-wrap .flip-clock-dot.top{top:30px}.mec-wrap .flip-clock-dot.bottom{bottom:30px}@-webkit-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@-moz-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@-o-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}.flip-clock-wrapper ul.play li.flip-clock-active .down{z-index:2;-webkit-animation:turn .5s .5s linear both;-moz-animation:turn .5s .5s linear both;animation:turn .5s .5s linear both}@-webkit-keyframes turn{0%{-webkit-transform:rotatex(90deg)}100%{-webkit-transform:rotatex(0)}}@-moz-keyframes turn{0%{-moz-transform:rotatex(90deg)}100%{-moz-transform:rotatex(0)}}@-o-keyframes turn{0%{-o-transform:rotatex(90deg)}100%{-o-transform:rotatex(0)}}@keyframes turn{0%{transform:rotatex(90deg)}100%{transform:rotatex(0)}}.flip-clock-wrapper ul.play li.flip-clock-before .up{z-index:2;-webkit-animation:turn2 .5s linear both;-moz-animation:turn2 .5s linear both;animation:turn2 .5s linear both}@-webkit-keyframes turn2{0%{-webkit-transform:rotatex(0)}100%{-webkit-transform:rotatex(-90deg)}}@-moz-keyframes turn2{0%{-moz-transform:rotatex(0)}100%{-moz-transform:rotatex(-90deg)}}@-o-keyframes turn2{0%{-o-transform:rotatex(0)}100%{-o-transform:rotatex(-90deg)}}@keyframes turn2{0%{transform:rotatex(0)}100%{transform:rotatex(-90deg)}}.flip-clock-wrapper ul li.flip-clock-active{z-index:3}.flip-clock-wrapper ul.play li.flip-clock-before .up .shadow{background:-moz-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.1)),color-stop(100%,rgba(64,64,64,.68)));background:linear,top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;background:-o-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-ms-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:linear,to bottom,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;-webkit-animation:show .5s linear both;-moz-animation:show .5s linear both;animation:show .5s linear both}.flip-clock-wrapper ul.play li.flip-clock-active .up .shadow{background:-moz-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.1)),color-stop(100%,rgba(64,64,64,.68)));background:linear,top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;background:-o-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-ms-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:linear,to bottom,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;-webkit-animation:hide .5s .3s linear both;-moz-animation:hide .5s .3s linear both;animation:hide .5s .3s linear both}.flip-clock-wrapper ul.play li.flip-clock-before .down .shadow{background:-moz-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(64,64,64,.68)),color-stop(100%,rgba(0,0,0,.1)));background:linear,top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;background:-o-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-ms-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:linear,to bottom,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;-webkit-animation:show .5s linear both;-moz-animation:show .5s linear both;animation:show .5s linear both}.flip-clock-wrapper ul.play li.flip-clock-active .down .shadow{background:-moz-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(64,64,64,.68)),color-stop(100%,rgba(0,0,0,.1)));background:linear,top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;background:-o-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-ms-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:linear,to bottom,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;-webkit-animation:hide .5s .3s linear both;-moz-animation:hide .5s .3s linear both;animation:hide .5s .2s linear both}@-webkit-keyframes show{0%{opacity:0}100%{opacity:1}}@-moz-keyframes show{0%{opacity:0}100%{opacity:1}}@-o-keyframes show{0%{opacity:0}100%{opacity:1}}@keyframes show{0%{opacity:0}100%{opacity:1}}@-webkit-keyframes hide{0%{opacity:1}100%{opacity:0}}@-moz-keyframes hide{0%{opacity:1}100%{opacity:0}}@-o-keyframes hide{0%{opacity:1}100%{opacity:0}}@keyframes hide{0%{opacity:1}100%{opacity:0}}@font-face{font-family:simple-line-icons;src:url(../fonts/Simple-Line-Icons.eot?v=2.3.1);src:url(../fonts/Simple-Line-Icons.eot?v=2.3.1#iefix) format('embedded-opentype'),url(../fonts/Simple-Line-Icons.woff2?v=2.3.1) format('woff2'),url(../fonts/Simple-Line-Icons.woff?v=2.3.1) format('woff'),url(../fonts/Simple-Line-Icons.ttf?v=2.3.1) format('truetype'),url(../fonts/Simple-Line-Icons.svg?v=2.3.1#simple-line-icons) format('svg');font-weight:400;font-style:normal}[class*=mec-sl-]{font-family:simple-line-icons;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.mec-sl-facebook:before{content:"\e00b"}.mec-sl-twitter:before{content:"\e009"}.mec-sl-google-plus:before{content:"\e60d"}.mec-sl-angle-left:before{content:"\e605"}.mec-sl-angle-right:before{content:"\e606"}.mec-sl-calendar:before{content:"\e075"}.mec-sl-clock-o:before{content:"\e081"}.mec-sl-home:before{content:"\e069"}.mec-sl-phone:before{content:"\e600"}.mec-sl-envelope:before{content:"\e086"}.mec-sl-sitemap:before{content:"\e037"}.mec-sl-map-marker:before{content:"\e096"}.mec-sl-floder:before{content:"\e089"}.mec-sl-wallet:before{content:"\e02a"}.mec-color,.mec-color-before :before,.mec-color-hover:hover,.mec-wrap .mec-color,.mec-wrap .mec-color-before :before,.mec-wrap .mec-color-hover:hover{color:#40d9f1}.mec-bg-color,.mec-bg-color-hover:hover,.mec-wrap .mec-bg-color,.mec-wrap .mec-bg-color-hover:hover{background-color:#40d9f1}.mec-border-color,.mec-border-color-hover:hover,.mec-wrap .mec-border-color,.mec-wrap .mec-border-color-hover:hover{border-color:#40d9f1}.mec-toggle-month-divider.mec-skin-list-events-container{border:1px solid #e8e8e8;margin-bottom:30px;background:#f8f8f8;box-shadow:0 2px 18px -1px rgba(0,0,0,.1);border-radius:2px}.mec-toggle-month-divider .mec-month-divider{margin:0;text-align:left;background:#fff;position:relative;cursor:pointer;border-top:1px solid #e8e8e8}.mec-toggle-month-divider .mec-month-divider span{padding:20px;border-bottom:1px solid #e8e8e8}.mec-toggle-month-divider .mec-month-divider i{position:absolute;right:20px;top:24px;font-size:20px;cursor:pointer}.mec-toggle-month-divider .mec-month-divider span:before{display:none}.mec-toggle-month-divider .mec-month-divider+article{margin-top:20px}.mec-toggle-month-divider .mec-wrap .mec-month-divider:first-of-type{border-top:none}.mec-toggle-month-divider .mec-event-list-accordion .mec-month-divider:not(:first-of-type)~article{display:none}.mec-skin-list-events-container:not(.mec-toggle-month-divider) .mec-month-divider i{display:none}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-month{display:inline-block;padding-top:0}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-date{font-size:14px;line-height:14px;float:none;display:inline-block;margin-right:0;font-weight:700}.mec-events-toggle .mec-toogle-inner-month-divider.mec-toggle-item-inner{padding:20px 60px 30px 15px}.mec-toogle-inner-month-divider .mec-toggle-month-inner-image{float:left;clear:right;width:100px;margin-right:20px;margin-left:10px}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-detail{margin-top:-6px}.mec-toogle-inner-month-divider .mec-toggle-item-col{float:none;width:100%;margin-top:10px;display:block;border:none}.mec-events-toggle .mec-toogle-inner-month-divider .mec-toggle-title{font-size:19px;display:block;padding-top:10px}@media only screen and (max-width:768px){.mec-events-toggle .mec-toogle-inner-month-divider .mec-toggle-title{font-size:14px;padding-top:0}.mec-toogle-inner-month-divider .mec-toggle-item-col{margin-top:0}.mec-toogle-inner-month-divider .mec-toggle-month-inner-image{width:70px}}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled:before,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-featured:before{z-index:1;position:absolute;top:25px;right:-37px;font-size:11px;letter-spacing:1px;text-transform:uppercase;background:#04de78;padding:2px 40px;color:#fff;-ms-transform:rotate(45deg);-webkit-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:.5s cubic-bezier(.25,.5,.06,.85);transition:.5s cubic-bezier(.25,.5,.06,.85);content:attr(data-style)}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-featured{overflow:hidden;position:relative}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled:before{background:#de0404}.mec-daily-view-date-events article:before,ul.mec-weekly-view-dates-events article:before{padding:7px 40px!important;top:27px!important}.mec-event-grid-classic article .mec-fc-style,.mec-event-grid-minimal article .mec-fc-style,.mec-event-grid-simple article .mec-fc-style,.mec-timetable-wrap article .mec-fc-style,.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article.mec-event-cover-modern .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{font-size:9px;letter-spacing:.5px;text-transform:uppercase;background:#04de78;padding:2px 7px;color:#fff;position:relative;margin-left:5px;border-radius:2px}.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-modern.mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-minimal article .mec-fc-style:before,.mec-event-grid-simple article .mec-fc-style:before,.mec-timetable-wrap article .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article .mec-fc-style:before,.mec-wrap .mec-event-list-modern article .mec-fc-style:before,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style:before{width:0;height:0;border-top:4px solid transparent!important;border-right:5px solid;border-bottom:4px solid transparent;margin:0;top:50%;left:-4px;transform:translateY(-4.5px);position:absolute;content:'';color:#04de78}.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-event-grid-classic article.mec-label-canceled:before,.mec-event-grid-classic article.mec-label-featured:before,.mec-event-grid-minimal article.mec-label-canceled:before,.mec-event-grid-minimal article.mec-label-featured:before,.mec-event-grid-simple article.mec-label-canceled:before,.mec-event-grid-simple article.mec-label-featured:before,.mec-timetable-wrap article.mec-label-canceled:before,.mec-timetable-wrap article.mec-label-featured:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled:before,.mec-wrap .mec-event-list-accordion article.mec-label-featured:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled:before,.mec-wrap .mec-event-list-modern article.mec-label-featured:before{display:none}.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{top:-3px;font-size:11px;margin-left:10px}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style:before,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-canceled:before,.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-featured:before{-ms-transform:none;-webkit-transform:none;transform:none;-webkit-transition:none;transition:none;top:271px;right:0}.mec-timetable-wrap article .mec-fc-style{top:-2px;font-size:10px}.mec-wrap article.mec-event-cover-modern .mec-fc-style{padding:5px 9px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:24px;display:inline-block;border-radius:2px}.mec-skin-grid-events-container .mec-wrap .mec-event-grid-clean .mec-event-article:before{-ms-transform:none;-webkit-transform:none;transform:none!important;-webkit-transition:none;transition:none;top:22px!important;right:22px!important;padding:0 10px!important}.mec-event-grid-minimal article .mec-fc-style,.mec-event-grid-simple article .mec-fc-style{top:-4px;font-size:10px;margin-left:10px}.mec-event-grid-classic article .mec-fc-style{padding:5px 20px;font-size:12px;margin-top:8px;display:inline-block}.mec-hourly-schedule-speaker-info{background:#fff;padding:30px;border:1px solid #e6e6e6;max-width:740px;width:740px;margin-left:-110px}.mec-hourly-schedule-speaker-thumbnail{float:left;max-width:30%;width:30%}.mec-hourly-schedule-speaker-name{font-weight:700;font-size:26px;line-height:1.2;color:#333;text-transform:uppercase}.mec-hourly-schedule-speaker-details{float:left;width:69%;padding-left:25px}.mec-hourly-schedule-speaker-job-title{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-hourly-schedule-speaker-description{font-size:14px;font-weight:400;color:#6d7683;line-height:1.7;text-align:left}.mec-hourly-schedule-speaker-contact-information a i{color:#6b6b6b;background:#ebebeb;line-height:29px;margin:9px 7px 9px 0;width:30px;height:30px;display:inline-block;text-align:center;transition:all .2s ease;font-size:15px;cursor:pointer}.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}.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:4%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:37%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:24%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:15%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:10%}.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-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:750px;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}.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}}.mec-woo-booking-checkout{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;border-radius:0;margin-bottom:6px;min-width:170px;margin-top:5px;text-align:center}.mec-woo-booking-checkout:hover{background:#222;color:#fff}.mec-woo-booking-checkout:focus,.mec-woo-booking-checkout:visited{color:#fff}.single-mec-events .lity-container{max-width:480px;width:480px}.lity-content .mec-events-meta-group-booking{width:100%;padding:20px 50px;background:#fff}.lity-content .mec-events-meta-group-booking .mec-booking form>h4{text-transform:uppercase;font-size:15px;font-weight:700;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative;text-align:center;line-height:1.2;margin-bottom:10px}.lity-content .mec-events-meta-group-booking .mec-booking form>h4:before{padding:1px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-35px;left:50%}.lity-content .mec-events-meta-group-booking .mec-event-ticket-available,.lity-content .mec-events-meta-group-booking .mec-event-ticket-name,.lity-content .mec-events-meta-group-booking .mec-event-ticket-price,.lity-content .mec-events-meta-group-booking .mec-ticket-variation-name,.lity-content .mec-events-meta-group-booking .mec-ticket-variation-price,.lity-content .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;clear:none;padding:5px 1em 3px 0;display:inline-block}.lity-content .mec-events-meta-group-booking .mec-event-ticket-available{margin-bottom:12px}.lity-content .mec-events-meta-group-booking select{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both;font-family:Montserrat,Helvetica,Arial,sans-serif}.lity-content .mec-events-meta-group-booking input[type=email]{color:#888;border:1px solid #e1e1e1;font-size:14px;display:block;width:100%;outline:0}.lity-content .mec-events-meta-group-booking input{margin-bottom:10px!important}.lity-content .mec-book-ticket-variation h5{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:0;clear:none;padding:5px 1em 3px 0;display:inline-block;text-transform:capitalize;font-family:Montserrat,Helvetica,Arial,sans-serif}.lity-content ul.mec-book-tickets-container{padding:0}.lity-content .mec-events-meta-group-booking input[type=email],.lity-content .mec-events-meta-group-booking input[type=number],.lity-content .mec-events-meta-group-booking input[type=text]{outline:0;font-family:Montserrat,Helvetica,Arial,sans-serif;display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both;margin-bottom:2px!important}.lity-content button[type=submit]{position:relative;border:none;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;min-width:170px;margin-top:5px;border-radius:0;margin-bottom:6px}.lity-content button[type=submit]:hover{background:#222}.lity-content .mec-book-tickets-container li{list-style:none}.lity-content .mec-events-meta-group-booking #mec_book_payment_form h4,.lity-content .mec-events-meta-group-booking li h4{font-size:19px;font-weight:700}.lity-content .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li{width:50%}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li:nth-child(even){border:none}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li span{display:block}.lity-content .mec-events-meta-group-booking button[type=submit]:after{display:none;font-family:simple-line-icons;content:"\e098";margin-left:4px;-webkit-animation:rotating 1.2s linear infinite;-moz-animation:rotating 1.2s linear infinite;-ms-animation:rotating 1.2s linear infinite;-o-animation:rotating 1.2s linear infinite;animation:rotating 1.2s linear infinite}.lity-content .mec-events-meta-group-booking button[type=submit].loading:after{display:inline-block}@media only screen and (max-width:480px){.lity-content .mec-events-meta-group-booking{padding:20px;width:340px;margin:0 auto}}.mec-events-meta-group-booking{position:relative}.mec-cover-loader:after{content:'';position:absolute;top:0;right:0;left:0;bottom:0;background:rgba(255,255,255,.5);z-index:99999}.mec-loader{background:rgba(0,0,0,0);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);z-index:9}.mec-loader,.mec-loader:after{border-radius:50%;width:5em;height:5em;z-index:999999999999}.mec-loader{font-size:10px;text-indent:-9999em;border-top:.5em solid rgba(0,0,0,.2);border-right:.5em solid rgba(0,0,0,.2);border-bottom:.5em solid rgba(0,0,0,.2);border-left:.5em solid #fff;-webkit-transform:translateZ(0);-ms-transform:translateZ(0);transform:translateZ(0);-webkit-animation:mecloader 1.1s infinite linear;animation:mecloader 1.1s infinite linear}@-webkit-keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.mec-google-recaptcha{margin:0 0 20px 16px}.mec-wrap *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap :after,.mec-wrap :before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap .clearfix:after,.mec-wrap .clearfix:before{content:'\0020';display:block;overflow:hidden;visibility:hidden;width:0;height:0}.mec-wrap .clearfix:after{clear:both}.mec-wrap .clearfix{zoom:1}.mec-wrap .clear,.mec-wrap .clr{clear:both;display:block;overflow:hidden;visibility:hidden}.mec-wrap .clr{visibility:visible;overflow:visible}.mec-container [class*=col-] img{max-width:100%}.mec-container{margin-right:auto;margin-left:auto;padding-left:10px;padding-right:10px}.mec-container:after,.mec-container:before{content:" ";display:table}.mec-container:after{clear:both}@media only screen and (max-width:479px){.mec-container{width:300px}}@media only screen and (min-width:480px) and (max-width:767px){.mec-container{width:420px}}@media only screen and (min-width:768px) and (max-width:960px){.mec-container{width:768px}}@media only screen and (min-width:961px){.mec-container{width:960px}}@media only screen and (min-width:1200px){.mec-container{width:1196px;padding-left:15px;padding-right:15px}}@media only screen and (min-width:1921px){.mec-container{max-width:1690px}}.mec-wrap .row{margin-left:-10px;margin-right:-10px}.mec-wrap .row:after,.mec-wrap .row:before{content:" ";display:table}.mec-wrap .row:after{clear:both}.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{position:relative;min-height:1px;padding-left:10px;padding-right:10px}@media only screen and (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{padding-left:15px;padding-right:15px}.mec-wrap .row{margin-left:-15px;margin-right:-15px}}.mec-container [class*=col-].alpha{padding-left:0}.mec-container [class*=col-].omega{padding-right:0}.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{float:left}.mec-wrap .col-xs-12{width:100%}.mec-wrap .col-xs-11{width:91.66666666666666%}.mec-wrap .col-xs-10{width:83.33333333333334%}.mec-wrap .col-xs-9{width:75%}.mec-wrap .col-xs-8{width:66.66666666666666%}.mec-wrap .col-xs-7{width:58.333333333333336%}.mec-wrap .col-xs-6{width:50%}.mec-wrap .col-xs-5{width:41.66666666666667%}.mec-wrap .col-xs-4{width:33.33333333333333%}.mec-wrap .col-xs-3{width:25%}.mec-wrap .col-xs-2{width:16.666666666666664%}.mec-wrap .col-xs-1{width:8.333333333333332%}@media (min-width:768px){.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9{float:left}.mec-wrap .col-sm-12{width:100%}.mec-wrap .col-sm-11{width:91.66666666666666%}.mec-wrap .col-sm-10{width:83.33333333333334%}.mec-wrap .col-sm-9{width:75%}.mec-wrap .col-sm-8{width:66.66666666666666%}.mec-wrap .col-sm-7{width:58.333333333333336%}.mec-wrap .col-sm-6{width:50%}.mec-wrap .col-sm-5{width:41.66666666666667%}.mec-wrap .col-sm-4{width:33.33333333333333%}.mec-wrap .col-sm-3{width:25%}.mec-wrap .col-sm-2{width:16.666666666666664%}.mec-wrap .col-sm-1{width:8.333333333333332%}}@media (min-width:961px){.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9{float:left}.mec-wrap .col-md-12{width:100%}.mec-wrap .col-md-11{width:91.66666666666666%}.mec-wrap .col-md-10{width:83.33333333333334%}.mec-wrap .col-md-9{width:75%}.mec-wrap .col-md-8{width:66.66666666666666%}.mec-wrap .col-md-7{width:58.333333333333336%}.mec-wrap .col-md-6{width:50%}.mec-wrap .col-md-5{width:41.66666666666667%}.mec-wrap .col-md-4{width:33.33333333333333%}.mec-wrap .col-md-3{width:25%}.mec-wrap .col-md-2{width:16.666666666666664%}.mec-wrap .col-md-1{width:8.333333333333332%}}@media (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9{float:left}.mec-wrap .col-lg-12{width:100%}.mec-wrap .col-lg-11{width:91.66666666666666%}.mec-wrap .col-lg-10{width:83.33333333333334%}.mec-wrap .col-lg-9{width:75%}.mec-wrap .col-lg-8{width:66.66666666666666%}.mec-wrap .col-lg-7{width:58.333333333333336%}.mec-wrap .col-lg-6{width:50%}.mec-wrap .col-lg-5{width:41.66666666666667%}.mec-wrap .col-lg-4{width:33.33333333333333%}.mec-wrap .col-lg-3{width:25%}.mec-wrap .col-lg-2{width:16.666666666666664%}.mec-wrap .col-lg-1{width:8.333333333333332%}}#mec_woo_add_to_cart_btn{min-width:170px;margin-top:5px;text-align:center}.mec-breadcrumbs{border-radius:2px;padding:9px 15px 6px;font-size:11px;color:#8d8d8d;letter-spacing:0;text-transform:none;font-weight:500;margin:auto 15px 33px 15px;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.025)}.mec-breadcrumbs-modern{margin:auto 0 33px 0}.mec-breadcrumbs a{color:#000;padding-left:4px}.mec-breadcrumbs a:hover{text-decoration:underline}.mec-breadcrumbs i{font-size:8px;margin:0 0 0 4px}.mec-breadcrumbs .container{padding-left:20px}.mec-content-notification a{margin-left:5px}.mec-content-notification{background:#f7f7f7;padding:10px 10px 10px;border:1px solid #e8e8e8}.mec-content-notification p{margin-bottom:0}.mec-fes-form #mec-advanced-wraper div:first-child>ul{border:1px solid #cfeff5;width:auto;box-shadow:0 1px 4px -2px #cfeff5;display:block;margin:5px 0 10px;padding:5px 0;border-radius:2px}.mec-fes-form #mec-advanced-wraper div:first-child>ul:last-of-type{margin-bottom:35px}#mec-advanced-wraper div:first-child>ul span{display:none}#mec-advanced-wraper div:first-child>ul *{display:inline-block;background:#fff;font-size:12px;color:#717273;text-align:center}#mec-advanced-wraper div:first-child>ul>li{width:60px;font-weight:700;margin:0 10px 0 0;padding:4px 0;border-right:1px solid #cfeff5}#mec-advanced-wraper div:first-child>ul>ul>li{margin:0;padding:2px 10px;cursor:pointer;border-radius:2px;transition:all .18s ease}.mec-fes-form #mec-advanced-wraper div:first-child>ul>ul>li.mec-active,.mec-fes-form #mec-advanced-wraper div:first-child>ul>ul>li:hover{background:#40d9f1!important;box-shadow:0 1px 9px -3px #40d9f1;color:#fff!important}.mec-search-bar-wrap .mec-search-form .mec-text-input-search{width:83%}.mec-search-bar-wrap .mec-search-form .mec-ajax-search-result .mec-text-input-search{width:100%;float:none}.mec-search-bar-wrap input#mec-search-bar-input{width:calc(100% - 84%);margin-left:11px;background:#40d9f1;Color:#fff;font-weight:400}.mec-text-input-search+input#mec-search-bar-input{margin-left:-3px}.mec-search-bar-wrap input#mec-search-bar-input:hover{background:#000}.mec-wrap.mec-search-bar-wrap .mec-totalcal-box input{float:none}@media(max-width:768px){.mec-search-bar-wrap .mec-search-form .mec-text-input-search{display:inline-block}}@media(max-width:480px){.mec-search-bar-wrap .mec-search-form .mec-text-input-search{width:64%}.mec-search-bar-wrap input#mec-search-bar-input{width:calc(100% - 67%)}}.mec-wrap.mec-search-bar-wrap .mec-totalcal-box{overflow:visible}.mec-ajax-search-result{position:relative}.mec-search-bar-wrap.mec-wrap .mec-totalcal-box input[type=text]{width:calc(100% - 36px)}.mec-search-bar-wrap.mec-wrap .mec-totalcal-box input[type=text]:focus{border-color:#efefef}div#mec-ajax-search-result-wrap{position:absolute;top:100%;opacity:0;visibility:hidden;width:calc(100% - 2px);min-height:50px;left:0;right:0;padding:0 10px;z-index:9999;transition:all .3s ease}.mec-ajax-search-result-events{background:#fff;padding:10px 20px;border:1px solid #efefef;border-top:none}.mec-ajax-search-result-events article:first-of-type{border:none}article.mec-search-bar-result{text-align:left;margin-bottom:0;padding-bottom:25px;padding-top:26px;border-top:1px solid #efefef;transition:all .33s ease;clear:both}.mec-search-bar-result .mec-event-list-search-bar-date{width:64px;height:64px;margin-right:10px;font-size:11px;text-transform:uppercase;float:left;text-align:center;padding-top:2px}.mec-search-bar-result .mec-event-list-search-bar-date span{font-size:40px;line-height:30px;font-weight:700;display:block;margin-bottom:6px;letter-spacing:1px}.mec-search-bar-result .mec-event-image{float:left;margin-right:20px;width:65px;height:auto}.mec-search-bar-result .mec-event-time{font-size:11px;line-height:1.1;margin:0}.mec-search-bar-result .mec-event-time i{color:#40d9f1;float:none;width:unset;height:unset;font-size:inherit;margin-right:3px;border:none;padding:0}.mec-search-bar-result .mec-event-title{font-size:13px;padding:0;margin:10px 0 8px;font-weight:700;text-transform:uppercase}.mec-search-bar-result .mec-event-title a{text-decoration:none;color:#494949;transition:color .3s ease}.mec-search-bar-result .mec-event-detail{font-size:13px;line-height:1.3;font-family:Roboto,sans-serif;color:#9a9a9a;margin-bottom:0}.mec-wrap.mec-modern-search-bar .mec-totalcal-box{background:rgba(255,255,255,.87);border:none;padding:35px;border-radius:3px;box-shadow:0 3px 13px rgba(0,0,0,.4);position:relative}.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=search],.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=text]{height:58px;background:rgba(255,255,255,.99);border-radius:2px;box-shadow:0 4px 8px rgba(0,0,0,.1) inset;border:1px solid #ccc;width:100%;padding-left:45px;padding-right:13px;font-size:16px}.mec-wrap.mec-modern-search-bar .mec-totalcal-box .mec-text-input-search i{position:absolute;background:0 0;border:none;font-size:21px;left:15px;top:calc(50% - 19px);color:#40d9f1}.mec-wrap.mec-modern-search-bar .mec-text-input-search{position:relative;height:58px}.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=submit]{height:58px;border:none;border-radius:2px;background:#fc4a1a;font-size:17px;font-weight:700!important}.mec-wrap.mec-modern-search-bar .mec-text-input-search+input#mec-search-bar-input{margin-left:0}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{height:45px;background:rgba(255,255,255,.99);border-radius:2px;box-shadow:0 4px 8px rgba(0,0,0,.1) inset;border:1px solid #ccc;padding-right:13px;font-size:16px;border-left:0}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap i{height:45px;background:#ffff;border-radius:2px 0 0 2px;box-shadow:none;border:1px solid #ccc;font-size:15px;padding-top:14px;border-right:0;color:#40d9f1;margin-right:-1px}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap{min-height:64px}@media(max-width:768px){.mec-wrap.mec-modern-search-bar .mec-search-form .mec-text-input-search{width:70%}.mec-wrap.mec-modern-search-bar input#mec-search-bar-input{width:calc(100% - 72%)}}@media(max-width:480px){.mec-wrap.mec-modern-search-bar input#mec-search-bar-input{width:92%;padding:0 10px;position:relative;display:block;margin-left:11px}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-text-input-search{width:100%;margin-bottom:20px}.mec-wrap.mec-modern-search-bar .mec-text-input-search+input#mec-search-bar-input{margin-left:10px}}.mec-related-events-wrap{margin-top:50px}.mec-related-events-wrap h3.mec-rec-events-title:before{content:"";background:#2c2f34;width:46px;height:4px;position:absolute;top:59px;left:0}.mec-related-events-wrap h3.mec-rec-events-title{font-size:21px;font-weight:600;padding:17px 0;margin-bottom:28px;text-transform:uppercase;border-bottom:1px solid #e8e8e8;position:relative}.mec-related-event-post figure{margin:0}.mec-related-event-post figure img{width:100%}.mec-related-event-content{background-color:#fff;margin:-27px 30px 15px;position:relative;max-width:90%;padding:13px 21px 16px 19px}.mec-related-event-content h5 a{font-size:16px;color:#121212;font-weight:600;transition:all .3s ease}.mec-fes-form-cntt #mec-organizer-payments ul{list-style:none;background:0 0;margin:0}.mec-fes-form-cntt #mec-organizer-payments ul li h4{background:0 0;letter-spacing:.2px;display:inline-block;padding-left:0!important;padding-bottom:10px!important;margin:0;margin-bottom:1px;letter-spacing:1px;text-transform:capitalize;padding-top:1px}.mec-fes-form-cntt #mec-organizer-payments ul>li{width:100%;display:inline-block;vertical-align:top;padding:0;margin:0}#mec-login-form.mec-login-form{width:100%;background:#fff;padding:20px;margin:0 auto;text-align:center}#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;box-shadow:0 4px 22px -7px #40d9f1;transition:all .22s ease;margin:0;min-width:unset;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% - 170px);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{background:#f7f8f9;padding:18px 22px;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-events-meta-group-booking .StripeElement--focus{box-shadow:0 1px 3px 0 #cfd7df}.mec-events-meta-group-booking .StripeElement--invalid{border-color:#fa755a}.mec-events-meta-group-booking .StripeElement--webkit-autofill{background-color:#fefde5!important}.mec-booking-tab-content .button,.mec-booking-tab-content .mec-reg-field-add-option,.mec-fes-form .mec-form-row .button:not(.wp-color-result),.mec-fes-form input[type=file],ul#mec_reg_form_fields li .mec_reg_field_remove{height:40px;margin-top:1px;text-decoration:none;font-size:14px;line-height:34px!important;margin:0;padding:0 15px 1px!important;text-transform:none;letter-spacing:0;font-weight:600;color:#40d9f1;background:#fff;border-radius:3px;margin-right:8px;border:2px solid #cfeff5;box-shadow:0 2px 6px -3px #cfeff5}.mec-booking-tab-content .button:hover,.mec-booking-tab-content .mec-reg-field-add-option:hover,.mec-fes-form .mec-form-row .button:not(.wp-color-result):hover{background:#40d9f1;color:#fff;border-color:#40d9f1;box-shadow:0 2px 6px -3px #40d9f1}.mec-fes-form .mec-form-row input+button.button{vertical-align:top}.mec-fes-form .mec-form-row .quicktags-toolbar input.button.button-small{border-width:1px;padding:0 7px;color:#80c6d2;font-weight:400;margin:1px;transform:none}.mec-fes-form input[type=file]{max-width:166px;text-align:center;height:44px;transition:all .2s ease;border-radius:5px!important;border:2px dashed #b8e9f3}.mec-fes-form input[type=file]:hover{box-shadow:0 2px 16px -3px #cfeff5}.mec-fes-form input[type=file]::-webkit-file-upload-button{visibility:hidden;width:1px;height:38px}.mec-fes-form input[type=file]::-moz-file-upload-button{visibility:hidden;width:1px;height:38px}.mec-fes-form .mec-meta-box-fields>label{padding:0}#mec_reg_form_fields li{list-style:none}ul#mec_reg_form_fields{padding:0;margin:0}ul#mec_reg_form_fields li{background:#f8feff;margin:6px -20px;padding:15px 25px 10px;width:auto;font-size:13px;border-top:1px solid #e8fafd;border-bottom:1px solid #e8fafd;position:relative}ul#mec_reg_form_fields li .mec_reg_field_remove{position:absolute;right:10px;top:10px;margin:0;padding:6px 8px!important;font-size:11px;line-height:12px!important;min-height:10px;height:auto;display:block;cursor:pointer;color:#ea6485;border-color:#ffd2dd;letter-spacing:.4px}ul#mec_reg_form_fields li .mec_reg_field_remove:hover{background:#ea6485;color:#fff;border-color:#ea6485;box-shadow:0 2px 6px -3px #ea6485}#mec_reg_form_fields input[type=checkbox],#mec_reg_form_fields input[type=radio],.mec-form-row input[type=checkbox],.mec-form-row input[type=radio]{background-color:#fff;border:1px solid #cfeff5;box-shadow:0 1px 3px -1px #cfeff5;padding:9px;border-radius:3px;min-width:24px;min-height:24px;display:inline-block!important;vertical-align:middle;float:none;transition:all .18s ease;outline:0;margin:1px 4px 4px 0;text-align:left;cursor:pointer;-webkit-appearance:none;-moz-appearance:none}#mec_reg_form_fields input[type=checkbox]:focus,#mec_reg_form_fields input[type=radio]:focus,.mec-form-row input[type=checkbox]:focus,.mec-form-row input[type=radio]:focus{outline:0}#mec_reg_form_fields input[type=radio],.mec-form-row input[type=radio]{-webkit-appearance:none;border-radius:20px!important;min-width:20px;min-height:20px;margin:0 0 4px 0;vertical-align:middle}#mec_reg_form_fields input[type=checkbox]:hover,#mec_reg_form_fields input[type=radio]:hover,.mec-form-row input[type=checkbox]:hover,.mec-form-row input[type=radio]:hover{border-color:#40d9f1}#mec_reg_form_fields input[type=checkbox]:checked,#mec_reg_form_fields input[type=radio]:checked,.mec-fes-form .mec-form-row input[type=checkbox]:checked,.mec-fes-form .mec-form-row input[type=radio]:checked{box-shadow:0 1px 6px -2px #40d9f1;border-color:#40d9f1;background:#40d9f1!important;border-radius:2px;position:relative}.mec-form-row input[type=radio]:checked{box-shadow:0 1px 6px -2px #40d9f1,inset 0 0 0 3px #fff!important}#mec_reg_form_fields input[type=checkbox]:checked::before,.mec-form-row input[type=checkbox]:checked:before{content:"";font:normal;position:absolute;top:12px;left:5px;margin:0;vertical-align:middle;line-height:1;border-right:2px solid transparent!important;border-bottom:2px solid transparent!important;transform:rotate(45deg);transform-origin:0 100%;color:#fff;transition:all .2s ease;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards}@keyframes checkbox-check{0%{width:0;height:0;border-color:#fff;transform:translate3d(0,0,0) rotate(45deg)}33%{width:6px;height:0;transform:translate3d(0,0,0) rotate(45deg)}100%{width:6px;height:12px;border-color:#fff;transform:translate3d(0,-12px,0) rotate(45deg)}}#mec_reg_form_field_types .button{position:relative;outline:0;border-radius:50px;padding:2px 21px 2px 31px!important;line-height:1;font-size:11px;font-weight:600;color:#40d9f1;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 2px 6px -3px #40d9f1;border:2px solid #cfeff5}#mec_fes_location_remove_image_button,#mec_fes_organizer_remove_image_button,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button,#mec_meta_box_tickets_form [id^=mec_ticket_row] button,#mec_reg_form_field_types .button.red{color:#ea6485;box-shadow:0 2px 6px -3px #ea6485;background:#fff;border-color:#ffd2dd}#mec_fes_location_remove_image_button:hover,#mec_fes_organizer_remove_image_button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button:hover,#mec_meta_box_tickets_form [id^=mec_ticket_row] button:hover,#mec_reg_form_field_types .button.red:hover{background:#ea6485;color:#fff}#mec_reg_form_field_types .button:before{position:absolute;left:12px;color:#40d9f1;content:"\e095";font-family:simple-line-icons;font-size:13px;display:inline-block}#mec_reg_form_field_types .button.red:before{color:#ea6485}#mec_reg_form_field_types .button.red:hover:before,#mec_reg_form_field_types .button:hover:before{color:#fff}#mec_fes_location_remove_image_button:hover,#mec_fes_organizer_remove_image_button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button:hover,#mec_meta_box_tickets_form [id^=mec_ticket_row] button:hover,#mec_price_per_dates_container .button:hover,#mec_reg_form_field_types .button.red:hover{color:#fff;border:2px solid #ea6485}#mec_taxes_fees_container_toggle [id^=mec_remove_fee_button],#mec_ticket_variations_list [id^=mec_remove_ticket_variation_button]{color:#ea6485;border-color:#ffd2dd}#mec_taxes_fees_container_toggle [id^=mec_remove_fee_button]:hover,#mec_ticket_variations_list [id^=mec_remove_ticket_variation_button]:hover{color:#fff;border:2px solid #ea6485;background:#ea6485}#mec_fees_list [id^=mec_remove_fee_button],#mec_meta_box_ticket_variations_form .mec-form-row [id^=mec_remove_ticket_variation_button]{margin-left:14px!important}#mec_meta_box_hourly_schedule_days .mec-add-hourly-schedule-button{line-height:10px!important}#mec_meta_box_tickets_form [id^=mec_ticket_row] .mec_add_price_date_button{color:#40d9f1;box-shadow:0 2px 6px -3px #40d9f1;border:2px solid #cfeff5}#mec_meta_box_tickets_form [id^=mec_ticket_row] .mec_add_price_date_button:hover,#mec_reg_form_field_types .button:hover{color:#fff;border:2px solid #40d9f1;background:#40d9f1}.mec-form-row input+span.mec-tooltip,.mec-form-row select+span.mec-tooltip{bottom:10px}.mec-form-row label+span.mec-tooltip{bottom:8px}.mec-form-row textarea+span.mec-tooltip{bottom:auto;vertical-align:top;top:12px}.mec-form-row span+span.mec-tooltip{bottom:0;vertical-align:middle}.mec-form-row .mec-col-8 input[type=text],.mec-form-row .mec-col-8 select,.mec-form-row .mec-col-8 span.mec-archive-skins{vertical-align:top}.mec-form-row input:disabled{opacity:.6;background:#f6f6f6}.mec-form-row p{font-size:12px!important;line-height:18px!important;color:#97b2bb!important}.mec-form-row p.description{font-style:italic}.ui-datepicker.ui-widget{border:1px solid #e8e8e8;box-shadow:0 1px 9px rgba(0,0,0,.12);font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif}table.ui-datepicker-calendar{margin-bottom:0}.ui-datepicker-calendar th{font-weight:700;color:#4a4b4c}.ui-datepicker-calendar td,.ui-datepicker-calendar th,.ui-datepicker-calendar tr{border:none}.ui-datepicker.ui-widget select{font-weight:600;font-size:12px;display:inline-block;border-radius:2px;padding:2px 10px;margin:5px 3px;width:auto;min-height:20px;height:26px;border:1px solid #e3e3e3;box-shadow:inset 0 1px 3px rgba(0,0,0,.04)}.ui-datepicker.ui-widget table{border-spacing:2px;border:none}.ui-datepicker.ui-widget td,.ui-datepicker.ui-widget tr{padding:0;background:0 0!important}.ui-datepicker.ui-widget td a{color:#9a9b9c;font-weight:600;width:30px;height:30px;line-height:30px;display:inline-block;border-radius:33px;padding:0;background:#fff;transition:all .2s ease}.ui-datepicker.ui-widget td a.ui-state-active,.ui-datepicker.ui-widget td a:hover{background:#40d9f1;color:#fff}.ui-datepicker.ui-widget .ui-datepicker-next,.ui-datepicker.ui-widget .ui-datepicker-prev{color:#40d9f1;width:30px;height:30px;line-height:30px;display:inline-block;text-align:center;border-radius:33px;background:#ecfcff;transition:all .2s ease}.ui-datepicker.ui-widget .ui-datepicker-next:hover,.ui-datepicker.ui-widget .ui-datepicker-prev:hover{background:#fff;box-shadow:0 0 7px -3px rgba(0,0,0,.4)}.mec-fes-form .mec-tooltip .dashicons-before:before{color:#40d9f1}.mec-fes-form button[type=submit].mec-fes-sub-button{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;border-radius:3px;background:#40d9f1;color:#fff;height:54px;font-size:17px;font-weight:700;box-shadow:0 2px 8px -4px #40d9f1;display:block;transition:all .28s ease;text-transform:uppercase;margin:20px 0 0;padding:14px 20px;border:0;cursor:pointer;text-align:center;letter-spacing:.1em;line-height:1}.mec-fes-form button[type=submit].mec-fes-sub-button:hover{box-shadow:0 2px 12px -2px #40d9f1}.mec-fes-form button[type=submit].mec-fes-sub-button:focus{margin-bottom:-2px;background:#1dc2dc}.mec-fes-form .mec-title span.mec-dashicons{color:#40d9f1;float:left;margin-right:5px}.mec-fes-form .mec-tooltip .box h5{padding:14px 2px}#mec_fes_form,.mec-fes-form-top-actions{max-width:838px;margin:0 auto}@media only screen and (min-width:961px){.mec-fes-form .mec-fes-form-cntt{width:calc(100% - 300px);float:left;padding-right:20px;max-width:538px;display:block}.mec-fes-form .mec-fes-form-sdbr{width:300px}}.mec-fes-form .quicktags-toolbar,.mec-fes-form div.mce-toolbar-grp{background:#ecfcff;border-bottom:1px solid #cfeff5;box-shadow:0 1px 0 1px #cfeff5}.mec-fes-form .quicktags-toolbar{margin-right:-1px;border-top:1px solid #cfeff5}.mec-fes-form div.mce-statusbar{border-top-color:#cfeff5}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-listbox{border:1px solid #cfeff5;border-radius:3px}.mec-fes-form .mce-tinymce.mce-container.mce-panel{border:1px solid #cfeff5;box-shadow:0 2px 6px -3px #cfeff5;border-radius:2px 0 2px 2px}.mec-fes-form .wp-editor-tools .wp-media-buttons{transform:translateY(-6px);margin-top:-6px}.mec-fes-form .wp-editor-tabs{padding-right:0;margin-right:-2px}.mec-fes-form .wp-editor-tabs .wp-switch-editor{border-radius:3px 3px 0 0;border-color:#cfeff5;background:#fff;color:#96b8bd;border-bottom:1px solid #ecfcff}.mec-fes-form .html-active .switch-html,.mec-fes-form .tmce-active .switch-tmce,.mec-fes-form .wp-editor-tabs .wp-switch-editor:active{background:#ecfcff;color:#40d9f1}.mec-fes-form .wp-editor-container,.mec-fes-form div.mce-edit-area.mce-panel{border:none;box-shadow:none}.mec-fes-form .wp-editor-container textarea.wp-editor-area{max-width:100%}.mec-fes-form .mce-toolbar .mce-listbox button{font-size:12px;line-height:22px;color:#798f96}.mec-fes-form .mce-toolbar .mce-ico{color:#627f88}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-active,.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn:active,.mec-fes-form .qt-dfw.active{background:#fff;border-color:#40d9f1;box-shadow:inset 0 2px 6px -3px rgba(106,231,255,.7)}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-active .mce-ico{color:#40d9f1}body .mce-menu .mce-menu-item.mce-active.mce-menu-item-normal,body .mce-menu .mce-menu-item.mce-selected,body .mce-menu .mce-menu-item:focus,body .mce-menu .mce-menu-item:hover,body.mce-menu .mce-menu-item.mce-active.mce-menu-item-preview{background:#40d9f1;color:#fff}.mec-fes-form .mec-not-in-days-day{display:inline-block;padding:4px 32px 4px 15px;border-radius:33px;border:1px solid #cfeff5;box-shadow:0 1px 3px -1px #cfeff5;background:#fbfeff;color:#40d9f1;vertical-align:top}.mec-fes-form .mec-not-in-days-remove{display:inline-block;padding:0 1px 0 0;margin-left:-30px;vertical-align:sub;background:#ff918a;color:#fff;font-family:cursive;width:21px;height:21px;line-height:17px;text-align:center;border-radius:20px;cursor:pointer}.mec-fes-list ul li .mec-event-status{float:left;margin-right:10px;margin-left:0;font-size:11px;font-weight:400;letter-spacing:.3px;border-radius:3px;padding:4px 8px}.mec-fes-form .post-status.mec-book-confirmed:before,.mec-fes-list ul li .mec-event-status.mec-book-confirmed:before{content:"";margin:0;vertical-align:middle;line-height:1;border-right:2px solid #fff!important;border-bottom:2px solid #fff!important;transform:rotate(45deg);color:#fff;width:6px;height:12px;float:left;margin-right:6px}.mec-fes-list ul li .mec-fes-event-export a:before,.mec-fes-list ul li .mec-fes-event-remove:before,.mec-fes-list ul li .mec-fes-event-view a:before,.mec-fes-list-top-actions a:before{content:"\e054";font-family:simple-line-icons;font-size:13px;vertical-align:middle}.mec-fes-list ul li .mec-fes-event-view a:before{content:"\e087"}.mec-fes-list-top-actions a:before{content:"\e095";font-weight:400;margin-right:6px}.mec-fes-list ul li .mec-fes-event-export a:before{content:"\e083"}.mec-fes-form .post-status{border-radius:20px}.mec-fes-form .post-status.mec-book-confirmed:before{height:20px;width:9px;margin:3px 10px}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker-calendar th{height:auto;padding:0}.ui-datepicker .ui-datepicker-calendar td a,.ui-datepicker-calendar th{font-size:14px;line-height:30px}.mec-fes-form .description{font-size:16px}.mec-fes-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: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;cursor:pointer}.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}
|
1 |
+
.lity-container,.mec-wrap,.mec-wrap div:not([class^=elementor-]){font-family:Montserrat,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif}.entry-content .mec-wrap h1,.entry-content .mec-wrap h2,.entry-content .mec-wrap h3,.entry-content .mec-wrap h4,.entry-content .mec-wrap h5,.entry-content .mec-wrap h6,.mec-wrap h1,.mec-wrap h2,.mec-wrap h3,.mec-wrap h4,.mec-wrap h5,.mec-wrap h6{font-family:Montserrat,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;color:#171c24;font-weight:300;font-style:inherit;letter-spacing:normal;clear:none}.mec-wrap h1{font-size:50px;line-height:1.16;margin-bottom:12px;letter-spacing:-1px}.mec-wrap h2{font-size:36px;line-height:1.14;margin-bottom:10px}.mec-wrap h3{font-size:28px;line-height:1.2;margin-bottom:8px}.mec-wrap h4{font-size:24px;line-height:1.2;margin-bottom:10px}.mec-wrap h5{font-size:18px;line-height:1.3;margin-bottom:7px}.mec-wrap h6{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-wrap .subheader{color:#849098}.mec-wrap h1 strong{font-weight:700}.mec-wrap p{margin:0 0 20px 0;color:#616161;font-size:14px;line-height:1.8}.mec-wrap .mec-event-article .mec-color-hover{box-shadow:none;border:none}.mec-wrap abbr,.mec-wrap acronym{cursor:auto;border:none}.entry-content .mec-wrap a{box-shadow:none}.mec-wrap .button,.mec-wrap a.button:not(.owl-dot),.mec-wrap button:not(.owl-dot),.mec-wrap input[type=button],.mec-wrap input[type=reset],.mec-wrap input[type=submit]{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-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-booking-form-container button{display:block!important}.vertical-space,.vertical-space1,.vertical-space2,.vertical-space3,.vertical-space4,.vertical-space5{display:block;width:100%;margin:0;clear:both;border:0 none;height:20px}.vertical-space2{height:40px}.vertical-space3{height:60px}.vertical-space4{height:80px}.vertical-space5{height:100px}@media only screen and (max-width:479px){.vertical-space,.vertical-space1{height:8px}.vertical-space2{height:14px}.vertical-space3{height:28px}.vertical-space4{height:40px}.vertical-space5{height:60px}}@media only screen and (max-width:960px){.vertical-space,.vertical-space1{height:12px}.vertical-space2{height:18px}.vertical-space3{height:36px}.vertical-space4{height:50px}.vertical-space5{height:80px}}.mec-wrap abbr{cursor:auto;border-bottom:0}@-webkit-keyframes rotating{from{-ms-transform:rotate(0);-moz-transform:rotate(0);-webkit-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}to{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes rotating{from{-ms-transform:rotate(0);-moz-transform:rotate(0);-webkit-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}to{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}.mec-wrap{font:14px/25px sans-serif;font-family:Montserrat,Helvetica,Arial,sans-serif;font-weight:400;color:#626262}.mec-wrap .mec-events a{border-bottom:none}.mec-wrap .mec-container a{box-shadow:none}.mec-event-content p{font-family:Roboto,sans-serif;font-weight:300}.mec-wrap .mec-clear:after,.mec-wrap .mec-clear:before{content:" ";display:table}.mec-wrap .mec-clear:after{clear:both}.mec-events-button{background:#fff;padding:12px 34px;font-size:13px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;margin-right:10px;transition:.3s}.mec-wrap .mec-events-button:hover{color:#fff}.mec-no-event{display:none}#mec-active-current{display:block!important}.current-hide #mec-active-current{display:none!important}.mec-event-grid-classic .mec-event-article{position:relative;border:2px solid #e3e3e3;box-shadow:0 2px 0 0 rgba(0,0,0,.016);margin-bottom:30px;max-width:none}.mec-event-grid-classic .mec-event-content{background:#fff;color:#767676;padding:0 20px 5px;text-align:center;min-height:125px}.mec-event-grid-classic .mec-event-title{color:#202020;margin:10px 0;font-weight:700;font-size:20px;letter-spacing:1px;text-transform:uppercase}.mec-event-grid-classic .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-classic .mec-event-date{font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:1px;color:#fff;padding:3px 20px;margin:0 -20px 20px -20px;text-align:center}.mec-event-grid-classic .mec-event-content p{font-size:15px;color:#8a8a8a}.mec-event-grid-classic .mec-event-detail{display:none}.mec-event-grid-classic img{margin-bottom:0;width:100%}.mec-event-footer{position:relative;border-top:1px solid #efefef;padding:20px;min-height:80px;margin:0;background:#fafafa}.mec-event-sharing-wrap{left:15px;position:absolute;list-style:none;margin:0}.mec-event-sharing-wrap .mec-event-sharing{position:absolute;padding:8px 0 2px;left:-6px;bottom:54px;margin:0;margin-top:6px;border-radius:5px;width:50px;visibility:hidden;opacity:0;border:1px solid #e2e2e2;background:#fff;box-shadow:0 0 9px 0 rgba(0,0,0,.06);z-index:99;-webkit-transition:all .18s ease;transition:all .18s ease}.mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-sharing-wrap .mec-event-sharing:before{content:'';display:block;position:absolute;bottom:-10px;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-event-sharing-wrap .mec-event-sharing:before{bottom:-21px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-sharing-wrap .mec-event-sharing:after{bottom:-19px;border-color:#fff transparent transparent transparent}.mec-event-sharing-wrap:hover .mec-event-sharing{opacity:1;visibility:visible}.mec-event-sharing-wrap li{text-align:center;border:0;display:block;margin-right:2px;overflow:hidden;margin:0 auto 6px;width:38px}.mec-event-sharing-wrap:hover>li{cursor:pointer;background-color:#40d9f1}.mec-event-sharing-wrap:hover li a{color:#fff}.mec-event-sharing-wrap>li:first-of-type{border:1px solid #d9d9d9}.mec-event-sharing-wrap li a,.mec-event-sharing-wrap:hover li ul li a{border:none;color:#767676}.mec-event-sharing-wrap li i{width:36px;height:36px;display:table-cell;vertical-align:middle}.mec-event-sharing-wrap .mec-event-sharing li a{display:block}.mec-event-sharing-wrap .mec-event-sharing li:hover a{color:#40d9f1}.mec-event-sharing .mec-event-share:hover .event-sharing-icon{background:#40d9f1;border-width:0 1px 0;cursor:pointer}.mec-event-sharing .mec-event-map{border-width:1px 0 1px}.mec-event-footer .mec-booking-button{box-shadow:none;transition:all .21s ease;font-size:11px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:1px solid #e8e8e8;position:absolute;top:20px;right:15px;padding:0 16px;line-height:37px;height:38px}.mec-event-footer .mec-booking-button:hover{background:#191919;color:#fff;border-color:#191919}@media only screen and (max-width:960px){.mec-event-grid-classic{margin-bottom:30px}}.mec-widget .mec-event-grid-classic.mec-owl-carousel{padding:36px 0 16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav{margin:5px 0;width:100%;position:absolute;top:15px;padding:0}.mec-skin-grid-container.mec-widget{padding-top:18px}.mec-widget .mec-event-grid-classic.mec-owl-carousel{padding:20px 0 16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav{margin:0;width:100%;position:absolute;top:0;padding:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav div{position:absolute;background:#fff;line-height:0;width:34px;height:26px;padding:6px;text-align:center;margin-top:-17px;border-radius:3px;border:1px solid #e2e2e2;text-align:center;box-shadow:0 2px 0 0 rgba(0,0,0,.028);transition:all .33s ease}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav .owl-next{right:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav .owl-prev{left:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-sharing{display:none}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-footer{text-align:center}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-footer .mec-booking-button{position:static;padding:11px 16px}.widget .mec-event-footer ul.mec-event-sharing-wrap li a.mec-event-share-icon{padding:0}@media screen and (min-width:56.875em){.mec-widget .mec-month-container dl{margin-bottom:0}}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-footer{text-align:right}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-sharing-wrap{left:5px;padding-left:5px}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-sharing-wrap .mec-event-sharing{left:0}.mec-widget .mec-event-sharing-wrap .mec-event-sharing{position:absolute;top:auto;bottom:52px;margin:0;margin-top:0;border-radius:5px}.mec-widget .mec-event-sharing-wrap .mec-event-sharing:after{top:auto;bottom:-17px;border-color:#fff transparent transparent transparent}.mec-widget .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-18px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-grid-clean{margin-bottom:10px;max-width:none}.mec-event-grid-clean .mec-event-article{margin-bottom:30px;position:relative;border:1px solid #e2e2e2;text-align:center;padding:15px 15px 0;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-clean .mec-event-content{background:#fff;color:#767676;padding:25px 16px 0;text-align:left}.mec-event-grid-clean .mec-event-title{color:#202020;margin:0 0 10px 0;font-weight:700;font-size:21px;text-transform:capitalize}.mec-event-grid-clean .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-clean .mec-event-date{font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:1px;background-color:#40d9f1;color:#fff;padding:3px 0;margin:0;text-align:center}.mec-event-grid-clean .mec-event-content p{font-size:15px;color:#9a9a9a;line-height:1.54}.mec-event-grid-clean img{margin-bottom:0;width:100%}.mec-event-grid-clean .event-grid-t2-head{margin-bottom:10px;color:#fff;padding:9px 14px 6px;text-align:left}.mec-event-grid-clean .event-grid-t2-head .mec-event-date{font-size:50px;line-height:50px;float:left;margin-right:11px}.mec-event-grid-clean .event-grid-t2-head .mec-event-month{text-transform:uppercase;font-size:17px;line-height:20px;padding-top:4px}.mec-event-grid-clean .event-grid-t2-head .mec-event-detail{font-size:12px}.mec-event-grid-clean .mec-event-sharing-wrap{left:0}.mec-event-grid-clean .mec-event-footer{position:relative;border-top:2px solid;padding:20px 0;margin:0 14px;text-align:left;background:0 0}.mec-event-grid-clean .mec-event-footer .mec-booking-button{right:0}.mec-event-grid-clean .row{margin-bottom:30px}.mec-event-grid-modern{margin-bottom:10px;max-width:none}.mec-event-grid-modern .mec-event-article{position:relative;border:1px solid #e2e2e2;text-align:center;margin-bottom:30px;padding:45px 15px 10px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-modern .mec-event-content{background:#fff;color:#767676;padding:35px 15px 10px;text-align:left}.mec-event-grid-modern .mec-event-title{color:#202020;margin:0 0 10px 0;font-weight:700;font-size:24px;text-transform:none;letter-spacing:-1px}.mec-event-grid-modern .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-modern .mec-event-content p{font-size:15px;color:#9a9a9a;line-height:1.54}.mec-event-grid-modern img{margin-bottom:0;width:100%}.mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:9px 14px 6px;text-align:left}.mec-event-grid-modern .event-grid-modern-head .mec-event-date{font-size:50px;line-height:50px;float:left;margin-right:11px}.mec-event-grid-modern .event-grid-modern-head .mec-event-month{text-transform:uppercase;font-size:17px;line-height:20px;padding-top:4px}.mec-event-grid-modern .event-grid-modern-head .mec-event-detail{font-size:12px}.mec-event-grid-modern .event-grid-modern-head .mec-event-day{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:35px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-event-grid-modern .mec-event-footer{position:relative;height:90px;padding:20px 0;border:none;margin:0 14px;text-align:left;background:0 0}.mec-event-grid-modern .mec-event-footer .mec-booking-button{right:auto;left:0}.mec-event-grid-modern .mec-event-sharing-wrap{left:auto;right:0}.mec-event-grid-modern .mec-event-sharing{left:auto;right:-6px}.mec-event-grid-modern .mec-event-sharing-wrap li{border-radius:55px}.mec-event-grid-modern .row{margin-bottom:0}@media only screen and (max-width:479px){.mec-event-grid-modern .mec-event-article{padding-bottom:30px}.mec-event-grid-modern .mec-event-sharing{top:60px;left:0;right:auto}.mec-event-grid-modern .mec-event-footer .mec-booking-button{top:0}}.mec-event-title-soldout .soldout{background:#de3120;padding:4px 5px;color:#fff}.mec-event-title-soldout .soldout{background:#de3120;position:relative;top:-2px;border-radius:10px 0 0 20px;padding:2px 4px 2px 10px;color:#fff}.mec-event-title-soldout .soldout:before{content:' ';position:absolute;width:0;height:0;border-top:10px solid #de3120;border-bottom:10px solid #de3120;right:-10px;border-right:10px solid transparent;border-left:10px solid transparent;top:0}.mec-event-title-soldout .soldout:after{content:' ';position:absolute;width:6px;height:6px;background:#de3120;border-radius:50%;left:3px;top:4px;border:2px dashed #fff}.mec-event-grid-colorful .mec-event-article{min-height:400px;border:none;box-shadow:none;background:#40d9f1;padding-top:25px;margin:0;color:#fff}.mec-event-grid-colorful .mec-event-content{background:0 0}.mec-event-grid-colorful .event-grid-modern-head,.mec-event-grid-colorful .event-grid-modern-head .mec-event-date,.mec-event-grid-colorful .event-grid-modern-head .mec-event-day,.mec-event-grid-colorful .mec-event-content p,.mec-event-grid-colorful .mec-event-sharing-wrap>li>a,.mec-event-grid-colorful .mec-event-title a{color:#fff}.mec-event-grid-colorful .mec-event-footer .mec-booking-button{border:none}.mec-event-grid-colorful .mec-event-sharing-wrap>li{border-color:#fff}.mec-event-grid-colorful .mec-event-sharing-wrap:hover>li{background:#333;border-color:#333}.mec-event-grid-colorful .mec-event-title a.mec-color-hover:hover{color:#fff;text-decoration:underline}.mec-event-grid-colorful .mec-event-title .event-color{display:none}.mec-event-grid-colorful div[class^=col-md-]{padding:0 1px 1px 0;margin:0}@media only screen and (min-width:768px){.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-day{font-size:26px}.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-month{font-size:15px}.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-date{font-size:50px}.mec-wrap.mec-sm959.mec-event-grid-colorful .mec-event-title{font-size:21px}.mec-wrap.mec-sm959.mec-event-grid-colorful .mec-event-content p{font-size:13px}}@media only screen and (min-width:768px) and (max-width:1200px){.mec-wrap.mec-sm959.mec-event-grid-colorful div[class^=col-md-]{width:50%}}.mec-event-list-minimal .mec-event-article{border-bottom:1px solid #efefef;padding:24px 0 16px}.mec-event-list-minimal .mec-wrap .col-md-9{padding:0}.mec-event-list-minimal .mec-event-date{position:relative;float:left;margin-right:30px;color:#fff;width:52px;padding:6px 4px 3px;text-align:center;text-transform:uppercase;border-radius:3px}.mec-event-list-minimal .mec-event-date span{display:block;font-size:24px;font-weight:700;text-align:center;margin-bottom:4px}.mec-event-list-minimal .mec-event-date:after{display:block;content:"";position:absolute;width:50px;left:1px;top:1px;height:30px;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:5px}.mec-event-list-minimal .mec-event-detail{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;font-family:Roboto,sans-serif}.mec-event-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-date .event-da{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:28px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-event-list-modern .mec-btn-wrapper .mec-booking-button{border-radius:1px;letter-spacing:2px;border:1px solid #e6e6e6;color:#333;background-color:#fff;padding:13px 20px;font-weight:700;font-size:11px;box-shadow:0 2px 0 0 rgba(0,0,0,.016);transition:all .28s ease}.mec-event-list-modern .mec-btn-wrapper .mec-booking-button:hover{border-color:#222;background:#222;color:#fff}.mec-event-list-modern .mec-event-title{font-weight:700;font-size:20px;text-transform:uppercase;letter-spacing:1px}.mec-event-list-modern .mec-event-detail{color:#9a9a9a;font-size:15px;font-weight:300;line-height:25px;font-family:Roboto,sans-serif}.mec-event-list-modern .mec-btn-wrapper{text-align:right;padding:10px 0;text-transform:uppercase}.mec-event-list-modern .mec-event-sharing{position:relative;margin:10px 0}.mec-event-list-modern .mec-event-sharing>li{display:inline-block;border:none;border-radius:50%;margin-right:3px}.mec-event-list-modern .mec-event-sharing>li:hover{display:inline-block}.mec-event-list-modern .mec-event-sharing>li:hover a i{color:#fff;background:#40d9f1;border-color:#40d9f1}.mec-event-list-modern .mec-event-sharing>li i{width:36px;display:inline-block;line-height:35px;color:#767676;text-align:center;border-radius:50%;border:1px solid #ddd;font-size:14px}.mec-event-list-modern .mec-event-sharing .mec-event-share:hover .mec-event-sharing-icon{background:#40d9f1;border-color:#40d9f1;cursor:pointer;border-radius:50%}.mec-event-list-modern .mec-event-sharing li:hover a i{background:#40d9f1}@media only screen and (min-width:768px){.mec-event-list-modern .mec-event-article{position:relative;min-height:160px;overflow:hidden}.mec-event-list-modern .col-md-2.col-sm-2{width:210px;position:absolute;left:0;top:20px}.mec-event-list-modern .col-md-4.col-sm-4.mec-btn-wrapper{width:180px;padding:0;position:absolute;right:0;top:30%}.mec-event-list-modern .col-md-6.col-sm-6{width:100%;padding-left:225px;padding-right:195px}}@media only screen and (max-width:767px){.mec-event-list-modern .mec-btn-wrapper .mec-booking-button{letter-spacing:1px;border:1px solid #e1e1e1;padding:8px 16px}.mec-event-list-modern .mec-btn-wrapper{padding:0 0 12px}.mec-event-list-modern .mec-event-sharing{margin-bottom:0}}.mec-event-grid-minimal .mec-event-article{margin:15px 0;min-height:80px;display:table}.mec-event-grid-minimal .event-detail-wrap{display:table-cell;vertical-align:middle}.mec-event-grid-minimal .mec-event-date{width:70px;float:left;margin-right:20px;padding:12px 16px 10px;text-align:center;text-transform:uppercase;border-radius:4px;border:1px solid #e6e6e6;transition:all .37s ease-in-out;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-minimal .mec-event-date span{display:block;font-size:24px;font-weight:700;text-align:center;margin-bottom:4px;color:#2a2a2a;transition:color .3s ease}.mec-event-grid-minimal .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;line-height:21px;font-size:16px;text-transform:uppercase;transition:color .3s ease}.mec-event-grid-minimal .mec-event-title a{color:#191919;transition:color .3s ease}.mec-event-grid-minimal .mec-event-detail{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;font-family:Roboto,sans-serif}.mec-event-grid-minimal .mec-event-date:hover{color:#fff}.mec-event-grid-minimal .mec-event-date:hover span{color:#fff}.mec-event-list-classic .mec-event-article{padding:12px 0;margin-bottom:20px}.mec-event-list-classic .mec-event-image{float:left;width:86px;margin-right:20px}.mec-event-list-classic .mec-event-date{font-weight:400;font-size:13px;letter-spacing:0;line-height:18px}.mec-event-list-classic .mec-event-date span{font-weight:500;margin-bottom:6px}.mec-event-list-classic .mec-event-title{font-size:15px;margin:10px 0 12px;font-weight:700;text-transform:uppercase}.mec-event-list-classic .mec-event-title a{color:#494949;transition:color .3s ease}.mec-event-list-classic .mec-event-detail{color:#777;font-weight:400;line-height:12px;font-size:12px;overflow:hidden}.mec-event-list-classic a.magicmore{padding:10px 16px;color:#fff;background:#222;letter-spacing:2px;font-size:11px}.mec-event-list-classic a.magicmore:after{content:"";display:none}.mec-event-list-classic a.magicmore:hover{color:#40d9f1}.mec-event-grid-simple .mec-event-article{position:relative;margin-bottom:30px}.mec-event-grid-simple .mec-event-article:after{border-right:1px solid #e6e6e6;height:60px;position:absolute;top:50%;margin-top:-30px;right:-1px}.mec-event-grid-simple .row div:last-child .mec-event-article:after{border:none}.mec-event-grid-simple .row{margin:15px 0 30px;text-align:center}.mec-event-grid-simple .mec-event-date{padding:0;margin:0;text-transform:capitalize;font-size:12px;font-weight:700}.mec-event-grid-simple .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;line-height:21px;font-size:15px;padding-top:5px;text-transform:uppercase;transition:color .37s ease}.mec-event-grid-simple .mec-event-title a{color:#494949;transition:color .3s ease}.mec-event-grid-simple .mec-event-detail{font-family:Roboto,sans-serif;font-weight:400;line-height:1;letter-spacing:0;font-size:13px;color:#777}.mec-event-grid-simple:hover .mec-event-title{color:#40d9f1}.mec-event-grid-simple:hover .mec-event-date{background:0 0}.event-last:after{display:none}@media only screen and (max-width:767px){.mec-event-grid-simple .mec-event-article{padding-bottom:20px;margin-bottom:20px;border-bottom:1px solid #eee}.mec-event-grid-simple .mec-event-article:after{border:none}}.mec-event-grid-novel .mec-event-article{position:relative;margin-bottom:30px;padding:60px 5% 60px 7%;border:1px solid rgba(255,255,255,.12);border-radius:10px;background-color:#0050fd;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease;z-index:1}.mec-event-grid-novel .mec-event-article .novel-grad-bg{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:10px;opacity:0;z-index:-1;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease}.mec-event-grid-novel .mec-event-article:hover{-webkit-box-shadow:0 13px 36px 0 rgba(0,0,0,.23);box-shadow:0 13px 36px 0 rgba(0,0,0,.23);border-color:transparent}.mec-event-grid-novel .mec-event-article:hover .novel-grad-bg{background-image:-webkit-gradient(linear,left top,right top,from(#262e32),to(#0e1015));background-image:-webkit-linear-gradient(left,#262e32 0,#0e1015 100%);background-image:-o-linear-gradient(left,#262e32 0,#0e1015 100%);background-image:linear-gradient(90deg,#262e32 0,#0e1015 100%);opacity:1}.mec-event-grid-novel .mec-event-image{float:left;width:150px;height:150px}.mec-event-grid-novel .mec-event-image img{width:150px;height:150px;border-radius:50%}.mec-event-grid-novel .mec-event-detail-wrap{margin-left:200px}.mec-event-grid-novel .mec-event-content h4{position:relative;margin-bottom:10px;display:inline-block}.mec-event-grid-novel .mec-event-content h4 a{font-size:24px;line-height:35px;color:#fafcff}.mec-event-grid-novel .mec-event-content h4::before{content:'';position:absolute;top:8px;left:-30px;width:17px;height:17px;background:#5cd0ed;opacity:.4;border-radius:50%}.mec-event-grid-novel .mec-event-content h4::after{content:'';position:absolute;top:12px;left:-26px;width:9px;height:9px;background:#5cd0ed;border-radius:50%}.mec-event-grid-novel .mec-event-address,.mec-event-grid-novel .mec-event-detail,.mec-event-grid-novel .mec-event-month{position:relative;padding-left:35px;font-size:15px;line-height:30px;color:rgba(255,255,255,.4)}.mec-event-grid-novel .mec-event-address::before,.mec-event-grid-novel .mec-event-detail::before,.mec-event-grid-novel .mec-event-month::before{position:absolute;top:6px;left:6px;font-size:17px;font-family:simple-line-icons;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1}.mec-event-grid-novel .mec-event-month::before{content:"\e075"}.mec-event-grid-novel .mec-event-detail::before{content:"\e081"}.mec-event-grid-novel .mec-event-address::before{content:"\e096"}.mec-event-grid-novel .mec-event-footer{clear:both;padding:20px 0;border-top:none;background:0 0}.mec-event-grid-novel .mec-event-footer .mec-booking-button{right:auto;left:0;height:42px;width:148px;padding:0 20px;font-size:14px;font-weight:400;line-height:42px;text-align:center;color:#fff;background:0 0;border-color:rgba(255,255,255,.1);border-radius:50px}.mec-event-grid-novel .mec-event-footer .mec-booking-button:hover{background-color:rgba(255,255,255,.1)}.mec-event-grid-novel .mec-event-sharing-wrap{left:175px;cursor:pointer}.mec-event-grid-novel .mec-event-sharing-wrap>li{border-color:rgba(255,255,255,.1);border-radius:50%}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing{top:-5px;left:0;padding:5px 10px 2px 50px;min-width:150px;width:inherit;height:37px;background-color:rgba(255,255,255,.1);-webkit-box-shadow:none;box-shadow:none;border:none;border-radius:50px}.mec-event-grid-novel .mec-event-sharing-wrap:hover>li{background-color:rgba(255,255,255,.1)}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing::after,.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing::before{display:none}.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon,.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon a,.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li i{display:inline}.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon a{padding:0 10px}.mec-event-grid-novel .mec-event-sharing-wrap>li a{color:#fff}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li a{color:rgba(255,255,255,.4)}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li a:hover{color:rgba(255,255,255,1)}@media only screen and (max-width:1200px){.mec-event-grid-novel .row .col-md-6.col-sm-6{width:100%;float:none}.mec-event-grid-novel .mec-event-image{float:none;margin-top:-20px;margin-bottom:20px}.mec-event-grid-novel .mec-event-detail-wrap{margin-left:20px}.mec-event-grid-novel .mec-event-footer{margin-top:30px}}@media only screen and (max-width:767px){.mec-event-grid-novel .mec-event-footer{margin-top:0;padding-top:30px;margin-bottom:24px}.mec-event-grid-novel .mec-event-footer .mec-booking-button{display:block;position:relative}.mec-event-grid-novel .mec-event-sharing-wrap{left:0;bottom:-55px}.mec-event-grid-novel .mec-event-content h4 a{font-size:20px;line-height:1.3}}.mec-event-cover-modern{position:relative}.mec-event-cover-modern .mec-event-cover-a{background:0 0;position:absolute;color:#fff;bottom:0;left:0;text-decoration:none}.mec-event-cover-modern .mec-event-cover-a .mec-event-overlay{transition:all .5s;opacity:.8;width:100%;height:100%;position:absolute}.mec-event-cover-modern .mec-event-cover-a:hover .mec-event-overlay{opacity:1}.mec-event-cover-modern .mec-event-detail{padding:40px;position:relative}.mec-event-cover-modern .mec-event-cover-a:hover .mec-event-tag{color:#333;transition:all .5s}.mec-event-cover-modern .mec-event-cover-a .mec-event-title:hover{text-decoration:underline}.mec-event-cover-modern .mec-event-tag{background:#fff;display:inline-block;padding:5px 9px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:24px}.mec-event-cover-modern .mec-event-date{text-transform:uppercase;font-size:17px;font-weight:300}.mec-event-cover-modern .mec-event-title{color:#fff;text-transform:uppercase;font-size:40px;font-weight:700;margin:6px 0}.mec-event-cover-modern .mec-event-place{font-weight:400;font-size:18px;font-family:Roboto,sans-serif}@media only screen and (max-width:767px){.mec-event-cover-modern .mec-event-cover-a{width:100%}}.mec-event-cover-classic{position:relative;overflow:hidden;background:#fff;padding:6px;border:1px solid #e8e8e8}.mec-event-cover-classic .mec-event-overlay{position:absolute;left:6px;right:6px;bottom:6px;top:6px;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-cover-classic:hover .mec-event-overlay{background-color:rgba(36,36,36,.6)}.mec-event-cover-classic .mec-event-content{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out}.mec-event-cover-classic .mec-event-date{font-size:14px;text-transform:uppercase;font-weight:400;line-height:1.6}.mec-event-cover-classic .mec-event-date span{display:block;font-weight:700;font-size:16px}.mec-event-cover-classic .mec-event-title{color:#fff;margin:20px 0 38px;font-size:24px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-cover-classic .mec-btn-wrapper{text-align:left}.mec-event-cover-classic .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-cover-classic .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:12px 20px;letter-spacing:3px;font-size:12px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-cover-classic .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-cover-classic .mec-event-image img{min-width:100%}@media only screen and (max-width:960px){.mec-event-cover-classic .mec-event-content{padding:20px}.mec-event-cover-classic .mec-event-button{font-size:11px;padding:7px 10px;letter-spacing:1px}.mec-event-cover-classic .mec-event-title{font-size:19px;margin:15px 0 25px}.mec-event-cover-classic .mec-event-date{font-size:12px}}@media only screen and (max-width:767px){.mec-event-cover-classic{margin-bottom:30px}}@media only screen and (max-width:479px){.mec-event-cover-classic .mec-event-content{padding:15px;font-size:15px}.mec-event-cover-classic .mec-event-title{font-size:15px;margin:10px 0}.mec-event-cover-classic .mec-event-button{font-size:10px;padding:6px;letter-spacing:1px}.mec-event-cover-classic .mec-event-icon{padding:10px}}.mec-load-more-wrap{text-align:center;display:block;width:100%;padding-top:20px;text-align:center;position:relative}.mec-load-more-button{box-shadow:none;transition:all .21s ease;font-size:12px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:2px solid #e8e8e8;border-radius:50px;padding:0 28px;margin-bottom:20px;cursor:pointer;line-height:40px;font-family:Montserrat,Helvetica,Arial,sans-serif;height:42px;display:inline-block}.mec-load-more-button:hover{background:#191919;color:#fff;border-color:#191919}.mec-load-more-loading{content:url(../img/ajax-loader.gif);cursor:wait;background:0 0;border-style:none}.mec-load-more-loading:hover{background:0 0}.mec-modal-preloader,.mec-month-navigator-loading{width:100%;height:100%;background:no-repeat rgba(255,255,255,.88) url(../img/ajax-loader.gif) center;border-style:none;position:fixed;left:0;right:0;bottom:0;top:0;z-index:9}.mec-event-calendar-classic .mec-calendar-side .mec-calendar-table{min-height:1024px}.mec-calendar-side .mec-calendar-table{min-height:450px}.mec-skin-weekly-view-events-container.mec-month-navigator-loading{margin-top:0}.mec-calendar.mec-event-calendar-classic .mec-calendar-side{display:block}.mec-skin-daily-view-events-container.mec-month-navigator-loading{margin-top:0}@media only screen and (min-width:961px){.mec-wrap.mec-sm959 .mec-calendar-side .mec-calendar-table{min-height:1px}}@media only screen and (max-width:479px){.mec-calendar-side .mec-calendar-table{min-height:1px}}.mec-event-cover-clean{position:relative;border:1px solid #e6e6e6;padding:8px}.mec-event-cover-clean .mec-event-overlay{height:100%;background-color:rgba(36,36,36,.4);position:absolute;width:100%;left:0;border:8px solid #fff;top:0;transition:all .5s ease-in-out}.mec-event-cover-clean .mec-event-content{color:#fff;position:absolute;bottom:20px;padding:40px 60px;transition:all .5s ease-in-out}.mec-event-cover-clean .mec-event-title{color:#fff;font-weight:700;margin:46px 0 19px;font-size:29px;text-transform:uppercase;text-shadow:0 0 1px rgba(0,0,0,.5)}.mec-event-cover-clean .mec-event-title a{color:#fff;transition:all .5s;text-decoration:none;outline:0;border:none;box-shadow:none}.mec-event-cover-clean .mec-event-title a:hover{text-decoration:underline}.mec-event-cover-clean .mec-event-date{position:absolute;top:-20px;right:60px;color:#fff;width:60px;padding:14px 10px;z-index:1}.mec-event-cover-clean .mec-event-date div{text-align:center;text-transform:uppercase;letter-spacing:1px;line-height:16px}.mec-event-cover-clean .mec-event-date .dday{padding-bottom:15px;border-bottom:1px solid rgba(255,255,255,.5);margin-bottom:13px;font-size:24px}.mec-event-cover-clean .mec-event-date .dmonth{letter-spacing:2px}.mec-event-cover-clean .mec-event-place{font-size:18px;font-family:Roboto,sans-serif}.mec-event-cover-clean .mec-event-image img{width:100%}@media only screen and (max-width:768px){.mec-event-cover-clean .mec-event-content{padding:20px;bottom:5px}.mec-event-cover-clean .mec-event-title{font-size:23px}.mec-event-cover-clean .mec-event-date{right:20px;padding:10px;width:50px}}@media only screen and (max-width:479px){.mec-event-cover-clean .mec-event-content{padding:10px}.mec-event-cover-clean .mec-event-title{font-size:19px;padding-right:25px}.mec-event-cover-clean .mec-event-date{right:-20px;top:-10px}.mec-event-cover-clean .mec-event-detail{font-size:12px}}.mec-month-divider{text-align:center;margin:60px 0 40px 0}.widget .mec-month-divider{margin:10px 0}.mec-month-divider span{text-transform:uppercase;font-size:22px;font-weight:700;padding-bottom:5px;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative}.mec-month-divider span:before{border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-30px;left:50%;width:60px}.widget .mec-month-divider span{font-size:13px}.mec-event-list-standard .mec-events-pagination{margin-top:60px;border-top:4px solid #ebebeb;min-height:80px;padding-top:20px}.mec-event-list-standard .mec-events-pagination .mec-events-pag-previous{float:left;margin-left:0}.mec-event-list-standard .mec-events-pagination .mec-events-pag-next{float:right;margin-right:0}.mec-event-list-standard .mec-event-article{position:relative;display:block;margin-bottom:25px;border:1px solid #e9e9e9;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-list-standard .mec-topsec{display:table;width:100%}.mec-event-list-standard .col-md-3.mec-event-image-wrap{padding-left:0}.mec-event-list-standard .mec-event-content{padding-top:15px;padding-right:30px}.mec-event-list-standard .mec-event-title{font-size:29px;font-weight:700;letter-spacing:-1px;margin:0 0 10px}.mec-event-list-standard .mec-event-title a{color:#292929;transition:color .3s ease}.mec-event-list-standard .mec-col-table-c{display:table-cell;height:100%;vertical-align:middle;float:none!important}.mec-event-list-standard .mec-col-table-c.mec-event-meta-wrap{padding-top:15px}.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{vertical-align:top}.mec-topsec .mec-event-image{line-height:1px}.mec-event-list-standard .mec-event-meta-wrap{border-left:1px solid #eee}.mec-event-list-standard .mec-time-details{text-transform:uppercase;font-size:11px;font-weight:300;padding-top:0;text-align:left;padding-left:30px}.mec-event-list-standard .mec-event-meta .mec-event-address{font-style:normal;letter-spacing:0;font-size:13px;color:#8a8a8a}.mec-event-list-standard .mec-event-meta span.mec-event-d,.mec-event-list-standard .mec-event-meta span.mec-event-m{font-size:17px;font-weight:700;padding-right:6px;color:#444;text-transform:uppercase}.mec-event-list-standard .mec-date-details,.mec-event-list-standard .mec-time-details,.mec-event-list-standard .mec-venue-details{position:relative;padding-left:28px;margin-bottom:10px}.mec-event-list-standard .mec-date-details:before,.mec-event-list-standard .mec-time-details:before,.mec-event-list-standard .mec-venue-details:before{content:"\f041";font-family:fontawesome;position:absolute;left:6px;font-size:15px}.mec-event-list-standard .mec-date-details:before{content:"\f073"}.mec-event-list-standard .mec-time-details:before{content:"\f017"}.mec-event-list-minimal .mec-event-title a{color:#292929;transition:color .3s ease}.mec-event-meta-wrap .mec-price-details{margin-bottom:10px}.mec-price-details i{margin-right:5px;vertical-align:text-top}.mec-event-meta-wrap .mec-event-meta .mec-price-details i:before{font-size:15px}@media only screen and (max-width:960px){.mec-event-list-standard .mec-topsec{display:block}.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:block;width:40%}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{display:block;min-height:230px}.mec-event-list-standard .mec-event-meta-wrap{display:block;border-left:none;border-top:1px solid #eee;width:100%;float:none;padding-top:20px}}@media only screen and (min-width:480px) and (max-width:960px){.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:table-cell}}@media only screen and (max-width:479px){.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap img{float:none;width:100%;padding:0}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{padding:10px 10px 10px 30px}}.mec-wrap .mec-events-cal-links{margin-bottom:0}.mec-single-event #mec-wrap{padding:0;margin-top:35px}.mec-wrap .mec-single-title{margin-top:0;margin-bottom:30px;font-weight:700;font-size:33px}.mec-single-event .mec-event-content{padding:40px 0 30px;margin-bottom:10px}.mec-single-event .mec-events-meta-group-booking,.mec-single-event .mec-frontbox{margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-wrap #main-content{overflow:hidden;padding-top:35px}.mec-single-event .mec-map-get-direction-address-cnt{position:relative}.mec-single-event .mec-map-get-direction-address-cnt input.mec-map-get-direction-address{width:100%;height:46px;padding:13px 10px;margin-bottom:0;background:#fcfcfc;border:1px solid #e0e0e0;border-radius:0;box-shadow:inset 0 2px 5px rgba(0,0,0,.081)}.mec-single-event .mec-map-get-direction-address-cnt input.mec-map-get-direction-address:focus{color:#444;background:#fff;border-color:#b0b0b0;box-shadow:0 0 3px rgba(0,0,0,.2)}.mec-single-event .mec-map-get-direction-btn-cnt input{width:100%}.mec-single-event .mec-map-get-direction-reset{position:absolute;z-index:2;top:5px;right:10px;font-size:11px;cursor:pointer}.mec-events-meta-group-tags{margin-top:20px}.mec-events-meta-group-tags a{display:inline-block;color:#444;font-size:11px;text-transform:uppercase;letter-spacing:1.5px;font-weight:500;padding:3px 7px;border:1px solid #ddd;border-radius:2px;background:#fff;margin:1px 3px}.mec-events-meta-group-tags a:hover{text-decoration:underline;background:#f9f9f9}.mec-local-time-details li{list-style:none}.mec-single-event:not(.mec-single-modern) .mec-local-time-details{background:#f7f7f7;padding:12px 14px 8px;margin-bottom:12px;vertical-align:baseline;position:relative;border:none}.mec-single-event:not(.mec-single-modern) .mec-local-time-details ul{margin:0;padding-left:35px}.mec-single-event:not(.mec-single-modern) .mec-local-time-details h3{border:none;padding-left:15px}.mec-single-event:not(.mec-single-modern) .mec-local-time-details h3:before{display:none}.mec-single-event.mec-single-modern i.mec-sl-speedometer{display:none}.mec-single-event .mec-events-meta-group-booking{padding-bottom:30px}.mec-single-event .mec-events-meta-group-booking ul{list-style:none;margin-left:0;padding-left:0}.mec-single-event .mec-events-meta-group-booking ul li{padding:0;list-style:none;margin-top:40px}.mec-single-event .mec-events-meta-group-booking h4{margin-bottom:20px;font-size:23px;font-weight:700}.mec-single-event .mec-events-meta-group-booking li h4{font-size:19px}.mec-single-event .mec-events-meta-group-booking button,.mec-single-event .mec-events-meta-group-booking input{border-radius:0;margin-bottom:6px}.mec-single-event .mec-events-meta-group-booking button{min-width:170px;margin-top:5px}.mec-single-event .mec-events-meta-group-booking button{margin-left:15px}.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-book-first,.mec-single-event .mec-event-tickets-list{padding-left:15px;padding-right:15px}.mec-single-event label.mec-fill-attendees{margin-left:15px!important}.mec-single-event .mec-events-meta-group-booking .mec-event-ticket-available{display:block;margin-bottom:20px;margin-top:-17px;font-size:11px;color:#8a8a8a}.mec-single-event .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.mec-single-event .mec-events-meta-group-booking form{margin:0}.mec-single-event .mec-events-meta-group-booking h5 span,.mec-single-event .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;display:block;clear:none;padding:5px 1em 3px 0}.mec-single-event .mec-events-meta-group-booking h5 span{display:inline-block}.mec-single-event .mec-events-meta-group-booking h5 span.mec-ticket-variation-name{padding-right:5px;text-transform:capitalize}.mec-single-event .mec-events-meta-group-booking input::-webkit-input-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input:-moz-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:330px;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both}.wbmec-mandatory{padding-left:5px;font-size:14px}.mec-single-event .mec-events-meta-group-booking .mec-red-notification input,.mec-single-event .mec-events-meta-group-booking .mec-red-notification select,.mec-single-event .mec-events-meta-group-booking .mec-red-notification textarea{border:1px solid #ff3c3c}.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=checkbox],.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=radio]{outline:1px solid #ff3c3c}@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}.mec-single-event .mec-booking-button:hover{background-color:#101010!important}.mec-single-event .mec-event-tags a{display:inline-block;color:#444;font-size:11px;text-transform:uppercase;letter-spacing:1.5px;font-weight:500;padding:3px 7px;border:1px solid #ddd;border-radius:2px;background:#fff;margin:1px 3px}.mec-single-event .mec-event-tags:before{font-size:24px;color:#303030;margin-right:5px;content:"\f02c";font-family:fontawesome}.mec-single-event .mec-event-tags{padding-top:13px}.mec-single-event .mec-event-sharing{margin:30px 0 10px}.mec-region.mec-events-abbr,.mec-single-event .mec-street-address{font-style:normal;font-size:13px}.mec-events-meta-group.mec-events-meta-group-venue:before,.mec-single-event-date:before,.mec-single-event-time:before{color:#40d9f1}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-event-social h3{text-transform:uppercase;font-size:15px;font-weight:700;padding-bottom:5px;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative}.mec-single-event .mec-social-single:before{padding:13px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:39px}.mec-single-event .mec-event-social .event-sharing{margin-top:30px}.mec-single-event .mec-event-social ul{list-style:none;margin-left:0}.mec-single-event .mec-event-social li.mec-event-social-icon{display:inline-block}.mec-single-event .mec-event-social li.mec-event-social-icon a{display:inline-block;color:#fff;width:40px;height:40px;padding:9px;font-size:16px;margin-right:5px}.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.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.other-social{background:#ff5d5e}.mec-single-event .mec-event-social a.other-social:hover{background:#cc4949}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4,.mec-single-event .mec-frontbox-title{text-transform:uppercase;font-size:15px;font-weight:700;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative;text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4:before,.mec-single-event .mec-frontbox-title:before{padding:1px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-35px;left:50%}.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-month],.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-year]{width:47%!important;margin-right:12px;margin-top:5px;display:inline-block!important}@media(max-width:768px){.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-month],.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-year]{width:100%!important;margin-right:0;display:block!important}}.mec-event-meta i:before{font-size:20px;vertical-align:middle}.mec-event-meta .mec-single-event-additional-organizers i:before,.mec-event-meta .mec-single-event-organizer i:before{font-size:14px;vertical-align:baseline}#mec-wrap .mec-events-day-time-slot .mec-events-content{float:left;width:33%;padding:0 15px}#mec-wrap .mec-events-day-time-slot .mec-events-event-image{padding-left:0}#mec-events-content .mec-events-abbr{color:#8d8d8d;font-size:14px}.mec-single-event .mec-events-content{margin-bottom:30px}.mec-single-event .mec-organizer-url a{word-wrap:break-word}.mec-single-event #headline{margin:0 0 10px}.mec-single-event #headline h2{padding:0}.mec-single-event .mec-events-meta-group.mec-events-meta-group-gmap .mec-events-venue-map{margin-top:0;padding:8px;border:1px solid #e5e5e5;border-radius:7px}#mec-events-gmap-0{height:325px!important}.mec-events-list .mec-events-day-time-slot .mec-events-event-meta{width:33%;float:left;padding:40px;height:auto;margin:0}.mec-events-day-time-slot .mec-events-content.description.entry-summary{font-size:15px;font-weight:300;color:#8d8d8d}.mec-events-day-time-slot .type-mec_events h2{font-size:28px;padding-bottom:20px}.mec-events-day .mec-events-day-time-slot .type-mec_events{margin:0}.mec-events-day .mec-events-day-time-slot h5{background-color:#8d8d8d}.mec-single-event .mec-event-meta .mec-single-event-additional-organizers .mec-events-single-section-title,.mec-single-event .mec-event-meta .mec-single-event-organizer .mec-events-single-section-title,.mec-single-event .mec-events-meta-date h3{padding-left:0;margin:10px;display:inline-block}.mec-single-event .mec-events-meta-date h3{width:100%}.mec-single-event .mec-events-event-image{border:0}.mec-single-event .mec-events-venue-map{padding:0}.mec-event-cost,.mec-event-more-info,.mec-event-website,.mec-events-meta-date,.mec-single-event-additional-organizers,.mec-single-event-category,.mec-single-event-date,.mec-single-event-label,.mec-single-event-location,.mec-single-event-organizer,.mec-single-event-time{background:#f7f7f7;padding:12px 14px 8px;margin-bottom:12px;vertical-align:baseline;position:relative}.mec-single-event .mec-events-meta-date dd,.mec-single-event .mec-single-event-additional-organizers dd,.mec-single-event .mec-single-event-organizer dd{padding-left:0;margin-bottom:10px}.mec-single-event .mec-events-meta-date dd span,.mec-single-event .mec-single-event-additional-organizers dd span,.mec-single-event .mec-single-event-organizer dd span{display:block;padding-left:12px;color:#8d8d8d}.mec-single-event .mec-events-meta-date i,.mec-single-event .mec-single-event-additional-organizers i,.mec-single-event .mec-single-event-organizer i{margin-right:10px;margin-left:12px}.mec-events-meta-group.mec-events-meta-group-venue dl{margin-bottom:0}address.mec-events-address{line-height:19px;font-style:normal;font-size:12px}.mec-single-event .mec-event-content dt{margin-top:5px}.mec-single-event .mec-single-event-additional-organizers .mec-single-event-additional-organizer{margin-bottom:15px;padding-bottom:5px;border-bottom:1px solid #e4e4e4}.mec-single-event .mec-single-event-additional-organizers .mec-single-event-additional-organizer:last-child{margin-bottom:0;padding-bottom:0;border:none}.mec-event-schedule-content{border-left:4px solid #f0f0f0;padding-top:10px;margin-top:30px;margin-left:25px;margin-bottom:20px;color:#8a8a8a}.mec-event-schedule-content dl{padding-left:24px;font-size:12px;position:relative;margin-bottom:35px}.mec-event-schedule-content dl:before{content:'';display:block;position:absolute;left:0;top:4px;width:20px;height:0;border-top:4px solid #f0f0f0}.mec-event-schedule-content dl dt{margin:0 0 10px;line-height:1.16}.mec-event-schedule-content dl dt.mec-schedule-title{font-size:13px;color:#5a5a5a;font-weight:700}.mec-event-schedule-content dl dt.mec-schedule-description{font-weight:300}.mec-event-schedule-content .mec-schedule-speakers{background:#f7f7f7;padding:10px}.mec-wrap .mec-event-schedule-content h6{font-size:13px;color:#5a5a5a;font-weight:700;display:inline-block}.mec-wrap .mec-event-schedule-content a{font-weight:400;color:#5a5a5a;transition:all .1s ease}.single-mec-events .mec-speakers-details ul{padding:0}.mec-single-event .mec-speakers-details ul li{list-style:none;background:#f7f7f7;padding:5px 5px 18px 5px;margin-top:14px}.mec-single-event .mec-speakers-details ul li a{-webkit-transition:.2s all ease;transition:.2s all ease}.mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a img{float:left;border-radius:50%;transition:.2s all ease;border:2px solid transparent;width:68px;height:68px}.mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a:hover img{border-color:#40d9f1}.mec-single-event .mec-speakers-details ul li .mec-speaker-name{display:inline-block;margin-top:6px;font-size:14px;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}.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}.mec-attendees-list-details .mec-attendee-profile-link span{display:block;color:#000}.mec-calendar{margin-bottom:20px;border:1px solid #e8e8e8;width:100%;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-calendar .mec-calendar-topsec{display:table;background:#fff}.mec-calendar .mec-calendar-topsec .mec-calendar-events-sec{display:none}.mec-calendar .mec-calendar-side{width:590px;display:table-cell;padding:40px;position:relative;text-align:center;box-shadow:0 1px 5px 6px rgba(0,0,0,.005) inset}.mec-calendar .mec-calendar-events-side{display:table-cell;height:100%;border-left:1px solid #efefef;padding:40px;width:100%}.mec-calendar .mec-calendar-events-side .mec-table-side-day{width:46px;height:46px;margin:0 auto 20px;position:relative;text-align:center;line-height:46px;border:1px solid #40d9f1;border-radius:50%;font-size:12px;font-weight:600;padding:0}.mec-calendar .mec-calendar-events-side .mec-table-side-title{text-align:center;font-size:11px;text-transform:uppercase;letter-spacing:3px;margin-bottom:14px}.mec-calendar .mec-calendar-header{position:relative;width:560px;margin-top:8px;margin-bottom:16px}.mec-calendar .mec-calendar-header h2{text-transform:uppercase;font-size:22px;font-weight:700;color:#333}.mec-calendar .mec-event-footer{width:auto;min-height:60px}.mec-calendar dl{display:table;margin:0;border:none;padding:0;table-layout:fixed}.mec-calendar dt{display:table-cell;transition:all .66s ease;color:#4d4d4d;background:#fff;border-radius:44px;font-size:14px;width:80px;height:80px;line-height:80px;text-align:center}.mec-calendar .mec-calendar-table .mec-no-event{display:none}.mec-calendar .mec-calendar-table-head dt{font-weight:700;text-transform:uppercase;font-size:15px}.mec-calendar .mec-calendar-row dt:hover{background:#f4f4f4}.mec-calendar .mec-table-nullday{color:#cacaca}.mec-calendar.mec-box-calendar .mec-table-nullday:last-child{border-right:1px solid #eaeaea}.mec-calendar .mec-next-month:hover,.mec-calendar .mec-prev-month:hover{background:#f4f4f4}.mec-calendar .mec-selected-day,.mec-calendar .mec-selected-day:hover{background:#40d9f1;color:#fff}.mec-calendar .mec-selected-day a{color:#fff}.mec-calendar .mec-has-event{position:relative}.mec-calendar .mec-calendar-row dt.mec-has-event:hover{background:#40d9f1}.mec-calendar .mec-has-event a{cursor:pointer;display:block;width:100%;height:100%;border-radius:50%;color:#4d4d4d;transition:all .25s ease;text-decoration:none;box-shadow:none}.mec-calendar .mec-calendar-row dt.mec-has-event.mec-selected-day a,.mec-calendar .mec-calendar-row dt.mec-has-event:hover a{color:#fff}.mec-calendar .mec-has-event:after{background-color:#40d9f1;border-radius:50%;display:block;content:'';width:8px;height:8px;bottom:14px;left:50%;margin:-4px 0 0 -4px;position:absolute;transition:all .25s ease}.mec-calendar .mec-calendar-row dt.mec-has-event:hover:after{background-color:#fff}.mec-calendar .mec-has-event.mec-selected-day:after{display:none}.mec-calendar .mec-event-article{text-align:left;margin-bottom:0;padding-bottom:25px;padding-top:26px;border-top:1px solid #efefef;transition:all .33s ease}.mec-calendar .mec-event-article:hover{background-color:#fafafa}.mec-calendar .mec-event-article .mec-event-time{font-size:11px;line-height:1.1;margin:0}.mec-calendar .mec-event-article .mec-event-title{font-size:13px;padding:0;margin:10px 0 8px;font-weight:700;text-transform:uppercase}.mec-calendar .mec-event-article .mec-event-title a{text-decoration:none;color:#494949;transition:color .3s ease}.mec-calendar .mec-event-article .mec-event-title a:hover{color:#40d9f1}.mec-calendar .mec-event-article .mec-event-image,.mec-calendar .mec-event-list-classic .mec-event-image img{width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-image{float:left;margin-right:20px;width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-detail{font-size:13px;line-height:1.3;font-family:Roboto,sans-serif;color:#9a9a9a;margin-bottom:0}.mec-calendar .mec-calendar-side .mec-next-month,.mec-calendar .mec-calendar-side .mec-previous-month{cursor:pointer;position:absolute;top:0;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;color:#a9a9a9;font-size:12px;letter-spacing:1px;text-transform:uppercase;padding-left:10px;padding-right:10px;border:1px solid #efefef;border-top:none;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease}.mec-calendar .mec-calendar-side .mec-next-month i,.mec-calendar .mec-calendar-side .mec-previous-month i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-calendar .mec-calendar-side .mec-next-month:hover,.mec-calendar .mec-calendar-side .mec-previous-month:hover{background-color:#f9f9f9;color:#40d9f1}.mec-calendar .mec-calendar-side .mec-previous-month{left:0;border-bottom-right-radius:6px;border-left:none}.mec-calendar .mec-calendar-side .mec-next-month{right:0;border-bottom-left-radius:6px;border-right:none}@media only screen and (min-width:961px){.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-side{width:370px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-header{position:relative;width:350px;margin-top:30px;margin-bottom:20px;padding-top:20px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) dt{width:50px;height:50px;line-height:50px}.mec-wrap.mec-sm959 .mec-calendar.mec-event-calendar-classic dl dt{height:110px}}@media only screen and (max-width:1200px){.mec-calendar .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-calendar .mec-calendar-side{width:370px}.mec-calendar .mec-calendar-header{position:relative;width:350px;margin-top:30px}.mec-calendar dt{width:50px;height:50px;line-height:50px}}@media only screen and (max-width:767px){.mec-calendar .mec-calendar-header h2{font-size:18px}.mec-calendar .mec-calendar-topsec{width:100%}.mec-calendar .mec-calendar-side{width:100%;display:block;padding:30px}.mec-calendar .mec-calendar-header{width:auto}.mec-calendar .mec-calendar-events-side{width:100%;display:block;height:100%;border-left:none;border-top:1px solid #efefef;padding:20px}.mec-calendar dl{width:100%}.mec-calendar dt{width:14%;height:60px;line-height:60px;border-radius:50px}}@media only screen and (max-width:479px){.mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-calendar .mec-calendar-header h2{font-size:16px;margin-top:33px}.mec-calendar dt{height:38px;line-height:38px}.mec-calendar .mec-event-list-classic .mec-event-detail,.mec-calendar .mec-event-list-classic .mec-event-title{font-size:12px}.mec-calendar .mec-event-list-classic .mec-event-time{font-size:10px}}.mec-box-calendar.mec-calendar .mec-has-event a,.mec-box-calendar.mec-calendar dt{border-radius:0}.mec-box-calendar.mec-calendar .mec-calendar-header{margin-top:2px;margin-bottom:30px}.mec-box-calendar.mec-calendar dt{border-bottom:1px solid #eaeaea;border-left:1px solid #eaeaea}.mec-box-calendar.mec-calendar dl dt:last-child{border-right:1px solid #eaeaea}.mec-box-calendar.mec-calendar .mec-calendar-table-head dt{border-top:1px solid #eaeaea;background-color:#f8f8f8}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{background-color:#f4f4f4}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{border-radius:2px;top:40px;border:1px solid #eee;height:30px;line-height:30px;z-index:1}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:60px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:60px}.mec-box-calendar.mec-calendar .mec-calendar-side{box-shadow:none}.mec-box-calendar.mec-calendar .mec-calendar-events-side{border:none}.mec-box-calendar.mec-calendar .mec-calendar-events-side .mec-table-side-day{border-radius:2px}.mec-box-calendar.mec-calendar h4.mec-month-label{position:relative;width:560px;margin-top:2px;margin-bottom:30px;text-transform:uppercase;font-size:22px;font-weight:700;color:#333}.mec-widget .mec-box-calendar.mec-calendar h4.mec-month-label{width:100%;margin-top:8px;font-size:13px}@media only screen and (max-width:1200px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:42px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:42px}.mec-calendar .mec-calendar-header h2{font-size:17px;margin-top:7px}}@media only screen and (max-width:767px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{top:28px;font-size:10px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:30px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:30px}.mec-calendar .mec-calendar-header h2{font-size:15px}}@media only screen and (max-width:479px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{top:16px;font-size:0;padding:4px 0;text-align:center;min-width:33px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:10px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:10px}.mec-box-calendar.mec-calendar .mec-calendar-header h2{font-size:12px;margin-top:15px}.mec-box-calendar.mec-calendar .mec-event-image{margin-right:12px}}.mec-calendar.mec-event-calendar-classic,.mec-calendar.mec-event-calendar-classic .mec-calendar-side{border:none;padding:0;width:100%;height:100%;box-shadow:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-side{display:block}.mec-calendar.mec-event-calendar-classic .mec-calendar-header,.mec-calendar.mec-event-calendar-classic dl{width:100%}.mec-calendar.mec-event-calendar-classic dl dt{width:15%;height:136px;line-height:1.2;text-align:left;padding:5px 7px;position:relative}.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{height:30px!important}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{top:0}.mec-calendar.mec-event-calendar-classic .mec-has-event:after{bottom:auto;top:24px;left:7px;margin:0}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{left:0}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month{right:0}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{text-align:left;background:#fafafa;border:1px solid #eaeaea;border-top:none;padding:10px 20px}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{display:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-event-article:hover{background-color:#fcfcfc}.mec-calendar.mec-event-calendar-classic .mec-selected-day,.mec-calendar.mec-event-calendar-classic dt.mec-selected-day:hover{color:#40d9f1;font-weight:700;background:#fafafa;border-bottom:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-day,.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{display:inline-block;margin:0;margin-bottom:15px;font-weight:700}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-day{margin-left:4px}.mec-calendar.mec-event-calendar-classic .mec-calendar-row dt.mec-has-event a{color:#4d4d4d}.mec-calendar.mec-event-calendar-classic .mec-calendar-row dt.mec-has-event:not(.mec-selected-day):hover a{color:#fff}@media only screen and (max-width:1200px){.mec-calendar.mec-event-calendar-classic dl dt{height:100px}}@media only screen and (max-width:767px){.mec-calendar.mec-event-calendar-classic dl dt{height:40px}}@media only screen and (max-width:479px){.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{padding:10px}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-header h2{font-size:13px;margin-top:8px}}.mec-calendar .mec-event-article.mec-single-event-novel{padding:4px 8px;min-height:25px;margin:0 -4px;border-radius:0}.mec-calendar .mec-event-article.mec-single-event-novel h4{margin:0;font-size:10px;line-height:18px}.mec-calendar.mec-event-container-novel dl dt{padding:3px}.mec-calendar.mec-event-calendar-classic .mec-calendar-novel-selected-day{display:inline-block;padding:4px;margin-left:1px}.mec-calendar.mec-event-calendar-classic .mec-selected-day .mec-calendar-novel-selected-day{color:#fff}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-selected-day,.mec-calendar.mec-event-calendar-classic.mec-event-container-novel dt.mec-selected-day:hover{border-bottom:1px solid #eaeaea}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-calendar-side .mec-calendar-table{min-height:auto}.mec-single-event-novel.light h4{color:#000!important}.mec-single-event-novel.dark h4{color:#fff!important}@media only screen and (max-width:768px){.mec-calendar .mec-event-article.mec-single-event-novel{padding:0;min-height:5px}.mec-calendar .mec-event-article.mec-single-event-novel h4{display:block;font-size:9px}}.mec-event-container-simple .event-single-content-simple{display:none}.mec-event-calendar-classic.mec-event-container-simple .mec-calendar-side .mec-calendar-table{min-height:unset}.mec-event-container-simple .mec-monthly-tooltip h4{font-size:13px;font-weight:500;margin:0;color:#444}.mec-event-container-simple .mec-monthly-tooltip h4:hover{text-decoration:underline;color:#111}.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple{border-bottom:1px dashed #e3e3e3;padding:10px 2px;display:block}.mec-calendar.mec-event-container-simple dl dt.mec-calendar-day{font-size:30px;color:#000}.mec-calendar.mec-event-container-simple .mec-calendar-row dt:hover{background:unset}.mec-calendar.mec-event-container-simple .mec-calendar-row dt,.mec-calendar.mec-event-container-simple .mec-calendar-row dt:last-child,.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt,.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt:last-child{border-width:2px}.mec-calendar.mec-event-container-simple dl dt.mec-selected-day,.mec-calendar.mec-event-container-simple dl dt.mec-selected-day:hover{border-bottom:2px solid #40d9f1;background:unset}.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt{line-height:36px}@media (max-width:768px){.mec-calendar.mec-event-container-simple{overflow-x:scroll}.mec-calendar.mec-event-container-simple .mec-calendar-side{min-width:700px}.mec-event-container-simple .mec-monthly-tooltip h4{font-size:12px}}.mec-wrap.colorskin-custom .mec-calendar.mec-event-container-simple .mec-selected-day:hover{background:#f4f4f4}.mec-event-container-simple .mec-calendar-day .mec-monthly-tooltip.event-single-link-simple:last-of-type{border:none}.mec-tooltip-event-title{font-size:16px;font-weight:700;color:#000;margin-bottom:2px}.mec-tooltip-event-time{font-size:12px;color:#888;margin-bottom:8px;margin-top:5px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-content{padding:17px}.mec-tooltip-event-content{clear:both}.mec-tooltip-event-featured{float:left;margin-right:13px;margin-bottom:1px}.mec-tooltip-event-featured img{max-width:120px}.mec-tooltip-event-desc{font-size:14px;color:#444;line-height:18px}.mec-tooltip-event-desc p{font-size:13px;line-height:1.4;margin-bottom:10px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-box{border-radius:3px!important;border:1px solid #e2e3e4!important;background:#fff!important;box-shadow:0 -1px 30px -2px rgba(0,0,0,.15)!important}.tooltipster-sidetip .tooltipster-arrow{overflow:visible!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-border{border-width:12px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-right .tooltipster-arrow-border{border-right-color:#e2e3e4!important}.tooltipster-sidetip .tooltipster-arrow-border{left:-12px!important;z-index:9999999999!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-background{display:block!important}.tooltipster-sidetip .tooltipster-arrow-background{border-width:11px!important;z-index:99999999999!important}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background{left:-9px!important;top:1px!important;border-right-color:#fff!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background{border-top-color:#fff!important;left:0!important;top:-1px!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border{left:-1px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-top .tooltipster-arrow-border{border-top-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{left:-1px!important;top:-11px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{border-bottom-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background{top:-9px!important;border-bottom-color:#fff!important}.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background{border-left-color:#fff!important;left:-2px!important;top:0!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-left .tooltipster-arrow-border{border-left-color:#e2e3e4!important;left:-1px!important;top:-1px!important}@media (max-width:780px){.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4{word-break:break-all;font-size:13px}}@media (max-width:320px){.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4{font-size:10px}}.mec-calendar.mec-calendar-daily .mec-calendar-day-events .mec-event-article{padding-left:15px;padding-right:15px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month{text-align:center;background-color:#fff;border-bottom:2px solid #f4f4f4;position:relative}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{color:#444;font-size:18px;line-height:1.2;padding:15px 0 11px;margin:0;font-weight:700;letter-spacing:1px;text-transform:uppercase;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-top{text-align:center;padding:10px 0;position:relative;background-color:#fafafa}.mec-calendar.mec-calendar-daily .mec-next-month,.mec-calendar.mec-calendar-daily .mec-previous-month{position:absolute;top:50%;left:50%;margin-top:-25px;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;border:1px solid #e2e2e2;border-radius:50px;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month i,.mec-calendar.mec-calendar-daily .mec-previous-month i{font-size:14px;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month:hover,.mec-calendar.mec-calendar-daily .mec-previous-month:hover{border-color:#d0d0d0;color:#444;box-shadow:0 2px 5px 0 rgba(0,0,0,.075)}.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-150px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:100px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month{min-height:28px;height:28px;line-height:28px;width:28px;margin-top:-14px;border-radius:3px}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2,.mec-calendar.mec-calendar-daily .mec-calendar-d-top h3{margin-top:9px;color:#b9b9b9;font-family:Roboto,sans-serif;font-size:30px;font-weight:100;text-transform:uppercase;margin-bottom:12px;line-height:1}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2{font-size:81px;color:#444;margin-bottom:10px;line-height:1.1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table{overflow:hidden;background:#fff;min-height:60px;border-top:1px solid #e6e6e6;border-bottom:2px solid #f3f3f3;padding:0 50px;position:relative}@media only screen and (min-width:479px){.mec-calendar.mec-calendar-daily .mec-calendar-d-table{padding:0 55px}}.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl{width:1310px;display:block}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{display:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl.mec-weekly-view-week-active{display:block}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt{display:block;background:#fff;width:42px;height:60px;line-height:60px;text-align:center;float:left;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6;border-radius:0}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day:hover,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt:hover{background:#fafafa;box-shadow:0 2px 5px 0 rgba(0,0,0,.065) inset;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day{cursor:default;background:#fff;color:#c1c1c1;line-height:59px;text-align:center;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-has-event{cursor:pointer;font-weight:700;color:#4a4a4a}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-daily-view-day-active,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt.mec-table-d-current{font-size:18px;font-weight:700;background:#fafafa;color:#40d9f1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-prev{float:none;font-size:14px;width:55px;position:absolute;top:0;left:0;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next{left:auto;right:0;border-left:1px solid #e6e6e6;border-right:none}.mec-calendar.mec-calendar-daily .mec-today-container .mec-today-count{font-size:12px;color:#888;text-align:center}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}}.widget .mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}.widget .mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.widget .mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-util-hidden{display:none}.mec-daily-view-date-events,.mec-weekly-view-date-events{list-style:none;margin:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table{padding:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{width:calc(100% - 1px)}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt{width:14.286%;height:70px;line-height:normal;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:hover{background:#fff;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:last-child{border-right:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:12px;font-weight:700;text-transform:uppercase;display:block;margin:15px 0 6px}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-prev{display:none}ul.mec-weekly-view-dates-events,ul.mec-weekly-view-dates-events li{padding:0;margin:0;line-height:initial}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:64px;height:64px;margin-right:10px;font-size:11px;text-transform:uppercase;float:left;text-align:center;padding-top:2px}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:40px;line-height:30px;font-weight:700;display:block;margin-bottom:6px;letter-spacing:1px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-previous-month{margin-left:0;left:12px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-next-month{margin-left:0;left:auto;right:12px}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}}.widget .mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}.mec-week-events-container .mec-weekly-view-dates-events li.mec-no-event-found{list-style:none!important}li.mec-no-event-found .mec-event-title{text-align:center}.mec-widget .mec-calendar{max-width:100%}.mec-widget .mec-calendar dl dt,.mec-wrap.mec-sm959.mec-widget .mec-calendar.mec-event-calendar-classic dl dt{height:40px}.mec-widget .mec-calendar .mec-calendar-events-sec{padding:10px}.mec-widget .mec-calendar .mec-calendar-header h2{font-size:13px;margin-top:8px}.mec-widget .mec-calendar .mec-event-list-classic .mec-event-image{margin-right:12px}.mec-widget .mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-widget .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{font-size:14px}.mec-widget .mec-calendar .mec-event-article .mec-event-image{margin-right:11px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-header{margin-bottom:20px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{font-size:0;padding:4px 0;text-align:center;min-width:33px}.mec-widget .mec-event-calendar-classic .mec-calendar-side .mec-calendar-table{min-height:200px}.mec-widget .mec-event-list-classic{margin-bottom:8px;padding:8px 0}.mec-widget .mec-event-list-classic .mec-event-article{margin-bottom:0;padding:10px 0;position:relative;min-height:86px;padding-left:80px}.mec-widget .mec-event-list-classic .mec-event-date{font-size:10px;line-height:14px;text-transform:uppercase}.mec-widget .mec-event-list-classic .mec-event-title{font-size:13px}.mec-widget .mec-event-list-classic .mec-event-detail{font-size:11px}.mec-widget .mec-event-list-classic .mec-event-image{width:68px;position:absolute;left:0}.mec-event-list-classic .mec-event-image img{width:100%}.mec-widget .mec-event-list-classic .mec-event-detail{overflow:visible}.event-color{width:14px;display:inline-block;height:14px;margin-left:5px;border-radius:50%}.mec-map-lightbox-wp{width:580px;padding:15px 15px 0;background-color:#fff}.mec-map-view-event-detail.mec-event-detail{width:580px;background-color:#e9e9e9;padding:8px 15px}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-article{padding:0 0 15px;margin:0}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-image{width:70px;margin-right:15px}.mec-marker-infowindow-wp{padding:10px}.mec-marker-infowindow-wp .mec-marker-infowindow-count{width:60px;height:60px;display:block;text-align:center;line-height:60px;border:1px solid #40d9f1;border-radius:50%;font-size:32px;color:#40d9f1;float:left;margin-right:11px}.mec-marker-infowindow-wp .mec-marker-infowindow-content{overflow:hidden;padding-top:6px}.mec-marker-infowindow-wp .mec-marker-infowindow-content span{display:block;color:#222}.mec-marker-infowindow-wp .mec-marker-infowindow-content span:first-child{font-size:15px;font-weight:700}.mec-marker-wrap{display:inline-block;width:35px;height:35px;margin:15px 0 0 4px;border-radius:50% 50% 50% 0;background:#00cae9;animation-name:mec-map-bounce;animation-fill-mode:both;animation-duration:1s;border:3px solid #fff;cursor:pointer}.mec-marker-wrap .mec-marker{margin-top:5px;display:block;-webkit-transform:rotate(45deg);transform:rotate(45deg);text-align:center;color:#fff;font-size:17px}.mec-marker-wrap .mec-marker-pulse-wrap{-webkit-transform:rotate(45deg);transform:rotate(45deg);display:inline-block;margin-left:-11px;margin-top:0}.mec-marker-wrap .mec-marker-pulse{display:inline-block;background:#c5c5c5;border-radius:50%;height:14px;width:14px;-webkit-transform:rotateX(55deg);transform:rotateX(55deg);z-index:-2}.mec-marker-wrap .mec-marker-pulse:after{content:"";border-radius:50%;height:40px;width:40px;position:absolute;margin:-13px 0 0 -13px;animation:pulsate 1s ease-out;animation-iteration-count:infinite;opacity:0;box-shadow:0 0 1px 2px #00cae9;animation-delay:1.1s}@keyframes pulsate{0%{transform:scale(.1,.1);opacity:0}50%{opacity:1}100%{transform:scale(1.2,1.2);opacity:0}}@keyframes mec-map-bounce{0%{opacity:0;transform:translateY(-2000px) rotate(-45deg)}60%{opacity:1;transform:translateY(30px) rotate(-45deg)}80%{transform:translateY(-10px) rotate(-45deg)}100%{transform:translateY(0) rotate(-45deg)}}.mec-skin-grid-container .mec-skin-map-container,.mec-skin-list-container .mec-skin-map-container{margin-bottom:20px}.mec-single-event{margin-top:10px}.mec-single-event .mec-events-meta-group-countdown{color:#c9c9c9;text-align:center;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-events-meta-group-countdown .countdown-w{text-align:center;font-size:36px;margin:0 auto;padding:40px 0 0;position:relative;display:table;table-layout:fixed}.mec-events-meta-group-countdown .countdown-w .icon-w{font-size:24px}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:15px;font-weight:300;letter-spacing:1px;text-transform:uppercase;position:relative}.mec-events-meta-group-countdown .countdown-w .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px;width:190px;font-size:72px;transition:all .3s ease-in-out;line-height:1.2}.mec-events-meta-group-countdown .countdown-w .block-w.done-w{border:0 none}.mec-events-meta-group-countdown .countdown-w span{padding:24px 0 20px}.mec-events-meta-group-countdown .countdown-w .div-d{display:none}.mec-events-meta-group-countdown .countdown-w .countdown-message{display:none}.mec-events-meta-group-countdown .countdown-w .block-w i{display:none}#countdown{list-style:none;margin-bottom:0;margin-top:0;margin-left:0;padding-left:0}.mec-events-meta-group-countdown .mec-end-counts h3{display:inherit;text-align:center;font-size:16px;right:50%}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:23px}@media (min-width:481px) and (max-width:768px){.mec-events-meta-group-countdown .countdown-w{padding:0}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:12px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:34px}}@media (min-width:320px) and (max-width:480px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:10px}.mec-events-meta-group-countdown .countdown-w span{font-size:28px}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:16px}}@media (max-width:320px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:9px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:22px}}.info-msg,.mec-error,.mec-success,.warning-msg{margin:10px 0;padding:10px;border-radius:3px 3px 3px 3px;font-size:13px}.info-msg{color:#059;background-color:#bef}.mec-success{color:#0dbf52;background-color:#cef7ce}.warning-msg{color:#9f6000;background-color:#feefb3}.mec-error{color:#d8000c;background-color:#ffbaba}.mec-fes-form,.mec-fes-list{background:#f8feff;padding:30px 3%;color:#798f96;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important}.mec-fes-list .mec-fes-list-top-actions,.mec-fes-list ul{margin:0 auto 15px;max-width:960px;list-style:none}.mec-fes-form-cntt .dashicons-editor-help{display:none}.mec-fes-list ul li *{text-decoration:none!important}.mec-fes-list ul li{padding:20px 15px;border-radius:3px;margin-bottom:15px;border:1px solid #cfeff5;box-shadow:0 2px 6px -4px #cfeff5;background:#fff;line-height:normal}.mec-fes-list ul li a{box-shadow:none;color:#181818}.mec-fes-list ul li a:hover{color:#40d9f1}.mec-fes-list ul li .mec-event-title{font-size:17px;font-weight:600;width:calc(100% - 250px);display:inline-block}@media (max-width:600px){.mec-fes-list ul li .mec-event-title{font-size:13px}}.mec-fes-list .mec-event-status{color:#fff!important;border-color:transparent!important}.mec-fes-form .mec-book-confirmed,.mec-fes-list .mec-book-confirmed{background:#50d477!important}.mec-fes-form .mec-book-pending,.mec-fes-list .mec-book-pending{background:#fcbe69!important}.mec-fes-form .mec-book-rejected,.mec-fes-list .mec-book-rejected{background:#fe686a!important}.mec-fes-form .mec-book-other,.mec-fes-list .mec-book-other{background:#40d9f1!important}.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view{font-size:11px;padding:0;border:0;background:#f7f8f9;float:right;margin-left:5px;border-radius:2px;transition:all .2s ease}.mec-fes-list ul li .mec-fes-event-export a,.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view a{padding:4px 8px;display:inline-block;border:1px solid #e7e8e9;border-radius:2px;color:#789;position:relative}@media (max-width:600px){.mec-fes-list ul li .mec-fes-event-export a,.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view a{font-size:10px}}.mec-fes-list ul li .mec-fes-event-remove:hover{cursor:pointer;background:#f96f8a;border-color:#f96f8a;color:#fff}.mec-fes-list ul li .mec-fes-event-export a:hover,.mec-fes-list ul li .mec-fes-event-view a:hover{background:#40d9f1;color:#fff;border-color:#40d9f1}.mec-fes-form-top-actions a,.mec-fes-list-top-actions a{position:relative;border:none;border-radius:3px;color:#fff!important;display:inline-block;font-size:13px;line-height:1;text-transform:none;font-weight:400;text-decoration:none;cursor:pointer;margin-bottom:20px!important;margin-right:10px;line-height:1;letter-spacing:0;padding:15px 22px;background:#39c36e;box-shadow:0 1px 7px -3px #39c36e!important;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease}.mec-fes-form-top-actions a:hover,.mec-fes-list-top-actions a:hover{background:#222;color:#fff}.mec-fes-list-top-actions a{font-weight:600;text-transform:capitalize}.mec-fes-form-top-actions a:before{content:"";border:solid #fff;border-width:0 2px 2px 0;display:inline-block;padding:6px;margin-right:5px;vertical-align:sub;transform:rotate(135deg);-webkit-transform:rotate(135deg)}.mec-fes-form .mec-form-row,.mec-fes-list .mec-form-row{margin-bottom:10px;clear:both}.mec-fes-form label{font-size:13px;display:block;color:#798f96;font-weight:400;padding:0 0 4px 2px}.mec-fes-form input+label{padding-top:8px;padding-left:3px;margin:0;display:inline-block;vertical-align:top}.mec-fes-form .post-status{float:right!important;margin:0 5px;color:#fff;padding:0 10px;border-radius:12px;font-style:italic;font-size:18px}.mec-fes-form input[type=email],.mec-fes-form input[type=number],.mec-fes-form input[type=password],.mec-fes-form input[type=tel],.mec-fes-form input[type=text],.mec-fes-form select,.mec-fes-form textarea{min-width:inherit;width:auto;display:inline;min-height:30px;font-size:13px;padding:10px;margin-bottom:20px;clear:both;background:#fff;border:1px solid #cfeff5;box-shadow:0 2px 5px rgba(207,239,245,.38) inset;border-radius:3px;height:40px;max-width:280px;color:#798f96}.mec-fes-form input{background:#fff!important;border-radius:3px!important;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important}.mec-fes-form textarea{height:80px}.mec-fes-form input::-webkit-input-placeholder{color:#798f96}.mec-fes-form input::-moz-placeholder{color:#798f96}.mec-fes-form input:-ms-input-placeholder{color:#798f96}.mec-fes-form input:-moz-placeholder{color:#798f96}#mec_more_info_target{width:100%}@media only screen and (min-width:961px){.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form textarea{width:100%;display:inline-block}}@media only screen and (max-width:768px){.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form textarea{width:100%}}.mec-fes-form input[type=text]#mec_fes_title{padding:5px 10px;min-height:32px;height:50px;background:#fff!important;max-width:100%;font-size:19px;font-weight:400}.mec-fes-form input[type=checkbox],.mec-fes-form input[type=radio]{display:inline!important;float:left;margin:5px 5px 0 0}.mec-fes-form input[type=email]:focus,.mec-fes-form input[type=number]:focus,.mec-fes-form input[type=password]:focus,.mec-fes-form input[type=tel]:focus,.mec-fes-form input[type=text]:focus,.mec-fes-form select:focus,.mec-fes-form textarea:focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-form-row .mec-color{cursor:pointer}.mec-form-row.mec-available-color-row span{margin:10px;width:14px;height:14px;display:inline-block;margin-right:6px;border-radius:20px 20px 20px 20px;vertical-align:middle}.mec-form-row.mec-available-color-row span:first-of-type{margin-left:0}.mec-fes-form.mec-fes-form .mec-tooltip{display:inline}.mec-fes-form-cntt .dashicons-editor-help{display:block}.mec-fes-form .mec-tooltip:hover:after,.mec-fes-form .mec-tooltip:hover:before{display:none}.mec-fes-form.mec-fes-form .mec-tooltip{display:inline-flex;bottom:7px}.mec-fes-form .mec-tooltip .box{min-width:300px;max-width:600px;display:inline-block;left:26px;top:50%;transform:translateY(-50%);padding:0;margin-top:8px;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.3;position:absolute;z-index:9999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s}#webnus-dashboard .mec-fes-form .mec-tooltip .box p,.mec-fes-form .mec-tooltip .box p{color:#fff;font-size:14px;line-height:1.3;margin:0}.mec-fes-form .mec-tooltip:hover .box{visibility:visible;opacity:1}.mec-fes-form .mec-tooltip:hover .box{padding:20px;border-radius:8px}.mec-fes-form .mec-tooltip .box h5{color:#fff;font-size:17px;font-weight:600;margin:-30px -20px;padding:20px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #32363a;border-radius:6px 6px 0 0;z-index:9999}#webnus-dashboard .mec-fes-form .mec-tooltip .box p a,.mec-fes-form .mec-tooltip .box p a{color:#40d9f1;margin-top:10px;margin-left:0;font-weight:400;position:relative;text-decoration:none;display:block;width:max-content}.mec-fes-form .mec-tooltip .box a:hover{color:#f90}.mec-fes-form .mec-tooltip .box:after{display:block;position:absolute!important;top:100%!important;right:50%!important;margin-top:-6px!important;margin-right:-6px!important;width:12px!important;height:24px!important;overflow:hidden!important;transform:rotate(-90deg)!important}.mec-fes-form .mec-tooltip .box:before{display:block;content:''!important;position:absolute!important;width:12px;height:12px;left:-10px!important;top:50%!important;transform:translate(50%,-50%) rotate(-45deg)!important;background-color:#535a61!important;box-shadow:0 8px 9px -4px #535a61!important;z-index:0!important}.mec-fes-form .mec-tooltip .box.top{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-fes-form .mec-tooltip .box.top:after{top:50%!important;right:100%!important}.mec-fes-form .mec-tooltip .box.top:before{left:50%!important;top:100%!important}.mec-fes-form .mec-tooltip .box.bottom{left:50%;top:auto;bottom:0;transform:translate(-50%,100%);margin-bottom:-20px;margin-left:-10px}.mec-fes-form .mec-tooltip .box.bottom:after{top:0!important;right:50%!important;background-color:#3a3f44!important}.mec-fes-form .mec-tooltip .box.bottom:before{left:50%!important;top:-7px!important;transform:translateX(-50%);background-color:#3a3f44!important}.mec-fes-form .mec-tooltip .box.left{left:auto;right:26px;top:50%;transform:translateY(-50%)}.mec-fes-form .mec-tooltip .box.left:before{right:0!important;left:auto!important;top:50%!important}.mec-fes-form .mec-tooltip{display:inline-block;position:relative;margin-right:10px;cursor:help;bottom:5px;left:3px}.mec-fes-form .mec-tooltip:last-child{margin-right:0}.mec-fes-form .mec-tooltip:hover:after{background:#313130;border-radius:5px;bottom:24px;color:#fff;content:attr(title);left:-75px;padding:10px;position:absolute;z-index:98;width:240px}.mec-fes-form .mec-tooltip:hover:before{border:solid;border-color:#313130 transparent;border-width:6px 6px 0;bottom:18px;content:"";left:30%;position:absolute;z-index:99}.mec-fes-form .mec-tooltip .dashicons-before:before{font-size:24px;color:#008aff;line-height:37px}.mec-fes-form .mec-tooltip a:focus{box-shadow:none}.mec-form-row .bootstrap_unvalid{display:block;border:2px solid red;position:relative;display:inline-block;border-bottom:1px dotted #000}.mec-fes-form .mec-tooltiptext{visibility:hidden;width:120px;background-color:red;color:#fff;text-align:center;border-radius:6px;padding:5px 0;position:absolute;z-index:1}.mec-fes-form .mec-tooltip .content p a{display:none}@media only screen and (min-width:961px){.mec-fes-form .mec-fes-form-cntt,.mec-fes-form .mec-fes-form-sdbr{width:68%;float:left;padding-right:20px}.mec-fes-form .mec-fes-form-sdbr{width:32%;padding-right:0;padding-left:20px}.mec-fes-submit-mobile{display:none}}.mec-fes-form .mec-meta-box-fields{padding:0 20px 20px;border:1px solid #cfeff5;margin-bottom:20px!important;box-shadow:0 2px 6px -3px #cfeff5;border-radius:3px;background:#fff}.mec-fes-form .mec-meta-box-fields h4{margin:0 -20px;font-size:15px;font-weight:600;letter-spacing:0;color:#40d9f1;text-transform:capitalize;padding:15px 20px;background:#ecfcff;margin-bottom:20px;border-radius:3px}.mec-fes-sub-button{width:100%}.mec-available-color-row span.color-selected{border:3px solid #fff;box-sizing:content-box;box-shadow:0 0 0 2px #40d9f1,0 2px 8px -1px #40d9f1}.mec-fes-loading:before{content:url(../img/ajax-loader.gif);background:0 0;border-style:none;display:block;margin-left:47%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:190px;margin-right:1.4%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-1,.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-2{width:120px;margin-right:10px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].widefat{width:100%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row{border-bottom:none;padding-bottom:10px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-6{width:39%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row button{margin-right:0;padding:9px 26px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row button.mec-add-hourly-schedule-button{font-size:12px;height:30px;line-height:25px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row .description{display:inline-block;border-left:1px dashed #bfcacc;margin-left:12px;line-height:28px;padding-left:12px;margin-top:5px;font-style:italic}@media only screen and (max-width:768px){.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:100%!important}}#mec_fes_form_message{max-width:838px;margin:10px auto;display:block!important;text-align:center}.mec-wrap .mec-totalcal-box{position:relative;border:1px solid #efefef;padding:20px 5px;margin:0 0 20px;background:#fafafa;overflow:hidden;box-shadow:0 3px 2px 0 rgba(0,0,0,.012);min-height:78px}.mec-wrap .mec-totalcal-box i{float:left;margin:0;width:36px;height:36px;background:#fff;border:1px solid #efefef;text-align:center;padding:10px 0;font-size:15px;color:#888}.mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-wrap .mec-totalcal-box input,.mec-wrap .mec-totalcal-box select{width:auto;min-height:36px;height:36px;line-height:36px;background:#fff;font-size:13px;color:#777;border:1px solid #efefef;margin:0 0 0 -1px;float:left;padding:0 5px;font-family:Roboto,Helvetica,Arial,sans-serif}.mec-wrap .mec-totalcal-box input[type=submit]{cursor:pointer;padding:0 16px;text-transform:uppercase;font-size:11px;font-family:Montserrat,Helvetica,Arial,sans-serif;transition:all .21s ease}.mec-wrap .mec-totalcal-box input[type=submit]:hover{background:#222;color:#fff}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{display:inline-block;text-transform:uppercase;font-family:Montserrat,Helvetica,Arial,sans-serif;font-size:11px;padding:0 12px;cursor:pointer}.mec-wrap .mec-totalcal-box .mec-totalcal-view span:hover{color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected{color:#fff;background:#40d9f1;border-color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view{text-align:right;float:right}.mec-wrap .mec-totalcal-box input[type=search]{width:calc(100% - 36px)}@media only screen and (min-width:961px) and (max-width:1200px){.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-3,.mec-wrap .mec-totalcal-box .col-md-4,.mec-wrap .mec-totalcal-box .col-md-5{width:100%;float:none;padding-bottom:20px;clear:both;overflow:hidden}}@media only screen and (min-width:768px) and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-4{position:relative;right:10px;top:20px;width:initial}.mec-wrap .mec-totalcal-box .col-md-5{padding-bottom:0}.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:767px){.mec-wrap .mec-totalcal-box .mec-totalcal-view{float:none}.mec-wrap .mec-totalcal-box .col-md-4{padding-bottom:0}}@media only screen and (max-width:479px){.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 8px;font-size:10px}.mec-wrap .mec-totalcal-box input[type=submit]{padding:0 10px;font-size:10px}}@media only screen and (min-width:961px){.mec-wrap .mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5,.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-3{width:100%;float:none;padding-bottom:20px;clear:both;overflow:hidden}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-4{position:absolute;right:10px;top:20px;width:initial}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5{padding-bottom:0;width:100%}}@media (min-width:961px) and (max-width:1200px){.mec-full-calendar-wrap .mec-totalcal-box{padding:20px 20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{padding-bottom:20px!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{min-width:calc(30% - 10px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3:last-child select{min-width:calc(50% - 19px)}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view{margin-right:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:10px;text-align:center}}@media (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box{padding:20px 20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{padding-bottom:10px!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px);margin-bottom:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view{margin-right:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:10px;text-align:center}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:100%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:absolute;top:20px}}@media (min-width:780px) and (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:absolute;top:20px}}@media(max-width:780px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{width:calc(50% - 18px)!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:unset;padding-right:0}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:20%;text-align:center;font-size:10px}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 7px;margin-top:20px}}@media(max-width:480px){.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:20%;text-align:center;font-size:10px}}.mec-search-form{padding:20px 10px}.mec-search-form .mec-dropdown-wrap{display:table;width:100%}.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{padding:0 10px;float:left;min-height:55px}.mec-search-form .mec-date-search,.mec-search-form .mec-text-input-search{width:50%;min-height:36px;display:block}.mec-full-calendar-wrap .mec-search-form .mec-date-search,.mec-full-calendar-wrap .mec-search-form .mec-text-input-search{width:100%}.mec-full-calendar-wrap .mec-search-form .col-md-3,.mec-full-calendar-wrap .mec-search-form .col-md-5,.mec-full-calendar-wrap .mec-search-form .col-md-6,.mec-full-calendar-wrap .mec-search-form .col-md-8{padding:0}.mec-widget .mec-search-form .mec-date-search,.mec-widget .mec-search-form .mec-text-input-search{width:100%}.mec-widget .mec-search-form .mec-text-input-search{margin-top:10px}.mec-search-form .mec-date-search{clear:left}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:table-cell;float:none}.mec-widget .mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block}.mec-wrap .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{width:calc(100% - 36px);margin-bottom:20px}.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 106px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}@media only screen and (max-width:767px){.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{width:100%;float:none}.mec-search-form .mec-date-search{min-height:55px}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:50%;float:left}}@media only screen and (max-width:960px){.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 124px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}}@media only screen and (max-width:479px){.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:100%;float:none}}.ui-datepicker{background-color:#fff;border:1px solid #66afe9;border-radius:4px;box-shadow:0 0 8px rgba(102,175,233,.6);display:none;margin-top:4px;padding:10px;width:240px}.ui-datepicker a,.ui-datepicker a:hover{text-decoration:none;cursor:pointer}.ui-datepicker a:hover,.ui-datepicker td:hover a{color:#2c6396;-webkit-transition:color .1s ease-in-out;-moz-transition:color .1s ease-in-out;-o-transition:color .1s ease-in-out;transition:color .1s ease-in-out}.ui-datepicker .ui-datepicker-header{margin-bottom:4px;text-align:center}.ui-datepicker .ui-datepicker-title{font-weight:700}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{cursor:default;font-family:dashicons;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;height:20px;line-height:1.4;margin-top:2px;width:20px}.ui-datepicker .ui-datepicker-prev{float:left;text-align:left}.ui-datepicker .ui-datepicker-next{float:right;text-align:center}.ui-datepicker .ui-datepicker-prev:before{content:"\f341"}.ui-datepicker .ui-datepicker-next:before{content:"\f345"}.ui-datepicker .ui-icon{display:none}.ui-datepicker .ui-datepicker-calendar{table-layout:fixed;width:100%}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker .ui-datepicker-calendar th{text-align:center;padding:4px 0}.ui-datepicker .ui-datepicker-calendar td{border-radius:4px;-webkit-transition:background-color .1s ease-in-out,color .1s ease-in-out;-moz-transition:background-color .1s ease-in-out,color .1s ease-in-out;-o-transition:background-color .1s ease-in-out,color .1s ease-in-out;transition:background-color .1s ease-in-out,color .1s ease-in-out}.ui-datepicker .ui-datepicker-calendar td:hover{background-color:#eee;cursor:pointer}.ui-datepicker .ui-datepicker-calendar td a{text-decoration:none}.ui-datepicker .ui-datepicker-current-day{background-color:#4289cc}.ui-datepicker .ui-datepicker-current-day a{color:#fff}.ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover{background-color:#fff;cursor:default}.mec-owl-theme .owl-dots .owl-dot{border:none}.event-carousel-type1-head .mec-event-image{position:relative;min-height:150px}.event-carousel-type1-head .mec-event-image img{width:100%}.mec-event-carousel-content .mec-event-carousel-title a{transition:all .2s ease}.event-carousel-type1-head .mec-event-date-carousel{position:absolute;top:25px;left:1px;font-size:41px;width:160px;color:#fff;font-weight:500;background-color:#40d9f1;padding-left:21px;height:97px;line-height:2.3;padding-right:85px}.event-carousel-type1-head .mec-event-date-carousel:after{content:"";position:absolute;display:inline-block;z-index:-1;bottom:-13px;left:5px;width:0;border-width:13px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.event-carousel-type1-head .mec-event-date-info{font-size:12px;font-weight:300;position:absolute;top:27px;left:75px}.event-carousel-type1-head .mec-event-date-info-year{font-size:12px;font-weight:300;position:absolute;top:45px;left:75px}.mec-event-carousel-content{border:1px solid #e8e8e8;border-top:none;margin-top:-5px;padding:34px 9px 11px 37px}.mec-event-carousel-content .mec-event-carousel-title a{font-size:23px;font-weight:500;color:#000;letter-spacing:-1px}.mec-event-carousel-content p{font-size:14px;color:#7a7272;font-weight:300}.mec-owl-crousel-skin-type1 .owl-item .mec-event-article{padding:0 19px}.mec-event-carousel-type1 .owl-page.active span{background-color:#00aeef;height:14px;width:14px}.mec-event-carousel-type1 .mec-event-carousel-content{margin-bottom:15px;box-shadow:0 1px 2px rgba(0,0,0,.04);transition:all .27s ease}.mec-event-carousel-type1 .mec-event-carousel-content:hover{box-shadow:0 0 35px rgba(0,0,0,.07)}@media only screen and (min-width:768px) and (max-width:1000px),(min-width:270px) and (max-width:448px){.event-carousel-type1-head .mec-event-date-carousel{font-size:25px;line-height:2.5;padding-right:70px;height:64px;width:120px}.event-carousel-type1-head .mec-event-date-carousel:after{left:7px}.event-carousel-type1-head .mec-event-date-info{font-size:10px;top:13px;left:55px}.event-carousel-type1-head .mec-event-date-info-year{font-size:10px;top:25px;left:55px}.event-carousel-type1-head .mec-event-date-carousel:after{top:48px}}.event-carousel-type2-head{background:#fff;border:1px solid #e6e6e6}.event-carousel-type2-head .mec-event-carousel-content-type2{margin-top:15px;min-height:182px}.event-carousel-type2-head .mec-event-carousel-content-type2 .mec-event-date-info{font-size:15px;color:#9a9a9a;font-weight:300}.event-carousel-type2-head .mec-event-carousel-content-type2 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-carousel-content-type2 .mec-event-carousel-title a{color:inherit}.mec-event-carousel-type2 .event-carousel-type2-head .mec-event-carousel-content-type2 p{font-size:16px;font-weight:300;color:#444}.event-carousel-type2-head .mec-event-footer-carousel-type2{margin-top:33px;position:relative}.mec-event-carousel-type2 .mec-event-footer-carousel-type2 .mec-event-sharing-wrap{left:0}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-event-sharing-wrap>li{border:none;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button{border:1px solid #e4e4e4;float:right;padding:7px 23px 7px;font-size:12px;text-transform:uppercase;color:#707070;font-weight:500;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button:hover{color:#fff}.mec-event-article .event-carousel-type2-head{padding:10%;margin-right:-1px}.mec-event-carousel-type2 .mec-owl-carousel .owl-wrapper-outer{border-right:1px solid #e6e6e6}.mec-wrap .mec-event-carousel-type2 .owl-next,.mec-wrap .mec-event-carousel-type2 .owl-prev,.mec-wrap .mec-event-carousel-type3 .owl-next,.mec-wrap .mec-event-carousel-type3 .owl-prev,.mec-wrap .mec-event-carousel-type4 .owl-next,.mec-wrap .mec-event-carousel-type4 .owl-prev{transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:47%;background-color:transparent!important}.mec-event-carousel-type2 .owl-next{right:-60px}.mec-event-carousel-type2 .owl-prev{left:-60px}.mec-event-carousel-type2 .owl-next i,.mec-event-carousel-type2 .owl-prev i,.mec-event-carousel-type3 .owl-next i,.mec-event-carousel-type3 .owl-prev i,.mec-event-carousel-type4 .owl-next i,.mec-event-carousel-type4 .owl-prev i{font-size:40px;color:#282828}.mec-event-carousel-type2 .owl-next i:hover,.mec-event-carousel-type2 .owl-prev i:hover,.mec-event-carousel-type3 .owl-next i:hover,.mec-event-carousel-type3 .owl-prev i:hover{color:#000;cursor:pointer}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}@media only screen and (min-width:320px) and (max-width:768px){.mec-event-carousel-type2 .owl-next,.mec-event-carousel-type2 .owl-prev,.mec-event-carousel-type3 .owl-next,.mec-event-carousel-type3 .owl-prev,.mec-event-carousel-type4 .owl-next,.mec-event-carousel-type4 .owl-prev{position:initial;top:100%}}.mec-event-carousel-type3 .mec-event-article{margin:0 10px}.event-carousel-type3-head .mec-event-image,.event-carousel-type3-head .mec-event-image img{width:100%;height:auto}.event-carousel-type3-head .mec-event-footer-carousel-type3{background:#fff;display:inline-block;width:calc(100% - 40px);margin-top:-74px;position:relative;margin-left:20px;margin-right:20px;margin-bottom:6px;padding:8% 11%;box-shadow:0 2px 10px -2px rgba(0,0,0,.2)}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button{border:1px solid #e4e4e4;text-transform:uppercase;float:right;padding:7px 23px 7px;font-size:12px;color:#707070;font-weight:500}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button:hover{color:#fff}.mec-event-footer-carousel-type3 span{font-size:15px;color:#9a9a9a;font-weight:300;display:block;margin-top:30px}.mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:29px;font-weight:700}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-footer-carousel-type3 .mec-event-carousel-title a{color:inherit}.event-carousel-type3-head .mec-event-footer-carousel-type3 p{font-size:16px;font-weight:300;color:#444!important;margin-bottom:36px}.mec-event-carousel-type3 .owl-next{right:-70px}.mec-event-carousel-type3 .owl-prev{left:-70px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap{left:11%}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}.event-carousel-type3-head .mec-end-date-label{display:inline;margin-left:2px}.event-carousel-type4-head.clearfix{position:relative;overflow:hidden;background:#fff}.event-carousel-type4-head .mec-event-overlay{position:absolute;left:0;right:0;bottom:0;top:0;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-hover-carousel-type4{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out;opacity:0;visibility:hidden}.mec-event-carousel-type4 .mec-event-article{margin:0 10px}.mec-event-carousel-type4 .mec-event-article:hover .mec-event-hover-carousel-type4{opacity:1;visibility:visible}.mec-event-hover-carousel-type4 .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-hover-carousel-type4 .mec-event-date{font-size:11px;text-transform:uppercase;font-weight:400;line-height:1.6}.mec-event-hover-carousel-type4 .mec-event-date span{display:block;font-weight:700;font-size:14px}.mec-event-hover-carousel-type4 .mec-event-title{color:#fff;margin:20px 0 38px;font-size:16px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-hover-carousel-type4 .mec-btn-wrapper{text-align:left}.mec-event-hover-carousel-type4 .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:10px 14px;letter-spacing:1.5px;font-size:11px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-hover-carousel-type4 .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-carousel-type4 .owl-next{right:-70px}.mec-event-carousel-type4 .owl-prev{left:-70px}.mec-carousel-type4-head{margin-bottom:25px}.mec-carousel-type4-head-title{padding:0 11px;text-align:left;font-weight:700;font-size:20px;color:#000}.mec-carousel-type4-head-link{text-align:right;padding:0 11px}.mec-carousel-type4-head-link a{background:#222;color:#fff;padding:10px 38px;transition:all .3s ease}.mec-carousel-type4-head-link a:hover,.mec-carousel-type4-head-link a:visited{color:#fff}@media (max-width:960px){.mec-event-carousel-type4 .owl-stage{left:-50px}}.mec-wrap .mec-event-countdown-style1{color:#fff;padding:0!important;display:table;background:#437df9}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1{z-index:5;padding:50px 1% 50px 4%;display:table-cell;float:none;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2{background-color:rgba(0,0,0,.05);height:100%;padding-top:0;display:table-cell;float:none;position:relative;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{background-color:#f8f8f8;display:table-cell;float:none;text-align:center;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style1 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{content:"";position:absolute;display:inline-block;z-index:1;top:50%;margin-top:-11px;right:-24px;width:0;border-width:12px;border-style:solid;border-color:transparent transparent transparent #4077ed}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style1 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto}.mec-event-countdown-style1 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style1 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (min-width:1200px){.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%}}@media (max-width:960px){.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%;transform:rotate(90deg)}}@media (max-width:480px){.mec-event-countdown-style1 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{padding:10px 5px;min-width:50px;margin:3px 1px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:8px}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{display:inline}}.mec-wrap .mec-event-countdown-style2{color:#fff;padding:30px 0;background:#437df9;max-width:600px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part3{width:100%;float:none;vertical-align:middle;padding:50px 10% 50px 10%}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2{padding-top:12%;padding-bottom:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style2 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date-place{text-align:left;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 8px}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#222;background:#fff;transition:all .24s ease}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button:hover{background:#222;color:#fff}.mec-event-countdown-style2 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0}.mec-event-countdown-style2 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style2 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (max-width:767px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:80px;padding:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:26px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:11px}}@media only screen and (max-width:479px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:40px;padding:15px 10px;margin:2px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:20px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:9px}}@media (max-width:380px){.mec-event-countdown-style2 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{padding:10px 4px;margin:4px 1px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:7px}}.mec-wrap .mec-event-countdown-style3{color:#fff;padding:0;background:#282828;display:table;width:100%}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1{width:68%;padding:50px 1% 50px 4%;vertical-align:middle;display:table-cell;position:relative}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:32%;display:table-cell;position:relative;padding-bottom:0;padding-top:0}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 img{width:100%;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{font-weight:300;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{color:#fff;font-size:36px;letter-spacing:-2px;font-weight:700;line-height:1;margin-top:-10px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style3 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style3 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto;position:absolute;top:40px;right:20px}.mec-event-countdown-style3 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style3 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:11px;color:#888;margin:8px 0 0;line-height:1}.mec-event-countdown-style3 .mec-event-date{width:176px;height:96px;background:#40d9f1;color:#fff;font-size:13px;position:absolute;left:-27px;top:146px}.mec-event-countdown-style3 .mec-event-date:after{content:"";position:absolute;display:inline-block;z-index:1;bottom:-18px;left:8px;width:0;border-width:19px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:50px;position:absolute;top:36px;left:12px;letter-spacing:-3px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:80px;top:26px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:80px;top:45px}.mec-event-countdown-style3 .mec-event-countdown-part-details{padding-top:35px;margin-bottom:50px;min-height:100px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-title{font-size:17px;color:#fff;line-height:1.4;padding-right:20px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link{color:#fff;font-size:12px;position:relative;padding-left:22px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link:before{content:"";display:inline-block;width:18px;border-top:1px solid #fff;position:absolute;left:0;top:8px}.mec-event-countdown-style3 .mec-event-title-link{position:absolute;left:190px;top:152px}.event-carousel-type1-head .mec-event-date-carousel:before,.mec-event-countdown-style3 .mec-event-date:before{content:'';position:absolute;left:0;bottom:0;z-index:2;width:100%;height:96px;background:0 0;display:inline-block;box-shadow:0 5px 5px rgba(0,0,0,.12)}@media only screen and (min-width:960px){.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown li{padding:10px}.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:31px}}@media (max-width:959px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:100%;display:block}.mec-event-countdown-style3 .mec-event-title-link{top:190px}.mec-event-countdown-style3 .mec-event-countdown{top:96px}.mec-event-countdown-style3 .mec-event-date{left:0;top:190px}.mec-event-countdown-style3 .mec-event-date:after{display:none}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{display:inline}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:150px}}@media (max-width:767px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:26px;letter-spacing:-1px}.mec-event-countdown-style3 .mec-event-title-link{left:130px}.mec-event-countdown-style3 .mec-event-date{width:120px;font-size:10px;height:63px}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:36px;top:20px;left:4px;letter-spacing:-2px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:52px;top:12px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:52px;top:28px}}@media (max-width:380px){.mec-event-countdown-style3 .mec-event-title-link{left:10px;top:260px}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:300px}.mec-event-countdown-style3 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:10px 5px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:8px}}.mec-slider-t1-wrap{width:100%;padding:60px 90px;background:#f7f7f7;min-height:560px;position:relative}.mec-slider-t1{height:500px;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t1 .mec-event-article{position:relative;height:500px}.mec-slider-t1 .mec-slider-t1-img{position:relative;background-size:cover!important;background-position:center!important;width:50%;height:100%;float:right;margin:0;overflow:hidden}.mec-slider-t1 .mec-slider-t1-content{width:50%;float:left;height:100%;background:#fff;padding:6%}.mec-slider-t1-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t1-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:54px;height:54px;line-height:48px;border-radius:0;text-align:center;background:#fff;box-shadow:0 2px 11px 0 rgba(0,0,0,.045);transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-27px;cursor:pointer}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 29px 0 rgba(0,0,0,.095)}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:12px;color:#282828;transition:all .21s ease}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{font-size:13px;color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t1{margin:0 auto;max-width:900px}}@media only screen and (max-width:960px){.mec-slider-t1 .mec-slider-t1-content,.mec-slider-t1 .mec-slider-t1-img{width:100%;float:none}.mec-slider-t1 .mec-slider-t1-img{height:300px}.mec-slider-t1,.mec-slider-t1 .mec-event-article{height:auto}}@media only screen and (max-width:768px){.mec-slider-t1-wrap{padding:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:10px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}}@media only screen and (max-width:479px){.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t2-wrap{width:100%;padding:0;background:#fff;min-height:600px;position:relative}.mec-slider-t2 .mec-event-article{height:600px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t2 .mec-slider-t2-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:70%;height:100%;margin:0;overflow:hidden}.mec-slider-t2 .mec-slider-t2-content{width:50%;position:absolute;right:0;top:60px;bottom:60px;padding:5%}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern *{color:#fff}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-content,.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t2-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:84px;cursor:pointer}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}.mec-wrap.colorskin-custom .mec-slider-t2 .mec-event-article .mec-event-date.mec-color{color:#fff}@media only screen and (min-width:961px){.mec-slider-t2{margin:0 auto;max-width:1200px}}@media only screen and (max-width:960px){.mec-slider-t2 .mec-slider-t2-content,.mec-slider-t2 .mec-slider-t2-img{width:100%;float:none;position:static}.mec-slider-t2 .mec-slider-t2-img{height:300px}.mec-slider-t2 .mec-event-article{height:auto}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px}}@media only screen and (max-width:479px){.mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:22px}}.mec-slider-t3-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t3 .mec-event-article{height:700px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t3 .mec-slider-t3-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;opacity:.68;z-index:1}.mec-slider-t3 .mec-slider-t3-content{width:50%;height:auto;vertical-align:middle;display:table;position:absolute;left:0;top:0;bottom:0;padding:0 2% 0 7%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t3 .mec-slider-t3-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-content,.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-slider-t3-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t3-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{border-color:#40d9f1}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-22px;cursor:pointer}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next{right:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:50px;font-weight:300}.mec-slider-t3-content.mec-event-grid-modern .mec-event-description{font-size:19px}}@media only screen and (max-width:767px){.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}}@media only screen and (max-width:479px){.mec-slider-t3 .mec-slider-t3-content{width:100%}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t4-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t4 .mec-event-article{height:700px;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t4 .mec-slider-t4-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;z-index:1}.mec-slider-t4 .mec-slider-t4-content{width:auto;max-width:700px;background:rgba(37,37,37,.94)!important;height:auto;vertical-align:middle;display:table;position:absolute;left:8%;top:19%;padding:3%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t4 .mec-slider-t4-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-content,.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:13px;padding:0 42px;line-height:49px;height:50px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t4-content.mec-event-grid-modern .mec-slider-t4-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next{right:60px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{right:112px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:767px){.mec-slider-t4 .mec-slider-t4-content{width:100%;left:0;top:auto;bottom:0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t5-wrap{width:auto;max-width:570px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-slider-t5{height:auto;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t5 .mec-event-article{position:relative;height:auto}.mec-slider-t5 .mec-slider-t5-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:300px;float:none;margin:0;overflow:hidden}.mec-slider-t5 .mec-slider-t5-content{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-slider-t5 .mec-events-content p{margin-bottom:20px}.mec-slider-t5-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t5-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t5 .mec-slider-t5-col6{width:50%;float:left;height:100%}.mec-slider-t5 .mec-slider-t5-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-slider-t5 .mec-slider-t5-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-slider-t5 .mec-slider-t5-col6 address{font-size:12px;margin-bottom:0}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t5-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:768px){.mec-slider-t5 .mec-slider-t5-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-single-modern .mec-events-event-image{text-align:center}.mec-single-modern .mec-events-event-image img{width:100%}.mec-single-modern .mec-single-event-bar{background-color:#f7f7f7;margin:20px 0 0;padding:15px;display:table;width:100%}.mec-single-modern .mec-single-event-bar>div{display:table-cell}.mec-single-modern .mec-single-event-bar>div i{font-size:20px;vertical-align:middle}.mec-single-modern .mec-single-event-bar>div .mec-time-comment{font-size:12px;color:#999}.mec-single-modern .mec-single-event-bar>div h3{text-transform:uppercase;font-size:16px;font-weight:700;padding-bottom:5px;display:inline;color:#000;padding-left:10px}.mec-single-modern .mec-single-event-bar>div dd{font-size:14px;color:#8d8d8d;padding-left:34px;margin-bottom:0}.mec-single-modern .col-md-4 .mec-frontbox{margin-top:-50px;margin-bottom:70px;padding:20px;border:none;background:#f7f7f7;box-shadow:none}.mec-next-occurrence li{list-style:none}@media only screen and (min-width:960px){.mec-single-modern .col-md-4 .mec-frontbox{margin-left:20px}}@media only screen and (max-width:960px){.mec-single-modern .mec-single-event-bar>div{display:block}}.lity-content>div{overflow:auto}.mec-next-event-details li{list-style:none;margin-top:20px}.mec-next-event-details h6{text-transform:uppercase;font-size:13px;padding-bottom:5px;display:inline;color:#222;padding-left:0}.mec-next-event-details abbr{display:block;padding-left:12px;color:#8d8d8d}.mec-next-event-details i{margin-right:10px;margin-left:12px}.mec-next-event-details i:before{color:#40d9f1}.mec-next-event-details a{text-align:center;display:block;background:#fff;padding:6px 0;font-size:11px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;transition:.3s}.mec-single-modal.mec-single-modern .mec-single-title{text-align:center;padding:15px 10px 0}.admin-bar .mec-single-modal.mec-single-modern .mec-single-title{padding-top:40px}.mec-single-modal.mec-single-modern .mec-single-event-bar{padding:5px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div dd{font-size:13px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div h3{font-size:15px}@media only screen and (min-width:960px){.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-left:0}}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-top:10px;margin-bottom:10px}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox.mec-event-meta{padding:0}.mec-single-modal .mec-event-meta dd.mec-organizer-email a,.mec-single-modal .mec-event-meta dd.mec-organizer-url a{font-size:12px;display:block}.mec-modal-wrap{max-width:60vw;max-height:90vh!important;background:#fff;box-shadow:0 1px 55px rgba(0,0,0,.5);overflow-x:hidden!important}@media(max-width:1023px){.mec-modal-wrap{max-width:80vw}}.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li,.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a.mec-events-button{display:block;text-align:center}body .featherlight .featherlight-content{background:0 0;overflow:unset;z-index:9999}body .featherlight .featherlight-close-icon{position:fixed;top:40px;right:40px;background:0 0;color:#fff;border:1px solid #fff;border-radius:0}body .featherlight .featherlight-close-icon:hover{background:#fff;color:#000;border:1px solid #000}@media (max-width:320px){.mec-wrap span.flip-clock-divider{width:20px}.mec-single-event .mec-events-meta-group-countdown{padding:15px 12%}}@media (max-width:414px){.mec-wrap span.flip-clock-divider{width:30px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 7%}}@media (max-width:480px){.mec-wrap span.flip-clock-divider{width:7px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 1%}}@media(max-width:1366px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:20px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 15px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:48px}}@media(max-width:1280px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:14px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:15px 10px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:38px}}@media(min-width:961px) and (max-width:1024px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:7px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:15px 5px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:14px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul li a div{font-size:30px}}@media(max-width:640px){body .mec-modal-wrap .mec-single-modal.featherlight-close-icon{top:14px;right:14px}}@media(max-width:480px){.featherlight .featherlight-content,body .mec-modal-wrap{max-width:100%}body .mec-modal-wrap.flip-clock-divider .flip-clock-label{display:block}}@media (max-width:414px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:50px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 65px}body .featherlight-content .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 2px 20px 2px!important}body .featherlight-content .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:3px!important}}@media (max-width:375px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:50px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 45px}}@media (max-width:320px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:20px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 40px}}.mec-events-toggle{max-width:960px;margin-left:auto;margin-right:auto}.mec-events-toggle .mec-toggle-item{border:1px solid #e4e4e4;margin-bottom:15px;box-shadow:0 10px 15px #f3f3f3}.mec-events-toggle .mec-toggle-item-inner{cursor:pointer;position:relative;padding:30px 60px 30px 15px;background:#fff;transition:all .3s ease;min-height:100px;display:table;width:100%;border-collapse:separate}.mec-events-toggle .mec-toggle-item-inner:hover{background:#fbfbfb}.mec-toggle-item-col{width:200px;border-right:1px solid #e3e3e3;margin-right:15px;display:table-cell;padding-right:5px}.mec-toggle-item-col .mec-event-date{font-size:38px;line-height:40px;float:left;margin-right:8px}.mec-toggle-item-col .mec-event-month{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}@media only screen and (max-width:959px){.mec-yearly-view-wrap .mec-yearly-calendar-sec{width:268px;padding:10px 5px}.mec-yearly-view-wrap .mec-yearly-agenda-sec{width:calc(100% - 268px);padding:0 0 0 10px}}@media only screen and (max-width:767px){.mec-yearly-view-wrap .mec-yearly-agenda-sec,.mec-yearly-view-wrap .mec-yearly-calendar-sec{width:100%;float:none}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar{width:auto}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar dl dt{width:14.2%}.mec-yearly-view-wrap .mec-yearly-title-sec h2{font-size:25px}}.mec-yearly-view-wrap .mec-agenda-event i,.mec-yearly-view-wrap .mec-agenda-time{display:none}@media only screen and (min-width:768px){.mec-yearly-view-wrap .mec-events-agenda-wrap{margin-top:0;border:none;padding-left:0;box-shadow:none}.mec-yearly-view-wrap .mec-agenda-date-wrap{width:174px;font-size:11px;padding-top:10px}.mec-yearly-view-wrap .mec-agenda-events-wrap{width:calc(100% - 174px);padding:10px}.mec-yearly-view-wrap .mec-agenda-event-title a{font-size:13px}.mec-yearly-view-wrap .mec-agenda-event-title span.event-color{width:8px;height:8px}.mec-yearly-view-wrap .mec-agenda-date-wrap span.mec-agenda-day{font-size:11px}.mec-yearly-view-wrap .mec-yearly-calendar-sec{box-shadow:-2px 0 5px rgba(0,0,0,.03) inset}}@media only screen and (max-width:1200px){.mec-yearly-view-wrap .mec-agenda-event-title a{font-size:12px;padding-right:6px}}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table{padding-bottom:10px;border-bottom:none}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt:hover{cursor:pointer}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-has-no-event,.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-has-no-event:hover{color:#bbb;cursor:default}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-day-active{background:#40d9f1;color:#fff;position:relative}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-day-active:after{content:'';position:absolute;display:block;bottom:-20px;left:50%;margin-left:-10px;width:0;border-width:10px;border-style:solid;border-color:#40d9f1 transparent transparent transparent}.mec-timetable-events-list{padding:10px 20px;border:none;margin:0}.mec-timetable-events-list .mec-timetable-event{padding:10px 0;border-bottom:1px dashed #ddd}.mec-timetable-events-list .mec-timetable-event:last-child{border:none}.mec-timetable-event .mec-timetable-event-span{font-size:12px;color:#444;padding-right:30px;line-height:22px}.mec-timetable-events-list .mec-timetable-event i{font-size:13px;color:#aaa;margin-right:3px;vertical-align:baseline}.mec-timetable-event .mec-timetable-event-span a{color:#333}.mec-timetable-event .mec-timetable-event-time{font-size:11px}.mec-timetable-event .mec-timetable-event-time i{vertical-align:text-bottom}.mec-timetable-event .mec-timetable-event-title{font-size:13px}.mec-timetable-event .mec-timetable-event-title .event-color{width:10px;height:10px}.mec-timetable-events-list .mec-timetable-event.mec-util-hidden{display:none}.mec-timetable-events-list.mec-util-hidden{display:none}@media only screen and (min-width:768px){.mec-timetable-events-list{display:table;width:100%;margin:10px 0 20px}.mec-timetable-events-list .mec-timetable-event{display:table-row;padding:0;border:none;background:#fff}.mec-timetable-events-list .mec-timetable-event:hover{background:#fafafa}.mec-timetable-event .mec-timetable-event-span{display:table-cell;padding:10px 15px;border-bottom:1px solid #ebebeb}.mec-timetable-events-list .mec-timetable-event:last-child .mec-timetable-event-span{border-bottom:none}}@media only screen and (max-width:767px){.mec-timetable-event .mec-timetable-event-title{display:block;width:100%;padding:5px 0 10px;font-weight:700}}.mec-timetable-t2-wrap{border:1px solid #e6e6e6;background:#fafafa;padding:0 15px 15px;overflow:hidden;box-shadow:0 3px 2px 0 rgba(0,0,0,.012)}.mec-timetable-t2-col{width:20%;float:left;min-height:20px;padding-right:1px;background:0 0}.mec-ttt2-title{background:#fafafa;color:#333;font-size:13px;font-weight:600;text-transform:uppercase;letter-spacing:1px;text-align:center;padding:25px 10px 10px;margin-bottom:1px}.mec-timetable-t2-col .mec-event-article{position:relative}.mec-timetable-t2-col .mec-event-article .event-color{position:absolute;width:auto;height:auto;left:0;right:0;top:0;bottom:0;margin:0;z-index:1;border-radius:2px}.mec-timetable-t2-content{position:relative;z-index:2;color:#fff;padding:15px 15px 20px;text-align:left;height:130px;margin-bottom:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title{line-height:22px;margin-bottom:13px;white-space:nowrap;padding-right:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title a{color:#fff;font-size:15px;font-weight:600;white-space:nowrap;overflow:hidden}.mec-timetable-t2-content div{color:#fff;font-size:11px;font-weight:400;line-height:19px;white-space:nowrap}.mec-timetable-t2-content div i{font-size:12px;margin-right:4px}@media only screen and (max-width:960px){.mec-timetable-t2-col{width:100%;float:none}}@media(min-width:961px){.mec-timetable-col-7{width:14.28%}.mec-timetable-col-6{width:16.6666%}}.mec-weather-box{padding:15px 0}.mec-weather-head{min-height:90px;padding:5px 0;clear:both;overflow:hidden;margin-bottom:25px;border-radius:10px;background:#238af5;position:relative}.mec-weather-icon-box{float:left;width:80px;height:80px;border-radius:10px;overflow:hidden;background:#238af5}.mec-weather-icon{width:80px;height:80px;display:inline-block;border-radius:10px}.mec-weather-summary{float:left;width:calc(100% - 80px);padding-left:10px;margin:10px 0;height:60px}.mec-weather-summary-report{font-size:15px;color:rgba(255,255,255,.68);margin-bottom:6px}.mec-weather-summary-temp{font-family:Roboto,Sans-serif;font-weight:300;color:#fff;font-size:29px;line-height:1}.degrees-mode{background:rgba(0,0,0,.2);cursor:pointer;font-weight:300;font-size:18px;padding:4px 5px;line-height:1;color:#fff;position:absolute;border-radius:8px;bottom:16px;left:16px}.mec-weather-extras{width:auto;padding:10px 15px 0 15px;float:right;min-height:80px;color:#fff;font-size:13px;line-height:1}.mec-weather-extras{width:auto;padding:10px 15px 0 15px;float:right;min-height:80px;color:#fff;font-size:13px;line-height:1}.mec-weather-extras div{line-height:20px;height:20px}.mec-weather-extras span{color:rgba(255,255,255,.68);font-size:12px;text-transform:uppercase}.mec-weather-extras var{font-size:11px;letter-spacing:.4px}.mec-weather-icon.clear-day,.mec-weather-icon.clear-night{background-image:url(../img/mec-weather-icon-01.png)}.mec-weather-icon.partly-sunny-day,.mec-weather-icon.partly-sunny-night{background-image:url(../img/mec-weather-icon-02.png)}.mec-weather-icon.partly-cloudy-day,.mec-weather-icon.partly-cloudy-night{background-image:url(../img/mec-weather-icon-03.png)}.mec-weather-icon.cloudy,.mec-weather-icon.fog,.mec-weather-icon.wind{background-image:url(../img/mec-weather-icon-04.png)}.mec-weather-icon.thunderstorm{background-image:url(../img/mec-weather-icon-05.png)}.mec-weather-icon.rain{background-image:url(../img/mec-weather-icon-06.png)}.mec-weather-icon.hail,.mec-weather-icon.sleet,.mec-weather-icon.snow{background-image:url(../img/mec-weather-icon-07.png)}.mec-av-spot-wrap{width:auto;max-width:1200px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-av-spot{height:auto;border:1px solid #eee;box-shadow:0 6px 12px -4px rgba(0,0,0,.05)}.mec-av-spot .mec-event-article{position:relative;height:auto}.mec-av-spot .mec-av-spot-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:330px;float:none;margin:0;overflow:hidden}.mec-av-spot .mec-av-spot-content,.mec-av-spot .mec-av-spot-head{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-av-spot .mec-av-spot-head{background:#222;color:#fff;min-height:80px}.mec-av-spot .mec-av-spot-head .mec-av-spot-box{padding-top:25px;font-size:13px;color:#ddd}.mec-av-spot .mec-av-spot-head .mec-av-spot-box span{color:#40d9f1;font-size:40px;font-weight:700;font-style:italic}.mec-av-spot .mec-av-spot-head .mec-event-countdown{text-align:center;padding-top:10px;display:table;table-layout:fixed;margin:0 auto;float:right}.mec-av-spot .mec-av-spot-head .mec-event-countdown li{display:table-cell;padding:10px 20px;position:relative;height:60px}.mec-av-spot .mec-av-spot-head .mec-event-countdown p{margin-bottom:0}.mec-av-spot .mec-events-content p{margin-bottom:20px}.mec-av-spot-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-av-spot-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-av-spot-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-av-spot .mec-av-spot-col6{width:50%;float:left;height:100%}.mec-av-spot .mec-av-spot-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-av-spot .mec-av-spot-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-av-spot .mec-av-spot-col6 address{font-size:12px;margin-bottom:0}.mec-av-spot-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-av-spot-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05)}@media only screen and (max-width:768px){.mec-av-spot .mec-av-spot-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-av-spot-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-events-masonry-wrap{display:block;width:auto}.mec-masonry-item-wrap{width:calc(33.33% - 30px);padding:0;margin:0 15px 30px;min-height:10px;position:relative}.isotope-item{z-index:2}.isotope-hidden.isotope-item{pointer-events:none;z-index:1}.isotope,.isotope .isotope-item{-webkit-transition-duration:.8s;-moz-transition-duration:.8s;transition-duration:.8s}.isotope{-webkit-transition-property:height,width;-moz-transition-property:height,width;transition-property:height,width}.isotope .isotope-item{-webkit-transition-property:-webkit-transform,opacity;-moz-transition-property:-moz-transform,opacity;transition-property:transform,opacity}.mec-events-masonry-cats{padding:10px;margin-bottom:25px;text-align:center;clear:both;list-style:none outside none}.mec-events-masonry-cats a{border-radius:2px;padding:6px 12px;font-size:13px;line-height:1.2;color:#333;font-weight:400;margin-top:0!important;text-align:center;display:inline-block;width:auto;border:2px solid transparent;transition:all .2s ease}.mec-events-masonry-cats a:hover{border-color:#40d9f1;color:#333}.mec-events-masonry-cats a.mec-masonry-cat-selected{border:2px solid #40d9f1;color:#40d9f1}.mec-masonry{background:#f7f7f7;height:auto;border:1px solid #eee;box-shadow:0 6px 12px -4px rgba(0,0,0,.05)}.mec-masonry .mec-event-article{position:relative;height:auto}.mec-masonry .mec-masonry-img{position:relative;width:100%;height:auto;float:none;margin:0;overflow:hidden}.mec-masonry .mec-masonry-img img{width:100%}.mec-masonry .mec-masonry-content,.mec-masonry .mec-masonry-head{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-masonry .mec-events-content p{margin-bottom:20px}.mec-masonry-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-masonry-item-wrap .mec-event-grid-modern .event-grid-modern-head{min-height:79px;margin-bottom:10px;padding:14px 5%;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-masonry-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-masonry-content.mec-event-grid-modern .mec-event-content{padding-top:20px}.mec-masonry-content.mec-event-grid-modern .mec-event-footer{height:auto}.mec-masonry .mec-masonry-col6 .mec-event-date{font-size:34px;letter-spacing:-2px}.mec-masonry .mec-masonry-col6{width:50%;float:left;height:100%}.mec-masonry .mec-masonry-col6 i{font-size:24px;float:left;margin-right:7px;height:50px}.mec-masonry .mec-masonry-col6 .mec-event-month,.mec-masonry .mec-masonry-col6 h6{text-transform:capitalize;font-size:15px;padding:4px 0;display:inline;color:#444}.mec-masonry .mec-masonry-col6 .mec-event-detail,.mec-masonry .mec-masonry-col6 address{font-size:11px;margin-bottom:0}.mec-masonry-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-masonry-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05)}@media only screen and (max-width:960px){.mec-masonry-item-wrap{width:calc(50% - 30px)}}@media only screen and (max-width:768px){.mec-masonry .mec-masonry-col6{width:100%;margin:10px 0}.mec-masonry-item-wrap{width:calc(100% - 30px)}}@media only screen and (max-width:479px){.mec-masonry-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.btn-wrapper{text-align:center}.countdown-wrapper .btn-wrapper{padding-top:10px;padding-right:0}.countdown-wrapper h5.countdown-message{letter-spacing:5px;font-weight:500;font-size:18px}.blox.dar .countdown-wrapper p,.countdown-wrapper p{color:#888}.countdown-wrapper a.button.black{float:right;margin-right:0}.mec-wrap .threedaydigits .days .flip-clock-label{right:-100px}@media only screen and (min-width:320px) and (max-width:767px){.mec-wrap .flip-clock-wrapper ul{width:29px!important}.mec-wrap .flip-clock-wrapper ul li a div div.inn{font-size:25px!important}.mec-wrap .flip-clock-divider .flip-clock-label{left:0;font-weight:300}.mec-wrap span.flip-clock-divider{width:12px}}@media only screen and (min-width:320px) and (max-width:480px){.mec-wrap .flip-clock-wrapper ul{width:29px!important}.mec-wrap .flip-clock-wrapper ul li a div div.inn{font-size:25px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}.mec-wrap span.flip-clock-divider:first-child{width:0}.mec-wrap span.flip-clock-divider{width:20px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 18%}}@media screen and (min-width:960px) and (max-width:1200px){.mec-wrap .threedaydigits ul{height:50px;width:47px}}@media screen and (min-width:480px) and (max-width:768px){.mec-wrap .threedaydigits ul{height:48px;width:26px!important}.mec-wrap .threedaydigits .flip-clock-label{font-size:8px;left:-8px}}@media screen and (min-width:320px) and (max-width:480px){.mec-wrap .threedaydigits ul{height:48px;width:22px!important}}.mec-wrap .flip-clock-wrapper *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;-o-box-sizing:border-box;box-sizing:border-box;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden}.mec-wrap .flip-clock-wrapper a{cursor:pointer;text-decoration:none;color:#ccc}.mec-wrap .flip-clock-wrapper a:hover{color:#fff}.mec-wrap .flip-clock-wrapper ul{list-style:none}.flip-clock-wrapper.clearfix:after,.mec-wrap .flip-clock-wrapper.clearfix:before{content:" ";display:table}.mec-wrap .flip-clock-wrapper.clearfix:after{clear:both}.mec-wrap .flip-clock-wrapper{font:normal 11px "helvetica neue",helvetica,sans-serif;-webkit-user-select:none}.mec-wrap .flip-clock-meridium{background:0 0!important;box-shadow:0 0 0!important;font-size:36px!important}.mec-wrap .flip-clock-meridium a{color:#313333}.mec-wrap .flip-clock-wrapper{text-align:center;position:relative;display:inline-block;padding-bottom:10px}.flip-clock-wrapper:after,.mec-wrap .flip-clock-wrapper:before{content:" ";display:table}.mec-wrap .flip-clock-wrapper:after{clear:both}.mec-wrap .flip-clock-wrapper ul{position:relative;float:left;margin:2px;width:50px;height:50px;font-size:80px;font-weight:700;line-height:87px;border-radius:3px;background:rgba(0,0,0,.21)}.mec-wrap .flip-clock-wrapper ul li{z-index:1;position:absolute;left:0;top:0;width:100%;height:100%;line-height:54px;text-decoration:none!important}.mec-wrap .flip-clock-wrapper ul li:first-child{z-index:2}.mec-wrap .flip-clock-wrapper ul li a{display:block;height:100%;-webkit-perspective:200px;-moz-perspective:200px;perspective:200px;margin:0!important;overflow:visible!important;cursor:default!important}.mec-wrap .flip-clock-wrapper ul li a div{z-index:1;position:absolute;left:0;width:100%;height:50%;font-size:80px;overflow:hidden;outline:1px solid transparent}.mec-wrap .flip-clock-wrapper ul li a div .shadow{position:absolute;width:100%;height:100%;z-index:2}.mec-wrap .flip-clock-wrapper ul li a div.up{-webkit-transform-origin:50% 100%;-moz-transform-origin:50% 100%;-ms-transform-origin:50% 100%;-o-transform-origin:50% 100%;transform-origin:50% 100%;top:0}.mec-wrap .flip-clock-wrapper ul li a div.up:after{content:"";position:absolute;top:24px;left:0;z-index:5;width:100%;height:3px;background-color:rgba(0,0,0,.12)}.mec-wrap .flip-clock-wrapper ul li a div.down{-webkit-transform-origin:50% 0;-moz-transform-origin:50% 0;-ms-transform-origin:50% 0;-o-transform-origin:50% 0;transform-origin:50% 0;bottom:0;border-bottom-left-radius:3px;border-bottom-right-radius:3px}.mec-wrap .flip-clock-wrapper ul li a div div.inn{position:absolute;left:0;z-index:1;width:100%;height:200%;color:#fff;text-shadow:0 0 2px rgba(0,0,0,.25);text-align:center;background-color:#40d9f1;border-radius:3px;font-size:48px}.mec-wrap .flip-clock-wrapper ul li a div.up div.inn{top:0}.mec-wrap .flip-clock-wrapper ul li a div.down div.inn{bottom:0}.mec-wrap .flip-clock-wrapper ul.play li.flip-clock-before{z-index:3}.mec-wrap .flip-clock-wrapper .flip{box-shadow:0 2px 5px rgba(0,0,0,.17)}.mec-wrap .flip-clock-wrapper ul.play li.flip-clock-active{-webkit-animation:asd .5s .5s linear both;-moz-animation:asd .5s .5s linear both;animation:asd .5s .5s linear both;z-index:5}.mec-wrap .flip-clock-divider{float:left;display:inline-block;position:relative;width:18px;height:62px}.mec-wrap .flip-clock-divider:first-child{width:0}.mec-wrap .flip-clock-dot{display:none;background:#323434;width:10px;height:10px;position:absolute;border-radius:50%;box-shadow:0 0 5px rgba(0,0,0,.5);left:5px}.mec-wrap .flip-clock-divider .flip-clock-label{position:absolute;bottom:-1.5em;right:-71px;color:#101010;font-weight:700;text-shadow:none;text-transform:uppercase}.mec-wrap .blox.dark .flip-clock-divider .flip-clock-label{color:#8a8a8a}.mec-wrap .flip-clock-divider.seconds .flip-clock-label{right:-82px}.mec-wrap .flip-clock-dot.top{top:30px}.mec-wrap .flip-clock-dot.bottom{bottom:30px}@-webkit-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@-moz-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@-o-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}.flip-clock-wrapper ul.play li.flip-clock-active .down{z-index:2;-webkit-animation:turn .5s .5s linear both;-moz-animation:turn .5s .5s linear both;animation:turn .5s .5s linear both}@-webkit-keyframes turn{0%{-webkit-transform:rotatex(90deg)}100%{-webkit-transform:rotatex(0)}}@-moz-keyframes turn{0%{-moz-transform:rotatex(90deg)}100%{-moz-transform:rotatex(0)}}@-o-keyframes turn{0%{-o-transform:rotatex(90deg)}100%{-o-transform:rotatex(0)}}@keyframes turn{0%{transform:rotatex(90deg)}100%{transform:rotatex(0)}}.flip-clock-wrapper ul.play li.flip-clock-before .up{z-index:2;-webkit-animation:turn2 .5s linear both;-moz-animation:turn2 .5s linear both;animation:turn2 .5s linear both}@-webkit-keyframes turn2{0%{-webkit-transform:rotatex(0)}100%{-webkit-transform:rotatex(-90deg)}}@-moz-keyframes turn2{0%{-moz-transform:rotatex(0)}100%{-moz-transform:rotatex(-90deg)}}@-o-keyframes turn2{0%{-o-transform:rotatex(0)}100%{-o-transform:rotatex(-90deg)}}@keyframes turn2{0%{transform:rotatex(0)}100%{transform:rotatex(-90deg)}}.flip-clock-wrapper ul li.flip-clock-active{z-index:3}.flip-clock-wrapper ul.play li.flip-clock-before .up .shadow{background:-moz-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.1)),color-stop(100%,rgba(64,64,64,.68)));background:linear,top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;background:-o-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-ms-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:linear,to bottom,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;-webkit-animation:show .5s linear both;-moz-animation:show .5s linear both;animation:show .5s linear both}.flip-clock-wrapper ul.play li.flip-clock-active .up .shadow{background:-moz-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.1)),color-stop(100%,rgba(64,64,64,.68)));background:linear,top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;background:-o-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-ms-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:linear,to bottom,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;-webkit-animation:hide .5s .3s linear both;-moz-animation:hide .5s .3s linear both;animation:hide .5s .3s linear both}.flip-clock-wrapper ul.play li.flip-clock-before .down .shadow{background:-moz-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(64,64,64,.68)),color-stop(100%,rgba(0,0,0,.1)));background:linear,top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;background:-o-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-ms-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:linear,to bottom,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;-webkit-animation:show .5s linear both;-moz-animation:show .5s linear both;animation:show .5s linear both}.flip-clock-wrapper ul.play li.flip-clock-active .down .shadow{background:-moz-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(64,64,64,.68)),color-stop(100%,rgba(0,0,0,.1)));background:linear,top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;background:-o-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-ms-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:linear,to bottom,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;-webkit-animation:hide .5s .3s linear both;-moz-animation:hide .5s .3s linear both;animation:hide .5s .2s linear both}@-webkit-keyframes show{0%{opacity:0}100%{opacity:1}}@-moz-keyframes show{0%{opacity:0}100%{opacity:1}}@-o-keyframes show{0%{opacity:0}100%{opacity:1}}@keyframes show{0%{opacity:0}100%{opacity:1}}@-webkit-keyframes hide{0%{opacity:1}100%{opacity:0}}@-moz-keyframes hide{0%{opacity:1}100%{opacity:0}}@-o-keyframes hide{0%{opacity:1}100%{opacity:0}}@keyframes hide{0%{opacity:1}100%{opacity:0}}@font-face{font-family:simple-line-icons;src:url(../fonts/Simple-Line-Icons.eot?v=2.3.1);src:url(../fonts/Simple-Line-Icons.eot?v=2.3.1#iefix) format('embedded-opentype'),url(../fonts/Simple-Line-Icons.woff2?v=2.3.1) format('woff2'),url(../fonts/Simple-Line-Icons.woff?v=2.3.1) format('woff'),url(../fonts/Simple-Line-Icons.ttf?v=2.3.1) format('truetype'),url(../fonts/Simple-Line-Icons.svg?v=2.3.1#simple-line-icons) format('svg');font-weight:400;font-style:normal}[class*=mec-sl-]{font-family:simple-line-icons;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.mec-sl-facebook:before{content:"\e00b"}.mec-sl-twitter:before{content:"\e009"}.mec-sl-google-plus:before{content:"\e60d"}.mec-sl-angle-left:before{content:"\e605"}.mec-sl-angle-right:before{content:"\e606"}.mec-sl-calendar:before{content:"\e075"}.mec-sl-clock-o:before{content:"\e081"}.mec-sl-home:before{content:"\e069"}.mec-sl-phone:before{content:"\e600"}.mec-sl-envelope:before{content:"\e086"}.mec-sl-sitemap:before{content:"\e037"}.mec-sl-map-marker:before{content:"\e096"}.mec-sl-floder:before{content:"\e089"}.mec-sl-wallet:before{content:"\e02a"}.mec-color,.mec-color-before :before,.mec-color-hover:hover,.mec-wrap .mec-color,.mec-wrap .mec-color-before :before,.mec-wrap .mec-color-hover:hover{color:#40d9f1}.mec-bg-color,.mec-bg-color-hover:hover,.mec-wrap .mec-bg-color,.mec-wrap .mec-bg-color-hover:hover{background-color:#40d9f1}.mec-border-color,.mec-border-color-hover:hover,.mec-wrap .mec-border-color,.mec-wrap .mec-border-color-hover:hover{border-color:#40d9f1}.mec-toggle-month-divider.mec-skin-list-events-container{border:1px solid #e8e8e8;margin-bottom:30px;background:#f8f8f8;box-shadow:0 2px 18px -1px rgba(0,0,0,.1);border-radius:2px}.mec-toggle-month-divider .mec-month-divider{margin:0;text-align:left;background:#fff;position:relative;cursor:pointer;border-top:1px solid #e8e8e8}.mec-toggle-month-divider .mec-month-divider span{padding:20px;border-bottom:1px solid #e8e8e8}.mec-toggle-month-divider .mec-month-divider i{position:absolute;right:20px;top:24px;font-size:20px;cursor:pointer}.mec-toggle-month-divider .mec-month-divider span:before{display:none}.mec-toggle-month-divider .mec-month-divider+article{margin-top:20px}.mec-toggle-month-divider .mec-wrap .mec-month-divider:first-of-type{border-top:none}.mec-toggle-month-divider .mec-event-list-accordion .mec-month-divider:not(:first-of-type)~article{display:none}.mec-skin-list-events-container:not(.mec-toggle-month-divider) .mec-month-divider i{display:none}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-month{display:inline-block;padding-top:0}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-date{font-size:14px;line-height:14px;float:none;display:inline-block;margin-right:0;font-weight:700}.mec-events-toggle .mec-toogle-inner-month-divider.mec-toggle-item-inner{padding:20px 60px 30px 15px}.mec-toogle-inner-month-divider .mec-toggle-month-inner-image{float:left;clear:right;width:100px;margin-right:20px;margin-left:10px}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-detail{margin-top:-6px}.mec-toogle-inner-month-divider .mec-toggle-item-col{float:none;width:100%;margin-top:10px;display:block;border:none}.mec-events-toggle .mec-toogle-inner-month-divider .mec-toggle-title{font-size:19px;display:block;padding-top:10px}@media only screen and (max-width:768px){.mec-events-toggle .mec-toogle-inner-month-divider .mec-toggle-title{font-size:14px;padding-top:0}.mec-toogle-inner-month-divider .mec-toggle-item-col{margin-top:0}.mec-toogle-inner-month-divider .mec-toggle-month-inner-image{width:70px}}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled:before,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-featured:before{z-index:1;position:absolute;top:25px;right:-37px;font-size:11px;letter-spacing:1px;text-transform:uppercase;background:#04de78;padding:2px 40px;color:#fff;-ms-transform:rotate(45deg);-webkit-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:.5s cubic-bezier(.25,.5,.06,.85);transition:.5s cubic-bezier(.25,.5,.06,.85);content:attr(data-style)}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-featured{overflow:hidden;position:relative}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled:before{background:#de0404}.mec-daily-view-date-events article:before,ul.mec-weekly-view-dates-events article:before{padding:7px 40px!important;top:27px!important}.mec-event-grid-classic article .mec-fc-style,.mec-event-grid-minimal article .mec-fc-style,.mec-event-grid-simple article .mec-fc-style,.mec-timetable-wrap article .mec-fc-style,.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article.mec-event-cover-modern .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{font-size:9px;letter-spacing:.5px;text-transform:uppercase;background:#04de78;padding:2px 7px;color:#fff;position:relative;margin-left:5px;border-radius:2px}.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-modern.mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-minimal article .mec-fc-style:before,.mec-event-grid-simple article .mec-fc-style:before,.mec-timetable-wrap article .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article .mec-fc-style:before,.mec-wrap .mec-event-list-modern article .mec-fc-style:before,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style:before{width:0;height:0;border-top:4px solid transparent!important;border-right:5px solid;border-bottom:4px solid transparent;margin:0;top:50%;left:-4px;transform:translateY(-4.5px);position:absolute;content:'';color:#04de78}.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-event-grid-classic article.mec-label-canceled:before,.mec-event-grid-classic article.mec-label-featured:before,.mec-event-grid-minimal article.mec-label-canceled:before,.mec-event-grid-minimal article.mec-label-featured:before,.mec-event-grid-simple article.mec-label-canceled:before,.mec-event-grid-simple article.mec-label-featured:before,.mec-timetable-wrap article.mec-label-canceled:before,.mec-timetable-wrap article.mec-label-featured:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled:before,.mec-wrap .mec-event-list-accordion article.mec-label-featured:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled:before,.mec-wrap .mec-event-list-modern article.mec-label-featured:before{display:none}.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{top:-3px;font-size:11px;margin-left:10px}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style:before,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-canceled:before,.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-featured:before{-ms-transform:none;-webkit-transform:none;transform:none;-webkit-transition:none;transition:none;top:271px;right:0}.mec-timetable-wrap article .mec-fc-style{top:-2px;font-size:10px}.mec-wrap article.mec-event-cover-modern .mec-fc-style{padding:5px 9px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:24px;display:inline-block;border-radius:2px}.mec-skin-grid-events-container .mec-wrap .mec-event-grid-clean .mec-event-article:before{-ms-transform:none;-webkit-transform:none;transform:none!important;-webkit-transition:none;transition:none;top:22px!important;right:22px!important;padding:0 10px!important}.mec-event-grid-minimal article .mec-fc-style,.mec-event-grid-simple article .mec-fc-style{top:-4px;font-size:10px;margin-left:10px}.mec-event-grid-classic article .mec-fc-style{padding:5px 20px;font-size:12px;margin-top:8px;display:inline-block}.mec-hourly-schedule-speaker-info{background:#fff;padding:30px;border:1px solid #e6e6e6;max-width:740px;width:740px;margin-left:-110px}.mec-hourly-schedule-speaker-thumbnail{float:left;max-width:30%;width:30%}.mec-hourly-schedule-speaker-name{font-weight:700;font-size:26px;line-height:1.2;color:#333;text-transform:uppercase}.mec-hourly-schedule-speaker-details{float:left;width:69%;padding-left:25px}.mec-hourly-schedule-speaker-job-title{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-hourly-schedule-speaker-description{font-size:14px;font-weight:400;color:#6d7683;line-height:1.7;text-align:left}.mec-hourly-schedule-speaker-contact-information a i{color:#6b6b6b;background:#ebebeb;line-height:29px;margin:9px 7px 9px 0;width:30px;height:30px;display:inline-block;text-align:center;transition:all .2s ease;font-size:15px;cursor:pointer}.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}.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%;text-align:left}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:20%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:9%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:9%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:9%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:9%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:9%}.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-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}}.mec-woo-booking-checkout{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;border-radius:0;margin-bottom:6px;min-width:170px;margin-top:5px;text-align:center}.mec-woo-booking-checkout:hover{background:#222;color:#fff}.mec-woo-booking-checkout:focus,.mec-woo-booking-checkout:visited{color:#fff}.single-mec-events .lity-container{max-width:480px;width:480px}.lity-content .mec-events-meta-group-booking{width:100%;padding:20px 50px;background:#fff}.lity-content .mec-events-meta-group-booking .mec-booking form>h4{text-transform:uppercase;font-size:15px;font-weight:700;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative;text-align:center;line-height:1.2;margin-bottom:10px}.lity-content .mec-events-meta-group-booking .mec-booking form>h4:before{padding:1px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-35px;left:50%}.lity-content .mec-events-meta-group-booking .mec-event-ticket-available,.lity-content .mec-events-meta-group-booking .mec-event-ticket-name,.lity-content .mec-events-meta-group-booking .mec-event-ticket-price,.lity-content .mec-events-meta-group-booking .mec-ticket-variation-name,.lity-content .mec-events-meta-group-booking .mec-ticket-variation-price,.lity-content .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;clear:none;padding:5px 1em 3px 0;display:inline-block}.lity-content .mec-events-meta-group-booking .mec-event-ticket-available{margin-bottom:12px}.lity-content .mec-events-meta-group-booking select{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both;font-family:Montserrat,Helvetica,Arial,sans-serif}.lity-content .mec-events-meta-group-booking input[type=email]{color:#888;border:1px solid #e1e1e1;font-size:14px;display:block;width:100%;outline:0}.lity-content .mec-events-meta-group-booking input{margin-bottom:10px!important}.lity-content .mec-book-ticket-variation h5{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:0;clear:none;padding:5px 1em 3px 0;display:inline-block;text-transform:capitalize;font-family:Montserrat,Helvetica,Arial,sans-serif}.lity-content ul.mec-book-tickets-container{padding:0}.lity-content .mec-events-meta-group-booking input[type=email],.lity-content .mec-events-meta-group-booking input[type=number],.lity-content .mec-events-meta-group-booking input[type=text]{outline:0;font-family:Montserrat,Helvetica,Arial,sans-serif;display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both;margin-bottom:2px!important}.lity-content button[type=submit]{position:relative;border:none;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;min-width:170px;margin-top:5px;border-radius:0;margin-bottom:6px}.lity-content button[type=submit]:hover{background:#222}.lity-content .mec-book-tickets-container li{list-style:none}.lity-content .mec-events-meta-group-booking #mec_book_payment_form h4,.lity-content .mec-events-meta-group-booking li h4{font-size:19px;font-weight:700}.lity-content .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li{width:50%}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li:nth-child(even){border:none}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li span{display:block}.lity-content .mec-events-meta-group-booking button[type=submit]:after{display:none;font-family:simple-line-icons;content:"\e098";margin-left:4px;-webkit-animation:rotating 1.2s linear infinite;-moz-animation:rotating 1.2s linear infinite;-ms-animation:rotating 1.2s linear infinite;-o-animation:rotating 1.2s linear infinite;animation:rotating 1.2s linear infinite}.lity-content .mec-events-meta-group-booking button[type=submit].loading:after{display:inline-block}@media only screen and (max-width:480px){.lity-content .mec-events-meta-group-booking{padding:20px;width:340px;margin:0 auto}}.mec-events-meta-group-booking{position:relative}.mec-cover-loader:after{content:'';position:absolute;top:0;right:0;left:0;bottom:0;background:rgba(255,255,255,.5);z-index:99999}.mec-loader{background:rgba(0,0,0,0);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);z-index:9}.mec-loader,.mec-loader:after{border-radius:50%;width:5em;height:5em;z-index:999999999999}.mec-loader{font-size:10px;text-indent:-9999em;border-top:.5em solid rgba(0,0,0,.2);border-right:.5em solid rgba(0,0,0,.2);border-bottom:.5em solid rgba(0,0,0,.2);border-left:.5em solid #fff;-webkit-transform:translateZ(0);-ms-transform:translateZ(0);transform:translateZ(0);-webkit-animation:mecloader 1.1s infinite linear;animation:mecloader 1.1s infinite linear}@-webkit-keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.mec-google-recaptcha{margin:0 0 20px 16px}.mec-wrap *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap :after,.mec-wrap :before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap .clearfix:after,.mec-wrap .clearfix:before{content:'\0020';display:block;overflow:hidden;visibility:hidden;width:0;height:0}.mec-wrap .clearfix:after{clear:both}.mec-wrap .clearfix{zoom:1}.mec-wrap .clear,.mec-wrap .clr{clear:both;display:block;overflow:hidden;visibility:hidden}.mec-wrap .clr{visibility:visible;overflow:visible}.mec-container [class*=col-] img{max-width:100%}.mec-container{margin-right:auto;margin-left:auto;padding-left:10px;padding-right:10px}.mec-container:after,.mec-container:before{content:" ";display:table}.mec-container:after{clear:both}@media only screen and (max-width:479px){.mec-container{width:300px}}@media only screen and (min-width:480px) and (max-width:767px){.mec-container{width:420px}}@media only screen and (min-width:768px) and (max-width:960px){.mec-container{width:768px}}@media only screen and (min-width:961px){.mec-container{width:960px}}@media only screen and (min-width:1200px){.mec-container{width:1196px;padding-left:15px;padding-right:15px}}@media only screen and (min-width:1921px){.mec-container{max-width:1690px}}.mec-wrap .row{margin-left:-10px;margin-right:-10px}.mec-wrap .row:after,.mec-wrap .row:before{content:" ";display:table}.mec-wrap .row:after{clear:both}.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{position:relative;min-height:1px;padding-left:10px;padding-right:10px}@media only screen and (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{padding-left:15px;padding-right:15px}.mec-wrap .row{margin-left:-15px;margin-right:-15px}}.mec-container [class*=col-].alpha{padding-left:0}.mec-container [class*=col-].omega{padding-right:0}.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{float:left}.mec-wrap .col-xs-12{width:100%}.mec-wrap .col-xs-11{width:91.66666666666666%}.mec-wrap .col-xs-10{width:83.33333333333334%}.mec-wrap .col-xs-9{width:75%}.mec-wrap .col-xs-8{width:66.66666666666666%}.mec-wrap .col-xs-7{width:58.333333333333336%}.mec-wrap .col-xs-6{width:50%}.mec-wrap .col-xs-5{width:41.66666666666667%}.mec-wrap .col-xs-4{width:33.33333333333333%}.mec-wrap .col-xs-3{width:25%}.mec-wrap .col-xs-2{width:16.666666666666664%}.mec-wrap .col-xs-1{width:8.333333333333332%}@media (min-width:768px){.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9{float:left}.mec-wrap .col-sm-12{width:100%}.mec-wrap .col-sm-11{width:91.66666666666666%}.mec-wrap .col-sm-10{width:83.33333333333334%}.mec-wrap .col-sm-9{width:75%}.mec-wrap .col-sm-8{width:66.66666666666666%}.mec-wrap .col-sm-7{width:58.333333333333336%}.mec-wrap .col-sm-6{width:50%}.mec-wrap .col-sm-5{width:41.66666666666667%}.mec-wrap .col-sm-4{width:33.33333333333333%}.mec-wrap .col-sm-3{width:25%}.mec-wrap .col-sm-2{width:16.666666666666664%}.mec-wrap .col-sm-1{width:8.333333333333332%}}@media (min-width:961px){.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9{float:left}.mec-wrap .col-md-12{width:100%}.mec-wrap .col-md-11{width:91.66666666666666%}.mec-wrap .col-md-10{width:83.33333333333334%}.mec-wrap .col-md-9{width:75%}.mec-wrap .col-md-8{width:66.66666666666666%}.mec-wrap .col-md-7{width:58.333333333333336%}.mec-wrap .col-md-6{width:50%}.mec-wrap .col-md-5{width:41.66666666666667%}.mec-wrap .col-md-4{width:33.33333333333333%}.mec-wrap .col-md-3{width:25%}.mec-wrap .col-md-2{width:16.666666666666664%}.mec-wrap .col-md-1{width:8.333333333333332%}}@media (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9{float:left}.mec-wrap .col-lg-12{width:100%}.mec-wrap .col-lg-11{width:91.66666666666666%}.mec-wrap .col-lg-10{width:83.33333333333334%}.mec-wrap .col-lg-9{width:75%}.mec-wrap .col-lg-8{width:66.66666666666666%}.mec-wrap .col-lg-7{width:58.333333333333336%}.mec-wrap .col-lg-6{width:50%}.mec-wrap .col-lg-5{width:41.66666666666667%}.mec-wrap .col-lg-4{width:33.33333333333333%}.mec-wrap .col-lg-3{width:25%}.mec-wrap .col-lg-2{width:16.666666666666664%}.mec-wrap .col-lg-1{width:8.333333333333332%}}#mec_woo_add_to_cart_btn{min-width:170px;margin-top:5px;text-align:center}.mec-breadcrumbs{border-radius:2px;padding:9px 15px 6px;font-size:11px;color:#8d8d8d;letter-spacing:0;text-transform:none;font-weight:500;margin:auto 15px 33px 15px;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.025)}.mec-breadcrumbs-modern{margin:auto 0 33px 0}.mec-breadcrumbs a{color:#000;padding-left:4px}.mec-breadcrumbs a:hover{text-decoration:underline}.mec-breadcrumbs i{font-size:8px;margin:0 0 0 4px}.mec-breadcrumbs .container{padding-left:20px}.mec-content-notification a{margin-left:5px}.mec-content-notification{background:#f7f7f7;padding:10px 10px 10px;border:1px solid #e8e8e8}.mec-content-notification p{margin-bottom:0}.mec-fes-form #mec-advanced-wraper div:first-child>ul{border:1px solid #cfeff5;width:auto;box-shadow:0 1px 4px -2px #cfeff5;display:block;margin:5px 0 10px;padding:5px 0;border-radius:2px}.mec-fes-form #mec-advanced-wraper div:first-child>ul:last-of-type{margin-bottom:35px}#mec-advanced-wraper div:first-child>ul span{display:none}#mec-advanced-wraper div:first-child>ul *{display:inline-block;background:#fff;font-size:12px;color:#717273;text-align:center}#mec-advanced-wraper div:first-child>ul>li{width:60px;font-weight:700;margin:0 10px 0 0;padding:4px 0;border-right:1px solid #cfeff5}#mec-advanced-wraper div:first-child>ul>ul>li{margin:0;padding:2px 10px;cursor:pointer;border-radius:2px;transition:all .18s ease}.mec-fes-form #mec-advanced-wraper div:first-child>ul>ul>li.mec-active,.mec-fes-form #mec-advanced-wraper div:first-child>ul>ul>li:hover{background:#40d9f1!important;box-shadow:0 1px 9px -3px #40d9f1;color:#fff!important}.mec-search-bar-wrap .mec-search-form .mec-text-input-search{width:83%}.mec-search-bar-wrap .mec-search-form .mec-ajax-search-result .mec-text-input-search{width:100%;float:none}.mec-search-bar-wrap input#mec-search-bar-input{width:calc(100% - 84%);margin-left:11px;background:#40d9f1;Color:#fff;font-weight:400}.mec-text-input-search+input#mec-search-bar-input{margin-left:-3px}.mec-search-bar-wrap input#mec-search-bar-input:hover{background:#000}.mec-wrap.mec-search-bar-wrap .mec-totalcal-box input{float:none}@media(max-width:768px){.mec-search-bar-wrap .mec-search-form .mec-text-input-search{display:inline-block}}@media(max-width:480px){.mec-search-bar-wrap .mec-search-form .mec-text-input-search{width:64%}.mec-search-bar-wrap input#mec-search-bar-input{width:calc(100% - 67%)}}.mec-wrap.mec-search-bar-wrap .mec-totalcal-box{overflow:visible}.mec-ajax-search-result{position:relative}.mec-search-bar-wrap.mec-wrap .mec-totalcal-box input[type=text]{width:calc(100% - 36px)}.mec-search-bar-wrap.mec-wrap .mec-totalcal-box input[type=text]:focus{border-color:#efefef}div#mec-ajax-search-result-wrap{position:absolute;top:100%;opacity:0;visibility:hidden;width:calc(100% - 2px);min-height:50px;left:0;right:0;padding:0 10px;z-index:9999;transition:all .3s ease}.mec-ajax-search-result-events{background:#fff;padding:10px 20px;border:1px solid #efefef;border-top:none}.mec-ajax-search-result-events article:first-of-type{border:none}article.mec-search-bar-result{text-align:left;margin-bottom:0;padding-bottom:25px;padding-top:26px;border-top:1px solid #efefef;transition:all .33s ease;clear:both}.mec-search-bar-result .mec-event-list-search-bar-date{width:64px;height:64px;margin-right:10px;font-size:11px;text-transform:uppercase;float:left;text-align:center;padding-top:2px}.mec-search-bar-result .mec-event-list-search-bar-date span{font-size:40px;line-height:30px;font-weight:700;display:block;margin-bottom:6px;letter-spacing:1px}.mec-search-bar-result .mec-event-image{float:left;margin-right:20px;width:65px;height:auto}.mec-search-bar-result .mec-event-time{font-size:11px;line-height:1.1;margin:0}.mec-search-bar-result .mec-event-time i{color:#40d9f1;float:none;width:unset;height:unset;font-size:inherit;margin-right:3px;border:none;padding:0}.mec-search-bar-result .mec-event-title{font-size:13px;padding:0;margin:10px 0 8px;font-weight:700;text-transform:uppercase}.mec-search-bar-result .mec-event-title a{text-decoration:none;color:#494949;transition:color .3s ease}.mec-search-bar-result .mec-event-detail{font-size:13px;line-height:1.3;font-family:Roboto,sans-serif;color:#9a9a9a;margin-bottom:0}.mec-wrap.mec-modern-search-bar .mec-totalcal-box{background:rgba(255,255,255,.87);border:none;padding:35px;border-radius:3px;box-shadow:0 3px 13px rgba(0,0,0,.4);position:relative}.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=search],.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=text]{height:58px;background:rgba(255,255,255,.99);border-radius:2px;box-shadow:0 4px 8px rgba(0,0,0,.1) inset;border:1px solid #ccc;width:100%;padding-left:45px;padding-right:13px;font-size:16px}.mec-wrap.mec-modern-search-bar .mec-totalcal-box .mec-text-input-search i{position:absolute;background:0 0;border:none;font-size:21px;left:15px;top:calc(50% - 19px);color:#40d9f1}.mec-wrap.mec-modern-search-bar .mec-text-input-search{position:relative;height:58px}.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=submit]{height:58px;border:none;border-radius:2px;background:#fc4a1a;font-size:17px;font-weight:700!important}.mec-wrap.mec-modern-search-bar .mec-text-input-search+input#mec-search-bar-input{margin-left:0}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{height:45px;background:rgba(255,255,255,.99);border-radius:2px;box-shadow:0 4px 8px rgba(0,0,0,.1) inset;border:1px solid #ccc;padding-right:13px;font-size:16px;border-left:0}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap i{height:45px;background:#ffff;border-radius:2px 0 0 2px;box-shadow:none;border:1px solid #ccc;font-size:15px;padding-top:14px;border-right:0;color:#40d9f1;margin-right:-1px}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap{min-height:64px}@media(max-width:768px){.mec-wrap.mec-modern-search-bar .mec-search-form .mec-text-input-search{width:70%}.mec-wrap.mec-modern-search-bar input#mec-search-bar-input{width:calc(100% - 72%)}}@media(max-width:480px){.mec-wrap.mec-modern-search-bar input#mec-search-bar-input{width:92%;padding:0 10px;position:relative;display:block;margin-left:11px}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-text-input-search{width:100%;margin-bottom:20px}.mec-wrap.mec-modern-search-bar .mec-text-input-search+input#mec-search-bar-input{margin-left:10px}}.mec-related-events-wrap{margin-top:50px}.mec-related-events-wrap h3.mec-rec-events-title:before{content:"";background:#2c2f34;width:46px;height:4px;position:absolute;top:59px;left:0}.mec-related-events-wrap h3.mec-rec-events-title{font-size:21px;font-weight:600;padding:17px 0;margin-bottom:28px;text-transform:uppercase;border-bottom:1px solid #e8e8e8;position:relative}.mec-related-event-post figure{margin:0}.mec-related-event-post figure img{width:100%}.mec-related-event-content{background-color:#fff;margin:-27px 30px 15px;position:relative;max-width:90%;padding:13px 21px 16px 19px}.mec-related-event-content h5 a{font-size:16px;color:#121212;font-weight:600;transition:all .3s ease}.mec-fes-form-cntt #mec-organizer-payments ul{list-style:none;background:0 0;margin:0}.mec-fes-form-cntt #mec-organizer-payments ul li h4{background:0 0;letter-spacing:.2px;display:inline-block;padding-left:0!important;padding-bottom:10px!important;margin:0;margin-bottom:1px;letter-spacing:1px;text-transform:capitalize;padding-top:1px}.mec-fes-form-cntt #mec-organizer-payments ul>li{width:100%;display:inline-block;vertical-align:top;padding:0;margin:0}#mec-login-form.mec-login-form{width:100%;background:#fff;padding:20px;margin:0 auto;text-align:center;position:relative}#mec-login-form.mec-login-form .mec-login-input{display:block;width:286px;margin:0 auto;margin-bottom:12px}#mec-login-form.mec-login-form .mec-login-forgotpassword{display:inline-block}.mec-login-forgotpassword a{color:#000}#mec-login-form.mec-login-form .mec-login-submit{float:right;text-align:right;width:49%;padding-right:2px}#mec-login-form.mec-login-form .mec-login-input input{border:none;box-shadow:none;background:#fff;color:#ccc;border-left:1px solid #e6e6e6;padding:0;height:100%;background-image:none!important;padding-left:10px;padding-right:0;width:222px;margin-left:0;clear:none;float:left}#mec-login-form.mec-login-form .mec-login-input label{border:1px solid #e6e6e6;height:52px;display:inline-block;padding:0;border-radius:3px;overflow:hidden;box-shadow:0 2px 4px rgba(0,0,0,.04)}#mec-login-form.mec-login-form .mec-login-input label i{padding:15px 13px 17px 16px;vertical-align:middle;font-size:20px;width:50px;color:#c5cad0;background:#fafafa;margin-right:0;float:left}#mec-login-form.mec-login-form .mec-login-forgotpassword{float:left;width:49%;text-align:left;padding-top:10px;font-size:13px;padding-left:2px}#mec-login-form.mec-login-form button{width:120px;height:44px;border:none;color:#fff;border-radius:3px;font-size:12px;font-weight:700;letter-spacing:1px;text-transform:uppercase;box-shadow:0 4px 22px -7px #40d9f1;transition:all .22s ease;margin:0;min-width:unset;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% - 170px);color:#fff;padding:10px 22px;border-radius:3px;background:#fff;height:47px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text strong{color:#3fcc60}#mec-login-form.mec-login-form .mec-ajax-login-loading-text strong:before{content:"";position:absolute;top:8px;left:1px;border-right:2px solid #3fcc60;border-bottom:2px solid #3acb5c;transform:rotate(45deg);transform-origin:0 100%;color:#000;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards;width:8px;height:14px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong:after{content:"";position:absolute;top:14px;left:5px;border-bottom:2px solid #ff5d39;transform:rotate(45deg);transform-origin:0 100%;color:#000;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards;width:14px;height:4px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong{color:#ff5d39}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong:before{border-color:#ff5d39;border-bottom:none}@keyframes lds-ripple{0%{top:28px;left:28px;width:0;height:0;opacity:1}100%{top:-1px;left:-1px;width:58px;height:58px;opacity:0}}.mec-book-form-gateway-checkout [id*=mec_do_transaction_stripe_] .mec-form-row:first-child{margin-bottom:20px}.mec-events-meta-group-booking .StripeElement{box-sizing:border-box;height:40px;padding:10px 12px;border:1px solid transparent;border-radius:4px;background-color:#fff;box-shadow:0 1px 3px 0 #e6ebf1;-webkit-transition:box-shadow 150ms ease;transition:box-shadow 150ms ease;margin-bottom:20px;background:#fff}.mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text]{box-sizing:border-box;height:40px;padding:10px 12px;border:0!important;border-radius:4px;background-color:#fff;box-shadow:0 1px 3px 0 #e6ebf1!important;-webkit-transition:box-shadow 150ms ease;transition:box-shadow 150ms ease;margin-bottom:20px;background:#fff!important}.mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text]:focus{outline:0}.mec-events-meta-group-booking .StripeElement--focus{box-shadow:0 1px 3px 0 #cfd7df}.mec-events-meta-group-booking .StripeElement--invalid{border-color:#fa755a}.mec-events-meta-group-booking .StripeElement--webkit-autofill{background-color:#fefde5!important}.mec-booking-tab-content .button,.mec-booking-tab-content .mec-reg-field-add-option,.mec-fes-form .mec-form-row .button:not(.wp-color-result),.mec-fes-form input[type=file],ul#mec_reg_form_fields li .mec_reg_field_remove{height:40px;margin-top:1px;text-decoration:none;font-size:14px;line-height:34px!important;margin:0;padding:0 15px 1px!important;text-transform:none;letter-spacing:0;font-weight:600;color:#40d9f1;background:#fff;border-radius:3px;margin-right:8px;border:2px solid #cfeff5;box-shadow:0 2px 6px -3px #cfeff5}.mec-booking-tab-content .button:hover,.mec-booking-tab-content .mec-reg-field-add-option:hover,.mec-fes-form .mec-form-row .button:not(.wp-color-result):hover{background:#40d9f1;color:#fff;border-color:#40d9f1;box-shadow:0 2px 6px -3px #40d9f1}.mec-fes-form .mec-form-row input+button.button{vertical-align:top}.mec-fes-form .mec-form-row .quicktags-toolbar input.button.button-small{border-width:1px;padding:0 7px;color:#80c6d2;font-weight:400;margin:1px;transform:none}.mec-fes-form input[type=file]{max-width:166px;text-align:center;height:44px;transition:all .2s ease;border-radius:5px!important;border:2px dashed #b8e9f3}.mec-fes-form input[type=file]:hover{box-shadow:0 2px 16px -3px #cfeff5}.mec-fes-form input[type=file]::-webkit-file-upload-button{visibility:hidden;width:1px;height:38px}.mec-fes-form input[type=file]::-moz-file-upload-button{visibility:hidden;width:1px;height:38px}.mec-fes-form .mec-meta-box-fields>label{padding:0}#mec_reg_form_fields li{list-style:none}ul#mec_reg_form_fields{padding:0;margin:0}ul#mec_reg_form_fields li{background:#f8feff;margin:6px -20px;padding:15px 25px 10px;width:auto;font-size:13px;border-top:1px solid #e8fafd;border-bottom:1px solid #e8fafd;position:relative}ul#mec_reg_form_fields li .mec_reg_field_remove{position:absolute;right:10px;top:10px;margin:0;padding:6px 8px!important;font-size:11px;line-height:12px!important;min-height:10px;height:auto;display:block;cursor:pointer;color:#ea6485;border-color:#ffd2dd;letter-spacing:.4px}ul#mec_reg_form_fields li .mec_reg_field_remove:hover{background:#ea6485;color:#fff;border-color:#ea6485;box-shadow:0 2px 6px -3px #ea6485}#mec_reg_form_fields input[type=checkbox],#mec_reg_form_fields input[type=radio],.mec-form-row input[type=checkbox],.mec-form-row input[type=radio]{background-color:#fff;border:1px solid #cfeff5;box-shadow:0 1px 3px -1px #cfeff5;padding:9px;border-radius:3px;min-width:24px;min-height:24px;display:inline-block!important;vertical-align:middle;float:none;transition:all .18s ease;outline:0;margin:1px 4px 4px 0;text-align:left;cursor:pointer;-webkit-appearance:none;-moz-appearance:none}#mec_reg_form_fields input[type=checkbox]:focus,#mec_reg_form_fields input[type=radio]:focus,.mec-form-row input[type=checkbox]:focus,.mec-form-row input[type=radio]:focus{outline:0}#mec_reg_form_fields input[type=radio],.mec-form-row input[type=radio]{-webkit-appearance:none;border-radius:20px!important;min-width:20px;min-height:20px;margin:0 0 4px 0;vertical-align:middle}#mec_reg_form_fields input[type=checkbox]:hover,#mec_reg_form_fields input[type=radio]:hover,.mec-form-row input[type=checkbox]:hover,.mec-form-row input[type=radio]:hover{border-color:#40d9f1}#mec_reg_form_fields input[type=checkbox]:checked,#mec_reg_form_fields input[type=radio]:checked,.mec-fes-form .mec-form-row input[type=checkbox]:checked,.mec-fes-form .mec-form-row input[type=radio]:checked{box-shadow:0 1px 6px -2px #40d9f1;border-color:#40d9f1;background:#40d9f1!important;border-radius:2px;position:relative}.mec-form-row input[type=radio]:checked{box-shadow:0 1px 6px -2px #40d9f1,inset 0 0 0 3px #fff!important}#mec_reg_form_fields input[type=checkbox]:checked::before,.mec-form-row input[type=checkbox]:checked:before{content:"";font:normal;position:absolute;top:12px;left:5px;margin:0;vertical-align:middle;line-height:1;border-right:2px solid #fff!important;border-bottom:2px solid #fff!important;transform:rotate(45deg);transform-origin:0 100%;color:#fff;transition:all .2s ease;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards}@keyframes checkbox-check{0%{width:0;height:0;border-color:#fff;transform:translate3d(0,0,0) rotate(45deg)}33%{width:6px;height:0;transform:translate3d(0,0,0) rotate(45deg)}100%{width:6px;height:12px;border-color:#fff;transform:translate3d(0,-12px,0) rotate(45deg)}}#mec_reg_form_field_types .button{position:relative;outline:0;border-radius:50px;padding:2px 21px 2px 31px!important;line-height:1;font-size:11px;font-weight:600;color:#40d9f1;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 2px 6px -3px #40d9f1;border:2px solid #cfeff5}#mec_fes_location_remove_image_button,#mec_fes_organizer_remove_image_button,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button,#mec_meta_box_tickets_form [id^=mec_ticket_row] button,#mec_reg_form_field_types .button.red{color:#ea6485;box-shadow:0 2px 6px -3px #ea6485;background:#fff;border-color:#ffd2dd}#mec_fes_location_remove_image_button:hover,#mec_fes_organizer_remove_image_button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button:hover,#mec_meta_box_tickets_form [id^=mec_ticket_row] button:hover,#mec_reg_form_field_types .button.red:hover{background:#ea6485;color:#fff}#mec_reg_form_field_types .button:before{position:absolute;left:12px;color:#40d9f1;content:"\e095";font-family:simple-line-icons;font-size:13px;display:inline-block}#mec_reg_form_field_types .button.red:before{color:#ea6485}#mec_reg_form_field_types .button.red:hover:before,#mec_reg_form_field_types .button:hover:before{color:#fff}#mec_fes_location_remove_image_button:hover,#mec_fes_organizer_remove_image_button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button:hover,#mec_meta_box_tickets_form [id^=mec_ticket_row] button:hover,#mec_price_per_dates_container .button:hover,#mec_reg_form_field_types .button.red:hover{color:#fff;border:2px solid #ea6485}#mec_taxes_fees_container_toggle [id^=mec_remove_fee_button],#mec_ticket_variations_list [id^=mec_remove_ticket_variation_button]{color:#ea6485;border-color:#ffd2dd}#mec_taxes_fees_container_toggle [id^=mec_remove_fee_button]:hover,#mec_ticket_variations_list [id^=mec_remove_ticket_variation_button]:hover{color:#fff;border:2px solid #ea6485;background:#ea6485}#mec_fees_list [id^=mec_remove_fee_button],#mec_meta_box_ticket_variations_form .mec-form-row [id^=mec_remove_ticket_variation_button]{margin-left:14px!important}#mec_meta_box_hourly_schedule_days .mec-add-hourly-schedule-button{line-height:10px!important}#mec_meta_box_tickets_form [id^=mec_ticket_row] .mec_add_price_date_button{color:#40d9f1;box-shadow:0 2px 6px -3px #40d9f1;border:2px solid #cfeff5}#mec_meta_box_tickets_form [id^=mec_ticket_row] .mec_add_price_date_button:hover,#mec_reg_form_field_types .button:hover{color:#fff;border:2px solid #40d9f1;background:#40d9f1}.mec-form-row input+span.mec-tooltip,.mec-form-row select+span.mec-tooltip{bottom:10px}.mec-form-row label+span.mec-tooltip{bottom:8px}.mec-form-row textarea+span.mec-tooltip{bottom:auto;vertical-align:top;top:12px}.mec-form-row span+span.mec-tooltip{bottom:0;vertical-align:middle}.mec-form-row .mec-col-8 input[type=text],.mec-form-row .mec-col-8 select,.mec-form-row .mec-col-8 span.mec-archive-skins{vertical-align:top}.mec-form-row input:disabled{opacity:.6;background:#f6f6f6}.mec-form-row p{font-size:12px!important;line-height:18px!important;color:#97b2bb!important}.mec-form-row p.description{font-style:italic}.ui-datepicker.ui-widget{border:1px solid #e8e8e8;box-shadow:0 1px 9px rgba(0,0,0,.12);font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif}table.ui-datepicker-calendar{margin-bottom:0}.ui-datepicker-calendar th{font-weight:700;color:#4a4b4c}.ui-datepicker-calendar td,.ui-datepicker-calendar th,.ui-datepicker-calendar tr{border:none}.ui-datepicker.ui-widget select{font-weight:600;font-size:12px;display:inline-block;border-radius:2px;padding:2px 10px;margin:5px 3px;width:auto;min-height:20px;height:26px;border:1px solid #e3e3e3;box-shadow:inset 0 1px 3px rgba(0,0,0,.04)}.ui-datepicker.ui-widget table{border-spacing:2px;border:none}.ui-datepicker.ui-widget td,.ui-datepicker.ui-widget tr{padding:0;background:0 0!important}.ui-datepicker.ui-widget td a{color:#9a9b9c;font-weight:600;width:30px;height:30px;line-height:30px;display:inline-block;border-radius:33px;padding:0;background:#fff;transition:all .2s ease}.ui-datepicker.ui-widget td a.ui-state-active,.ui-datepicker.ui-widget td a:hover{background:#40d9f1;color:#fff}.ui-datepicker.ui-widget .ui-datepicker-next,.ui-datepicker.ui-widget .ui-datepicker-prev{color:#40d9f1;width:30px;height:30px;line-height:30px;display:inline-block;text-align:center;border-radius:33px;background:#ecfcff;transition:all .2s ease}.ui-datepicker.ui-widget .ui-datepicker-next:hover,.ui-datepicker.ui-widget .ui-datepicker-prev:hover{background:#fff;box-shadow:0 0 7px -3px rgba(0,0,0,.4)}.mec-fes-form .mec-tooltip .dashicons-before:before{color:#40d9f1}.mec-fes-form button[type=submit].mec-fes-sub-button{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;border-radius:3px;background:#40d9f1;color:#fff;height:54px;font-size:17px;font-weight:700;box-shadow:0 2px 8px -4px #40d9f1;display:block;transition:all .28s ease;text-transform:uppercase;margin:20px 0 0;padding:14px 20px;border:0;cursor:pointer;text-align:center;letter-spacing:.1em;line-height:1}.mec-fes-form button[type=submit].mec-fes-sub-button:hover{box-shadow:0 2px 12px -2px #40d9f1}.mec-fes-form button[type=submit].mec-fes-sub-button:focus{margin-bottom:-2px;background:#1dc2dc}.mec-fes-form .mec-title span.mec-dashicons{color:#40d9f1;float:left;margin-right:5px}.mec-fes-form .mec-tooltip .box h5{padding:14px 2px}#mec_fes_form,.mec-fes-form-top-actions{max-width:838px;margin:0 auto}@media only screen and (min-width:961px){.mec-fes-form .mec-fes-form-cntt{width:calc(100% - 300px);float:left;padding-right:20px;max-width:538px;display:block}.mec-fes-form .mec-fes-form-sdbr{width:300px}}.mec-fes-form .quicktags-toolbar,.mec-fes-form div.mce-toolbar-grp{background:#ecfcff;border-bottom:1px solid #cfeff5;box-shadow:0 1px 0 1px #cfeff5}.mec-fes-form .quicktags-toolbar{margin-right:-1px;border-top:1px solid #cfeff5}.mec-fes-form div.mce-statusbar{border-top-color:#cfeff5}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-listbox{border:1px solid #cfeff5;border-radius:3px}.mec-fes-form .mce-tinymce.mce-container.mce-panel{border:1px solid #cfeff5;box-shadow:0 2px 6px -3px #cfeff5;border-radius:2px 0 2px 2px}.mec-fes-form .wp-editor-tools .wp-media-buttons{transform:translateY(-6px);margin-top:-6px}.mec-fes-form .wp-editor-tabs{padding-right:0;margin-right:-2px}.mec-fes-form .wp-editor-tabs .wp-switch-editor{border-radius:3px 3px 0 0;border-color:#cfeff5;background:#fff;color:#96b8bd;border-bottom:1px solid #ecfcff}.mec-fes-form .html-active .switch-html,.mec-fes-form .tmce-active .switch-tmce,.mec-fes-form .wp-editor-tabs .wp-switch-editor:active{background:#ecfcff;color:#40d9f1}.mec-fes-form .wp-editor-container,.mec-fes-form div.mce-edit-area.mce-panel{border:none;box-shadow:none}.mec-fes-form .wp-editor-container textarea.wp-editor-area{max-width:100%}.mec-fes-form .mce-toolbar .mce-listbox button{font-size:12px;line-height:22px;color:#798f96}.mec-fes-form .mce-toolbar .mce-ico{color:#627f88}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-active,.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn:active,.mec-fes-form .qt-dfw.active{background:#fff;border-color:#40d9f1;box-shadow:inset 0 2px 6px -3px rgba(106,231,255,.7)}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-active .mce-ico{color:#40d9f1}body .mce-menu .mce-menu-item.mce-active.mce-menu-item-normal,body .mce-menu .mce-menu-item.mce-selected,body .mce-menu .mce-menu-item:focus,body .mce-menu .mce-menu-item:hover,body.mce-menu .mce-menu-item.mce-active.mce-menu-item-preview{background:#40d9f1;color:#fff}.mec-fes-form .mec-not-in-days-day{display:inline-block;padding:4px 32px 4px 15px;border-radius:33px;border:1px solid #cfeff5;box-shadow:0 1px 3px -1px #cfeff5;background:#fbfeff;color:#40d9f1;vertical-align:top}.mec-fes-form .mec-not-in-days-remove{display:inline-block;padding:0 1px 0 0;margin-left:-30px;vertical-align:sub;background:#ff918a;color:#fff;font-family:cursive;width:21px;height:21px;line-height:17px;text-align:center;border-radius:20px;cursor:pointer}.mec-fes-list ul li .mec-event-status{float:left;margin-right:10px;margin-left:0;font-size:11px;font-weight:400;letter-spacing:.3px;border-radius:3px;padding:4px 8px}.mec-fes-form .post-status.mec-book-confirmed:before,.mec-fes-list ul li .mec-event-status.mec-book-confirmed:before{content:"";margin:0;vertical-align:middle;line-height:1;border-right:2px solid #fff!important;border-bottom:2px solid #fff!important;transform:rotate(45deg);color:#fff;width:6px;height:12px;float:left;margin-right:6px}.mec-fes-list ul li .mec-fes-event-export a:before,.mec-fes-list ul li .mec-fes-event-remove:before,.mec-fes-list ul li .mec-fes-event-view a:before,.mec-fes-list-top-actions a:before{content:"\e054";font-family:simple-line-icons;font-size:13px;vertical-align:middle}.mec-fes-list ul li .mec-fes-event-view a:before{content:"\e087"}.mec-fes-list-top-actions a:before{content:"\e095";font-weight:400;margin-right:6px}.mec-fes-list ul li .mec-fes-event-export a:before{content:"\e083"}.mec-fes-form .post-status{border-radius:20px}.mec-fes-form .post-status.mec-book-confirmed:before{height:20px;width:9px;margin:3px 10px}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker-calendar th{height:auto;padding:0}.ui-datepicker .ui-datepicker-calendar td a,.ui-datepicker-calendar th{font-size:14px;line-height:30px}.mec-fes-form .description{font-size:16px}.mec-fes-form input[type=file]{text-align:left}.mec-fes-export-wrapper{width:640px;background:#f8feff;padding:40px 25px}.mec-fes-export-wrapper .mec-fes-btn-date{font-size:16px;line-height:44px;overflow:hidden}.mec-fes-export-wrapper .date-messgae{font-family:sans-serif;padding:2px 18px}.mec-fes-list ul li .mec-event-export-csv,.mec-fes-list ul li .mec-event-export-excel{font-size:12px;border:1px solid #40d9f1;padding:1px 4px;background:rgba(141,229,243,.18);border-radius:4px;color:#40d9f1;font-family:sans-serif;cursor:pointer;display:inline-block;height:26px;line-height:22px}.mec-export-badge{font-size:11px;color:#40d9f1;width:auto;height:24px;line-height:25px;display:inline-block;padding:0 8px;text-align:center;border-radius:3px;background:#ecfcff;transition:all .2s ease}.mec-fes-list ul li .mec-fes-event-export{font-size:11px;background:#f7f7f7;float:right;margin-left:5px}.mec-fes-list ul li .mec-fes-event-export:hover{cursor:pointer;background:#90f0e0;border-color:#4dc8cc}.mec-fes-export-wrapper ul{padding:0;width:100%;text-align:center}.mec-fes-export-wrapper ul li{list-style:none;display:inline-block;width:30%;padding:10px 15px 10px 32px;border-radius:3px;margin-bottom:15px;border:1px solid #cfeff5;box-shadow:0 2px 6px -4px #cfeff5;background:#fff;line-height:normal;margin-right:10px;position:relative;cursor:pointer;font-size:13px;line-height:1;transition:all .2s ease}.mec-fes-export-wrapper ul li:nth-child(3n+0){margin-right:0}.mec-fes-export-wrapper ul li:hover{box-shadow:0 2px 16px -1px #c6e8ef}.mec-fes-export-wrapper ul li:before{content:"";position:absolute;display:inline-block;background:#fff;width:15px;height:15px;margin:-1px 0 0 5px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32);border-radius:50%;left:9px;top:calc(50% - 7px)}.mec-fes-export-wrapper ul li.fes-export-date-active{color:#40d9f1}.mec-fes-export-wrapper ul li.fes-export-date-active:before{width:15px;height:15px;border:6px solid #40d9f1;background:#fff;box-shadow:0 3px 16px -3px #40d9f1}.mec-fes-btn-export{margin-left:15px;margin-top:12px}.mec-fes-btn-export span{position:relative;border:none;border-radius:3px;color:#fff!important;display:inline-block;font-size:13px;line-height:1;text-transform:none;font-weight:400;text-decoration:none;cursor:pointer;margin-right:4px;line-height:1;letter-spacing:0;padding:15px 22px;background:#39c36e;box-shadow:0 1px 7px -3px #39c36e!important;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;cursor:pointer;margin-left:6px}.mec-fes-btn-export span:hover{background:#222}.mec-event-export-excel:before,span.mec-event-export-csv:before{content:"\e083";font-family:simple-line-icons;font-size:13px;vertical-align:middle;margin-right:7px;margin-top:-1px;display:inline-block}.mec-fes-list .wn-p-t-right{min-width:170px;max-width:200px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#000;color:#fff;font-weight:400;font-size:14px;letter-spacing:.5px;line-height:1.5;position:absolute;z-index:99999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #535a61;visibility:hidden;opacity:0;transition:opacity .23s;padding:5px 10px 6px;border-radius:8px;text-align:center;font-style:normal}.mec-fes-list .mec-fes-event-export:hover .wn-p-t-right,.mec-fes-list .mec-fes-event-remove:hover .wn-p-t-right,.mec-fes-list .mec-fes-event-view:hover .wn-p-t-right{visibility:visible;opacity:1}.mec-fes-list .wn-p-t-right i{position:absolute!important;top:100%;right:50%;margin-top:-6px!important;margin-right:-6px!important;width:12px;height:24px;overflow:hidden;transform:rotate(-90deg)}.mec-fes-list .wn-p-t-right i:after{content:'';position:absolute;width:12px;height:12px;left:0;top:50%;transform:translate(50%,-50%) rotate(-45deg);background-color:#000;box-shadow:0 8px 9px -4px #535a61}
|
assets/js/frontend.js
CHANGED
@@ -10,7 +10,8 @@ var mecSingleEventDisplayer = {
|
|
10 |
type: "get",
|
11 |
success: function (response) {
|
12 |
jQuery('.mec-modal-result').removeClass("mec-modal-preloader");
|
13 |
-
lity(response);
|
|
|
14 |
|
15 |
setTimeout(function () {
|
16 |
grecaptcha.render("g-recaptcha", {
|
@@ -1943,6 +1944,7 @@ var mecSingleEventDisplayer = {
|
|
1943 |
|
1944 |
// Init Masonry
|
1945 |
jQuery(window).load(function () {
|
|
|
1946 |
initMasonry();
|
1947 |
if (typeof custom_dev !== undefined) var custom_dev;
|
1948 |
if (custom_dev == 'yes') {
|
@@ -1985,6 +1987,9 @@ var mecSingleEventDisplayer = {
|
|
1985 |
}
|
1986 |
});
|
1987 |
|
|
|
|
|
|
|
1988 |
function initMasonry() {
|
1989 |
var $container = $("#mec_skin_" + settings.id + " .mec-event-masonry");
|
1990 |
var $grid = $container.isotope({
|
10 |
type: "get",
|
11 |
success: function (response) {
|
12 |
jQuery('.mec-modal-result').removeClass("mec-modal-preloader");
|
13 |
+
//lity(response);
|
14 |
+
jQuery.featherlight(response);
|
15 |
|
16 |
setTimeout(function () {
|
17 |
grecaptcha.render("g-recaptcha", {
|
1944 |
|
1945 |
// Init Masonry
|
1946 |
jQuery(window).load(function () {
|
1947 |
+
|
1948 |
initMasonry();
|
1949 |
if (typeof custom_dev !== undefined) var custom_dev;
|
1950 |
if (custom_dev == 'yes') {
|
1987 |
}
|
1988 |
});
|
1989 |
|
1990 |
+
// Fix Elementor Masonry
|
1991 |
+
if ( mecdata.elementor_edit_mode != 'no' ) elementorFrontend.hooks.addAction('frontend/element_ready/global', initMasonry());
|
1992 |
+
|
1993 |
function initMasonry() {
|
1994 |
var $container = $("#mec_skin_" + settings.id + " .mec-event-masonry");
|
1995 |
var $grid = $container.isotope({
|
assets/js/jquery.nice-select.min.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
/* jQuery Nice Select - v1.0
|
2 |
-
https://github.com/hernansartorio/jquery-nice-select
|
3 |
-
Made by Hernán Sartorio */
|
4 |
!function(e){e.fn.niceSelect=function(t){function s(t){t.after(e("<div></div>").addClass("nice-select").addClass(t.attr("class")||"").addClass(t.attr("disabled")?"disabled":"").attr("tabindex",t.attr("disabled")?null:"0").html('<span class="current"></span><ul class="list"></ul>'));var s=t.next(),n=t.find("option"),i=t.find("option:selected");s.find(".current").html(i.data("display")||i.text()),n.each(function(t){var n=e(this),i=n.data("display");s.find("ul").append(e("<li></li>").attr("data-value",n.val()).attr("data-display",i||null).addClass("option"+(n.is(":selected")?" selected":"")+(n.is(":disabled")?" disabled":"")).html(n.text()))})}if("string"==typeof t)return"update"==t?this.each(function(){var t=e(this),n=e(this).next(".nice-select"),i=n.hasClass("open");n.length&&(n.remove(),s(t),i&&t.next().trigger("click"))}):"destroy"==t?(this.each(function(){var t=e(this),s=e(this).next(".nice-select");s.length&&(s.remove(),t.css("display",""))}),0==e(".nice-select").length&&e(document).off(".nice_select")):console.log('Method "'+t+'" does not exist.'),this;this.hide(),this.each(function(){var t=e(this);t.next().hasClass("nice-select")||s(t)}),e(document).off(".nice_select"),e(document).on("click.nice_select",".nice-select",function(t){var s=e(this);e(".nice-select").not(s).removeClass("open"),s.toggleClass("open"),s.hasClass("open")?(s.find(".option"),s.find(".focus").removeClass("focus"),s.find(".selected").addClass("focus")):s.focus()}),e(document).on("click.nice_select",function(t){0===e(t.target).closest(".nice-select").length&&e(".nice-select").removeClass("open").find(".option")}),e(document).on("click.nice_select",".nice-select .option:not(.disabled)",function(t){var s=e(this),n=s.closest(".nice-select");n.find(".selected").removeClass("selected"),s.addClass("selected");var i=s.data("display")||s.text();n.find(".current").text(i),n.prev("select").val(s.data("value")).trigger("change")}),e(document).on("keydown.nice_select",".nice-select",function(t){var s=e(this),n=e(s.find(".focus")||s.find(".list .option.selected"));if(32==t.keyCode||13==t.keyCode)return s.hasClass("open")?n.trigger("click"):s.trigger("click"),!1;if(40==t.keyCode){if(s.hasClass("open")){var i=n.nextAll(".option:not(.disabled)").first();i.length>0&&(s.find(".focus").removeClass("focus"),i.addClass("focus"))}else s.trigger("click");return!1}if(38==t.keyCode){if(s.hasClass("open")){var l=n.prevAll(".option:not(.disabled)").first();l.length>0&&(s.find(".focus").removeClass("focus"),l.addClass("focus"))}else s.trigger("click");return!1}if(27==t.keyCode)s.hasClass("open")&&s.trigger("click");else if(9==t.keyCode&&s.hasClass("open"))return!1});var n=document.createElement("a").style;return n.cssText="pointer-events:auto","auto"!==n.pointerEvents&&e("html").addClass("no-csspointerevents"),this}}(jQuery);
|
1 |
+
/* jQuery Nice Select - v1.0
|
2 |
+
https://github.com/hernansartorio/jquery-nice-select
|
3 |
+
Made by Hernán Sartorio */
|
4 |
!function(e){e.fn.niceSelect=function(t){function s(t){t.after(e("<div></div>").addClass("nice-select").addClass(t.attr("class")||"").addClass(t.attr("disabled")?"disabled":"").attr("tabindex",t.attr("disabled")?null:"0").html('<span class="current"></span><ul class="list"></ul>'));var s=t.next(),n=t.find("option"),i=t.find("option:selected");s.find(".current").html(i.data("display")||i.text()),n.each(function(t){var n=e(this),i=n.data("display");s.find("ul").append(e("<li></li>").attr("data-value",n.val()).attr("data-display",i||null).addClass("option"+(n.is(":selected")?" selected":"")+(n.is(":disabled")?" disabled":"")).html(n.text()))})}if("string"==typeof t)return"update"==t?this.each(function(){var t=e(this),n=e(this).next(".nice-select"),i=n.hasClass("open");n.length&&(n.remove(),s(t),i&&t.next().trigger("click"))}):"destroy"==t?(this.each(function(){var t=e(this),s=e(this).next(".nice-select");s.length&&(s.remove(),t.css("display",""))}),0==e(".nice-select").length&&e(document).off(".nice_select")):console.log('Method "'+t+'" does not exist.'),this;this.hide(),this.each(function(){var t=e(this);t.next().hasClass("nice-select")||s(t)}),e(document).off(".nice_select"),e(document).on("click.nice_select",".nice-select",function(t){var s=e(this);e(".nice-select").not(s).removeClass("open"),s.toggleClass("open"),s.hasClass("open")?(s.find(".option"),s.find(".focus").removeClass("focus"),s.find(".selected").addClass("focus")):s.focus()}),e(document).on("click.nice_select",function(t){0===e(t.target).closest(".nice-select").length&&e(".nice-select").removeClass("open").find(".option")}),e(document).on("click.nice_select",".nice-select .option:not(.disabled)",function(t){var s=e(this),n=s.closest(".nice-select");n.find(".selected").removeClass("selected"),s.addClass("selected");var i=s.data("display")||s.text();n.find(".current").text(i),n.prev("select").val(s.data("value")).trigger("change")}),e(document).on("keydown.nice_select",".nice-select",function(t){var s=e(this),n=e(s.find(".focus")||s.find(".list .option.selected"));if(32==t.keyCode||13==t.keyCode)return s.hasClass("open")?n.trigger("click"):s.trigger("click"),!1;if(40==t.keyCode){if(s.hasClass("open")){var i=n.nextAll(".option:not(.disabled)").first();i.length>0&&(s.find(".focus").removeClass("focus"),i.addClass("focus"))}else s.trigger("click");return!1}if(38==t.keyCode){if(s.hasClass("open")){var l=n.prevAll(".option:not(.disabled)").first();l.length>0&&(s.find(".focus").removeClass("focus"),l.addClass("focus"))}else s.trigger("click");return!1}if(27==t.keyCode)s.hasClass("open")&&s.trigger("click");else if(9==t.keyCode&&s.hasClass("open"))return!1});var n=document.createElement("a").style;return n.cssText="pointer-events:auto","auto"!==n.pointerEvents&&e("html").addClass("no-csspointerevents"),this}}(jQuery);
|
assets/packages/featherlight/featherlight.css
ADDED
@@ -0,0 +1,164 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/**
|
2 |
+
* Featherlight – ultra slim jQuery lightbox
|
3 |
+
* Version 1.7.14 - http://noelboss.github.io/featherlight/
|
4 |
+
*
|
5 |
+
* Copyright 2019, Noël Raoul Bossart (http://www.noelboss.com)
|
6 |
+
* MIT Licensed.
|
7 |
+
**/
|
8 |
+
|
9 |
+
html.with-featherlight {
|
10 |
+
/* disable global scrolling when featherlights are visible */
|
11 |
+
overflow: hidden;
|
12 |
+
}
|
13 |
+
|
14 |
+
.featherlight {
|
15 |
+
display: none;
|
16 |
+
|
17 |
+
/* dimensions: spanning the background from edge to edge */
|
18 |
+
position: fixed;
|
19 |
+
top: 0;
|
20 |
+
right: 0;
|
21 |
+
bottom: 0;
|
22 |
+
left: 0;
|
23 |
+
z-index: 2147483647;
|
24 |
+
/* z-index needs to be >= elements on the site. */
|
25 |
+
|
26 |
+
/* position: centering content */
|
27 |
+
text-align: center;
|
28 |
+
|
29 |
+
/* insures that the ::before pseudo element doesn't force wrap with fixed width content; */
|
30 |
+
white-space: nowrap;
|
31 |
+
|
32 |
+
/* styling */
|
33 |
+
cursor: pointer;
|
34 |
+
background: #333;
|
35 |
+
/* IE8 "hack" for nested featherlights */
|
36 |
+
background: rgba(0, 0, 0, 0);
|
37 |
+
}
|
38 |
+
|
39 |
+
/* support for nested featherlights. Does not work in IE8 (use JS to fix) */
|
40 |
+
.featherlight:last-of-type {
|
41 |
+
background: rgba(0, 0, 0, 0.8);
|
42 |
+
}
|
43 |
+
|
44 |
+
.featherlight:before {
|
45 |
+
/* position: trick to center content vertically */
|
46 |
+
content: '';
|
47 |
+
display: inline-block;
|
48 |
+
height: 100%;
|
49 |
+
vertical-align: middle;
|
50 |
+
}
|
51 |
+
|
52 |
+
.featherlight .featherlight-content {
|
53 |
+
/* make content container for positioned elements (close button) */
|
54 |
+
position: relative;
|
55 |
+
|
56 |
+
/* position: centering vertical and horizontal */
|
57 |
+
text-align: left;
|
58 |
+
vertical-align: middle;
|
59 |
+
display: inline-block;
|
60 |
+
|
61 |
+
/* dimensions: cut off images */
|
62 |
+
overflow: auto;
|
63 |
+
padding: 25px 25px 0;
|
64 |
+
border-bottom: 25px solid transparent;
|
65 |
+
|
66 |
+
/* dimensions: handling large content */
|
67 |
+
margin-left: 5%;
|
68 |
+
margin-right: 5%;
|
69 |
+
max-height: 95%;
|
70 |
+
|
71 |
+
/* styling */
|
72 |
+
background: #fff;
|
73 |
+
cursor: auto;
|
74 |
+
|
75 |
+
/* reset white-space wrapping */
|
76 |
+
white-space: normal;
|
77 |
+
}
|
78 |
+
|
79 |
+
/* contains the content */
|
80 |
+
.featherlight .featherlight-inner {
|
81 |
+
/* make sure its visible */
|
82 |
+
display: block;
|
83 |
+
}
|
84 |
+
|
85 |
+
/* don't show these though */
|
86 |
+
.featherlight script.featherlight-inner,
|
87 |
+
.featherlight link.featherlight-inner,
|
88 |
+
.featherlight style.featherlight-inner {
|
89 |
+
display: none;
|
90 |
+
}
|
91 |
+
|
92 |
+
.featherlight .featherlight-close-icon {
|
93 |
+
/* position: centering vertical and horizontal */
|
94 |
+
position: absolute;
|
95 |
+
z-index: 9999;
|
96 |
+
top: 0;
|
97 |
+
right: 0;
|
98 |
+
|
99 |
+
/* dimensions: 25px x 25px */
|
100 |
+
line-height: 25px;
|
101 |
+
width: 25px;
|
102 |
+
|
103 |
+
/* styling */
|
104 |
+
cursor: pointer;
|
105 |
+
text-align: center;
|
106 |
+
font-family: Arial, sans-serif;
|
107 |
+
background: #fff;
|
108 |
+
/* Set the background in case it overlaps the content */
|
109 |
+
background: rgba(255, 255, 255, 0.3);
|
110 |
+
color: #000;
|
111 |
+
border: none;
|
112 |
+
padding: 0;
|
113 |
+
}
|
114 |
+
|
115 |
+
/* See http://stackoverflow.com/questions/16077341/how-to-reset-all-default-styles-of-the-html5-button-element */
|
116 |
+
.featherlight .featherlight-close-icon::-moz-focus-inner {
|
117 |
+
border: 0;
|
118 |
+
padding: 0;
|
119 |
+
}
|
120 |
+
|
121 |
+
.featherlight .featherlight-image {
|
122 |
+
/* styling */
|
123 |
+
width: 100%;
|
124 |
+
}
|
125 |
+
|
126 |
+
|
127 |
+
.featherlight-iframe .featherlight-content {
|
128 |
+
/* removed the border for image croping since iframe is edge to edge */
|
129 |
+
border-bottom: 0;
|
130 |
+
padding: 0;
|
131 |
+
-webkit-overflow-scrolling: touch;
|
132 |
+
}
|
133 |
+
|
134 |
+
.featherlight iframe {
|
135 |
+
/* styling */
|
136 |
+
border: none;
|
137 |
+
}
|
138 |
+
|
139 |
+
.featherlight * {
|
140 |
+
/* See https://github.com/noelboss/featherlight/issues/42 */
|
141 |
+
-webkit-box-sizing: border-box;
|
142 |
+
-moz-box-sizing: border-box;
|
143 |
+
box-sizing: border-box;
|
144 |
+
}
|
145 |
+
|
146 |
+
/* handling phones and small screens */
|
147 |
+
@media only screen and (max-width: 1024px) {
|
148 |
+
.featherlight .featherlight-content {
|
149 |
+
/* dimensions: maximize lightbox with for small screens */
|
150 |
+
margin-left: 0;
|
151 |
+
margin-right: 0;
|
152 |
+
max-height: 98%;
|
153 |
+
|
154 |
+
padding: 10px 10px 0;
|
155 |
+
border-bottom: 10px solid transparent;
|
156 |
+
}
|
157 |
+
}
|
158 |
+
|
159 |
+
/* hide non featherlight items when printing */
|
160 |
+
@media print {
|
161 |
+
html.with-featherlight>*> :not(.featherlight) {
|
162 |
+
display: none;
|
163 |
+
}
|
164 |
+
}
|
assets/packages/featherlight/featherlight.js
ADDED
@@ -0,0 +1,667 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/**
|
2 |
+
* Featherlight - ultra slim jQuery lightbox
|
3 |
+
* Version 1.7.14-UMD - http://noelboss.github.io/featherlight/
|
4 |
+
*
|
5 |
+
* Copyright 2019, Noël Raoul Bossart (http://www.noelboss.com)
|
6 |
+
* MIT Licensed.
|
7 |
+
**/
|
8 |
+
(function (factory) {
|
9 |
+
if (typeof define === 'function' && define.amd) {
|
10 |
+
// AMD. Register as an anonymous module.
|
11 |
+
define(['jquery'], factory);
|
12 |
+
} else if (typeof module === 'object' && module.exports) {
|
13 |
+
// Node/CommonJS
|
14 |
+
module.exports = function (root, jQuery) {
|
15 |
+
if (jQuery === undefined) {
|
16 |
+
// require('jQuery') returns a factory that requires window to
|
17 |
+
// build a jQuery instance, we normalize how we use modules
|
18 |
+
// that require this pattern but the window provided is a noop
|
19 |
+
// if it's defined (how jquery works)
|
20 |
+
if (typeof window !== 'undefined') {
|
21 |
+
jQuery = require('jquery');
|
22 |
+
} else {
|
23 |
+
jQuery = require('jquery')(root);
|
24 |
+
}
|
25 |
+
}
|
26 |
+
factory(jQuery);
|
27 |
+
return jQuery;
|
28 |
+
};
|
29 |
+
} else {
|
30 |
+
// Browser globals
|
31 |
+
factory(jQuery);
|
32 |
+
}
|
33 |
+
})(function ($) {
|
34 |
+
"use strict";
|
35 |
+
|
36 |
+
if ('undefined' === typeof $) {
|
37 |
+
if ('console' in window) { window.console.info('Too much lightness, Featherlight needs jQuery.'); }
|
38 |
+
return;
|
39 |
+
}
|
40 |
+
if ($.fn.jquery.match(/-ajax/)) {
|
41 |
+
if ('console' in window) { window.console.info('Featherlight needs regular jQuery, not the slim version.'); }
|
42 |
+
return;
|
43 |
+
}
|
44 |
+
/* Featherlight is exported as $.featherlight.
|
45 |
+
It is a function used to open a featherlight lightbox.
|
46 |
+
[tech]
|
47 |
+
Featherlight uses prototype inheritance.
|
48 |
+
Each opened lightbox will have a corresponding object.
|
49 |
+
That object may have some attributes that override the
|
50 |
+
prototype's.
|
51 |
+
Extensions created with Featherlight.extend will have their
|
52 |
+
own prototype that inherits from Featherlight's prototype,
|
53 |
+
thus attributes can be overriden either at the object level,
|
54 |
+
or at the extension level.
|
55 |
+
To create callbacks that chain themselves instead of overriding,
|
56 |
+
use chainCallbacks.
|
57 |
+
For those familiar with CoffeeScript, this correspond to
|
58 |
+
Featherlight being a class and the Gallery being a class
|
59 |
+
extending Featherlight.
|
60 |
+
The chainCallbacks is used since we don't have access to
|
61 |
+
CoffeeScript's `super`.
|
62 |
+
*/
|
63 |
+
|
64 |
+
function Featherlight($content, config) {
|
65 |
+
if (this instanceof Featherlight) { /* called with new */
|
66 |
+
this.id = Featherlight.id++;
|
67 |
+
this.setup($content, config);
|
68 |
+
this.chainCallbacks(Featherlight._callbackChain);
|
69 |
+
} else {
|
70 |
+
var fl = new Featherlight($content, config);
|
71 |
+
fl.open();
|
72 |
+
return fl;
|
73 |
+
}
|
74 |
+
}
|
75 |
+
|
76 |
+
var opened = [],
|
77 |
+
pruneOpened = function (remove) {
|
78 |
+
opened = $.grep(opened, function (fl) {
|
79 |
+
return fl !== remove && fl.$instance.closest('body').length > 0;
|
80 |
+
});
|
81 |
+
return opened;
|
82 |
+
};
|
83 |
+
|
84 |
+
// Removes keys of `set` from `obj` and returns the removed key/values.
|
85 |
+
function slice(obj, set) {
|
86 |
+
var r = {};
|
87 |
+
for (var key in obj) {
|
88 |
+
if (key in set) {
|
89 |
+
r[key] = obj[key];
|
90 |
+
delete obj[key];
|
91 |
+
}
|
92 |
+
}
|
93 |
+
return r;
|
94 |
+
}
|
95 |
+
|
96 |
+
// NOTE: List of available [iframe attributes](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/iframe).
|
97 |
+
var iFrameAttributeSet = {
|
98 |
+
allow: 1, allowfullscreen: 1, frameborder: 1, height: 1, longdesc: 1, marginheight: 1, marginwidth: 1,
|
99 |
+
mozallowfullscreen: 1, name: 1, referrerpolicy: 1, sandbox: 1, scrolling: 1, src: 1, srcdoc: 1, style: 1,
|
100 |
+
webkitallowfullscreen: 1, width: 1
|
101 |
+
};
|
102 |
+
|
103 |
+
// Converts camelCased attributes to dasherized versions for given prefix:
|
104 |
+
// parseAttrs({hello: 1, hellFrozeOver: 2}, 'hell') => {froze-over: 2}
|
105 |
+
function parseAttrs(obj, prefix) {
|
106 |
+
var attrs = {},
|
107 |
+
regex = new RegExp('^' + prefix + '([A-Z])(.*)');
|
108 |
+
for (var key in obj) {
|
109 |
+
var match = key.match(regex);
|
110 |
+
if (match) {
|
111 |
+
var dasherized = (match[1] + match[2].replace(/([A-Z])/g, '-$1')).toLowerCase();
|
112 |
+
attrs[dasherized] = obj[key];
|
113 |
+
}
|
114 |
+
}
|
115 |
+
return attrs;
|
116 |
+
}
|
117 |
+
|
118 |
+
/* document wide key handler */
|
119 |
+
var eventMap = { keyup: 'onKeyUp', resize: 'onResize' };
|
120 |
+
|
121 |
+
var globalEventHandler = function (event) {
|
122 |
+
$.each(Featherlight.opened().reverse(), function () {
|
123 |
+
if (!event.isDefaultPrevented()) {
|
124 |
+
if (false === this[eventMap[event.type]](event)) {
|
125 |
+
event.preventDefault(); event.stopPropagation(); return false;
|
126 |
+
}
|
127 |
+
}
|
128 |
+
});
|
129 |
+
};
|
130 |
+
|
131 |
+
var toggleGlobalEvents = function (set) {
|
132 |
+
if (set !== Featherlight._globalHandlerInstalled) {
|
133 |
+
Featherlight._globalHandlerInstalled = set;
|
134 |
+
var events = $.map(eventMap, function (_, name) { return name + '.' + Featherlight.prototype.namespace; }).join(' ');
|
135 |
+
$(window)[set ? 'on' : 'off'](events, globalEventHandler);
|
136 |
+
}
|
137 |
+
};
|
138 |
+
|
139 |
+
Featherlight.prototype = {
|
140 |
+
constructor: Featherlight,
|
141 |
+
/*** defaults ***/
|
142 |
+
/* extend featherlight with defaults and methods */
|
143 |
+
namespace: 'featherlight', /* Name of the events and css class prefix */
|
144 |
+
targetAttr: 'data-featherlight', /* Attribute of the triggered element that contains the selector to the lightbox content */
|
145 |
+
variant: null, /* Class that will be added to change look of the lightbox */
|
146 |
+
resetCss: false, /* Reset all css */
|
147 |
+
background: null, /* Custom DOM for the background, wrapper and the closebutton */
|
148 |
+
openTrigger: 'click', /* Event that triggers the lightbox */
|
149 |
+
closeTrigger: 'click', /* Event that triggers the closing of the lightbox */
|
150 |
+
filter: null, /* Selector to filter events. Think $(...).on('click', filter, eventHandler) */
|
151 |
+
root: 'body', /* Where to append featherlights */
|
152 |
+
openSpeed: 250, /* Duration of opening animation */
|
153 |
+
closeSpeed: 250, /* Duration of closing animation */
|
154 |
+
closeOnClick: 'background', /* Close lightbox on click ('background', 'anywhere' or false) */
|
155 |
+
closeOnEsc: true, /* Close lightbox when pressing esc */
|
156 |
+
closeIcon: '✕', /* Close icon */
|
157 |
+
loading: '', /* Content to show while initial content is loading */
|
158 |
+
persist: false, /* If set, the content will persist and will be shown again when opened again. 'shared' is a special value when binding multiple elements for them to share the same content */
|
159 |
+
otherClose: null, /* Selector for alternate close buttons (e.g. "a.close") */
|
160 |
+
beforeOpen: $.noop, /* Called before open. can return false to prevent opening of lightbox. Gets event as parameter, this contains all data */
|
161 |
+
beforeContent: $.noop, /* Called when content is loaded. Gets event as parameter, this contains all data */
|
162 |
+
beforeClose: $.noop, /* Called before close. can return false to prevent closing of lightbox. Gets event as parameter, this contains all data */
|
163 |
+
afterOpen: $.noop, /* Called after open. Gets event as parameter, this contains all data */
|
164 |
+
afterContent: $.noop, /* Called after content is ready and has been set. Gets event as parameter, this contains all data */
|
165 |
+
afterClose: $.noop, /* Called after close. Gets event as parameter, this contains all data */
|
166 |
+
onKeyUp: $.noop, /* Called on key up for the frontmost featherlight */
|
167 |
+
onResize: $.noop, /* Called after new content and when a window is resized */
|
168 |
+
type: null, /* Specify type of lightbox. If unset, it will check for the targetAttrs value. */
|
169 |
+
contentFilters: ['jquery', 'image', 'html', 'ajax', 'iframe', 'text'], /* List of content filters to use to determine the content */
|
170 |
+
|
171 |
+
/*** methods ***/
|
172 |
+
/* setup iterates over a single instance of featherlight and prepares the background and binds the events */
|
173 |
+
setup: function (target, config) {
|
174 |
+
/* all arguments are optional */
|
175 |
+
if (typeof target === 'object' && target instanceof $ === false && !config) {
|
176 |
+
config = target;
|
177 |
+
target = undefined;
|
178 |
+
}
|
179 |
+
|
180 |
+
var self = $.extend(this, config, { target: target }),
|
181 |
+
css = !self.resetCss ? self.namespace : self.namespace + '-reset', /* by adding -reset to the classname, we reset all the default css */
|
182 |
+
$background = $(self.background || [
|
183 |
+
'<div class="' + css + '-loading ' + css + '">',
|
184 |
+
'<div class="' + css + '-content">',
|
185 |
+
'<button class="' + css + '-close-icon ' + self.namespace + '-close" aria-label="Close">',
|
186 |
+
self.closeIcon,
|
187 |
+
'</button>',
|
188 |
+
'<div class="' + self.namespace + '-inner">' + self.loading + '</div>',
|
189 |
+
'</div>',
|
190 |
+
'</div>'].join('')),
|
191 |
+
closeButtonSelector = '.' + self.namespace + '-close' + (self.otherClose ? ',' + self.otherClose : '');
|
192 |
+
|
193 |
+
self.$instance = $background.clone().addClass(self.variant); /* clone DOM for the background, wrapper and the close button */
|
194 |
+
|
195 |
+
/* close when click on background/anywhere/null or closebox */
|
196 |
+
self.$instance.on(self.closeTrigger + '.' + self.namespace, function (event) {
|
197 |
+
if (event.isDefaultPrevented()) {
|
198 |
+
return;
|
199 |
+
}
|
200 |
+
var $target = $(event.target);
|
201 |
+
if (('background' === self.closeOnClick && $target.is('.' + self.namespace))
|
202 |
+
|| 'anywhere' === self.closeOnClick
|
203 |
+
|| $target.closest(closeButtonSelector).length) {
|
204 |
+
self.close(event);
|
205 |
+
event.preventDefault();
|
206 |
+
}
|
207 |
+
});
|
208 |
+
|
209 |
+
return this;
|
210 |
+
},
|
211 |
+
|
212 |
+
/* this method prepares the content and converts it into a jQuery object or a promise */
|
213 |
+
getContent: function () {
|
214 |
+
if (this.persist !== false && this.$content) {
|
215 |
+
return this.$content;
|
216 |
+
}
|
217 |
+
var self = this,
|
218 |
+
filters = this.constructor.contentFilters,
|
219 |
+
readTargetAttr = function (name) { return self.$currentTarget && self.$currentTarget.attr(name); },
|
220 |
+
targetValue = readTargetAttr(self.targetAttr),
|
221 |
+
data = self.target || targetValue || '';
|
222 |
+
|
223 |
+
/* Find which filter applies */
|
224 |
+
var filter = filters[self.type]; /* check explicit type like {type: 'image'} */
|
225 |
+
|
226 |
+
/* check explicit type like data-featherlight="image" */
|
227 |
+
if (!filter && data in filters) {
|
228 |
+
filter = filters[data];
|
229 |
+
data = self.target && targetValue;
|
230 |
+
}
|
231 |
+
data = data || readTargetAttr('href') || '';
|
232 |
+
|
233 |
+
/* check explicity type & content like {image: 'photo.jpg'} */
|
234 |
+
if (!filter) {
|
235 |
+
for (var filterName in filters) {
|
236 |
+
if (self[filterName]) {
|
237 |
+
filter = filters[filterName];
|
238 |
+
data = self[filterName];
|
239 |
+
}
|
240 |
+
}
|
241 |
+
}
|
242 |
+
|
243 |
+
/* otherwise it's implicit, run checks */
|
244 |
+
if (!filter) {
|
245 |
+
var target = data;
|
246 |
+
data = null;
|
247 |
+
$.each(self.contentFilters, function () {
|
248 |
+
filter = filters[this];
|
249 |
+
if (filter.test) {
|
250 |
+
data = filter.test(target);
|
251 |
+
}
|
252 |
+
if (!data && filter.regex && target.match && target.match(filter.regex)) {
|
253 |
+
data = target;
|
254 |
+
}
|
255 |
+
return !data;
|
256 |
+
});
|
257 |
+
if (!data) {
|
258 |
+
if ('console' in window) { window.console.error('Featherlight: no content filter found ' + (target ? ' for "' + target + '"' : ' (no target specified)')); }
|
259 |
+
return false;
|
260 |
+
}
|
261 |
+
}
|
262 |
+
/* Process it */
|
263 |
+
return filter.process.call(self, data);
|
264 |
+
},
|
265 |
+
|
266 |
+
/* sets the content of $instance to $content */
|
267 |
+
setContent: function ($content) {
|
268 |
+
this.$instance.removeClass(this.namespace + '-loading');
|
269 |
+
|
270 |
+
/* we need a special class for the iframe */
|
271 |
+
this.$instance.toggleClass(this.namespace + '-iframe', $content.is('iframe'));
|
272 |
+
|
273 |
+
/* replace content by appending to existing one before it is removed
|
274 |
+
this insures that featherlight-inner remain at the same relative
|
275 |
+
position to any other items added to featherlight-content */
|
276 |
+
this.$instance.find('.' + this.namespace + '-inner')
|
277 |
+
.not($content) /* excluded new content, important if persisted */
|
278 |
+
.slice(1).remove().end() /* In the unexpected event where there are many inner elements, remove all but the first one */
|
279 |
+
.replaceWith($.contains(this.$instance[0], $content[0]) ? '' : $content);
|
280 |
+
|
281 |
+
this.$content = $content.addClass(this.namespace + '-inner');
|
282 |
+
|
283 |
+
return this;
|
284 |
+
},
|
285 |
+
|
286 |
+
/* opens the lightbox. "this" contains $instance with the lightbox, and with the config.
|
287 |
+
Returns a promise that is resolved after is successfully opened. */
|
288 |
+
open: function (event) {
|
289 |
+
var self = this;
|
290 |
+
self.$instance.hide().appendTo(self.root);
|
291 |
+
if ((!event || !event.isDefaultPrevented())
|
292 |
+
&& self.beforeOpen(event) !== false) {
|
293 |
+
|
294 |
+
if (event) {
|
295 |
+
event.preventDefault();
|
296 |
+
}
|
297 |
+
var $content = self.getContent();
|
298 |
+
|
299 |
+
if ($content) {
|
300 |
+
opened.push(self);
|
301 |
+
|
302 |
+
toggleGlobalEvents(true);
|
303 |
+
|
304 |
+
self.$instance.fadeIn(self.openSpeed);
|
305 |
+
self.beforeContent(event);
|
306 |
+
|
307 |
+
/* Set content and show */
|
308 |
+
return $.when($content)
|
309 |
+
.always(function ($openendContent) {
|
310 |
+
if ($openendContent) {
|
311 |
+
self.setContent($openendContent);
|
312 |
+
self.afterContent(event);
|
313 |
+
}
|
314 |
+
})
|
315 |
+
.then(self.$instance.promise())
|
316 |
+
/* Call afterOpen after fadeIn is done */
|
317 |
+
.done(function () { self.afterOpen(event); });
|
318 |
+
}
|
319 |
+
}
|
320 |
+
self.$instance.detach();
|
321 |
+
return $.Deferred().reject().promise();
|
322 |
+
},
|
323 |
+
|
324 |
+
/* closes the lightbox. "this" contains $instance with the lightbox, and with the config
|
325 |
+
returns a promise, resolved after the lightbox is successfully closed. */
|
326 |
+
close: function (event) {
|
327 |
+
var self = this,
|
328 |
+
deferred = $.Deferred();
|
329 |
+
|
330 |
+
if (self.beforeClose(event) === false) {
|
331 |
+
deferred.reject();
|
332 |
+
} else {
|
333 |
+
|
334 |
+
if (0 === pruneOpened(self).length) {
|
335 |
+
toggleGlobalEvents(false);
|
336 |
+
}
|
337 |
+
|
338 |
+
self.$instance.fadeOut(self.closeSpeed, function () {
|
339 |
+
self.$instance.detach();
|
340 |
+
self.afterClose(event);
|
341 |
+
deferred.resolve();
|
342 |
+
});
|
343 |
+
}
|
344 |
+
return deferred.promise();
|
345 |
+
},
|
346 |
+
|
347 |
+
/* resizes the content so it fits in visible area and keeps the same aspect ratio.
|
348 |
+
Does nothing if either the width or the height is not specified.
|
349 |
+
Called automatically on window resize.
|
350 |
+
Override if you want different behavior. */
|
351 |
+
resize: function (w, h) {
|
352 |
+
if (w && h) {
|
353 |
+
/* Reset apparent image size first so container grows */
|
354 |
+
this.$content.css('width', '').css('height', '');
|
355 |
+
/* Calculate the worst ratio so that dimensions fit */
|
356 |
+
/* Note: -1 to avoid rounding errors */
|
357 |
+
var ratio = Math.max(
|
358 |
+
w / (this.$content.parent().width() - 1),
|
359 |
+
h / (this.$content.parent().height() - 1));
|
360 |
+
/* Resize content */
|
361 |
+
if (ratio > 1) {
|
362 |
+
ratio = h / Math.floor(h / ratio); /* Round ratio down so height calc works */
|
363 |
+
this.$content.css('width', '' + w / ratio + 'px').css('height', '' + h / ratio + 'px');
|
364 |
+
}
|
365 |
+
}
|
366 |
+
},
|
367 |
+
|
368 |
+
/* Utility function to chain callbacks
|
369 |
+
[Warning: guru-level]
|
370 |
+
Used be extensions that want to let users specify callbacks but
|
371 |
+
also need themselves to use the callbacks.
|
372 |
+
The argument 'chain' has callback names as keys and function(super, event)
|
373 |
+
as values. That function is meant to call `super` at some point.
|
374 |
+
*/
|
375 |
+
chainCallbacks: function (chain) {
|
376 |
+
for (var name in chain) {
|
377 |
+
this[name] = $.proxy(chain[name], this, $.proxy(this[name], this));
|
378 |
+
}
|
379 |
+
}
|
380 |
+
};
|
381 |
+
|
382 |
+
$.extend(Featherlight, {
|
383 |
+
id: 0, /* Used to id single featherlight instances */
|
384 |
+
autoBind: '[data-featherlight]', /* Will automatically bind elements matching this selector. Clear or set before onReady */
|
385 |
+
defaults: Featherlight.prototype, /* You can access and override all defaults using $.featherlight.defaults, which is just a synonym for $.featherlight.prototype */
|
386 |
+
/* Contains the logic to determine content */
|
387 |
+
contentFilters: {
|
388 |
+
jquery: {
|
389 |
+
regex: /^[#.]\w/, /* Anything that starts with a class name or identifiers */
|
390 |
+
test: function (elem) { return elem instanceof $ && elem; },
|
391 |
+
process: function (elem) { return this.persist !== false ? $(elem) : $(elem).clone(true); }
|
392 |
+
},
|
393 |
+
image: {
|
394 |
+
regex: /\.(png|jpg|jpeg|gif|tiff?|bmp|svg)(\?\S*)?$/i,
|
395 |
+
process: function (url) {
|
396 |
+
var self = this,
|
397 |
+
deferred = $.Deferred(),
|
398 |
+
img = new Image(),
|
399 |
+
$img = $('<img src="' + url + '" alt="" class="' + self.namespace + '-image" />');
|
400 |
+
img.onload = function () {
|
401 |
+
/* Store naturalWidth & height for IE8 */
|
402 |
+
$img.naturalWidth = img.width; $img.naturalHeight = img.height;
|
403 |
+
deferred.resolve($img);
|
404 |
+
};
|
405 |
+
img.onerror = function () { deferred.reject($img); };
|
406 |
+
img.src = url;
|
407 |
+
return deferred.promise();
|
408 |
+
}
|
409 |
+
},
|
410 |
+
html: {
|
411 |
+
regex: /^\s*<[\w!][^<]*>/, /* Anything that starts with some kind of valid tag */
|
412 |
+
process: function (html) { return $(html); }
|
413 |
+
},
|
414 |
+
ajax: {
|
415 |
+
regex: /./, /* At this point, any content is assumed to be an URL */
|
416 |
+
process: function (url) {
|
417 |
+
var self = this,
|
418 |
+
deferred = $.Deferred();
|
419 |
+
/* we are using load so one can specify a target with: url.html #targetelement */
|
420 |
+
var $container = $('<div></div>').load(url, function (response, status) {
|
421 |
+
if (status !== "error") {
|
422 |
+
deferred.resolve($container.contents());
|
423 |
+
}
|
424 |
+
deferred.reject();
|
425 |
+
});
|
426 |
+
return deferred.promise();
|
427 |
+
}
|
428 |
+
},
|
429 |
+
iframe: {
|
430 |
+
process: function (url) {
|
431 |
+
var deferred = new $.Deferred();
|
432 |
+
var $content = $('<iframe/>');
|
433 |
+
var css = parseAttrs(this, 'iframe');
|
434 |
+
var attrs = slice(css, iFrameAttributeSet);
|
435 |
+
$content.hide()
|
436 |
+
.attr('src', url)
|
437 |
+
.attr(attrs)
|
438 |
+
.css(css)
|
439 |
+
.on('load', function () { deferred.resolve($content.show()); })
|
440 |
+
// We can't move an <iframe> and avoid reloading it,
|
441 |
+
// so let's put it in place ourselves right now:
|
442 |
+
.appendTo(this.$instance.find('.' + this.namespace + '-content'));
|
443 |
+
return deferred.promise();
|
444 |
+
}
|
445 |
+
},
|
446 |
+
text: {
|
447 |
+
process: function (text) { return $('<div>', { text: text }); }
|
448 |
+
}
|
449 |
+
},
|
450 |
+
|
451 |
+
functionAttributes: ['beforeOpen', 'afterOpen', 'beforeContent', 'afterContent', 'beforeClose', 'afterClose'],
|
452 |
+
|
453 |
+
/*** class methods ***/
|
454 |
+
/* read element's attributes starting with data-featherlight- */
|
455 |
+
readElementConfig: function (element, namespace) {
|
456 |
+
var Klass = this,
|
457 |
+
regexp = new RegExp('^data-' + namespace + '-(.*)'),
|
458 |
+
config = {};
|
459 |
+
if (element && element.attributes) {
|
460 |
+
$.each(element.attributes, function () {
|
461 |
+
var match = this.name.match(regexp);
|
462 |
+
if (match) {
|
463 |
+
var val = this.value,
|
464 |
+
name = $.camelCase(match[1]);
|
465 |
+
if ($.inArray(name, Klass.functionAttributes) >= 0) { /* jshint -W054 */
|
466 |
+
val = new Function(val); /* jshint +W054 */
|
467 |
+
} else {
|
468 |
+
try { val = JSON.parse(val); }
|
469 |
+
catch (e) { }
|
470 |
+
}
|
471 |
+
config[name] = val;
|
472 |
+
}
|
473 |
+
});
|
474 |
+
}
|
475 |
+
return config;
|
476 |
+
},
|
477 |
+
|
478 |
+
/* Used to create a Featherlight extension
|
479 |
+
[Warning: guru-level]
|
480 |
+
Creates the extension's prototype that in turn
|
481 |
+
inherits Featherlight's prototype.
|
482 |
+
Could be used to extend an extension too...
|
483 |
+
This is pretty high level wizardy, it comes pretty much straight
|
484 |
+
from CoffeeScript and won't teach you anything about Featherlight
|
485 |
+
as it's not really specific to this library.
|
486 |
+
My suggestion: move along and keep your sanity.
|
487 |
+
*/
|
488 |
+
extend: function (child, defaults) {
|
489 |
+
/* Setup class hierarchy, adapted from CoffeeScript */
|
490 |
+
var Ctor = function () { this.constructor = child; };
|
491 |
+
Ctor.prototype = this.prototype;
|
492 |
+
child.prototype = new Ctor();
|
493 |
+
child.__super__ = this.prototype;
|
494 |
+
/* Copy class methods & attributes */
|
495 |
+
$.extend(child, this, defaults);
|
496 |
+
child.defaults = child.prototype;
|
497 |
+
return child;
|
498 |
+
},
|
499 |
+
|
500 |
+
attach: function ($source, $content, config) {
|
501 |
+
var Klass = this;
|
502 |
+
if (typeof $content === 'object' && $content instanceof $ === false && !config) {
|
503 |
+
config = $content;
|
504 |
+
$content = undefined;
|
505 |
+
}
|
506 |
+
/* make a copy */
|
507 |
+
config = $.extend({}, config);
|
508 |
+
|
509 |
+
/* Only for openTrigger, filter & namespace... */
|
510 |
+
var namespace = config.namespace || Klass.defaults.namespace,
|
511 |
+
tempConfig = $.extend({}, Klass.defaults, Klass.readElementConfig($source[0], namespace), config),
|
512 |
+
sharedPersist;
|
513 |
+
var handler = function (event) {
|
514 |
+
var $target = $(event.currentTarget);
|
515 |
+
/* ... since we might as well compute the config on the actual target */
|
516 |
+
var elemConfig = $.extend(
|
517 |
+
{ $source: $source, $currentTarget: $target },
|
518 |
+
Klass.readElementConfig($source[0], tempConfig.namespace),
|
519 |
+
Klass.readElementConfig(event.currentTarget, tempConfig.namespace),
|
520 |
+
config);
|
521 |
+
var fl = sharedPersist || $target.data('featherlight-persisted') || new Klass($content, elemConfig);
|
522 |
+
if (fl.persist === 'shared') {
|
523 |
+
sharedPersist = fl;
|
524 |
+
} else if (fl.persist !== false) {
|
525 |
+
$target.data('featherlight-persisted', fl);
|
526 |
+
}
|
527 |
+
if (elemConfig.$currentTarget.blur) {
|
528 |
+
elemConfig.$currentTarget.blur(); // Otherwise 'enter' key might trigger the dialog again
|
529 |
+
}
|
530 |
+
fl.open(event);
|
531 |
+
};
|
532 |
+
|
533 |
+
$source.on(tempConfig.openTrigger + '.' + tempConfig.namespace, tempConfig.filter, handler);
|
534 |
+
|
535 |
+
return { filter: tempConfig.filter, handler: handler };
|
536 |
+
},
|
537 |
+
|
538 |
+
current: function () {
|
539 |
+
var all = this.opened();
|
540 |
+
return all[all.length - 1] || null;
|
541 |
+
},
|
542 |
+
|
543 |
+
opened: function () {
|
544 |
+
var klass = this;
|
545 |
+
pruneOpened();
|
546 |
+
return $.grep(opened, function (fl) { return fl instanceof klass; });
|
547 |
+
},
|
548 |
+
|
549 |
+
close: function (event) {
|
550 |
+
var cur = this.current();
|
551 |
+
if (cur) { return cur.close(event); }
|
552 |
+
},
|
553 |
+
|
554 |
+
/* Does the auto binding on startup.
|
555 |
+
Meant only to be used by Featherlight and its extensions
|
556 |
+
*/
|
557 |
+
_onReady: function () {
|
558 |
+
var Klass = this;
|
559 |
+
if (Klass.autoBind) {
|
560 |
+
var $autobound = $(Klass.autoBind);
|
561 |
+
/* Bind existing elements */
|
562 |
+
$autobound.each(function () {
|
563 |
+
Klass.attach($(this));
|
564 |
+
});
|
565 |
+
/* If a click propagates to the document level, then we have an item that was added later on */
|
566 |
+
$(document).on('click', Klass.autoBind, function (evt) {
|
567 |
+
if (evt.isDefaultPrevented()) {
|
568 |
+
return;
|
569 |
+
}
|
570 |
+
var $cur = $(evt.currentTarget);
|
571 |
+
var len = $autobound.length;
|
572 |
+
$autobound = $autobound.add($cur);
|
573 |
+
if (len === $autobound.length) {
|
574 |
+
return; /* already bound */
|
575 |
+
}
|
576 |
+
/* Bind featherlight */
|
577 |
+
var data = Klass.attach($cur);
|
578 |
+
/* Dispatch event directly */
|
579 |
+
if (!data.filter || $(evt.target).parentsUntil($cur, data.filter).length > 0) {
|
580 |
+
data.handler(evt);
|
581 |
+
}
|
582 |
+
});
|
583 |
+
}
|
584 |
+
},
|
585 |
+
|
586 |
+
/* Featherlight uses the onKeyUp callback to intercept the escape key.
|
587 |
+
Private to Featherlight.
|
588 |
+
*/
|
589 |
+
_callbackChain: {
|
590 |
+
onKeyUp: function (_super, event) {
|
591 |
+
if (27 === event.keyCode) {
|
592 |
+
if (this.closeOnEsc) {
|
593 |
+
$.featherlight.close(event);
|
594 |
+
}
|
595 |
+
return false;
|
596 |
+
} else {
|
597 |
+
return _super(event);
|
598 |
+
}
|
599 |
+
},
|
600 |
+
|
601 |
+
beforeOpen: function (_super, event) {
|
602 |
+
// Used to disable scrolling
|
603 |
+
$(document.documentElement).addClass('with-featherlight');
|
604 |
+
|
605 |
+
// Remember focus:
|
606 |
+
this._previouslyActive = document.activeElement;
|
607 |
+
|
608 |
+
// Disable tabbing:
|
609 |
+
// See http://stackoverflow.com/questions/1599660/which-html-elements-can-receive-focus
|
610 |
+
this._$previouslyTabbable = $("a, input, select, textarea, iframe, button, iframe, [contentEditable=true]")
|
611 |
+
.not('[tabindex]')
|
612 |
+
.not(this.$instance.find('button'));
|
613 |
+
|
614 |
+
this._$previouslyWithTabIndex = $('[tabindex]').not('[tabindex="-1"]');
|
615 |
+
this._previousWithTabIndices = this._$previouslyWithTabIndex.map(function (_i, elem) {
|
616 |
+
return $(elem).attr('tabindex');
|
617 |
+
});
|
618 |
+
|
619 |
+
this._$previouslyWithTabIndex.add(this._$previouslyTabbable).attr('tabindex', -1);
|
620 |
+
|
621 |
+
if (document.activeElement.blur) {
|
622 |
+
document.activeElement.blur();
|
623 |
+
}
|
624 |
+
return _super(event);
|
625 |
+
},
|
626 |
+
|
627 |
+
afterClose: function (_super, event) {
|
628 |
+
var r = _super(event);
|
629 |
+
// Restore focus
|
630 |
+
var self = this;
|
631 |
+
this._$previouslyTabbable.removeAttr('tabindex');
|
632 |
+
this._$previouslyWithTabIndex.each(function (i, elem) {
|
633 |
+
$(elem).attr('tabindex', self._previousWithTabIndices[i]);
|
634 |
+
});
|
635 |
+
this._previouslyActive.focus();
|
636 |
+
// Restore scroll
|
637 |
+
if (Featherlight.opened().length === 0) {
|
638 |
+
$(document.documentElement).removeClass('with-featherlight');
|
639 |
+
}
|
640 |
+
return r;
|
641 |
+
},
|
642 |
+
|
643 |
+
onResize: function (_super, event) {
|
644 |
+
this.resize(this.$content.naturalWidth, this.$content.naturalHeight);
|
645 |
+
return _super(event);
|
646 |
+
},
|
647 |
+
|
648 |
+
afterContent: function (_super, event) {
|
649 |
+
var r = _super(event);
|
650 |
+
this.$instance.find('[autofocus]:not([disabled])').focus();
|
651 |
+
this.onResize(event);
|
652 |
+
return r;
|
653 |
+
}
|
654 |
+
}
|
655 |
+
});
|
656 |
+
|
657 |
+
$.featherlight = Featherlight;
|
658 |
+
|
659 |
+
/* bind jQuery elements to trigger featherlight */
|
660 |
+
$.fn.featherlight = function ($content, config) {
|
661 |
+
Featherlight.attach(this, $content, config);
|
662 |
+
return this;
|
663 |
+
};
|
664 |
+
|
665 |
+
/* bind featherlight on ready if config autoBind is set */
|
666 |
+
$(document).ready(function () { Featherlight._onReady(); });
|
667 |
+
});
|
changelog.txt
CHANGED
@@ -1,4 +1,27 @@
|
|
1 |
-
v 4.7.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
- Added: CSV Export for Bookings in "Frontend Event Submission" (pro)
|
3 |
- Added: MS Excel Export for Bookings in "Frontend Event Submission" (pro)
|
4 |
- Removed: Nonce for iCal export button to be compatible with search engines
|
@@ -15,7 +38,7 @@
|
|
15 |
- Fixed: Long title in list view > Accordion style
|
16 |
- Fixed: Ticket availability (pro)
|
17 |
- Fixed: Countdown module in Available Spot shortcode (pro)
|
18 |
-
- Fixed: PHP errors
|
19 |
|
20 |
v 4.6.5 - 24 September 2019
|
21 |
- Added: Add mec-past-event for expired events in different skins
|
1 |
+
v 4.7.5 - 15 October 2019
|
2 |
+
- Added: Name field for Stripe gateways (pro)
|
3 |
+
- Added: Cancel links and map view to the profile shortcode (pro)
|
4 |
+
- Added: Booking fields to the translatable strings for WPML (pro)
|
5 |
+
- Added: Show cancellation time for canceled bookings (pro)
|
6 |
+
- Updated: Facebook documentation <a href="https://bit.ly/33xOQHS" target="_blank">link</a>
|
7 |
+
- Fixed: Disabled once to fix some issues on servers with cache (pro)
|
8 |
+
- Fixed: Showing dates in grid skin
|
9 |
+
- Fixed: Event title has special characters on email
|
10 |
+
- Fixed: Referred date option of weekdays and weekend events recurring
|
11 |
+
- Fixed: Showing ongoing events on shortcode
|
12 |
+
- Fixed: Number of tickets available (pro)
|
13 |
+
- Fixed: Hide event feature
|
14 |
+
- Fixed: Sorting dates on custom days
|
15 |
+
- Fixed: YouTube video on modal view
|
16 |
+
- Fixed: Cancelation notification (pro)
|
17 |
+
- Fixed: Categories icons view
|
18 |
+
- Fixed: Settings fields animations on Firefox
|
19 |
+
- Fixed: Some minor issues
|
20 |
+
|
21 |
+
v 4.7.1 - 02 October 2019
|
22 |
+
- Fixed: Register button when booking for ongoing events is disable (pro)
|
23 |
+
|
24 |
+
v 4.7.0 - 01 October 2019
|
25 |
- Added: CSV Export for Bookings in "Frontend Event Submission" (pro)
|
26 |
- Added: MS Excel Export for Bookings in "Frontend Event Submission" (pro)
|
27 |
- Removed: Nonce for iCal export button to be compatible with search engines
|
38 |
- Fixed: Long title in list view > Accordion style
|
39 |
- Fixed: Ticket availability (pro)
|
40 |
- Fixed: Countdown module in Available Spot shortcode (pro)
|
41 |
+
- Fixed: PHP errors
|
42 |
|
43 |
v 4.6.5 - 24 September 2019
|
44 |
- Added: Add mec-past-event for expired events in different skins
|
languages/mec-de_DE.mo
DELETED
Binary file
|
languages/mec-de_DE.po
DELETED
@@ -1,7870 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: ME Calender\n"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2019-10-01 16:42+0330\n"
|
6 |
-
"PO-Revision-Date: 2019-10-01 16:46+0330\n"
|
7 |
-
"Last-Translator: Jogon <koenig@kafinanz.de>\n"
|
8 |
-
"Language-Team: German\n"
|
9 |
-
"Language: de_DE\n"
|
10 |
-
"MIME-Version: 1.0\n"
|
11 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
-
"Content-Transfer-Encoding: 8bit\n"
|
13 |
-
"X-Generator: Poedit 2.2\n"
|
14 |
-
"X-Poedit-KeywordsList: __;_e;_x;_n;_ex;_nx;esc_html__;esc_html_e;esc_html_x;"
|
15 |
-
"esc_attr__;esc_attr_e;esc_attr_x\n"
|
16 |
-
"X-Poedit-Basepath: ..\n"
|
17 |
-
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
18 |
-
"X-Poedit-SearchPath-0: .\n"
|
19 |
-
|
20 |
-
#. Plugin Name of the plugin/theme
|
21 |
-
#: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:24
|
22 |
-
#: app/features/ix/import.php:37 app/features/ix/thirdparty.php:24
|
23 |
-
#: app/features/mec/dashboard.php:63 app/widgets/MEC.php:33
|
24 |
-
msgid "Modern Events Calendar"
|
25 |
-
msgstr "Moderner Event Kalender "
|
26 |
-
|
27 |
-
#: app/addons/KC.php:70 app/addons/VC.php:64 app/features/mec/styling.php:133
|
28 |
-
msgid "Content"
|
29 |
-
msgstr "Inhalt"
|
30 |
-
|
31 |
-
#: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:368
|
32 |
-
#: app/features/mec.php:399 app/features/mec.php:429
|
33 |
-
msgid "Shortcode"
|
34 |
-
msgstr "Shortcode"
|
35 |
-
|
36 |
-
#: app/addons/KC.php:78 app/addons/VC.php:73
|
37 |
-
msgid "Select from predefined shortcodes"
|
38 |
-
msgstr "Wählen Sie aus vordefinierten Shortcodes"
|
39 |
-
|
40 |
-
#: app/addons/divi/includes/modules/MECShortcodes/MECShortcodes.php:15
|
41 |
-
#: app/addons/divi/includes/modules/MECShortcodes/MECShortcodes.php:25
|
42 |
-
#, fuzzy
|
43 |
-
#| msgid "Shortcodes"
|
44 |
-
msgid "MEC Shortcodes"
|
45 |
-
msgstr "Shortcodes"
|
46 |
-
|
47 |
-
#: app/addons/divi/includes/modules/MECShortcodes/MECShortcodes.php:28
|
48 |
-
#, fuzzy
|
49 |
-
#| msgid "Insert your desired tags comma separated."
|
50 |
-
msgid "Input your desired shortcode_id here."
|
51 |
-
msgstr "Geben Sie die gewünschten Tags (Schlagworte) durch Komma getrennt ein"
|
52 |
-
|
53 |
-
#: app/addons/elementor/shortcode.php:34
|
54 |
-
#, fuzzy
|
55 |
-
#| msgid "Modern Events Calendar"
|
56 |
-
msgid "Modern Events Calendar (MEC)"
|
57 |
-
msgstr "Moderner Event Kalender "
|
58 |
-
|
59 |
-
#: app/addons/elementor/shortcode.php:78
|
60 |
-
#, fuzzy
|
61 |
-
#| msgid "General Options"
|
62 |
-
msgid "General"
|
63 |
-
msgstr "Allgemeine Einstellungen"
|
64 |
-
|
65 |
-
#: app/addons/elementor/shortcode.php:87
|
66 |
-
#, fuzzy
|
67 |
-
#| msgid "Select All"
|
68 |
-
msgid "Select Type"
|
69 |
-
msgstr "Alles Auswählen"
|
70 |
-
|
71 |
-
#: app/crons/booking-reminder.php:33
|
72 |
-
msgid "Booking reminder notification is not enabled!"
|
73 |
-
msgstr "Die Erinnerung für die Buchungserinnerung ist nicht aktiviert!"
|
74 |
-
|
75 |
-
#: app/crons/booking-reminder.php:43
|
76 |
-
msgid "Booking module is not enabled!"
|
77 |
-
msgstr "Buchungsmodul ist nicht aktiviert!"
|
78 |
-
|
79 |
-
#: app/crons/booking-reminder.php:52
|
80 |
-
msgid "Inserted days are not valid. Please try 1,3 as a valid value!"
|
81 |
-
msgstr ""
|
82 |
-
"Eingefügte Tage sind nicht gültig. Bitte versuchen Sie 1,3 als gültigen Wert!"
|
83 |
-
|
84 |
-
#: app/crons/booking-reminder.php:104
|
85 |
-
#, php-format
|
86 |
-
msgid "%s reminders sent."
|
87 |
-
msgstr "% s Erinnerungen gesendet."
|
88 |
-
|
89 |
-
#: app/crons/f-import.php:32
|
90 |
-
msgid "Auto Facebook import is disabled!"
|
91 |
-
msgstr "Auto Facebook-Import ist deaktiviert!"
|
92 |
-
|
93 |
-
#: app/crons/f-import.php:35 app/features/ix.php:3133
|
94 |
-
msgid "Please insert your facebook page's link."
|
95 |
-
msgstr "Bitte Ihren Facebook Seitenlink eingeben."
|
96 |
-
|
97 |
-
#: app/crons/f-import.php:43 app/features/ix.php:3138
|
98 |
-
msgid ""
|
99 |
-
"We couldn't recognize your Facebook page. Please check it and provide us a "
|
100 |
-
"valid facebook page link."
|
101 |
-
msgstr ""
|
102 |
-
"Wir konnten Ihre Facebookseite nicht erkennen. Bitte checken Sie das und "
|
103 |
-
"stellen Sie uns einen gültigen Facebookseitenlink zur Verfügung."
|
104 |
-
|
105 |
-
#: app/crons/f-import.php:197
|
106 |
-
#, fuzzy, php-format
|
107 |
-
#| msgid "%s facebook events imported/updated."
|
108 |
-
msgid "%s Facebook events imported/updated."
|
109 |
-
msgstr "%s facebook events importiert / aktualisiert."
|
110 |
-
|
111 |
-
#: app/crons/g-export.php:37 app/features/ix.php:2942
|
112 |
-
msgid "All of Client App, Client Secret and Calendar ID are required!"
|
113 |
-
msgstr "Dies wird alles benötigt: Client ID, Client Secret und Calender ID!"
|
114 |
-
|
115 |
-
#: app/crons/g-export.php:155 app/features/ix.php:3058
|
116 |
-
#, php-format
|
117 |
-
msgid "%s events added to Google Calendar successfully."
|
118 |
-
msgstr "%s Events wurden erfolgreich zum Google Kalender hinzugefügt."
|
119 |
-
|
120 |
-
#: app/crons/g-export.php:156 app/features/ix.php:3059
|
121 |
-
#, php-format
|
122 |
-
msgid "%s previously added events get updated."
|
123 |
-
msgstr "%s vorherige hinzugefügte Events wurden aktualisiert."
|
124 |
-
|
125 |
-
#: app/crons/g-export.php:157 app/features/ix.php:3060
|
126 |
-
#, php-format
|
127 |
-
msgid "%s events failed to add for following reasons: %s"
|
128 |
-
msgstr "%s Events wurde aus folgenden Gründen nicht hinzugefügt: %s"
|
129 |
-
|
130 |
-
#: app/crons/g-import.php:32
|
131 |
-
msgid "Auto Google Calendar import is disabled!"
|
132 |
-
msgstr "Auto Google Kalender-Import ist deaktiviert!"
|
133 |
-
|
134 |
-
#: app/crons/g-import.php:37 app/features/ix.php:1950 app/features/ix.php:2008
|
135 |
-
msgid "Both of API key and Calendar ID are required!"
|
136 |
-
msgstr "Beide, API Schlüssel und Calender ID wird benötigt"
|
137 |
-
|
138 |
-
#: app/crons/g-import.php:370
|
139 |
-
#, php-format
|
140 |
-
msgid "%s google events imported/updated."
|
141 |
-
msgstr "%s vorherige hinzugefügte Events wurden aktualisiert."
|
142 |
-
|
143 |
-
#: app/crons/meetup-import.php:32
|
144 |
-
#, fuzzy
|
145 |
-
#| msgid "Auto Facebook import is disabled!"
|
146 |
-
msgid "Auto Meetup import is disabled!"
|
147 |
-
msgstr "Auto Facebook-Import ist deaktiviert!"
|
148 |
-
|
149 |
-
#: app/crons/meetup-import.php:37 app/features/ix.php:2364
|
150 |
-
#: app/features/ix.php:2427
|
151 |
-
#, fuzzy
|
152 |
-
#| msgid "Both of API key and Calendar ID are required!"
|
153 |
-
msgid "Both of API key and Group URL are required!"
|
154 |
-
msgstr "Beide, API Schlüssel und Calender ID wird benötigt"
|
155 |
-
|
156 |
-
#: app/crons/meetup-import.php:287 app/features/ix.php:2666
|
157 |
-
msgid "Check at Meetup"
|
158 |
-
msgstr ""
|
159 |
-
|
160 |
-
#: app/crons/meetup-import.php:328
|
161 |
-
#, fuzzy, php-format
|
162 |
-
#| msgid "%s google events imported/updated."
|
163 |
-
msgid "%s meetup events imported/updated."
|
164 |
-
msgstr "%s vorherige hinzugefügte Events wurden aktualisiert."
|
165 |
-
|
166 |
-
#: app/features/books.php:107 app/features/books.php:112
|
167 |
-
#: app/features/ix/export.php:38
|
168 |
-
msgid "Bookings"
|
169 |
-
msgstr "Buchungen / Reservierungen"
|
170 |
-
|
171 |
-
#: app/features/books.php:108 app/features/books.php:331
|
172 |
-
#: app/features/contextual.php:308 app/features/events.php:298
|
173 |
-
#: app/features/gateways.php:1541 app/features/mec/booking.php:88
|
174 |
-
#: app/features/mec/notifications.php:35 app/libraries/main.php:550
|
175 |
-
#: app/libraries/main.php:571 app/libraries/main.php:653
|
176 |
-
msgid "Booking"
|
177 |
-
msgstr "Buchung / Reservierung"
|
178 |
-
|
179 |
-
#: app/features/books.php:109 app/features/books.php:110
|
180 |
-
msgid "Add Booking"
|
181 |
-
msgstr "Buchung hinzufügen"
|
182 |
-
|
183 |
-
#: app/features/books.php:111 app/features/profile/profile.php:142
|
184 |
-
msgid "No bookings found!"
|
185 |
-
msgstr "Keine Buchungen gefunden"
|
186 |
-
|
187 |
-
#: app/features/books.php:113
|
188 |
-
msgid "Edit Bookings"
|
189 |
-
msgstr "Buchungen ändern"
|
190 |
-
|
191 |
-
#: app/features/books.php:114
|
192 |
-
msgid "No bookings found in Trash!"
|
193 |
-
msgstr "Keine Buchungen im Papierkorb gefunden"
|
194 |
-
|
195 |
-
#: app/features/books.php:151
|
196 |
-
msgid "Book Details"
|
197 |
-
msgstr "Buchungsdetails"
|
198 |
-
|
199 |
-
#: app/features/books.php:152
|
200 |
-
msgid "Status & Invoice"
|
201 |
-
msgstr "Status und Rechnung"
|
202 |
-
|
203 |
-
#: app/features/books.php:178 app/features/books.php:454
|
204 |
-
#: app/features/books.php:710 app/features/books.php:791
|
205 |
-
#: app/features/books.php:888 app/features/fes.php:224 app/features/fes.php:332
|
206 |
-
msgid "Confirmation"
|
207 |
-
msgstr "Bestätigung"
|
208 |
-
|
209 |
-
#: app/features/books.php:180 app/features/books.php:712
|
210 |
-
#: app/features/books.php:736 app/libraries/main.php:5079
|
211 |
-
#: app/libraries/main.php:5101
|
212 |
-
msgid "Pending"
|
213 |
-
msgstr "Ausstehend"
|
214 |
-
|
215 |
-
#: app/features/books.php:181 app/features/books.php:711
|
216 |
-
#: app/libraries/main.php:5077 app/libraries/main.php:5097
|
217 |
-
msgid "Confirmed"
|
218 |
-
msgstr "Bestätigt"
|
219 |
-
|
220 |
-
#: app/features/books.php:182 app/features/books.php:713
|
221 |
-
#: app/libraries/main.php:5078 app/libraries/main.php:5105
|
222 |
-
msgid "Rejected"
|
223 |
-
msgstr "Abgelehnt"
|
224 |
-
|
225 |
-
#: app/features/books.php:186 app/features/books.php:455
|
226 |
-
#: app/features/books.php:719 app/features/books.php:791
|
227 |
-
#: app/features/books.php:888 app/features/fes.php:224 app/features/fes.php:332
|
228 |
-
msgid "Verification"
|
229 |
-
msgstr "Verifizierung"
|
230 |
-
|
231 |
-
#: app/features/books.php:188 app/features/books.php:721
|
232 |
-
#: app/libraries/main.php:5127
|
233 |
-
msgid "Waiting"
|
234 |
-
msgstr "in Bearbeitung"
|
235 |
-
|
236 |
-
#: app/features/books.php:189 app/features/books.php:720
|
237 |
-
#: app/features/mec/booking.php:614 app/features/mec/booking.php:636
|
238 |
-
#: app/features/mec/modules.php:390 app/features/mec/modules.php:412
|
239 |
-
#: app/features/mec/notifications.php:588
|
240 |
-
#: app/features/mec/notifications.php:610 app/features/mec/settings.php:892
|
241 |
-
#: app/features/mec/settings.php:914 app/features/mec/single.php:267
|
242 |
-
#: app/features/mec/single.php:289 app/libraries/main.php:5125
|
243 |
-
msgid "Verified"
|
244 |
-
msgstr "Verifiziert"
|
245 |
-
|
246 |
-
#: app/features/books.php:190 app/features/books.php:722
|
247 |
-
#: app/features/labels.php:118 app/features/labels.php:143
|
248 |
-
#: app/libraries/main.php:5126 app/skins/agenda/render.php:41
|
249 |
-
#: app/skins/available_spot/tpl.php:42 app/skins/carousel/render.php:45
|
250 |
-
#: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:32
|
251 |
-
#: app/skins/daily_view/render.php:52 app/skins/grid/render.php:53
|
252 |
-
#: app/skins/list/render.php:42 app/skins/masonry/render.php:29
|
253 |
-
#: app/skins/monthly_view/calendar.php:111
|
254 |
-
#: app/skins/monthly_view/calendar_clean.php:111
|
255 |
-
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:46
|
256 |
-
#: app/skins/timetable/render.php:37 app/skins/timetable/render.php:140
|
257 |
-
#: app/skins/weekly_view/render.php:60 app/skins/yearly_view/render.php:52
|
258 |
-
msgid "Canceled"
|
259 |
-
msgstr "Abgesagt"
|
260 |
-
|
261 |
-
#: app/features/books.php:206
|
262 |
-
#, php-format
|
263 |
-
msgid "Here, you can %s invoice of %s transaction."
|
264 |
-
msgstr "Hier können Sie% s Rechnung von% s Transaktion."
|
265 |
-
|
266 |
-
#: app/features/books.php:206
|
267 |
-
msgid "download"
|
268 |
-
msgstr "Download"
|
269 |
-
|
270 |
-
#: app/features/books.php:249
|
271 |
-
msgid "It will create a new booking under \"Pay Locally\" gateway."
|
272 |
-
msgstr "Es wird eine neue Buchung unter \"Pay Locally\" Gateway erstellt."
|
273 |
-
|
274 |
-
#: app/features/books.php:251 app/features/contextual.php:62
|
275 |
-
#: app/features/events.php:2415 app/features/mec/booking.php:426
|
276 |
-
#: app/features/mec/support.php:29 app/libraries/main.php:554
|
277 |
-
msgid "Booking Form"
|
278 |
-
msgstr "Buchungsformular"
|
279 |
-
|
280 |
-
#: app/features/books.php:254 app/features/books.php:333
|
281 |
-
#: app/features/books.php:452 app/features/books.php:676
|
282 |
-
#: app/features/books.php:791 app/features/books.php:888
|
283 |
-
#: app/features/events.php:151 app/features/fes.php:224
|
284 |
-
#: app/features/fes.php:332 app/features/mec/meta_boxes/display_options.php:921
|
285 |
-
#: app/features/mec/meta_boxes/display_options.php:977
|
286 |
-
#: app/features/mec/meta_boxes/display_options.php:1012
|
287 |
-
#: app/features/profile/profile.php:28 app/skins/daily_view/tpl.php:80
|
288 |
-
#: app/skins/monthly_view/tpl.php:71 app/skins/yearly_view/tpl.php:69
|
289 |
-
msgid "Event"
|
290 |
-
msgstr "Veranstaltung"
|
291 |
-
|
292 |
-
#: app/features/books.php:318
|
293 |
-
msgid "Payment"
|
294 |
-
msgstr "Bezahlung"
|
295 |
-
|
296 |
-
#: app/features/books.php:320 app/features/books.php:453
|
297 |
-
#: app/features/events.php:1792 app/features/events.php:1796
|
298 |
-
#: app/features/events.php:1870 app/features/events.php:1897
|
299 |
-
#: app/features/events.php:1996 app/features/events.php:1999
|
300 |
-
#: app/features/events.php:2055 app/features/events.php:2272
|
301 |
-
#: app/features/events.php:2276 app/features/events.php:2318
|
302 |
-
#: app/features/events.php:2321 app/features/mec/booking.php:366
|
303 |
-
#: app/features/mec/booking.php:369 app/features/mec/booking.php:398
|
304 |
-
#: app/features/mec/booking.php:401
|
305 |
-
msgid "Price"
|
306 |
-
msgstr "Preis"
|
307 |
-
|
308 |
-
#: app/features/books.php:324 app/features/gateways.php:171
|
309 |
-
msgid "Gateway"
|
310 |
-
msgstr "Gateway"
|
311 |
-
|
312 |
-
#: app/features/books.php:325 app/features/books.php:329
|
313 |
-
#: app/features/books.php:334 app/features/books.php:338
|
314 |
-
#: app/features/books.php:383 app/features/books.php:849
|
315 |
-
#: app/features/books.php:946 app/features/fes.php:282 app/features/fes.php:390
|
316 |
-
msgid "Unknown"
|
317 |
-
msgstr "Unbekannt"
|
318 |
-
|
319 |
-
#: app/features/books.php:328 app/features/books.php:456
|
320 |
-
#: app/features/books.php:791 app/features/books.php:888
|
321 |
-
#: app/features/fes.php:224 app/features/fes.php:332
|
322 |
-
#: app/libraries/main.php:2051
|
323 |
-
msgid "Transaction ID"
|
324 |
-
msgstr "Transaktions-ID"
|
325 |
-
|
326 |
-
#: app/features/books.php:337 app/features/books.php:791
|
327 |
-
#: app/features/books.php:888 app/features/books.php:1419
|
328 |
-
#: app/features/events.php:1189 app/features/events.php:2485
|
329 |
-
#: app/features/fes.php:224 app/features/fes.php:332
|
330 |
-
#: app/features/mec/booking.php:478 app/features/profile/profile.php:31
|
331 |
-
#: app/libraries/main.php:2045 app/libraries/main.php:2647
|
332 |
-
#: app/modules/booking/steps/tickets.php:22
|
333 |
-
#: app/modules/next-event/details.php:90 app/skins/single.php:637
|
334 |
-
#: app/skins/single/default.php:83 app/skins/single/default.php:295
|
335 |
-
#: app/skins/single/m1.php:16 app/skins/single/modern.php:166
|
336 |
-
msgid "Date"
|
337 |
-
msgstr "Datum"
|
338 |
-
|
339 |
-
#: app/features/books.php:338
|
340 |
-
#, php-format
|
341 |
-
msgid "%s to %s"
|
342 |
-
msgstr "%s zu %s"
|
343 |
-
|
344 |
-
#: app/features/books.php:341 app/features/mec/notifications.php:88
|
345 |
-
#: app/features/mec/notifications.php:140
|
346 |
-
#: app/features/mec/notifications.php:193
|
347 |
-
#: app/features/mec/notifications.php:264
|
348 |
-
#: app/features/mec/notifications.php:324
|
349 |
-
#: app/features/mec/notifications.php:394
|
350 |
-
msgid "Total Attendees"
|
351 |
-
msgstr ""
|
352 |
-
|
353 |
-
#: app/features/books.php:346
|
354 |
-
msgid "Attachments"
|
355 |
-
msgstr ""
|
356 |
-
|
357 |
-
#: app/features/books.php:368 app/features/books.php:451
|
358 |
-
#: app/features/profile/profile.php:37 app/libraries/main.php:2060
|
359 |
-
msgid "Attendees"
|
360 |
-
msgstr "Teilnehmer"
|
361 |
-
|
362 |
-
#: app/features/books.php:378 app/features/books.php:791
|
363 |
-
#: app/features/books.php:888 app/features/books.php:1457
|
364 |
-
#: app/features/books.php:1483 app/features/events.php:463
|
365 |
-
#: app/features/events.php:2408 app/features/events.php:2484
|
366 |
-
#: app/features/fes.php:224 app/features/fes.php:332
|
367 |
-
#: app/features/fes/form.php:664 app/features/mec/booking.php:57
|
368 |
-
#: app/features/mec/booking.php:477 app/features/organizers.php:111
|
369 |
-
#: app/features/organizers.php:152 app/features/profile/profile.php:93
|
370 |
-
#: app/features/speakers.php:124 app/features/speakers.php:185
|
371 |
-
#: app/libraries/main.php:1472 app/libraries/main.php:1538
|
372 |
-
#: app/libraries/main.php:2589 app/libraries/notifications.php:881
|
373 |
-
#: app/modules/booking/steps/form.php:46 app/modules/booking/steps/form.php:84
|
374 |
-
#: app/skins/single.php:812 app/skins/single.php:867
|
375 |
-
#: app/skins/single/default.php:227 app/skins/single/default.php:439
|
376 |
-
#: app/skins/single/m1.php:107 app/skins/single/m2.php:39
|
377 |
-
#: app/skins/single/modern.php:48
|
378 |
-
msgid "Email"
|
379 |
-
msgstr "Email"
|
380 |
-
|
381 |
-
#: app/features/books.php:382 app/features/books.php:502
|
382 |
-
#: app/features/books.php:686 app/features/books.php:791
|
383 |
-
#: app/features/books.php:888 app/features/books.php:1426
|
384 |
-
#: app/features/fes.php:224 app/features/fes.php:332
|
385 |
-
#: app/features/gateways.php:1542 app/features/profile/profile.php:96
|
386 |
-
#: app/libraries/main.php:2074 app/libraries/main.php:4913
|
387 |
-
msgid "Ticket"
|
388 |
-
msgstr "Ticket"
|
389 |
-
|
390 |
-
#: app/features/books.php:408 app/libraries/notifications.php:897
|
391 |
-
msgid "Yes"
|
392 |
-
msgstr "Ja"
|
393 |
-
|
394 |
-
#: app/features/books.php:408 app/libraries/notifications.php:897
|
395 |
-
msgid "No"
|
396 |
-
msgstr "Nein"
|
397 |
-
|
398 |
-
#: app/features/books.php:419 app/libraries/main.php:2104
|
399 |
-
msgid "Billing"
|
400 |
-
msgstr "Abrechnung"
|
401 |
-
|
402 |
-
#: app/features/books.php:430 app/libraries/main.php:2115
|
403 |
-
msgid "Total"
|
404 |
-
msgstr "Gesamt"
|
405 |
-
|
406 |
-
#: app/features/books.php:449 app/features/books.php:791
|
407 |
-
#: app/features/books.php:888 app/features/events.php:3427
|
408 |
-
#: app/features/events.php:3469 app/features/fes.php:224
|
409 |
-
#: app/features/fes.php:332 app/features/ix.php:2743 app/features/ix.php:2784
|
410 |
-
#: app/features/labels.php:177 app/features/locations.php:229
|
411 |
-
#: app/features/organizers.php:203 app/features/speakers.php:251
|
412 |
-
msgid "ID"
|
413 |
-
msgstr "ID"
|
414 |
-
|
415 |
-
#: app/features/books.php:450 app/features/events.php:1287
|
416 |
-
#: app/features/events.php:1326 app/features/events.php:1361
|
417 |
-
#: app/features/events.php:1393 app/features/events.php:1422
|
418 |
-
#: app/features/events.php:2266 app/features/events.php:2313
|
419 |
-
#: app/features/events.php:3233 app/features/events.php:3427
|
420 |
-
#: app/features/events.php:3469 app/features/fes/form.php:225
|
421 |
-
#: app/features/gateways.php:791 app/features/gateways.php:1479
|
422 |
-
#: app/features/gateways.php:1715 app/features/gateways.php:1989
|
423 |
-
#: app/features/gateways.php:2401 app/features/gateways.php:3106
|
424 |
-
#: app/features/ix.php:2743 app/features/ix.php:2784
|
425 |
-
#: app/features/mec/booking.php:362 app/features/mec/booking.php:394
|
426 |
-
#: app/features/mec/styling.php:115
|
427 |
-
msgid "Title"
|
428 |
-
msgstr "Titel"
|
429 |
-
|
430 |
-
#: app/features/books.php:457
|
431 |
-
msgid "Book Date"
|
432 |
-
msgstr "Buchungsdatum"
|
433 |
-
|
434 |
-
#: app/features/books.php:697
|
435 |
-
#, fuzzy
|
436 |
-
#| msgid "Ticket"
|
437 |
-
msgid " - Ticket"
|
438 |
-
msgstr "Ticket"
|
439 |
-
|
440 |
-
#: app/features/books.php:736
|
441 |
-
msgid "Confirm"
|
442 |
-
msgstr "Bestätigen"
|
443 |
-
|
444 |
-
#: app/features/books.php:736
|
445 |
-
msgid "Reject"
|
446 |
-
msgstr "Ablehnen"
|
447 |
-
|
448 |
-
#: app/features/books.php:736 app/features/events.php:3365
|
449 |
-
#: app/features/events.php:3366
|
450 |
-
msgid "CSV Export"
|
451 |
-
msgstr "CSV Export"
|
452 |
-
|
453 |
-
#: app/features/books.php:736 app/features/events.php:3368
|
454 |
-
#: app/features/events.php:3369
|
455 |
-
msgid "MS Excel Export"
|
456 |
-
msgstr "MS Excel Export"
|
457 |
-
|
458 |
-
#: app/features/books.php:791 app/features/books.php:888
|
459 |
-
#: app/features/fes.php:224 app/features/fes.php:332
|
460 |
-
msgid "Total Price"
|
461 |
-
msgstr ""
|
462 |
-
|
463 |
-
#: app/features/books.php:791 app/features/books.php:888
|
464 |
-
#: app/features/books.php:1448 app/features/books.php:1479
|
465 |
-
#: app/features/events.php:462 app/features/events.php:2397
|
466 |
-
#: app/features/fes.php:224 app/features/fes.php:332
|
467 |
-
#: app/features/fes/form.php:668 app/features/labels.php:178
|
468 |
-
#: app/features/mec/booking.php:45 app/features/organizers.php:279
|
469 |
-
#: app/features/profile/profile.php:90 app/libraries/notifications.php:880
|
470 |
-
#: app/modules/booking/steps/form.php:37
|
471 |
-
msgid "Name"
|
472 |
-
msgstr "Name"
|
473 |
-
|
474 |
-
#: app/features/books.php:1104
|
475 |
-
msgid "Security nonce is missing."
|
476 |
-
msgstr "Sicherheits-Nonce fehlt."
|
477 |
-
|
478 |
-
#: app/features/books.php:1107
|
479 |
-
msgid "Security nonce is invalid."
|
480 |
-
msgstr ""
|
481 |
-
"Sicherheits-Nonce ungültig\n"
|
482 |
-
" "
|
483 |
-
|
484 |
-
#: app/features/books.php:1135
|
485 |
-
msgid "Uploaded file size exceeds the maximum allowed size."
|
486 |
-
msgstr ""
|
487 |
-
|
488 |
-
#: app/features/books.php:1154
|
489 |
-
#, fuzzy
|
490 |
-
#| msgid "Request is invalid!"
|
491 |
-
msgid "Uploaded file type is not valid."
|
492 |
-
msgstr "Die Anfrage ist ungültig!"
|
493 |
-
|
494 |
-
#: app/features/books.php:1182
|
495 |
-
msgid "Invalid request."
|
496 |
-
msgstr "Ungültige Anforderung"
|
497 |
-
|
498 |
-
#: app/features/books.php:1210
|
499 |
-
msgid "Please select some tickets!"
|
500 |
-
msgstr "Bitte wählen Sie einige Tickets!"
|
501 |
-
|
502 |
-
#: app/features/books.php:1216
|
503 |
-
msgid "Captcha is invalid. Please try again."
|
504 |
-
msgstr "Das eingegebene Captchas ist ungültig! Bitte versuchen Sie es erneut."
|
505 |
-
|
506 |
-
#: app/features/books.php:1326
|
507 |
-
msgid "Please fill the form correctly. Email and Name fields are required!"
|
508 |
-
msgstr ""
|
509 |
-
"Bitte füllen Sie das Formular korrekt aus. Email und Name Felder sind "
|
510 |
-
"Pflichtfelder!"
|
511 |
-
|
512 |
-
#: app/features/books.php:1405
|
513 |
-
msgid "Event is invalid. Please select an event."
|
514 |
-
msgstr "Das Event ist ungültig. Bitte wählen Sie eine Veranstaltung."
|
515 |
-
|
516 |
-
#: app/features/books.php:1413
|
517 |
-
#, fuzzy
|
518 |
-
#| msgid ""
|
519 |
-
#| "No ticket ro future dates found for this event! Please try another event."
|
520 |
-
msgid ""
|
521 |
-
"No ticket or future dates found for this event! Please try another event."
|
522 |
-
msgstr ""
|
523 |
-
"Kein Ticket für zukünftige Termine für dieses Event gefunden! Bitte "
|
524 |
-
"versuchen Sie eine andere Veranstaltung."
|
525 |
-
|
526 |
-
#: app/features/books.php:1548
|
527 |
-
msgid "Attendee Information"
|
528 |
-
msgstr "Teilnehmerinformationen"
|
529 |
-
|
530 |
-
#: app/features/colors.php:50 app/features/fes/form.php:794
|
531 |
-
#: app/features/mec/settings.php:600
|
532 |
-
msgid "Event Color"
|
533 |
-
msgstr "Farbe der Veranstaltung"
|
534 |
-
|
535 |
-
#: app/features/contextual.php:55 app/features/mec.php:348
|
536 |
-
#: app/features/mec/dashboard.php:135 app/features/mec/support-page.php:168
|
537 |
-
#: app/features/mec/support.php:20 app/libraries/main.php:588
|
538 |
-
msgid "Settings"
|
539 |
-
msgstr "Einstellungen"
|
540 |
-
|
541 |
-
#: app/features/contextual.php:63
|
542 |
-
msgid ""
|
543 |
-
"<h2 class=\"dark-text\">Booking Form<hr></h2>\n"
|
544 |
-
" <strong>Build your booking registration form ( This "
|
545 |
-
"form will be repeat for all attendees ).</strong> <iframe "
|
546 |
-
"width=\"600\" height=\"300\" src=\"https://www.youtube.com/embed/"
|
547 |
-
"YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
|
548 |
-
msgstr ""
|
549 |
-
"<h2 class=\"dark-text\">Booking Form<hr></h2>\n"
|
550 |
-
" <strong>Erstellen Sie Ihr Anmeldeformular (Dieses "
|
551 |
-
"Formular wird für alle Teilnehmer wiederholt).</strong> "
|
552 |
-
"<iframe width=\"600\" height=\"300\" src=\"https://www.youtube.com/embed/"
|
553 |
-
"YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
|
554 |
-
|
555 |
-
#: app/features/contextual.php:70 app/features/mec/booking.php:544
|
556 |
-
#: app/features/mec/support.php:36 app/libraries/main.php:555
|
557 |
-
msgid "Payment Gateways"
|
558 |
-
msgstr "Zahlungs-Gateways"
|
559 |
-
|
560 |
-
#: app/features/contextual.php:71
|
561 |
-
msgid ""
|
562 |
-
"<h2 class=\"dark-text\">Payment Gateways <hr></h2><iframe width=\"600\" "
|
563 |
-
"height=\"300\" src=\"https://www.youtube.com/embed/Hpg4chWlxoQ\" frameborder="
|
564 |
-
"\"0\" allowfullscreen></iframe>"
|
565 |
-
msgstr ""
|
566 |
-
"<h2 class=\"dark-text\">Payment Gateways <hr></h2><iframe width=\"600\" "
|
567 |
-
"height=\"300\" src=\"https://www.youtube.com/embed/Hpg4chWlxoQ\" frameborder="
|
568 |
-
"\"0\" allowfullscreen></iframe>"
|
569 |
-
|
570 |
-
#: app/features/contextual.php:77 app/features/mec/support.php:45
|
571 |
-
#: app/libraries/main.php:736
|
572 |
-
msgid "Notifications"
|
573 |
-
msgstr "Benachrichtigungen"
|
574 |
-
|
575 |
-
#: app/features/contextual.php:78
|
576 |
-
msgid ""
|
577 |
-
"<h2 class=\"dark-text\">Notifications <hr></h2><strong>You can edit your "
|
578 |
-
"messages in there.</strong><strong>Mec Notificatoin Module</strong><iframe "
|
579 |
-
"width=\"600\" height=\"300\" src=\"https://www.youtube.com/embed/"
|
580 |
-
"ZAA8zVewOj0\" frameborder=\"0\" allowfullscreen></iframe>"
|
581 |
-
msgstr ""
|
582 |
-
"<h2 class=\"dark-text\">Benachrichtigungen <hr></h2><strong>Sie können Ihre "
|
583 |
-
"Mitteilungen hierin editieren</strong><strong>Mec Benachrichtigungsmodul</"
|
584 |
-
"strong><iframe width=\"600\" height=\"300\" src=\"https://www.youtube.com/"
|
585 |
-
"embed/ZAA8zVewOj0\" frameborder=\"0\" allowfullscreen></iframe>"
|
586 |
-
|
587 |
-
#: app/features/contextual.php:88 app/features/ix/export.php:10
|
588 |
-
#: app/features/ix/export_g_calendar.php:14 app/features/ix/import.php:10
|
589 |
-
#: app/features/ix/import_f_calendar.php:10
|
590 |
-
#: app/features/ix/import_g_calendar.php:10
|
591 |
-
#: app/features/ix/import_meetup.php:10 app/features/ix/sync.php:10
|
592 |
-
#: app/features/ix/thirdparty.php:10
|
593 |
-
msgid "Google Cal. Import"
|
594 |
-
msgstr "Google Calender Import"
|
595 |
-
|
596 |
-
#: app/features/contextual.php:89
|
597 |
-
msgid ""
|
598 |
-
"<h2 class=\"dark-text\">Import/Export<hr></h2><div class=\"big-"
|
599 |
-
"title2\"><strong>Google Cal. Import:</strong></div><iframe width=\"854\" "
|
600 |
-
"height=\"420\" src=\"https://www.youtube.com/embed/vxHC7NVbmuc\" frameborder="
|
601 |
-
"\"0\" allowfullscreen></iframe>"
|
602 |
-
msgstr ""
|
603 |
-
"<h2 class=\"dark-text\">Import/Export<hr></h2><div class=\"big-"
|
604 |
-
"title2\"><strong>Google Cal. Import:</strong></div><iframe width=\"854\" "
|
605 |
-
"height=\"420\" src=\"https://www.youtube.com/embed/vxHC7NVbmuc\" frameborder="
|
606 |
-
"\"0\" allowfullscreen></iframe>"
|
607 |
-
|
608 |
-
#: app/features/contextual.php:95 app/features/ix/export.php:11
|
609 |
-
#: app/features/ix/export_g_calendar.php:15 app/features/ix/import.php:11
|
610 |
-
#: app/features/ix/import_f_calendar.php:11
|
611 |
-
#: app/features/ix/import_g_calendar.php:11
|
612 |
-
#: app/features/ix/import_meetup.php:11 app/features/ix/sync.php:11
|
613 |
-
#: app/features/ix/thirdparty.php:11
|
614 |
-
msgid "Google Cal. Export"
|
615 |
-
msgstr "Google Kalender Export"
|
616 |
-
|
617 |
-
#: app/features/contextual.php:96
|
618 |
-
msgid ""
|
619 |
-
"<h2 class=\"dark-text\">Import/Export<hr></h2><div class=\"big-"
|
620 |
-
"title2\"><strong>Google Cal. Export:</strong></div><iframe width=\"854\" "
|
621 |
-
"height=\"420\" src=\"https://www.youtube.com/embed/DdeNazxbLyo\" frameborder="
|
622 |
-
"\"0\" allowfullscreen></iframe>"
|
623 |
-
msgstr ""
|
624 |
-
"<h2 class=\"dark-text\">Import/Export<hr></h2><div class=\"big-"
|
625 |
-
"title2\"><strong>Google Cal. Export:</strong></div><iframe width=\"854\" "
|
626 |
-
"height=\"420\" src=\"https://www.youtube.com/embed/DdeNazxbLyo\" frameborder="
|
627 |
-
"\"0\" allowfullscreen></iframe>"
|
628 |
-
|
629 |
-
#: app/features/contextual.php:102 app/features/ix/export.php:12
|
630 |
-
#: app/features/ix/export_g_calendar.php:16 app/features/ix/import.php:12
|
631 |
-
#: app/features/ix/import_f_calendar.php:12
|
632 |
-
#: app/features/ix/import_g_calendar.php:12
|
633 |
-
#: app/features/ix/import_meetup.php:12 app/features/ix/sync.php:12
|
634 |
-
#: app/features/ix/thirdparty.php:12
|
635 |
-
msgid "Facebook Cal. Import"
|
636 |
-
msgstr "Facebook Kalender Import"
|
637 |
-
|
638 |
-
#: app/features/contextual.php:103
|
639 |
-
msgid ""
|
640 |
-
"<h2 class=\"dark-text\">Import/Export<hr></h2><div class=\"big-"
|
641 |
-
"title2\"><strong>Facebook Cal. Import:</strong></div><iframe width=\"854\" "
|
642 |
-
"height=\"420\" src=\"https://www.youtube.com/embed/dqgt1b8X8hs\" frameborder="
|
643 |
-
"\"0\" allowfullscreen></iframe>"
|
644 |
-
msgstr ""
|
645 |
-
"<h2 class=\"dark-text\">Import/Export<hr></h2><div class=\"big-"
|
646 |
-
"title2\"><strong>Facebook Cal. Import:</strong></div><iframe width=\"854\" "
|
647 |
-
"height=\"420\" src=\"https://www.youtube.com/embed/dqgt1b8X8hs\" frameborder="
|
648 |
-
"\"0\" allowfullscreen></iframe>"
|
649 |
-
|
650 |
-
#: app/features/contextual.php:117 app/features/mec/settings.php:52
|
651 |
-
#: app/libraries/main.php:528
|
652 |
-
msgid "General Options"
|
653 |
-
msgstr "Allgemeine Einstellungen"
|
654 |
-
|
655 |
-
#: app/features/contextual.php:139 app/features/mec/settings.php:384
|
656 |
-
#: app/libraries/main.php:530
|
657 |
-
msgid "Slugs/Permalinks"
|
658 |
-
msgstr "Slug/Permalinks"
|
659 |
-
|
660 |
-
#: app/features/contextual.php:152
|
661 |
-
msgid "Event Details/Single Event Page"
|
662 |
-
msgstr "Event Details / Einzelveranstaltungsseite"
|
663 |
-
|
664 |
-
#: app/features/contextual.php:166 app/features/mec/settings.php:416
|
665 |
-
#: app/libraries/main.php:531
|
666 |
-
msgid "Currency Options"
|
667 |
-
msgstr "Währungseinstellungen"
|
668 |
-
|
669 |
-
#: app/features/contextual.php:182 app/features/mec/modules.php:67
|
670 |
-
#: app/features/mec/modules.php:85 app/libraries/main.php:560
|
671 |
-
msgid "Google Maps Options"
|
672 |
-
msgstr "Google Maps Einstellungen"
|
673 |
-
|
674 |
-
#: app/features/contextual.php:244 app/features/mec/settings.php:473
|
675 |
-
#: app/libraries/main.php:532
|
676 |
-
msgid "Google Recaptcha Options"
|
677 |
-
msgstr "Google Recaptcha Einstellungen"
|
678 |
-
|
679 |
-
#: app/features/contextual.php:258 app/features/mec/single.php:133
|
680 |
-
#: app/libraries/main.php:542
|
681 |
-
msgid "Countdown Options"
|
682 |
-
msgstr "Countdown Einstellungsoptionen"
|
683 |
-
|
684 |
-
#: app/features/contextual.php:268 app/features/mec/modules.php:263
|
685 |
-
#: app/libraries/main.php:565
|
686 |
-
msgid "Social Networks"
|
687 |
-
msgstr "Soziale Netzwerke"
|
688 |
-
|
689 |
-
#: app/features/contextual.php:278
|
690 |
-
msgid "Next Event Module"
|
691 |
-
msgstr "Nächstes Veranstaltung Modul"
|
692 |
-
|
693 |
-
#: app/features/contextual.php:286 app/features/mec/settings.php:509
|
694 |
-
#: app/libraries/main.php:533
|
695 |
-
msgid "Frontend Event Submission"
|
696 |
-
msgstr "Erstellung von Veranstaltungen im Frontend"
|
697 |
-
|
698 |
-
#: app/features/contextual.php:298 app/features/events.php:1178
|
699 |
-
#: app/libraries/main.php:543
|
700 |
-
msgid "Exceptional Days"
|
701 |
-
msgstr "Herausgenommene Tage "
|
702 |
-
|
703 |
-
#: app/features/contextual.php:318 app/features/coupons.php:76
|
704 |
-
#: app/features/coupons.php:78 app/features/mec/booking.php:248
|
705 |
-
#: app/libraries/main.php:551
|
706 |
-
msgid "Coupons"
|
707 |
-
msgstr "Gutscheine"
|
708 |
-
|
709 |
-
#: app/features/contextual.php:326 app/features/mec/modules.php:324
|
710 |
-
#: app/libraries/main.php:567
|
711 |
-
msgid "BuddyPress Integration"
|
712 |
-
msgstr "Buddy Press Integration"
|
713 |
-
|
714 |
-
#: app/features/contextual.php:334 app/features/mec/settings.php:766
|
715 |
-
#: app/libraries/main.php:536
|
716 |
-
msgid "Mailchimp Integration"
|
717 |
-
msgstr "Mailchimp Integration"
|
718 |
-
|
719 |
-
#: app/features/contextual.php:346
|
720 |
-
msgid "MEC Activation"
|
721 |
-
msgstr "MEC Aktivierung"
|
722 |
-
|
723 |
-
#: app/features/coupons.php:79
|
724 |
-
msgid "Coupon"
|
725 |
-
msgstr "Gutschein"
|
726 |
-
|
727 |
-
#: app/features/coupons.php:80
|
728 |
-
msgid "All Coupons"
|
729 |
-
msgstr "Alle Gutscheine"
|
730 |
-
|
731 |
-
#: app/features/coupons.php:81
|
732 |
-
msgid "Edit Coupon"
|
733 |
-
msgstr "Gutschein ändern"
|
734 |
-
|
735 |
-
#: app/features/coupons.php:82
|
736 |
-
msgid "View Coupon"
|
737 |
-
msgstr "Gutschein anzeigen"
|
738 |
-
|
739 |
-
#: app/features/coupons.php:83
|
740 |
-
msgid "Update Coupon"
|
741 |
-
msgstr "Gutschein aktualisieren"
|
742 |
-
|
743 |
-
#: app/features/coupons.php:84
|
744 |
-
msgid "Add New Coupon"
|
745 |
-
msgstr "Gutschein hinzufügen"
|
746 |
-
|
747 |
-
#: app/features/coupons.php:85
|
748 |
-
msgid "New Coupon Name"
|
749 |
-
msgstr "Neue Bezeichnung für Gutschein"
|
750 |
-
|
751 |
-
#: app/features/coupons.php:86
|
752 |
-
msgid "Popular Coupons"
|
753 |
-
msgstr "Beliebte Gutscheine"
|
754 |
-
|
755 |
-
#: app/features/coupons.php:87
|
756 |
-
msgid "Search Coupons"
|
757 |
-
msgstr "Gutscheine suchen"
|
758 |
-
|
759 |
-
#: app/features/coupons.php:88
|
760 |
-
#, fuzzy
|
761 |
-
#| msgid "Search Coupons"
|
762 |
-
msgid "← Back to Coupons"
|
763 |
-
msgstr "Gutscheine suchen"
|
764 |
-
|
765 |
-
#: app/features/coupons.php:117 app/features/coupons.php:178
|
766 |
-
msgid "Discount Type"
|
767 |
-
msgstr "Rabatt-Art"
|
768 |
-
|
769 |
-
#: app/features/coupons.php:121 app/features/coupons.php:180
|
770 |
-
#: app/features/events.php:2152 app/features/events.php:2188
|
771 |
-
#: app/features/gateways.php:1536 app/features/mec/booking.php:300
|
772 |
-
#: app/features/mec/booking.php:329
|
773 |
-
msgid "Percent"
|
774 |
-
msgstr "Prozent"
|
775 |
-
|
776 |
-
#: app/features/coupons.php:122 app/features/coupons.php:181
|
777 |
-
#: app/features/events.php:2138 app/features/events.php:2142
|
778 |
-
#: app/features/events.php:2175 app/features/events.php:2178
|
779 |
-
#: app/features/gateways.php:1535 app/features/mec/booking.php:289
|
780 |
-
#: app/features/mec/booking.php:292 app/features/mec/booking.php:318
|
781 |
-
#: app/features/mec/booking.php:321
|
782 |
-
msgid "Amount"
|
783 |
-
msgstr "Betrag"
|
784 |
-
|
785 |
-
#: app/features/coupons.php:128 app/features/coupons.php:185
|
786 |
-
#: app/features/coupons.php:249 app/features/coupons.php:323
|
787 |
-
#: app/libraries/book.php:552
|
788 |
-
msgid "Discount"
|
789 |
-
msgstr "Rabatt"
|
790 |
-
|
791 |
-
#: app/features/coupons.php:132 app/features/coupons.php:187
|
792 |
-
msgid ""
|
793 |
-
"Discount percent, considered as amount if you set the discount type to amount"
|
794 |
-
msgstr ""
|
795 |
-
"Rabattprozentsatz, gilt als Betrag, wenn Sie den Rabatttyp auf Betrag "
|
796 |
-
"festlegen"
|
797 |
-
|
798 |
-
#: app/features/coupons.php:137 app/features/coupons.php:190
|
799 |
-
msgid "Usage Limit"
|
800 |
-
msgstr "Nutzungslimit"
|
801 |
-
|
802 |
-
#: app/features/coupons.php:141 app/features/coupons.php:192
|
803 |
-
msgid "Insert -1 for unlimited usage"
|
804 |
-
msgstr "Geben Sie -1 ein für unlimitierte Verwendung"
|
805 |
-
|
806 |
-
#: app/features/coupons.php:146 app/features/coupons.php:195
|
807 |
-
#: app/features/gateways.php:2547
|
808 |
-
msgid "Expiration Date"
|
809 |
-
msgstr "Ablaufdatum"
|
810 |
-
|
811 |
-
#: app/features/coupons.php:150 app/features/coupons.php:197
|
812 |
-
msgid "Leave it empty for no expiration!"
|
813 |
-
msgstr "Lassen Sie es leer für keine Verfallszeit!"
|
814 |
-
|
815 |
-
#: app/features/coupons.php:155 app/features/coupons.php:200
|
816 |
-
msgid "Target Event"
|
817 |
-
msgstr "Zielevent"
|
818 |
-
|
819 |
-
#: app/features/coupons.php:159 app/features/coupons.php:202
|
820 |
-
#: app/features/events.php:155
|
821 |
-
msgid "All Events"
|
822 |
-
msgstr "Alle Veranstaltungen"
|
823 |
-
|
824 |
-
#: app/features/coupons.php:247
|
825 |
-
msgid "Name/Code"
|
826 |
-
msgstr "Name/Code"
|
827 |
-
|
828 |
-
#: app/features/coupons.php:248 app/features/events.php:1330
|
829 |
-
#: app/features/events.php:1364 app/features/events.php:1425
|
830 |
-
#: app/features/events.php:1786 app/features/events.php:1991
|
831 |
-
msgid "Description"
|
832 |
-
msgstr "Beschreibung"
|
833 |
-
|
834 |
-
#: app/features/coupons.php:250 app/features/mec/booking.php:115
|
835 |
-
#: app/features/mec/meta_boxes/display_options.php:121
|
836 |
-
#: app/features/mec/meta_boxes/display_options.php:296
|
837 |
-
#: app/features/mec/meta_boxes/display_options.php:366
|
838 |
-
#: app/features/mec/meta_boxes/display_options.php:825
|
839 |
-
#: app/features/mec/meta_boxes/display_options.php:1092
|
840 |
-
#: app/features/mec/meta_boxes/display_options.php:1200
|
841 |
-
msgid "Limit"
|
842 |
-
msgstr "Limit"
|
843 |
-
|
844 |
-
#: app/features/coupons.php:251 app/features/labels.php:180
|
845 |
-
#: app/features/locations.php:232 app/features/organizers.php:206
|
846 |
-
#: app/features/speakers.php:255 app/modules/booking/steps/tickets.php:38
|
847 |
-
msgid "Count"
|
848 |
-
msgstr "Zähler"
|
849 |
-
|
850 |
-
#: app/features/coupons.php:281 app/features/events.php:1581
|
851 |
-
#: app/features/events.php:1835 app/features/events.php:2029
|
852 |
-
#: app/modules/booking/default.php:85 app/modules/booking/steps/tickets.php:40
|
853 |
-
#: app/skins/available_spot/tpl.php:159
|
854 |
-
msgid "Unlimited"
|
855 |
-
msgstr "Unlimitiert"
|
856 |
-
|
857 |
-
#: app/features/coupons.php:310
|
858 |
-
msgid "Discount coupon is invalid!"
|
859 |
-
msgstr "Der Rabattgutschein ist ungültig!"
|
860 |
-
|
861 |
-
#: app/features/coupons.php:312
|
862 |
-
msgid "Discount coupon usage limit reached!"
|
863 |
-
msgstr "Die Anzahl der Nutzungen für den Gutschein ist überschritten!"
|
864 |
-
|
865 |
-
#: app/features/coupons.php:314
|
866 |
-
msgid "Discount coupon is expired!"
|
867 |
-
msgstr "Rabattgutschein ist abgelaufen!"
|
868 |
-
|
869 |
-
#: app/features/coupons.php:316
|
870 |
-
msgid "Discount is not valid for this event!"
|
871 |
-
msgstr "Rabatt ist für diese Veranstaltung nicht gültig!"
|
872 |
-
|
873 |
-
#: app/features/coupons.php:327
|
874 |
-
#, php-format
|
875 |
-
msgid "Coupon is valid and you get %s discount."
|
876 |
-
msgstr "Der Gutschein ist gültig. Sie erhalten %s Rabatt"
|
877 |
-
|
878 |
-
#: app/features/events.php:150 app/features/ix/export.php:34
|
879 |
-
#: app/features/mec/dashboard.php:229 app/skins/daily_view/tpl.php:79
|
880 |
-
#: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
|
881 |
-
msgid "Events"
|
882 |
-
msgstr "Veranstaltungen"
|
883 |
-
|
884 |
-
#: app/features/events.php:152 app/features/mec.php:334
|
885 |
-
msgid "Add Event"
|
886 |
-
msgstr "Veranstaltung hinzufügen"
|
887 |
-
|
888 |
-
#: app/features/events.php:153 app/features/mec/dashboard.php:134
|
889 |
-
msgid "Add New Event"
|
890 |
-
msgstr "Neue Veranstaltung hinzufügen"
|
891 |
-
|
892 |
-
#: app/features/events.php:154 app/features/ix.php:3122
|
893 |
-
#: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:58
|
894 |
-
msgid "No events found!"
|
895 |
-
msgstr "Keine Veranstaltungen gefunden!"
|
896 |
-
|
897 |
-
#: app/features/events.php:156
|
898 |
-
msgid "Edit Event"
|
899 |
-
msgstr ""
|
900 |
-
|
901 |
-
#: app/features/events.php:157
|
902 |
-
msgid "View Event"
|
903 |
-
msgstr "Veranstaltung ansehen"
|
904 |
-
|
905 |
-
#: app/features/events.php:158
|
906 |
-
msgid "No events found in Trash!"
|
907 |
-
msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
|
908 |
-
|
909 |
-
#: app/features/events.php:175 app/features/events.php:3234
|
910 |
-
#: app/features/mec/meta_boxes/display_options.php:832
|
911 |
-
#: app/features/mec/meta_boxes/search_form.php:31
|
912 |
-
#: app/features/mec/meta_boxes/search_form.php:93
|
913 |
-
#: app/features/mec/meta_boxes/search_form.php:155
|
914 |
-
#: app/features/mec/meta_boxes/search_form.php:216
|
915 |
-
#: app/features/mec/meta_boxes/search_form.php:277
|
916 |
-
#: app/features/mec/meta_boxes/search_form.php:338
|
917 |
-
#: app/features/mec/meta_boxes/search_form.php:399
|
918 |
-
#: app/features/mec/meta_boxes/search_form.php:453
|
919 |
-
#: app/features/mec/meta_boxes/search_form.php:514
|
920 |
-
#: app/features/mec/meta_boxes/search_form.php:575
|
921 |
-
#: app/features/mec/settings.php:719 app/features/mec/single.php:204
|
922 |
-
#: app/libraries/main.php:4879 app/libraries/skins.php:808
|
923 |
-
#: app/skins/single.php:559 app/skins/single/default.php:185
|
924 |
-
#: app/skins/single/default.php:397 app/skins/single/m1.php:170
|
925 |
-
#: app/skins/single/m2.php:102 app/skins/single/modern.php:110
|
926 |
-
msgid "Category"
|
927 |
-
msgstr "Kategorie"
|
928 |
-
|
929 |
-
#: app/features/events.php:176 app/features/events.php:3205
|
930 |
-
#: app/features/fes/form.php:745 app/features/mec.php:336
|
931 |
-
#: app/features/mec/meta_boxes/filter.php:81 app/libraries/main.php:4878
|
932 |
-
msgid "Categories"
|
933 |
-
msgstr "Kategorien"
|
934 |
-
|
935 |
-
#: app/features/events.php:186 app/features/labels.php:71
|
936 |
-
#: app/features/locations.php:69 app/features/organizers.php:69
|
937 |
-
#: app/features/speakers.php:70
|
938 |
-
#, php-format
|
939 |
-
msgid "All %s"
|
940 |
-
msgstr "Alle %s"
|
941 |
-
|
942 |
-
#: app/features/events.php:187 app/features/labels.php:72
|
943 |
-
#: app/features/locations.php:70 app/features/organizers.php:70
|
944 |
-
#: app/features/speakers.php:71
|
945 |
-
#, php-format
|
946 |
-
msgid "Edit %s"
|
947 |
-
msgstr "Bearbeiten %s"
|
948 |
-
|
949 |
-
#: app/features/events.php:188 app/features/labels.php:73
|
950 |
-
#: app/features/locations.php:71 app/features/organizers.php:71
|
951 |
-
#: app/features/speakers.php:72
|
952 |
-
#, php-format
|
953 |
-
msgid "View %s"
|
954 |
-
msgstr "Ansicht %s"
|
955 |
-
|
956 |
-
#: app/features/events.php:189 app/features/labels.php:74
|
957 |
-
#: app/features/locations.php:72 app/features/organizers.php:72
|
958 |
-
#: app/features/speakers.php:73
|
959 |
-
#, php-format
|
960 |
-
msgid "Update %s"
|
961 |
-
msgstr "Update %s"
|
962 |
-
|
963 |
-
#: app/features/events.php:190 app/features/labels.php:75
|
964 |
-
#: app/features/locations.php:73 app/features/organizers.php:73
|
965 |
-
#: app/features/speakers.php:74
|
966 |
-
#, php-format
|
967 |
-
msgid "Add New %s"
|
968 |
-
msgstr "Neu hinzufügen%s"
|
969 |
-
|
970 |
-
#: app/features/events.php:191 app/features/labels.php:76
|
971 |
-
#: app/features/locations.php:74 app/features/organizers.php:74
|
972 |
-
#: app/features/speakers.php:75
|
973 |
-
#, php-format
|
974 |
-
msgid "New %s Name"
|
975 |
-
msgstr "Neuer %s Name"
|
976 |
-
|
977 |
-
#: app/features/events.php:192 app/features/labels.php:77
|
978 |
-
#: app/features/locations.php:75 app/features/organizers.php:75
|
979 |
-
#: app/features/speakers.php:76
|
980 |
-
#, php-format
|
981 |
-
msgid "Popular %s"
|
982 |
-
msgstr "Beliebt %s"
|
983 |
-
|
984 |
-
#: app/features/events.php:193 app/features/labels.php:78
|
985 |
-
#: app/features/locations.php:76 app/features/organizers.php:76
|
986 |
-
#: app/features/speakers.php:77
|
987 |
-
#, php-format
|
988 |
-
msgid "Search %s"
|
989 |
-
msgstr "Suche %s"
|
990 |
-
|
991 |
-
#: app/features/events.php:218 app/features/events.php:239
|
992 |
-
msgid "Category Icon"
|
993 |
-
msgstr "Kategoriesymbol"
|
994 |
-
|
995 |
-
#: app/features/events.php:221 app/features/events.php:244
|
996 |
-
msgid "Select icon"
|
997 |
-
msgstr "Wählen Sie ein Symbol"
|
998 |
-
|
999 |
-
#: app/features/events.php:293
|
1000 |
-
msgid "Event Details"
|
1001 |
-
msgstr "Veranstaltungsdetails"
|
1002 |
-
|
1003 |
-
#: app/features/events.php:455
|
1004 |
-
msgid "Note for reviewer"
|
1005 |
-
msgstr "Zusätzliche Anmerkungen zum Event "
|
1006 |
-
|
1007 |
-
#: app/features/events.php:461
|
1008 |
-
msgid "Guest Data"
|
1009 |
-
msgstr "Gäste Daten"
|
1010 |
-
|
1011 |
-
#: app/features/events.php:471 app/features/fes/form.php:232
|
1012 |
-
msgid "Date and Time"
|
1013 |
-
msgstr "Datum und Uhrzeit"
|
1014 |
-
|
1015 |
-
#: app/features/events.php:474 app/features/events.php:480
|
1016 |
-
#: app/features/events.php:3237 app/features/events.php:3427
|
1017 |
-
#: app/features/events.php:3469 app/features/fes/form.php:236
|
1018 |
-
#: app/features/fes/form.php:240 app/features/ix.php:2743
|
1019 |
-
#: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:38
|
1020 |
-
#: app/features/mec/dashboard.php:373
|
1021 |
-
#: app/features/mec/meta_boxes/display_options.php:48
|
1022 |
-
#: app/features/mec/meta_boxes/display_options.php:189
|
1023 |
-
#: app/features/mec/meta_boxes/display_options.php:341
|
1024 |
-
#: app/features/mec/meta_boxes/display_options.php:396
|
1025 |
-
#: app/features/mec/meta_boxes/display_options.php:519
|
1026 |
-
#: app/features/mec/meta_boxes/display_options.php:573
|
1027 |
-
#: app/features/mec/meta_boxes/display_options.php:620
|
1028 |
-
#: app/features/mec/meta_boxes/display_options.php:653
|
1029 |
-
#: app/features/mec/meta_boxes/display_options.php:688
|
1030 |
-
#: app/features/mec/meta_boxes/display_options.php:734
|
1031 |
-
#: app/features/mec/meta_boxes/display_options.php:800
|
1032 |
-
#: app/features/mec/meta_boxes/display_options.php:1035
|
1033 |
-
#: app/features/mec/meta_boxes/display_options.php:1122
|
1034 |
-
msgid "Start Date"
|
1035 |
-
msgstr "Start Datum"
|
1036 |
-
|
1037 |
-
#: app/features/events.php:552 app/features/events.php:644
|
1038 |
-
#: app/features/events.php:1711 app/features/events.php:1770
|
1039 |
-
#: app/features/events.php:1943 app/features/events.php:1982
|
1040 |
-
#: app/features/fes/form.php:268 app/features/fes/form.php:308
|
1041 |
-
msgid "AM"
|
1042 |
-
msgstr "AM"
|
1043 |
-
|
1044 |
-
#: app/features/events.php:559 app/features/events.php:651
|
1045 |
-
#: app/features/events.php:1718 app/features/events.php:1777
|
1046 |
-
#: app/features/events.php:1944 app/features/events.php:1983
|
1047 |
-
#: app/features/fes/form.php:269 app/features/fes/form.php:309
|
1048 |
-
msgid "PM"
|
1049 |
-
msgstr "PM"
|
1050 |
-
|
1051 |
-
#: app/features/events.php:566 app/features/events.php:571
|
1052 |
-
#: app/features/events.php:3238 app/features/events.php:3427
|
1053 |
-
#: app/features/events.php:3469 app/features/fes/form.php:276
|
1054 |
-
#: app/features/fes/form.php:280 app/features/ix.php:2743
|
1055 |
-
#: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:44
|
1056 |
-
#: app/features/mec/dashboard.php:374
|
1057 |
-
msgid "End Date"
|
1058 |
-
msgstr "Ende Datum"
|
1059 |
-
|
1060 |
-
#: app/features/events.php:665 app/features/fes/form.php:315
|
1061 |
-
msgid "All Day Event"
|
1062 |
-
msgstr "Ganztägige Veranstaltung"
|
1063 |
-
|
1064 |
-
#: app/features/events.php:675 app/features/fes/form.php:318
|
1065 |
-
msgid "Hide Event Time"
|
1066 |
-
msgstr "Event / Veranstaltungszeit verbergen"
|
1067 |
-
|
1068 |
-
#: app/features/events.php:685 app/features/fes/form.php:321
|
1069 |
-
msgid "Hide Event End Time"
|
1070 |
-
msgstr "Ende-Zeit der Veranstaltung verbergen"
|
1071 |
-
|
1072 |
-
#: app/features/events.php:690 app/features/events.php:694
|
1073 |
-
#: app/features/fes/form.php:325
|
1074 |
-
msgid "Time Comment"
|
1075 |
-
msgstr "z.B. MEZ "
|
1076 |
-
|
1077 |
-
#: app/features/events.php:695 app/features/fes/form.php:326
|
1078 |
-
#, fuzzy
|
1079 |
-
#| msgid ""
|
1080 |
-
#| "It shows next to event time on calendar. You can insert Timezone etc. in "
|
1081 |
-
#| "this field."
|
1082 |
-
msgid ""
|
1083 |
-
"It shows next to event time on single event page. You can insert Timezone "
|
1084 |
-
"etc. in this field."
|
1085 |
-
msgstr ""
|
1086 |
-
"Neben der Zeit im Kalender wird diese Angabe angezeigt. In diesem Feld "
|
1087 |
-
"können Sie z.B. eine Zeitzone wie z.B. \"MEZ\" usw. einfügen. "
|
1088 |
-
|
1089 |
-
#: app/features/events.php:697 app/features/events.php:830
|
1090 |
-
#: app/features/events.php:1130 app/features/events.php:1197
|
1091 |
-
#: app/features/events.php:1496 app/features/events.php:1588
|
1092 |
-
#: app/features/events.php:1799 app/features/events.php:1814
|
1093 |
-
#: app/features/events.php:2002 app/features/events.php:2015
|
1094 |
-
#: app/features/events.php:2145 app/features/events.php:2181
|
1095 |
-
#: app/features/events.php:2279 app/features/events.php:2294
|
1096 |
-
#: app/features/events.php:2324 app/features/events.php:2337
|
1097 |
-
#: app/features/fes/form.php:630 app/features/gateways.php:810
|
1098 |
-
#: app/features/gateways.php:1491 app/features/gateways.php:1504
|
1099 |
-
#: app/features/gateways.php:1734 app/features/gateways.php:1954
|
1100 |
-
#: app/features/gateways.php:2008 app/features/gateways.php:2026
|
1101 |
-
#: app/features/gateways.php:2420 app/features/gateways.php:3125
|
1102 |
-
#: app/features/gateways.php:3145 app/features/locations.php:299
|
1103 |
-
#: app/features/mec/booking.php:108 app/features/mec/booking.php:158
|
1104 |
-
#: app/features/mec/booking.php:174 app/features/mec/booking.php:293
|
1105 |
-
#: app/features/mec/booking.php:322 app/features/mec/booking.php:370
|
1106 |
-
#: app/features/mec/booking.php:380 app/features/mec/booking.php:402
|
1107 |
-
#: app/features/mec/booking.php:412 app/features/mec/dashboard.php:71
|
1108 |
-
#: app/features/mec/meta_boxes/display_options.php:66
|
1109 |
-
#: app/features/mec/meta_boxes/display_options.php:79
|
1110 |
-
#: app/features/mec/meta_boxes/display_options.php:92
|
1111 |
-
#: app/features/mec/meta_boxes/display_options.php:103
|
1112 |
-
#: app/features/mec/meta_boxes/display_options.php:115
|
1113 |
-
#: app/features/mec/meta_boxes/display_options.php:207
|
1114 |
-
#: app/features/mec/meta_boxes/display_options.php:219
|
1115 |
-
#: app/features/mec/meta_boxes/display_options.php:231
|
1116 |
-
#: app/features/mec/meta_boxes/display_options.php:244
|
1117 |
-
#: app/features/mec/meta_boxes/display_options.php:255
|
1118 |
-
#: app/features/mec/meta_boxes/display_options.php:268
|
1119 |
-
#: app/features/mec/meta_boxes/display_options.php:279
|
1120 |
-
#: app/features/mec/meta_boxes/display_options.php:360
|
1121 |
-
#: app/features/mec/meta_boxes/display_options.php:536
|
1122 |
-
#: app/features/mec/meta_boxes/display_options.php:819
|
1123 |
-
#: app/features/mec/meta_boxes/display_options.php:892
|
1124 |
-
#: app/features/mec/meta_boxes/display_options.php:904
|
1125 |
-
#: app/features/mec/meta_boxes/display_options.php:915
|
1126 |
-
#: app/features/mec/meta_boxes/display_options.php:947
|
1127 |
-
#: app/features/mec/meta_boxes/display_options.php:958
|
1128 |
-
#: app/features/mec/meta_boxes/display_options.php:971
|
1129 |
-
#: app/features/mec/meta_boxes/display_options.php:1006
|
1130 |
-
#: app/features/mec/meta_boxes/display_options.php:1055
|
1131 |
-
#: app/features/mec/meta_boxes/display_options.php:1066
|
1132 |
-
#: app/features/mec/meta_boxes/display_options.php:1077
|
1133 |
-
#: app/features/mec/meta_boxes/display_options.php:1142
|
1134 |
-
#: app/features/mec/meta_boxes/display_options.php:1155
|
1135 |
-
#: app/features/mec/meta_boxes/display_options.php:1168
|
1136 |
-
#: app/features/mec/meta_boxes/display_options.php:1181
|
1137 |
-
#: app/features/mec/meta_boxes/display_options.php:1194
|
1138 |
-
#: app/features/mec/modules.php:53 app/features/mec/modules.php:86
|
1139 |
-
#: app/features/mec/modules.php:103 app/features/mec/modules.php:138
|
1140 |
-
#: app/features/mec/modules.php:154 app/features/mec/modules.php:312
|
1141 |
-
#: app/features/mec/notifications.php:54 app/features/mec/notifications.php:111
|
1142 |
-
#: app/features/mec/notifications.php:163
|
1143 |
-
#: app/features/mec/notifications.php:222
|
1144 |
-
#: app/features/mec/notifications.php:290
|
1145 |
-
#: app/features/mec/notifications.php:353
|
1146 |
-
#: app/features/mec/notifications.php:364
|
1147 |
-
#: app/features/mec/notifications.php:426
|
1148 |
-
#: app/features/mec/notifications.php:472 app/features/mec/settings.php:66
|
1149 |
-
#: app/features/mec/settings.php:85 app/features/mec/settings.php:112
|
1150 |
-
#: app/features/mec/settings.php:147 app/features/mec/settings.php:168
|
1151 |
-
#: app/features/mec/settings.php:188 app/features/mec/settings.php:265
|
1152 |
-
#: app/features/mec/settings.php:339 app/features/mec/settings.php:356
|
1153 |
-
#: app/features/mec/settings.php:373 app/features/mec/settings.php:392
|
1154 |
-
#: app/features/mec/settings.php:406 app/features/mec/settings.php:434
|
1155 |
-
#: app/features/mec/settings.php:521 app/features/mec/settings.php:659
|
1156 |
-
#: app/features/mec/settings.php:676 app/features/mec/settings.php:781
|
1157 |
-
#: app/features/mec/settings.php:794 app/features/mec/settings.php:810
|
1158 |
-
#: app/features/mec/single.php:42 app/features/mec/single.php:58
|
1159 |
-
#: app/features/mec/single.php:77 app/features/mec/single.php:94
|
1160 |
-
#: app/features/mec/single.php:110 app/features/mec/single.php:124
|
1161 |
-
#: app/features/mec/single.php:162 app/features/mec/styling.php:203
|
1162 |
-
#: app/features/mec/styling.php:220 app/features/mec/styling.php:233
|
1163 |
-
#: app/features/organizers.php:272 app/skins/single.php:657
|
1164 |
-
#: app/skins/single/default.php:134 app/skins/single/default.php:346
|
1165 |
-
#: app/skins/single/m1.php:192 app/skins/single/m2.php:125
|
1166 |
-
#: app/skins/single/modern.php:133
|
1167 |
-
msgid "Read More"
|
1168 |
-
msgstr "Mehr lesen"
|
1169 |
-
|
1170 |
-
#: app/features/events.php:705
|
1171 |
-
#, fuzzy
|
1172 |
-
#| msgid "Repeat"
|
1173 |
-
msgid "Repeating"
|
1174 |
-
msgstr "Wiederholen"
|
1175 |
-
|
1176 |
-
#: app/features/events.php:714 app/features/fes/form.php:332
|
1177 |
-
msgid "Event Repeating"
|
1178 |
-
msgstr "Wiederholende Veranstaltung"
|
1179 |
-
|
1180 |
-
#: app/features/events.php:718 app/features/fes/form.php:336
|
1181 |
-
msgid "Repeats"
|
1182 |
-
msgstr "Wiederholend"
|
1183 |
-
|
1184 |
-
#: app/features/events.php:726 app/features/fes/form.php:338
|
1185 |
-
#: app/features/mec/dashboard.php:376
|
1186 |
-
#: app/skins/default_full_calendar/tpl.php:69
|
1187 |
-
#: app/skins/full_calendar/tpl.php:110
|
1188 |
-
msgid "Daily"
|
1189 |
-
msgstr "Täglich"
|
1190 |
-
|
1191 |
-
#: app/features/events.php:733 app/features/fes/form.php:339
|
1192 |
-
msgid "Every Weekday"
|
1193 |
-
msgstr "An jedem Wochentag"
|
1194 |
-
|
1195 |
-
#: app/features/events.php:740 app/features/fes/form.php:340
|
1196 |
-
msgid "Every Weekend"
|
1197 |
-
msgstr "An jedem Wochenende"
|
1198 |
-
|
1199 |
-
#: app/features/events.php:747 app/features/fes/form.php:341
|
1200 |
-
msgid "Certain Weekdays"
|
1201 |
-
msgstr "Bestimmte Wochentage"
|
1202 |
-
|
1203 |
-
#: app/features/events.php:754 app/features/fes/form.php:342
|
1204 |
-
#: app/skins/default_full_calendar/tpl.php:68
|
1205 |
-
#: app/skins/full_calendar/tpl.php:109
|
1206 |
-
msgid "Weekly"
|
1207 |
-
msgstr "Wöchentlich"
|
1208 |
-
|
1209 |
-
#: app/features/events.php:761 app/features/fes/form.php:343
|
1210 |
-
#: app/features/mec/dashboard.php:377
|
1211 |
-
#: app/skins/default_full_calendar/tpl.php:67
|
1212 |
-
#: app/skins/full_calendar/tpl.php:108
|
1213 |
-
msgid "Monthly"
|
1214 |
-
msgstr "Monatlich"
|
1215 |
-
|
1216 |
-
#: app/features/events.php:768 app/features/fes/form.php:344
|
1217 |
-
#: app/features/mec/dashboard.php:378
|
1218 |
-
#: app/skins/default_full_calendar/tpl.php:66
|
1219 |
-
#: app/skins/full_calendar/tpl.php:107
|
1220 |
-
msgid "Yearly"
|
1221 |
-
msgstr "Jährlich"
|
1222 |
-
|
1223 |
-
#: app/features/events.php:775 app/features/fes/form.php:345
|
1224 |
-
msgid "Custom Days"
|
1225 |
-
msgstr "Benutzerdefinierte Tage"
|
1226 |
-
|
1227 |
-
#: app/features/events.php:782 app/features/fes/form.php:346
|
1228 |
-
#, fuzzy
|
1229 |
-
#| msgid "Advanced Method"
|
1230 |
-
msgid "Advanced"
|
1231 |
-
msgstr "Fortgeschrittene Methode"
|
1232 |
-
|
1233 |
-
#: app/features/events.php:787 app/features/fes/form.php:350
|
1234 |
-
msgid "Repeat Interval"
|
1235 |
-
msgstr "Wiederholungsintervall"
|
1236 |
-
|
1237 |
-
#: app/features/events.php:789 app/features/fes/form.php:351
|
1238 |
-
msgid "Repeat interval"
|
1239 |
-
msgstr "Wiederholungsintervall"
|
1240 |
-
|
1241 |
-
#: app/features/events.php:793 app/features/fes/form.php:354
|
1242 |
-
msgid "Week Days"
|
1243 |
-
msgstr "Wochentage"
|
1244 |
-
|
1245 |
-
#: app/features/events.php:795 app/features/fes/form.php:355
|
1246 |
-
#: app/features/mec/meta_boxes/display_options.php:764
|
1247 |
-
#: app/libraries/main.php:407
|
1248 |
-
msgid "Monday"
|
1249 |
-
msgstr "Montag"
|
1250 |
-
|
1251 |
-
#: app/features/events.php:798 app/features/fes/form.php:356
|
1252 |
-
#: app/features/mec/meta_boxes/display_options.php:765
|
1253 |
-
#: app/libraries/main.php:407
|
1254 |
-
msgid "Tuesday"
|
1255 |
-
msgstr "Dienstag"
|
1256 |
-
|
1257 |
-
#: app/features/events.php:801 app/features/fes/form.php:357
|
1258 |
-
#: app/features/mec/meta_boxes/display_options.php:766
|
1259 |
-
#: app/libraries/main.php:407
|
1260 |
-
msgid "Wednesday"
|
1261 |
-
msgstr "Mittwoch"
|
1262 |
-
|
1263 |
-
#: app/features/events.php:804 app/features/fes/form.php:358
|
1264 |
-
#: app/features/mec/meta_boxes/display_options.php:767
|
1265 |
-
#: app/libraries/main.php:407
|
1266 |
-
msgid "Thursday"
|
1267 |
-
msgstr "Donnerstag"
|
1268 |
-
|
1269 |
-
#: app/features/events.php:807 app/features/fes/form.php:359
|
1270 |
-
#: app/features/mec/meta_boxes/display_options.php:768
|
1271 |
-
#: app/libraries/main.php:407
|
1272 |
-
msgid "Friday"
|
1273 |
-
msgstr "Freitag"
|
1274 |
-
|
1275 |
-
#: app/features/events.php:810 app/features/fes/form.php:360
|
1276 |
-
#: app/features/mec/meta_boxes/display_options.php:769
|
1277 |
-
#: app/libraries/main.php:407
|
1278 |
-
msgid "Saturday"
|
1279 |
-
msgstr "Samstag"
|
1280 |
-
|
1281 |
-
#: app/features/events.php:813 app/features/fes/form.php:361
|
1282 |
-
#: app/features/mec/meta_boxes/display_options.php:763
|
1283 |
-
#: app/libraries/main.php:407
|
1284 |
-
msgid "Sunday"
|
1285 |
-
msgstr "Sonntag"
|
1286 |
-
|
1287 |
-
#: app/features/events.php:820 app/features/events.php:1862
|
1288 |
-
#: app/features/events.php:1890 app/features/events.php:2049
|
1289 |
-
#: app/features/fes/form.php:366 app/features/ix/import_f_calendar.php:42
|
1290 |
-
#: app/features/ix/import_g_calendar.php:51
|
1291 |
-
#: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
|
1292 |
-
msgid "Start"
|
1293 |
-
msgstr "Start"
|
1294 |
-
|
1295 |
-
#: app/features/events.php:822 app/features/events.php:1866
|
1296 |
-
#: app/features/events.php:1894 app/features/events.php:2053
|
1297 |
-
#: app/features/fes/form.php:367
|
1298 |
-
#, fuzzy
|
1299 |
-
#| msgid "Enabled"
|
1300 |
-
msgid "End"
|
1301 |
-
msgstr "Aktiviert"
|
1302 |
-
|
1303 |
-
#: app/features/events.php:824 app/features/events.php:1191
|
1304 |
-
#: app/features/events.php:1302 app/features/events.php:1407
|
1305 |
-
#: app/features/events.php:1646 app/features/events.php:1845
|
1306 |
-
#: app/features/events.php:2038 app/features/events.php:2118
|
1307 |
-
#: app/features/events.php:2251 app/features/fes/form.php:368
|
1308 |
-
#: app/features/fes/form.php:842
|
1309 |
-
msgid "Add"
|
1310 |
-
msgstr "Hinzufügen"
|
1311 |
-
|
1312 |
-
#: app/features/events.php:827
|
1313 |
-
#, fuzzy
|
1314 |
-
#| msgid "Custom Days"
|
1315 |
-
msgid "Custom Days Repeating"
|
1316 |
-
msgstr "Benutzerdefinierte Tage"
|
1317 |
-
|
1318 |
-
#: app/features/events.php:828
|
1319 |
-
msgid ""
|
1320 |
-
"Add certain days to event occurrence dates. If you have single day event, "
|
1321 |
-
"start and end date should be the same, If you have multiple day event the "
|
1322 |
-
"start and end dates must be commensurate with the initial date."
|
1323 |
-
msgstr ""
|
1324 |
-
|
1325 |
-
#: app/features/events.php:864 app/features/fes/form.php:394
|
1326 |
-
#, fuzzy
|
1327 |
-
#| msgid "First name"
|
1328 |
-
msgid "First"
|
1329 |
-
msgstr "Vorname"
|
1330 |
-
|
1331 |
-
#: app/features/events.php:906 app/features/fes/form.php:436
|
1332 |
-
#, fuzzy
|
1333 |
-
#| msgid "second"
|
1334 |
-
msgid "Second"
|
1335 |
-
msgstr "Sekunde"
|
1336 |
-
|
1337 |
-
#: app/features/events.php:948 app/features/fes/form.php:478
|
1338 |
-
#, fuzzy
|
1339 |
-
#| msgid "Third Party"
|
1340 |
-
msgid "Third"
|
1341 |
-
msgstr "Dritte Seite"
|
1342 |
-
|
1343 |
-
#: app/features/events.php:990 app/features/fes/form.php:520
|
1344 |
-
msgid "Fourth"
|
1345 |
-
msgstr ""
|
1346 |
-
|
1347 |
-
#: app/features/events.php:1032 app/features/fes/form.php:562
|
1348 |
-
#, fuzzy
|
1349 |
-
#| msgid "Last name"
|
1350 |
-
msgid "Last"
|
1351 |
-
msgstr "Nachname"
|
1352 |
-
|
1353 |
-
#: app/features/events.php:1079 app/features/fes/form.php:608
|
1354 |
-
msgid "Ends Repeat"
|
1355 |
-
msgstr "Wiederholung endet"
|
1356 |
-
|
1357 |
-
#: app/features/events.php:1091 app/features/fes/form.php:612
|
1358 |
-
msgid "Never"
|
1359 |
-
msgstr "Niemals"
|
1360 |
-
|
1361 |
-
#: app/features/events.php:1103 app/features/fes/form.php:617
|
1362 |
-
msgid "On"
|
1363 |
-
msgstr "Am"
|
1364 |
-
|
1365 |
-
#: app/features/events.php:1119 app/features/fes/form.php:624
|
1366 |
-
msgid "After"
|
1367 |
-
msgstr "Nach"
|
1368 |
-
|
1369 |
-
#: app/features/events.php:1123 app/features/events.php:1127
|
1370 |
-
#: app/features/fes/form.php:626 app/features/fes/form.php:629
|
1371 |
-
msgid "Occurrences times"
|
1372 |
-
msgstr " mal vorkommen"
|
1373 |
-
|
1374 |
-
#: app/features/events.php:1128 app/features/fes/form.php:630
|
1375 |
-
msgid ""
|
1376 |
-
"The event will finish after certain repeats. For example if you set it to "
|
1377 |
-
"10, the event will finish after 10 repeats."
|
1378 |
-
msgstr ""
|
1379 |
-
"Das Event ist nach einer bestimmten Anzahl von Wiederholungen zu Ende. Zum "
|
1380 |
-
"Beispiel: Bei Eingabe von 10 wird das Event nach 10 Wiederholungen beendet"
|
1381 |
-
|
1382 |
-
#: app/features/events.php:1153 app/features/events.php:3427
|
1383 |
-
#: app/features/events.php:3469 app/features/fes/form.php:706
|
1384 |
-
#: app/features/ix.php:2743 app/features/ix.php:2784
|
1385 |
-
#: app/features/mec/settings.php:576 app/libraries/main.php:4911
|
1386 |
-
#: app/widgets/single.php:103
|
1387 |
-
msgid "Event Cost"
|
1388 |
-
msgstr ""
|
1389 |
-
"Bruttopreis des Events in Euro, 0 für kostenlos oder z.B. 39, ohne €-Zeichen"
|
1390 |
-
|
1391 |
-
#: app/features/events.php:1157 app/features/fes/form.php:709
|
1392 |
-
#: app/libraries/main.php:4912 app/skins/single.php:582
|
1393 |
-
#: app/skins/single/default.php:119 app/skins/single/default.php:331
|
1394 |
-
#: app/skins/single/m1.php:49 app/skins/single/modern.php:199
|
1395 |
-
msgid "Cost"
|
1396 |
-
msgstr " Preis"
|
1397 |
-
|
1398 |
-
#: app/features/events.php:1184 app/features/events.php:1194
|
1399 |
-
msgid "Exclude certain days"
|
1400 |
-
msgstr "Ausschluss bestimmter Tage"
|
1401 |
-
|
1402 |
-
#: app/features/events.php:1195
|
1403 |
-
msgid ""
|
1404 |
-
"Exclude certain days from event occurrence dates. Please note that you can "
|
1405 |
-
"exclude only single day occurrences and you cannot exclude one day from "
|
1406 |
-
"multiple day occurrences."
|
1407 |
-
msgstr ""
|
1408 |
-
|
1409 |
-
#: app/features/events.php:1249 app/libraries/render.php:470
|
1410 |
-
msgid "Day 1"
|
1411 |
-
msgstr ""
|
1412 |
-
|
1413 |
-
#: app/features/events.php:1271 app/features/mec/settings.php:630
|
1414 |
-
#: app/skins/single.php:930
|
1415 |
-
msgid "Hourly Schedule"
|
1416 |
-
msgstr "Stundenplan"
|
1417 |
-
|
1418 |
-
#: app/features/events.php:1275
|
1419 |
-
msgid "Add Day"
|
1420 |
-
msgstr ""
|
1421 |
-
|
1422 |
-
#: app/features/events.php:1276
|
1423 |
-
msgid ""
|
1424 |
-
"Add new days for schedule. For example if your event is multiple days, you "
|
1425 |
-
"can add a different schedule for each day!"
|
1426 |
-
msgstr ""
|
1427 |
-
|
1428 |
-
#: app/features/events.php:1283
|
1429 |
-
#, php-format
|
1430 |
-
msgid "Day %s"
|
1431 |
-
msgstr ""
|
1432 |
-
|
1433 |
-
#: app/features/events.php:1296 app/features/events.php:1333
|
1434 |
-
#: app/features/events.php:1366 app/features/events.php:1401
|
1435 |
-
#: app/features/events.php:1427 app/features/events.php:1838
|
1436 |
-
#: app/features/events.php:1876 app/features/events.php:1902
|
1437 |
-
#: app/features/events.php:2032 app/features/events.php:2059
|
1438 |
-
#: app/features/events.php:2158 app/features/events.php:2194
|
1439 |
-
#: app/features/events.php:2301 app/features/events.php:2343
|
1440 |
-
#: app/features/mec/booking.php:305 app/features/mec/booking.php:334
|
1441 |
-
#: app/features/mec/booking.php:385 app/features/mec/booking.php:417
|
1442 |
-
#: app/libraries/main.php:2508 app/libraries/main.php:2538
|
1443 |
-
#: app/libraries/main.php:2567 app/libraries/main.php:2597
|
1444 |
-
#: app/libraries/main.php:2626 app/libraries/main.php:2655
|
1445 |
-
#: app/libraries/main.php:2684 app/libraries/main.php:2713
|
1446 |
-
#: app/libraries/main.php:2735 app/libraries/main.php:2766
|
1447 |
-
#: app/libraries/main.php:2810 app/libraries/main.php:2854
|
1448 |
-
#: app/libraries/main.php:2901 app/libraries/main.php:2940
|
1449 |
-
msgid "Remove"
|
1450 |
-
msgstr "Entfernen"
|
1451 |
-
|
1452 |
-
#: app/features/events.php:1303 app/features/events.php:1408
|
1453 |
-
msgid "Add new hourly schedule row"
|
1454 |
-
msgstr "Neue Stundenplan-Zeile hinzufügen"
|
1455 |
-
|
1456 |
-
#: app/features/events.php:1318 app/features/events.php:1355
|
1457 |
-
#: app/features/events.php:1417
|
1458 |
-
msgid "From e.g. 8:15"
|
1459 |
-
msgstr "Von z.B. 08:15 Uhr"
|
1460 |
-
|
1461 |
-
#: app/features/events.php:1322 app/features/events.php:1358
|
1462 |
-
#: app/features/events.php:1419
|
1463 |
-
msgid "To e.g. 8:45"
|
1464 |
-
msgstr "bis zum Beispiel 08:45 Uhr"
|
1465 |
-
|
1466 |
-
#: app/features/events.php:1336 app/features/events.php:1369
|
1467 |
-
#: app/features/events.php:1430 app/features/fes/form.php:838
|
1468 |
-
#: app/features/mec.php:344 app/features/mec/modules.php:52
|
1469 |
-
#: app/features/mec/settings.php:624 app/features/speakers.php:60
|
1470 |
-
#: app/libraries/main.php:559 app/libraries/main.php:4886
|
1471 |
-
#: app/modules/speakers/details.php:18
|
1472 |
-
msgid "Speakers"
|
1473 |
-
msgstr ""
|
1474 |
-
|
1475 |
-
#: app/features/events.php:1389 app/features/events.php:1397
|
1476 |
-
#, fuzzy
|
1477 |
-
#| msgid "Week Days"
|
1478 |
-
msgid "New Day"
|
1479 |
-
msgstr "Wochentage"
|
1480 |
-
|
1481 |
-
#: app/features/events.php:1461 app/features/fes/form.php:683
|
1482 |
-
#: app/features/mec/settings.php:570
|
1483 |
-
msgid "Event Links"
|
1484 |
-
msgstr "Veranstaltungslinks"
|
1485 |
-
|
1486 |
-
#: app/features/events.php:1464 app/features/events.php:1470
|
1487 |
-
#: app/features/fes/form.php:685 app/libraries/main.php:4909
|
1488 |
-
msgid "Event Link"
|
1489 |
-
msgstr "Veranstaltungslink"
|
1490 |
-
|
1491 |
-
#: app/features/events.php:1467 app/features/events.php:1483
|
1492 |
-
#: app/features/fes/form.php:686 app/features/fes/form.php:691
|
1493 |
-
msgid "eg. http://yoursite.com/your-event"
|
1494 |
-
msgstr "z.B. http://ihreseite.com/ihre-veranstaltung"
|
1495 |
-
|
1496 |
-
#: app/features/events.php:1471
|
1497 |
-
#, fuzzy
|
1498 |
-
#| msgid ""
|
1499 |
-
#| "If you fill it, it will be replaced instead of default event page link. "
|
1500 |
-
#| "Insert full link including http(s)://"
|
1501 |
-
msgid ""
|
1502 |
-
"If you fill it, it will be replaced instead of default event page link. "
|
1503 |
-
"Insert full link including http(s):// - Also, if you use advertising URL, "
|
1504 |
-
"can use URL Shortener"
|
1505 |
-
msgstr ""
|
1506 |
-
"Wenn Sie dies ausfüllen, wird anstatt des Standard-Event-Seitenlinks, "
|
1507 |
-
"dieser durch einen neuen link ersetzt werden. Vollständigen Link einfügen, "
|
1508 |
-
"einschließlich http(s)://"
|
1509 |
-
|
1510 |
-
#: app/features/events.php:1473
|
1511 |
-
msgid "URL Shortener"
|
1512 |
-
msgstr ""
|
1513 |
-
|
1514 |
-
#: app/features/events.php:1480 app/features/events.php:1493
|
1515 |
-
#: app/features/fes/form.php:690 app/libraries/main.php:4910
|
1516 |
-
#: app/skins/single.php:656 app/skins/single/default.php:133
|
1517 |
-
#: app/skins/single/default.php:345 app/skins/single/m1.php:191
|
1518 |
-
#: app/skins/single/m2.php:124 app/skins/single/modern.php:132
|
1519 |
-
#: app/widgets/single.php:107
|
1520 |
-
msgid "More Info"
|
1521 |
-
msgstr "Mehr Informationen"
|
1522 |
-
|
1523 |
-
#: app/features/events.php:1486 app/features/fes/form.php:692
|
1524 |
-
msgid "More Information"
|
1525 |
-
msgstr "z.B. Noch mehr Informationen "
|
1526 |
-
|
1527 |
-
#: app/features/events.php:1488 app/features/fes/form.php:694
|
1528 |
-
msgid "Current Window"
|
1529 |
-
msgstr "Aktuelles Fenster"
|
1530 |
-
|
1531 |
-
#: app/features/events.php:1489 app/features/fes/form.php:695
|
1532 |
-
msgid "New Window"
|
1533 |
-
msgstr "Neues Fenster"
|
1534 |
-
|
1535 |
-
#: app/features/events.php:1494 app/features/fes/form.php:697
|
1536 |
-
msgid ""
|
1537 |
-
"If you fill it, it will be shown in event details page as an optional link. "
|
1538 |
-
"Insert full link including http(s)://"
|
1539 |
-
msgstr ""
|
1540 |
-
"Wenn Sie dies ausfüllen, wird dies in der Eventdetailsseite als ein "
|
1541 |
-
"optionaler link angezeigt. Bitte vollen link inklusive http(s):// einfügen. "
|
1542 |
-
"Im Feld hinter dem Link können Sie einen Namen vergeben wie der Link als "
|
1543 |
-
"Text angezeigt werden soll: zum Beispiel: Noch mehr Informationen oder Hier "
|
1544 |
-
"zur Anmeldung (z.B. bei Webinaren sinnvoll) "
|
1545 |
-
|
1546 |
-
#: app/features/events.php:1569 app/features/events.php:1584
|
1547 |
-
msgid "Total booking limits"
|
1548 |
-
msgstr "Gesamt Verfügbare Plätze"
|
1549 |
-
|
1550 |
-
#: app/features/events.php:1587
|
1551 |
-
msgid ""
|
1552 |
-
"If you want to set a limit to all tickets, uncheck this checkbox and put a "
|
1553 |
-
"limitation number."
|
1554 |
-
msgstr ""
|
1555 |
-
|
1556 |
-
#: app/features/events.php:1589
|
1557 |
-
#, fuzzy
|
1558 |
-
#| msgid "Choose your single event style."
|
1559 |
-
msgid "Read About A Booking System"
|
1560 |
-
msgstr "Wählen Sie Ihren Single Event Stil"
|
1561 |
-
|
1562 |
-
#: app/features/events.php:1597
|
1563 |
-
msgid "100"
|
1564 |
-
msgstr "z.B. 100"
|
1565 |
-
|
1566 |
-
#: app/features/events.php:1602
|
1567 |
-
#, fuzzy
|
1568 |
-
#| msgid "Total booking limits"
|
1569 |
-
msgid "Total user booking limits"
|
1570 |
-
msgstr "Gesamt Verfügbare Plätze"
|
1571 |
-
|
1572 |
-
#: app/features/events.php:1614 app/features/events.php:2107
|
1573 |
-
#: app/features/events.php:2239 app/features/events.php:2427
|
1574 |
-
msgid "Inherit from global options"
|
1575 |
-
msgstr "Aus den globalen Einstellungen übernehmen"
|
1576 |
-
|
1577 |
-
#: app/features/events.php:1617
|
1578 |
-
msgid "12"
|
1579 |
-
msgstr ""
|
1580 |
-
|
1581 |
-
#: app/features/events.php:1638 app/libraries/book.php:60
|
1582 |
-
#: app/libraries/main.php:4914 app/modules/booking/steps/tickets.php:40
|
1583 |
-
msgid "Tickets"
|
1584 |
-
msgstr "Tickets"
|
1585 |
-
|
1586 |
-
#: app/features/events.php:1641
|
1587 |
-
msgid ""
|
1588 |
-
"You're translating an event so MEC will use the original event for tickets "
|
1589 |
-
"and booking. You can only translate the ticket name and description. Please "
|
1590 |
-
"define exact tickets that you defined in the original event here."
|
1591 |
-
msgstr ""
|
1592 |
-
|
1593 |
-
#: app/features/events.php:1660 app/features/events.php:1916
|
1594 |
-
msgid "Ticket Name"
|
1595 |
-
msgstr "Ticket Name"
|
1596 |
-
|
1597 |
-
#: app/features/events.php:1665 app/features/events.php:1920
|
1598 |
-
#: app/features/events.php:3427 app/features/events.php:3469
|
1599 |
-
#: app/features/ix.php:2743 app/features/ix.php:2784
|
1600 |
-
msgid "Start Time"
|
1601 |
-
msgstr "Uhrzeit des Beginns"
|
1602 |
-
|
1603 |
-
#: app/features/events.php:1724 app/features/events.php:1950
|
1604 |
-
#: app/features/events.php:3427 app/features/events.php:3469
|
1605 |
-
#: app/features/ix.php:2743 app/features/ix.php:2784
|
1606 |
-
msgid "End Time"
|
1607 |
-
msgstr "Uhrzeit Ende"
|
1608 |
-
|
1609 |
-
#: app/features/events.php:1797 app/features/events.php:2000
|
1610 |
-
msgid "Insert 0 for free ticket. Only numbers please."
|
1611 |
-
msgstr "Bitte 0 für kostenloses Ticket eingeben. Bitte nur Zahlen eintragen"
|
1612 |
-
|
1613 |
-
#: app/features/events.php:1806 app/features/events.php:1811
|
1614 |
-
#: app/features/events.php:2009 app/features/events.php:2012
|
1615 |
-
msgid "Price Label"
|
1616 |
-
msgstr "Preisschild"
|
1617 |
-
|
1618 |
-
#: app/features/events.php:1812 app/features/events.php:2013
|
1619 |
-
msgid "For showing on website. e.g. $15"
|
1620 |
-
msgstr "Um das auf der Webseite anzuzeigen zum Beispiel 15 €"
|
1621 |
-
|
1622 |
-
#: app/features/events.php:1822 app/features/events.php:2023
|
1623 |
-
msgid "Available Tickets"
|
1624 |
-
msgstr "Verfügbare Tickets: %s "
|
1625 |
-
|
1626 |
-
#: app/features/events.php:1843 app/features/events.php:2036
|
1627 |
-
#, fuzzy
|
1628 |
-
#| msgid "Price Label"
|
1629 |
-
msgid "Price per Date"
|
1630 |
-
msgstr "Preisschild"
|
1631 |
-
|
1632 |
-
#: app/features/events.php:1874 app/features/events.php:1900
|
1633 |
-
#: app/features/events.php:2057 app/features/labels.php:60
|
1634 |
-
#: app/features/mec/meta_boxes/display_options.php:833
|
1635 |
-
#: app/features/mec/meta_boxes/search_form.php:66
|
1636 |
-
#: app/features/mec/meta_boxes/search_form.php:128
|
1637 |
-
#: app/features/mec/meta_boxes/search_form.php:190
|
1638 |
-
#: app/features/mec/meta_boxes/search_form.php:251
|
1639 |
-
#: app/features/mec/meta_boxes/search_form.php:312
|
1640 |
-
#: app/features/mec/meta_boxes/search_form.php:373
|
1641 |
-
#: app/features/mec/meta_boxes/search_form.php:434
|
1642 |
-
#: app/features/mec/meta_boxes/search_form.php:488
|
1643 |
-
#: app/features/mec/meta_boxes/search_form.php:549
|
1644 |
-
#: app/features/mec/meta_boxes/search_form.php:610
|
1645 |
-
#: app/features/mec/settings.php:751 app/features/mec/single.php:222
|
1646 |
-
#: app/libraries/skins.php:938
|
1647 |
-
msgid "Label"
|
1648 |
-
msgstr "Label"
|
1649 |
-
|
1650 |
-
#: app/features/events.php:2095
|
1651 |
-
msgid "Fees"
|
1652 |
-
msgstr "Gebühren"
|
1653 |
-
|
1654 |
-
#: app/features/events.php:2132 app/features/events.php:2170
|
1655 |
-
#: app/features/mec/booking.php:285 app/features/mec/booking.php:314
|
1656 |
-
msgid "Fee Title"
|
1657 |
-
msgstr "Gebühren Name"
|
1658 |
-
|
1659 |
-
#: app/features/events.php:2143 app/features/events.php:2179
|
1660 |
-
#: app/features/mec/booking.php:293 app/features/mec/booking.php:322
|
1661 |
-
msgid ""
|
1662 |
-
"Fee amount, considered as fixed amount if you set the type to amount "
|
1663 |
-
"otherwise considered as percentage"
|
1664 |
-
msgstr ""
|
1665 |
-
"Gebührenbetrag, gilt als fester Betrag, wenn Sie die Art auf Betrag setzen, "
|
1666 |
-
"sonst als Prozentsatz"
|
1667 |
-
|
1668 |
-
#: app/features/events.php:2153 app/features/events.php:2189
|
1669 |
-
#: app/features/mec/booking.php:301 app/features/mec/booking.php:330
|
1670 |
-
msgid "Amount (Per Ticket)"
|
1671 |
-
msgstr "Betrag (pro Ticket)"
|
1672 |
-
|
1673 |
-
#: app/features/events.php:2154 app/features/events.php:2190
|
1674 |
-
#: app/features/mec/booking.php:302 app/features/mec/booking.php:331
|
1675 |
-
msgid "Amount (Per Booking)"
|
1676 |
-
msgstr "Betrag (pro Buchung)"
|
1677 |
-
|
1678 |
-
#: app/features/events.php:2227 app/features/mec/settings.php:648
|
1679 |
-
msgid "Ticket Variations / Options"
|
1680 |
-
msgstr ""
|
1681 |
-
|
1682 |
-
#: app/features/events.php:2277 app/features/events.php:2322
|
1683 |
-
#: app/features/mec/booking.php:370 app/features/mec/booking.php:402
|
1684 |
-
#, fuzzy
|
1685 |
-
#| msgid "Option"
|
1686 |
-
msgid "Option Price"
|
1687 |
-
msgstr "Option"
|
1688 |
-
|
1689 |
-
#: app/features/events.php:2287 app/features/events.php:2291
|
1690 |
-
#: app/features/events.php:2331 app/features/events.php:2334
|
1691 |
-
#: app/features/mec/booking.php:376 app/features/mec/booking.php:379
|
1692 |
-
#: app/features/mec/booking.php:408 app/features/mec/booking.php:411
|
1693 |
-
#, fuzzy
|
1694 |
-
#| msgid "Amount (Per Ticket)"
|
1695 |
-
msgid "Maximum Per Ticket"
|
1696 |
-
msgstr "Betrag (pro Ticket)"
|
1697 |
-
|
1698 |
-
#: app/features/events.php:2292 app/features/events.php:2335
|
1699 |
-
#: app/features/mec/booking.php:380 app/features/mec/booking.php:412
|
1700 |
-
msgid "Maximum Per Ticket. Leave it blank for unlimited."
|
1701 |
-
msgstr ""
|
1702 |
-
|
1703 |
-
#: app/features/events.php:2481 app/features/mec/booking.php:474
|
1704 |
-
#: app/libraries/main.php:2530
|
1705 |
-
#, fuzzy
|
1706 |
-
#| msgid "Name"
|
1707 |
-
msgid "MEC Name"
|
1708 |
-
msgstr "Name"
|
1709 |
-
|
1710 |
-
#: app/features/events.php:2482 app/features/mec/booking.php:475
|
1711 |
-
#: app/libraries/main.php:2559
|
1712 |
-
#, fuzzy
|
1713 |
-
#| msgid "Email"
|
1714 |
-
msgid "MEC Email"
|
1715 |
-
msgstr "Email"
|
1716 |
-
|
1717 |
-
#: app/features/events.php:2483 app/features/mec/booking.php:476
|
1718 |
-
#: app/libraries/main.php:2500
|
1719 |
-
msgid "Text"
|
1720 |
-
msgstr "Text"
|
1721 |
-
|
1722 |
-
#: app/features/events.php:2486 app/features/mec/booking.php:479
|
1723 |
-
#: app/features/organizers.php:103 app/features/organizers.php:148
|
1724 |
-
#: app/features/speakers.php:116 app/features/speakers.php:181
|
1725 |
-
#: app/features/speakers.php:254 app/libraries/main.php:2676
|
1726 |
-
msgid "Tel"
|
1727 |
-
msgstr "Tel"
|
1728 |
-
|
1729 |
-
#: app/features/events.php:2487 app/features/mec/booking.php:480
|
1730 |
-
#: app/libraries/main.php:2618
|
1731 |
-
msgid "File"
|
1732 |
-
msgstr ""
|
1733 |
-
|
1734 |
-
#: app/features/events.php:2488 app/features/mec/booking.php:481
|
1735 |
-
#: app/libraries/main.php:2705
|
1736 |
-
msgid "Textarea"
|
1737 |
-
msgstr "Textbereich"
|
1738 |
-
|
1739 |
-
#: app/features/events.php:2489 app/features/mec/booking.php:482
|
1740 |
-
#: app/libraries/main.php:2758
|
1741 |
-
msgid "Checkboxes"
|
1742 |
-
msgstr "Checkboxes"
|
1743 |
-
|
1744 |
-
#: app/features/events.php:2490 app/features/mec/booking.php:483
|
1745 |
-
#: app/libraries/main.php:2802
|
1746 |
-
msgid "Radio Buttons"
|
1747 |
-
msgstr "Radio Buttons"
|
1748 |
-
|
1749 |
-
#: app/features/events.php:2491 app/features/mec/booking.php:484
|
1750 |
-
#: app/features/mec/meta_boxes/search_form.php:34
|
1751 |
-
#: app/features/mec/meta_boxes/search_form.php:41
|
1752 |
-
#: app/features/mec/meta_boxes/search_form.php:48
|
1753 |
-
#: app/features/mec/meta_boxes/search_form.php:55
|
1754 |
-
#: app/features/mec/meta_boxes/search_form.php:62
|
1755 |
-
#: app/features/mec/meta_boxes/search_form.php:69
|
1756 |
-
#: app/features/mec/meta_boxes/search_form.php:76
|
1757 |
-
#: app/features/mec/meta_boxes/search_form.php:96
|
1758 |
-
#: app/features/mec/meta_boxes/search_form.php:103
|
1759 |
-
#: app/features/mec/meta_boxes/search_form.php:110
|
1760 |
-
#: app/features/mec/meta_boxes/search_form.php:117
|
1761 |
-
#: app/features/mec/meta_boxes/search_form.php:124
|
1762 |
-
#: app/features/mec/meta_boxes/search_form.php:131
|
1763 |
-
#: app/features/mec/meta_boxes/search_form.php:138
|
1764 |
-
#: app/features/mec/meta_boxes/search_form.php:158
|
1765 |
-
#: app/features/mec/meta_boxes/search_form.php:165
|
1766 |
-
#: app/features/mec/meta_boxes/search_form.php:172
|
1767 |
-
#: app/features/mec/meta_boxes/search_form.php:179
|
1768 |
-
#: app/features/mec/meta_boxes/search_form.php:186
|
1769 |
-
#: app/features/mec/meta_boxes/search_form.php:193
|
1770 |
-
#: app/features/mec/meta_boxes/search_form.php:200
|
1771 |
-
#: app/features/mec/meta_boxes/search_form.php:219
|
1772 |
-
#: app/features/mec/meta_boxes/search_form.php:226
|
1773 |
-
#: app/features/mec/meta_boxes/search_form.php:233
|
1774 |
-
#: app/features/mec/meta_boxes/search_form.php:240
|
1775 |
-
#: app/features/mec/meta_boxes/search_form.php:247
|
1776 |
-
#: app/features/mec/meta_boxes/search_form.php:254
|
1777 |
-
#: app/features/mec/meta_boxes/search_form.php:261
|
1778 |
-
#: app/features/mec/meta_boxes/search_form.php:280
|
1779 |
-
#: app/features/mec/meta_boxes/search_form.php:287
|
1780 |
-
#: app/features/mec/meta_boxes/search_form.php:294
|
1781 |
-
#: app/features/mec/meta_boxes/search_form.php:301
|
1782 |
-
#: app/features/mec/meta_boxes/search_form.php:308
|
1783 |
-
#: app/features/mec/meta_boxes/search_form.php:315
|
1784 |
-
#: app/features/mec/meta_boxes/search_form.php:322
|
1785 |
-
#: app/features/mec/meta_boxes/search_form.php:341
|
1786 |
-
#: app/features/mec/meta_boxes/search_form.php:348
|
1787 |
-
#: app/features/mec/meta_boxes/search_form.php:355
|
1788 |
-
#: app/features/mec/meta_boxes/search_form.php:362
|
1789 |
-
#: app/features/mec/meta_boxes/search_form.php:369
|
1790 |
-
#: app/features/mec/meta_boxes/search_form.php:376
|
1791 |
-
#: app/features/mec/meta_boxes/search_form.php:383
|
1792 |
-
#: app/features/mec/meta_boxes/search_form.php:402
|
1793 |
-
#: app/features/mec/meta_boxes/search_form.php:409
|
1794 |
-
#: app/features/mec/meta_boxes/search_form.php:416
|
1795 |
-
#: app/features/mec/meta_boxes/search_form.php:423
|
1796 |
-
#: app/features/mec/meta_boxes/search_form.php:430
|
1797 |
-
#: app/features/mec/meta_boxes/search_form.php:437
|
1798 |
-
#: app/features/mec/meta_boxes/search_form.php:456
|
1799 |
-
#: app/features/mec/meta_boxes/search_form.php:463
|
1800 |
-
#: app/features/mec/meta_boxes/search_form.php:470
|
1801 |
-
#: app/features/mec/meta_boxes/search_form.php:477
|
1802 |
-
#: app/features/mec/meta_boxes/search_form.php:484
|
1803 |
-
#: app/features/mec/meta_boxes/search_form.php:491
|
1804 |
-
#: app/features/mec/meta_boxes/search_form.php:498
|
1805 |
-
#: app/features/mec/meta_boxes/search_form.php:517
|
1806 |
-
#: app/features/mec/meta_boxes/search_form.php:524
|
1807 |
-
#: app/features/mec/meta_boxes/search_form.php:531
|
1808 |
-
#: app/features/mec/meta_boxes/search_form.php:538
|
1809 |
-
#: app/features/mec/meta_boxes/search_form.php:545
|
1810 |
-
#: app/features/mec/meta_boxes/search_form.php:552
|
1811 |
-
#: app/features/mec/meta_boxes/search_form.php:559
|
1812 |
-
#: app/features/mec/meta_boxes/search_form.php:578
|
1813 |
-
#: app/features/mec/meta_boxes/search_form.php:585
|
1814 |
-
#: app/features/mec/meta_boxes/search_form.php:592
|
1815 |
-
#: app/features/mec/meta_boxes/search_form.php:599
|
1816 |
-
#: app/features/mec/meta_boxes/search_form.php:606
|
1817 |
-
#: app/features/mec/meta_boxes/search_form.php:613
|
1818 |
-
#: app/features/mec/meta_boxes/search_form.php:620 app/libraries/main.php:2846
|
1819 |
-
msgid "Dropdown"
|
1820 |
-
msgstr "Dropdown"
|
1821 |
-
|
1822 |
-
#: app/features/events.php:2492 app/features/mec/booking.php:485
|
1823 |
-
#: app/libraries/main.php:2893
|
1824 |
-
msgid "Agreement"
|
1825 |
-
msgstr "Zustimmung"
|
1826 |
-
|
1827 |
-
#: app/features/events.php:2493 app/features/mec/booking.php:486
|
1828 |
-
#: app/libraries/main.php:2734
|
1829 |
-
msgid "Paragraph"
|
1830 |
-
msgstr "Absatz"
|
1831 |
-
|
1832 |
-
#: app/features/events.php:3154 app/features/events.php:3171
|
1833 |
-
#: app/features/events.php:3188 app/features/events.php:3205
|
1834 |
-
#, php-format
|
1835 |
-
msgid "Show all %s"
|
1836 |
-
msgstr "Zeige alle %s"
|
1837 |
-
|
1838 |
-
#: app/features/events.php:3154
|
1839 |
-
msgid "labels"
|
1840 |
-
msgstr "Labels + Eventstatus"
|
1841 |
-
|
1842 |
-
#: app/features/events.php:3171
|
1843 |
-
msgid "locations"
|
1844 |
-
msgstr "Orte"
|
1845 |
-
|
1846 |
-
#: app/features/events.php:3188
|
1847 |
-
msgid "organizers"
|
1848 |
-
msgstr "Veranstalter"
|
1849 |
-
|
1850 |
-
#: app/features/events.php:3235 app/features/events.php:3427
|
1851 |
-
#: app/features/events.php:3469 app/features/ix.php:2743
|
1852 |
-
#: app/features/ix.php:2784 app/features/locations.php:58
|
1853 |
-
#: app/features/locations.php:230 app/features/locations.php:287
|
1854 |
-
#: app/features/locations.php:289 app/features/locations.php:298
|
1855 |
-
#: app/features/mec/meta_boxes/display_options.php:834
|
1856 |
-
#: app/features/mec/meta_boxes/search_form.php:38
|
1857 |
-
#: app/features/mec/meta_boxes/search_form.php:100
|
1858 |
-
#: app/features/mec/meta_boxes/search_form.php:162
|
1859 |
-
#: app/features/mec/meta_boxes/search_form.php:223
|
1860 |
-
#: app/features/mec/meta_boxes/search_form.php:284
|
1861 |
-
#: app/features/mec/meta_boxes/search_form.php:345
|
1862 |
-
#: app/features/mec/meta_boxes/search_form.php:406
|
1863 |
-
#: app/features/mec/meta_boxes/search_form.php:460
|
1864 |
-
#: app/features/mec/meta_boxes/search_form.php:521
|
1865 |
-
#: app/features/mec/meta_boxes/search_form.php:582
|
1866 |
-
#: app/features/mec/settings.php:725 app/features/mec/single.php:212
|
1867 |
-
#: app/libraries/main.php:2039 app/libraries/main.php:4883
|
1868 |
-
#: app/libraries/skins.php:834 app/skins/single.php:486
|
1869 |
-
#: app/skins/single.php:907 app/skins/single/default.php:169
|
1870 |
-
#: app/skins/single/default.php:381 app/skins/single/m1.php:155
|
1871 |
-
#: app/skins/single/m2.php:87 app/skins/single/modern.php:94
|
1872 |
-
msgid "Location"
|
1873 |
-
msgstr "Ort"
|
1874 |
-
|
1875 |
-
#: app/features/events.php:3236 app/features/events.php:3427
|
1876 |
-
#: app/features/events.php:3469 app/features/ix.php:2743
|
1877 |
-
#: app/features/ix.php:2784 app/features/mec/meta_boxes/display_options.php:835
|
1878 |
-
#: app/features/mec/meta_boxes/search_form.php:45
|
1879 |
-
#: app/features/mec/meta_boxes/search_form.php:107
|
1880 |
-
#: app/features/mec/meta_boxes/search_form.php:169
|
1881 |
-
#: app/features/mec/meta_boxes/search_form.php:230
|
1882 |
-
#: app/features/mec/meta_boxes/search_form.php:291
|
1883 |
-
#: app/features/mec/meta_boxes/search_form.php:352
|
1884 |
-
#: app/features/mec/meta_boxes/search_form.php:413
|
1885 |
-
#: app/features/mec/meta_boxes/search_form.php:467
|
1886 |
-
#: app/features/mec/meta_boxes/search_form.php:528
|
1887 |
-
#: app/features/mec/meta_boxes/search_form.php:589
|
1888 |
-
#: app/features/mec/settings.php:731 app/features/mec/single.php:208
|
1889 |
-
#: app/features/organizers.php:58 app/features/organizers.php:204
|
1890 |
-
#: app/features/organizers.php:260 app/features/organizers.php:262
|
1891 |
-
#: app/features/organizers.php:271 app/libraries/main.php:4885
|
1892 |
-
#: app/libraries/skins.php:860 app/skins/single.php:795
|
1893 |
-
#: app/skins/single/default.php:210 app/skins/single/default.php:422
|
1894 |
-
#: app/skins/single/m1.php:90 app/skins/single/m2.php:22
|
1895 |
-
#: app/skins/single/modern.php:31
|
1896 |
-
msgid "Organizer"
|
1897 |
-
msgstr "Veranstalter"
|
1898 |
-
|
1899 |
-
#: app/features/events.php:3240
|
1900 |
-
msgid "Repeat"
|
1901 |
-
msgstr "Wiederholen"
|
1902 |
-
|
1903 |
-
#: app/features/events.php:3241
|
1904 |
-
msgid "Author"
|
1905 |
-
msgstr "Autor"
|
1906 |
-
|
1907 |
-
#: app/features/events.php:3362 app/features/events.php:3363
|
1908 |
-
msgid "iCal Export"
|
1909 |
-
msgstr "ical Export"
|
1910 |
-
|
1911 |
-
#: app/features/events.php:3371 app/features/events.php:3372
|
1912 |
-
msgid "XML Export"
|
1913 |
-
msgstr "XML Export"
|
1914 |
-
|
1915 |
-
#: app/features/events.php:3374 app/features/events.php:3375
|
1916 |
-
msgid "JSON Export"
|
1917 |
-
msgstr "JSON Export"
|
1918 |
-
|
1919 |
-
#: app/features/events.php:3377 app/features/events.php:3378
|
1920 |
-
#: app/features/events.php:3560
|
1921 |
-
msgid "Duplicate"
|
1922 |
-
msgstr "Kopie"
|
1923 |
-
|
1924 |
-
#: app/features/events.php:3427 app/features/events.php:3469
|
1925 |
-
#: app/features/ix.php:2743 app/features/ix.php:2784
|
1926 |
-
msgid "Link"
|
1927 |
-
msgstr "Link"
|
1928 |
-
|
1929 |
-
#: app/features/events.php:3427 app/features/events.php:3469
|
1930 |
-
#, php-format
|
1931 |
-
msgid "%s Tel"
|
1932 |
-
msgstr "%s Tel"
|
1933 |
-
|
1934 |
-
#: app/features/events.php:3427 app/features/events.php:3469
|
1935 |
-
#, php-format
|
1936 |
-
msgid "%s Email"
|
1937 |
-
msgstr "%s Email"
|
1938 |
-
|
1939 |
-
#: app/features/fes.php:88
|
1940 |
-
#, php-format
|
1941 |
-
msgid "Please %s/%s in order to submit new events."
|
1942 |
-
msgstr "Um neue Veranstaltungen einzugeben, bitte %s/%s"
|
1943 |
-
|
1944 |
-
#: app/features/fes.php:88 app/features/fes.php:166 app/features/profile.php:74
|
1945 |
-
msgid "Login"
|
1946 |
-
msgstr "Login"
|
1947 |
-
|
1948 |
-
#: app/features/fes.php:88 app/features/fes.php:166 app/features/profile.php:74
|
1949 |
-
msgid "Register"
|
1950 |
-
msgstr "Anmelden"
|
1951 |
-
|
1952 |
-
#: app/features/fes.php:101
|
1953 |
-
msgid "Sorry! Selected post is not an event."
|
1954 |
-
msgstr ""
|
1955 |
-
"Entschuldigung! Beim ausgewählten Beitrag handelt es sich um keine "
|
1956 |
-
"Veranstaltung."
|
1957 |
-
|
1958 |
-
#: app/features/fes.php:112 app/features/fes.php:151
|
1959 |
-
msgid "Sorry! You don't have access to modify this event."
|
1960 |
-
msgstr ""
|
1961 |
-
"Entschuldigung! Sie haben keine Berechtigung zum Ändern dieser Veranstaltung"
|
1962 |
-
|
1963 |
-
#: app/features/fes.php:166
|
1964 |
-
#, php-format
|
1965 |
-
msgid "Please %s/%s in order to manage events."
|
1966 |
-
msgstr "Bitte %s/%s um Veranstaltungen managen zu können."
|
1967 |
-
|
1968 |
-
#: app/features/fes.php:196
|
1969 |
-
msgid "The event removed!"
|
1970 |
-
msgstr "Die Veranstaltung wurde entfernt."
|
1971 |
-
|
1972 |
-
#: app/features/fes.php:447
|
1973 |
-
msgid "The image is uploaded!"
|
1974 |
-
msgstr "Das Bild ist hochgeladen"
|
1975 |
-
|
1976 |
-
#: app/features/fes.php:473
|
1977 |
-
msgid "Captcha is invalid! Please try again."
|
1978 |
-
msgstr "Das eingegebene Captcha ist ungültig! Bitte versuchen Sie es erneut."
|
1979 |
-
|
1980 |
-
#: app/features/fes.php:501
|
1981 |
-
msgid "Please fill event title field!"
|
1982 |
-
msgstr "Bitte füllen Sie das Event Titelfeld"
|
1983 |
-
|
1984 |
-
#: app/features/fes.php:1112
|
1985 |
-
msgid "The event submitted. It will publish as soon as possible."
|
1986 |
-
msgstr ""
|
1987 |
-
"Die Veranstaltung wurde übermittelt. Sie wird sobald wie möglich "
|
1988 |
-
"veröffentlicht werden."
|
1989 |
-
|
1990 |
-
#: app/features/fes.php:1113
|
1991 |
-
msgid "The event published."
|
1992 |
-
msgstr "Die Veranstaltung wurde veröffentlicht."
|
1993 |
-
|
1994 |
-
#: app/features/fes/form.php:159
|
1995 |
-
#, fuzzy
|
1996 |
-
#| msgid "Go back to events list."
|
1997 |
-
msgid "Go back to events list"
|
1998 |
-
msgstr "Zurück zur Liste der Veranstaltungen"
|
1999 |
-
|
2000 |
-
#: app/features/fes/form.php:369
|
2001 |
-
msgid "Add certain days to event occurrence dates."
|
2002 |
-
msgstr "Fügen Sie bestimmte Tage zu den Ereignisdaten hinzu. "
|
2003 |
-
|
2004 |
-
#: app/features/fes/form.php:644
|
2005 |
-
msgid "Note to reviewer"
|
2006 |
-
msgstr "Zusätzliche Anmerkungen zum Event "
|
2007 |
-
|
2008 |
-
#: app/features/fes/form.php:662
|
2009 |
-
msgid "User Data"
|
2010 |
-
msgstr "Benutzerdaten"
|
2011 |
-
|
2012 |
-
#: app/features/fes/form.php:665
|
2013 |
-
msgid "eg. yourname@gmail.com"
|
2014 |
-
msgstr "z.B. IhrName@ihrewebseite.de"
|
2015 |
-
|
2016 |
-
#: app/features/fes/form.php:669 app/features/organizers.php:280
|
2017 |
-
msgid "eg. John Smith"
|
2018 |
-
msgstr "z.B. Max Mustermann"
|
2019 |
-
|
2020 |
-
#: app/features/fes/form.php:687
|
2021 |
-
msgid ""
|
2022 |
-
"If you fill it, it will be replaced instead of default event page link. "
|
2023 |
-
"Insert full link including http(s)://"
|
2024 |
-
msgstr ""
|
2025 |
-
"Wenn Sie dies ausfüllen, wird anstatt des Standard-Event-Seitenlinks, "
|
2026 |
-
"dieser durch einen neuen link ersetzt werden. Vollständigen Link einfügen, "
|
2027 |
-
"einschließlich http(s)://"
|
2028 |
-
|
2029 |
-
#: app/features/fes/form.php:723 app/features/mec/settings.php:582
|
2030 |
-
msgid "Featured Image"
|
2031 |
-
msgstr "Ausgewähltes Bild"
|
2032 |
-
|
2033 |
-
#: app/features/fes/form.php:728
|
2034 |
-
msgid "Remove Image"
|
2035 |
-
msgstr "Bild entfernen"
|
2036 |
-
|
2037 |
-
#: app/features/fes/form.php:770 app/features/labels.php:61
|
2038 |
-
#: app/features/labels.php:221 app/features/mec.php:337
|
2039 |
-
#: app/features/mec/meta_boxes/filter.php:132 app/libraries/main.php:4880
|
2040 |
-
#: app/skins/single.php:685 app/skins/single/default.php:148
|
2041 |
-
#: app/skins/single/default.php:360 app/skins/single/m1.php:64
|
2042 |
-
#: app/skins/single/modern.php:214
|
2043 |
-
msgid "Labels"
|
2044 |
-
msgstr "Labels"
|
2045 |
-
|
2046 |
-
#: app/features/fes/form.php:816 app/features/mec.php:335
|
2047 |
-
#: app/features/mec/meta_boxes/filter.php:149
|
2048 |
-
msgid "Tags"
|
2049 |
-
msgstr "Schlagworte"
|
2050 |
-
|
2051 |
-
#: app/features/fes/form.php:818
|
2052 |
-
msgid "Insert your desired tags, comma separated."
|
2053 |
-
msgstr ""
|
2054 |
-
"Geben Sie die gewünschten Tags (Schlagworte) durch ein Komma separiert ein"
|
2055 |
-
|
2056 |
-
#: app/features/fes/form.php:840
|
2057 |
-
#, fuzzy
|
2058 |
-
#| msgid "No Search Options"
|
2059 |
-
msgid "Speakers Names"
|
2060 |
-
msgstr "Keine Suchoptionen"
|
2061 |
-
|
2062 |
-
#: app/features/fes/form.php:841
|
2063 |
-
msgid "Separate names with commas Similar Justin, Cris"
|
2064 |
-
msgstr ""
|
2065 |
-
|
2066 |
-
#: app/features/fes/form.php:859 app/features/gateways.php:1802
|
2067 |
-
msgid "Submit"
|
2068 |
-
msgstr "Buchung abschließen"
|
2069 |
-
|
2070 |
-
#: app/features/fes/list.php:21
|
2071 |
-
msgid "Click again to remove!"
|
2072 |
-
msgstr "Zum Entfernen nochmals klicken"
|
2073 |
-
|
2074 |
-
#: app/features/fes/list.php:64 app/features/fes/list.php:179
|
2075 |
-
msgid "Add new"
|
2076 |
-
msgstr "Neu hinzufügen"
|
2077 |
-
|
2078 |
-
#: app/features/fes/list.php:162
|
2079 |
-
#, fuzzy
|
2080 |
-
#| msgid "Discount is not valid for this event!"
|
2081 |
-
msgid "Event is not repeating. Not exist dates for this event!"
|
2082 |
-
msgstr "Rabatt ist für diese Veranstaltung nicht gültig!"
|
2083 |
-
|
2084 |
-
#: app/features/fes/list.php:179
|
2085 |
-
#, php-format
|
2086 |
-
msgid "No events found! %s"
|
2087 |
-
msgstr "Keine Veranstaltungen gefunden! %s"
|
2088 |
-
|
2089 |
-
#: app/features/gateways.php:84 app/features/gateways.php:367
|
2090 |
-
#: app/features/gateways.php:972 app/features/gateways.php:1823
|
2091 |
-
#: app/features/gateways.php:2593 app/features/gateways.php:2821
|
2092 |
-
msgid "Request is invalid!"
|
2093 |
-
msgstr "Die Anfrage ist ungültig!"
|
2094 |
-
|
2095 |
-
#: app/features/gateways.php:94 app/modules/booking/steps/message.php:7
|
2096 |
-
msgid "Thanks for your booking."
|
2097 |
-
msgstr "Vielen Dank für Ihre Buchung."
|
2098 |
-
|
2099 |
-
#: app/features/gateways.php:340 app/features/gateways.php:779
|
2100 |
-
msgid "Stripe"
|
2101 |
-
msgstr "Stripe"
|
2102 |
-
|
2103 |
-
#: app/features/gateways.php:417 app/features/gateways.php:1022
|
2104 |
-
#: app/features/gateways.php:1844 app/features/gateways.php:2179
|
2105 |
-
#: app/features/gateways.php:2614 app/features/gateways.php:2906
|
2106 |
-
#: app/features/gateways.php:3291
|
2107 |
-
msgid "There is no attendee for booking!"
|
2108 |
-
msgstr "Es gibt keinen Teilnehmer für die Buchung!"
|
2109 |
-
|
2110 |
-
#: app/features/gateways.php:474 app/features/gateways.php:1078
|
2111 |
-
#: app/features/gateways.php:1899 app/features/gateways.php:2280
|
2112 |
-
#: app/features/gateways.php:2683 app/features/gateways.php:2972
|
2113 |
-
#: app/features/gateways.php:3170 app/features/gateways.php:3342
|
2114 |
-
#: app/libraries/main.php:4905
|
2115 |
-
msgid ""
|
2116 |
-
"Thanks for your booking. Your tickets booked, booking verification might be "
|
2117 |
-
"needed, please check your email."
|
2118 |
-
msgstr ""
|
2119 |
-
"Vielen Dank für Ihre Buchung. Für die gebuchten Tickets ist ggf. eine "
|
2120 |
-
"Bestätigung durch Sie erforderlich. Bitte überprüfen Sie Ihre Emails."
|
2121 |
-
|
2122 |
-
#: app/features/gateways.php:501 app/features/gateways.php:1111
|
2123 |
-
msgid "Your payment needs to get confirmed!"
|
2124 |
-
msgstr ""
|
2125 |
-
|
2126 |
-
#: app/features/gateways.php:502 app/features/gateways.php:536
|
2127 |
-
#: app/features/gateways.php:1112 app/features/gateways.php:1162
|
2128 |
-
#, fuzzy
|
2129 |
-
#| msgid "Unknown"
|
2130 |
-
msgid "Unknown Error!"
|
2131 |
-
msgstr "Unbekannt"
|
2132 |
-
|
2133 |
-
#: app/features/gateways.php:512 app/features/gateways.php:1125
|
2134 |
-
#: app/features/gateways.php:1137
|
2135 |
-
#, php-format
|
2136 |
-
msgid "MEC Transaction ID: %s"
|
2137 |
-
msgstr "Transaktions-ID: %s"
|
2138 |
-
|
2139 |
-
#: app/features/gateways.php:641 app/features/gateways.php:696
|
2140 |
-
#: app/features/gateways.php:1326 app/features/gateways.php:1381
|
2141 |
-
#: app/features/gateways.php:1776 app/features/gateways.php:2110
|
2142 |
-
#: app/features/gateways.php:2499 app/features/gateways.php:3034
|
2143 |
-
#: app/libraries/book.php:642 app/modules/booking/default.php:305
|
2144 |
-
#: app/modules/booking/default.php:403
|
2145 |
-
msgid "Download Invoice"
|
2146 |
-
msgstr "Download Rechnung"
|
2147 |
-
|
2148 |
-
#: app/features/gateways.php:746 app/features/gateways.php:1431
|
2149 |
-
msgid "Credit or debit card"
|
2150 |
-
msgstr ""
|
2151 |
-
|
2152 |
-
#: app/features/gateways.php:758 app/features/gateways.php:1443
|
2153 |
-
#: app/features/gateways.php:2156 app/features/gateways.php:2572
|
2154 |
-
msgid "Pay"
|
2155 |
-
msgstr "Bezahlen"
|
2156 |
-
|
2157 |
-
#: app/features/gateways.php:801 app/features/gateways.php:807
|
2158 |
-
#: app/features/gateways.php:1485 app/features/gateways.php:1490
|
2159 |
-
#: app/features/gateways.php:1503 app/features/gateways.php:1725
|
2160 |
-
#: app/features/gateways.php:1731 app/features/gateways.php:1999
|
2161 |
-
#: app/features/gateways.php:2005 app/features/gateways.php:2411
|
2162 |
-
#: app/features/gateways.php:2417 app/features/gateways.php:3116
|
2163 |
-
#: app/features/gateways.php:3122
|
2164 |
-
msgid "Comment"
|
2165 |
-
msgstr "Kommentar"
|
2166 |
-
|
2167 |
-
#: app/features/gateways.php:808 app/features/gateways.php:1491
|
2168 |
-
#: app/features/gateways.php:1504 app/features/gateways.php:1732
|
2169 |
-
#: app/features/gateways.php:2006 app/features/gateways.php:2418
|
2170 |
-
#: app/features/gateways.php:3123
|
2171 |
-
msgid "HTML allowed."
|
2172 |
-
msgstr "HTML erlaubt"
|
2173 |
-
|
2174 |
-
#: app/features/gateways.php:818 app/features/gateways.php:849
|
2175 |
-
#: app/features/gateways.php:1517 app/features/mec/settings.php:500
|
2176 |
-
msgid "Secret Key"
|
2177 |
-
msgstr "Geheimschlüssel"
|
2178 |
-
|
2179 |
-
#: app/features/gateways.php:827 app/features/gateways.php:855
|
2180 |
-
#: app/features/gateways.php:1523
|
2181 |
-
msgid "Publishable Key"
|
2182 |
-
msgstr "publizierbarer Schlüssel"
|
2183 |
-
|
2184 |
-
#: app/features/gateways.php:899 app/features/gateways.php:1464
|
2185 |
-
#, fuzzy
|
2186 |
-
#| msgid "Stripe"
|
2187 |
-
msgid "Stripe Connect"
|
2188 |
-
msgstr "Stripe"
|
2189 |
-
|
2190 |
-
#: app/features/gateways.php:1473
|
2191 |
-
msgid ""
|
2192 |
-
"Using this gateway, booking fee pays to the organizer account directly but "
|
2193 |
-
"you can get your fee in your Stripe account."
|
2194 |
-
msgstr ""
|
2195 |
-
|
2196 |
-
#: app/features/gateways.php:1474
|
2197 |
-
msgid ""
|
2198 |
-
"If organizer connect his / her account then it will be the only enabled "
|
2199 |
-
"gateway for organizer events even if other gateways are enabled. Organizer "
|
2200 |
-
"Payment Module must be enabled to use this!"
|
2201 |
-
msgstr ""
|
2202 |
-
|
2203 |
-
#: app/features/gateways.php:1475
|
2204 |
-
#, fuzzy, php-format
|
2205 |
-
#| msgid "You should set %s as redirect page in Google App Console."
|
2206 |
-
msgid "You should set %s as Redirect URI in your stripe dashboard."
|
2207 |
-
msgstr "Sie sollten% s als Redirect-Seite in der Google App Console setzen."
|
2208 |
-
|
2209 |
-
#: app/features/gateways.php:1498
|
2210 |
-
#, fuzzy
|
2211 |
-
#| msgid "Event Organizer"
|
2212 |
-
msgid "Comment for Organizer"
|
2213 |
-
msgstr "Veranstaltungsmanager"
|
2214 |
-
|
2215 |
-
#: app/features/gateways.php:1511
|
2216 |
-
#, fuzzy
|
2217 |
-
#| msgid "App Client ID"
|
2218 |
-
msgid "Client ID"
|
2219 |
-
msgstr "App Client ID"
|
2220 |
-
|
2221 |
-
#: app/features/gateways.php:1529
|
2222 |
-
msgid "Your Fee"
|
2223 |
-
msgstr ""
|
2224 |
-
|
2225 |
-
#: app/features/gateways.php:1534
|
2226 |
-
#, fuzzy
|
2227 |
-
#| msgid "Select All"
|
2228 |
-
msgid "Fee Type"
|
2229 |
-
msgstr "Alles Auswählen"
|
2230 |
-
|
2231 |
-
#: app/features/gateways.php:1540
|
2232 |
-
#, fuzzy
|
2233 |
-
#| msgid "Percent"
|
2234 |
-
msgid "Per"
|
2235 |
-
msgstr "Prozent"
|
2236 |
-
|
2237 |
-
#: app/features/gateways.php:1547 app/features/gateways.php:1557
|
2238 |
-
#, fuzzy
|
2239 |
-
#| msgid "Get Directions"
|
2240 |
-
msgid "Redirection Page"
|
2241 |
-
msgstr "Wegbeschreibung"
|
2242 |
-
|
2243 |
-
#: app/features/gateways.php:1558
|
2244 |
-
msgid ""
|
2245 |
-
"Users will redirect to this page after connecting to your Stripe account. "
|
2246 |
-
"You can create a page to thank them. If you leave it empty then users will "
|
2247 |
-
"redirect to home page!"
|
2248 |
-
msgstr ""
|
2249 |
-
|
2250 |
-
#: app/features/gateways.php:1594
|
2251 |
-
msgid "Connect Your Account"
|
2252 |
-
msgstr ""
|
2253 |
-
|
2254 |
-
#: app/features/gateways.php:1598
|
2255 |
-
msgid ""
|
2256 |
-
"You're connected to our account successfully and you will receive payments "
|
2257 |
-
"in your stripe account directly after deducting the fees."
|
2258 |
-
msgstr ""
|
2259 |
-
|
2260 |
-
#: app/features/gateways.php:1641 app/features/gateways.php:2275
|
2261 |
-
#: app/features/gateways.php:3165
|
2262 |
-
msgid "Waiting for getting response from gateway."
|
2263 |
-
msgstr "Warte auf Antwort des Gateways."
|
2264 |
-
|
2265 |
-
#: app/features/gateways.php:1649
|
2266 |
-
msgid "User get connected sucessfully!"
|
2267 |
-
msgstr ""
|
2268 |
-
|
2269 |
-
#: app/features/gateways.php:1682 app/features/gateways.php:1703
|
2270 |
-
msgid "Pay Locally"
|
2271 |
-
msgstr "Vor Ort bezahlen"
|
2272 |
-
|
2273 |
-
#: app/features/gateways.php:1929 app/features/gateways.php:1977
|
2274 |
-
msgid "PayPal Express"
|
2275 |
-
msgstr "PayPal Express"
|
2276 |
-
|
2277 |
-
#: app/features/gateways.php:1948 app/features/gateways.php:1953
|
2278 |
-
#: app/features/gateways.php:2016 app/features/gateways.php:2023
|
2279 |
-
msgid "Business Account"
|
2280 |
-
msgstr "Kundenkonto"
|
2281 |
-
|
2282 |
-
#: app/features/gateways.php:1954 app/features/gateways.php:2024
|
2283 |
-
msgid "Normally PayPal Email."
|
2284 |
-
msgstr "Normale PayPal Email."
|
2285 |
-
|
2286 |
-
#: app/features/gateways.php:2034 app/features/gateways.php:2455
|
2287 |
-
msgid "Mode"
|
2288 |
-
msgstr "Modus"
|
2289 |
-
|
2290 |
-
#: app/features/gateways.php:2038 app/features/gateways.php:2459
|
2291 |
-
msgid "Live"
|
2292 |
-
msgstr "Live"
|
2293 |
-
|
2294 |
-
#: app/features/gateways.php:2039 app/features/gateways.php:2460
|
2295 |
-
msgid "Sandbox"
|
2296 |
-
msgstr "Sandbox"
|
2297 |
-
|
2298 |
-
#: app/features/gateways.php:2290 app/features/gateways.php:3177
|
2299 |
-
msgid "Payment was invalid! Booking failed."
|
2300 |
-
msgstr "Die Transaktion war ungültig. Die Buchung wurde nicht durchgeführt."
|
2301 |
-
|
2302 |
-
#: app/features/gateways.php:2322 app/features/gateways.php:2389
|
2303 |
-
msgid "PayPal Credit Card"
|
2304 |
-
msgstr "PayPal Kreditkarte"
|
2305 |
-
|
2306 |
-
#: app/features/gateways.php:2355 app/features/gateways.php:2428
|
2307 |
-
msgid "API Username"
|
2308 |
-
msgstr "API Nutzername"
|
2309 |
-
|
2310 |
-
#: app/features/gateways.php:2361 app/features/gateways.php:2437
|
2311 |
-
msgid "API Password"
|
2312 |
-
msgstr "API Passwort"
|
2313 |
-
|
2314 |
-
#: app/features/gateways.php:2367 app/features/gateways.php:2446
|
2315 |
-
msgid "API Signature"
|
2316 |
-
msgstr "API Signatur"
|
2317 |
-
|
2318 |
-
#: app/features/gateways.php:2526
|
2319 |
-
msgid "First name"
|
2320 |
-
msgstr "Vorname"
|
2321 |
-
|
2322 |
-
#: app/features/gateways.php:2530
|
2323 |
-
msgid "Last name"
|
2324 |
-
msgstr "Nachname"
|
2325 |
-
|
2326 |
-
#: app/features/gateways.php:2534
|
2327 |
-
msgid "Card Type"
|
2328 |
-
msgstr "Kartentyp"
|
2329 |
-
|
2330 |
-
#: app/features/gateways.php:2536
|
2331 |
-
msgid "Visa"
|
2332 |
-
msgstr "Visa"
|
2333 |
-
|
2334 |
-
#: app/features/gateways.php:2537
|
2335 |
-
msgid "MasterCard"
|
2336 |
-
msgstr "MasterCard"
|
2337 |
-
|
2338 |
-
#: app/features/gateways.php:2538
|
2339 |
-
msgid "Discover"
|
2340 |
-
msgstr "Discover"
|
2341 |
-
|
2342 |
-
#: app/features/gateways.php:2539
|
2343 |
-
msgid "American Express"
|
2344 |
-
msgstr "American Express"
|
2345 |
-
|
2346 |
-
#: app/features/gateways.php:2543
|
2347 |
-
msgid "CC Number"
|
2348 |
-
msgstr "Kartennummer"
|
2349 |
-
|
2350 |
-
#: app/features/gateways.php:2564
|
2351 |
-
msgid "CVV2"
|
2352 |
-
msgstr "Kartenprüfnummer (CVV)"
|
2353 |
-
|
2354 |
-
#: app/features/gateways.php:2628
|
2355 |
-
msgid "Payment is invalid."
|
2356 |
-
msgstr "Die Zahlung ist ungültig."
|
2357 |
-
|
2358 |
-
#: app/features/gateways.php:2797 app/features/gateways.php:3091
|
2359 |
-
msgid "Pay by WooCommerce"
|
2360 |
-
msgstr "Zahlung über WooCommerce"
|
2361 |
-
|
2362 |
-
#: app/features/gateways.php:2873
|
2363 |
-
#, php-format
|
2364 |
-
msgid "Booking fee for %s"
|
2365 |
-
msgstr "Buchungsgebühr für% s"
|
2366 |
-
|
2367 |
-
#: app/features/gateways.php:2887
|
2368 |
-
msgid "Your order is created. Please proceed with checkout."
|
2369 |
-
msgstr "Ihre Buchung ist erstellt. Bitte fortfahren mit checkout."
|
2370 |
-
|
2371 |
-
#: app/features/gateways.php:3067 app/features/gateways.php:3073
|
2372 |
-
#: app/modules/booking/steps/checkout.php:23
|
2373 |
-
msgid "Checkout"
|
2374 |
-
msgstr "Zur Kasse gehen"
|
2375 |
-
|
2376 |
-
#: app/features/gateways.php:3102
|
2377 |
-
msgid "WooCommerce must be installed and activated first."
|
2378 |
-
msgstr "WooCommerce muss installiert werden und erst aktiviert werden."
|
2379 |
-
|
2380 |
-
#: app/features/gateways.php:3133
|
2381 |
-
msgid "Automatically complete WC orders"
|
2382 |
-
msgstr "WC-Aufträge automatisch abschließen"
|
2383 |
-
|
2384 |
-
#: app/features/gateways.php:3137 app/features/mec/settings.php:98
|
2385 |
-
msgid "Enabled"
|
2386 |
-
msgstr "Aktiviert"
|
2387 |
-
|
2388 |
-
#: app/features/gateways.php:3138
|
2389 |
-
#: app/features/mec/meta_boxes/search_form.php:33
|
2390 |
-
#: app/features/mec/meta_boxes/search_form.php:40
|
2391 |
-
#: app/features/mec/meta_boxes/search_form.php:47
|
2392 |
-
#: app/features/mec/meta_boxes/search_form.php:54
|
2393 |
-
#: app/features/mec/meta_boxes/search_form.php:61
|
2394 |
-
#: app/features/mec/meta_boxes/search_form.php:68
|
2395 |
-
#: app/features/mec/meta_boxes/search_form.php:75
|
2396 |
-
#: app/features/mec/meta_boxes/search_form.php:82
|
2397 |
-
#: app/features/mec/meta_boxes/search_form.php:95
|
2398 |
-
#: app/features/mec/meta_boxes/search_form.php:102
|
2399 |
-
#: app/features/mec/meta_boxes/search_form.php:109
|
2400 |
-
#: app/features/mec/meta_boxes/search_form.php:116
|
2401 |
-
#: app/features/mec/meta_boxes/search_form.php:123
|
2402 |
-
#: app/features/mec/meta_boxes/search_form.php:130
|
2403 |
-
#: app/features/mec/meta_boxes/search_form.php:137
|
2404 |
-
#: app/features/mec/meta_boxes/search_form.php:144
|
2405 |
-
#: app/features/mec/meta_boxes/search_form.php:157
|
2406 |
-
#: app/features/mec/meta_boxes/search_form.php:164
|
2407 |
-
#: app/features/mec/meta_boxes/search_form.php:171
|
2408 |
-
#: app/features/mec/meta_boxes/search_form.php:178
|
2409 |
-
#: app/features/mec/meta_boxes/search_form.php:185
|
2410 |
-
#: app/features/mec/meta_boxes/search_form.php:192
|
2411 |
-
#: app/features/mec/meta_boxes/search_form.php:199
|
2412 |
-
#: app/features/mec/meta_boxes/search_form.php:206
|
2413 |
-
#: app/features/mec/meta_boxes/search_form.php:218
|
2414 |
-
#: app/features/mec/meta_boxes/search_form.php:225
|
2415 |
-
#: app/features/mec/meta_boxes/search_form.php:232
|
2416 |
-
#: app/features/mec/meta_boxes/search_form.php:239
|
2417 |
-
#: app/features/mec/meta_boxes/search_form.php:246
|
2418 |
-
#: app/features/mec/meta_boxes/search_form.php:253
|
2419 |
-
#: app/features/mec/meta_boxes/search_form.php:260
|
2420 |
-
#: app/features/mec/meta_boxes/search_form.php:267
|
2421 |
-
#: app/features/mec/meta_boxes/search_form.php:279
|
2422 |
-
#: app/features/mec/meta_boxes/search_form.php:286
|
2423 |
-
#: app/features/mec/meta_boxes/search_form.php:293
|
2424 |
-
#: app/features/mec/meta_boxes/search_form.php:300
|
2425 |
-
#: app/features/mec/meta_boxes/search_form.php:307
|
2426 |
-
#: app/features/mec/meta_boxes/search_form.php:314
|
2427 |
-
#: app/features/mec/meta_boxes/search_form.php:321
|
2428 |
-
#: app/features/mec/meta_boxes/search_form.php:328
|
2429 |
-
#: app/features/mec/meta_boxes/search_form.php:340
|
2430 |
-
#: app/features/mec/meta_boxes/search_form.php:347
|
2431 |
-
#: app/features/mec/meta_boxes/search_form.php:354
|
2432 |
-
#: app/features/mec/meta_boxes/search_form.php:361
|
2433 |
-
#: app/features/mec/meta_boxes/search_form.php:368
|
2434 |
-
#: app/features/mec/meta_boxes/search_form.php:375
|
2435 |
-
#: app/features/mec/meta_boxes/search_form.php:382
|
2436 |
-
#: app/features/mec/meta_boxes/search_form.php:389
|
2437 |
-
#: app/features/mec/meta_boxes/search_form.php:401
|
2438 |
-
#: app/features/mec/meta_boxes/search_form.php:408
|
2439 |
-
#: app/features/mec/meta_boxes/search_form.php:415
|
2440 |
-
#: app/features/mec/meta_boxes/search_form.php:422
|
2441 |
-
#: app/features/mec/meta_boxes/search_form.php:429
|
2442 |
-
#: app/features/mec/meta_boxes/search_form.php:436
|
2443 |
-
#: app/features/mec/meta_boxes/search_form.php:443
|
2444 |
-
#: app/features/mec/meta_boxes/search_form.php:455
|
2445 |
-
#: app/features/mec/meta_boxes/search_form.php:462
|
2446 |
-
#: app/features/mec/meta_boxes/search_form.php:469
|
2447 |
-
#: app/features/mec/meta_boxes/search_form.php:476
|
2448 |
-
#: app/features/mec/meta_boxes/search_form.php:483
|
2449 |
-
#: app/features/mec/meta_boxes/search_form.php:490
|
2450 |
-
#: app/features/mec/meta_boxes/search_form.php:497
|
2451 |
-
#: app/features/mec/meta_boxes/search_form.php:504
|
2452 |
-
#: app/features/mec/meta_boxes/search_form.php:516
|
2453 |
-
#: app/features/mec/meta_boxes/search_form.php:523
|
2454 |
-
#: app/features/mec/meta_boxes/search_form.php:530
|
2455 |
-
#: app/features/mec/meta_boxes/search_form.php:537
|
2456 |
-
#: app/features/mec/meta_boxes/search_form.php:544
|
2457 |
-
#: app/features/mec/meta_boxes/search_form.php:551
|
2458 |
-
#: app/features/mec/meta_boxes/search_form.php:558
|
2459 |
-
#: app/features/mec/meta_boxes/search_form.php:565
|
2460 |
-
#: app/features/mec/meta_boxes/search_form.php:577
|
2461 |
-
#: app/features/mec/meta_boxes/search_form.php:584
|
2462 |
-
#: app/features/mec/meta_boxes/search_form.php:591
|
2463 |
-
#: app/features/mec/meta_boxes/search_form.php:598
|
2464 |
-
#: app/features/mec/meta_boxes/search_form.php:605
|
2465 |
-
#: app/features/mec/meta_boxes/search_form.php:612
|
2466 |
-
#: app/features/mec/meta_boxes/search_form.php:619
|
2467 |
-
#: app/features/mec/meta_boxes/search_form.php:626
|
2468 |
-
#: app/features/mec/modules.php:125 app/features/mec/settings.php:97
|
2469 |
-
#: app/features/mec/settings.php:368
|
2470 |
-
msgid "Disabled"
|
2471 |
-
msgstr "Deaktiviert"
|
2472 |
-
|
2473 |
-
#: app/features/gateways.php:3142
|
2474 |
-
#, fuzzy
|
2475 |
-
#| msgid "Automatically complete WC orders"
|
2476 |
-
msgid "Auto WC orders"
|
2477 |
-
msgstr "WC-Aufträge automatisch abschließen"
|
2478 |
-
|
2479 |
-
#: app/features/gateways.php:3143
|
2480 |
-
msgid "It applies only to the orders that are related to MEC."
|
2481 |
-
msgstr "Sie gilt nur für Aufträge, die mit MEC zusammenhängen."
|
2482 |
-
|
2483 |
-
#: app/features/gateways.php:3258 app/libraries/main.php:2956
|
2484 |
-
msgid "Free"
|
2485 |
-
msgstr "kostenfrei"
|
2486 |
-
|
2487 |
-
#: app/features/gateways.php:3278
|
2488 |
-
msgid "This booking is not free!"
|
2489 |
-
msgstr "Diese Buchung ist nicht kostenlos!"
|
2490 |
-
|
2491 |
-
#: app/features/ix.php:107
|
2492 |
-
msgid "MEC - Import / Export"
|
2493 |
-
msgstr "MEC - Import / Export"
|
2494 |
-
|
2495 |
-
#: app/features/ix.php:107 app/features/mec/support.php:73
|
2496 |
-
#: app/libraries/main.php:796
|
2497 |
-
msgid "Import / Export"
|
2498 |
-
msgstr "Import / Export"
|
2499 |
-
|
2500 |
-
#: app/features/ix.php:201
|
2501 |
-
msgid "Please upload the feed file."
|
2502 |
-
msgstr ""
|
2503 |
-
|
2504 |
-
#: app/features/ix.php:204
|
2505 |
-
msgid "The file type should be XML or ICS."
|
2506 |
-
msgstr ""
|
2507 |
-
|
2508 |
-
#: app/features/ix.php:213
|
2509 |
-
msgid "An error occurred during the file upload! Please check permissions!"
|
2510 |
-
msgstr ""
|
2511 |
-
|
2512 |
-
#: app/features/ix.php:221
|
2513 |
-
msgid "The events are imported successfully!"
|
2514 |
-
msgstr ""
|
2515 |
-
|
2516 |
-
#: app/features/ix.php:783
|
2517 |
-
msgid "Third Party plugin is not installed and activated!"
|
2518 |
-
msgstr "Drittanbieter-Plugin ist nicht installiert und aktiviert!"
|
2519 |
-
|
2520 |
-
#: app/features/ix.php:803
|
2521 |
-
msgid "Third Party plugin is invalid!"
|
2522 |
-
msgstr "Drittanbieter-Plugin ist ungültig!"
|
2523 |
-
|
2524 |
-
#: app/features/ix.php:2003 app/features/ix.php:2422 app/features/ix.php:3129
|
2525 |
-
msgid "Please select some events to import!"
|
2526 |
-
msgstr "Bitte wählen Sie einige Veranstaltungen aus zum importieren"
|
2527 |
-
|
2528 |
-
#: app/features/ix.php:2743 app/features/ix.php:2784
|
2529 |
-
msgid "Organizer Tel"
|
2530 |
-
msgstr "Organisator Telefon"
|
2531 |
-
|
2532 |
-
#: app/features/ix.php:2743 app/features/ix.php:2784
|
2533 |
-
msgid "Organizer Email"
|
2534 |
-
msgstr "Organisator Email"
|
2535 |
-
|
2536 |
-
#: app/features/ix.php:2865
|
2537 |
-
msgid "All of Client ID, Client Secret and Calendar ID are required!"
|
2538 |
-
msgstr "Dies wird alles benötigt: Client ID, Client Secret und Calender ID!"
|
2539 |
-
|
2540 |
-
#: app/features/ix.php:2888
|
2541 |
-
#, php-format
|
2542 |
-
msgid "All seems good! Please click %s for authenticating your app."
|
2543 |
-
msgstr ""
|
2544 |
-
"Alles scheint gut zu sein! Bitte klicken %s um Ihre App zu authentifizieren."
|
2545 |
-
|
2546 |
-
#: app/features/ix.php:3092
|
2547 |
-
#, fuzzy
|
2548 |
-
#| msgid "Please insert your facebook page's link."
|
2549 |
-
msgid "Please insert your Facebook page's link."
|
2550 |
-
msgstr "Bitte Ihren Facebook Seitenlink eingeben."
|
2551 |
-
|
2552 |
-
#: app/features/ix.php:3101
|
2553 |
-
#, fuzzy
|
2554 |
-
#| msgid ""
|
2555 |
-
#| "We couldn't recognize your Facebook page. Please check it and provide us "
|
2556 |
-
#| "a valid facebook page link."
|
2557 |
-
msgid ""
|
2558 |
-
"We couldn't recognize your Facebook page. Please check it and provide us a "
|
2559 |
-
"valid Facebook page link."
|
2560 |
-
msgstr ""
|
2561 |
-
"Wir konnten Ihre Facebookseite nicht erkennen. Bitte checken Sie das und "
|
2562 |
-
"stellen Sie uns einen gültigen Facebookseitenlink zur Verfügung."
|
2563 |
-
|
2564 |
-
#: app/features/ix/export.php:8 app/features/ix/export_g_calendar.php:12
|
2565 |
-
#: app/features/ix/import.php:8 app/features/ix/import_f_calendar.php:8
|
2566 |
-
#: app/features/ix/import_g_calendar.php:8 app/features/ix/import_meetup.php:8
|
2567 |
-
#: app/features/ix/thirdparty.php:8
|
2568 |
-
msgid "MEC Import / Export"
|
2569 |
-
msgstr "MEC Import / Export"
|
2570 |
-
|
2571 |
-
#: app/features/ix/export.php:13 app/features/ix/export_g_calendar.php:17
|
2572 |
-
#: app/features/ix/import.php:13 app/features/ix/import_f_calendar.php:13
|
2573 |
-
#: app/features/ix/import_g_calendar.php:13
|
2574 |
-
#: app/features/ix/import_meetup.php:13 app/features/ix/sync.php:13
|
2575 |
-
#: app/features/ix/thirdparty.php:13
|
2576 |
-
#, fuzzy
|
2577 |
-
#| msgid "Import"
|
2578 |
-
msgid "Meetup Import"
|
2579 |
-
msgstr "Import"
|
2580 |
-
|
2581 |
-
#: app/features/ix/export.php:14 app/features/ix/export_g_calendar.php:18
|
2582 |
-
#: app/features/ix/import.php:14 app/features/ix/import_f_calendar.php:14
|
2583 |
-
#: app/features/ix/import_g_calendar.php:14
|
2584 |
-
#: app/features/ix/import_meetup.php:14 app/features/ix/sync.php:14
|
2585 |
-
#: app/features/ix/thirdparty.php:14
|
2586 |
-
msgid "Synchronization"
|
2587 |
-
msgstr "Synchronisation"
|
2588 |
-
|
2589 |
-
#: app/features/ix/export.php:15 app/features/ix/export_g_calendar.php:19
|
2590 |
-
#: app/features/ix/import.php:15 app/features/ix/import_f_calendar.php:15
|
2591 |
-
#: app/features/ix/import_g_calendar.php:15
|
2592 |
-
#: app/features/ix/import_meetup.php:15 app/features/ix/sync.php:15
|
2593 |
-
#: app/features/ix/thirdparty.php:15 app/features/mec/ie.php:31
|
2594 |
-
msgid "Export"
|
2595 |
-
msgstr "Export"
|
2596 |
-
|
2597 |
-
#: app/features/ix/export.php:16 app/features/ix/export_g_calendar.php:20
|
2598 |
-
#: app/features/ix/import.php:16 app/features/ix/import_f_calendar.php:16
|
2599 |
-
#: app/features/ix/import_f_calendar.php:82
|
2600 |
-
#: app/features/ix/import_g_calendar.php:16
|
2601 |
-
#: app/features/ix/import_g_calendar.php:103
|
2602 |
-
#: app/features/ix/import_meetup.php:16 app/features/ix/import_meetup.php:85
|
2603 |
-
#: app/features/ix/sync.php:16 app/features/ix/thirdparty.php:16
|
2604 |
-
#: app/features/ix/thirdparty.php:98 app/features/mec/ie.php:20
|
2605 |
-
msgid "Import"
|
2606 |
-
msgstr "Import"
|
2607 |
-
|
2608 |
-
#: app/features/ix/export.php:17 app/features/ix/export_g_calendar.php:21
|
2609 |
-
#: app/features/ix/import.php:17 app/features/ix/import_f_calendar.php:17
|
2610 |
-
#: app/features/ix/import_g_calendar.php:17
|
2611 |
-
#: app/features/ix/import_meetup.php:17 app/features/ix/sync.php:17
|
2612 |
-
#: app/features/ix/thirdparty.php:17 app/features/ix/thirdparty.php:21
|
2613 |
-
msgid "Third Party Plugins"
|
2614 |
-
msgstr "Plugins von Drittanbietern"
|
2615 |
-
|
2616 |
-
#: app/features/ix/export.php:22
|
2617 |
-
msgid "Export all events to file"
|
2618 |
-
msgstr "Exportiert alle Events in eine Datei"
|
2619 |
-
|
2620 |
-
#: app/features/ix/export.php:23
|
2621 |
-
msgid ""
|
2622 |
-
"This will export all of your website events' data into your desired format."
|
2623 |
-
msgstr ""
|
2624 |
-
"Dies wird alle Ihre Eventdaten von der Webseite in Ihr gewünschtes Format "
|
2625 |
-
"exportieren."
|
2626 |
-
|
2627 |
-
#: app/features/ix/export.php:25 app/features/mec/modules.php:178
|
2628 |
-
msgid "iCal"
|
2629 |
-
msgstr "iCal"
|
2630 |
-
|
2631 |
-
#: app/features/ix/export.php:26
|
2632 |
-
msgid "CSV"
|
2633 |
-
msgstr "CSV"
|
2634 |
-
|
2635 |
-
#: app/features/ix/export.php:27
|
2636 |
-
msgid "MS Excel"
|
2637 |
-
msgstr "MS Excel"
|
2638 |
-
|
2639 |
-
#: app/features/ix/export.php:28
|
2640 |
-
msgid "XML"
|
2641 |
-
msgstr "XML"
|
2642 |
-
|
2643 |
-
#: app/features/ix/export.php:29
|
2644 |
-
msgid "JSON"
|
2645 |
-
msgstr "JSON"
|
2646 |
-
|
2647 |
-
#: app/features/ix/export.php:33
|
2648 |
-
msgid "Export certain events"
|
2649 |
-
msgstr "Bestimme Events exportieren"
|
2650 |
-
|
2651 |
-
#: app/features/ix/export.php:34
|
2652 |
-
#, php-format
|
2653 |
-
msgid "For exporting filtered events, you can use bulk actions in %s page."
|
2654 |
-
msgstr ""
|
2655 |
-
"Für den Export gefilterter Ereignisse können Sie Bulk-Aktionen in der% s-"
|
2656 |
-
"Seite verwenden."
|
2657 |
-
|
2658 |
-
#: app/features/ix/export.php:37
|
2659 |
-
msgid "Export certain bookings"
|
2660 |
-
msgstr "Bestimmte Anmeldungen/Buchungen exportieren"
|
2661 |
-
|
2662 |
-
#: app/features/ix/export.php:38
|
2663 |
-
#, php-format
|
2664 |
-
msgid "For exporting bookings events, you can use bulk actions in %s page."
|
2665 |
-
msgstr ""
|
2666 |
-
"Wir haben Events für %s Seite gefunden. Bitte wählen Sie Ihre gewünschten "
|
2667 |
-
"Events zum importieren."
|
2668 |
-
|
2669 |
-
#: app/features/ix/export_g_calendar.php:26
|
2670 |
-
msgid "Add events to Google Calendar"
|
2671 |
-
msgstr "Events zum Google Kalender hinzufügen"
|
2672 |
-
|
2673 |
-
#: app/features/ix/export_g_calendar.php:27
|
2674 |
-
msgid "Add your desired website events to your Google Calendar."
|
2675 |
-
msgstr ""
|
2676 |
-
"Fügen Sie Ihre gewünschten Webseiten Events zu Ihrem Google Kalender hinzu."
|
2677 |
-
|
2678 |
-
#: app/features/ix/export_g_calendar.php:27
|
2679 |
-
#, php-format
|
2680 |
-
msgid "You should set %s as redirect page in Google App Console."
|
2681 |
-
msgstr "Sie sollten% s als Redirect-Seite in der Google App Console setzen."
|
2682 |
-
|
2683 |
-
#: app/features/ix/export_g_calendar.php:30
|
2684 |
-
msgid "App Client ID"
|
2685 |
-
msgstr "App Client ID"
|
2686 |
-
|
2687 |
-
#: app/features/ix/export_g_calendar.php:36
|
2688 |
-
msgid "App Client Secret"
|
2689 |
-
msgstr "App Client Passwort"
|
2690 |
-
|
2691 |
-
#: app/features/ix/export_g_calendar.php:42
|
2692 |
-
#: app/features/ix/import_g_calendar.php:32
|
2693 |
-
msgid "Calendar ID"
|
2694 |
-
msgstr "Kalender ID"
|
2695 |
-
|
2696 |
-
#: app/features/ix/export_g_calendar.php:48
|
2697 |
-
#: app/features/ix/export_g_calendar.php:103
|
2698 |
-
#: app/features/ix/export_g_calendar.php:120
|
2699 |
-
msgid "Authenticate"
|
2700 |
-
msgstr "Authentifizierung"
|
2701 |
-
|
2702 |
-
#: app/features/ix/export_g_calendar.php:57
|
2703 |
-
#: app/features/ix/import_f_calendar.php:56
|
2704 |
-
#: app/features/ix/import_g_calendar.php:64
|
2705 |
-
#: app/features/ix/import_meetup.php:53 app/features/ix/thirdparty.php:49
|
2706 |
-
msgid "Select All"
|
2707 |
-
msgstr "Alles Auswählen"
|
2708 |
-
|
2709 |
-
#: app/features/ix/export_g_calendar.php:58
|
2710 |
-
#: app/features/ix/import_f_calendar.php:57
|
2711 |
-
#: app/features/ix/import_g_calendar.php:65
|
2712 |
-
#: app/features/ix/import_meetup.php:54 app/features/ix/thirdparty.php:50
|
2713 |
-
msgid "Deselect All"
|
2714 |
-
msgstr "Alle abwählen"
|
2715 |
-
|
2716 |
-
#: app/features/ix/export_g_calendar.php:59
|
2717 |
-
#: app/features/ix/import_f_calendar.php:58
|
2718 |
-
#: app/features/ix/import_g_calendar.php:66
|
2719 |
-
#: app/features/ix/import_meetup.php:55 app/features/ix/thirdparty.php:51
|
2720 |
-
msgid "Toggle"
|
2721 |
-
msgstr "Umschalten"
|
2722 |
-
|
2723 |
-
#: app/features/ix/export_g_calendar.php:72
|
2724 |
-
#: app/features/ix/export_g_calendar.php:147
|
2725 |
-
#: app/features/ix/export_g_calendar.php:164
|
2726 |
-
#: app/features/mec/notifications.php:92 app/features/mec/notifications.php:144
|
2727 |
-
#: app/features/mec/notifications.php:197
|
2728 |
-
#: app/features/mec/notifications.php:398
|
2729 |
-
msgid "Add to Google Calendar"
|
2730 |
-
msgstr "Zum Google Kalender hinzufügen"
|
2731 |
-
|
2732 |
-
#: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:616
|
2733 |
-
#: app/features/mec/modules.php:392 app/features/mec/notifications.php:590
|
2734 |
-
#: app/features/mec/settings.php:894 app/features/mec/single.php:269
|
2735 |
-
msgid "Checking ..."
|
2736 |
-
msgstr "Überprüfung"
|
2737 |
-
|
2738 |
-
#: app/features/ix/export_g_calendar.php:134
|
2739 |
-
#, fuzzy
|
2740 |
-
#| msgid "Importing ..."
|
2741 |
-
msgid "Exporting ..."
|
2742 |
-
msgstr "Importieren"
|
2743 |
-
|
2744 |
-
#: app/features/ix/import.php:21
|
2745 |
-
msgid "Import MEC XML Feed"
|
2746 |
-
msgstr ""
|
2747 |
-
|
2748 |
-
#: app/features/ix/import.php:24
|
2749 |
-
#, php-format
|
2750 |
-
msgid ""
|
2751 |
-
"You can import %s events from another website to this website. You just need "
|
2752 |
-
"an XML feed of the events that can be exported from source website!"
|
2753 |
-
msgstr ""
|
2754 |
-
|
2755 |
-
#: app/features/ix/import.php:27
|
2756 |
-
msgid "XML Feed"
|
2757 |
-
msgstr ""
|
2758 |
-
|
2759 |
-
#: app/features/ix/import.php:29 app/features/ix/import.php:42
|
2760 |
-
msgid "Upload & Import"
|
2761 |
-
msgstr ""
|
2762 |
-
|
2763 |
-
#: app/features/ix/import.php:33
|
2764 |
-
msgid "Import .ics File"
|
2765 |
-
msgstr ""
|
2766 |
-
|
2767 |
-
#: app/features/ix/import.php:37
|
2768 |
-
#, php-format
|
2769 |
-
msgid ""
|
2770 |
-
"ICS format supports by many different service providers like Facebook. Apple "
|
2771 |
-
"Calendar etc. You can import your ics file into the %s using this form."
|
2772 |
-
msgstr ""
|
2773 |
-
|
2774 |
-
#: app/features/ix/import.php:40
|
2775 |
-
msgid "ICS Feed"
|
2776 |
-
msgstr ""
|
2777 |
-
|
2778 |
-
#: app/features/ix/import.php:46 app/features/mec/booking.php:91
|
2779 |
-
#: app/features/mec/booking.php:251 app/features/mec/booking.php:269
|
2780 |
-
#: app/features/mec/booking.php:346
|
2781 |
-
#: app/features/mec/meta_boxes/display_options.php:150
|
2782 |
-
#: app/features/mec/meta_boxes/display_options.php:315
|
2783 |
-
#: app/features/mec/modules.php:70 app/features/mec/modules.php:211
|
2784 |
-
#: app/features/mec/modules.php:228
|
2785 |
-
#, php-format
|
2786 |
-
msgid "%s is required to use this feature."
|
2787 |
-
msgstr ""
|
2788 |
-
|
2789 |
-
#: app/features/ix/import.php:46 app/features/ix/sync.php:22
|
2790 |
-
#: app/features/mec/booking.php:91 app/features/mec/booking.php:251
|
2791 |
-
#: app/features/mec/booking.php:269 app/features/mec/booking.php:346
|
2792 |
-
#: app/features/mec/meta_boxes/display_options.php:150
|
2793 |
-
#: app/features/mec/meta_boxes/display_options.php:315
|
2794 |
-
#: app/features/mec/meta_boxes/display_options.php:330
|
2795 |
-
#: app/features/mec/meta_boxes/display_options.php:457
|
2796 |
-
#: app/features/mec/meta_boxes/display_options.php:508
|
2797 |
-
#: app/features/mec/meta_boxes/display_options.php:615
|
2798 |
-
#: app/features/mec/meta_boxes/display_options.php:722
|
2799 |
-
#: app/features/mec/meta_boxes/display_options.php:795
|
2800 |
-
#: app/features/mec/meta_boxes/display_options.php:995
|
2801 |
-
#: app/features/mec/modules.php:70 app/features/mec/modules.php:211
|
2802 |
-
#: app/features/mec/modules.php:228
|
2803 |
-
msgid "Pro version of Modern Events Calendar"
|
2804 |
-
msgstr ""
|
2805 |
-
|
2806 |
-
#: app/features/ix/import_f_calendar.php:22
|
2807 |
-
msgid "The Facebook SDK requires PHP version 5.4 or higher."
|
2808 |
-
msgstr "Facebook SDK benötigt PHP version 5.4. oder höher"
|
2809 |
-
|
2810 |
-
#: app/features/ix/import_f_calendar.php:26
|
2811 |
-
msgid "Import from Facebook Calendar"
|
2812 |
-
msgstr "Vom Facebook Kalender Importieren"
|
2813 |
-
|
2814 |
-
#: app/features/ix/import_f_calendar.php:27
|
2815 |
-
#, fuzzy
|
2816 |
-
#| msgid "Import all of your facebook events into MEC."
|
2817 |
-
msgid "Import all of your Facebook events into MEC."
|
2818 |
-
msgstr "Importiere alle Deine Facebook Events zum MEC"
|
2819 |
-
|
2820 |
-
#: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:136
|
2821 |
-
#: app/features/mec/support-page.php:11 app/features/mec/support.php:100
|
2822 |
-
msgid "Documentation"
|
2823 |
-
msgstr "Dokumentation"
|
2824 |
-
|
2825 |
-
#: app/features/ix/import_f_calendar.php:29
|
2826 |
-
#, fuzzy
|
2827 |
-
#| msgid "Facebook Page Link"
|
2828 |
-
msgid "Facebook Page Access Token"
|
2829 |
-
msgstr "Facebook Seiten Link"
|
2830 |
-
|
2831 |
-
#: app/features/ix/import_f_calendar.php:35
|
2832 |
-
msgid "Facebook Page Link"
|
2833 |
-
msgstr "Facebook Seiten Link"
|
2834 |
-
|
2835 |
-
#: app/features/ix/import_f_calendar.php:53
|
2836 |
-
msgid "Facebook Events"
|
2837 |
-
msgstr "Facebook events"
|
2838 |
-
|
2839 |
-
#: app/features/ix/import_f_calendar.php:54
|
2840 |
-
#, php-format
|
2841 |
-
msgid ""
|
2842 |
-
"We found %s events for %s page. Please select your desired events to import."
|
2843 |
-
msgstr ""
|
2844 |
-
"Wir haben % s Events für % s diese Seite gefunden. Bitte wählen Sie Ihre "
|
2845 |
-
"gewünschten Events zum Import aus."
|
2846 |
-
|
2847 |
-
#: app/features/ix/import_f_calendar.php:65 app/features/ix/thirdparty.php:58
|
2848 |
-
#, php-format
|
2849 |
-
msgid "Event Title: %s"
|
2850 |
-
msgstr "Event Title: %s"
|
2851 |
-
|
2852 |
-
#: app/features/ix/import_f_calendar.php:72
|
2853 |
-
#: app/features/ix/import_g_calendar.php:87
|
2854 |
-
#: app/features/ix/import_meetup.php:69 app/features/ix/thirdparty.php:65
|
2855 |
-
msgid "Import Options"
|
2856 |
-
msgstr "Import Optionen"
|
2857 |
-
|
2858 |
-
#: app/features/ix/import_f_calendar.php:76
|
2859 |
-
#: app/features/ix/import_g_calendar.php:97
|
2860 |
-
#: app/features/ix/import_meetup.php:79 app/features/ix/thirdparty.php:78
|
2861 |
-
msgid "Import Locations"
|
2862 |
-
msgstr "Orte importieren"
|
2863 |
-
|
2864 |
-
#: app/features/ix/import_f_calendar.php:92
|
2865 |
-
#, php-format
|
2866 |
-
msgid "%s events successfully imported to your website from Facebook Calendar."
|
2867 |
-
msgstr ""
|
2868 |
-
"%s events wurden erfolgreich zu Ihrer Webseite vom Facebook Kaldender "
|
2869 |
-
"importiert."
|
2870 |
-
|
2871 |
-
#: app/features/ix/import_g_calendar.php:23
|
2872 |
-
msgid "Import from Google Calendar"
|
2873 |
-
msgstr "Import vom Google Kalender"
|
2874 |
-
|
2875 |
-
#: app/features/ix/import_g_calendar.php:24
|
2876 |
-
msgid "This will import all of your Google calendar events into MEC."
|
2877 |
-
msgstr "Dies wird alle Deine Google Events zu MEC importieren"
|
2878 |
-
|
2879 |
-
#: app/features/ix/import_g_calendar.php:26
|
2880 |
-
msgid "Google API Key"
|
2881 |
-
msgstr "Google API Key"
|
2882 |
-
|
2883 |
-
#: app/features/ix/import_g_calendar.php:61
|
2884 |
-
msgid "Google Calendar Events"
|
2885 |
-
msgstr "Google Kalender Events"
|
2886 |
-
|
2887 |
-
#: app/features/ix/import_g_calendar.php:62
|
2888 |
-
#, php-format
|
2889 |
-
msgid ""
|
2890 |
-
"We found %s events for %s calendar. Please select your desired events to "
|
2891 |
-
"import."
|
2892 |
-
msgstr ""
|
2893 |
-
"Wir haben %s events für %s Kalender gefunden. Bitte wählen Sie Ihre "
|
2894 |
-
"gewünschten Events zum importieren aus."
|
2895 |
-
|
2896 |
-
#: app/features/ix/import_g_calendar.php:80
|
2897 |
-
#: app/features/ix/import_meetup.php:62
|
2898 |
-
#, php-format
|
2899 |
-
msgid "Event Title: %s Event Date: %s - %s"
|
2900 |
-
msgstr "Name der Veranstaltung: %s Veranstaltungsdatum: %s - %s"
|
2901 |
-
|
2902 |
-
#: app/features/ix/import_g_calendar.php:91
|
2903 |
-
#: app/features/ix/import_meetup.php:73 app/features/ix/thirdparty.php:71
|
2904 |
-
msgid "Import Organizers"
|
2905 |
-
msgstr "Veranstalter importieren"
|
2906 |
-
|
2907 |
-
#: app/features/ix/import_g_calendar.php:113
|
2908 |
-
#, php-format
|
2909 |
-
msgid "%s events successfully imported to your website from Google Calendar."
|
2910 |
-
msgstr ""
|
2911 |
-
"%s Events wurden erfolgreich zu Deiner Webseite vom Google Kalender "
|
2912 |
-
"importiert."
|
2913 |
-
|
2914 |
-
#: app/features/ix/import_meetup.php:23
|
2915 |
-
#, fuzzy
|
2916 |
-
#| msgid "Import from Google Calendar"
|
2917 |
-
msgid "Import from Meetup"
|
2918 |
-
msgstr "Import vom Google Kalender"
|
2919 |
-
|
2920 |
-
#: app/features/ix/import_meetup.php:24
|
2921 |
-
#, fuzzy
|
2922 |
-
#| msgid "This will import all of your Google calendar events into MEC."
|
2923 |
-
msgid "This will import all your meetup events into MEC."
|
2924 |
-
msgstr "Dies wird alle Deine Google Events zu MEC importieren"
|
2925 |
-
|
2926 |
-
#: app/features/ix/import_meetup.php:26
|
2927 |
-
#, fuzzy
|
2928 |
-
#| msgid "API Key"
|
2929 |
-
msgid "Meetup API Key"
|
2930 |
-
msgstr "API Schlüssel"
|
2931 |
-
|
2932 |
-
#: app/features/ix/import_meetup.php:32
|
2933 |
-
msgid "Group URL"
|
2934 |
-
msgstr ""
|
2935 |
-
|
2936 |
-
#: app/features/ix/import_meetup.php:35
|
2937 |
-
#, php-format
|
2938 |
-
msgid "put only the slug of your group like %s in %s"
|
2939 |
-
msgstr ""
|
2940 |
-
|
2941 |
-
#: app/features/ix/import_meetup.php:50
|
2942 |
-
#, fuzzy
|
2943 |
-
#| msgid "Next Event"
|
2944 |
-
msgid "Meetup Events"
|
2945 |
-
msgstr "Nächstes Event"
|
2946 |
-
|
2947 |
-
#: app/features/ix/import_meetup.php:51
|
2948 |
-
#, fuzzy, php-format
|
2949 |
-
#| msgid ""
|
2950 |
-
#| "We found %s events for %s page. Please select your desired events to "
|
2951 |
-
#| "import."
|
2952 |
-
msgid ""
|
2953 |
-
"We found %s events for %s group. Please select your desired events to import."
|
2954 |
-
msgstr ""
|
2955 |
-
"Wir haben % s Events für % s diese Seite gefunden. Bitte wählen Sie Ihre "
|
2956 |
-
"gewünschten Events zum Import aus."
|
2957 |
-
|
2958 |
-
#: app/features/ix/import_meetup.php:95
|
2959 |
-
#, fuzzy, php-format
|
2960 |
-
#| msgid "%s events successfully imported to your website."
|
2961 |
-
msgid "%s events successfully imported to your website from meetup."
|
2962 |
-
msgstr "% s Events wurden erfolgreich in Ihre Website importiert."
|
2963 |
-
|
2964 |
-
#: app/features/ix/import_meetup.php:96 app/features/ix/thirdparty.php:109
|
2965 |
-
msgid "Attention"
|
2966 |
-
msgstr "Achtung"
|
2967 |
-
|
2968 |
-
#: app/features/ix/import_meetup.php:96
|
2969 |
-
msgid ""
|
2970 |
-
"Although we tried our best to make the events completely compatible with MEC "
|
2971 |
-
"but some modification might be needed. We suggest you to edit the imported "
|
2972 |
-
"listings one by one on MEC edit event page and make sure thay're correct."
|
2973 |
-
msgstr ""
|
2974 |
-
"Wir haben zwar unser Bestes gegeben, um die Events vollständig kompatibel "
|
2975 |
-
"mit MEC zu machen, aber einige Änderungen sind möglicherweise erforderlich. "
|
2976 |
-
"Wir empfehlen Ihnen, die importierten Einträge nacheinander auf der MEC Edit "
|
2977 |
-
"Event Seite zu bearbeiten und sicherzustellen, dass sie korrekt sind."
|
2978 |
-
|
2979 |
-
#: app/features/ix/sync.php:8
|
2980 |
-
msgid "Auto Synchronization"
|
2981 |
-
msgstr "Auto Synchronisation"
|
2982 |
-
|
2983 |
-
#: app/features/ix/sync.php:22
|
2984 |
-
#: app/features/mec/meta_boxes/display_options.php:795
|
2985 |
-
#, php-format
|
2986 |
-
msgid "%s is required to use synchronization feature."
|
2987 |
-
msgstr ""
|
2988 |
-
|
2989 |
-
#: app/features/ix/sync.php:29
|
2990 |
-
msgid "Auto Google Import"
|
2991 |
-
msgstr "Automatischer Google Calender Import"
|
2992 |
-
|
2993 |
-
#: app/features/ix/sync.php:32 app/features/ix/sync.php:41
|
2994 |
-
#: app/features/ix/sync.php:52 app/features/ix/sync.php:63
|
2995 |
-
#: app/features/mec/notifications.php:341
|
2996 |
-
msgid "Important Note"
|
2997 |
-
msgstr "Important Note"
|
2998 |
-
|
2999 |
-
#: app/features/ix/sync.php:32
|
3000 |
-
#, php-format
|
3001 |
-
msgid ""
|
3002 |
-
"Set a cronjob to call %s file atleast once per day otherwise it won't import "
|
3003 |
-
"Google Calendar events."
|
3004 |
-
msgstr ""
|
3005 |
-
"Setzen Sie einen Cronjob, um % s Datei mindestens einmal pro Tag anzurufen, "
|
3006 |
-
"ansonsten würden Google Kalender Ereignisse nicht importiert"
|
3007 |
-
|
3008 |
-
#: app/features/ix/sync.php:38
|
3009 |
-
msgid "Auto Google Export"
|
3010 |
-
msgstr "Auto Google Export"
|
3011 |
-
|
3012 |
-
#: app/features/ix/sync.php:41
|
3013 |
-
#, php-format
|
3014 |
-
msgid ""
|
3015 |
-
"Set a cronjob to call %s file atleast once per day otherwise it won't export "
|
3016 |
-
"your website events into Google Calendar."
|
3017 |
-
msgstr ""
|
3018 |
-
"Setzen Sie einen Cronjob, um % s Datei mindestens einmal pro Tag anzurufen, "
|
3019 |
-
"ansonsten würden Ihre Webseiten Events nicht zum Google Kalender exportiert. "
|
3020 |
-
|
3021 |
-
#: app/features/ix/sync.php:49
|
3022 |
-
msgid "Auto Facebook Import"
|
3023 |
-
msgstr "Auto Facebook Kalender Import"
|
3024 |
-
|
3025 |
-
#: app/features/ix/sync.php:52
|
3026 |
-
#, php-format
|
3027 |
-
msgid ""
|
3028 |
-
"Set a cronjob to call %s file atleast once per day otherwise it won't import "
|
3029 |
-
"any event from Facebook."
|
3030 |
-
msgstr ""
|
3031 |
-
"Setzen Sie einen Cronjob, um % s Datei mindestens einmal pro Tag anzurufen, "
|
3032 |
-
"ansonsten würden keine Veranstaltungen von Facebook importiert. "
|
3033 |
-
|
3034 |
-
#: app/features/ix/sync.php:60
|
3035 |
-
#, fuzzy
|
3036 |
-
#| msgid "Auto Google Import"
|
3037 |
-
msgid "Auto Meetup Import"
|
3038 |
-
msgstr "Automatischer Google Calender Import"
|
3039 |
-
|
3040 |
-
#: app/features/ix/sync.php:63
|
3041 |
-
#, fuzzy, php-format
|
3042 |
-
#| msgid ""
|
3043 |
-
#| "Set a cronjob to call %s file atleast once per day otherwise it won't "
|
3044 |
-
#| "import any event from Facebook."
|
3045 |
-
msgid ""
|
3046 |
-
"Set a cronjob to call %s file atleast once per day otherwise it won't import "
|
3047 |
-
"any event from Meetup."
|
3048 |
-
msgstr ""
|
3049 |
-
"Setzen Sie einen Cronjob, um % s Datei mindestens einmal pro Tag anzurufen, "
|
3050 |
-
"ansonsten würden keine Veranstaltungen von Facebook importiert. "
|
3051 |
-
|
3052 |
-
#: app/features/ix/sync.php:67
|
3053 |
-
msgid "Auto set cronjobs (Once Daily)"
|
3054 |
-
msgstr ""
|
3055 |
-
|
3056 |
-
#: app/features/ix/sync.php:68
|
3057 |
-
msgid "First you need to enable above options for each to be able to use this."
|
3058 |
-
msgstr ""
|
3059 |
-
|
3060 |
-
#: app/features/ix/sync.php:69
|
3061 |
-
msgid ""
|
3062 |
-
"If you cannot set Cron Job on your server, you can use the options below. "
|
3063 |
-
"Please make sure to NOT use the following options and set on the server "
|
3064 |
-
"manually together."
|
3065 |
-
msgstr ""
|
3066 |
-
|
3067 |
-
#: app/features/ix/sync.php:73
|
3068 |
-
#, fuzzy
|
3069 |
-
#| msgid "Google Cal. Import"
|
3070 |
-
msgid "Google import"
|
3071 |
-
msgstr "Google Calender Import"
|
3072 |
-
|
3073 |
-
#: app/features/ix/sync.php:78
|
3074 |
-
#, fuzzy
|
3075 |
-
#| msgid "Google Cal. Export"
|
3076 |
-
msgid "Google export"
|
3077 |
-
msgstr "Google Kalender Export"
|
3078 |
-
|
3079 |
-
#: app/features/ix/sync.php:83
|
3080 |
-
#, fuzzy
|
3081 |
-
#| msgid "Import"
|
3082 |
-
msgid "Meetup import"
|
3083 |
-
msgstr "Import"
|
3084 |
-
|
3085 |
-
#: app/features/ix/sync.php:90
|
3086 |
-
msgid "Save"
|
3087 |
-
msgstr "Sichern"
|
3088 |
-
|
3089 |
-
#: app/features/ix/thirdparty.php:24
|
3090 |
-
#, php-format
|
3091 |
-
msgid "You can import events from following integrated plugins to %s."
|
3092 |
-
msgstr ""
|
3093 |
-
"Sie können Events von folgenden integrierten Plugins in% s importieren."
|
3094 |
-
|
3095 |
-
#: app/features/ix/thirdparty.php:27
|
3096 |
-
msgid "Third Party"
|
3097 |
-
msgstr "Dritte Seite"
|
3098 |
-
|
3099 |
-
#: app/features/ix/thirdparty.php:46
|
3100 |
-
msgid "Found Events"
|
3101 |
-
msgstr "Events gefunden"
|
3102 |
-
|
3103 |
-
#: app/features/ix/thirdparty.php:47
|
3104 |
-
#, php-format
|
3105 |
-
msgid "We found %s events. Please select your desired events to import."
|
3106 |
-
msgstr ""
|
3107 |
-
"Wir haben% s Events gefunden. Bitte wählen Sie Ihre gewünschten Events zum "
|
3108 |
-
"Importieren aus."
|
3109 |
-
|
3110 |
-
#: app/features/ix/thirdparty.php:70
|
3111 |
-
msgid "Import Instructors"
|
3112 |
-
msgstr "Importieren Sie Instruktoren"
|
3113 |
-
|
3114 |
-
#: app/features/ix/thirdparty.php:85
|
3115 |
-
msgid "Import Class Types"
|
3116 |
-
msgstr "Klassentypen importieren"
|
3117 |
-
|
3118 |
-
#: app/features/ix/thirdparty.php:86
|
3119 |
-
msgid "Import Categories"
|
3120 |
-
msgstr "Importiere Kategorien"
|
3121 |
-
|
3122 |
-
#: app/features/ix/thirdparty.php:93
|
3123 |
-
msgid "Import Featured Images"
|
3124 |
-
msgstr "Importieren Sie ausgewählte Bilder"
|
3125 |
-
|
3126 |
-
#: app/features/ix/thirdparty.php:108
|
3127 |
-
#, php-format
|
3128 |
-
msgid "%s events successfully imported to your website."
|
3129 |
-
msgstr "% s Events wurden erfolgreich in Ihre Website importiert."
|
3130 |
-
|
3131 |
-
#: app/features/ix/thirdparty.php:109
|
3132 |
-
#, fuzzy
|
3133 |
-
#| msgid ""
|
3134 |
-
#| "Although we tried our best to make the events completely compatible with "
|
3135 |
-
#| "MEC but some modification might be needed. We suggest you to edit the "
|
3136 |
-
#| "imported listings one by one on MEC edit event page and make sure thay're "
|
3137 |
-
#| "correct."
|
3138 |
-
msgid ""
|
3139 |
-
"Although we tried our best to make the events completely compatible with MEC "
|
3140 |
-
"but some modification might be needed. We suggest you to edit the imported "
|
3141 |
-
"listings one by one on MEC edit event page and make sure they are correct."
|
3142 |
-
msgstr ""
|
3143 |
-
"Wir haben zwar unser Bestes gegeben, um die Events vollständig kompatibel "
|
3144 |
-
"mit MEC zu machen, aber einige Änderungen sind möglicherweise erforderlich. "
|
3145 |
-
"Wir empfehlen Ihnen, die importierten Einträge nacheinander auf der MEC Edit "
|
3146 |
-
"Event Seite zu bearbeiten und sicherzustellen, dass sie korrekt sind."
|
3147 |
-
|
3148 |
-
#: app/features/labels.php:79 app/features/locations.php:77
|
3149 |
-
#: app/features/organizers.php:77 app/features/speakers.php:78
|
3150 |
-
#, php-format
|
3151 |
-
msgid "← Back to %s"
|
3152 |
-
msgstr ""
|
3153 |
-
|
3154 |
-
#: app/features/labels.php:103 app/features/labels.php:134
|
3155 |
-
#: app/features/labels.php:179
|
3156 |
-
msgid "Color"
|
3157 |
-
msgstr "Farbe"
|
3158 |
-
|
3159 |
-
#: app/features/labels.php:107 app/features/labels.php:136
|
3160 |
-
msgid "Select label color"
|
3161 |
-
msgstr "Wähle Label Farbe"
|
3162 |
-
|
3163 |
-
#: app/features/labels.php:112 app/features/labels.php:139
|
3164 |
-
#: app/features/mec/meta_boxes/display_options.php:38
|
3165 |
-
#: app/features/mec/meta_boxes/display_options.php:177
|
3166 |
-
#: app/features/mec/meta_boxes/display_options.php:335
|
3167 |
-
#: app/features/mec/meta_boxes/display_options.php:513
|
3168 |
-
#: app/features/mec/meta_boxes/display_options.php:563
|
3169 |
-
#: app/features/mec/meta_boxes/display_options.php:727
|
3170 |
-
#: app/features/mec/meta_boxes/display_options.php:877
|
3171 |
-
#: app/features/mec/meta_boxes/display_options.php:934
|
3172 |
-
#: app/features/mec/meta_boxes/display_options.php:1026
|
3173 |
-
#: app/features/mec/meta_boxes/display_options.php:1112
|
3174 |
-
msgid "Style"
|
3175 |
-
msgstr "Style"
|
3176 |
-
|
3177 |
-
#: app/features/labels.php:116 app/features/labels.php:141
|
3178 |
-
msgid "Normal"
|
3179 |
-
msgstr ""
|
3180 |
-
|
3181 |
-
#: app/features/labels.php:117 app/features/labels.php:142
|
3182 |
-
#: app/skins/agenda/render.php:37 app/skins/available_spot/tpl.php:38
|
3183 |
-
#: app/skins/carousel/render.php:44 app/skins/countdown/tpl.php:28
|
3184 |
-
#: app/skins/cover/tpl.php:28 app/skins/daily_view/render.php:48
|
3185 |
-
#: app/skins/grid/render.php:49 app/skins/list/render.php:38
|
3186 |
-
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:107
|
3187 |
-
#: app/skins/monthly_view/calendar_clean.php:107
|
3188 |
-
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:45
|
3189 |
-
#: app/skins/timetable/render.php:33 app/skins/timetable/render.php:139
|
3190 |
-
#: app/skins/weekly_view/render.php:56 app/skins/yearly_view/render.php:48
|
3191 |
-
#, fuzzy
|
3192 |
-
#| msgid "Featured Image"
|
3193 |
-
msgid "Featured"
|
3194 |
-
msgstr "Ausgewähltes Bild"
|
3195 |
-
|
3196 |
-
#: app/features/labels.php:120 app/features/labels.php:145
|
3197 |
-
msgid "You can show featured and canceled events by a different style!"
|
3198 |
-
msgstr ""
|
3199 |
-
|
3200 |
-
#: app/features/labels.php:181 app/features/locations.php:233
|
3201 |
-
#: app/features/organizers.php:207
|
3202 |
-
msgid "Slug"
|
3203 |
-
msgstr "Slug"
|
3204 |
-
|
3205 |
-
#: app/features/labels.php:221 app/features/locations.php:287
|
3206 |
-
#, php-format
|
3207 |
-
msgid "Event %s"
|
3208 |
-
msgstr "Event %s"
|
3209 |
-
|
3210 |
-
#: app/features/locations.php:59 app/features/mec.php:338
|
3211 |
-
#: app/features/mec/dashboard.php:243 app/features/mec/meta_boxes/filter.php:98
|
3212 |
-
#: app/libraries/main.php:4882
|
3213 |
-
msgid "Locations"
|
3214 |
-
msgstr "Orte"
|
3215 |
-
|
3216 |
-
#: app/features/locations.php:105 app/features/locations.php:159
|
3217 |
-
#: app/features/locations.php:231
|
3218 |
-
msgid "Address"
|
3219 |
-
msgstr "Adresse"
|
3220 |
-
|
3221 |
-
#: app/features/locations.php:108 app/features/locations.php:160
|
3222 |
-
msgid "Enter the location address"
|
3223 |
-
msgstr "Geben Sie die Veranstaltungsanschrift ein"
|
3224 |
-
|
3225 |
-
#: app/features/locations.php:122 app/features/locations.php:172
|
3226 |
-
#: app/features/locations.php:325
|
3227 |
-
msgid "Latitude"
|
3228 |
-
msgstr "Breitengrad z.B. 49.0069646 "
|
3229 |
-
|
3230 |
-
#: app/features/locations.php:125 app/features/locations.php:173
|
3231 |
-
msgid "Geo latitude (Optional)"
|
3232 |
-
msgstr "Geologischer Breitengrad (Optional)"
|
3233 |
-
|
3234 |
-
#: app/features/locations.php:130 app/features/locations.php:176
|
3235 |
-
#: app/features/locations.php:326
|
3236 |
-
msgid "Longitude"
|
3237 |
-
msgstr "Längengrad z.B. 8.4118636 "
|
3238 |
-
|
3239 |
-
#: app/features/locations.php:133 app/features/locations.php:177
|
3240 |
-
msgid "Geo longitude (Optional)"
|
3241 |
-
msgstr "Geologischer Längengrad (Optional)"
|
3242 |
-
|
3243 |
-
#: app/features/locations.php:138 app/features/locations.php:180
|
3244 |
-
#: app/features/organizers.php:127 app/features/organizers.php:160
|
3245 |
-
#: app/features/speakers.php:156 app/features/speakers.php:201
|
3246 |
-
msgid "Thumbnail"
|
3247 |
-
msgstr "Miniaturansicht"
|
3248 |
-
|
3249 |
-
#: app/features/locations.php:143 app/features/locations.php:183
|
3250 |
-
#: app/features/organizers.php:132 app/features/organizers.php:163
|
3251 |
-
#: app/features/speakers.php:161 app/features/speakers.php:204
|
3252 |
-
msgid "Upload/Add image"
|
3253 |
-
msgstr "Bild hochladen/hinzufügen"
|
3254 |
-
|
3255 |
-
#: app/features/locations.php:144 app/features/locations.php:184
|
3256 |
-
#: app/features/locations.php:340 app/features/locations.php:347
|
3257 |
-
#: app/features/organizers.php:133 app/features/organizers.php:164
|
3258 |
-
#: app/features/organizers.php:299 app/features/organizers.php:306
|
3259 |
-
#: app/features/speakers.php:162 app/features/speakers.php:205
|
3260 |
-
msgid "Remove image"
|
3261 |
-
msgstr "Bild entfernen"
|
3262 |
-
|
3263 |
-
#: app/features/locations.php:290
|
3264 |
-
msgid "Hide location"
|
3265 |
-
msgstr "Ort verbergen"
|
3266 |
-
|
3267 |
-
#: app/features/locations.php:291
|
3268 |
-
msgid "Insert a new location"
|
3269 |
-
msgstr "Neuen Ort hinzufügen"
|
3270 |
-
|
3271 |
-
#: app/features/locations.php:299
|
3272 |
-
msgid "Choose one of saved locations or insert new one below."
|
3273 |
-
msgstr ""
|
3274 |
-
"Wählen Sie einen der gespeicherten Orte aus, oder fügen Sie einen neuen ein."
|
3275 |
-
|
3276 |
-
#: app/features/locations.php:306
|
3277 |
-
msgid "Location Name"
|
3278 |
-
msgstr "Name Veranstaltungsort"
|
3279 |
-
|
3280 |
-
#: app/features/locations.php:307
|
3281 |
-
msgid "eg. City Hall"
|
3282 |
-
msgstr ""
|
3283 |
-
"z.B. Karlsruhe Schlosshotel oder Frankfurt Allianz oder Dortmund "
|
3284 |
-
"Westfalenhalle"
|
3285 |
-
|
3286 |
-
#: app/features/locations.php:310 app/features/mec/settings.php:612
|
3287 |
-
#: app/widgets/single.php:115
|
3288 |
-
msgid "Event Location"
|
3289 |
-
msgstr "Veranstaltungsort"
|
3290 |
-
|
3291 |
-
#: app/features/locations.php:311
|
3292 |
-
msgid "eg. City hall, Manhattan, New York"
|
3293 |
-
msgstr ""
|
3294 |
-
"z.B. Holiday Inn, Zimmerstraße 8, 76137 Karlsruhe oder Finanzevent, Jenaer "
|
3295 |
-
"Ring 1, 76297 Stutensee"
|
3296 |
-
|
3297 |
-
#: app/features/locations.php:329
|
3298 |
-
#, fuzzy
|
3299 |
-
#| msgid "Longitude"
|
3300 |
-
msgid "Latitude/Longitude"
|
3301 |
-
msgstr "Längengrad z.B. 8.4118636 "
|
3302 |
-
|
3303 |
-
#: app/features/locations.php:330
|
3304 |
-
msgid ""
|
3305 |
-
"If you leave the latitude and longitude empty, Modern Events Calendar tries "
|
3306 |
-
"to convert the location address to geopoint, Latitude and Longitude are the "
|
3307 |
-
"units that represent the coordinates at geographic coordinate system. To "
|
3308 |
-
"make a search, use the name of a place, city, state, or address, or click "
|
3309 |
-
"the location on the map to find lat long coordinates."
|
3310 |
-
msgstr ""
|
3311 |
-
|
3312 |
-
#: app/features/locations.php:330
|
3313 |
-
msgid "Get Latitude and Longitude"
|
3314 |
-
msgstr ""
|
3315 |
-
|
3316 |
-
#: app/features/locations.php:339 app/features/organizers.php:298
|
3317 |
-
msgid "Choose image"
|
3318 |
-
msgstr "Bild wählen"
|
3319 |
-
|
3320 |
-
#: app/features/locations.php:353
|
3321 |
-
msgid "Don't show map in single event page"
|
3322 |
-
msgstr "Karte in Einzelansicht nicht anzeigen"
|
3323 |
-
|
3324 |
-
#: app/features/locations.php:356 app/libraries/main.php:4916
|
3325 |
-
#, fuzzy
|
3326 |
-
#| msgid "Locations"
|
3327 |
-
msgid "Other Locations"
|
3328 |
-
msgstr "Orte"
|
3329 |
-
|
3330 |
-
#: app/features/locations.php:358
|
3331 |
-
#, fuzzy
|
3332 |
-
#| msgid ""
|
3333 |
-
#| "You can select extra organizers in addition to main organizer if you like."
|
3334 |
-
msgid ""
|
3335 |
-
"You can select extra locations in addition to main location if you like."
|
3336 |
-
msgstr ""
|
3337 |
-
"Sie können zusätzliche Veranstalter zusätzlich zum Hauptorganisator "
|
3338 |
-
"auswählen, wenn Sie möchten."
|
3339 |
-
|
3340 |
-
#: app/features/login.php:61 app/features/login.php:63
|
3341 |
-
msgid "<strong>"
|
3342 |
-
msgstr ""
|
3343 |
-
|
3344 |
-
#: app/features/mec.php:161
|
3345 |
-
msgid ""
|
3346 |
-
"Activation faild. Please check your purchase code or license type."
|
3347 |
-
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
3348 |
-
msgstr ""
|
3349 |
-
|
3350 |
-
#: app/features/mec.php:161
|
3351 |
-
msgid "Troubleshooting"
|
3352 |
-
msgstr ""
|
3353 |
-
|
3354 |
-
#: app/features/mec.php:212
|
3355 |
-
msgid ""
|
3356 |
-
"Your options is not in JSON format. Please insert correct options in this "
|
3357 |
-
"field and try again."
|
3358 |
-
msgstr ""
|
3359 |
-
|
3360 |
-
#: app/features/mec.php:219
|
3361 |
-
#, fuzzy
|
3362 |
-
#| msgid "Your booking cannot verify!"
|
3363 |
-
msgid "Your options field can not be empty!"
|
3364 |
-
msgstr "Ihre Buchung kann nicht verifiziert werden!"
|
3365 |
-
|
3366 |
-
#: app/features/mec.php:225
|
3367 |
-
#, fuzzy
|
3368 |
-
#| msgid "Your booking successfully verified."
|
3369 |
-
msgid "Your options imported successfuly."
|
3370 |
-
msgstr "Ihre Buchung wurde erfolgreich verifiziert."
|
3371 |
-
|
3372 |
-
#: app/features/mec.php:318
|
3373 |
-
#, fuzzy
|
3374 |
-
#| msgid "Support"
|
3375 |
-
msgid "MEC - Support"
|
3376 |
-
msgstr "Support"
|
3377 |
-
|
3378 |
-
#: app/features/mec.php:318 app/features/mec/support-page.php:9
|
3379 |
-
#: app/features/mec/support.php:80 app/features/mec/support.php:93
|
3380 |
-
msgid "Support"
|
3381 |
-
msgstr "Support"
|
3382 |
-
|
3383 |
-
#: app/features/mec.php:339 app/features/mec/dashboard.php:250
|
3384 |
-
#: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
|
3385 |
-
#: app/libraries/main.php:4884
|
3386 |
-
msgid "Organizers"
|
3387 |
-
msgstr "Veranstalter"
|
3388 |
-
|
3389 |
-
#: app/features/mec.php:347 app/features/mec.php:367
|
3390 |
-
#: app/features/mec/dashboard.php:236
|
3391 |
-
msgid "Shortcodes"
|
3392 |
-
msgstr "Shortcodes"
|
3393 |
-
|
3394 |
-
#: app/features/mec.php:348
|
3395 |
-
msgid "MEC - Settings"
|
3396 |
-
msgstr "MEC - Einstellungen"
|
3397 |
-
|
3398 |
-
#: app/features/mec.php:349
|
3399 |
-
#, fuzzy
|
3400 |
-
#| msgid "MEC - Settings"
|
3401 |
-
msgid "MEC - Addons"
|
3402 |
-
msgstr "MEC - Einstellungen"
|
3403 |
-
|
3404 |
-
#: app/features/mec.php:349 app/features/mec/addons.php:22
|
3405 |
-
msgid "Addons"
|
3406 |
-
msgstr ""
|
3407 |
-
|
3408 |
-
#: app/features/mec.php:369
|
3409 |
-
msgid "Add Shortcode"
|
3410 |
-
msgstr "Shortcode hinzufügen"
|
3411 |
-
|
3412 |
-
#: app/features/mec.php:370
|
3413 |
-
msgid "Add New Shortcode"
|
3414 |
-
msgstr "Neuen Shortcode hinzufügen"
|
3415 |
-
|
3416 |
-
#: app/features/mec.php:371
|
3417 |
-
msgid "No shortcodes found!"
|
3418 |
-
msgstr "Keine Shortcodes gefunden!"
|
3419 |
-
|
3420 |
-
#: app/features/mec.php:372
|
3421 |
-
msgid "All Shortcodes"
|
3422 |
-
msgstr "Alle Shortcodes"
|
3423 |
-
|
3424 |
-
#: app/features/mec.php:373
|
3425 |
-
msgid "Edit shortcodes"
|
3426 |
-
msgstr "Shortcode ändern"
|
3427 |
-
|
3428 |
-
#: app/features/mec.php:374
|
3429 |
-
msgid "No shortcodes found in Trash!"
|
3430 |
-
msgstr "Keine Shortcodes im Papierkorb gefunden!"
|
3431 |
-
|
3432 |
-
#: app/features/mec.php:427
|
3433 |
-
msgid "Display Options"
|
3434 |
-
msgstr "Darstellungsoptionen"
|
3435 |
-
|
3436 |
-
#: app/features/mec.php:428
|
3437 |
-
msgid "Filter Options"
|
3438 |
-
msgstr "Filteroptionen"
|
3439 |
-
|
3440 |
-
#: app/features/mec.php:430
|
3441 |
-
msgid "Search Form"
|
3442 |
-
msgstr "Suche Formular"
|
3443 |
-
|
3444 |
-
#: app/features/mec.php:827
|
3445 |
-
msgid "Display content's images as Popup"
|
3446 |
-
msgstr ""
|
3447 |
-
|
3448 |
-
#: app/features/mec.php:840
|
3449 |
-
msgid "Single Event Display Method"
|
3450 |
-
msgstr "Single Event Anzeigemethode"
|
3451 |
-
|
3452 |
-
#: app/features/mec.php:845
|
3453 |
-
msgid "Separate Window"
|
3454 |
-
msgstr "Separates Fenster"
|
3455 |
-
|
3456 |
-
#: app/features/mec.php:846
|
3457 |
-
msgid "Modal 1"
|
3458 |
-
msgstr "Modal 1"
|
3459 |
-
|
3460 |
-
#: app/features/mec/addons.php:26 app/features/mec/addons.php:68
|
3461 |
-
#: app/features/mec/dashboard.php:81 app/features/mec/support-page.php:21
|
3462 |
-
msgid "Version"
|
3463 |
-
msgstr "Version"
|
3464 |
-
|
3465 |
-
#: app/features/mec/addons.php:82
|
3466 |
-
msgid "Coming Soon"
|
3467 |
-
msgstr ""
|
3468 |
-
|
3469 |
-
#: app/features/mec/addons.php:93
|
3470 |
-
msgid ""
|
3471 |
-
"<strong>\"file_get_contents\"</strong> and <strong>\"Curl\"</strong> "
|
3472 |
-
"functions are <strong>not activated</strong> on your server. Please contact "
|
3473 |
-
"your host provider in this regard."
|
3474 |
-
msgstr ""
|
3475 |
-
|
3476 |
-
#: app/features/mec/booking.php:70 app/features/mec/messages.php:13
|
3477 |
-
#: app/features/mec/modules.php:23 app/features/mec/notifications.php:12
|
3478 |
-
#: app/features/mec/settings.php:32 app/features/mec/single.php:15
|
3479 |
-
#: app/features/mec/styling.php:35 app/features/mec/support-page.php:34
|
3480 |
-
#, fuzzy
|
3481 |
-
#| msgid "Search %s"
|
3482 |
-
msgid "Search..."
|
3483 |
-
msgstr "Suche %s"
|
3484 |
-
|
3485 |
-
#: app/features/mec/booking.php:72 app/features/mec/booking.php:492
|
3486 |
-
#: app/features/mec/booking.php:572 app/features/mec/booking.php:581
|
3487 |
-
#: app/features/mec/booking.php:591 app/features/mec/booking.php:633
|
3488 |
-
#: app/features/mec/booking.php:647 app/features/mec/messages.php:15
|
3489 |
-
#: app/features/mec/messages.php:51 app/features/mec/messages.php:60
|
3490 |
-
#: app/features/mec/messages.php:94 app/features/mec/messages.php:103
|
3491 |
-
#: app/features/mec/modules.php:25 app/features/mec/modules.php:357
|
3492 |
-
#: app/features/mec/modules.php:367 app/features/mec/modules.php:409
|
3493 |
-
#: app/features/mec/modules.php:423 app/features/mec/notifications.php:14
|
3494 |
-
#: app/features/mec/notifications.php:499
|
3495 |
-
#: app/features/mec/notifications.php:511
|
3496 |
-
#: app/features/mec/notifications.php:607
|
3497 |
-
#: app/features/mec/notifications.php:621 app/features/mec/settings.php:34
|
3498 |
-
#: app/features/mec/settings.php:843 app/features/mec/settings.php:853
|
3499 |
-
#: app/features/mec/settings.php:911 app/features/mec/settings.php:925
|
3500 |
-
#: app/features/mec/single.php:17 app/features/mec/single.php:234
|
3501 |
-
#: app/features/mec/single.php:244 app/features/mec/single.php:286
|
3502 |
-
#: app/features/mec/single.php:300 app/features/mec/styles.php:11
|
3503 |
-
#: app/features/mec/styles.php:31 app/features/mec/styles.php:40
|
3504 |
-
#: app/features/mec/styles.php:77 app/features/mec/styles.php:86
|
3505 |
-
#: app/features/mec/styling.php:37 app/features/mec/styling.php:242
|
3506 |
-
#: app/features/mec/styling.php:251 app/features/mec/styling.php:314
|
3507 |
-
#: app/features/mec/styling.php:323
|
3508 |
-
msgid "Save Changes"
|
3509 |
-
msgstr "Änderungen sichern"
|
3510 |
-
|
3511 |
-
#: app/features/mec/booking.php:96
|
3512 |
-
msgid "Enable booking module"
|
3513 |
-
msgstr "Buchungsmodul aktivieren"
|
3514 |
-
|
3515 |
-
#: app/features/mec/booking.php:97
|
3516 |
-
msgid ""
|
3517 |
-
"After enabling and saving the settings, reloading the page will add 'payment "
|
3518 |
-
"Gateways' to the settings and a new menu item on the Dashboard"
|
3519 |
-
msgstr ""
|
3520 |
-
|
3521 |
-
#: app/features/mec/booking.php:102 app/features/mec/booking.php:107
|
3522 |
-
#: app/features/mec/modules.php:306 app/features/mec/modules.php:311
|
3523 |
-
msgid "Date Format"
|
3524 |
-
msgstr "Datumsformat"
|
3525 |
-
|
3526 |
-
#: app/features/mec/booking.php:108
|
3527 |
-
msgid "Default is Y-m-d"
|
3528 |
-
msgstr "Voreinstellung ist J-M-T"
|
3529 |
-
|
3530 |
-
#: app/features/mec/booking.php:117
|
3531 |
-
#, fuzzy
|
3532 |
-
#| msgid "Default is 6"
|
3533 |
-
msgid "Default is empty"
|
3534 |
-
msgstr "Die Voreinstellung ist 6"
|
3535 |
-
|
3536 |
-
#: app/features/mec/booking.php:120
|
3537 |
-
#, fuzzy
|
3538 |
-
#| msgid "Booking Form"
|
3539 |
-
msgid "Booking Limit"
|
3540 |
-
msgstr "Buchungsformular"
|
3541 |
-
|
3542 |
-
#: app/features/mec/booking.php:121
|
3543 |
-
msgid ""
|
3544 |
-
"Total tickets that a user can book. It is useful if you're providing free "
|
3545 |
-
"tickets. Leave it empty for unlimited booking."
|
3546 |
-
msgstr ""
|
3547 |
-
|
3548 |
-
#: app/features/mec/booking.php:128
|
3549 |
-
msgid "Maximum Dates"
|
3550 |
-
msgstr "Maximale Anzahl von Daten"
|
3551 |
-
|
3552 |
-
#: app/features/mec/booking.php:130
|
3553 |
-
msgid "Default is 6"
|
3554 |
-
msgstr "Die Voreinstellung ist 6"
|
3555 |
-
|
3556 |
-
#: app/features/mec/booking.php:134 app/features/mec/booking.php:139
|
3557 |
-
#, fuzzy
|
3558 |
-
#| msgid "Booking Form"
|
3559 |
-
msgid "Show Booking Form Interval"
|
3560 |
-
msgstr "Buchungsformular"
|
3561 |
-
|
3562 |
-
#: app/features/mec/booking.php:136
|
3563 |
-
msgid "Minutes (e.g 5)"
|
3564 |
-
msgstr ""
|
3565 |
-
|
3566 |
-
#: app/features/mec/booking.php:140
|
3567 |
-
msgid ""
|
3568 |
-
"You can show booking form only at certain time before event start. If you "
|
3569 |
-
"set this option to 30 then booking form will open only 30 minutes before "
|
3570 |
-
"starting the event!"
|
3571 |
-
msgstr ""
|
3572 |
-
|
3573 |
-
#: app/features/mec/booking.php:147 app/features/mec/booking.php:157
|
3574 |
-
msgid "Thank You Page"
|
3575 |
-
msgstr "Danke Seite"
|
3576 |
-
|
3577 |
-
#: app/features/mec/booking.php:158
|
3578 |
-
msgid ""
|
3579 |
-
"User redirects to this page after booking. Leave it empty if you want to "
|
3580 |
-
"disable it."
|
3581 |
-
msgstr ""
|
3582 |
-
"Benutzer werden auf diese Seite nach der Buchung weitergeleitet. Lassen Sie "
|
3583 |
-
"es leer, wenn Sie es deaktivieren möchten."
|
3584 |
-
|
3585 |
-
#: app/features/mec/booking.php:169
|
3586 |
-
msgid "Enable Express Attendees Form"
|
3587 |
-
msgstr "Aktivieren Sie das Express-Teilnehmerformular"
|
3588 |
-
|
3589 |
-
#: app/features/mec/booking.php:173 app/modules/booking/steps/form.php:52
|
3590 |
-
msgid "Attendees Form"
|
3591 |
-
msgstr "Teilnahmeformular"
|
3592 |
-
|
3593 |
-
#: app/features/mec/booking.php:174
|
3594 |
-
msgid ""
|
3595 |
-
"Users are able to apply first attendee information for other attendees in "
|
3596 |
-
"the booking form."
|
3597 |
-
msgstr ""
|
3598 |
-
"Benutzer können erste Teilnehmerinformationen für andere Teilnehmer im "
|
3599 |
-
"Buchungsformular anwenden."
|
3600 |
-
|
3601 |
-
#: app/features/mec/booking.php:187
|
3602 |
-
#, fuzzy
|
3603 |
-
#| msgid "Download Invoice"
|
3604 |
-
msgid "Enable Invoice"
|
3605 |
-
msgstr "Download Rechnung"
|
3606 |
-
|
3607 |
-
#: app/features/mec/booking.php:198
|
3608 |
-
#, fuzzy
|
3609 |
-
#| msgid "Enable booking notification"
|
3610 |
-
msgid "Enable Booking for Ongoing Events"
|
3611 |
-
msgstr "Buchungsbenachrichtigung aktivieren"
|
3612 |
-
|
3613 |
-
#: app/features/mec/booking.php:203
|
3614 |
-
msgid "Email verification"
|
3615 |
-
msgstr "Email-Verifizierung"
|
3616 |
-
|
3617 |
-
#: app/features/mec/booking.php:209
|
3618 |
-
msgid "Auto verification for free bookings"
|
3619 |
-
msgstr "Automatische Verifizierung für kostenlose Buchungen"
|
3620 |
-
|
3621 |
-
#: app/features/mec/booking.php:218
|
3622 |
-
msgid "Auto verification for paid bookings"
|
3623 |
-
msgstr "Automatische Verifizierung für kostenpflichtige Buchungen"
|
3624 |
-
|
3625 |
-
#: app/features/mec/booking.php:222 app/features/mec/notifications.php:151
|
3626 |
-
#: app/libraries/main.php:573
|
3627 |
-
msgid "Booking Confirmation"
|
3628 |
-
msgstr "Buchungsbestätigung"
|
3629 |
-
|
3630 |
-
#: app/features/mec/booking.php:228
|
3631 |
-
msgid "Auto confirmation for free bookings"
|
3632 |
-
msgstr "Automatische Bestätigung für kostenlose Buchungen"
|
3633 |
-
|
3634 |
-
#: app/features/mec/booking.php:237
|
3635 |
-
msgid "Auto confirmation for paid bookings"
|
3636 |
-
msgstr "Automatische Bestätigung für kostenpflichtige Buchungen"
|
3637 |
-
|
3638 |
-
#: app/features/mec/booking.php:256
|
3639 |
-
msgid "Enable coupons module"
|
3640 |
-
msgstr "Gutscheinmodul aktivieren"
|
3641 |
-
|
3642 |
-
#: app/features/mec/booking.php:258
|
3643 |
-
msgid ""
|
3644 |
-
"After enabling and saving the settings,, you should reload the page to see a "
|
3645 |
-
"new menu on the Dashboard > Booking"
|
3646 |
-
msgstr ""
|
3647 |
-
|
3648 |
-
#: app/features/mec/booking.php:266 app/libraries/main.php:552
|
3649 |
-
msgid "Taxes / Fees"
|
3650 |
-
msgstr "Steuern/Gebühren"
|
3651 |
-
|
3652 |
-
#: app/features/mec/booking.php:274
|
3653 |
-
msgid "Enable taxes / fees module"
|
3654 |
-
msgstr "Modul für Gebühren/Steuern aktivieren"
|
3655 |
-
|
3656 |
-
#: app/features/mec/booking.php:279
|
3657 |
-
msgid "Add Fee"
|
3658 |
-
msgstr "Gebühr hinzufügen"
|
3659 |
-
|
3660 |
-
#: app/features/mec/booking.php:343 app/libraries/main.php:553
|
3661 |
-
msgid "Ticket Variations & Options"
|
3662 |
-
msgstr ""
|
3663 |
-
|
3664 |
-
#: app/features/mec/booking.php:351
|
3665 |
-
#, fuzzy
|
3666 |
-
#| msgid "Enable coupons module"
|
3667 |
-
msgid "Enable ticket options module"
|
3668 |
-
msgstr "Gutscheinmodul aktivieren"
|
3669 |
-
|
3670 |
-
#: app/features/mec/booking.php:356
|
3671 |
-
msgid "Add Variation / Option"
|
3672 |
-
msgstr ""
|
3673 |
-
|
3674 |
-
#: app/features/mec/booking.php:559
|
3675 |
-
msgid "Enable Organizer Payment Module"
|
3676 |
-
msgstr ""
|
3677 |
-
|
3678 |
-
#: app/features/mec/booking.php:563
|
3679 |
-
#, fuzzy
|
3680 |
-
#| msgid "Organizer Tel"
|
3681 |
-
msgid "Organizer Payment"
|
3682 |
-
msgstr "Organisator Telefon"
|
3683 |
-
|
3684 |
-
#: app/features/mec/booking.php:564
|
3685 |
-
msgid ""
|
3686 |
-
"By enabling this module, organizers are able to insert their own payment "
|
3687 |
-
"credentials for enabled gateways per event and receive the payments directly!"
|
3688 |
-
msgstr ""
|
3689 |
-
|
3690 |
-
#: app/features/mec/booking.php:611 app/features/mec/messages.php:78
|
3691 |
-
#: app/features/mec/modules.php:387 app/features/mec/notifications.php:585
|
3692 |
-
#: app/features/mec/settings.php:889 app/features/mec/single.php:264
|
3693 |
-
#: app/features/mec/styles.php:60 app/features/mec/styling.php:296
|
3694 |
-
msgid "Saved"
|
3695 |
-
msgstr "Gesichert"
|
3696 |
-
|
3697 |
-
#: app/features/mec/booking.php:612 app/features/mec/messages.php:79
|
3698 |
-
#: app/features/mec/modules.php:388 app/features/mec/notifications.php:586
|
3699 |
-
#: app/features/mec/settings.php:890 app/features/mec/single.php:265
|
3700 |
-
#: app/features/mec/styles.php:61 app/features/mec/styling.php:297
|
3701 |
-
msgid "Settings Saved!"
|
3702 |
-
msgstr ""
|
3703 |
-
|
3704 |
-
#: app/features/mec/booking.php:638 app/features/mec/modules.php:414
|
3705 |
-
#: app/features/mec/notifications.php:612 app/features/mec/settings.php:916
|
3706 |
-
#: app/features/mec/single.php:291
|
3707 |
-
msgid "Please Refresh Page"
|
3708 |
-
msgstr "Bitte Seiten Refresh vornehmen"
|
3709 |
-
|
3710 |
-
#: app/features/mec/dashboard.php:60
|
3711 |
-
#, php-format
|
3712 |
-
msgid "Welcome %s"
|
3713 |
-
msgstr "Willkommen %s"
|
3714 |
-
|
3715 |
-
#: app/features/mec/dashboard.php:63
|
3716 |
-
#, php-format
|
3717 |
-
msgid "%s - Most Powerful & Easy to Use Events Management System"
|
3718 |
-
msgstr ""
|
3719 |
-
|
3720 |
-
#: app/features/mec/dashboard.php:63
|
3721 |
-
#, fuzzy
|
3722 |
-
#| msgid "Modern Events Calendar"
|
3723 |
-
msgid "Modern Events Calendar (Lite)"
|
3724 |
-
msgstr "Moderner Event Kalender "
|
3725 |
-
|
3726 |
-
#: app/features/mec/dashboard.php:65 app/libraries/factory.php:196
|
3727 |
-
msgctxt "plugin rate"
|
3728 |
-
msgid "Rate the plugin ★★★★★"
|
3729 |
-
msgstr ""
|
3730 |
-
|
3731 |
-
#: app/features/mec/dashboard.php:70
|
3732 |
-
#, fuzzy
|
3733 |
-
#| msgid "Update %s"
|
3734 |
-
msgid "Update"
|
3735 |
-
msgstr "Update %s"
|
3736 |
-
|
3737 |
-
#: app/features/mec/dashboard.php:92
|
3738 |
-
#, php-format
|
3739 |
-
msgid ""
|
3740 |
-
"You're using %s version of Modern Events Calendar. To use advanced booking "
|
3741 |
-
"system, modern skins like Agenda, Timetable, Masonry, Yearly View, Available "
|
3742 |
-
"Spots, etc you should upgrade to the Pro version."
|
3743 |
-
msgstr ""
|
3744 |
-
|
3745 |
-
#: app/features/mec/dashboard.php:92
|
3746 |
-
msgid "lite"
|
3747 |
-
msgstr ""
|
3748 |
-
|
3749 |
-
#: app/features/mec/dashboard.php:95 app/features/mec/support.php:126
|
3750 |
-
msgid "GO PREMIUM"
|
3751 |
-
msgstr ""
|
3752 |
-
|
3753 |
-
#: app/features/mec/dashboard.php:98
|
3754 |
-
#, php-format
|
3755 |
-
msgid ""
|
3756 |
-
"Easily get a discount coupon by rating us on %s or following and reposting "
|
3757 |
-
"us on social media. Just send a screenshot to %s and you'll receive the %s"
|
3758 |
-
msgstr ""
|
3759 |
-
|
3760 |
-
#: app/features/mec/dashboard.php:98
|
3761 |
-
#, fuzzy
|
3762 |
-
#| msgid "Address"
|
3763 |
-
msgid "WordPress"
|
3764 |
-
msgstr "Adresse"
|
3765 |
-
|
3766 |
-
#: app/features/mec/dashboard.php:98
|
3767 |
-
msgid "Copouns!"
|
3768 |
-
msgstr ""
|
3769 |
-
|
3770 |
-
#: app/features/mec/dashboard.php:127
|
3771 |
-
#, fuzzy
|
3772 |
-
#| msgid "Modern Events Calendar"
|
3773 |
-
msgid "Getting started with Modern Events Calendar"
|
3774 |
-
msgstr "Moderner Event Kalender "
|
3775 |
-
|
3776 |
-
#: app/features/mec/dashboard.php:128
|
3777 |
-
msgid ""
|
3778 |
-
"In this short video, you can learn how to make an event and put a calendar "
|
3779 |
-
"on your website. Please watch this 2 minutes video to the end."
|
3780 |
-
msgstr ""
|
3781 |
-
|
3782 |
-
#: app/features/mec/dashboard.php:144
|
3783 |
-
#, fuzzy
|
3784 |
-
#| msgid "MEC Activation"
|
3785 |
-
msgid "MEC Activate"
|
3786 |
-
msgstr "MEC Aktivierung"
|
3787 |
-
|
3788 |
-
#: app/features/mec/dashboard.php:150
|
3789 |
-
msgid ""
|
3790 |
-
"In order to use all plugin features and options, please enter your purchase "
|
3791 |
-
"code."
|
3792 |
-
msgstr ""
|
3793 |
-
|
3794 |
-
#: app/features/mec/dashboard.php:208
|
3795 |
-
#, fuzzy
|
3796 |
-
#| msgid "MEC Activation"
|
3797 |
-
msgid "Activate Addons"
|
3798 |
-
msgstr "MEC Aktivierung"
|
3799 |
-
|
3800 |
-
#: app/features/mec/dashboard.php:217
|
3801 |
-
msgid "You cannot access this section."
|
3802 |
-
msgstr ""
|
3803 |
-
|
3804 |
-
#: app/features/mec/dashboard.php:261 app/features/mec/settings.php:350
|
3805 |
-
msgid "Upcoming Events"
|
3806 |
-
msgstr "Bevorstehende Events"
|
3807 |
-
|
3808 |
-
#: app/features/mec/dashboard.php:285
|
3809 |
-
msgid "Popular Gateways"
|
3810 |
-
msgstr "Beliebte Zahlungsgateways"
|
3811 |
-
|
3812 |
-
#: app/features/mec/dashboard.php:339
|
3813 |
-
msgid "Total Bookings"
|
3814 |
-
msgstr "Gesamte Buchungen"
|
3815 |
-
|
3816 |
-
#: app/features/mec/dashboard.php:366
|
3817 |
-
msgid "This Month"
|
3818 |
-
msgstr "Diesen Monat"
|
3819 |
-
|
3820 |
-
#: app/features/mec/dashboard.php:367
|
3821 |
-
msgid "Last Month"
|
3822 |
-
msgstr "Letzten Monat"
|
3823 |
-
|
3824 |
-
#: app/features/mec/dashboard.php:368
|
3825 |
-
msgid "This Year"
|
3826 |
-
msgstr "Diese Jahr"
|
3827 |
-
|
3828 |
-
#: app/features/mec/dashboard.php:369
|
3829 |
-
msgid "Last Year"
|
3830 |
-
msgstr "Letztes Jahr"
|
3831 |
-
|
3832 |
-
#: app/features/mec/dashboard.php:381
|
3833 |
-
msgid "Bar"
|
3834 |
-
msgstr "Bar"
|
3835 |
-
|
3836 |
-
#: app/features/mec/dashboard.php:382
|
3837 |
-
msgid "Line"
|
3838 |
-
msgstr "Linie"
|
3839 |
-
|
3840 |
-
#: app/features/mec/dashboard.php:384
|
3841 |
-
msgid "Filter"
|
3842 |
-
msgstr "Filter"
|
3843 |
-
|
3844 |
-
#: app/features/mec/dashboard.php:400
|
3845 |
-
#, php-format
|
3846 |
-
msgid "Total Sells (%s)"
|
3847 |
-
msgstr "Alle Verkäufe (%s)"
|
3848 |
-
|
3849 |
-
#: app/features/mec/dashboard.php:421
|
3850 |
-
msgid "Change Log"
|
3851 |
-
msgstr "Änderungsprotokoll"
|
3852 |
-
|
3853 |
-
#: app/features/mec/ie.php:21
|
3854 |
-
msgid ""
|
3855 |
-
"Insert your backup files below and press import to restore your site's "
|
3856 |
-
"options to the last backup."
|
3857 |
-
msgstr ""
|
3858 |
-
|
3859 |
-
#: app/features/mec/ie.php:22
|
3860 |
-
msgid ""
|
3861 |
-
"WARNING! Restoring backup will overwrite all of your current option values. "
|
3862 |
-
"Caution Indeed."
|
3863 |
-
msgstr ""
|
3864 |
-
|
3865 |
-
#: app/features/mec/ie.php:25
|
3866 |
-
msgid "Please paste your options here"
|
3867 |
-
msgstr ""
|
3868 |
-
|
3869 |
-
#: app/features/mec/ie.php:27
|
3870 |
-
#, fuzzy
|
3871 |
-
#| msgid "Import Options"
|
3872 |
-
msgid "Import Settings"
|
3873 |
-
msgstr "Import Optionen"
|
3874 |
-
|
3875 |
-
#: app/features/mec/ie.php:37
|
3876 |
-
#, fuzzy
|
3877 |
-
#| msgid "Download Invoice"
|
3878 |
-
msgid "Download Settings"
|
3879 |
-
msgstr "Download Rechnung\n"
|
3880 |
-
|
3881 |
-
#: app/features/mec/messages.php:28 app/features/mec/support.php:66
|
3882 |
-
#: app/libraries/main.php:789
|
3883 |
-
msgid "Messages"
|
3884 |
-
msgstr "Nachrichten"
|
3885 |
-
|
3886 |
-
#: app/features/mec/messages.php:31
|
3887 |
-
msgid ""
|
3888 |
-
"You can change some MEC messages here simply. For example if you like to "
|
3889 |
-
"change \"REGISTER\" button label, you can do it here. By the Way, if your "
|
3890 |
-
"website is a multilingual website, we recommend you to change the messages/"
|
3891 |
-
"phrases from language files."
|
3892 |
-
msgstr ""
|
3893 |
-
"Sie können hier einige MEC-Nachrichten ändern. Zum Beispiel, wenn du das "
|
3894 |
-
"Label \"REGISTER\" ändern möchtest, kannst du es hier machen. Auf dem Weg, "
|
3895 |
-
"wenn Ihre Website eine mehrsprachige Website ist, empfehlen wir Ihnen, die "
|
3896 |
-
"Nachrichten / Phrasen aus Sprachdateien zu ändern."
|
3897 |
-
|
3898 |
-
#: app/features/mec/meta_boxes/display_options.php:22
|
3899 |
-
msgid "Skin"
|
3900 |
-
msgstr "Skin"
|
3901 |
-
|
3902 |
-
#: app/features/mec/meta_boxes/display_options.php:40
|
3903 |
-
#: app/features/mec/meta_boxes/display_options.php:179
|
3904 |
-
#: app/features/mec/meta_boxes/display_options.php:565
|
3905 |
-
#: app/features/mec/meta_boxes/display_options.php:879
|
3906 |
-
#: app/features/mec/settings.php:214 app/features/mec/settings.php:238
|
3907 |
-
#: app/features/mec/settings.php:247 app/features/mec/settings.php:288
|
3908 |
-
#: app/features/mec/settings.php:312 app/features/mec/settings.php:321
|
3909 |
-
msgid "Classic"
|
3910 |
-
msgstr "Klassisch"
|
3911 |
-
|
3912 |
-
#: app/features/mec/meta_boxes/display_options.php:41
|
3913 |
-
#: app/features/mec/meta_boxes/display_options.php:181
|
3914 |
-
#: app/features/mec/settings.php:239 app/features/mec/settings.php:249
|
3915 |
-
#: app/features/mec/settings.php:313 app/features/mec/settings.php:323
|
3916 |
-
msgid "Minimal"
|
3917 |
-
msgstr "Minimal"
|
3918 |
-
|
3919 |
-
#: app/features/mec/meta_boxes/display_options.php:42
|
3920 |
-
#: app/features/mec/meta_boxes/display_options.php:182
|
3921 |
-
#: app/features/mec/meta_boxes/display_options.php:515
|
3922 |
-
#: app/features/mec/meta_boxes/display_options.php:567
|
3923 |
-
#: app/features/mec/meta_boxes/display_options.php:729
|
3924 |
-
#: app/features/mec/meta_boxes/display_options.php:881
|
3925 |
-
#: app/features/mec/settings.php:216 app/features/mec/settings.php:229
|
3926 |
-
#: app/features/mec/settings.php:240 app/features/mec/settings.php:250
|
3927 |
-
#: app/features/mec/settings.php:290 app/features/mec/settings.php:303
|
3928 |
-
#: app/features/mec/settings.php:314 app/features/mec/settings.php:324
|
3929 |
-
msgid "Modern"
|
3930 |
-
msgstr "Modern"
|
3931 |
-
|
3932 |
-
#: app/features/mec/meta_boxes/display_options.php:43
|
3933 |
-
#: app/features/mec/settings.php:241 app/features/mec/settings.php:315
|
3934 |
-
msgid "Standard"
|
3935 |
-
msgstr "Standard"
|
3936 |
-
|
3937 |
-
#: app/features/mec/meta_boxes/display_options.php:44
|
3938 |
-
#: app/features/mec/settings.php:242 app/features/mec/settings.php:316
|
3939 |
-
msgid "Accordion"
|
3940 |
-
msgstr "Accordion"
|
3941 |
-
|
3942 |
-
#: app/features/mec/meta_boxes/display_options.php:50
|
3943 |
-
#: app/features/mec/meta_boxes/display_options.php:191
|
3944 |
-
#: app/features/mec/meta_boxes/display_options.php:343
|
3945 |
-
#: app/features/mec/meta_boxes/display_options.php:622
|
3946 |
-
#: app/features/mec/meta_boxes/display_options.php:655
|
3947 |
-
#: app/features/mec/meta_boxes/display_options.php:802
|
3948 |
-
#: app/features/mec/meta_boxes/display_options.php:1037
|
3949 |
-
#: app/features/mec/meta_boxes/display_options.php:1124
|
3950 |
-
msgid "Today"
|
3951 |
-
msgstr "Heute"
|
3952 |
-
|
3953 |
-
#: app/features/mec/meta_boxes/display_options.php:51
|
3954 |
-
#: app/features/mec/meta_boxes/display_options.php:192
|
3955 |
-
#: app/features/mec/meta_boxes/display_options.php:344
|
3956 |
-
#: app/features/mec/meta_boxes/display_options.php:623
|
3957 |
-
#: app/features/mec/meta_boxes/display_options.php:656
|
3958 |
-
#: app/features/mec/meta_boxes/display_options.php:803
|
3959 |
-
#: app/features/mec/meta_boxes/display_options.php:1038
|
3960 |
-
#: app/features/mec/meta_boxes/display_options.php:1125
|
3961 |
-
msgid "Tomorrow"
|
3962 |
-
msgstr "Morgen"
|
3963 |
-
|
3964 |
-
#: app/features/mec/meta_boxes/display_options.php:52
|
3965 |
-
#: app/features/mec/meta_boxes/display_options.php:193
|
3966 |
-
#: app/features/mec/meta_boxes/display_options.php:345
|
3967 |
-
#: app/features/mec/meta_boxes/display_options.php:398
|
3968 |
-
#: app/features/mec/meta_boxes/display_options.php:575
|
3969 |
-
#: app/features/mec/meta_boxes/display_options.php:624
|
3970 |
-
#: app/features/mec/meta_boxes/display_options.php:657
|
3971 |
-
#: app/features/mec/meta_boxes/display_options.php:692
|
3972 |
-
#: app/features/mec/meta_boxes/display_options.php:738
|
3973 |
-
#: app/features/mec/meta_boxes/display_options.php:804
|
3974 |
-
#: app/features/mec/meta_boxes/display_options.php:1039
|
3975 |
-
#: app/features/mec/meta_boxes/display_options.php:1126
|
3976 |
-
msgid "Start of Current Month"
|
3977 |
-
msgstr "Mit Beginn des laufenden Monats"
|
3978 |
-
|
3979 |
-
#: app/features/mec/meta_boxes/display_options.php:53
|
3980 |
-
#: app/features/mec/meta_boxes/display_options.php:194
|
3981 |
-
#: app/features/mec/meta_boxes/display_options.php:346
|
3982 |
-
#: app/features/mec/meta_boxes/display_options.php:399
|
3983 |
-
#: app/features/mec/meta_boxes/display_options.php:576
|
3984 |
-
#: app/features/mec/meta_boxes/display_options.php:625
|
3985 |
-
#: app/features/mec/meta_boxes/display_options.php:658
|
3986 |
-
#: app/features/mec/meta_boxes/display_options.php:693
|
3987 |
-
#: app/features/mec/meta_boxes/display_options.php:739
|
3988 |
-
#: app/features/mec/meta_boxes/display_options.php:805
|
3989 |
-
#: app/features/mec/meta_boxes/display_options.php:1040
|
3990 |
-
#: app/features/mec/meta_boxes/display_options.php:1127
|
3991 |
-
msgid "Start of Next Month"
|
3992 |
-
msgstr "Mit Beginn des kommenden Monats"
|
3993 |
-
|
3994 |
-
#: app/features/mec/meta_boxes/display_options.php:54
|
3995 |
-
#: app/features/mec/meta_boxes/display_options.php:195
|
3996 |
-
#: app/features/mec/meta_boxes/display_options.php:347
|
3997 |
-
#: app/features/mec/meta_boxes/display_options.php:400
|
3998 |
-
#: app/features/mec/meta_boxes/display_options.php:523
|
3999 |
-
#: app/features/mec/meta_boxes/display_options.php:577
|
4000 |
-
#: app/features/mec/meta_boxes/display_options.php:626
|
4001 |
-
#: app/features/mec/meta_boxes/display_options.php:659
|
4002 |
-
#: app/features/mec/meta_boxes/display_options.php:694
|
4003 |
-
#: app/features/mec/meta_boxes/display_options.php:740
|
4004 |
-
#: app/features/mec/meta_boxes/display_options.php:806
|
4005 |
-
#: app/features/mec/meta_boxes/display_options.php:1041
|
4006 |
-
#: app/features/mec/meta_boxes/display_options.php:1128
|
4007 |
-
msgid "On a certain date"
|
4008 |
-
msgstr "An einem bestimmten Tag"
|
4009 |
-
|
4010 |
-
#: app/features/mec/meta_boxes/display_options.php:57
|
4011 |
-
#: app/features/mec/meta_boxes/display_options.php:198
|
4012 |
-
#: app/features/mec/meta_boxes/display_options.php:350
|
4013 |
-
#: app/features/mec/meta_boxes/display_options.php:403
|
4014 |
-
#: app/features/mec/meta_boxes/display_options.php:526
|
4015 |
-
#: app/features/mec/meta_boxes/display_options.php:580
|
4016 |
-
#: app/features/mec/meta_boxes/display_options.php:629
|
4017 |
-
#: app/features/mec/meta_boxes/display_options.php:663
|
4018 |
-
#: app/features/mec/meta_boxes/display_options.php:697
|
4019 |
-
#: app/features/mec/meta_boxes/display_options.php:743
|
4020 |
-
#: app/features/mec/meta_boxes/display_options.php:809
|
4021 |
-
#: app/features/mec/meta_boxes/display_options.php:1044
|
4022 |
-
#: app/features/mec/meta_boxes/display_options.php:1131
|
4023 |
-
#, php-format
|
4024 |
-
msgid "eg. %s"
|
4025 |
-
msgstr "z.B. %s"
|
4026 |
-
|
4027 |
-
#: app/features/mec/meta_boxes/display_options.php:61
|
4028 |
-
#: app/features/mec/meta_boxes/display_options.php:65
|
4029 |
-
#: app/features/mec/meta_boxes/display_options.php:72
|
4030 |
-
#: app/features/mec/meta_boxes/display_options.php:78
|
4031 |
-
#: app/features/mec/meta_boxes/display_options.php:85
|
4032 |
-
#: app/features/mec/meta_boxes/display_options.php:91
|
4033 |
-
#: app/features/mec/meta_boxes/display_options.php:98
|
4034 |
-
#: app/features/mec/meta_boxes/display_options.php:102
|
4035 |
-
#: app/features/mec/meta_boxes/display_options.php:109
|
4036 |
-
#: app/features/mec/meta_boxes/display_options.php:114
|
4037 |
-
#: app/features/mec/meta_boxes/display_options.php:202
|
4038 |
-
#: app/features/mec/meta_boxes/display_options.php:206
|
4039 |
-
#: app/features/mec/meta_boxes/display_options.php:213
|
4040 |
-
#: app/features/mec/meta_boxes/display_options.php:218
|
4041 |
-
#: app/features/mec/meta_boxes/display_options.php:225
|
4042 |
-
#: app/features/mec/meta_boxes/display_options.php:230
|
4043 |
-
#: app/features/mec/meta_boxes/display_options.php:237
|
4044 |
-
#: app/features/mec/meta_boxes/display_options.php:243
|
4045 |
-
#: app/features/mec/meta_boxes/display_options.php:250
|
4046 |
-
#: app/features/mec/meta_boxes/display_options.php:254
|
4047 |
-
#: app/features/mec/meta_boxes/display_options.php:261
|
4048 |
-
#: app/features/mec/meta_boxes/display_options.php:267
|
4049 |
-
#: app/features/mec/meta_boxes/display_options.php:274
|
4050 |
-
#: app/features/mec/meta_boxes/display_options.php:278
|
4051 |
-
#: app/features/mec/meta_boxes/display_options.php:354
|
4052 |
-
#: app/features/mec/meta_boxes/display_options.php:359
|
4053 |
-
#: app/features/mec/meta_boxes/display_options.php:530
|
4054 |
-
#: app/features/mec/meta_boxes/display_options.php:535
|
4055 |
-
#: app/features/mec/meta_boxes/display_options.php:813
|
4056 |
-
#: app/features/mec/meta_boxes/display_options.php:818
|
4057 |
-
#: app/features/mec/meta_boxes/display_options.php:885
|
4058 |
-
#: app/features/mec/meta_boxes/display_options.php:891
|
4059 |
-
#: app/features/mec/meta_boxes/display_options.php:898
|
4060 |
-
#: app/features/mec/meta_boxes/display_options.php:903
|
4061 |
-
#: app/features/mec/meta_boxes/display_options.php:910
|
4062 |
-
#: app/features/mec/meta_boxes/display_options.php:914
|
4063 |
-
#: app/features/mec/meta_boxes/display_options.php:942
|
4064 |
-
#: app/features/mec/meta_boxes/display_options.php:946
|
4065 |
-
#: app/features/mec/meta_boxes/display_options.php:953
|
4066 |
-
#: app/features/mec/meta_boxes/display_options.php:957
|
4067 |
-
#: app/features/mec/meta_boxes/display_options.php:964
|
4068 |
-
#: app/features/mec/meta_boxes/display_options.php:970
|
4069 |
-
#: app/features/mec/meta_boxes/display_options.php:1000
|
4070 |
-
#: app/features/mec/meta_boxes/display_options.php:1005
|
4071 |
-
#: app/features/mec/meta_boxes/display_options.php:1048
|
4072 |
-
#: app/features/mec/meta_boxes/display_options.php:1054
|
4073 |
-
#: app/features/mec/meta_boxes/display_options.php:1061
|
4074 |
-
#: app/features/mec/meta_boxes/display_options.php:1065
|
4075 |
-
#: app/features/mec/meta_boxes/display_options.php:1072
|
4076 |
-
#: app/features/mec/meta_boxes/display_options.php:1076
|
4077 |
-
#: app/features/mec/meta_boxes/display_options.php:1135
|
4078 |
-
#: app/features/mec/meta_boxes/display_options.php:1141
|
4079 |
-
#: app/features/mec/meta_boxes/display_options.php:1148
|
4080 |
-
#: app/features/mec/meta_boxes/display_options.php:1154
|
4081 |
-
#: app/features/mec/meta_boxes/display_options.php:1161
|
4082 |
-
#: app/features/mec/meta_boxes/display_options.php:1167
|
4083 |
-
#: app/features/mec/meta_boxes/display_options.php:1174
|
4084 |
-
#: app/features/mec/meta_boxes/display_options.php:1180
|
4085 |
-
#: app/features/mec/meta_boxes/display_options.php:1187
|
4086 |
-
#: app/features/mec/meta_boxes/display_options.php:1193
|
4087 |
-
msgid "Date Formats"
|
4088 |
-
msgstr "Datumsformate"
|
4089 |
-
|
4090 |
-
#: app/features/mec/meta_boxes/display_options.php:66
|
4091 |
-
#: app/features/mec/meta_boxes/display_options.php:255
|
4092 |
-
msgid "Default value is \"M d Y\""
|
4093 |
-
msgstr "Standard Wert ist \"M T J\""
|
4094 |
-
|
4095 |
-
#: app/features/mec/meta_boxes/display_options.php:79
|
4096 |
-
msgid "Default values are d, M and l"
|
4097 |
-
msgstr "Standard Werte sind T, M und J"
|
4098 |
-
|
4099 |
-
#: app/features/mec/meta_boxes/display_options.php:92
|
4100 |
-
#: app/features/mec/meta_boxes/display_options.php:244
|
4101 |
-
#: app/features/mec/meta_boxes/display_options.php:268
|
4102 |
-
#: app/features/mec/meta_boxes/display_options.php:1142
|
4103 |
-
#: app/features/mec/meta_boxes/display_options.php:1155
|
4104 |
-
#: app/features/mec/meta_boxes/display_options.php:1168
|
4105 |
-
#: app/features/mec/meta_boxes/display_options.php:1181
|
4106 |
-
#: app/features/mec/meta_boxes/display_options.php:1194
|
4107 |
-
msgid "Default values are d, F and l"
|
4108 |
-
msgstr ""
|
4109 |
-
"Standardwerte sind Tag, Monat als ganzes Wort und Wochentag als ganzes Wort"
|
4110 |
-
|
4111 |
-
#: app/features/mec/meta_boxes/display_options.php:103
|
4112 |
-
msgid "Default value is \"M d\""
|
4113 |
-
msgstr "Standard Wert ist \"M T\""
|
4114 |
-
|
4115 |
-
#: app/features/mec/meta_boxes/display_options.php:115
|
4116 |
-
#, fuzzy
|
4117 |
-
#| msgid "Default values are d and F"
|
4118 |
-
msgid "TDefault values are d and F"
|
4119 |
-
msgstr "Die Standardwerte sind d and F"
|
4120 |
-
|
4121 |
-
#: app/features/mec/meta_boxes/display_options.php:122
|
4122 |
-
#: app/features/mec/meta_boxes/display_options.php:297
|
4123 |
-
#: app/features/mec/meta_boxes/display_options.php:367
|
4124 |
-
#: app/features/mec/meta_boxes/display_options.php:543
|
4125 |
-
#: app/features/mec/meta_boxes/display_options.php:585
|
4126 |
-
#: app/features/mec/meta_boxes/display_options.php:668
|
4127 |
-
#: app/features/mec/meta_boxes/display_options.php:702
|
4128 |
-
#: app/features/mec/meta_boxes/display_options.php:748
|
4129 |
-
#: app/features/mec/meta_boxes/display_options.php:1093
|
4130 |
-
#: app/features/mec/meta_boxes/display_options.php:1201
|
4131 |
-
msgid "eg. 6"
|
4132 |
-
msgstr "z.B. 6"
|
4133 |
-
|
4134 |
-
#: app/features/mec/meta_boxes/display_options.php:126
|
4135 |
-
#: app/features/mec/meta_boxes/display_options.php:301
|
4136 |
-
#: app/features/mec/meta_boxes/display_options.php:371
|
4137 |
-
#: app/features/mec/meta_boxes/display_options.php:862
|
4138 |
-
msgid "Load More Button"
|
4139 |
-
msgstr "Button \"Weitere Veranstaltungen Laden\""
|
4140 |
-
|
4141 |
-
#: app/features/mec/meta_boxes/display_options.php:136
|
4142 |
-
#: app/features/mec/meta_boxes/display_options.php:381
|
4143 |
-
msgid "Show Month Divider"
|
4144 |
-
msgstr "Zeige Monatsteilung"
|
4145 |
-
|
4146 |
-
#: app/features/mec/meta_boxes/display_options.php:146
|
4147 |
-
#: app/features/mec/meta_boxes/display_options.php:311
|
4148 |
-
#, fuzzy
|
4149 |
-
#| msgid "Show Google Maps on event page"
|
4150 |
-
msgid "Show Map on top"
|
4151 |
-
msgstr "Google Maps auf der Veranstaltungsseite anzeigen"
|
4152 |
-
|
4153 |
-
#: app/features/mec/meta_boxes/display_options.php:163
|
4154 |
-
#, fuzzy
|
4155 |
-
#| msgid "Show Month Divider"
|
4156 |
-
msgid "Toggle for Month Divider"
|
4157 |
-
msgstr "Zeige Monatsteilung"
|
4158 |
-
|
4159 |
-
#: app/features/mec/meta_boxes/display_options.php:180
|
4160 |
-
#: app/features/mec/meta_boxes/display_options.php:337
|
4161 |
-
#: app/features/mec/meta_boxes/display_options.php:419
|
4162 |
-
#: app/features/mec/meta_boxes/display_options.php:566
|
4163 |
-
#: app/features/mec/meta_boxes/display_options.php:730
|
4164 |
-
#: app/features/mec/meta_boxes/display_options.php:880
|
4165 |
-
#: app/features/mec/settings.php:215 app/features/mec/settings.php:230
|
4166 |
-
#: app/features/mec/settings.php:248 app/features/mec/settings.php:289
|
4167 |
-
#: app/features/mec/settings.php:304 app/features/mec/settings.php:322
|
4168 |
-
msgid "Clean"
|
4169 |
-
msgstr "Clean"
|
4170 |
-
|
4171 |
-
#: app/features/mec/meta_boxes/display_options.php:183
|
4172 |
-
#: app/features/mec/meta_boxes/display_options.php:421
|
4173 |
-
#: app/features/mec/meta_boxes/display_options.php:569
|
4174 |
-
#: app/features/mec/settings.php:218 app/features/mec/settings.php:251
|
4175 |
-
#: app/features/mec/settings.php:292 app/features/mec/settings.php:325
|
4176 |
-
msgid "Simple"
|
4177 |
-
msgstr "Schlicht"
|
4178 |
-
|
4179 |
-
#: app/features/mec/meta_boxes/display_options.php:184
|
4180 |
-
msgid "Colorful"
|
4181 |
-
msgstr "Farbenfroh"
|
4182 |
-
|
4183 |
-
#: app/features/mec/meta_boxes/display_options.php:185
|
4184 |
-
#: app/features/mec/meta_boxes/display_options.php:420
|
4185 |
-
#: app/features/mec/meta_boxes/display_options.php:568
|
4186 |
-
#: app/features/mec/settings.php:217 app/features/mec/settings.php:253
|
4187 |
-
#: app/features/mec/settings.php:291 app/features/mec/settings.php:327
|
4188 |
-
msgid "Novel"
|
4189 |
-
msgstr ""
|
4190 |
-
|
4191 |
-
#: app/features/mec/meta_boxes/display_options.php:207
|
4192 |
-
#, fuzzy
|
4193 |
-
#| msgid "Default value is \"d F Y\""
|
4194 |
-
msgid "Default value is \"d F Y"
|
4195 |
-
msgstr "Standardwert ist \"d (Tag) F Y (Jahr)\" "
|
4196 |
-
|
4197 |
-
#: app/features/mec/meta_boxes/display_options.php:219
|
4198 |
-
msgid "Default values are d and F"
|
4199 |
-
msgstr "Die Standardwerte sind d and F"
|
4200 |
-
|
4201 |
-
#: app/features/mec/meta_boxes/display_options.php:231
|
4202 |
-
msgid "Default values are d and M"
|
4203 |
-
msgstr "Standardwerte sind T und M"
|
4204 |
-
|
4205 |
-
#: app/features/mec/meta_boxes/display_options.php:279
|
4206 |
-
msgid "Default value is \"d F Y\""
|
4207 |
-
msgstr "Standardwert ist \"d (Tag) F Y (Jahr)\" "
|
4208 |
-
|
4209 |
-
#: app/features/mec/meta_boxes/display_options.php:285
|
4210 |
-
#: app/features/mec/meta_boxes/display_options.php:1083
|
4211 |
-
msgid "Count in row"
|
4212 |
-
msgstr "Zeilen zählen"
|
4213 |
-
|
4214 |
-
#: app/features/mec/meta_boxes/display_options.php:330
|
4215 |
-
#: app/features/mec/meta_boxes/display_options.php:508
|
4216 |
-
#: app/features/mec/meta_boxes/display_options.php:615
|
4217 |
-
#: app/features/mec/meta_boxes/display_options.php:722
|
4218 |
-
#: app/features/mec/meta_boxes/display_options.php:995
|
4219 |
-
#, php-format
|
4220 |
-
msgid "%s is required to use this skin."
|
4221 |
-
msgstr ""
|
4222 |
-
|
4223 |
-
#: app/features/mec/meta_boxes/display_options.php:360
|
4224 |
-
#: app/features/mec/meta_boxes/display_options.php:536
|
4225 |
-
msgid "Default values are l and F j"
|
4226 |
-
msgstr "Die Standardwerte sind I und F j"
|
4227 |
-
|
4228 |
-
#: app/features/mec/meta_boxes/display_options.php:407
|
4229 |
-
msgid "Default View"
|
4230 |
-
msgstr "Standardansicht"
|
4231 |
-
|
4232 |
-
#: app/features/mec/meta_boxes/display_options.php:409
|
4233 |
-
#: app/features/mec/meta_boxes/display_options.php:430
|
4234 |
-
#: app/libraries/main.php:329 app/libraries/main.php:1571
|
4235 |
-
#: app/libraries/main.php:1596
|
4236 |
-
msgid "List View"
|
4237 |
-
msgstr "Listenansicht"
|
4238 |
-
|
4239 |
-
#: app/features/mec/meta_boxes/display_options.php:410
|
4240 |
-
#: app/features/mec/meta_boxes/display_options.php:440
|
4241 |
-
#: app/libraries/main.php:333 app/libraries/main.php:1565
|
4242 |
-
#: app/libraries/main.php:1590
|
4243 |
-
msgid "Yearly View"
|
4244 |
-
msgstr "Jahresansicht"
|
4245 |
-
|
4246 |
-
#: app/features/mec/meta_boxes/display_options.php:411
|
4247 |
-
#: app/features/mec/meta_boxes/display_options.php:462
|
4248 |
-
msgid "Monthly/Calendar View"
|
4249 |
-
msgstr "Monatliche Kalenderansicht"
|
4250 |
-
|
4251 |
-
#: app/features/mec/meta_boxes/display_options.php:412
|
4252 |
-
#: app/features/mec/meta_boxes/display_options.php:472
|
4253 |
-
#: app/libraries/main.php:336 app/libraries/main.php:1567
|
4254 |
-
#: app/libraries/main.php:1592
|
4255 |
-
msgid "Weekly View"
|
4256 |
-
msgstr "Wochenansicht"
|
4257 |
-
|
4258 |
-
#: app/features/mec/meta_boxes/display_options.php:413
|
4259 |
-
#: app/features/mec/meta_boxes/display_options.php:482
|
4260 |
-
#: app/libraries/main.php:335 app/libraries/main.php:1568
|
4261 |
-
#: app/libraries/main.php:1593
|
4262 |
-
msgid "Daily View"
|
4263 |
-
msgstr "Tagesansicht"
|
4264 |
-
|
4265 |
-
#: app/features/mec/meta_boxes/display_options.php:417
|
4266 |
-
#, fuzzy
|
4267 |
-
#| msgid "Modern Style"
|
4268 |
-
msgid "Monthly Style"
|
4269 |
-
msgstr "Moderner Stil"
|
4270 |
-
|
4271 |
-
#: app/features/mec/meta_boxes/display_options.php:457
|
4272 |
-
#, php-format
|
4273 |
-
msgid "%s is required to use <b>Yearly View</b> skin."
|
4274 |
-
msgstr ""
|
4275 |
-
|
4276 |
-
#: app/features/mec/meta_boxes/display_options.php:490
|
4277 |
-
msgid "The price shows only in List View."
|
4278 |
-
msgstr ""
|
4279 |
-
|
4280 |
-
#: app/features/mec/meta_boxes/display_options.php:493
|
4281 |
-
msgid "Display Event Price"
|
4282 |
-
msgstr ""
|
4283 |
-
|
4284 |
-
#: app/features/mec/meta_boxes/display_options.php:521
|
4285 |
-
msgid "Start of Current Year"
|
4286 |
-
msgstr "Mit Beginn des laufenden Jahres"
|
4287 |
-
|
4288 |
-
#: app/features/mec/meta_boxes/display_options.php:522
|
4289 |
-
msgid "Start of Next Year"
|
4290 |
-
msgstr "Start des nächsten Jahres"
|
4291 |
-
|
4292 |
-
#: app/features/mec/meta_boxes/display_options.php:542
|
4293 |
-
#: app/features/mec/meta_boxes/display_options.php:584
|
4294 |
-
#: app/features/mec/meta_boxes/display_options.php:667
|
4295 |
-
#: app/features/mec/meta_boxes/display_options.php:701
|
4296 |
-
#: app/features/mec/meta_boxes/display_options.php:747
|
4297 |
-
msgid "Events per day"
|
4298 |
-
msgstr "Veranstaltungen pro Tag"
|
4299 |
-
|
4300 |
-
#: app/features/mec/meta_boxes/display_options.php:547
|
4301 |
-
#: app/features/mec/meta_boxes/display_options.php:589
|
4302 |
-
#: app/features/mec/meta_boxes/display_options.php:672
|
4303 |
-
#: app/features/mec/meta_boxes/display_options.php:706
|
4304 |
-
#: app/features/mec/meta_boxes/display_options.php:776
|
4305 |
-
msgid "Next/Previous Buttons"
|
4306 |
-
msgstr "Schaltfläche \"Nächste/Letzte\""
|
4307 |
-
|
4308 |
-
#: app/features/mec/meta_boxes/display_options.php:555
|
4309 |
-
msgid "For showing next/previous year navigation."
|
4310 |
-
msgstr "Navigation anzeigen zum nächsten/letzten Jahr"
|
4311 |
-
|
4312 |
-
#: app/features/mec/meta_boxes/display_options.php:599
|
4313 |
-
#, fuzzy
|
4314 |
-
#| msgid "Text"
|
4315 |
-
msgid "Uppercase Text"
|
4316 |
-
msgstr "Text"
|
4317 |
-
|
4318 |
-
#: app/features/mec/meta_boxes/display_options.php:607
|
4319 |
-
#: app/features/mec/meta_boxes/display_options.php:680
|
4320 |
-
#: app/features/mec/meta_boxes/display_options.php:714
|
4321 |
-
#: app/features/mec/meta_boxes/display_options.php:784
|
4322 |
-
msgid "For showing next/previous month navigation."
|
4323 |
-
msgstr "Für die Navigation zum nächsten/letzten Monat"
|
4324 |
-
|
4325 |
-
#: app/features/mec/meta_boxes/display_options.php:633
|
4326 |
-
msgid "Maximum events"
|
4327 |
-
msgstr "Veranstaltungsmaximum"
|
4328 |
-
|
4329 |
-
#: app/features/mec/meta_boxes/display_options.php:634
|
4330 |
-
msgid "eg. 200"
|
4331 |
-
msgstr "z.B. 200"
|
4332 |
-
|
4333 |
-
#: app/features/mec/meta_boxes/display_options.php:638
|
4334 |
-
msgid "Geolocation"
|
4335 |
-
msgstr ""
|
4336 |
-
|
4337 |
-
#: app/features/mec/meta_boxes/display_options.php:646
|
4338 |
-
msgid "The geolocation feature works only in secure (https) websites."
|
4339 |
-
msgstr ""
|
4340 |
-
|
4341 |
-
#: app/features/mec/meta_boxes/display_options.php:690
|
4342 |
-
#: app/features/mec/meta_boxes/display_options.php:736
|
4343 |
-
msgid "Current Week"
|
4344 |
-
msgstr "Aktuelle Woche"
|
4345 |
-
|
4346 |
-
#: app/features/mec/meta_boxes/display_options.php:691
|
4347 |
-
#: app/features/mec/meta_boxes/display_options.php:737
|
4348 |
-
msgid "Next Week"
|
4349 |
-
msgstr "Nächste Woche"
|
4350 |
-
|
4351 |
-
#: app/features/mec/meta_boxes/display_options.php:752
|
4352 |
-
msgid "Number of Days"
|
4353 |
-
msgstr ""
|
4354 |
-
|
4355 |
-
#: app/features/mec/meta_boxes/display_options.php:760
|
4356 |
-
#, fuzzy
|
4357 |
-
#| msgid "Start"
|
4358 |
-
msgid "Week Start"
|
4359 |
-
msgstr "Start"
|
4360 |
-
|
4361 |
-
#: app/features/mec/meta_boxes/display_options.php:762
|
4362 |
-
#, fuzzy
|
4363 |
-
#| msgid "Inherit from global options"
|
4364 |
-
msgid "Inherite from WordPress options"
|
4365 |
-
msgstr "Aus den globalen Einstellungen übernehmen"
|
4366 |
-
|
4367 |
-
#: app/features/mec/meta_boxes/display_options.php:819
|
4368 |
-
#: app/features/mec/meta_boxes/display_options.php:1006
|
4369 |
-
msgid "Default values are j and F"
|
4370 |
-
msgstr "Standardwerte sind j und F"
|
4371 |
-
|
4372 |
-
#: app/features/mec/meta_boxes/display_options.php:826
|
4373 |
-
msgid "eg. 24"
|
4374 |
-
msgstr "z.B. 24"
|
4375 |
-
|
4376 |
-
#: app/features/mec/meta_boxes/display_options.php:829
|
4377 |
-
msgid "Filter By"
|
4378 |
-
msgstr "Filtern nach"
|
4379 |
-
|
4380 |
-
#: app/features/mec/meta_boxes/display_options.php:831
|
4381 |
-
msgid "None"
|
4382 |
-
msgstr ""
|
4383 |
-
|
4384 |
-
#: app/features/mec/meta_boxes/display_options.php:840
|
4385 |
-
msgid "Fit to row"
|
4386 |
-
msgstr ""
|
4387 |
-
|
4388 |
-
#: app/features/mec/meta_boxes/display_options.php:841
|
4389 |
-
msgid ""
|
4390 |
-
"Items are arranged into rows. Rows progress vertically. Similar to what you "
|
4391 |
-
"would expect from a layout that uses CSS floats."
|
4392 |
-
msgstr ""
|
4393 |
-
|
4394 |
-
#: app/features/mec/meta_boxes/display_options.php:851
|
4395 |
-
msgid "Convert Masonry to Grid"
|
4396 |
-
msgstr ""
|
4397 |
-
|
4398 |
-
#: app/features/mec/meta_boxes/display_options.php:852
|
4399 |
-
msgid "For using this option, your events should come with image"
|
4400 |
-
msgstr ""
|
4401 |
-
|
4402 |
-
#: app/features/mec/meta_boxes/display_options.php:892
|
4403 |
-
msgid "Default values are d, M and Y"
|
4404 |
-
msgstr "Standardwerte sind T, M und J"
|
4405 |
-
|
4406 |
-
#: app/features/mec/meta_boxes/display_options.php:904
|
4407 |
-
msgid "Default values are \"F d\" and l"
|
4408 |
-
msgstr ""
|
4409 |
-
"Standardwerte sind Monat als ganzes Wort, Tag des Monates mit führender Null "
|
4410 |
-
"und ausgeschriebener Wochentag"
|
4411 |
-
|
4412 |
-
#: app/features/mec/meta_boxes/display_options.php:915
|
4413 |
-
msgid "Default value is \"l, F d Y\""
|
4414 |
-
msgstr ""
|
4415 |
-
"Standardwerte sind ausgeschriebener Wochentag, Monat als ganzes Wort, Tag "
|
4416 |
-
"des Monates mit führender 0, Jahr"
|
4417 |
-
|
4418 |
-
#: app/features/mec/meta_boxes/display_options.php:936
|
4419 |
-
msgid "Style 1"
|
4420 |
-
msgstr "Stil 1"
|
4421 |
-
|
4422 |
-
#: app/features/mec/meta_boxes/display_options.php:937
|
4423 |
-
msgid "Style 2"
|
4424 |
-
msgstr "Stil 2"
|
4425 |
-
|
4426 |
-
#: app/features/mec/meta_boxes/display_options.php:938
|
4427 |
-
msgid "Style 3"
|
4428 |
-
msgstr "Stil 3"
|
4429 |
-
|
4430 |
-
#: app/features/mec/meta_boxes/display_options.php:947
|
4431 |
-
#: app/features/mec/meta_boxes/display_options.php:958
|
4432 |
-
msgid "Default value is \"j F Y\""
|
4433 |
-
msgstr "Standardwert ist \"j F Y\""
|
4434 |
-
|
4435 |
-
#: app/features/mec/meta_boxes/display_options.php:971
|
4436 |
-
msgid "Default values are j, F and Y"
|
4437 |
-
msgstr ""
|
4438 |
-
"Standardwerte sind j ( Tag des Monats ohne führende Nullen), F und Y (Jahr)"
|
4439 |
-
|
4440 |
-
#: app/features/mec/meta_boxes/display_options.php:979
|
4441 |
-
#: app/features/mec/meta_boxes/display_options.php:1014
|
4442 |
-
msgid " -- Next Upcoming Event -- "
|
4443 |
-
msgstr "-- Nächste Veranstaltung--"
|
4444 |
-
|
4445 |
-
#: app/features/mec/meta_boxes/display_options.php:986
|
4446 |
-
msgid "Background Color"
|
4447 |
-
msgstr "Hintergrund Farbe"
|
4448 |
-
|
4449 |
-
#: app/features/mec/meta_boxes/display_options.php:1028
|
4450 |
-
#: app/features/mec/meta_boxes/display_options.php:1114
|
4451 |
-
msgid "Type 1"
|
4452 |
-
msgstr "Typ 1"
|
4453 |
-
|
4454 |
-
#: app/features/mec/meta_boxes/display_options.php:1029
|
4455 |
-
#: app/features/mec/meta_boxes/display_options.php:1115
|
4456 |
-
msgid "Type 2"
|
4457 |
-
msgstr "Typ 2"
|
4458 |
-
|
4459 |
-
#: app/features/mec/meta_boxes/display_options.php:1030
|
4460 |
-
#: app/features/mec/meta_boxes/display_options.php:1116
|
4461 |
-
msgid "Type 3"
|
4462 |
-
msgstr "Type 3"
|
4463 |
-
|
4464 |
-
#: app/features/mec/meta_boxes/display_options.php:1031
|
4465 |
-
#: app/features/mec/meta_boxes/display_options.php:1117
|
4466 |
-
msgid "Type 4"
|
4467 |
-
msgstr "Typ 4"
|
4468 |
-
|
4469 |
-
#: app/features/mec/meta_boxes/display_options.php:1055
|
4470 |
-
msgid "Default values are d, F and Y"
|
4471 |
-
msgstr "Standardwert ist d (Tag) F und Y (Jahr)"
|
4472 |
-
|
4473 |
-
#: app/features/mec/meta_boxes/display_options.php:1066
|
4474 |
-
#: app/features/mec/meta_boxes/display_options.php:1077
|
4475 |
-
msgid "Default value is \"M d, Y\""
|
4476 |
-
msgstr "Standardwert ist \"M T, J\""
|
4477 |
-
|
4478 |
-
#: app/features/mec/meta_boxes/display_options.php:1096
|
4479 |
-
#: app/features/mec/meta_boxes/display_options.php:1204
|
4480 |
-
msgid "Auto Play Time"
|
4481 |
-
msgstr "Auto Play Time"
|
4482 |
-
|
4483 |
-
#: app/features/mec/meta_boxes/display_options.php:1097
|
4484 |
-
#: app/features/mec/meta_boxes/display_options.php:1205
|
4485 |
-
msgid "eg. 3000 default is 3 second"
|
4486 |
-
msgstr "z.B. Voreinstellung 3000 sind 3 Sekunden"
|
4487 |
-
|
4488 |
-
#: app/features/mec/meta_boxes/display_options.php:1101
|
4489 |
-
#, fuzzy
|
4490 |
-
#| msgid "Archive Page Skin"
|
4491 |
-
msgid "Archive Link"
|
4492 |
-
msgstr "Skin Seite Archiv"
|
4493 |
-
|
4494 |
-
#: app/features/mec/meta_boxes/display_options.php:1105
|
4495 |
-
#, fuzzy
|
4496 |
-
#| msgid "Text"
|
4497 |
-
msgid "Head Text"
|
4498 |
-
msgstr "Text"
|
4499 |
-
|
4500 |
-
#: app/features/mec/meta_boxes/display_options.php:1118
|
4501 |
-
msgid "Type 5"
|
4502 |
-
msgstr "Typ 5"
|
4503 |
-
|
4504 |
-
#: app/features/mec/meta_boxes/filter.php:66
|
4505 |
-
msgid "No filter options applicable for this skin."
|
4506 |
-
msgstr "Keine Filteroptionen verfügbar für dieses Skin"
|
4507 |
-
|
4508 |
-
#: app/features/mec/meta_boxes/filter.php:82
|
4509 |
-
msgid "Choose your desired categories for filtering the events."
|
4510 |
-
msgstr "Wählen Sie die gewünschten Kategorien zum Filtern aus"
|
4511 |
-
|
4512 |
-
#: app/features/mec/meta_boxes/filter.php:99
|
4513 |
-
msgid "Choose your desired locations for filtering the events."
|
4514 |
-
msgstr "Wählen Sie die gewünschten Orte zum Filtern aus"
|
4515 |
-
|
4516 |
-
#: app/features/mec/meta_boxes/filter.php:116
|
4517 |
-
msgid "Choose your desired organizers for filtering the events."
|
4518 |
-
msgstr "Wählen Sie die gewünschten Veranstalter zum Filtern aus"
|
4519 |
-
|
4520 |
-
#: app/features/mec/meta_boxes/filter.php:133
|
4521 |
-
msgid "Choose your desired labels for filtering the events."
|
4522 |
-
msgstr "Wählen Sie den gewünschten Status zum Filtern aus"
|
4523 |
-
|
4524 |
-
#: app/features/mec/meta_boxes/filter.php:150
|
4525 |
-
msgid "Insert your desired tags comma separated."
|
4526 |
-
msgstr "Geben Sie die gewünschten Tags (Schlagworte) durch Komma getrennt ein"
|
4527 |
-
|
4528 |
-
#: app/features/mec/meta_boxes/filter.php:155
|
4529 |
-
msgid "Authors"
|
4530 |
-
msgstr "Autoren"
|
4531 |
-
|
4532 |
-
#: app/features/mec/meta_boxes/filter.php:156
|
4533 |
-
msgid "Choose your desired authors for filtering the events."
|
4534 |
-
msgstr "Wählen Sie die gewünschten Autoren zum Filtern aus"
|
4535 |
-
|
4536 |
-
#: app/features/mec/meta_boxes/filter.php:177
|
4537 |
-
msgid "Dates"
|
4538 |
-
msgstr "Daten"
|
4539 |
-
|
4540 |
-
#: app/features/mec/meta_boxes/filter.php:181
|
4541 |
-
msgid "Include Expired Events"
|
4542 |
-
msgstr "Inklusive abgelaufene Events"
|
4543 |
-
|
4544 |
-
#: app/features/mec/meta_boxes/filter.php:188
|
4545 |
-
msgid ""
|
4546 |
-
"You have ability to include past/expired events if you like so it will show "
|
4547 |
-
"upcoming and expired events based on start date that you selected."
|
4548 |
-
msgstr ""
|
4549 |
-
"Sie haben die Möglichkeit, vergangene / abgelaufene Events einzuschließen, "
|
4550 |
-
"wenn Sie es mögen, so werden die kommenden und abgelaufenen Events auf der "
|
4551 |
-
"Grundlage des Starttermins angezeigt, das Sie ausgewählt haben."
|
4552 |
-
|
4553 |
-
#: app/features/mec/meta_boxes/filter.php:195
|
4554 |
-
msgid "Show Only Expired Events"
|
4555 |
-
msgstr "Nur abgelaufene Events anzeigen"
|
4556 |
-
|
4557 |
-
#: app/features/mec/meta_boxes/filter.php:202
|
4558 |
-
msgid "It shows only expired/past events."
|
4559 |
-
msgstr "Zeigt nur abgelaufene / vergangene Events."
|
4560 |
-
|
4561 |
-
#: app/features/mec/meta_boxes/filter.php:210
|
4562 |
-
msgid "Show Only Ongoing Events"
|
4563 |
-
msgstr "Zeigt nur laufende Events"
|
4564 |
-
|
4565 |
-
#: app/features/mec/meta_boxes/filter.php:217
|
4566 |
-
msgid "It shows only ongoing events on List and Grid skins."
|
4567 |
-
msgstr "Zeigt nur laufende Events auf Listen und Raster/Grid Skins"
|
4568 |
-
|
4569 |
-
#: app/features/mec/meta_boxes/search_form.php:13
|
4570 |
-
msgid "Show Search Form"
|
4571 |
-
msgstr "Such Formular anzeigen"
|
4572 |
-
|
4573 |
-
#: app/features/mec/meta_boxes/search_form.php:52
|
4574 |
-
#: app/features/mec/meta_boxes/search_form.php:114
|
4575 |
-
#: app/features/mec/meta_boxes/search_form.php:176
|
4576 |
-
#: app/features/mec/meta_boxes/search_form.php:237
|
4577 |
-
#: app/features/mec/meta_boxes/search_form.php:298
|
4578 |
-
#: app/features/mec/meta_boxes/search_form.php:359
|
4579 |
-
#: app/features/mec/meta_boxes/search_form.php:420
|
4580 |
-
#: app/features/mec/meta_boxes/search_form.php:474
|
4581 |
-
#: app/features/mec/meta_boxes/search_form.php:535
|
4582 |
-
#: app/features/mec/meta_boxes/search_form.php:596
|
4583 |
-
#: app/features/mec/settings.php:738 app/features/mec/single.php:217
|
4584 |
-
#: app/features/speakers.php:59 app/features/speakers.php:252
|
4585 |
-
#: app/libraries/main.php:4887 app/libraries/skins.php:886
|
4586 |
-
msgid "Speaker"
|
4587 |
-
msgstr ""
|
4588 |
-
|
4589 |
-
#: app/features/mec/meta_boxes/search_form.php:59
|
4590 |
-
#: app/features/mec/meta_boxes/search_form.php:121
|
4591 |
-
#: app/features/mec/meta_boxes/search_form.php:183
|
4592 |
-
#: app/features/mec/meta_boxes/search_form.php:244
|
4593 |
-
#: app/features/mec/meta_boxes/search_form.php:305
|
4594 |
-
#: app/features/mec/meta_boxes/search_form.php:366
|
4595 |
-
#: app/features/mec/meta_boxes/search_form.php:427
|
4596 |
-
#: app/features/mec/meta_boxes/search_form.php:481
|
4597 |
-
#: app/features/mec/meta_boxes/search_form.php:542
|
4598 |
-
#: app/features/mec/meta_boxes/search_form.php:603
|
4599 |
-
#: app/features/mec/settings.php:745 app/features/mec/single.php:226
|
4600 |
-
#: app/libraries/skins.php:912
|
4601 |
-
#, fuzzy
|
4602 |
-
#| msgid "Tags"
|
4603 |
-
msgid "Tag"
|
4604 |
-
msgstr "Schlagworte"
|
4605 |
-
|
4606 |
-
#: app/features/mec/meta_boxes/search_form.php:73
|
4607 |
-
#: app/features/mec/meta_boxes/search_form.php:135
|
4608 |
-
#: app/features/mec/meta_boxes/search_form.php:197
|
4609 |
-
#: app/features/mec/meta_boxes/search_form.php:258
|
4610 |
-
#: app/features/mec/meta_boxes/search_form.php:319
|
4611 |
-
#: app/features/mec/meta_boxes/search_form.php:380
|
4612 |
-
#: app/features/mec/meta_boxes/search_form.php:495
|
4613 |
-
#: app/features/mec/meta_boxes/search_form.php:556
|
4614 |
-
#: app/features/mec/meta_boxes/search_form.php:617
|
4615 |
-
msgid "Month Filter"
|
4616 |
-
msgstr "Monatsfilter"
|
4617 |
-
|
4618 |
-
#: app/features/mec/meta_boxes/search_form.php:80
|
4619 |
-
#: app/features/mec/meta_boxes/search_form.php:142
|
4620 |
-
#: app/features/mec/meta_boxes/search_form.php:204
|
4621 |
-
#: app/features/mec/meta_boxes/search_form.php:265
|
4622 |
-
#: app/features/mec/meta_boxes/search_form.php:326
|
4623 |
-
#: app/features/mec/meta_boxes/search_form.php:387
|
4624 |
-
#: app/features/mec/meta_boxes/search_form.php:441
|
4625 |
-
#: app/features/mec/meta_boxes/search_form.php:502
|
4626 |
-
#: app/features/mec/meta_boxes/search_form.php:563
|
4627 |
-
#: app/features/mec/meta_boxes/search_form.php:624
|
4628 |
-
msgid "Text Search"
|
4629 |
-
msgstr "Textsuche"
|
4630 |
-
|
4631 |
-
#: app/features/mec/meta_boxes/search_form.php:83
|
4632 |
-
#: app/features/mec/meta_boxes/search_form.php:145
|
4633 |
-
#: app/features/mec/meta_boxes/search_form.php:207
|
4634 |
-
#: app/features/mec/meta_boxes/search_form.php:268
|
4635 |
-
#: app/features/mec/meta_boxes/search_form.php:329
|
4636 |
-
#: app/features/mec/meta_boxes/search_form.php:390
|
4637 |
-
#: app/features/mec/meta_boxes/search_form.php:444
|
4638 |
-
#: app/features/mec/meta_boxes/search_form.php:505
|
4639 |
-
#: app/features/mec/meta_boxes/search_form.php:566
|
4640 |
-
#: app/features/mec/meta_boxes/search_form.php:627
|
4641 |
-
msgid "Text Input"
|
4642 |
-
msgstr "Text eingeben"
|
4643 |
-
|
4644 |
-
#: app/features/mec/meta_boxes/search_form.php:635
|
4645 |
-
#: app/features/mec/meta_boxes/search_form.php:641
|
4646 |
-
#: app/features/mec/meta_boxes/search_form.php:647
|
4647 |
-
#: app/features/mec/meta_boxes/search_form.php:653
|
4648 |
-
#: app/features/mec/meta_boxes/search_form.php:659
|
4649 |
-
#: app/features/mec/meta_boxes/search_form.php:665
|
4650 |
-
msgid "No Search Options"
|
4651 |
-
msgstr "Keine Suchoptionen"
|
4652 |
-
|
4653 |
-
#: app/features/mec/modules.php:43
|
4654 |
-
#, fuzzy
|
4655 |
-
#| msgid "No Search Options"
|
4656 |
-
msgid "Speakers Options"
|
4657 |
-
msgstr "Keine Suchoptionen"
|
4658 |
-
|
4659 |
-
#: app/features/mec/modules.php:49
|
4660 |
-
#, fuzzy
|
4661 |
-
#| msgid "Enable taxes / fees module"
|
4662 |
-
msgid "Enable speakers feature"
|
4663 |
-
msgstr "Modul für Gebühren/Steuern aktivieren"
|
4664 |
-
|
4665 |
-
#: app/features/mec/modules.php:53
|
4666 |
-
msgid ""
|
4667 |
-
"Enable this option to have speaker in Hourly Schedule in Single. Refresh "
|
4668 |
-
"after enabling it to see the Speakers menu under MEC dashboard."
|
4669 |
-
msgstr ""
|
4670 |
-
|
4671 |
-
#: app/features/mec/modules.php:58
|
4672 |
-
msgid ""
|
4673 |
-
"After enabling and saving the settings, you should reload the page to see a "
|
4674 |
-
"new menu on the Dashboard > MEC"
|
4675 |
-
msgstr ""
|
4676 |
-
|
4677 |
-
#: app/features/mec/modules.php:75
|
4678 |
-
msgid "Show Google Maps on event page"
|
4679 |
-
msgstr "Google Maps auf der Veranstaltungsseite anzeigen"
|
4680 |
-
|
4681 |
-
#: app/features/mec/modules.php:80 app/features/mec/modules.php:238
|
4682 |
-
#: app/features/mec/settings.php:775 app/features/mec/settings.php:780
|
4683 |
-
msgid "API Key"
|
4684 |
-
msgstr "API Schlüssel"
|
4685 |
-
|
4686 |
-
#: app/features/mec/modules.php:86 app/features/mec/settings.php:781
|
4687 |
-
#: app/features/mec/settings.php:794
|
4688 |
-
msgid "Required!"
|
4689 |
-
msgstr "Erforderlich (Pflichtfeld)"
|
4690 |
-
|
4691 |
-
#: app/features/mec/modules.php:93 app/features/mec/modules.php:102
|
4692 |
-
msgid "Zoom level"
|
4693 |
-
msgstr "Zoom"
|
4694 |
-
|
4695 |
-
#: app/features/mec/modules.php:103
|
4696 |
-
msgid ""
|
4697 |
-
"For Google Maps module in single event page. In Google Maps skin, it will "
|
4698 |
-
"caculate the zoom level automatically based on event boundaries."
|
4699 |
-
msgstr ""
|
4700 |
-
"Für das Google Maps-Modul in der Singleevent-Seite. Im Google Maps-Skin wird "
|
4701 |
-
"es die Zoom-Ebene automatisch kalkulieren, basierend auf den Eventort "
|
4702 |
-
"Angrenzungen"
|
4703 |
-
|
4704 |
-
#: app/features/mec/modules.php:110
|
4705 |
-
msgid "Google Maps Style"
|
4706 |
-
msgstr "Google Maps Stil"
|
4707 |
-
|
4708 |
-
#: app/features/mec/modules.php:114 app/features/mec/single.php:88
|
4709 |
-
msgid "Default"
|
4710 |
-
msgstr "Standardeinstellung"
|
4711 |
-
|
4712 |
-
#: app/features/mec/modules.php:122
|
4713 |
-
msgid "Direction on single event"
|
4714 |
-
msgstr "Richtung auf einzelne Veranstaltung"
|
4715 |
-
|
4716 |
-
#: app/features/mec/modules.php:126
|
4717 |
-
msgid "Simple Method"
|
4718 |
-
msgstr "Einfache Methode"
|
4719 |
-
|
4720 |
-
#: app/features/mec/modules.php:127
|
4721 |
-
msgid "Advanced Method"
|
4722 |
-
msgstr "Fortgeschrittene Methode"
|
4723 |
-
|
4724 |
-
#: app/features/mec/modules.php:132 app/features/mec/modules.php:137
|
4725 |
-
msgid "Lightbox Date Format"
|
4726 |
-
msgstr "Leuchtkasten Datumsformat"
|
4727 |
-
|
4728 |
-
#: app/features/mec/modules.php:138
|
4729 |
-
msgid "Default value is M d Y"
|
4730 |
-
msgstr "Standardwert ist M T J"
|
4731 |
-
|
4732 |
-
#: app/features/mec/modules.php:145 app/features/mec/modules.php:153
|
4733 |
-
msgid "Google Maps API"
|
4734 |
-
msgstr "Google Maps API"
|
4735 |
-
|
4736 |
-
#: app/features/mec/modules.php:149
|
4737 |
-
msgid "Don't load Google Maps API library"
|
4738 |
-
msgstr "Google Maps API Bibliothek nicht laden"
|
4739 |
-
|
4740 |
-
#: app/features/mec/modules.php:154
|
4741 |
-
msgid "Check it only if another plugin/theme is loading the Google Maps API"
|
4742 |
-
msgstr ""
|
4743 |
-
"Checken Sie es nur wenn ein anderes plugin/Thema die Google Maps API lädt."
|
4744 |
-
|
4745 |
-
#: app/features/mec/modules.php:167 app/libraries/main.php:561
|
4746 |
-
#, fuzzy
|
4747 |
-
#| msgid "Import Options"
|
4748 |
-
msgid "Export Options"
|
4749 |
-
msgstr "Import Optionen"
|
4750 |
-
|
4751 |
-
#: app/features/mec/modules.php:171
|
4752 |
-
msgid ""
|
4753 |
-
"Show export module (iCal export and add to Google calendars) on event page"
|
4754 |
-
msgstr ""
|
4755 |
-
"Exportmodule auf Veranstaltungsseite anzeigen (iCal export und hinzufügen zu "
|
4756 |
-
"Google calendars)"
|
4757 |
-
|
4758 |
-
#: app/features/mec/modules.php:178
|
4759 |
-
msgid "Google Calendar"
|
4760 |
-
msgstr "Google Calendar"
|
4761 |
-
|
4762 |
-
#: app/features/mec/modules.php:194 app/libraries/main.php:562
|
4763 |
-
#: app/modules/local-time/details.php:42 app/widgets/single.php:99
|
4764 |
-
msgid "Local Time"
|
4765 |
-
msgstr "Lokale Zeit"
|
4766 |
-
|
4767 |
-
#: app/features/mec/modules.php:198
|
4768 |
-
msgid "Show event time based on local time of visitor on event page"
|
4769 |
-
msgstr ""
|
4770 |
-
"Zeige die Eventzeit basierend auf der Ortszeit des Besuchers auf der "
|
4771 |
-
"Eventseite"
|
4772 |
-
|
4773 |
-
#: app/features/mec/modules.php:208 app/libraries/main.php:563
|
4774 |
-
#: app/modules/qrcode/details.php:38 app/widgets/single.php:155
|
4775 |
-
msgid "QR Code"
|
4776 |
-
msgstr "QR Code"
|
4777 |
-
|
4778 |
-
#: app/features/mec/modules.php:216
|
4779 |
-
msgid "Show QR code of event in details page and booking invoice"
|
4780 |
-
msgstr ""
|
4781 |
-
"Zeigen Sie QR-Code des Events in der Detailseite und in der Buchungsrechnung "
|
4782 |
-
"an"
|
4783 |
-
|
4784 |
-
#: app/features/mec/modules.php:226 app/libraries/main.php:564
|
4785 |
-
#: app/modules/weather/details.php:37
|
4786 |
-
msgid "Weather"
|
4787 |
-
msgstr "Wetter"
|
4788 |
-
|
4789 |
-
#: app/features/mec/modules.php:233
|
4790 |
-
msgid "Show weather module on event page"
|
4791 |
-
msgstr "Wettermodul auf der Eventseite anzeigen"
|
4792 |
-
|
4793 |
-
#: app/features/mec/modules.php:241
|
4794 |
-
#, php-format
|
4795 |
-
msgid "You can get a free API Key from %s"
|
4796 |
-
msgstr "Sie können einen kostenlosen API-Schlüssel von% s erhalten"
|
4797 |
-
|
4798 |
-
#: app/features/mec/modules.php:247
|
4799 |
-
#, fuzzy
|
4800 |
-
#| msgid "Show weather module on event page"
|
4801 |
-
msgid "Show weather imperial units"
|
4802 |
-
msgstr "Wettermodul auf der Eventseite anzeigen"
|
4803 |
-
|
4804 |
-
#: app/features/mec/modules.php:253
|
4805 |
-
msgid "Show weather change units button"
|
4806 |
-
msgstr ""
|
4807 |
-
|
4808 |
-
#: app/features/mec/modules.php:267
|
4809 |
-
msgid "Show social network module"
|
4810 |
-
msgstr "Modul für Soziale Netzwerke anzeigen"
|
4811 |
-
|
4812 |
-
#: app/features/mec/modules.php:288 app/libraries/main.php:566
|
4813 |
-
#: app/modules/next-event/details.php:82
|
4814 |
-
msgid "Next Event"
|
4815 |
-
msgstr "Nächstes Event"
|
4816 |
-
|
4817 |
-
#: app/features/mec/modules.php:292
|
4818 |
-
msgid "Show next event module on event page"
|
4819 |
-
msgstr "Nächstes Event Modul auf der Eventseite anzeigen"
|
4820 |
-
|
4821 |
-
#: app/features/mec/modules.php:297
|
4822 |
-
msgid "Method"
|
4823 |
-
msgstr "Methode"
|
4824 |
-
|
4825 |
-
#: app/features/mec/modules.php:300
|
4826 |
-
msgid "Next Occurrence of Current Event"
|
4827 |
-
msgstr "Nächstes Auftreten des aktuellen Events"
|
4828 |
-
|
4829 |
-
#: app/features/mec/modules.php:301
|
4830 |
-
msgid "Next Occurrence of Other Events"
|
4831 |
-
msgstr "Nächstes Auftreten von anderen Events."
|
4832 |
-
|
4833 |
-
#: app/features/mec/modules.php:312 app/features/mec/single.php:42
|
4834 |
-
msgid "Default is M d Y"
|
4835 |
-
msgstr "Standardwert ist M-T-J"
|
4836 |
-
|
4837 |
-
#: app/features/mec/modules.php:328
|
4838 |
-
msgid "Enable BuddyPress Integration"
|
4839 |
-
msgstr "Buddy Press Integration deaktivieren"
|
4840 |
-
|
4841 |
-
#: app/features/mec/modules.php:335
|
4842 |
-
msgid "Show \"Attendees Module\" in event details page"
|
4843 |
-
msgstr "Zeigt \"Teilnehmermodul\" in Event Details Seite"
|
4844 |
-
|
4845 |
-
#: app/features/mec/modules.php:339
|
4846 |
-
msgid "Attendees Limit"
|
4847 |
-
msgstr "Teilnehmer Limit, maximale Anzahl"
|
4848 |
-
|
4849 |
-
#: app/features/mec/modules.php:347
|
4850 |
-
msgid "Add booking activity to user profile"
|
4851 |
-
msgstr "Fügt Buchungsaktivitäten dem Benutzerprofil hinzu"
|
4852 |
-
|
4853 |
-
#: app/features/mec/notifications.php:39
|
4854 |
-
msgid "Enable booking notification"
|
4855 |
-
msgstr "Buchungsbenachrichtigung aktivieren"
|
4856 |
-
|
4857 |
-
#: app/features/mec/notifications.php:43
|
4858 |
-
msgid "It sends to attendee after booking for notifying him/her."
|
4859 |
-
msgstr ""
|
4860 |
-
"Wird an den Teilnehmer in Anschluss an die Buchung versendet, um Ihn/Sie zu "
|
4861 |
-
"benachrichtigen."
|
4862 |
-
|
4863 |
-
#: app/features/mec/notifications.php:45 app/features/mec/notifications.php:102
|
4864 |
-
#: app/features/mec/notifications.php:154
|
4865 |
-
#: app/features/mec/notifications.php:213
|
4866 |
-
#: app/features/mec/notifications.php:281
|
4867 |
-
#: app/features/mec/notifications.php:344
|
4868 |
-
#: app/features/mec/notifications.php:417
|
4869 |
-
#: app/features/mec/notifications.php:463
|
4870 |
-
msgid "Email Subject"
|
4871 |
-
msgstr "Email Betreff"
|
4872 |
-
|
4873 |
-
#: app/features/mec/notifications.php:49 app/features/mec/notifications.php:53
|
4874 |
-
#: app/features/mec/notifications.php:106
|
4875 |
-
#: app/features/mec/notifications.php:110
|
4876 |
-
#: app/features/mec/notifications.php:158
|
4877 |
-
#: app/features/mec/notifications.php:162
|
4878 |
-
#: app/features/mec/notifications.php:217
|
4879 |
-
#: app/features/mec/notifications.php:221
|
4880 |
-
#: app/features/mec/notifications.php:285
|
4881 |
-
#: app/features/mec/notifications.php:289
|
4882 |
-
#: app/features/mec/notifications.php:348
|
4883 |
-
#: app/features/mec/notifications.php:352
|
4884 |
-
#: app/features/mec/notifications.php:363
|
4885 |
-
#: app/features/mec/notifications.php:421
|
4886 |
-
#: app/features/mec/notifications.php:425
|
4887 |
-
#: app/features/mec/notifications.php:467
|
4888 |
-
#: app/features/mec/notifications.php:471
|
4889 |
-
msgid "Custom Recipients"
|
4890 |
-
msgstr "Individuelle Empfänger"
|
4891 |
-
|
4892 |
-
#: app/features/mec/notifications.php:54 app/features/mec/notifications.php:111
|
4893 |
-
#: app/features/mec/notifications.php:163
|
4894 |
-
#: app/features/mec/notifications.php:222
|
4895 |
-
#: app/features/mec/notifications.php:290
|
4896 |
-
#: app/features/mec/notifications.php:353
|
4897 |
-
#: app/features/mec/notifications.php:364
|
4898 |
-
#: app/features/mec/notifications.php:426
|
4899 |
-
#: app/features/mec/notifications.php:472
|
4900 |
-
msgid "Insert comma separated emails for multiple recipients."
|
4901 |
-
msgstr "Geben Sie mit Komma getrennte email-Adressen ein für mehrere Empfänger"
|
4902 |
-
|
4903 |
-
#: app/features/mec/notifications.php:61 app/features/mec/notifications.php:233
|
4904 |
-
#: app/features/mec/notifications.php:297
|
4905 |
-
msgid "Send the email to event organizer"
|
4906 |
-
msgstr "Sendet das Email zum Event Organisator"
|
4907 |
-
|
4908 |
-
#: app/features/mec/notifications.php:64 app/features/mec/notifications.php:117
|
4909 |
-
#: app/features/mec/notifications.php:169
|
4910 |
-
#: app/features/mec/notifications.php:240
|
4911 |
-
#: app/features/mec/notifications.php:300
|
4912 |
-
#: app/features/mec/notifications.php:370
|
4913 |
-
#: app/features/mec/notifications.php:432
|
4914 |
-
#: app/features/mec/notifications.php:478
|
4915 |
-
msgid "Email Content"
|
4916 |
-
msgstr "Email Inhalt"
|
4917 |
-
|
4918 |
-
#: app/features/mec/notifications.php:67 app/features/mec/notifications.php:120
|
4919 |
-
#: app/features/mec/notifications.php:172
|
4920 |
-
#: app/features/mec/notifications.php:243
|
4921 |
-
#: app/features/mec/notifications.php:303
|
4922 |
-
#: app/features/mec/notifications.php:373
|
4923 |
-
#: app/features/mec/notifications.php:435
|
4924 |
-
#: app/features/mec/notifications.php:481
|
4925 |
-
msgid "You can use following placeholders"
|
4926 |
-
msgstr "Sie können die folgenden Platzhalter wählen"
|
4927 |
-
|
4928 |
-
#: app/features/mec/notifications.php:69 app/features/mec/notifications.php:122
|
4929 |
-
#: app/features/mec/notifications.php:174
|
4930 |
-
#: app/features/mec/notifications.php:245
|
4931 |
-
#: app/features/mec/notifications.php:305
|
4932 |
-
#: app/features/mec/notifications.php:375
|
4933 |
-
msgid "First name of attendee"
|
4934 |
-
msgstr "Vorname des Teilnehmers"
|
4935 |
-
|
4936 |
-
#: app/features/mec/notifications.php:70 app/features/mec/notifications.php:123
|
4937 |
-
#: app/features/mec/notifications.php:175
|
4938 |
-
#: app/features/mec/notifications.php:246
|
4939 |
-
#: app/features/mec/notifications.php:306
|
4940 |
-
#: app/features/mec/notifications.php:376
|
4941 |
-
msgid "Last name of attendee"
|
4942 |
-
msgstr "Nachname des Teilnehmers"
|
4943 |
-
|
4944 |
-
#: app/features/mec/notifications.php:71 app/features/mec/notifications.php:124
|
4945 |
-
#: app/features/mec/notifications.php:176
|
4946 |
-
#: app/features/mec/notifications.php:247
|
4947 |
-
#: app/features/mec/notifications.php:307
|
4948 |
-
#: app/features/mec/notifications.php:377
|
4949 |
-
msgid "Email of attendee"
|
4950 |
-
msgstr "Email des Teilnehmers"
|
4951 |
-
|
4952 |
-
#: app/features/mec/notifications.php:72 app/features/mec/notifications.php:125
|
4953 |
-
#: app/features/mec/notifications.php:177
|
4954 |
-
#: app/features/mec/notifications.php:248
|
4955 |
-
#: app/features/mec/notifications.php:308
|
4956 |
-
#: app/features/mec/notifications.php:378
|
4957 |
-
msgid "Booked date of event"
|
4958 |
-
msgstr "Gebuchtes Datum der Veranstaltung"
|
4959 |
-
|
4960 |
-
#: app/features/mec/notifications.php:73 app/features/mec/notifications.php:126
|
4961 |
-
#: app/features/mec/notifications.php:178
|
4962 |
-
#: app/features/mec/notifications.php:249
|
4963 |
-
#: app/features/mec/notifications.php:309
|
4964 |
-
#: app/features/mec/notifications.php:379
|
4965 |
-
#, fuzzy
|
4966 |
-
#| msgid "Booked date of event"
|
4967 |
-
msgid "Booked time of event"
|
4968 |
-
msgstr "Gebuchtes Datum der Veranstaltung"
|
4969 |
-
|
4970 |
-
#: app/features/mec/notifications.php:74 app/features/mec/notifications.php:127
|
4971 |
-
#: app/features/mec/notifications.php:179
|
4972 |
-
#: app/features/mec/notifications.php:250
|
4973 |
-
#: app/features/mec/notifications.php:310
|
4974 |
-
#: app/features/mec/notifications.php:380
|
4975 |
-
msgid "Booking Price"
|
4976 |
-
msgstr "Buchungspreis"
|
4977 |
-
|
4978 |
-
#: app/features/mec/notifications.php:75 app/features/mec/notifications.php:128
|
4979 |
-
#: app/features/mec/notifications.php:180
|
4980 |
-
#: app/features/mec/notifications.php:251
|
4981 |
-
#: app/features/mec/notifications.php:311
|
4982 |
-
#: app/features/mec/notifications.php:381
|
4983 |
-
#: app/features/mec/notifications.php:441
|
4984 |
-
#: app/features/mec/notifications.php:487
|
4985 |
-
msgid "Your website title"
|
4986 |
-
msgstr "Titel Ihrer Webseite"
|
4987 |
-
|
4988 |
-
#: app/features/mec/notifications.php:76 app/features/mec/notifications.php:129
|
4989 |
-
#: app/features/mec/notifications.php:181
|
4990 |
-
#: app/features/mec/notifications.php:252
|
4991 |
-
#: app/features/mec/notifications.php:312
|
4992 |
-
#: app/features/mec/notifications.php:382
|
4993 |
-
#: app/features/mec/notifications.php:442
|
4994 |
-
#: app/features/mec/notifications.php:488
|
4995 |
-
msgid "Your website URL"
|
4996 |
-
msgstr "URL Ihrer Webseite"
|
4997 |
-
|
4998 |
-
#: app/features/mec/notifications.php:77 app/features/mec/notifications.php:130
|
4999 |
-
#: app/features/mec/notifications.php:182
|
5000 |
-
#: app/features/mec/notifications.php:253
|
5001 |
-
#: app/features/mec/notifications.php:313
|
5002 |
-
#: app/features/mec/notifications.php:383
|
5003 |
-
#: app/features/mec/notifications.php:443
|
5004 |
-
#: app/features/mec/notifications.php:489
|
5005 |
-
msgid "Your website description"
|
5006 |
-
msgstr "Beschreibung Ihrer Webseite"
|
5007 |
-
|
5008 |
-
#: app/features/mec/notifications.php:78 app/features/mec/notifications.php:131
|
5009 |
-
#: app/features/mec/notifications.php:183
|
5010 |
-
#: app/features/mec/notifications.php:254
|
5011 |
-
#: app/features/mec/notifications.php:314
|
5012 |
-
#: app/features/mec/notifications.php:384
|
5013 |
-
msgid "Event title"
|
5014 |
-
msgstr "Titel der Veranstaltung"
|
5015 |
-
|
5016 |
-
#: app/features/mec/notifications.php:79 app/features/mec/notifications.php:132
|
5017 |
-
#: app/features/mec/notifications.php:184
|
5018 |
-
#: app/features/mec/notifications.php:255
|
5019 |
-
#: app/features/mec/notifications.php:315
|
5020 |
-
#: app/features/mec/notifications.php:385
|
5021 |
-
#, fuzzy
|
5022 |
-
#| msgid "Event Link"
|
5023 |
-
msgid "Event link"
|
5024 |
-
msgstr "Veranstaltungslink"
|
5025 |
-
|
5026 |
-
#: app/features/mec/notifications.php:80 app/features/mec/notifications.php:133
|
5027 |
-
#: app/features/mec/notifications.php:185
|
5028 |
-
#: app/features/mec/notifications.php:256
|
5029 |
-
#: app/features/mec/notifications.php:316
|
5030 |
-
#: app/features/mec/notifications.php:386
|
5031 |
-
#, fuzzy
|
5032 |
-
#| msgid "Organizer name of booked event"
|
5033 |
-
msgid "Speaker name of booked event"
|
5034 |
-
msgstr "Name des Veranstalters des gebuchten Events"
|
5035 |
-
|
5036 |
-
#: app/features/mec/notifications.php:81 app/features/mec/notifications.php:134
|
5037 |
-
#: app/features/mec/notifications.php:186
|
5038 |
-
#: app/features/mec/notifications.php:257
|
5039 |
-
#: app/features/mec/notifications.php:317
|
5040 |
-
#: app/features/mec/notifications.php:387
|
5041 |
-
msgid "Organizer name of booked event"
|
5042 |
-
msgstr "Name des Veranstalters des gebuchten Events"
|
5043 |
-
|
5044 |
-
#: app/features/mec/notifications.php:82 app/features/mec/notifications.php:135
|
5045 |
-
#: app/features/mec/notifications.php:187
|
5046 |
-
#: app/features/mec/notifications.php:258
|
5047 |
-
#: app/features/mec/notifications.php:318
|
5048 |
-
#: app/features/mec/notifications.php:388
|
5049 |
-
msgid "Organizer tel of booked event"
|
5050 |
-
msgstr "Tel des Veranstalters"
|
5051 |
-
|
5052 |
-
#: app/features/mec/notifications.php:83 app/features/mec/notifications.php:136
|
5053 |
-
#: app/features/mec/notifications.php:188
|
5054 |
-
#: app/features/mec/notifications.php:259
|
5055 |
-
#: app/features/mec/notifications.php:319
|
5056 |
-
#: app/features/mec/notifications.php:389
|
5057 |
-
msgid "Organizer email of booked event"
|
5058 |
-
msgstr "Email des Veranstalters des gebuchten events"
|
5059 |
-
|
5060 |
-
#: app/features/mec/notifications.php:84 app/features/mec/notifications.php:137
|
5061 |
-
#: app/features/mec/notifications.php:189
|
5062 |
-
#: app/features/mec/notifications.php:260
|
5063 |
-
#: app/features/mec/notifications.php:320
|
5064 |
-
#: app/features/mec/notifications.php:390
|
5065 |
-
msgid "Location name of booked event"
|
5066 |
-
msgstr "Veranstaltungsort"
|
5067 |
-
|
5068 |
-
#: app/features/mec/notifications.php:85 app/features/mec/notifications.php:138
|
5069 |
-
#: app/features/mec/notifications.php:190
|
5070 |
-
#: app/features/mec/notifications.php:261
|
5071 |
-
#: app/features/mec/notifications.php:321
|
5072 |
-
#: app/features/mec/notifications.php:391
|
5073 |
-
msgid "Location address of booked event"
|
5074 |
-
msgstr "Adresse der gebuchten Veranstaltung"
|
5075 |
-
|
5076 |
-
#: app/features/mec/notifications.php:86 app/features/mec/notifications.php:263
|
5077 |
-
#: app/features/mec/notifications.php:323
|
5078 |
-
msgid "Full Attendee info such as booking form data, name, email etc."
|
5079 |
-
msgstr ""
|
5080 |
-
"Gesamte Teinehmerinformationen wie z.B. Daten aus dem Buchungsformular, "
|
5081 |
-
"Name, email, etc."
|
5082 |
-
|
5083 |
-
#: app/features/mec/notifications.php:87 app/features/mec/notifications.php:192
|
5084 |
-
#: app/features/mec/notifications.php:393
|
5085 |
-
msgid "Invoice Link"
|
5086 |
-
msgstr "Rechnungslink"
|
5087 |
-
|
5088 |
-
#: app/features/mec/notifications.php:89 app/features/mec/notifications.php:141
|
5089 |
-
#: app/features/mec/notifications.php:194
|
5090 |
-
#: app/features/mec/notifications.php:395
|
5091 |
-
#, fuzzy
|
5092 |
-
#| msgid "Ticket Name"
|
5093 |
-
msgid "Ticket name"
|
5094 |
-
msgstr "Ticket Name"
|
5095 |
-
|
5096 |
-
#: app/features/mec/notifications.php:90 app/features/mec/notifications.php:142
|
5097 |
-
#: app/features/mec/notifications.php:195
|
5098 |
-
#: app/features/mec/notifications.php:396
|
5099 |
-
#, fuzzy
|
5100 |
-
#| msgid "Ticket Name"
|
5101 |
-
msgid "Ticket time"
|
5102 |
-
msgstr "Ticket Name"
|
5103 |
-
|
5104 |
-
#: app/features/mec/notifications.php:91 app/features/mec/notifications.php:143
|
5105 |
-
#: app/features/mec/notifications.php:196
|
5106 |
-
#: app/features/mec/notifications.php:397
|
5107 |
-
#, fuzzy
|
5108 |
-
#| msgid "Download Invoice"
|
5109 |
-
msgid "Download ICS file"
|
5110 |
-
msgstr "Download Rechnung\n"
|
5111 |
-
|
5112 |
-
#: app/features/mec/notifications.php:99 app/libraries/main.php:572
|
5113 |
-
msgid "Booking Verification"
|
5114 |
-
msgstr "Verifizierung der Buchung"
|
5115 |
-
|
5116 |
-
#: app/features/mec/notifications.php:100
|
5117 |
-
msgid "It sends to attendee email for verifying their booking/email."
|
5118 |
-
msgstr ""
|
5119 |
-
"Versendet an den Teilnehmer eine Email um dessen Buchung/Mail zu "
|
5120 |
-
"verifizieren."
|
5121 |
-
|
5122 |
-
#: app/features/mec/notifications.php:139
|
5123 |
-
msgid "Email/Booking verification link."
|
5124 |
-
msgstr "Bestätigungslink für Email/Buchung"
|
5125 |
-
|
5126 |
-
#: app/features/mec/notifications.php:152
|
5127 |
-
msgid "It sends to attendee after confirming the booking by admin."
|
5128 |
-
msgstr ""
|
5129 |
-
"Es wird an den Teilnehmer gesendet nach Bestätigung der Buchung vom admin."
|
5130 |
-
|
5131 |
-
#: app/features/mec/notifications.php:191
|
5132 |
-
#: app/features/mec/notifications.php:392
|
5133 |
-
msgid "Booking cancellation link."
|
5134 |
-
msgstr "Link zur Stornierung der Buchung"
|
5135 |
-
|
5136 |
-
#: app/features/mec/notifications.php:203 app/libraries/main.php:574
|
5137 |
-
#, fuzzy
|
5138 |
-
#| msgid "Booking cancellation link."
|
5139 |
-
msgid "Booking Cancellation"
|
5140 |
-
msgstr "Link zur Stornierung der Buchung"
|
5141 |
-
|
5142 |
-
#: app/features/mec/notifications.php:207
|
5143 |
-
#, fuzzy
|
5144 |
-
#| msgid "Enable new event notification"
|
5145 |
-
msgid "Enable cancellation notification"
|
5146 |
-
msgstr "Benachrichtigung bei neuen Veranstaltungen aktivieren"
|
5147 |
-
|
5148 |
-
#: app/features/mec/notifications.php:211
|
5149 |
-
#, fuzzy
|
5150 |
-
#| msgid "It sends to attendee after booking for notifying him/her."
|
5151 |
-
msgid ""
|
5152 |
-
"It sends to selected recipients after booking cancellation for notifying "
|
5153 |
-
"them."
|
5154 |
-
msgstr ""
|
5155 |
-
"Wird an den Teilnehmer in Anschluss an die Buchung versendet, um Ihn/Sie zu "
|
5156 |
-
"benachrichtigen."
|
5157 |
-
|
5158 |
-
#: app/features/mec/notifications.php:229
|
5159 |
-
#, fuzzy
|
5160 |
-
#| msgid "Send the email to event organizer"
|
5161 |
-
msgid "Send the email to admin"
|
5162 |
-
msgstr "Sendet das Email zum Event Organisator"
|
5163 |
-
|
5164 |
-
#: app/features/mec/notifications.php:237
|
5165 |
-
#, fuzzy
|
5166 |
-
#| msgid "Send the email to event organizer"
|
5167 |
-
msgid "Send the email to booking user"
|
5168 |
-
msgstr "Sendet das Email zum Event Organisator"
|
5169 |
-
|
5170 |
-
#: app/features/mec/notifications.php:262
|
5171 |
-
#: app/features/mec/notifications.php:322
|
5172 |
-
msgid "Admin booking management link."
|
5173 |
-
msgstr "Admin-link zur Buchungsverwaltung"
|
5174 |
-
|
5175 |
-
#: app/features/mec/notifications.php:271 app/libraries/main.php:576
|
5176 |
-
msgid "Admin"
|
5177 |
-
msgstr ""
|
5178 |
-
|
5179 |
-
#: app/features/mec/notifications.php:275
|
5180 |
-
#, fuzzy
|
5181 |
-
#| msgid "Enable booking notification"
|
5182 |
-
msgid "Enable admin notification"
|
5183 |
-
msgstr "Buchungsbenachrichtigung aktivieren"
|
5184 |
-
|
5185 |
-
#: app/features/mec/notifications.php:279
|
5186 |
-
msgid "It sends to admin to notify him/her that a new booking received."
|
5187 |
-
msgstr ""
|
5188 |
-
"Sendet eine Benachrichtigung an den Adminstrator um diesen darüber zu "
|
5189 |
-
"Informieren, dass eine neue Buchung eingegangen ist."
|
5190 |
-
|
5191 |
-
#: app/features/mec/notifications.php:331 app/libraries/main.php:575
|
5192 |
-
#: app/libraries/notifications.php:478
|
5193 |
-
msgid "Booking Reminder"
|
5194 |
-
msgstr "Buchungs Erinnerung"
|
5195 |
-
|
5196 |
-
#: app/features/mec/notifications.php:335
|
5197 |
-
msgid "Enable booking reminder notification"
|
5198 |
-
msgstr "Aktivieren Sie die Erinnerung für die Buchungserinnerung"
|
5199 |
-
|
5200 |
-
#: app/features/mec/notifications.php:341
|
5201 |
-
#, php-format
|
5202 |
-
msgid ""
|
5203 |
-
"Set a cronjob to call %s file once per day otherwise it won't send the "
|
5204 |
-
"reminders. Please note that you should call this file %s otherwise it may "
|
5205 |
-
"send the reminders multiple times."
|
5206 |
-
msgstr ""
|
5207 |
-
"Legen Sie einen Cronjob fest, um die Datei% s einmal pro Tag aufzurufen. "
|
5208 |
-
"Andernfalls werden die Erinnerungen nicht gesendet. Bitte beachten Sie, dass "
|
5209 |
-
"Sie diese Datei% s aufrufen sollten, sonst könnten die Erinnerungen mehrmals "
|
5210 |
-
"gesendet werden."
|
5211 |
-
|
5212 |
-
#: app/features/mec/notifications.php:341
|
5213 |
-
msgid "only once per day"
|
5214 |
-
msgstr "nur einmal pro Tag"
|
5215 |
-
|
5216 |
-
#: app/features/mec/notifications.php:359
|
5217 |
-
msgid "Days"
|
5218 |
-
msgstr "Tage"
|
5219 |
-
|
5220 |
-
#: app/features/mec/notifications.php:407 app/features/mec/support-page.php:80
|
5221 |
-
#: app/libraries/main.php:577
|
5222 |
-
msgid "New Event"
|
5223 |
-
msgstr "Neue Veranstaltung"
|
5224 |
-
|
5225 |
-
#: app/features/mec/notifications.php:411
|
5226 |
-
msgid "Enable new event notification"
|
5227 |
-
msgstr "Benachrichtigung bei neuen Veranstaltungen aktivieren"
|
5228 |
-
|
5229 |
-
#: app/features/mec/notifications.php:415
|
5230 |
-
msgid ""
|
5231 |
-
"It sends after adding a new event from frontend event submission or from "
|
5232 |
-
"website backend."
|
5233 |
-
msgstr ""
|
5234 |
-
"Wird nach dem Hinzufügen einer neuen Veranstaltung aus der Frontend-"
|
5235 |
-
"Übermittlung oder dem Backend versandt."
|
5236 |
-
|
5237 |
-
#: app/features/mec/notifications.php:437
|
5238 |
-
#: app/features/mec/notifications.php:483
|
5239 |
-
msgid "Title of event"
|
5240 |
-
msgstr "Titel der Veranstaltung"
|
5241 |
-
|
5242 |
-
#: app/features/mec/notifications.php:438
|
5243 |
-
#: app/features/mec/notifications.php:484
|
5244 |
-
#, fuzzy
|
5245 |
-
#| msgid "Title of event"
|
5246 |
-
msgid "Link of event"
|
5247 |
-
msgstr "Titel der Veranstaltung"
|
5248 |
-
|
5249 |
-
#: app/features/mec/notifications.php:439
|
5250 |
-
#: app/features/mec/notifications.php:485
|
5251 |
-
msgid "Status of event"
|
5252 |
-
msgstr "Status der Veranstaltung"
|
5253 |
-
|
5254 |
-
#: app/features/mec/notifications.php:440
|
5255 |
-
#: app/features/mec/notifications.php:486 app/features/mec/settings.php:654
|
5256 |
-
#: app/features/mec/settings.php:658
|
5257 |
-
msgid "Event Note"
|
5258 |
-
msgstr "Veranstaltungsnotiz"
|
5259 |
-
|
5260 |
-
#: app/features/mec/notifications.php:444
|
5261 |
-
#: app/features/mec/notifications.php:490
|
5262 |
-
msgid "Admin events management link."
|
5263 |
-
msgstr "Admin-link zur Veranstaltungsverwaltung"
|
5264 |
-
|
5265 |
-
#: app/features/mec/notifications.php:453 app/libraries/main.php:578
|
5266 |
-
#, fuzzy
|
5267 |
-
#| msgid "The event published."
|
5268 |
-
msgid "User Event Publishing"
|
5269 |
-
msgstr "Die Veranstaltung wurde veröffentlicht."
|
5270 |
-
|
5271 |
-
#: app/features/mec/notifications.php:457
|
5272 |
-
#, fuzzy
|
5273 |
-
#| msgid "Enable new event notification"
|
5274 |
-
msgid "Enable user event publishing notification"
|
5275 |
-
msgstr "Benachrichtigung bei neuen Veranstaltungen aktivieren"
|
5276 |
-
|
5277 |
-
#: app/features/mec/notifications.php:461
|
5278 |
-
#, fuzzy
|
5279 |
-
#| msgid ""
|
5280 |
-
#| "It sends after adding a new event from frontend event submission or from "
|
5281 |
-
#| "website backend."
|
5282 |
-
msgid ""
|
5283 |
-
"It sends after published a new event from frontend event submission or from "
|
5284 |
-
"website backend."
|
5285 |
-
msgstr ""
|
5286 |
-
"Wird nach dem Hinzufügen einer neuen Veranstaltung aus der Frontend-"
|
5287 |
-
"Übermittlung oder dem Backend versandt."
|
5288 |
-
|
5289 |
-
#: app/features/mec/settings.php:55 app/features/mec/settings.php:65
|
5290 |
-
msgid "Hide Events"
|
5291 |
-
msgstr "Events verbergen"
|
5292 |
-
|
5293 |
-
#: app/features/mec/settings.php:58
|
5294 |
-
msgid "On Event Start"
|
5295 |
-
msgstr "Am Event Start"
|
5296 |
-
|
5297 |
-
#: app/features/mec/settings.php:59
|
5298 |
-
msgid "+1 Hour after start"
|
5299 |
-
msgstr "+1 Stunde nach dem Start"
|
5300 |
-
|
5301 |
-
#: app/features/mec/settings.php:60
|
5302 |
-
msgid "+2 Hours after start"
|
5303 |
-
msgstr "+2 Stunden nach dem Start"
|
5304 |
-
|
5305 |
-
#: app/features/mec/settings.php:61
|
5306 |
-
msgid "On Event End"
|
5307 |
-
msgstr "Am Event Ende"
|
5308 |
-
|
5309 |
-
#: app/features/mec/settings.php:66
|
5310 |
-
msgid ""
|
5311 |
-
"This option is for showing start/end time of events on frontend of website."
|
5312 |
-
msgstr ""
|
5313 |
-
"Diese Option ist um die Start/Endezeit von Events im Frontend der Webseite "
|
5314 |
-
"anzuzeigen"
|
5315 |
-
|
5316 |
-
#: app/features/mec/settings.php:75 app/features/mec/settings.php:84
|
5317 |
-
msgid "Multiple Day Events"
|
5318 |
-
msgstr "Mehrtagesveranstaltung"
|
5319 |
-
|
5320 |
-
#: app/features/mec/settings.php:78
|
5321 |
-
msgid "Show only first day on List/Grid/Slider skins"
|
5322 |
-
msgstr "Zeige nur den ersten Tag auf Listen/Raster(Grid)/Slider skins."
|
5323 |
-
|
5324 |
-
#: app/features/mec/settings.php:79
|
5325 |
-
msgid "Show only first day on all skins"
|
5326 |
-
msgstr "Nur den ersten Tag in allen Ansichten zeigen"
|
5327 |
-
|
5328 |
-
#: app/features/mec/settings.php:80
|
5329 |
-
msgid "Show all days"
|
5330 |
-
msgstr "Alle Tage anzeigen"
|
5331 |
-
|
5332 |
-
#: app/features/mec/settings.php:85
|
5333 |
-
msgid ""
|
5334 |
-
"For showing all days of multiple day events on frontend or only show the "
|
5335 |
-
"first day."
|
5336 |
-
msgstr ""
|
5337 |
-
"Um alle Tage anzuzeigen bei Events über mehrere Tage im Frontend oder nur "
|
5338 |
-
"den ersten Tag anzeigen"
|
5339 |
-
|
5340 |
-
#: app/features/mec/settings.php:94
|
5341 |
-
msgid "Remove MEC Data on Plugin Uninstall"
|
5342 |
-
msgstr "Entfernen von MEC Data auf dem Plugin Deinstallierer"
|
5343 |
-
|
5344 |
-
#: app/features/mec/settings.php:104
|
5345 |
-
msgid "Exclude Date Suffix"
|
5346 |
-
msgstr "Ausschlussdatum Suffix"
|
5347 |
-
|
5348 |
-
#: app/features/mec/settings.php:107
|
5349 |
-
msgid "Remove suffix from calendars"
|
5350 |
-
msgstr "Suffix aus den Kalendern entfernen"
|
5351 |
-
|
5352 |
-
#: app/features/mec/settings.php:111
|
5353 |
-
#, fuzzy
|
5354 |
-
#| msgid "Remove suffix from calendars"
|
5355 |
-
msgid "Remove \"Th\" on calendar"
|
5356 |
-
msgstr "Suffix aus den Kalendern entfernen"
|
5357 |
-
|
5358 |
-
#: app/features/mec/settings.php:112
|
5359 |
-
msgid ""
|
5360 |
-
"Checked this checkbox to remove 'Th' on calendar ( ex: '12Th' remove Th, "
|
5361 |
-
"showing just '12' )"
|
5362 |
-
msgstr ""
|
5363 |
-
|
5364 |
-
#: app/features/mec/settings.php:119 app/features/mec/settings.php:126
|
5365 |
-
msgid "Schema"
|
5366 |
-
msgstr ""
|
5367 |
-
|
5368 |
-
#: app/features/mec/settings.php:122
|
5369 |
-
#, fuzzy
|
5370 |
-
#| msgid "Enable coupons module"
|
5371 |
-
msgid "Enable Schema Code"
|
5372 |
-
msgstr "Gutscheinmodul aktivieren"
|
5373 |
-
|
5374 |
-
#: app/features/mec/settings.php:127
|
5375 |
-
msgid "You can enable/disable Schema scripts"
|
5376 |
-
msgstr ""
|
5377 |
-
|
5378 |
-
#: app/features/mec/settings.php:136 app/features/mec/settings.php:146
|
5379 |
-
#: app/libraries/main.php:4891
|
5380 |
-
msgid "Weekdays"
|
5381 |
-
msgstr "Wochentage"
|
5382 |
-
|
5383 |
-
#: app/features/mec/settings.php:147
|
5384 |
-
#, fuzzy
|
5385 |
-
#| msgid ""
|
5386 |
-
#| "Proceed with caution. Default is set to Monday, Tuesday, Wednesday, "
|
5387 |
-
#| "Thursday and Friday."
|
5388 |
-
msgid ""
|
5389 |
-
"Proceed with caution. Default is set to Monday, Tuesday, Wednesday, Thursday "
|
5390 |
-
"and Friday ( you can change 'Week Starts' on WordPress Dashboard > Settings "
|
5391 |
-
"> General - bottom of the page )."
|
5392 |
-
msgstr ""
|
5393 |
-
"Vorsichtig vorgehen. Standardwert ist auf Montag, Dienstag, Mittwoch, "
|
5394 |
-
"Donnerstag und Freitag gesetzt."
|
5395 |
-
|
5396 |
-
#: app/features/mec/settings.php:157 app/features/mec/settings.php:167
|
5397 |
-
msgid "Weekends"
|
5398 |
-
msgstr "Wochenenden"
|
5399 |
-
|
5400 |
-
#: app/features/mec/settings.php:168
|
5401 |
-
msgid ""
|
5402 |
-
"Proceed with caution. Default is set to Saturday and Sunday ( you can change "
|
5403 |
-
"'Week Starts' on WordPress Dashboard > Settings > General - bottom of the "
|
5404 |
-
"page )."
|
5405 |
-
msgstr ""
|
5406 |
-
|
5407 |
-
#: app/features/mec/settings.php:179 app/libraries/main.php:529
|
5408 |
-
msgid "Archive Pages"
|
5409 |
-
msgstr ""
|
5410 |
-
|
5411 |
-
#: app/features/mec/settings.php:182 app/features/mec/settings.php:187
|
5412 |
-
msgid "Archive Page Title"
|
5413 |
-
msgstr "Titel der Archivseite"
|
5414 |
-
|
5415 |
-
#: app/features/mec/settings.php:188
|
5416 |
-
#, fuzzy
|
5417 |
-
#| msgid "Default value is Events"
|
5418 |
-
msgid "Default value is Events - It's title of the page"
|
5419 |
-
msgstr "Der Standardwert ist Ereignisse (Events)"
|
5420 |
-
|
5421 |
-
#: app/features/mec/settings.php:196 app/features/mec/settings.php:264
|
5422 |
-
msgid "Archive Page Skin"
|
5423 |
-
msgstr "Skin Seite Archiv"
|
5424 |
-
|
5425 |
-
#: app/features/mec/settings.php:204
|
5426 |
-
#, fuzzy
|
5427 |
-
#| msgid "Edit shortcodes"
|
5428 |
-
msgid "Put shortcode..."
|
5429 |
-
msgstr "Shortcode ändern"
|
5430 |
-
|
5431 |
-
#: app/features/mec/settings.php:207 app/features/mec/settings.php:222
|
5432 |
-
#: app/features/mec/settings.php:225 app/features/mec/settings.php:234
|
5433 |
-
#: app/features/mec/settings.php:260 app/features/mec/settings.php:281
|
5434 |
-
#: app/features/mec/settings.php:296 app/features/mec/settings.php:299
|
5435 |
-
#: app/features/mec/settings.php:308 app/features/mec/settings.php:334
|
5436 |
-
#, fuzzy
|
5437 |
-
#| msgid "The event is ongoing."
|
5438 |
-
msgid "There is no skins"
|
5439 |
-
msgstr "Die Veranstaltung ist im Gange."
|
5440 |
-
|
5441 |
-
#: app/features/mec/settings.php:210 app/features/mec/settings.php:284
|
5442 |
-
#: app/features/mec/single.php:69
|
5443 |
-
msgid "Modern Style"
|
5444 |
-
msgstr "Moderner Stil"
|
5445 |
-
|
5446 |
-
#: app/features/mec/settings.php:252 app/features/mec/settings.php:326
|
5447 |
-
#, fuzzy
|
5448 |
-
#| msgid "Colorful"
|
5449 |
-
msgid "colorful"
|
5450 |
-
msgstr "Farbenfroh"
|
5451 |
-
|
5452 |
-
#: app/features/mec/settings.php:257 app/features/mec/settings.php:331
|
5453 |
-
#, fuzzy
|
5454 |
-
#| msgid "Plain Style"
|
5455 |
-
msgid "Clean Style"
|
5456 |
-
msgstr "Einfacher schlichter Stil"
|
5457 |
-
|
5458 |
-
#: app/features/mec/settings.php:265
|
5459 |
-
#, fuzzy
|
5460 |
-
#| msgid "Default value is Calendar/Monthly View"
|
5461 |
-
msgid "Default value is Calendar/Monthly View, But you can change it "
|
5462 |
-
msgstr "Der Standardwert ist Kalender / Monatsansicht"
|
5463 |
-
|
5464 |
-
#: app/features/mec/settings.php:265 app/features/mec/settings.php:339
|
5465 |
-
msgid "See Demo"
|
5466 |
-
msgstr ""
|
5467 |
-
|
5468 |
-
#: app/features/mec/settings.php:273 app/features/mec/settings.php:338
|
5469 |
-
msgid "Category Page Skin"
|
5470 |
-
msgstr "Kategorie Seiten Skin"
|
5471 |
-
|
5472 |
-
#: app/features/mec/settings.php:339
|
5473 |
-
msgid ""
|
5474 |
-
"Default value is List View - But you can change it Set a skin for all "
|
5475 |
-
"categories."
|
5476 |
-
msgstr ""
|
5477 |
-
|
5478 |
-
#: app/features/mec/settings.php:347 app/features/mec/settings.php:355
|
5479 |
-
msgid "Category Events Method"
|
5480 |
-
msgstr ""
|
5481 |
-
|
5482 |
-
#: app/features/mec/settings.php:351
|
5483 |
-
msgid "Expired Events"
|
5484 |
-
msgstr ""
|
5485 |
-
|
5486 |
-
#: app/features/mec/settings.php:356
|
5487 |
-
msgid "Default value is Upcoming Events"
|
5488 |
-
msgstr ""
|
5489 |
-
|
5490 |
-
#: app/features/mec/settings.php:364 app/features/mec/settings.php:372
|
5491 |
-
msgid "Events Archive Status"
|
5492 |
-
msgstr "Events Archiv Status"
|
5493 |
-
|
5494 |
-
#: app/features/mec/settings.php:367
|
5495 |
-
msgid "Enabled (Recommended)"
|
5496 |
-
msgstr "Ist aktiviert (empfohlen)"
|
5497 |
-
|
5498 |
-
#: app/features/mec/settings.php:373
|
5499 |
-
msgid ""
|
5500 |
-
"If you disable it, then you should create a page as archive page of MEC. "
|
5501 |
-
"Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
|
5502 |
-
"MEC rewrite rules."
|
5503 |
-
msgstr ""
|
5504 |
-
"Wenn Sie es deaktivieren, sollten Sie eine Seite als Archivseite von MEC "
|
5505 |
-
"erstellen. Page´s slug muss gleich sein wie \"Main Slug\" von MEC. Außerdem "
|
5506 |
-
"werden alle MEC-Rewrite-Regeln deaktiviert."
|
5507 |
-
|
5508 |
-
#: app/features/mec/settings.php:386 app/features/mec/settings.php:391
|
5509 |
-
msgid "Main Slug"
|
5510 |
-
msgstr "Main Slug"
|
5511 |
-
|
5512 |
-
#: app/features/mec/settings.php:392
|
5513 |
-
msgid ""
|
5514 |
-
"Default value is events. You can not have a page with this name. MEC allows "
|
5515 |
-
"you to create custom URLs for the permalinks and archives to enhance the "
|
5516 |
-
"applicability and forward-compatibility of the links."
|
5517 |
-
msgstr ""
|
5518 |
-
|
5519 |
-
#: app/features/mec/settings.php:396 app/features/mec/settings.php:410
|
5520 |
-
#, fuzzy
|
5521 |
-
#| msgid ""
|
5522 |
-
#| "Default value is events. Valid characters are lowercase a-z, - character "
|
5523 |
-
#| "and numbers."
|
5524 |
-
msgid "Valid characters are lowercase a-z, - character and numbers."
|
5525 |
-
msgstr ""
|
5526 |
-
"Standardwert ist Events. Gültige Zeichen sind Kleinbuchstaben a-z, - Zeichen "
|
5527 |
-
"und Zahlen."
|
5528 |
-
|
5529 |
-
#: app/features/mec/settings.php:400 app/features/mec/settings.php:405
|
5530 |
-
msgid "Category Slug"
|
5531 |
-
msgstr "Category Slug"
|
5532 |
-
|
5533 |
-
#: app/features/mec/settings.php:406
|
5534 |
-
#, fuzzy
|
5535 |
-
#| msgid ""
|
5536 |
-
#| "It's slug of MEC categories, you can change it to events-cat or something "
|
5537 |
-
#| "else. Default value is mec-category. Valid characters are lowercase a-z, "
|
5538 |
-
#| "- character and numbers."
|
5539 |
-
msgid ""
|
5540 |
-
"It's slug of MEC categories, you can change it to events-cat or something "
|
5541 |
-
"else. Default value is mec-category. You can not have a page with this name."
|
5542 |
-
msgstr ""
|
5543 |
-
"Den slug von MEC Kategorien, können Sie in events-cat oder etwas anderes "
|
5544 |
-
"ändern. Der Standardwert ist mec-category. Gültige Zeichen sind "
|
5545 |
-
"Kleinbuchstaben a-z, - Zeichen und Zahlen. Der slug bezeichnet den Pfadnamen "
|
5546 |
-
"für den link. Zum Beispiel example.com/events-cat oder example.com/mec-"
|
5547 |
-
"category"
|
5548 |
-
|
5549 |
-
#: app/features/mec/settings.php:418
|
5550 |
-
msgid "Currency"
|
5551 |
-
msgstr "Währung"
|
5552 |
-
|
5553 |
-
#: app/features/mec/settings.php:428 app/features/mec/settings.php:433
|
5554 |
-
msgid "Currency Sign"
|
5555 |
-
msgstr "Währungssymbol"
|
5556 |
-
|
5557 |
-
#: app/features/mec/settings.php:434
|
5558 |
-
msgid "Default value will be \"currency\" if you leave it empty."
|
5559 |
-
msgstr "Standardwert wird \"currency\" sein wenn Sie es leer lassen"
|
5560 |
-
|
5561 |
-
#: app/features/mec/settings.php:441
|
5562 |
-
msgid "Currency Position"
|
5563 |
-
msgstr "Position des Währungssymbols"
|
5564 |
-
|
5565 |
-
#: app/features/mec/settings.php:444
|
5566 |
-
msgid "Before $10"
|
5567 |
-
msgstr "Vor $10"
|
5568 |
-
|
5569 |
-
#: app/features/mec/settings.php:445
|
5570 |
-
msgid "After 10$"
|
5571 |
-
msgstr "Nach 10$"
|
5572 |
-
|
5573 |
-
#: app/features/mec/settings.php:450
|
5574 |
-
msgid "Thousand Separator"
|
5575 |
-
msgstr "Tausendertrennzeichen"
|
5576 |
-
|
5577 |
-
#: app/features/mec/settings.php:456
|
5578 |
-
msgid "Decimal Separator"
|
5579 |
-
msgstr "Dezimaltrennzeichen"
|
5580 |
-
|
5581 |
-
#: app/features/mec/settings.php:466
|
5582 |
-
msgid "No decimal"
|
5583 |
-
msgstr "Keine Dezimale"
|
5584 |
-
|
5585 |
-
#: app/features/mec/settings.php:477
|
5586 |
-
msgid "Enable Google Recaptcha"
|
5587 |
-
msgstr "Google Recaptcha aktivieren"
|
5588 |
-
|
5589 |
-
#: app/features/mec/settings.php:484
|
5590 |
-
msgid "Enable on booking form"
|
5591 |
-
msgstr "Auf dem Buchungsformular aktivieren"
|
5592 |
-
|
5593 |
-
#: app/features/mec/settings.php:490
|
5594 |
-
#, fuzzy
|
5595 |
-
#| msgid "Enable on \"Frontend Event Submittion\" form"
|
5596 |
-
msgid "Enable on \"Frontend Event Submission\" form"
|
5597 |
-
msgstr "Aktivieren auf dem \"Frontend Event Submittion\" Formular"
|
5598 |
-
|
5599 |
-
#: app/features/mec/settings.php:494
|
5600 |
-
msgid "Site Key"
|
5601 |
-
msgstr "Site Key (Seitenschlüssel)"
|
5602 |
-
|
5603 |
-
#: app/features/mec/settings.php:512 app/features/mec/settings.php:520
|
5604 |
-
msgid "Time Format"
|
5605 |
-
msgstr "Zeitformat"
|
5606 |
-
|
5607 |
-
#: app/features/mec/settings.php:515
|
5608 |
-
msgid "12 hours format with AM/PM"
|
5609 |
-
msgstr "12-Stunden-Format mit AM/FM"
|
5610 |
-
|
5611 |
-
#: app/features/mec/settings.php:516
|
5612 |
-
msgid "24 hours format"
|
5613 |
-
msgstr "24-Stunden-Format"
|
5614 |
-
|
5615 |
-
#: app/features/mec/settings.php:521
|
5616 |
-
msgid "This option, affects the selection of Start/End time."
|
5617 |
-
msgstr ""
|
5618 |
-
|
5619 |
-
#: app/features/mec/settings.php:529
|
5620 |
-
msgid "Events List Page"
|
5621 |
-
msgstr "Seite Liste der Veranstaltungen"
|
5622 |
-
|
5623 |
-
#: app/features/mec/settings.php:538 app/features/mec/settings.php:550
|
5624 |
-
#, php-format
|
5625 |
-
msgid "Put %s shortcode into the page."
|
5626 |
-
msgstr "%s shortcode in die Seite einfügen"
|
5627 |
-
|
5628 |
-
#: app/features/mec/settings.php:541
|
5629 |
-
msgid "Add/Edit Events Page"
|
5630 |
-
msgstr "Veranstaltungsseite hinzufügen/bearbeiten"
|
5631 |
-
|
5632 |
-
#: app/features/mec/settings.php:555
|
5633 |
-
msgid "Enable event submission by guest (Not logged-in) users"
|
5634 |
-
msgstr ""
|
5635 |
-
"Das Erstellen von Veranstaltungen durch Gäste (nicht angemeldete Nutzer) "
|
5636 |
-
"erlauben"
|
5637 |
-
|
5638 |
-
#: app/features/mec/settings.php:562
|
5639 |
-
msgid "Enable mandatory email and name for guest user"
|
5640 |
-
msgstr ""
|
5641 |
-
"Aktivieren Sie die obligatorische E-Mail und den Namen für Gastbenutzer"
|
5642 |
-
|
5643 |
-
#: app/features/mec/settings.php:566
|
5644 |
-
msgid "Frontend Event Submission Sections"
|
5645 |
-
msgstr "Frontend Veranstaltungen Einreichung Sektionen"
|
5646 |
-
|
5647 |
-
#: app/features/mec/settings.php:588 app/widgets/single.php:119
|
5648 |
-
msgid "Event Categories"
|
5649 |
-
msgstr "Veranstaltungskategorien"
|
5650 |
-
|
5651 |
-
#: app/features/mec/settings.php:594
|
5652 |
-
msgid "Event Labels"
|
5653 |
-
msgstr "Event Labels"
|
5654 |
-
|
5655 |
-
#: app/features/mec/settings.php:606
|
5656 |
-
msgid "Event Tags"
|
5657 |
-
msgstr "Event Schlagworte"
|
5658 |
-
|
5659 |
-
#: app/features/mec/settings.php:618 app/widgets/single.php:123
|
5660 |
-
msgid "Event Organizer"
|
5661 |
-
msgstr "Veranstaltungsmanager"
|
5662 |
-
|
5663 |
-
#: app/features/mec/settings.php:636
|
5664 |
-
msgid "Booking Options"
|
5665 |
-
msgstr "Buchungsoptionen"
|
5666 |
-
|
5667 |
-
#: app/features/mec/settings.php:642
|
5668 |
-
#, fuzzy
|
5669 |
-
#| msgid "Fees/Taxes Options"
|
5670 |
-
msgid "Fees / Taxes Options"
|
5671 |
-
msgstr "Gebühren/Steuer Optionen"
|
5672 |
-
|
5673 |
-
#: app/features/mec/settings.php:659
|
5674 |
-
#, php-format
|
5675 |
-
msgid ""
|
5676 |
-
"Users can put a note for editors while they're submitting the event. Also "
|
5677 |
-
"you can put %%event_note%% into the new event notification in order to get "
|
5678 |
-
"users' note in email."
|
5679 |
-
msgstr ""
|
5680 |
-
"Benutzer können eine Notiz für Redakteure setzen, während sie das Ereignis "
|
5681 |
-
"einreichen. Sie können auch %% event_note %% in die neue "
|
5682 |
-
"Eventbenachrichtigung setzen, um die Notizen der Benutzer in der E-Mail zu "
|
5683 |
-
"erhalten."
|
5684 |
-
|
5685 |
-
#: app/features/mec/settings.php:666 app/features/mec/settings.php:675
|
5686 |
-
msgid "Visibility of Note"
|
5687 |
-
msgstr "Sichtbarkeit der Anmerkungen zum Event "
|
5688 |
-
|
5689 |
-
#: app/features/mec/settings.php:669
|
5690 |
-
msgid "Always"
|
5691 |
-
msgstr "Immer"
|
5692 |
-
|
5693 |
-
#: app/features/mec/settings.php:670
|
5694 |
-
msgid "While event is not published"
|
5695 |
-
msgstr "Das Ereignis wird nicht veröffentlicht"
|
5696 |
-
|
5697 |
-
#: app/features/mec/settings.php:676
|
5698 |
-
msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
|
5699 |
-
msgstr ""
|
5700 |
-
"Die Ereignisnotiz wird im Frontend-Einreichungsformular angezeigt und das "
|
5701 |
-
"Ereignis im Backend bearbeitet."
|
5702 |
-
|
5703 |
-
#: app/features/mec/settings.php:685 app/libraries/main.php:534
|
5704 |
-
msgid "User Profile"
|
5705 |
-
msgstr ""
|
5706 |
-
|
5707 |
-
#: app/features/mec/settings.php:687
|
5708 |
-
#, php-format
|
5709 |
-
msgid ""
|
5710 |
-
"Put %s shortcode into your desired page. Then users are able to see history "
|
5711 |
-
"of their bookings."
|
5712 |
-
msgstr ""
|
5713 |
-
|
5714 |
-
#: app/features/mec/settings.php:692 app/libraries/main.php:535
|
5715 |
-
#, fuzzy
|
5716 |
-
#| msgid "Search Form"
|
5717 |
-
msgid "Search Bar"
|
5718 |
-
msgstr "Suche Formular"
|
5719 |
-
|
5720 |
-
#: app/features/mec/settings.php:694
|
5721 |
-
#, php-format
|
5722 |
-
msgid ""
|
5723 |
-
"Put %s shortcode into your desired page. Then users are able to search events"
|
5724 |
-
msgstr ""
|
5725 |
-
|
5726 |
-
#: app/features/mec/settings.php:698
|
5727 |
-
msgid "Ajax Live mode"
|
5728 |
-
msgstr ""
|
5729 |
-
|
5730 |
-
#: app/features/mec/settings.php:702
|
5731 |
-
msgid "Ajax mode"
|
5732 |
-
msgstr ""
|
5733 |
-
|
5734 |
-
#: app/features/mec/settings.php:703
|
5735 |
-
msgid ""
|
5736 |
-
"if you enable this option, search button disappeared and to use this "
|
5737 |
-
"feature, text input field must be enabled."
|
5738 |
-
msgstr ""
|
5739 |
-
|
5740 |
-
#: app/features/mec/settings.php:711
|
5741 |
-
#, fuzzy
|
5742 |
-
#| msgid "Modern Style"
|
5743 |
-
msgid "Modern Type"
|
5744 |
-
msgstr "Moderner Stil"
|
5745 |
-
|
5746 |
-
#: app/features/mec/settings.php:715
|
5747 |
-
#, fuzzy
|
5748 |
-
#| msgid "Search Form"
|
5749 |
-
msgid "Search bar fields"
|
5750 |
-
msgstr "Suche Formular"
|
5751 |
-
|
5752 |
-
#: app/features/mec/settings.php:757
|
5753 |
-
#, fuzzy
|
5754 |
-
#| msgid "Text Input"
|
5755 |
-
msgid "Text input"
|
5756 |
-
msgstr "Text eingeben"
|
5757 |
-
|
5758 |
-
#: app/features/mec/settings.php:770
|
5759 |
-
msgid "Enable Mailchimp Integration"
|
5760 |
-
msgstr "Mailchimp Integration deaktivieren"
|
5761 |
-
|
5762 |
-
#: app/features/mec/settings.php:788 app/features/mec/settings.php:793
|
5763 |
-
msgid "List ID"
|
5764 |
-
msgstr "List ID"
|
5765 |
-
|
5766 |
-
#: app/features/mec/settings.php:801 app/features/mec/settings.php:809
|
5767 |
-
msgid "Subscription Status"
|
5768 |
-
msgstr "Buchungsstatus"
|
5769 |
-
|
5770 |
-
#: app/features/mec/settings.php:804
|
5771 |
-
msgid "Subscribe automatically"
|
5772 |
-
msgstr "automatisch Anmelden/Abonnieren"
|
5773 |
-
|
5774 |
-
#: app/features/mec/settings.php:805
|
5775 |
-
msgid "Subscribe by verification"
|
5776 |
-
msgstr ""
|
5777 |
-
"Anmelden/Abonnieren durch Bestätigung\n"
|
5778 |
-
" "
|
5779 |
-
|
5780 |
-
#: app/features/mec/settings.php:810
|
5781 |
-
msgid ""
|
5782 |
-
"If you choose \"Subscribe by verification\" then an email will send to user "
|
5783 |
-
"by mailchimp for subscription verification."
|
5784 |
-
msgstr ""
|
5785 |
-
"Wenn Sie \"Anmelden durch Verifizierung\" wählen, wird eine E-Mail an den "
|
5786 |
-
"Benutzer per Mailchimp zur Bestätigung gesendet."
|
5787 |
-
|
5788 |
-
#: app/features/mec/settings.php:822
|
5789 |
-
#, fuzzy
|
5790 |
-
#| msgid "Filter Options"
|
5791 |
-
msgid "Upload Field Options"
|
5792 |
-
msgstr "Filteroptionen"
|
5793 |
-
|
5794 |
-
#: app/features/mec/settings.php:824
|
5795 |
-
msgid "Mime types"
|
5796 |
-
msgstr ""
|
5797 |
-
|
5798 |
-
#: app/features/mec/settings.php:828
|
5799 |
-
msgid "Split mime types with \",\"."
|
5800 |
-
msgstr ""
|
5801 |
-
|
5802 |
-
#: app/features/mec/settings.php:828
|
5803 |
-
msgid "Default: jpeg,jpg,png,pdf"
|
5804 |
-
msgstr ""
|
5805 |
-
|
5806 |
-
#: app/features/mec/settings.php:831
|
5807 |
-
#, fuzzy
|
5808 |
-
#| msgid "Amount (Per Ticket)"
|
5809 |
-
msgid "Maximum file size"
|
5810 |
-
msgstr "Betrag (pro Ticket)"
|
5811 |
-
|
5812 |
-
#: app/features/mec/settings.php:835
|
5813 |
-
msgid "The unit is Megabyte \"MB\""
|
5814 |
-
msgstr ""
|
5815 |
-
|
5816 |
-
#: app/features/mec/single.php:34 app/libraries/main.php:541
|
5817 |
-
#, fuzzy
|
5818 |
-
#| msgid "Single Event Style"
|
5819 |
-
msgid "Single Event Page"
|
5820 |
-
msgstr "Single Event Stil"
|
5821 |
-
|
5822 |
-
#: app/features/mec/single.php:36 app/features/mec/single.php:41
|
5823 |
-
msgid "Single Event Date Format"
|
5824 |
-
msgstr "Einzelveranstaltung Datumformat"
|
5825 |
-
|
5826 |
-
#: app/features/mec/single.php:49 app/features/mec/single.php:57
|
5827 |
-
msgid "Date Method"
|
5828 |
-
msgstr "Datum Methode"
|
5829 |
-
|
5830 |
-
#: app/features/mec/single.php:52
|
5831 |
-
msgid "Next occurrence date"
|
5832 |
-
msgstr "Nächstes vorkommende Datum"
|
5833 |
-
|
5834 |
-
#: app/features/mec/single.php:53
|
5835 |
-
msgid "Referred date"
|
5836 |
-
msgstr "Gewünschtes Datum"
|
5837 |
-
|
5838 |
-
#: app/features/mec/single.php:58
|
5839 |
-
#, fuzzy
|
5840 |
-
#| msgid ""
|
5841 |
-
#| "\"Referred date\" shows the event date based on referred date in event "
|
5842 |
-
#| "list."
|
5843 |
-
msgid ""
|
5844 |
-
"Referred date\" shows the event date based on referred date in event list."
|
5845 |
-
msgstr ""
|
5846 |
-
"\"Gewünschtes Datum\" zeigt das Ereignisdatum basierend auf dem angegebenen "
|
5847 |
-
"Datum in der Eventliste an."
|
5848 |
-
|
5849 |
-
#: app/features/mec/single.php:65 app/features/mec/single.php:76
|
5850 |
-
msgid "Single Event Style"
|
5851 |
-
msgstr "Single Event Stil"
|
5852 |
-
|
5853 |
-
#: app/features/mec/single.php:68
|
5854 |
-
msgid "Default Style"
|
5855 |
-
msgstr "Standardstil voreingestellt"
|
5856 |
-
|
5857 |
-
#: app/features/mec/single.php:71
|
5858 |
-
#, fuzzy
|
5859 |
-
#| msgid "MEC Single Sidebar"
|
5860 |
-
msgid "Elementor Single Builder"
|
5861 |
-
msgstr "MEC Single Sidebar"
|
5862 |
-
|
5863 |
-
#: app/features/mec/single.php:77
|
5864 |
-
msgid "Choose your single event style."
|
5865 |
-
msgstr "Wählen Sie Ihren Single Event Stil"
|
5866 |
-
|
5867 |
-
#: app/features/mec/single.php:85 app/features/mec/single.php:93
|
5868 |
-
#, fuzzy
|
5869 |
-
#| msgid "Booking"
|
5870 |
-
msgid "Booking Style"
|
5871 |
-
msgstr "Buchung / Reservierung"
|
5872 |
-
|
5873 |
-
#: app/features/mec/single.php:89
|
5874 |
-
#, fuzzy
|
5875 |
-
#| msgid "Modal 1"
|
5876 |
-
msgid "Modal"
|
5877 |
-
msgstr "Modal 1"
|
5878 |
-
|
5879 |
-
#: app/features/mec/single.php:94
|
5880 |
-
msgid ""
|
5881 |
-
"Choose your Booking style, Please Note: When you set this feature to modal "
|
5882 |
-
"you can not see booking box if you set popoup module view on shortcodes"
|
5883 |
-
msgstr ""
|
5884 |
-
|
5885 |
-
#: app/features/mec/single.php:102
|
5886 |
-
msgid "Disable Block Editor (Gutenberg)"
|
5887 |
-
msgstr ""
|
5888 |
-
|
5889 |
-
#: app/features/mec/single.php:105
|
5890 |
-
msgid "Disable Block Editor"
|
5891 |
-
msgstr ""
|
5892 |
-
|
5893 |
-
#: app/features/mec/single.php:109
|
5894 |
-
msgid "Block Editor"
|
5895 |
-
msgstr ""
|
5896 |
-
|
5897 |
-
#: app/features/mec/single.php:110
|
5898 |
-
msgid ""
|
5899 |
-
"If you want to use the new WordPress block editor you should keep this "
|
5900 |
-
"checkbox unchecked."
|
5901 |
-
msgstr ""
|
5902 |
-
|
5903 |
-
#: app/features/mec/single.php:116 app/features/mec/single.php:123
|
5904 |
-
msgid "Breadcrumbs"
|
5905 |
-
msgstr ""
|
5906 |
-
|
5907 |
-
#: app/features/mec/single.php:119
|
5908 |
-
msgid "Enable Breadcrumbs."
|
5909 |
-
msgstr ""
|
5910 |
-
|
5911 |
-
#: app/features/mec/single.php:124
|
5912 |
-
msgid "Check this option, for showing the breadcrumbs on single event page"
|
5913 |
-
msgstr ""
|
5914 |
-
|
5915 |
-
#: app/features/mec/single.php:137
|
5916 |
-
msgid "Show countdown module on event page"
|
5917 |
-
msgstr "Countdownmodul auf Veranstaltungsseite anzeigen"
|
5918 |
-
|
5919 |
-
#: app/features/mec/single.php:142
|
5920 |
-
msgid "Countdown Style"
|
5921 |
-
msgstr "Countdown Stil"
|
5922 |
-
|
5923 |
-
#: app/features/mec/single.php:145
|
5924 |
-
msgid "Plain Style"
|
5925 |
-
msgstr "Einfacher schlichter Stil"
|
5926 |
-
|
5927 |
-
#: app/features/mec/single.php:146
|
5928 |
-
msgid "Flip Style"
|
5929 |
-
msgstr "Flip Stil"
|
5930 |
-
|
5931 |
-
#: app/features/mec/single.php:154 app/features/mec/single.php:161
|
5932 |
-
msgid "Exceptional days"
|
5933 |
-
msgstr "Ausgesuchte ausnehmende Tage"
|
5934 |
-
|
5935 |
-
#: app/features/mec/single.php:158
|
5936 |
-
msgid "Show exceptional days option on Add/Edit events page"
|
5937 |
-
msgstr ""
|
5938 |
-
"Ausnehmende Tage anzeigen auf der Seite Ereignisse hinzufügen / bearbeiten "
|
5939 |
-
"(Show exceptional days option on Add/Edit events page)"
|
5940 |
-
|
5941 |
-
#: app/features/mec/single.php:162
|
5942 |
-
#, fuzzy
|
5943 |
-
#| msgid ""
|
5944 |
-
#| "Using this option you can include/exclude certain days to/from event "
|
5945 |
-
#| "occurrence dates."
|
5946 |
-
msgid ""
|
5947 |
-
"Using this option you can exclude certain days from event occurrence dates."
|
5948 |
-
msgstr ""
|
5949 |
-
"Mit dieser Option können Sie bestimmte Tage von vorkommenden Eventdaten ein-/"
|
5950 |
-
"ausschließen."
|
5951 |
-
|
5952 |
-
#: app/features/mec/single.php:171 app/libraries/main.php:544
|
5953 |
-
msgid "Additional Organizers"
|
5954 |
-
msgstr "Zusätzliche Organisatoren"
|
5955 |
-
|
5956 |
-
#: app/features/mec/single.php:175
|
5957 |
-
msgid ""
|
5958 |
-
"Show additional organizers option on Add/Edit events page and single event "
|
5959 |
-
"page."
|
5960 |
-
msgstr ""
|
5961 |
-
"Zeigen Sie zusätzliche Organisatoren auf der Seite Events hinzufügen / "
|
5962 |
-
"bearbeiten und auf der Seite für einzelne Events an."
|
5963 |
-
|
5964 |
-
#: app/features/mec/single.php:181
|
5965 |
-
#, fuzzy
|
5966 |
-
#| msgid "Additional Organizers"
|
5967 |
-
msgid "Additional locations"
|
5968 |
-
msgstr "Zusätzliche Organisatoren"
|
5969 |
-
|
5970 |
-
#: app/features/mec/single.php:185
|
5971 |
-
#, fuzzy
|
5972 |
-
#| msgid ""
|
5973 |
-
#| "Show additional organizers option on Add/Edit events page and single "
|
5974 |
-
#| "event page."
|
5975 |
-
msgid ""
|
5976 |
-
"Show additional locations option on Add/Edit events page and single event "
|
5977 |
-
"page."
|
5978 |
-
msgstr ""
|
5979 |
-
"Zeigen Sie zusätzliche Organisatoren auf der Seite Events hinzufügen / "
|
5980 |
-
"bearbeiten und auf der Seite für einzelne Events an."
|
5981 |
-
|
5982 |
-
#: app/features/mec/single.php:191 app/libraries/main.php:546
|
5983 |
-
#: app/skins/single.php:163
|
5984 |
-
#, fuzzy
|
5985 |
-
#| msgid "featured event"
|
5986 |
-
msgid "Related Events"
|
5987 |
-
msgstr "Ausgewählte Veranstaltung"
|
5988 |
-
|
5989 |
-
#: app/features/mec/single.php:195
|
5990 |
-
msgid "Display related events based on taxonomy in single event page."
|
5991 |
-
msgstr ""
|
5992 |
-
|
5993 |
-
#: app/features/mec/single.php:201
|
5994 |
-
#, fuzzy
|
5995 |
-
#| msgid "Taxonomies"
|
5996 |
-
msgid "Select Taxonomies:"
|
5997 |
-
msgstr "Klassifizierung "
|
5998 |
-
|
5999 |
-
#: app/features/mec/styles.php:24
|
6000 |
-
msgid "Custom Styles"
|
6001 |
-
msgstr "Benutzerdefinierte Stile"
|
6002 |
-
|
6003 |
-
#: app/features/mec/styles.php:29
|
6004 |
-
msgid ""
|
6005 |
-
"If you're a developer or you have some knowledge about CSS codes, you can "
|
6006 |
-
"place your desired styles codes here. These codes will be included in your "
|
6007 |
-
"theme frontend after all styles so they will override MEC default (or theme) "
|
6008 |
-
"styles."
|
6009 |
-
msgstr ""
|
6010 |
-
"Wenn Sie Entwickler sind oder Erfahrung mit CSS haben, dann können Sie hier "
|
6011 |
-
"Ihre eigenen Stilcodes einfügen. Diese Codes werden in Ihr Frontend "
|
6012 |
-
"übernommen und übersteuern die MEC- (oder Thema-) Grundeinstellungen."
|
6013 |
-
|
6014 |
-
#: app/features/mec/styling.php:10 app/features/mec/styling.php:158
|
6015 |
-
#: app/features/mec/styling.php:184
|
6016 |
-
msgid "Default Font"
|
6017 |
-
msgstr "Standardschriftart des Themas "
|
6018 |
-
|
6019 |
-
#: app/features/mec/styling.php:50
|
6020 |
-
msgid "Styling Option"
|
6021 |
-
msgstr "Style Optionen"
|
6022 |
-
|
6023 |
-
#: app/features/mec/styling.php:55
|
6024 |
-
msgid "Color Skin"
|
6025 |
-
msgstr "Farbe Skin"
|
6026 |
-
|
6027 |
-
#: app/features/mec/styling.php:58
|
6028 |
-
msgid "Predefined Color Skin"
|
6029 |
-
msgstr "Vordefinierte Farbenoberfläche"
|
6030 |
-
|
6031 |
-
#: app/features/mec/styling.php:101
|
6032 |
-
msgid "Custom Color Skin"
|
6033 |
-
msgstr "Benutzerdefinierte Farboberfläche"
|
6034 |
-
|
6035 |
-
#: app/features/mec/styling.php:107
|
6036 |
-
msgid ""
|
6037 |
-
"If you want to select a predefined color skin, you must clear the color of "
|
6038 |
-
"this item"
|
6039 |
-
msgstr ""
|
6040 |
-
|
6041 |
-
#: app/features/mec/styling.php:112
|
6042 |
-
msgid "Advanced Color Options (shortcodes)"
|
6043 |
-
msgstr ""
|
6044 |
-
|
6045 |
-
#: app/features/mec/styling.php:124
|
6046 |
-
#, fuzzy
|
6047 |
-
#| msgid "Title of event"
|
6048 |
-
msgid "Title Hover"
|
6049 |
-
msgstr "Titel der Veranstaltung"
|
6050 |
-
|
6051 |
-
#: app/features/mec/styling.php:141
|
6052 |
-
msgid "Typography"
|
6053 |
-
msgstr "Typographie"
|
6054 |
-
|
6055 |
-
#: app/features/mec/styling.php:143
|
6056 |
-
msgid "Heading (Events Title) Font Family"
|
6057 |
-
msgstr "Schriftart Überschrift (Titel der Veranstaltung)"
|
6058 |
-
|
6059 |
-
#: app/features/mec/styling.php:169
|
6060 |
-
msgid "Paragraph Font Family"
|
6061 |
-
msgstr "Schriftart Absätze"
|
6062 |
-
|
6063 |
-
#: app/features/mec/styling.php:196 app/features/mec/styling.php:202
|
6064 |
-
#, fuzzy
|
6065 |
-
#| msgid "Enable Google Recaptcha"
|
6066 |
-
msgid "Disable Google Fonts"
|
6067 |
-
msgstr "Google Recaptcha aktivieren"
|
6068 |
-
|
6069 |
-
#: app/features/mec/styling.php:203
|
6070 |
-
msgid "To be GDPR compliant you may need to disable Google fonts!"
|
6071 |
-
msgstr ""
|
6072 |
-
|
6073 |
-
#: app/features/mec/styling.php:212
|
6074 |
-
msgid "Container Width"
|
6075 |
-
msgstr ""
|
6076 |
-
|
6077 |
-
#: app/features/mec/styling.php:214 app/features/mec/styling.php:219
|
6078 |
-
msgid "Desktop Normal Screens"
|
6079 |
-
msgstr ""
|
6080 |
-
|
6081 |
-
#: app/features/mec/styling.php:220 app/features/mec/styling.php:233
|
6082 |
-
msgid "You can enter your theme container size in this field"
|
6083 |
-
msgstr ""
|
6084 |
-
|
6085 |
-
#: app/features/mec/styling.php:227 app/features/mec/styling.php:232
|
6086 |
-
msgid "Desktop Large Screens"
|
6087 |
-
msgstr ""
|
6088 |
-
|
6089 |
-
#: app/features/mec/support-page.php:12
|
6090 |
-
#, fuzzy
|
6091 |
-
#| msgid "All Events"
|
6092 |
-
msgid "All videos"
|
6093 |
-
msgstr "Alle Veranstaltungen"
|
6094 |
-
|
6095 |
-
#: app/features/mec/support-page.php:13 app/features/mec/support.php:147
|
6096 |
-
#, fuzzy
|
6097 |
-
#| msgid "View all Articles"
|
6098 |
-
msgid "All Articles"
|
6099 |
-
msgstr "Alle Artikel anzeigen"
|
6100 |
-
|
6101 |
-
#: app/features/mec/support-page.php:15
|
6102 |
-
msgid ""
|
6103 |
-
"If you have any questions regarding Modern Events Calendar and how to use "
|
6104 |
-
"it, you can use the following four methods we have prepared in this page. "
|
6105 |
-
"The detailed documentations of MEC along with its instructional videos will "
|
6106 |
-
"help you have a great experience working with it.So, if you need futher "
|
6107 |
-
"instructions using the plugin, please first refer to the following to find "
|
6108 |
-
"your answers."
|
6109 |
-
msgstr ""
|
6110 |
-
|
6111 |
-
#: app/features/mec/support-page.php:31
|
6112 |
-
msgid "Advice and answers from the Webnus Team"
|
6113 |
-
msgstr ""
|
6114 |
-
|
6115 |
-
#: app/features/mec/support-page.php:46
|
6116 |
-
msgid "Quick Setup"
|
6117 |
-
msgstr ""
|
6118 |
-
|
6119 |
-
#: app/features/mec/support-page.php:50
|
6120 |
-
#, fuzzy
|
6121 |
-
#| msgid "Download Invoice"
|
6122 |
-
msgid "Download the Plugin"
|
6123 |
-
msgstr "Download Rechnung\n"
|
6124 |
-
|
6125 |
-
#: app/features/mec/support-page.php:51
|
6126 |
-
msgid "Install and Activate the Plugin"
|
6127 |
-
msgstr ""
|
6128 |
-
|
6129 |
-
#: app/features/mec/support-page.php:52
|
6130 |
-
#, fuzzy
|
6131 |
-
#| msgid "Add New Event"
|
6132 |
-
msgid "Add a New Event"
|
6133 |
-
msgstr "Neue Veranstaltung hinzufügen"
|
6134 |
-
|
6135 |
-
#: app/features/mec/support-page.php:55 app/features/mec/support-page.php:72
|
6136 |
-
#: app/features/mec/support-page.php:89 app/features/mec/support-page.php:106
|
6137 |
-
#: app/features/mec/support-page.php:126 app/features/mec/support-page.php:143
|
6138 |
-
#: app/features/mec/support-page.php:160 app/features/mec/support-page.php:177
|
6139 |
-
msgid "Watch Video"
|
6140 |
-
msgstr ""
|
6141 |
-
|
6142 |
-
#: app/features/mec/support-page.php:63
|
6143 |
-
#, fuzzy
|
6144 |
-
#| msgid "MEC Activation"
|
6145 |
-
msgid "Activate License"
|
6146 |
-
msgstr "MEC Aktivierung"
|
6147 |
-
|
6148 |
-
#: app/features/mec/support-page.php:67
|
6149 |
-
msgid "Login to Dashboard"
|
6150 |
-
msgstr ""
|
6151 |
-
|
6152 |
-
#: app/features/mec/support-page.php:68
|
6153 |
-
msgid "Get the License Key"
|
6154 |
-
msgstr ""
|
6155 |
-
|
6156 |
-
#: app/features/mec/support-page.php:69
|
6157 |
-
msgid "Activate the plugin"
|
6158 |
-
msgstr ""
|
6159 |
-
|
6160 |
-
#: app/features/mec/support-page.php:84
|
6161 |
-
#, fuzzy
|
6162 |
-
#| msgid "Hide Event End Time"
|
6163 |
-
msgid "Add New Events, Date and Time"
|
6164 |
-
msgstr "Ende-Zeit der Veranstaltung verbergen"
|
6165 |
-
|
6166 |
-
#: app/features/mec/support-page.php:85
|
6167 |
-
msgid "Tags, Categories, Organizer, Location"
|
6168 |
-
msgstr ""
|
6169 |
-
|
6170 |
-
#: app/features/mec/support-page.php:86
|
6171 |
-
#, fuzzy
|
6172 |
-
#| msgid "Hourly Schedule"
|
6173 |
-
msgid "Hourly Schedule, Set Up Shortcodes"
|
6174 |
-
msgstr "Stundenplan"
|
6175 |
-
|
6176 |
-
#: app/features/mec/support-page.php:97 app/features/mec/support-page.php:101
|
6177 |
-
#, fuzzy
|
6178 |
-
#| msgid "Enable booking module"
|
6179 |
-
msgid "Enable Booking"
|
6180 |
-
msgstr "Buchungsmodul aktivieren"
|
6181 |
-
|
6182 |
-
#: app/features/mec/support-page.php:102 app/features/mec/support-page.php:123
|
6183 |
-
#, fuzzy
|
6184 |
-
#| msgid "Booking Form"
|
6185 |
-
msgid "Customize the Booking Form"
|
6186 |
-
msgstr "Buchungsformular"
|
6187 |
-
|
6188 |
-
#: app/features/mec/support-page.php:103
|
6189 |
-
#, fuzzy
|
6190 |
-
#| msgid "Payment Gateways"
|
6191 |
-
msgid "Set Up a Payment Gateway"
|
6192 |
-
msgstr "Zahlungs-Gateways"
|
6193 |
-
|
6194 |
-
#: app/features/mec/support-page.php:117
|
6195 |
-
msgid "Add booking form to event"
|
6196 |
-
msgstr ""
|
6197 |
-
|
6198 |
-
#: app/features/mec/support-page.php:121
|
6199 |
-
#, fuzzy
|
6200 |
-
#| msgid "Enable booking notification"
|
6201 |
-
msgid "Enable Booking from Settings"
|
6202 |
-
msgstr "Buchungsbenachrichtigung aktivieren"
|
6203 |
-
|
6204 |
-
#: app/features/mec/support-page.php:122
|
6205 |
-
#, fuzzy
|
6206 |
-
#| msgid "Booking Form"
|
6207 |
-
msgid "Set Up a Booking Form"
|
6208 |
-
msgstr "Buchungsformular"
|
6209 |
-
|
6210 |
-
#: app/features/mec/support-page.php:134
|
6211 |
-
#, fuzzy
|
6212 |
-
#| msgid "Shortcodes"
|
6213 |
-
msgid "Create Shortcodes"
|
6214 |
-
msgstr "Shortcodes"
|
6215 |
-
|
6216 |
-
#: app/features/mec/support-page.php:138
|
6217 |
-
#, fuzzy
|
6218 |
-
#| msgid "Add New Shortcode"
|
6219 |
-
msgid "Create a New Shortcode"
|
6220 |
-
msgstr "Neuen Shortcode hinzufügen"
|
6221 |
-
|
6222 |
-
#: app/features/mec/support-page.php:139
|
6223 |
-
#, fuzzy
|
6224 |
-
#| msgid "Shortcodes"
|
6225 |
-
msgid "Customize Shortcodes"
|
6226 |
-
msgstr "Shortcodes"
|
6227 |
-
|
6228 |
-
#: app/features/mec/support-page.php:140
|
6229 |
-
#, fuzzy
|
6230 |
-
#| msgid "All Shortcodes"
|
6231 |
-
msgid "Use Filters in Shortcodes"
|
6232 |
-
msgstr "Alle Shortcodes"
|
6233 |
-
|
6234 |
-
#: app/features/mec/support-page.php:151
|
6235 |
-
msgid "WooCommerce gateways"
|
6236 |
-
msgstr ""
|
6237 |
-
|
6238 |
-
#: app/features/mec/support-page.php:155
|
6239 |
-
msgid "Install and Activate WooCommerce"
|
6240 |
-
msgstr ""
|
6241 |
-
|
6242 |
-
#: app/features/mec/support-page.php:156
|
6243 |
-
msgid "Integrate with MEC"
|
6244 |
-
msgstr ""
|
6245 |
-
|
6246 |
-
#: app/features/mec/support-page.php:157
|
6247 |
-
msgid "Set Up WooCommerce Gateway"
|
6248 |
-
msgstr ""
|
6249 |
-
|
6250 |
-
#: app/features/mec/support-page.php:172
|
6251 |
-
msgid "An Overview of the Settings"
|
6252 |
-
msgstr ""
|
6253 |
-
|
6254 |
-
#: app/features/mec/support-page.php:173
|
6255 |
-
#, fuzzy
|
6256 |
-
#| msgid "Import Options"
|
6257 |
-
msgid "Set Up Different Settings"
|
6258 |
-
msgstr "Import Optionen"
|
6259 |
-
|
6260 |
-
#: app/features/mec/support-page.php:174
|
6261 |
-
#, fuzzy
|
6262 |
-
#| msgid "Filter Options"
|
6263 |
-
msgid "Use Different Options"
|
6264 |
-
msgstr "Filteroptionen"
|
6265 |
-
|
6266 |
-
#: app/features/mec/support-page.php:188
|
6267 |
-
msgid "FAQ"
|
6268 |
-
msgstr ""
|
6269 |
-
|
6270 |
-
#: app/features/mec/support-page.php:192
|
6271 |
-
msgid "How should I update plugin?"
|
6272 |
-
msgstr ""
|
6273 |
-
|
6274 |
-
#: app/features/mec/support-page.php:194
|
6275 |
-
#, php-format
|
6276 |
-
msgid ""
|
6277 |
-
"You have two options:<br>\n"
|
6278 |
-
" 1-\tUploading the plugin file using FTP. For "
|
6279 |
-
"more information, please <a href=\"%s\" target=\"_blank\">click here</a>."
|
6280 |
-
"<br>\n"
|
6281 |
-
" 2-\tUsing the auto-update feature which needs "
|
6282 |
-
"the adding of the purchase code in the corresponding section in the plugin. "
|
6283 |
-
"For more information, please <a href=\"%s\" target=\"_blank\">click here</a>."
|
6284 |
-
msgstr ""
|
6285 |
-
|
6286 |
-
#: app/features/mec/support-page.php:199
|
6287 |
-
msgid "Do I lose all my data or customization if I update MEC?"
|
6288 |
-
msgstr ""
|
6289 |
-
|
6290 |
-
#: app/features/mec/support-page.php:200
|
6291 |
-
msgid ""
|
6292 |
-
"If you’ve added a file to the main folder of MEC, this file will be removed "
|
6293 |
-
"after the update. Therefore, please do get a full back up before proceeding "
|
6294 |
-
"with the update process."
|
6295 |
-
msgstr ""
|
6296 |
-
|
6297 |
-
#: app/features/mec/support-page.php:203
|
6298 |
-
msgid "Can I customize the event pages?"
|
6299 |
-
msgstr ""
|
6300 |
-
|
6301 |
-
#: app/features/mec/support-page.php:205
|
6302 |
-
#, php-format
|
6303 |
-
msgid ""
|
6304 |
-
"Yes, it is possible. In order to see the related documentations, please <a "
|
6305 |
-
"href=\"%s\" target=\"_blank\">click here</a>."
|
6306 |
-
msgstr ""
|
6307 |
-
|
6308 |
-
#: app/features/mec/support-page.php:208
|
6309 |
-
msgid "Does MEC have default languages or it needs to be translated?"
|
6310 |
-
msgstr ""
|
6311 |
-
|
6312 |
-
#: app/features/mec/support-page.php:210
|
6313 |
-
#, php-format
|
6314 |
-
msgid ""
|
6315 |
-
"Yes, for some of the languages MEC has the translation file as default. "
|
6316 |
-
"However, since these translations have been done by the users, they may be "
|
6317 |
-
"incomplete, hence updating them might be required. For more information, "
|
6318 |
-
"please <a href=\"%s\" target=\"_blank\">click here</a>."
|
6319 |
-
msgstr ""
|
6320 |
-
|
6321 |
-
#: app/features/mec/support-page.php:213
|
6322 |
-
msgid "Can I have more than one calendar in one website?"
|
6323 |
-
msgstr ""
|
6324 |
-
|
6325 |
-
#: app/features/mec/support-page.php:214
|
6326 |
-
msgid ""
|
6327 |
-
"Unfortunately, MEC does not support more than 1 calendar in a single "
|
6328 |
-
"website, however, it will be added in its upcoming updates."
|
6329 |
-
msgstr ""
|
6330 |
-
|
6331 |
-
#: app/features/mec/support-page.php:216
|
6332 |
-
msgid "Can I import/export from/to MEC?"
|
6333 |
-
msgstr ""
|
6334 |
-
|
6335 |
-
#: app/features/mec/support-page.php:217
|
6336 |
-
msgid ""
|
6337 |
-
"Yes, you can get an XML export from MEC data or import the file you've "
|
6338 |
-
"exported to MEC. Also, if you are using one of the following plugins (The "
|
6339 |
-
"event calendar, calendarize it, EventOn, Events Schedule WP Plugin), then "
|
6340 |
-
"you can easily transfer your events to MEC."
|
6341 |
-
msgstr ""
|
6342 |
-
|
6343 |
-
#: app/features/mec/support-page.php:225
|
6344 |
-
#, fuzzy
|
6345 |
-
#| msgid "View all Articles"
|
6346 |
-
msgid "Articles"
|
6347 |
-
msgstr "Alle Artikel anzeigen"
|
6348 |
-
|
6349 |
-
#: app/features/mec/support-page.php:228
|
6350 |
-
msgid "MEC And Integrate With WooCommerce"
|
6351 |
-
msgstr ""
|
6352 |
-
|
6353 |
-
#: app/features/mec/support-page.php:229
|
6354 |
-
msgid "Create Events With Your Page Builder"
|
6355 |
-
msgstr ""
|
6356 |
-
|
6357 |
-
#: app/features/mec/support-page.php:230
|
6358 |
-
msgid "Why can't I use HTML tags?"
|
6359 |
-
msgstr ""
|
6360 |
-
|
6361 |
-
#: app/features/mec/support-page.php:231
|
6362 |
-
msgid "Setup Date Option On Shortcodes"
|
6363 |
-
msgstr ""
|
6364 |
-
|
6365 |
-
#: app/features/mec/support-page.php:232
|
6366 |
-
msgid "I want to export booking, what should I do?"
|
6367 |
-
msgstr ""
|
6368 |
-
|
6369 |
-
#: app/features/mec/support-page.php:233
|
6370 |
-
#, fuzzy
|
6371 |
-
#| msgid "iCal Export"
|
6372 |
-
msgid "I Can't Export iCal"
|
6373 |
-
msgstr "ical Export"
|
6374 |
-
|
6375 |
-
#: app/features/mec/support-page.php:234
|
6376 |
-
#, fuzzy
|
6377 |
-
#| msgid "Booking module doesn't work"
|
6378 |
-
msgid "Booking Module Not Working"
|
6379 |
-
msgstr "Das Buchungsmodul arbeitet nicht."
|
6380 |
-
|
6381 |
-
#: app/features/mec/support-page.php:235
|
6382 |
-
msgid "Translate MEC"
|
6383 |
-
msgstr ""
|
6384 |
-
|
6385 |
-
#: app/features/mec/support-page.php:236
|
6386 |
-
#, fuzzy
|
6387 |
-
#| msgid "No event found!"
|
6388 |
-
msgid "No Event Found!"
|
6389 |
-
msgstr "Keine Veranstaltung gefunden"
|
6390 |
-
|
6391 |
-
#: app/features/mec/support-page.php:237
|
6392 |
-
#, fuzzy
|
6393 |
-
#| msgid "Mailchimp Integration"
|
6394 |
-
msgid "MEC Theme Integration Guide"
|
6395 |
-
msgstr "Mailchimp Integration"
|
6396 |
-
|
6397 |
-
#: app/features/mec/support-page.php:238
|
6398 |
-
#, fuzzy
|
6399 |
-
#| msgid "How to override MEC template files?"
|
6400 |
-
msgid "Can I Override MEC Template ?"
|
6401 |
-
msgstr "Wie kann ich MEC-Vorlagendateien überschreiben?"
|
6402 |
-
|
6403 |
-
#: app/features/mec/support-page.php:248
|
6404 |
-
#, fuzzy
|
6405 |
-
#| msgid ""
|
6406 |
-
#| "Webnus is elite and trusted author with high percentage of satisfied "
|
6407 |
-
#| "user. If you have any issues please don't hesitate to contact us, we will "
|
6408 |
-
#| "reply as soon as possible."
|
6409 |
-
msgid ""
|
6410 |
-
"Webnus is an elite and trusted author with a high percentage of satisfied "
|
6411 |
-
"users. If you have any issues please don't hesitate to contact us, we will "
|
6412 |
-
"reply as soon as possible."
|
6413 |
-
msgstr ""
|
6414 |
-
"Webnus ist ein Elite- und vertrauenswürdiger Autor mit hoher Prozentzahl von "
|
6415 |
-
"zufriedenen Nutzern. Wenn Sie irgendwelche Fehlerprobleme haben, zögern Sie "
|
6416 |
-
"nicht uns zu kontaktieren. Wir werden so schnell wie möglich antworten."
|
6417 |
-
|
6418 |
-
#: app/features/mec/support-page.php:249
|
6419 |
-
#, fuzzy
|
6420 |
-
#| msgid "Add New Shortcode"
|
6421 |
-
msgid "Create a support ticket"
|
6422 |
-
msgstr "Neuen Shortcode hinzufügen"
|
6423 |
-
|
6424 |
-
#: app/features/mec/support.php:52 app/libraries/main.php:775
|
6425 |
-
msgid "Styling Options"
|
6426 |
-
msgstr "Styling-Optionen"
|
6427 |
-
|
6428 |
-
#: app/features/mec/support.php:59 app/libraries/main.php:782
|
6429 |
-
msgid "Custom CSS"
|
6430 |
-
msgstr "Custom CSS"
|
6431 |
-
|
6432 |
-
#: app/features/mec/support.php:104
|
6433 |
-
msgid ""
|
6434 |
-
"Our documentation is simple and functional with full details and cover all "
|
6435 |
-
"essential aspects from beginning to the most advanced parts."
|
6436 |
-
msgstr ""
|
6437 |
-
"Unsere Dokumentation ist einfach und funktionell mit vollen Details und "
|
6438 |
-
"deckt alle essentiellen Dinge vom Beginn bis zu den fortgeschrittenen Teilen "
|
6439 |
-
"ab."
|
6440 |
-
|
6441 |
-
#: app/features/mec/support.php:107
|
6442 |
-
msgid "DOCUMENTATION"
|
6443 |
-
msgstr "Dokumentation"
|
6444 |
-
|
6445 |
-
#: app/features/mec/support.php:116
|
6446 |
-
msgid "Support Forum"
|
6447 |
-
msgstr "Support Forum"
|
6448 |
-
|
6449 |
-
#: app/features/mec/support.php:120
|
6450 |
-
msgid ""
|
6451 |
-
"Webnus is elite and trusted author with high percentage of satisfied user. "
|
6452 |
-
"If you want to use this service you need to upgrade your plugin to Pro "
|
6453 |
-
"version. Click on the following button."
|
6454 |
-
msgstr ""
|
6455 |
-
|
6456 |
-
#: app/features/mec/support.php:122
|
6457 |
-
msgid ""
|
6458 |
-
"Webnus is elite and trusted author with high percentage of satisfied user. "
|
6459 |
-
"If you have any issues please don't hesitate to contact us, we will reply as "
|
6460 |
-
"soon as possible."
|
6461 |
-
msgstr ""
|
6462 |
-
"Webnus ist ein Elite- und vertrauenswürdiger Autor mit hoher Prozentzahl von "
|
6463 |
-
"zufriedenen Nutzern. Wenn Sie irgendwelche Fehlerprobleme haben, zögern Sie "
|
6464 |
-
"nicht uns zu kontaktieren. Wir werden so schnell wie möglich antworten."
|
6465 |
-
|
6466 |
-
#: app/features/mec/support.php:128
|
6467 |
-
msgid "OPEN A TICKET"
|
6468 |
-
msgstr "Ein Ticket eröffnen"
|
6469 |
-
|
6470 |
-
#: app/features/mec/support.php:138
|
6471 |
-
msgid "Knowledgebase"
|
6472 |
-
msgstr "Wissensbasis"
|
6473 |
-
|
6474 |
-
#: app/features/mec/support.php:142
|
6475 |
-
msgid "How to create a new event?"
|
6476 |
-
msgstr "Wie erstelle ich ein neues Event?"
|
6477 |
-
|
6478 |
-
#: app/features/mec/support.php:143
|
6479 |
-
msgid "Booking module doesn't work"
|
6480 |
-
msgstr "Das Buchungsmodul arbeitet nicht."
|
6481 |
-
|
6482 |
-
#: app/features/mec/support.php:144
|
6483 |
-
msgid "How to export events in iCal format?"
|
6484 |
-
msgstr ""
|
6485 |
-
"Wie kann man Events in das iCal-Format exportieren\n"
|
6486 |
-
" "
|
6487 |
-
|
6488 |
-
#: app/features/mec/support.php:145
|
6489 |
-
msgid "How to override MEC template files?"
|
6490 |
-
msgstr "Wie kann ich MEC-Vorlagendateien überschreiben?"
|
6491 |
-
|
6492 |
-
#: app/features/mec/support.php:146
|
6493 |
-
msgid "How to add/manage shortcodes?"
|
6494 |
-
msgstr "Wie kann man shortcodes hinzufügen / managen?"
|
6495 |
-
|
6496 |
-
#: app/features/op.php:96
|
6497 |
-
#, fuzzy
|
6498 |
-
#| msgid "Organizer name of booked event"
|
6499 |
-
msgid "Organizer Payment Credentials"
|
6500 |
-
msgstr "Name des Veranstalters des gebuchten Events"
|
6501 |
-
|
6502 |
-
#: app/features/organizers.php:106 app/features/organizers.php:149
|
6503 |
-
msgid "Insert organizer phone number."
|
6504 |
-
msgstr "Veranstalter Telefonnummer einfügen"
|
6505 |
-
|
6506 |
-
#: app/features/organizers.php:114 app/features/organizers.php:153
|
6507 |
-
msgid "Insert organizer email address."
|
6508 |
-
msgstr "Veranstalter Email-Adresse einfügen"
|
6509 |
-
|
6510 |
-
#: app/features/organizers.php:119 app/features/organizers.php:156
|
6511 |
-
#: app/features/organizers.php:291
|
6512 |
-
msgid "Link to organizer page"
|
6513 |
-
msgstr "Link zur Seite des Veranstalters"
|
6514 |
-
|
6515 |
-
#: app/features/organizers.php:122 app/features/organizers.php:157
|
6516 |
-
msgid "Use this field to link organizer to other user profile pages"
|
6517 |
-
msgstr ""
|
6518 |
-
"Verwenden Sie dieses Feld, um den Organisator mit anderen "
|
6519 |
-
"Benutzerprofilseiten zu verknüpfen"
|
6520 |
-
|
6521 |
-
#: app/features/organizers.php:205
|
6522 |
-
msgid "Contact info"
|
6523 |
-
msgstr "Kontaktdaten"
|
6524 |
-
|
6525 |
-
#: app/features/organizers.php:260
|
6526 |
-
#, php-format
|
6527 |
-
msgid "Event Main %s"
|
6528 |
-
msgstr "Hauptevent % s"
|
6529 |
-
|
6530 |
-
#: app/features/organizers.php:263
|
6531 |
-
msgid "Hide organizer"
|
6532 |
-
msgstr "Veranstalter verbergen"
|
6533 |
-
|
6534 |
-
#: app/features/organizers.php:264
|
6535 |
-
msgid "Insert a new organizer"
|
6536 |
-
msgstr "Neuen Veranstalter einfügen"
|
6537 |
-
|
6538 |
-
#: app/features/organizers.php:272
|
6539 |
-
msgid "Choose one of saved organizers or insert new one below."
|
6540 |
-
msgstr ""
|
6541 |
-
"Wählen Sie einen der gespeicherten Veranstalter aus oder legen Sie einen "
|
6542 |
-
"neuen Veranstalter an."
|
6543 |
-
|
6544 |
-
#: app/features/organizers.php:283
|
6545 |
-
msgid "Phone number."
|
6546 |
-
msgstr "Telefon"
|
6547 |
-
|
6548 |
-
#: app/features/organizers.php:284
|
6549 |
-
msgid "eg. +1 (234) 5678"
|
6550 |
-
msgstr "z.B. +49 (1234) 56789"
|
6551 |
-
|
6552 |
-
#: app/features/organizers.php:287
|
6553 |
-
msgid "Email address."
|
6554 |
-
msgstr "Mailadresse"
|
6555 |
-
|
6556 |
-
#: app/features/organizers.php:288
|
6557 |
-
msgid "eg. john@smith.com"
|
6558 |
-
msgstr "z.B.. max@mustermann.com"
|
6559 |
-
|
6560 |
-
#: app/features/organizers.php:292
|
6561 |
-
#, fuzzy
|
6562 |
-
#| msgid "http://webnus.net"
|
6563 |
-
msgid "eg. https://webnus.net"
|
6564 |
-
msgstr "http://webnus.net"
|
6565 |
-
|
6566 |
-
#: app/features/organizers.php:311 app/libraries/main.php:4915
|
6567 |
-
#: app/skins/single.php:845
|
6568 |
-
msgid "Other Organizers"
|
6569 |
-
msgstr "Andere Veranstalter"
|
6570 |
-
|
6571 |
-
#: app/features/organizers.php:313
|
6572 |
-
msgid ""
|
6573 |
-
"You can select extra organizers in addition to main organizer if you like."
|
6574 |
-
msgstr ""
|
6575 |
-
"Sie können zusätzliche Veranstalter zusätzlich zum Hauptorganisator "
|
6576 |
-
"auswählen, wenn Sie möchten."
|
6577 |
-
|
6578 |
-
#: app/features/profile.php:74
|
6579 |
-
#, fuzzy, php-format
|
6580 |
-
#| msgid "Please %s/%s in order to submit new events."
|
6581 |
-
msgid "Please %s/%s in order to see your bookings / profile."
|
6582 |
-
msgstr "Um neue Veranstaltungen einzugeben, bitte %s/%s"
|
6583 |
-
|
6584 |
-
#: app/features/profile/profile.php:25 app/features/profile/profile.php:87
|
6585 |
-
msgid "#"
|
6586 |
-
msgstr ""
|
6587 |
-
|
6588 |
-
#: app/features/profile/profile.php:34 app/libraries/main.php:2915
|
6589 |
-
msgid "Status"
|
6590 |
-
msgstr ""
|
6591 |
-
|
6592 |
-
#: app/features/profile/profile.php:40
|
6593 |
-
#, fuzzy
|
6594 |
-
#| msgid "%s Invoice"
|
6595 |
-
msgid "Invoice"
|
6596 |
-
msgstr "% s Rechnung"
|
6597 |
-
|
6598 |
-
#: app/features/profile/profile.php:76
|
6599 |
-
#, php-format
|
6600 |
-
msgid "<i class=\"mec-sl-eye\"></i> %s"
|
6601 |
-
msgstr ""
|
6602 |
-
|
6603 |
-
#: app/features/profile/profile.php:99
|
6604 |
-
#, fuzzy
|
6605 |
-
#| msgid "Verification"
|
6606 |
-
msgid "Variations"
|
6607 |
-
msgstr "Verifizierung"
|
6608 |
-
|
6609 |
-
#: app/features/search.php:90
|
6610 |
-
msgid "Please enter at least 3 characters and try again"
|
6611 |
-
msgstr ""
|
6612 |
-
|
6613 |
-
#: app/features/search_bar/search_bar.php:32
|
6614 |
-
msgid "Please enter at least 3 characters"
|
6615 |
-
msgstr ""
|
6616 |
-
|
6617 |
-
#: app/features/search_bar/search_bar.php:34
|
6618 |
-
msgid "Search results will show here"
|
6619 |
-
msgstr ""
|
6620 |
-
|
6621 |
-
#: app/features/search_bar/search_bar.php:45
|
6622 |
-
#, fuzzy
|
6623 |
-
#| msgid "Search %s"
|
6624 |
-
msgid "Search"
|
6625 |
-
msgstr "Suche %s"
|
6626 |
-
|
6627 |
-
#: app/features/search_bar/search_noresult.php:1
|
6628 |
-
msgid "No search result."
|
6629 |
-
msgstr ""
|
6630 |
-
|
6631 |
-
#: app/features/search_bar/search_result.php:11
|
6632 |
-
#: app/libraries/notifications.php:743 app/libraries/render.php:452
|
6633 |
-
#: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
|
6634 |
-
#: app/skins/single.php:160 app/skins/single.php:736
|
6635 |
-
#: app/skins/single/default.php:101 app/skins/single/default.php:313
|
6636 |
-
#: app/skins/single/m1.php:34 app/skins/single/modern.php:184
|
6637 |
-
msgid "All of the day"
|
6638 |
-
msgstr "Den ganzen Tag"
|
6639 |
-
|
6640 |
-
#: app/features/speakers.php:108 app/features/speakers.php:177
|
6641 |
-
#: app/features/speakers.php:253
|
6642 |
-
#, fuzzy
|
6643 |
-
#| msgid "Title"
|
6644 |
-
msgid "Job Title"
|
6645 |
-
msgstr "Titel"
|
6646 |
-
|
6647 |
-
#: app/features/speakers.php:111 app/features/speakers.php:178
|
6648 |
-
msgid "Insert speaker job title."
|
6649 |
-
msgstr ""
|
6650 |
-
|
6651 |
-
#: app/features/speakers.php:119 app/features/speakers.php:182
|
6652 |
-
#, fuzzy
|
6653 |
-
#| msgid "Insert organizer phone number."
|
6654 |
-
msgid "Insert speaker phone number."
|
6655 |
-
msgstr "Veranstalter Telefonnummer einfügen"
|
6656 |
-
|
6657 |
-
#: app/features/speakers.php:127 app/features/speakers.php:186
|
6658 |
-
#, fuzzy
|
6659 |
-
#| msgid "Insert organizer email address."
|
6660 |
-
msgid "Insert speaker email address."
|
6661 |
-
msgstr "Veranstalter Email-Adresse einfügen"
|
6662 |
-
|
6663 |
-
#: app/features/speakers.php:132 app/features/speakers.php:189
|
6664 |
-
#, fuzzy
|
6665 |
-
#| msgid "Facebook Page Link"
|
6666 |
-
msgid "Facebook Page"
|
6667 |
-
msgstr "Facebook Seiten Link"
|
6668 |
-
|
6669 |
-
#: app/features/speakers.php:135 app/features/speakers.php:190
|
6670 |
-
#, fuzzy
|
6671 |
-
#| msgid "Import from Facebook Calendar"
|
6672 |
-
msgid "Insert URL of Facebook Page"
|
6673 |
-
msgstr "Vom Facebook Kalender Importieren"
|
6674 |
-
|
6675 |
-
#: app/features/speakers.php:140 app/features/speakers.php:193
|
6676 |
-
msgid "Instagram"
|
6677 |
-
msgstr ""
|
6678 |
-
|
6679 |
-
#: app/features/speakers.php:143 app/features/speakers.php:194
|
6680 |
-
#, fuzzy
|
6681 |
-
#| msgid "Insert -1 for unlimited usage"
|
6682 |
-
msgid "Insert URL of Instagram"
|
6683 |
-
msgstr "Geben Sie -1 ein für unlimitierte Verwendung"
|
6684 |
-
|
6685 |
-
#: app/features/speakers.php:148 app/features/speakers.php:197
|
6686 |
-
#, fuzzy
|
6687 |
-
#| msgid "Twitter"
|
6688 |
-
msgid "Twitter Page"
|
6689 |
-
msgstr "Twitter"
|
6690 |
-
|
6691 |
-
#: app/features/speakers.php:151 app/features/speakers.php:198
|
6692 |
-
#, fuzzy
|
6693 |
-
#| msgid "Insert -1 for unlimited usage"
|
6694 |
-
msgid "Insert URL of Twitter Page"
|
6695 |
-
msgstr "Geben Sie -1 ein für unlimitierte Verwendung"
|
6696 |
-
|
6697 |
-
#: app/features/speakers.php:313
|
6698 |
-
msgid "Sorry, You must insert speaker name!"
|
6699 |
-
msgstr ""
|
6700 |
-
|
6701 |
-
#: app/libraries/book.php:60
|
6702 |
-
#, php-format
|
6703 |
-
msgid "%s Price"
|
6704 |
-
msgstr "%s Preis"
|
6705 |
-
|
6706 |
-
#: app/libraries/factory.php:156
|
6707 |
-
msgid "M.E. Calendar"
|
6708 |
-
msgstr "M.E. Calender"
|
6709 |
-
|
6710 |
-
#: app/libraries/factory.php:195
|
6711 |
-
msgctxt "plugin link"
|
6712 |
-
msgid "Upgrade to Pro Version"
|
6713 |
-
msgstr ""
|
6714 |
-
|
6715 |
-
#: app/libraries/factory.php:213
|
6716 |
-
#, fuzzy
|
6717 |
-
#| msgid "Settings"
|
6718 |
-
msgctxt "plugin link"
|
6719 |
-
msgid "Settings"
|
6720 |
-
msgstr "Einstellungen"
|
6721 |
-
|
6722 |
-
#: app/libraries/factory.php:218
|
6723 |
-
msgctxt "plugin link"
|
6724 |
-
msgid "Upgrade"
|
6725 |
-
msgstr ""
|
6726 |
-
|
6727 |
-
#: app/libraries/factory.php:340
|
6728 |
-
msgid "day"
|
6729 |
-
msgstr "Tag"
|
6730 |
-
|
6731 |
-
#: app/libraries/factory.php:341 app/modules/countdown/details.php:125
|
6732 |
-
#: app/skins/available_spot/tpl.php:166 app/skins/countdown/tpl.php:158
|
6733 |
-
#: app/skins/countdown/tpl.php:202 app/skins/countdown/tpl.php:251
|
6734 |
-
msgid "days"
|
6735 |
-
msgstr "Tage"
|
6736 |
-
|
6737 |
-
#: app/libraries/factory.php:342
|
6738 |
-
msgid "hour"
|
6739 |
-
msgstr "Stunde"
|
6740 |
-
|
6741 |
-
#: app/libraries/factory.php:343 app/modules/countdown/details.php:132
|
6742 |
-
#: app/skins/available_spot/tpl.php:170 app/skins/countdown/tpl.php:164
|
6743 |
-
#: app/skins/countdown/tpl.php:208 app/skins/countdown/tpl.php:257
|
6744 |
-
msgid "hours"
|
6745 |
-
msgstr "Stunden"
|
6746 |
-
|
6747 |
-
#: app/libraries/factory.php:344
|
6748 |
-
msgid "minute"
|
6749 |
-
msgstr "Minute"
|
6750 |
-
|
6751 |
-
#: app/libraries/factory.php:345 app/modules/countdown/details.php:139
|
6752 |
-
#: app/skins/available_spot/tpl.php:174 app/skins/countdown/tpl.php:170
|
6753 |
-
#: app/skins/countdown/tpl.php:214 app/skins/countdown/tpl.php:263
|
6754 |
-
msgid "minutes"
|
6755 |
-
msgstr "Minuten"
|
6756 |
-
|
6757 |
-
#: app/libraries/factory.php:346
|
6758 |
-
msgid "second"
|
6759 |
-
msgstr "Sekunde"
|
6760 |
-
|
6761 |
-
#: app/libraries/factory.php:347 app/modules/countdown/details.php:146
|
6762 |
-
#: app/skins/available_spot/tpl.php:178 app/skins/countdown/tpl.php:176
|
6763 |
-
#: app/skins/countdown/tpl.php:220 app/skins/countdown/tpl.php:269
|
6764 |
-
msgid "seconds"
|
6765 |
-
msgstr "Sekunden"
|
6766 |
-
|
6767 |
-
#: app/libraries/factory.php:393
|
6768 |
-
msgid "MEC Single Sidebar"
|
6769 |
-
msgstr "MEC Single Sidebar"
|
6770 |
-
|
6771 |
-
#: app/libraries/factory.php:394
|
6772 |
-
msgid "Custom sidebar for single and modal page of MEC."
|
6773 |
-
msgstr "Custom sidebar for single and modal page of MEC."
|
6774 |
-
|
6775 |
-
#: app/libraries/feed.php:83
|
6776 |
-
msgid "There is no excerpt because this is a protected post."
|
6777 |
-
msgstr ""
|
6778 |
-
"Eine Vorschau kann nicht angezeit werden, da es sich um einen geschützen "
|
6779 |
-
"Beitrag handelt."
|
6780 |
-
|
6781 |
-
#: app/libraries/main.php:330 app/libraries/main.php:1572
|
6782 |
-
#: app/libraries/main.php:1597
|
6783 |
-
msgid "Grid View"
|
6784 |
-
msgstr "Rasterdarstellung"
|
6785 |
-
|
6786 |
-
#: app/libraries/main.php:331 app/libraries/main.php:1573
|
6787 |
-
#: app/libraries/main.php:1598
|
6788 |
-
msgid "Agenda View"
|
6789 |
-
msgstr "Agendaansicht"
|
6790 |
-
|
6791 |
-
#: app/libraries/main.php:332 app/libraries/main.php:1564
|
6792 |
-
#: app/libraries/main.php:1589
|
6793 |
-
msgid "Full Calendar"
|
6794 |
-
msgstr "Ganzer Kalender"
|
6795 |
-
|
6796 |
-
#: app/libraries/main.php:334 app/libraries/main.php:1566
|
6797 |
-
#: app/libraries/main.php:1591
|
6798 |
-
msgid "Calendar/Monthly View"
|
6799 |
-
msgstr "Kalender-/Monatsansicht"
|
6800 |
-
|
6801 |
-
#: app/libraries/main.php:337 app/libraries/main.php:1569
|
6802 |
-
#: app/libraries/main.php:1594
|
6803 |
-
msgid "Timetable View"
|
6804 |
-
msgstr "Stundenplan"
|
6805 |
-
|
6806 |
-
#: app/libraries/main.php:338 app/libraries/main.php:1570
|
6807 |
-
#: app/libraries/main.php:1595
|
6808 |
-
msgid "Masonry View"
|
6809 |
-
msgstr "Kachel Ansicht"
|
6810 |
-
|
6811 |
-
#: app/libraries/main.php:339 app/libraries/main.php:1574
|
6812 |
-
#: app/libraries/main.php:1599
|
6813 |
-
msgid "Map View"
|
6814 |
-
msgstr "Kartenansicht"
|
6815 |
-
|
6816 |
-
#: app/libraries/main.php:340
|
6817 |
-
msgid "Cover View"
|
6818 |
-
msgstr "Deckblattansicht"
|
6819 |
-
|
6820 |
-
#: app/libraries/main.php:341
|
6821 |
-
msgid "Countdown View"
|
6822 |
-
msgstr "Countdownansicht"
|
6823 |
-
|
6824 |
-
#: app/libraries/main.php:342
|
6825 |
-
msgid "Available Spot"
|
6826 |
-
msgstr "Verfügbarer Spot"
|
6827 |
-
|
6828 |
-
#: app/libraries/main.php:343
|
6829 |
-
msgid "Carousel View"
|
6830 |
-
msgstr "Karussellansicht"
|
6831 |
-
|
6832 |
-
#: app/libraries/main.php:344
|
6833 |
-
msgid "Slider View"
|
6834 |
-
msgstr "Slideransicht"
|
6835 |
-
|
6836 |
-
#: app/libraries/main.php:382 app/libraries/main.php:4893
|
6837 |
-
msgid "SU"
|
6838 |
-
msgstr "SO"
|
6839 |
-
|
6840 |
-
#: app/libraries/main.php:383 app/libraries/main.php:4894
|
6841 |
-
msgid "MO"
|
6842 |
-
msgstr "MO"
|
6843 |
-
|
6844 |
-
#: app/libraries/main.php:384 app/libraries/main.php:4895
|
6845 |
-
msgid "TU"
|
6846 |
-
msgstr "DI"
|
6847 |
-
|
6848 |
-
#: app/libraries/main.php:385 app/libraries/main.php:4896
|
6849 |
-
msgid "WE"
|
6850 |
-
msgstr "MI"
|
6851 |
-
|
6852 |
-
#: app/libraries/main.php:386 app/libraries/main.php:4897
|
6853 |
-
msgid "TH"
|
6854 |
-
msgstr "DO"
|
6855 |
-
|
6856 |
-
#: app/libraries/main.php:387 app/libraries/main.php:4898
|
6857 |
-
msgid "FR"
|
6858 |
-
msgstr "FR"
|
6859 |
-
|
6860 |
-
#: app/libraries/main.php:388 app/libraries/main.php:4899
|
6861 |
-
msgid "SA"
|
6862 |
-
msgstr "SA"
|
6863 |
-
|
6864 |
-
#: app/libraries/main.php:537
|
6865 |
-
#, fuzzy
|
6866 |
-
#| msgid "Upload/Add image"
|
6867 |
-
msgid "Upload Field"
|
6868 |
-
msgstr "Bild hochladen/hinzufügen"
|
6869 |
-
|
6870 |
-
#: app/libraries/main.php:545
|
6871 |
-
#, fuzzy
|
6872 |
-
#| msgid "Additional Organizers"
|
6873 |
-
msgid "Additional Locations"
|
6874 |
-
msgstr "Zusätzliche Organisatoren"
|
6875 |
-
|
6876 |
-
#: app/libraries/main.php:629
|
6877 |
-
#, fuzzy
|
6878 |
-
#| msgid "Single Event Style"
|
6879 |
-
msgid "Single Event"
|
6880 |
-
msgstr "Single Event Stil"
|
6881 |
-
|
6882 |
-
#: app/libraries/main.php:695
|
6883 |
-
#, fuzzy
|
6884 |
-
#| msgid "Social Module : "
|
6885 |
-
msgid "Modules"
|
6886 |
-
msgstr "Social Modul:"
|
6887 |
-
|
6888 |
-
#: app/libraries/main.php:865
|
6889 |
-
msgid "New Addons For MEC! Now Customize MEC in Elementor"
|
6890 |
-
msgstr ""
|
6891 |
-
|
6892 |
-
#: app/libraries/main.php:872
|
6893 |
-
msgid ""
|
6894 |
-
"The time has come at last, and the new practical add-ons for MEC have been "
|
6895 |
-
"released. This is a revolution in the world of Event Calendars. We have "
|
6896 |
-
"provided you with a wide range of features only by having the 4 add-ons "
|
6897 |
-
"below:"
|
6898 |
-
msgstr ""
|
6899 |
-
|
6900 |
-
#: app/libraries/main.php:874
|
6901 |
-
msgid ""
|
6902 |
-
"<strong>WooCommerce Integration:</strong> You can now purchase ticket (as "
|
6903 |
-
"products) and Woo products at the same time."
|
6904 |
-
msgstr ""
|
6905 |
-
|
6906 |
-
#: app/libraries/main.php:875
|
6907 |
-
msgid ""
|
6908 |
-
"<strong>Event API:</strong> display your events (shortcodes/single event) on "
|
6909 |
-
"other websites without MEC. Use JSON output features to make your Apps "
|
6910 |
-
"compatible with MEC."
|
6911 |
-
msgstr ""
|
6912 |
-
|
6913 |
-
#: app/libraries/main.php:876
|
6914 |
-
msgid ""
|
6915 |
-
"<strong>Elementor Single Builder:</strong> Edit single event page using "
|
6916 |
-
"Elementor. Manage the position of all elements in the Single page and in "
|
6917 |
-
"desktops, mobiles and tablets as well."
|
6918 |
-
msgstr ""
|
6919 |
-
|
6920 |
-
#: app/libraries/main.php:877
|
6921 |
-
msgid ""
|
6922 |
-
"<strong>Elementor Shortcode Builder:</strong> It enables you to create "
|
6923 |
-
"shortcodes in Elementor Live Editor."
|
6924 |
-
msgstr ""
|
6925 |
-
|
6926 |
-
#: app/libraries/main.php:1426
|
6927 |
-
msgid "Events at this location"
|
6928 |
-
msgstr "Veranstaltungen an diesem Ort "
|
6929 |
-
|
6930 |
-
#: app/libraries/main.php:1426
|
6931 |
-
msgid "Event at this location"
|
6932 |
-
msgstr "Veranstaltung an diesem Ort "
|
6933 |
-
|
6934 |
-
#: app/libraries/main.php:1468
|
6935 |
-
msgid "Facebook"
|
6936 |
-
msgstr "Facebook"
|
6937 |
-
|
6938 |
-
#: app/libraries/main.php:1469
|
6939 |
-
msgid "Twitter"
|
6940 |
-
msgstr "Twitter"
|
6941 |
-
|
6942 |
-
#: app/libraries/main.php:1470 app/libraries/main.php:1520
|
6943 |
-
msgid "Linkedin"
|
6944 |
-
msgstr "Linkedin"
|
6945 |
-
|
6946 |
-
#: app/libraries/main.php:1471 app/libraries/main.php:1553
|
6947 |
-
msgid "VK"
|
6948 |
-
msgstr ""
|
6949 |
-
|
6950 |
-
#: app/libraries/main.php:1490
|
6951 |
-
msgid "Share on Facebook"
|
6952 |
-
msgstr "Teilen auf Facebook"
|
6953 |
-
|
6954 |
-
#: app/libraries/main.php:1505
|
6955 |
-
msgid "Tweet"
|
6956 |
-
msgstr "Tweet"
|
6957 |
-
|
6958 |
-
#: app/libraries/main.php:1575
|
6959 |
-
#, fuzzy
|
6960 |
-
#| msgid "Shortcode"
|
6961 |
-
msgid "Custom Shortcode"
|
6962 |
-
msgstr "Shortcode"
|
6963 |
-
|
6964 |
-
#: app/libraries/main.php:1936
|
6965 |
-
#, fuzzy
|
6966 |
-
#| msgid "Your booking successfully verified."
|
6967 |
-
msgid "Your booking already verified!"
|
6968 |
-
msgstr "Ihre Buchung wurde erfolgreich verifiziert."
|
6969 |
-
|
6970 |
-
#: app/libraries/main.php:1941
|
6971 |
-
msgid "Your booking successfully verified."
|
6972 |
-
msgstr "Ihre Buchung wurde erfolgreich verifiziert."
|
6973 |
-
|
6974 |
-
#: app/libraries/main.php:1942
|
6975 |
-
msgid "Your booking cannot verify!"
|
6976 |
-
msgstr "Ihre Buchung kann nicht verifiziert werden!"
|
6977 |
-
|
6978 |
-
#: app/libraries/main.php:1956
|
6979 |
-
#, fuzzy
|
6980 |
-
#| msgid "Your booking cannot be canceled."
|
6981 |
-
msgid "Your booking already canceled!"
|
6982 |
-
msgstr "Ihre Buchung kann nicht storniert werden."
|
6983 |
-
|
6984 |
-
#: app/libraries/main.php:1961
|
6985 |
-
msgid "Your booking successfully canceled."
|
6986 |
-
msgstr "Ihre Buchung wurde erfolgreich storniert."
|
6987 |
-
|
6988 |
-
#: app/libraries/main.php:1962
|
6989 |
-
msgid "Your booking cannot be canceled."
|
6990 |
-
msgstr "Ihre Buchung kann nicht storniert werden."
|
6991 |
-
|
6992 |
-
#: app/libraries/main.php:1966
|
6993 |
-
msgid "You canceled the payment successfully."
|
6994 |
-
msgstr "Sie haben die Zahlung erfolgreich storniert."
|
6995 |
-
|
6996 |
-
#: app/libraries/main.php:1970
|
6997 |
-
msgid "You returned from payment gateway successfully."
|
6998 |
-
msgstr "Sie sind vom Bezahlungs-Gateway erfolgreich zurückgekehrt."
|
6999 |
-
|
7000 |
-
#: app/libraries/main.php:1986
|
7001 |
-
#, fuzzy
|
7002 |
-
#| msgid "Cannot find the booking!"
|
7003 |
-
msgid "Cannot find the invoice!"
|
7004 |
-
msgstr "Kann die Buchung nicht finden!"
|
7005 |
-
|
7006 |
-
#: app/libraries/main.php:1986
|
7007 |
-
#, fuzzy
|
7008 |
-
#| msgid "Booking is invalid."
|
7009 |
-
msgid "Invoice is invalid."
|
7010 |
-
msgstr "Buchung ist ungültig."
|
7011 |
-
|
7012 |
-
#: app/libraries/main.php:2001
|
7013 |
-
msgid "Cannot find the booking!"
|
7014 |
-
msgstr "Kann die Buchung nicht finden!"
|
7015 |
-
|
7016 |
-
#: app/libraries/main.php:2001
|
7017 |
-
msgid "Booking is invalid."
|
7018 |
-
msgstr "Buchung ist ungültig."
|
7019 |
-
|
7020 |
-
#: app/libraries/main.php:2030
|
7021 |
-
#, php-format
|
7022 |
-
msgid "%s Invoice"
|
7023 |
-
msgstr "% s Rechnung"
|
7024 |
-
|
7025 |
-
#: app/libraries/main.php:2172
|
7026 |
-
#, fuzzy
|
7027 |
-
#| msgid "Request is invalid!"
|
7028 |
-
msgid "Request is not valid."
|
7029 |
-
msgstr "Die Anfrage ist ungültig!"
|
7030 |
-
|
7031 |
-
#: app/libraries/main.php:2172
|
7032 |
-
msgid "iCal export stopped!"
|
7033 |
-
msgstr "iCal Export wurde unterbrochen!"
|
7034 |
-
|
7035 |
-
#: app/libraries/main.php:2499 app/libraries/main.php:2529
|
7036 |
-
#: app/libraries/main.php:2558 app/libraries/main.php:2588
|
7037 |
-
#: app/libraries/main.php:2617 app/libraries/main.php:2646
|
7038 |
-
#: app/libraries/main.php:2675 app/libraries/main.php:2704
|
7039 |
-
#: app/libraries/main.php:2733 app/libraries/main.php:2757
|
7040 |
-
#: app/libraries/main.php:2801 app/libraries/main.php:2845
|
7041 |
-
#: app/libraries/main.php:2892 app/libraries/main.php:2939
|
7042 |
-
msgid "Sort"
|
7043 |
-
msgstr "Sortieren"
|
7044 |
-
|
7045 |
-
#: app/libraries/main.php:2505 app/libraries/main.php:2535
|
7046 |
-
#: app/libraries/main.php:2564 app/libraries/main.php:2594
|
7047 |
-
#: app/libraries/main.php:2623 app/libraries/main.php:2652
|
7048 |
-
#: app/libraries/main.php:2681 app/libraries/main.php:2710
|
7049 |
-
#: app/libraries/main.php:2763 app/libraries/main.php:2807
|
7050 |
-
#: app/libraries/main.php:2851 app/libraries/main.php:2898
|
7051 |
-
msgid "Required Field"
|
7052 |
-
msgstr "Pflichtfeld"
|
7053 |
-
|
7054 |
-
#: app/libraries/main.php:2511 app/libraries/main.php:2541
|
7055 |
-
#: app/libraries/main.php:2570 app/libraries/main.php:2600
|
7056 |
-
#: app/libraries/main.php:2629 app/libraries/main.php:2658
|
7057 |
-
#: app/libraries/main.php:2687 app/libraries/main.php:2716
|
7058 |
-
#: app/libraries/main.php:2769 app/libraries/main.php:2813
|
7059 |
-
#: app/libraries/main.php:2857 app/libraries/main.php:2904
|
7060 |
-
msgid "Insert a label for this field"
|
7061 |
-
msgstr "Geben Sie eine Bezeichnung (Label) für dieses Feld ein."
|
7062 |
-
|
7063 |
-
#: app/libraries/main.php:2739
|
7064 |
-
msgid "HTML and shortcode are allowed."
|
7065 |
-
msgstr "HTML und shortcodes sind erlaubt."
|
7066 |
-
|
7067 |
-
#: app/libraries/main.php:2782 app/libraries/main.php:2826
|
7068 |
-
#: app/libraries/main.php:2870
|
7069 |
-
msgid "Option"
|
7070 |
-
msgstr "Option"
|
7071 |
-
|
7072 |
-
#: app/libraries/main.php:2904
|
7073 |
-
#, php-format
|
7074 |
-
msgid "Instead of %s, the page title with a link will be show."
|
7075 |
-
msgstr "Anstelle von %s, wird der Seitentitel mit einem Link gezeigt"
|
7076 |
-
|
7077 |
-
#: app/libraries/main.php:2906
|
7078 |
-
msgid "Agreement Page"
|
7079 |
-
msgstr "Zustimmungsseite"
|
7080 |
-
|
7081 |
-
#: app/libraries/main.php:2917
|
7082 |
-
msgid "Checked by default"
|
7083 |
-
msgstr ""
|
7084 |
-
|
7085 |
-
#: app/libraries/main.php:2918
|
7086 |
-
msgid "Unchecked by default"
|
7087 |
-
msgstr ""
|
7088 |
-
|
7089 |
-
#: app/libraries/main.php:2941
|
7090 |
-
msgid "Insert a label for this option"
|
7091 |
-
msgstr "Ein neues Label für diese Option einfügen"
|
7092 |
-
|
7093 |
-
#: app/libraries/main.php:3559 app/libraries/main.php:5140
|
7094 |
-
#, fuzzy
|
7095 |
-
#| msgid "M.E. Calendar"
|
7096 |
-
msgid "M.E. Calender"
|
7097 |
-
msgstr "M.E. Calender"
|
7098 |
-
|
7099 |
-
#: app/libraries/main.php:3714
|
7100 |
-
#, php-format
|
7101 |
-
msgid "Copy of %s"
|
7102 |
-
msgstr "Kopie von %s"
|
7103 |
-
|
7104 |
-
#: app/libraries/main.php:4387
|
7105 |
-
msgid "Booked an event."
|
7106 |
-
msgstr "Eine Veranstaltung wurde gebucht."
|
7107 |
-
|
7108 |
-
#: app/libraries/main.php:4428
|
7109 |
-
#, php-format
|
7110 |
-
msgid "%s booked %s event."
|
7111 |
-
msgstr "%s gebuchtes %s Event"
|
7112 |
-
|
7113 |
-
#: app/libraries/main.php:4876
|
7114 |
-
msgid "Taxonomies"
|
7115 |
-
msgstr "Klassifizierung "
|
7116 |
-
|
7117 |
-
#: app/libraries/main.php:4878
|
7118 |
-
msgid "Category Plural Label"
|
7119 |
-
msgstr "Kategorien"
|
7120 |
-
|
7121 |
-
#: app/libraries/main.php:4879
|
7122 |
-
msgid "Category Singular Label"
|
7123 |
-
msgstr "Kategorie"
|
7124 |
-
|
7125 |
-
#: app/libraries/main.php:4880
|
7126 |
-
msgid "Label Plural Label"
|
7127 |
-
msgstr "Labels"
|
7128 |
-
|
7129 |
-
#: app/libraries/main.php:4881
|
7130 |
-
msgid "Label Singular Label"
|
7131 |
-
msgstr "Label"
|
7132 |
-
|
7133 |
-
#: app/libraries/main.php:4881
|
7134 |
-
msgid "label"
|
7135 |
-
msgstr "label"
|
7136 |
-
|
7137 |
-
#: app/libraries/main.php:4882
|
7138 |
-
msgid "Location Plural Label"
|
7139 |
-
msgstr "Veranstaltungsorte"
|
7140 |
-
|
7141 |
-
#: app/libraries/main.php:4883
|
7142 |
-
msgid "Location Singular Label"
|
7143 |
-
msgstr "Veranstaltungsort"
|
7144 |
-
|
7145 |
-
#: app/libraries/main.php:4884
|
7146 |
-
msgid "Organizer Plural Label"
|
7147 |
-
msgstr "Veranstalter"
|
7148 |
-
|
7149 |
-
#: app/libraries/main.php:4885
|
7150 |
-
msgid "Organizer Singular Label"
|
7151 |
-
msgstr "Veranstalter"
|
7152 |
-
|
7153 |
-
#: app/libraries/main.php:4886
|
7154 |
-
#, fuzzy
|
7155 |
-
#| msgid "Label Plural Label"
|
7156 |
-
msgid "Speaker Plural Label"
|
7157 |
-
msgstr "Labels"
|
7158 |
-
|
7159 |
-
#: app/libraries/main.php:4887
|
7160 |
-
#, fuzzy
|
7161 |
-
#| msgid "Label Singular Label"
|
7162 |
-
msgid "Speaker Singular Label"
|
7163 |
-
msgstr "Label"
|
7164 |
-
|
7165 |
-
#: app/libraries/main.php:4893
|
7166 |
-
msgid "Sunday abbreviation"
|
7167 |
-
msgstr "Sonntag Abkürzung"
|
7168 |
-
|
7169 |
-
#: app/libraries/main.php:4894
|
7170 |
-
msgid "Monday abbreviation"
|
7171 |
-
msgstr "Montag Abkürzung"
|
7172 |
-
|
7173 |
-
#: app/libraries/main.php:4895
|
7174 |
-
msgid "Tuesday abbreviation"
|
7175 |
-
msgstr "Dienstag Abkürzung"
|
7176 |
-
|
7177 |
-
#: app/libraries/main.php:4896
|
7178 |
-
msgid "Wednesday abbreviation"
|
7179 |
-
msgstr "Mittwoch Abkürzung"
|
7180 |
-
|
7181 |
-
#: app/libraries/main.php:4897
|
7182 |
-
msgid "Thursday abbreviation"
|
7183 |
-
msgstr "Donnerstag Abkürzung"
|
7184 |
-
|
7185 |
-
#: app/libraries/main.php:4898
|
7186 |
-
msgid "Friday abbreviation"
|
7187 |
-
msgstr "Freitag Abkürzung"
|
7188 |
-
|
7189 |
-
#: app/libraries/main.php:4899
|
7190 |
-
msgid "Saturday abbreviation"
|
7191 |
-
msgstr "Samstag Abkürzung "
|
7192 |
-
|
7193 |
-
#: app/libraries/main.php:4903
|
7194 |
-
msgid "Others"
|
7195 |
-
msgstr "Andere"
|
7196 |
-
|
7197 |
-
#: app/libraries/main.php:4905
|
7198 |
-
msgid "Booking Success Message"
|
7199 |
-
msgstr "Buchung erfolgreich Mitteilung"
|
7200 |
-
|
7201 |
-
#: app/libraries/main.php:4906 app/widgets/single.php:131
|
7202 |
-
msgid "Register Button"
|
7203 |
-
msgstr "Register Button"
|
7204 |
-
|
7205 |
-
#: app/libraries/main.php:4906 app/skins/available_spot/tpl.php:224
|
7206 |
-
#: app/skins/carousel/render.php:158 app/skins/carousel/render.php:194
|
7207 |
-
#: app/skins/grid/render.php:118 app/skins/grid/render.php:164
|
7208 |
-
#: app/skins/grid/render.php:206 app/skins/grid/render.php:234
|
7209 |
-
#: app/skins/list/render.php:108 app/skins/list/render.php:196
|
7210 |
-
#: app/skins/masonry/render.php:178 app/skins/single.php:757
|
7211 |
-
#: app/skins/single.php:760 app/skins/single/default.php:248
|
7212 |
-
#: app/skins/single/default.php:250 app/skins/single/default.php:460
|
7213 |
-
#: app/skins/single/default.php:462 app/skins/single/m1.php:126
|
7214 |
-
#: app/skins/single/m1.php:128 app/skins/single/m2.php:58
|
7215 |
-
#: app/skins/single/m2.php:60 app/skins/single/modern.php:68
|
7216 |
-
#: app/skins/single/modern.php:70 app/skins/slider/render.php:112
|
7217 |
-
#: app/skins/slider/render.php:160 app/skins/slider/render.php:207
|
7218 |
-
#: app/skins/slider/render.php:255 app/skins/slider/render.php:314
|
7219 |
-
msgid "REGISTER"
|
7220 |
-
msgstr "ANMELDEN"
|
7221 |
-
|
7222 |
-
#: app/libraries/main.php:4907
|
7223 |
-
msgid "View Detail Button"
|
7224 |
-
msgstr "Ansicht Detail Button"
|
7225 |
-
|
7226 |
-
#: app/libraries/main.php:4907 app/skins/carousel/render.php:158
|
7227 |
-
#: app/skins/carousel/render.php:194 app/skins/grid/render.php:118
|
7228 |
-
#: app/skins/grid/render.php:164 app/skins/grid/render.php:206
|
7229 |
-
#: app/skins/grid/render.php:234 app/skins/list/render.php:108
|
7230 |
-
#: app/skins/list/render.php:196 app/skins/masonry/render.php:178
|
7231 |
-
#: app/skins/slider/render.php:112 app/skins/slider/render.php:160
|
7232 |
-
#: app/skins/slider/render.php:207 app/skins/slider/render.php:255
|
7233 |
-
#: app/skins/slider/render.php:314
|
7234 |
-
msgid "View Detail"
|
7235 |
-
msgstr "Details "
|
7236 |
-
|
7237 |
-
#: app/libraries/main.php:4908
|
7238 |
-
msgid "Event Detail Button"
|
7239 |
-
msgstr "Event Detail Button"
|
7240 |
-
|
7241 |
-
#: app/libraries/main.php:4908 app/skins/countdown/tpl.php:244
|
7242 |
-
msgid "Event Detail"
|
7243 |
-
msgstr "Veranstaltungsdetails"
|
7244 |
-
|
7245 |
-
#: app/libraries/main.php:4910
|
7246 |
-
msgid "More Info Link"
|
7247 |
-
msgstr "Link Mehr Informationen"
|
7248 |
-
|
7249 |
-
#: app/libraries/main.php:4913
|
7250 |
-
msgid "Ticket (Singular)"
|
7251 |
-
msgstr "Ticket"
|
7252 |
-
|
7253 |
-
#: app/libraries/main.php:4914
|
7254 |
-
msgid "Tickets (Plural)"
|
7255 |
-
msgstr "Tickets"
|
7256 |
-
|
7257 |
-
#: app/libraries/main.php:5000
|
7258 |
-
msgid "EventON"
|
7259 |
-
msgstr "EventON"
|
7260 |
-
|
7261 |
-
#: app/libraries/main.php:5001
|
7262 |
-
msgid "The Events Calendar"
|
7263 |
-
msgstr "The Events Calendar"
|
7264 |
-
|
7265 |
-
#: app/libraries/main.php:5002
|
7266 |
-
msgid "Events Schedule WP Plugin"
|
7267 |
-
msgstr "Event Zeitplan WP-Plugin"
|
7268 |
-
|
7269 |
-
#: app/libraries/main.php:5003
|
7270 |
-
msgid "Calendarize It"
|
7271 |
-
msgstr ""
|
7272 |
-
|
7273 |
-
#: app/libraries/main.php:5332 app/libraries/render.php:382
|
7274 |
-
msgid "Skin controller does not exist."
|
7275 |
-
msgstr "Skin contoller existiert nicht."
|
7276 |
-
|
7277 |
-
#: app/libraries/notifications.php:60
|
7278 |
-
msgid "Please verify your email."
|
7279 |
-
msgstr "Bitte bestätigen Sie Ihre email."
|
7280 |
-
|
7281 |
-
#: app/libraries/notifications.php:139
|
7282 |
-
msgid "Your booking is received."
|
7283 |
-
msgstr "Ihre Buchung ist eingegangen"
|
7284 |
-
|
7285 |
-
#: app/libraries/notifications.php:224
|
7286 |
-
msgid "Your booking is confirmed."
|
7287 |
-
msgstr "Ihre Buchung wurde bestätigt."
|
7288 |
-
|
7289 |
-
#: app/libraries/notifications.php:349
|
7290 |
-
#, fuzzy
|
7291 |
-
#| msgid "Your booking cannot be canceled."
|
7292 |
-
msgid "booking canceled."
|
7293 |
-
msgstr "Ihre Buchung kann nicht storniert werden."
|
7294 |
-
|
7295 |
-
#: app/libraries/notifications.php:410
|
7296 |
-
msgid "A new booking is received."
|
7297 |
-
msgstr "Eine neue Buchung ist eingegangen."
|
7298 |
-
|
7299 |
-
#: app/libraries/notifications.php:561
|
7300 |
-
msgid "A new event is added."
|
7301 |
-
msgstr "Eine neue Veranstaltung wurde hinzugefügt."
|
7302 |
-
|
7303 |
-
#: app/libraries/notifications.php:631
|
7304 |
-
#, fuzzy
|
7305 |
-
#| msgid "The event published."
|
7306 |
-
msgid "Your event is published."
|
7307 |
-
msgstr "Die Veranstaltung wurde veröffentlicht."
|
7308 |
-
|
7309 |
-
#: app/libraries/notifications.php:821
|
7310 |
-
msgid "to"
|
7311 |
-
msgstr ""
|
7312 |
-
|
7313 |
-
#: app/libraries/notifications.php:834 app/modules/export/details.php:27
|
7314 |
-
msgid "+ Add to Google Calendar"
|
7315 |
-
msgstr "+ zum Google Calendar hinzufügen"
|
7316 |
-
|
7317 |
-
#: app/libraries/notifications.php:835 app/modules/export/details.php:28
|
7318 |
-
msgid "+ iCal export"
|
7319 |
-
msgstr "+ zu iCal exportieren"
|
7320 |
-
|
7321 |
-
#: app/libraries/skins.php:959
|
7322 |
-
msgid "Ignore month and years"
|
7323 |
-
msgstr "Monat und Jahre ignorieren"
|
7324 |
-
|
7325 |
-
#: app/modules/attendees-list/details.php:36
|
7326 |
-
msgid "Event Attendees"
|
7327 |
-
msgstr "Event Teilnehmer"
|
7328 |
-
|
7329 |
-
#: app/modules/attendees-list/details.php:38
|
7330 |
-
msgid "No attendee found! Be the first one to book!"
|
7331 |
-
msgstr "Keine Teilnehmer gefunden! Seien Sie der erste Teilnehmer der bucht!"
|
7332 |
-
|
7333 |
-
#: app/modules/attendees-list/details.php:56
|
7334 |
-
#, php-format
|
7335 |
-
msgid "%s tickets"
|
7336 |
-
msgstr "%s tickets"
|
7337 |
-
|
7338 |
-
#: app/modules/booking/steps/checkout.php:40
|
7339 |
-
msgid "Discount Coupon"
|
7340 |
-
msgstr "Rabattgutschein"
|
7341 |
-
|
7342 |
-
#: app/modules/booking/steps/checkout.php:44
|
7343 |
-
msgid "Apply Coupon"
|
7344 |
-
msgstr "Gutschein verwenden"
|
7345 |
-
|
7346 |
-
#: app/modules/booking/steps/checkout.php:75
|
7347 |
-
msgid "Free Booking"
|
7348 |
-
msgstr "Kostenlose Buchung"
|
7349 |
-
|
7350 |
-
#: app/modules/booking/steps/form.php:166
|
7351 |
-
#, fuzzy
|
7352 |
-
#| msgid "Fill other attendees's information like the first form."
|
7353 |
-
msgid "Fill other attendees information like the first form."
|
7354 |
-
msgstr ""
|
7355 |
-
"Füllen Sie die Informationen anderer Teilnehmer wie das erste Formular aus."
|
7356 |
-
|
7357 |
-
#: app/modules/booking/steps/form.php:179
|
7358 |
-
#: app/modules/booking/steps/tickets.php:55 app/skins/countdown/tpl.php:145
|
7359 |
-
#: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:234
|
7360 |
-
msgid "Next"
|
7361 |
-
msgstr "Weiter"
|
7362 |
-
|
7363 |
-
#: app/modules/booking/steps/tickets.php:20
|
7364 |
-
msgid "Book Event"
|
7365 |
-
msgstr "Veranstaltung buchen"
|
7366 |
-
|
7367 |
-
#: app/modules/booking/steps/tickets.php:40
|
7368 |
-
#, php-format
|
7369 |
-
msgid "Available %s: <span>%s</span>"
|
7370 |
-
msgstr "Verfügbar %s: <span>%s</span>"
|
7371 |
-
|
7372 |
-
#: app/modules/booking/steps/tickets.php:43
|
7373 |
-
#, php-format
|
7374 |
-
msgid "The %s ticket is sold out. You can try another ticket or another date."
|
7375 |
-
msgstr ""
|
7376 |
-
"Das% s Ticket ist ausverkauft. Sie können ein anderes Ticket oder ein "
|
7377 |
-
"anderes Datum ausprobieren."
|
7378 |
-
|
7379 |
-
#: app/modules/countdown/details.php:41
|
7380 |
-
msgid "The event is finished."
|
7381 |
-
msgstr "Das Event ist beendet"
|
7382 |
-
|
7383 |
-
#: app/modules/countdown/details.php:46
|
7384 |
-
msgid "The event is ongoing."
|
7385 |
-
msgstr "Die Veranstaltung ist im Gange."
|
7386 |
-
|
7387 |
-
#: app/modules/googlemap/details.php:96
|
7388 |
-
msgid "Address from ..."
|
7389 |
-
msgstr "Adresse von..."
|
7390 |
-
|
7391 |
-
#: app/modules/googlemap/details.php:100
|
7392 |
-
msgid "Get Directions"
|
7393 |
-
msgstr "Wegbeschreibung"
|
7394 |
-
|
7395 |
-
#: app/modules/links/details.php:17 app/skins/single.php:454
|
7396 |
-
msgid "Share this event"
|
7397 |
-
msgstr "Diese Veranstaltung teilen"
|
7398 |
-
|
7399 |
-
#: app/modules/local-time/details.php:44
|
7400 |
-
#, php-format
|
7401 |
-
msgid "Timezone: %s"
|
7402 |
-
msgstr "Zeitzone: %s"
|
7403 |
-
|
7404 |
-
#: app/modules/local-time/details.php:45
|
7405 |
-
#, php-format
|
7406 |
-
msgid "Date: %s"
|
7407 |
-
msgstr "Datum: %s"
|
7408 |
-
|
7409 |
-
#: app/modules/local-time/details.php:47
|
7410 |
-
#, php-format
|
7411 |
-
msgid "Time: %s"
|
7412 |
-
msgstr "Zeit: %s"
|
7413 |
-
|
7414 |
-
#: app/modules/next-event/details.php:82
|
7415 |
-
msgid "Next Occurrence"
|
7416 |
-
msgstr "Nächstes Event"
|
7417 |
-
|
7418 |
-
#: app/modules/next-event/details.php:86
|
7419 |
-
msgid "Go to occurrence page"
|
7420 |
-
msgstr "Zum Event"
|
7421 |
-
|
7422 |
-
#: app/modules/next-event/details.php:95 app/skins/single.php:730
|
7423 |
-
#: app/skins/single/default.php:95 app/skins/single/default.php:307
|
7424 |
-
#: app/skins/single/m1.php:28 app/skins/single/modern.php:178
|
7425 |
-
msgid "Time"
|
7426 |
-
msgstr "Uhrzeit"
|
7427 |
-
|
7428 |
-
#: app/modules/weather/details.php:49 app/modules/weather/details.php:51
|
7429 |
-
msgid " °C"
|
7430 |
-
msgstr " °C"
|
7431 |
-
|
7432 |
-
#: app/modules/weather/details.php:49 app/modules/weather/details.php:53
|
7433 |
-
#, fuzzy
|
7434 |
-
#| msgid " °C"
|
7435 |
-
msgid " °F"
|
7436 |
-
msgstr " °C"
|
7437 |
-
|
7438 |
-
#: app/modules/weather/details.php:60
|
7439 |
-
msgid "°Imperial"
|
7440 |
-
msgstr ""
|
7441 |
-
|
7442 |
-
#: app/modules/weather/details.php:60
|
7443 |
-
msgid "°Metric"
|
7444 |
-
msgstr ""
|
7445 |
-
|
7446 |
-
#: app/modules/weather/details.php:66
|
7447 |
-
msgid " KPH"
|
7448 |
-
msgstr " KPH"
|
7449 |
-
|
7450 |
-
#: app/modules/weather/details.php:66
|
7451 |
-
msgid " MPH"
|
7452 |
-
msgstr ""
|
7453 |
-
|
7454 |
-
#: app/modules/weather/details.php:66
|
7455 |
-
msgid "Wind"
|
7456 |
-
msgstr "Wind"
|
7457 |
-
|
7458 |
-
#: app/modules/weather/details.php:70
|
7459 |
-
msgid "Humidity"
|
7460 |
-
msgstr "Feuchtigkeit"
|
7461 |
-
|
7462 |
-
#: app/modules/weather/details.php:70
|
7463 |
-
msgid " %"
|
7464 |
-
msgstr " %"
|
7465 |
-
|
7466 |
-
#: app/modules/weather/details.php:74
|
7467 |
-
msgid " KM"
|
7468 |
-
msgstr " KM"
|
7469 |
-
|
7470 |
-
#: app/modules/weather/details.php:74
|
7471 |
-
msgid " Miles"
|
7472 |
-
msgstr ""
|
7473 |
-
|
7474 |
-
#: app/modules/weather/details.php:74
|
7475 |
-
msgid "Visibility"
|
7476 |
-
msgstr "Sichtbarkeit"
|
7477 |
-
|
7478 |
-
#: app/skins/agenda/tpl.php:66 app/skins/agenda/tpl.php:70
|
7479 |
-
#: app/skins/carousel/tpl.php:46 app/skins/custom/tpl.php:62
|
7480 |
-
#: app/skins/custom/tpl.php:66 app/skins/grid/tpl.php:62
|
7481 |
-
#: app/skins/grid/tpl.php:66 app/skins/list/tpl.php:67
|
7482 |
-
#: app/skins/list/tpl.php:71 app/skins/masonry/tpl.php:62
|
7483 |
-
#: app/skins/masonry/tpl.php:66 app/skins/slider/tpl.php:44
|
7484 |
-
msgid "No event found!"
|
7485 |
-
msgstr "Keine Veranstaltung gefunden"
|
7486 |
-
|
7487 |
-
#: app/skins/agenda/tpl.php:75 app/skins/custom/tpl.php:71
|
7488 |
-
#: app/skins/grid/tpl.php:71 app/skins/list/tpl.php:76
|
7489 |
-
#: app/skins/masonry/tpl.php:71 app/skins/yearly_view/render.php:124
|
7490 |
-
msgid "Load More"
|
7491 |
-
msgstr "Weitere anzeigen"
|
7492 |
-
|
7493 |
-
#: app/skins/available_spot/tpl.php:159
|
7494 |
-
msgid "Available Spot(s):"
|
7495 |
-
msgstr "Verfügbare Spot (s):"
|
7496 |
-
|
7497 |
-
#: app/skins/carousel/render.php:215 app/skins/countdown/tpl.php:183
|
7498 |
-
#: app/skins/countdown/tpl.php:227 app/skins/cover/tpl.php:108
|
7499 |
-
#: app/skins/list/render.php:126
|
7500 |
-
msgid "EVENT DETAIL"
|
7501 |
-
msgstr "VERANSTALTUNGSDETAILS"
|
7502 |
-
|
7503 |
-
#: app/skins/carousel/render.php:227
|
7504 |
-
#, fuzzy
|
7505 |
-
#| msgid "All Events"
|
7506 |
-
msgid "View All Events"
|
7507 |
-
msgstr "Alle Veranstaltungen"
|
7508 |
-
|
7509 |
-
#: app/skins/countdown/tpl.php:145 app/skins/countdown/tpl.php:189
|
7510 |
-
#: app/skins/countdown/tpl.php:234
|
7511 |
-
#, php-format
|
7512 |
-
msgid "%s Upcoming Event"
|
7513 |
-
msgstr "%s Kommendes Event"
|
7514 |
-
|
7515 |
-
#: app/skins/cover/tpl.php:90
|
7516 |
-
msgid "featured event"
|
7517 |
-
msgstr "Ausgewählte Veranstaltung"
|
7518 |
-
|
7519 |
-
#: app/skins/daily_view/render.php:104 app/skins/monthly_view/calendar.php:170
|
7520 |
-
#: app/skins/monthly_view/calendar_clean.php:170
|
7521 |
-
#: app/skins/weekly_view/render.php:113
|
7522 |
-
#, fuzzy
|
7523 |
-
#| msgid "Sold out!"
|
7524 |
-
msgid "Sold Out"
|
7525 |
-
msgstr "Ausverkauft!"
|
7526 |
-
|
7527 |
-
#: app/skins/daily_view/render.php:110
|
7528 |
-
msgid "No event"
|
7529 |
-
msgstr "Keine Veranstaltung"
|
7530 |
-
|
7531 |
-
#: app/skins/default_full_calendar/tpl.php:70
|
7532 |
-
#: app/skins/full_calendar/tpl.php:111
|
7533 |
-
msgid "List"
|
7534 |
-
msgstr "Liste / Listenansicht"
|
7535 |
-
|
7536 |
-
#: app/skins/masonry.php:238
|
7537 |
-
msgid "All"
|
7538 |
-
msgstr "Alle"
|
7539 |
-
|
7540 |
-
#: app/skins/monthly_view/calendar.php:68
|
7541 |
-
#: app/skins/monthly_view/calendar.php:182
|
7542 |
-
#: app/skins/monthly_view/calendar_clean.php:68
|
7543 |
-
#: app/skins/monthly_view/calendar_clean.php:182
|
7544 |
-
#, php-format
|
7545 |
-
msgid "Events for %s"
|
7546 |
-
msgstr "Veranstaltungen für %s"
|
7547 |
-
|
7548 |
-
#: app/skins/monthly_view/calendar.php:184
|
7549 |
-
#: app/skins/monthly_view/calendar_clean.php:184
|
7550 |
-
#: app/skins/timetable/render.php:113 app/skins/weekly_view/render.php:122
|
7551 |
-
msgid "No Events"
|
7552 |
-
msgstr "Keine Veranstaltungen"
|
7553 |
-
|
7554 |
-
#: app/skins/single.php:205
|
7555 |
-
msgid "Home"
|
7556 |
-
msgstr ""
|
7557 |
-
|
7558 |
-
#: app/skins/single.php:537 app/skins/single/default.php:50
|
7559 |
-
#: app/skins/single/m1.php:247 app/skins/single/m2.php:174
|
7560 |
-
#: app/skins/single/modern.php:256
|
7561 |
-
msgid "Sold out!"
|
7562 |
-
msgstr "Ausverkauft!"
|
7563 |
-
|
7564 |
-
#: app/skins/single.php:805 app/skins/single.php:860
|
7565 |
-
#: app/skins/single/default.php:220 app/skins/single/default.php:432
|
7566 |
-
#: app/skins/single/m1.php:100 app/skins/single/m2.php:32
|
7567 |
-
#: app/skins/single/modern.php:41
|
7568 |
-
msgid "Phone"
|
7569 |
-
msgstr "Phone"
|
7570 |
-
|
7571 |
-
#: app/skins/single.php:819 app/skins/single.php:874
|
7572 |
-
#: app/skins/single/default.php:234 app/skins/single/default.php:446
|
7573 |
-
#: app/skins/single/m1.php:114 app/skins/single/m2.php:46
|
7574 |
-
#: app/skins/single/modern.php:55
|
7575 |
-
msgid "Website"
|
7576 |
-
msgstr "Website"
|
7577 |
-
|
7578 |
-
#: app/skins/single.php:944
|
7579 |
-
#, fuzzy
|
7580 |
-
#| msgid "No Search Options"
|
7581 |
-
msgid "Speakers:"
|
7582 |
-
msgstr "Keine Suchoptionen"
|
7583 |
-
|
7584 |
-
#: app/skins/single/default.php:68 app/skins/single/m1.php:256
|
7585 |
-
#: app/skins/single/m2.php:183 app/skins/single/modern.php:274
|
7586 |
-
msgid "Tags: "
|
7587 |
-
msgstr "Tags:"
|
7588 |
-
|
7589 |
-
#: app/skins/timetable/modern.php:72 app/skins/weekly_view/tpl.php:72
|
7590 |
-
#, php-format
|
7591 |
-
msgid "Week %s"
|
7592 |
-
msgstr "Woche %s"
|
7593 |
-
|
7594 |
-
#: app/widgets/MEC.php:33
|
7595 |
-
msgid "Show events based on created shortcodes."
|
7596 |
-
msgstr "Veranstaltungen auf Basis der erstellten shortcodes anzeigen"
|
7597 |
-
|
7598 |
-
#: app/widgets/MEC.php:81
|
7599 |
-
msgid "Title:"
|
7600 |
-
msgstr "Titel:"
|
7601 |
-
|
7602 |
-
#: app/widgets/MEC.php:88
|
7603 |
-
msgid "Shortcode:"
|
7604 |
-
msgstr "Shortcode:"
|
7605 |
-
|
7606 |
-
#: app/widgets/MEC.php:98
|
7607 |
-
#, fuzzy
|
7608 |
-
#| msgid "Single Event Display Method"
|
7609 |
-
msgid "Enable No Event Block Display: "
|
7610 |
-
msgstr "Single Event Anzeigemethode"
|
7611 |
-
|
7612 |
-
#: app/widgets/MEC.php:102
|
7613 |
-
msgid "Create some calendars first."
|
7614 |
-
msgstr "Erstellen Sie zuerst einige Kalender."
|
7615 |
-
|
7616 |
-
#: app/widgets/single.php:22
|
7617 |
-
msgid "MEC Single Sidebar Items"
|
7618 |
-
msgstr "MEC Single Sidebar Items"
|
7619 |
-
|
7620 |
-
#: app/widgets/single.php:22
|
7621 |
-
msgid "To manage event details page elements."
|
7622 |
-
msgstr ""
|
7623 |
-
|
7624 |
-
#: app/widgets/single.php:95
|
7625 |
-
#, fuzzy
|
7626 |
-
#| msgid "Date Time Module : "
|
7627 |
-
msgid "Date Time Module"
|
7628 |
-
msgstr "Datum Zeit Module:"
|
7629 |
-
|
7630 |
-
#: app/widgets/single.php:111
|
7631 |
-
#, fuzzy
|
7632 |
-
#| msgid "Event Labels"
|
7633 |
-
msgid "Event Label"
|
7634 |
-
msgstr "Event Labels"
|
7635 |
-
|
7636 |
-
#: app/widgets/single.php:127
|
7637 |
-
#, fuzzy
|
7638 |
-
#| msgid "No Search Options"
|
7639 |
-
msgid "Event Speakers"
|
7640 |
-
msgstr "Keine Suchoptionen"
|
7641 |
-
|
7642 |
-
#: app/widgets/single.php:135
|
7643 |
-
#, fuzzy
|
7644 |
-
#| msgid "Attende Module : "
|
7645 |
-
msgid "Attendees Module"
|
7646 |
-
msgstr "Teilnehmermodul"
|
7647 |
-
|
7648 |
-
#: app/widgets/single.php:139
|
7649 |
-
#, fuzzy
|
7650 |
-
#| msgid "Next Pervious Module : "
|
7651 |
-
msgid "Next Previous Module"
|
7652 |
-
msgstr "Nächstes vorheriges Modul"
|
7653 |
-
|
7654 |
-
#: app/widgets/single.php:143
|
7655 |
-
#, fuzzy
|
7656 |
-
#| msgid "Social Module : "
|
7657 |
-
msgid "Social Module"
|
7658 |
-
msgstr "Social Modul:"
|
7659 |
-
|
7660 |
-
#: app/widgets/single.php:147
|
7661 |
-
msgid "Weather Module"
|
7662 |
-
msgstr "Wettermodul"
|
7663 |
-
|
7664 |
-
#: app/widgets/single.php:151
|
7665 |
-
#, fuzzy
|
7666 |
-
#| msgid "Google Map : "
|
7667 |
-
msgid "Google Map"
|
7668 |
-
msgstr "Google Karte:"
|
7669 |
-
|
7670 |
-
#. Plugin URI of the plugin/theme
|
7671 |
-
#, fuzzy
|
7672 |
-
#| msgid "An awesome plugin for events calendar"
|
7673 |
-
msgid "http://webnus.net/modern-events-calendar/"
|
7674 |
-
msgstr "Ein großartiges Plugin für den Veranstaltungskalender"
|
7675 |
-
|
7676 |
-
#. Description of the plugin/theme
|
7677 |
-
msgid "An awesome plugin for events calendar"
|
7678 |
-
msgstr "Ein großartiges Plugin für den Veranstaltungskalender"
|
7679 |
-
|
7680 |
-
#. Author of the plugin/theme
|
7681 |
-
msgid "Webnus Team"
|
7682 |
-
msgstr "Webnus Team"
|
7683 |
-
|
7684 |
-
#. Author URI of the plugin/theme
|
7685 |
-
#, fuzzy
|
7686 |
-
#| msgid "http://webnus.net"
|
7687 |
-
msgid "http://webnus.net"
|
7688 |
-
msgstr "http://webnus.net"
|
7689 |
-
|
7690 |
-
#~ msgid "View"
|
7691 |
-
#~ msgstr "Anzeigen"
|
7692 |
-
|
7693 |
-
#, fuzzy
|
7694 |
-
#~| msgid "Support Forum"
|
7695 |
-
#~ msgid "Go to support forum"
|
7696 |
-
#~ msgstr "Support Forum"
|
7697 |
-
|
7698 |
-
#~ msgid "Security nonce is not valid."
|
7699 |
-
#~ msgstr "Sicherheits-Nonce ist ungültig."
|
7700 |
-
|
7701 |
-
#~ msgid "View all Articles"
|
7702 |
-
#~ msgstr "Alle Artikel anzeigen"
|
7703 |
-
|
7704 |
-
#~ msgid "Card Number"
|
7705 |
-
#~ msgstr "Kartennummer"
|
7706 |
-
|
7707 |
-
#~ msgid "CVC"
|
7708 |
-
#~ msgstr "CVC"
|
7709 |
-
|
7710 |
-
#~ msgid "Expiration (MM/YYYY)"
|
7711 |
-
#~ msgstr "Ablauf (MM/JJJJ)"
|
7712 |
-
|
7713 |
-
#~ msgid "Month"
|
7714 |
-
#~ msgstr "Monat "
|
7715 |
-
|
7716 |
-
#~ msgid "Year"
|
7717 |
-
#~ msgstr "Jahr"
|
7718 |
-
|
7719 |
-
#, fuzzy
|
7720 |
-
#~| msgid "View %s"
|
7721 |
-
#~ msgid "View All"
|
7722 |
-
#~ msgstr "Ansicht %s"
|
7723 |
-
|
7724 |
-
#~ msgid "Booking Notification"
|
7725 |
-
#~ msgstr "Buchungsbenachrichtigung"
|
7726 |
-
|
7727 |
-
#~ msgid "Admin Notification"
|
7728 |
-
#~ msgstr "Admin-Benachrichtiung"
|
7729 |
-
|
7730 |
-
#~ msgid "Export Module Options"
|
7731 |
-
#~ msgstr "Optionen für Export-Module"
|
7732 |
-
|
7733 |
-
#~ msgid "Local Time Module"
|
7734 |
-
#~ msgstr "Lokales Zeitmodul"
|
7735 |
-
|
7736 |
-
#~ msgid "QR Code Module"
|
7737 |
-
#~ msgstr "QR Code Module"
|
7738 |
-
|
7739 |
-
#~ msgid "Google+"
|
7740 |
-
#~ msgstr "Google+"
|
7741 |
-
|
7742 |
-
#~ msgid "Google Plus"
|
7743 |
-
#~ msgstr "Google Plus"
|
7744 |
-
|
7745 |
-
#~ msgid "Exclude certain days from event occurrence dates."
|
7746 |
-
#~ msgstr ""
|
7747 |
-
#~ "Ausschliessen bestimmter Tage von den Eventdaten z.B. bei regelmäßigen "
|
7748 |
-
#~ "Eventwiederholungen, oder um das Wochenende auszuschließen"
|
7749 |
-
|
7750 |
-
#~ msgid "Add to Cart"
|
7751 |
-
#~ msgstr "in den Warenkorb legen"
|
7752 |
-
|
7753 |
-
#~ msgid ""
|
7754 |
-
#~ "If you leave the latitude and longitude empty, Modern Events Calendar "
|
7755 |
-
#~ "tries to convert the location address to geopoint."
|
7756 |
-
#~ msgstr ""
|
7757 |
-
#~ "Damit der Veranstaltungsort auf der Googlemapskarte gefunden wird, ist "
|
7758 |
-
#~ "die Eingabe des exakten Breitengrades und Längengrades notwendig. Diese "
|
7759 |
-
#~ "finden Sie in der Googlemapssuche. Suchen Sie in Googlemaps die exakte "
|
7760 |
-
#~ "Anschrift des Veranstaltungsortes, dann klicken Sie oben in die "
|
7761 |
-
#~ "Browserzeile und finden nach dem @Zeichen zwei Zahlen die durch Komma "
|
7762 |
-
#~ "getrennt sind. Die 1. Zahl ist der Breitengrad, die 2. Zahl der "
|
7763 |
-
#~ "Längengrad. Wenn Sie die Breiten- und Längengradangabe leer lassen, "
|
7764 |
-
#~ "versucht die Kalendersoftware die Veranstaltungsortanschrift in einen "
|
7765 |
-
#~ "Geopunkt zu konvertieren. "
|
7766 |
-
|
7767 |
-
#, fuzzy
|
7768 |
-
#~| msgid "BuddyPress Integration"
|
7769 |
-
#~ msgid "WooCommerce Integration"
|
7770 |
-
#~ msgstr "Buddy Press Integration"
|
7771 |
-
|
7772 |
-
#~ msgid "Insert multiple recipients, comma separated."
|
7773 |
-
#~ msgstr "Mehrere Empfänger einfügen, durch Komma getrennt."
|
7774 |
-
|
7775 |
-
#~ msgid ""
|
7776 |
-
#~ "Insert comma separated days for sending the reminder. For example if you "
|
7777 |
-
#~ "enter 3,5 then the reminder will send 3 and 5 days before the event date."
|
7778 |
-
#~ msgstr ""
|
7779 |
-
#~ "Fügen Sie durch Kommas getrennte Tage ein, um die Erinnerung zu senden. "
|
7780 |
-
#~ "Wenn Sie beispielsweise 3,5 eingeben, wird die Erinnerung 3 und 5 Tage "
|
7781 |
-
#~ "vor dem Ereignisdatum gesendet."
|
7782 |
-
|
7783 |
-
#~ msgid "Proceed with caution. Default is set to Saturday and Sunday."
|
7784 |
-
#~ msgstr ""
|
7785 |
-
#~ "Vorsichtig vorgehen. Standardwert ist auf Samstag und Sonntag gesetzt."
|
7786 |
-
|
7787 |
-
#~ msgid "Default value is List View"
|
7788 |
-
#~ msgstr "Standardwert ist Listenansicht"
|
7789 |
-
|
7790 |
-
#~ msgid "Purchase Code"
|
7791 |
-
#~ msgstr "Kaufcode"
|
7792 |
-
|
7793 |
-
#~ msgid "UnVerified"
|
7794 |
-
#~ msgstr "Unbestätigt"
|
7795 |
-
|
7796 |
-
#, fuzzy
|
7797 |
-
#~| msgid ""
|
7798 |
-
#~| "Please insert your purchase code validation. read documentation for more "
|
7799 |
-
#~| "information."
|
7800 |
-
#~ msgid ""
|
7801 |
-
#~ "Please insert your purchase code validation. Read documentation for more "
|
7802 |
-
#~ "information."
|
7803 |
-
#~ msgstr ""
|
7804 |
-
#~ "Bite geben Sie Ihre KaufCode Validierung ein. Bitte lesen Sie die "
|
7805 |
-
#~ "Dokumentation für mehr Informationen."
|
7806 |
-
|
7807 |
-
#~ msgid "MEC Deactivation"
|
7808 |
-
#~ msgstr "MEC Deaktivierung"
|
7809 |
-
|
7810 |
-
#~ msgid "Deactivate"
|
7811 |
-
#~ msgstr "Deaktivieren"
|
7812 |
-
|
7813 |
-
#~ msgid ""
|
7814 |
-
#~ "For deactivation first delete your purchase from above field then press "
|
7815 |
-
#~ "save after that click on deactivate for deactivate this purchase code "
|
7816 |
-
#~ "from this domain then you can activate another domain."
|
7817 |
-
#~ msgstr ""
|
7818 |
-
#~ "Zur Deaktivierung löschen Sie zuerst Ihren Kauf vom obigen Feld, dann "
|
7819 |
-
#~ "drücken Sie speichern, nachdem klicken Sie auf deaktivieren um diesen "
|
7820 |
-
#~ "Kaufcode aus dieser Domain zu deaktivieren, dann können Sie eine andere "
|
7821 |
-
#~ "Domain aktivieren."
|
7822 |
-
|
7823 |
-
#~ msgid "Local Time : "
|
7824 |
-
#~ msgstr "Lokale Zeit:"
|
7825 |
-
|
7826 |
-
#~ msgid "Event Cost : "
|
7827 |
-
#~ msgstr "Event-Kosten:"
|
7828 |
-
|
7829 |
-
#~ msgid "More Info : "
|
7830 |
-
#~ msgstr "Mehr Informationen:"
|
7831 |
-
|
7832 |
-
#~ msgid "Event Label : "
|
7833 |
-
#~ msgstr "Event Label:"
|
7834 |
-
|
7835 |
-
#~ msgid "Event Location : "
|
7836 |
-
#~ msgstr "Veranstaltungsort:"
|
7837 |
-
|
7838 |
-
#~ msgid "Event Categories : "
|
7839 |
-
#~ msgstr "Veranstaltungskategorien"
|
7840 |
-
|
7841 |
-
#~ msgid "Event Organizer : "
|
7842 |
-
#~ msgstr "Veranstalter"
|
7843 |
-
|
7844 |
-
#~ msgid "Register Button : "
|
7845 |
-
#~ msgstr "Register Button"
|
7846 |
-
|
7847 |
-
#~ msgid "eg. http://yoursite.com/john-smith/"
|
7848 |
-
#~ msgstr "z.B.. http://ihreseite.com/maxmustermann"
|
7849 |
-
|
7850 |
-
#~ msgid "Attendee"
|
7851 |
-
#~ msgstr "Teilnehmer"
|
7852 |
-
|
7853 |
-
#~ msgid "Booker"
|
7854 |
-
#~ msgstr "Besteller"
|
7855 |
-
|
7856 |
-
#~ msgid "Edit Events"
|
7857 |
-
#~ msgstr "Veranstaltung anpassen"
|
7858 |
-
|
7859 |
-
#~ msgid ""
|
7860 |
-
#~ "Modern Event Calendar - Most Powerful & Easy to Use Events Management "
|
7861 |
-
#~ "System"
|
7862 |
-
#~ msgstr ""
|
7863 |
-
#~ "Modern Events Calender - Das stärkste und am einfachsten zu bedienende "
|
7864 |
-
#~ "Tool zum Verwalten von Veranstaltungen"
|
7865 |
-
|
7866 |
-
#~ msgid "Invoice download stopped!"
|
7867 |
-
#~ msgstr "Rechnungsdownload gestoppt!"
|
7868 |
-
|
7869 |
-
#~ msgid "Short description of the widget goes here."
|
7870 |
-
#~ msgstr "Kurze Beschreibung des Widgets gibt es hier."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/mec-en_US.mo
DELETED
Binary file
|
languages/mec-en_US.po
DELETED
@@ -1,7006 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: modern-events-calendar\n"
|
4 |
-
"POT-Creation-Date: 2019-10-01 16:42+0330\n"
|
5 |
-
"PO-Revision-Date: 2019-10-01 16:46+0330\n"
|
6 |
-
"Last-Translator: Howard <howard@realtyna.com>\n"
|
7 |
-
"Language-Team: \n"
|
8 |
-
"Language: en_US\n"
|
9 |
-
"MIME-Version: 1.0\n"
|
10 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
-
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 2.2\n"
|
13 |
-
"X-Poedit-KeywordsList: __;_e;esc_html__;esc_html_e;_x;_ex;esc_attr__;"
|
14 |
-
"esc_attr_e;esc_attr_x;_n;_nx\n"
|
15 |
-
"X-Poedit-Basepath: ..\n"
|
16 |
-
"X-Poedit-SearchPath-0: .\n"
|
17 |
-
|
18 |
-
#. Plugin Name of the plugin/theme
|
19 |
-
#: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:24
|
20 |
-
#: app/features/ix/import.php:37 app/features/ix/thirdparty.php:24
|
21 |
-
#: app/features/mec/dashboard.php:63 app/widgets/MEC.php:33
|
22 |
-
msgid "Modern Events Calendar"
|
23 |
-
msgstr ""
|
24 |
-
|
25 |
-
#: app/addons/KC.php:70 app/addons/VC.php:64 app/features/mec/styling.php:133
|
26 |
-
msgid "Content"
|
27 |
-
msgstr ""
|
28 |
-
|
29 |
-
#: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:368
|
30 |
-
#: app/features/mec.php:399 app/features/mec.php:429
|
31 |
-
msgid "Shortcode"
|
32 |
-
msgstr ""
|
33 |
-
|
34 |
-
#: app/addons/KC.php:78 app/addons/VC.php:73
|
35 |
-
msgid "Select from predefined shortcodes"
|
36 |
-
msgstr ""
|
37 |
-
|
38 |
-
#: app/addons/divi/includes/modules/MECShortcodes/MECShortcodes.php:15
|
39 |
-
#: app/addons/divi/includes/modules/MECShortcodes/MECShortcodes.php:25
|
40 |
-
msgid "MEC Shortcodes"
|
41 |
-
msgstr ""
|
42 |
-
|
43 |
-
#: app/addons/divi/includes/modules/MECShortcodes/MECShortcodes.php:28
|
44 |
-
msgid "Input your desired shortcode_id here."
|
45 |
-
msgstr ""
|
46 |
-
|
47 |
-
#: app/addons/elementor/shortcode.php:34
|
48 |
-
msgid "Modern Events Calendar (MEC)"
|
49 |
-
msgstr ""
|
50 |
-
|
51 |
-
#: app/addons/elementor/shortcode.php:78
|
52 |
-
msgid "General"
|
53 |
-
msgstr ""
|
54 |
-
|
55 |
-
#: app/addons/elementor/shortcode.php:87
|
56 |
-
msgid "Select Type"
|
57 |
-
msgstr ""
|
58 |
-
|
59 |
-
#: app/crons/booking-reminder.php:33
|
60 |
-
msgid "Booking reminder notification is not enabled!"
|
61 |
-
msgstr ""
|
62 |
-
|
63 |
-
#: app/crons/booking-reminder.php:43
|
64 |
-
msgid "Booking module is not enabled!"
|
65 |
-
msgstr ""
|
66 |
-
|
67 |
-
#: app/crons/booking-reminder.php:52
|
68 |
-
msgid "Inserted days are not valid. Please try 1,3 as a valid value!"
|
69 |
-
msgstr ""
|
70 |
-
|
71 |
-
#: app/crons/booking-reminder.php:104
|
72 |
-
#, php-format
|
73 |
-
msgid "%s reminders sent."
|
74 |
-
msgstr ""
|
75 |
-
|
76 |
-
#: app/crons/f-import.php:32
|
77 |
-
msgid "Auto Facebook import is disabled!"
|
78 |
-
msgstr ""
|
79 |
-
|
80 |
-
#: app/crons/f-import.php:35 app/features/ix.php:3133
|
81 |
-
msgid "Please insert your facebook page's link."
|
82 |
-
msgstr ""
|
83 |
-
|
84 |
-
#: app/crons/f-import.php:43 app/features/ix.php:3138
|
85 |
-
msgid ""
|
86 |
-
"We couldn't recognize your Facebook page. Please check it and provide us a "
|
87 |
-
"valid facebook page link."
|
88 |
-
msgstr ""
|
89 |
-
|
90 |
-
#: app/crons/f-import.php:197
|
91 |
-
#, php-format
|
92 |
-
msgid "%s Facebook events imported/updated."
|
93 |
-
msgstr ""
|
94 |
-
|
95 |
-
#: app/crons/g-export.php:37 app/features/ix.php:2942
|
96 |
-
msgid "All of Client App, Client Secret and Calendar ID are required!"
|
97 |
-
msgstr ""
|
98 |
-
|
99 |
-
#: app/crons/g-export.php:155 app/features/ix.php:3058
|
100 |
-
#, php-format
|
101 |
-
msgid "%s events added to Google Calendar successfully."
|
102 |
-
msgstr ""
|
103 |
-
|
104 |
-
#: app/crons/g-export.php:156 app/features/ix.php:3059
|
105 |
-
#, php-format
|
106 |
-
msgid "%s previously added events get updated."
|
107 |
-
msgstr ""
|
108 |
-
|
109 |
-
#: app/crons/g-export.php:157 app/features/ix.php:3060
|
110 |
-
#, php-format
|
111 |
-
msgid "%s events failed to add for following reasons: %s"
|
112 |
-
msgstr ""
|
113 |
-
|
114 |
-
#: app/crons/g-import.php:32
|
115 |
-
msgid "Auto Google Calendar import is disabled!"
|
116 |
-
msgstr ""
|
117 |
-
|
118 |
-
#: app/crons/g-import.php:37 app/features/ix.php:1950 app/features/ix.php:2008
|
119 |
-
msgid "Both of API key and Calendar ID are required!"
|
120 |
-
msgstr ""
|
121 |
-
|
122 |
-
#: app/crons/g-import.php:370
|
123 |
-
#, php-format
|
124 |
-
msgid "%s google events imported/updated."
|
125 |
-
msgstr ""
|
126 |
-
|
127 |
-
#: app/crons/meetup-import.php:32
|
128 |
-
msgid "Auto Meetup import is disabled!"
|
129 |
-
msgstr ""
|
130 |
-
|
131 |
-
#: app/crons/meetup-import.php:37 app/features/ix.php:2364
|
132 |
-
#: app/features/ix.php:2427
|
133 |
-
msgid "Both of API key and Group URL are required!"
|
134 |
-
msgstr ""
|
135 |
-
|
136 |
-
#: app/crons/meetup-import.php:287 app/features/ix.php:2666
|
137 |
-
msgid "Check at Meetup"
|
138 |
-
msgstr ""
|
139 |
-
|
140 |
-
#: app/crons/meetup-import.php:328
|
141 |
-
#, php-format
|
142 |
-
msgid "%s meetup events imported/updated."
|
143 |
-
msgstr ""
|
144 |
-
|
145 |
-
#: app/features/books.php:107 app/features/books.php:112
|
146 |
-
#: app/features/ix/export.php:38
|
147 |
-
msgid "Bookings"
|
148 |
-
msgstr ""
|
149 |
-
|
150 |
-
#: app/features/books.php:108 app/features/books.php:331
|
151 |
-
#: app/features/contextual.php:308 app/features/events.php:298
|
152 |
-
#: app/features/gateways.php:1541 app/features/mec/booking.php:88
|
153 |
-
#: app/features/mec/notifications.php:35 app/libraries/main.php:550
|
154 |
-
#: app/libraries/main.php:571 app/libraries/main.php:653
|
155 |
-
msgid "Booking"
|
156 |
-
msgstr ""
|
157 |
-
|
158 |
-
#: app/features/books.php:109 app/features/books.php:110
|
159 |
-
msgid "Add Booking"
|
160 |
-
msgstr ""
|
161 |
-
|
162 |
-
#: app/features/books.php:111 app/features/profile/profile.php:142
|
163 |
-
msgid "No bookings found!"
|
164 |
-
msgstr ""
|
165 |
-
|
166 |
-
#: app/features/books.php:113
|
167 |
-
msgid "Edit Bookings"
|
168 |
-
msgstr ""
|
169 |
-
|
170 |
-
#: app/features/books.php:114
|
171 |
-
msgid "No bookings found in Trash!"
|
172 |
-
msgstr ""
|
173 |
-
|
174 |
-
#: app/features/books.php:151
|
175 |
-
msgid "Book Details"
|
176 |
-
msgstr ""
|
177 |
-
|
178 |
-
#: app/features/books.php:152
|
179 |
-
msgid "Status & Invoice"
|
180 |
-
msgstr ""
|
181 |
-
|
182 |
-
#: app/features/books.php:178 app/features/books.php:454
|
183 |
-
#: app/features/books.php:710 app/features/books.php:791
|
184 |
-
#: app/features/books.php:888 app/features/fes.php:224 app/features/fes.php:332
|
185 |
-
msgid "Confirmation"
|
186 |
-
msgstr ""
|
187 |
-
|
188 |
-
#: app/features/books.php:180 app/features/books.php:712
|
189 |
-
#: app/features/books.php:736 app/libraries/main.php:5079
|
190 |
-
#: app/libraries/main.php:5101
|
191 |
-
msgid "Pending"
|
192 |
-
msgstr ""
|
193 |
-
|
194 |
-
#: app/features/books.php:181 app/features/books.php:711
|
195 |
-
#: app/libraries/main.php:5077 app/libraries/main.php:5097
|
196 |
-
msgid "Confirmed"
|
197 |
-
msgstr ""
|
198 |
-
|
199 |
-
#: app/features/books.php:182 app/features/books.php:713
|
200 |
-
#: app/libraries/main.php:5078 app/libraries/main.php:5105
|
201 |
-
msgid "Rejected"
|
202 |
-
msgstr ""
|
203 |
-
|
204 |
-
#: app/features/books.php:186 app/features/books.php:455
|
205 |
-
#: app/features/books.php:719 app/features/books.php:791
|
206 |
-
#: app/features/books.php:888 app/features/fes.php:224 app/features/fes.php:332
|
207 |
-
msgid "Verification"
|
208 |
-
msgstr ""
|
209 |
-
|
210 |
-
#: app/features/books.php:188 app/features/books.php:721
|
211 |
-
#: app/libraries/main.php:5127
|
212 |
-
msgid "Waiting"
|
213 |
-
msgstr ""
|
214 |
-
|
215 |
-
#: app/features/books.php:189 app/features/books.php:720
|
216 |
-
#: app/features/mec/booking.php:614 app/features/mec/booking.php:636
|
217 |
-
#: app/features/mec/modules.php:390 app/features/mec/modules.php:412
|
218 |
-
#: app/features/mec/notifications.php:588
|
219 |
-
#: app/features/mec/notifications.php:610 app/features/mec/settings.php:892
|
220 |
-
#: app/features/mec/settings.php:914 app/features/mec/single.php:267
|
221 |
-
#: app/features/mec/single.php:289 app/libraries/main.php:5125
|
222 |
-
msgid "Verified"
|
223 |
-
msgstr ""
|
224 |
-
|
225 |
-
#: app/features/books.php:190 app/features/books.php:722
|
226 |
-
#: app/features/labels.php:118 app/features/labels.php:143
|
227 |
-
#: app/libraries/main.php:5126 app/skins/agenda/render.php:41
|
228 |
-
#: app/skins/available_spot/tpl.php:42 app/skins/carousel/render.php:45
|
229 |
-
#: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:32
|
230 |
-
#: app/skins/daily_view/render.php:52 app/skins/grid/render.php:53
|
231 |
-
#: app/skins/list/render.php:42 app/skins/masonry/render.php:29
|
232 |
-
#: app/skins/monthly_view/calendar.php:111
|
233 |
-
#: app/skins/monthly_view/calendar_clean.php:111
|
234 |
-
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:46
|
235 |
-
#: app/skins/timetable/render.php:37 app/skins/timetable/render.php:140
|
236 |
-
#: app/skins/weekly_view/render.php:60 app/skins/yearly_view/render.php:52
|
237 |
-
msgid "Canceled"
|
238 |
-
msgstr ""
|
239 |
-
|
240 |
-
#: app/features/books.php:206
|
241 |
-
#, php-format
|
242 |
-
msgid "Here, you can %s invoice of %s transaction."
|
243 |
-
msgstr ""
|
244 |
-
|
245 |
-
#: app/features/books.php:206
|
246 |
-
msgid "download"
|
247 |
-
msgstr ""
|
248 |
-
|
249 |
-
#: app/features/books.php:249
|
250 |
-
msgid "It will create a new booking under \"Pay Locally\" gateway."
|
251 |
-
msgstr ""
|
252 |
-
|
253 |
-
#: app/features/books.php:251 app/features/contextual.php:62
|
254 |
-
#: app/features/events.php:2415 app/features/mec/booking.php:426
|
255 |
-
#: app/features/mec/support.php:29 app/libraries/main.php:554
|
256 |
-
msgid "Booking Form"
|
257 |
-
msgstr ""
|
258 |
-
|
259 |
-
#: app/features/books.php:254 app/features/books.php:333
|
260 |
-
#: app/features/books.php:452 app/features/books.php:676
|
261 |
-
#: app/features/books.php:791 app/features/books.php:888
|
262 |
-
#: app/features/events.php:151 app/features/fes.php:224
|
263 |
-
#: app/features/fes.php:332 app/features/mec/meta_boxes/display_options.php:921
|
264 |
-
#: app/features/mec/meta_boxes/display_options.php:977
|
265 |
-
#: app/features/mec/meta_boxes/display_options.php:1012
|
266 |
-
#: app/features/profile/profile.php:28 app/skins/daily_view/tpl.php:80
|
267 |
-
#: app/skins/monthly_view/tpl.php:71 app/skins/yearly_view/tpl.php:69
|
268 |
-
msgid "Event"
|
269 |
-
msgstr ""
|
270 |
-
|
271 |
-
#: app/features/books.php:318
|
272 |
-
msgid "Payment"
|
273 |
-
msgstr ""
|
274 |
-
|
275 |
-
#: app/features/books.php:320 app/features/books.php:453
|
276 |
-
#: app/features/events.php:1792 app/features/events.php:1796
|
277 |
-
#: app/features/events.php:1870 app/features/events.php:1897
|
278 |
-
#: app/features/events.php:1996 app/features/events.php:1999
|
279 |
-
#: app/features/events.php:2055 app/features/events.php:2272
|
280 |
-
#: app/features/events.php:2276 app/features/events.php:2318
|
281 |
-
#: app/features/events.php:2321 app/features/mec/booking.php:366
|
282 |
-
#: app/features/mec/booking.php:369 app/features/mec/booking.php:398
|
283 |
-
#: app/features/mec/booking.php:401
|
284 |
-
msgid "Price"
|
285 |
-
msgstr ""
|
286 |
-
|
287 |
-
#: app/features/books.php:324 app/features/gateways.php:171
|
288 |
-
msgid "Gateway"
|
289 |
-
msgstr ""
|
290 |
-
|
291 |
-
#: app/features/books.php:325 app/features/books.php:329
|
292 |
-
#: app/features/books.php:334 app/features/books.php:338
|
293 |
-
#: app/features/books.php:383 app/features/books.php:849
|
294 |
-
#: app/features/books.php:946 app/features/fes.php:282 app/features/fes.php:390
|
295 |
-
msgid "Unknown"
|
296 |
-
msgstr ""
|
297 |
-
|
298 |
-
#: app/features/books.php:328 app/features/books.php:456
|
299 |
-
#: app/features/books.php:791 app/features/books.php:888
|
300 |
-
#: app/features/fes.php:224 app/features/fes.php:332
|
301 |
-
#: app/libraries/main.php:2051
|
302 |
-
msgid "Transaction ID"
|
303 |
-
msgstr ""
|
304 |
-
|
305 |
-
#: app/features/books.php:337 app/features/books.php:791
|
306 |
-
#: app/features/books.php:888 app/features/books.php:1419
|
307 |
-
#: app/features/events.php:1189 app/features/events.php:2485
|
308 |
-
#: app/features/fes.php:224 app/features/fes.php:332
|
309 |
-
#: app/features/mec/booking.php:478 app/features/profile/profile.php:31
|
310 |
-
#: app/libraries/main.php:2045 app/libraries/main.php:2647
|
311 |
-
#: app/modules/booking/steps/tickets.php:22
|
312 |
-
#: app/modules/next-event/details.php:90 app/skins/single.php:637
|
313 |
-
#: app/skins/single/default.php:83 app/skins/single/default.php:295
|
314 |
-
#: app/skins/single/m1.php:16 app/skins/single/modern.php:166
|
315 |
-
msgid "Date"
|
316 |
-
msgstr ""
|
317 |
-
|
318 |
-
#: app/features/books.php:338
|
319 |
-
#, php-format
|
320 |
-
msgid "%s to %s"
|
321 |
-
msgstr ""
|
322 |
-
|
323 |
-
#: app/features/books.php:341 app/fea
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|