Version Description
- 01 October 2019 =
- Added: CSV Export for Bookings in "Front-end Event Submission" (pro)
- Added: MS Excel Export for Bookings in "Frontend Event Submission" (pro)
- Removed: Nonce for iCal export button to be compatible with search engines
- Improved: Front-end event submission form and list style - hard-refresh is required
- Fixed: Booking limit message (pro)
- Fixed: Showing booking module for ongoing events (pro)
- Fixed: Warnings in RSS feed of events
- Fixed: Booking verification and booking cancelation pages
- Fixed: Disable booking button action when is loading - several bookings (pro)
- Fixed: Exceptional days added actions
- Fixed: Search in published events
- Fixed: Full calendar archive filters
- Fixed: Double click to open popup in map view on mobile/tablet (pro)
- Fixed: Long title in list view > Accordion style
- Fixed: Ticket availability (pro)
- Fixed: Countdown module in Available Spot shortcode (pro)
- Fixed: PHP errors.
Download this release
Release Info
Developer | webnus |
Plugin | Modern Events Calendar Lite |
Version | 4.7.0 |
Comparing to | |
See all releases |
Code changes from version 4.6.5 to 4.7.0
- app/features/events.php +6 -2
- app/features/feed/rss2.php +4 -6
- app/features/fes.php +220 -0
- app/features/fes/form.php +1 -1
- app/features/fes/list.php +96 -2
- app/features/login/login.php +16 -2
- app/features/mec/addons.php +14 -18
- app/features/mec/support-page.php +1 -1
- app/features/organizers.php +2 -2
- app/features/profile/profile.php +1 -2
- app/features/search.php +2 -1
- app/features/search_bar/search_bar.php +6 -6
- app/features/speakers.php +8 -3
- app/libraries/book.php +13 -0
- app/libraries/envato.php +1 -1
- app/libraries/factory.php +4 -2
- app/libraries/main.php +31 -16
- app/libraries/notifications.php +21 -16
- app/libraries/render.php +17 -2
- app/modules/booking/default.php +2 -0
- app/skins/agenda/tpl.php +1 -0
- app/skins/available_spot/tpl.php +1 -0
- app/skins/carousel/render.php +2 -0
- app/skins/carousel/tpl.php +1 -0
- app/skins/countdown/tpl.php +1 -1
- app/skins/cover/tpl.php +1 -0
- app/skins/custom/tpl.php +1 -0
- app/skins/daily_view/tpl.php +1 -0
- app/skins/default_full_calendar.php +250 -0
- app/skins/default_full_calendar/index.html +0 -0
- app/skins/default_full_calendar/tpl.php +79 -0
- app/skins/full_calendar/tpl.php +1 -0
- app/skins/grid/tpl.php +1 -0
- app/skins/list/render.php +1 -0
- app/skins/list/tpl.php +1 -0
- app/skins/map/tpl.php +1 -0
- app/skins/masonry/tpl.php +1 -0
- app/skins/monthly_view/tpl.php +1 -0
- app/skins/single/default.php +14 -2
- app/skins/single/modern.php +9 -1
- app/skins/slider/tpl.php +1 -0
- app/skins/timetable/tpl.php +1 -0
- app/skins/weekly_view/tpl.php +1 -0
- app/skins/yearly_view/tpl.php +1 -0
- assets/css/backend.css +201 -22
- assets/css/backend.min.css +2 -2
- assets/css/frontend.css +1851 -573
- assets/css/frontend.min.css +1 -1
- assets/js/frontend.js +84 -0
- changelog.txt +20 -1
- languages/mec-de_DE.mo +0 -0
- languages/mec-de_DE.po +5770 -0
app/features/events.php
CHANGED
@@ -321,7 +321,9 @@ class MEC_feature_events extends MEC_base
|
|
321 |
<?php endif; ?>
|
322 |
<a class="mec-add-event-tabs-link" data-href="mec_meta_box_date_form" href="#"><?php echo esc_html('Date And Time' ,'modern-events-calendar-lite'); ?></a>
|
323 |
<a class="mec-add-event-tabs-link" data-href="mec_meta_box_repeat_form" href="#"><?php echo esc_html('Event Repeating' ,'modern-events-calendar-lite'); ?></a>
|
|
|
324 |
<a class="mec-add-event-tabs-link" data-href="mec-exceptional-days" href="#"><?php echo esc_html('Exceptional Days' ,'modern-events-calendar-lite'); ?></a>
|
|
|
325 |
<a class="mec-add-event-tabs-link" data-href="mec-hourly-schedule" href="#"><?php echo esc_html('Hourly Schedule' ,'modern-events-calendar-lite'); ?></a>
|
326 |
<a class="mec-add-event-tabs-link" data-href="mec-location" href="#"><?php echo esc_html('Location/Venue' ,'modern-events-calendar-lite'); ?></a>
|
327 |
<a class="mec-add-event-tabs-link" data-href="mec-read-more" href="#"><?php echo esc_html('Links' ,'modern-events-calendar-lite'); ?></a>
|
@@ -1525,6 +1527,7 @@ class MEC_feature_events extends MEC_base
|
|
1525 |
<?php if ( isset( $gateway_settings['op_status'] ) && $gateway_settings['op_status'] == 1 ) : ?>
|
1526 |
<a class="mec-add-booking-tabs-link" data-href="mec_meta_box_op_form" href="#"><?php echo esc_html('Organizer Payment' ,'modern-events-calendar-lite'); ?></a>
|
1527 |
<?php endif; ?>
|
|
|
1528 |
</div>
|
1529 |
<div class="mec-add-booking-tabs-right">
|
1530 |
<?php do_action('mec_metabox_booking', $post); ?>
|
@@ -3469,7 +3472,8 @@ class MEC_feature_events extends MEC_base
|
|
3469 |
fwrite($output, "sep=\t" . PHP_EOL);
|
3470 |
fputcsv($output, $columns, "\t");
|
3471 |
|
3472 |
-
foreach
|
|
|
3473 |
$post_id = (int)$post_id;
|
3474 |
|
3475 |
$data = $render->data($post_id);
|
@@ -3581,7 +3585,7 @@ class MEC_feature_events extends MEC_base
|
|
3581 |
*/
|
3582 |
public function bulk_edit()
|
3583 |
{
|
3584 |
-
$post_ids = (isset($_GET['post']) and
|
3585 |
if(!is_array($post_ids) or !count($post_ids)) return;
|
3586 |
|
3587 |
$mec_locations = (isset($_GET['tax_input']['mec_location']) and trim($_GET['tax_input']['mec_location'])) ? array_filter(explode(',', sanitize_text_field($_GET['tax_input']['mec_location']))) : NULL;
|
321 |
<?php endif; ?>
|
322 |
<a class="mec-add-event-tabs-link" data-href="mec_meta_box_date_form" href="#"><?php echo esc_html('Date And Time' ,'modern-events-calendar-lite'); ?></a>
|
323 |
<a class="mec-add-event-tabs-link" data-href="mec_meta_box_repeat_form" href="#"><?php echo esc_html('Event Repeating' ,'modern-events-calendar-lite'); ?></a>
|
324 |
+
<?php if(isset($this->settings['exceptional_days']) and $this->settings['exceptional_days']) : ?>
|
325 |
<a class="mec-add-event-tabs-link" data-href="mec-exceptional-days" href="#"><?php echo esc_html('Exceptional Days' ,'modern-events-calendar-lite'); ?></a>
|
326 |
+
<?php endif; ?>
|
327 |
<a class="mec-add-event-tabs-link" data-href="mec-hourly-schedule" href="#"><?php echo esc_html('Hourly Schedule' ,'modern-events-calendar-lite'); ?></a>
|
328 |
<a class="mec-add-event-tabs-link" data-href="mec-location" href="#"><?php echo esc_html('Location/Venue' ,'modern-events-calendar-lite'); ?></a>
|
329 |
<a class="mec-add-event-tabs-link" data-href="mec-read-more" href="#"><?php echo esc_html('Links' ,'modern-events-calendar-lite'); ?></a>
|
1527 |
<?php if ( isset( $gateway_settings['op_status'] ) && $gateway_settings['op_status'] == 1 ) : ?>
|
1528 |
<a class="mec-add-booking-tabs-link" data-href="mec_meta_box_op_form" href="#"><?php echo esc_html('Organizer Payment' ,'modern-events-calendar-lite'); ?></a>
|
1529 |
<?php endif; ?>
|
1530 |
+
<?php do_action( 'add_event_booking_sections_left_menu' ); ?>
|
1531 |
</div>
|
1532 |
<div class="mec-add-booking-tabs-right">
|
1533 |
<?php do_action('mec_metabox_booking', $post); ?>
|
3472 |
fwrite($output, "sep=\t" . PHP_EOL);
|
3473 |
fputcsv($output, $columns, "\t");
|
3474 |
|
3475 |
+
foreach($post_ids as $post_id)
|
3476 |
+
{
|
3477 |
$post_id = (int)$post_id;
|
3478 |
|
3479 |
$data = $render->data($post_id);
|
3585 |
*/
|
3586 |
public function bulk_edit()
|
3587 |
{
|
3588 |
+
$post_ids = (isset($_GET['post']) and is_array($_GET['post']) and count($_GET['post'])) ? array_map('sanitize_text_field', wp_unslash($_GET['post'])) : array();
|
3589 |
if(!is_array($post_ids) or !count($post_ids)) return;
|
3590 |
|
3591 |
$mec_locations = (isset($_GET['tax_input']['mec_location']) and trim($_GET['tax_input']['mec_location'])) ? array_filter(explode(',', sanitize_text_field($_GET['tax_input']['mec_location']))) : NULL;
|
app/features/feed/rss2.php
CHANGED
@@ -35,8 +35,8 @@ do_action('rss_tag_pre', 'rss2');
|
|
35 |
<?php if(get_comments_number($event->ID) or comments_open($event->ID)): ?>
|
36 |
<comments><?php $this->feed->comments_link_feed($event->ID); ?></comments>
|
37 |
<?php endif; ?>
|
38 |
-
|
39 |
-
<pubDate><?php echo mysql2date('D, d M Y H:i:s +0000', $event->date['start']['date'], false); ?></pubDate>
|
40 |
<dc:creator><![CDATA[<?php $this->feed->author($event->data->post->post_author); ?>]]></dc:creator>
|
41 |
|
42 |
<guid isPermaLink="false"><?php the_guid($event->ID); ?></guid>
|
@@ -44,11 +44,9 @@ do_action('rss_tag_pre', 'rss2');
|
|
44 |
<description><![CDATA[<?php echo $this->feed->excerpt($event->ID); ?>]]></description>
|
45 |
|
46 |
<?php if(!get_option('rss_use_excerpt')): $content = $this->feed->content($event->ID, 'rss2'); ?>
|
47 |
-
|
48 |
<?php endif; ?>
|
49 |
-
|
50 |
-
<wp:attachment_url><![CDATA[<?php echo $this->feed->attachment($event->ID); ?>]]></wp:attachment_url>
|
51 |
-
<?php endif; ?>
|
52 |
<?php if(get_comments_number($event->ID) or comments_open($event->ID)): ?>
|
53 |
<wfw:commentRss><?php echo esc_url(get_post_comments_feed_link($event->ID, 'rss2')); ?></wfw:commentRss>
|
54 |
<slash:comments><?php echo get_comments_number($event->ID); ?></slash:comments>
|
35 |
<?php if(get_comments_number($event->ID) or comments_open($event->ID)): ?>
|
36 |
<comments><?php $this->feed->comments_link_feed($event->ID); ?></comments>
|
37 |
<?php endif; ?>
|
38 |
+
|
39 |
+
<pubDate><?php echo mysql2date('D, d M Y H:i:s +0000', $event->date['start']['date'].' '.$event->data->time['start'], false); ?></pubDate>
|
40 |
<dc:creator><![CDATA[<?php $this->feed->author($event->data->post->post_author); ?>]]></dc:creator>
|
41 |
|
42 |
<guid isPermaLink="false"><?php the_guid($event->ID); ?></guid>
|
44 |
<description><![CDATA[<?php echo $this->feed->excerpt($event->ID); ?>]]></description>
|
45 |
|
46 |
<?php if(!get_option('rss_use_excerpt')): $content = $this->feed->content($event->ID, 'rss2'); ?>
|
47 |
+
<content:encoded><![CDATA[<?php echo $content; ?>]]></content:encoded>
|
48 |
<?php endif; ?>
|
49 |
+
|
|
|
|
|
50 |
<?php if(get_comments_number($event->ID) or comments_open($event->ID)): ?>
|
51 |
<wfw:commentRss><?php echo esc_url(get_post_comments_feed_link($event->ID, 'rss2')); ?></wfw:commentRss>
|
52 |
<slash:comments><?php echo get_comments_number($event->ID); ?></slash:comments>
|
app/features/fes.php
CHANGED
@@ -57,6 +57,10 @@ class MEC_feature_fes extends MEC_base
|
|
57 |
$this->factory->action('wp_ajax_mec_fes_upload_featured_image', array($this, 'fes_upload'));
|
58 |
$this->factory->action('wp_ajax_nopriv_mec_fes_upload_featured_image', array($this, 'fes_upload'));
|
59 |
|
|
|
|
|
|
|
|
|
60 |
// Remove the event
|
61 |
$this->factory->action('wp_ajax_mec_fes_remove', array($this, 'fes_remove'));
|
62 |
}
|
@@ -192,6 +196,222 @@ class MEC_feature_fes extends MEC_base
|
|
192 |
$this->main->response(array('success'=>1, 'message'=>__('The event removed!', 'modern-events-calendar-lite')));
|
193 |
}
|
194 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
195 |
public function fes_upload()
|
196 |
{
|
197 |
// Check if our nonce is set.
|
57 |
$this->factory->action('wp_ajax_mec_fes_upload_featured_image', array($this, 'fes_upload'));
|
58 |
$this->factory->action('wp_ajax_nopriv_mec_fes_upload_featured_image', array($this, 'fes_upload'));
|
59 |
|
60 |
+
// Export the event
|
61 |
+
$this->factory->action('wp_ajax_mec_fes_csv_export', array($this, 'mec_fes_csv_export'));
|
62 |
+
$this->factory->action('wp_ajax_mec_fes_msexcel_export', array($this, 'mec_fes_msexcel_export'));
|
63 |
+
|
64 |
// Remove the event
|
65 |
$this->factory->action('wp_ajax_mec_fes_remove', array($this, 'fes_remove'));
|
66 |
}
|
196 |
$this->main->response(array('success'=>1, 'message'=>__('The event removed!', 'modern-events-calendar-lite')));
|
197 |
}
|
198 |
|
199 |
+
public function mec_fes_csv_export()
|
200 |
+
{
|
201 |
+
if((!isset($_POST['mec_event_id'])) or (!isset($_POST['booking_ids'])) or (!isset($_POST['fes_nonce'])) or (!wp_verify_nonce($_POST['fes_nonce'], 'mec_fes_nonce'))) die(json_encode(array('ex' => "error")));
|
202 |
+
|
203 |
+
$event_id = intval($_POST['mec_event_id']);
|
204 |
+
$booking_ids = sanitize_text_field($_POST['booking_ids']);
|
205 |
+
|
206 |
+
ob_start();
|
207 |
+
header('Content-Type: text/csv; charset=utf-8');
|
208 |
+
|
209 |
+
$post_ids = trim($booking_ids) ? explode(',', $booking_ids) : array();
|
210 |
+
|
211 |
+
if(!count($post_ids))
|
212 |
+
{
|
213 |
+
$books = $this->db->select("SELECT `post_id` FROM `#__postmeta` WHERE `meta_key`='mec_event_id' AND `meta_value`={$event_id}", 'loadAssocList');
|
214 |
+
foreach ($books as $book) if(isset($book['post_id'])) $post_ids[] = $book['post_id'];
|
215 |
+
}
|
216 |
+
|
217 |
+
$event_ids = array();
|
218 |
+
foreach($post_ids as $post_id) $event_ids[] = get_post_meta($post_id, 'mec_event_id', true);
|
219 |
+
$event_ids = array_unique($event_ids);
|
220 |
+
|
221 |
+
$main_event_id = NULL;
|
222 |
+
if(count($event_ids) == 1) $main_event_id = $event_ids[0];
|
223 |
+
|
224 |
+
$columns = array(__('ID', 'modern-events-calendar-lite'), __('Event', 'modern-events-calendar-lite'), __('Date', 'modern-events-calendar-lite'), $this->main->m('ticket', __('Ticket', 'modern-events-calendar-lite')), __('Transaction ID', 'modern-events-calendar-lite'), __('Total Price', 'modern-events-calendar-lite'), __('Name', 'modern-events-calendar-lite'), __('Email', 'modern-events-calendar-lite'), __('Confirmation', 'modern-events-calendar-lite'), __('Verification', 'modern-events-calendar-lite'));
|
225 |
+
$columns = apply_filters('mec_csv_export_columns', $columns);
|
226 |
+
$reg_fields = $this->main->get_reg_fields($main_event_id);
|
227 |
+
foreach($reg_fields as $reg_field_key=>$reg_field)
|
228 |
+
{
|
229 |
+
// Placeholder Keys
|
230 |
+
if(!is_numeric($reg_field_key)) continue;
|
231 |
+
|
232 |
+
$type = isset($reg_field['type']) ? $reg_field['type'] : '';
|
233 |
+
$label = isset($reg_field['label']) ? __($reg_field['label'], 'modern-events-calendar-lite') : '';
|
234 |
+
|
235 |
+
if(trim($label) == '') continue;
|
236 |
+
if($type == 'agreement') $label = sprintf($label, get_the_title($reg_field['page']));
|
237 |
+
|
238 |
+
$columns[] = $label;
|
239 |
+
}
|
240 |
+
$columns[] = 'Attachments';
|
241 |
+
$output = fopen('php://output', 'w');
|
242 |
+
fprintf($output, chr(0xEF).chr(0xBB).chr(0xBF));
|
243 |
+
fputcsv($output, $columns);
|
244 |
+
|
245 |
+
foreach($post_ids as $post_id)
|
246 |
+
{
|
247 |
+
$post_id = (int) $post_id;
|
248 |
+
|
249 |
+
$event_id = get_post_meta($post_id, 'mec_event_id', true);
|
250 |
+
$booker_id = get_post_field('post_author', $post_id);
|
251 |
+
$transaction_id = get_post_meta($post_id, 'mec_transaction_id', true);
|
252 |
+
|
253 |
+
$tickets = get_post_meta($event_id, 'mec_tickets', true);
|
254 |
+
|
255 |
+
$attendees = get_post_meta($post_id, 'mec_attendees', true);
|
256 |
+
if(!is_array($attendees) or (is_array($attendees) and !count($attendees))) $attendees = array(get_post_meta($post_id, 'mec_attendee', true));
|
257 |
+
|
258 |
+
$price = get_post_meta($post_id, 'mec_price', true);
|
259 |
+
$booker = get_userdata($booker_id);
|
260 |
+
|
261 |
+
$confirmed = $this->main->get_confirmation_label(get_post_meta($post_id, 'mec_confirmed', true));
|
262 |
+
$verified = $this->main->get_verification_label(get_post_meta($post_id, 'mec_verified', true));
|
263 |
+
|
264 |
+
$attachments = '';
|
265 |
+
if( isset( $attendees['attachments'] ) )
|
266 |
+
{
|
267 |
+
foreach ($attendees['attachments'] as $attachment) {
|
268 |
+
$attachments .= @$attachment['url'] . "\n";
|
269 |
+
}
|
270 |
+
}
|
271 |
+
|
272 |
+
foreach($attendees as $key => $attendee)
|
273 |
+
{
|
274 |
+
if ($key === 'attachments') {
|
275 |
+
continue;
|
276 |
+
}
|
277 |
+
if (isset($attendee[0]['MEC_TYPE_OF_DATA'])) {
|
278 |
+
continue;
|
279 |
+
}
|
280 |
+
|
281 |
+
$ticket_id = isset($attendee['id']) ? $attendee['id'] : get_post_meta($post_id, 'mec_ticket_id', true);
|
282 |
+
$booking = array($post_id, get_the_title($event_id), get_the_date('', $post_id), (isset($tickets[$ticket_id]['name']) ? $tickets[$ticket_id]['name'] : __('Unknown', 'modern-events-calendar-lite')), $transaction_id, $this->main->render_price(($price ? $price : 0)), (isset($attendee['name']) ? $attendee['name'] : (isset($booker->first_name) ? trim($booker->first_name.' '.$booker->last_name) : '')), (isset($attendee['email']) ? $attendee['email'] : @$booker->user_email), $confirmed, $verified);
|
283 |
+
$booking = apply_filters('mec_csv_export_booking', $booking, $post_id, $event_id);
|
284 |
+
|
285 |
+
$reg_form = isset($attendee['reg']) ? $attendee['reg'] : array();
|
286 |
+
foreach($reg_fields as $field_id=>$reg_field)
|
287 |
+
{
|
288 |
+
// Placeholder Keys
|
289 |
+
if(!is_numeric($field_id)) continue;
|
290 |
+
|
291 |
+
$label = isset($reg_field['label']) ? __($reg_field['label'], 'modern-events-calendar-lite') : '';
|
292 |
+
if(trim($label) == '') continue;
|
293 |
+
|
294 |
+
$booking[] = isset($reg_form[$field_id]) ? ((is_string($reg_form[$field_id]) and trim($reg_form[$field_id])) ? $reg_form[$field_id] : (is_array($reg_form[$field_id]) ? implode(' | ', $reg_form[$field_id]) : '---')) : '';
|
295 |
+
}
|
296 |
+
if ($attachments) {
|
297 |
+
$booking[] = $attachments;
|
298 |
+
$attachments = '';
|
299 |
+
}
|
300 |
+
fputcsv($output, $booking);
|
301 |
+
}
|
302 |
+
}
|
303 |
+
|
304 |
+
die(json_encode(array('name' => md5(time().mt_rand(100, 999)), 'ex' => "data:text/csv; charset=utf-8;base64,".base64_encode(ob_get_clean()))));
|
305 |
+
}
|
306 |
+
|
307 |
+
public function mec_fes_msexcel_export()
|
308 |
+
{
|
309 |
+
if((!isset($_POST['mec_event_id'])) or (!isset($_POST['booking_ids'])) or (!isset($_POST['fes_nonce'])) or (!wp_verify_nonce($_POST['fes_nonce'], 'mec_fes_nonce'))) die(json_encode(array('ex' => "error")));
|
310 |
+
|
311 |
+
$event_id = intval($_POST['mec_event_id']);
|
312 |
+
$booking_ids = sanitize_text_field($_POST['booking_ids']);
|
313 |
+
|
314 |
+
ob_start();
|
315 |
+
header('Content-Type: application/vnd.ms-excel; charset=utf-8');
|
316 |
+
|
317 |
+
$post_ids = trim($booking_ids) ? explode(',', $booking_ids) : array();
|
318 |
+
|
319 |
+
if(!count($post_ids))
|
320 |
+
{
|
321 |
+
$books = $this->db->select("SELECT `post_id` FROM `#__postmeta` WHERE `meta_key`='mec_event_id' AND `meta_value`={$event_id}", 'loadAssocList');
|
322 |
+
foreach ($books as $book) if(isset($book['post_id'])) $post_ids[] = $book['post_id'];
|
323 |
+
}
|
324 |
+
|
325 |
+
$event_ids = array();
|
326 |
+
foreach($post_ids as $post_id) $event_ids[] = get_post_meta($post_id, 'mec_event_id', true);
|
327 |
+
$event_ids = array_unique($event_ids);
|
328 |
+
|
329 |
+
$main_event_id = NULL;
|
330 |
+
if(count($event_ids) == 1) $main_event_id = $event_ids[0];
|
331 |
+
|
332 |
+
$columns = array(__('ID', 'modern-events-calendar-lite'), __('Event', 'modern-events-calendar-lite'), __('Date', 'modern-events-calendar-lite'), $this->main->m('ticket', __('Ticket', 'modern-events-calendar-lite')), __('Transaction ID', 'modern-events-calendar-lite'), __('Total Price', 'modern-events-calendar-lite'), __('Name', 'modern-events-calendar-lite'), __('Email', 'modern-events-calendar-lite'), __('Confirmation', 'modern-events-calendar-lite'), __('Verification', 'modern-events-calendar-lite'));
|
333 |
+
$columns = apply_filters('mec_excel_export_columns', $columns);
|
334 |
+
$reg_fields = $this->main->get_reg_fields($main_event_id);
|
335 |
+
foreach($reg_fields as $reg_field_key=>$reg_field)
|
336 |
+
{
|
337 |
+
// Placeholder Keys
|
338 |
+
if(!is_numeric($reg_field_key)) continue;
|
339 |
+
|
340 |
+
$type = isset($reg_field['type']) ? $reg_field['type'] : '';
|
341 |
+
|
342 |
+
$label = isset($reg_field['label']) ? __($reg_field['label'], 'modern-events-calendar-lite') : '';
|
343 |
+
if(trim($label) == '') continue;
|
344 |
+
|
345 |
+
if($type == 'agreement') $label = sprintf($label, get_the_title($reg_field['page']));
|
346 |
+
|
347 |
+
$columns[] = $label;
|
348 |
+
}
|
349 |
+
$columns[] = 'Attachments';
|
350 |
+
$output = fopen('php://output', 'w');
|
351 |
+
fprintf($output, chr(0xEF).chr(0xBB).chr(0xBF));
|
352 |
+
fputcsv($output, $columns, "\t");
|
353 |
+
|
354 |
+
foreach($post_ids as $post_id)
|
355 |
+
{
|
356 |
+
$post_id = (int) $post_id;
|
357 |
+
|
358 |
+
$event_id = get_post_meta($post_id, 'mec_event_id', true);
|
359 |
+
$booker_id = get_post_field('post_author', $post_id);
|
360 |
+
$transaction_id = get_post_meta($post_id, 'mec_transaction_id', true);
|
361 |
+
|
362 |
+
$tickets = get_post_meta($event_id, 'mec_tickets', true);
|
363 |
+
|
364 |
+
$attendees = get_post_meta($post_id, 'mec_attendees', true);
|
365 |
+
if(!is_array($attendees) or (is_array($attendees) and !count($attendees))) $attendees = array(get_post_meta($post_id, 'mec_attendee', true));
|
366 |
+
|
367 |
+
$price = get_post_meta($post_id, 'mec_price', true);
|
368 |
+
$booker = get_userdata($booker_id);
|
369 |
+
|
370 |
+
$confirmed = $this->main->get_confirmation_label(get_post_meta($post_id, 'mec_confirmed', true));
|
371 |
+
$verified = $this->main->get_verification_label(get_post_meta($post_id, 'mec_verified', true));
|
372 |
+
|
373 |
+
$attachments = '';
|
374 |
+
if( isset( $attendees['attachments'] ) )
|
375 |
+
{
|
376 |
+
foreach ($attendees['attachments'] as $attachment) {
|
377 |
+
$attachments .= @$attachment['url'] . " - ";
|
378 |
+
}
|
379 |
+
}
|
380 |
+
|
381 |
+
foreach($attendees as $key => $attendee)
|
382 |
+
{
|
383 |
+
if ($key === 'attachments') {
|
384 |
+
continue;
|
385 |
+
}
|
386 |
+
if (isset($attendee[0]['MEC_TYPE_OF_DATA'])) {
|
387 |
+
continue;
|
388 |
+
}
|
389 |
+
$ticket_id = isset($attendee['id']) ? $attendee['id'] : get_post_meta($post_id, 'mec_ticket_id', true);
|
390 |
+
$booking = array($post_id, get_the_title($event_id), get_the_date('', $post_id), (isset($tickets[$ticket_id]['name']) ? $tickets[$ticket_id]['name'] : __('Unknown', 'modern-events-calendar-lite')), $transaction_id, $this->main->render_price(($price ? $price : 0)), (isset($attendee['name']) ? $attendee['name'] : (isset($booker->first_name) ? trim($booker->first_name.' '.$booker->last_name) : '')), (isset($attendee['email']) ? $attendee['email'] : $booker->user_email), $confirmed, $verified,$attachments);
|
391 |
+
$booking = apply_filters('mec_excel_export_booking', $booking, $post_id, $event_id);
|
392 |
+
|
393 |
+
$reg_form = isset($attendee['reg']) ? $attendee['reg'] : array();
|
394 |
+
foreach($reg_fields as $field_id=>$reg_field)
|
395 |
+
{
|
396 |
+
// Placeholder Keys
|
397 |
+
if(!is_numeric($field_id)) continue;
|
398 |
+
|
399 |
+
$label = isset($reg_field['label']) ? __($reg_field['label'], 'modern-events-calendar-lite') : '';
|
400 |
+
if(trim($label) == '') continue;
|
401 |
+
|
402 |
+
$booking[] = isset($reg_form[$field_id]) ? ((is_string($reg_form[$field_id]) and trim($reg_form[$field_id])) ? $reg_form[$field_id] : (is_array($reg_form[$field_id]) ? implode(' | ', $reg_form[$field_id]) : '---')) : '';
|
403 |
+
}
|
404 |
+
if ($attachments) {
|
405 |
+
$booking[] = $attachments;
|
406 |
+
$attachments = '';
|
407 |
+
}
|
408 |
+
fputcsv($output, $booking, "\t");
|
409 |
+
}
|
410 |
+
}
|
411 |
+
|
412 |
+
die(json_encode(array('name' => md5(time().mt_rand(100, 999)), 'ex' => "data:application/vnd.ms-excel; charset=utf-8;base64,".base64_encode(ob_get_clean()))));
|
413 |
+
}
|
414 |
+
|
415 |
public function fes_upload()
|
416 |
{
|
417 |
// Check if our nonce is set.
|
app/features/fes/form.php
CHANGED
@@ -156,7 +156,7 @@ $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 |
-
<a href="<?php echo $this->link_list_events(); ?>"><?php echo __('Go back to events list
|
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 |
+
<a href="<?php echo $this->link_list_events(); ?>"><?php echo __('Go back to events list', 'modern-events-calendar-lite'); ?></a>
|
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>
|
app/features/fes/list.php
CHANGED
@@ -73,11 +73,105 @@ $this->factory->params('footer', $javascript);
|
|
73 |
?>
|
74 |
<li id="mec_fes_event_<?php echo get_the_ID(); ?>">
|
75 |
<span class="mec-event-title"><a href="<?php echo $this->link_edit_event(get_the_ID()); ?>"><?php the_title(); ?></a></span>
|
76 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
77 |
<?php if(current_user_can('delete_post', get_the_ID())): ?>
|
78 |
-
<span class="mec-fes-event-remove" data-confirmed="0" data-id="<?php echo get_the_ID(); ?>"
|
79 |
<?php endif; ?>
|
80 |
<span class="mec-fes-event-view mec-event-status <?php echo $status['status_class']; ?>"><?php echo $status['label']; ?></span>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
81 |
</li>
|
82 |
<?php endwhile; wp_reset_postdata(); // Restore original Post Data ?>
|
83 |
</ul>
|
73 |
?>
|
74 |
<li id="mec_fes_event_<?php echo get_the_ID(); ?>">
|
75 |
<span class="mec-event-title"><a href="<?php echo $this->link_edit_event(get_the_ID()); ?>"><?php the_title(); ?></a></span>
|
76 |
+
<?php
|
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(); ?>">
|
88 |
+
<div class="mec-fes-btn-date">
|
89 |
+
<?php
|
90 |
+
$mec_repeat_info = get_post_meta(get_the_ID(), 'mec_repeat', true);
|
91 |
+
$ids_text_field = '';
|
92 |
+
|
93 |
+
if(isset($mec_repeat_info['status']) and $mec_repeat_info['status']):
|
94 |
+
?>
|
95 |
+
<ul class="mec-export-list-wrapper">
|
96 |
+
<?php
|
97 |
+
$past_month = strtotime('-1month', current_time('timestamp', 0));
|
98 |
+
|
99 |
+
$render = $this->getRender();
|
100 |
+
$dates = $render->dates(get_the_ID(), NULL, 15, date('Y-m-d', $past_month));
|
101 |
+
|
102 |
+
// Attnedees
|
103 |
+
$current_user_id = is_user_logged_in() ? get_current_user_id() : false;
|
104 |
+
$current_user_books = $this->db->select("SELECT `ID` FROM `#__posts` WHERE `post_type`='mec-books' AND `post_author`={$current_user_id}", 'loadAssocList');
|
105 |
+
$all_books_ids_info = array();
|
106 |
+
|
107 |
+
if(is_array($current_user_books) and count($current_user_books)):
|
108 |
+
|
109 |
+
foreach($current_user_books as $current_user_book):
|
110 |
+
|
111 |
+
$book_ids_info = array();
|
112 |
+
$book_ids_info['id'] = $current_user_book['ID'];
|
113 |
+
$book_ids_info['info'] = array();
|
114 |
+
$books_meta_info = $this->db->select("SELECT `post_id`, `meta_key`, `meta_value` FROM `#__postmeta` WHERE `post_id`={$current_user_book['ID']}", 'loadAssocList');
|
115 |
+
|
116 |
+
if(is_array($books_meta_info) and count($books_meta_info))
|
117 |
+
{
|
118 |
+
$books_data = array();
|
119 |
+
foreach($books_meta_info as $book_meta_info)
|
120 |
+
{
|
121 |
+
$books_data = array_merge($books_data, array(trim($book_meta_info['meta_key']) => $book_meta_info['meta_value']));
|
122 |
+
}
|
123 |
+
$book_ids_info['info'] = $books_data;
|
124 |
+
array_push($all_books_ids_info, $book_ids_info);
|
125 |
+
|
126 |
+
if(get_the_ID() == $book_ids_info['info']['mec_event_id']) $ids_text_field .= $book_ids_info['id'] . ',';
|
127 |
+
}
|
128 |
+
endforeach;
|
129 |
+
endif;
|
130 |
+
foreach($dates as $date):
|
131 |
+
|
132 |
+
if(isset($date['start']['date']) and isset($date['end']['date'])):
|
133 |
+
|
134 |
+
$attendees_count = 0;
|
135 |
+
$certain_date_ids = "";
|
136 |
+
$render_date = trim($date['start']['date']).':'.trim($date['end']['date']);
|
137 |
+
foreach($all_books_ids_info as $book_info)
|
138 |
+
{
|
139 |
+
if((isset($book_info['info']['mec_date']) and trim($book_info['info']['mec_date']) == $render_date) and (isset($book_info['info']['mec_event_id']) and trim($book_info['info']['mec_event_id']) == get_the_ID()))
|
140 |
+
{
|
141 |
+
if(isset($book_info['info']['mec_attendees']))
|
142 |
+
{
|
143 |
+
|
144 |
+
$attendees_info = unserialize($book_info['info']['mec_attendees']);
|
145 |
+
$certain_date_ids .= $book_info['id'] . ',';
|
146 |
+
foreach($attendees_info as $attendees_info)
|
147 |
+
{
|
148 |
+
$attendees_count += $attendees_info['count'];
|
149 |
+
}
|
150 |
+
}
|
151 |
+
}
|
152 |
+
}
|
153 |
+
?>
|
154 |
+
<li class="mec-export-list-item" data-ids="<?php echo $certain_date_ids; ?>"><?php echo trim($date['start']['date']); ?> <span class="mec-export-badge"><?php echo $attendees_count; ?></span></li>
|
155 |
+
<?php
|
156 |
+
endif;
|
157 |
+
endforeach;
|
158 |
+
?>
|
159 |
+
</ul>
|
160 |
+
<?php else: ?>
|
161 |
+
<div class="date-messgae">
|
162 |
+
<?php _e('Event is not repeating. Not exist dates 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; ?>">
|
166 |
+
</div>
|
167 |
+
<?php
|
168 |
+
$mec_repeat_info = get_post_meta(get_the_ID(), 'mec_repeat', true);
|
169 |
+
?>
|
170 |
+
<div class="mec-fes-btn-export">
|
171 |
+
<span class="mec-event-export-csv">CSV</span>
|
172 |
+
<span class="mec-event-export-excel">MS EXCEL</span>
|
173 |
+
</div>
|
174 |
+
</div>
|
175 |
</li>
|
176 |
<?php endwhile; wp_reset_postdata(); // Restore original Post Data ?>
|
177 |
</ul>
|
app/features/login/login.php
CHANGED
@@ -23,6 +23,15 @@
|
|
23 |
</div>
|
24 |
|
25 |
<script type="text/javascript">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
|
27 |
jQuery(".mec-login-form-footer button").click(function (e) {
|
28 |
e.preventDefault();
|
@@ -48,10 +57,15 @@
|
|
48 |
if ( !message.loggedin ){
|
49 |
jQuery(".mec-ajax-login-loading .lds-ripple").remove();
|
50 |
jQuery(".mec-ajax-login-loading-text").addClass('error').append(message.message);
|
51 |
-
|
|
|
|
|
|
|
52 |
} else {
|
53 |
jQuery(".mec-ajax-login-loading-text").addClass('success').append(message.message);
|
54 |
-
|
|
|
|
|
55 |
}
|
56 |
},
|
57 |
});
|
23 |
</div>
|
24 |
|
25 |
<script type="text/javascript">
|
26 |
+
|
27 |
+
jQuery('.mec-login-input #password').keypress(function (e) {
|
28 |
+
var key = e.which;
|
29 |
+
if(key == 13) // the enter key code
|
30 |
+
{
|
31 |
+
jQuery('.mec-login-form-footer button').click();
|
32 |
+
return false;
|
33 |
+
}
|
34 |
+
});
|
35 |
|
36 |
jQuery(".mec-login-form-footer button").click(function (e) {
|
37 |
e.preventDefault();
|
57 |
if ( !message.loggedin ){
|
58 |
jQuery(".mec-ajax-login-loading .lds-ripple").remove();
|
59 |
jQuery(".mec-ajax-login-loading-text").addClass('error').append(message.message);
|
60 |
+
setTimeout(() => {
|
61 |
+
location.reload();
|
62 |
+
}, 1000);
|
63 |
+
|
64 |
} else {
|
65 |
jQuery(".mec-ajax-login-loading-text").addClass('success').append(message.message);
|
66 |
+
setTimeout(() => {
|
67 |
+
location.reload();
|
68 |
+
}, 1000);
|
69 |
}
|
70 |
},
|
71 |
});
|
app/features/mec/addons.php
CHANGED
@@ -20,15 +20,6 @@ wp_enqueue_script('mec-lity-script', $this->main->asset('packages/lity/lity.min.
|
|
20 |
<div class="w-row">
|
21 |
<div class="w-col-sm-9">
|
22 |
<h1> <?php echo __('Addons', 'modern-events-calendar-lite'); ?> </h1>
|
23 |
-
<div class="w-welcome">
|
24 |
-
<!-- <div class="addons-page-links link-to-purchase"><a href="https://webnus.net/dox/modern-events-calendar/" target="_blank"><?php esc_html_e('How to Purchase' , 'modern-events-calendar-lite'); ?></a></div>
|
25 |
-
<div class="addons-page-links link-to-install-addons"><a href="https://webnus.net/dox/modern-events-calendar/video-tutorials/" target="_blank"><?php esc_html_e('Install Addons' , 'modern-events-calendar-lite'); ?></a></div> -->
|
26 |
-
<div class="addons-page-notice">
|
27 |
-
<p>
|
28 |
-
<?php echo __( '<strong>Note:</strong> All addons are provided for the Pro version and you cannot install and use them on the Lite version.', 'modern-events-calendar-lite'); ?>
|
29 |
-
</p>
|
30 |
-
</div>
|
31 |
-
</div>
|
32 |
</div>
|
33 |
<div class="w-col-sm-3">
|
34 |
<img src="<?php echo plugin_dir_url(__FILE__ ) . '../../../assets/img/mec-logo-w.png'; ?>" />
|
@@ -40,12 +31,16 @@ wp_enqueue_script('mec-lity-script', $this->main->asset('packages/lity/lity.min.
|
|
40 |
<?php if(current_user_can('read')): ?>
|
41 |
<?php
|
42 |
$data_url = 'https://webnus.net/modern-events-calendar/addons-api/addons-api.json';
|
43 |
-
|
44 |
-
|
45 |
-
if(
|
46 |
{
|
47 |
-
$
|
48 |
-
$
|
|
|
|
|
|
|
|
|
49 |
}
|
50 |
elseif ( function_exists('curl_version') )
|
51 |
{
|
@@ -68,7 +63,7 @@ wp_enqueue_script('mec-lity-script', $this->main->asset('packages/lity/lity.min.
|
|
68 |
<div class="w-box addon">
|
69 |
<div class="w-box-child mec-addon-box">
|
70 |
<div class="mec-addon-box-head">
|
71 |
-
<div class="mec-addon-box-title"><
|
72 |
<?php if ( $value->comingsoon == 'false' ) : ?>
|
73 |
<div class="mec-addon-box-version"><span><?php esc_html_e('Version' , 'modern-events-calendar-lite'); ?> <strong><?php esc_html_e($value->version); ?></strong></span></div>
|
74 |
<?php endif; ?>
|
@@ -80,10 +75,11 @@ wp_enqueue_script('mec-lity-script', $this->main->asset('packages/lity/lity.min.
|
|
80 |
</div>
|
81 |
<div class="mec-addon-box-footer">
|
82 |
<?php if ( $value->comingsoon == 'false' ) : ?>
|
83 |
-
<a class="mec-addon-box-
|
84 |
-
<a class="mec-addon-box-
|
|
|
85 |
<?php else : ?>
|
86 |
-
<div class="mec-addon-box-comingsoon"
|
87 |
<?php endif; ?>
|
88 |
</div>
|
89 |
</div>
|
20 |
<div class="w-row">
|
21 |
<div class="w-col-sm-9">
|
22 |
<h1> <?php echo __('Addons', 'modern-events-calendar-lite'); ?> </h1>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
</div>
|
24 |
<div class="w-col-sm-3">
|
25 |
<img src="<?php echo plugin_dir_url(__FILE__ ) . '../../../assets/img/mec-logo-w.png'; ?>" />
|
31 |
<?php if(current_user_can('read')): ?>
|
32 |
<?php
|
33 |
$data_url = 'https://webnus.net/modern-events-calendar/addons-api/addons-api.json';
|
34 |
+
|
35 |
+
|
36 |
+
if( function_exists('file_get_contents') && ini_get('allow_url_fopen') )
|
37 |
{
|
38 |
+
$get_data = file_get_contents($data_url);
|
39 |
+
if ( $get_data !== false AND !empty($get_data) )
|
40 |
+
{
|
41 |
+
$obj = json_decode($get_data);
|
42 |
+
$i = count((array)$obj);
|
43 |
+
}
|
44 |
}
|
45 |
elseif ( function_exists('curl_version') )
|
46 |
{
|
63 |
<div class="w-box addon">
|
64 |
<div class="w-box-child mec-addon-box">
|
65 |
<div class="mec-addon-box-head">
|
66 |
+
<div class="mec-addon-box-title"><img src="<?php esc_html_e($value->img); ?>" /><span><?php esc_html_e($value->name); ?></span></div>
|
67 |
<?php if ( $value->comingsoon == 'false' ) : ?>
|
68 |
<div class="mec-addon-box-version"><span><?php esc_html_e('Version' , 'modern-events-calendar-lite'); ?> <strong><?php esc_html_e($value->version); ?></strong></span></div>
|
69 |
<?php endif; ?>
|
75 |
</div>
|
76 |
<div class="mec-addon-box-footer">
|
77 |
<?php if ( $value->comingsoon == 'false' ) : ?>
|
78 |
+
<a class="mec-addon-box-intro" href="<?php esc_html_e($value->video); ?>" data-lity=""><i class="mec-sl-control-play"></i><div class="wn-p-t-right"><div class="wn-p-t-text-content"><h5>Introduction Video</h5>Watch to learn more about the features</div><i></i></div></a>
|
79 |
+
<a class="mec-addon-box-purchase" href="<?php esc_html_e($value->page); ?>" target="_blank"><i class="mec-sl-link"></i><div class="wn-p-t-right"><div class="wn-p-t-text-content"><h5>Details</h5>Learn everything about this addon</div><i></i></div></a>
|
80 |
+
<a class="mec-addon-box-purchase" href="<?php esc_html_e($value->purchase); ?>" target="_blank"><i class="mec-sl-basket"></i><div class="wn-p-t-right"><div class="wn-p-t-text-content"><h5>Add To Cart</h5>Add to cart and continue purchasing</div><i></i></div></a>
|
81 |
<?php else : ?>
|
82 |
+
<div class="mec-addon-box-comingsoon"><?php esc_html_e('Coming Soon' , 'modern-events-calendar-lite'); ?></div>
|
83 |
<?php endif; ?>
|
84 |
</div>
|
85 |
</div>
|
app/features/mec/support-page.php
CHANGED
@@ -246,7 +246,7 @@ wp_enqueue_script('mec-lity-script', $this->main->asset('packages/lity/lity.min.
|
|
246 |
<div class="w-box support-page mec-ticksy">
|
247 |
<div class="w-box-content">
|
248 |
<p><?php esc_html_e('Webnus is an elite and trusted author with a high percentage of satisfied users. If you have any issues please don\'t hesitate to contact us, we will reply as soon as possible.' , 'modern-events-calendar-lite'); ?></p>
|
249 |
-
<a href="https://webnus.ticksy.com/" target="_blank"><?php esc_html_e('
|
250 |
</div>
|
251 |
</div>
|
252 |
</div>
|
246 |
<div class="w-box support-page mec-ticksy">
|
247 |
<div class="w-box-content">
|
248 |
<p><?php esc_html_e('Webnus is an elite and trusted author with a high percentage of satisfied users. If you have any issues please don\'t hesitate to contact us, we will reply as soon as possible.' , 'modern-events-calendar-lite'); ?></p>
|
249 |
+
<a href="https://webnus.ticksy.com/" target="_blank"><?php esc_html_e('Create a support ticket','modern-events-calendar-lite'); ?></a>
|
250 |
</div>
|
251 |
</div>
|
252 |
</div>
|
app/features/organizers.php
CHANGED
@@ -122,7 +122,6 @@ class MEC_feature_organizers extends MEC_base
|
|
122 |
<input type="text" placeholder="<?php esc_attr_e('Use this field to link organizer to other user profile pages', 'modern-events-calendar-lite'); ?>" name="url" id="mec_url" value="<?php echo $url; ?>" />
|
123 |
</td>
|
124 |
</tr>
|
125 |
-
<?php do_action( 'mec_edit_organizer_extra_fields' , $term ); ?>
|
126 |
<tr class="form-field">
|
127 |
<th scope="row" valign="top">
|
128 |
<label for="mec_thumbnail_button"><?php _e('Thumbnail', 'modern-events-calendar-lite'); ?></label>
|
@@ -134,6 +133,7 @@ class MEC_feature_organizers extends MEC_base
|
|
134 |
<button type="button" class="mec_remove_image_button button <?php echo (!trim($thumbnail) ? 'mec-util-hidden' : ''); ?>"><?php echo __('Remove image', 'modern-events-calendar-lite'); ?></button>
|
135 |
</td>
|
136 |
</tr>
|
|
|
137 |
<?php
|
138 |
}
|
139 |
|
@@ -156,7 +156,6 @@ class MEC_feature_organizers extends MEC_base
|
|
156 |
<label for="mec_url"><?php _e('Link to organizer page', 'modern-events-calendar-lite'); ?></label>
|
157 |
<input type="text" name="url" placeholder="<?php esc_attr_e('Use this field to link organizer to other user profile pages', 'modern-events-calendar-lite'); ?>" id="mec_url" value="" />
|
158 |
</div>
|
159 |
-
<?php do_action( 'mec_add_organizer_extra_fields' ); ?>
|
160 |
<div class="form-field">
|
161 |
<label for="mec_thumbnail_button"><?php _e('Thumbnail', 'modern-events-calendar-lite'); ?></label>
|
162 |
<div id="mec_thumbnail_img"></div>
|
@@ -164,6 +163,7 @@ class MEC_feature_organizers extends MEC_base
|
|
164 |
<button type="button" class="mec_upload_image_button button" id="mec_thumbnail_button"><?php echo __('Upload/Add image', 'modern-events-calendar-lite'); ?></button>
|
165 |
<button type="button" class="mec_remove_image_button button mec-util-hidden"><?php echo __('Remove image', 'modern-events-calendar-lite'); ?></button>
|
166 |
</div>
|
|
|
167 |
<?php
|
168 |
}
|
169 |
|
122 |
<input type="text" placeholder="<?php esc_attr_e('Use this field to link organizer to other user profile pages', 'modern-events-calendar-lite'); ?>" name="url" id="mec_url" value="<?php echo $url; ?>" />
|
123 |
</td>
|
124 |
</tr>
|
|
|
125 |
<tr class="form-field">
|
126 |
<th scope="row" valign="top">
|
127 |
<label for="mec_thumbnail_button"><?php _e('Thumbnail', 'modern-events-calendar-lite'); ?></label>
|
133 |
<button type="button" class="mec_remove_image_button button <?php echo (!trim($thumbnail) ? 'mec-util-hidden' : ''); ?>"><?php echo __('Remove image', 'modern-events-calendar-lite'); ?></button>
|
134 |
</td>
|
135 |
</tr>
|
136 |
+
<?php do_action( 'mec_edit_organizer_extra_fields' , $term ); ?>
|
137 |
<?php
|
138 |
}
|
139 |
|
156 |
<label for="mec_url"><?php _e('Link to organizer page', 'modern-events-calendar-lite'); ?></label>
|
157 |
<input type="text" name="url" placeholder="<?php esc_attr_e('Use this field to link organizer to other user profile pages', 'modern-events-calendar-lite'); ?>" id="mec_url" value="" />
|
158 |
</div>
|
|
|
159 |
<div class="form-field">
|
160 |
<label for="mec_thumbnail_button"><?php _e('Thumbnail', 'modern-events-calendar-lite'); ?></label>
|
161 |
<div id="mec_thumbnail_img"></div>
|
163 |
<button type="button" class="mec_upload_image_button button" id="mec_thumbnail_button"><?php echo __('Upload/Add image', 'modern-events-calendar-lite'); ?></button>
|
164 |
<button type="button" class="mec_remove_image_button button mec-util-hidden"><?php echo __('Remove image', 'modern-events-calendar-lite'); ?></button>
|
165 |
</div>
|
166 |
+
<?php do_action( 'mec_add_organizer_extra_fields' ); ?>
|
167 |
<?php
|
168 |
}
|
169 |
|
app/features/profile/profile.php
CHANGED
@@ -6,7 +6,6 @@ defined('MECEXEC') or die();
|
|
6 |
$render = $this->getRender();
|
7 |
|
8 |
// The Query
|
9 |
-
var_dump($this->PT);
|
10 |
$query = new WP_Query(array(
|
11 |
'post_type'=>$this->PT,
|
12 |
'author'=>get_current_user_id(),
|
@@ -41,7 +40,7 @@ $id = 1;
|
|
41 |
<?php esc_html_e('Invoice' , 'modern-events-calendar-lite'); ?>
|
42 |
</td>
|
43 |
</tr>
|
44 |
-
<?php while($query->have_posts()): $query->the_post(); $ID = get_the_ID();
|
45 |
<?php
|
46 |
$transaction_id = $this->book->get_transaction_id_book_id($ID);
|
47 |
$event_id = get_post_meta($ID, 'mec_event_id', true);
|
6 |
$render = $this->getRender();
|
7 |
|
8 |
// The Query
|
|
|
9 |
$query = new WP_Query(array(
|
10 |
'post_type'=>$this->PT,
|
11 |
'author'=>get_current_user_id(),
|
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
|
45 |
$transaction_id = $this->book->get_transaction_id_book_id($ID);
|
46 |
$event_id = get_post_meta($ID, 'mec_event_id', true);
|
app/features/search.php
CHANGED
@@ -162,7 +162,8 @@ class MEC_feature_search extends MEC_base
|
|
162 |
$the_query = new WP_Query(array(
|
163 |
'tax_query' => $mec_quesries,
|
164 |
's' => esc_attr( $_POST['keyword'] ),
|
165 |
-
'post_type' => 'mec-events'
|
|
|
166 |
));
|
167 |
|
168 |
if( $the_query->have_posts() ) :
|
162 |
$the_query = new WP_Query(array(
|
163 |
'tax_query' => $mec_quesries,
|
164 |
's' => esc_attr( $_POST['keyword'] ),
|
165 |
+
'post_type' => 'mec-events',
|
166 |
+
'post_status' => array('publish'),
|
167 |
));
|
168 |
|
169 |
if( $the_query->have_posts() ) :
|
app/features/search_bar/search_bar.php
CHANGED
@@ -14,12 +14,12 @@ $output = '<div class="'.$modern_type.'mec-wrap mec-search-bar-wrap"><form class
|
|
14 |
if( (isset( $settings['search_bar_category'] ) && $settings['search_bar_category'] == '1' ) || (isset( $settings['search_bar_location'] ) && $settings['search_bar_location'] == '1' ) || ( isset( $settings['search_bar_organizer'] ) && $settings['search_bar_organizer'] == '1' ) || ( isset( $settings['search_bar_speaker'] ) && $settings['search_bar_speaker'] == '1' ) || ( isset( $settings['search_bar_tag'] ) && $settings['search_bar_tag'] == '1' ) || ( isset( $settings['search_bar_label'] ) && $settings['search_bar_label'] == '1' ) )
|
15 |
{
|
16 |
$output .= '<div class="mec-dropdown-wrap">';
|
17 |
-
if($settings['search_bar_category'] == '1' ) $output .= $this->show_taxonomy('mec_category' , 'folder');
|
18 |
-
if($settings['search_bar_location'] == '1' ) $output .= $this->show_taxonomy('mec_location' , 'location-pin');
|
19 |
-
if($settings['search_bar_organizer'] == '1' ) $output .= $this->show_taxonomy('mec_organizer' , 'user');
|
20 |
-
if($settings['search_bar_speaker'] == '1' ) $output .= $this->show_taxonomy('mec_speaker' , 'microphone');
|
21 |
-
if($settings['search_bar_tag'] == '1' ) $output .= $this->show_taxonomy('post_tag' , 'tag');
|
22 |
-
if($settings['search_bar_label'] == '1' ) $output .= $this->show_taxonomy('mec_label' , 'pin');
|
23 |
$output .= '</div>';
|
24 |
}
|
25 |
|
14 |
if( (isset( $settings['search_bar_category'] ) && $settings['search_bar_category'] == '1' ) || (isset( $settings['search_bar_location'] ) && $settings['search_bar_location'] == '1' ) || ( isset( $settings['search_bar_organizer'] ) && $settings['search_bar_organizer'] == '1' ) || ( isset( $settings['search_bar_speaker'] ) && $settings['search_bar_speaker'] == '1' ) || ( isset( $settings['search_bar_tag'] ) && $settings['search_bar_tag'] == '1' ) || ( isset( $settings['search_bar_label'] ) && $settings['search_bar_label'] == '1' ) )
|
15 |
{
|
16 |
$output .= '<div class="mec-dropdown-wrap">';
|
17 |
+
if( isset( $settings['search_bar_category'] ) && $settings['search_bar_category'] == '1' ) $output .= $this->show_taxonomy('mec_category' , 'folder');
|
18 |
+
if( isset( $settings['search_bar_location'] ) && $settings['search_bar_location'] == '1' ) $output .= $this->show_taxonomy('mec_location' , 'location-pin');
|
19 |
+
if( isset( $settings['search_bar_organizer'] ) && $settings['search_bar_organizer'] == '1' ) $output .= $this->show_taxonomy('mec_organizer' , 'user');
|
20 |
+
if( isset( $settings['search_bar_speaker'] ) && $settings['search_bar_speaker'] == '1' ) $output .= $this->show_taxonomy('mec_speaker' , 'microphone');
|
21 |
+
if( isset( $settings['search_bar_tag'] ) && $settings['search_bar_tag'] == '1' ) $output .= $this->show_taxonomy('post_tag' , 'tag');
|
22 |
+
if( isset( $settings['search_bar_label'] ) && $settings['search_bar_label'] == '1' ) $output .= $this->show_taxonomy('mec_label' , 'pin');
|
23 |
$output .= '</div>';
|
24 |
}
|
25 |
|
app/features/speakers.php
CHANGED
@@ -29,7 +29,7 @@ class MEC_feature_speakers extends MEC_base
|
|
29 |
}
|
30 |
|
31 |
/**
|
32 |
-
* Initialize
|
33 |
* @author Webnus <info@webnus.biz>
|
34 |
*/
|
35 |
public function init()
|
@@ -162,6 +162,7 @@ class MEC_feature_speakers extends MEC_base
|
|
162 |
<button type="button" class="mec_remove_image_button button <?php echo (!trim($thumbnail) ? 'mec-util-hidden' : ''); ?>"><?php echo __('Remove image', 'modern-events-calendar-lite'); ?></button>
|
163 |
</td>
|
164 |
</tr>
|
|
|
165 |
<?php
|
166 |
}
|
167 |
|
@@ -178,11 +179,11 @@ class MEC_feature_speakers extends MEC_base
|
|
178 |
</div>
|
179 |
<div class="form-field">
|
180 |
<label for="mec_tel"><?php _e('Tel', 'modern-events-calendar-lite'); ?></label>
|
181 |
-
<input type="text" name="tel" placeholder="<?php esc_attr_e('Insert
|
182 |
</div>
|
183 |
<div class="form-field">
|
184 |
<label for="mec_email"><?php _e('Email', 'modern-events-calendar-lite'); ?></label>
|
185 |
-
<input type="text" name="email" placeholder="<?php esc_attr_e('Insert
|
186 |
</div>
|
187 |
<div class="form-field">
|
188 |
<label for="mec_facebook"><?php _e('Facebook Page', 'modern-events-calendar-lite'); ?></label>
|
@@ -203,6 +204,7 @@ class MEC_feature_speakers extends MEC_base
|
|
203 |
<button type="button" class="mec_upload_image_button button" id="mec_thumbnail_button"><?php echo __('Upload/Add image', 'modern-events-calendar-lite'); ?></button>
|
204 |
<button type="button" class="mec_remove_image_button button mec-util-hidden"><?php echo __('Remove image', 'modern-events-calendar-lite'); ?></button>
|
205 |
</div>
|
|
|
206 |
<?php
|
207 |
}
|
208 |
|
@@ -228,6 +230,9 @@ class MEC_feature_speakers extends MEC_base
|
|
228 |
update_term_meta($term_id, 'twitter', $twitter);
|
229 |
update_term_meta($term_id, 'instagram', $instagram);
|
230 |
update_term_meta($term_id, 'thumbnail', $thumbnail);
|
|
|
|
|
|
|
231 |
}
|
232 |
|
233 |
/**
|
29 |
}
|
30 |
|
31 |
/**
|
32 |
+
* Initialize speakers feature
|
33 |
* @author Webnus <info@webnus.biz>
|
34 |
*/
|
35 |
public function init()
|
162 |
<button type="button" class="mec_remove_image_button button <?php echo (!trim($thumbnail) ? 'mec-util-hidden' : ''); ?>"><?php echo __('Remove image', 'modern-events-calendar-lite'); ?></button>
|
163 |
</td>
|
164 |
</tr>
|
165 |
+
<?php do_action( 'mec_edit_speaker_extra_fields' , $term ); ?>
|
166 |
<?php
|
167 |
}
|
168 |
|
179 |
</div>
|
180 |
<div class="form-field">
|
181 |
<label for="mec_tel"><?php _e('Tel', 'modern-events-calendar-lite'); ?></label>
|
182 |
+
<input type="text" name="tel" placeholder="<?php esc_attr_e('Insert speaker phone number.', 'modern-events-calendar-lite'); ?>" id="mec_tel" value="" />
|
183 |
</div>
|
184 |
<div class="form-field">
|
185 |
<label for="mec_email"><?php _e('Email', 'modern-events-calendar-lite'); ?></label>
|
186 |
+
<input type="text" name="email" placeholder="<?php esc_attr_e('Insert speaker email address.', 'modern-events-calendar-lite'); ?>" id="mec_email" value="" />
|
187 |
</div>
|
188 |
<div class="form-field">
|
189 |
<label for="mec_facebook"><?php _e('Facebook Page', 'modern-events-calendar-lite'); ?></label>
|
204 |
<button type="button" class="mec_upload_image_button button" id="mec_thumbnail_button"><?php echo __('Upload/Add image', 'modern-events-calendar-lite'); ?></button>
|
205 |
<button type="button" class="mec_remove_image_button button mec-util-hidden"><?php echo __('Remove image', 'modern-events-calendar-lite'); ?></button>
|
206 |
</div>
|
207 |
+
<?php do_action( 'mec_add_speaker_extra_fields' ); ?>
|
208 |
<?php
|
209 |
}
|
210 |
|
230 |
update_term_meta($term_id, 'twitter', $twitter);
|
231 |
update_term_meta($term_id, 'instagram', $instagram);
|
232 |
update_term_meta($term_id, 'thumbnail', $thumbnail);
|
233 |
+
|
234 |
+
|
235 |
+
do_action( 'mec_save_speaker_extra_fields' , $term_id );
|
236 |
}
|
237 |
|
238 |
/**
|
app/libraries/book.php
CHANGED
@@ -457,6 +457,19 @@ class MEC_book extends MEC_base
|
|
457 |
// Set Total Booking Limit
|
458 |
$availability['total'] = $total_bookings_limit;
|
459 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
460 |
// Total Booking Limit Reached
|
461 |
if($total_bookings_limit_original != -1 and $booked >= $total_bookings_limit_original)
|
462 |
{
|
457 |
// Set Total Booking Limit
|
458 |
$availability['total'] = $total_bookings_limit;
|
459 |
|
460 |
+
// Do not send higher limit for tickets compared to total limit
|
461 |
+
if($total_bookings_limit != '-1' and $total_bookings_limit > 0)
|
462 |
+
{
|
463 |
+
$new_availability = array();
|
464 |
+
foreach($availability as $ticket_id=>$limit)
|
465 |
+
{
|
466 |
+
if(is_numeric($ticket_id)) $new_availability[$ticket_id] = min($limit, $total_bookings_limit);
|
467 |
+
else $new_availability[$ticket_id] = $limit;
|
468 |
+
}
|
469 |
+
|
470 |
+
return $new_availability;
|
471 |
+
}
|
472 |
+
|
473 |
// Total Booking Limit Reached
|
474 |
if($total_bookings_limit_original != -1 and $booked >= $total_bookings_limit_original)
|
475 |
{
|
app/libraries/envato.php
CHANGED
@@ -204,7 +204,7 @@ class MEC_envato extends MEC_base
|
|
204 |
$version = json_decode(json_encode($this->get_MEC_info('version')->version), true);
|
205 |
$data_url = 'https://webnus.net/modern-events-calendar/addons-api/addons-api.json';
|
206 |
|
207 |
-
if( function_exists('file_get_contents') )
|
208 |
{
|
209 |
$get_data = file_get_contents($data_url);
|
210 |
if ( $get_data !== false AND !empty($get_data) )
|
204 |
$version = json_decode(json_encode($this->get_MEC_info('version')->version), true);
|
205 |
$data_url = 'https://webnus.net/modern-events-calendar/addons-api/addons-api.json';
|
206 |
|
207 |
+
if( function_exists('file_get_contents') && ini_get('allow_url_fopen') )
|
208 |
{
|
209 |
$get_data = file_get_contents($data_url);
|
210 |
if ( $get_data !== false AND !empty($get_data) )
|
app/libraries/factory.php
CHANGED
@@ -346,7 +346,9 @@ class MEC_factory extends MEC_base
|
|
346 |
'second'=>__('second', 'modern-events-calendar-lite'),
|
347 |
'seconds'=>__('seconds', 'modern-events-calendar-lite'),
|
348 |
'elementor_edit_mode'=>$elementor_edit_mode,
|
349 |
-
'recapcha_key'=>$grecaptcha_key
|
|
|
|
|
350 |
));
|
351 |
|
352 |
// Include Google Recaptcha Javascript API
|
@@ -867,7 +869,7 @@ class MEC_factory extends MEC_base
|
|
867 |
foreach($calendars as $calendar)
|
868 |
{
|
869 |
// Calendar exists
|
870 |
-
if(post_exists($calendar['title'], '
|
871 |
|
872 |
$post = array('post_title'=>$calendar['title'], 'post_content'=>'MEC', 'post_type'=>'mec_calendars', 'post_status'=>'publish');
|
873 |
$post_id = wp_insert_post($post);
|
346 |
'second'=>__('second', 'modern-events-calendar-lite'),
|
347 |
'seconds'=>__('seconds', 'modern-events-calendar-lite'),
|
348 |
'elementor_edit_mode'=>$elementor_edit_mode,
|
349 |
+
'recapcha_key'=>$grecaptcha_key,
|
350 |
+
'ajax_url' => admin_url('admin-ajax.php'),
|
351 |
+
'fes_nonce' => wp_create_nonce('mec_fes_nonce'),
|
352 |
));
|
353 |
|
354 |
// Include Google Recaptcha Javascript API
|
869 |
foreach($calendars as $calendar)
|
870 |
{
|
871 |
// Calendar exists
|
872 |
+
if(post_exists($calendar['title'], 'modern-events-calendar-lite')) continue;
|
873 |
|
874 |
$post = array('post_title'=>$calendar['title'], 'post_content'=>'MEC', 'post_type'=>'mec_calendars', 'post_status'=>'publish');
|
875 |
$post_id = wp_insert_post($post);
|
app/libraries/main.php
CHANGED
@@ -872,9 +872,9 @@ class MEC_main extends MEC_base
|
|
872 |
<p>'.__('The time has come at last, and the new practical add-ons for MEC have been released. This is a revolution in the world of Event Calendars. We have provided you with a wide range of features only by having the 4 add-ons below:' , 'modern-events-calendar-lite').'</p>
|
873 |
<ol>
|
874 |
<li>'.__('<strong>WooCommerce Integration:</strong> You can now purchase ticket (as products) and Woo products at the same time.' , 'modern-events-calendar-lite').'</li>
|
875 |
-
<li>'.__('<strong>
|
876 |
-
<li>'.__('<strong>Elementor
|
877 |
-
<li>'.__('<strong>Elementor Shortcode Builder:</strong>
|
878 |
</ol>
|
879 |
<a href="https://webnus.net/modern-events-calendar/addons/?ref=17" target="_blank">'.esc_html('find out more', 'modern-events-calendar-lite').'</a>
|
880 |
</div>
|
@@ -1929,6 +1929,13 @@ class MEC_main extends MEC_base
|
|
1929 |
$book_id = $db->select("SELECT `post_id` FROM `#__postmeta` WHERE `meta_key`='mec_verification_key' AND `meta_value`='$key'", 'loadResult');
|
1930 |
|
1931 |
if(!$book_id) return false;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1932 |
|
1933 |
$book = $this->getBook();
|
1934 |
if($book->verify($book_id)) echo '<p class="mec-success">'.__('Your booking successfully verified.', 'modern-events-calendar-lite').'</p>';
|
@@ -1942,6 +1949,13 @@ class MEC_main extends MEC_base
|
|
1942 |
$book_id = $db->select("SELECT `post_id` FROM `#__postmeta` WHERE `meta_key`='mec_cancellation_key' AND `meta_value`='$key'", 'loadResult');
|
1943 |
|
1944 |
if(!$book_id) return false;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1945 |
|
1946 |
$book = $this->getBook();
|
1947 |
if($book->cancel($book_id)) echo '<p class="mec-success">'.__('Your booking successfully canceled.', 'modern-events-calendar-lite').'</p>';
|
@@ -2127,14 +2141,6 @@ class MEC_main extends MEC_base
|
|
2127 |
if(isset($_GET['method']) and sanitize_text_field($_GET['method']) == 'ical')
|
2128 |
{
|
2129 |
$id = sanitize_text_field($_GET['id']);
|
2130 |
-
$wpnonce = sanitize_text_field($_GET['_wpnonce']);
|
2131 |
-
|
2132 |
-
if(!wp_verify_nonce($wpnonce, 'mec_ical_export'))
|
2133 |
-
{
|
2134 |
-
wp_die(__('Security nonce is not valid.', 'modern-events-calendar-lite'), __('iCal export stopped!', 'modern-events-calendar-lite'), array('back_link'=>true));
|
2135 |
-
exit;
|
2136 |
-
}
|
2137 |
-
|
2138 |
$occurrence = isset($_GET['occurrence']) ? sanitize_text_field($_GET['occurrence']) : '';
|
2139 |
|
2140 |
$events = $this->ical_single($id, $occurrence);
|
@@ -2196,7 +2202,7 @@ class MEC_main extends MEC_base
|
|
2196 |
// Add Occurrence Date if passed
|
2197 |
if(trim($occurrence)) $url = $this->add_qs_var('occurrence', $occurrence, $url);
|
2198 |
|
2199 |
-
return
|
2200 |
}
|
2201 |
|
2202 |
public function ical_URL_email($event_id, $book_id , $occurrence = '')
|
@@ -3204,7 +3210,16 @@ class MEC_main extends MEC_base
|
|
3204 |
}
|
3205 |
else
|
3206 |
{
|
3207 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3208 |
}
|
3209 |
|
3210 |
// MEC payment gateways
|
@@ -5340,9 +5355,9 @@ class MEC_main extends MEC_base
|
|
5340 |
* @param string $user_email
|
5341 |
* @param array $ticket_info
|
5342 |
* @param integer $limit
|
5343 |
-
* @return array
|
5344 |
*/
|
5345 |
-
public function booking_permitted($user_email, $ticket_info = array(), $limit)
|
5346 |
{
|
5347 |
if(!is_array($ticket_info) or is_array($ticket_info) and count($ticket_info) < 2) return false;
|
5348 |
|
@@ -5393,7 +5408,7 @@ class MEC_main extends MEC_base
|
|
5393 |
|
5394 |
if(($bookings + $count) > $limit) $permission = false;
|
5395 |
|
5396 |
-
return $permission;
|
5397 |
}
|
5398 |
|
5399 |
/**
|
872 |
<p>'.__('The time has come at last, and the new practical add-ons for MEC have been released. This is a revolution in the world of Event Calendars. We have provided you with a wide range of features only by having the 4 add-ons below:' , 'modern-events-calendar-lite').'</p>
|
873 |
<ol>
|
874 |
<li>'.__('<strong>WooCommerce Integration:</strong> You can now purchase ticket (as products) and Woo products at the same time.' , 'modern-events-calendar-lite').'</li>
|
875 |
+
<li>'.__('<strong>Event API:</strong> display your events (shortcodes/single event) on other websites without MEC. Use JSON output features to make your Apps compatible with MEC.' , 'modern-events-calendar-lite').'</li>
|
876 |
+
<li>'.__('<strong>Elementor Single Builder:</strong> Edit single event page using Elementor. Manage the position of all elements in the Single page and in desktops, mobiles and tablets as well.' , 'modern-events-calendar-lite').'</li>
|
877 |
+
<li>'.__('<strong>Elementor Shortcode Builder:</strong> It enables you to create shortcodes in Elementor Live Editor.', 'modern-events-calendar-lite').'</li>
|
878 |
</ol>
|
879 |
<a href="https://webnus.net/modern-events-calendar/addons/?ref=17" target="_blank">'.esc_html('find out more', 'modern-events-calendar-lite').'</a>
|
880 |
</div>
|
1929 |
$book_id = $db->select("SELECT `post_id` FROM `#__postmeta` WHERE `meta_key`='mec_verification_key' AND `meta_value`='$key'", 'loadResult');
|
1930 |
|
1931 |
if(!$book_id) return false;
|
1932 |
+
|
1933 |
+
$status = get_post_meta($book_id, 'mec_verified', true);
|
1934 |
+
if($status == '1')
|
1935 |
+
{
|
1936 |
+
echo '<p class="mec-success">'.__('Your booking already verified!', 'modern-events-calendar-lite').'</p>';
|
1937 |
+
return false;
|
1938 |
+
}
|
1939 |
|
1940 |
$book = $this->getBook();
|
1941 |
if($book->verify($book_id)) echo '<p class="mec-success">'.__('Your booking successfully verified.', 'modern-events-calendar-lite').'</p>';
|
1949 |
$book_id = $db->select("SELECT `post_id` FROM `#__postmeta` WHERE `meta_key`='mec_cancellation_key' AND `meta_value`='$key'", 'loadResult');
|
1950 |
|
1951 |
if(!$book_id) return false;
|
1952 |
+
|
1953 |
+
$status = get_post_meta($book_id, 'mec_verified', true);
|
1954 |
+
if($status == '-1')
|
1955 |
+
{
|
1956 |
+
echo '<p class="mec-error">'.__('Your booking already canceled!', 'modern-events-calendar-lite').'</p>';
|
1957 |
+
return false;
|
1958 |
+
}
|
1959 |
|
1960 |
$book = $this->getBook();
|
1961 |
if($book->cancel($book_id)) echo '<p class="mec-success">'.__('Your booking successfully canceled.', 'modern-events-calendar-lite').'</p>';
|
2141 |
if(isset($_GET['method']) and sanitize_text_field($_GET['method']) == 'ical')
|
2142 |
{
|
2143 |
$id = sanitize_text_field($_GET['id']);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2144 |
$occurrence = isset($_GET['occurrence']) ? sanitize_text_field($_GET['occurrence']) : '';
|
2145 |
|
2146 |
$events = $this->ical_single($id, $occurrence);
|
2202 |
// Add Occurrence Date if passed
|
2203 |
if(trim($occurrence)) $url = $this->add_qs_var('occurrence', $occurrence, $url);
|
2204 |
|
2205 |
+
return $url;
|
2206 |
}
|
2207 |
|
2208 |
public function ical_URL_email($event_id, $book_id , $occurrence = '')
|
3210 |
}
|
3211 |
else
|
3212 |
{
|
3213 |
+
$time_format = 'Y-m-d';
|
3214 |
+
$render_date = !isset($next_date['start']) ? trim($next_date['start']['date']) : false;
|
3215 |
+
|
3216 |
+
if(!trim($event->data->meta['mec_repeat_status']))
|
3217 |
+
{
|
3218 |
+
$render_date .= ' ' . sprintf('%02d', $next_date['start']['hour']) . ':' . sprintf('%02d', $next_date['start']['minutes']) . trim($next_date['start']['ampm']);
|
3219 |
+
$time_format .= ' h:ia';
|
3220 |
+
}
|
3221 |
+
|
3222 |
+
if(!$render_date or ($render_date and $this->is_past($render_date, current_time($time_format)))) return false;
|
3223 |
}
|
3224 |
|
3225 |
// MEC payment gateways
|
5355 |
* @param string $user_email
|
5356 |
* @param array $ticket_info
|
5357 |
* @param integer $limit
|
5358 |
+
* @return array
|
5359 |
*/
|
5360 |
+
public function booking_permitted($user_email, $ticket_info = array(), $limit, $booking_count = false)
|
5361 |
{
|
5362 |
if(!is_array($ticket_info) or is_array($ticket_info) and count($ticket_info) < 2) return false;
|
5363 |
|
5408 |
|
5409 |
if(($bookings + $count) > $limit) $permission = false;
|
5410 |
|
5411 |
+
return array("booking_count" => $bookings, "permission" => $permission);
|
5412 |
}
|
5413 |
|
5414 |
/**
|
app/libraries/notifications.php
CHANGED
@@ -788,6 +788,9 @@ class MEC_notifications extends MEC_base
|
|
788 |
$ticket_ids = explode(',', $ticket_ids_str);
|
789 |
$ticket_ids = array_filter($ticket_ids);
|
790 |
|
|
|
|
|
|
|
791 |
foreach($ticket_ids as $get_ticket_id=>$value)
|
792 |
{
|
793 |
foreach($tickets as $ticket=>$ticket_info)
|
@@ -877,26 +880,28 @@ class MEC_notifications extends MEC_base
|
|
877 |
$attendees_full_info .= __('Name', 'modern-events-calendar-lite').': '.((isset($attendee['name']) and trim($attendee['name'])) ? $attendee['name'] : '---')."\r\n";
|
878 |
$attendees_full_info .= __('Email', 'modern-events-calendar-lite').': '.((isset($attendee['email']) and trim($attendee['email'])) ? $attendee['email'] : '---')."\r\n";
|
879 |
|
880 |
-
|
881 |
-
|
882 |
-
|
883 |
-
|
|
|
884 |
|
885 |
-
|
886 |
|
887 |
-
|
888 |
-
|
889 |
|
890 |
-
|
891 |
-
|
892 |
-
|
893 |
-
|
894 |
-
|
895 |
-
|
896 |
-
|
897 |
-
|
|
|
898 |
}
|
899 |
-
|
900 |
|
901 |
$attendees_full_info .= "\r\n";
|
902 |
}
|
788 |
$ticket_ids = explode(',', $ticket_ids_str);
|
789 |
$ticket_ids = array_filter($ticket_ids);
|
790 |
|
791 |
+
if(!is_array($ticket_ids)) $ticket_ids = array();
|
792 |
+
if(!is_array($tickets)) $tickets = array();
|
793 |
+
|
794 |
foreach($ticket_ids as $get_ticket_id=>$value)
|
795 |
{
|
796 |
foreach($tickets as $ticket=>$ticket_info)
|
880 |
$attendees_full_info .= __('Name', 'modern-events-calendar-lite').': '.((isset($attendee['name']) and trim($attendee['name'])) ? $attendee['name'] : '---')."\r\n";
|
881 |
$attendees_full_info .= __('Email', 'modern-events-calendar-lite').': '.((isset($attendee['email']) and trim($attendee['email'])) ? $attendee['email'] : '---')."\r\n";
|
882 |
|
883 |
+
if ( !empty( $reg_form ) ) :
|
884 |
+
foreach($reg_form as $field_id=>$value)
|
885 |
+
{
|
886 |
+
// Placeholder Keys
|
887 |
+
if(!is_numeric($field_id)) continue;
|
888 |
|
889 |
+
$type = $reg_fields[$field_id]['type'];
|
890 |
|
891 |
+
$label = isset($reg_fields[$field_id]) ? $reg_fields[$field_id]['label'] : '';
|
892 |
+
if(trim($label) == '') continue;
|
893 |
|
894 |
+
if($type == 'agreement')
|
895 |
+
{
|
896 |
+
$label = sprintf(__($label, 'modern-events-calendar-lite'), '<a href="'.get_the_permalink($reg_fields[$field_id]['page']).'">'.get_the_title($reg_fields[$field_id]['page']).'</a>');
|
897 |
+
$attendees_full_info .= $label.': '.($value == '1' ? __('Yes', 'modern-events-calendar-lite') : __('No', 'modern-events-calendar-lite'))."\r\n";
|
898 |
+
}
|
899 |
+
else
|
900 |
+
{
|
901 |
+
$attendees_full_info .= __($label, 'modern-events-calendar-lite').': '.(is_string($value) ? $value : (is_array($value) ? implode(', ', $value) : '---'))."\r\n";
|
902 |
+
}
|
903 |
}
|
904 |
+
endif;
|
905 |
|
906 |
$attendees_full_info .= "\r\n";
|
907 |
}
|
app/libraries/render.php
CHANGED
@@ -107,11 +107,26 @@ class MEC_render extends MEC_base
|
|
107 |
*/
|
108 |
public function vfull($atts = array())
|
109 |
{
|
110 |
-
$atts = apply_filters('
|
111 |
$skin = 'full_calendar';
|
112 |
|
113 |
return $this->skin($skin, $atts);
|
114 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
115 |
|
116 |
/**
|
117 |
* Do the weekly_view skin and returns its output
|
@@ -257,7 +272,7 @@ class MEC_render extends MEC_base
|
|
257 |
|
258 |
|
259 |
if($this->settings['default_skin_archive'] == 'monthly_view') $content = $this->vmonth(array_merge($atts, array('sk-options'=>array('monthly_view'=>array('style'=>$monthly_skin)))));
|
260 |
-
elseif($this->settings['default_skin_archive'] == 'full_calendar') $content = $this->
|
261 |
elseif($this->settings['default_skin_archive'] == 'yearly_view') $content = $this->vyear($atts);
|
262 |
elseif($this->settings['default_skin_archive'] == 'weekly_view') $content = $this->vweek($atts);
|
263 |
elseif($this->settings['default_skin_archive'] == 'daily_view') $content = $this->vday($atts);
|
107 |
*/
|
108 |
public function vfull($atts = array())
|
109 |
{
|
110 |
+
$atts = apply_filters('default', $atts);
|
111 |
$skin = 'full_calendar';
|
112 |
|
113 |
return $this->skin($skin, $atts);
|
114 |
}
|
115 |
+
|
116 |
+
/**
|
117 |
+
* Do the default_full_calendar skin and returns its output (archive page)
|
118 |
+
* @author Webnus <info@webnus.biz>
|
119 |
+
* @param array $atts
|
120 |
+
* @return string
|
121 |
+
*/
|
122 |
+
public function vdefaultfull($atts = array())
|
123 |
+
{
|
124 |
+
$atts = apply_filters('mec_vdefaultfull_atts', $atts);
|
125 |
+
$skin = 'default_full_calendar';
|
126 |
+
|
127 |
+
return $this->skin($skin, $atts);
|
128 |
+
}
|
129 |
+
|
130 |
|
131 |
/**
|
132 |
* Do the weekly_view skin and returns its output
|
272 |
|
273 |
|
274 |
if($this->settings['default_skin_archive'] == 'monthly_view') $content = $this->vmonth(array_merge($atts, array('sk-options'=>array('monthly_view'=>array('style'=>$monthly_skin)))));
|
275 |
+
elseif($this->settings['default_skin_archive'] == 'full_calendar') $content = $this->vdefaultfull($atts);
|
276 |
elseif($this->settings['default_skin_archive'] == 'yearly_view') $content = $this->vyear($atts);
|
277 |
elseif($this->settings['default_skin_archive'] == 'weekly_view') $content = $this->vweek($atts);
|
278 |
elseif($this->settings['default_skin_archive'] == 'daily_view') $content = $this->vday($atts);
|
app/modules/booking/default.php
CHANGED
@@ -270,6 +270,7 @@ function mec_book_form_submit'.$uniqueid.'()
|
|
270 |
|
271 |
// Add loading Class to the button
|
272 |
jQuery("#mec_book_form'.$uniqueid.' button[type=submit]").addClass("loading");
|
|
|
273 |
jQuery("#mec_booking_message'.$uniqueid.'").removeClass("mec-success mec-error").hide();
|
274 |
|
275 |
var fileToUpload = false;
|
@@ -287,6 +288,7 @@ function mec_book_form_submit'.$uniqueid.'()
|
|
287 |
{
|
288 |
// Remove the loading Class to the button
|
289 |
jQuery("#mec_book_form'.$uniqueid.' button[type=submit]").removeClass("loading");
|
|
|
290 |
|
291 |
if(data.success)
|
292 |
{
|
270 |
|
271 |
// Add loading Class to the button
|
272 |
jQuery("#mec_book_form'.$uniqueid.' button[type=submit]").addClass("loading");
|
273 |
+
jQuery("#mec_book_form'.$uniqueid.' button[type=submit]").attr("disabled" , "true");
|
274 |
jQuery("#mec_booking_message'.$uniqueid.'").removeClass("mec-success mec-error").hide();
|
275 |
|
276 |
var fileToUpload = false;
|
288 |
{
|
289 |
// Remove the loading Class to the button
|
290 |
jQuery("#mec_book_form'.$uniqueid.' button[type=submit]").removeClass("loading");
|
291 |
+
jQuery("#mec_book_form'.$uniqueid.' button[type=submit]").removeAttr("disabled");
|
292 |
|
293 |
if(data.success)
|
294 |
{
|
app/skins/agenda/tpl.php
CHANGED
@@ -47,6 +47,7 @@ else $this->factory->params('footer', $javascript);
|
|
47 |
|
48 |
$styling = $this->main->get_styling();
|
49 |
$event_colorskin = (isset($styling['mec_colorskin']) || isset($styling['color'])) ? 'colorskin-custom' : '';
|
|
|
50 |
do_action('mec_agenda_skin_head');
|
51 |
?>
|
52 |
<div class="mec-wrap mec-events-agenda-container <?php echo $this->html_class; ?>" id="mec_skin_<?php echo $this->id; ?>">
|
47 |
|
48 |
$styling = $this->main->get_styling();
|
49 |
$event_colorskin = (isset($styling['mec_colorskin']) || isset($styling['color'])) ? 'colorskin-custom' : '';
|
50 |
+
do_action('mec_start_skin' , $this->id);
|
51 |
do_action('mec_agenda_skin_head');
|
52 |
?>
|
53 |
<div class="mec-wrap mec-events-agenda-container <?php echo $this->html_class; ?>" id="mec_skin_<?php echo $this->id; ?>">
|
app/skins/available_spot/tpl.php
CHANGED
@@ -112,6 +112,7 @@ if ( !empty($event->data->speakers))
|
|
112 |
}
|
113 |
$speakers = json_encode($speakers);
|
114 |
}
|
|
|
115 |
do_action('mec_available_spot_skin_head');
|
116 |
?>
|
117 |
<div class="mec-wrap <?php echo $event_colorskin; ?> <?php echo $this->html_class; ?>" id="mec_skin_<?php echo $this->id; ?>">
|
112 |
}
|
113 |
$speakers = json_encode($speakers);
|
114 |
}
|
115 |
+
do_action('mec_start_skin' , $this->id);
|
116 |
do_action('mec_available_spot_skin_head');
|
117 |
?>
|
118 |
<div class="mec-wrap <?php echo $event_colorskin; ?> <?php echo $this->html_class; ?>" id="mec_skin_<?php echo $this->id; ?>">
|
app/skins/carousel/render.php
CHANGED
@@ -135,7 +135,9 @@ $settings = $this->main->get_settings();
|
|
135 |
<?php else: ?>
|
136 |
<span class="mec-event-date-info"><?php echo $this->main->date_label($event->date['start'], $event->date['end'], $this->date_format_type2_1); ?></span>
|
137 |
<?php endif; ?>
|
|
|
138 |
<h4 class="mec-event-carousel-title"><a class="mec-color-hover" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a></h4>
|
|
|
139 |
<p><?php echo (isset($location['name']) ? $location['name'] : ''); echo (isset($location['address']) ? '<br>'.$location['address'] : ''); ?></p>
|
140 |
</div>
|
141 |
<div class="mec-event-footer-carousel-type2">
|
135 |
<?php else: ?>
|
136 |
<span class="mec-event-date-info"><?php echo $this->main->date_label($event->date['start'], $event->date['end'], $this->date_format_type2_1); ?></span>
|
137 |
<?php endif; ?>
|
138 |
+
<?php do_action('mec_carousel_type2_before_title' , $event); ?>
|
139 |
<h4 class="mec-event-carousel-title"><a class="mec-color-hover" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a></h4>
|
140 |
+
<?php do_action('mec_carousel_type2_after_title' , $event); ?>
|
141 |
<p><?php echo (isset($location['name']) ? $location['name'] : ''); echo (isset($location['address']) ? '<br>'.$location['address'] : ''); ?></p>
|
142 |
</div>
|
143 |
<div class="mec-event-footer-carousel-type2">
|
app/skins/carousel/tpl.php
CHANGED
@@ -32,6 +32,7 @@ jQuery(document).ready(function()
|
|
32 |
// Include javascript code into the page
|
33 |
if($this->main->is_ajax()) echo $javascript;
|
34 |
else $this->factory->params('footer', $javascript);
|
|
|
35 |
do_action('mec_carousel_skin_head');
|
36 |
?>
|
37 |
<div class="mec-wrap mec-skin-carousel-container<?php echo $this->html_class; ?>" id="mec_skin_<?php echo $this->id; ?>">
|
32 |
// Include javascript code into the page
|
33 |
if($this->main->is_ajax()) echo $javascript;
|
34 |
else $this->factory->params('footer', $javascript);
|
35 |
+
do_action('mec_start_skin' , $this->id);
|
36 |
do_action('mec_carousel_skin_head');
|
37 |
?>
|
38 |
<div class="mec-wrap mec-skin-carousel-container<?php echo $this->html_class; ?>" id="mec_skin_<?php echo $this->id; ?>">
|
app/skins/countdown/tpl.php
CHANGED
@@ -100,7 +100,7 @@ jQuery(document).ready(function()
|
|
100 |
// Include javascript code into the page
|
101 |
if($this->main->is_ajax()) echo $javascript;
|
102 |
else $this->factory->params('footer', $javascript);
|
103 |
-
|
104 |
do_action('mec_countdown_skin_head');
|
105 |
?>
|
106 |
<style>
|
100 |
// Include javascript code into the page
|
101 |
if($this->main->is_ajax()) echo $javascript;
|
102 |
else $this->factory->params('footer', $javascript);
|
103 |
+
do_action('mec_start_skin' , $this->id);
|
104 |
do_action('mec_countdown_skin_head');
|
105 |
?>
|
106 |
<style>
|
app/skins/cover/tpl.php
CHANGED
@@ -47,6 +47,7 @@ if ( !empty($event->data->speakers))
|
|
47 |
}
|
48 |
$speakers = json_encode($speakers);
|
49 |
}
|
|
|
50 |
do_action('mec_cover_skin_head');
|
51 |
?>
|
52 |
<div class="mec-wrap <?php echo $event_colorskin . ' ' . $this->html_class; ?>">
|
47 |
}
|
48 |
$speakers = json_encode($speakers);
|
49 |
}
|
50 |
+
do_action('mec_start_skin' , $this->id);
|
51 |
do_action('mec_cover_skin_head');
|
52 |
?>
|
53 |
<div class="mec-wrap <?php echo $event_colorskin . ' ' . $this->html_class; ?>">
|
app/skins/custom/tpl.php
CHANGED
@@ -41,6 +41,7 @@ jQuery(document).ready(function()
|
|
41 |
// Include javascript code into the page
|
42 |
if($this->main->is_ajax()) echo $javascript;
|
43 |
else $this->factory->params('footer', $javascript);
|
|
|
44 |
do_action('mec_custom_skin_head');
|
45 |
?>
|
46 |
<div class="mec-wrap mec-skin-custom-container <?php echo $this->html_class; ?>" id="mec_skin_<?php echo $this->id; ?>">
|
41 |
// Include javascript code into the page
|
42 |
if($this->main->is_ajax()) echo $javascript;
|
43 |
else $this->factory->params('footer', $javascript);
|
44 |
+
do_action('mec_start_skin' , $this->id);
|
45 |
do_action('mec_custom_skin_head');
|
46 |
?>
|
47 |
<div class="mec-wrap mec-skin-custom-container <?php echo $this->html_class; ?>" id="mec_skin_<?php echo $this->id; ?>">
|
app/skins/daily_view/tpl.php
CHANGED
@@ -97,6 +97,7 @@ else $this->factory->params('footer', $javascript);
|
|
97 |
|
98 |
$styling = $this->main->get_styling();
|
99 |
$event_colorskin = (isset($styling['mec_colorskin']) || isset($styling['color'])) ? 'colorskin-custom' : '';
|
|
|
100 |
do_action('mec_daily_skin_head');
|
101 |
?>
|
102 |
<div id="mec_skin_<?php echo $this->id; ?>" class="mec-wrap <?php echo $event_colorskin . ' ' . $this->html_class; ?>">
|
97 |
|
98 |
$styling = $this->main->get_styling();
|
99 |
$event_colorskin = (isset($styling['mec_colorskin']) || isset($styling['color'])) ? 'colorskin-custom' : '';
|
100 |
+
do_action('mec_start_skin' , $this->id);
|
101 |
do_action('mec_daily_skin_head');
|
102 |
?>
|
103 |
<div id="mec_skin_<?php echo $this->id; ?>" class="mec-wrap <?php echo $event_colorskin . ' ' . $this->html_class; ?>">
|
app/skins/default_full_calendar.php
ADDED
@@ -0,0 +1,250 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/** no direct access **/
|
3 |
+
defined('MECEXEC') or die();
|
4 |
+
|
5 |
+
/**
|
6 |
+
* Webnus MEC Full Calendar class.
|
7 |
+
* @author Webnus <info@webnus.biz>
|
8 |
+
*/
|
9 |
+
class MEC_skin_default_full_calendar extends MEC_skins
|
10 |
+
{
|
11 |
+
/**
|
12 |
+
* @var string
|
13 |
+
*/
|
14 |
+
public $skin = 'default_full_calendar';
|
15 |
+
|
16 |
+
public $default_view;
|
17 |
+
public $monthly_style;
|
18 |
+
public $yearly;
|
19 |
+
public $monthly;
|
20 |
+
public $weekly;
|
21 |
+
public $daily;
|
22 |
+
public $list;
|
23 |
+
|
24 |
+
/**
|
25 |
+
* Constructor method
|
26 |
+
* @author Webnus <info@webnus.biz>
|
27 |
+
*/
|
28 |
+
public function __construct()
|
29 |
+
{
|
30 |
+
parent::__construct();
|
31 |
+
}
|
32 |
+
|
33 |
+
/**
|
34 |
+
* Registers skin actions into WordPress
|
35 |
+
* @author Webnus <info@webnus.biz>
|
36 |
+
*/
|
37 |
+
public function actions()
|
38 |
+
{
|
39 |
+
$this->factory->action('wp_ajax_mec_full_calendar_switch_skin', array($this, 'switch_skin'));
|
40 |
+
$this->factory->action('wp_ajax_nopriv_mec_full_calendar_switch_skin', array($this, 'switch_skin'));
|
41 |
+
}
|
42 |
+
|
43 |
+
/**
|
44 |
+
* Initialize the skin
|
45 |
+
* @author Webnus <info@webnus.biz>
|
46 |
+
* @param array $atts
|
47 |
+
*/
|
48 |
+
public function initialize($atts)
|
49 |
+
{
|
50 |
+
$this->atts = $atts;
|
51 |
+
|
52 |
+
// Skin Options
|
53 |
+
$this->skin_options = (isset($this->atts['sk-options']) and isset($this->atts['sk-options'][$this->skin])) ? $this->atts['sk-options'][$this->skin] : array();
|
54 |
+
|
55 |
+
// Search Form Options
|
56 |
+
$this->sf_options = (isset($this->atts['sf-options']) and isset($this->atts['sf-options'][$this->skin])) ? $this->atts['sf-options'][$this->skin] : array();
|
57 |
+
|
58 |
+
// Search Form Status
|
59 |
+
$this->sf_status = isset($this->atts['sf_status']) ? $this->atts['sf_status'] : true;
|
60 |
+
|
61 |
+
// Show Only Expired Events
|
62 |
+
$this->show_only_expired_events = (isset($this->atts['show_only_past_events']) and trim($this->atts['show_only_past_events'])) ? '1' : '0';
|
63 |
+
|
64 |
+
// Start Date
|
65 |
+
$this->start_date = $this->get_start_date();
|
66 |
+
|
67 |
+
// Generate an ID for the skin
|
68 |
+
$this->id = isset($this->atts['id']) ? $this->atts['id'] : mt_rand(100, 999);
|
69 |
+
|
70 |
+
// SED Method
|
71 |
+
$this->sed_method = isset($this->skin_options['sed_method']) ? $this->skin_options['sed_method'] : '0';
|
72 |
+
|
73 |
+
// Image popup
|
74 |
+
$this->image_popup = isset($this->skin_options['image_popup']) ? $this->skin_options['image_popup'] : '0';
|
75 |
+
|
76 |
+
// Default View of Full Calendar
|
77 |
+
$this->default_view = isset($this->skin_options['default_view']) ? $this->skin_options['default_view'] : 'list';
|
78 |
+
if(isset($this->skin_options[$this->default_view]) and !$this->skin_options[$this->default_view]) $this->default_view = 'list';
|
79 |
+
|
80 |
+
// Default style for Monthly View
|
81 |
+
$this->monthly_style = isset($this->skin_options['monthly_style']) ? $this->skin_options['monthly_style'] : 'clean';
|
82 |
+
if(isset($this->skin_options[$this->monthly_style]) and !$this->skin_options[$this->monthly_style]) $this->monthly_style = 'clean';
|
83 |
+
|
84 |
+
|
85 |
+
$this->yearly = isset($this->skin_options['yearly']) ? $this->skin_options['yearly'] : true;
|
86 |
+
$this->monthly = isset($this->skin_options['monthly']) ? $this->skin_options['monthly'] : true;
|
87 |
+
$this->weekly = isset($this->skin_options['weekly']) ? $this->skin_options['weekly'] : true;
|
88 |
+
$this->daily = isset($this->skin_options['daily']) ? $this->skin_options['daily'] : true;
|
89 |
+
$this->list = isset($this->skin_options['list']) ? $this->skin_options['list'] : true;
|
90 |
+
|
91 |
+
// If all of skins are disabled
|
92 |
+
if(!$this->monthly and !$this->weekly and !$this->daily and !$this->list and !$this->yearly)
|
93 |
+
{
|
94 |
+
$this->monthly = true;
|
95 |
+
$this->list = true;
|
96 |
+
}
|
97 |
+
|
98 |
+
// Set the ID
|
99 |
+
if(!isset($this->atts['id'])) $this->atts['id'] = $this->id;
|
100 |
+
}
|
101 |
+
|
102 |
+
public function get_start_date()
|
103 |
+
{
|
104 |
+
// Default date
|
105 |
+
$date = current_time('Y-m-d');
|
106 |
+
|
107 |
+
if(isset($this->skin_options['start_date_type']) and $this->skin_options['start_date_type'] == 'today') $date = current_time('Y-m-d');
|
108 |
+
elseif(isset($this->skin_options['start_date_type']) and $this->skin_options['start_date_type'] == 'tomorrow') $date = date('Y-m-d', strtotime('Tomorrow'));
|
109 |
+
elseif(isset($this->skin_options['start_date_type']) and $this->skin_options['start_date_type'] == 'start_current_month') $date = date('Y-m-d', strtotime('first day of this month'));
|
110 |
+
elseif(isset($this->skin_options['start_date_type']) and $this->skin_options['start_date_type'] == 'start_next_month') $date = date('Y-m-d', strtotime('first day of next month'));
|
111 |
+
elseif(isset($this->skin_options['start_date_type']) and $this->skin_options['start_date_type'] == 'date') $date = date('Y-m-d', strtotime($this->skin_options['start_date']));
|
112 |
+
|
113 |
+
// Hide past events
|
114 |
+
if(isset($this->atts['show_past_events']) and !trim($this->atts['show_past_events']))
|
115 |
+
{
|
116 |
+
$today = current_time('Y-m-d');
|
117 |
+
if(strtotime($date) < strtotime($today)) $date = $today;
|
118 |
+
}
|
119 |
+
|
120 |
+
// Show only expired events
|
121 |
+
if(isset($this->show_expired_events) and $this->show_expired_events)
|
122 |
+
{
|
123 |
+
$yesterday = date('Y-m-d', strtotime('Yesterday'));
|
124 |
+
if(strtotime($date) > strtotime($yesterday)) $date = $yesterday;
|
125 |
+
}
|
126 |
+
|
127 |
+
return $date;
|
128 |
+
}
|
129 |
+
|
130 |
+
public function search()
|
131 |
+
{
|
132 |
+
}
|
133 |
+
|
134 |
+
public function load_skin($skin = 'list')
|
135 |
+
{
|
136 |
+
switch($skin)
|
137 |
+
{
|
138 |
+
case 'yearly':
|
139 |
+
|
140 |
+
$atts = $this->atts;
|
141 |
+
|
142 |
+
$start_date_type = isset($this->skin_options['start_date_type']) ? $this->skin_options['start_date_type'] : 'start_current_year';
|
143 |
+
|
144 |
+
if($start_date_type == 'start_current_month') $start_date_type = 'start_current_year';
|
145 |
+
elseif($start_date_type == 'start_next_month') $start_date_type = 'start_next_year';
|
146 |
+
else $start_date_type = 'date';
|
147 |
+
|
148 |
+
$atts['sk-options']['yearly_view']['start_date_type'] = $start_date_type;
|
149 |
+
$atts['sk-options']['yearly_view']['start_date'] = isset($this->skin_options['start_date']) ? $this->skin_options['start_date'] : current_time('Y-01-01');
|
150 |
+
$atts['sk-options']['yearly_view']['style'] = 'modern';
|
151 |
+
$atts['sk-options']['yearly_view']['sed_method'] = isset($this->skin_options['sed_method']) ? $this->skin_options['sed_method'] : '0';
|
152 |
+
$atts['sk-options']['yearly_view']['image_popup'] = isset($this->skin_options['image_popup']) ? $this->skin_options['image_popup'] : '0';
|
153 |
+
$atts['sk-options']['yearly_view']['limit'] = isset($this->skin_options['limit']) ? $this->skin_options['limit'] : 12;
|
154 |
+
$atts['sf_status'] = false;
|
155 |
+
|
156 |
+
$output = $this->render->vyear($atts);
|
157 |
+
|
158 |
+
break;
|
159 |
+
|
160 |
+
case 'monthly':
|
161 |
+
|
162 |
+
$atts = $this->atts;
|
163 |
+
$atts['sk-options']['monthly_view']['start_date_type'] = isset($this->skin_options['start_date_type']) ? $this->skin_options['start_date_type'] : '';
|
164 |
+
$atts['sk-options']['monthly_view']['start_date'] = isset($this->skin_options['start_date']) ? $this->skin_options['start_date'] : '';
|
165 |
+
$atts['sk-options']['monthly_view']['style'] = $this->monthly_style;
|
166 |
+
$atts['sk-options']['monthly_view']['sed_method'] = isset($this->skin_options['sed_method']) ? $this->skin_options['sed_method'] : '0';
|
167 |
+
$atts['sk-options']['monthly_view']['image_popup'] = isset($this->skin_options['image_popup']) ? $this->skin_options['image_popup'] : '0';
|
168 |
+
$atts['sk-options']['monthly_view']['limit'] = isset($this->skin_options['limit']) ? $this->skin_options['limit'] : 12;
|
169 |
+
$atts['sf_status'] = false;
|
170 |
+
|
171 |
+
$output = $this->render->vmonth($atts);
|
172 |
+
|
173 |
+
break;
|
174 |
+
|
175 |
+
case 'weekly':
|
176 |
+
|
177 |
+
$atts = $this->atts;
|
178 |
+
$atts['sk-options']['weekly_view']['start_date_type'] = isset($this->skin_options['start_date_type']) ? $this->skin_options['start_date_type'] : '';
|
179 |
+
$atts['sk-options']['weekly_view']['start_date'] = isset($this->skin_options['start_date']) ? $this->skin_options['start_date'] : '';
|
180 |
+
$atts['sk-options']['weekly_view']['sed_method'] = isset($this->skin_options['sed_method']) ? $this->skin_options['sed_method'] : '0';
|
181 |
+
$atts['sk-options']['weekly_view']['image_popup'] = isset($this->skin_options['image_popup']) ? $this->skin_options['image_popup'] : '0';
|
182 |
+
$atts['sk-options']['weekly_view']['limit'] = isset($this->skin_options['limit']) ? $this->skin_options['limit'] : 12;
|
183 |
+
$atts['sf_status'] = false;
|
184 |
+
|
185 |
+
$output = $this->render->vweek($atts);
|
186 |
+
|
187 |
+
break;
|
188 |
+
|
189 |
+
case 'daily':
|
190 |
+
|
191 |
+
$atts = $this->atts;
|
192 |
+
$atts['sk-options']['daily_view']['start_date_type'] = isset($this->skin_options['start_date_type']) ? $this->skin_options['start_date_type'] : '';
|
193 |
+
$atts['sk-options']['daily_view']['start_date'] = isset($this->skin_options['start_date']) ? $this->skin_options['start_date'] : '';
|
194 |
+
$atts['sk-options']['daily_view']['sed_method'] = isset($this->skin_options['sed_method']) ? $this->skin_options['sed_method'] : '0';
|
195 |
+
$atts['sk-options']['daily_view']['image_popup'] = isset($this->skin_options['image_popup']) ? $this->skin_options['image_popup'] : '0';
|
196 |
+
$atts['sk-options']['daily_view']['limit'] = isset($this->skin_options['limit']) ? $this->skin_options['limit'] : 12;
|
197 |
+
$atts['sf_status'] = false;
|
198 |
+
|
199 |
+
$output = $this->render->vday($atts);
|
200 |
+
|
201 |
+
break;
|
202 |
+
|
203 |
+
case 'list':
|
204 |
+
default:
|
205 |
+
|
206 |
+
$atts = $this->atts;
|
207 |
+
$atts['sk-options']['list']['start_date_type'] = isset($this->skin_options['start_date_type']) ? $this->skin_options['start_date_type'] : '';
|
208 |
+
$atts['sk-options']['list']['start_date'] = isset($this->skin_options['start_date']) ? $this->skin_options['start_date'] : '';
|
209 |
+
$atts['sk-options']['list']['style'] = 'standard';
|
210 |
+
$atts['sk-options']['list']['sed_method'] = isset($this->skin_options['sed_method']) ? $this->skin_options['sed_method'] : '0';
|
211 |
+
$atts['sk-options']['list']['image_popup'] = isset($this->skin_options['image_popup']) ? $this->skin_options['image_popup'] : '0';
|
212 |
+
$atts['sk-options']['list']['display_price'] = isset($this->skin_options['display_price']) ? $this->skin_options['display_price'] : 0;
|
213 |
+
$atts['sk-options']['list']['limit'] = isset($this->skin_options['limit']) ? $this->skin_options['limit'] : 12;
|
214 |
+
$atts['sf_status'] = false;
|
215 |
+
|
216 |
+
$output = $this->render->vlist($atts);
|
217 |
+
|
218 |
+
break;
|
219 |
+
}
|
220 |
+
|
221 |
+
return $output;
|
222 |
+
}
|
223 |
+
|
224 |
+
/**
|
225 |
+
* Load skin for AJAX requert
|
226 |
+
* @author Webnus <info@webnus.biz>
|
227 |
+
* @return void
|
228 |
+
*/
|
229 |
+
public function switch_skin()
|
230 |
+
{
|
231 |
+
$this->sf = $this->request->getVar('sf', array());
|
232 |
+
$apply_sf_date = $this->request->getVar('apply_sf_date', 1);
|
233 |
+
$atts = $this->sf_apply($this->request->getVar('atts', array()), $this->sf, $apply_sf_date);
|
234 |
+
|
235 |
+
$skin = $this->request->getVar('skin', 'list');
|
236 |
+
|
237 |
+
// Single Event Display
|
238 |
+
$atts['sed_method'] = $this->request->getVar('sed', 0);
|
239 |
+
$atts['image_popup'] = $this->request->getVar('image', 0);
|
240 |
+
|
241 |
+
// Initialize the skin
|
242 |
+
$this->initialize($atts);
|
243 |
+
|
244 |
+
// Return the output
|
245 |
+
$output = $this->load_skin($skin);
|
246 |
+
|
247 |
+
echo json_encode($output);
|
248 |
+
exit;
|
249 |
+
}
|
250 |
+
}
|
app/skins/default_full_calendar/index.html
ADDED
File without changes
|
app/skins/default_full_calendar/tpl.php
ADDED
@@ -0,0 +1,79 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/** no direct access **/
|
3 |
+
defined('MECEXEC') or die();
|
4 |
+
|
5 |
+
// Inclue OWL Assets
|
6 |
+
$this->main->load_owl_assets();
|
7 |
+
|
8 |
+
// Generating javascript code tpl
|
9 |
+
$javascript = '<script type="text/javascript">
|
10 |
+
jQuery(document).ready(function()
|
11 |
+
{
|
12 |
+
jQuery("#mec_skin_'.$this->id.'").mecFullCalendar(
|
13 |
+
{
|
14 |
+
id: "'.$this->id.'",
|
15 |
+
atts: "'.http_build_query(array('atts'=>$this->atts), '', '&').'",
|
16 |
+
ajax_url: "'.admin_url('admin-ajax.php', NULL).'",
|
17 |
+
sed_method: "'.$this->sed_method.'",
|
18 |
+
image_popup: "'.$this->image_popup.'",
|
19 |
+
sf:
|
20 |
+
{
|
21 |
+
container: "'.($this->sf_status ? '#mec_search_form_'.$this->id : '').'",
|
22 |
+
},
|
23 |
+
skin: "'.$this->default_view.'",
|
24 |
+
});
|
25 |
+
});
|
26 |
+
</script>';
|
27 |
+
|
28 |
+
// Include javascript code into the page
|
29 |
+
if($this->main->is_ajax()) echo $javascript;
|
30 |
+
else $this->factory->params('footer', $javascript);
|
31 |
+
|
32 |
+
$styling = $this->main->get_styling();
|
33 |
+
$event_colorskin = (isset($styling['mec_colorskin'] ) || isset($styling['color'])) ? 'colorskin-custom' : '';
|
34 |
+
do_action('mec_start_skin' , $this->id);
|
35 |
+
do_action('mec_full_skin_head');
|
36 |
+
?>
|
37 |
+
<div id="mec_skin_<?php echo $this->id; ?>" class="mec-wrap <?php echo $event_colorskin; ?> mec-full-calendar-wrap">
|
38 |
+
|
39 |
+
<div class="mec-search-form mec-totalcal-box">
|
40 |
+
<?php
|
41 |
+
if($this->sf_status): ?>
|
42 |
+
<?php
|
43 |
+
$sf_month_filter = array("type"=> "dropdown");
|
44 |
+
$sf_text_search = array( "type"=> "text_input" );
|
45 |
+
|
46 |
+
$sf_month_filter_status = true;
|
47 |
+
$sf_text_search_status = true;
|
48 |
+
|
49 |
+
$sf_columns = 8;
|
50 |
+
?>
|
51 |
+
<div id="mec_search_form_<?php echo $this->id; ?>">
|
52 |
+
<?php if($sf_month_filter_status): $sf_columns -= 3; ?>
|
53 |
+
<div class="col-md-3">
|
54 |
+
<?php echo $this->sf_search_field('month_filter', $sf_month_filter); ?>
|
55 |
+
</div>
|
56 |
+
<?php endif; ?>
|
57 |
+
<div class="col-md-<?php echo $sf_columns; ?>">
|
58 |
+
<?php if($sf_text_search_status): ?>
|
59 |
+
<?php echo $this->sf_search_field('text_search', $sf_text_search); ?>
|
60 |
+
<?php endif; ?>
|
61 |
+
</div>
|
62 |
+
<?php endif; ?>
|
63 |
+
</div>
|
64 |
+
<div class="col-md-4">
|
65 |
+
<div class="mec-totalcal-view">
|
66 |
+
<?php if($this->yearly): ?><span class="mec-totalcal-yearlyview<?php if($this->default_view == 'yearly') echo ' mec-totalcalview-selected'; ?>" data-skin="yearly"><?php _e('Yearly', 'modern-events-calendar-lite'); ?></span><?php endif; ?>
|
67 |
+
<?php if($this->monthly): ?><span class="mec-totalcal-monthlyview<?php if($this->default_view == 'monthly') echo ' mec-totalcalview-selected'; ?>" data-skin="monthly"><?php _e('Monthly', 'modern-events-calendar-lite'); ?></span><?php endif; ?>
|
68 |
+
<?php if($this->weekly): ?><span class="mec-totalcal-weeklyview<?php if($this->default_view == 'weekly') echo ' mec-totalcalview-selected'; ?>" data-skin="weekly"><?php _e('Weekly', 'modern-events-calendar-lite'); ?></span><?php endif; ?>
|
69 |
+
<?php if($this->daily): ?><span class="mec-totalcal-dailyview<?php if($this->default_view == 'daily') echo ' mec-totalcalview-selected'; ?>" data-skin="daily"><?php _e('Daily', 'modern-events-calendar-lite'); ?></span><?php endif; ?>
|
70 |
+
<?php if($this->list): ?><span class="mec-totalcal-listview<?php if($this->default_view == 'list') echo ' mec-totalcalview-selected'; ?>" data-skin="list"><?php _e('List', 'modern-events-calendar-lite'); ?></span><?php endif; ?>
|
71 |
+
</div>
|
72 |
+
</div>
|
73 |
+
</div>
|
74 |
+
|
75 |
+
<div id="mec_full_calendar_container_<?php echo $this->id; ?>" class="mec-full-calendar-skin-container">
|
76 |
+
<?php echo $this->load_skin($this->default_view); ?>
|
77 |
+
</div>
|
78 |
+
|
79 |
+
</div>
|
app/skins/full_calendar/tpl.php
CHANGED
@@ -31,6 +31,7 @@ else $this->factory->params('footer', $javascript);
|
|
31 |
|
32 |
$styling = $this->main->get_styling();
|
33 |
$event_colorskin = (isset($styling['mec_colorskin'] ) || isset($styling['color'])) ? 'colorskin-custom' : '';
|
|
|
34 |
do_action('mec_full_skin_head');
|
35 |
?>
|
36 |
<div id="mec_skin_<?php echo $this->id; ?>" class="mec-wrap <?php echo $event_colorskin; ?> mec-full-calendar-wrap">
|
31 |
|
32 |
$styling = $this->main->get_styling();
|
33 |
$event_colorskin = (isset($styling['mec_colorskin'] ) || isset($styling['color'])) ? 'colorskin-custom' : '';
|
34 |
+
do_action('mec_start_skin' , $this->id);
|
35 |
do_action('mec_full_skin_head');
|
36 |
?>
|
37 |
<div id="mec_skin_<?php echo $this->id; ?>" class="mec-wrap <?php echo $event_colorskin; ?> mec-full-calendar-wrap">
|
app/skins/grid/tpl.php
CHANGED
@@ -41,6 +41,7 @@ jQuery(document).ready(function()
|
|
41 |
// Include javascript code into the page
|
42 |
if($this->main->is_ajax()) echo $javascript;
|
43 |
else $this->factory->params('footer', $javascript);
|
|
|
44 |
do_action('mec_grid_skin_head');
|
45 |
?>
|
46 |
<div class="mec-wrap mec-skin-grid-container <?php echo $this->html_class; ?>" id="mec_skin_<?php echo $this->id; ?>">
|
41 |
// Include javascript code into the page
|
42 |
if($this->main->is_ajax()) echo $javascript;
|
43 |
else $this->factory->params('footer', $javascript);
|
44 |
+
do_action('mec_start_skin' , $this->id);
|
45 |
do_action('mec_grid_skin_head');
|
46 |
?>
|
47 |
<div class="mec-wrap mec-skin-grid-container <?php echo $this->html_class; ?>" id="mec_skin_<?php echo $this->id; ?>">
|
app/skins/list/render.php
CHANGED
@@ -99,6 +99,7 @@ $event_colorskin = (isset($styling['mec_colorskin']) || isset($styling['color'])
|
|
99 |
</div>
|
100 |
</div>
|
101 |
<div class="col-md-6 col-sm-6">
|
|
|
102 |
<h4 class="mec-event-title"><a class="mec-color-hover" 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 $event->data->title; ?></a><?php echo $event_color; ?><?php if (!empty($label_style)) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?></h4>
|
103 |
<div class="mec-event-detail"><?php echo (isset($location['name']) ? $location['name'] : '') . (isset($location['address']) ? ' | '.$location['address'] : ''); ?></div>
|
104 |
<ul class="mec-event-sharing"><?php echo $this->main->module('links.list', array('event'=>$event)); ?></ul>
|
99 |
</div>
|
100 |
</div>
|
101 |
<div class="col-md-6 col-sm-6">
|
102 |
+
<?php do_action('list_std_title_hook', $event); ?>
|
103 |
<h4 class="mec-event-title"><a class="mec-color-hover" 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 $event->data->title; ?></a><?php echo $event_color; ?><?php if (!empty($label_style)) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?></h4>
|
104 |
<div class="mec-event-detail"><?php echo (isset($location['name']) ? $location['name'] : '') . (isset($location['address']) ? ' | '.$location['address'] : ''); ?></div>
|
105 |
<ul class="mec-event-sharing"><?php echo $this->main->module('links.list', array('event'=>$event)); ?></ul>
|
app/skins/list/tpl.php
CHANGED
@@ -46,6 +46,7 @@ jQuery(document).ready(function()
|
|
46 |
// Include javascript code into the page
|
47 |
if($this->main->is_ajax()) echo $javascript;
|
48 |
else $this->factory->params('footer', $javascript);
|
|
|
49 |
do_action('mec_list_skin_head');
|
50 |
?>
|
51 |
<div class="mec-wrap mec-skin-list-container <?php echo $this->html_class; ?>" id="mec_skin_<?php echo $this->id; ?>">
|
46 |
// Include javascript code into the page
|
47 |
if($this->main->is_ajax()) echo $javascript;
|
48 |
else $this->factory->params('footer', $javascript);
|
49 |
+
do_action('mec_start_skin' , $this->id);
|
50 |
do_action('mec_list_skin_head');
|
51 |
?>
|
52 |
<div class="mec-wrap mec-skin-list-container <?php echo $this->html_class; ?>" id="mec_skin_<?php echo $this->id; ?>">
|
app/skins/map/tpl.php
CHANGED
@@ -44,6 +44,7 @@ if(count($this->events))
|
|
44 |
if($this->main->is_ajax()) echo $javascript;
|
45 |
else $this->factory->params('footer', $javascript);
|
46 |
}
|
|
|
47 |
do_action('mec_map_skin_head');
|
48 |
?>
|
49 |
<div class="mec-wrap mec-skin-map-container <?php echo $this->html_class; ?>" id="mec_skin_<?php echo $this->id; ?>">
|
44 |
if($this->main->is_ajax()) echo $javascript;
|
45 |
else $this->factory->params('footer', $javascript);
|
46 |
}
|
47 |
+
do_action('mec_start_skin' , $this->id);
|
48 |
do_action('mec_map_skin_head');
|
49 |
?>
|
50 |
<div class="mec-wrap mec-skin-map-container <?php echo $this->html_class; ?>" id="mec_skin_<?php echo $this->id; ?>">
|
app/skins/masonry/tpl.php
CHANGED
@@ -48,6 +48,7 @@ else $this->factory->params('footer', $javascript);
|
|
48 |
|
49 |
$styling = $this->main->get_styling();
|
50 |
$event_colorskin = (isset($styling['mec_colorskin']) || isset($styling['color'])) ? ' colorskin-custom ' : '';
|
|
|
51 |
do_action('mec_masonry_skin_head');
|
52 |
?>
|
53 |
<div class="mec-wrap mec-skin-masonry-container<?php echo $event_colorskin; ?><?php echo $this->html_class; ?>" id="mec_skin_<?php echo $this->id; ?>">
|
48 |
|
49 |
$styling = $this->main->get_styling();
|
50 |
$event_colorskin = (isset($styling['mec_colorskin']) || isset($styling['color'])) ? ' colorskin-custom ' : '';
|
51 |
+
do_action('mec_start_skin' , $this->id);
|
52 |
do_action('mec_masonry_skin_head');
|
53 |
?>
|
54 |
<div class="mec-wrap mec-skin-masonry-container<?php echo $event_colorskin; ?><?php echo $this->html_class; ?>" id="mec_skin_<?php echo $this->id; ?>">
|
app/skins/monthly_view/tpl.php
CHANGED
@@ -103,6 +103,7 @@ else
|
|
103 |
$events_side = '<div class="mec-calendar-events-side mec-clear"><div class="mec-month-side" id="mec_month_side_'.$this->id.'_'.date('Ym', $current_month_time).'">'.$this->events_str.'</div></div>';
|
104 |
$div_footer = '<div class="mec-event-footer"></div>';
|
105 |
}
|
|
|
106 |
do_action('mec_monthly_skin_head');
|
107 |
?>
|
108 |
<div id="mec_skin_<?php echo $this->id; ?>" class="mec-wrap <?php echo $event_colorskin . ' ' . $this->html_class; ?>">
|
103 |
$events_side = '<div class="mec-calendar-events-side mec-clear"><div class="mec-month-side" id="mec_month_side_'.$this->id.'_'.date('Ym', $current_month_time).'">'.$this->events_str.'</div></div>';
|
104 |
$div_footer = '<div class="mec-event-footer"></div>';
|
105 |
}
|
106 |
+
do_action('mec_start_skin' , $this->id);
|
107 |
do_action('mec_monthly_skin_head');
|
108 |
?>
|
109 |
<div id="mec_skin_<?php echo $this->id; ?>" class="mec-wrap <?php echo $event_colorskin . ' ' . $this->html_class; ?>">
|
app/skins/single/default.php
CHANGED
@@ -4,6 +4,13 @@ defined('MECEXEC') or die();
|
|
4 |
$single = new MEC_skin_single();
|
5 |
wp_enqueue_style('mec-lity-style', $this->main->asset('packages/lity/lity.min.css'));
|
6 |
wp_enqueue_script('mec-lity-script', $this->main->asset('packages/lity/lity.min.js'));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
?>
|
8 |
<div class="mec-wrap <?php echo $event_colorskin; ?> clearfix <?php echo $this->html_class; ?>" id="mec_skin_<?php echo $this->uniqueid; ?>">
|
9 |
<?php do_action('mec_top_single_event' , get_the_ID()); ?>
|
@@ -45,8 +52,13 @@ wp_enqueue_script('mec-lity-script', $this->main->asset('packages/lity/lity.min.
|
|
45 |
<?php $data_lity_class = ''; if( isset($settings['single_booking_style']) and $settings['single_booking_style'] == 'modal' ) $data_lity_class = 'lity-hide '; ?>
|
46 |
<div id="mec-events-meta-group-booking-<?php echo $this->uniqueid; ?>" class="<?php echo $data_lity_class; ?>mec-events-meta-group mec-events-meta-group-booking">
|
47 |
<?php
|
48 |
-
if( isset($settings['booking_user_login']) and $settings['booking_user_login'] == '1' and !is_user_logged_in() )
|
49 |
-
|
|
|
|
|
|
|
|
|
|
|
50 |
?>
|
51 |
</div>
|
52 |
<?php endif ?>
|
4 |
$single = new MEC_skin_single();
|
5 |
wp_enqueue_style('mec-lity-style', $this->main->asset('packages/lity/lity.min.css'));
|
6 |
wp_enqueue_script('mec-lity-script', $this->main->asset('packages/lity/lity.min.js'));
|
7 |
+
|
8 |
+
$booking_options = get_post_meta(get_the_ID(), 'mec_booking', true);
|
9 |
+
if (!is_array($booking_options)) {
|
10 |
+
$booking_options = array();
|
11 |
+
}
|
12 |
+
|
13 |
+
$bookings_limit_for_users = isset($booking_options['bookings_limit_for_users']) ? $booking_options['bookings_limit_for_users'] : 0;
|
14 |
?>
|
15 |
<div class="mec-wrap <?php echo $event_colorskin; ?> clearfix <?php echo $this->html_class; ?>" id="mec_skin_<?php echo $this->uniqueid; ?>">
|
16 |
<?php do_action('mec_top_single_event' , get_the_ID()); ?>
|
52 |
<?php $data_lity_class = ''; if( isset($settings['single_booking_style']) and $settings['single_booking_style'] == 'modal' ) $data_lity_class = 'lity-hide '; ?>
|
53 |
<div id="mec-events-meta-group-booking-<?php echo $this->uniqueid; ?>" class="<?php echo $data_lity_class; ?>mec-events-meta-group mec-events-meta-group-booking">
|
54 |
<?php
|
55 |
+
if( isset($settings['booking_user_login']) and $settings['booking_user_login'] == '1' and !is_user_logged_in() ) {
|
56 |
+
echo do_shortcode('[MEC_login]');
|
57 |
+
} elseif ( isset($settings['booking_user_login']) and $settings['booking_user_login'] == '0' and !is_user_logged_in() and isset($booking_options['bookings_limit_for_users']) and $booking_options['bookings_limit_for_users'] == '1' ) {
|
58 |
+
echo do_shortcode('[MEC_login]');
|
59 |
+
} else {
|
60 |
+
echo $this->main->module('booking.default', array('event'=>$this->events));
|
61 |
+
}
|
62 |
?>
|
63 |
</div>
|
64 |
<?php endif ?>
|
app/skins/single/modern.php
CHANGED
@@ -257,7 +257,15 @@ defined('MECEXEC') or die();
|
|
257 |
<?php elseif($this->main->can_show_booking_module($event)): ?>
|
258 |
<?php $data_lity_class = ''; if( isset($settings['single_booking_style']) and $settings['single_booking_style'] == 'modal' ) $data_lity_class = 'lity-hide '; ?>
|
259 |
<div id="mec-events-meta-group-booking-<?php echo $this->uniqueid; ?>" class="<?php echo $data_lity_class; ?>mec-events-meta-group mec-events-meta-group-booking">
|
260 |
-
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
261 |
</div>
|
262 |
<?php endif ?>
|
263 |
|
257 |
<?php elseif($this->main->can_show_booking_module($event)): ?>
|
258 |
<?php $data_lity_class = ''; if( isset($settings['single_booking_style']) and $settings['single_booking_style'] == 'modal' ) $data_lity_class = 'lity-hide '; ?>
|
259 |
<div id="mec-events-meta-group-booking-<?php echo $this->uniqueid; ?>" class="<?php echo $data_lity_class; ?>mec-events-meta-group mec-events-meta-group-booking">
|
260 |
+
<?php
|
261 |
+
if( isset($settings['booking_user_login']) and $settings['booking_user_login'] == '1' and !is_user_logged_in() ) {
|
262 |
+
echo do_shortcode('[MEC_login]');
|
263 |
+
} elseif ( isset($settings['booking_user_login']) and $settings['booking_user_login'] == '0' and !is_user_logged_in() and isset($booking_options['bookings_limit_for_users']) and $booking_options['bookings_limit_for_users'] == '1' ) {
|
264 |
+
echo do_shortcode('[MEC_login]');
|
265 |
+
} else {
|
266 |
+
echo $this->main->module('booking.default', array('event'=>$this->events));
|
267 |
+
}
|
268 |
+
?>
|
269 |
</div>
|
270 |
<?php endif ?>
|
271 |
|
app/skins/slider/tpl.php
CHANGED
@@ -30,6 +30,7 @@ jQuery(document).ready(function()
|
|
30 |
// Include javascript code into the page
|
31 |
if($this->main->is_ajax()) echo $javascript;
|
32 |
else $this->factory->params('footer', $javascript);
|
|
|
33 |
do_action('mec_slider_skin_head');
|
34 |
?>
|
35 |
<div class="mec-wrap mec-skin-slider-container<?php echo $this->html_class; ?>" id="mec_skin_<?php echo $this->id; ?>">
|
30 |
// Include javascript code into the page
|
31 |
if($this->main->is_ajax()) echo $javascript;
|
32 |
else $this->factory->params('footer', $javascript);
|
33 |
+
do_action('mec_start_skin' , $this->id);
|
34 |
do_action('mec_slider_skin_head');
|
35 |
?>
|
36 |
<div class="mec-wrap mec-skin-slider-container<?php echo $this->html_class; ?>" id="mec_skin_<?php echo $this->id; ?>">
|
app/skins/timetable/tpl.php
CHANGED
@@ -1,6 +1,7 @@
|
|
1 |
<?php
|
2 |
/** no direct access **/
|
3 |
defined('MECEXEC') or die();
|
|
|
4 |
do_action('mec_timetable_skin_head');
|
5 |
if($this->style == 'clean') include MEC::import('app.skins.timetable.clean', true, true);
|
6 |
else include MEC::import('app.skins.timetable.modern', true, true);
|
1 |
<?php
|
2 |
/** no direct access **/
|
3 |
defined('MECEXEC') or die();
|
4 |
+
do_action('mec_start_skin' , $this->id);
|
5 |
do_action('mec_timetable_skin_head');
|
6 |
if($this->style == 'clean') include MEC::import('app.skins.timetable.clean', true, true);
|
7 |
else include MEC::import('app.skins.timetable.modern', true, true);
|
app/skins/weekly_view/tpl.php
CHANGED
@@ -120,6 +120,7 @@ else $this->factory->params('footer', $javascript);
|
|
120 |
|
121 |
$styling = $this->main->get_styling();
|
122 |
$event_colorskin = (isset($styling['mec_colorskin'] ) || isset($styling['color'])) ? 'colorskin-custom' : '';
|
|
|
123 |
do_action('mec_weekly_skin_head');
|
124 |
?>
|
125 |
<div id="mec_skin_<?php echo $this->id; ?>" class="mec-wrap <?php echo $event_colorskin . ' ' . $this->html_class; ?>">
|
120 |
|
121 |
$styling = $this->main->get_styling();
|
122 |
$event_colorskin = (isset($styling['mec_colorskin'] ) || isset($styling['color'])) ? 'colorskin-custom' : '';
|
123 |
+
do_action('mec_start_skin' , $this->id);
|
124 |
do_action('mec_weekly_skin_head');
|
125 |
?>
|
126 |
<div id="mec_skin_<?php echo $this->id; ?>" class="mec-wrap <?php echo $event_colorskin . ' ' . $this->html_class; ?>">
|
app/skins/yearly_view/tpl.php
CHANGED
@@ -86,6 +86,7 @@ else $this->factory->params('footer', $javascript);
|
|
86 |
|
87 |
$styling = $this->main->get_styling();
|
88 |
$event_colorskin = (isset($styling['mec_colorskin'] ) || isset($styling['color'])) ? 'colorskin-custom' : '';
|
|
|
89 |
do_action('mec_yearly_skin_head');
|
90 |
?>
|
91 |
<div id="mec_skin_<?php echo $this->id; ?>" class="mec-wrap <?php echo $this->html_class; ?>">
|
86 |
|
87 |
$styling = $this->main->get_styling();
|
88 |
$event_colorskin = (isset($styling['mec_colorskin'] ) || isset($styling['color'])) ? 'colorskin-custom' : '';
|
89 |
+
do_action('mec_start_skin' , $this->id);
|
90 |
do_action('mec_yearly_skin_head');
|
91 |
?>
|
92 |
<div id="mec_skin_<?php echo $this->id; ?>" class="mec-wrap <?php echo $this->html_class; ?>">
|
assets/css/backend.css
CHANGED
@@ -1355,7 +1355,7 @@ body.post-type-mec-books th.column-author {
|
|
1355 |
}
|
1356 |
|
1357 |
.mec-image-select-wrap .mec-colorskin-1 {
|
1358 |
-
background-color: #
|
1359 |
}
|
1360 |
|
1361 |
.mec-image-select-wrap .mec-colorskin-2 {
|
@@ -3777,7 +3777,13 @@ textarea.mec-import-settings-content {
|
|
3777 |
letter-spacing: .2px;
|
3778 |
line-height: 21px;
|
3779 |
display: inline-block;
|
3780 |
-
margin:
|
|
|
|
|
|
|
|
|
|
|
|
|
3781 |
}
|
3782 |
|
3783 |
.mec-addon-box-title {
|
@@ -3793,7 +3799,8 @@ textarea.mec-import-settings-content {
|
|
3793 |
|
3794 |
.mec-addon-box-content p {
|
3795 |
color: #777;
|
3796 |
-
font-size: 13px
|
|
|
3797 |
}
|
3798 |
|
3799 |
.mec-addon-box-mec-version {
|
@@ -3837,30 +3844,36 @@ textarea.mec-import-settings-content {
|
|
3837 |
}
|
3838 |
|
3839 |
.mec-addon-box-footer {
|
3840 |
-
margin-top: 25px
|
|
|
3841 |
}
|
3842 |
|
3843 |
#webnus-dashboard .mec-addon-box-footer a {
|
3844 |
-
|
3845 |
-
|
3846 |
-
|
3847 |
text-shadow: none;
|
3848 |
-
background: #008aff;
|
3849 |
-
background: linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);
|
3850 |
border: none;
|
3851 |
transition: .24s;
|
3852 |
-
|
3853 |
-
margin-
|
3854 |
-
|
3855 |
-
|
3856 |
-
|
3857 |
-
|
3858 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3859 |
}
|
3860 |
|
3861 |
#webnus-dashboard .mec-addon-box-footer a.mec-addon-box-intro {
|
3862 |
-
box-shadow: 0 3px 10px -4px #
|
3863 |
-
background: linear-gradient(95deg
|
3864 |
}
|
3865 |
|
3866 |
#webnus-dashboard .mec-addon-box-footer a:hover {
|
@@ -3871,8 +3884,8 @@ textarea.mec-import-settings-content {
|
|
3871 |
}
|
3872 |
|
3873 |
#webnus-dashboard .mec-addon-box-footer a i {
|
3874 |
-
|
3875 |
-
|
3876 |
}
|
3877 |
|
3878 |
@media(max-width: 1366px) {
|
@@ -4264,7 +4277,8 @@ a.mec-intro-section-link-tag.button.button-secondary.button-hero {
|
|
4264 |
color: #fff;
|
4265 |
font-size: 14px;
|
4266 |
line-height: 1.3;
|
4267 |
-
margin: 0
|
|
|
4268 |
}
|
4269 |
|
4270 |
.mec-tooltip:hover .box {
|
@@ -5862,4 +5876,169 @@ a.mec-create-shortcode-tabs-link {
|
|
5862 |
.ui-datepicker.ui-widget .ui-datepicker-prev:hover {
|
5863 |
background: #fff;
|
5864 |
box-shadow: 0 0 7px -3px rgba(0, 0, 0, 0.4);
|
5865 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1355 |
}
|
1356 |
|
1357 |
.mec-image-select-wrap .mec-colorskin-1 {
|
1358 |
+
background-color: #40d9f1;
|
1359 |
}
|
1360 |
|
1361 |
.mec-image-select-wrap .mec-colorskin-2 {
|
3777 |
letter-spacing: .2px;
|
3778 |
line-height: 21px;
|
3779 |
display: inline-block;
|
3780 |
+
margin: 10px 0;
|
3781 |
+
}
|
3782 |
+
|
3783 |
+
.mec-addon-box-head img {
|
3784 |
+
display: block;
|
3785 |
+
width: 60px;
|
3786 |
+
margin-bottom: 10px;
|
3787 |
}
|
3788 |
|
3789 |
.mec-addon-box-title {
|
3799 |
|
3800 |
.mec-addon-box-content p {
|
3801 |
color: #777;
|
3802 |
+
font-size: 13px;
|
3803 |
+
letter-spacing: 0.1px;
|
3804 |
}
|
3805 |
|
3806 |
.mec-addon-box-mec-version {
|
3844 |
}
|
3845 |
|
3846 |
.mec-addon-box-footer {
|
3847 |
+
margin-top: 25px;
|
3848 |
+
text-align: center;
|
3849 |
}
|
3850 |
|
3851 |
#webnus-dashboard .mec-addon-box-footer a {
|
3852 |
+
background: linear-gradient(95deg, #36a2ff 0, #008aff 50%, #0072ff 100%);
|
3853 |
+
margin-top: 10px;
|
3854 |
+
display: inline-block;
|
3855 |
text-shadow: none;
|
|
|
|
|
3856 |
border: none;
|
3857 |
transition: .24s;
|
3858 |
+
position: relative;
|
3859 |
+
margin-right: 7px;
|
3860 |
+
font-size: 12px;
|
3861 |
+
font-weight: 500;
|
3862 |
+
border-radius: 7px;
|
3863 |
+
padding: 9px 18px 8px;
|
3864 |
+
width: 53px;
|
3865 |
+
height: 34px;
|
3866 |
+
line-height: 21px;
|
3867 |
+
box-shadow: 0 2px 8px -3px #008aff;
|
3868 |
+
}
|
3869 |
+
|
3870 |
+
#webnus-dashboard .mec-addon-box-footer a:last-of-type {
|
3871 |
+
margin-right:0;
|
3872 |
}
|
3873 |
|
3874 |
#webnus-dashboard .mec-addon-box-footer a.mec-addon-box-intro {
|
3875 |
+
box-shadow: 0 3px 10px -4px #ff3535;
|
3876 |
+
background: linear-gradient(95deg, #ff6c6c 0, #f55 50%, #ff3535 100%);
|
3877 |
}
|
3878 |
|
3879 |
#webnus-dashboard .mec-addon-box-footer a:hover {
|
3884 |
}
|
3885 |
|
3886 |
#webnus-dashboard .mec-addon-box-footer a i {
|
3887 |
+
color: #fff;
|
3888 |
+
font-size: 16px;
|
3889 |
}
|
3890 |
|
3891 |
@media(max-width: 1366px) {
|
4277 |
color: #fff;
|
4278 |
font-size: 14px;
|
4279 |
line-height: 1.3;
|
4280 |
+
margin: 0;
|
4281 |
+
font-style: normal;
|
4282 |
}
|
4283 |
|
4284 |
.mec-tooltip:hover .box {
|
5876 |
.ui-datepicker.ui-widget .ui-datepicker-prev:hover {
|
5877 |
background: #fff;
|
5878 |
box-shadow: 0 0 7px -3px rgba(0, 0, 0, 0.4);
|
5879 |
+
}
|
5880 |
+
|
5881 |
+
/* New style */
|
5882 |
+
#mec-wrap {
|
5883 |
+
width: 92%;
|
5884 |
+
margin: 20px auto;
|
5885 |
+
max-width: 1384px
|
5886 |
+
}
|
5887 |
+
#mec-wrap h2.nav-tab-wrapper {
|
5888 |
+
margin-bottom: 40px;
|
5889 |
+
padding: 0;
|
5890 |
+
border: none;
|
5891 |
+
margin-top: 35px;
|
5892 |
+
clear: both;
|
5893 |
+
background: #fff;
|
5894 |
+
box-shadow: 0 3px 12px -4px rgba(0, 0, 0, .13)
|
5895 |
+
}
|
5896 |
+
#mec-wrap .nav-tab-wrapper .nav-tab {
|
5897 |
+
position: relative;
|
5898 |
+
padding: 28px 22px;
|
5899 |
+
border: none;
|
5900 |
+
margin: 0;
|
5901 |
+
background: #fff;
|
5902 |
+
font-size: 13px;
|
5903 |
+
color: #444;
|
5904 |
+
outline: 0;
|
5905 |
+
box-shadow: none
|
5906 |
+
}
|
5907 |
+
|
5908 |
+
#mec-wrap .nav-tab-wrapper .nav-tab:hover {
|
5909 |
+
color: #008aff
|
5910 |
+
}
|
5911 |
+
|
5912 |
+
#mec-wrap .nav-tab-wrapper .nav-tab:after {
|
5913 |
+
content: "";
|
5914 |
+
display: inline-block;
|
5915 |
+
width: 1px;
|
5916 |
+
height: 30%;
|
5917 |
+
position: absolute;
|
5918 |
+
right: 0;
|
5919 |
+
top: 35%;
|
5920 |
+
background: #e9e9e9
|
5921 |
+
}
|
5922 |
+
|
5923 |
+
#mec-wrap .nav-tab-wrapper .nav-tab-active,
|
5924 |
+
#mec-wrap .nav-tab-wrapper .nav-tab-active:focus,
|
5925 |
+
#mec-wrap .nav-tab-wrapper .nav-tab-active:focus:active,
|
5926 |
+
#mec-wrap .nav-tab-wrapper .nav-tab-active:hover {
|
5927 |
+
background: #008aff;
|
5928 |
+
background: linear-gradient(95deg, #36a2ff 0, #008aff 50%, #0072ff 100%);
|
5929 |
+
color: #fff;
|
5930 |
+
outline: 0;
|
5931 |
+
box-shadow: 0 5px 25px -7px #008aff;
|
5932 |
+
margin-left: -1px;
|
5933 |
+
z-index: 2
|
5934 |
+
}
|
5935 |
+
|
5936 |
+
#mec-wrap .nav-tab-wrapper .nav-tab-active:after {
|
5937 |
+
content: '';
|
5938 |
+
position: absolute;
|
5939 |
+
display: block;
|
5940 |
+
background: 0 0;
|
5941 |
+
top: auto;
|
5942 |
+
height: auto;
|
5943 |
+
bottom: -20px;
|
5944 |
+
left: 50%;
|
5945 |
+
margin-left: -10px;
|
5946 |
+
width: 0;
|
5947 |
+
border-width: 10px;
|
5948 |
+
border-style: solid;
|
5949 |
+
border-color: #008aff transparent transparent
|
5950 |
+
}
|
5951 |
+
|
5952 |
+
#mec-wrap .mec-container {
|
5953 |
+
padding: 25px 40px 40px;
|
5954 |
+
box-shadow: 0 3px 10px -4px rgba(0, 0, 0, .1)
|
5955 |
+
}
|
5956 |
+
|
5957 |
+
#wpwrap .mec-button-primary {
|
5958 |
+
color: #fff;
|
5959 |
+
font-weight: 500;
|
5960 |
+
border-radius: 2px;
|
5961 |
+
box-shadow: 0 3px 10px -4px #008aff;
|
5962 |
+
text-shadow: none;
|
5963 |
+
background: #008aff;
|
5964 |
+
background: linear-gradient(95deg, #36a2ff 0, #008aff 50%, #0072ff 100%);
|
5965 |
+
border: none;
|
5966 |
+
transition: .24s;
|
5967 |
+
}
|
5968 |
+
|
5969 |
+
#wpwrap .mec-button-primary:hover {
|
5970 |
+
background: #222;
|
5971 |
+
background: linear-gradient(95deg, #555 0, #222 50%, #000 100%);
|
5972 |
+
box-shadow: 0 5px 15px -7px rgba(0, 0, 0, .5);
|
5973 |
+
cursor: pointer;
|
5974 |
+
}
|
5975 |
+
|
5976 |
+
/* Addons Tooltip */
|
5977 |
+
.wn-p-t-right {
|
5978 |
+
min-width: 300px;
|
5979 |
+
max-width: 400px;
|
5980 |
+
display: inline-block;
|
5981 |
+
top: -8px;
|
5982 |
+
left: 50%;
|
5983 |
+
margin-top: 0;
|
5984 |
+
transform: translate(-50%, -100%);
|
5985 |
+
padding: 0;
|
5986 |
+
background-color: #535a61;
|
5987 |
+
color: #fff;
|
5988 |
+
font-weight: 300;
|
5989 |
+
font-size: 14px;
|
5990 |
+
letter-spacing: .5px;
|
5991 |
+
line-height: 1.5;
|
5992 |
+
position: absolute;
|
5993 |
+
z-index: 99999999;
|
5994 |
+
box-sizing: border-box;
|
5995 |
+
border-radius: 6px;
|
5996 |
+
box-shadow: 0 4px 45px -8px #444b50;
|
5997 |
+
visibility: hidden;
|
5998 |
+
opacity: 0;
|
5999 |
+
transition: opacity .23s;
|
6000 |
+
padding: 20px;
|
6001 |
+
border-radius: 8px;
|
6002 |
+
}
|
6003 |
+
|
6004 |
+
.wn-p-t-right i {
|
6005 |
+
position: absolute !important;
|
6006 |
+
top: 100%;
|
6007 |
+
right: 50%;
|
6008 |
+
margin-top: -6px !important;
|
6009 |
+
margin-right: -6px !important;
|
6010 |
+
width: 12px;
|
6011 |
+
height: 24px;
|
6012 |
+
overflow: hidden;
|
6013 |
+
transform: rotate(-90deg);
|
6014 |
+
}
|
6015 |
+
|
6016 |
+
.wn-p-t-right i:after {
|
6017 |
+
content: '';
|
6018 |
+
position: absolute;
|
6019 |
+
width: 12px;
|
6020 |
+
height: 12px;
|
6021 |
+
left: 0;
|
6022 |
+
top: 50%;
|
6023 |
+
transform: translate(50%, -50%) rotate(-45deg);
|
6024 |
+
background-color: #535a61;
|
6025 |
+
box-shadow: 0 8px 9px -4px #535a61;
|
6026 |
+
}
|
6027 |
+
|
6028 |
+
.wn-p-t-right .wn-p-t-text-content h5 {
|
6029 |
+
color: #fff;
|
6030 |
+
font-size: 17px;
|
6031 |
+
font-weight: 600;
|
6032 |
+
margin: -20px;
|
6033 |
+
padding: 15px 0;
|
6034 |
+
text-align: center;
|
6035 |
+
margin-bottom: 10px;
|
6036 |
+
background: #3a3f44;
|
6037 |
+
border-bottom: 1px solid #32363a;
|
6038 |
+
border-radius: 6px 6px 0 0;
|
6039 |
+
}
|
6040 |
+
|
6041 |
+
.mec-addon-box-footer a:hover .wn-p-t-right {
|
6042 |
+
visibility: visible;
|
6043 |
+
opacity: 1;
|
6044 |
+
}
|
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:#008aff}.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:3px 0}.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}.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}#webnus-dashboard .mec-addon-box-footer a{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:7px 19px;margin-top:10px;display:inline-block;letter-spacing:.2px;color:#fff;width:100%;text-align:center}#webnus-dashboard .mec-addon-box-footer a.mec-addon-box-intro{box-shadow:0 3px 10px -4px #ff5a35;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 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{margin-right:6px;color:#fff}@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}.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)}
|
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}
|
assets/css/frontend.css
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
|
9 |
|
10 |
/* #CSS Base & Typography
|
@@ -12,7 +12,7 @@
|
|
12 |
.mec-wrap,
|
13 |
.mec-wrap div:not([class^="elementor-"]),
|
14 |
.lity-container {
|
15 |
-
font-family: 'Montserrat',
|
16 |
}
|
17 |
|
18 |
.mec-wrap h1,
|
@@ -27,7 +27,7 @@
|
|
27 |
.entry-content .mec-wrap h4,
|
28 |
.entry-content .mec-wrap h5,
|
29 |
.entry-content .mec-wrap h6 {
|
30 |
-
font-family: 'Montserrat',
|
31 |
color: #171c24;
|
32 |
font-weight: 300;
|
33 |
font-style: inherit;
|
@@ -144,7 +144,7 @@
|
|
144 |
|
145 |
/* Form Builder Button */
|
146 |
.mec-booking-form-container button {
|
147 |
-
|
148 |
}
|
149 |
|
150 |
/* Distance (Vertical Spaces) */
|
@@ -353,11 +353,11 @@
|
|
353 |
|
354 |
/* MEC Current Day Event Toggle
|
355 |
-------------------------- */
|
356 |
-
#mec-active-current{
|
357 |
display: block !important;
|
358 |
}
|
359 |
|
360 |
-
.current-hide #mec-active-current{
|
361 |
display: none !important;
|
362 |
}
|
363 |
|
@@ -2713,7 +2713,7 @@
|
|
2713 |
}
|
2714 |
|
2715 |
.mec-single-event .mec-book-form-coupon button {
|
2716 |
-
|
2717 |
}
|
2718 |
|
2719 |
.mec-single-event .mec-book-form-gateway-checkout button {
|
@@ -2729,6 +2729,7 @@
|
|
2729 |
.mec-single-event label.mec-fill-attendees {
|
2730 |
margin-left: 15px !important;
|
2731 |
}
|
|
|
2732 |
.mec-single-event .mec-events-meta-group-booking .mec-event-ticket-available {
|
2733 |
display: block;
|
2734 |
margin-bottom: 20px;
|
@@ -3475,8 +3476,9 @@ focus,
|
|
3475 |
margin-top: 5px;
|
3476 |
display: inline-block !important;
|
3477 |
}
|
3478 |
-
|
3479 |
@media(max-width: 768px) {
|
|
|
3480 |
.mec-single-event .mec-events-meta-group-booking input[data-stripe="exp-month"],
|
3481 |
.mec-single-event .mec-events-meta-group-booking input[data-stripe="exp-year"] {
|
3482 |
width: 100% !important;
|
@@ -3713,6 +3715,10 @@ address.mec-events-address {
|
|
3713 |
}
|
3714 |
|
3715 |
/* Speaker Widget */
|
|
|
|
|
|
|
|
|
3716 |
.mec-single-event .mec-speakers-details ul li {
|
3717 |
list-style: none;
|
3718 |
background: #f7f7f7;
|
@@ -4543,19 +4549,19 @@ address.mec-events-address {
|
|
4543 |
}
|
4544 |
|
4545 |
.mec-event-calendar-classic.mec-event-container-simple .mec-calendar-side .mec-calendar-table {
|
4546 |
-
|
4547 |
}
|
4548 |
|
4549 |
.mec-event-container-simple .mec-monthly-tooltip h4 {
|
4550 |
-
|
4551 |
-
|
4552 |
-
|
4553 |
-
|
4554 |
}
|
4555 |
|
4556 |
.mec-event-container-simple .mec-monthly-tooltip h4:hover {
|
4557 |
-
|
4558 |
-
|
4559 |
}
|
4560 |
|
4561 |
.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple {
|
@@ -4640,19 +4646,23 @@ address.mec-events-address {
|
|
4640 |
margin-right: 13px;
|
4641 |
margin-bottom: 1px;
|
4642 |
}
|
|
|
4643 |
.mec-tooltip-event-featured img {
|
4644 |
max-width: 120px;
|
4645 |
}
|
|
|
4646 |
.mec-tooltip-event-desc {
|
4647 |
font-size: 14px;
|
4648 |
color: #444;
|
4649 |
line-height: 18px;
|
4650 |
}
|
|
|
4651 |
.mec-tooltip-event-desc p {
|
4652 |
font-size: 13px;
|
4653 |
line-height: 1.4;
|
4654 |
margin-bottom: 10px;
|
4655 |
}
|
|
|
4656 |
.tooltipster-sidetip.tooltipster-shadow .tooltipster-box {
|
4657 |
border-radius: 3px !important;
|
4658 |
border: 1px solid #e2e3e4 !important;
|
@@ -4733,16 +4743,16 @@ address.mec-events-address {
|
|
4733 |
}
|
4734 |
|
4735 |
@media (max-width:780px) {
|
4736 |
-
|
4737 |
-
|
4738 |
-
|
4739 |
-
|
4740 |
}
|
4741 |
|
4742 |
@media (max-width:320px) {
|
4743 |
-
|
4744 |
-
|
4745 |
-
|
4746 |
}
|
4747 |
|
4748 |
/* MEC Events - Calendar Daily
|
@@ -5371,7 +5381,7 @@ li.mec-no-event-found .mec-event-title {
|
|
5371 |
|
5372 |
.mec-skin-grid-container .mec-skin-map-container,
|
5373 |
.mec-skin-list-container .mec-skin-map-container {
|
5374 |
-
margin-bottom:20px;
|
5375 |
}
|
5376 |
|
5377 |
/* Mec Countdown
|
@@ -5520,8 +5530,8 @@ li.mec-no-event-found .mec-event-title {
|
|
5520 |
}
|
5521 |
|
5522 |
.mec-success {
|
5523 |
-
color: #
|
5524 |
-
background-color: #
|
5525 |
}
|
5526 |
|
5527 |
.warning-msg {
|
@@ -5536,7 +5546,17 @@ li.mec-no-event-found .mec-event-title {
|
|
5536 |
|
5537 |
/* Mec Frontend Submission
|
5538 |
-------------------------------- */
|
5539 |
-
.mec-fes-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5540 |
list-style: none;
|
5541 |
}
|
5542 |
|
@@ -5549,8 +5569,12 @@ li.mec-no-event-found .mec-event-title {
|
|
5549 |
}
|
5550 |
|
5551 |
.mec-fes-list ul li {
|
5552 |
-
|
5553 |
-
|
|
|
|
|
|
|
|
|
5554 |
line-height: normal;
|
5555 |
}
|
5556 |
|
@@ -5564,77 +5588,113 @@ li.mec-no-event-found .mec-event-title {
|
|
5564 |
}
|
5565 |
|
5566 |
.mec-fes-list ul li .mec-event-title {
|
|
|
5567 |
font-weight: 600;
|
5568 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5569 |
}
|
5570 |
|
5571 |
-
.mec-fes-list .mec-event-status
|
5572 |
-
|
5573 |
-
|
5574 |
-
border-color: transparent !important;
|
5575 |
}
|
5576 |
-
|
5577 |
-
|
|
|
|
|
5578 |
}
|
5579 |
|
5580 |
-
.mec-fes-list .mec-book-pending,
|
5581 |
-
|
|
|
5582 |
}
|
5583 |
|
5584 |
-
.mec-fes-list .mec-book-rejected,
|
5585 |
-
|
|
|
5586 |
}
|
5587 |
-
|
5588 |
-
|
|
|
|
|
5589 |
}
|
5590 |
|
5591 |
-
|
5592 |
-
.mec-fes-list ul li .mec-fes-event-remove
|
|
|
5593 |
font-size: 11px;
|
5594 |
-
padding:
|
5595 |
-
border:
|
5596 |
-
background: #
|
5597 |
float: right;
|
5598 |
margin-left: 5px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5599 |
}
|
5600 |
|
5601 |
.mec-fes-list ul li .mec-fes-event-remove:hover {
|
5602 |
cursor: pointer;
|
5603 |
-
background: #
|
5604 |
-
border-color: #
|
|
|
5605 |
}
|
5606 |
|
5607 |
-
.mec-fes-list-
|
5608 |
-
|
5609 |
-
|
5610 |
-
|
5611 |
-
|
5612 |
-
border: 1px solid #e3e3e3;
|
5613 |
-
background: #f5f5f5;
|
5614 |
}
|
5615 |
|
5616 |
-
|
5617 |
-
.mec-fes-form-top-actions a
|
|
|
5618 |
position: relative;
|
5619 |
border: none;
|
5620 |
-
border-radius:
|
5621 |
color: #fff !important;
|
5622 |
display: inline-block;
|
5623 |
-
font-size:
|
5624 |
-
letter-spacing: 2px;
|
5625 |
line-height: 1;
|
5626 |
-
text-transform:
|
5627 |
-
font-weight:
|
5628 |
text-decoration: none;
|
5629 |
cursor: pointer;
|
5630 |
-
margin-bottom:
|
5631 |
margin-right: 10px;
|
5632 |
line-height: 1;
|
5633 |
-
|
|
|
5634 |
background: #39c36e;
|
5635 |
-
-
|
5636 |
-
-
|
5637 |
-
transition: all
|
|
|
5638 |
}
|
5639 |
|
5640 |
.mec-fes-list-top-actions a:hover,
|
@@ -5643,27 +5703,52 @@ li.mec-no-event-found .mec-event-title {
|
|
5643 |
color: #fff;
|
5644 |
}
|
5645 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5646 |
.mec-fes-form .mec-form-row,
|
5647 |
.mec-fes-list .mec-form-row {
|
5648 |
-
margin-bottom:
|
5649 |
clear: both;
|
5650 |
}
|
5651 |
|
5652 |
.mec-fes-form label {
|
5653 |
-
padding-right: 10px;
|
5654 |
font-size: 13px;
|
5655 |
display: block;
|
|
|
|
|
|
|
5656 |
}
|
5657 |
|
5658 |
-
.mec-fes-form
|
5659 |
-
|
5660 |
-
|
5661 |
-
|
5662 |
-
|
5663 |
-
|
5664 |
-
|
5665 |
-
|
5666 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
5667 |
}
|
5668 |
|
5669 |
.mec-fes-form input[type=text],
|
@@ -5673,18 +5758,51 @@ li.mec-no-event-found .mec-event-title {
|
|
5673 |
.mec-fes-form input[type=tel],
|
5674 |
.mec-fes-form textarea,
|
5675 |
.mec-fes-form select {
|
5676 |
-
border-radius: 0;
|
5677 |
min-width: inherit;
|
5678 |
width: auto;
|
5679 |
display: inline;
|
5680 |
-
background: #fcfcfc;
|
5681 |
min-height: 30px;
|
5682 |
font-size: 13px;
|
5683 |
-
border: 1px solid #e0e0e0;
|
5684 |
padding: 10px;
|
5685 |
margin-bottom: 20px;
|
5686 |
-
box-shadow: inset 0px 2px 4px rgba(0, 0, 0, 0.051);
|
5687 |
clear: both;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5688 |
}
|
5689 |
|
5690 |
#mec_more_info_target {
|
@@ -5712,13 +5830,14 @@ li.mec-no-event-found .mec-event-title {
|
|
5712 |
}
|
5713 |
}
|
5714 |
|
|
|
5715 |
.mec-fes-form input[type=text]#mec_fes_title {
|
5716 |
-
|
5717 |
-
height:
|
5718 |
-
|
5719 |
-
|
5720 |
-
|
5721 |
-
|
5722 |
font-weight: 400;
|
5723 |
}
|
5724 |
|
@@ -5764,242 +5883,245 @@ li.mec-no-event-found .mec-event-title {
|
|
5764 |
}
|
5765 |
|
5766 |
.mec-fes-form.mec-fes-form .mec-tooltip {
|
5767 |
-
|
5768 |
}
|
5769 |
|
5770 |
.mec-fes-form-cntt .dashicons-editor-help {
|
5771 |
-
|
5772 |
}
|
5773 |
|
5774 |
-
.mec-fes-form .mec-tooltip:hover:after
|
5775 |
-
|
|
|
5776 |
}
|
5777 |
|
5778 |
.mec-fes-form.mec-fes-form .mec-tooltip {
|
5779 |
-
|
5780 |
-
|
5781 |
}
|
5782 |
|
5783 |
.mec-fes-form .mec-tooltip .box {
|
5784 |
-
|
5785 |
-
|
5786 |
-
|
5787 |
-
|
5788 |
-
|
5789 |
-
|
5790 |
-
|
5791 |
-
|
5792 |
-
|
5793 |
-
|
5794 |
-
|
5795 |
-
|
5796 |
-
|
5797 |
-
|
5798 |
-
|
5799 |
-
|
5800 |
-
|
5801 |
-
|
5802 |
-
|
5803 |
-
|
5804 |
-
|
5805 |
-
|
5806 |
}
|
5807 |
|
5808 |
-
#webnus-dashboard .mec-fes-form .mec-tooltip .box p
|
5809 |
-
|
5810 |
-
|
5811 |
-
|
5812 |
-
|
|
|
5813 |
}
|
5814 |
|
5815 |
.mec-fes-form .mec-tooltip:hover .box {
|
5816 |
-
|
5817 |
-
|
5818 |
}
|
5819 |
|
5820 |
.mec-fes-form .mec-tooltip:hover .box {
|
5821 |
-
|
5822 |
-
|
5823 |
}
|
5824 |
|
5825 |
.mec-fes-form .mec-tooltip .box h5 {
|
5826 |
-
|
5827 |
-
|
5828 |
-
|
5829 |
-
|
5830 |
-
|
5831 |
-
|
5832 |
-
|
5833 |
-
|
5834 |
-
|
5835 |
-
|
5836 |
-
|
5837 |
}
|
5838 |
|
5839 |
-
#webnus-dashboard .mec-fes-form .mec-tooltip .box p a
|
5840 |
-
|
5841 |
-
|
5842 |
-
|
5843 |
-
|
5844 |
-
|
5845 |
-
|
5846 |
-
|
5847 |
-
|
|
|
5848 |
}
|
5849 |
|
5850 |
.mec-fes-form .mec-tooltip .box a:hover {
|
5851 |
-
|
5852 |
}
|
5853 |
|
5854 |
.mec-fes-form .mec-tooltip .box:after {
|
5855 |
-
|
5856 |
-
|
5857 |
-
|
5858 |
-
|
5859 |
-
|
5860 |
-
|
5861 |
-
|
5862 |
-
|
5863 |
-
|
5864 |
-
|
5865 |
}
|
5866 |
|
5867 |
.mec-fes-form .mec-tooltip .box:before {
|
5868 |
-
|
5869 |
-
|
5870 |
-
|
5871 |
-
|
5872 |
-
|
5873 |
-
|
5874 |
-
|
5875 |
-
|
5876 |
-
|
5877 |
-
|
5878 |
-
|
5879 |
}
|
5880 |
|
5881 |
.mec-fes-form .mec-tooltip .box.top {
|
5882 |
-
|
5883 |
-
|
5884 |
-
|
5885 |
-
|
5886 |
-
|
5887 |
}
|
5888 |
|
5889 |
.mec-fes-form .mec-tooltip .box.top:after {
|
5890 |
-
|
5891 |
-
|
5892 |
}
|
5893 |
|
5894 |
.mec-fes-form .mec-tooltip .box.top:before {
|
5895 |
-
|
5896 |
-
|
5897 |
}
|
5898 |
|
5899 |
.mec-fes-form .mec-tooltip .box.bottom {
|
5900 |
-
|
5901 |
-
|
5902 |
-
|
5903 |
-
|
5904 |
-
|
5905 |
-
|
5906 |
}
|
5907 |
|
5908 |
.mec-fes-form .mec-tooltip .box.bottom:after {
|
5909 |
-
|
5910 |
-
|
5911 |
-
|
5912 |
}
|
5913 |
|
5914 |
.mec-fes-form .mec-tooltip .box.bottom:before {
|
5915 |
-
|
5916 |
-
|
5917 |
-
|
5918 |
-
|
5919 |
}
|
5920 |
|
5921 |
.mec-fes-form .mec-tooltip .box.left {
|
5922 |
-
|
5923 |
-
|
5924 |
-
|
5925 |
-
|
5926 |
}
|
5927 |
|
5928 |
.mec-fes-form .mec-tooltip .box.left:before {
|
5929 |
-
|
5930 |
-
|
5931 |
-
|
5932 |
}
|
5933 |
|
5934 |
.mec-fes-form .mec-tooltip {
|
5935 |
-
|
5936 |
-
|
5937 |
-
|
5938 |
-
|
5939 |
-
|
5940 |
-
|
5941 |
}
|
5942 |
|
5943 |
.mec-fes-form .mec-tooltip:last-child {
|
5944 |
-
|
5945 |
}
|
5946 |
|
5947 |
.mec-fes-form .mec-tooltip:hover:after {
|
5948 |
-
|
5949 |
-
|
5950 |
-
|
5951 |
-
|
5952 |
-
|
5953 |
-
|
5954 |
-
|
5955 |
-
|
5956 |
-
|
5957 |
-
|
5958 |
}
|
5959 |
|
5960 |
.mec-fes-form .mec-tooltip:hover:before {
|
5961 |
-
|
5962 |
-
|
5963 |
-
|
5964 |
-
|
5965 |
-
|
5966 |
-
|
5967 |
-
|
5968 |
-
|
5969 |
}
|
5970 |
|
5971 |
.mec-fes-form .mec-tooltip .dashicons-before:before {
|
5972 |
-
|
5973 |
-
|
5974 |
-
|
5975 |
}
|
5976 |
|
5977 |
.mec-fes-form .mec-tooltip a:focus {
|
5978 |
-
|
5979 |
}
|
5980 |
|
5981 |
.mec-form-row .bootstrap_unvalid {
|
5982 |
-
|
5983 |
-
|
5984 |
-
|
5985 |
-
|
5986 |
-
|
5987 |
}
|
5988 |
|
5989 |
.mec-fes-form .mec-tooltiptext {
|
5990 |
-
|
5991 |
-
|
5992 |
-
|
5993 |
-
|
5994 |
-
|
5995 |
-
|
5996 |
-
|
5997 |
-
|
5998 |
-
|
5999 |
}
|
6000 |
|
6001 |
.mec-fes-form .mec-tooltip .content p a {
|
6002 |
-
|
6003 |
}
|
6004 |
|
6005 |
@media only screen and (min-width: 961px) {
|
@@ -6023,21 +6145,25 @@ li.mec-no-event-found .mec-event-title {
|
|
6023 |
}
|
6024 |
|
6025 |
.mec-fes-form .mec-meta-box-fields {
|
6026 |
-
padding: 20px;
|
6027 |
-
border: 1px solid #
|
6028 |
-
margin-bottom: 20px;
|
6029 |
-
box-shadow: 0 2px
|
|
|
|
|
6030 |
}
|
6031 |
|
6032 |
.mec-fes-form .mec-meta-box-fields h4 {
|
6033 |
-
margin: -20px;
|
6034 |
font-size: 15px;
|
6035 |
-
font-weight:
|
6036 |
-
letter-spacing:
|
6037 |
-
|
6038 |
-
|
6039 |
-
|
|
|
6040 |
margin-bottom: 20px;
|
|
|
6041 |
}
|
6042 |
|
6043 |
.mec-fes-sub-button {
|
@@ -6045,10 +6171,9 @@ li.mec-no-event-found .mec-event-title {
|
|
6045 |
}
|
6046 |
|
6047 |
.mec-available-color-row span.color-selected {
|
6048 |
-
background-color: #fdd700;
|
6049 |
border: 3px solid #fff;
|
6050 |
box-sizing: content-box;
|
6051 |
-
box-shadow: 0 0 0 2px #
|
6052 |
}
|
6053 |
|
6054 |
.mec-fes-loading:before {
|
@@ -6059,22 +6184,25 @@ li.mec-no-event-found .mec-event-title {
|
|
6059 |
margin-left: 47%;
|
6060 |
}
|
6061 |
|
|
|
6062 |
.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type="text"] {
|
6063 |
-
width:
|
6064 |
margin-right: 1.4%;
|
6065 |
}
|
6066 |
|
6067 |
-
.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row
|
6068 |
-
|
6069 |
-
|
|
|
6070 |
}
|
6071 |
|
6072 |
-
.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row
|
6073 |
-
|
6074 |
}
|
6075 |
|
6076 |
-
.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row
|
6077 |
-
|
|
|
6078 |
}
|
6079 |
|
6080 |
.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type="text"].mec-col-6 {
|
@@ -6086,12 +6214,35 @@ li.mec-no-event-found .mec-event-title {
|
|
6086 |
padding: 9px 26px;
|
6087 |
}
|
6088 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6089 |
@media only screen and (max-width: 768px) {
|
6090 |
.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type="text"] {
|
6091 |
width: 100% !important;
|
6092 |
}
|
6093 |
}
|
6094 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6095 |
/* MEC Total Calendar
|
6096 |
-------------------------------- */
|
6097 |
.mec-wrap .mec-totalcal-box {
|
@@ -6262,125 +6413,125 @@ li.mec-no-event-found .mec-event-title {
|
|
6262 |
@media (min-width:961px) and (max-width:1200px) {
|
6263 |
|
6264 |
.mec-full-calendar-wrap .mec-totalcal-box {
|
6265 |
-
|
6266 |
}
|
6267 |
-
|
6268 |
.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 {
|
6269 |
-
|
6270 |
}
|
6271 |
-
|
6272 |
.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,
|
6273 |
.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,
|
6274 |
.mec-full-calendar-wrap .mec-totalcal-box .col-md-4 {
|
6275 |
-
|
6276 |
}
|
6277 |
|
6278 |
.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select {
|
6279 |
-
|
6280 |
}
|
6281 |
-
|
6282 |
.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select {
|
6283 |
-
|
6284 |
}
|
6285 |
-
|
6286 |
.mec-full-calendar-wrap .mec-totalcal-box .col-md-3:last-child select {
|
6287 |
-
|
6288 |
}
|
6289 |
-
|
6290 |
-
|
6291 |
-
|
6292 |
-
|
6293 |
-
|
6294 |
.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span {
|
6295 |
-
|
6296 |
-
|
6297 |
-
}
|
6298 |
-
|
6299 |
-
|
6300 |
-
|
6301 |
-
|
6302 |
-
|
6303 |
.mec-full-calendar-wrap .mec-totalcal-box {
|
6304 |
-
|
6305 |
}
|
6306 |
-
|
6307 |
.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 {
|
6308 |
-
|
6309 |
}
|
6310 |
-
|
6311 |
.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,
|
6312 |
.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,
|
6313 |
.mec-full-calendar-wrap .mec-totalcal-box .col-md-4 {
|
6314 |
-
|
6315 |
}
|
6316 |
-
|
6317 |
.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select {
|
6318 |
-
|
6319 |
-
|
6320 |
-
}
|
6321 |
-
|
6322 |
-
|
6323 |
-
|
6324 |
-
|
6325 |
-
|
6326 |
.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span {
|
6327 |
-
|
6328 |
-
|
6329 |
}
|
6330 |
-
|
6331 |
.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 {
|
6332 |
-
|
6333 |
}
|
6334 |
-
|
6335 |
.mec-full-calendar-wrap .mec-totalcal-box .col-md-4 {
|
6336 |
-
|
6337 |
-
|
6338 |
-
}
|
6339 |
-
|
6340 |
-
|
6341 |
-
|
6342 |
-
|
6343 |
-
|
6344 |
.mec-full-calendar-wrap .mec-totalcal-box .col-md-4 {
|
6345 |
-
|
6346 |
-
|
6347 |
-
}
|
6348 |
-
|
6349 |
-
|
6350 |
-
|
6351 |
-
|
6352 |
-
|
6353 |
-
.mec-full-calendar-wrap .mec-totalcal-box .col-md-3
|
6354 |
-
|
6355 |
-
}
|
6356 |
-
|
6357 |
.mec-full-calendar-wrap .mec-totalcal-box .col-md-4 {
|
6358 |
-
|
6359 |
-
|
6360 |
}
|
6361 |
-
|
6362 |
.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span {
|
6363 |
-
|
6364 |
-
|
6365 |
-
|
6366 |
}
|
6367 |
|
6368 |
.mec-wrap .mec-totalcal-box .mec-totalcal-view span {
|
6369 |
padding: 0 7px;
|
6370 |
margin-top: 20px;
|
6371 |
-
}
|
6372 |
-
|
6373 |
-
|
6374 |
-
|
6375 |
-
|
6376 |
-
|
6377 |
.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span {
|
6378 |
-
|
6379 |
-
|
6380 |
-
|
6381 |
-
}
|
6382 |
-
|
6383 |
-
|
6384 |
|
6385 |
/* Cal search form */
|
6386 |
.mec-search-form {
|
@@ -6410,7 +6561,7 @@ li.mec-no-event-found .mec-event-title {
|
|
6410 |
|
6411 |
.mec-full-calendar-wrap .mec-search-form .mec-date-search,
|
6412 |
.mec-full-calendar-wrap .mec-search-form .mec-text-input-search {
|
6413 |
-
|
6414 |
}
|
6415 |
|
6416 |
.mec-full-calendar-wrap .mec-search-form .col-md-8,
|
@@ -7320,8 +7471,8 @@ li.mec-no-event-found .mec-event-title {
|
|
7320 |
bottom: -24px;
|
7321 |
margin-left: -11px;
|
7322 |
left: 50%;
|
7323 |
-
|
7324 |
-
|
7325 |
|
7326 |
}
|
7327 |
|
@@ -8852,7 +9003,7 @@ li.mec-no-event-found .mec-event-title {
|
|
8852 |
|
8853 |
.mec-modal-wrap {
|
8854 |
max-width: 60vw;
|
8855 |
-
max-height:90vh !important;
|
8856 |
background: #fff;
|
8857 |
box-shadow: 0 1px 55px rgba(0, 0, 0, 0.5);
|
8858 |
overflow-x: hidden !important;
|
@@ -8919,6 +9070,10 @@ li.mec-no-event-found .mec-event-title {
|
|
8919 |
padding: 30px 60px 30px 15px;
|
8920 |
background: #fff;
|
8921 |
transition: all .3s ease;
|
|
|
|
|
|
|
|
|
8922 |
}
|
8923 |
|
8924 |
.mec-events-toggle .mec-toggle-item-inner:hover {
|
@@ -8926,11 +9081,11 @@ li.mec-no-event-found .mec-event-title {
|
|
8926 |
}
|
8927 |
|
8928 |
.mec-toggle-item-col {
|
8929 |
-
|
8930 |
-
width: 180px;
|
8931 |
-
margin-top: -6px;
|
8932 |
border-right: 1px solid #e3e3e3;
|
8933 |
margin-right: 15px;
|
|
|
|
|
8934 |
}
|
8935 |
|
8936 |
.mec-toggle-item-col .mec-event-date {
|
@@ -8968,7 +9123,11 @@ li.mec-no-event-found .mec-event-title {
|
|
8968 |
font-weight: 600;
|
8969 |
margin-bottom: 0;
|
8970 |
transition: all .3s ease;
|
8971 |
-
display:
|
|
|
|
|
|
|
|
|
8972 |
}
|
8973 |
|
8974 |
.mec-events-toggle .mec-toggle-item-inner span.event-color {
|
@@ -9052,11 +9211,19 @@ li.mec-no-event-found .mec-event-title {
|
|
9052 |
}
|
9053 |
|
9054 |
@media only screen and (max-width: 767px) {
|
9055 |
-
.mec-toggle-item-col {
|
9056 |
float: none;
|
9057 |
width: 100%;
|
9058 |
border-right: none;
|
9059 |
margin-bottom: 5px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9060 |
}
|
9061 |
}
|
9062 |
|
@@ -9601,13 +9768,13 @@ li.mec-no-event-found .mec-event-title {
|
|
9601 |
}
|
9602 |
|
9603 |
@media(min-width: 961px) {
|
9604 |
-
|
9605 |
-
|
9606 |
-
|
9607 |
|
9608 |
-
|
9609 |
-
|
9610 |
-
|
9611 |
}
|
9612 |
|
9613 |
|
@@ -9667,29 +9834,28 @@ li.mec-no-event-found .mec-event-title {
|
|
9667 |
line-height: 1;
|
9668 |
}
|
9669 |
|
9670 |
-
.degrees-mode
|
9671 |
-
|
9672 |
-
|
9673 |
-
|
9674 |
-
|
9675 |
-
|
9676 |
-
|
9677 |
-
|
9678 |
-
|
9679 |
-
|
9680 |
-
|
9681 |
-
|
9682 |
-
left: 16px;
|
9683 |
}
|
9684 |
|
9685 |
.mec-weather-extras {
|
9686 |
-
|
9687 |
-
|
9688 |
-
|
9689 |
-
|
9690 |
-
|
9691 |
-
|
9692 |
-
|
9693 |
}
|
9694 |
|
9695 |
.mec-weather-extras {
|
@@ -11700,78 +11866,79 @@ ul.mec-weekly-view-dates-events article:before,
|
|
11700 |
|
11701 |
/* Booking Cover Overley */
|
11702 |
.mec-events-meta-group-booking {
|
11703 |
-
|
11704 |
}
|
11705 |
|
11706 |
.mec-cover-loader:after {
|
11707 |
-
|
11708 |
-
|
11709 |
-
|
11710 |
-
|
11711 |
-
|
11712 |
-
|
11713 |
-
|
11714 |
-
|
11715 |
}
|
11716 |
|
11717 |
.mec-loader {
|
11718 |
-
|
11719 |
-
|
11720 |
-
|
11721 |
-
|
11722 |
-
|
11723 |
-
|
11724 |
}
|
11725 |
|
11726 |
-
.mec-loader,
|
11727 |
-
|
11728 |
-
|
11729 |
-
|
11730 |
-
|
|
|
11731 |
}
|
11732 |
|
11733 |
.mec-loader {
|
11734 |
-
|
11735 |
-
|
11736 |
-
|
11737 |
-
|
11738 |
-
|
11739 |
-
|
11740 |
-
|
11741 |
-
|
11742 |
-
|
11743 |
-
|
11744 |
-
|
11745 |
}
|
11746 |
|
11747 |
@-webkit-keyframes mecloader {
|
11748 |
-
|
11749 |
-
|
11750 |
-
|
11751 |
-
|
11752 |
|
11753 |
-
|
11754 |
-
|
11755 |
-
|
11756 |
-
|
11757 |
}
|
11758 |
|
11759 |
@keyframes mecloader {
|
11760 |
-
|
11761 |
-
|
11762 |
-
|
11763 |
-
|
11764 |
|
11765 |
-
|
11766 |
-
|
11767 |
-
|
11768 |
-
|
11769 |
}
|
11770 |
|
11771 |
/* Recaptcha Style on booking page */
|
11772 |
.mec-google-recaptcha {
|
11773 |
-
|
11774 |
-
|
11775 |
}
|
11776 |
|
11777 |
/* Bootstrap v3.0.3 * * Copyright 2013 Twitter, Inc * Licensed under the Apache License v2.0 * http://www.apache.org/licenses/LICENSE-2.0 * * Designed and built with all the love in the world @twitter by @mdo and @fat. */
|
@@ -12325,25 +12492,31 @@ ul.mec-weekly-view-dates-events article:before,
|
|
12325 |
.mec-content-notification a {
|
12326 |
margin-left: 5px;
|
12327 |
}
|
|
|
12328 |
.mec-content-notification {
|
12329 |
background: #f7f7f7;
|
12330 |
padding: 10px 10px 10px;
|
12331 |
border: 1px solid #e8e8e8;
|
12332 |
}
|
|
|
12333 |
.mec-content-notification p {
|
12334 |
margin-bottom: 0;
|
12335 |
}
|
12336 |
|
12337 |
/* Advanced Repeating */
|
12338 |
|
12339 |
-
#mec-advanced-wraper div:first-child>ul {
|
|
|
|
|
|
|
12340 |
display: block;
|
12341 |
-
margin: 5px 0;
|
12342 |
padding: 5px 0;
|
12343 |
-
width: 430px;
|
12344 |
-
border: 1px solid #e1e2e3;
|
12345 |
border-radius: 2px;
|
12346 |
-
|
|
|
|
|
|
|
12347 |
}
|
12348 |
|
12349 |
#mec-advanced-wraper div:first-child>ul span {
|
@@ -12363,7 +12536,7 @@ ul.mec-weekly-view-dates-events article:before,
|
|
12363 |
font-weight: 700;
|
12364 |
margin: 0 10px 0 0;
|
12365 |
padding: 4px 0;
|
12366 |
-
border-right: 1px solid #
|
12367 |
}
|
12368 |
|
12369 |
#mec-advanced-wraper div:first-child>ul>ul>li {
|
@@ -12374,134 +12547,359 @@ ul.mec-weekly-view-dates-events article:before,
|
|
12374 |
transition: all .18s ease
|
12375 |
}
|
12376 |
|
12377 |
-
#mec-advanced-wraper div:first-child>ul>ul>li:hover
|
12378 |
-
|
12379 |
-
|
|
|
|
|
12380 |
}
|
12381 |
|
12382 |
/* Search Bar */
|
12383 |
-
.mec-search-bar-wrap .mec-search-form .mec-text-input-search {
|
12384 |
-
|
12385 |
-
|
12386 |
-
.mec-text-input-search+input#mec-search-bar-input { margin-left: -3px; }
|
12387 |
-
.mec-search-bar-wrap input#mec-search-bar-input:hover { background: #000; }
|
12388 |
-
.mec-wrap.mec-search-bar-wrap .mec-totalcal-box input { float: none; }
|
12389 |
|
12390 |
-
|
12391 |
-
|
|
|
12392 |
}
|
12393 |
|
12394 |
-
|
12395 |
-
|
12396 |
-
|
|
|
|
|
|
|
12397 |
}
|
12398 |
|
12399 |
-
|
12400 |
-
|
12401 |
-
|
12402 |
-
.mec-search-bar-wrap.mec-wrap .mec-totalcal-box input[type=text] { width: calc(100% - 36px); }
|
12403 |
-
.mec-search-bar-wrap.mec-wrap .mec-totalcal-box input[type=text]:focus{ border-color: #efefef; }
|
12404 |
-
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 0.3s ease; }
|
12405 |
-
.mec-ajax-search-result-events { background: #ffffff; padding: 10px 20px; border: 1px solid #efefef; border-top: none; }
|
12406 |
-
.mec-ajax-search-result-events article:first-of-type { border: none; }
|
12407 |
-
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; }
|
12408 |
-
.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; }
|
12409 |
-
.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; }
|
12410 |
-
.mec-search-bar-result .mec-event-image { float: left; margin-right: 20px; width: 65px; height: auto; }
|
12411 |
-
.mec-search-bar-result .mec-event-time { font-size: 11px; line-height: 1.1; margin: 0; }
|
12412 |
-
.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; }
|
12413 |
-
.mec-search-bar-result .mec-event-title { font-size: 13px; padding: 0; margin: 10px 0 8px; font-weight: 700; text-transform: uppercase; }
|
12414 |
-
.mec-search-bar-result .mec-event-title a { text-decoration: none; color: #494949; transition: color .3s ease; }
|
12415 |
-
.mec-search-bar-result .mec-event-detail { font-size: 13px; line-height: 1.3; font-family: Roboto, sans-serif; color: #9a9a9a; margin-bottom: 0; }
|
12416 |
|
12417 |
-
|
12418 |
-
|
12419 |
-
|
12420 |
-
.mec-wrap.mec-modern-search-bar .mec-totalcal-box .mec-text-input-search i { position: absolute; background: none; border: none; font-size: 21px; left: 15px; top: calc(50% - 19px); color: #40d9f1; }
|
12421 |
-
.mec-wrap.mec-modern-search-bar .mec-text-input-search { position: relative; height: 58px; }
|
12422 |
-
.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: bold !important; }
|
12423 |
-
.mec-wrap.mec-modern-search-bar .mec-text-input-search+input#mec-search-bar-input { margin-left: 0; }
|
12424 |
-
.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; }
|
12425 |
-
.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap i { 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; font-size: 15px; padding-top: 14px; border-right: 0; color:#40d9f1; }
|
12426 |
-
.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap { min-height: 64px; }
|
12427 |
|
12428 |
-
|
12429 |
-
|
12430 |
-
.mec-wrap.mec-modern-search-bar input#mec-search-bar-input { width: calc(100% - 72%); }
|
12431 |
}
|
12432 |
|
12433 |
-
@media(max-width:
|
12434 |
-
.mec-wrap.mec-
|
12435 |
-
|
12436 |
-
|
12437 |
}
|
12438 |
|
12439 |
-
|
12440 |
-
.mec-
|
12441 |
-
|
|
|
|
|
|
|
|
|
|
|
12442 |
}
|
12443 |
-
|
12444 |
-
|
12445 |
-
|
12446 |
-
|
12447 |
-
height: 4px;
|
12448 |
-
position: absolute;
|
12449 |
-
top: 59px;
|
12450 |
-
left: 0;
|
12451 |
}
|
12452 |
-
|
12453 |
-
|
12454 |
-
font-weight: 600;
|
12455 |
-
padding: 17px 0;
|
12456 |
-
margin-bottom: 28px;
|
12457 |
-
text-transform: uppercase;
|
12458 |
-
border-bottom: 1px solid #e8e8e8;
|
12459 |
position: relative;
|
12460 |
}
|
12461 |
-
|
12462 |
-
|
12463 |
-
|
12464 |
-
.mec-related-event-post figure img {
|
12465 |
-
width: 100%;
|
12466 |
}
|
12467 |
-
|
12468 |
-
|
12469 |
-
|
12470 |
-
position: relative;
|
12471 |
-
max-width: 90%;
|
12472 |
-
padding: 13px 21px 16px 19px;
|
12473 |
}
|
12474 |
-
|
12475 |
-
|
12476 |
-
|
12477 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12478 |
transition: all 0.3s ease;
|
12479 |
}
|
12480 |
|
12481 |
-
|
12482 |
-
|
12483 |
-
|
12484 |
-
|
|
|
12485 |
}
|
12486 |
|
12487 |
-
.mec-
|
12488 |
-
|
12489 |
-
letter-spacing: 0;
|
12490 |
-
border-bottom: 1px solid #e8e8e8;
|
12491 |
-
display: inline-block;
|
12492 |
-
padding-left: 0 !important;
|
12493 |
-
padding-bottom: 10px !important;
|
12494 |
-
margin: 0;
|
12495 |
-
margin-bottom: 20px;
|
12496 |
-
letter-spacing: 1px;
|
12497 |
-
text-transform: capitalize;
|
12498 |
}
|
12499 |
|
12500 |
-
.mec-
|
12501 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12502 |
display: inline-block;
|
12503 |
vertical-align: top;
|
12504 |
-
padding: 0
|
|
|
12505 |
}
|
12506 |
|
12507 |
/* Login Module */
|
@@ -12524,7 +12922,7 @@ article.mec-search-bar-result { text-align: left; margin-bottom: 0; padding-bott
|
|
12524 |
display: inline-block
|
12525 |
}
|
12526 |
|
12527 |
-
.mec-login-forgotpassword
|
12528 |
color: #000;
|
12529 |
}
|
12530 |
|
@@ -12537,26 +12935,26 @@ article.mec-search-bar-result { text-align: left; margin-bottom: 0; padding-bott
|
|
12537 |
|
12538 |
#mec-login-form.mec-login-form .mec-login-input input {
|
12539 |
border: none;
|
12540 |
-
|
12541 |
-
|
12542 |
-
|
12543 |
-
|
12544 |
-
|
12545 |
-
|
12546 |
-
|
12547 |
-
|
12548 |
-
|
12549 |
-
|
12550 |
-
|
12551 |
-
|
12552 |
-
|
12553 |
}
|
12554 |
|
12555 |
#mec-login-form.mec-login-form .mec-login-input label {
|
12556 |
border: 1px solid #e6e6e6;
|
12557 |
height: 52px;
|
12558 |
display: inline-block;
|
12559 |
-
padding:0;
|
12560 |
border-radius: 3px;
|
12561 |
overflow: hidden;
|
12562 |
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
|
@@ -12645,14 +13043,14 @@ article.mec-search-bar-result { text-align: left; margin-bottom: 0; padding-bott
|
|
12645 |
|
12646 |
#mec-login-form.mec-login-form .mec-ajax-login-loading-text {
|
12647 |
position: absolute;
|
12648 |
-
|
12649 |
-
|
12650 |
-
|
12651 |
-
|
12652 |
-
|
12653 |
-
|
12654 |
-
|
12655 |
-
|
12656 |
}
|
12657 |
|
12658 |
#mec-login-form.mec-login-form .mec-ajax-login-loading-text strong {
|
@@ -12696,6 +13094,7 @@ article.mec-search-bar-result { text-align: left; margin-bottom: 0; padding-bott
|
|
12696 |
border-color: #ff5d39;
|
12697 |
border-bottom: none;
|
12698 |
}
|
|
|
12699 |
@keyframes lds-ripple {
|
12700 |
0% {
|
12701 |
top: 28px;
|
@@ -12716,9 +13115,9 @@ article.mec-search-bar-result { text-align: left; margin-bottom: 0; padding-bott
|
|
12716 |
|
12717 |
/* Stripe V3 */
|
12718 |
.mec-book-form-gateway-checkout [id*="mec_do_transaction_stripe_"] .mec-form-row:first-child {
|
12719 |
-
|
12720 |
-
|
12721 |
-
|
12722 |
}
|
12723 |
|
12724 |
.mec-events-meta-group-booking .StripeElement {
|
@@ -12733,19 +13132,898 @@ article.mec-search-bar-result { text-align: left; margin-bottom: 0; padding-bott
|
|
12733 |
transition: box-shadow 150ms ease;
|
12734 |
margin-bottom: 20px;
|
12735 |
background: #fff;
|
12736 |
-
|
12737 |
-
|
12738 |
-
|
12739 |
box-shadow: 0 1px 3px 0 #cfd7df;
|
12740 |
-
|
12741 |
-
|
12742 |
-
|
12743 |
border-color: #fa755a;
|
12744 |
-
|
12745 |
-
|
12746 |
-
|
12747 |
background-color: #fefde5 !important;
|
12748 |
-
|
12749 |
-
|
12750 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12751 |
/* --------------------- */
|
1 |
+
/*----------------------------------
|
2 |
+
Plug-in Name: Modern Events Calendar
|
3 |
+
Author: WEBNUS
|
4 |
+
Author URI: https://webnus.net/
|
5 |
+
Description: Modern Events Calendar
|
6 |
+
License: GNU General Public License
|
7 |
+
/*-----------------------------------------------------------------------------------*/
|
8 |
|
9 |
|
10 |
/* #CSS Base & Typography
|
12 |
.mec-wrap,
|
13 |
.mec-wrap div:not([class^="elementor-"]),
|
14 |
.lity-container {
|
15 |
+
font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
|
16 |
}
|
17 |
|
18 |
.mec-wrap h1,
|
27 |
.entry-content .mec-wrap h4,
|
28 |
.entry-content .mec-wrap h5,
|
29 |
.entry-content .mec-wrap h6 {
|
30 |
+
font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
|
31 |
color: #171c24;
|
32 |
font-weight: 300;
|
33 |
font-style: inherit;
|
144 |
|
145 |
/* Form Builder Button */
|
146 |
.mec-booking-form-container button {
|
147 |
+
display: block !important;
|
148 |
}
|
149 |
|
150 |
/* Distance (Vertical Spaces) */
|
353 |
|
354 |
/* MEC Current Day Event Toggle
|
355 |
-------------------------- */
|
356 |
+
#mec-active-current {
|
357 |
display: block !important;
|
358 |
}
|
359 |
|
360 |
+
.current-hide #mec-active-current {
|
361 |
display: none !important;
|
362 |
}
|
363 |
|
2713 |
}
|
2714 |
|
2715 |
.mec-single-event .mec-book-form-coupon button {
|
2716 |
+
margin-left: 0;
|
2717 |
}
|
2718 |
|
2719 |
.mec-single-event .mec-book-form-gateway-checkout button {
|
2729 |
.mec-single-event label.mec-fill-attendees {
|
2730 |
margin-left: 15px !important;
|
2731 |
}
|
2732 |
+
|
2733 |
.mec-single-event .mec-events-meta-group-booking .mec-event-ticket-available {
|
2734 |
display: block;
|
2735 |
margin-bottom: 20px;
|
3476 |
margin-top: 5px;
|
3477 |
display: inline-block !important;
|
3478 |
}
|
3479 |
+
|
3480 |
@media(max-width: 768px) {
|
3481 |
+
|
3482 |
.mec-single-event .mec-events-meta-group-booking input[data-stripe="exp-month"],
|
3483 |
.mec-single-event .mec-events-meta-group-booking input[data-stripe="exp-year"] {
|
3484 |
width: 100% !important;
|
3715 |
}
|
3716 |
|
3717 |
/* Speaker Widget */
|
3718 |
+
.single-mec-events .mec-speakers-details ul {
|
3719 |
+
padding: 0;
|
3720 |
+
}
|
3721 |
+
|
3722 |
.mec-single-event .mec-speakers-details ul li {
|
3723 |
list-style: none;
|
3724 |
background: #f7f7f7;
|
4549 |
}
|
4550 |
|
4551 |
.mec-event-calendar-classic.mec-event-container-simple .mec-calendar-side .mec-calendar-table {
|
4552 |
+
min-height: unset;
|
4553 |
}
|
4554 |
|
4555 |
.mec-event-container-simple .mec-monthly-tooltip h4 {
|
4556 |
+
font-size: 13px;
|
4557 |
+
font-weight: 500;
|
4558 |
+
margin: 0;
|
4559 |
+
color: #444;
|
4560 |
}
|
4561 |
|
4562 |
.mec-event-container-simple .mec-monthly-tooltip h4:hover {
|
4563 |
+
text-decoration: underline;
|
4564 |
+
color: #111;
|
4565 |
}
|
4566 |
|
4567 |
.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple {
|
4646 |
margin-right: 13px;
|
4647 |
margin-bottom: 1px;
|
4648 |
}
|
4649 |
+
|
4650 |
.mec-tooltip-event-featured img {
|
4651 |
max-width: 120px;
|
4652 |
}
|
4653 |
+
|
4654 |
.mec-tooltip-event-desc {
|
4655 |
font-size: 14px;
|
4656 |
color: #444;
|
4657 |
line-height: 18px;
|
4658 |
}
|
4659 |
+
|
4660 |
.mec-tooltip-event-desc p {
|
4661 |
font-size: 13px;
|
4662 |
line-height: 1.4;
|
4663 |
margin-bottom: 10px;
|
4664 |
}
|
4665 |
+
|
4666 |
.tooltipster-sidetip.tooltipster-shadow .tooltipster-box {
|
4667 |
border-radius: 3px !important;
|
4668 |
border: 1px solid #e2e3e4 !important;
|
4743 |
}
|
4744 |
|
4745 |
@media (max-width:780px) {
|
4746 |
+
.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4 {
|
4747 |
+
word-break: break-all;
|
4748 |
+
font-size: 13px;
|
4749 |
+
}
|
4750 |
}
|
4751 |
|
4752 |
@media (max-width:320px) {
|
4753 |
+
.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4 {
|
4754 |
+
font-size: 10px;
|
4755 |
+
}
|
4756 |
}
|
4757 |
|
4758 |
/* MEC Events - Calendar Daily
|
5381 |
|
5382 |
.mec-skin-grid-container .mec-skin-map-container,
|
5383 |
.mec-skin-list-container .mec-skin-map-container {
|
5384 |
+
margin-bottom: 20px;
|
5385 |
}
|
5386 |
|
5387 |
/* Mec Countdown
|
5530 |
}
|
5531 |
|
5532 |
.mec-success {
|
5533 |
+
color: #0dbf52;
|
5534 |
+
background-color: #cef7ce;
|
5535 |
}
|
5536 |
|
5537 |
.warning-msg {
|
5546 |
|
5547 |
/* Mec Frontend Submission
|
5548 |
-------------------------------- */
|
5549 |
+
.mec-fes-form,
|
5550 |
+
.mec-fes-list {
|
5551 |
+
background: #f8feff;
|
5552 |
+
padding: 30px 3%;
|
5553 |
+
color: #798f96;
|
5554 |
+
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
|
5555 |
+
}
|
5556 |
+
|
5557 |
+
.mec-fes-list ul,.mec-fes-list .mec-fes-list-top-actions {
|
5558 |
+
margin: 0 auto 15px;
|
5559 |
+
max-width: 960px;
|
5560 |
list-style: none;
|
5561 |
}
|
5562 |
|
5569 |
}
|
5570 |
|
5571 |
.mec-fes-list ul li {
|
5572 |
+
padding: 20px 15px;
|
5573 |
+
border-radius: 3px;
|
5574 |
+
margin-bottom: 15px;
|
5575 |
+
border: 1px solid #cfeff5;
|
5576 |
+
box-shadow: 0 2px 6px -4px #cfeff5;
|
5577 |
+
background: #fff;
|
5578 |
line-height: normal;
|
5579 |
}
|
5580 |
|
5588 |
}
|
5589 |
|
5590 |
.mec-fes-list ul li .mec-event-title {
|
5591 |
+
font-size: 17px;
|
5592 |
font-weight: 600;
|
5593 |
+
width: calc(100% - 250px);
|
5594 |
+
display: inline-block;
|
5595 |
+
}
|
5596 |
+
|
5597 |
+
@media (max-width: 600px) {
|
5598 |
+
.mec-fes-list ul li .mec-event-title {
|
5599 |
+
font-size: 13px;
|
5600 |
+
}
|
5601 |
}
|
5602 |
|
5603 |
+
.mec-fes-list .mec-event-status {
|
5604 |
+
color: #fff !important;
|
5605 |
+
border-color: transparent !important;
|
|
|
5606 |
}
|
5607 |
+
|
5608 |
+
.mec-fes-list .mec-book-confirmed,
|
5609 |
+
.mec-fes-form .mec-book-confirmed {
|
5610 |
+
background: #50d477 !important;
|
5611 |
}
|
5612 |
|
5613 |
+
.mec-fes-list .mec-book-pending,
|
5614 |
+
.mec-fes-form .mec-book-pending {
|
5615 |
+
background: #fcbe69 !important;
|
5616 |
}
|
5617 |
|
5618 |
+
.mec-fes-list .mec-book-rejected,
|
5619 |
+
.mec-fes-form .mec-book-rejected {
|
5620 |
+
background: #fe686a !important;
|
5621 |
}
|
5622 |
+
|
5623 |
+
.mec-fes-list .mec-book-other,
|
5624 |
+
.mec-fes-form .mec-book-other {
|
5625 |
+
background: #40d9f1 !important;
|
5626 |
}
|
5627 |
|
5628 |
+
|
5629 |
+
.mec-fes-list ul li .mec-fes-event-remove,
|
5630 |
+
.mec-fes-list ul li .mec-fes-event-view {
|
5631 |
font-size: 11px;
|
5632 |
+
padding: 0;
|
5633 |
+
border: 0;
|
5634 |
+
background: #f7f8f9;
|
5635 |
float: right;
|
5636 |
margin-left: 5px;
|
5637 |
+
border-radius: 2px;
|
5638 |
+
transition: all 0.2s ease;
|
5639 |
+
}
|
5640 |
+
|
5641 |
+
.mec-fes-list ul li .mec-fes-event-remove,
|
5642 |
+
.mec-fes-list ul li .mec-fes-event-view a,
|
5643 |
+
.mec-fes-list ul li .mec-fes-event-export a {
|
5644 |
+
padding: 4px 8px;
|
5645 |
+
display: inline-block;
|
5646 |
+
border: 1px solid #e7e8e9;
|
5647 |
+
border-radius: 2px;
|
5648 |
+
color: #789;
|
5649 |
+
}
|
5650 |
+
|
5651 |
+
@media (max-width: 600px) {
|
5652 |
+
|
5653 |
+
.mec-fes-list ul li .mec-fes-event-remove,
|
5654 |
+
.mec-fes-list ul li .mec-fes-event-view a,
|
5655 |
+
.mec-fes-list ul li .mec-fes-event-export a {
|
5656 |
+
font-size: 10px;
|
5657 |
+
}
|
5658 |
}
|
5659 |
|
5660 |
.mec-fes-list ul li .mec-fes-event-remove:hover {
|
5661 |
cursor: pointer;
|
5662 |
+
background: #f96f8a;
|
5663 |
+
border-color: #f96f8a;
|
5664 |
+
color: #fff;
|
5665 |
}
|
5666 |
|
5667 |
+
.mec-fes-list ul li .mec-fes-event-view a:hover,
|
5668 |
+
.mec-fes-list ul li .mec-fes-event-export a:hover {
|
5669 |
+
background: #40d9f1;
|
5670 |
+
color: #fff;
|
5671 |
+
border-color: #40d9f1;
|
|
|
|
|
5672 |
}
|
5673 |
|
5674 |
+
|
5675 |
+
.mec-fes-form-top-actions a,
|
5676 |
+
.mec-fes-list-top-actions a {
|
5677 |
position: relative;
|
5678 |
border: none;
|
5679 |
+
border-radius: 3px;
|
5680 |
color: #fff !important;
|
5681 |
display: inline-block;
|
5682 |
+
font-size: 13px;
|
|
|
5683 |
line-height: 1;
|
5684 |
+
text-transform: none;
|
5685 |
+
font-weight: 400;
|
5686 |
text-decoration: none;
|
5687 |
cursor: pointer;
|
5688 |
+
margin-bottom: 20px !important;
|
5689 |
margin-right: 10px;
|
5690 |
line-height: 1;
|
5691 |
+
letter-spacing: 0;
|
5692 |
+
padding: 15px 22px;
|
5693 |
background: #39c36e;
|
5694 |
+
box-shadow: 0 1px 7px -3px #39c36e !important;
|
5695 |
+
-webkit-transition: all .21s ease;
|
5696 |
+
-moz-transition: all .21s ease;
|
5697 |
+
transition: all .21s ease;
|
5698 |
}
|
5699 |
|
5700 |
.mec-fes-list-top-actions a:hover,
|
5703 |
color: #fff;
|
5704 |
}
|
5705 |
|
5706 |
+
.mec-fes-list-top-actions a {
|
5707 |
+
font-weight: 600;
|
5708 |
+
text-transform: capitalize;
|
5709 |
+
}
|
5710 |
+
|
5711 |
+
.mec-fes-form-top-actions a:before {
|
5712 |
+
content: "";
|
5713 |
+
border: solid #fff;
|
5714 |
+
border-width: 0 2px 2px 0;
|
5715 |
+
display: inline-block;
|
5716 |
+
padding: 6px;
|
5717 |
+
margin-right: 5px;
|
5718 |
+
vertical-align: sub;
|
5719 |
+
transform: rotate(135deg);
|
5720 |
+
-webkit-transform: rotate(135deg);
|
5721 |
+
}
|
5722 |
+
|
5723 |
.mec-fes-form .mec-form-row,
|
5724 |
.mec-fes-list .mec-form-row {
|
5725 |
+
margin-bottom: 10px;
|
5726 |
clear: both;
|
5727 |
}
|
5728 |
|
5729 |
.mec-fes-form label {
|
|
|
5730 |
font-size: 13px;
|
5731 |
display: block;
|
5732 |
+
color: #798f96;
|
5733 |
+
font-weight: 400;
|
5734 |
+
padding: 0 0 4px 2px;
|
5735 |
}
|
5736 |
|
5737 |
+
.mec-fes-form input+label {
|
5738 |
+
padding-left: 3px;
|
5739 |
+
margin: 0;
|
5740 |
+
display: inline-block;
|
5741 |
+
vertical-align: top;
|
5742 |
+
}
|
5743 |
+
|
5744 |
+
.mec-fes-form .post-status {
|
5745 |
+
float: right !important;
|
5746 |
+
margin: 0px 5px;
|
5747 |
+
color: #fff;
|
5748 |
+
padding: 0px 10px;
|
5749 |
+
border-radius: 12px;
|
5750 |
+
font-style: italic;
|
5751 |
+
font-size: 18px;
|
5752 |
}
|
5753 |
|
5754 |
.mec-fes-form input[type=text],
|
5758 |
.mec-fes-form input[type=tel],
|
5759 |
.mec-fes-form textarea,
|
5760 |
.mec-fes-form select {
|
|
|
5761 |
min-width: inherit;
|
5762 |
width: auto;
|
5763 |
display: inline;
|
|
|
5764 |
min-height: 30px;
|
5765 |
font-size: 13px;
|
|
|
5766 |
padding: 10px;
|
5767 |
margin-bottom: 20px;
|
|
|
5768 |
clear: both;
|
5769 |
+
background: #fff;
|
5770 |
+
border: 1px solid #cfeff5;
|
5771 |
+
box-shadow: 0 2px 5px rgba(207, 239, 245, 0.38) inset;
|
5772 |
+
border-radius: 3px;
|
5773 |
+
height: 40px;
|
5774 |
+
max-width: 280px;
|
5775 |
+
color: #798f96;
|
5776 |
+
}
|
5777 |
+
|
5778 |
+
.mec-fes-form input {
|
5779 |
+
background: #fff !important;
|
5780 |
+
border-radius: 3px !important;
|
5781 |
+
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
|
5782 |
+
}
|
5783 |
+
|
5784 |
+
.mec-fes-form textarea {
|
5785 |
+
height: 80px;
|
5786 |
+
}
|
5787 |
+
|
5788 |
+
.mec-fes-form input::-webkit-input-placeholder {
|
5789 |
+
color: #798f96;
|
5790 |
+
;
|
5791 |
+
}
|
5792 |
+
|
5793 |
+
.mec-fes-form input::-moz-placeholder {
|
5794 |
+
color: #798f96;
|
5795 |
+
;
|
5796 |
+
}
|
5797 |
+
|
5798 |
+
.mec-fes-form input:-ms-input-placeholder {
|
5799 |
+
color: #798f96;
|
5800 |
+
;
|
5801 |
+
}
|
5802 |
+
|
5803 |
+
.mec-fes-form input:-moz-placeholder {
|
5804 |
+
color: #798f96;
|
5805 |
+
;
|
5806 |
}
|
5807 |
|
5808 |
#mec_more_info_target {
|
5830 |
}
|
5831 |
}
|
5832 |
|
5833 |
+
|
5834 |
.mec-fes-form input[type=text]#mec_fes_title {
|
5835 |
+
padding: 5px 10px;
|
5836 |
+
min-height: 32px;
|
5837 |
+
height: 50px;
|
5838 |
+
background: #fff !important;
|
5839 |
+
max-width: 100%;
|
5840 |
+
font-size: 19px;
|
5841 |
font-weight: 400;
|
5842 |
}
|
5843 |
|
5883 |
}
|
5884 |
|
5885 |
.mec-fes-form.mec-fes-form .mec-tooltip {
|
5886 |
+
display: inline;
|
5887 |
}
|
5888 |
|
5889 |
.mec-fes-form-cntt .dashicons-editor-help {
|
5890 |
+
display: block;
|
5891 |
}
|
5892 |
|
5893 |
+
.mec-fes-form .mec-tooltip:hover:after,
|
5894 |
+
.mec-fes-form .mec-tooltip:hover:before {
|
5895 |
+
display: none
|
5896 |
}
|
5897 |
|
5898 |
.mec-fes-form.mec-fes-form .mec-tooltip {
|
5899 |
+
display: inline-flex;
|
5900 |
+
bottom: 7px
|
5901 |
}
|
5902 |
|
5903 |
.mec-fes-form .mec-tooltip .box {
|
5904 |
+
min-width: 300px;
|
5905 |
+
max-width: 600px;
|
5906 |
+
display: inline-block;
|
5907 |
+
left: 26px;
|
5908 |
+
top: 50%;
|
5909 |
+
transform: translateY(-50%);
|
5910 |
+
padding: 0;
|
5911 |
+
margin-top: 8px;
|
5912 |
+
background-color: #535a61;
|
5913 |
+
color: #fff;
|
5914 |
+
font-weight: 300;
|
5915 |
+
font-size: 14px;
|
5916 |
+
letter-spacing: .5px;
|
5917 |
+
line-height: 1.3;
|
5918 |
+
position: absolute;
|
5919 |
+
z-index: 9999999;
|
5920 |
+
box-sizing: border-box;
|
5921 |
+
border-radius: 6px;
|
5922 |
+
box-shadow: 0 4px 45px -8px #444b50;
|
5923 |
+
visibility: hidden;
|
5924 |
+
opacity: 0;
|
5925 |
+
transition: opacity .23s
|
5926 |
}
|
5927 |
|
5928 |
+
#webnus-dashboard .mec-fes-form .mec-tooltip .box p,
|
5929 |
+
.mec-fes-form .mec-tooltip .box p {
|
5930 |
+
color: #fff;
|
5931 |
+
font-size: 14px;
|
5932 |
+
line-height: 1.3;
|
5933 |
+
margin: 0
|
5934 |
}
|
5935 |
|
5936 |
.mec-fes-form .mec-tooltip:hover .box {
|
5937 |
+
visibility: visible;
|
5938 |
+
opacity: 1
|
5939 |
}
|
5940 |
|
5941 |
.mec-fes-form .mec-tooltip:hover .box {
|
5942 |
+
padding: 20px;
|
5943 |
+
border-radius: 8px
|
5944 |
}
|
5945 |
|
5946 |
.mec-fes-form .mec-tooltip .box h5 {
|
5947 |
+
color: #fff;
|
5948 |
+
font-size: 17px;
|
5949 |
+
font-weight: 600;
|
5950 |
+
margin: -30px -20px;
|
5951 |
+
padding: 20px 0;
|
5952 |
+
text-align: center;
|
5953 |
+
margin-bottom: 10px;
|
5954 |
+
background: #3a3f44;
|
5955 |
+
border-bottom: 1px solid #32363a;
|
5956 |
+
border-radius: 6px 6px 0 0;
|
5957 |
+
z-index: 9999
|
5958 |
}
|
5959 |
|
5960 |
+
#webnus-dashboard .mec-fes-form .mec-tooltip .box p a,
|
5961 |
+
.mec-fes-form .mec-tooltip .box p a {
|
5962 |
+
color: #40d9f1;
|
5963 |
+
margin-top: 10px;
|
5964 |
+
margin-left: 0;
|
5965 |
+
font-weight: 400;
|
5966 |
+
position: relative;
|
5967 |
+
text-decoration: none;
|
5968 |
+
display: block;
|
5969 |
+
width: max-content
|
5970 |
}
|
5971 |
|
5972 |
.mec-fes-form .mec-tooltip .box a:hover {
|
5973 |
+
color: #f90
|
5974 |
}
|
5975 |
|
5976 |
.mec-fes-form .mec-tooltip .box:after {
|
5977 |
+
display: block;
|
5978 |
+
position: absolute !important;
|
5979 |
+
top: 100% !important;
|
5980 |
+
right: 50% !important;
|
5981 |
+
margin-top: -6px !important;
|
5982 |
+
margin-right: -6px !important;
|
5983 |
+
width: 12px !important;
|
5984 |
+
height: 24px !important;
|
5985 |
+
overflow: hidden !important;
|
5986 |
+
transform: rotate(-90deg) !important
|
5987 |
}
|
5988 |
|
5989 |
.mec-fes-form .mec-tooltip .box:before {
|
5990 |
+
display: block;
|
5991 |
+
content: '' !important;
|
5992 |
+
position: absolute !important;
|
5993 |
+
width: 12px;
|
5994 |
+
height: 12px;
|
5995 |
+
left: -10px !important;
|
5996 |
+
top: 50% !important;
|
5997 |
+
transform: translate(50%, -50%) rotate(-45deg) !important;
|
5998 |
+
background-color: #535a61 !important;
|
5999 |
+
box-shadow: 0 8px 9px -4px #535a61 !important;
|
6000 |
+
z-index: 0 !important
|
6001 |
}
|
6002 |
|
6003 |
.mec-fes-form .mec-tooltip .box.top {
|
6004 |
+
left: 50%;
|
6005 |
+
top: 0;
|
6006 |
+
transform: translate(-50%, -100%);
|
6007 |
+
margin-top: 0;
|
6008 |
+
margin-left: -10px
|
6009 |
}
|
6010 |
|
6011 |
.mec-fes-form .mec-tooltip .box.top:after {
|
6012 |
+
top: 50% !important;
|
6013 |
+
right: 100% !important
|
6014 |
}
|
6015 |
|
6016 |
.mec-fes-form .mec-tooltip .box.top:before {
|
6017 |
+
left: 50% !important;
|
6018 |
+
top: 100% !important
|
6019 |
}
|
6020 |
|
6021 |
.mec-fes-form .mec-tooltip .box.bottom {
|
6022 |
+
left: 50%;
|
6023 |
+
top: auto;
|
6024 |
+
bottom: 0;
|
6025 |
+
transform: translate(-50%, 100%);
|
6026 |
+
margin-bottom: -20px;
|
6027 |
+
margin-left: -10px
|
6028 |
}
|
6029 |
|
6030 |
.mec-fes-form .mec-tooltip .box.bottom:after {
|
6031 |
+
top: 0 !important;
|
6032 |
+
right: 50% !important;
|
6033 |
+
background-color: #3a3f44 !important
|
6034 |
}
|
6035 |
|
6036 |
.mec-fes-form .mec-tooltip .box.bottom:before {
|
6037 |
+
left: 50% !important;
|
6038 |
+
top: -7px !important;
|
6039 |
+
transform: translateX(-50%);
|
6040 |
+
background-color: #3a3f44 !important
|
6041 |
}
|
6042 |
|
6043 |
.mec-fes-form .mec-tooltip .box.left {
|
6044 |
+
left: auto;
|
6045 |
+
right: 26px;
|
6046 |
+
top: 50%;
|
6047 |
+
transform: translateY(-50%)
|
6048 |
}
|
6049 |
|
6050 |
.mec-fes-form .mec-tooltip .box.left:before {
|
6051 |
+
right: 0 !important;
|
6052 |
+
left: auto !important;
|
6053 |
+
top: 50% !important
|
6054 |
}
|
6055 |
|
6056 |
.mec-fes-form .mec-tooltip {
|
6057 |
+
display: inline-block;
|
6058 |
+
position: relative;
|
6059 |
+
margin-right: 10px;
|
6060 |
+
cursor: help;
|
6061 |
+
bottom: 5px;
|
6062 |
+
left: 3px;
|
6063 |
}
|
6064 |
|
6065 |
.mec-fes-form .mec-tooltip:last-child {
|
6066 |
+
margin-right: 0
|
6067 |
}
|
6068 |
|
6069 |
.mec-fes-form .mec-tooltip:hover:after {
|
6070 |
+
background: #313130;
|
6071 |
+
border-radius: 5px;
|
6072 |
+
bottom: 24px;
|
6073 |
+
color: #fff;
|
6074 |
+
content: attr(title);
|
6075 |
+
left: -75px;
|
6076 |
+
padding: 10px;
|
6077 |
+
position: absolute;
|
6078 |
+
z-index: 98;
|
6079 |
+
width: 240px
|
6080 |
}
|
6081 |
|
6082 |
.mec-fes-form .mec-tooltip:hover:before {
|
6083 |
+
border: solid;
|
6084 |
+
border-color: #313130 transparent;
|
6085 |
+
border-width: 6px 6px 0;
|
6086 |
+
bottom: 18px;
|
6087 |
+
content: "";
|
6088 |
+
left: 30%;
|
6089 |
+
position: absolute;
|
6090 |
+
z-index: 99
|
6091 |
}
|
6092 |
|
6093 |
.mec-fes-form .mec-tooltip .dashicons-before:before {
|
6094 |
+
font-size: 24px;
|
6095 |
+
color: #008aff;
|
6096 |
+
line-height: 37px
|
6097 |
}
|
6098 |
|
6099 |
.mec-fes-form .mec-tooltip a:focus {
|
6100 |
+
box-shadow: none
|
6101 |
}
|
6102 |
|
6103 |
.mec-form-row .bootstrap_unvalid {
|
6104 |
+
display: block;
|
6105 |
+
border: 2px solid red;
|
6106 |
+
position: relative;
|
6107 |
+
display: inline-block;
|
6108 |
+
border-bottom: 1px dotted #000
|
6109 |
}
|
6110 |
|
6111 |
.mec-fes-form .mec-tooltiptext {
|
6112 |
+
visibility: hidden;
|
6113 |
+
width: 120px;
|
6114 |
+
background-color: red;
|
6115 |
+
color: #fff;
|
6116 |
+
text-align: center;
|
6117 |
+
border-radius: 6px;
|
6118 |
+
padding: 5px 0;
|
6119 |
+
position: absolute;
|
6120 |
+
z-index: 1
|
6121 |
}
|
6122 |
|
6123 |
.mec-fes-form .mec-tooltip .content p a {
|
6124 |
+
display: none;
|
6125 |
}
|
6126 |
|
6127 |
@media only screen and (min-width: 961px) {
|
6145 |
}
|
6146 |
|
6147 |
.mec-fes-form .mec-meta-box-fields {
|
6148 |
+
padding: 0 20px 20px;
|
6149 |
+
border: 1px solid #cfeff5;
|
6150 |
+
margin-bottom: 20px !important;
|
6151 |
+
box-shadow: 0 2px 6px -3px #cfeff5;
|
6152 |
+
border-radius: 3px;
|
6153 |
+
background: #fff;
|
6154 |
}
|
6155 |
|
6156 |
.mec-fes-form .mec-meta-box-fields h4 {
|
6157 |
+
margin: 0 -20px;
|
6158 |
font-size: 15px;
|
6159 |
+
font-weight: 600;
|
6160 |
+
letter-spacing: 0;
|
6161 |
+
color: #40d9f1;
|
6162 |
+
text-transform: capitalize;
|
6163 |
+
padding: 15px 20px;
|
6164 |
+
background: #ecfcff;
|
6165 |
margin-bottom: 20px;
|
6166 |
+
border-radius: 3px;
|
6167 |
}
|
6168 |
|
6169 |
.mec-fes-sub-button {
|
6171 |
}
|
6172 |
|
6173 |
.mec-available-color-row span.color-selected {
|
|
|
6174 |
border: 3px solid #fff;
|
6175 |
box-sizing: content-box;
|
6176 |
+
box-shadow: 0 0 0 2px #40d9f1, 0 2px 8px -1px #40d9f1;
|
6177 |
}
|
6178 |
|
6179 |
.mec-fes-loading:before {
|
6184 |
margin-left: 47%;
|
6185 |
}
|
6186 |
|
6187 |
+
|
6188 |
.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type="text"] {
|
6189 |
+
width: 190px;
|
6190 |
margin-right: 1.4%;
|
6191 |
}
|
6192 |
|
6193 |
+
.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type="text"].mec-col-1,
|
6194 |
+
.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type="text"].mec-col-2 {
|
6195 |
+
width: 120px;
|
6196 |
+
margin-right: 10px;
|
6197 |
}
|
6198 |
|
6199 |
+
.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].widefat {
|
6200 |
+
width: 100%;
|
6201 |
}
|
6202 |
|
6203 |
+
.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row {
|
6204 |
+
border-bottom: none;
|
6205 |
+
padding-bottom: 10px;
|
6206 |
}
|
6207 |
|
6208 |
.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type="text"].mec-col-6 {
|
6214 |
padding: 9px 26px;
|
6215 |
}
|
6216 |
|
6217 |
+
.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row button.mec-add-hourly-schedule-button {
|
6218 |
+
font-size: 12px;
|
6219 |
+
height: 30px;
|
6220 |
+
line-height: 25px;
|
6221 |
+
}
|
6222 |
+
|
6223 |
+
.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row .description {
|
6224 |
+
display: inline-block;
|
6225 |
+
border-left: 1px dashed #bfcacc;
|
6226 |
+
margin-left: 12px;
|
6227 |
+
line-height: 28px;
|
6228 |
+
padding-left: 12px;
|
6229 |
+
margin-top: 5px;
|
6230 |
+
font-style: italic;
|
6231 |
+
}
|
6232 |
+
|
6233 |
@media only screen and (max-width: 768px) {
|
6234 |
.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type="text"] {
|
6235 |
width: 100% !important;
|
6236 |
}
|
6237 |
}
|
6238 |
|
6239 |
+
#mec_fes_form_message {
|
6240 |
+
max-width: 838px;
|
6241 |
+
margin: 10px auto;
|
6242 |
+
display: block !important;
|
6243 |
+
text-align: center;
|
6244 |
+
}
|
6245 |
+
|
6246 |
/* MEC Total Calendar
|
6247 |
-------------------------------- */
|
6248 |
.mec-wrap .mec-totalcal-box {
|
6413 |
@media (min-width:961px) and (max-width:1200px) {
|
6414 |
|
6415 |
.mec-full-calendar-wrap .mec-totalcal-box {
|
6416 |
+
padding: 20px 20px;
|
6417 |
}
|
6418 |
+
|
6419 |
.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 {
|
6420 |
+
width: 50%;
|
6421 |
}
|
6422 |
+
|
6423 |
.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,
|
6424 |
.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,
|
6425 |
.mec-full-calendar-wrap .mec-totalcal-box .col-md-4 {
|
6426 |
+
padding-bottom: 20px !important;
|
6427 |
}
|
6428 |
|
6429 |
.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select {
|
6430 |
+
min-width: calc(100% - 36px);
|
6431 |
}
|
6432 |
+
|
6433 |
.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select {
|
6434 |
+
min-width: calc(30% - 10px);
|
6435 |
}
|
6436 |
+
|
6437 |
.mec-full-calendar-wrap .mec-totalcal-box .col-md-3:last-child select {
|
6438 |
+
min-width: calc(50% - 19px);
|
6439 |
}
|
6440 |
+
|
6441 |
+
.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view {
|
6442 |
+
margin-right: 10px;
|
6443 |
+
}
|
6444 |
+
|
6445 |
.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span {
|
6446 |
+
font-size: 10px;
|
6447 |
+
text-align: center;
|
6448 |
+
}
|
6449 |
+
|
6450 |
+
}
|
6451 |
+
|
6452 |
+
@media (max-width:960px) {
|
6453 |
+
|
6454 |
.mec-full-calendar-wrap .mec-totalcal-box {
|
6455 |
+
padding: 20px 20px;
|
6456 |
}
|
6457 |
+
|
6458 |
.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 {
|
6459 |
+
width: 50%;
|
6460 |
}
|
6461 |
+
|
6462 |
.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,
|
6463 |
.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,
|
6464 |
.mec-full-calendar-wrap .mec-totalcal-box .col-md-4 {
|
6465 |
+
padding-bottom: 10px !important;
|
6466 |
}
|
6467 |
+
|
6468 |
.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select {
|
6469 |
+
min-width: calc(100% - 36px);
|
6470 |
+
margin-bottom: 10px;
|
6471 |
+
}
|
6472 |
+
|
6473 |
+
.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view {
|
6474 |
+
margin-right: 10px;
|
6475 |
+
}
|
6476 |
+
|
6477 |
.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span {
|
6478 |
+
font-size: 10px;
|
6479 |
+
text-align: center;
|
6480 |
}
|
6481 |
+
|
6482 |
.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 {
|
6483 |
+
width: 100%;
|
6484 |
}
|
6485 |
+
|
6486 |
.mec-full-calendar-wrap .mec-totalcal-box .col-md-4 {
|
6487 |
+
position: absolute;
|
6488 |
+
top: 20px;
|
6489 |
+
}
|
6490 |
+
|
6491 |
+
}
|
6492 |
+
|
6493 |
+
@media (min-width:780px) and (max-width:960px) {
|
6494 |
+
|
6495 |
.mec-full-calendar-wrap .mec-totalcal-box .col-md-4 {
|
6496 |
+
position: absolute;
|
6497 |
+
top: 20px;
|
6498 |
+
}
|
6499 |
+
|
6500 |
+
}
|
6501 |
+
|
6502 |
+
@media(max-width:780px) {
|
6503 |
+
|
6504 |
+
.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select {
|
6505 |
+
width: calc(50% - 18px) !important;
|
6506 |
+
}
|
6507 |
+
|
6508 |
.mec-full-calendar-wrap .mec-totalcal-box .col-md-4 {
|
6509 |
+
position: unset;
|
6510 |
+
padding-right: 0;
|
6511 |
}
|
6512 |
+
|
6513 |
.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span {
|
6514 |
+
min-width: 20%;
|
6515 |
+
text-align: center;
|
6516 |
+
font-size: 10px;
|
6517 |
}
|
6518 |
|
6519 |
.mec-wrap .mec-totalcal-box .mec-totalcal-view span {
|
6520 |
padding: 0 7px;
|
6521 |
margin-top: 20px;
|
6522 |
+
}
|
6523 |
+
|
6524 |
+
}
|
6525 |
+
|
6526 |
+
@media(max-width:480px) {
|
6527 |
+
|
6528 |
.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span {
|
6529 |
+
min-width: 20%;
|
6530 |
+
text-align: center;
|
6531 |
+
font-size: 10px;
|
6532 |
+
}
|
6533 |
+
|
6534 |
+
}
|
6535 |
|
6536 |
/* Cal search form */
|
6537 |
.mec-search-form {
|
6561 |
|
6562 |
.mec-full-calendar-wrap .mec-search-form .mec-date-search,
|
6563 |
.mec-full-calendar-wrap .mec-search-form .mec-text-input-search {
|
6564 |
+
width: 100%;
|
6565 |
}
|
6566 |
|
6567 |
.mec-full-calendar-wrap .mec-search-form .col-md-8,
|
7471 |
bottom: -24px;
|
7472 |
margin-left: -11px;
|
7473 |
left: 50%;
|
7474 |
+
transform: rotate(90deg);
|
7475 |
+
}
|
7476 |
|
7477 |
}
|
7478 |
|
9003 |
|
9004 |
.mec-modal-wrap {
|
9005 |
max-width: 60vw;
|
9006 |
+
max-height: 90vh !important;
|
9007 |
background: #fff;
|
9008 |
box-shadow: 0 1px 55px rgba(0, 0, 0, 0.5);
|
9009 |
overflow-x: hidden !important;
|
9070 |
padding: 30px 60px 30px 15px;
|
9071 |
background: #fff;
|
9072 |
transition: all .3s ease;
|
9073 |
+
min-height: 100px;
|
9074 |
+
display: table;
|
9075 |
+
width: 100%;
|
9076 |
+
border-collapse: separate;
|
9077 |
}
|
9078 |
|
9079 |
.mec-events-toggle .mec-toggle-item-inner:hover {
|
9081 |
}
|
9082 |
|
9083 |
.mec-toggle-item-col {
|
9084 |
+
width: 200px;
|
|
|
|
|
9085 |
border-right: 1px solid #e3e3e3;
|
9086 |
margin-right: 15px;
|
9087 |
+
display: table-cell;
|
9088 |
+
padding-right: 5px;
|
9089 |
}
|
9090 |
|
9091 |
.mec-toggle-item-col .mec-event-date {
|
9123 |
font-weight: 600;
|
9124 |
margin-bottom: 0;
|
9125 |
transition: all .3s ease;
|
9126 |
+
display: table-cell;
|
9127 |
+
text-align: left;
|
9128 |
+
max-width: calc(100% - 200px);
|
9129 |
+
padding-left: 15px;
|
9130 |
+
vertical-align: middle;
|
9131 |
}
|
9132 |
|
9133 |
.mec-events-toggle .mec-toggle-item-inner span.event-color {
|
9211 |
}
|
9212 |
|
9213 |
@media only screen and (max-width: 767px) {
|
9214 |
+
.mec-toggle-item-inner .mec-toggle-item-col {
|
9215 |
float: none;
|
9216 |
width: 100%;
|
9217 |
border-right: none;
|
9218 |
margin-bottom: 5px;
|
9219 |
+
display: block;
|
9220 |
+
max-width: 100%;
|
9221 |
+
padding-left: 15px;
|
9222 |
+
}
|
9223 |
+
.mec-events-toggle .mec-toggle-title {
|
9224 |
+
display: block;
|
9225 |
+
width: 100%;
|
9226 |
+
max-width: 100%;
|
9227 |
}
|
9228 |
}
|
9229 |
|
9768 |
}
|
9769 |
|
9770 |
@media(min-width: 961px) {
|
9771 |
+
.mec-timetable-col-7 {
|
9772 |
+
width: 14.28%;
|
9773 |
+
}
|
9774 |
|
9775 |
+
.mec-timetable-col-6 {
|
9776 |
+
width: 16.6666%;
|
9777 |
+
}
|
9778 |
}
|
9779 |
|
9780 |
|
9834 |
line-height: 1;
|
9835 |
}
|
9836 |
|
9837 |
+
.degrees-mode {
|
9838 |
+
background: rgba(0, 0, 0, .2);
|
9839 |
+
cursor: pointer;
|
9840 |
+
font-weight: 300;
|
9841 |
+
font-size: 18px;
|
9842 |
+
padding: 4px 5px;
|
9843 |
+
line-height: 1;
|
9844 |
+
color: #fff;
|
9845 |
+
position: absolute;
|
9846 |
+
border-radius: 8px;
|
9847 |
+
bottom: 16px;
|
9848 |
+
left: 16px;
|
|
|
9849 |
}
|
9850 |
|
9851 |
.mec-weather-extras {
|
9852 |
+
width: auto;
|
9853 |
+
padding: 10px 15px 0 15px;
|
9854 |
+
float: right;
|
9855 |
+
min-height: 80px;
|
9856 |
+
color: #fff;
|
9857 |
+
font-size: 13px;
|
9858 |
+
line-height: 1
|
9859 |
}
|
9860 |
|
9861 |
.mec-weather-extras {
|
11866 |
|
11867 |
/* Booking Cover Overley */
|
11868 |
.mec-events-meta-group-booking {
|
11869 |
+
position: relative;
|
11870 |
}
|
11871 |
|
11872 |
.mec-cover-loader:after {
|
11873 |
+
content: '';
|
11874 |
+
position: absolute;
|
11875 |
+
top: 0;
|
11876 |
+
right: 0;
|
11877 |
+
left: 0;
|
11878 |
+
bottom: 0;
|
11879 |
+
background: rgba(255, 255, 255, 0.5);
|
11880 |
+
z-index: 99999;
|
11881 |
}
|
11882 |
|
11883 |
.mec-loader {
|
11884 |
+
background: rgba(0, 0, 0, 0);
|
11885 |
+
position: absolute;
|
11886 |
+
top: 50%;
|
11887 |
+
left: 50%;
|
11888 |
+
transform: translate(-50%, -50%);
|
11889 |
+
z-index: 9;
|
11890 |
}
|
11891 |
|
11892 |
+
.mec-loader,
|
11893 |
+
.mec-loader:after {
|
11894 |
+
border-radius: 50%;
|
11895 |
+
width: 5em;
|
11896 |
+
height: 5em;
|
11897 |
+
z-index: 999999999999;
|
11898 |
}
|
11899 |
|
11900 |
.mec-loader {
|
11901 |
+
font-size: 10px;
|
11902 |
+
text-indent: -9999em;
|
11903 |
+
border-top: 0.5em solid rgba(0, 0, 0, 0.2);
|
11904 |
+
border-right: 0.5em solid rgba(0, 0, 0, 0.2);
|
11905 |
+
border-bottom: 0.5em solid rgba(0, 0, 0, 0.2);
|
11906 |
+
border-left: 0.5em solid #ffffff;
|
11907 |
+
-webkit-transform: translateZ(0);
|
11908 |
+
-ms-transform: translateZ(0);
|
11909 |
+
transform: translateZ(0);
|
11910 |
+
-webkit-animation: mecloader 1.1s infinite linear;
|
11911 |
+
animation: mecloader 1.1s infinite linear;
|
11912 |
}
|
11913 |
|
11914 |
@-webkit-keyframes mecloader {
|
11915 |
+
0% {
|
11916 |
+
-webkit-transform: rotate(0deg);
|
11917 |
+
transform: rotate(0deg);
|
11918 |
+
}
|
11919 |
|
11920 |
+
100% {
|
11921 |
+
-webkit-transform: rotate(360deg);
|
11922 |
+
transform: rotate(360deg);
|
11923 |
+
}
|
11924 |
}
|
11925 |
|
11926 |
@keyframes mecloader {
|
11927 |
+
0% {
|
11928 |
+
-webkit-transform: rotate(0deg);
|
11929 |
+
transform: rotate(0deg);
|
11930 |
+
}
|
11931 |
|
11932 |
+
100% {
|
11933 |
+
-webkit-transform: rotate(360deg);
|
11934 |
+
transform: rotate(360deg);
|
11935 |
+
}
|
11936 |
}
|
11937 |
|
11938 |
/* Recaptcha Style on booking page */
|
11939 |
.mec-google-recaptcha {
|
11940 |
+
margin: 0 0 20px 16px;
|
11941 |
+
|
11942 |
}
|
11943 |
|
11944 |
/* Bootstrap v3.0.3 * * Copyright 2013 Twitter, Inc * Licensed under the Apache License v2.0 * http://www.apache.org/licenses/LICENSE-2.0 * * Designed and built with all the love in the world @twitter by @mdo and @fat. */
|
12492 |
.mec-content-notification a {
|
12493 |
margin-left: 5px;
|
12494 |
}
|
12495 |
+
|
12496 |
.mec-content-notification {
|
12497 |
background: #f7f7f7;
|
12498 |
padding: 10px 10px 10px;
|
12499 |
border: 1px solid #e8e8e8;
|
12500 |
}
|
12501 |
+
|
12502 |
.mec-content-notification p {
|
12503 |
margin-bottom: 0;
|
12504 |
}
|
12505 |
|
12506 |
/* Advanced Repeating */
|
12507 |
|
12508 |
+
.mec-fes-form #mec-advanced-wraper div:first-child>ul {
|
12509 |
+
border: 1px solid #cfeff5;
|
12510 |
+
width: auto;
|
12511 |
+
box-shadow: 0 1px 4px -2px #cfeff5;
|
12512 |
display: block;
|
12513 |
+
margin: 5px 0 10px;
|
12514 |
padding: 5px 0;
|
|
|
|
|
12515 |
border-radius: 2px;
|
12516 |
+
}
|
12517 |
+
|
12518 |
+
.mec-fes-form #mec-advanced-wraper div:first-child>ul:last-of-type {
|
12519 |
+
margin-bottom: 35px;
|
12520 |
}
|
12521 |
|
12522 |
#mec-advanced-wraper div:first-child>ul span {
|
12536 |
font-weight: 700;
|
12537 |
margin: 0 10px 0 0;
|
12538 |
padding: 4px 0;
|
12539 |
+
border-right: 1px solid #cfeff5;
|
12540 |
}
|
12541 |
|
12542 |
#mec-advanced-wraper div:first-child>ul>ul>li {
|
12547 |
transition: all .18s ease
|
12548 |
}
|
12549 |
|
12550 |
+
.mec-fes-form #mec-advanced-wraper div:first-child>ul>ul>li:hover,
|
12551 |
+
.mec-fes-form #mec-advanced-wraper div:first-child>ul>ul>li.mec-active {
|
12552 |
+
background: #40d9f1 !important;
|
12553 |
+
box-shadow: 0 1px 9px -3px #40d9f1;
|
12554 |
+
color: #fff !important;
|
12555 |
}
|
12556 |
|
12557 |
/* Search Bar */
|
12558 |
+
.mec-search-bar-wrap .mec-search-form .mec-text-input-search {
|
12559 |
+
width: 83%;
|
12560 |
+
}
|
|
|
|
|
|
|
12561 |
|
12562 |
+
.mec-search-bar-wrap .mec-search-form .mec-ajax-search-result .mec-text-input-search {
|
12563 |
+
width: 100%;
|
12564 |
+
float: none;
|
12565 |
}
|
12566 |
|
12567 |
+
.mec-search-bar-wrap input#mec-search-bar-input {
|
12568 |
+
width: calc(100% - 84%);
|
12569 |
+
margin-left: 11px;
|
12570 |
+
background: #40d9f1;
|
12571 |
+
Color: #fff;
|
12572 |
+
font-weight: normal;
|
12573 |
}
|
12574 |
|
12575 |
+
.mec-text-input-search+input#mec-search-bar-input {
|
12576 |
+
margin-left: -3px;
|
12577 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12578 |
|
12579 |
+
.mec-search-bar-wrap input#mec-search-bar-input:hover {
|
12580 |
+
background: #000;
|
12581 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12582 |
|
12583 |
+
.mec-wrap.mec-search-bar-wrap .mec-totalcal-box input {
|
12584 |
+
float: none;
|
|
|
12585 |
}
|
12586 |
|
12587 |
+
@media(max-width: 768px) {
|
12588 |
+
.mec-search-bar-wrap .mec-search-form .mec-text-input-search {
|
12589 |
+
display: inline-block
|
12590 |
+
}
|
12591 |
}
|
12592 |
|
12593 |
+
@media(max-width: 480px) {
|
12594 |
+
.mec-search-bar-wrap .mec-search-form .mec-text-input-search {
|
12595 |
+
width: 64%;
|
12596 |
+
}
|
12597 |
+
|
12598 |
+
.mec-search-bar-wrap input#mec-search-bar-input {
|
12599 |
+
width: calc(100% - 67%);
|
12600 |
+
}
|
12601 |
}
|
12602 |
+
|
12603 |
+
/* Ajax search bar result */
|
12604 |
+
.mec-wrap.mec-search-bar-wrap .mec-totalcal-box {
|
12605 |
+
overflow: visible;
|
|
|
|
|
|
|
|
|
12606 |
}
|
12607 |
+
|
12608 |
+
.mec-ajax-search-result {
|
|
|
|
|
|
|
|
|
|
|
12609 |
position: relative;
|
12610 |
}
|
12611 |
+
|
12612 |
+
.mec-search-bar-wrap.mec-wrap .mec-totalcal-box input[type=text] {
|
12613 |
+
width: calc(100% - 36px);
|
|
|
|
|
12614 |
}
|
12615 |
+
|
12616 |
+
.mec-search-bar-wrap.mec-wrap .mec-totalcal-box input[type=text]:focus {
|
12617 |
+
border-color: #efefef;
|
|
|
|
|
|
|
12618 |
}
|
12619 |
+
|
12620 |
+
div#mec-ajax-search-result-wrap {
|
12621 |
+
position: absolute;
|
12622 |
+
top: 100%;
|
12623 |
+
opacity: 0;
|
12624 |
+
visibility: hidden;
|
12625 |
+
width: calc(100% - 2px);
|
12626 |
+
min-height: 50px;
|
12627 |
+
left: 0;
|
12628 |
+
right: 0;
|
12629 |
+
padding: 0 10px;
|
12630 |
+
z-index: 9999;
|
12631 |
transition: all 0.3s ease;
|
12632 |
}
|
12633 |
|
12634 |
+
.mec-ajax-search-result-events {
|
12635 |
+
background: #ffffff;
|
12636 |
+
padding: 10px 20px;
|
12637 |
+
border: 1px solid #efefef;
|
12638 |
+
border-top: none;
|
12639 |
}
|
12640 |
|
12641 |
+
.mec-ajax-search-result-events article:first-of-type {
|
12642 |
+
border: none;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12643 |
}
|
12644 |
|
12645 |
+
article.mec-search-bar-result {
|
12646 |
+
text-align: left;
|
12647 |
+
margin-bottom: 0;
|
12648 |
+
padding-bottom: 25px;
|
12649 |
+
padding-top: 26px;
|
12650 |
+
border-top: 1px solid #efefef;
|
12651 |
+
transition: all .33s ease;
|
12652 |
+
clear: both;
|
12653 |
+
}
|
12654 |
+
|
12655 |
+
.mec-search-bar-result .mec-event-list-search-bar-date {
|
12656 |
+
width: 64px;
|
12657 |
+
height: 64px;
|
12658 |
+
margin-right: 10px;
|
12659 |
+
font-size: 11px;
|
12660 |
+
text-transform: uppercase;
|
12661 |
+
float: left;
|
12662 |
+
text-align: center;
|
12663 |
+
padding-top: 2px;
|
12664 |
+
}
|
12665 |
+
|
12666 |
+
.mec-search-bar-result .mec-event-list-search-bar-date span {
|
12667 |
+
font-size: 40px;
|
12668 |
+
line-height: 30px;
|
12669 |
+
font-weight: 700;
|
12670 |
+
display: block;
|
12671 |
+
margin-bottom: 6px;
|
12672 |
+
letter-spacing: 1px;
|
12673 |
+
}
|
12674 |
+
|
12675 |
+
.mec-search-bar-result .mec-event-image {
|
12676 |
+
float: left;
|
12677 |
+
margin-right: 20px;
|
12678 |
+
width: 65px;
|
12679 |
+
height: auto;
|
12680 |
+
}
|
12681 |
+
|
12682 |
+
.mec-search-bar-result .mec-event-time {
|
12683 |
+
font-size: 11px;
|
12684 |
+
line-height: 1.1;
|
12685 |
+
margin: 0;
|
12686 |
+
}
|
12687 |
+
|
12688 |
+
.mec-search-bar-result .mec-event-time i {
|
12689 |
+
color: #40d9f1;
|
12690 |
+
float: none;
|
12691 |
+
width: unset;
|
12692 |
+
height: unset;
|
12693 |
+
font-size: inherit;
|
12694 |
+
margin-right: 3px;
|
12695 |
+
border: none;
|
12696 |
+
padding: 0;
|
12697 |
+
}
|
12698 |
+
|
12699 |
+
.mec-search-bar-result .mec-event-title {
|
12700 |
+
font-size: 13px;
|
12701 |
+
padding: 0;
|
12702 |
+
margin: 10px 0 8px;
|
12703 |
+
font-weight: 700;
|
12704 |
+
text-transform: uppercase;
|
12705 |
+
}
|
12706 |
+
|
12707 |
+
.mec-search-bar-result .mec-event-title a {
|
12708 |
+
text-decoration: none;
|
12709 |
+
color: #494949;
|
12710 |
+
transition: color .3s ease;
|
12711 |
+
}
|
12712 |
+
|
12713 |
+
.mec-search-bar-result .mec-event-detail {
|
12714 |
+
font-size: 13px;
|
12715 |
+
line-height: 1.3;
|
12716 |
+
font-family: Roboto, sans-serif;
|
12717 |
+
color: #9a9a9a;
|
12718 |
+
margin-bottom: 0;
|
12719 |
+
}
|
12720 |
+
|
12721 |
+
/* Modern Search bar */
|
12722 |
+
.mec-wrap.mec-modern-search-bar .mec-totalcal-box {
|
12723 |
+
background: rgba(255, 255, 255, 0.87);
|
12724 |
+
border: none;
|
12725 |
+
padding: 35px;
|
12726 |
+
border-radius: 3px;
|
12727 |
+
box-shadow: 0 3px 13px rgba(0, 0, 0, 0.4);
|
12728 |
+
position: relative;
|
12729 |
+
}
|
12730 |
+
|
12731 |
+
.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=search],
|
12732 |
+
.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=text] {
|
12733 |
+
height: 58px;
|
12734 |
+
background: rgba(255, 255, 255, 0.99);
|
12735 |
+
border-radius: 2px;
|
12736 |
+
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) inset;
|
12737 |
+
border: 1px solid #ccc;
|
12738 |
+
width: 100%;
|
12739 |
+
padding-left: 45px;
|
12740 |
+
padding-right: 13px;
|
12741 |
+
font-size: 16px;
|
12742 |
+
}
|
12743 |
+
|
12744 |
+
.mec-wrap.mec-modern-search-bar .mec-totalcal-box .mec-text-input-search i {
|
12745 |
+
position: absolute;
|
12746 |
+
background: none;
|
12747 |
+
border: none;
|
12748 |
+
font-size: 21px;
|
12749 |
+
left: 15px;
|
12750 |
+
top: calc(50% - 19px);
|
12751 |
+
color: #40d9f1;
|
12752 |
+
}
|
12753 |
+
|
12754 |
+
.mec-wrap.mec-modern-search-bar .mec-text-input-search {
|
12755 |
+
position: relative;
|
12756 |
+
height: 58px;
|
12757 |
+
}
|
12758 |
+
|
12759 |
+
.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=submit] {
|
12760 |
+
height: 58px;
|
12761 |
+
border: none;
|
12762 |
+
border-radius: 2px;
|
12763 |
+
background: #fc4a1a;
|
12764 |
+
font-size: 17px;
|
12765 |
+
font-weight: bold !important;
|
12766 |
+
}
|
12767 |
+
|
12768 |
+
.mec-wrap.mec-modern-search-bar .mec-text-input-search+input#mec-search-bar-input {
|
12769 |
+
margin-left: 0;
|
12770 |
+
}
|
12771 |
+
|
12772 |
+
.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select {
|
12773 |
+
height: 45px;
|
12774 |
+
background: rgba(255, 255, 255, .99);
|
12775 |
+
border-radius: 2px;
|
12776 |
+
box-shadow: 0 4px 8px rgba(0, 0, 0, .1) inset;
|
12777 |
+
border: 1px solid #ccc;
|
12778 |
+
padding-right: 13px;
|
12779 |
+
font-size: 16px;
|
12780 |
+
border-left: 0;
|
12781 |
+
}
|
12782 |
+
|
12783 |
+
.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap i {
|
12784 |
+
height: 45px;
|
12785 |
+
background: #ffff;
|
12786 |
+
border-radius: 2px 0 0 2px;
|
12787 |
+
box-shadow: none;
|
12788 |
+
border: 1px solid #ccc;
|
12789 |
+
font-size: 15px;
|
12790 |
+
padding-top: 14px;
|
12791 |
+
border-right: 0;
|
12792 |
+
color: #40d9f1;
|
12793 |
+
margin-right: -1px;
|
12794 |
+
}
|
12795 |
+
|
12796 |
+
.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap {
|
12797 |
+
min-height: 64px;
|
12798 |
+
}
|
12799 |
+
|
12800 |
+
@media(max-width: 768px) {
|
12801 |
+
.mec-wrap.mec-modern-search-bar .mec-search-form .mec-text-input-search {
|
12802 |
+
width: 70%;
|
12803 |
+
}
|
12804 |
+
|
12805 |
+
.mec-wrap.mec-modern-search-bar input#mec-search-bar-input {
|
12806 |
+
width: calc(100% - 72%);
|
12807 |
+
}
|
12808 |
+
}
|
12809 |
+
|
12810 |
+
@media(max-width: 480px) {
|
12811 |
+
.mec-wrap.mec-modern-search-bar input#mec-search-bar-input {
|
12812 |
+
width: 92%;
|
12813 |
+
padding: 0 10px;
|
12814 |
+
position: relative;
|
12815 |
+
display: block;
|
12816 |
+
margin-left: 11px;
|
12817 |
+
}
|
12818 |
+
|
12819 |
+
.mec-wrap.mec-modern-search-bar .mec-search-form .mec-text-input-search {
|
12820 |
+
width: 100%;
|
12821 |
+
margin-bottom: 20px;
|
12822 |
+
}
|
12823 |
+
|
12824 |
+
.mec-wrap.mec-modern-search-bar .mec-text-input-search+input#mec-search-bar-input {
|
12825 |
+
margin-left: 10px;
|
12826 |
+
}
|
12827 |
+
}
|
12828 |
+
|
12829 |
+
/* Related Events */
|
12830 |
+
.mec-related-events-wrap {
|
12831 |
+
margin-top: 50px;
|
12832 |
+
}
|
12833 |
+
|
12834 |
+
.mec-related-events-wrap h3.mec-rec-events-title:before {
|
12835 |
+
content: "";
|
12836 |
+
background: #2c2f34;
|
12837 |
+
width: 46px;
|
12838 |
+
height: 4px;
|
12839 |
+
position: absolute;
|
12840 |
+
top: 59px;
|
12841 |
+
left: 0;
|
12842 |
+
}
|
12843 |
+
|
12844 |
+
.mec-related-events-wrap h3.mec-rec-events-title {
|
12845 |
+
font-size: 21px;
|
12846 |
+
font-weight: 600;
|
12847 |
+
padding: 17px 0;
|
12848 |
+
margin-bottom: 28px;
|
12849 |
+
text-transform: uppercase;
|
12850 |
+
border-bottom: 1px solid #e8e8e8;
|
12851 |
+
position: relative;
|
12852 |
+
}
|
12853 |
+
|
12854 |
+
.mec-related-event-post figure {
|
12855 |
+
margin: 0;
|
12856 |
+
}
|
12857 |
+
|
12858 |
+
.mec-related-event-post figure img {
|
12859 |
+
width: 100%;
|
12860 |
+
}
|
12861 |
+
|
12862 |
+
.mec-related-event-content {
|
12863 |
+
background-color: #fff;
|
12864 |
+
margin: -27px 30px 15px;
|
12865 |
+
position: relative;
|
12866 |
+
max-width: 90%;
|
12867 |
+
padding: 13px 21px 16px 19px;
|
12868 |
+
}
|
12869 |
+
|
12870 |
+
.mec-related-event-content h5 a {
|
12871 |
+
font-size: 16px;
|
12872 |
+
color: #121212;
|
12873 |
+
font-weight: 600;
|
12874 |
+
transition: all 0.3s ease;
|
12875 |
+
}
|
12876 |
+
|
12877 |
+
/* Fronrend Organizer Payment */
|
12878 |
+
.mec-fes-form-cntt #mec-organizer-payments ul {
|
12879 |
+
list-style: none;
|
12880 |
+
background: transparent;
|
12881 |
+
margin: 0;
|
12882 |
+
}
|
12883 |
+
|
12884 |
+
.mec-fes-form-cntt #mec-organizer-payments ul li h4 {
|
12885 |
+
background: transparent;
|
12886 |
+
letter-spacing: 0.2px;
|
12887 |
+
display: inline-block;
|
12888 |
+
padding-left: 0 !important;
|
12889 |
+
padding-bottom: 10px !important;
|
12890 |
+
margin: 0;
|
12891 |
+
margin-bottom: 1px;
|
12892 |
+
letter-spacing: 1px;
|
12893 |
+
text-transform: capitalize;
|
12894 |
+
padding-top: 1px;
|
12895 |
+
}
|
12896 |
+
|
12897 |
+
.mec-fes-form-cntt #mec-organizer-payments ul>li {
|
12898 |
+
width: 100%;
|
12899 |
display: inline-block;
|
12900 |
vertical-align: top;
|
12901 |
+
padding: 0;
|
12902 |
+
margin: 0;
|
12903 |
}
|
12904 |
|
12905 |
/* Login Module */
|
12922 |
display: inline-block
|
12923 |
}
|
12924 |
|
12925 |
+
.mec-login-forgotpassword a {
|
12926 |
color: #000;
|
12927 |
}
|
12928 |
|
12935 |
|
12936 |
#mec-login-form.mec-login-form .mec-login-input input {
|
12937 |
border: none;
|
12938 |
+
box-shadow: none;
|
12939 |
+
background: #fff;
|
12940 |
+
color: #ccc;
|
12941 |
+
border-left: 1px solid #e6e6e6;
|
12942 |
+
padding: 0;
|
12943 |
+
height: 100%;
|
12944 |
+
background-image: none !important;
|
12945 |
+
padding-left: 10px;
|
12946 |
+
padding-right: 0;
|
12947 |
+
width: 222px;
|
12948 |
+
margin-left: 0;
|
12949 |
+
clear: none;
|
12950 |
+
float: left;
|
12951 |
}
|
12952 |
|
12953 |
#mec-login-form.mec-login-form .mec-login-input label {
|
12954 |
border: 1px solid #e6e6e6;
|
12955 |
height: 52px;
|
12956 |
display: inline-block;
|
12957 |
+
padding: 0;
|
12958 |
border-radius: 3px;
|
12959 |
overflow: hidden;
|
12960 |
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
|
13043 |
|
13044 |
#mec-login-form.mec-login-form .mec-ajax-login-loading-text {
|
13045 |
position: absolute;
|
13046 |
+
min-width: 200px;
|
13047 |
+
top: calc(50% - 18px);
|
13048 |
+
left: calc(50% - 170px);
|
13049 |
+
color: #fff;
|
13050 |
+
padding: 10px 22px;
|
13051 |
+
border-radius: 3px;
|
13052 |
+
background: #fff;
|
13053 |
+
height: 47px;
|
13054 |
}
|
13055 |
|
13056 |
#mec-login-form.mec-login-form .mec-ajax-login-loading-text strong {
|
13094 |
border-color: #ff5d39;
|
13095 |
border-bottom: none;
|
13096 |
}
|
13097 |
+
|
13098 |
@keyframes lds-ripple {
|
13099 |
0% {
|
13100 |
top: 28px;
|
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 |
|
13123 |
.mec-events-meta-group-booking .StripeElement {
|
13132 |
transition: box-shadow 150ms ease;
|
13133 |
margin-bottom: 20px;
|
13134 |
background: #fff;
|
13135 |
+
}
|
13136 |
+
|
13137 |
+
.mec-events-meta-group-booking .StripeElement--focus {
|
13138 |
box-shadow: 0 1px 3px 0 #cfd7df;
|
13139 |
+
}
|
13140 |
+
|
13141 |
+
.mec-events-meta-group-booking .StripeElement--invalid {
|
13142 |
border-color: #fa755a;
|
13143 |
+
}
|
13144 |
+
|
13145 |
+
.mec-events-meta-group-booking .StripeElement--webkit-autofill {
|
13146 |
background-color: #fefde5 !important;
|
13147 |
+
}
|
13148 |
+
|
13149 |
+
|
13150 |
+
|
13151 |
+
/* front-end submition new edition */
|
13152 |
+
ul#mec_reg_form_fields li .mec_reg_field_remove,
|
13153 |
+
.mec-booking-tab-content .mec-reg-field-add-option,
|
13154 |
+
.mec-booking-tab-content .button,
|
13155 |
+
.mec-fes-form .mec-form-row .button:not(.wp-color-result),
|
13156 |
+
.mec-fes-form input[type=file] {
|
13157 |
+
height: 40px;
|
13158 |
+
margin-top: 1px;
|
13159 |
+
text-decoration: none;
|
13160 |
+
font-size: 14px;
|
13161 |
+
line-height: 34px !important;
|
13162 |
+
margin: 0;
|
13163 |
+
padding: 0 15px 1px !important;
|
13164 |
+
text-transform: none;
|
13165 |
+
letter-spacing: 0;
|
13166 |
+
font-weight: 600;
|
13167 |
+
color: #40d9f1;
|
13168 |
+
background: #fff;
|
13169 |
+
border-radius: 3px;
|
13170 |
+
margin-right: 8px;
|
13171 |
+
border: 2px solid #cfeff5;
|
13172 |
+
box-shadow: 0 2px 6px -3px #cfeff5;
|
13173 |
+
}
|
13174 |
+
.mec-booking-tab-content .mec-reg-field-add-option:hover,
|
13175 |
+
.mec-booking-tab-content .button:hover,
|
13176 |
+
.mec-fes-form .mec-form-row .button:not(.wp-color-result):hover {
|
13177 |
+
background: #40d9f1;
|
13178 |
+
color: #fff;
|
13179 |
+
border-color: #40d9f1;
|
13180 |
+
box-shadow: 0 2px 6px -3px #40d9f1;
|
13181 |
+
}
|
13182 |
+
|
13183 |
+
.mec-fes-form .mec-form-row input+button.button {
|
13184 |
+
vertical-align: top;
|
13185 |
+
}
|
13186 |
+
|
13187 |
+
.mec-fes-form .mec-form-row .quicktags-toolbar input.button.button-small {
|
13188 |
+
border-width: 1px;
|
13189 |
+
padding: 0 7px;
|
13190 |
+
color: #80c6d2;
|
13191 |
+
font-weight: 400;
|
13192 |
+
margin: 1px;
|
13193 |
+
transform: none;
|
13194 |
+
}
|
13195 |
+
|
13196 |
+
.mec-fes-form input[type=file] {
|
13197 |
+
max-width: 166px;
|
13198 |
+
text-align: center;
|
13199 |
+
height: 44px;
|
13200 |
+
transition: all 0.2s ease;
|
13201 |
+
border-radius: 5px !important;
|
13202 |
+
border: 2px dashed #b8e9f3;
|
13203 |
+
}
|
13204 |
+
|
13205 |
+
.mec-fes-form input[type=file]:hover {
|
13206 |
+
box-shadow: 0 2px 16px -3px #cfeff5;
|
13207 |
+
}
|
13208 |
+
|
13209 |
+
.mec-fes-form input[type=file]::-webkit-file-upload-button {
|
13210 |
+
visibility: hidden;
|
13211 |
+
width: 1px;
|
13212 |
+
height: 38px;
|
13213 |
+
}
|
13214 |
+
|
13215 |
+
.mec-fes-form input[type=file]::-moz-file-upload-button {
|
13216 |
+
visibility: hidden;
|
13217 |
+
width: 1px;
|
13218 |
+
height: 38px;
|
13219 |
+
}
|
13220 |
+
|
13221 |
+
.mec-fes-form .mec-meta-box-fields>label {
|
13222 |
+
padding: 0;
|
13223 |
+
}
|
13224 |
+
|
13225 |
+
#mec_reg_form_fields li {
|
13226 |
+
list-style: none;
|
13227 |
+
}
|
13228 |
+
|
13229 |
+
ul#mec_reg_form_fields {
|
13230 |
+
padding: 0;
|
13231 |
+
margin: 0;
|
13232 |
+
}
|
13233 |
+
|
13234 |
+
ul#mec_reg_form_fields li {
|
13235 |
+
background: #f8feff;
|
13236 |
+
margin: 6px -20px;
|
13237 |
+
padding: 15px 25px 10px;
|
13238 |
+
width: auto;
|
13239 |
+
font-size: 13px;
|
13240 |
+
border-top: 1px solid #e8fafd;
|
13241 |
+
border-bottom: 1px solid #e8fafd;
|
13242 |
+
position: relative;
|
13243 |
+
}
|
13244 |
+
|
13245 |
+
ul#mec_reg_form_fields li .mec_reg_field_remove {
|
13246 |
+
position: absolute;
|
13247 |
+
right: 10px;
|
13248 |
+
top: 10px;
|
13249 |
+
margin: 0;
|
13250 |
+
padding: 6px 8px !important;
|
13251 |
+
font-size: 11px;
|
13252 |
+
line-height: 12px !important;
|
13253 |
+
min-height: 10px;
|
13254 |
+
height: auto;
|
13255 |
+
display :block;
|
13256 |
+
cursor: pointer;
|
13257 |
+
color: #ea6485;
|
13258 |
+
border-color: #ffd2dd;
|
13259 |
+
letter-spacing: 0.4px
|
13260 |
+
}
|
13261 |
+
|
13262 |
+
ul#mec_reg_form_fields li .mec_reg_field_remove:hover {
|
13263 |
+
background: #ea6485;
|
13264 |
+
color: #fff;
|
13265 |
+
border-color: #ea6485;
|
13266 |
+
box-shadow: 0 2px 6px -3px #ea6485;
|
13267 |
+
}
|
13268 |
+
|
13269 |
+
/* from backend */
|
13270 |
+
#mec_reg_form_fields input[type=checkbox],
|
13271 |
+
#mec_reg_form_fields input[type=radio],
|
13272 |
+
.mec-form-row input[type=checkbox],
|
13273 |
+
.mec-form-row input[type=radio] {
|
13274 |
+
background-color: #fff;
|
13275 |
+
border: 1px solid #cfeff5;
|
13276 |
+
box-shadow: 0 1px 3px -1px #cfeff5;
|
13277 |
+
padding: 9px;
|
13278 |
+
border-radius: 3px;
|
13279 |
+
min-width: 24px;
|
13280 |
+
min-height: 24px;
|
13281 |
+
display: inline-block !important;
|
13282 |
+
vertical-align: middle;
|
13283 |
+
float: none;
|
13284 |
+
transition: all 0.18s ease;
|
13285 |
+
outline: none;
|
13286 |
+
margin: 1px 4px 4px 0;
|
13287 |
+
text-align: left;
|
13288 |
+
cursor: pointer;
|
13289 |
+
-webkit-appearance: none;
|
13290 |
+
-moz-appearance: none;
|
13291 |
+
}
|
13292 |
+
|
13293 |
+
#mec_reg_form_fields input[type=checkbox]:focus,
|
13294 |
+
#mec_reg_form_fields input[type=radio]:focus,
|
13295 |
+
.mec-form-row input[type=checkbox]:focus,
|
13296 |
+
.mec-form-row input[type=radio]:focus {
|
13297 |
+
outline: none;
|
13298 |
+
}
|
13299 |
+
|
13300 |
+
#mec_reg_form_fields input[type=radio],
|
13301 |
+
.mec-form-row input[type=radio] {
|
13302 |
+
-webkit-appearance: none;
|
13303 |
+
border-radius: 20px !important;
|
13304 |
+
min-width: 20px;
|
13305 |
+
min-height: 20px;
|
13306 |
+
margin: 0 0 4px 0;
|
13307 |
+
vertical-align: middle;
|
13308 |
+
}
|
13309 |
+
|
13310 |
+
#mec_reg_form_fields input[type=checkbox]:hover,
|
13311 |
+
#mec_reg_form_fields input[type=radio]:hover,
|
13312 |
+
.mec-form-row input[type=checkbox]:hover,
|
13313 |
+
.mec-form-row input[type=radio]:hover {
|
13314 |
+
border-color: #40d9f1;
|
13315 |
+
}
|
13316 |
+
|
13317 |
+
#mec_reg_form_fields input[type=checkbox]:checked,
|
13318 |
+
#mec_reg_form_fields input[type=radio]:checked,
|
13319 |
+
.mec-fes-form .mec-form-row input[type=checkbox]:checked,
|
13320 |
+
.mec-fes-form .mec-form-row input[type=radio]:checked {
|
13321 |
+
box-shadow: 0 1px 6px -2px #40d9f1;
|
13322 |
+
border-color: #40d9f1;
|
13323 |
+
background: #40d9f1 !important;
|
13324 |
+
border-radius: 2px;
|
13325 |
+
position: relative;
|
13326 |
+
}
|
13327 |
+
|
13328 |
+
.mec-form-row input[type=radio]:checked {
|
13329 |
+
box-shadow: 0 1px 6px -2px #40d9f1, inset 0 0 0 3px #fff !important;
|
13330 |
+
}
|
13331 |
+
|
13332 |
+
#mec_reg_form_fields input[type=checkbox]:checked::before,
|
13333 |
+
.mec-form-row input[type=checkbox]:checked:before {
|
13334 |
+
content: "";
|
13335 |
+
font: normal;
|
13336 |
+
position: absolute;
|
13337 |
+
top: 12px;
|
13338 |
+
left: 5px;
|
13339 |
+
margin: 0;
|
13340 |
+
vertical-align: middle;
|
13341 |
+
line-height: 1;
|
13342 |
+
border-right: 2px solid transparent !important;
|
13343 |
+
border-bottom: 2px solid transparent !important;
|
13344 |
+
transform: rotate(45deg);
|
13345 |
+
transform-origin: 0% 100%;
|
13346 |
+
color: #fff;
|
13347 |
+
transition: all 0.2s ease;
|
13348 |
+
animation: checkbox-check 130ms 140ms cubic-bezier(.4, .0, .23, 1) forwards;
|
13349 |
+
}
|
13350 |
+
|
13351 |
+
@keyframes checkbox-check {
|
13352 |
+
0% {
|
13353 |
+
width: 0;
|
13354 |
+
height: 0;
|
13355 |
+
border-color: #fff;
|
13356 |
+
transform: translate3d(0, 0, 0) rotate(45deg);
|
13357 |
+
}
|
13358 |
+
|
13359 |
+
33% {
|
13360 |
+
width: 6px;
|
13361 |
+
height: 0;
|
13362 |
+
transform: translate3d(0, 0, 0) rotate(45deg);
|
13363 |
+
}
|
13364 |
+
|
13365 |
+
100% {
|
13366 |
+
width: 6px;
|
13367 |
+
height: 12px;
|
13368 |
+
border-color: #fff;
|
13369 |
+
transform: translate3d(0, -12px, 0) rotate(45deg);
|
13370 |
+
}
|
13371 |
+
}
|
13372 |
+
|
13373 |
+
#mec_reg_form_field_types .button {
|
13374 |
+
position: relative;
|
13375 |
+
outline: 0;
|
13376 |
+
border-radius: 50px;
|
13377 |
+
padding: 2px 21px 2px 31px !important;
|
13378 |
+
line-height: 1;
|
13379 |
+
font-size: 11px;
|
13380 |
+
font-weight: 600;
|
13381 |
+
color: #40d9f1;
|
13382 |
+
letter-spacing: 2px;
|
13383 |
+
height: auto;
|
13384 |
+
cursor: pointer;
|
13385 |
+
margin-top: 5px;
|
13386 |
+
text-transform: uppercase;
|
13387 |
+
box-shadow: 0 2px 6px -3px #40d9f1;
|
13388 |
+
border: 2px solid #cfeff5;
|
13389 |
+
}
|
13390 |
+
|
13391 |
+
#mec_meta_box_tickets_form [id^="mec_ticket_row"] button,
|
13392 |
+
#mec_fes_organizer_remove_image_button,
|
13393 |
+
#mec_fes_location_remove_image_button,
|
13394 |
+
#mec_meta_box_hourly_schedule_days [id^="mec_meta_box_hourly_schedule_day_"] .mec-form-row.mec-box .button,
|
13395 |
+
#mec_meta_box_hourly_schedule_days [id^="mec_meta_box_hourly_schedule_day_"] .mec-col-1 .button,
|
13396 |
+
#mec_reg_form_field_types .button.red {
|
13397 |
+
color: #ea6485;
|
13398 |
+
box-shadow: 0 2px 6px -3px #ea6485;
|
13399 |
+
background: #fff;
|
13400 |
+
border-color: #ffd2dd;
|
13401 |
+
}
|
13402 |
+
|
13403 |
+
#mec_meta_box_tickets_form [id^="mec_ticket_row"] button:hover,
|
13404 |
+
#mec_fes_organizer_remove_image_button:hover,
|
13405 |
+
#mec_fes_location_remove_image_button:hover,
|
13406 |
+
#mec_meta_box_hourly_schedule_days [id^="mec_meta_box_hourly_schedule_day_"] .mec-form-row.mec-box .button:hover,
|
13407 |
+
#mec_meta_box_hourly_schedule_days [id^="mec_meta_box_hourly_schedule_day_"] .mec-col-1 .button:hover,
|
13408 |
+
#mec_reg_form_field_types .button.red:hover {
|
13409 |
+
background: #ea6485;
|
13410 |
+
color: #fff;
|
13411 |
+
}
|
13412 |
+
|
13413 |
+
#mec_reg_form_field_types .button:before {
|
13414 |
+
position: absolute;
|
13415 |
+
left: 12px;
|
13416 |
+
color: #40d9f1;
|
13417 |
+
content: "\e095";
|
13418 |
+
font-family: simple-line-icons;
|
13419 |
+
font-size: 13px;
|
13420 |
+
display: inline-block;
|
13421 |
+
}
|
13422 |
+
|
13423 |
+
#mec_reg_form_field_types .button.red:before {
|
13424 |
+
color: #ea6485;
|
13425 |
+
}
|
13426 |
+
|
13427 |
+
#mec_reg_form_field_types .button.red:hover:before,
|
13428 |
+
#mec_reg_form_field_types .button:hover:before {
|
13429 |
+
color: #fff;
|
13430 |
+
}
|
13431 |
+
|
13432 |
+
#mec_meta_box_tickets_form [id^="mec_ticket_row"] button:hover,
|
13433 |
+
#mec_fes_organizer_remove_image_button:hover,
|
13434 |
+
#mec_fes_location_remove_image_button:hover,
|
13435 |
+
#mec_meta_box_hourly_schedule_days [id^="mec_meta_box_hourly_schedule_day_"] .mec-form-row.mec-box .button:hover,
|
13436 |
+
#mec_meta_box_hourly_schedule_days [id^="mec_meta_box_hourly_schedule_day_"] .mec-col-1 .button:hover,
|
13437 |
+
#mec_price_per_dates_container .button:hover,
|
13438 |
+
#mec_reg_form_field_types .button.red:hover {
|
13439 |
+
color: #fff;
|
13440 |
+
border: 2px solid #ea6485;
|
13441 |
+
}
|
13442 |
+
|
13443 |
+
#mec_ticket_variations_list [id^="mec_remove_ticket_variation_button"],
|
13444 |
+
#mec_taxes_fees_container_toggle [id^="mec_remove_fee_button"] {
|
13445 |
+
color: #ea6485;
|
13446 |
+
border-color: #ffd2dd;
|
13447 |
+
}
|
13448 |
+
|
13449 |
+
#mec_ticket_variations_list [id^="mec_remove_ticket_variation_button"]:hover,
|
13450 |
+
#mec_taxes_fees_container_toggle [id^="mec_remove_fee_button"]:hover {
|
13451 |
+
color: #fff;
|
13452 |
+
border: 2px solid #ea6485;
|
13453 |
+
background: #ea6485;
|
13454 |
+
}
|
13455 |
+
|
13456 |
+
#mec_fees_list [id^=mec_remove_fee_button],
|
13457 |
+
#mec_meta_box_ticket_variations_form .mec-form-row [id^=mec_remove_ticket_variation_button] {
|
13458 |
+
margin-left: 14px !important;
|
13459 |
+
}
|
13460 |
+
|
13461 |
+
#mec_meta_box_hourly_schedule_days .mec-add-hourly-schedule-button {
|
13462 |
+
line-height: 10px !important;
|
13463 |
+
}
|
13464 |
+
#mec_meta_box_tickets_form [id^="mec_ticket_row"] .mec_add_price_date_button {
|
13465 |
+
color: #40d9f1;
|
13466 |
+
box-shadow: 0 2px 6px -3px #40d9f1;
|
13467 |
+
border: 2px solid #cfeff5;
|
13468 |
+
}
|
13469 |
+
|
13470 |
+
#mec_meta_box_tickets_form [id^="mec_ticket_row"] .mec_add_price_date_button:hover,
|
13471 |
+
#mec_reg_form_field_types .button:hover {
|
13472 |
+
color: #fff;
|
13473 |
+
border: 2px solid #40d9f1;
|
13474 |
+
background: #40d9f1;
|
13475 |
+
}
|
13476 |
+
|
13477 |
+
.mec-form-row select+span.mec-tooltip,
|
13478 |
+
.mec-form-row input+span.mec-tooltip {
|
13479 |
+
bottom: 10px;
|
13480 |
+
}
|
13481 |
+
|
13482 |
+
.mec-form-row label+span.mec-tooltip {
|
13483 |
+
bottom: 8px;
|
13484 |
+
}
|
13485 |
+
|
13486 |
+
.mec-form-row textarea+span.mec-tooltip {
|
13487 |
+
bottom: auto;
|
13488 |
+
vertical-align: top;
|
13489 |
+
top: 12px;
|
13490 |
+
}
|
13491 |
+
|
13492 |
+
.mec-form-row span+span.mec-tooltip {
|
13493 |
+
bottom: 0;
|
13494 |
+
vertical-align: middle;
|
13495 |
+
}
|
13496 |
+
|
13497 |
+
.mec-form-row .mec-col-8 span.mec-archive-skins,
|
13498 |
+
.mec-form-row .mec-col-8 select,
|
13499 |
+
.mec-form-row .mec-col-8 input[type="text"] {
|
13500 |
+
vertical-align: top;
|
13501 |
+
}
|
13502 |
+
|
13503 |
+
.mec-form-row input:disabled {
|
13504 |
+
opacity: 0.6;
|
13505 |
+
background: #f6f6f6;
|
13506 |
+
}
|
13507 |
+
|
13508 |
+
.mec-form-row p {
|
13509 |
+
font-size: 12px !important;
|
13510 |
+
line-height: 18px !important;
|
13511 |
+
color: #97b2bb !important;
|
13512 |
+
}
|
13513 |
+
|
13514 |
+
.mec-form-row p.description {
|
13515 |
+
font-style: italic;
|
13516 |
+
}
|
13517 |
+
|
13518 |
+
.ui-datepicker.ui-widget {
|
13519 |
+
border: 1px solid #e8e8e8;
|
13520 |
+
box-shadow: 0 1px 9px rgba(0, 0, 0, 0.12);
|
13521 |
+
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
|
13522 |
+
}
|
13523 |
+
|
13524 |
+
table.ui-datepicker-calendar {
|
13525 |
+
margin-bottom: 0;
|
13526 |
+
}
|
13527 |
+
|
13528 |
+
.ui-datepicker-calendar th {
|
13529 |
+
font-weight: 700;
|
13530 |
+
color: #4a4b4c;
|
13531 |
+
}
|
13532 |
+
|
13533 |
+
.ui-datepicker-calendar tr,
|
13534 |
+
.ui-datepicker-calendar td,
|
13535 |
+
.ui-datepicker-calendar th {
|
13536 |
+
border: none;
|
13537 |
+
}
|
13538 |
+
|
13539 |
+
.ui-datepicker.ui-widget select {
|
13540 |
+
font-weight: 600;
|
13541 |
+
font-size: 12px;
|
13542 |
+
display: inline-block;
|
13543 |
+
border-radius: 2px;
|
13544 |
+
padding: 2px 10px;
|
13545 |
+
margin: 5px 3px;
|
13546 |
+
width: auto;
|
13547 |
+
min-height: 20px;
|
13548 |
+
height: 26px;
|
13549 |
+
border: 1px solid #e3e3e3;
|
13550 |
+
box-shadow: inset 0 1px 3px rgba(0, 0, 0, .04);
|
13551 |
+
}
|
13552 |
+
|
13553 |
+
.ui-datepicker.ui-widget table {
|
13554 |
+
border-spacing: 2px;
|
13555 |
+
border: none;
|
13556 |
+
}
|
13557 |
+
|
13558 |
+
.ui-datepicker.ui-widget td,
|
13559 |
+
.ui-datepicker.ui-widget tr {
|
13560 |
+
padding: 0;
|
13561 |
+
background: none !important;
|
13562 |
+
}
|
13563 |
+
|
13564 |
+
.ui-datepicker.ui-widget td a {
|
13565 |
+
color: #9a9b9c;
|
13566 |
+
font-weight: 600;
|
13567 |
+
width: 30px;
|
13568 |
+
height: 30px;
|
13569 |
+
line-height: 30px;
|
13570 |
+
display: inline-block;
|
13571 |
+
border-radius: 33px;
|
13572 |
+
padding: 0;
|
13573 |
+
background: #fff;
|
13574 |
+
transition: all 0.2s ease;
|
13575 |
+
}
|
13576 |
+
|
13577 |
+
.ui-datepicker.ui-widget td a:hover,
|
13578 |
+
.ui-datepicker.ui-widget td a.ui-state-active {
|
13579 |
+
background: #40d9f1;
|
13580 |
+
color: #fff;
|
13581 |
+
}
|
13582 |
+
|
13583 |
+
.ui-datepicker.ui-widget .ui-datepicker-next,
|
13584 |
+
.ui-datepicker.ui-widget .ui-datepicker-prev {
|
13585 |
+
color: #40d9f1;
|
13586 |
+
width: 30px;
|
13587 |
+
height: 30px;
|
13588 |
+
line-height: 30px;
|
13589 |
+
display: inline-block;
|
13590 |
+
text-align: center;
|
13591 |
+
border-radius: 33px;
|
13592 |
+
background: #ecfcff;
|
13593 |
+
transition: all 0.2s ease;
|
13594 |
+
}
|
13595 |
+
|
13596 |
+
.ui-datepicker.ui-widget .ui-datepicker-next:hover,
|
13597 |
+
.ui-datepicker.ui-widget .ui-datepicker-prev:hover {
|
13598 |
+
background: #fff;
|
13599 |
+
box-shadow: 0 0 7px -3px rgba(0, 0, 0, 0.4);
|
13600 |
+
}
|
13601 |
+
|
13602 |
+
.mec-fes-form .mec-tooltip .dashicons-before:before {
|
13603 |
+
color: #40d9f1;
|
13604 |
+
}
|
13605 |
+
|
13606 |
+
.mec-fes-form button[type="submit"].mec-fes-sub-button {
|
13607 |
+
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
|
13608 |
+
border-radius: 3px;
|
13609 |
+
background: #40d9f1;
|
13610 |
+
color: #fff;
|
13611 |
+
height: 54px;
|
13612 |
+
font-size: 17px;
|
13613 |
+
font-weight: 700;
|
13614 |
+
box-shadow: 0 2px 8px -4px #40d9f1;
|
13615 |
+
display: block;
|
13616 |
+
transition: all .28s ease;
|
13617 |
+
text-transform: uppercase;
|
13618 |
+
margin: 20px 0 0;
|
13619 |
+
padding: 14px 20px;
|
13620 |
+
border: 0;
|
13621 |
+
cursor: pointer;
|
13622 |
+
text-align: center;
|
13623 |
+
letter-spacing: 0.1em;
|
13624 |
+
line-height: 1;
|
13625 |
+
}
|
13626 |
+
|
13627 |
+
.mec-fes-form button[type="submit"].mec-fes-sub-button:hover {
|
13628 |
+
box-shadow: 0 2px 12px -2px #40d9f1;
|
13629 |
+
}
|
13630 |
+
|
13631 |
+
.mec-fes-form button[type="submit"].mec-fes-sub-button:focus {
|
13632 |
+
margin-bottom: -2px;
|
13633 |
+
background: #1dc2dc;
|
13634 |
+
}
|
13635 |
+
|
13636 |
+
.mec-fes-form .mec-title span.mec-dashicons {
|
13637 |
+
color: #40d9f1;
|
13638 |
+
float: left;
|
13639 |
+
margin-right: 5px;
|
13640 |
+
}
|
13641 |
+
|
13642 |
+
.mec-fes-form .mec-tooltip .box h5 {
|
13643 |
+
padding: 14px 2px;
|
13644 |
+
}
|
13645 |
+
|
13646 |
+
#mec_fes_form,
|
13647 |
+
.mec-fes-form-top-actions {
|
13648 |
+
max-width: 838px;
|
13649 |
+
margin: 0 auto;
|
13650 |
+
}
|
13651 |
+
|
13652 |
+
@media only screen and (min-width: 961px) {
|
13653 |
+
.mec-fes-form .mec-fes-form-cntt {
|
13654 |
+
width: calc(100% - 300px);
|
13655 |
+
float: left;
|
13656 |
+
padding-right: 20px;
|
13657 |
+
max-width: 538px;
|
13658 |
+
display: block;
|
13659 |
+
}
|
13660 |
+
|
13661 |
+
.mec-fes-form .mec-fes-form-sdbr {
|
13662 |
+
width: 300px;
|
13663 |
+
|
13664 |
+
}
|
13665 |
+
}
|
13666 |
+
|
13667 |
+
.mec-fes-form div.mce-toolbar-grp,
|
13668 |
+
.mec-fes-form .quicktags-toolbar {
|
13669 |
+
background: #ecfcff;
|
13670 |
+
border-bottom: 1px solid #cfeff5;
|
13671 |
+
box-shadow: 0 1px 0px 1px #cfeff5;
|
13672 |
+
}
|
13673 |
+
|
13674 |
+
.mec-fes-form .quicktags-toolbar {
|
13675 |
+
margin-right: -1px;
|
13676 |
+
border-top: 1px solid #cfeff5;
|
13677 |
+
}
|
13678 |
+
|
13679 |
+
.mec-fes-form div.mce-statusbar {
|
13680 |
+
border-top-color: #cfeff5;
|
13681 |
+
}
|
13682 |
+
|
13683 |
+
.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-listbox {
|
13684 |
+
border: 1px solid #cfeff5;
|
13685 |
+
border-radius: 3px;
|
13686 |
+
}
|
13687 |
+
|
13688 |
+
.mec-fes-form .mce-tinymce.mce-container.mce-panel {
|
13689 |
+
border: 1px solid #cfeff5;
|
13690 |
+
box-shadow: 0 2px 6px -3px #cfeff5;
|
13691 |
+
border-radius: 2px 0 2px 2px;
|
13692 |
+
}
|
13693 |
+
|
13694 |
+
.mec-fes-form .wp-editor-tools .wp-media-buttons {
|
13695 |
+
transform: translateY(-6px);
|
13696 |
+
margin-top: -6px;
|
13697 |
+
}
|
13698 |
+
|
13699 |
+
.mec-fes-form .wp-editor-tabs {
|
13700 |
+
padding-right: 0;
|
13701 |
+
margin-right: -2px;
|
13702 |
+
}
|
13703 |
+
|
13704 |
+
.mec-fes-form .wp-editor-tabs .wp-switch-editor {
|
13705 |
+
border-radius: 3px 3px 0 0;
|
13706 |
+
border-color: #cfeff5;
|
13707 |
+
background: #fff;
|
13708 |
+
color: #96b8bd;
|
13709 |
+
border-bottom: 1px solid #ecfcff;
|
13710 |
+
}
|
13711 |
+
|
13712 |
+
.mec-fes-form .wp-editor-tabs .wp-switch-editor:active,
|
13713 |
+
.mec-fes-form .html-active .switch-html,
|
13714 |
+
.mec-fes-form .tmce-active .switch-tmce {
|
13715 |
+
background: #ecfcff;
|
13716 |
+
color: #40d9f1;
|
13717 |
+
}
|
13718 |
+
|
13719 |
+
.mec-fes-form .wp-editor-container,
|
13720 |
+
.mec-fes-form div.mce-edit-area.mce-panel {
|
13721 |
+
border: none;
|
13722 |
+
box-shadow: none;
|
13723 |
+
}
|
13724 |
+
|
13725 |
+
.mec-fes-form .wp-editor-container textarea.wp-editor-area {
|
13726 |
+
max-width: 100%;
|
13727 |
+
}
|
13728 |
+
|
13729 |
+
.mec-fes-form .mce-toolbar .mce-listbox button {
|
13730 |
+
font-size: 12px;
|
13731 |
+
line-height: 22px;
|
13732 |
+
color: #798f96;
|
13733 |
+
}
|
13734 |
+
|
13735 |
+
.mec-fes-form .mce-toolbar .mce-ico {
|
13736 |
+
color: #627f88;
|
13737 |
+
}
|
13738 |
+
|
13739 |
+
.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-active,
|
13740 |
+
.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn:active,
|
13741 |
+
.mec-fes-form .qt-dfw.active {
|
13742 |
+
background: #fff;
|
13743 |
+
border-color: #40d9f1;
|
13744 |
+
box-shadow: inset 0 2px 6px -3px rgba(106, 231, 255, 0.7);
|
13745 |
+
}
|
13746 |
+
|
13747 |
+
.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-active .mce-ico {
|
13748 |
+
color: #40d9f1;
|
13749 |
+
}
|
13750 |
+
|
13751 |
+
body .mce-menu .mce-menu-item.mce-active.mce-menu-item-normal,
|
13752 |
+
body.mce-menu .mce-menu-item.mce-active.mce-menu-item-preview,
|
13753 |
+
body .mce-menu .mce-menu-item.mce-selected,
|
13754 |
+
body .mce-menu .mce-menu-item:focus,
|
13755 |
+
body .mce-menu .mce-menu-item:hover {
|
13756 |
+
background: #40d9f1;
|
13757 |
+
color: #fff;
|
13758 |
+
}
|
13759 |
+
|
13760 |
+
.mec-fes-form .mec-not-in-days-day {
|
13761 |
+
display: inline-block;
|
13762 |
+
padding: 4px 32px 4px 15px;
|
13763 |
+
border-radius: 33px;
|
13764 |
+
border: 1px solid #cfeff5;
|
13765 |
+
box-shadow: 0 1px 3px -1px #cfeff5;
|
13766 |
+
background: #fbfeff;
|
13767 |
+
color: #40d9f1;
|
13768 |
+
vertical-align: top;
|
13769 |
+
}
|
13770 |
+
|
13771 |
+
.mec-fes-form .mec-not-in-days-remove {
|
13772 |
+
display: inline-block;
|
13773 |
+
padding: 0 1px 0 0;
|
13774 |
+
margin-left: -30px;
|
13775 |
+
vertical-align: sub;
|
13776 |
+
background: #ff918a;
|
13777 |
+
color: #fff;
|
13778 |
+
font-family: cursive;
|
13779 |
+
width: 21px;
|
13780 |
+
height: 21px;
|
13781 |
+
line-height: 17px;
|
13782 |
+
text-align: center;
|
13783 |
+
border-radius: 20px;
|
13784 |
+
cursor: pointer;
|
13785 |
+
}
|
13786 |
+
|
13787 |
+
|
13788 |
+
.mec-fes-list ul li .mec-event-status {
|
13789 |
+
float: left;
|
13790 |
+
margin-right: 10px;
|
13791 |
+
margin-left: 0;
|
13792 |
+
font-size: 11px;
|
13793 |
+
font-weight: 400;
|
13794 |
+
letter-spacing: 0.3px;
|
13795 |
+
border-radius: 3px;
|
13796 |
+
padding: 4px 8px;
|
13797 |
+
}
|
13798 |
+
|
13799 |
+
.mec-fes-list ul li .mec-event-status.mec-book-confirmed:before,
|
13800 |
+
.mec-fes-form .post-status.mec-book-confirmed:before {
|
13801 |
+
content: "";
|
13802 |
+
margin: 0;
|
13803 |
+
vertical-align: middle;
|
13804 |
+
line-height: 1;
|
13805 |
+
border-right: 2px solid #fff !important;
|
13806 |
+
border-bottom: 2px solid #fff !important;
|
13807 |
+
transform: rotate(45deg);
|
13808 |
+
color: #fff;
|
13809 |
+
width: 6px;
|
13810 |
+
height: 12px;
|
13811 |
+
float: left;
|
13812 |
+
margin-right: 6px;
|
13813 |
+
}
|
13814 |
+
|
13815 |
+
.mec-fes-list ul li .mec-fes-event-remove:before,
|
13816 |
+
.mec-fes-list ul li .mec-fes-event-view a:before,
|
13817 |
+
.mec-fes-list-top-actions a:before,
|
13818 |
+
.mec-fes-list ul li .mec-fes-event-export a:before {
|
13819 |
+
content: "\e054";
|
13820 |
+
font-family: simple-line-icons;
|
13821 |
+
font-size: 13px;
|
13822 |
+
vertical-align: middle;
|
13823 |
+
}
|
13824 |
+
|
13825 |
+
.mec-fes-list ul li .mec-fes-event-view a:before {
|
13826 |
+
content: "\e087";
|
13827 |
+
}
|
13828 |
+
|
13829 |
+
.mec-fes-list-top-actions a:before {
|
13830 |
+
content: "\e095";
|
13831 |
+
font-weight: 400;
|
13832 |
+
margin-right: 6px;
|
13833 |
+
}
|
13834 |
+
|
13835 |
+
.mec-fes-list ul li .mec-fes-event-export a:before {
|
13836 |
+
content: "\e083";
|
13837 |
+
}
|
13838 |
+
|
13839 |
+
|
13840 |
+
.mec-fes-form .post-status {
|
13841 |
+
border-radius: 20px;
|
13842 |
+
}
|
13843 |
+
|
13844 |
+
.mec-fes-form .post-status.mec-book-confirmed:before {
|
13845 |
+
height: 20px;
|
13846 |
+
width: 9px;
|
13847 |
+
margin: 3px 10px
|
13848 |
+
}
|
13849 |
+
|
13850 |
+
.ui-datepicker-calendar th,
|
13851 |
+
.ui-datepicker .ui-datepicker-calendar td {
|
13852 |
+
height: auto;
|
13853 |
+
padding: 0;
|
13854 |
+
}
|
13855 |
+
.ui-datepicker-calendar th,
|
13856 |
+
.ui-datepicker .ui-datepicker-calendar td a {
|
13857 |
+
font-size: 14px;
|
13858 |
+
line-height: 30px;
|
13859 |
+
}
|
13860 |
+
|
13861 |
+
.mec-fes-form .description {
|
13862 |
+
font-size: 16px;
|
13863 |
+
}
|
13864 |
+
|
13865 |
+
/* FES Export */
|
13866 |
+
.mec-fes-export-wrapper {
|
13867 |
+
width: 640px;
|
13868 |
+
background: #f8feff;
|
13869 |
+
padding: 40px 25px;
|
13870 |
+
}
|
13871 |
+
|
13872 |
+
.mec-fes-export-wrapper .mec-fes-btn-date {
|
13873 |
+
font-size: 16px;
|
13874 |
+
line-height: 44px;
|
13875 |
+
overflow: hidden;
|
13876 |
+
}
|
13877 |
+
|
13878 |
+
.mec-fes-export-wrapper .date-messgae {
|
13879 |
+
font-family: sans-serif;
|
13880 |
+
padding: 2px 18px;
|
13881 |
+
}
|
13882 |
+
|
13883 |
+
.mec-fes-list ul li .mec-event-export-csv,
|
13884 |
+
.mec-fes-list ul li .mec-event-export-excel {
|
13885 |
+
font-size: 12px;
|
13886 |
+
border: 1px solid #40d9f1;
|
13887 |
+
padding: 1px 4px;
|
13888 |
+
background: rgba(141, 229, 243, 0.18);
|
13889 |
+
border-radius: 4px;
|
13890 |
+
color: #40d9f1;
|
13891 |
+
font-family: sans-serif;
|
13892 |
+
cursor: pointer;
|
13893 |
+
display: inline-block;
|
13894 |
+
height: 26px;
|
13895 |
+
line-height: 22px;
|
13896 |
+
}
|
13897 |
+
|
13898 |
+
.mec-export-badge {
|
13899 |
+
font-size: 11px;
|
13900 |
+
color: #40d9f1;
|
13901 |
+
width: auto;
|
13902 |
+
height: 24px;
|
13903 |
+
line-height: 25px;
|
13904 |
+
display: inline-block;
|
13905 |
+
padding: 0 8px;
|
13906 |
+
text-align: center;
|
13907 |
+
border-radius: 3px;
|
13908 |
+
background: #ecfcff;
|
13909 |
+
transition: all .2s ease;
|
13910 |
+
}
|
13911 |
+
|
13912 |
+
.mec-fes-list ul li .mec-fes-event-export {
|
13913 |
+
font-size: 11px;
|
13914 |
+
background: #f7f7f7;
|
13915 |
+
float: right;
|
13916 |
+
margin-left: 5px;
|
13917 |
+
}
|
13918 |
+
|
13919 |
+
.mec-fes-list ul li .mec-fes-event-export:hover {
|
13920 |
+
cursor: pointer;
|
13921 |
+
background: rgb(144, 240, 224);
|
13922 |
+
border-color: rgb(77, 200, 204);
|
13923 |
+
}
|
13924 |
+
|
13925 |
+
.mec-fes-export-wrapper ul {
|
13926 |
+
padding: 0;
|
13927 |
+
width: 100%;
|
13928 |
+
text-align: center;
|
13929 |
+
}
|
13930 |
+
|
13931 |
+
.mec-fes-export-wrapper ul li {
|
13932 |
+
list-style: none;
|
13933 |
+
display: inline-block;
|
13934 |
+
width: 30%;
|
13935 |
+
padding: 10px 15px 10px 32px;
|
13936 |
+
border-radius: 3px;
|
13937 |
+
margin-bottom: 15px;
|
13938 |
+
border: 1px solid #cfeff5;
|
13939 |
+
box-shadow: 0 2px 6px -4px #cfeff5;
|
13940 |
+
background: #fff;
|
13941 |
+
line-height: normal;
|
13942 |
+
margin-right: 10px;
|
13943 |
+
position: relative;
|
13944 |
+
cursor: pointer;
|
13945 |
+
font-size: 13px;
|
13946 |
+
line-height: 1;
|
13947 |
+
transition: all 0.2s ease;
|
13948 |
+
}
|
13949 |
+
|
13950 |
+
.mec-fes-export-wrapper ul li:nth-child(3n+0) {
|
13951 |
+
margin-right: 0;
|
13952 |
+
}
|
13953 |
+
|
13954 |
+
.mec-fes-export-wrapper ul li:hover {
|
13955 |
+
box-shadow: 0 2px 16px -1px #c6e8ef;
|
13956 |
+
}
|
13957 |
+
|
13958 |
+
.mec-fes-export-wrapper ul li:before {
|
13959 |
+
content: "";
|
13960 |
+
position: absolute;
|
13961 |
+
display: inline-block;
|
13962 |
+
background: #fff;
|
13963 |
+
width: 15px;
|
13964 |
+
height: 15px;
|
13965 |
+
margin: -1px 0 0 5px;
|
13966 |
+
cursor: pointer;
|
13967 |
+
border: 2px solid #e1e7ed;
|
13968 |
+
box-shadow: 0 2px 15px -3px rgba(69, 77, 89, .32);
|
13969 |
+
border-radius: 50%;
|
13970 |
+
left: 9px;
|
13971 |
+
top: calc(50% - 7px);
|
13972 |
+
}
|
13973 |
+
|
13974 |
+
.mec-fes-export-wrapper ul li.fes-export-date-active {
|
13975 |
+
color: #40d9f1;
|
13976 |
+
}
|
13977 |
+
.mec-fes-export-wrapper ul li.fes-export-date-active:before {
|
13978 |
+
width: 15px;
|
13979 |
+
height: 15px;
|
13980 |
+
border: 6px solid #40d9f1;
|
13981 |
+
background: #fff;
|
13982 |
+
box-shadow: 0 3px 16px -3px #40d9f1;
|
13983 |
+
}
|
13984 |
+
|
13985 |
+
.mec-fes-btn-export {
|
13986 |
+
margin-left: 15px;
|
13987 |
+
margin-top: 12px;
|
13988 |
+
}
|
13989 |
+
|
13990 |
+
.mec-fes-btn-export span {
|
13991 |
+
position: relative;
|
13992 |
+
border: none;
|
13993 |
+
border-radius: 3px;
|
13994 |
+
color: #fff !important;
|
13995 |
+
display: inline-block;
|
13996 |
+
font-size: 13px;
|
13997 |
+
line-height: 1;
|
13998 |
+
text-transform: none;
|
13999 |
+
font-weight: 400;
|
14000 |
+
text-decoration: none;
|
14001 |
+
cursor: pointer;
|
14002 |
+
margin-right: 10px;
|
14003 |
+
line-height: 1;
|
14004 |
+
letter-spacing: 0;
|
14005 |
+
padding: 15px 22px;
|
14006 |
+
background: #39c36e;
|
14007 |
+
box-shadow: 0 1px 7px -3px #39c36e !important;
|
14008 |
+
-webkit-transition: all .21s ease;
|
14009 |
+
-moz-transition: all .21s ease;
|
14010 |
+
transition: all .21s ease;
|
14011 |
+
cursor: pointer;
|
14012 |
+
}
|
14013 |
+
|
14014 |
+
.mec-fes-btn-export span:hover {
|
14015 |
+
background: #222;
|
14016 |
+
}
|
14017 |
+
|
14018 |
+
span.mec-event-export-csv:before,
|
14019 |
+
.mec-event-export-excel:before {
|
14020 |
+
content: "\e083";
|
14021 |
+
font-family: simple-line-icons;
|
14022 |
+
font-size: 13px;
|
14023 |
+
vertical-align: middle;
|
14024 |
+
margin-right: 7px;
|
14025 |
+
margin-top: -1px;
|
14026 |
+
display: inline-block;
|
14027 |
+
}
|
14028 |
+
|
14029 |
/* --------------------- */
|
assets/css/frontend.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.lity-container,.mec-wrap,.mec-wrap div:not([class^=elementor-]){font-family:Montserrat,Helvetica,Arial,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,Helvetica,Arial,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}.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:#270;background-color:#dff2bf}.warning-msg{color:#9f6000;background-color:#feefb3}.mec-error{color:#d8000c;background-color:#ffbaba}.mec-fes-list ul{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{border-bottom:1px solid #eee;padding:14px 0;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-weight:600;font-size:15px}.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:4px 8px;border:1px solid #e7e7e7;background:#f7f7f7;float:right;margin-left:5px}.mec-fes-list ul li .mec-fes-event-remove:hover{cursor:pointer;background:#f0b7b8;border-color:#cc4d4f}.mec-fes-list-top-actions a{font-size:11px;letter-spacing:2px;text-transform:uppercase;padding:8px 14px;border:1px solid #e3e3e3;background:#f5f5f5}.mec-fes-form-top-actions a,.mec-fes-list-top-actions a{position:relative;border:none;border-radius:0;color:#fff!important;display:inline-block;font-size:12px;letter-spacing:2px;line-height:1;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:17px 21px;background:#39c36e;-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-form .mec-form-row,.mec-fes-list .mec-form-row{margin-bottom:20px;clear:both}.mec-fes-form label{padding-right:10px;font-size:13px;display:block}.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{border-radius:0;min-width:inherit;width:auto;display:inline;background:#fcfcfc;min-height:30px;font-size:13px;border:1px solid #e0e0e0;padding:10px;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both}#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{width:100%;height:auto;color:#000;font-size:36px;font-family:Montserrat,Helvetica,Arial,sans-serif;background:0 0!important;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:20px;border:1px solid #e6e6e6;margin-bottom:20px;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-fes-form .mec-meta-box-fields h4{margin:-20px;font-size:15px;font-weight:700;letter-spacing:2px;text-transform:uppercase;padding:10px 20px;background:#f5f5f5;margin-bottom:20px}.mec-fes-sub-button{width:100%}.mec-available-color-row span.color-selected{background-color:#fdd700;border:3px solid #fff;box-sizing:content-box;box-shadow:0 0 0 2px #437df9}.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:23%;margin-right:1.4%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row{border-bottom:1px solid #e8e8e8;padding-bottom:15px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row:last-of-type{border:none}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-1{width:10%}.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}@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-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}.mec-events-toggle .mec-toggle-item-inner:hover{background:#fbfbfb}.mec-toggle-item-col{float:left;width:180px;margin-top:-6px;border-right:1px solid #e3e3e3;margin-right:15px}.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:inline-block}.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-col{float:none;width:100%;border-right:none;margin-bottom:5px}}.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-advanced-wraper div:first-child>ul{display:block;margin:5px 0;padding:5px 0;width:430px;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}.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:rgba(255,255,255,.99);border-radius:2px;box-shadow:0 4px 8px rgba(0,0,0,.1) inset;border:1px solid #ccc;font-size:15px;padding-top:14px;border-right:0;color:#40d9f1}.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}.mec-fes-form-cntt #mec-organizer-payments ul li h4{background:0 0;letter-spacing:0;border-bottom:1px solid #e8e8e8;display:inline-block;padding-left:0!important;padding-bottom:10px!important;margin:0;margin-bottom:20px;letter-spacing:1px;text-transform:capitalize}.mec-fes-form-cntt #mec-organizer-payments ul>li{width:33%;display:inline-block;vertical-align:top;padding:0 30px}#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}
|
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}
|
assets/js/frontend.js
CHANGED
@@ -275,6 +275,7 @@ var mecSingleEventDisplayer = {
|
|
275 |
});
|
276 |
|
277 |
// Marker Info-Window
|
|
|
278 |
google.maps.event.addListener(marker, 'mouseover', function (event) {
|
279 |
infowindow.close();
|
280 |
infowindow.setContent(this.infowindow);
|
@@ -285,6 +286,14 @@ var mecSingleEventDisplayer = {
|
|
285 |
google.maps.event.addListener(marker, 'click', function (event) {
|
286 |
lity(this.lightbox);
|
287 |
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
288 |
|
289 |
// extend the bounds to include each marker's position
|
290 |
bounds.extend(marker.position);
|
@@ -3317,6 +3326,81 @@ function mec_focus_week(id) {
|
|
3317 |
$($this).prop("disabled", false).css('cursor', 'pointer');
|
3318 |
});
|
3319 |
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3320 |
});
|
3321 |
})(jQuery);
|
3322 |
|
275 |
});
|
276 |
|
277 |
// Marker Info-Window
|
278 |
+
if (Math.max(document.documentElement.clientWidth, window.innerWidth || 0) > 960) {
|
279 |
google.maps.event.addListener(marker, 'mouseover', function (event) {
|
280 |
infowindow.close();
|
281 |
infowindow.setContent(this.infowindow);
|
286 |
google.maps.event.addListener(marker, 'click', function (event) {
|
287 |
lity(this.lightbox);
|
288 |
});
|
289 |
+
} else if (Math.max(document.documentElement.clientWidth, window.innerWidth || 0) <= 960){
|
290 |
+
google.maps.event.addListener(marker, 'click', function (event) {
|
291 |
+
infowindow.close();
|
292 |
+
infowindow.setContent(this.infowindow);
|
293 |
+
infowindow.open(map, this);
|
294 |
+
lity(this.lightbox);
|
295 |
+
});
|
296 |
+
}
|
297 |
|
298 |
// extend the bounds to include each marker's position
|
299 |
bounds.extend(marker.position);
|
3326 |
$($this).prop("disabled", false).css('cursor', 'pointer');
|
3327 |
});
|
3328 |
});
|
3329 |
+
|
3330 |
+
// Check RTL website
|
3331 |
+
var owl_rtl = $('body').hasClass('rtl') ? true : false;
|
3332 |
+
|
3333 |
+
// MEC FES Date Wrappers
|
3334 |
+
var fes_export_list = $('.mec-export-list-wrapper');
|
3335 |
+
|
3336 |
+
// MEC FES Date Item Event
|
3337 |
+
fes_export_list.find('.mec-export-list-item').click(function()
|
3338 |
+
{
|
3339 |
+
$('.mec-export-list-item').removeClass('fes-export-date-active');
|
3340 |
+
$(this).addClass('fes-export-date-active');
|
3341 |
+
});
|
3342 |
+
|
3343 |
+
// MEC FES export csv
|
3344 |
+
$('.mec-event-export-csv').click(function()
|
3345 |
+
{
|
3346 |
+
var mec_event_id = $(this).parent().parent().data('event-id');
|
3347 |
+
var booking_data = $(this).parent().parent().find('.mec-fes-btn-date .mec-certain-user-booking-ids').val();
|
3348 |
+
var certain_data = $(this).parent().parent().find('.fes-export-date-active').data('ids');
|
3349 |
+
|
3350 |
+
if(typeof booking_data == 'undefined') booking_data = ',';
|
3351 |
+
if(typeof certain_data != 'undefined') booking_data = certain_data;
|
3352 |
+
|
3353 |
+
booking_data = booking_data.substr(0, booking_data.length -1);
|
3354 |
+
$.ajax({
|
3355 |
+
url: mecdata.ajax_url,
|
3356 |
+
data: "action=mec_fes_csv_export&fes_nonce=" + mecdata.fes_nonce + "&mec_event_id=" + mec_event_id + "&booking_ids=" + booking_data,
|
3357 |
+
dataType: 'json',
|
3358 |
+
type: "post",
|
3359 |
+
success: function (res) {
|
3360 |
+
if(res.ex != 'error')
|
3361 |
+
{
|
3362 |
+
var $csv = $('<a>');
|
3363 |
+
$csv.attr('href', res.ex);
|
3364 |
+
$('body').append($csv);
|
3365 |
+
$csv.attr('download', 'bookings-' + res.name + '.csv');
|
3366 |
+
$csv[0].click();
|
3367 |
+
$csv.remove();
|
3368 |
+
}
|
3369 |
+
},
|
3370 |
+
error: function () {}
|
3371 |
+
});
|
3372 |
+
});
|
3373 |
+
|
3374 |
+
// MEC FES export msexcel
|
3375 |
+
$('.mec-event-export-excel').click(function()
|
3376 |
+
{
|
3377 |
+
var mec_event_id = $(this).parent().parent().data('event-id');
|
3378 |
+
var booking_data = $(this).parent().parent().find('.mec-fes-btn-date .mec-certain-user-booking-ids').val();
|
3379 |
+
var certain_data = $(this).parent().parent().find('.fes-export-date-active').data('ids');
|
3380 |
+
|
3381 |
+
if(typeof booking_data == 'undefined') booking_data = ',';
|
3382 |
+
if(typeof certain_data != 'undefined') booking_data = certain_data;
|
3383 |
+
|
3384 |
+
booking_data = booking_data.substr(0, booking_data.length -1);
|
3385 |
+
$.ajax({
|
3386 |
+
url: mecdata.ajax_url,
|
3387 |
+
data: "action=mec_fes_msexcel_export&fes_nonce=" + mecdata.fes_nonce + "&mec_event_id=" + mec_event_id + "&booking_ids=" + booking_data,
|
3388 |
+
dataType: 'json',
|
3389 |
+
type: "post",
|
3390 |
+
success: function (res) {
|
3391 |
+
if(res.ex != 'error')
|
3392 |
+
{
|
3393 |
+
var $msexcel = $('<a>');
|
3394 |
+
$msexcel.attr('href', res.ex);
|
3395 |
+
$('body').append($msexcel);
|
3396 |
+
$msexcel.attr('download', 'bookings-' + res.name + '.csv');
|
3397 |
+
$msexcel[0].click();
|
3398 |
+
$msexcel.remove();
|
3399 |
+
}
|
3400 |
+
},
|
3401 |
+
error: function () {}
|
3402 |
+
});
|
3403 |
+
});
|
3404 |
});
|
3405 |
})(jQuery);
|
3406 |
|
changelog.txt
CHANGED
@@ -1,4 +1,23 @@
|
|
1 |
-
v 4.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
- Added: Add mec-past-event for expired events in different skins
|
3 |
- Added: Event publishing notification for frontend event submission system with guest users
|
4 |
- Added: An interval option to display booking module at certain times before the start of the event (pro)
|
1 |
+
v 4.7.0 - 01 October 2019
|
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
|
5 |
+
- Improved: Front-end event submission form and list style - hard-refresh is required
|
6 |
+
- Fixed: Booking limit message (pro)
|
7 |
+
- Fixed: Showing booking module for ongoing events (pro)
|
8 |
+
- Fixed: Warnings in RSS feed of events
|
9 |
+
- Fixed: Booking verification and booking cancelation pages
|
10 |
+
- Fixed: Disable booking button action when is loading - several bookings (pro)
|
11 |
+
- Fixed: Exceptional days added actions
|
12 |
+
- Fixed: Search in published events
|
13 |
+
- Fixed: Full calendar archive filters
|
14 |
+
- Fixed: Double click to open popup in map view on mobile/tablet (pro)
|
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
|
22 |
- Added: Event publishing notification for frontend event submission system with guest users
|
23 |
- Added: An interval option to display booking module at certain times before the start of the event (pro)
|
languages/mec-de_DE.mo
ADDED
Binary file
|
languages/mec-de_DE.po
ADDED
@@ -0,0 +1,7870 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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/feature
|