Version Description
- 24 November 2019 =
- Added: The ticket variations in CSV and Excel exports in Backend and "Front-end Event Submission" (pro)
- Added: Timeline view
- Added: Geolocation feature for map feature of list and grid skins (pro)
- Fixed: Validation for second attendees in booking module (pro)
- Fixed: A required validation issue on the booking form for some fields (pro)
- Fixed: "Show Only Expired Events" mode
- Fixed: A focus issue on daily skin
- Fixed: Set geographical coordinates when add in single event page (pro)
Download this release
Release Info
Developer | webnus |
Plugin | Modern Events Calendar Lite |
Version | 4.8.2 |
Comparing to | |
See all releases |
Code changes from version 4.8.1 to 4.8.2
- app/features/fes.php +33 -9
- app/features/gateways/paypal_ipn.php +30 -0
- app/features/locations.php +5 -6
- app/features/mec/dashboard.php +24 -0
- app/features/mec/dyncss.php +30 -1
- app/features/mec/meta_boxes/display_options.php +84 -2
- app/features/mec/styling.php +1 -1
- app/features/mec/support-page.php +15 -5
- app/libraries/main.php +5 -3
- app/libraries/notifications.php +10 -1
- app/libraries/render.php +2 -2
- app/libraries/skins.php +3 -1
- app/modules/booking/default.php +1 -9
- app/modules/googlemap/details.php +2 -2
- app/skins/custom/render.php +114 -16
- app/skins/grid.php +3 -0
- app/skins/grid/render.php +1 -0
- app/skins/list.php +3 -0
- app/skins/list/render.php +1 -0
- app/skins/monthly_view/calendar_clean.php +14 -0
- app/skins/timeline.php +245 -0
- app/skins/timeline/index.html +0 -0
- app/skins/timeline/render.php +130 -0
- app/skins/timeline/tpl.php +68 -0
- assets/css/backend.css +1 -0
- assets/css/backend.min.css +1 -1
- assets/css/frontend.css +333 -0
- assets/css/frontend.min.css +1 -1
- assets/img/wn-ms-icon-17-n.svg +21 -0
- assets/js/backend.js +5 -0
- assets/js/frontend.js +176 -6
- changelog.txt +12 -2
- languages/modern-events-calendar-lite-cs_CZ.mo +0 -0
- languages/modern-events-calendar-lite-cs_CZ.po +750 -684
- languages/modern-events-calendar-lite-de_DE.mo +0 -0
- languages/modern-events-calendar-lite-de_DE.po +755 -691
- languages/modern-events-calendar-lite-en_US.mo +0 -0
- languages/modern-events-calendar-lite-en_US.po +286 -297
app/features/fes.php
CHANGED
@@ -220,7 +220,7 @@ class MEC_feature_fes extends MEC_base
|
|
220 |
$main_event_id = NULL;
|
221 |
if(count($event_ids) == 1) $main_event_id = $event_ids[0];
|
222 |
|
223 |
-
$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'));
|
224 |
$columns = apply_filters('mec_csv_export_columns', $columns);
|
225 |
$reg_fields = $this->main->get_reg_fields($main_event_id);
|
226 |
foreach($reg_fields as $reg_field_key=>$reg_field)
|
@@ -259,26 +259,48 @@ class MEC_feature_fes extends MEC_base
|
|
259 |
|
260 |
$confirmed = $this->main->get_confirmation_label(get_post_meta($post_id, 'mec_confirmed', true));
|
261 |
$verified = $this->main->get_verification_label(get_post_meta($post_id, 'mec_verified', true));
|
262 |
-
|
|
|
263 |
$attachments = '';
|
264 |
-
if(
|
265 |
{
|
266 |
-
foreach
|
|
|
267 |
$attachments .= @$attachment['url'] . "\n";
|
268 |
}
|
269 |
}
|
270 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
271 |
foreach($attendees as $key => $attendee)
|
272 |
{
|
273 |
-
|
|
|
|
|
274 |
continue;
|
275 |
}
|
276 |
-
if
|
|
|
277 |
continue;
|
278 |
}
|
279 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
280 |
$ticket_id = isset($attendee['id']) ? $attendee['id'] : get_post_meta($post_id, 'mec_ticket_id', true);
|
281 |
-
$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);
|
282 |
$booking = apply_filters('mec_csv_export_booking', $booking, $post_id, $event_id);
|
283 |
|
284 |
$reg_form = isset($attendee['reg']) ? $attendee['reg'] : array();
|
@@ -292,11 +314,13 @@ class MEC_feature_fes extends MEC_base
|
|
292 |
|
293 |
$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]) : '---')) : '';
|
294 |
}
|
295 |
-
|
|
|
296 |
$booking[] = $attachments;
|
297 |
$attachments = '';
|
298 |
}
|
299 |
fputcsv($output, $booking);
|
|
|
300 |
}
|
301 |
}
|
302 |
|
220 |
$main_event_id = NULL;
|
221 |
if(count($event_ids) == 1) $main_event_id = $event_ids[0];
|
222 |
|
223 |
+
$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'), __('Ticket Variation', 'modern-events-calendar-lite'), __('Confirmation', 'modern-events-calendar-lite'), __('Verification', 'modern-events-calendar-lite'));
|
224 |
$columns = apply_filters('mec_csv_export_columns', $columns);
|
225 |
$reg_fields = $this->main->get_reg_fields($main_event_id);
|
226 |
foreach($reg_fields as $reg_field_key=>$reg_field)
|
259 |
|
260 |
$confirmed = $this->main->get_confirmation_label(get_post_meta($post_id, 'mec_confirmed', true));
|
261 |
$verified = $this->main->get_verification_label(get_post_meta($post_id, 'mec_verified', true));
|
262 |
+
$get_variations = array();
|
263 |
+
|
264 |
$attachments = '';
|
265 |
+
if(isset($attendees['attachments']))
|
266 |
{
|
267 |
+
foreach($attendees['attachments'] as $attachment)
|
268 |
+
{
|
269 |
$attachments .= @$attachment['url'] . "\n";
|
270 |
}
|
271 |
}
|
272 |
|
273 |
+
// Ticket Variations
|
274 |
+
if(isset($attendees) and is_array($attendees) and count($attendees))
|
275 |
+
{
|
276 |
+
$book = $this->getBook();
|
277 |
+
$transaction_id = get_post_meta($post_id, 'mec_transaction_id', true);
|
278 |
+
$ticket_variations = $this->main->ticket_variations($post_id);
|
279 |
+
$get_variations = $book->get_transaction($transaction_id);
|
280 |
+
}
|
281 |
+
|
282 |
+
$counter = 0;
|
283 |
foreach($attendees as $key => $attendee)
|
284 |
{
|
285 |
+
$ticket_variations_output = '';
|
286 |
+
if($key === 'attachments')
|
287 |
+
{
|
288 |
continue;
|
289 |
}
|
290 |
+
if(isset($attendee[0]['MEC_TYPE_OF_DATA']))
|
291 |
+
{
|
292 |
continue;
|
293 |
}
|
294 |
+
if(isset($get_variations['tickets']) and is_array($get_variations['tickets']) and isset($get_variations['tickets'][$counter]))
|
295 |
+
{
|
296 |
+
for($i = 1; $i <= count($get_variations['tickets'][$counter]['variations']); $i++)
|
297 |
+
{
|
298 |
+
if((int) $get_variations['tickets'][$counter]['variations'][$i] > 0) $ticket_variations_output .= $ticket_variations[$i]['title'].": ( ".$get_variations['tickets'][$counter]['variations'][$i].' )'."\n";
|
299 |
+
}
|
300 |
+
}
|
301 |
+
|
302 |
$ticket_id = isset($attendee['id']) ? $attendee['id'] : get_post_meta($post_id, 'mec_ticket_id', true);
|
303 |
+
$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), $ticket_variations_output, $confirmed, $verified);
|
304 |
$booking = apply_filters('mec_csv_export_booking', $booking, $post_id, $event_id);
|
305 |
|
306 |
$reg_form = isset($attendee['reg']) ? $attendee['reg'] : array();
|
314 |
|
315 |
$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]) : '---')) : '';
|
316 |
}
|
317 |
+
if($attachments)
|
318 |
+
{
|
319 |
$booking[] = $attachments;
|
320 |
$attachments = '';
|
321 |
}
|
322 |
fputcsv($output, $booking);
|
323 |
+
$counter++;
|
324 |
}
|
325 |
}
|
326 |
|
app/features/gateways/paypal_ipn.php
ADDED
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* WordPress initializing
|
4 |
+
*/
|
5 |
+
function mec_find_wordpress_base_path()
|
6 |
+
{
|
7 |
+
$dir = dirname(__FILE__);
|
8 |
+
|
9 |
+
do
|
10 |
+
{
|
11 |
+
if(file_exists($dir.'/wp-config.php')) return $dir;
|
12 |
+
}
|
13 |
+
while($dir = realpath($dir.'/..'));
|
14 |
+
|
15 |
+
return NULL;
|
16 |
+
}
|
17 |
+
|
18 |
+
define('BASE_PATH', mec_find_wordpress_base_path().'/');
|
19 |
+
define('WP_USE_THEMES', false);
|
20 |
+
|
21 |
+
global $wp, $wp_query, $wp_the_query, $wp_rewrite, $wp_did_header;
|
22 |
+
require(BASE_PATH.'wp-load.php');
|
23 |
+
|
24 |
+
// exit if request method is GET
|
25 |
+
if(!isset($_SERVER['REQUEST_METHOD']) or (isset($_SERVER['REQUEST_METHOD']) and $_SERVER['REQUEST_METHOD'] == 'GET')) exit;
|
26 |
+
|
27 |
+
$model = new MEC_gateway_paypal_express();
|
28 |
+
|
29 |
+
$POST = array_map('stripslashes', $_POST);
|
30 |
+
$verified = $model->validate_express_payment($POST);
|
app/features/locations.php
CHANGED
@@ -203,8 +203,8 @@ class MEC_feature_locations extends MEC_base
|
|
203 |
{
|
204 |
$geo_point = $this->main->get_lat_lng($address);
|
205 |
|
206 |
-
$latitude = $geo_point[0];
|
207 |
-
$longitude = $geo_point[1];
|
208 |
}
|
209 |
|
210 |
update_term_meta($term_id, 'address', $address);
|
@@ -424,7 +424,6 @@ class MEC_feature_locations extends MEC_base
|
|
424 |
}
|
425 |
|
426 |
$location_id = $term['term_id'];
|
427 |
-
|
428 |
if(!$location_id) return false;
|
429 |
|
430 |
// Set Location ID to the parameters
|
@@ -437,12 +436,12 @@ class MEC_feature_locations extends MEC_base
|
|
437 |
$longitude = (isset($_mec['location']['longitude']) and trim($_mec['location']['longitude'])) ? sanitize_text_field($_mec['location']['longitude']) : 0;
|
438 |
$thumbnail = (isset($_mec['location']['thumbnail']) and trim($_mec['location']['thumbnail'])) ? sanitize_text_field($_mec['location']['thumbnail']) : '';
|
439 |
|
440 |
-
if(!trim($latitude) or !trim($longitude))
|
441 |
{
|
442 |
$geo_point = $this->main->get_lat_lng($address);
|
443 |
|
444 |
-
$latitude = $geo_point[0];
|
445 |
-
$longitude = $geo_point[1];
|
446 |
}
|
447 |
|
448 |
update_term_meta($location_id, 'address', $address);
|
203 |
{
|
204 |
$geo_point = $this->main->get_lat_lng($address);
|
205 |
|
206 |
+
if(isset($geo_point[0]) and trim($geo_point[0])) $latitude = $geo_point[0];
|
207 |
+
if(isset($geo_point[1]) and trim($geo_point[1])) $longitude = $geo_point[1];
|
208 |
}
|
209 |
|
210 |
update_term_meta($term_id, 'address', $address);
|
424 |
}
|
425 |
|
426 |
$location_id = $term['term_id'];
|
|
|
427 |
if(!$location_id) return false;
|
428 |
|
429 |
// Set Location ID to the parameters
|
436 |
$longitude = (isset($_mec['location']['longitude']) and trim($_mec['location']['longitude'])) ? sanitize_text_field($_mec['location']['longitude']) : 0;
|
437 |
$thumbnail = (isset($_mec['location']['thumbnail']) and trim($_mec['location']['thumbnail'])) ? sanitize_text_field($_mec['location']['thumbnail']) : '';
|
438 |
|
439 |
+
if((!trim($latitude) or !trim($longitude)) and trim($address))
|
440 |
{
|
441 |
$geo_point = $this->main->get_lat_lng($address);
|
442 |
|
443 |
+
if(isset($geo_point[0]) and trim($geo_point[0])) $latitude = $geo_point[0];
|
444 |
+
if(isset($geo_point[1]) and trim($geo_point[1])) $longitude = $geo_point[1];
|
445 |
}
|
446 |
|
447 |
update_term_meta($location_id, 'address', $address);
|
app/features/mec/dashboard.php
CHANGED
@@ -136,6 +136,30 @@ $box_stats = apply_filters('mec_dashboard_box_stats', true);
|
|
136 |
</div>
|
137 |
</div>
|
138 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
139 |
<?php if($this->getPRO()) : ?>
|
140 |
<div class="w-col-sm-12">
|
141 |
<div class="w-box mec-activation">
|
136 |
</div>
|
137 |
</div>
|
138 |
</div>
|
139 |
+
<?php if( !$this->getPRO() && has_action('addons_activation') ) : ?>
|
140 |
+
<div class="w-col-sm-12">
|
141 |
+
<div class="w-box mec-activation">
|
142 |
+
<div class="w-box-head">
|
143 |
+
<?php _e('MEC Activate', 'modern-events-calendar-lite'); ?>
|
144 |
+
</div>
|
145 |
+
<?php if (current_user_can( 'administrator' )): ?>
|
146 |
+
<div class="w-box-content">
|
147 |
+
<div class="box-addons-activation">
|
148 |
+
<?php $mec_options = get_option('mec_options'); ?>
|
149 |
+
<div class="box-addon-activation-toggle-head"><i class="mec-sl-plus"></i><span><?php _e('Activate Addons', 'modern-events-calendar-lite'); ?></span></div>
|
150 |
+
<div class="box-addon-activation-toggle-content">
|
151 |
+
<?php do_action( 'addons_activation' ); ?>
|
152 |
+
</div>
|
153 |
+
</div>
|
154 |
+
</div>
|
155 |
+
<?php else: ?>
|
156 |
+
<div class="w-box-content">
|
157 |
+
<p style="background: #f7f7f7f7;display: inline-block;padding: 17px 35px;border-radius: 3px;/* box-shadow: 0 1px 16px rgba(0,0,0,.034); */"><?php echo esc_html__('You cannot access this section.', 'modern-events-calendar-lite'); ?></p>
|
158 |
+
</div>
|
159 |
+
<?php endif; ?>
|
160 |
+
</div>
|
161 |
+
</div>
|
162 |
+
<?php endif; ?>
|
163 |
<?php if($this->getPRO()) : ?>
|
164 |
<div class="w-col-sm-12">
|
165 |
<div class="w-box mec-activation">
|
app/features/mec/dyncss.php
CHANGED
@@ -8,9 +8,30 @@ $styling = $this->main->get_styling();
|
|
8 |
// colorskin
|
9 |
$color = '';
|
10 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
if(isset($styling['color']) && $styling['color']) $color = $styling['color'];
|
12 |
elseif(isset($styling['mec_colorskin'])) $color = $styling['mec_colorskin'];
|
13 |
|
|
|
|
|
|
|
14 |
// Typography
|
15 |
$mec_h_fontfamily_arr = $mec_p_fontfamily_arr = $fonts_url = $mec_container_normal_width = $mec_container_large_width = '';
|
16 |
|
@@ -125,7 +146,7 @@ if($color && $color != '#40d9f1'): ?>
|
|
125 |
|
126 |
/* == Backgrounds
|
127 |
----------------- */
|
128 |
-
.mec-wrap.colorskin-custom .mec-event-sharing .mec-event-share:hover .event-sharing-icon,.mec-wrap.colorskin-custom .mec-event-grid-clean .mec-event-date,.mec-wrap.colorskin-custom .mec-event-list-modern .mec-event-sharing > li:hover a i,.mec-wrap.colorskin-custom .mec-event-list-modern .mec-event-sharing .mec-event-share:hover .mec-event-sharing-icon,.mec-wrap.colorskin-custom .mec-event-list-modern .mec-event-sharing li:hover a i,.mec-wrap.colorskin-custom .mec-calendar:not(.mec-event-calendar-classic) .mec-selected-day,.mec-wrap.colorskin-custom .mec-calendar .mec-selected-day:hover,.mec-wrap.colorskin-custom .mec-calendar .mec-calendar-row dt.mec-has-event:hover,.mec-wrap.colorskin-custom .mec-calendar .mec-has-event:after, .mec-wrap.colorskin-custom .mec-bg-color, .mec-wrap.colorskin-custom .mec-bg-color-hover:hover, .colorskin-custom .mec-event-sharing-wrap:hover > li, .mec-wrap.colorskin-custom .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected,.mec-wrap .flip-clock-wrapper ul li a div div.inn,.mec-wrap .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected,.event-carousel-type1-head .mec-event-date-carousel,.mec-event-countdown-style3 .mec-event-date,#wrap .mec-wrap article.mec-event-countdown-style1,.mec-event-countdown-style1 .mec-event-countdown-part3 a.mec-event-button,.mec-wrap .mec-event-countdown-style2,.mec-map-get-direction-btn-cnt input[type="submit"],.mec-booking button,span.mec-marker-wrap
|
129 |
{background-color: <?php echo $color; ?>;}
|
130 |
|
131 |
|
@@ -142,6 +163,12 @@ if($color && $color != '#40d9f1'): ?>
|
|
142 |
/* == BoxShadow
|
143 |
------------------ */
|
144 |
.mec-wrap.colorskin-custom .mec-box-shadow-color { box-shadow: 0 4px 22px -7px <?php echo $color; ?>;}
|
|
|
|
|
|
|
|
|
|
|
|
|
145 |
<?php endif;
|
146 |
|
147 |
// Render Container Width
|
@@ -180,6 +207,8 @@ if($content_color): ?>
|
|
180 |
}
|
181 |
<?php endif;
|
182 |
|
|
|
|
|
183 |
// get render content
|
184 |
$out = '';
|
185 |
$out = ob_get_clean();
|
8 |
// colorskin
|
9 |
$color = '';
|
10 |
|
11 |
+
function hex2rgb( $cc ) {
|
12 |
+
if ( $cc[0] == '#' ) {
|
13 |
+
$cc = substr( $cc, 1 );
|
14 |
+
}
|
15 |
+
if ( strlen( $cc ) == 6 ) {
|
16 |
+
list( $r, $g, $b ) = array( $cc[0] . $cc[1], $cc[2] . $cc[3], $cc[4] . $cc[5] );
|
17 |
+
} elseif ( strlen( $cc ) == 3 ) {
|
18 |
+
list( $r, $g, $b ) = array( $cc[0] . $cc[0], $cc[1] . $cc[1], $cc[2] . $cc[2] );
|
19 |
+
} else {
|
20 |
+
return false;
|
21 |
+
}
|
22 |
+
$r = hexdec( $r );
|
23 |
+
$g = hexdec( $g );
|
24 |
+
$b = hexdec( $b );
|
25 |
+
return array( 'red' => $r, 'green' => $g, 'blue' => $b );
|
26 |
+
}
|
27 |
+
|
28 |
+
|
29 |
if(isset($styling['color']) && $styling['color']) $color = $styling['color'];
|
30 |
elseif(isset($styling['mec_colorskin'])) $color = $styling['mec_colorskin'];
|
31 |
|
32 |
+
$rgb_color = '64,217,241';
|
33 |
+
if ( !empty($color)) $rgb_color = hex2rgb($color);
|
34 |
+
|
35 |
// Typography
|
36 |
$mec_h_fontfamily_arr = $mec_p_fontfamily_arr = $fonts_url = $mec_container_normal_width = $mec_container_large_width = '';
|
37 |
|
146 |
|
147 |
/* == Backgrounds
|
148 |
----------------- */
|
149 |
+
.mec-wrap.colorskin-custom .mec-event-sharing .mec-event-share:hover .event-sharing-icon,.mec-wrap.colorskin-custom .mec-event-grid-clean .mec-event-date,.mec-wrap.colorskin-custom .mec-event-list-modern .mec-event-sharing > li:hover a i,.mec-wrap.colorskin-custom .mec-event-list-modern .mec-event-sharing .mec-event-share:hover .mec-event-sharing-icon,.mec-wrap.colorskin-custom .mec-event-list-modern .mec-event-sharing li:hover a i,.mec-wrap.colorskin-custom .mec-calendar:not(.mec-event-calendar-classic) .mec-selected-day,.mec-wrap.colorskin-custom .mec-calendar .mec-selected-day:hover,.mec-wrap.colorskin-custom .mec-calendar .mec-calendar-row dt.mec-has-event:hover,.mec-wrap.colorskin-custom .mec-calendar .mec-has-event:after, .mec-wrap.colorskin-custom .mec-bg-color, .mec-wrap.colorskin-custom .mec-bg-color-hover:hover, .colorskin-custom .mec-event-sharing-wrap:hover > li, .mec-wrap.colorskin-custom .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected,.mec-wrap .flip-clock-wrapper ul li a div div.inn,.mec-wrap .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected,.event-carousel-type1-head .mec-event-date-carousel,.mec-event-countdown-style3 .mec-event-date,#wrap .mec-wrap article.mec-event-countdown-style1,.mec-event-countdown-style1 .mec-event-countdown-part3 a.mec-event-button,.mec-wrap .mec-event-countdown-style2,.mec-map-get-direction-btn-cnt input[type="submit"],.mec-booking button,span.mec-marker-wrap,.mec-wrap.colorskin-custom .mec-timeline-events-container .mec-timeline-event-date:before
|
150 |
{background-color: <?php echo $color; ?>;}
|
151 |
|
152 |
|
163 |
/* == BoxShadow
|
164 |
------------------ */
|
165 |
.mec-wrap.colorskin-custom .mec-box-shadow-color { box-shadow: 0 4px 22px -7px <?php echo $color; ?>;}
|
166 |
+
|
167 |
+
|
168 |
+
/* == Timeline View
|
169 |
+
------------------ */
|
170 |
+
.mec-wrap.colorskin-custom .mec-timeline-event-time ,.mec-wrap.colorskin-custom .mec-timeline-event-location { background: rgba(<?php echo $rgb_color['red']; ?>,<?php echo $rgb_color['green']; ?>,<?php echo $rgb_color['blue']; ?>,.11);}
|
171 |
+
.mec-wrap.colorskin-custom .mec-timeline-events-container .mec-timeline-event-date:after { background: rgba(<?php echo $rgb_color['red']; ?>,<?php echo $rgb_color['green']; ?>,<?php echo $rgb_color['blue']; ?>,.3);}
|
172 |
<?php endif;
|
173 |
|
174 |
// Render Container Width
|
207 |
}
|
208 |
<?php endif;
|
209 |
|
210 |
+
|
211 |
+
|
212 |
// get render content
|
213 |
$out = '';
|
214 |
$out = ob_get_clean();
|
app/features/mec/meta_boxes/display_options.php
CHANGED
@@ -162,11 +162,24 @@ $events = $this->main->get_events();
|
|
162 |
<div class="info-msg"><?php echo sprintf(__("%s is required to use this feature.", 'modern-events-calendar-lite'), '<a href="'.$this->main->get_pro_link().'" target="_blank">'.__('Pro version of Modern Events Calendar', 'modern-events-calendar-lite').'</a>'); ?></div>
|
163 |
<?php else: ?>
|
164 |
<input type="hidden" name="mec[sk-options][list][map_on_top]" value="0" />
|
165 |
-
<input type="checkbox" name="mec[sk-options][list][map_on_top]" id="mec_skin_list_map_on_top" value="1" <?php if(isset($sk_options_list['map_on_top']) and $sk_options_list['map_on_top']) echo 'checked="checked"'; ?> />
|
166 |
<label for="mec_skin_list_map_on_top"></label>
|
167 |
<?php endif; ?>
|
168 |
</div>
|
169 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
170 |
<div class="mec-sed-methode-container">
|
171 |
<?php echo $this->sed_method_field('list', (isset($sk_options_list['sed_method']) ? $sk_options_list['sed_method'] : 0), (isset($sk_options_list['image_popup']) ? $sk_options_list['image_popup'] : 0)); ?>
|
172 |
</div>
|
@@ -327,11 +340,24 @@ $events = $this->main->get_events();
|
|
327 |
<div class="info-msg"><?php echo sprintf(__("%s is required to use this feature.", 'modern-events-calendar-lite'), '<a href="'.$this->main->get_pro_link().'" target="_blank">'.__('Pro version of Modern Events Calendar', 'modern-events-calendar-lite').'</a>'); ?></div>
|
328 |
<?php else: ?>
|
329 |
<input type="hidden" name="mec[sk-options][grid][map_on_top]" value="0" />
|
330 |
-
<input type="checkbox" name="mec[sk-options][grid][map_on_top]" id="mec_skin_grid_map_on_top" value="1" <?php if(isset($sk_options_grid['map_on_top']) and $sk_options_grid['map_on_top']) echo 'checked="checked"'; ?> />
|
331 |
<label for="mec_skin_grid_map_on_top"></label>
|
332 |
<?php endif; ?>
|
333 |
</div>
|
334 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
335 |
<?php echo $this->sed_method_field('grid', (isset($sk_options_grid['sed_method']) ? $sk_options_grid['sed_method'] : 0), (isset($sk_options_grid['image_popup']) ? $sk_options_grid['image_popup'] : 0)); ?>
|
336 |
</div>
|
337 |
|
@@ -1218,6 +1244,61 @@ $events = $this->main->get_events();
|
|
1218 |
</div>
|
1219 |
</div>
|
1220 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1221 |
<!-- Custom Skins -->
|
1222 |
<?php do_action('mec_skin_options', $sk_options); ?>
|
1223 |
</div>
|
@@ -1249,6 +1330,7 @@ $events = $this->main->get_events();
|
|
1249 |
jQuery('.mec-custom-nice-select li[data-value="available_spot"]').prepend('<div class="wn-img-sh"><img src="https://webnus.net/modern-events-calendar/wp-content/skins/available_spot.svg" /></div>');
|
1250 |
jQuery('.mec-custom-nice-select li[data-value="carousel"]').prepend('<div class="wn-img-sh"><img src="https://webnus.net/modern-events-calendar/wp-content/skins/carousel.svg" /></div>');
|
1251 |
jQuery('.mec-custom-nice-select li[data-value="slider"]').prepend('<div class="wn-img-sh"><img src="https://webnus.net/modern-events-calendar/wp-content/skins/slider.svg" /></div>');
|
|
|
1252 |
|
1253 |
/** List View Skins */
|
1254 |
jQuery('#mec_list_skin_options_container .mec-form-row .nice-select .list li[data-value="classic"]').append('<span class="wn-hover-img-sh"><img src="https://webnus.net/modern-events-calendar/wp-content/skins/list/list-classic.png" /></span>');
|
162 |
<div class="info-msg"><?php echo sprintf(__("%s is required to use this feature.", 'modern-events-calendar-lite'), '<a href="'.$this->main->get_pro_link().'" target="_blank">'.__('Pro version of Modern Events Calendar', 'modern-events-calendar-lite').'</a>'); ?></div>
|
163 |
<?php else: ?>
|
164 |
<input type="hidden" name="mec[sk-options][list][map_on_top]" value="0" />
|
165 |
+
<input type="checkbox" name="mec[sk-options][list][map_on_top]" id="mec_skin_list_map_on_top" value="1" onchange="mec_skin_map_toggle(this);" <?php if(isset($sk_options_list['map_on_top']) and $sk_options_list['map_on_top']) echo 'checked="checked"'; ?> />
|
166 |
<label for="mec_skin_list_map_on_top"></label>
|
167 |
<?php endif; ?>
|
168 |
</div>
|
169 |
</div>
|
170 |
+
<!-- Start Set Map Geolocation -->
|
171 |
+
<div class="mec-form-row mec-switcher mec-set-geolocation <?php if(!isset($sk_options_list['map_on_top']) or (isset($sk_options_list['map_on_top']) and !$sk_options_list['map_on_top'])) echo 'mec-util-hidden'; ?>">
|
172 |
+
<div class="mec-col-4">
|
173 |
+
<label for="mec_skin_list_set_geo_location"><?php _e('Geolocation', 'modern-events-calendar-lite'); ?></label>
|
174 |
+
</div>
|
175 |
+
<div class="mec-col-4">
|
176 |
+
<input type="hidden" name="mec[sk-options][list][set_geolocation]" value="0" />
|
177 |
+
<input type="checkbox" name="mec[sk-options][list][set_geolocation]" id="mec_skin_list_set_geo_location" value="1"
|
178 |
+
<?php if(isset($sk_options_list['set_geolocation']) and trim($sk_options_list['set_geolocation'])) echo 'checked="checked"'; ?> />
|
179 |
+
<label for="mec_skin_list_set_geo_location"></label>
|
180 |
+
</div>
|
181 |
+
</div>
|
182 |
+
<!-- End Set Map Geolocation -->
|
183 |
<div class="mec-sed-methode-container">
|
184 |
<?php echo $this->sed_method_field('list', (isset($sk_options_list['sed_method']) ? $sk_options_list['sed_method'] : 0), (isset($sk_options_list['image_popup']) ? $sk_options_list['image_popup'] : 0)); ?>
|
185 |
</div>
|
340 |
<div class="info-msg"><?php echo sprintf(__("%s is required to use this feature.", 'modern-events-calendar-lite'), '<a href="'.$this->main->get_pro_link().'" target="_blank">'.__('Pro version of Modern Events Calendar', 'modern-events-calendar-lite').'</a>'); ?></div>
|
341 |
<?php else: ?>
|
342 |
<input type="hidden" name="mec[sk-options][grid][map_on_top]" value="0" />
|
343 |
+
<input type="checkbox" name="mec[sk-options][grid][map_on_top]" id="mec_skin_grid_map_on_top" value="1" onchange="mec_skin_map_toggle(this);" <?php if(isset($sk_options_grid['map_on_top']) and $sk_options_grid['map_on_top']) echo 'checked="checked"'; ?> />
|
344 |
<label for="mec_skin_grid_map_on_top"></label>
|
345 |
<?php endif; ?>
|
346 |
</div>
|
347 |
</div>
|
348 |
+
<!-- Start Set Map Geolocation -->
|
349 |
+
<div class="mec-form-row mec-switcher mec-set-geolocation <?php if(!isset($sk_options_grid['map_on_top']) or (isset($sk_options_grid['map_on_top']) and !$sk_options_grid['map_on_top'])) echo 'mec-util-hidden'; ?>">
|
350 |
+
<div class="mec-col-4">
|
351 |
+
<label for="mec_skin_grid_set_geo_location"><?php _e('Geolocation', 'modern-events-calendar-lite'); ?></label>
|
352 |
+
</div>
|
353 |
+
<div class="mec-col-4">
|
354 |
+
<input type="hidden" name="mec[sk-options][grid][set_geolocation]" value="0" />
|
355 |
+
<input type="checkbox" name="mec[sk-options][grid][set_geolocation]" id="mec_skin_grid_set_geo_location" value="1"
|
356 |
+
<?php if(isset($sk_options_grid['set_geolocation']) and trim($sk_options_grid['set_geolocation'])) echo 'checked="checked"'; ?> />
|
357 |
+
<label for="mec_skin_grid_set_geo_location"></label>
|
358 |
+
</div>
|
359 |
+
</div>
|
360 |
+
<!-- End Set Map Geolocation -->
|
361 |
<?php echo $this->sed_method_field('grid', (isset($sk_options_grid['sed_method']) ? $sk_options_grid['sed_method'] : 0), (isset($sk_options_grid['image_popup']) ? $sk_options_grid['image_popup'] : 0)); ?>
|
362 |
</div>
|
363 |
|
1244 |
</div>
|
1245 |
</div>
|
1246 |
|
1247 |
+
<!-- Timeline View -->
|
1248 |
+
<div class="mec-skin-options-container mec-util-hidden" id="mec_timeline_skin_options_container">
|
1249 |
+
|
1250 |
+
<?php $sk_options_timeline = isset($sk_options['timeline']) ? $sk_options['timeline'] : array(); ?>
|
1251 |
+
<div class="mec-form-row">
|
1252 |
+
<label class="mec-col-4" for="mec_skin_timeline_start_date_type"><?php _e('Start Date', 'modern-events-calendar-lite'); ?></label>
|
1253 |
+
<select class="mec-col-4 wn-mec-select" name="mec[sk-options][timeline][start_date_type]" id="mec_skin_timeline_start_date_type" onchange="if(this.value == 'date') jQuery('#mec_skin_timeline_start_date_container').show(); else jQuery('#mec_skin_timeline_start_date_container').hide();">
|
1254 |
+
<option value="today" <?php if(isset($sk_options_timeline['start_date_type']) and $sk_options_timeline['start_date_type'] == 'today') echo 'selected="selected"'; ?>><?php _e('Today', 'modern-events-calendar-lite'); ?></option>
|
1255 |
+
<option value="tomorrow" <?php if(isset($sk_options_timeline['start_date_type']) and $sk_options_timeline['start_date_type'] == 'tomorrow') echo 'selected="selected"'; ?>><?php _e('Tomorrow', 'modern-events-calendar-lite'); ?></option>
|
1256 |
+
<option value="start_current_month" <?php if(isset($sk_options_timeline['start_date_type']) and $sk_options_timeline['start_date_type'] == 'start_current_month') echo 'selected="selected"'; ?>><?php _e('Start of Current Month', 'modern-events-calendar-lite'); ?></option>
|
1257 |
+
<option value="start_next_month" <?php if(isset($sk_options_timeline['start_date_type']) and $sk_options_timeline['start_date_type'] == 'start_next_month') echo 'selected="selected"'; ?>><?php _e('Start of Next Month', 'modern-events-calendar-lite'); ?></option>
|
1258 |
+
<option value="date" <?php if(isset($sk_options_timeline['start_date_type']) and $sk_options_timeline['start_date_type'] == 'date') echo 'selected="selected"'; ?>><?php _e('On a certain date', 'modern-events-calendar-lite'); ?></option>
|
1259 |
+
</select>
|
1260 |
+
<div class="mec-col-4 <?php if(!isset($sk_options_timeline['start_date_type']) or (isset($sk_options_timeline['start_date_type']) and $sk_options_timeline['start_date_type'] != 'date')) echo 'mec-util-hidden'; ?>" id="mec_skin_timeline_start_date_container">
|
1261 |
+
<input class="mec_date_picker" type="text" name="mec[sk-options][timeline][start_date]" id="mec_skin_timeline_start_date" placeholder="<?php echo sprintf(__('eg. %s', 'modern-events-calendar-lite'), date('Y-n-d')); ?>" value="<?php if(isset($sk_options_timeline['start_date'])) echo $sk_options_timeline['start_date']; ?>" />
|
1262 |
+
</div>
|
1263 |
+
</div>
|
1264 |
+
<div class="mec-form-row">
|
1265 |
+
<label class="mec-col-4" for="mec_skin_timeline_classic_date_format1"><?php _e('Date Formats', 'modern-events-calendar-lite'); ?></label>
|
1266 |
+
<input type="text" class="mec-col-4" name="mec[sk-options][timeline][classic_date_format1]" id="mec_skin_timeline_classic_date_format1" value="<?php echo ((isset($sk_options_timeline['classic_date_format1']) and trim($sk_options_timeline['classic_date_format1']) != '') ? $sk_options_timeline['classic_date_format1'] : 'd F Y'); ?>" />
|
1267 |
+
<span class="mec-tooltip">
|
1268 |
+
<div class="box top">
|
1269 |
+
<h5 class="title"><?php _e('Date Formats', 'modern-events-calendar-lite'); ?></h5>
|
1270 |
+
<div class="content"><p><?php esc_attr_e('Default value is "d F Y', 'modern-events-calendar-lite'); ?><a href="https://webnus.net/dox/modern-events-calendar/timeline-view-skin/" target="_blank"><?php _e('Read More', 'modern-events-calendar-lite'); ?></a></p></div>
|
1271 |
+
</div>
|
1272 |
+
<i title="" class="dashicons-before dashicons-editor-help"></i>
|
1273 |
+
</span>
|
1274 |
+
</div>
|
1275 |
+
<div class="mec-form-row">
|
1276 |
+
<label class="mec-col-4" for="mec_skin_timeline_limit"><?php _e('Limit', 'modern-events-calendar-lite'); ?></label>
|
1277 |
+
<input class="mec-col-4" type="number" name="mec[sk-options][timeline][limit]" id="mec_skin_timeline_limit" placeholder="<?php _e('eg. 6', 'modern-events-calendar-lite'); ?>" value="<?php if(isset($sk_options_timeline['limit'])) echo $sk_options_timeline['limit']; ?>" />
|
1278 |
+
</div>
|
1279 |
+
<div class="mec-form-row mec-switcher">
|
1280 |
+
<div class="mec-col-4">
|
1281 |
+
<label for="mec_skin_timeline_load_more_button"><?php _e('Load More Button', 'modern-events-calendar-lite'); ?></label>
|
1282 |
+
</div>
|
1283 |
+
<div class="mec-col-4">
|
1284 |
+
<input type="hidden" name="mec[sk-options][timeline][load_more_button]" value="0" />
|
1285 |
+
<input type="checkbox" name="mec[sk-options][timeline][load_more_button]" id="mec_skin_timeline_load_more_button" value="1" <?php if(!isset($sk_options_timeline['load_more_button']) or (isset($sk_options_timeline['load_more_button']) and $sk_options_timeline['load_more_button'])) echo 'checked="checked"'; ?> />
|
1286 |
+
<label for="mec_skin_timeline_load_more_button"></label>
|
1287 |
+
</div>
|
1288 |
+
</div>
|
1289 |
+
<div class="mec-form-row mec-switcher">
|
1290 |
+
<div class="mec-col-4">
|
1291 |
+
<label for="mec_skin_timeline_month_divider"><?php _e('Show Month Divider', 'modern-events-calendar-lite'); ?></label>
|
1292 |
+
</div>
|
1293 |
+
<div class="mec-col-4">
|
1294 |
+
<input type="hidden" name="mec[sk-options][timeline][month_divider]" value="0" />
|
1295 |
+
<input type="checkbox" name="mec[sk-options][timeline][month_divider]" id="mec_skin_timeline_month_divider" value="1" <?php if(isset($sk_options_timeline['month_divider']) and $sk_options_timeline['month_divider']) echo 'checked="checked"'; ?> />
|
1296 |
+
<label for="mec_skin_timeline_month_divider"></label>
|
1297 |
+
</div>
|
1298 |
+
</div>
|
1299 |
+
<?php echo $this->sed_method_field('timeline', (isset($sk_options_timeline['sed_method']) ? $sk_options_timeline['sed_method'] : 0), (isset($sk_options_timeline['image_popup']) ? $sk_options_timeline['image_popup'] : 0)); ?>
|
1300 |
+
</div>
|
1301 |
+
|
1302 |
<!-- Custom Skins -->
|
1303 |
<?php do_action('mec_skin_options', $sk_options); ?>
|
1304 |
</div>
|
1330 |
jQuery('.mec-custom-nice-select li[data-value="available_spot"]').prepend('<div class="wn-img-sh"><img src="https://webnus.net/modern-events-calendar/wp-content/skins/available_spot.svg" /></div>');
|
1331 |
jQuery('.mec-custom-nice-select li[data-value="carousel"]').prepend('<div class="wn-img-sh"><img src="https://webnus.net/modern-events-calendar/wp-content/skins/carousel.svg" /></div>');
|
1332 |
jQuery('.mec-custom-nice-select li[data-value="slider"]').prepend('<div class="wn-img-sh"><img src="https://webnus.net/modern-events-calendar/wp-content/skins/slider.svg" /></div>');
|
1333 |
+
jQuery('.mec-custom-nice-select li[data-value="timeline"]').prepend('<div class="wn-img-sh"><img src="https://webnus.net/modern-events-calendar/wp-content/skins/timeline.svg" /></div>');
|
1334 |
|
1335 |
/** List View Skins */
|
1336 |
jQuery('#mec_list_skin_options_container .mec-form-row .nice-select .list li[data-value="classic"]').append('<span class="wn-hover-img-sh"><img src="https://webnus.net/modern-events-calendar/wp-content/skins/list/list-classic.png" /></span>');
|
app/features/mec/styling.php
CHANGED
@@ -193,7 +193,7 @@ if(is_array($fonts))
|
|
193 |
</div>
|
194 |
<div class="mec-form-row">
|
195 |
|
196 |
-
<label class="mec-col-3" for="mec_styling_disable_gfonts"><?php _e('Disable
|
197 |
<div class="mec-col-8">
|
198 |
<input type="hidden" name="mec[styling][disable_gfonts]" value="0" />
|
199 |
<input value="1" type="checkbox" id="mec_styling_disable_gfonts" name="mec[styling][disable_gfonts]" <?php if(isset($styling['disable_gfonts']) and $styling['disable_gfonts']) echo 'checked="checked"'; ?> />
|
193 |
</div>
|
194 |
<div class="mec-form-row">
|
195 |
|
196 |
+
<label class="mec-col-3" for="mec_styling_disable_gfonts"><?php _e('Disable MEC custom font (Montserrat)', 'modern-events-calendar-lite'); ?></label>
|
197 |
<div class="mec-col-8">
|
198 |
<input type="hidden" name="mec[styling][disable_gfonts]" value="0" />
|
199 |
<input value="1" type="checkbox" id="mec_styling_disable_gfonts" name="mec[styling][disable_gfonts]" <?php if(isset($styling['disable_gfonts']) and $styling['disable_gfonts']) echo 'checked="checked"'; ?> />
|
app/features/mec/support-page.php
CHANGED
@@ -56,10 +56,13 @@ wp_enqueue_script('mec-lity-script', $this->main->asset('packages/lity/lity.min.
|
|
56 |
<div class="w-box-content">
|
57 |
<p><?php esc_html_e('Advice and answers from the Webnus Team'); ?></p>
|
58 |
<div class="search-form">
|
59 |
-
<form action="https://webnus.
|
60 |
-
<
|
61 |
-
|
|
|
|
|
62 |
</form>
|
|
|
63 |
</div>
|
64 |
</div>
|
65 |
</div>
|
@@ -271,8 +274,9 @@ wp_enqueue_script('mec-lity-script', $this->main->asset('packages/lity/lity.min.
|
|
271 |
<div class="w-col-sm-12">
|
272 |
<div class="w-box support-page mec-ticksy">
|
273 |
<div class="w-box-content">
|
274 |
-
<
|
275 |
-
<
|
|
|
276 |
</div>
|
277 |
</div>
|
278 |
</div>
|
@@ -304,6 +308,12 @@ wp_enqueue_script('mec-lity-script', $this->main->asset('packages/lity/lity.min.
|
|
304 |
});
|
305 |
|
306 |
})(jQuery);
|
|
|
|
|
|
|
|
|
|
|
|
|
307 |
</script>
|
308 |
<?php if($this->getPRO()) : ?>
|
309 |
<script>
|
56 |
<div class="w-box-content">
|
57 |
<p><?php esc_html_e('Advice and answers from the Webnus Team'); ?></p>
|
58 |
<div class="search-form">
|
59 |
+
<form role="search" action="https://webnus.net/dox/modern-events-calendar/" method="get">
|
60 |
+
<div>
|
61 |
+
<input name="s" type="text" placeholder="Enter Keywords..." class="search-side">
|
62 |
+
<button type="submit" id="searchsubmit" value="Search" class="btn" formtarget="_blank"><i class="mec-sl-magnifier"></i></button>
|
63 |
+
</div>
|
64 |
</form>
|
65 |
+
|
66 |
</div>
|
67 |
</div>
|
68 |
</div>
|
274 |
<div class="w-col-sm-12">
|
275 |
<div class="w-box support-page mec-ticksy">
|
276 |
<div class="w-box-content">
|
277 |
+
<center><img src="<?php echo plugin_dir_url(__FILE__ ) . '../../../assets/img/wn-ms-icon-17-n.svg'; ?>" style="width:100px; margin-top:30px;" /></center>
|
278 |
+
<p style="margin-top:20px;"><?php esc_html_e('You don’t need to register anywhere for support anymore.You can click the following button, and the chat box will open up to ask all your different questions using our various channels.' , 'modern-events-calendar-lite'); ?><?php echo sprintf(__("<br><small style=\"color: #8a8a8a;\">Only enter your email address and the answers will be sent over to your mail box.</small>", 'modern-events-calendar-lite'));?></p>
|
279 |
+
<a href="#" class="support-button"><?php esc_html_e('Create a support ticket','modern-events-calendar-lite'); ?></a>
|
280 |
</div>
|
281 |
</div>
|
282 |
</div>
|
308 |
});
|
309 |
|
310 |
})(jQuery);
|
311 |
+
jQuery('.support-button').on('click',function(event, data) {
|
312 |
+
event.preventDefault();
|
313 |
+
if (window.fcWidget.isOpen() != true) {
|
314 |
+
window.fcWidget.open();
|
315 |
+
}
|
316 |
+
});
|
317 |
</script>
|
318 |
<?php if($this->getPRO()) : ?>
|
319 |
<script>
|
app/libraries/main.php
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
<?php
|
2 |
/** no direct access **/
|
3 |
defined('MECEXEC') or die();
|
4 |
|
@@ -297,7 +297,8 @@ class MEC_main extends MEC_base
|
|
297 |
$post = get_post($post_id);
|
298 |
if(!$post) return NULL;
|
299 |
|
300 |
-
|
|
|
301 |
}
|
302 |
|
303 |
/**
|
@@ -341,7 +342,8 @@ class MEC_main extends MEC_base
|
|
341 |
'countdown'=>__('Countdown View', 'modern-events-calendar-lite'),
|
342 |
'available_spot'=>__('Available Spot', 'modern-events-calendar-lite'),
|
343 |
'carousel'=>__('Carousel View', 'modern-events-calendar-lite'),
|
344 |
-
'slider'=>__('Slider View', 'modern-events-calendar-lite')
|
|
|
345 |
);
|
346 |
|
347 |
return apply_filters('mec_calendar_skins', $skins);
|
1 |
+
<?php
|
2 |
/** no direct access **/
|
3 |
defined('MECEXEC') or die();
|
4 |
|
297 |
$post = get_post($post_id);
|
298 |
if(!$post) return NULL;
|
299 |
|
300 |
+
$content = apply_filters('the_content', $post->post_content);
|
301 |
+
return str_replace(']]>', ']]>', do_shortcode($content));
|
302 |
}
|
303 |
|
304 |
/**
|
342 |
'countdown'=>__('Countdown View', 'modern-events-calendar-lite'),
|
343 |
'available_spot'=>__('Available Spot', 'modern-events-calendar-lite'),
|
344 |
'carousel'=>__('Carousel View', 'modern-events-calendar-lite'),
|
345 |
+
'slider'=>__('Slider View', 'modern-events-calendar-lite'),
|
346 |
+
'timeline'=>__('Timeline View', 'modern-events-calendar-lite')
|
347 |
);
|
348 |
|
349 |
return apply_filters('mec_calendar_skins', $skins);
|
app/libraries/notifications.php
CHANGED
@@ -741,7 +741,16 @@ class MEC_notifications extends MEC_base
|
|
741 |
$transaction_id = get_post_meta($book_id, 'mec_transaction_id', true);
|
742 |
|
743 |
$book_date = get_post_meta($book_id, 'mec_date', true);
|
744 |
-
if(trim($book_date) and strpos($book_date, ':') !== false)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
745 |
else $book_date = get_the_date('', $book_id);
|
746 |
|
747 |
$message = str_replace('%%book_date%%', $book_date, $message);
|
741 |
$transaction_id = get_post_meta($book_id, 'mec_transaction_id', true);
|
742 |
|
743 |
$book_date = get_post_meta($book_id, 'mec_date', true);
|
744 |
+
if(trim($book_date) and strpos($book_date, ':') !== false)
|
745 |
+
{
|
746 |
+
$ex = explode(':', $book_date);
|
747 |
+
if(isset($ex[0]) and isset($ex[1]) and trim($ex[0]) != trim($ex[1]))
|
748 |
+
{
|
749 |
+
$date_format = get_option('date_format');
|
750 |
+
$book_date = sprintf(__('%s to %s', 'modern-events-calendar-lite'), date_i18n($date_format, strtotime($ex[0])), date_i18n($date_format, strtotime($ex[1])));
|
751 |
+
}
|
752 |
+
else $book_date = get_the_date('', $book_id);
|
753 |
+
}
|
754 |
else $book_date = get_the_date('', $book_id);
|
755 |
|
756 |
$message = str_replace('%%book_date%%', $book_date, $message);
|
app/libraries/render.php
CHANGED
@@ -410,7 +410,7 @@ class MEC_render extends MEC_base
|
|
410 |
}
|
411 |
|
412 |
/**
|
413 |
-
* Renders
|
414 |
* @author Webnus <info@webnus.biz>
|
415 |
* @param int $post_id
|
416 |
* @param string $content
|
@@ -426,7 +426,7 @@ class MEC_render extends MEC_base
|
|
426 |
// Post Data
|
427 |
$data->ID = $post_id;
|
428 |
$data->title = get_the_title($post_id);
|
429 |
-
$data->content =
|
430 |
|
431 |
// All Post Data
|
432 |
$post = get_post($post_id);
|
410 |
}
|
411 |
|
412 |
/**
|
413 |
+
* Renders and returns all event data
|
414 |
* @author Webnus <info@webnus.biz>
|
415 |
* @param int $post_id
|
416 |
* @param string $content
|
426 |
// Post Data
|
427 |
$data->ID = $post_id;
|
428 |
$data->title = get_the_title($post_id);
|
429 |
+
$data->content = is_null($content) ? $this->main->get_post_content($post_id) : $content;
|
430 |
|
431 |
// All Post Data
|
432 |
$post = get_post($post_id);
|
app/libraries/skins.php
CHANGED
@@ -96,6 +96,7 @@ class MEC_skins extends MEC_base
|
|
96 |
public $toggle_month_divider;
|
97 |
public $image_popup;
|
98 |
public $map_on_top;
|
|
|
99 |
public $include_events_times;
|
100 |
|
101 |
/**
|
@@ -581,7 +582,8 @@ class MEC_skins extends MEC_base
|
|
581 |
{
|
582 |
if($this->show_only_expired_events)
|
583 |
{
|
584 |
-
$
|
|
|
585 |
$end = date('Y-m-01', strtotime('-10 Year', strtotime($start)));
|
586 |
}
|
587 |
else
|
96 |
public $toggle_month_divider;
|
97 |
public $image_popup;
|
98 |
public $map_on_top;
|
99 |
+
public $geolocation;
|
100 |
public $include_events_times;
|
101 |
|
102 |
/**
|
582 |
{
|
583 |
if($this->show_only_expired_events)
|
584 |
{
|
585 |
+
$apply_sf_date = $this->request->getVar('apply_sf_date', 1);
|
586 |
+
$start = (isset($this->sf) and $apply_sf_date) ? date('Y-m-t', strtotime($this->start_date)) : $this->start_date;
|
587 |
$end = date('Y-m-01', strtotime('-10 Year', strtotime($start)));
|
588 |
}
|
589 |
else
|
app/modules/booking/default.php
CHANGED
@@ -100,6 +100,7 @@ function mec_get_tickets_availability'.$uniqueid.'(event_id, date)
|
|
100 |
|
101 |
jQuery("#mec_booking'.$uniqueid.' #mec_event_ticket"+ticket_id+" .mec-event-ticket-price").html(price_label);
|
102 |
}
|
|
|
103 |
// Remove Preloader
|
104 |
jQuery(".mec-loader").remove();
|
105 |
jQuery(".mec-event-tickets-list").removeClass("mec-cover-loader");
|
@@ -163,15 +164,6 @@ function mec_book_form_submit'.$uniqueid.'()
|
|
163 |
{
|
164 |
var valid = true;
|
165 |
|
166 |
-
jQuery("#mec_book_form'.$uniqueid.'").find(\'input[type="date"], input[type="file"]\').each(function(index, context) {
|
167 |
-
if(!jQuery(context).val())
|
168 |
-
{
|
169 |
-
valid = false;
|
170 |
-
jQuery(context).parent().addClass("mec-red-notification");
|
171 |
-
}
|
172 |
-
else jQuery(context).parent().removeClass("mec-red-notification");
|
173 |
-
});
|
174 |
-
|
175 |
jQuery("#mec_book_form'.$uniqueid.' .mec-book-ticket-container .mec-book-field-name.mec-reg-mandatory").filter(":visible").each(function(i)
|
176 |
{
|
177 |
var ticket_id = jQuery(this).data("ticket-id");
|
100 |
|
101 |
jQuery("#mec_booking'.$uniqueid.' #mec_event_ticket"+ticket_id+" .mec-event-ticket-price").html(price_label);
|
102 |
}
|
103 |
+
|
104 |
// Remove Preloader
|
105 |
jQuery(".mec-loader").remove();
|
106 |
jQuery(".mec-event-tickets-list").removeClass("mec-cover-loader");
|
164 |
{
|
165 |
var valid = true;
|
166 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
jQuery("#mec_book_form'.$uniqueid.' .mec-book-ticket-container .mec-book-field-name.mec-reg-mandatory").filter(":visible").each(function(i)
|
168 |
{
|
169 |
var ticket_id = jQuery(this).data("ticket-id");
|
app/modules/googlemap/details.php
CHANGED
@@ -96,11 +96,11 @@ else $factory->params('footer', $javascript);
|
|
96 |
<div class="mec-get-direction">
|
97 |
<form method="post" action="#" id="mec_get_direction_form<?php echo $uniqueid; ?>" class="clearfix">
|
98 |
<div class="mec-map-get-direction-address-cnt">
|
99 |
-
<input class="mec-map-get-direction-address" type="text" placeholder="<?php esc_attr_e('Address from ...', '
|
100 |
<span class="mec-map-get-direction-reset mec-util-hidden" id="mec_map_get_direction_reset<?php echo $uniqueid; ?>">X</span>
|
101 |
</div>
|
102 |
<div class="mec-map-get-direction-btn-cnt btn btn-primary">
|
103 |
-
<input type="submit" value="<?php _e('Get Directions', '
|
104 |
</div>
|
105 |
</form>
|
106 |
</div>
|
96 |
<div class="mec-get-direction">
|
97 |
<form method="post" action="#" id="mec_get_direction_form<?php echo $uniqueid; ?>" class="clearfix">
|
98 |
<div class="mec-map-get-direction-address-cnt">
|
99 |
+
<input class="mec-map-get-direction-address" type="text" placeholder="<?php esc_attr_e('Address from ...', 'modern-events-calendar-lite') ?>" id="mec_get_direction_addr<?php echo $uniqueid; ?>" />
|
100 |
<span class="mec-map-get-direction-reset mec-util-hidden" id="mec_map_get_direction_reset<?php echo $uniqueid; ?>">X</span>
|
101 |
</div>
|
102 |
<div class="mec-map-get-direction-btn-cnt btn btn-primary">
|
103 |
+
<input type="submit" value="<?php _e('Get Directions', 'modern-events-calendar-lite'); ?>" />
|
104 |
</div>
|
105 |
</form>
|
106 |
</div>
|
app/skins/custom/render.php
CHANGED
@@ -22,28 +22,126 @@ if($this->style == 'colorful')
|
|
22 |
?>
|
23 |
<div class="mec-wrap <?php echo $event_colorskin . $colorful_class; ?>">
|
24 |
<div class="mec-event-custom-<?php echo $this->style; ?>">
|
25 |
-
|
26 |
<?php
|
27 |
-
$
|
28 |
-
|
29 |
-
|
30 |
-
$
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
38 |
?>
|
39 |
-
</article>
|
40 |
-
</div>
|
41 |
</div>
|
42 |
</div>
|
43 |
|
44 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
45 |
if ( isset($this->map_on_top) and $this->map_on_top ) :
|
46 |
-
if(isset($
|
47 |
{
|
48 |
// Include Map Assets such as JS and CSS libraries
|
49 |
$this->main->load_map_assets();
|
@@ -51,7 +149,7 @@ if(isset($map_events) and !empty($map_events))
|
|
51 |
$map_javascript = '<script type="text/javascript">
|
52 |
jQuery(document).ready(function()
|
53 |
{
|
54 |
-
var jsonPush = gmapSkin('.json_encode($this->render->markers($
|
55 |
jQuery("#mec_googlemap_canvas'.$this->id.'").mecGoogleMaps(
|
56 |
{
|
57 |
id: "'.$this->id.'",
|
22 |
?>
|
23 |
<div class="mec-wrap <?php echo $event_colorskin . $colorful_class; ?>">
|
24 |
<div class="mec-event-custom-<?php echo $this->style; ?>">
|
25 |
+
|
26 |
<?php
|
27 |
+
$count = $this->count;
|
28 |
+
|
29 |
+
if($count == 0 or $count == 5) $col = 4;
|
30 |
+
else $col = 12 / $count;
|
31 |
+
|
32 |
+
$rcount = 1 ;
|
33 |
+
|
34 |
+
if($this->show_only_expired_events)
|
35 |
+
{
|
36 |
+
$start = $this->start_date;
|
37 |
+
$end = date('Y-m-01', strtotime('-10 Year', strtotime($start)));
|
38 |
+
}
|
39 |
+
else
|
40 |
+
{
|
41 |
+
$start = $this->start_date;
|
42 |
+
$end = date('Y-m-t', strtotime('+10 Year', strtotime($start)));
|
43 |
+
}
|
44 |
+
|
45 |
+
// Date Events
|
46 |
+
$dates = $this->period($start, $end, true);
|
47 |
+
|
48 |
+
// Limit
|
49 |
+
$this->args['posts_per_page'] = 1000;
|
50 |
+
|
51 |
+
$i = 0;
|
52 |
+
$found = 0;
|
53 |
+
$events = array();
|
54 |
+
|
55 |
+
foreach($dates as $date=>$IDs)
|
56 |
+
{
|
57 |
+
// Include Available Events
|
58 |
+
$this->args['post__in'] = $IDs;
|
59 |
+
|
60 |
+
// Check Finish Date
|
61 |
+
if(isset($this->maximum_date) and strtotime($date) > strtotime($this->maximum_date)) break;
|
62 |
+
|
63 |
+
// Extending the end date
|
64 |
+
$this->end_date = $date;
|
65 |
+
|
66 |
+
// Continue to load rest of events in the first date
|
67 |
+
if($i === 0) $this->args['offset'] = $this->offset;
|
68 |
+
// Load all events in the rest of dates
|
69 |
+
else
|
70 |
+
{
|
71 |
+
$this->offset = 0;
|
72 |
+
$this->args['offset'] = 0;
|
73 |
+
}
|
74 |
+
|
75 |
+
// The Query
|
76 |
+
$query = new WP_Query($this->args);
|
77 |
+
if($query->have_posts())
|
78 |
+
{
|
79 |
+
// The Loop
|
80 |
+
while($query->have_posts())
|
81 |
+
{
|
82 |
+
$query->the_post();
|
83 |
+
|
84 |
+
if(!isset($events[$date])) $events[$date] = array();
|
85 |
+
|
86 |
+
$rendered = $this->render->data(get_the_ID());
|
87 |
+
|
88 |
+
$data = new stdClass();
|
89 |
+
$data->ID = get_the_ID();
|
90 |
+
$data->data = $rendered;
|
91 |
+
update_option( 'mec_sd_time_option', $date, true);
|
92 |
+
update_option( 'mec_esd_time_option', $this->end_date, true);
|
93 |
+
$data->date = array
|
94 |
+
(
|
95 |
+
'start'=>array('date'=>$date),
|
96 |
+
'end'=>array('date'=>$this->main->get_end_date($date, $rendered))
|
97 |
+
);
|
98 |
+
echo ($rcount == 1) ? '<div class="row">' : '';
|
99 |
+
echo '<div class="col-md-'.$col.' col-sm-'.$col.'">';
|
100 |
+
echo '<article class="mec-event-article mec-clear" itemscope>';
|
101 |
+
echo Plugin::instance()->frontend->get_builder_content_for_display( $this->style, true );
|
102 |
+
echo '</article></div>';
|
103 |
+
if($rcount == $count)
|
104 |
+
{
|
105 |
+
echo '</div>';
|
106 |
+
$rcount = 0;
|
107 |
+
}
|
108 |
+
|
109 |
+
$rcount++;
|
110 |
+
$events[$date][] = $data;
|
111 |
+
$map_events[] = $events[$date];
|
112 |
+
$found++;
|
113 |
+
|
114 |
+
if($found >= $this->limit)
|
115 |
+
{
|
116 |
+
// Next Offset
|
117 |
+
$this->next_offset = ($query->post_count-($query->current_post+1)) >= 0 ? ($query->current_post+1)+$this->offset : 0;
|
118 |
+
|
119 |
+
// Restore original Post Data
|
120 |
+
wp_reset_postdata();
|
121 |
+
|
122 |
+
break 2;
|
123 |
+
}
|
124 |
+
}
|
125 |
+
}
|
126 |
+
|
127 |
+
// Restore original Post Data
|
128 |
+
wp_reset_postdata();
|
129 |
+
|
130 |
+
$i++;
|
131 |
+
}
|
132 |
?>
|
|
|
|
|
133 |
</div>
|
134 |
</div>
|
135 |
|
136 |
<?php
|
137 |
+
foreach ($map_events as $key => $value) {
|
138 |
+
foreach ($value as $keyy => $valuee) {
|
139 |
+
$map_eventss[] = $valuee;
|
140 |
+
}
|
141 |
+
}
|
142 |
+
|
143 |
if ( isset($this->map_on_top) and $this->map_on_top ) :
|
144 |
+
if(isset($map_eventss) and !empty($map_eventss))
|
145 |
{
|
146 |
// Include Map Assets such as JS and CSS libraries
|
147 |
$this->main->load_map_assets();
|
149 |
$map_javascript = '<script type="text/javascript">
|
150 |
jQuery(document).ready(function()
|
151 |
{
|
152 |
+
var jsonPush = gmapSkin('.json_encode($this->render->markers($map_eventss)).');
|
153 |
jQuery("#mec_googlemap_canvas'.$this->id.'").mecGoogleMaps(
|
154 |
{
|
155 |
id: "'.$this->id.'",
|
app/skins/grid.php
CHANGED
@@ -125,6 +125,9 @@ class MEC_skin_grid extends MEC_skins
|
|
125 |
// Map on top
|
126 |
$this->map_on_top = isset($this->skin_options['map_on_top']) ? $this->skin_options['map_on_top'] : false;
|
127 |
|
|
|
|
|
|
|
128 |
// Init MEC
|
129 |
$this->args['mec-init'] = true;
|
130 |
$this->args['mec-skin'] = $this->skin;
|
125 |
// Map on top
|
126 |
$this->map_on_top = isset($this->skin_options['map_on_top']) ? $this->skin_options['map_on_top'] : false;
|
127 |
|
128 |
+
// Map geolocation
|
129 |
+
$this->geolocation = ((isset($this->skin_options['map_on_top']) and (isset($this->skin_options['set_geolocation']))) and ($this->skin_options['map_on_top'] == '1' and $this->skin_options['set_geolocation'] == '1')) ? true : false;
|
130 |
+
|
131 |
// Init MEC
|
132 |
$this->args['mec-init'] = true;
|
133 |
$this->args['mec-skin'] = $this->skin;
|
app/skins/grid/render.php
CHANGED
@@ -292,6 +292,7 @@ if(isset($map_events) and !empty($map_events))
|
|
292 |
clustering_images: "'.$this->main->asset('img/cluster1/m').'",
|
293 |
getDirection: 0,
|
294 |
ajax_url: "'.admin_url('admin-ajax.php', NULL).'",
|
|
|
295 |
});
|
296 |
});
|
297 |
</script>';
|
292 |
clustering_images: "'.$this->main->asset('img/cluster1/m').'",
|
293 |
getDirection: 0,
|
294 |
ajax_url: "'.admin_url('admin-ajax.php', NULL).'",
|
295 |
+
geolocation: "'.$this->geolocation.'",
|
296 |
});
|
297 |
});
|
298 |
</script>';
|
app/skins/list.php
CHANGED
@@ -98,6 +98,9 @@ class MEC_skin_list extends MEC_skins
|
|
98 |
|
99 |
// Map on top
|
100 |
$this->map_on_top = isset($this->skin_options['map_on_top']) ? $this->skin_options['map_on_top'] : false;
|
|
|
|
|
|
|
101 |
|
102 |
// The style
|
103 |
$this->style = isset($this->skin_options['style']) ? $this->skin_options['style'] : 'modern';
|
98 |
|
99 |
// Map on top
|
100 |
$this->map_on_top = isset($this->skin_options['map_on_top']) ? $this->skin_options['map_on_top'] : false;
|
101 |
+
|
102 |
+
// Map geolocation
|
103 |
+
$this->geolocation = ((isset($this->skin_options['map_on_top']) and (isset($this->skin_options['set_geolocation']))) and ($this->skin_options['map_on_top'] == '1' and $this->skin_options['set_geolocation'] == '1')) ? true : false;
|
104 |
|
105 |
// The style
|
106 |
$this->style = isset($this->skin_options['style']) ? $this->skin_options['style'] : 'modern';
|
app/skins/list/render.php
CHANGED
@@ -254,6 +254,7 @@ if(isset($map_events) and !empty($map_events))
|
|
254 |
clustering_images: "'.$this->main->asset('img/cluster1/m').'",
|
255 |
getDirection: 0,
|
256 |
ajax_url: "'.admin_url('admin-ajax.php', NULL).'",
|
|
|
257 |
});
|
258 |
});
|
259 |
</script>';
|
254 |
clustering_images: "'.$this->main->asset('img/cluster1/m').'",
|
255 |
getDirection: 0,
|
256 |
ajax_url: "'.admin_url('admin-ajax.php', NULL).'",
|
257 |
+
geolocation: "'.$this->geolocation.'",
|
258 |
});
|
259 |
});
|
260 |
</script>';
|
app/skins/monthly_view/calendar_clean.php
CHANGED
@@ -133,6 +133,12 @@ elseif($week_start == 5) // Friday
|
|
133 |
$price_schema = isset($event->data->meta['mec_cost']) ? $event->data->meta['mec_cost'] : '' ;
|
134 |
$currency_schema = isset($settings['currency']) ? $settings['currency'] : '' ;
|
135 |
$schema_settings = isset( $settings['schema'] ) ? $settings['schema'] : '';
|
|
|
|
|
|
|
|
|
|
|
|
|
136 |
if($schema_settings == '1' ):
|
137 |
$events_str .= '
|
138 |
<script type="application/ld+json">
|
@@ -165,11 +171,19 @@ elseif($week_start == 5) // Friday
|
|
165 |
$events_str .= '<article data-style="'.$label_style.'" class="'.((isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : '').'mec-event-article '.$this->get_event_classes($event, $is_soldout).'">';
|
166 |
$events_str .= '<div class="mec-event-image">'.$event->data->thumbnails['thumblist'].'</div>';
|
167 |
if(trim($start_time)) $events_str .= '<div class="mec-event-time mec-color"><i class="mec-sl-clock-o"></i> '.$start_time.(trim($end_time) ? ' - '.$end_time : '').'</div>';
|
|
|
|
|
|
|
|
|
168 |
$event_color = isset($event->data->meta['mec_color'])?'<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>':'';
|
169 |
$sold_out_css_class = ($is_soldout) ? ' mec-event-title-soldout' : '';
|
170 |
$sold_out = ($is_soldout) ? ' <span class=soldout>' . __('Sold Out', 'modern-events-calendar-lite') . '</span> ' : '';
|
171 |
$events_str .= '<h4 class="mec-event-title'.$sold_out_css_class.'"><a class="mec-color-hover" data-event-id="'.$event->data->ID.'" href="'.$this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']).'">'.$event->data->title.'</a>'.$sold_out.$event_color.'</h4>';
|
172 |
$events_str .= '<div class="mec-event-detail">'.(isset($location['name']) ? $location['name'] : '').'</div>';
|
|
|
|
|
|
|
|
|
173 |
$events_str .= '</article>';
|
174 |
}
|
175 |
|
133 |
$price_schema = isset($event->data->meta['mec_cost']) ? $event->data->meta['mec_cost'] : '' ;
|
134 |
$currency_schema = isset($settings['currency']) ? $settings['currency'] : '' ;
|
135 |
$schema_settings = isset( $settings['schema'] ) ? $settings['schema'] : '';
|
136 |
+
$events_filter = $after_time_filter = '';
|
137 |
+
|
138 |
+
|
139 |
+
|
140 |
+
|
141 |
+
|
142 |
if($schema_settings == '1' ):
|
143 |
$events_str .= '
|
144 |
<script type="application/ld+json">
|
171 |
$events_str .= '<article data-style="'.$label_style.'" class="'.((isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : '').'mec-event-article '.$this->get_event_classes($event, $is_soldout).'">';
|
172 |
$events_str .= '<div class="mec-event-image">'.$event->data->thumbnails['thumblist'].'</div>';
|
173 |
if(trim($start_time)) $events_str .= '<div class="mec-event-time mec-color"><i class="mec-sl-clock-o"></i> '.$start_time.(trim($end_time) ? ' - '.$end_time : '').'</div>';
|
174 |
+
if(has_filter('monthly_event_after_time')) {
|
175 |
+
$after_time_filter = apply_filters('monthly_event_after_time', $events_str, $event);
|
176 |
+
}
|
177 |
+
$events_str .= $after_time_filter;
|
178 |
$event_color = isset($event->data->meta['mec_color'])?'<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>':'';
|
179 |
$sold_out_css_class = ($is_soldout) ? ' mec-event-title-soldout' : '';
|
180 |
$sold_out = ($is_soldout) ? ' <span class=soldout>' . __('Sold Out', 'modern-events-calendar-lite') . '</span> ' : '';
|
181 |
$events_str .= '<h4 class="mec-event-title'.$sold_out_css_class.'"><a class="mec-color-hover" data-event-id="'.$event->data->ID.'" href="'.$this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']).'">'.$event->data->title.'</a>'.$sold_out.$event_color.'</h4>';
|
182 |
$events_str .= '<div class="mec-event-detail">'.(isset($location['name']) ? $location['name'] : '').'</div>';
|
183 |
+
if(has_filter('monthly_event_right_box')) {
|
184 |
+
$events_filter = apply_filters('monthly_event_right_box', $events_str, $event);
|
185 |
+
}
|
186 |
+
$events_str .= $events_filter;
|
187 |
$events_str .= '</article>';
|
188 |
}
|
189 |
|
app/skins/timeline.php
ADDED
@@ -0,0 +1,245 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/** no direct access **/
|
3 |
+
defined('MECEXEC') or die();
|
4 |
+
|
5 |
+
/**
|
6 |
+
* Webnus MEC timeline class.
|
7 |
+
* @author Webnus <info@webnus.biz>
|
8 |
+
*/
|
9 |
+
class MEC_skin_timeline extends MEC_skins
|
10 |
+
{
|
11 |
+
/**
|
12 |
+
* @var string
|
13 |
+
*/
|
14 |
+
public $skin = 'timeline';
|
15 |
+
|
16 |
+
public $date_format_classic_1;
|
17 |
+
|
18 |
+
/**
|
19 |
+
* Constructor method
|
20 |
+
* @author Webnus <info@webnus.biz>
|
21 |
+
*/
|
22 |
+
public function __construct()
|
23 |
+
{
|
24 |
+
parent::__construct();
|
25 |
+
}
|
26 |
+
|
27 |
+
/**
|
28 |
+
* Registers skin actions into WordPress
|
29 |
+
* @author Webnus <info@webnus.biz>
|
30 |
+
*/
|
31 |
+
public function actions()
|
32 |
+
{
|
33 |
+
$this->factory->action('wp_ajax_mec_timeline_load_more', array($this, 'load_more'));
|
34 |
+
$this->factory->action('wp_ajax_nopriv_mec_timeline_load_more', array($this, 'load_more'));
|
35 |
+
}
|
36 |
+
|
37 |
+
/**
|
38 |
+
* Initialize the skin
|
39 |
+
* @author Webnus <info@webnus.biz>
|
40 |
+
* @param array $atts
|
41 |
+
*/
|
42 |
+
public function initialize($atts)
|
43 |
+
{
|
44 |
+
$this->atts = $atts;
|
45 |
+
|
46 |
+
// Skin Options
|
47 |
+
$this->skin_options = (isset($this->atts['sk-options']) and isset($this->atts['sk-options'][$this->skin])) ? $this->atts['sk-options'][$this->skin] : array();
|
48 |
+
|
49 |
+
// The style
|
50 |
+
$this->style = isset($this->skin_options['style']) ? $this->skin_options['style'] : 'modern';
|
51 |
+
|
52 |
+
// Date Formats
|
53 |
+
$this->date_format_classic_1 = (isset($this->skin_options['classic_date_format1']) and trim($this->skin_options['classic_date_format1'])) ? $this->skin_options['classic_date_format1'] : 'd F Y';
|
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 |
+
// Generate an ID for the sking
|
62 |
+
$this->id = isset($this->atts['id']) ? $this->atts['id'] : mt_rand(100, 999);
|
63 |
+
|
64 |
+
// Set the ID
|
65 |
+
if(!isset($this->atts['id'])) $this->atts['id'] = $this->id;
|
66 |
+
|
67 |
+
// Show "Load More" button or not
|
68 |
+
$this->load_more_button = isset($this->skin_options['load_more_button']) ? $this->skin_options['load_more_button'] : true;
|
69 |
+
|
70 |
+
// Override the style if the style forced by us in a widget etc
|
71 |
+
if(isset($this->atts['style']) and trim($this->atts['style']) != '') $this->style = $this->atts['style'];
|
72 |
+
|
73 |
+
// HTML class
|
74 |
+
$this->html_class = '';
|
75 |
+
if(isset($this->atts['html-class']) and trim($this->atts['html-class']) != '') $this->html_class = $this->atts['html-class'];
|
76 |
+
|
77 |
+
// SED Method
|
78 |
+
$this->sed_method = isset($this->skin_options['sed_method']) ? $this->skin_options['sed_method'] : '0';
|
79 |
+
|
80 |
+
// From Widget
|
81 |
+
$this->widget = (isset($this->atts['widget']) and trim($this->atts['widget'])) ? true : false;
|
82 |
+
if($this->widget)
|
83 |
+
{
|
84 |
+
$this->skin_options['count'] = '1';
|
85 |
+
$this->load_more_button = false;
|
86 |
+
}
|
87 |
+
|
88 |
+
// The count in row
|
89 |
+
$this->count = isset($this->skin_options['count']) ? $this->skin_options['count'] : '3';
|
90 |
+
|
91 |
+
// Show Month Divider or not
|
92 |
+
$this->month_divider = isset($this->skin_options['month_divider']) ? $this->skin_options['month_divider'] : true;
|
93 |
+
|
94 |
+
// Init MEC
|
95 |
+
$this->args['mec-init'] = true;
|
96 |
+
$this->args['mec-skin'] = $this->skin;
|
97 |
+
|
98 |
+
// Post Type
|
99 |
+
$this->args['post_type'] = $this->main->get_main_post_type();
|
100 |
+
|
101 |
+
// Post Status
|
102 |
+
$this->args['post_status'] = 'publish';
|
103 |
+
|
104 |
+
// Keyword Query
|
105 |
+
$this->args['s'] = $this->keyword_query();
|
106 |
+
|
107 |
+
// Taxonomy
|
108 |
+
$this->args['tax_query'] = $this->tax_query();
|
109 |
+
|
110 |
+
// Meta
|
111 |
+
$this->args['meta_query'] = $this->meta_query();
|
112 |
+
|
113 |
+
// Tag
|
114 |
+
$this->args['tag'] = $this->tag_query();
|
115 |
+
|
116 |
+
// Author
|
117 |
+
$this->args['author'] = $this->author_query();
|
118 |
+
|
119 |
+
// Pagination Options
|
120 |
+
$this->paged = get_query_var('paged', 1);
|
121 |
+
$this->limit = (isset($this->skin_options['limit']) and trim($this->skin_options['limit'])) ? $this->skin_options['limit'] : 12;
|
122 |
+
|
123 |
+
$this->args['posts_per_page'] = $this->limit;
|
124 |
+
$this->args['paged'] = $this->paged;
|
125 |
+
|
126 |
+
// Sort Options
|
127 |
+
$this->args['orderby'] = 'meta_value_num';
|
128 |
+
$this->args['order'] = 'ASC';
|
129 |
+
$this->args['meta_key'] = 'mec_start_day_seconds';
|
130 |
+
|
131 |
+
// Exclude Posts
|
132 |
+
if(isset($this->atts['exclude']) and is_array($this->atts['exclude']) and count($this->atts['exclude'])) $this->args['post__not_in'] = $this->atts['exclude'];
|
133 |
+
|
134 |
+
// Include Posts
|
135 |
+
if(isset($this->atts['include']) and is_array($this->atts['include']) and count($this->atts['include'])) $this->args['post__in'] = $this->atts['include'];
|
136 |
+
|
137 |
+
// Show Only Expired Events
|
138 |
+
$this->show_only_expired_events = (isset($this->atts['show_only_past_events']) and trim($this->atts['show_only_past_events'])) ? '1' : '0';
|
139 |
+
|
140 |
+
// Show Past Events
|
141 |
+
if($this->show_only_expired_events)
|
142 |
+
{
|
143 |
+
$this->atts['show_past_events'] = '1';
|
144 |
+
$this->args['order'] = 'DESC';
|
145 |
+
}
|
146 |
+
|
147 |
+
// Show Past Events
|
148 |
+
$this->args['mec-past-events'] = isset($this->atts['show_past_events']) ? $this->atts['show_past_events'] : '0';
|
149 |
+
|
150 |
+
// Start Date
|
151 |
+
$this->start_date = $this->get_start_date();
|
152 |
+
|
153 |
+
// We will extend the end date in the loop
|
154 |
+
$this->end_date = $this->start_date;
|
155 |
+
|
156 |
+
// Show Ongoing Events
|
157 |
+
$this->show_ongoing_events = (isset($this->atts['show_only_ongoing_events']) and trim($this->atts['show_only_ongoing_events'])) ? '1' : '0';
|
158 |
+
if($this->show_ongoing_events)
|
159 |
+
{
|
160 |
+
$this->args['mec-show-ongoing-events'] = $this->show_ongoing_events;
|
161 |
+
$this->maximum_date = $this->start_date;
|
162 |
+
}
|
163 |
+
|
164 |
+
// Set start time
|
165 |
+
if(isset($this->atts['seconds']))
|
166 |
+
{
|
167 |
+
$this->args['mec-seconds'] = $this->atts['seconds'];
|
168 |
+
$this->args['mec-seconds-date'] = isset($this->atts['seconds_date']) ? $this->atts['seconds_date'] : $this->start_date;
|
169 |
+
}
|
170 |
+
|
171 |
+
// Apply Maximum Date
|
172 |
+
if($this->request->getVar('apply_sf_date', 0) == 1 and isset($this->sf) and isset($this->sf['month']) and trim($this->sf['month'])) $this->maximum_date = date('Y-m-t', strtotime($this->start_date));
|
173 |
+
|
174 |
+
// Found Events
|
175 |
+
$this->found = 0;
|
176 |
+
}
|
177 |
+
|
178 |
+
/**
|
179 |
+
* Returns start day of skin for filtering events
|
180 |
+
* @author Webnus <info@webnus.biz>
|
181 |
+
* @return string
|
182 |
+
*/
|
183 |
+
public function get_start_date()
|
184 |
+
{
|
185 |
+
// Default date
|
186 |
+
$date = current_time('Y-m-d');
|
187 |
+
|
188 |
+
if(isset($this->skin_options['start_date_type']) and $this->skin_options['start_date_type'] == 'today') $date = current_time('Y-m-d');
|
189 |
+
elseif(isset($this->skin_options['start_date_type']) and $this->skin_options['start_date_type'] == 'tomorrow') $date = date('Y-m-d', strtotime('Tomorrow'));
|
190 |
+
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'));
|
191 |
+
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'));
|
192 |
+
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']));
|
193 |
+
|
194 |
+
// Hide past events
|
195 |
+
if(isset($this->atts['show_past_events']) and !trim($this->atts['show_past_events']))
|
196 |
+
{
|
197 |
+
$today = current_time('Y-m-d');
|
198 |
+
if(strtotime($date) < strtotime($today)) $date = $today;
|
199 |
+
}
|
200 |
+
|
201 |
+
// Show only expired events
|
202 |
+
if(isset($this->show_only_expired_events) and $this->show_only_expired_events)
|
203 |
+
{
|
204 |
+
$now = date('Y-m-d H:i:s', current_time('timestamp', 0));
|
205 |
+
if(strtotime($date) > strtotime($now)) $date = $now;
|
206 |
+
}
|
207 |
+
|
208 |
+
return $date;
|
209 |
+
}
|
210 |
+
|
211 |
+
/**
|
212 |
+
* Load more events for AJAX requert
|
213 |
+
* @author Webnus <info@webnus.biz>
|
214 |
+
* @return void
|
215 |
+
*/
|
216 |
+
public function load_more()
|
217 |
+
{
|
218 |
+
$this->sf = $this->request->getVar('sf', array());
|
219 |
+
$apply_sf_date = $this->request->getVar('apply_sf_date', 1);
|
220 |
+
$atts = $this->sf_apply($this->request->getVar('atts', array()), $this->sf, $apply_sf_date);
|
221 |
+
|
222 |
+
// Initialize the skin
|
223 |
+
$this->initialize($atts);
|
224 |
+
|
225 |
+
// Override variables
|
226 |
+
$this->start_date = $this->request->getVar('mec_start_date', date('y-m-d'));
|
227 |
+
$this->end_date = $this->start_date;
|
228 |
+
$this->offset = $this->request->getVar('mec_offset', 0);
|
229 |
+
|
230 |
+
// Apply Maximum Date
|
231 |
+
if($apply_sf_date == 1 and isset($this->sf) and isset($this->sf['month']) and trim($this->sf['month'])) $this->maximum_date = date('Y-m-t', strtotime($this->start_date));
|
232 |
+
|
233 |
+
// Return the events
|
234 |
+
$this->atts['return_items'] = true;
|
235 |
+
|
236 |
+
// Fetch the events
|
237 |
+
$this->fetch();
|
238 |
+
|
239 |
+
// Return the output
|
240 |
+
$output = $this->output();
|
241 |
+
|
242 |
+
echo json_encode($output);
|
243 |
+
exit;
|
244 |
+
}
|
245 |
+
}
|
app/skins/timeline/index.html
ADDED
File without changes
|
app/skins/timeline/render.php
ADDED
@@ -0,0 +1,130 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/** no direct access **/
|
3 |
+
defined('MECEXEC') or die();
|
4 |
+
|
5 |
+
$current_month_divider = $this->request->getVar('current_month_divider', 0);
|
6 |
+
$settings = $this->main->get_settings();
|
7 |
+
$styling = $this->main->get_styling();
|
8 |
+
$event_colorskin = (isset($styling['mec_colorskin']) || isset($styling['color'])) ? 'colorskin-custom' : '';
|
9 |
+
?>
|
10 |
+
<div class="mec-events-timeline-wrap mec-wrap <?php echo $event_colorskin; ?>">
|
11 |
+
<?php foreach($this->events as $date=>$events): ?>
|
12 |
+
|
13 |
+
<?php $month_id = date('Ym', strtotime($date)); if($this->month_divider and $month_id != $current_month_divider): $current_month_divider = $month_id; ?>
|
14 |
+
<div class="mec-timeline-month-divider"><span><?php echo date_i18n('F Y', strtotime($date)); ?></span></div>
|
15 |
+
<?php endif; ?>
|
16 |
+
|
17 |
+
<div class="mec-timeline-events-container">
|
18 |
+
<?php
|
19 |
+
foreach($events as $event)
|
20 |
+
{
|
21 |
+
$location = isset($event->data->locations[$event->data->meta['mec_location_id']]) ? $event->data->locations[$event->data->meta['mec_location_id']] : array();
|
22 |
+
$organizer = isset($event->data->organizers[$event->data->meta['mec_organizer_id']]) ? $event->data->organizers[$event->data->meta['mec_organizer_id']] : array();
|
23 |
+
$start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
|
24 |
+
$end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
|
25 |
+
$event_color = isset($event->data->meta['mec_color']) ? '<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>' : '';
|
26 |
+
$excerpt = trim($event->data->post->post_excerpt) ? $event->data->post->post_excerpt : '';
|
27 |
+
|
28 |
+
// Safe Excerpt for UTF-8 Strings
|
29 |
+
if(!trim($excerpt))
|
30 |
+
{
|
31 |
+
$ex = explode(' ', strip_tags(strip_shortcodes($event->data->post->post_content)));
|
32 |
+
$words = array_slice($ex, 0, 16);
|
33 |
+
|
34 |
+
$excerpt = implode(' ', $words);
|
35 |
+
}
|
36 |
+
$label_style = '';
|
37 |
+
if ( !empty($event->data->labels) ):
|
38 |
+
foreach( $event->data->labels as $label)
|
39 |
+
{
|
40 |
+
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
41 |
+
if ( $label['style'] == 'mec-label-featured' )
|
42 |
+
{
|
43 |
+
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite' );
|
44 |
+
}
|
45 |
+
elseif ( $label['style'] == 'mec-label-canceled' )
|
46 |
+
{
|
47 |
+
$label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite' );
|
48 |
+
}
|
49 |
+
}
|
50 |
+
endif;
|
51 |
+
$speakers = '""';
|
52 |
+
if ( !empty($event->data->speakers))
|
53 |
+
{
|
54 |
+
$speakers= [];
|
55 |
+
foreach ($event->data->speakers as $key => $value) {
|
56 |
+
$speakers[] = array(
|
57 |
+
"@type" => "Person",
|
58 |
+
"name" => $value['name'],
|
59 |
+
"image" => $value['thumbnail'],
|
60 |
+
"sameAs" => $value['facebook'],
|
61 |
+
);
|
62 |
+
}
|
63 |
+
$speakers = json_encode($speakers);
|
64 |
+
}
|
65 |
+
$schema_settings = isset( $settings['schema'] ) ? $settings['schema'] : '';
|
66 |
+
if($schema_settings == '1' ):
|
67 |
+
?>
|
68 |
+
<script type="application/ld+json">
|
69 |
+
{
|
70 |
+
"@context" : "http://schema.org",
|
71 |
+
"@type" : "Event",
|
72 |
+
"startDate" : "<?php echo !empty( $event->data->meta['mec_date']['start']['date'] ) ? $event->data->meta['mec_date']['start']['date'] : '' ; ?>",
|
73 |
+
"endDate" : "<?php echo !empty( $event->data->meta['mec_date']['end']['date'] ) ? $event->data->meta['mec_date']['end']['date'] : '' ; ?>",
|
74 |
+
"location" :
|
75 |
+
{
|
76 |
+
"@type" : "Place",
|
77 |
+
"name" : "<?php echo (isset($location['name']) ? $location['name'] : ''); ?>",
|
78 |
+
"image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
|
79 |
+
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
80 |
+
},
|
81 |
+
"offers": {
|
82 |
+
"url": "<?php echo $event->data->permalink; ?>",
|
83 |
+
"price": "<?php echo isset($event->data->meta['mec_cost']) ? $event->data->meta['mec_cost'] : '' ; ?>",
|
84 |
+
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
85 |
+
},
|
86 |
+
"performer": <?php echo $speakers; ?>,
|
87 |
+
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
|
88 |
+
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
89 |
+
"name" : "<?php esc_html_e($event->data->title); ?>",
|
90 |
+
"url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
|
91 |
+
}
|
92 |
+
</script>
|
93 |
+
<?php
|
94 |
+
endif;
|
95 |
+
?>
|
96 |
+
<div class="<?php echo (isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : ''; ?>mec-timeline-event clearfix <?php echo $this->get_event_classes($event); ?>">
|
97 |
+
<div class="mec-timeline-event-date mec-color<?php echo ($event->date['start']['date'] != $event->date['end']['date']) ? ' mec-timeline-dates' : '' ; ?>"><?php echo ( $event->date['start']['date'] == $event->date['end']['date'] ) ? date_i18n( get_option( 'date_format' ), strtotime($event->date['start']['date'])) : date_i18n( get_option( 'date_format' ), strtotime($event->date['start']['date'])) . '<br>' . date_i18n( get_option( 'date_format' ), strtotime($event->date['end']['date'])) ; ?> </div>
|
98 |
+
<div class="mec-timeline-event-content">
|
99 |
+
<div class="clearfix">
|
100 |
+
<div class="mec-timeline-right-content">
|
101 |
+
<div class="mec-timeline-event-image"><a 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->thumbnails['thumblist']; ?></a></div>
|
102 |
+
</div>
|
103 |
+
<div class="mec-timeline-left-content">
|
104 |
+
<div class="mec-timeline-main-content">
|
105 |
+
<h4 class="mec-event-title"><a data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>" class="mec-color-hover"><?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>
|
106 |
+
<p><?php echo $excerpt.(trim($excerpt) ? ' ...' : ''); ?></p>
|
107 |
+
<div class="mec-timeline-event-details">
|
108 |
+
<div class="mec-timeline-event-time mec-color">
|
109 |
+
<i class="mec-sl-clock"></i><?php echo $this->main->mec_include_time_labels($start_time, $end_time); ?>
|
110 |
+
</div>
|
111 |
+
</div>
|
112 |
+
<?php if(!empty($location['address'])): ?>
|
113 |
+
<div class="mec-timeline-event-details">
|
114 |
+
<div class="mec-timeline-event-location mec-color">
|
115 |
+
<address class="mec-timeline-event-address"><i class="mec-sl-location-pin"></i><span><?php echo (isset($location['address']) ? $location['address'] : ''); ?></span></address>
|
116 |
+
</div>
|
117 |
+
</div>
|
118 |
+
<?php endif; ?>
|
119 |
+
</div>
|
120 |
+
</div>
|
121 |
+
</div>
|
122 |
+
<a class="mec-booking-button mec-timeline-readmore mec-bg-color" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo (is_array($event->data->tickets) and count($event->data->tickets)) ? $this->main->m('register_button', __('Register for event', 'modern-events-calendar-lite')) : $this->main->m('view_detail', __('View Details', 'modern-events-calendar-lite')); ?><i class="mec-sl-arrow-right"></i></a>
|
123 |
+
</div>
|
124 |
+
</div>
|
125 |
+
|
126 |
+
<?php } ?>
|
127 |
+
</div>
|
128 |
+
|
129 |
+
<?php endforeach; ?>
|
130 |
+
</div>
|
app/skins/timeline/tpl.php
ADDED
@@ -0,0 +1,68 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/** no direct access **/
|
3 |
+
defined('MECEXEC') or die();
|
4 |
+
|
5 |
+
// Get layout path
|
6 |
+
$render_path = $this->get_render_path();
|
7 |
+
|
8 |
+
ob_start();
|
9 |
+
include $render_path;
|
10 |
+
$items_html = ob_get_clean();
|
11 |
+
|
12 |
+
if(isset($this->atts['return_items']) and $this->atts['return_items'])
|
13 |
+
{
|
14 |
+
echo json_encode(array('html'=>$items_html, 'end_date'=>$this->end_date, 'offset'=>$this->next_offset, 'count'=>$this->found));
|
15 |
+
exit;
|
16 |
+
}
|
17 |
+
|
18 |
+
// Generating javascript code tpl
|
19 |
+
$javascript = '<script type="text/javascript">
|
20 |
+
jQuery(document).ready(function()
|
21 |
+
{
|
22 |
+
jQuery("#mec_skin_'.$this->id.'").mecTimelineView(
|
23 |
+
{
|
24 |
+
id: "'.$this->id.'",
|
25 |
+
start_date: "'.$this->start_date.'",
|
26 |
+
end_date: "'.$this->end_date.'",
|
27 |
+
offset: "'.$this->next_offset.'",
|
28 |
+
limit: "'.$this->limit.'",
|
29 |
+
atts: "'.http_build_query(array('atts'=>$this->atts), '', '&').'",
|
30 |
+
ajax_url: "'.admin_url('admin-ajax.php', NULL).'",
|
31 |
+
sed_method: "'.$this->sed_method.'",
|
32 |
+
image_popup: "'.$this->image_popup.'",
|
33 |
+
sf:
|
34 |
+
{
|
35 |
+
container: "'.($this->sf_status ? '#mec_search_form_'.$this->id : '').'",
|
36 |
+
},
|
37 |
+
});
|
38 |
+
});
|
39 |
+
</script>';
|
40 |
+
|
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_timeline_skin_head');
|
46 |
+
?>
|
47 |
+
<div class="mec-wrap mec-skin-timeline-container <?php echo $this->html_class; ?>" id="mec_skin_<?php echo $this->id; ?>">
|
48 |
+
|
49 |
+
<?php if($this->sf_status) echo $this->sf_search_form(); ?>
|
50 |
+
|
51 |
+
<?php if($this->found): ?>
|
52 |
+
<div class="mec-skin-timeline-events-container" id="mec_skin_events_<?php echo $this->id; ?>">
|
53 |
+
<?php echo $items_html; ?>
|
54 |
+
</div>
|
55 |
+
<div class="mec-skin-timeline-no-events-container mec-util-hidden" id="mec_skin_no_events_<?php echo $this->id; ?>">
|
56 |
+
<?php _e('No event found!', 'modern-events-calendar-lite'); ?>
|
57 |
+
</div>
|
58 |
+
<?php else: ?>
|
59 |
+
<div class="mec-skin-timeline-events-container" id="mec_skin_events_<?php echo $this->id; ?>">
|
60 |
+
<?php _e('No event found!', 'modern-events-calendar-lite'); ?>
|
61 |
+
</div>
|
62 |
+
<?php endif; ?>
|
63 |
+
|
64 |
+
<?php if($this->load_more_button and $this->found >= $this->limit): ?>
|
65 |
+
<div class="mec-load-more-wrap"><div class="mec-load-more-button" onclick=""><?php echo __('Load More', 'modern-events-calendar-lite'); ?></div></div>
|
66 |
+
<?php endif; ?>
|
67 |
+
|
68 |
+
</div>
|
assets/css/backend.css
CHANGED
@@ -5810,6 +5810,7 @@ a.mec-create-shortcode-tabs-link {
|
|
5810 |
z-index: 1;
|
5811 |
transition: all 0.18s ease;
|
5812 |
outline: none;
|
|
|
5813 |
}
|
5814 |
|
5815 |
#mec-search-settings:focus {
|
5810 |
z-index: 1;
|
5811 |
transition: all 0.18s ease;
|
5812 |
outline: none;
|
5813 |
+
line-height: normal;
|
5814 |
}
|
5815 |
|
5816 |
#mec-search-settings:focus {
|
assets/css/backend.min.css
CHANGED
@@ -2,4 +2,4 @@
|
|
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 .support-box a,#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 .support-box a:hover,#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)}#webnus-dashboard .support-box a{margin:40px 4px 0 4px}.mec-faq-accordion>.mec-faq-accordion-content{display:none}#webnus-dashboard .mec-faq-accordion-trigger a{font-size:16px;padding:12px;background:#f1f1f1;display:block;color:#222;line-height:17px;outline:0}.mec-faq-accordion-trigger{margin-bottom:5px;position:relative}#webnus-dashboard .mec-faq-accordion-trigger a:after{font-family:simple-line-icons;content:"\e095";position:absolute;right:12px;font-weight:700}.mec-faq-accordion-content{padding:5px 14px 25px}#webnus-dashboard .mec-faq-accordion-trigger a.active:after{content:"\e082"}#webnus-dashboard .support-page-links a{background-color:#fff;color:#fff;border-radius:2px;padding:13px 24px;font-size:12px;letter-spacing:1px;font-weight:600;text-transform:uppercase}#webnus-dashboard .support-page-links a:hover,#webnus-dashboard .w-box.support-page.videobox .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}#webnus-dashboard .support-page-links{display:inline-block;margin:12px 4px 16px 0}.support-page-links.link-to-doc a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.support-page-links.link-to-videos a{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);box-shadow:0 5px 10px -5px #ff876c}.support-page-links.link-to-articles a{background:#b092e6;background:linear-gradient(95deg,#b092e6 0,#9b70e8 50%,#8e5cea 100%);box-shadow:0 5px 10px -5px #b092e6}.w-box.support-page.articles-box .w-box-content a{display:block;padding:6px 0}#webnus-dashboard .w-box.support-page.videobox .w-button a{color:#fff;font-size:10px;padding:5px 15px;min-height:10px;font-weight:500;border-radius:22px;box-shadow:0 3px 10px -4px #ff5a35;text-shadow:none;background:#ff5a35;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);border:none;transition:.24s}.w-box.support-page.articles-box,.w-box.support-page.faq-box{min-height:500px}.w-box.support-page.videobox{border-radius:2px;min-height:282px;box-shadow:0 1px 6px rgba(0,0,0,.039)!important}#webnus-dashboard .w-box.support-page.videobox .w-button a i{margin-right:6px}.support-page .w-box-content ul{margin-top:5px;padding-left:5px}.support-page .w-box-content ul li{font-size:13px}.support-page .w-box-content ul li i{font-size:17px;vertical-align:text-bottom;margin-right:7px;color:#999}.w-box.mec-activation{background:#fff url(../img/dp-dsb-support.jpg) no-repeat top right}.w-box.mec-activation .w-box-head{color:#40d8f0;width:75%}.w-box.mec-activation .w-box-content{padding:10px 30px}.w-box.mec-activation input[type=radio]{display:none}.w-box.mec-activation input[type=radio]+label{color:#000;font-size:13px;line-height:14px!important;color:#7b7b7b}.w-box.mec-activation input[type=radio].checked+label{color:#40d8f0}.w-box.mec-activation input[type=radio]+label span{display:inline-block;margin:-2px 6px 0 0;vertical-align:middle;cursor:pointer;height:14px;width:14px;text-align:center;background-color:#fff;border:1px solid #d4d4d4;border-radius:100%;box-shadow:0 2px 16px -2px rgba(0,0,0,.2);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;position:relative}.w-box.mec-activation input[type=radio].checked+label span{background-color:#40d8f0;border-color:#40d8f0;box-shadow:0 2px 14px -3px #40d8f0}.w-box.mec-activation input[type=radio].checked+label span:after{content:'';display:block;position:absolute;top:4px;left:4px;width:4px;height:4px;background:#fff;border-radius:100%}.w-box.mec-activation .LicenseType label{padding-right:20px;font-weight:500}.w-box.mec-activation .LicenseField{display:inline-block;position:relative;margin-top:20px}.w-box.mec-activation input[name=MECPurchaseCode]{box-shadow:inset 0 1px 2px rgba(0,0,0,.07);min-width:220px;background:#f4f4f4;border:none;border-radius:33px;width:500px;min-height:50px;margin:0;padding-left:20px;text-align:left}#webnus-dashboard .w-box.mec-activation input[type=submit]{height:40px;line-height:40px;font-weight:600;border:none;cursor:pointer;padding:0 30px;border-radius:33px;color:#fff;letter-spacing:1px;text-transform:uppercase;font-size:12px;background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67;transition:all .28s ease;position:absolute;right:5px;top:4px;font-size:12px}#webnus-dashboard .w-box.mec-activation input[type=submit]:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5)}#MECActivation .MECPurchaseStatus,.addon-activation-form .MECPurchaseStatus{display:inline-block;width:40px;height:40px;text-align:center;padding-top:9px;color:#fff;font-weight:700;font-size:18px;border-radius:50%;padding-top:8px;position:absolute;right:-51px;top:calc(50% - 20px)}.MECPurchaseStatus:after,.MECPurchaseStatus:before{position:absolute;border-radius:50px;background:#fff;content:'';transform:rotate(45deg)}.MECPurchaseStatus.PurchaseError:before{width:22px;height:4px;right:9px;top:18px;transform:rotate(45deg)}.MECPurchaseStatus.PurchaseError:after{width:22px;height:4px;right:9px;top:18px;transform:rotate(-45deg)}.MECPurchaseStatus.PurchaseSuccess:before{width:13px;height:4px;right:19px;top:21px;transform:rotate(45deg)}.MECPurchaseStatus.PurchaseSuccess:after{width:22px;height:4px;right:5px;top:18px;transform:rotate(-45deg)}#MECActivation .MECPurchaseStatus.PurchaseError,.addon-activation-form .MECPurchaseStatus.PurchaseError{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);box-shadow:0 5px 10px -5px #ff876c}#MECActivation .MECPurchaseStatus.PurchaseSuccess,.addon-activation-form .MECPurchaseStatus.PurchaseSuccess{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.wna-spinner-wrap{position:absolute;background:#000;width:509px;height:64px;top:-8px;border-radius:50px;z-index:999;background-color:#fff;opacity:.9}.wna-spinner{width:40px;height:40px;position:relative;margin:6px auto}.wna-spinner .double-bounce1,.wna-spinner .double-bounce2{width:100%;height:100%;border-radius:50%;background-color:#40d8f0;opacity:.6;position:absolute;top:0;left:0;-webkit-animation:sk-bounce 2s infinite ease-in-out;animation:sk-bounce 2s infinite ease-in-out}.wna-spinner .double-bounce2{-webkit-animation-delay:-1s;animation-delay:-1s}#MECActivation .MECLicenseMessage,.addon-activation-form .MECLicenseMessage{margin-top:24px;color:#f64;max-width:570px}.box-addon-activation-toggle-content,.box-addon-activation-toggle-head{display:none}.addon-activation-form h3{font-size:15px;font-weight:400;margin:34px 0 -7px}.box-addon-activation-toggle-head{line-height:1.5;font-size:16px;margin-top:20px;cursor:pointer}.box-addon-activation-toggle-head i{margin-right:7px;cursor:pointer;font-weight:700}#mec-advanced-wraper div:first-child>ul{display:block;margin:5px 0;padding:5px 0;width:390px;border:1px solid #e1e2e3;border-radius:2px;box-shadow:0 1px 3px rgba(0,0,0,.05)}#mec-advanced-wraper div:first-child>ul span{display:none}#mec-advanced-wraper div:first-child>ul *{display:inline-block;background:#fff;font-size:12px;color:#717273;text-align:center}#mec-advanced-wraper div:first-child>ul>li{width:60px;font-weight:700;margin:0 10px 0 0;padding:4px 0;border-right:1px solid #e1e2e3}#mec-advanced-wraper div:first-child>ul>ul>li{margin:0;padding:2px 10px;cursor:pointer;border-radius:2px;transition:all .18s ease}#mec-advanced-wraper div:first-child>ul>ul>li:hover,.mec-active{background:#008aff!important;color:#fff!important}@-webkit-keyframes sk-bounce{0%,100%{-webkit-transform:scale(0)}50%{-webkit-transform:scale(1)}}@keyframes sk-bounce{0%,100%{transform:scale(0);-webkit-transform:scale(0)}50%{transform:scale(1);-webkit-transform:scale(1)}}.w-col-sm-3 .w-box.addon{min-height:auto;box-shadow:0 3px 16px -5px rgba(0,0,0,.1);border-radius:2px}.w-box-child.mec-addon-box{padding:20px 20px}.mec-addon-box-head{border-bottom:1px solid #e8e8e8;padding-bottom:5px;margin-bottom:14px;position:relative}.mec-addon-box-version{position:relative;background:#eaeaea;border-radius:1px;padding:0 8px;color:#5a5a5a;font-size:11px;letter-spacing:.2px;line-height:21px;display:inline-block;margin:10px 0}.mec-addon-box-head img{display:block;width:60px;margin-bottom:10px}.mec-addon-box-title{font-weight:700;font-size:18px;line-height:25px}.mec-addon-box-title a span{color:#444;font-size:15px}.mec-addon-box-content p{color:#777;font-size:13px;letter-spacing:.1px}.mec-addon-box-mec-version{background:#f3f3f3;padding:10px;font-size:13px}#webnus-dashboard .addons-page-links{display:inline-block;margin:12px 4px 16px 0}#webnus-dashboard .addons-page-links a{background-color:#fff;color:#fff;border-radius:2px;padding:13px 24px;font-size:12px;letter-spacing:1px;font-weight:600;text-transform:uppercase}.addons-page-links.link-to-purchase a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.addons-page-links.link-to-install-addons a{background:#b092e6;background:linear-gradient(95deg,#b092e6 0,#9b70e8 50%,#8e5cea 100%);box-shadow:0 5px 10px -5px #b092e6}#webnus-dashboard .addons-page-links a:hover,#webnus-dashboard .w-box.addons-page.videobox .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}.mec-addon-box-footer{margin-top:25px;text-align:center}#webnus-dashboard .mec-addon-box-footer a{background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);margin-top:10px;display:inline-block;text-shadow:none;border:none;transition:.24s;position:relative;margin-right:7px;font-size:12px;font-weight:500;border-radius:7px;padding:9px 18px 8px;width:53px;height:34px;line-height:21px;box-shadow:0 2px 8px -3px #008aff}#webnus-dashboard .mec-addon-box-footer a:last-of-type{margin-right:0}#webnus-dashboard .mec-addon-box-footer a.mec-addon-box-intro{box-shadow:0 3px 10px -4px #ff3535;background:linear-gradient(95deg,#ff6c6c 0,#f55 50%,#ff3535 100%)}#webnus-dashboard .mec-addon-box-footer a:hover{background:#222!important;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%)!important;box-shadow:0 5px 23px -7px rgba(0,0,0,.5)!important;cursor:pointer!important}#webnus-dashboard .mec-addon-box-footer a i{color:#fff;font-size:16px}@media(max-width:1366px){.wns-be-container #wns-be-content{padding:5px 15px 0}.mec-form-row .mec-col-8 label{font-size:10px}#webnus-dashboard .mec-tooltip .box p,.mec-tooltip .box p{font-size:10px}}@media (max-width:780px){.wns-be-container #wns-be-content{padding:10px 0}.wns-be-container .mec-form-row .mec-col-8 label{width:50%;display:block}.wns-be-container .mec-form-row input[type=checkbox]{width:14px;height:14px}.wns-be-container .wns-be-sidebar li .subsection a{padding-left:30px}.wns-be-container .wns-be-sidebar{width:200px}.wns-be-container .wns-be-main{margin-left:200px}.wns-be-container .mec-tooltip .box{min-width:235px!important}.wns-be-container .mec-tooltip .box p{font-size:12px!important}#wns-be-infobar.sticky{position:unset}}@media (max-width:480px){.wns-be-container .wns-be-sidebar{width:100%;position:unset;float:none}.wns-be-container .wns-be-main{margin-left:0;width:100%;position:unset}.wns-be-container{margin-top:50px}.wns-be-container #wns-be-infobar:before{width:100%}.wns-be-container #wns-be-infobar{height:150px}#mec-search-settings{margin-top:80px;width:181px}}.addons-page-error,.addons-page-notice{display:block;margin-top:15px;margin-bottom:0;background:#fff;border-left:4px solid #00a0d2;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);padding:1px 12px}.addons-page-error p,.addons-page-notice p{margin:.5em 0;padding:2px;font-size:13px}.addons-page-error{border-left-color:#dc3232}.mec-addon-box-comingsoon{background:#eaeaea;padding:8px 11px;color:#5a5a5a;font-size:14px;font-weight:500;text-align:center}.mec-addons .w-row .w-col-sm-3:nth-child(4n+1){clear:left}@media (min-width:960px){#webnus-dashboard .mec-addon-box-footer .w-button{text-align:right}}@media (min-width:1401px){.mec-addon-box-title a span{font-size:17px}}.mec-pro-notice{margin-top:24px;line-height:30px}.mec-pro-notice .info-msg{padding:50px 30px;margin-bottom:0}#webnus-dashboard .mec-pro-notice .info-msg{background:#fff;box-shadow:0 1px 16px rgba(0,0,0,.034);text-align:center;color:#000}#webnus-dashboard a.info-msg-link{background:#e66f52;background:linear-gradient(95deg,#ff8162 0,#e66f52 50%,#ff4c20 100%);box-shadow:0 5px 10px -5px #e66f52;border-radius:2px;padding:12px 50px;font-size:16px;line-height:24px;border:none;margin:20px auto 0;color:#fff;transition:all .3s ease;display:inline-block}#webnus-dashboard a.info-msg-link:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}#webnus-dashboard .info-msg p{width:70%;margin:0 auto;line-height:1.8}#webnus-dashboard .info-msg-coupon{font-size:13px;color:#777;max-width:600px;line-height:1.68;margin:25px auto 0}#webnus-dashboard .info-msg-coupon strong{font-weight:700;color:#19ce18}.info-msg .socialfollow{padding-top:20px}.info-msg .socialfollow a{margin:0 2px;display:inline-block}.info-msg .socialfollow a i{background:#96a4b1;color:#fff;padding:6px;border-radius:3px;font-size:18px;box-shadow:0 2px 3px rgba(0,0,0,.1);transition:all .25s}.info-msg .socialfollow a:hover i{background:#008aff}.mec-intro-section .w-box-content{text-align:center}.mec-intro-section .w-box-content.mec-intro-section-welcome{max-width:600px;margin:0 auto}.mec-intro-section .w-box-content.mec-intro-section-welcome h3{font-size:27px}a.mec-intro-section-link-tag.button.button-hero{margin:0 10px 40px}a.mec-intro-section-link-tag.button.button-primary.button-hero{color:#fff!important}a.mec-intro-section-link-tag.button.button-secondary.button-hero{color:#000!important}.mec-intro-section-ifarme iframe{border:1px solid #e7e7e7;border-radius:3px;padding:10px;box-shadow:0 3px 10px -6px rgba(0,0,0,.2)}.w-box-content.mec-intro-section-welcome p{margin-bottom:0}.mec-tooltip a:focus{box-shadow:none}#mec_booking_form .mec-options-fields,#mec_modules_form .mec-options-fields,#mec_settings_form .mec-options-fields,#mec_single_form .mec-options-fields{padding-bottom:150px!important}#mec_taxes_fees_container_toggle{margin-bottom:60px}#mec_taxes_fees_container_toggle{margin-bottom:60px}.wns-be-sidebar li{position:relative}.wns-be-sidebar li .submneu-hover{position:absolute;top:-1px;right:-222px;width:220px;z-index:9;background:#fff;border:1px;border-style:solid;border-color:#dedede;margin:0;overflow:visible;opacity:0;visibility:hidden;transition:all .23s ease;padding-top:8px;padding-bottom:12px}.wns-be-sidebar li:hover{background:#fff}.wns-be-sidebar li:hover .submneu-hover{opacity:1;visibility:visible}.wns-be-sidebar li .submneu-hover a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 26px}.wns-be-sidebar li .submneu-hover a:hover{background:#f6f6f6;color:#222}.wns-be-sidebar li .submneu-hover:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-15px;top:14px;border-right-color:#c5c5c5;right:0}.wns-be-sidebar li .submneu-hover:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-14px;top:14px}.wns-be-sidebar li a:focus,.wns-be-sidebar li:focus{outline:-webkit-focus-ring-color auto 0;border:0;box-shadow:none}@media (max-width:480px){.wns-be-sidebar li .submneu-hover{width:175px;right:0}.wns-be-sidebar li .submneu-hover a{font-size:11px;padding:5px 5px 5px 20px}}.mec-tooltip:hover:after,.mec-tooltip:hover:before{display:none}.mec-tooltip{display:inline-flex;bottom:7px}.mec-tooltip .box{min-width:300px;max-width:600px;display:inline-block;left:26px;top:50%;transform:translateY(-50%);padding:0;margin-top:8px;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.3;position:absolute;z-index:9999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s}#webnus-dashboard .mec-tooltip .box p,.mec-tooltip .box p{color:#fff;font-size:14px;line-height:1.3;margin:0;font-style:normal}.mec-tooltip:hover .box{visibility:visible;opacity:1}.mec-tooltip:hover .box{padding:20px;border-radius:8px}.mec-tooltip .box h5{color:#fff;font-size:17px;font-weight:600;margin:-30px -20px;padding:15px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #30353a;border-radius:6px 6px 0 0;z-index:9999}#webnus-dashboard .mec-tooltip .box p a,.mec-tooltip .box p a{color:#40d9f1;margin-top:10px;margin-left:0;font-weight:400;position:relative;text-decoration:none;display:block;width:max-content}.mec-tooltip .box a:hover{color:#f90}.mec-tooltip .box:after{display:block;position:absolute!important;top:100%!important;right:50%!important;margin-top:-6px!important;margin-right:-6px!important;width:12px!important;height:24px!important;overflow:hidden!important;transform:rotate(-90deg)!important}.mec-tooltip .box:before{display:block;content:''!important;position:absolute!important;width:12px;height:12px;left:-10px!important;top:50%!important;transform:translate(50%,-50%) rotate(-45deg)!important;background-color:#535a61!important;box-shadow:0 8px 9px -4px #535a61!important;z-index:0!important}.mec-tooltip .box.top{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-tooltip .box.top:after{top:50%!important;right:100%!important}.mec-tooltip .box.top:before{left:50%!important;top:100%!important}.mec-tooltip .box.bottom{left:50%;top:auto;bottom:0;transform:translate(-50%,100%);margin-bottom:-20px;margin-left:-10px}.mec-tooltip .box.bottom:after{top:0!important;right:50%!important;background-color:#3a3f44!important}.mec-tooltip .box.bottom:before{left:50%!important;top:-7px!important;transform:translateX(-50%);background-color:#3a3f44!important}.mec-tooltip .box.left{left:auto;right:26px;top:50%;transform:translateY(-50%)}.mec-tooltip .box.left:before{right:0!important;left:auto!important;top:50%!important}form#mec_reg_fields_form input[type=radio]:before{content:"";display:inline-block;background:#fff;border-radius:18px;width:14px;height:14px;margin:-1px 0 0 -2px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32)}form#mec_reg_fields_form input[type=radio]:checked:before{border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff;width:4px;height:4px}form#mec_reg_fields_form input[type=radio]{min-height:0;margin-right:6px}form#mec_reg_fields_form label{margin-right:20px}@media(min-width:1200px) and (max-width:1366px){.mec-tooltip .box.left{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-tooltip .box.left:after{top:50%!important;right:100%!important}.mec-tooltip .box.left:before{left:50%!important;top:100%!important}.mec-tooltip .box{min-width:225px}.mec-tooltip .box h5{font-size:15px}.mec-tooltip .box .content{font-size:12px}}@media(max-width:1366px){.wns-be-container .wns-be-group-tab p{margin-top:0}}.mec-addons-notification-box-wrap .w-col-sm-12{padding:0}.mec-addons-notification-box-wrap img{width:auto}.mec-addons-notification-box-image{width:555px;display:inline-block;vertical-align:top}.mec-addons-notification-box-content{width:calc(100% - 559px);display:inline-block}.mec-addons-notification-box-content p{margin-top:1%;line-height:1.5;font-size:16px}.mec-addons-notification-box-content .w-box-content{padding-top:0;padding-bottom:0}.mec-addons-notification-box-content ol{font-size:16px}.mec-addons-notification-box-content a{background:#38d5ed;color:#fff!important;padding:10px 26px;margin-top:5px;display:inline-block;border-radius:3px;text-transform:capitalize;font-size:16px;letter-spacing:.4px;transition:all .1s ease;font-weight:600;text-decoration:none}.mec-addons-notification-box-content a:hover{background:#000}.w-clearfix.w-box.mec-addons-notification-box-wrap span{right:0;left:unset;cursor:pointer;background:#fff;padding:0 16px}.w-clearfix.w-box.mec-addons-notification-box-wrap span i{font-size:28px;vertical-align:sub;color:#f2113e}.wns-be-container .mec-addons-notification-wrap{padding:0;margin:0}.wns-be-container .mec-addons-notification-wrap .w-col-sm-12{padding:0}.wns-be-container .w-box{margin-top:0}.wns-be-container.mec-addons-notification-set-box{margin-right:15px;margin-top:50px;margin-bottom:27px}@media(max-width:1200px){.mec-addons-notification-box-content,.mec-addons-notification-box-image{width:100%;display:block}.mec-addons-notification-box-image{text-align:center}}@media(max-width:768px){.mec-addons-notification-box-image img{width:100%;height:auto}}body.rtl .wns-be-sidebar{width:260px;float:right;position:relative}body.rtl .wns-be-main{margin-left:0;border-left:0;margin-right:260px;border-right:1px solid #dedede}body.rtl .w-box.mec-activation .LicenseField{direction:rtl}body.rtl .w-box.mec-activation input[name=MECPurchaseCode]{text-align:right;padding-right:20px}body.rtl #MECActivation .MECPurchaseStatus,body.rtl .addon-activation-form .MECPurchaseStatus{right:auto;left:-51px}body.rtl #webnus-dashboard .w-box.mec-activation input[type=submit]{right:auto;left:5px}body.rtl .wns-be-sidebar .wns-be-group-menu li a{padding:13px 20px 13px 4px}body.rtl .wns-be-sidebar .wns-be-group-tab-link-a span.wns-be-group-menu-title{padding-left:0;padding-right:24px}body.rtl .wns-be-sidebar .has-sub span.extra-icon{float:left}body.rtl .wns-be-sidebar .wns-be-group-tab-link-a span.extra-icon i{right:auto;left:10px}body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:after,body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:transparent;border-left-color:#fff;right:auto;left:-1px;top:10px}body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{border-right-color:transparent;border-left-color:#c5c5c5;right:auto;left:0}body.rtl .mec-col-1,body.rtl .mec-col-10,body.rtl .mec-col-11,body.rtl .mec-col-12,body.rtl .mec-col-2,body.rtl .mec-col-3,body.rtl .mec-col-4,body.rtl .mec-col-5,body.rtl .mec-col-6,body.rtl .mec-col-7,body.rtl .mec-col-8,body.rtl .mec-col-9{float:right;margin:0 1% 0 0}body.rtl .wns-be-sidebar li .submneu-hover{right:auto;left:-222px}body.rtl .wns-be-sidebar li .submneu-hover:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:auto;right:-1px;top:14px}body.rtl #mec_styles_form #mec_styles_CSS{direction:ltr}body.rtl .w-box.mec-activation{-moz-transform:scaleY(-1);-o-transform:scaleY(-1);-webkit-transform:scaleY(-1);transform:scaleX(-1)}body.rtl .w-box.mec-activation .w-box-content,body.rtl .w-box.mec-activation .w-box-head{-moz-transform:scaleY(-1);-o-transform:scaleY(-1);-webkit-transform:scaleY(-1);transform:scaleX(-1);display:block}body.rtl .w-box.mec-activation .w-box-head{width:100%}body.rtl .wns-be-container #wns-be-infobar:before{left:auto;right:0}body.rtl .wns-be-container .dpr-btn.dpr-save-btn{float:left}body.rtl .wns-be-container .wns-be-group-tab h2:before,body.rtl .wns-be-container .wns-be-group-tab h4:before{left:auto;right:0;margin-right:0;margin-left:5px}body.rtl #mec_gateways_form .mec-tooltip{float:left}.mec-details-addons-container{margin-top:20px}.mec-details-addons-wrap img{float:left;width:19%;margin-right:17px}.mec-details-addons-wrap{clear:both;margin-bottom:80px;display:block;position:relative}.mec-details-addons-wrap a{text-decoration:none}.mec-details-addons-wrap p{float:left;width:340px;margin-top:0;margin-bottom:30px}.mec-details-addons-title{font-weight:700}.mec-details-addons-title a{color:#444}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx{border-radius:10px!important;box-shadow:0 4px 38px rgba(0,0,0,.14)!important}body .crisp-client .crisp-1rjpbb7 .crisp-13qutdl,body .crisp-client .crisp-1rjpbb7 .crisp-13qutdl *,body .crisp-client .crisp-1rjpbb7 .crisp-9dgo7z,body .crisp-client .crisp-1rjpbb7 .crisp-9dgo7z *{font-family:proxima-nova,-apple-system,BlinkMacSystemFont,"Segoe UI",Catamaran,sans-serif!important}body .crisp-client .crisp-1rjpbb7 .crisp-145mbcr,body .crisp-client .crisp-1rjpbb7 .crisp-1jrqqbm:hover{background-color:#fff!important}body .crisp-client .crisp-1rjpbb7 .crisp-14u434g{border-color:#e7e8e9!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-1bkorcf .crisp-1vzg1qq{font-size:20px!important;width:14px!important;height:19px!important;opacity:.85}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-1bkorcf .crisp-1vzg1qq:hover{opacity:.99}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-1sps3eb .crisp-1vd2grm .crisp-12w4w1a{font-size:13px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-1sps3eb .crisp-1vd2grm .crisp-12w4w1a::-webkit-input-placeholder{color:#717273!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=visitor] .crisp-z89v5n .crisp-162m9xf{background-color:#008aff!important;color:#fff!important;box-shadow:none!important;border-radius:5px!important;padding:15px 25px 15px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=visitor] .crisp-z89v5n .crisp-162m9xf .crisp-1o2g4mc{color:#fff!important;font-size:13px!important;letter-spacing:.3px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-z89v5n .crisp-162m9xf{background-color:#f1f2f3!important;border-radius:5px!important;padding:15px 25px 15px!important;box-shadow:none!important;color:#121314!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-type=audio] .crisp-z89v5n .crisp-162m9xf{background-color:#d1d7dc!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=operator] .crisp-z89v5n .crisp-1o2g4mc{color:#121314!important;-webkit-text-fill-color:#121314!important;font-size:13px!important;letter-spacing:.3px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-mkirz6 .crisp-12qaym5 .crisp-39hskb{opacity:.4;margin-right:5px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-mkirz6 .crisp-12qaym5 .crisp-ehr6mw{opacity:.68;font-size:12px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg{background-image:linear-gradient(125deg,#008aff -10%,#0066b1 100%)!important;height:110px!important;padding-top:35px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-1uw6f17,body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-85evuk,body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-nu40j6{font-size:17px!important;line-height:28px!important;padding-top:10px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-kquevr .crisp-x94m06{background-color:#008aff!important;background-image:linear-gradient(125deg,#008aff -10%,#008af0 100%)!important;box-shadow:0 5px 34px -6px #008aff!important}body .crisp-client .crisp-1rjpbb7 .crisp-4oo1n4{background-color:transparent!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx[data-chat-status=ongoing] .crisp-1784wh6 .crisp-1xmtdlg .crisp-172kolj{margin-top:-10px!important}body .crisp-client .crisp-1rjpbb7[data-last-operator-face=false] .crisp-1rf4xdh .crisp-kquevr .crisp-x94m06 .crisp-16qgsyi .crisp-101bp3x[data-is-ongoing=false]{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1OCIgaGVpZ2h0PSI1NSIgdmlld0JveD0iMCAwIDU4IDU1Ij4NCiAgPGcgaWQ9ImNoYXQtc3ZncmVwby1jb21fMV8iIGRhdGEtbmFtZT0iY2hhdC1zdmdyZXBvLWNvbSAoMSkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgLTEuNSkiPg0KICAgIDxwYXRoIGlkPSJQYXRoXzEiIGRhdGEtbmFtZT0iUGF0aCAxIiBkPSJNMjksMS41YzE2LjAxNiwwLDI5LDExLjY0MSwyOSwyNmEyNC4wMSwyNC4wMSwwLDAsMS00LjgsMTQuMzE4Yy40LDQuNzQ1LDEuNTQyLDExLjQyOCw0LjgsMTQuNjgyLDAsMC05Ljk0My0xLjQtMTYuNjc3LTUuNDYybC0uMDIyLjAwOWMtMi43NjQtMS44LTUuNTMyLTMuNjU2LTYuMS00LjEyNmExLDEsMCwwLDAtMS4zMy0uMjc3LDEuMDE3LDEuMDE3LDAsMCwwLS40ODkuODQ4Yy0uMDEuNjIyLjAwNS43ODQsNS41ODUsNC40MjFBMzEuOTE0LDMxLjkxNCwwLDAsMSwyOSw1My41Yy0xNi4wMTYsMC0yOS0xMS42NDEtMjktMjZTMTIuOTg0LDEuNSwyOSwxLjVaIiBmaWxsPSIjZmZmIi8+DQogICAgPGNpcmNsZSBpZD0iRWxsaXBzZV8xIiBkYXRhLW5hbWU9IkVsbGlwc2UgMSIgY3g9IjMiIGN5PSIzIiByPSIzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMiAyNC41KSIgZmlsbD0iIzAwOGFmZiIvPg0KICAgIDxjaXJjbGUgaWQ9IkVsbGlwc2VfMiIgZGF0YS1uYW1lPSJFbGxpcHNlIDIiIGN4PSIzIiBjeT0iMyIgcj0iMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjYgMjQuNSkiIGZpbGw9IiMwMDhhZmYiLz4NCiAgICA8Y2lyY2xlIGlkPSJFbGxpcHNlXzMiIGRhdGEtbmFtZT0iRWxsaXBzZSAzIiBjeD0iMyIgY3k9IjMiIHI9IjMiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQwIDI0LjUpIiBmaWxsPSIjMDA4YWZmIi8+DQogIDwvZz4NCjwvc3ZnPg0K)!important;height:31px!important;top:16px!important;left:14px!important}body .csh-category-item a h6{text-align:left}.mec-form-row.mec-syn-schedule{background:#f7f7f7;padding:20px;border:1px solid #eee;box-shadow:0 1px 11px rgba(0,0,0,.034);margin-bottom:20px}.mec-form-row.mec-syn-schedule p{padding-left:26px}.mec-form-row.mec-syn-schedule h2{margin-top:0}.mec-form-row.mec-syn-schedule h4{margin:10px 0}li.wns-be-group-menu-li.mec-settings-menu .mec-settings-submenu{position:absolute;top:-1px;right:-222px;width:220px;z-index:9;background:#fff;border:1px;border-style:solid;border-color:#dedede;margin:0;overflow:visible;opacity:0;visibility:hidden;transition:all .23s ease;padding-top:8px;padding-bottom:12px}li.wns-be-group-menu-li.mec-settings-menu:hover>.mec-settings-submenu{visibility:visible;opacity:1}.mec-settings-menu .mec-settings-submenu:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-15px;top:14px;border-right-color:#c5c5c5;right:0}.mec-settings-menu .mec-settings-submenu:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-14px;top:14px}.wns-be-sidebar .mec-settings-menu .mec-settings-submenu a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 26px}.wn-mec-select{width:32.33333333%!important;clear:unset!important}.wn-mec-select{-webkit-tap-highlight-color:transparent;background-color:#fff;border-radius:3px;border:1px solid #ddd;margin-bottom:8px;position:relative;text-align:left!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;box-shadow:0 3px 13px -5px rgba(0,0,0,.1),inset 0 1px 2px rgba(0,0,0,.07)}.wn-mec-select:hover{border-color:#dbdbdb}.wn-mec-select.open .list{overflow:unset;width:100%;margin:0}.wn-mec-select .list{background-color:#fff;border-radius:2px;box-shadow:0 2px 33px -2px rgba(0,0,0,.2),inset 0 1px 2px rgba(0,0,0,.07);box-sizing:border-box;margin-top:4px;opacity:0;overflow:hidden;padding:0;pointer-events:none;position:absolute;top:100%;left:0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0;-webkit-transform:scale(.75) translateY(-21px);-ms-transform:scale(.75) translateY(-21px);transform:scale(.75) translateY(-21px);-webkit-transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;z-index:9}.wn-mec-select{-webkit-tap-highlight-color:transparent;background-color:#fff;border-radius:5px;border:solid 1px #e8e8e8;box-sizing:border-box;clear:both;cursor:pointer;display:block;float:left;font-family:inherit;font-size:14px;font-weight:400;height:42px;line-height:40px;outline:0;padding-left:18px;padding-right:30px;position:relative;text-align:left!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap;width:auto}.wn-mec-select:hover{border-color:#dbdbdb}.wn-mec-select:after{border-bottom:2px solid #999;border-right:2px solid #999;content:'';display:block;height:5px;margin-top:-4px;pointer-events:none;position:absolute;right:12px;top:50%;-webkit-transform-origin:66% 66%;-ms-transform-origin:66% 66%;transform-origin:66% 66%;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:all .15s ease-in-out;transition:all .15s ease-in-out;width:5px}.wn-mec-select.open:after{-webkit-transform:rotate(-135deg);-ms-transform:rotate(-135deg);transform:rotate(-135deg)}.wn-mec-select.open .list{opacity:1;pointer-events:auto;-webkit-transform:scale(1) translateY(0);-ms-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}.wn-mec-select.disabled{border-color:#ededed;color:#999;pointer-events:none}.wn-mec-select.disabled:after{border-color:#ccc}.wn-mec-select.wide{width:100%}.wn-mec-select.wide .list{left:0!important;right:0!important}.wn-mec-select.right{float:right}.wn-mec-select.right .list{left:auto;right:0}.wn-mec-select.small{font-size:12px;height:36px;line-height:34px}.wn-mec-select.small:after{height:4px;width:4px}.wn-mec-select .list{background-color:#fff;border-radius:5px;box-shadow:0 0 0 1px rgba(68,68,68,.11);box-sizing:border-box;margin-top:4px;opacity:0;overflow:hidden;padding:0;pointer-events:none;position:absolute;top:100%;left:0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0;-webkit-transform:scale(.75) translateY(-21px);-ms-transform:scale(.75) translateY(-21px);transform:scale(.75) translateY(-21px);-webkit-transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;z-index:9}.wn-mec-select .list:hover .option:not(:hover){background-color:transparent!important}.wn-mec-select .option{cursor:pointer;font-weight:400;list-style:none;min-height:40px;outline:0;text-align:left;position:relative;font-size:12px!important;padding:1px 12px!important;margin:0!important;line-height:28px!important;min-height:28px!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.wn-mec-select .option .wn-hover-img-sh img{position:absolute;padding:3px;top:-1px;left:100%;box-shadow:0 4px 42px -5px rgba(0,0,0,.16);visibility:hidden;opacity:0;border:1px solid #e3e3e3;border-radius:2px;z-index:99999999;background:#fff}.wn-mec-select .option:hover .wn-hover-img-sh img{visibility:visible;opacity:1}.wn-mec-select .option.focus,.wn-mec-select .option.selected.focus,.wn-mec-select .option:hover{background-color:#f6f6f6}.wn-mec-select .option.selected{font-weight:700}.wn-mec-select .option.disabled{background-color:transparent;color:#999;cursor:default}.no-csspointerevents .wn-mec-select .list{display:none}.no-csspointerevents .wn-mec-select.open .list{display:block}.mec-custom-nice-select ul.list li.option{width:30%!important;float:left!important;min-height:135px!important;height:135px;margin:1.66%!important;box-sizing:border-box;text-align:center;padding:10px!important;border-radius:3px;border:1px solid #eee;box-shadow:0 1px 3px rgba(0,0,0,.025);background:#fff!important}.mec-custom-nice-select ul.list li.option:hover{box-shadow:0 2px 7px rgba(0,0,0,.06);borde-color:#e0e0e0}.mec-custom-nice-select .list:hover .option:not(:hover),.mec-custom-nice-select ul.list:hover li.option{background:#fff!important}.mec-custom-nice-select ul.list{min-width:600px!important;padding:20px 10px!important;background:#fcfbfd;border:1px solid #e9e9e9;box-shadow:0 1px 4px rgba(0,0,0,.05)}.mec-custom-nice-select ul.list li.option.selected{border:1px solid #40d9f1;box-shadow:0 1px 8px -3px #40d9f1 inset;color:#00cae6;padding:12px 0 0 0!important}.mec-custom-nice-select .wn-img-sh img{margin:4px 0 1px 1px;line-height:1;max-width:68px;max-height:56px;filter:grayscale(1);-webkit-filter:grayscale(1);transition:all .22s ease;-webkit-transition:all .22s ease;-moz-transition:all .22s ease;-ms-transition:all .22s ease;-o-transition:all .22s ease}.wn-mec-select .option.focus .wn-img-sh img,.wn-mec-select .option.selected.focus .wn-img-sh img,.wn-mec-select .option:hover .wn-img-sh img{background-color:#f6f6f6;filter:grayscale(0);-webkit-filter:grayscale(0)}@media(max-width:768px){.wn-mec-select{width:45%!important}.mec-custom-nice-select ul.list{margin-left:-24px!important;min-width:404px!important}.mec-custom-nice-select ul.list li.option{width:46.6%!important}.wn-hover-img-sh{display:none}}@media(max-width:480px){.wn-mec-select{width:100%!important}.mec-custom-nice-select ul.list{min-width:337px!important}}@media(max-width:320px){.mec-custom-nice-select ul.list li.option{width:100%!important}.mec-custom-nice-select ul.list{min-width:298px!important}}.mec-sed-methods li{line-height:28px;padding-left:38px;position:relative}.mec-sed-methods li:before{margin-right:0}.mec-sed-methods li:before{border-radius:18px}.mec-custom-nice-select ul.list li .wn-mec-text:after,.mec-sed-methods li:before{content:"";position:absolute;display:inline-block;background:#fff;border-radius:2px;width:12px;height:12px;margin:-1px 0 0 -1px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32);border-radius:50%}.mec-custom-nice-select ul.list li .wn-mec-text{position:relative;padding-top:0;padding-bottom:28px}.mec-custom-nice-select ul.list li .wn-mec-text:after{left:calc(50% - 7px);top:auto;bottom:1px}.mec-custom-nice-select ul.list li .wn-img-sh{line-height:1}.mec-sed-methods li:before{left:9px;top:calc(50% - 7px)}.mec-custom-nice-select ul.list li.option.selected .wn-mec-text:after,.mec-sed-methods li.active:before{width:4px;height:4px;border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff}.menu-icon-mec-books .wp-menu-image img,.toplevel_page_mec-intro .wp-menu-image img{width:18px!important;padding-top:7px!important}.mec-add-booking-tabs-wrap,.mec-add-event-tabs-wrap,.mec-create-shortcode-tabs-wrap{display:flex;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox}.mec-add-booking-tabs-left,.mec-add-event-tabs-left,.mec-create-shortcode-tabs-left{flex:1}.mec-add-booking-tabs-right,.mec-add-event-tabs-right,.mec-create-shortcode-tabs-right{flex:6}a.mec-add-booking-tabs-link,a.mec-add-event-tabs-link,a.mec-create-shortcode-tabs-link{display:block}.mec-booking-tab-content,.mec-create-shortcode-tab-content,.mec-event-tab-content{display:none;transition:all .3s ease}.mec-booking-tab-content.mec-tab-active,.mec-create-shortcode-tab-content.mec-tab-active,.mec-event-tab-content.mec-tab-active{display:block}.mec-add-booking-tabs-wrap,.mec-add-event-tabs-wrap{background:#fff;margin:-6px -12px -12px}.mec-create-shortcode-tabs-wrap{margin:-30px -22px -42px}.mec-add-booking-tabs-left,.mec-add-event-tabs-left,.mec-create-shortcode-tabs-left{padding:0 0 38px;background:#fff;min-width:210px}.mec-add-booking-tabs-left a,.mec-add-event-tabs-left a,.mec-create-shortcode-tabs-left a{line-height:16px;font-size:13px;font-weight:600;letter-spacing:.3px;color:#6a6f77;text-decoration:none;background:#f7f7f7;padding:13px 20px;border-bottom:1px solid #e3e3e3;outline:0;box-shadow:none;transition:all .2s ease}.mec-add-booking-tabs-left a:hover,.mec-add-event-tabs-left a:hover,.mec-create-shortcode-tabs-left a:hover{color:#008aff;background:#fff}.mec-add-booking-tabs-left a.mec-tab-active,.mec-add-event-tabs-left a.mec-tab-active,.mec-create-shortcode-tabs-left a.mec-tab-active{background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff;margin:0 -6px;border-radius:5px;box-shadow:0 2px 12px -5px #36a2ff;border-bottom-color:transparent;position:relative}.mec-add-booking-tabs-right,.mec-add-event-tabs-right,.mec-create-shortcode-tabs-right{padding:0 30px 40px;border-left:1px solid #e2e2e2}.mec-booking-tab-content.mec-tab-active,.mec-create-shortcode-tab-content.mec-tab-active,.mec-event-tab-content.mec-tab-active{animation:fadeEffect2 .31s}@media (max-width:550px){.mec-add-booking-tabs-left,.mec-add-event-tabs-left,.mec-create-shortcode-tabs-left{min-width:100px}.mec-add-booking-tabs-left a,.mec-add-event-tabs-left a,.mec-create-shortcode-tabs-left a{font-size:11px;padding:12px 8px;line-height:1.2;letter-spacing:0}}@keyframes fadeEffect2{from{opacity:0;transform:translateX(11px)}to{opacity:1;transform:translateX(0)}}.mec-form-row .mec-col-8 label{padding-right:20px}.mec-calendar-metabox .wn-mec-select{border:solid 1px #ddd;border-radius:2px;height:40px;line-height:38px;padding-left:10px;box-shadow:0 3px 10px -2px rgba(0,0,0,.05),inset 0 1px 2px rgba(0,0,0,.02)}.mec-calendar-metabox .wn-mec-select.open .list{border-radius:0 0 2px 2px;box-shadow:0 0 0 1px #ddd,0 2px 6px rgba(0,0,0,.07)}.mec-calendar-metabox .mec-custom-nice-select.open ul.list{border-radius:3px;box-shadow:0 2px 6px rgba(0,0,0,.07);margin-left:0!important;transform:translateX(-50%);left:50%}.mec-custom-nice-select ul.list li.option.selected .wn-mec-text:after{border:6px solid #40d9f1;box-shadow:0 3px 16px -3px #40d9f1}.mec-form-row input[type=checkbox]{background-color:#fff;border:1px solid #cacece;box-shadow:0 1px 2px rgba(0,0,0,.05);padding:9px;border-radius:3px;min-width:24px;min-height:24px;display:inline-block;transition:all .18s ease;outline:0;margin:2px 4px 4px 0}.mec-form-row input[type=checkbox]:focus{outline:0}.mec-form-row input[type=checkbox]:hover{border-color:#62b6ff}.mec-form-row input[type=checkbox]:checked{box-shadow:0 1px 6px -2px #008aff;border-color:#008aff;background:#008aff;border-radius:2px;position:relative}.mec-form-row.mec-switcher input[type=checkbox]{position:absolute}.mec-form-row input[type=checkbox]:checked:before{content:"";font:normal;position:absolute;top:12px;left:8px;border-right:2px solid transparent;border-bottom:2px solid transparent;transform:rotate(45deg);transform-origin:0 100%;color:#fff;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards}@keyframes checkbox-check{0%{width:0;height:0;border-color:#fff;transform:translate3d(0,0,0) rotate(45deg)}33%{width:5px;height:0;transform:translate3d(0,0,0) rotate(45deg)}100%{width:5px;height:11px;border-color:#fff;transform:translate3d(0,-11px,0) rotate(45deg)}}.mec-form-row input+span.mec-tooltip,.mec-form-row select+span.mec-tooltip{bottom:10px}.mec-form-row label+span.mec-tooltip{bottom:8px}.mec-form-row textarea+span.mec-tooltip{bottom:auto;vertical-align:top;top:12px}.mec-form-row span+span.mec-tooltip{bottom:0;vertical-align:middle}.mec-form-row .mec-col-8 input[type=text],.mec-form-row .mec-col-8 select,.mec-form-row .mec-col-8 span.mec-archive-skins{vertical-align:top}.mec-form-row input:disabled{opacity:.6;background:#f6f6f6}.wns-be-group-tab h5{font-size:16px;font-weight:600;color:#444;margin:45px 0 25px}.mec-form-row textarea{height:auto;margin-bottom:0;min-height:60px}.mec-form-row .wp-picker-container input[type=text].wp-color-picker{height:25px;vertical-align:top;margin:0}.mec-form-row .wp-picker-container label{margin:0}.mec-image-select-wrap li span:hover{border-color:#fff;box-shadow:0 1px 8px rgba(0,0,0,.12)}.mec-message-categories li.mec-acc-label:after{content:"\e604";font-family:simple-line-icons;speak:none;font-style:normal;font-weight:400;display:block;font-size:13px;color:#999;position:absolute;right:27px;top:26px}.mec-message-categories>li.mec-acc-label[data-status=open]:after{content:"\e607";color:#008aff}.mec-message-categories>li.mec-acc-label[data-status=open]{color:#008aff}.mec-message-categories>li.mec-acc-label:last-of-type{border-bottom:none}.mec-message-categories>li.mec-acc-label[data-status=open]{border-bottom:1px solid #e6e6e6}.mec-form-row ul.mec-message-categories{box-shadow:0 2px 16px rgba(0,0,0,.03);border-radius:5px;overflow:hidden;margin-top:30px;background:#f5f5f5;border:2px solid #e6e6e6;max-width:700px}.mec-form-row ul.mec-message-categories li ul{padding:10px 40px 40px;margin:25px -30px -25px;background:#f5f5f5;box-shadow:inset 0 4px 7px rgba(0,0,0,.04);cursor:default}.mec-form-row ul.mec-message-categories ul label{margin:25px 8px 7px;font-weight:600!important;font-size:13px;color:#888;cursor:default}.wns-be-sidebar li:hover a i,.wns-be-sidebar>li:hover a{color:#008aff}.mec-form-row.mec-skin-list-date-format-container input[type=text]{margin-right:2px}.mec-form-row.mec-skin-list-date-format-container span.mec-tooltip{top:2px}.mec-calendar-metabox .mec-form-row input[type=checkbox],.mec-meta-box-fields .mec-form-row input[type=checkbox]{margin-right:6px}.mec-meta-box-fields .mec-form-row .button:not(.wp-color-result){height:37px;margin-top:1px;box-shadow:inset 0 2px 4px #fff,inset 0 -2px 4px rgba(0,0,0,.05),0 2px 2px rgba(0,0,0,.06)}#mec-read-more .mec-form-row span.mec-tooltip{top:2px;left:-4px}#mec-search-settings{border-radius:21px;min-height:32px;box-shadow:inset 0 1px 2px rgba(0,0,0,.06);padding:9px 10px 12px 34px;margin-right:10px;color:#7c838a;font-size:13px;width:260px;background:#f5f5f5;border:none;z-index:1;transition:all .18s ease;outline:0}#mec-search-settings:focus{background:#fff;box-shadow:0 1px 6px rgba(0,0,0,.07),0 0 0 1px #e6e6e6;width:270px}.mec-search-settings-wrap{display:inline-block;position:relative}.mec-search-settings-wrap i{position:absolute;left:14px;top:14px;font-size:13px;color:#7e8c98;display:block;z-index:2}#mec-search-settings::-webkit-input-placeholder{color:#7c838a}#mec-search-settings::-moz-placeholder{color:#7c838a}#mec-search-settings:-ms-input-placeholder{color:#7c838a}#mec-search-settings:-moz-placeholder{color:#7c838a}.ui-datepicker.ui-widget{border:1px solid #e8e8e8;box-shadow:0 1px 9px rgba(0,0,0,.12)}.ui-datepicker.ui-widget select{font-weight:600;font-size:12px;border-radius:2px;padding:2px 10px;margin:1px 3px 5px}.ui-datepicker.ui-widget table{border-spacing:2px}.ui-datepicker.ui-widget td,.ui-datepicker.ui-widget tr{padding:0;background:0 0!important}.ui-datepicker.ui-widget td a{color:#777;font-weight:600;width:30px;height:30px;line-height:30px;display:inline-block;border-radius:33px;padding:0;background:#fff;transition:all .2s ease}.ui-datepicker.ui-widget td a.ui-state-active,.ui-datepicker.ui-widget td a:hover{background:#40d9f1;color:#fff}.ui-datepicker.ui-widget .ui-datepicker-next,.ui-datepicker.ui-widget .ui-datepicker-prev{color:#40d9f1;width:30px;height:30px;line-height:30px;display:inline-block;text-align:center;border-radius:33px;background:#ecfcff;transition:all .2s ease}.ui-datepicker.ui-widget .ui-datepicker-next:hover,.ui-datepicker.ui-widget .ui-datepicker-prev:hover{background:#fff;box-shadow:0 0 7px -3px rgba(0,0,0,.4)}#mec-wrap{width:92%;margin:20px auto;max-width:1384px}#mec-wrap h2.nav-tab-wrapper{margin-bottom:40px;padding:0;border:none;margin-top:35px;clear:both;background:#fff;box-shadow:0 3px 12px -4px rgba(0,0,0,.13)}#mec-wrap .nav-tab-wrapper .nav-tab{position:relative;padding:28px 22px;border:none;margin:0;background:#fff;font-size:13px;color:#444;outline:0;box-shadow:none}#mec-wrap .nav-tab-wrapper .nav-tab:hover{color:#008aff}#mec-wrap .nav-tab-wrapper .nav-tab:after{content:"";display:inline-block;width:1px;height:30%;position:absolute;right:0;top:35%;background:#e9e9e9}#mec-wrap .nav-tab-wrapper .nav-tab-active,#mec-wrap .nav-tab-wrapper .nav-tab-active:focus,#mec-wrap .nav-tab-wrapper .nav-tab-active:focus:active,#mec-wrap .nav-tab-wrapper .nav-tab-active:hover{background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff;outline:0;box-shadow:0 5px 25px -7px #008aff;margin-left:-1px;z-index:2}#mec-wrap .nav-tab-wrapper .nav-tab-active:after{content:'';position:absolute;display:block;background:0 0;top:auto;height:auto;bottom:-20px;left:50%;margin-left:-10px;width:0;border-width:10px;border-style:solid;border-color:#008aff transparent transparent}#mec-wrap .mec-container{padding:25px 40px 40px;box-shadow:0 3px 10px -4px rgba(0,0,0,.1)}#wpwrap .mec-button-primary{color:#fff;font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s}#wpwrap .mec-button-primary:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 15px -7px rgba(0,0,0,.5);cursor:pointer}.wn-p-t-right{min-width:300px;max-width:400px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.5;position:absolute;z-index:99999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s;padding:20px;border-radius:8px}.wn-p-t-right i{position:absolute!important;top:100%;right:50%;margin-top:-6px!important;margin-right:-6px!important;width:12px;height:24px;overflow:hidden;transform:rotate(-90deg)}.wn-p-t-right i:after{content:'';position:absolute;width:12px;height:12px;left:0;top:50%;transform:translate(50%,-50%) rotate(-45deg);background-color:#535a61;box-shadow:0 8px 9px -4px #535a61}.wn-p-t-right .wn-p-t-text-content h5{color:#fff;font-size:17px;font-weight:600;margin:-20px;padding:15px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #32363a;border-radius:6px 6px 0 0}.mec-addon-box-footer a:hover .wn-p-t-right{visibility:visible;opacity:1}#mec_organizer_user+.select2-container,#mec_speaker_user+.select2-container{min-width:224px!important}.mec-add-event-tabs-wrap .select2-container,.mec-create-shortcode-tab-content .select2-container{min-height:38px;height:auto;box-sizing:border-box;margin-bottom:8px;padding:0 6px;border-radius:2px;border:1px solid #ddd;box-shadow:inset 0 1px 6px rgba(0,0,0,.07);background-color:#fff;color:#32373c;outline:0;transition:50ms border-color ease-in-out;min-width:200px;font-size:14px}.mec-add-event-tabs-wrap .select2-selection,.mec-create-shortcode-tab-content .select2-selection{border:none;background:0 0;padding-top:3px;width:100%;height:100%}.mec-add-event-tabs-wrap .select2-container--default.select2-container--focus .select2-selection,.mec-create-shortcode-tab-content .select2-container--default.select2-container--focus .select2-selection{border:none!important;outline:0}.mec-add-event-tabs-wrap .select2-container--default .select2-selection--single .select2-selection__arrow,.mec-create-shortcode-tab-content .select2-container--default .select2-selection--single .select2-selection__arrow{top:5px;right:4px}.fs-webform-container div .fserv-container{width:100%!important;max-width:none!important;min-height:208px!important;box-shadow:0 1px 16px rgba(0,0,0,.034)!important;border-radius:2px!important;padding:0!important;margin-bottom:0!important;margin-top:30px!important}.fserv-container .fserv-form-name{font-weight:600!important;position:relative!important;font-size:20px!important;padding:20px!important;border-bottom:1px solid #ededed!important;text-align:left!important;margin:0!important}.fserv-form-description{padding:10px 30px!important;margin:1em 0 0!important;line-height:1.5!important;font-size:16px!important}.fserv-container form{padding:0!important;padding-left:28px!important}.fserv-container .fserv-label{display:none!important}.fserv-field{display:inline-block;width:41%!important;padding:0!important;margin:0!important;margin-right:25px!important}.fserv-field+div:not(.fserv-field){margin:0!important;border:none!important;text-align:left!important;padding-left:4px!important;margin-top:0!important;padding-top:0!important;display:inline-block;margin-right:10px!important}.fserv-container .powered-by{display:none!important}button.fserv-button-submit{color:#fff!important;font-weight:500!important;border-radius:2px!important;box-shadow:0 3px 10px -4px #008aff!important;text-shadow:none!important;background:#008aff!important;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%)!important;border:none!important;transition:.24s!important}button.fserv-button-submit: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}.fserv-container input::-webkit-input-placeholder{font-family:Inherit!important;font-size:14px}.fserv-container input::-moz-placeholder{font-family:Inherit!important;font-size:14px}.fserv-container input:-ms-input-placeholder{font-family:Inherit!important;font-size:14px}.fserv-container input:-moz-placeholder{font-family:Inherit!important;font-size:14px}input.fserv-input-text{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)}.fserv-field label.error{display:none!important}.fs-notifier{position:fixed!important;top:40px!important;width:300px!important;max-width:300px!important;margin:0!important;right:20px!important;left:unset!important}
|
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 .support-box a,#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 .support-box a:hover,#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)}#webnus-dashboard .support-box a{margin:40px 4px 0 4px}.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;line-height:normal}#mec-search-settings:focus{background:#fff;box-shadow:0 1px 6px rgba(0,0,0,.07),0 0 0 1px #e6e6e6;width:270px}.mec-search-settings-wrap{display:inline-block;position:relative}.mec-search-settings-wrap i{position:absolute;left:14px;top:14px;font-size:13px;color:#7e8c98;display:block;z-index:2}#mec-search-settings::-webkit-input-placeholder{color:#7c838a}#mec-search-settings::-moz-placeholder{color:#7c838a}#mec-search-settings:-ms-input-placeholder{color:#7c838a}#mec-search-settings:-moz-placeholder{color:#7c838a}.ui-datepicker.ui-widget{border:1px solid #e8e8e8;box-shadow:0 1px 9px rgba(0,0,0,.12)}.ui-datepicker.ui-widget select{font-weight:600;font-size:12px;border-radius:2px;padding:2px 10px;margin:1px 3px 5px}.ui-datepicker.ui-widget table{border-spacing:2px}.ui-datepicker.ui-widget td,.ui-datepicker.ui-widget tr{padding:0;background:0 0!important}.ui-datepicker.ui-widget td a{color:#777;font-weight:600;width:30px;height:30px;line-height:30px;display:inline-block;border-radius:33px;padding:0;background:#fff;transition:all .2s ease}.ui-datepicker.ui-widget td a.ui-state-active,.ui-datepicker.ui-widget td a:hover{background:#40d9f1;color:#fff}.ui-datepicker.ui-widget .ui-datepicker-next,.ui-datepicker.ui-widget .ui-datepicker-prev{color:#40d9f1;width:30px;height:30px;line-height:30px;display:inline-block;text-align:center;border-radius:33px;background:#ecfcff;transition:all .2s ease}.ui-datepicker.ui-widget .ui-datepicker-next:hover,.ui-datepicker.ui-widget .ui-datepicker-prev:hover{background:#fff;box-shadow:0 0 7px -3px rgba(0,0,0,.4)}#mec-wrap{width:92%;margin:20px auto;max-width:1384px}#mec-wrap h2.nav-tab-wrapper{margin-bottom:40px;padding:0;border:none;margin-top:35px;clear:both;background:#fff;box-shadow:0 3px 12px -4px rgba(0,0,0,.13)}#mec-wrap .nav-tab-wrapper .nav-tab{position:relative;padding:28px 22px;border:none;margin:0;background:#fff;font-size:13px;color:#444;outline:0;box-shadow:none}#mec-wrap .nav-tab-wrapper .nav-tab:hover{color:#008aff}#mec-wrap .nav-tab-wrapper .nav-tab:after{content:"";display:inline-block;width:1px;height:30%;position:absolute;right:0;top:35%;background:#e9e9e9}#mec-wrap .nav-tab-wrapper .nav-tab-active,#mec-wrap .nav-tab-wrapper .nav-tab-active:focus,#mec-wrap .nav-tab-wrapper .nav-tab-active:focus:active,#mec-wrap .nav-tab-wrapper .nav-tab-active:hover{background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff;outline:0;box-shadow:0 5px 25px -7px #008aff;margin-left:-1px;z-index:2}#mec-wrap .nav-tab-wrapper .nav-tab-active:after{content:'';position:absolute;display:block;background:0 0;top:auto;height:auto;bottom:-20px;left:50%;margin-left:-10px;width:0;border-width:10px;border-style:solid;border-color:#008aff transparent transparent}#mec-wrap .mec-container{padding:25px 40px 40px;box-shadow:0 3px 10px -4px rgba(0,0,0,.1)}#wpwrap .mec-button-primary{color:#fff;font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s}#wpwrap .mec-button-primary:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 15px -7px rgba(0,0,0,.5);cursor:pointer}.wn-p-t-right{min-width:300px;max-width:400px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.5;position:absolute;z-index:99999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s;padding:20px;border-radius:8px}.wn-p-t-right i{position:absolute!important;top:100%;right:50%;margin-top:-6px!important;margin-right:-6px!important;width:12px;height:24px;overflow:hidden;transform:rotate(-90deg)}.wn-p-t-right i:after{content:'';position:absolute;width:12px;height:12px;left:0;top:50%;transform:translate(50%,-50%) rotate(-45deg);background-color:#535a61;box-shadow:0 8px 9px -4px #535a61}.wn-p-t-right .wn-p-t-text-content h5{color:#fff;font-size:17px;font-weight:600;margin:-20px;padding:15px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #32363a;border-radius:6px 6px 0 0}.mec-addon-box-footer a:hover .wn-p-t-right{visibility:visible;opacity:1}#mec_organizer_user+.select2-container,#mec_speaker_user+.select2-container{min-width:224px!important}.mec-add-event-tabs-wrap .select2-container,.mec-create-shortcode-tab-content .select2-container{min-height:38px;height:auto;box-sizing:border-box;margin-bottom:8px;padding:0 6px;border-radius:2px;border:1px solid #ddd;box-shadow:inset 0 1px 6px rgba(0,0,0,.07);background-color:#fff;color:#32373c;outline:0;transition:50ms border-color ease-in-out;min-width:200px;font-size:14px}.mec-add-event-tabs-wrap .select2-selection,.mec-create-shortcode-tab-content .select2-selection{border:none;background:0 0;padding-top:3px;width:100%;height:100%}.mec-add-event-tabs-wrap .select2-container--default.select2-container--focus .select2-selection,.mec-create-shortcode-tab-content .select2-container--default.select2-container--focus .select2-selection{border:none!important;outline:0}.mec-add-event-tabs-wrap .select2-container--default .select2-selection--single .select2-selection__arrow,.mec-create-shortcode-tab-content .select2-container--default .select2-selection--single .select2-selection__arrow{top:5px;right:4px}.fs-webform-container div .fserv-container{width:100%!important;max-width:none!important;min-height:208px!important;box-shadow:0 1px 16px rgba(0,0,0,.034)!important;border-radius:2px!important;padding:0!important;margin-bottom:0!important;margin-top:30px!important}.fserv-container .fserv-form-name{font-weight:600!important;position:relative!important;font-size:20px!important;padding:20px!important;border-bottom:1px solid #ededed!important;text-align:left!important;margin:0!important}.fserv-form-description{padding:10px 30px!important;margin:1em 0 0!important;line-height:1.5!important;font-size:16px!important}.fserv-container form{padding:0!important;padding-left:28px!important}.fserv-container .fserv-label{display:none!important}.fserv-field{display:inline-block;width:41%!important;padding:0!important;margin:0!important;margin-right:25px!important}.fserv-field+div:not(.fserv-field){margin:0!important;border:none!important;text-align:left!important;padding-left:4px!important;margin-top:0!important;padding-top:0!important;display:inline-block;margin-right:10px!important}.fserv-container .powered-by{display:none!important}button.fserv-button-submit{color:#fff!important;font-weight:500!important;border-radius:2px!important;box-shadow:0 3px 10px -4px #008aff!important;text-shadow:none!important;background:#008aff!important;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%)!important;border:none!important;transition:.24s!important}button.fserv-button-submit: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}.fserv-container input::-webkit-input-placeholder{font-family:Inherit!important;font-size:14px}.fserv-container input::-moz-placeholder{font-family:Inherit!important;font-size:14px}.fserv-container input:-ms-input-placeholder{font-family:Inherit!important;font-size:14px}.fserv-container input:-moz-placeholder{font-family:Inherit!important;font-size:14px}input.fserv-input-text{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)}.fserv-field label.error{display:none!important}.fs-notifier{position:fixed!important;top:40px!important;width:300px!important;max-width:300px!important;margin:0!important;right:20px!important;left:unset!important}
|
assets/css/frontend.css
CHANGED
@@ -14597,4 +14597,337 @@ span.mec-event-export-csv:before,
|
|
14597 |
padding-left: 24px;
|
14598 |
}
|
14599 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14600 |
/* --------------------- */
|
14597 |
padding-left: 24px;
|
14598 |
}
|
14599 |
|
14600 |
+
/* Timeline view */
|
14601 |
+
.mec-wrap .mec-timeline-events-container p,
|
14602 |
+
.mec-wrap .mec-timeline-events-container h4,
|
14603 |
+
.mec-wrap .mec-timeline-events-container div,
|
14604 |
+
.mec-wrap .mec-timeline-events-container a,
|
14605 |
+
.mec-wrap .mec-timeline-events-container span {
|
14606 |
+
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
|
14607 |
+
}
|
14608 |
+
.mec-timeline-events-container {
|
14609 |
+
margin-left: 19px;
|
14610 |
+
padding-top: 20px;
|
14611 |
+
padding-bottom: 9px;
|
14612 |
+
}
|
14613 |
+
|
14614 |
+
.mec-events-timeline-wrap {
|
14615 |
+
position: relative;
|
14616 |
+
display: block;
|
14617 |
+
overflow: visible;
|
14618 |
+
padding-left:95px;
|
14619 |
+
}
|
14620 |
+
|
14621 |
+
.mec-events-timeline-wrap:before {
|
14622 |
+
width: 1px;
|
14623 |
+
content: '';
|
14624 |
+
height: 100%;
|
14625 |
+
position: absolute;
|
14626 |
+
background: #dedede;
|
14627 |
+
left: 95px;
|
14628 |
+
}
|
14629 |
+
|
14630 |
+
|
14631 |
+
.mec-timeline-month-divider+.mec-timeline-events-container {
|
14632 |
+
padding-top: 110px;
|
14633 |
+
}
|
14634 |
+
|
14635 |
+
.mec-timeline-right-content {
|
14636 |
+
float: right;
|
14637 |
+
width: 300px;
|
14638 |
+
}
|
14639 |
+
|
14640 |
+
.mec-timeline-left-content {
|
14641 |
+
float: left;
|
14642 |
+
width: calc(100% - 300px);
|
14643 |
+
padding-left: 15px;
|
14644 |
+
padding-right: 15px;
|
14645 |
+
}
|
14646 |
+
|
14647 |
+
.mec-timeline-month-divider {
|
14648 |
+
position: absolute;
|
14649 |
+
display: block;
|
14650 |
+
background: #fff;
|
14651 |
+
right: calc(100% - 95px);
|
14652 |
+
left: 0;
|
14653 |
+
width: 190px;
|
14654 |
+
text-align: center;
|
14655 |
+
border: 1px solid #dedede;
|
14656 |
+
border-radius: 50px;
|
14657 |
+
font-size: 15px;
|
14658 |
+
padding: 12px 27px;
|
14659 |
+
}
|
14660 |
+
|
14661 |
+
.mec-timeline-event-date {
|
14662 |
+
position: relative;
|
14663 |
+
}
|
14664 |
+
|
14665 |
+
.mec-timeline-events-container .mec-timeline-event-date:before {
|
14666 |
+
content: '';
|
14667 |
+
width: 10px;
|
14668 |
+
height: 10px;
|
14669 |
+
position: absolute;
|
14670 |
+
background: #40D9F1;
|
14671 |
+
border-radius: 50px;
|
14672 |
+
top: 8px;
|
14673 |
+
left: -23px;
|
14674 |
+
z-index: 99;
|
14675 |
+
}
|
14676 |
+
|
14677 |
+
.mec-timeline-events-container .mec-timeline-event-date:after {
|
14678 |
+
content: '';
|
14679 |
+
width: 20px;
|
14680 |
+
height: 20px;
|
14681 |
+
position: absolute;
|
14682 |
+
background: rgba(64, 217, 241, 0.3);
|
14683 |
+
border-radius: 50px;
|
14684 |
+
top: 3px;
|
14685 |
+
left: -28px;
|
14686 |
+
}
|
14687 |
+
|
14688 |
+
.mec-timeline-event-date {
|
14689 |
+
float: left;
|
14690 |
+
width: 17%;
|
14691 |
+
margin-top:27px;
|
14692 |
+
}
|
14693 |
+
|
14694 |
+
.mec-timeline-event-content {
|
14695 |
+
float: left;
|
14696 |
+
width: 82%;
|
14697 |
+
background: #fff;
|
14698 |
+
box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
|
14699 |
+
border-radius: 10px;
|
14700 |
+
overflow: visible;
|
14701 |
+
position: relative;
|
14702 |
+
}
|
14703 |
+
|
14704 |
+
.mec-timeline-main-content {
|
14705 |
+
padding: 23px 30px;
|
14706 |
+
}
|
14707 |
+
|
14708 |
+
.mec-timeline-main-content h4 {
|
14709 |
+
margin-bottom: 15px;
|
14710 |
+
}
|
14711 |
+
|
14712 |
+
.mec-timeline-main-content h4 a {
|
14713 |
+
font-size: 25px;
|
14714 |
+
font-weight: bold;
|
14715 |
+
color: #000;
|
14716 |
+
line-height: 33px;
|
14717 |
+
text-decoration: none;
|
14718 |
+
}
|
14719 |
+
|
14720 |
+
.mec-timeline-main-content p {
|
14721 |
+
font-size: 15px;
|
14722 |
+
color: #515151;
|
14723 |
+
line-height: 24px;
|
14724 |
+
margin-bottom: 36px;
|
14725 |
+
}
|
14726 |
+
|
14727 |
+
a.mec-timeline-readmore {
|
14728 |
+
width: 100%;
|
14729 |
+
display: block;
|
14730 |
+
text-align: center;
|
14731 |
+
color: #fff;
|
14732 |
+
text-decoration: none;
|
14733 |
+
line-height: 52px;
|
14734 |
+
font-size: 17px;
|
14735 |
+
font-weight: bold;
|
14736 |
+
-webkit-transition: all 0.2s ease;
|
14737 |
+
transition: all 0.2s ease;
|
14738 |
+
border-radius: 0 0 10px 10px;
|
14739 |
+
}
|
14740 |
+
|
14741 |
+
a.mec-timeline-readmore:hover {
|
14742 |
+
background: #222;
|
14743 |
+
color: #fff;
|
14744 |
+
}
|
14745 |
+
|
14746 |
+
.mec-timeline-event-time .mec-time-details {
|
14747 |
+
display: inline-block;
|
14748 |
+
margin-left: 7px;
|
14749 |
+
font-size: 13px;
|
14750 |
+
line-height: 13px;
|
14751 |
+
font-weight: 500;
|
14752 |
+
}
|
14753 |
+
|
14754 |
+
.mec-timeline-event-time i {
|
14755 |
+
vertical-align: middle;
|
14756 |
+
}
|
14757 |
+
|
14758 |
+
.mec-timeline-event-time {
|
14759 |
+
background: rgba(64, 217, 241, 0.11);
|
14760 |
+
display: inline-block;
|
14761 |
+
padding: 4px 20px 8px;
|
14762 |
+
border-radius: 50px;
|
14763 |
+
}
|
14764 |
+
|
14765 |
+
.mec-timeline-event-location address {
|
14766 |
+
font-style: normal;
|
14767 |
+
}
|
14768 |
+
|
14769 |
+
.mec-timeline-event-location address span {
|
14770 |
+
font-size: 13px;
|
14771 |
+
font-weight: 500;
|
14772 |
+
vertical-align: middle;
|
14773 |
+
margin-left: 6px;
|
14774 |
+
}
|
14775 |
+
|
14776 |
+
.mec-timeline-event-location address i {
|
14777 |
+
font-size: 17px;
|
14778 |
+
vertical-align: middle;
|
14779 |
+
}
|
14780 |
+
|
14781 |
+
.mec-timeline-event-location {
|
14782 |
+
background: rgba(64, 217, 241, .11);
|
14783 |
+
display: inline-block;
|
14784 |
+
padding: 7px 20px 11px;
|
14785 |
+
border-radius: 20px;
|
14786 |
+
line-height: 1.24;
|
14787 |
+
}
|
14788 |
+
|
14789 |
+
.mec-timeline-event-details+.mec-timeline-event-details {
|
14790 |
+
margin-top: 12px;
|
14791 |
+
}
|
14792 |
+
|
14793 |
+
.mec-timeline-event-content .col-md-4 {
|
14794 |
+
padding: 0;
|
14795 |
+
}
|
14796 |
+
|
14797 |
+
.mec-timeline-event-content:after {
|
14798 |
+
content: '';
|
14799 |
+
display: block;
|
14800 |
+
position: absolute;
|
14801 |
+
left: 50%;
|
14802 |
+
margin-left: -10px;
|
14803 |
+
width: 0;
|
14804 |
+
height: 0;
|
14805 |
+
border-style: solid;
|
14806 |
+
border-width: 10px;
|
14807 |
+
}
|
14808 |
+
|
14809 |
+
.mec-timeline-event-content:after {
|
14810 |
+
top: 30px;
|
14811 |
+
border-color: transparent #ffffff transparent transparent;
|
14812 |
+
left: -10px;
|
14813 |
+
}
|
14814 |
+
|
14815 |
+
.mec-timeline-event-image img {
|
14816 |
+
border-radius: 0 10px 0 0;
|
14817 |
+
width: 100%;
|
14818 |
+
}
|
14819 |
+
|
14820 |
+
.mec-timeline-event-image a {
|
14821 |
+
display: block;
|
14822 |
+
line-height: 0;
|
14823 |
+
}
|
14824 |
+
|
14825 |
+
a.mec-timeline-readmore i {
|
14826 |
+
vertical-align: middle;
|
14827 |
+
margin-left: 10px;
|
14828 |
+
font-size: 9px;
|
14829 |
+
}
|
14830 |
+
|
14831 |
+
.mec-wrap .mec-timeline-event-content a.mec-timeline-readmore:hover {
|
14832 |
+
background: #444;
|
14833 |
+
}
|
14834 |
+
|
14835 |
+
@media(min-width: 1024px) {
|
14836 |
+
.mec-past-event.mec-timeline-event {
|
14837 |
+
margin: 50px 0;
|
14838 |
+
}
|
14839 |
+
}
|
14840 |
+
|
14841 |
+
@media(max-width: 1023px) {
|
14842 |
+
.mec-past-event.mec-timeline-event {
|
14843 |
+
margin: 25px 0;
|
14844 |
+
}
|
14845 |
+
|
14846 |
+
.mec-events-timeline-wrap {
|
14847 |
+
padding-left: 20px;
|
14848 |
+
}
|
14849 |
+
|
14850 |
+
.mec-events-timeline-wrap:before {
|
14851 |
+
left: 20px;
|
14852 |
+
}
|
14853 |
+
}
|
14854 |
+
|
14855 |
+
@media (max-width: 1200px) and (min-width: 992px) {
|
14856 |
+
.mec-timeline-event-content {
|
14857 |
+
width: 81%;
|
14858 |
+
}
|
14859 |
+
|
14860 |
+
.mec-timeline-event-date {
|
14861 |
+
width: 18%;
|
14862 |
+
}
|
14863 |
+
}
|
14864 |
+
|
14865 |
+
@media (max-width: 992px) {
|
14866 |
+
.mec-timeline-right-content,
|
14867 |
+
.mec-timeline-left-content {
|
14868 |
+
float: none;
|
14869 |
+
width: 100%;
|
14870 |
+
text-align: center;
|
14871 |
+
}
|
14872 |
+
|
14873 |
+
.mec-timeline-right-content .mec-timeline-event-image {
|
14874 |
+
text-align: center;
|
14875 |
+
}
|
14876 |
+
|
14877 |
+
.mec-timeline-right-content .mec-timeline-event-image img {
|
14878 |
+
max-width: 300px;
|
14879 |
+
border-radius: 10px;
|
14880 |
+
margin-top: 35px
|
14881 |
+
}
|
14882 |
+
}
|
14883 |
+
|
14884 |
+
@media (max-width: 440px) {
|
14885 |
+
.mec-timeline-right-content .mec-timeline-event-image img {
|
14886 |
+
margin-top: 0px
|
14887 |
+
}
|
14888 |
+
}
|
14889 |
+
|
14890 |
+
@media (max-width: 320px) {
|
14891 |
+
|
14892 |
+
.mec-timeline-event-date,
|
14893 |
+
.mec-timeline-event-content {
|
14894 |
+
float: none;
|
14895 |
+
width: 100%;
|
14896 |
+
}
|
14897 |
+
|
14898 |
+
.mec-timeline-event-date {
|
14899 |
+
margin-bottom: 8px
|
14900 |
+
}
|
14901 |
+
|
14902 |
+
.mec-timeline-event-content:after {
|
14903 |
+
display: none;
|
14904 |
+
}
|
14905 |
+
|
14906 |
+
.mec-timeline-main-content {
|
14907 |
+
padding: 23px 0px;
|
14908 |
+
}
|
14909 |
+
|
14910 |
+
.mec-timeline-main-content p {
|
14911 |
+
font-size: 13px;
|
14912 |
+
}
|
14913 |
+
|
14914 |
+
.mec-timeline-main-content h4 a {
|
14915 |
+
font-size: 23px;
|
14916 |
+
line-height: 24px;
|
14917 |
+
}
|
14918 |
+
|
14919 |
+
.mec-time-details span {
|
14920 |
+
font-size: 11px;
|
14921 |
+
}
|
14922 |
+
|
14923 |
+
.mec-timeline-event-location address span {
|
14924 |
+
font-size: 12px;
|
14925 |
+
}
|
14926 |
+
|
14927 |
+
a.mec-timeline-readmore {
|
14928 |
+
line-height: 44px;
|
14929 |
+
font-size: 14px;
|
14930 |
+
}
|
14931 |
+
}
|
14932 |
+
|
14933 |
/* --------------------- */
|
assets/css/frontend.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.lity-container,.mec-wrap,.mec-wrap div:not([class^=elementor-]){font-family:Montserrat,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif}.entry-content .mec-wrap h1,.entry-content .mec-wrap h2,.entry-content .mec-wrap h3,.entry-content .mec-wrap h4,.entry-content .mec-wrap h5,.entry-content .mec-wrap h6,.mec-wrap h1,.mec-wrap h2,.mec-wrap h3,.mec-wrap h4,.mec-wrap h5,.mec-wrap h6{font-family:Montserrat,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;color:#171c24;font-weight:300;font-style:inherit;letter-spacing:normal;clear:none}.mec-wrap h1{font-size:50px;line-height:1.16;margin-bottom:12px;letter-spacing:-1px}.mec-wrap h2{font-size:36px;line-height:1.14;margin-bottom:10px}.mec-wrap h3{font-size:28px;line-height:1.2;margin-bottom:8px}.mec-wrap h4{font-size:24px;line-height:1.2;margin-bottom:10px}.mec-wrap h5{font-size:18px;line-height:1.3;margin-bottom:7px}.mec-wrap h6{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-wrap .subheader{color:#849098}.mec-wrap h1 strong{font-weight:700}.mec-wrap p{margin:0 0 20px 0;color:#616161;font-size:14px;line-height:1.8}.mec-wrap .mec-event-article .mec-color-hover{box-shadow:none;border:none}.mec-wrap abbr,.mec-wrap acronym{cursor:auto;border:none}.entry-content .mec-wrap a{box-shadow:none}.mec-wrap .button,.mec-wrap a.button:not(.owl-dot),.mec-wrap button:not(.owl-dot),.mec-wrap input[type=button],.mec-wrap input[type=reset],.mec-wrap input[type=submit]{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease}.mec-wrap .button:hover,.mec-wrap a.button:hover,.mec-wrap button:hover,.mec-wrap input[type=button]:hover,.mec-wrap input[type=reset]:hover,.mec-wrap input[type=submit]:hover{background:#222;color:#fff}.mec-booking-form-container button{display:block!important}.vertical-space,.vertical-space1,.vertical-space2,.vertical-space3,.vertical-space4,.vertical-space5{display:block;width:100%;margin:0;clear:both;border:0 none;height:20px}.vertical-space2{height:40px}.vertical-space3{height:60px}.vertical-space4{height:80px}.vertical-space5{height:100px}@media only screen and (max-width:479px){.vertical-space,.vertical-space1{height:8px}.vertical-space2{height:14px}.vertical-space3{height:28px}.vertical-space4{height:40px}.vertical-space5{height:60px}}@media only screen and (max-width:960px){.vertical-space,.vertical-space1{height:12px}.vertical-space2{height:18px}.vertical-space3{height:36px}.vertical-space4{height:50px}.vertical-space5{height:80px}}.mec-wrap abbr{cursor:auto;border-bottom:0}@-webkit-keyframes rotating{from{-ms-transform:rotate(0);-moz-transform:rotate(0);-webkit-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}to{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes rotating{from{-ms-transform:rotate(0);-moz-transform:rotate(0);-webkit-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}to{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}.mec-wrap{font:14px/25px sans-serif;font-family:Montserrat,Helvetica,Arial,sans-serif;font-weight:400;color:#626262}.mec-wrap .mec-events a{border-bottom:none}.mec-wrap .mec-container a{box-shadow:none}.mec-event-content p{font-family:Roboto,sans-serif;font-weight:300}.mec-wrap .mec-clear:after,.mec-wrap .mec-clear:before{content:" ";display:table}.mec-wrap .mec-clear:after{clear:both}.mec-events-button{background:#fff;padding:12px 34px;font-size:13px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;margin-right:10px;transition:.3s}.mec-wrap .mec-events-button:hover{color:#fff}.mec-no-event{display:none}#mec-active-current{display:block!important}.current-hide #mec-active-current{display:none!important}.mec-event-grid-classic .mec-event-article{position:relative;border:2px solid #e3e3e3;box-shadow:0 2px 0 0 rgba(0,0,0,.016);margin-bottom:30px;max-width:none}.mec-event-grid-classic .mec-event-content{background:#fff;color:#767676;padding:0 20px 5px;text-align:center;min-height:125px}.mec-event-grid-classic .mec-event-title{color:#202020;margin:10px 0;font-weight:700;font-size:20px;letter-spacing:1px;text-transform:uppercase}.mec-event-grid-classic .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-classic .mec-event-date{font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:1px;color:#fff;padding:3px 20px;margin:0 -20px 20px -20px;text-align:center}.mec-event-grid-classic .mec-event-content p{font-size:15px;color:#8a8a8a}.mec-event-grid-classic .mec-event-detail{display:none}.mec-event-grid-classic img{margin-bottom:0;width:100%}.mec-event-footer{position:relative;border-top:1px solid #efefef;padding:20px;min-height:80px;margin:0;background:#fafafa}.mec-event-sharing-wrap{left:15px;position:absolute;list-style:none;margin:0}.mec-event-sharing-wrap .mec-event-sharing{position:absolute;padding:8px 0 2px;left:-6px;bottom:54px;margin:0;margin-top:6px;border-radius:5px;width:50px;visibility:hidden;opacity:0;border:1px solid #e2e2e2;background:#fff;box-shadow:0 0 9px 0 rgba(0,0,0,.06);z-index:99;-webkit-transition:all .18s ease;transition:all .18s ease}.mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-sharing-wrap .mec-event-sharing:before{content:'';display:block;position:absolute;bottom:-10px;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-event-sharing-wrap .mec-event-sharing:before{bottom:-21px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-sharing-wrap .mec-event-sharing:after{bottom:-19px;border-color:#fff transparent transparent transparent}.mec-event-sharing-wrap:hover .mec-event-sharing{opacity:1;visibility:visible}.mec-event-sharing-wrap li{text-align:center;border:0;display:block;margin-right:2px;overflow:hidden;margin:0 auto 6px;width:38px}.mec-event-sharing-wrap:hover>li{cursor:pointer;background-color:#40d9f1}.mec-event-sharing-wrap:hover li a{color:#fff}.mec-event-sharing-wrap>li:first-of-type{border:1px solid #d9d9d9}.mec-event-sharing-wrap li a,.mec-event-sharing-wrap:hover li ul li a{border:none;color:#767676}.mec-event-sharing-wrap li i{width:36px;height:36px;display:table-cell;vertical-align:middle}.mec-event-sharing-wrap .mec-event-sharing li a{display:block}.mec-event-sharing-wrap .mec-event-sharing li:hover a{color:#40d9f1}.mec-event-sharing .mec-event-share:hover .event-sharing-icon{background:#40d9f1;border-width:0 1px 0;cursor:pointer}.mec-event-sharing .mec-event-map{border-width:1px 0 1px}.mec-event-footer .mec-booking-button{box-shadow:none;transition:all .21s ease;font-size:11px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:1px solid #e8e8e8;position:absolute;top:20px;right:15px;padding:0 16px;line-height:37px;height:38px}.mec-event-footer .mec-booking-button:hover{background:#191919;color:#fff;border-color:#191919}@media only screen and (max-width:960px){.mec-event-grid-classic{margin-bottom:30px}}.mec-widget .mec-event-grid-classic.mec-owl-carousel{padding:36px 0 16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav{margin:5px 0;width:100%;position:absolute;top:15px;padding:0}.mec-skin-grid-container.mec-widget{padding-top:18px}.mec-widget .mec-event-grid-classic.mec-owl-carousel{padding:20px 0 16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav{margin:0;width:100%;position:absolute;top:0;padding:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav div{position:absolute;background:#fff;line-height:0;width:34px;height:26px;padding:6px;text-align:center;margin-top:-17px;border-radius:3px;border:1px solid #e2e2e2;text-align:center;box-shadow:0 2px 0 0 rgba(0,0,0,.028);transition:all .33s ease}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav .owl-next{right:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav .owl-prev{left:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-sharing{display:none}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-footer{text-align:center}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-footer .mec-booking-button{position:static;padding:11px 16px}.widget .mec-event-footer ul.mec-event-sharing-wrap li a.mec-event-share-icon{padding:0}@media screen and (min-width:56.875em){.mec-widget .mec-month-container dl{margin-bottom:0}}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-footer{text-align:right}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-sharing-wrap{left:5px;padding-left:5px}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-sharing-wrap .mec-event-sharing{left:0}.mec-widget .mec-event-sharing-wrap .mec-event-sharing{position:absolute;top:auto;bottom:52px;margin:0;margin-top:0;border-radius:5px}.mec-widget .mec-event-sharing-wrap .mec-event-sharing:after{top:auto;bottom:-17px;border-color:#fff transparent transparent transparent}.mec-widget .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-18px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-grid-clean{margin-bottom:10px;max-width:none}.mec-event-grid-clean .mec-event-article{margin-bottom:30px;position:relative;border:1px solid #e2e2e2;text-align:center;padding:15px 15px 0;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-clean .mec-event-content{background:#fff;color:#767676;padding:25px 16px 0;text-align:left}.mec-event-grid-clean .mec-event-title{color:#202020;margin:0 0 10px 0;font-weight:700;font-size:21px;text-transform:capitalize}.mec-event-grid-clean .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-clean .mec-event-date{font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:1px;background-color:#40d9f1;color:#fff;padding:3px 0;margin:0;text-align:center}.mec-event-grid-clean .mec-event-content p{font-size:15px;color:#9a9a9a;line-height:1.54}.mec-event-grid-clean img{margin-bottom:0;width:100%}.mec-event-grid-clean .event-grid-t2-head{margin-bottom:10px;color:#fff;padding:9px 14px 6px;text-align:left}.mec-event-grid-clean .event-grid-t2-head .mec-event-date{font-size:50px;line-height:50px;float:left;margin-right:11px}.mec-event-grid-clean .event-grid-t2-head .mec-event-month{text-transform:uppercase;font-size:17px;line-height:20px;padding-top:4px}.mec-event-grid-clean .event-grid-t2-head .mec-event-detail{font-size:12px}.mec-event-grid-clean .mec-event-sharing-wrap{left:0}.mec-event-grid-clean .mec-event-footer{position:relative;border-top:2px solid;padding:20px 0;margin:0 14px;text-align:left;background:0 0}.mec-event-grid-clean .mec-event-footer .mec-booking-button{right:0}.mec-event-grid-clean .row{margin-bottom:30px}.mec-event-grid-modern{margin-bottom:10px;max-width:none}.mec-event-grid-modern .mec-event-article{position:relative;border:1px solid #e2e2e2;text-align:center;margin-bottom:30px;padding:45px 15px 10px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-modern .mec-event-content{background:#fff;color:#767676;padding:35px 15px 10px;text-align:left}.mec-event-grid-modern .mec-event-title{color:#202020;margin:0 0 10px 0;font-weight:700;font-size:24px;text-transform:none;letter-spacing:-1px}.mec-event-grid-modern .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-modern .mec-event-content p{font-size:15px;color:#9a9a9a;line-height:1.54}.mec-event-grid-modern img{margin-bottom:0;width:100%}.mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:9px 14px 6px;text-align:left}.mec-event-grid-modern .event-grid-modern-head .mec-event-date{font-size:50px;line-height:50px;float:left;margin-right:11px}.mec-event-grid-modern .event-grid-modern-head .mec-event-month{text-transform:uppercase;font-size:17px;line-height:20px;padding-top:4px}.mec-event-grid-modern .event-grid-modern-head .mec-event-detail{font-size:12px}.mec-event-grid-modern .event-grid-modern-head .mec-event-day{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:35px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-event-grid-modern .mec-event-footer{position:relative;height:90px;padding:20px 0;border:none;margin:0 14px;text-align:left;background:0 0}.mec-event-grid-modern .mec-event-footer .mec-booking-button{right:auto;left:0}.mec-event-grid-modern .mec-event-sharing-wrap{left:auto;right:0}.mec-event-grid-modern .mec-event-sharing{left:auto;right:-6px}.mec-event-grid-modern .mec-event-sharing-wrap li{border-radius:55px}.mec-event-grid-modern .row{margin-bottom:0}@media only screen and (max-width:479px){.mec-event-grid-modern .mec-event-article{padding-bottom:30px}.mec-event-grid-modern .mec-event-sharing{top:60px;left:0;right:auto}.mec-event-grid-modern .mec-event-footer .mec-booking-button{top:0}}.mec-event-title-soldout .soldout{background:#de3120;padding:4px 5px;color:#fff}.mec-event-title-soldout .soldout{background:#de3120;position:relative;top:-2px;border-radius:10px 0 0 20px;padding:2px 4px 2px 10px;color:#fff}.mec-event-title-soldout .soldout:before{content:' ';position:absolute;width:0;height:0;border-top:10px solid #de3120;border-bottom:10px solid #de3120;right:-10px;border-right:10px solid transparent;border-left:10px solid transparent;top:0}.mec-event-title-soldout .soldout:after{content:' ';position:absolute;width:6px;height:6px;background:#de3120;border-radius:50%;left:3px;top:4px;border:2px dashed #fff}.mec-event-grid-colorful .mec-event-article{min-height:400px;border:none;box-shadow:none;background:#40d9f1;padding-top:25px;margin:0;color:#fff}.mec-event-grid-colorful .mec-event-content{background:0 0}.mec-event-grid-colorful .event-grid-modern-head,.mec-event-grid-colorful .event-grid-modern-head .mec-event-date,.mec-event-grid-colorful .event-grid-modern-head .mec-event-day,.mec-event-grid-colorful .mec-event-content p,.mec-event-grid-colorful .mec-event-sharing-wrap>li>a,.mec-event-grid-colorful .mec-event-title a{color:#fff}.mec-event-grid-colorful .mec-event-footer .mec-booking-button{border:none}.mec-event-grid-colorful .mec-event-sharing-wrap>li{border-color:#fff}.mec-event-grid-colorful .mec-event-sharing-wrap:hover>li{background:#333;border-color:#333}.mec-event-grid-colorful .mec-event-title a.mec-color-hover:hover{color:#fff;text-decoration:underline}.mec-event-grid-colorful .mec-event-title .event-color{display:none}.mec-event-grid-colorful div[class^=col-md-]{padding:0 1px 1px 0;margin:0}@media only screen and (min-width:768px){.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-day{font-size:26px}.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-month{font-size:15px}.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-date{font-size:50px}.mec-wrap.mec-sm959.mec-event-grid-colorful .mec-event-title{font-size:21px}.mec-wrap.mec-sm959.mec-event-grid-colorful .mec-event-content p{font-size:13px}}@media only screen and (min-width:768px) and (max-width:1200px){.mec-wrap.mec-sm959.mec-event-grid-colorful div[class^=col-md-]{width:50%}}.mec-event-list-minimal .mec-event-article{border-bottom:1px solid #efefef;padding:24px 0 16px}.mec-event-list-minimal .mec-wrap .col-md-9{padding:0}.mec-event-list-minimal .mec-event-date{position:relative;float:left;margin-right:30px;color:#fff;width:52px;padding:6px 4px 3px;text-align:center;text-transform:uppercase;border-radius:3px}.mec-event-list-minimal .mec-event-date span{display:block;font-size:24px;font-weight:700;text-align:center;margin-bottom:4px}.mec-event-list-minimal .mec-event-date:after{display:block;content:"";position:absolute;width:50px;left:1px;top:1px;height:30px;background:rgba(255,255,255,.1);box-shadow:0 4px 4px rgba(0,0,0,.02)}.mec-event-list-minimal .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;font-size:18px;text-transform:uppercase;letter-spacing:0;padding-top:10px}.mec-event-list-minimal .mec-event-detail,.mec-event-list-minimal .mec-time-details{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;font-family:Roboto,sans-serif}.mec-event-list-minimal .btn-wrapper{text-align:right;padding-right:0;padding-top:6px}.mec-event-list-minimal .btn-wrapper .mec-detail-button{border-bottom:0;margin-bottom:14px;margin-right:0;box-shadow:none}.mec-event-list-minimal a.mec-detail-button{text-align:center;display:inline-block;background:#ededed;color:#191919;padding:12px;border-radius:2px;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:2px;transition:all .24s ease}.mec-event-list-minimal a.mec-detail-button:hover{background:#292929;color:#fff}.vc_col-sm-4 .mec-event-list-minimal .mec-event-date,.vc_col-sm-6 .mec-event-list-minimal .mec-event-date{margin-right:12px}.vc_col-sm-4 .mec-event-list-minimal .mec-event-title,.vc_col-sm-6 .mec-event-list-minimal .mec-event-title{font-size:15px;letter-spacing:2px}@media only screen and (min-width:480px) and (max-width:767px){.mec-event-list-minimal .btn-wrapper{padding-left:0}.mec-event-list-minimal .mec-event-date{margin-right:10px}}@media only screen and (max-width:767px){.mec-event-list-minimal .btn-wrapper .mec-detail-button{display:block;text-align:center;margin:0;margin-top:16px;padding:8px}.mec-event-list-minimal .btn-wrapper{margin:12px 0}}@media only screen and (max-width:479px){.mec-event-list-minimal .mec-event-date{float:none;width:100%;margin-bottom:8px}.mec-event-list-minimal .mec-event-date span{display:inline;padding-right:25px;margin-right:7px;font-size:inherit}.mec-event-list-minimal .mec-event-date:after{width:45%;box-shadow:4px 0 4px rgba(0,0,0,.02)}.mec-event-list-minimal .btn-wrapper{text-align:center;padding-left:0}.mec-event-list-minimal{text-align:center}.mec-event-list-minimal .mec-event-detail{margin-bottom:10px}}.mec-wrap .mec-event-list-modern .mec-event-title{margin-top:0;margin-bottom:10px}.mec-event-list-modern .mec-event-article{border-bottom:1px solid #efefef;padding:30px 0 10px}.mec-event-list-modern .mec-event-article:last-child{border-bottom:none}.mec-event-list-modern .mec-event-title a{color:#191919;transition:all .24s ease;box-shadow:none}.mec-event-list-modern .mec-event-date{text-transform:uppercase;padding:10px 0}.mec-event-list-modern .mec-event-date .event-d{font-size:48px;display:table-cell;padding:10px 0 0}.mec-event-list-modern .mec-event-date .event-f{font-size:13px;display:table-cell;vertical-align:middle;padding-left:7px;font-weight:500;letter-spacing:3px;color:#777}.mec-event-list-modern .mec-event-detail{font-weight:300;color:#8a8a8a}.mec-event-list-modern .mec-event-detail .mec-time-details{display:inline}.mec-event-list-modern .mec-event-date .event-da{margin-top:9px;color:silver;font-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,.mec-event-list-classic .mec-event-time{font-weight:400;font-size:13px;letter-spacing:0;line-height:18px;text-align:left;display:initial;margin-right:12px}.mec-event-list-classic .mec-event-time .mec-time-details,.mec-event-list-classic .mec-event-time i{display:inline;margin-right:3px}.mec-event-list-classic .mec-event-date span{font-weight:500;margin-bottom:6px}.mec-event-list-classic .mec-event-title{font-size:15px;margin:10px 0 12px;font-weight:700;text-transform:uppercase}.mec-event-list-classic .mec-event-title a{color:#494949;transition:color .3s ease}.mec-event-list-classic .mec-event-detail{color:#777;font-weight:400;line-height:12px;font-size:12px;overflow:hidden}.mec-event-list-classic a.magicmore{padding:10px 16px;color:#fff;background:#222;letter-spacing:2px;font-size:11px}.mec-event-list-classic a.magicmore:after{content:"";display:none}.mec-event-list-classic a.magicmore:hover{color:#40d9f1}.mec-event-grid-simple .mec-event-article{position:relative;margin-bottom:30px}.mec-event-grid-simple .mec-event-article:after{border-right:1px solid #e6e6e6;height:60px;position:absolute;top:50%;margin-top:-30px;right:-1px}.mec-event-grid-simple .row div:last-child .mec-event-article:after{border:none}.mec-event-grid-simple .row{margin:15px 0 30px;text-align:center}.mec-event-grid-simple .mec-event-date{padding:0;margin:0;text-transform:capitalize;font-size:12px;font-weight:700}.mec-event-grid-simple .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;line-height:21px;font-size:15px;padding-top:5px;text-transform:uppercase;transition:color .37s ease}.mec-event-grid-simple .mec-event-title a{color:#494949;transition:color .3s ease}.mec-event-grid-simple .mec-event-detail{font-family:Roboto,sans-serif;font-weight:400;line-height:1;letter-spacing:0;font-size:13px;color:#777}.mec-event-grid-simple:hover .mec-event-title{color:#40d9f1}.mec-event-grid-simple:hover .mec-event-date{background:0 0}.event-last:after{display:none}@media only screen and (max-width:767px){.mec-event-grid-simple .mec-event-article{padding-bottom:20px;margin-bottom:20px;border-bottom:1px solid #eee}.mec-event-grid-simple .mec-event-article:after{border:none}}.mec-event-grid-novel .mec-event-article{position:relative;margin-bottom:30px;padding:60px 5% 60px 7%;border:1px solid rgba(255,255,255,.12);border-radius:10px;background-color:#0050fd;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease;z-index:1}.mec-event-grid-novel .mec-event-article .novel-grad-bg{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:10px;opacity:0;z-index:-1;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease}.mec-event-grid-novel .mec-event-article:hover{-webkit-box-shadow:0 13px 36px 0 rgba(0,0,0,.23);box-shadow:0 13px 36px 0 rgba(0,0,0,.23);border-color:transparent}.mec-event-grid-novel .mec-event-article:hover .novel-grad-bg{background-image:-webkit-gradient(linear,left top,right top,from(#262e32),to(#0e1015));background-image:-webkit-linear-gradient(left,#262e32 0,#0e1015 100%);background-image:-o-linear-gradient(left,#262e32 0,#0e1015 100%);background-image:linear-gradient(90deg,#262e32 0,#0e1015 100%);opacity:1}.mec-event-grid-novel .mec-event-image{float:left;width:150px;height:150px}.mec-event-grid-novel .mec-event-image img{width:150px;height:150px;border-radius:50%}.mec-event-grid-novel .mec-event-detail-wrap{margin-left:200px}.mec-event-grid-novel .mec-event-content h4{position:relative;margin-bottom:10px;display:inline-block}.mec-event-grid-novel .mec-event-content h4 a{font-size:24px;line-height:35px;color:#fafcff}.mec-event-grid-novel .mec-event-content h4::before{content:'';position:absolute;top:8px;left:-30px;width:17px;height:17px;background:#5cd0ed;opacity:.4;border-radius:50%}.mec-event-grid-novel .mec-event-content h4::after{content:'';position:absolute;top:12px;left:-26px;width:9px;height:9px;background:#5cd0ed;border-radius:50%}.mec-event-grid-novel .mec-event-address,.mec-event-grid-novel .mec-event-detail,.mec-event-grid-novel .mec-event-month{position:relative;padding-left:35px;font-size:15px;line-height:30px;color:rgba(255,255,255,.4)}.mec-event-grid-novel .mec-event-address::before,.mec-event-grid-novel .mec-event-detail::before,.mec-event-grid-novel .mec-event-month::before{position:absolute;top:6px;left:6px;font-size:17px;font-family:simple-line-icons;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1}.mec-event-grid-novel .mec-event-month::before{content:"\e075"}.mec-event-grid-novel .mec-event-detail::before{content:"\e081"}.mec-event-grid-novel .mec-event-address::before{content:"\e096"}.mec-event-grid-novel .mec-event-footer{clear:both;padding:20px 0;border-top:none;background:0 0}.mec-event-grid-novel .mec-event-footer .mec-booking-button{right:auto;left:0;height:42px;width:148px;padding:0 20px;font-size:14px;font-weight:400;line-height:42px;text-align:center;color:#fff;background:0 0;border-color:rgba(255,255,255,.1);border-radius:50px}.mec-event-grid-novel .mec-event-footer .mec-booking-button:hover{background-color:rgba(255,255,255,.1)}.mec-event-grid-novel .mec-event-sharing-wrap{left:175px;cursor:pointer}.mec-event-grid-novel .mec-event-sharing-wrap>li{border-color:rgba(255,255,255,.1);border-radius:50%}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing{top:-5px;left:0;padding:5px 10px 2px 50px;min-width:150px;width:inherit;height:37px;background-color:rgba(255,255,255,.1);-webkit-box-shadow:none;box-shadow:none;border:none;border-radius:50px}.mec-event-grid-novel .mec-event-sharing-wrap:hover>li{background-color:rgba(255,255,255,.1)}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing::after,.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing::before{display:none}.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon,.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon a,.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li i{display:inline}.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon a{padding:0 10px}.mec-event-grid-novel .mec-event-sharing-wrap>li a{color:#fff}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li a{color:rgba(255,255,255,.4)}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li a:hover{color:rgba(255,255,255,1)}@media only screen and (max-width:1200px){.mec-event-grid-novel .row .col-md-6.col-sm-6{width:100%;float:none}.mec-event-grid-novel .mec-event-image{float:none;margin-top:-20px;margin-bottom:20px}.mec-event-grid-novel .mec-event-detail-wrap{margin-left:20px}.mec-event-grid-novel .mec-event-footer{margin-top:30px}}@media only screen and (max-width:767px){.mec-event-grid-novel .mec-event-footer{margin-top:0;padding-top:30px;margin-bottom:24px}.mec-event-grid-novel .mec-event-footer .mec-booking-button{display:block;position:relative}.mec-event-grid-novel .mec-event-sharing-wrap{left:0;bottom:-55px}.mec-event-grid-novel .mec-event-content h4 a{font-size:20px;line-height:1.3}}.mec-event-cover-modern{position:relative}.mec-event-cover-modern .mec-event-cover-a{background:0 0;position:absolute;color:#fff;bottom:0;left:0;text-decoration:none}.mec-event-cover-modern .mec-event-cover-a .mec-event-overlay{transition:all .5s;opacity:.8;width:100%;height:100%;position:absolute}.mec-event-cover-modern .mec-event-cover-a:hover .mec-event-overlay{opacity:1}.mec-event-cover-modern .mec-event-detail{padding:40px;position:relative}.mec-event-cover-modern .mec-event-cover-a:hover .mec-event-tag{color:#333;transition:all .5s}.mec-event-cover-modern .mec-event-cover-a .mec-event-title:hover{text-decoration:underline}.mec-event-cover-modern .mec-event-tag{background:#fff;display:inline-block;padding:5px 9px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:24px}.mec-event-cover-modern .mec-event-date{text-transform:uppercase;font-size:17px;font-weight:300}.mec-event-cover-modern .mec-event-title{color:#fff;text-transform:uppercase;font-size:40px;font-weight:700;margin:6px 0}.mec-event-cover-modern .mec-event-place{font-weight:400;font-size:18px;font-family:Roboto,sans-serif}@media only screen and (max-width:767px){.mec-event-cover-modern .mec-event-cover-a{width:100%}}.mec-event-cover-classic{position:relative;overflow:hidden;background:#fff;padding:6px;border:1px solid #e8e8e8}.mec-event-cover-classic .mec-event-overlay{position:absolute;left:6px;right:6px;bottom:6px;top:6px;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-cover-classic:hover .mec-event-overlay{background-color:rgba(36,36,36,.6)}.mec-event-cover-classic .mec-event-content{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out}.mec-event-cover-classic .mec-event-date{font-size:14px;text-transform:uppercase;font-weight:400;line-height:1.6}.mec-event-cover-classic .mec-event-date span{display:block;font-weight:700;font-size:16px}.mec-event-cover-classic .mec-event-title{color:#fff;margin:20px 0 38px;font-size:24px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-cover-classic .mec-btn-wrapper{text-align:left}.mec-event-cover-classic .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-cover-classic .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:12px 20px;letter-spacing:3px;font-size:12px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-cover-classic .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-cover-classic .mec-event-image img{min-width:100%}@media only screen and (max-width:960px){.mec-event-cover-classic .mec-event-content{padding:20px}.mec-event-cover-classic .mec-event-button{font-size:11px;padding:7px 10px;letter-spacing:1px}.mec-event-cover-classic .mec-event-title{font-size:19px;margin:15px 0 25px}.mec-event-cover-classic .mec-event-date{font-size:12px}}@media only screen and (max-width:767px){.mec-event-cover-classic{margin-bottom:30px}}@media only screen and (max-width:479px){.mec-event-cover-classic .mec-event-content{padding:15px;font-size:15px}.mec-event-cover-classic .mec-event-title{font-size:15px;margin:10px 0}.mec-event-cover-classic .mec-event-button{font-size:10px;padding:6px;letter-spacing:1px}.mec-event-cover-classic .mec-event-icon{padding:10px}}.mec-load-more-wrap{text-align:center;display:block;width:100%;padding-top:20px;text-align:center;position:relative}.mec-load-more-button{box-shadow:none;transition:all .21s ease;font-size:12px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:2px solid #e8e8e8;border-radius:50px;padding:0 28px;margin-bottom:20px;cursor:pointer;line-height:40px;font-family:Montserrat,Helvetica,Arial,sans-serif;height:42px;display:inline-block}.mec-load-more-button:hover{background:#191919;color:#fff;border-color:#191919}.mec-load-more-loading{content:url(../img/ajax-loader.gif);cursor:wait;background:0 0;border-style:none}.mec-load-more-loading:hover{background:0 0}.mec-modal-preloader,.mec-month-navigator-loading{width:100%;height:100%;background:no-repeat rgba(255,255,255,.88) url(../img/ajax-loader.gif) center;border-style:none;position:fixed;left:0;right:0;bottom:0;top:0;z-index:9}.mec-event-calendar-classic .mec-calendar-side .mec-calendar-table{min-height:1024px}.mec-calendar-side .mec-calendar-table{min-height:450px}.mec-skin-weekly-view-events-container.mec-month-navigator-loading{margin-top:0}.mec-calendar.mec-event-calendar-classic .mec-calendar-side{display:block}.mec-skin-daily-view-events-container.mec-month-navigator-loading{margin-top:0}@media only screen and (min-width:961px){.mec-wrap.mec-sm959 .mec-calendar-side .mec-calendar-table{min-height:1px}}@media only screen and (max-width:479px){.mec-calendar-side .mec-calendar-table{min-height:1px}}.mec-event-cover-clean{position:relative;border:1px solid #e6e6e6;padding:8px}.mec-event-cover-clean .mec-event-overlay{height:100%;background-color:rgba(36,36,36,.4);position:absolute;width:100%;left:0;border:8px solid #fff;top:0;transition:all .5s ease-in-out}.mec-event-cover-clean .mec-event-content{color:#fff;position:absolute;bottom:20px;padding:40px 60px;transition:all .5s ease-in-out}.mec-event-cover-clean .mec-event-title{color:#fff;font-weight:700;margin:46px 0 19px;font-size:29px;text-transform:uppercase;text-shadow:0 0 1px rgba(0,0,0,.5)}.mec-event-cover-clean .mec-event-title a{color:#fff;transition:all .5s;text-decoration:none;outline:0;border:none;box-shadow:none}.mec-event-cover-clean .mec-event-title a:hover{text-decoration:underline}.mec-event-cover-clean .mec-event-date{position:absolute;top:-20px;right:60px;color:#fff;width:60px;padding:14px 10px;z-index:1}.mec-event-cover-clean .mec-event-date div{text-align:center;text-transform:uppercase;letter-spacing:1px;line-height:16px}.mec-event-cover-clean .mec-event-date .dday{padding-bottom:15px;border-bottom:1px solid rgba(255,255,255,.5);margin-bottom:13px;font-size:24px}.mec-event-cover-clean .mec-event-date .dmonth{letter-spacing:2px}.mec-event-cover-clean .mec-event-place{font-size:18px;font-family:Roboto,sans-serif}.mec-event-cover-clean .mec-event-image img{width:100%}@media only screen and (max-width:768px){.mec-event-cover-clean .mec-event-content{padding:20px;bottom:5px}.mec-event-cover-clean .mec-event-title{font-size:23px}.mec-event-cover-clean .mec-event-date{right:20px;padding:10px;width:50px}}@media only screen and (max-width:479px){.mec-event-cover-clean .mec-event-content{padding:10px}.mec-event-cover-clean .mec-event-title{font-size:19px;padding-right:25px}.mec-event-cover-clean .mec-event-date{right:-20px;top:-10px}.mec-event-cover-clean .mec-event-detail{font-size:12px}}.mec-month-divider{text-align:center;margin:60px 0 40px 0}.widget .mec-month-divider{margin:10px 0}.mec-month-divider span{text-transform:uppercase;font-size:22px;font-weight:700;padding-bottom:5px;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative}.mec-month-divider span:before{border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-30px;left:50%;width:60px}.widget .mec-month-divider span{font-size:13px}.mec-event-list-standard .mec-events-pagination{margin-top:60px;border-top:4px solid #ebebeb;min-height:80px;padding-top:20px}.mec-event-list-standard .mec-events-pagination .mec-events-pag-previous{float:left;margin-left:0}.mec-event-list-standard .mec-events-pagination .mec-events-pag-next{float:right;margin-right:0}.mec-event-list-standard .mec-event-article{position:relative;display:block;margin-bottom:25px;border:1px solid #e9e9e9;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-list-standard .mec-topsec{display:table;width:100%}.mec-event-list-standard .col-md-3.mec-event-image-wrap{padding-left:0}.mec-event-list-standard .mec-event-content{padding-top:15px;padding-right:30px}.mec-event-list-standard .mec-event-title{font-size:29px;font-weight:700;letter-spacing:-1px;margin:0 0 10px}.mec-event-list-standard .mec-event-title a{color:#292929;transition:color .3s ease}.mec-event-list-standard .mec-col-table-c{display:table-cell;height:100%;vertical-align:middle;float:none!important}.mec-event-list-standard .mec-col-table-c.mec-event-meta-wrap{padding-top:15px}.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{vertical-align:top}.mec-topsec .mec-event-image{line-height:1px}.mec-event-list-standard .mec-event-meta-wrap{border-left:1px solid #eee}.mec-event-list-standard .mec-time-details{text-transform:uppercase;font-size:11px;font-weight:300;padding-top:0;text-align:left;padding-left:30px}.mec-event-list-standard .mec-event-meta .mec-event-address{font-style:normal;letter-spacing:0;font-size:13px;color:#8a8a8a}.mec-event-list-standard .mec-event-meta span.mec-event-d,.mec-event-list-standard .mec-event-meta span.mec-event-m{font-size:17px;font-weight:700;padding-right:6px;color:#444;text-transform:uppercase}.mec-event-list-standard .mec-date-details,.mec-event-list-standard .mec-time-details,.mec-event-list-standard .mec-venue-details{position:relative;padding-left:28px;margin-bottom:10px}.mec-event-list-standard .mec-date-details:before,.mec-event-list-standard .mec-time-details:before,.mec-event-list-standard .mec-venue-details:before{content:"\f041";font-family:fontawesome;position:absolute;left:6px;font-size:15px}.mec-event-list-standard .mec-date-details:before{content:"\f073"}.mec-event-list-standard .mec-time-details:before{content:"\f017"}.mec-event-list-minimal .mec-event-title a{color:#292929;transition:color .3s ease}.mec-event-meta-wrap .mec-price-details{margin-bottom:10px}.mec-price-details i{margin-right:5px;vertical-align:text-top}.mec-event-meta-wrap .mec-event-meta .mec-price-details i:before{font-size:15px}@media only screen and (max-width:960px){.mec-event-list-standard .mec-topsec{display:block}.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:block;width:40%}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{display:block;min-height:230px}.mec-event-list-standard .mec-event-meta-wrap{display:block;border-left:none;border-top:1px solid #eee;width:100%;float:none;padding-top:20px}}@media only screen and (min-width:480px) and (max-width:960px){.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:table-cell}}@media only screen and (max-width:479px){.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap img{float:none;width:100%;padding:0}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{padding:10px 10px 10px 30px}}.mec-wrap .mec-events-cal-links{margin-bottom:0}.mec-single-event #mec-wrap{padding:0;margin-top:35px}.mec-wrap .mec-single-title{margin-top:0;margin-bottom:30px;font-weight:700;font-size:33px}.mec-single-event .mec-event-content{padding:40px 0 30px;margin-bottom:10px}.mec-single-event .mec-events-meta-group-booking,.mec-single-event .mec-frontbox{margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-wrap #main-content{overflow:hidden;padding-top:35px}.mec-single-event .mec-map-get-direction-address-cnt{position:relative}.mec-single-event .mec-map-get-direction-address-cnt input.mec-map-get-direction-address{width:100%;height:46px;padding:13px 10px;margin-bottom:0;background:#fcfcfc;border:1px solid #e0e0e0;border-radius:0;box-shadow:inset 0 2px 5px rgba(0,0,0,.081)}.mec-single-event .mec-map-get-direction-address-cnt input.mec-map-get-direction-address:focus{color:#444;background:#fff;border-color:#b0b0b0;box-shadow:0 0 3px rgba(0,0,0,.2)}.mec-single-event .mec-map-get-direction-btn-cnt input{width:100%}.mec-single-event .mec-map-get-direction-reset{position:absolute;z-index:2;top:5px;right:10px;font-size:11px;cursor:pointer}.mec-events-meta-group-tags{margin-top:20px}.mec-events-meta-group-tags a{display:inline-block;color:#444;font-size:11px;text-transform:uppercase;letter-spacing:1.5px;font-weight:500;padding:3px 7px;border:1px solid #ddd;border-radius:2px;background:#fff;margin:1px 3px}.mec-events-meta-group-tags a:hover{text-decoration:underline;background:#f9f9f9}.mec-local-time-details li{list-style:none}.mec-single-event:not(.mec-single-modern) .mec-local-time-details{background:#f7f7f7;padding:12px 14px 8px;margin-bottom:12px;vertical-align:baseline;position:relative;border:none}.mec-single-event:not(.mec-single-modern) .mec-local-time-details ul{margin:0;padding-left:35px}.mec-single-event:not(.mec-single-modern) .mec-local-time-details h3{border:none;padding-left:15px}.mec-single-event:not(.mec-single-modern) .mec-local-time-details h3:before{display:none}.mec-single-event.mec-single-modern i.mec-sl-speedometer{display:none}.mec-single-event .mec-events-meta-group-booking{padding-bottom:30px}.mec-single-event .mec-events-meta-group-booking ul{list-style:none;margin-left:0;padding-left:0}.mec-single-event .mec-events-meta-group-booking ul li{padding:0;list-style:none;margin-top:40px}.mec-single-event .mec-events-meta-group-booking h4{margin-bottom:20px;font-size:23px;font-weight:700}.mec-single-event .mec-events-meta-group-booking li h4{font-size:19px}.mec-single-event .mec-events-meta-group-booking button,.mec-single-event .mec-events-meta-group-booking input{border-radius:0;margin-bottom:6px}.mec-single-event .mec-events-meta-group-booking button{min-width:170px;margin-top:5px}.mec-single-event .mec-events-meta-group-booking button{margin-left:15px}.mec-single-event .mec-book-form-coupon button{margin-left:0}.mec-single-event .mec-book-form-gateway-checkout button{margin-left:0}.mec-single-event .mec-book-first,.mec-single-event .mec-event-tickets-list{padding-left:15px;padding-right:15px}.mec-single-event label.mec-fill-attendees{margin-left:15px!important}.mec-single-event .mec-events-meta-group-booking .mec-event-ticket-available{display:block;margin-bottom:20px;margin-top:-17px;font-size:11px;color:#8a8a8a}.mec-single-event .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.mec-single-event .mec-events-meta-group-booking form{margin:0}.mec-single-event .mec-events-meta-group-booking h5 span,.mec-single-event .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;display:block;clear:none;padding:5px 1em 3px 0}.mec-single-event .mec-events-meta-group-booking h5 span{display:inline-block}.mec-single-event .mec-events-meta-group-booking h5 span.mec-ticket-variation-name{padding-right:5px;text-transform:capitalize}.mec-single-event .mec-events-meta-group-booking input::-webkit-input-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input:-moz-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:330px;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both}.wbmec-mandatory{padding-left:5px;font-size:14px}.mec-single-event .mec-events-meta-group-booking .mec-red-notification input,.mec-single-event .mec-events-meta-group-booking .mec-red-notification select,.mec-single-event .mec-events-meta-group-booking .mec-red-notification textarea{border:1px solid #ff3c3c}.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=checkbox],.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=radio]{outline:1px solid #ff3c3c}@media only screen and (max-width:479px){.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{width:100%}}.mec-single-event .mec-events-meta-group-booking input[type=email]:focus,.mec-single-event .mec-events-meta-group-booking input[type=number]:focus,.mec-single-event .mec-events-meta-group-booking input[type=password]:focus,.mec-single-event .mec-events-meta-group-booking input[type=tel]:focus,.mec-single-event .mec-events-meta-group-booking input[type=text]:.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking select:focus,.mec-single-event .mec-events-meta-group-booking textarea:focus,focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-single-event .mec-events-meta-group-booking input[type=checkbox],.mec-single-event .mec-events-meta-group-booking input[type=radio]{margin-right:6px;margin-top:5px;min-height:20px;clear:none;margin:0 0 0 2px}.lity-container .mec-events-meta-group-booking input[type=radio]:before,.mec-single-event .mec-events-meta-group-booking input[type=radio]:before{content:"";display:inline-block;background:#fff;border-radius:18px;width:18px;height:18px;margin:-1px 0 0 -3px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32)}.lity-container .mec-events-meta-group-booking input[type=radio]:checked:before,.mec-single-event .mec-events-meta-group-booking input[type=radio]:checked:before{border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff}.lity-container .mec-events-meta-group-booking input[type=radio],.mec-single-event .mec-events-meta-group-booking input[type=radio]{min-height:0;margin:0;margin-right:6px}.mec-single-event .mec-events-meta-group-booking input[type=checkbox]{float:left}.lity-container .mec-events-meta-group-booking .mec_book_first_for_all,.mec-single-event .mec-events-meta-group-booking .mec_book_first_for_all{display:none}.mec-events-meta-group-booking ul.mec-book-price-details{list-style:none;border:1px solid #eee;padding:0;overflow:hidden}.mec-events-meta-group-booking ul.mec-book-price-details li{font-size:15px;color:#a9a9a9;list-style:none;padding:13px 18px;margin:0;float:left;border-right:1px solid #eee}.mec-events-meta-group-booking ul.mec-book-price-details li:last-child{border-right:none}.mec-events-meta-group-booking ul.mec-book-price-details li span.mec-book-price-detail-amount{font-weight:700;font-size:21px;color:#222}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label{height:14px;width:14px;background-color:transparent;border:1px solid #d4d4d4;position:relative;display:inline-block;-moz-transition:border-color ease .2s;-o-transition:border-color ease .2s;-webkit-transition:border-color ease .2s;transition:border-color ease .2s;cursor:pointer;box-shadow:0 2px 16px -2px rgba(0,0,0,.2);vertical-align:middle;margin-right:3px;margin-top:-2px}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label{border-color:#008aff;box-shadow:0 2px 14px -3px #008aff}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:after,.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:before,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:after,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:before{position:absolute;height:0;width:1px;background-color:#008aff;display:inline-block;-moz-transform-origin:left top;-ms-transform-origin:left top;-o-transform-origin:left top;-webkit-transform-origin:left top;transform-origin:left top;content:'';-webkit-transition:opacity ease .5;-moz-transition:opacity ease .5;transition:opacity ease .5}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:before,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:before{top:8px;left:7px;box-shadow:0 0 0 2px #fff;-moz-transform:rotate(-145deg);-ms-transform:rotate(-145deg);-o-transform:rotate(-145deg);-webkit-transform:rotate(-145deg);transform:rotate(-145deg)}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::before,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::before{height:12px;-moz-animation:dothatopcheck .16s ease 0s forwards;-o-animation:dothatopcheck .16s ease 0s forwards;-webkit-animation:dothatopcheck .16s ease 0s forwards;animation:dothatopcheck .16s ease 0s forwards}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:after,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:after{top:6px;left:3px;-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::after,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::after{-moz-animation:dothabottomcheck 80ms ease 0s forwards;-o-animation:dothabottomcheck 80ms ease 0s forwards;-webkit-animation:dothabottomcheck 80ms ease 0s forwards;animation:dothabottomcheck 80ms ease 0s forwards;height:4px}.mec-single-event .mec-events-meta-group-booking button[type=submit]:after,.mec-single-event a.button:after{display:none;font-family:simple-line-icons;content:"\e098";margin-left:4px;-webkit-animation:rotating 1.2s linear infinite;-moz-animation:rotating 1.2s linear infinite;-ms-animation:rotating 1.2s linear infinite;-o-animation:rotating 1.2s linear infinite;animation:rotating 1.2s linear infinite}.mec-single-event .mec-events-meta-group-booking button[type=submit].loading:after,.mec-single-event a.button.loading:after{display:inline-block}.mec-single-event .mec-event-export-module{display:block}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul{display:table;width:100%}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li{display:table-cell}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li:last-child{text-align:right}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a:hover{color:#fff}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul{padding-left:0;margin:15px 5px}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting{padding-left:0;margin:0}.mec-ticket-price{margin-left:10px;font-size:13px;font-weight:300}.mec-book-reg-field-checkbox label,.mec-book-reg-field-radio label{line-height:1.36}.mec-book-reg-field-checkbox input[type=checkbox],.mec-book-reg-field-radio input[type=radio]{float:left;margin-right:5px!important}.mec-ticket-available-spots .mec-event-ticket-description,.mec-ticket-available-spots .mec-event-ticket-price{font-size:11px}.mec-book-ticket-container .mec-reg-mandatory:nth-child(2) label:after,.mec-book-ticket-container .mec-reg-mandatory:nth-child(3) label:after,.mec-book-ticket-container .wbmec-mandatory{content:"";color:red;width:50px;height:50px;font-size:14px;padding-left:5px}@media only screen and (max-width:767px){.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li{width:100%;min-height:40px;margin-bottom:15px;text-align:center;float:none;display:block}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a{width:100%;padding-left:0;padding-right:0;text-align:center;display:block;font-size:12px}}.mec-single-event .mec-events-meta-group{margin-bottom:0}@media only screen and (max-width:767px){.mec-single-event .mec-events-meta-group-booking{margin-bottom:30px}}.mec-single-event .mec-event-meta dt,.mec-single-event .mec-event-meta h3{text-transform:uppercase;font-size:16px;font-weight:700;padding-bottom:5px;display:inline;color:#000;padding-left:10px}.mec-single-event .mec-event-meta h6{text-transform:uppercase;font-size:13px;padding-bottom:5px;display:inline;color:#222;padding-left:0}.mec-single-event .mec-event-meta .mec-events-event-categories a,.mec-single-event .mec-event-meta dd{font-size:14px;color:#8d8d8d}.mec-single-event .mec-event-meta .mec-location dd.author{color:#3c3b3b}.mec-single-event .mec-event-meta dd{margin:0;padding-left:35px}.mec-single-event .mec-event-meta dd.mec-events-event-categories{min-height:35px;line-height:35px}@media only screen and (max-width:480px){.single-mec-events .lity-container{width:100%}.single-mec-events .lity-content .mec-events-meta-group-booking{padding:20px;width:85%;margin:0 auto}}.mec-single-event .mec-event-meta dd.mec-events-event-categories:first-of-type{padding-top:5px}.mec-single-event .mec-event-meta dd.mec-events-event-categories:last-of-type{border-bottom:0}.mec-single-event .mec-event-meta dd a{color:#8d8d8d;transition:all .2s ease}.mec-single-event .mec-event-meta dd a i:before{font-size:16px!important}.mec-single-event .mec-event-meta dd a i{margin-right:8px}.mec-single-event .mec-event-meta dl{margin-bottom:0}.mec-single-event .mec-event-meta .mec-events-event-cost{font-size:18px}.mec-single-event .mec-event-meta .mec-events-address{color:#a9a9a9;margin-bottom:3px}.mec-single-event .mec-event-meta .mec-events-meta-group-venue .author{margin-bottom:0;color:#8d8d8d;font-size:13px}.mec-single-event .mec-events-event-image{margin-bottom:0}.mec-single-event h2.mec-single-event-title{margin-bottom:30px;font-weight:700;font-size:33px}.mec-single-event .mec-booking-button{border-bottom:none;letter-spacing:.5px;line-height:48px;height:76px;transition:all .5s ease;color:#fff;padding:16px;display:block;text-align:center;font-size:16px}.mec-single-event .mec-booking-button:hover{background-color:#101010!important}.mec-single-event .mec-event-tags a{display:inline-block;color:#444;font-size:11px;text-transform:uppercase;letter-spacing:1.5px;font-weight:500;padding:3px 7px;border:1px solid #ddd;border-radius:2px;background:#fff;margin:1px 3px}.mec-single-event .mec-event-tags:before{font-size:24px;color:#303030;margin-right:5px;content:"\f02c";font-family:fontawesome}.mec-single-event .mec-event-tags{padding-top:13px}.mec-single-event .mec-event-sharing{margin:30px 0 10px}.mec-region.mec-events-abbr,.mec-single-event .mec-street-address{font-style:normal;font-size:13px}.mec-events-meta-group.mec-events-meta-group-venue:before,.mec-single-event-date:before,.mec-single-event-time:before{color:#40d9f1}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-event-social h3{text-transform:uppercase;font-size:15px;font-weight:700;padding-bottom:5px;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative}.mec-single-event .mec-social-single:before{padding:13px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:39px}.mec-single-event .mec-event-social .event-sharing{margin-top:30px}.mec-single-event .mec-event-social ul{list-style:none;margin-left:0}.mec-single-event .mec-event-social li.mec-event-social-icon{display:inline-block}.mec-single-event .mec-event-social li.mec-event-social-icon a{display:inline-block;color:#fff;width:40px;height:40px;padding:9px;font-size:16px;margin-right:5px}.mec-single-event .mec-event-social a.facebook{background:#3b5996}.mec-single-event .mec-event-social a.facebook:hover{background:#28385c}.mec-single-event .mec-event-social a.twitter{background:#00acee}.mec-single-event .mec-event-social a.twitter:hover{background:#0087bd}.mec-single-event .mec-event-social a.vimeo{background:#0dadd6}.mec-single-event .mec-event-social a.vimeo:hover{background:#0a85a3}.mec-single-event .mec-event-social a.dribble{background:#d53e68}.mec-single-event .mec-event-social a.dribble:hover{background:#bf4c78}.mec-single-event .mec-event-social a.youtube{background:#cb322c}.mec-single-event .mec-event-social a.youtube:hover{background:#992622}.mec-single-event .mec-event-social a.pinterest{background:#cb2027}.mec-single-event .mec-event-social a.pinterest:hover{background:#99181d}.mec-single-event .mec-event-social a.google{background:#c3391c}.mec-single-event .mec-event-social a.google:hover{background:#99181f}.mec-single-event .mec-event-social a.linkedin{background:#0073b2}.mec-single-event .mec-event-social a.linkedin:hover{background:#005380}.mec-single-event .mec-event-social a.email{background:#ff5d5e}.mec-single-event .mec-event-social a.email:hover{background:#cc4949}.mec-single-event .mec-event-social a.vk{background:#5b88bd}.mec-single-event .mec-event-social a.vk:hover{background:#3d608a}.mec-single-event .mec-event-social a.rss{background:#f29a1d}.mec-single-event .mec-event-social a.rss:hover{background:#cc7400}.mec-single-event .mec-event-social a.instagram{background:#457399}.mec-single-event .mec-event-social a.instagram:hover{background:#2e4d66}.mec-single-event .mec-event-social a.other-social{background:#ff5d5e}.mec-single-event .mec-event-social a.other-social:hover{background:#cc4949}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4,.mec-single-event .mec-frontbox-title{text-transform:uppercase;font-size:15px;font-weight:700;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative;text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4:before,.mec-single-event .mec-frontbox-title:before{padding:1px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-35px;left:50%}.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-month],.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-year]{width:47%!important;margin-right:12px;margin-top:5px;display:inline-block!important}@media(max-width:768px){.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-month],.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-year]{width:100%!important;margin-right:0;display:block!important}}.mec-event-meta i:before{font-size:20px;vertical-align:middle}.mec-event-meta .mec-single-event-additional-organizers i:before,.mec-event-meta .mec-single-event-organizer i:before{font-size:14px;vertical-align:baseline}#mec-wrap .mec-events-day-time-slot .mec-events-content{float:left;width:33%;padding:0 15px}#mec-wrap .mec-events-day-time-slot .mec-events-event-image{padding-left:0}#mec-events-content .mec-events-abbr{color:#8d8d8d;font-size:14px}.mec-single-event .mec-events-content{margin-bottom:30px}.mec-single-event .mec-organizer-url a{word-wrap:break-word}.mec-single-event #headline{margin:0 0 10px}.mec-single-event #headline h2{padding:0}.mec-single-event .mec-events-meta-group.mec-events-meta-group-gmap .mec-events-venue-map{margin-top:0;padding:8px;border:1px solid #e5e5e5;border-radius:7px}#mec-events-gmap-0{height:325px!important}.mec-events-list .mec-events-day-time-slot .mec-events-event-meta{width:33%;float:left;padding:40px;height:auto;margin:0}.mec-events-day-time-slot .mec-events-content.description.entry-summary{font-size:15px;font-weight:300;color:#8d8d8d}.mec-events-day-time-slot .type-mec_events h2{font-size:28px;padding-bottom:20px}.mec-events-day .mec-events-day-time-slot .type-mec_events{margin:0}.mec-events-day .mec-events-day-time-slot h5{background-color:#8d8d8d}.mec-single-event .mec-event-meta .mec-single-event-additional-organizers .mec-events-single-section-title,.mec-single-event .mec-event-meta .mec-single-event-organizer .mec-events-single-section-title,.mec-single-event .mec-events-meta-date h3{padding-left:0;margin:10px;display:inline-block}.mec-single-event .mec-events-meta-date h3{width:100%}.mec-single-event .mec-events-event-image{border:0}.mec-single-event .mec-events-venue-map{padding:0}.mec-event-cost,.mec-event-more-info,.mec-event-website,.mec-events-meta-date,.mec-single-event-additional-organizers,.mec-single-event-category,.mec-single-event-date,.mec-single-event-label,.mec-single-event-location,.mec-single-event-organizer,.mec-single-event-time{background:#f7f7f7;padding:12px 14px 8px;margin-bottom:12px;vertical-align:baseline;position:relative}.mec-single-event .mec-events-meta-date dd,.mec-single-event .mec-single-event-additional-organizers dd,.mec-single-event .mec-single-event-organizer dd{padding-left:0;margin-bottom:10px}.mec-single-event .mec-events-meta-date dd span,.mec-single-event .mec-single-event-additional-organizers dd span,.mec-single-event .mec-single-event-organizer dd span{display:block;padding-left:12px;color:#8d8d8d}.mec-single-event .mec-events-meta-date i,.mec-single-event .mec-single-event-additional-organizers i,.mec-single-event .mec-single-event-organizer i{margin-right:10px;margin-left:12px}.mec-events-meta-group.mec-events-meta-group-venue dl{margin-bottom:0}address.mec-events-address{line-height:19px;font-style:normal;font-size:12px}.mec-single-event .mec-event-content dt{margin-top:5px}.mec-single-event .mec-single-event-additional-organizers .mec-single-event-additional-organizer{margin-bottom:15px;padding-bottom:5px;border-bottom:1px solid #e4e4e4}.mec-single-event .mec-single-event-additional-organizers .mec-single-event-additional-organizer:last-child{margin-bottom:0;padding-bottom:0;border:none}.mec-event-schedule-content{border-left:4px solid #f0f0f0;padding-top:10px;margin-top:30px;margin-left:25px;margin-bottom:20px;color:#8a8a8a}.mec-event-schedule-content dl{padding-left:24px;font-size:12px;position:relative;margin-bottom:35px}.mec-event-schedule-content dl:before{content:'';display:block;position:absolute;left:0;top:4px;width:20px;height:0;border-top:4px solid #f0f0f0}.mec-event-schedule-content dl dt{margin:0 0 10px;line-height:1.16}.mec-event-schedule-content dl dt.mec-schedule-title{font-size:13px;color:#5a5a5a;font-weight:700}.mec-event-schedule-content dl dt.mec-schedule-description{font-weight:300}.mec-event-schedule-content .mec-schedule-speakers{background:#f7f7f7;padding:10px}.mec-wrap .mec-event-schedule-content h6{font-size:13px;color:#5a5a5a;font-weight:700;display:inline-block}.mec-wrap .mec-event-schedule-content a{font-weight:400;color:#5a5a5a;transition:all .1s ease}.single-mec-events .mec-speakers-details ul{padding:0}.mec-single-event .mec-speakers-details ul li{list-style:none;background:#f7f7f7;padding:5px 5px 18px 5px;margin-top:14px}.mec-single-event .mec-speakers-details ul li a{-webkit-transition:.2s all ease;transition:.2s all ease}.mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a img{float:left;border-radius:50%;transition:.2s all ease;border:2px solid transparent;width:68px;height:68px}.mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a:hover img{border-color:#40d9f1}.mec-single-event .mec-speakers-details ul li .mec-speaker-name{display:inline-block;margin-top:6px;font-size:14px;text-transform:capitalize;font-weight:700;padding-left:8px}.mec-single-event .mec-speakers-details ul li .mec-speaker-job-title{display:block;font-size:12px;margin-top:-1px;padding-left:75px}.mec-single-event-location img,.mec-single-event-organizer img{margin-bottom:10px;width:100%}.mec-qrcode-details{text-align:center}.mec-time-comment{font-size:11px}.mec-wrap .mec-attendees-list-details p{font-weight:300;margin:20px 0 0 0;color:#8d8d8d}.mec-wrap .mec-attendees-list-details li{list-style:none;display:block;margin-top:15px}.mec-wrap .mec-attendees-list-details li .mec-attendee-avatar{display:inline-block}.mec-wrap .mec-attendees-list-details li .mec-attendee-profile-link{display:inline-block;vertical-align:top;margin-left:10px}.mec-attendees-list-details ul{margin-bottom:0}.mec-attendees-list-details .mec-attendee-profile-link a{color:#8d8d8d}.mec-attendees-list-details .mec-attendee-profile-link span{display:block;color:#000}.mec-calendar{margin-bottom:20px;border:1px solid #e8e8e8;width:100%;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-calendar .mec-calendar-topsec{display:table;background:#fff}.mec-calendar .mec-calendar-topsec .mec-calendar-events-sec{display:none}.mec-calendar .mec-calendar-side{width:590px;display:table-cell;padding:40px;position:relative;text-align:center;box-shadow:0 1px 5px 6px rgba(0,0,0,.005) inset}.mec-calendar .mec-calendar-events-side{display:table-cell;height:100%;border-left:1px solid #efefef;padding:40px;width:100%}.mec-calendar .mec-calendar-events-side .mec-table-side-day{width:46px;height:46px;margin:0 auto 20px;position:relative;text-align:center;line-height:46px;border:1px solid #40d9f1;border-radius:50%;font-size:12px;font-weight:600;padding:0}.mec-calendar .mec-calendar-events-side .mec-table-side-title{text-align:center;font-size:11px;text-transform:uppercase;letter-spacing:3px;margin-bottom:14px}.mec-calendar .mec-calendar-header{position:relative;width:560px;margin-top:8px;margin-bottom:16px}.mec-calendar .mec-calendar-header h2{text-transform:uppercase;font-size:22px;font-weight:700;color:#333}.mec-calendar .mec-event-footer{width:auto;min-height:60px}.mec-calendar dl{display:table;margin:0;border:none;padding:0;table-layout:fixed}.mec-calendar dt{display:table-cell;transition:all .66s ease;color:#4d4d4d;background:#fff;border-radius:44px;font-size:14px;width:80px;height:80px;line-height:80px;text-align:center}.mec-calendar .mec-calendar-table .mec-no-event{display:none}.mec-calendar .mec-calendar-table-head dt{font-weight:700;text-transform:uppercase;font-size:15px}.mec-calendar .mec-calendar-row dt:hover{background:#f4f4f4}.mec-calendar .mec-table-nullday{color:#cacaca}.mec-calendar.mec-box-calendar .mec-table-nullday:last-child{border-right:1px solid #eaeaea}.mec-calendar .mec-next-month:hover,.mec-calendar .mec-prev-month:hover{background:#f4f4f4}.mec-calendar .mec-selected-day,.mec-calendar .mec-selected-day:hover{background:#40d9f1;color:#fff}.mec-calendar .mec-selected-day a{color:#fff}.mec-calendar .mec-has-event{position:relative}.mec-calendar .mec-calendar-row dt.mec-has-event:hover{background:#40d9f1}.mec-calendar .mec-has-event a{cursor:pointer;display:block;width:100%;height:100%;border-radius:50%;color:#4d4d4d;transition:all .25s ease;text-decoration:none;box-shadow:none}.mec-calendar .mec-calendar-row dt.mec-has-event.mec-selected-day a,.mec-calendar .mec-calendar-row dt.mec-has-event:hover a{color:#fff}.mec-calendar .mec-has-event:after{background-color:#40d9f1;border-radius:50%;display:block;content:'';width:8px;height:8px;bottom:14px;left:50%;margin:-4px 0 0 -4px;position:absolute;transition:all .25s ease}.mec-calendar .mec-calendar-row dt.mec-has-event:hover:after{background-color:#fff}.mec-calendar .mec-has-event.mec-selected-day:after{display:none}.mec-calendar .mec-event-article{text-align:left;margin-bottom:0;padding-bottom:25px;padding-top:26px;border-top:1px solid #efefef;transition:all .33s ease}.mec-calendar .mec-event-article:hover{background-color:#fafafa}.mec-calendar .mec-event-article .mec-event-time{font-size:11px;line-height:1.1;margin:0}.mec-calendar .mec-event-article .mec-event-title{font-size:13px;padding:0;margin:10px 0 8px;font-weight:700;text-transform:uppercase}.mec-calendar .mec-event-article .mec-event-title a{text-decoration:none;color:#494949;transition:color .3s ease}.mec-calendar .mec-event-article .mec-event-title a:hover{color:#40d9f1}.mec-calendar .mec-event-article .mec-event-image,.mec-calendar .mec-event-list-classic .mec-event-image img{width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-image{float:left;margin-right:20px;width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-detail{font-size:13px;line-height:1.3;font-family:Roboto,sans-serif;color:#9a9a9a;margin-bottom:0}.mec-calendar .mec-calendar-side .mec-next-month,.mec-calendar .mec-calendar-side .mec-previous-month{cursor:pointer;position:absolute;top:0;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;color:#a9a9a9;font-size:12px;letter-spacing:1px;text-transform:uppercase;padding-left:10px;padding-right:10px;border:1px solid #efefef;border-top:none;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease}.mec-calendar .mec-calendar-side .mec-next-month i,.mec-calendar .mec-calendar-side .mec-previous-month i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-calendar .mec-calendar-side .mec-next-month:hover,.mec-calendar .mec-calendar-side .mec-previous-month:hover{background-color:#f9f9f9;color:#40d9f1}.mec-calendar .mec-calendar-side .mec-previous-month{left:0;border-bottom-right-radius:6px;border-left:none}.mec-calendar .mec-calendar-side .mec-next-month{right:0;border-bottom-left-radius:6px;border-right:none}@media only screen and (min-width:961px){.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-side{width:370px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-header{position:relative;width:350px;margin-top:30px;margin-bottom:20px;padding-top:20px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) dt{width:50px;height:50px;line-height:50px}.mec-wrap.mec-sm959 .mec-calendar.mec-event-calendar-classic dl dt{height:110px}}@media only screen and (max-width:1200px){.mec-calendar .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-calendar .mec-calendar-side{width:370px}.mec-calendar .mec-calendar-header{position:relative;width:350px;margin-top:30px}.mec-calendar dt{width:50px;height:50px;line-height:50px}}@media only screen and (max-width:767px){.mec-calendar .mec-calendar-header h2{font-size:18px}.mec-calendar .mec-calendar-topsec{width:100%}.mec-calendar .mec-calendar-side{width:100%;display:block;padding:30px}.mec-calendar .mec-calendar-header{width:auto}.mec-calendar .mec-calendar-events-side{width:100%;display:block;height:100%;border-left:none;border-top:1px solid #efefef;padding:20px}.mec-calendar dl{width:100%}.mec-calendar dt{width:14%;height:60px;line-height:60px;border-radius:50px}}@media only screen and (max-width:479px){.mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-calendar .mec-calendar-header h2{font-size:16px;margin-top:33px}.mec-calendar dt{height:38px;line-height:38px}.mec-calendar .mec-event-list-classic .mec-event-detail,.mec-calendar .mec-event-list-classic .mec-event-title{font-size:12px}.mec-calendar .mec-event-list-classic .mec-event-time{font-size:10px}}.mec-box-calendar.mec-calendar .mec-has-event a,.mec-box-calendar.mec-calendar dt{border-radius:0}.mec-box-calendar.mec-calendar .mec-calendar-header{margin-top:2px;margin-bottom:30px}.mec-box-calendar.mec-calendar dt{border-bottom:1px solid #eaeaea;border-left:1px solid #eaeaea}.mec-box-calendar.mec-calendar dl dt:last-child{border-right:1px solid #eaeaea}.mec-box-calendar.mec-calendar .mec-calendar-table-head dt{border-top:1px solid #eaeaea;background-color:#f8f8f8}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{background-color:#f4f4f4}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{border-radius:2px;top:40px;border:1px solid #eee;height:30px;line-height:30px;z-index:1}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:60px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:60px}.mec-box-calendar.mec-calendar .mec-calendar-side{box-shadow:none}.mec-box-calendar.mec-calendar .mec-calendar-events-side{border:none}.mec-box-calendar.mec-calendar .mec-calendar-events-side .mec-table-side-day{border-radius:2px}.mec-box-calendar.mec-calendar h4.mec-month-label{position:relative;width:560px;margin-top:2px;margin-bottom:30px;text-transform:uppercase;font-size:22px;font-weight:700;color:#333}.mec-widget .mec-box-calendar.mec-calendar h4.mec-month-label{width:100%;margin-top:8px;font-size:13px}@media only screen and (max-width:1200px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:42px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:42px}.mec-calendar .mec-calendar-header h2{font-size:17px;margin-top:7px}}@media only screen and (max-width:767px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{top:28px;font-size:10px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:30px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:30px}.mec-calendar .mec-calendar-header h2{font-size:15px}}@media only screen and (max-width:479px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{top:16px;font-size:0;padding:4px 0;text-align:center;min-width:33px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:10px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:10px}.mec-box-calendar.mec-calendar .mec-calendar-header h2{font-size:12px;margin-top:15px}.mec-box-calendar.mec-calendar .mec-event-image{margin-right:12px}}.mec-calendar.mec-event-calendar-classic,.mec-calendar.mec-event-calendar-classic .mec-calendar-side{border:none;padding:0;width:100%;height:100%;box-shadow:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-side{display:block}.mec-calendar.mec-event-calendar-classic .mec-calendar-header,.mec-calendar.mec-event-calendar-classic dl{width:100%}.mec-calendar.mec-event-calendar-classic dl dt{width:15%;height:136px;line-height:1.2;text-align:left;padding:5px 7px;position:relative}.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{height:30px!important}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{top:0}.mec-calendar.mec-event-calendar-classic .mec-has-event:after{bottom:auto;top:24px;left:7px;margin:0}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{left:0}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month{right:0}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{text-align:left;background:#fafafa;border:1px solid #eaeaea;border-top:none;padding:10px 20px}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{display:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-event-article:hover{background-color:#fcfcfc}.mec-calendar.mec-event-calendar-classic .mec-selected-day,.mec-calendar.mec-event-calendar-classic dt.mec-selected-day:hover{color:#40d9f1;font-weight:700;background:#fafafa;border-bottom:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-day,.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{display:inline-block;margin:0;margin-bottom:15px;font-weight:700}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-day{margin-left:4px}.mec-calendar.mec-event-calendar-classic .mec-calendar-row dt.mec-has-event a{color:#4d4d4d}.mec-calendar.mec-event-calendar-classic .mec-calendar-row dt.mec-has-event:not(.mec-selected-day):hover a{color:#fff}@media only screen and (max-width:1200px){.mec-calendar.mec-event-calendar-classic dl dt{height:100px}}@media only screen and (max-width:767px){.mec-calendar.mec-event-calendar-classic dl dt{height:40px}}@media only screen and (max-width:479px){.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{padding:10px}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-header h2{font-size:13px;margin-top:8px}}.mec-calendar .mec-event-article.mec-single-event-novel{padding:4px 8px;min-height:25px;margin:0 -4px;border-radius:0}.mec-calendar .mec-event-article.mec-single-event-novel h4{margin:0;font-size:10px;line-height:18px}.mec-calendar.mec-event-container-novel dl dt{padding:3px}.mec-calendar.mec-event-calendar-classic .mec-calendar-novel-selected-day{display:inline-block;padding:4px;margin-left:1px}.mec-calendar.mec-event-calendar-classic .mec-selected-day .mec-calendar-novel-selected-day{color:#fff}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-selected-day,.mec-calendar.mec-event-calendar-classic.mec-event-container-novel dt.mec-selected-day:hover{border-bottom:1px solid #eaeaea}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-calendar-side .mec-calendar-table{min-height:auto}.mec-single-event-novel.light h4{color:#000!important}.mec-single-event-novel.dark h4{color:#fff!important}@media only screen and (max-width:768px){.mec-calendar .mec-event-article.mec-single-event-novel{padding:0;min-height:5px}.mec-calendar .mec-event-article.mec-single-event-novel h4{display:block;font-size:9px}}.mec-event-container-simple .event-single-content-simple{display:none}.mec-event-calendar-classic.mec-event-container-simple .mec-calendar-side .mec-calendar-table{min-height:unset}.mec-event-container-simple .mec-monthly-tooltip h4{font-size:13px;font-weight:500;margin:0;color:#444}.mec-event-container-simple .mec-monthly-tooltip h4:hover{text-decoration:underline;color:#111}.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple{border-bottom:1px dashed #e3e3e3;padding:10px 2px;display:block}.mec-calendar.mec-event-container-simple dl dt.mec-calendar-day{font-size:30px;color:#000}.mec-calendar.mec-event-container-simple .mec-calendar-row dt:hover{background:unset}.mec-calendar.mec-event-container-simple .mec-calendar-row dt,.mec-calendar.mec-event-container-simple .mec-calendar-row dt:last-child,.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt,.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt:last-child{border-width:2px}.mec-calendar.mec-event-container-simple dl dt.mec-selected-day,.mec-calendar.mec-event-container-simple dl dt.mec-selected-day:hover{border-bottom:2px solid #40d9f1;background:unset}.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt{line-height:36px}@media (max-width:768px){.mec-calendar.mec-event-container-simple{overflow-x:scroll}.mec-calendar.mec-event-container-simple .mec-calendar-side{min-width:700px}.mec-event-container-simple .mec-monthly-tooltip h4{font-size:12px}}.mec-wrap.colorskin-custom .mec-calendar.mec-event-container-simple .mec-selected-day:hover{background:#f4f4f4}.mec-event-container-simple .mec-calendar-day .mec-monthly-tooltip.event-single-link-simple:last-of-type{border:none}.mec-tooltip-event-title{font-size:16px;font-weight:700;color:#000;margin-bottom:2px}.mec-tooltip-event-time{font-size:12px;color:#888;margin-bottom:8px;margin-top:5px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-content{padding:17px}.mec-tooltip-event-content{clear:both}.mec-tooltip-event-featured{float:left;margin-right:13px;margin-bottom:1px}.mec-tooltip-event-featured img{max-width:120px}.mec-tooltip-event-desc{font-size:14px;color:#444;line-height:18px}.mec-tooltip-event-desc p{font-size:13px;line-height:1.4;margin-bottom:10px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-box{border-radius:3px!important;border:1px solid #e2e3e4!important;background:#fff!important;box-shadow:0 -1px 30px -2px rgba(0,0,0,.15)!important}.tooltipster-sidetip .tooltipster-arrow{overflow:visible!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-border{border-width:12px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-right .tooltipster-arrow-border{border-right-color:#e2e3e4!important}.tooltipster-sidetip .tooltipster-arrow-border{left:-12px!important;z-index:9999999999!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-background{display:block!important}.tooltipster-sidetip .tooltipster-arrow-background{border-width:11px!important;z-index:99999999999!important}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background{left:-9px!important;top:1px!important;border-right-color:#fff!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background{border-top-color:#fff!important;left:0!important;top:-1px!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border{left:-1px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-top .tooltipster-arrow-border{border-top-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{left:-1px!important;top:-11px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{border-bottom-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background{top:-9px!important;border-bottom-color:#fff!important}.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background{border-left-color:#fff!important;left:-2px!important;top:0!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-left .tooltipster-arrow-border{border-left-color:#e2e3e4!important;left:-1px!important;top:-1px!important}@media (max-width:780px){.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4{word-break:break-all;font-size:13px}}@media (max-width:320px){.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4{font-size:10px}}.mec-calendar.mec-calendar-daily .mec-calendar-day-events .mec-event-article{padding-left:15px;padding-right:15px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month{text-align:center;background-color:#fff;border-bottom:2px solid #f4f4f4;position:relative}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{color:#444;font-size:18px;line-height:1.2;padding:15px 0 11px;margin:0;font-weight:700;letter-spacing:1px;text-transform:uppercase;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-top{text-align:center;padding:10px 0;position:relative;background-color:#fafafa}.mec-calendar.mec-calendar-daily .mec-next-month,.mec-calendar.mec-calendar-daily .mec-previous-month{position:absolute;top:50%;left:50%;margin-top:-25px;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;border:1px solid #e2e2e2;border-radius:50px;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month i,.mec-calendar.mec-calendar-daily .mec-previous-month i{font-size:14px;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month:hover,.mec-calendar.mec-calendar-daily .mec-previous-month:hover{border-color:#d0d0d0;color:#444;box-shadow:0 2px 5px 0 rgba(0,0,0,.075)}.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-150px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:100px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month{min-height:28px;height:28px;line-height:28px;width:28px;margin-top:-14px;border-radius:3px}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2,.mec-calendar.mec-calendar-daily .mec-calendar-d-top h3{margin-top:9px;color:#b9b9b9;font-family:Roboto,sans-serif;font-size:30px;font-weight:100;text-transform:uppercase;margin-bottom:12px;line-height:1}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2{font-size:81px;color:#444;margin-bottom:10px;line-height:1.1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table{overflow:hidden;background:#fff;min-height:60px;border-top:1px solid #e6e6e6;border-bottom:2px solid #f3f3f3;padding:0 50px;position:relative}@media only screen and (min-width:479px){.mec-calendar.mec-calendar-daily .mec-calendar-d-table{padding:0 55px}}.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl{width:1310px;display:block}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{display:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl.mec-weekly-view-week-active{display:block}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt{display:block;background:#fff;width:42px;height:60px;line-height:60px;text-align:center;float:left;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6;border-radius:0}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day:hover,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt:hover{background:#fafafa;box-shadow:0 2px 5px 0 rgba(0,0,0,.065) inset;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day{cursor:default;background:#fff;color:#c1c1c1;line-height:59px;text-align:center;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-has-event{cursor:pointer;font-weight:700;color:#4a4a4a}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-daily-view-day-active,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt.mec-table-d-current{font-size:18px;font-weight:700;background:#fafafa;color:#40d9f1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-prev{float:none;font-size:14px;width:55px;position:absolute;top:0;left:0;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next{left:auto;right:0;border-left:1px solid #e6e6e6;border-right:none}.mec-calendar.mec-calendar-daily .mec-today-container .mec-today-count{font-size:12px;color:#888;text-align:center}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}}.widget .mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}.widget .mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.widget .mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-util-hidden{display:none}.mec-daily-view-date-events,.mec-weekly-view-date-events{list-style:none;margin:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table{padding:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{width:calc(100% - 1px)}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt{width:14.286%;height:70px;line-height:normal;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:hover{background:#fff;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:last-child{border-right:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:12px;font-weight:700;text-transform:uppercase;display:block;margin:15px 0 6px}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-prev{display:none}ul.mec-weekly-view-dates-events,ul.mec-weekly-view-dates-events li{padding:0;margin:0;line-height:initial}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:64px;height:64px;margin-right:10px;font-size:11px;text-transform:uppercase;float:left;text-align:center;padding-top:2px}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:40px;line-height:30px;font-weight:700;display:block;margin-bottom:6px;letter-spacing:1px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-previous-month{margin-left:0;left:12px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-next-month{margin-left:0;left:auto;right:12px}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}}.widget .mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}.mec-week-events-container .mec-weekly-view-dates-events li.mec-no-event-found{list-style:none!important}li.mec-no-event-found .mec-event-title{text-align:center}.mec-widget .mec-calendar{max-width:100%}.mec-widget .mec-calendar dl dt,.mec-wrap.mec-sm959.mec-widget .mec-calendar.mec-event-calendar-classic dl dt{height:40px}.mec-widget .mec-calendar .mec-calendar-events-sec{padding:10px}.mec-widget .mec-calendar .mec-calendar-header h2{font-size:13px;margin-top:8px}.mec-widget .mec-calendar .mec-event-list-classic .mec-event-image{margin-right:12px}.mec-widget .mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-widget .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{font-size:14px}.mec-widget .mec-calendar .mec-event-article .mec-event-image{margin-right:11px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-header{margin-bottom:20px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{font-size:0;padding:4px 0;text-align:center;min-width:33px}.mec-widget .mec-event-calendar-classic .mec-calendar-side .mec-calendar-table{min-height:200px}.mec-widget .mec-event-list-classic{margin-bottom:8px;padding:8px 0}.mec-widget .mec-event-list-classic .mec-event-article{margin-bottom:0;padding:10px 0;position:relative;min-height:86px;padding-left:80px}.mec-widget .mec-event-list-classic .mec-event-date{font-size:10px;line-height:14px;text-transform:uppercase}.mec-widget .mec-event-list-classic .mec-event-title{font-size:13px}.mec-widget .mec-event-list-classic .mec-event-detail{font-size:11px}.mec-widget .mec-event-list-classic .mec-event-image{width:68px;position:absolute;left:0}.mec-event-list-classic .mec-event-image img{width:100%}.mec-widget .mec-event-list-classic .mec-event-detail{overflow:visible}.event-color{width:14px;display:inline-block;height:14px;margin-left:5px;border-radius:50%}.mec-map-lightbox-wp{width:580px;padding:15px 15px 0;background-color:#fff}.mec-map-view-event-detail.mec-event-detail{width:580px;background-color:#e9e9e9;padding:8px 15px}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-article{padding:0 0 15px;margin:0}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-image{width:70px;margin-right:15px}.mec-marker-infowindow-wp{padding:10px}.mec-marker-infowindow-wp .mec-marker-infowindow-count{width:60px;height:60px;display:block;text-align:center;line-height:60px;border:1px solid #40d9f1;border-radius:50%;font-size:32px;color:#40d9f1;float:left;margin-right:11px}.mec-marker-infowindow-wp .mec-marker-infowindow-content{overflow:hidden;padding-top:6px}.mec-marker-infowindow-wp .mec-marker-infowindow-content span{display:block;color:#222}.mec-marker-infowindow-wp .mec-marker-infowindow-content span:first-child{font-size:15px;font-weight:700}.mec-marker-wrap{display:inline-block;width:35px;height:35px;margin:15px 0 0 4px;border-radius:50% 50% 50% 0;background:#00cae9;animation-name:mec-map-bounce;animation-fill-mode:both;animation-duration:1s;border:3px solid #fff;cursor:pointer}.mec-marker-wrap .mec-marker{margin-top:5px;display:block;-webkit-transform:rotate(45deg);transform:rotate(45deg);text-align:center;color:#fff;font-size:17px}.mec-marker-wrap .mec-marker-pulse-wrap{-webkit-transform:rotate(45deg);transform:rotate(45deg);display:inline-block;margin-left:-11px;margin-top:0}.mec-marker-wrap .mec-marker-pulse{display:inline-block;background:#c5c5c5;border-radius:50%;height:14px;width:14px;-webkit-transform:rotateX(55deg);transform:rotateX(55deg);z-index:-2}.mec-marker-wrap .mec-marker-pulse:after{content:"";border-radius:50%;height:40px;width:40px;position:absolute;margin:-13px 0 0 -13px;animation:pulsate 1s ease-out;animation-iteration-count:infinite;opacity:0;box-shadow:0 0 1px 2px #00cae9;animation-delay:1.1s}@keyframes pulsate{0%{transform:scale(.1,.1);opacity:0}50%{opacity:1}100%{transform:scale(1.2,1.2);opacity:0}}@keyframes mec-map-bounce{0%{opacity:0;transform:translateY(-2000px) rotate(-45deg)}60%{opacity:1;transform:translateY(30px) rotate(-45deg)}80%{transform:translateY(-10px) rotate(-45deg)}100%{transform:translateY(0) rotate(-45deg)}}.mec-skin-grid-container .mec-skin-map-container,.mec-skin-list-container .mec-skin-map-container{margin-bottom:20px}.mec-single-event{margin-top:10px}.mec-single-event .mec-events-meta-group-countdown{color:#c9c9c9;text-align:center;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-events-meta-group-countdown .countdown-w{text-align:center;font-size:36px;margin:0 auto;padding:40px 0 0;position:relative;display:table;table-layout:fixed}.mec-events-meta-group-countdown .countdown-w .icon-w{font-size:24px}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:15px;font-weight:300;letter-spacing:1px;text-transform:uppercase;position:relative}.mec-events-meta-group-countdown .countdown-w .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px;width:190px;font-size:72px;transition:all .3s ease-in-out;line-height:1.2}.mec-events-meta-group-countdown .countdown-w .block-w.done-w{border:0 none}.mec-events-meta-group-countdown .countdown-w span{padding:24px 0 20px}.mec-events-meta-group-countdown .countdown-w .div-d{display:none}.mec-events-meta-group-countdown .countdown-w .countdown-message{display:none}.mec-events-meta-group-countdown .countdown-w .block-w i{display:none}#countdown{list-style:none;margin-bottom:0;margin-top:0;margin-left:0;padding-left:0}.mec-events-meta-group-countdown .mec-end-counts h3{display:inherit;text-align:center;font-size:16px;right:50%}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:23px}@media (min-width:481px) and (max-width:768px){.mec-events-meta-group-countdown .countdown-w{padding:0}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:12px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:34px}}@media (min-width:320px) and (max-width:480px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:10px}.mec-events-meta-group-countdown .countdown-w span{font-size:28px}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:16px}}@media (max-width:320px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:9px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:22px}}.info-msg,.mec-error,.mec-success,.warning-msg{margin:10px 0;padding:10px;border-radius:3px 3px 3px 3px;font-size:13px}.info-msg{color:#059;background-color:#bef}.mec-success{color:#0dbf52;background-color:#cef7ce}.warning-msg{color:#9f6000;background-color:#feefb3}.mec-error{color:#d8000c;background-color:#ffbaba}.mec-fes-form,.mec-fes-list{background:#f8feff;padding:30px 3%;color:#798f96;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important}.mec-fes-list .mec-fes-list-top-actions,.mec-fes-list ul{margin:0 auto 15px;max-width:960px;list-style:none}.mec-fes-form-cntt .dashicons-editor-help{display:none}.mec-fes-list ul li *{text-decoration:none!important}.mec-fes-list ul li{padding:20px 15px;border-radius:3px;margin-bottom:15px;border:1px solid #cfeff5;box-shadow:0 2px 6px -4px #cfeff5;background:#fff;line-height:normal}.mec-fes-list ul li a{box-shadow:none;color:#181818}.mec-fes-list ul li a:hover{color:#40d9f1}.mec-fes-list ul li .mec-event-title{font-size:17px;font-weight:600;width:calc(100% - 250px);display:inline-block}@media (max-width:600px){.mec-fes-list ul li .mec-event-title{font-size:13px}}.mec-fes-list .mec-event-status{color:#fff!important;border-color:transparent!important}.mec-fes-form .mec-book-confirmed,.mec-fes-list .mec-book-confirmed{background:#50d477!important}.mec-fes-form .mec-book-pending,.mec-fes-list .mec-book-pending{background:#fcbe69!important}.mec-fes-form .mec-book-rejected,.mec-fes-list .mec-book-rejected{background:#fe686a!important}.mec-fes-form .mec-book-other,.mec-fes-list .mec-book-other{background:#40d9f1!important}.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view{font-size:11px;padding:0;border:0;background:#f7f8f9;float:right;margin-left:5px;border-radius:2px;transition:all .2s ease}.mec-fes-list ul li .mec-fes-event-export a,.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view a{padding:4px 8px;display:inline-block;border:1px solid #e7e8e9;border-radius:2px;color:#789;position:relative}@media (max-width:600px){.mec-fes-list ul li .mec-fes-event-export a,.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view a{font-size:10px}}.mec-fes-list ul li .mec-fes-event-remove:hover{cursor:pointer;background:#f96f8a;border-color:#f96f8a;color:#fff}.mec-fes-list ul li .mec-fes-event-export a:hover,.mec-fes-list ul li .mec-fes-event-view a:hover{background:#40d9f1;color:#fff;border-color:#40d9f1}.mec-fes-form-top-actions a,.mec-fes-list-top-actions a{position:relative;border:none;border-radius:3px;color:#fff!important;display:inline-block;font-size:13px;line-height:1;text-transform:none;font-weight:400;text-decoration:none;cursor:pointer;margin-bottom:20px!important;margin-right:10px;line-height:1;letter-spacing:0;padding:15px 22px;background:#39c36e;box-shadow:0 1px 7px -3px #39c36e!important;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;text-decoration:unset}.mec-fes-form-top-actions a:hover,.mec-fes-list-top-actions a:hover{background:#222;color:#fff}.mec-fes-list-top-actions a{font-weight:600;text-transform:capitalize}.mec-fes-form-top-actions a:before{content:"";border:solid #fff;border-width:0 2px 2px 0;display:inline-block;padding:6px;margin-right:5px;vertical-align:sub;transform:rotate(135deg);-webkit-transform:rotate(135deg)}.mec-fes-form .mec-form-row,.mec-fes-list .mec-form-row{margin-bottom:10px;clear:both}.mec-fes-form label{font-size:13px;display:block;color:#798f96;font-weight:400;padding:0 0 4px 2px}.mec-fes-form input+label{padding-top:8px;padding-left:3px;margin:0;display:inline-block;vertical-align:top}.mec-fes-form .post-status{float:right!important;margin:0 5px;color:#fff;padding:0 10px;border-radius:12px;font-style:italic;font-size:18px}.mec-fes-form input[type=email],.mec-fes-form input[type=number],.mec-fes-form input[type=password],.mec-fes-form input[type=tel],.mec-fes-form input[type=text],.mec-fes-form select,.mec-fes-form textarea{min-width:inherit;width:auto;display:inline;min-height:30px;font-size:13px;padding:10px;margin-bottom:20px;clear:both;background:#fff;border:1px solid #cfeff5;box-shadow:0 2px 5px rgba(207,239,245,.38) inset;border-radius:3px;height:40px;max-width:280px;color:#798f96;font-family:inherit}.mec-fes-form input{background:#fff!important;border-radius:3px!important;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important}.mec-fes-form textarea{height:80px}.mec-fes-form input::-webkit-input-placeholder{color:#798f96}.mec-fes-form input::-moz-placeholder{color:#798f96}.mec-fes-form input:-ms-input-placeholder{color:#798f96}.mec-fes-form input:-moz-placeholder{color:#798f96}#mec_more_info_target{width:100%}@media only screen and (min-width:961px){.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form textarea{width:100%;display:inline-block}}@media only screen and (max-width:768px){.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form textarea{width:100%}}.mec-fes-form input[type=text]#mec_fes_title{padding:5px 10px;min-height:32px;height:50px;background:#fff!important;max-width:100%;font-size:19px;font-weight:400}.mec-fes-form input[type=checkbox],.mec-fes-form input[type=radio]{display:inline!important;float:left;margin:5px 5px 0 0}.mec-fes-form input[type=email]:focus,.mec-fes-form input[type=number]:focus,.mec-fes-form input[type=password]:focus,.mec-fes-form input[type=tel]:focus,.mec-fes-form input[type=text]:focus,.mec-fes-form select:focus,.mec-fes-form textarea:focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-form-row .mec-color{cursor:pointer}.mec-form-row.mec-available-color-row span{margin:10px;width:14px;height:14px;display:inline-block;margin-right:6px;border-radius:20px 20px 20px 20px;vertical-align:middle}.mec-form-row.mec-available-color-row span:first-of-type{margin-left:0}.mec-fes-form.mec-fes-form .mec-tooltip{display:inline}.mec-fes-form-cntt .dashicons-editor-help{display:block}.mec-fes-form .mec-tooltip:hover:after,.mec-fes-form .mec-tooltip:hover:before{display:none}.mec-fes-form.mec-fes-form .mec-tooltip{display:inline-flex;bottom:7px}.mec-fes-form .mec-tooltip .box{min-width:300px;max-width:600px;display:inline-block;left:26px;top:50%;transform:translateY(-50%);padding:0;margin-top:8px;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.3;position:absolute;z-index:9999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s}#webnus-dashboard .mec-fes-form .mec-tooltip .box p,.mec-fes-form .mec-tooltip .box p{color:#fff;font-size:14px;line-height:1.3;margin:0}.mec-fes-form .mec-tooltip:hover .box{visibility:visible;opacity:1}.mec-fes-form .mec-tooltip:hover .box{padding:20px;border-radius:8px}.mec-fes-form .mec-tooltip .box h5{color:#fff;font-size:17px;font-weight:600;margin:-30px -20px;padding:20px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #32363a;border-radius:6px 6px 0 0;z-index:9999}#webnus-dashboard .mec-fes-form .mec-tooltip .box p a,.mec-fes-form .mec-tooltip .box p a{color:#40d9f1;margin-top:10px;margin-left:0;font-weight:400;position:relative;text-decoration:none;display:block;width:max-content}.mec-fes-form .mec-tooltip .box a:hover{color:#f90}.mec-fes-form .mec-tooltip .box:after{display:block;position:absolute!important;top:100%!important;right:50%!important;margin-top:-6px!important;margin-right:-6px!important;width:12px!important;height:24px!important;overflow:hidden!important;transform:rotate(-90deg)!important}.mec-fes-form .mec-tooltip .box:before{display:block;content:''!important;position:absolute!important;width:12px;height:12px;left:-10px!important;top:50%!important;transform:translate(50%,-50%) rotate(-45deg)!important;background-color:#535a61!important;box-shadow:0 8px 9px -4px #535a61!important;z-index:0!important}.mec-fes-form .mec-tooltip .box.top{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-fes-form .mec-tooltip .box.top:after{top:50%!important;right:100%!important}.mec-fes-form .mec-tooltip .box.top:before{left:50%!important;top:100%!important}.mec-fes-form .mec-tooltip .box.bottom{left:50%;top:auto;bottom:0;transform:translate(-50%,100%);margin-bottom:-20px;margin-left:-10px}.mec-fes-form .mec-tooltip .box.bottom:after{top:0!important;right:50%!important;background-color:#3a3f44!important}.mec-fes-form .mec-tooltip .box.bottom:before{left:50%!important;top:-7px!important;transform:translateX(-50%);background-color:#3a3f44!important}.mec-fes-form .mec-tooltip .box.left{left:auto;right:26px;top:50%;transform:translateY(-50%)}.mec-fes-form .mec-tooltip .box.left:before{right:0!important;left:auto!important;top:50%!important}.mec-fes-form .mec-tooltip{display:inline-block;position:relative;margin-right:10px;cursor:help;bottom:5px;left:3px}.mec-fes-form .mec-tooltip:last-child{margin-right:0}.mec-fes-form .mec-tooltip:hover:after{background:#313130;border-radius:5px;bottom:24px;color:#fff;content:attr(title);left:-75px;padding:10px;position:absolute;z-index:98;width:240px}.mec-fes-form .mec-tooltip:hover:before{border:solid;border-color:#313130 transparent;border-width:6px 6px 0;bottom:18px;content:"";left:30%;position:absolute;z-index:99}.mec-fes-form .mec-tooltip .dashicons-before:before{font-size:24px;color:#008aff;line-height:37px}.mec-fes-form .mec-tooltip a:focus{box-shadow:none}.mec-form-row .bootstrap_unvalid{display:block;border:2px solid red;position:relative;display:inline-block;border-bottom:1px dotted #000}.mec-fes-form .mec-tooltiptext{visibility:hidden;width:120px;background-color:red;color:#fff;text-align:center;border-radius:6px;padding:5px 0;position:absolute;z-index:1}.mec-fes-form .mec-tooltip .content p a{display:none}@media only screen and (min-width:961px){.mec-fes-form .mec-fes-form-cntt,.mec-fes-form .mec-fes-form-sdbr{width:68%;float:left;padding-right:20px}.mec-fes-form .mec-fes-form-sdbr{width:32%;padding-right:0;padding-left:20px}.mec-fes-submit-mobile{display:none}}.mec-fes-form .mec-meta-box-fields{padding:0 20px 20px;border:1px solid #cfeff5;margin-bottom:20px!important;box-shadow:0 2px 6px -3px #cfeff5;border-radius:3px;background:#fff}.mec-fes-form .mec-meta-box-fields h4{margin:0 -20px;font-size:15px;font-weight:600;letter-spacing:0;color:#40d9f1;text-transform:capitalize;padding:15px 20px;background:#ecfcff;margin-bottom:20px;border-radius:3px}.mec-fes-sub-button{width:100%}.mec-available-color-row span.color-selected{border:3px solid #fff;box-sizing:content-box;box-shadow:0 0 0 2px #40d9f1,0 2px 8px -1px #40d9f1}.mec-fes-loading:before{content:url(../img/ajax-loader.gif);background:0 0;border-style:none;display:block;margin-left:47%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:190px;margin-right:1.4%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-1,.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-2{width:120px;margin-right:10px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].widefat{width:100%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row{border-bottom:none;padding-bottom:10px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-6{width:39%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row button{margin-right:0;padding:9px 26px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row button.mec-add-hourly-schedule-button{font-size:12px;height:30px;line-height:25px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row .description{display:inline-block;border-left:1px dashed #bfcacc;margin-left:12px;line-height:28px;padding-left:12px;margin-top:5px;font-style:italic}@media only screen and (max-width:768px){.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:100%!important}}#mec_fes_form_message{max-width:838px;margin:10px auto;display:block!important;text-align:center}.mec-wrap .mec-totalcal-box{position:relative;border:1px solid #efefef;padding:20px 5px;margin:0 0 20px;background:#fafafa;overflow:hidden;box-shadow:0 3px 2px 0 rgba(0,0,0,.012);min-height:78px}.mec-wrap .mec-totalcal-box i{float:left;margin:0;width:36px;height:36px;background:#fff;border:1px solid #efefef;text-align:center;padding:10px 0;font-size:15px;color:#888}.mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-wrap .mec-totalcal-box input,.mec-wrap .mec-totalcal-box select{width:auto;min-height:36px;height:36px;line-height:36px;background:#fff;font-size:13px;color:#777;border:1px solid #efefef;margin:0 0 0 -1px;float:left;padding:0 5px;font-family:Roboto,Helvetica,Arial,sans-serif}.mec-wrap .mec-totalcal-box input[type=submit]{cursor:pointer;padding:0 16px;text-transform:uppercase;font-size:11px;font-family:Montserrat,Helvetica,Arial,sans-serif;transition:all .21s ease}.mec-wrap .mec-totalcal-box input[type=submit]:hover{background:#222;color:#fff}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{display:inline-block;text-transform:uppercase;font-family:Montserrat,Helvetica,Arial,sans-serif;font-size:11px;padding:0 12px;cursor:pointer}.mec-wrap .mec-totalcal-box .mec-totalcal-view span:hover{color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected{color:#fff;background:#40d9f1;border-color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view{text-align:right;float:right}.mec-wrap .mec-totalcal-box input[type=search]{width:calc(100% - 36px)}@media only screen and (min-width:961px) and (max-width:1200px){.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-3,.mec-wrap .mec-totalcal-box .col-md-4,.mec-wrap .mec-totalcal-box .col-md-5{width:100%;float:none;padding-bottom:20px;clear:both;overflow:hidden}}@media only screen and (min-width:768px) and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-4{position:relative;right:10px;top:20px;width:initial}.mec-wrap .mec-totalcal-box .col-md-5{padding-bottom:0}.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:767px){.mec-wrap .mec-totalcal-box .mec-totalcal-view{float:none}.mec-wrap .mec-totalcal-box .col-md-4{padding-bottom:0}}@media only screen and (max-width:479px){.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 8px;font-size:10px}.mec-wrap .mec-totalcal-box input[type=submit]{padding:0 10px;font-size:10px}}@media only screen and (min-width:961px){.mec-wrap .mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5,.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-3{width:100%;float:none;padding-bottom:20px;clear:both;overflow:hidden}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-4{position:absolute;right:10px;top:20px;width:initial}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5{padding-bottom:0;width:100%}}@media (min-width:961px) and (max-width:1200px){.mec-full-calendar-wrap .mec-totalcal-box{padding:20px 20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{padding-bottom:20px!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{min-width:calc(30% - 10px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3:last-child select{min-width:calc(50% - 19px)}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view{margin-right:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:10px;text-align:center}}@media (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box{padding:20px 20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{padding-bottom:10px!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px);margin-bottom:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view{margin-right:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:10px;text-align:center}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:100%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:absolute;top:20px}}@media (min-width:780px) and (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:absolute;top:20px}}@media(max-width:780px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{width:calc(50% - 18px)!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:unset;padding-right:0}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:20%;text-align:center;font-size:10px}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 7px;margin-top:20px}}@media(max-width:480px){.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:20%;text-align:center;font-size:10px}}.mec-search-form{padding:20px 10px}.mec-search-form .mec-dropdown-wrap{display:table;width:100%}.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{padding:0 10px;float:left;min-height:55px}.mec-search-form .mec-date-search,.mec-search-form .mec-text-input-search{width:50%;min-height:36px;display:block}.mec-full-calendar-wrap .mec-search-form .mec-date-search,.mec-full-calendar-wrap .mec-search-form .mec-text-input-search{width:100%}.mec-full-calendar-wrap .mec-search-form .col-md-3,.mec-full-calendar-wrap .mec-search-form .col-md-5,.mec-full-calendar-wrap .mec-search-form .col-md-6,.mec-full-calendar-wrap .mec-search-form .col-md-8{padding:0}.mec-widget .mec-search-form .mec-date-search,.mec-widget .mec-search-form .mec-text-input-search{width:100%}.mec-widget .mec-search-form .mec-text-input-search{margin-top:10px}.mec-search-form .mec-date-search{clear:left}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:table-cell;float:none}.mec-widget .mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block}.mec-wrap .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{width:calc(100% - 36px);margin-bottom:20px}.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 106px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}@media only screen and (max-width:767px){.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{width:100%;float:none}.mec-search-form .mec-date-search{min-height:55px}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:50%;float:left}}@media only screen and (max-width:960px){.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 124px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}}@media only screen and (max-width:479px){.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:100%;float:none}}.ui-datepicker{background-color:#fff;border:1px solid #66afe9;border-radius:4px;box-shadow:0 0 8px rgba(102,175,233,.6);display:none;margin-top:4px;padding:10px;width:240px}.ui-datepicker a,.ui-datepicker a:hover{text-decoration:none;cursor:pointer}.ui-datepicker a:hover,.ui-datepicker td:hover a{color:#2c6396;-webkit-transition:color .1s ease-in-out;-moz-transition:color .1s ease-in-out;-o-transition:color .1s ease-in-out;transition:color .1s ease-in-out}.ui-datepicker .ui-datepicker-header{margin-bottom:4px;text-align:center}.ui-datepicker .ui-datepicker-title{font-weight:700}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{cursor:default;font-family:dashicons;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;height:20px;line-height:1.4;margin-top:2px;width:20px}.ui-datepicker .ui-datepicker-prev{float:left;text-align:left}.ui-datepicker .ui-datepicker-next{float:right;text-align:center}.ui-datepicker .ui-datepicker-prev:before{content:"\f341"}.ui-datepicker .ui-datepicker-next:before{content:"\f345"}.ui-datepicker .ui-icon{display:none}.ui-datepicker .ui-datepicker-calendar{table-layout:fixed;width:100%}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker .ui-datepicker-calendar th{text-align:center;padding:4px 0}.ui-datepicker .ui-datepicker-calendar td{border-radius:4px;-webkit-transition:background-color .1s ease-in-out,color .1s ease-in-out;-moz-transition:background-color .1s ease-in-out,color .1s ease-in-out;-o-transition:background-color .1s ease-in-out,color .1s ease-in-out;transition:background-color .1s ease-in-out,color .1s ease-in-out}.ui-datepicker .ui-datepicker-calendar td:hover{background-color:#eee;cursor:pointer}.ui-datepicker .ui-datepicker-calendar td a{text-decoration:none}.ui-datepicker .ui-datepicker-current-day{background-color:#4289cc}.ui-datepicker .ui-datepicker-current-day a{color:#fff}.ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover{background-color:#fff;cursor:default}.mec-owl-theme .owl-dots .owl-dot{border:none}.event-carousel-type1-head .mec-event-image{position:relative;min-height:150px}.event-carousel-type1-head .mec-event-image img{width:100%}.mec-event-carousel-content .mec-event-carousel-title a{transition:all .2s ease}.event-carousel-type1-head .mec-event-date-carousel{position:absolute;top:25px;left:1px;font-size:41px;width:160px;color:#fff;font-weight:500;background-color:#40d9f1;padding-left:21px;height:97px;line-height:2.3;padding-right:85px}.event-carousel-type1-head .mec-event-date-carousel:after{content:"";position:absolute;display:inline-block;z-index:-1;bottom:-13px;left:5px;width:0;border-width:13px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.event-carousel-type1-head .mec-event-date-info{font-size:12px;font-weight:300;position:absolute;top:27px;left:75px}.event-carousel-type1-head .mec-event-date-info-year{font-size:12px;font-weight:300;position:absolute;top:45px;left:75px}.mec-event-carousel-content{border:1px solid #e8e8e8;border-top:none;margin-top:-5px;padding:34px 9px 11px 37px}.mec-event-carousel-content .mec-event-carousel-title a{font-size:23px;font-weight:500;color:#000;letter-spacing:-1px}.mec-event-carousel-content p{font-size:14px;color:#7a7272;font-weight:300}.mec-owl-crousel-skin-type1 .owl-item .mec-event-article{padding:0 19px}.mec-event-carousel-type1 .owl-page.active span{background-color:#00aeef;height:14px;width:14px}.mec-event-carousel-type1 .mec-event-carousel-content{margin-bottom:15px;box-shadow:0 1px 2px rgba(0,0,0,.04);transition:all .27s ease}.mec-event-carousel-type1 .mec-event-carousel-content:hover{box-shadow:0 0 35px rgba(0,0,0,.07)}@media only screen and (min-width:768px) and (max-width:1000px),(min-width:270px) and (max-width:448px){.event-carousel-type1-head .mec-event-date-carousel{font-size:25px;line-height:2.5;padding-right:70px;height:64px;width:120px}.event-carousel-type1-head .mec-event-date-carousel:after{left:7px}.event-carousel-type1-head .mec-event-date-info{font-size:10px;top:13px;left:55px}.event-carousel-type1-head .mec-event-date-info-year{font-size:10px;top:25px;left:55px}.event-carousel-type1-head .mec-event-date-carousel:after{top:48px}}.event-carousel-type2-head{background:#fff;border:1px solid #e6e6e6}.event-carousel-type2-head .mec-event-carousel-content-type2{margin-top:15px;min-height:182px}.event-carousel-type2-head .mec-event-carousel-content-type2 .mec-event-date-info{font-size:15px;color:#9a9a9a;font-weight:300}.event-carousel-type2-head .mec-event-carousel-content-type2 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-carousel-content-type2 .mec-event-carousel-title a{color:inherit}.mec-event-carousel-type2 .event-carousel-type2-head .mec-event-carousel-content-type2 p{font-size:16px;font-weight:300;color:#444}.event-carousel-type2-head .mec-event-footer-carousel-type2{margin-top:33px;position:relative}.mec-event-carousel-type2 .mec-event-footer-carousel-type2 .mec-event-sharing-wrap{left:0}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-event-sharing-wrap>li{border:none;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button{border:1px solid #e4e4e4;float:right;padding:7px 23px 7px;font-size:12px;text-transform:uppercase;color:#707070;font-weight:500;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button:hover{color:#fff}.mec-event-article .event-carousel-type2-head{padding:10%;margin-right:-1px}.mec-event-carousel-type2 .mec-owl-carousel .owl-wrapper-outer{border-right:1px solid #e6e6e6}.mec-wrap .mec-event-carousel-type2 .owl-next,.mec-wrap .mec-event-carousel-type2 .owl-prev,.mec-wrap .mec-event-carousel-type3 .owl-next,.mec-wrap .mec-event-carousel-type3 .owl-prev,.mec-wrap .mec-event-carousel-type4 .owl-next,.mec-wrap .mec-event-carousel-type4 .owl-prev{transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:47%;background-color:transparent!important}.mec-event-carousel-type2 .owl-next{right:-60px}.mec-event-carousel-type2 .owl-prev{left:-60px}.mec-event-carousel-type2 .owl-next i,.mec-event-carousel-type2 .owl-prev i,.mec-event-carousel-type3 .owl-next i,.mec-event-carousel-type3 .owl-prev i,.mec-event-carousel-type4 .owl-next i,.mec-event-carousel-type4 .owl-prev i{font-size:40px;color:#282828}.mec-event-carousel-type2 .owl-next i:hover,.mec-event-carousel-type2 .owl-prev i:hover,.mec-event-carousel-type3 .owl-next i:hover,.mec-event-carousel-type3 .owl-prev i:hover{color:#000;cursor:pointer}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}@media only screen and (min-width:320px) and (max-width:768px){.mec-event-carousel-type2 .owl-next,.mec-event-carousel-type2 .owl-prev,.mec-event-carousel-type3 .owl-next,.mec-event-carousel-type3 .owl-prev,.mec-event-carousel-type4 .owl-next,.mec-event-carousel-type4 .owl-prev{position:initial;top:100%}}.mec-event-carousel-type3 .mec-event-article{margin:0 10px}.event-carousel-type3-head .mec-event-image,.event-carousel-type3-head .mec-event-image img{width:100%;height:auto}.event-carousel-type3-head .mec-event-footer-carousel-type3{background:#fff;display:inline-block;width:calc(100% - 40px);margin-top:-74px;position:relative;margin-left:20px;margin-right:20px;margin-bottom:6px;padding:8% 11%;box-shadow:0 2px 10px -2px rgba(0,0,0,.2)}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button{border:1px solid #e4e4e4;text-transform:uppercase;float:right;padding:7px 23px 7px;font-size:12px;color:#707070;font-weight:500}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button:hover{color:#fff}.mec-event-footer-carousel-type3 span{font-size:15px;color:#9a9a9a;font-weight:300;display:block;margin-top:30px}.mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:29px;font-weight:700}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-footer-carousel-type3 .mec-event-carousel-title a{color:inherit}.event-carousel-type3-head .mec-event-footer-carousel-type3 p{font-size:16px;font-weight:300;color:#444!important;margin-bottom:36px}.mec-event-carousel-type3 .owl-next{right:-70px}.mec-event-carousel-type3 .owl-prev{left:-70px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap{left:11%}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}.event-carousel-type3-head .mec-end-date-label{display:inline;margin-left:2px}.event-carousel-type4-head.clearfix{position:relative;overflow:hidden;background:#fff}.event-carousel-type4-head .mec-event-overlay{position:absolute;left:0;right:0;bottom:0;top:0;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-hover-carousel-type4{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out;opacity:0;visibility:hidden}.mec-event-carousel-type4 .mec-event-article{margin:0 10px}.mec-event-carousel-type4 .mec-event-article:hover .mec-event-hover-carousel-type4{opacity:1;visibility:visible}.mec-event-hover-carousel-type4 .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-hover-carousel-type4 .mec-event-date{font-size:11px;text-transform:uppercase;font-weight:400;line-height:1.6}.mec-event-hover-carousel-type4 .mec-event-date span{display:block;font-weight:700;font-size:14px}.mec-event-hover-carousel-type4 .mec-event-title{color:#fff;margin:20px 0 38px;font-size:16px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-hover-carousel-type4 .mec-btn-wrapper{text-align:left}.mec-event-hover-carousel-type4 .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:10px 14px;letter-spacing:1.5px;font-size:11px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-hover-carousel-type4 .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-carousel-type4 .owl-next{right:-70px}.mec-event-carousel-type4 .owl-prev{left:-70px}.mec-carousel-type4-head{margin-bottom:25px}.mec-carousel-type4-head-title{padding:0 11px;text-align:left;font-weight:700;font-size:20px;color:#000}.mec-carousel-type4-head-link{text-align:right;padding:0 11px}.mec-carousel-type4-head-link a{background:#222;color:#fff;padding:10px 38px;transition:all .3s ease}.mec-carousel-type4-head-link a:hover,.mec-carousel-type4-head-link a:visited{color:#fff}@media (max-width:960px){.mec-event-carousel-type4 .owl-stage{left:-50px}}.mec-wrap .mec-event-countdown-style1{color:#fff;padding:0!important;display:table;background:#437df9}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1{z-index:5;padding:50px 1% 50px 4%;display:table-cell;float:none;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2{background-color:rgba(0,0,0,.05);height:100%;padding-top:0;display:table-cell;float:none;position:relative;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{background-color:#f8f8f8;display:table-cell;float:none;text-align:center;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style1 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{content:"";position:absolute;display:inline-block;z-index:1;top:50%;margin-top:-11px;right:-24px;width:0;border-width:12px;border-style:solid;border-color:transparent transparent transparent #4077ed}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style1 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto}.mec-event-countdown-style1 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style1 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (min-width:1200px){.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%}}@media (max-width:960px){.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%;transform:rotate(90deg)}}@media (max-width:480px){.mec-event-countdown-style1 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{padding:10px 5px;min-width:50px;margin:3px 1px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:8px}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{display:inline}}.mec-wrap .mec-event-countdown-style2{color:#fff;padding:30px 0;background:#437df9;max-width:600px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part3{width:100%;float:none;vertical-align:middle;padding:50px 10% 50px 10%}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2{padding-top:12%;padding-bottom:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style2 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date-place{text-align:left;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 8px}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#222;background:#fff;transition:all .24s ease}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button:hover{background:#222;color:#fff}.mec-event-countdown-style2 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0}.mec-event-countdown-style2 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style2 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (max-width:767px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:80px;padding:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:26px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:11px}}@media only screen and (max-width:479px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:40px;padding:15px 10px;margin:2px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:20px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:9px}}@media (max-width:380px){.mec-event-countdown-style2 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{padding:10px 4px;margin:4px 1px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:7px}}.mec-wrap .mec-event-countdown-style3{color:#fff;padding:0;background:#282828;display:table;width:100%}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1{width:68%;padding:50px 1% 50px 4%;vertical-align:middle;display:table-cell;position:relative}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:32%;display:table-cell;position:relative;padding-bottom:0;padding-top:0}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 img{width:100%;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{font-weight:300;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{color:#fff;font-size:36px;letter-spacing:-2px;font-weight:700;line-height:1;margin-top:-10px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style3 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style3 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto;position:absolute;top:40px;right:20px}.mec-event-countdown-style3 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style3 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:11px;color:#888;margin:8px 0 0;line-height:1}.mec-event-countdown-style3 .mec-event-date{width:176px;height:96px;background:#40d9f1;color:#fff;font-size:13px;position:absolute;left:-27px;top:146px}.mec-event-countdown-style3 .mec-event-date:after{content:"";position:absolute;display:inline-block;z-index:1;bottom:-18px;left:8px;width:0;border-width:19px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:50px;position:absolute;top:36px;left:12px;letter-spacing:-3px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:80px;top:26px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:80px;top:45px}.mec-event-countdown-style3 .mec-event-countdown-part-details{padding-top:35px;margin-bottom:50px;min-height:100px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-title{font-size:17px;color:#fff;line-height:1.4;padding-right:20px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link{color:#fff;font-size:12px;position:relative;padding-left:22px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link:before{content:"";display:inline-block;width:18px;border-top:1px solid #fff;position:absolute;left:0;top:8px}.mec-event-countdown-style3 .mec-event-title-link{position:absolute;left:190px;top:152px}.event-carousel-type1-head .mec-event-date-carousel:before,.mec-event-countdown-style3 .mec-event-date:before{content:'';position:absolute;left:0;bottom:0;z-index:2;width:100%;height:96px;background:0 0;display:inline-block;box-shadow:0 5px 5px rgba(0,0,0,.12)}@media only screen and (min-width:960px){.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown li{padding:10px}.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:31px}}@media (max-width:959px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:100%;display:block}.mec-event-countdown-style3 .mec-event-title-link{top:190px}.mec-event-countdown-style3 .mec-event-countdown{top:96px}.mec-event-countdown-style3 .mec-event-date{left:0;top:190px}.mec-event-countdown-style3 .mec-event-date:after{display:none}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{display:inline}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:150px}}@media (max-width:767px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:26px;letter-spacing:-1px}.mec-event-countdown-style3 .mec-event-title-link{left:130px}.mec-event-countdown-style3 .mec-event-date{width:120px;font-size:10px;height:63px}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:36px;top:20px;left:4px;letter-spacing:-2px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:52px;top:12px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:52px;top:28px}}@media (max-width:380px){.mec-event-countdown-style3 .mec-event-title-link{left:10px;top:260px}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:300px}.mec-event-countdown-style3 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:10px 5px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:8px}}.mec-slider-t1-wrap{width:100%;padding:60px 90px;background:#f7f7f7;min-height:560px;position:relative}.mec-slider-t1{height:500px;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t1 .mec-event-article{position:relative;height:500px}.mec-slider-t1 .mec-slider-t1-img{position:relative;background-size:cover!important;background-position:center!important;width:50%;height:100%;float:right;margin:0;overflow:hidden}.mec-slider-t1 .mec-slider-t1-content{width:50%;float:left;height:100%;background:#fff;padding:6%}.mec-slider-t1-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t1-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:54px;height:54px;line-height:48px;border-radius:0;text-align:center;background:#fff;box-shadow:0 2px 11px 0 rgba(0,0,0,.045);transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-27px;cursor:pointer}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 29px 0 rgba(0,0,0,.095)}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:12px;color:#282828;transition:all .21s ease}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{font-size:13px;color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t1{margin:0 auto;max-width:900px}}@media only screen and (max-width:960px){.mec-slider-t1 .mec-slider-t1-content,.mec-slider-t1 .mec-slider-t1-img{width:100%;float:none}.mec-slider-t1 .mec-slider-t1-img{height:300px}.mec-slider-t1,.mec-slider-t1 .mec-event-article{height:auto}}@media only screen and (max-width:768px){.mec-slider-t1-wrap{padding:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:10px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}}@media only screen and (max-width:479px){.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t2-wrap{width:100%;padding:0;background:#fff;min-height:600px;position:relative}.mec-slider-t2 .mec-event-article{height:600px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t2 .mec-slider-t2-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:70%;height:100%;margin:0;overflow:hidden}.mec-slider-t2 .mec-slider-t2-content{width:50%;position:absolute;right:0;top:60px;bottom:60px;padding:5%}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern *{color:#fff}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-content,.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t2-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:84px;cursor:pointer}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}.mec-wrap.colorskin-custom .mec-slider-t2 .mec-event-article .mec-event-date.mec-color{color:#fff}@media only screen and (min-width:961px){.mec-slider-t2{margin:0 auto;max-width:1200px}}@media only screen and (max-width:960px){.mec-slider-t2 .mec-slider-t2-content,.mec-slider-t2 .mec-slider-t2-img{width:100%;float:none;position:static}.mec-slider-t2 .mec-slider-t2-img{height:300px}.mec-slider-t2 .mec-event-article{height:auto}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px}}@media only screen and (max-width:479px){.mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:22px}}.mec-slider-t3-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t3 .mec-event-article{height:700px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t3 .mec-slider-t3-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;opacity:.68;z-index:1}.mec-slider-t3 .mec-slider-t3-content{width:50%;height:auto;vertical-align:middle;display:table;position:absolute;left:0;top:0;bottom:0;padding:0 2% 0 7%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t3 .mec-slider-t3-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-content,.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-slider-t3-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t3-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{border-color:#40d9f1}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-22px;cursor:pointer}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next{right:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:50px;font-weight:300}.mec-slider-t3-content.mec-event-grid-modern .mec-event-description{font-size:19px}}@media only screen and (max-width:767px){.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}}@media only screen and (max-width:479px){.mec-slider-t3 .mec-slider-t3-content{width:100%}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t4-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t4 .mec-event-article{height:700px;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t4 .mec-slider-t4-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;z-index:1}.mec-slider-t4 .mec-slider-t4-content{width:auto;max-width:700px;background:rgba(37,37,37,.94)!important;height:auto;vertical-align:middle;display:table;position:absolute;left:8%;top:19%;padding:3%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t4 .mec-slider-t4-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-content,.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:13px;padding:0 42px;line-height:49px;height:50px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t4-content.mec-event-grid-modern .mec-slider-t4-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next{right:60px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{right:112px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:767px){.mec-slider-t4 .mec-slider-t4-content{width:100%;left:0;top:auto;bottom:0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t5-wrap{width:auto;max-width:570px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-slider-t5{height:auto;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t5 .mec-event-article{position:relative;height:auto}.mec-slider-t5 .mec-slider-t5-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:300px;float:none;margin:0;overflow:hidden}.mec-slider-t5 .mec-slider-t5-content{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-slider-t5 .mec-events-content p{margin-bottom:20px}.mec-slider-t5-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t5-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t5 .mec-slider-t5-col6{width:50%;float:left;height:100%}.mec-slider-t5 .mec-slider-t5-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-slider-t5 .mec-slider-t5-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-slider-t5 .mec-slider-t5-col6 address{font-size:12px;margin-bottom:0}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t5-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:768px){.mec-slider-t5 .mec-slider-t5-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-single-modern .mec-events-event-image{text-align:center}.mec-single-modern .mec-events-event-image img{width:100%}.mec-single-modern .mec-single-event-bar{background-color:#f7f7f7;margin:20px 0 0;padding:15px;display:table;width:100%}.mec-single-modern .mec-single-event-bar>div{display:table-cell}.mec-single-modern .mec-single-event-bar>div i{font-size:20px;vertical-align:middle}.mec-single-modern .mec-single-event-bar>div .mec-time-comment{font-size:12px;color:#999}.mec-single-modern .mec-single-event-bar>div h3{text-transform:uppercase;font-size:16px;font-weight:700;padding-bottom:5px;display:inline;color:#000;padding-left:10px}.mec-single-modern .mec-single-event-bar>div dd{font-size:14px;color:#8d8d8d;padding-left:34px;margin-bottom:0}.mec-single-modern .col-md-4 .mec-frontbox{margin-top:-50px;margin-bottom:70px;padding:20px;border:none;background:#f7f7f7;box-shadow:none}.mec-next-occurrence li{list-style:none}@media only screen and (min-width:960px){.mec-single-modern .col-md-4 .mec-frontbox{margin-left:20px}}@media only screen and (max-width:960px){.mec-single-modern .mec-single-event-bar>div{display:block}}.lity-content>div{overflow:auto}.mec-next-event-details li{list-style:none;margin-top:20px}.mec-next-event-details h6{text-transform:uppercase;font-size:13px;padding-bottom:5px;display:inline;color:#222;padding-left:0}.mec-next-event-details abbr{display:block;padding-left:12px;color:#8d8d8d}.mec-next-event-details i{margin-right:10px;margin-left:12px}.mec-next-event-details i:before{color:#40d9f1}.mec-next-event-details a{text-align:center;display:block;background:#fff;padding:6px 0;font-size:11px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;transition:.3s}.mec-single-modal.mec-single-modern .mec-single-title{text-align:center;padding:15px 10px 0}.admin-bar .mec-single-modal.mec-single-modern .mec-single-title{padding-top:40px}.mec-single-modal.mec-single-modern .mec-single-event-bar{padding:5px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div dd{font-size:13px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div h3{font-size:15px}@media only screen and (min-width:960px){.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-left:0}}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-top:10px;margin-bottom:10px}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox.mec-event-meta{padding:0}.mec-single-modal .mec-event-meta dd.mec-organizer-email a,.mec-single-modal .mec-event-meta dd.mec-organizer-url a{font-size:12px;display:block}.mec-modal-wrap{max-width:60vw;max-height:90vh!important;background:#fff;box-shadow:0 1px 55px rgba(0,0,0,.5);overflow-x:hidden!important}@media(max-width:1023px){.mec-modal-wrap{max-width:80vw}}.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li,.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a.mec-events-button{display:block;text-align:center}body .featherlight .featherlight-content{background:0 0;overflow:unset;z-index:9999}body .featherlight .featherlight-close-icon{position:fixed;top:40px;right:40px;background:0 0;color:#fff;border:1px solid #fff;border-radius:0}body .featherlight .featherlight-close-icon:hover{background:#fff;color:#000;border:1px solid #000}@media (max-width:320px){.mec-wrap span.flip-clock-divider{width:20px}.mec-single-event .mec-events-meta-group-countdown{padding:15px 12%}}@media (max-width:414px){.mec-wrap span.flip-clock-divider{width:30px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 7%}}@media (max-width:480px){.mec-wrap span.flip-clock-divider{width:7px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 1%}}@media(max-width:1366px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:20px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 15px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:48px}}@media(max-width:1280px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:14px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:15px 10px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:38px}}@media(min-width:961px) and (max-width:1024px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:7px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:15px 5px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:14px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul li a div{font-size:30px}}@media(max-width:640px){body .mec-modal-wrap .mec-single-modal.featherlight-close-icon{top:14px;right:14px}}@media(max-width:480px){.featherlight .featherlight-content,body .mec-modal-wrap{max-width:100%}body .mec-modal-wrap.flip-clock-divider .flip-clock-label{display:block}}@media (max-width:414px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:50px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 65px}body .featherlight-content .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 2px 20px 2px!important}body .featherlight-content .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:3px!important}}@media (max-width:375px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:50px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 45px}}@media (max-width:320px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:20px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 40px}}.mec-events-toggle{max-width:960px;margin-left:auto;margin-right:auto}.mec-events-toggle .mec-toggle-item{border:1px solid #e4e4e4;margin-bottom:15px;box-shadow:0 10px 15px #f3f3f3}.mec-events-toggle .mec-toggle-item-inner{cursor:pointer;position:relative;padding:30px 60px 30px 15px;background:#fff;transition:all .3s ease;min-height:100px;display:table;width:100%;border-collapse:separate}.mec-events-toggle .mec-toggle-item-inner:hover{background:#fbfbfb}.mec-toggle-item-col{width:200px;border-right:1px solid #e3e3e3;margin-right:15px;display:table-cell;padding-right:5px}.mec-toggle-item-col .mec-event-date{font-size:38px;line-height:40px;float:left;margin-right:8px}.mec-toggle-item-col .mec-event-month,.mec-toggle-item-col .mec-time-details{text-transform:uppercase;font-size:12px;line-height:14px;padding-top:4px;font-weight:700}.mec-toggle-item-col .mec-event-detail{font-size:10px}.mec-toggle-item-col .mec-event-day{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:35px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-events-toggle .mec-toggle-title{color:#000;font-size:23px;font-weight:600;margin-bottom:0;transition:all .3s ease;display:table-cell;text-align:left;max-width:calc(100% - 200px);padding-left:15px;vertical-align:middle}.mec-events-toggle .mec-toggle-item-inner span.event-color{width:5px;height:100%;position:absolute;left:-1px;top:0;bottom:0;border-radius:0;margin:0}.mec-events-toggle .mec-toggle-item-inner i{position:absolute;font-size:30px;right:25px;top:50%;transform:translate(0,-50%);cursor:pointer}.mec-events-toggle .mec-toggle-item.is-open i.mec-sl-plus:before{content:"\e615"}.mec-events-toggle .mec-toggle-item.is-open .mec-toggle-title{background:#f8f8f8;cursor:pointer}.mec-events-toggle .mec-toggle-content{border-top:1px solid #e4e4e4}.mec-events-toggle .mec-toggle-content .mec-modal-wrap{margin:0;max-width:100%;box-shadow:none}.mec-events-toggle .mec-toggle-content .mec-modal-wrap .mec-single-event{margin:0}.mec-events-toggle .mec-toggle-content .mec-single-event-bar,.mec-events-toggle .mec-toggle-content h1.mec-single-title{display:none}.mec-events-toggle .media-links a{margin-bottom:0}.mec-events-toggle .mec-toggle-content .mec-toggle-meta{margin-bottom:14px}.mec-events-toggle #mec_speakers_details.mec-frontbox{padding:0;margin:0}.mec-events-toggle .mec-toggle-item h3.mec-speakers{border:none;text-align:left}.mec-events-toggle .mec-toggle-item h3.mec-speakers:before{content:"\e063";font-family:simple-line-icons;border:none;position:relative;display:inline-block;left:unset;bottom:unset;font-size:22px;font-weight:400;padding:0 11px 0 28px;vertical-align:middle}@media only screen and (max-width:767px){.mec-toggle-item-inner .mec-toggle-item-col{float:none;width:100%;border-right:none;margin-bottom:5px;display:block;max-width:100%;padding-left:15px}.mec-events-toggle .mec-toggle-title{display:block;width:100%;max-width:100%}}.mec-events-agenda-wrap{margin:10px 0;border:1px solid #e9e9e9;padding-left:20px;box-shadow:0 2px 2px rgba(0,0,0,.03)}.mec-events-agenda{padding:0;border-bottom:1px solid #e9e9e9;overflow:hidden}.mec-agenda-date-wrap{width:210px;padding-top:15px;float:left;font-size:13px}.mec-agenda-date-wrap i,.mec-agenda-event i{font-size:11px;color:#aaa;margin-right:4px;margin-left:1px}.mec-agenda-event i{vertical-align:middle;margin-right:1px}.mec-agenda-events-wrap{float:left;width:calc(100% - 210px);background:#f9f9f9;padding:15px}.mec-agenda-time{font-size:11px;color:#707070;padding-right:10px;width:138px;display:inline-block}.mec-agenda-event-title{position:relative;padding-left:14px}.mec-agenda-event-title a{font-family:Roboto,Montserrat,Helvetica,Arial,sans-serif;font-size:14px;font-weight:600;color:#333}.mec-agenda-event-title span.event-color{width:9px;height:9px;position:absolute;left:0;top:4px;margin:0}.mec-agenda-date-wrap span.mec-agenda-day{color:#aaa;font-size:12px}@media only screen and (max-width:767px){.mec-agenda-date-wrap,.mec-agenda-events-wrap{float:none;width:100%}.mec-events-agenda span.mec-agenda-event-title{display:block;width:100%}.mec-agenda-event-title span.event-color{top:7px}.mec-agenda-event-title a{font-size:13px}}.mec-yearly-view-wrap{margin:0 0 15px;border:1px solid #e6e6e6;box-shadow:0 2px 4px rgba(0,0,0,.04);border-bottom-width:4px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar{max-width:100%;width:232px;padding:10px;background:#fff;margin:10px;display:inline-block}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar dl dt{transition:none;height:30px;width:30px;line-height:30px;border-radius:0;font-size:12px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar .mec-calendar-events-sec{padding:10px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar .mec-has-event:after{width:4px;height:4px;bottom:3px;margin-left:-2px}.mec-yearly-view-wrap .mec-calendar-side .mec-calendar-table{min-height:200px}.mec-calendar.mec-yearly-calendar .mec-calendar-table-head dl dt{background:#f9f9f9;font-size:13px}.mec-calendar.mec-yearly-calendar .mec-calendar-table-title{text-align:center;font-size:15px;font-weight:700;color:#222;margin-top:-5px;padding-bottom:5px}.mec-yearly-view-wrap .mec-yearly-calendar-sec{min-height:200px;width:538px;overflow:hidden;float:left;background:#f8f8f8;padding:15px}.mec-yearly-view-wrap .mec-yearly-agenda-sec{min-height:200px;width:calc(100% - 538px);float:left;padding:0 0 0 20px;overflow:hidden}.mec-yearly-view-wrap .mec-yearly-title-sec{position:relative;padding:15px;text-align:center;border-bottom:1px solid #e6e6e6;box-shadow:0 1px 3px rgba(0,0,0,.02)}.mec-yearly-view-wrap .mec-yearly-title-sec h2{font-size:30px;line-height:40px;color:#333;margin:0;font-weight:700}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year,.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{position:absolute;top:50%;margin-top:-15px;min-width:30px;height:30px;line-height:30px;padding:0 8px;text-align:center;background:#fff;color:#666;font-size:14px;border:1px solid #eee;border-radius:2px;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease;cursor:pointer}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{right:auto;left:20px;padding-right:14px}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year{left:auto;right:20px;padding-left:14px}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year i,.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-yearly-view-wrap .mec-events-agenda.mec-selected{box-shadow:-10px 0 0 0 #fffcf2,0 -1px 0 #fbebb6;background:#fffcf2;border-color:#fbebb6;color:#f9af29}@media only screen and (max-width:959px){.mec-yearly-view-wrap .mec-yearly-calendar-sec{width:268px;padding:10px 5px}.mec-yearly-view-wrap .mec-yearly-agenda-sec{width:calc(100% - 268px);padding:0 0 0 10px}}@media only screen and (max-width:767px){.mec-yearly-view-wrap .mec-yearly-agenda-sec,.mec-yearly-view-wrap .mec-yearly-calendar-sec{width:100%;float:none}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar{width:auto}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar dl dt{width:14.2%}.mec-yearly-view-wrap .mec-yearly-title-sec h2{font-size:25px}}.mec-yearly-view-wrap .mec-agenda-event i,.mec-yearly-view-wrap .mec-agenda-time{display:none}@media only screen and (min-width:768px){.mec-yearly-view-wrap .mec-events-agenda-wrap{margin-top:0;border:none;padding-left:0;box-shadow:none}.mec-yearly-view-wrap .mec-agenda-date-wrap{width:174px;font-size:11px;padding-top:10px}.mec-yearly-view-wrap .mec-agenda-events-wrap{width:calc(100% - 174px);padding:10px}.mec-yearly-view-wrap .mec-agenda-event-title a{font-size:13px}.mec-yearly-view-wrap .mec-agenda-event-title span.event-color{width:8px;height:8px}.mec-yearly-view-wrap .mec-agenda-date-wrap span.mec-agenda-day{font-size:11px}.mec-yearly-view-wrap .mec-yearly-calendar-sec{box-shadow:-2px 0 5px rgba(0,0,0,.03) inset}}@media only screen and (max-width:1200px){.mec-yearly-view-wrap .mec-agenda-event-title a{font-size:12px;padding-right:6px}}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table{padding-bottom:10px;border-bottom:none}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt:hover{cursor:pointer}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-has-no-event,.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-has-no-event:hover{color:#bbb;cursor:default}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-day-active{background:#40d9f1;color:#fff;position:relative}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-day-active:after{content:'';position:absolute;display:block;bottom:-20px;left:50%;margin-left:-10px;width:0;border-width:10px;border-style:solid;border-color:#40d9f1 transparent transparent transparent}.mec-timetable-events-list{padding:10px 20px;border:none;margin:0}.mec-timetable-events-list .mec-timetable-event{padding:10px 0;border-bottom:1px dashed #ddd}.mec-timetable-events-list .mec-timetable-event:last-child{border:none}.mec-timetable-event .mec-timetable-event-span{font-size:12px;color:#444;padding-right:30px;line-height:22px}.mec-timetable-events-list .mec-timetable-event i{font-size:13px;color:#aaa;margin-right:3px;vertical-align:baseline}.mec-timetable-event .mec-timetable-event-span a{color:#333}.mec-timetable-event .mec-timetable-event-time{font-size:11px}.mec-timetable-event .mec-timetable-event-time i{vertical-align:text-bottom}.mec-timetable-event .mec-timetable-event-title{font-size:13px}.mec-timetable-event .mec-timetable-event-title .event-color{width:10px;height:10px}.mec-timetable-events-list .mec-timetable-event.mec-util-hidden{display:none}.mec-timetable-events-list.mec-util-hidden{display:none}@media only screen and (min-width:768px){.mec-timetable-events-list{display:table;width:100%;margin:10px 0 20px}.mec-timetable-events-list .mec-timetable-event{display:table-row;padding:0;border:none;background:#fff}.mec-timetable-events-list .mec-timetable-event:hover{background:#fafafa}.mec-timetable-event .mec-timetable-event-span{display:table-cell;padding:10px 15px;border-bottom:1px solid #ebebeb}.mec-timetable-events-list .mec-timetable-event:last-child .mec-timetable-event-span{border-bottom:none}}@media only screen and (max-width:767px){.mec-timetable-event .mec-timetable-event-title{display:block;width:100%;padding:5px 0 10px;font-weight:700}}.mec-timetable-t2-wrap{border:1px solid #e6e6e6;background:#fafafa;padding:0 15px 15px;overflow:hidden;box-shadow:0 3px 2px 0 rgba(0,0,0,.012)}.mec-timetable-t2-col{width:20%;float:left;min-height:20px;padding-right:1px;background:0 0}.mec-ttt2-title{background:#fafafa;color:#333;font-size:13px;font-weight:600;text-transform:uppercase;letter-spacing:1px;text-align:center;padding:25px 10px 10px;margin-bottom:1px}.mec-timetable-t2-col .mec-event-article{position:relative}.mec-timetable-t2-col .mec-event-article .event-color{position:absolute;width:auto;height:auto;left:0;right:0;top:0;bottom:0;margin:0;z-index:1;border-radius:2px}.mec-timetable-t2-content{position:relative;z-index:2;color:#fff;padding:15px 15px 20px;text-align:left;height:130px;margin-bottom:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title{line-height:22px;margin-bottom:13px;white-space:nowrap;padding-right:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title a{color:#fff;font-size:15px;font-weight:600;white-space:nowrap;overflow:hidden}.mec-timetable-t2-content div{color:#fff;font-size:11px;font-weight:400;line-height:19px;white-space:nowrap}.mec-timetable-t2-content div i{font-size:12px;margin-right:4px}@media only screen and (max-width:960px){.mec-timetable-t2-col{width:100%;float:none}}@media(min-width:961px){.mec-timetable-col-7{width:14.28%}.mec-timetable-col-6{width:16.6666%}}.mec-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;text-align:center;word-break:initial}.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:53%;text-align:left}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8) i{color:#fe686a}.mec-profile .mec-event-status{padding:5px 10px;color:#fff;border-radius:2px;font-size:12px;line-height:12px;letter-spacing:.4px}.mec-profile .mec-event-status.mec-book-confirmed{background:#50d477}.mec-profile .mec-event-status.mec-book-pending{background:#fcbe69}.mec-profile .mec-event-status.mec-book-rejected{background:#fe686a}.mec-profile .mec-event-date{font-size:12px;color:#888}.mec-event-date,.mec-event-status{text-align:center}.mec-event-date .mec-tooltip,.mec-event-status .mec-tooltip{position:relative;width:fit-content;margin:auto}.mec-profile i{font-size:15px;color:#008aff;vertical-align:text-bottom;margin-right:4px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{min-width:250px;max-width:300px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#000;color:#fff;font-weight:400;font-size:14px;letter-spacing:.5px;line-height:1.5;position:absolute;z-index:99999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #535a61;padding:5px 10px 6px;border-radius:8px;text-align:center;font-style:normal;opacity:0;visibility:hidden;display:none}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{font-size:13px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;letter-spacing:1.1px;font-weight:500}.mec-event-date .mec-tooltip:hover .box:after,.mec-event-status .mec-tooltip:hover .box:after{content:'';position:absolute;width:12px;height:12px;left:calc(50% - 12px);bottom:-12px;transform:translate(50%,-50%) rotate(-45deg);background-color:#000;box-shadow:0 8px 9px -4px #535a61}.mec-event-status .mec-tooltip .box{min-width:100px}.mec-event-status.mec-book-confirmed .mec-tooltip .box,.mec-event-status.mec-book-confirmed .mec-tooltip:hover .box:after{background-color:#50d477}.mec-event-status.mec-book-rejected .mec-tooltip .box,.mec-event-status.mec-book-rejected .mec-tooltip:hover .box:after{background-color:#fe686a}.mec-event-status.mec-book-pending .mec-tooltip .box,.mec-event-status.mec-book-pending .mec-tooltip:hover .box:after{background-color:#fcbe69}.mec-event-date .mec-tooltip:hover .box,.mec-event-status .mec-tooltip:hover .box{opacity:1;visibility:visible;display:block}.mec-profile .mec-event-status{padding:0}.mec-profile .mec-booking-number-of-attendees{font-size:13px;color:#888}.mec-profile .mec-booking-number-of-attendees i,.mec-profile .mec-profile-bookings-view-invoice i{font-size:15px;color:#008aff;vertical-align:text-bottom;margin-right:4px}.mec-booking-attendees{background:#fff;padding:10px}.mec-booking-attendees{width:850px;text-align:center}.mec-booking-attendees-wrapper{border:2px solid #e6e6e6;font-size:14px}.mec-booking-attendees-head{display:table;width:100%;background:#f7f7f7;border-bottom:1px solid #e6e6e6;font-weight:700}.mec-booking-attendees-head span,.mec-booking-attendees-head-content>span{vertical-align:middle;display:table-cell;padding:7px;border-right:1px solid #e6e6e6;font-size:12px}.mec-booking-attendees-head-content{display:table;width:100%;border-bottom:1px solid #e6e6e6}.mec-booking-attendees-wrapper .mec-booking-attendees-head-content:last-child{border:none}.mec-booking-attendees-head span:nth-child(1),.mec-booking-attendees-head-content>span:nth-child(1){width:4%}.mec-booking-attendees-head span:nth-child(2),.mec-booking-attendees-head-content>span:nth-child(2){width:20%}.mec-booking-attendees-head span:nth-child(3),.mec-booking-attendees-head-content>span:nth-child(3){width:24%}.mec-booking-attendees-head span:nth-child(4),.mec-booking-attendees-head-content>span:nth-child(4){width:26%}.mec-booking-attendees-head span:nth-child(5),.mec-booking-attendees-head-content>span:nth-child(5){width:26%}@media only screen and (max-width:759px){.mec-booking-attendees{width:470px}.mec-booking-attendees-head span,.mec-booking-attendees-head-content>span{word-break:break-all}}@media(max-width:1366px){.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:6%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:40%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:12%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:8%}}@media(max-width:1024px){.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:30%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:15%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:10%}}@media(max-width:780px){.mec-profile .mec-profile-bookings tbody tr,.mec-profile i{font-size:12px}.mec-event-date .mec-tooltip .box{min-width:200px}.mec-event-status .mec-tooltip .box{min-width:90px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{padding:4px 5px!important}.mec-profile .mec-profile-bookings tbody tr{font-size:12px}}@media(max-width:480px){.mec-profile .mec-booking-number-of-attendees,.mec-profile .mec-profile-bookings tbody tr,.mec-profile i{font-size:8px!important}.mec-profile .mec-profile-bookings tbody tr td{padding:3px}.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:19%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:12%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:18%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:13%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:13%}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{font-size:8px}.mec-event-date .mec-tooltip .box{min-width:75px}.mec-event-status .mec-tooltip .box{min-width:70px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{padding:4px 5px!important}}.mec-woo-booking-checkout{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;border-radius:0;margin-bottom:6px;min-width:170px;margin-top:5px;text-align:center}.mec-woo-booking-checkout:hover{background:#222;color:#fff}.mec-woo-booking-checkout:focus,.mec-woo-booking-checkout:visited{color:#fff}.single-mec-events .lity-container{max-width:480px;width:480px}.lity-content .mec-events-meta-group-booking{width:100%;padding:20px 50px;background:#fff}.lity-content .mec-events-meta-group-booking .mec-booking form>h4{text-transform:uppercase;font-size:15px;font-weight:700;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative;text-align:center;line-height:1.2;margin-bottom:10px}.lity-content .mec-events-meta-group-booking .mec-booking form>h4:before{padding:1px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-35px;left:50%}.lity-content .mec-events-meta-group-booking .mec-event-ticket-available,.lity-content .mec-events-meta-group-booking .mec-event-ticket-name,.lity-content .mec-events-meta-group-booking .mec-event-ticket-price,.lity-content .mec-events-meta-group-booking .mec-ticket-variation-name,.lity-content .mec-events-meta-group-booking .mec-ticket-variation-price,.lity-content .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;clear:none;padding:5px 1em 3px 0;display:inline-block}.lity-content .mec-events-meta-group-booking .mec-event-ticket-available{margin-bottom:12px}.lity-content .mec-events-meta-group-booking select{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both;font-family:Montserrat,Helvetica,Arial,sans-serif}.lity-content .mec-events-meta-group-booking input[type=email]{color:#888;border:1px solid #e1e1e1;font-size:14px;display:block;width:100%;outline:0}.lity-content .mec-events-meta-group-booking input{margin-bottom:10px!important}.lity-content .mec-book-ticket-variation h5{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:0;clear:none;padding:5px 1em 3px 0;display:inline-block;text-transform:capitalize;font-family:Montserrat,Helvetica,Arial,sans-serif}.lity-content ul.mec-book-tickets-container{padding:0}.lity-content .mec-events-meta-group-booking input[type=email],.lity-content .mec-events-meta-group-booking input[type=number],.lity-content .mec-events-meta-group-booking input[type=text]{outline:0;font-family:Montserrat,Helvetica,Arial,sans-serif;display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both;margin-bottom:2px!important}.lity-content button[type=submit]{position:relative;border:none;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;min-width:170px;margin-top:5px;border-radius:0;margin-bottom:6px}.lity-content button[type=submit]:hover{background:#222}.lity-content .mec-book-tickets-container li{list-style:none}.lity-content .mec-events-meta-group-booking #mec_book_payment_form h4,.lity-content .mec-events-meta-group-booking li h4{font-size:19px;font-weight:700}.lity-content .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li{width:50%}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li:nth-child(even){border:none}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li span{display:block}.lity-content .mec-events-meta-group-booking button[type=submit]:after{display:none;font-family:simple-line-icons;content:"\e098";margin-left:4px;-webkit-animation:rotating 1.2s linear infinite;-moz-animation:rotating 1.2s linear infinite;-ms-animation:rotating 1.2s linear infinite;-o-animation:rotating 1.2s linear infinite;animation:rotating 1.2s linear infinite}.lity-content .mec-events-meta-group-booking button[type=submit].loading:after{display:inline-block}@media only screen and (max-width:480px){.lity-content .mec-events-meta-group-booking{padding:20px;width:340px;margin:0 auto}}.mec-events-meta-group-booking{position:relative}.mec-cover-loader:after{content:'';position:absolute;top:0;right:0;left:0;bottom:0;background:rgba(255,255,255,.5);z-index:99999}.mec-loader{background:rgba(0,0,0,0);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);z-index:9}.mec-loader,.mec-loader:after{border-radius:50%;width:5em;height:5em;z-index:999999999999}.mec-loader{font-size:10px;text-indent:-9999em;border-top:.5em solid rgba(0,0,0,.2);border-right:.5em solid rgba(0,0,0,.2);border-bottom:.5em solid rgba(0,0,0,.2);border-left:.5em solid #fff;-webkit-transform:translateZ(0);-ms-transform:translateZ(0);transform:translateZ(0);-webkit-animation:mecloader 1.1s infinite linear;animation:mecloader 1.1s infinite linear}@-webkit-keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.mec-google-recaptcha{margin:0 0 20px 16px}.mec-wrap *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap :after,.mec-wrap :before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap .clearfix:after,.mec-wrap .clearfix:before{content:'\0020';display:block;overflow:hidden;visibility:hidden;width:0;height:0}.mec-wrap .clearfix:after{clear:both}.mec-wrap .clearfix{zoom:1}.mec-wrap .clear,.mec-wrap .clr{clear:both;display:block;overflow:hidden;visibility:hidden}.mec-wrap .clr{visibility:visible;overflow:visible}.mec-container [class*=col-] img{max-width:100%}.mec-container{margin-right:auto;margin-left:auto;padding-left:10px;padding-right:10px}.mec-container:after,.mec-container:before{content:" ";display:table}.mec-container:after{clear:both}@media only screen and (max-width:479px){.mec-container{width:300px}}@media only screen and (min-width:480px) and (max-width:767px){.mec-container{width:420px}}@media only screen and (min-width:768px) and (max-width:960px){.mec-container{width:768px}}@media only screen and (min-width:961px){.mec-container{width:960px}}@media only screen and (min-width:1200px){.mec-container{width:1196px;padding-left:15px;padding-right:15px}}@media only screen and (min-width:1921px){.mec-container{max-width:1690px}}.mec-wrap .row{margin-left:-10px;margin-right:-10px}.mec-wrap .row:after,.mec-wrap .row:before{content:" ";display:table}.mec-wrap .row:after{clear:both}.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{position:relative;min-height:1px;padding-left:10px;padding-right:10px}@media only screen and (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{padding-left:15px;padding-right:15px}.mec-wrap .row{margin-left:-15px;margin-right:-15px}}.mec-container [class*=col-].alpha{padding-left:0}.mec-container [class*=col-].omega{padding-right:0}.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{float:left}.mec-wrap .col-xs-12{width:100%}.mec-wrap .col-xs-11{width:91.66666666666666%}.mec-wrap .col-xs-10{width:83.33333333333334%}.mec-wrap .col-xs-9{width:75%}.mec-wrap .col-xs-8{width:66.66666666666666%}.mec-wrap .col-xs-7{width:58.333333333333336%}.mec-wrap .col-xs-6{width:50%}.mec-wrap .col-xs-5{width:41.66666666666667%}.mec-wrap .col-xs-4{width:33.33333333333333%}.mec-wrap .col-xs-3{width:25%}.mec-wrap .col-xs-2{width:16.666666666666664%}.mec-wrap .col-xs-1{width:8.333333333333332%}@media (min-width:768px){.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9{float:left}.mec-wrap .col-sm-12{width:100%}.mec-wrap .col-sm-11{width:91.66666666666666%}.mec-wrap .col-sm-10{width:83.33333333333334%}.mec-wrap .col-sm-9{width:75%}.mec-wrap .col-sm-8{width:66.66666666666666%}.mec-wrap .col-sm-7{width:58.333333333333336%}.mec-wrap .col-sm-6{width:50%}.mec-wrap .col-sm-5{width:41.66666666666667%}.mec-wrap .col-sm-4{width:33.33333333333333%}.mec-wrap .col-sm-3{width:25%}.mec-wrap .col-sm-2{width:16.666666666666664%}.mec-wrap .col-sm-1{width:8.333333333333332%}}@media (min-width:961px){.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9{float:left}.mec-wrap .col-md-12{width:100%}.mec-wrap .col-md-11{width:91.66666666666666%}.mec-wrap .col-md-10{width:83.33333333333334%}.mec-wrap .col-md-9{width:75%}.mec-wrap .col-md-8{width:66.66666666666666%}.mec-wrap .col-md-7{width:58.333333333333336%}.mec-wrap .col-md-6{width:50%}.mec-wrap .col-md-5{width:41.66666666666667%}.mec-wrap .col-md-4{width:33.33333333333333%}.mec-wrap .col-md-3{width:25%}.mec-wrap .col-md-2{width:16.666666666666664%}.mec-wrap .col-md-1{width:8.333333333333332%}}@media (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9{float:left}.mec-wrap .col-lg-12{width:100%}.mec-wrap .col-lg-11{width:91.66666666666666%}.mec-wrap .col-lg-10{width:83.33333333333334%}.mec-wrap .col-lg-9{width:75%}.mec-wrap .col-lg-8{width:66.66666666666666%}.mec-wrap .col-lg-7{width:58.333333333333336%}.mec-wrap .col-lg-6{width:50%}.mec-wrap .col-lg-5{width:41.66666666666667%}.mec-wrap .col-lg-4{width:33.33333333333333%}.mec-wrap .col-lg-3{width:25%}.mec-wrap .col-lg-2{width:16.666666666666664%}.mec-wrap .col-lg-1{width:8.333333333333332%}}#mec_woo_add_to_cart_btn{min-width:170px;margin-top:5px;text-align:center}.mec-breadcrumbs{border-radius:2px;padding:9px 15px 6px;font-size:11px;color:#8d8d8d;letter-spacing:0;text-transform:none;font-weight:500;margin:auto 15px 33px 15px;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.025)}.mec-breadcrumbs-modern{margin:auto 0 33px 0}.mec-breadcrumbs a{color:#000;padding-left:4px}.mec-breadcrumbs a:hover{text-decoration:underline}.mec-breadcrumbs i{font-size:8px;margin:0 0 0 4px}.mec-breadcrumbs .container{padding-left:20px}.mec-content-notification a{margin-left:5px}.mec-content-notification{background:#f7f7f7;padding:10px 10px 10px;border:1px solid #e8e8e8}.mec-content-notification p{margin-bottom:0}.mec-fes-form #mec-advanced-wraper div:first-child>ul{border:1px solid #cfeff5;width:auto;box-shadow:0 1px 4px -2px #cfeff5;display:block;margin:5px 0 10px;padding:5px 0;border-radius:2px}.mec-fes-form #mec-advanced-wraper div:first-child>ul:last-of-type{margin-bottom:35px}#mec-advanced-wraper div:first-child>ul span{display:none}#mec-advanced-wraper div:first-child>ul *{display:inline-block;background:#fff;font-size:12px;color:#717273;text-align:center}#mec-advanced-wraper div:first-child>ul>li{width:60px;font-weight:700;margin:0 10px 0 0;padding:4px 0;border-right:1px solid #cfeff5}#mec-advanced-wraper div:first-child>ul>ul>li{margin:0;padding:2px 10px;cursor:pointer;border-radius:2px;transition:all .18s ease}.mec-fes-form #mec-advanced-wraper div:first-child>ul>ul>li.mec-active,.mec-fes-form #mec-advanced-wraper div:first-child>ul>ul>li:hover{background:#40d9f1!important;box-shadow:0 1px 9px -3px #40d9f1;color:#fff!important}.mec-search-bar-wrap .mec-search-form .mec-text-input-search{width:83%}.mec-search-bar-wrap .mec-search-form .mec-ajax-search-result .mec-text-input-search{width:100%;float:none}.mec-search-bar-wrap input#mec-search-bar-input{width:calc(100% - 84%);margin-left:11px;background:#40d9f1;Color:#fff;font-weight:400}.mec-text-input-search+input#mec-search-bar-input{margin-left:-3px}.mec-search-bar-wrap input#mec-search-bar-input:hover{background:#000}.mec-wrap.mec-search-bar-wrap .mec-totalcal-box input{float:none}@media(max-width:768px){.mec-search-bar-wrap .mec-search-form .mec-text-input-search{display:inline-block}}@media(max-width:480px){.mec-search-bar-wrap .mec-search-form .mec-text-input-search{width:64%}.mec-search-bar-wrap input#mec-search-bar-input{width:calc(100% - 67%)}}.mec-wrap.mec-search-bar-wrap .mec-totalcal-box{overflow:visible}.mec-ajax-search-result{position:relative}.mec-search-bar-wrap.mec-wrap .mec-totalcal-box input[type=text]{width:calc(100% - 36px)}.mec-search-bar-wrap.mec-wrap .mec-totalcal-box input[type=text]:focus{border-color:#efefef}div#mec-ajax-search-result-wrap{position:absolute;top:100%;opacity:0;visibility:hidden;width:calc(100% - 2px);min-height:50px;left:0;right:0;padding:0 10px;z-index:9999;transition:all .3s ease}.mec-ajax-search-result-events{background:#fff;padding:10px 20px;border:1px solid #efefef;border-top:none}.mec-ajax-search-result-events article:first-of-type{border:none}article.mec-search-bar-result{text-align:left;margin-bottom:0;padding-bottom:25px;padding-top:26px;border-top:1px solid #efefef;transition:all .33s ease;clear:both}.mec-search-bar-result .mec-event-list-search-bar-date{width:64px;height:64px;margin-right:10px;font-size:11px;text-transform:uppercase;float:left;text-align:center;padding-top:2px}.mec-search-bar-result .mec-event-list-search-bar-date span{font-size:40px;line-height:30px;font-weight:700;display:block;margin-bottom:6px;letter-spacing:1px}.mec-search-bar-result .mec-event-image{float:left;margin-right:20px;width:65px;height:auto}.mec-search-bar-result .mec-event-time{font-size:11px;line-height:1.1;margin:0}.mec-search-bar-result .mec-event-time i{color:#40d9f1;float:none;width:unset;height:unset;font-size:inherit;margin-right:3px;border:none;padding:0}.mec-search-bar-result .mec-event-title{font-size:13px;padding:0;margin:10px 0 8px;font-weight:700;text-transform:uppercase}.mec-search-bar-result .mec-event-title a{text-decoration:none;color:#494949;transition:color .3s ease}.mec-search-bar-result .mec-event-detail{font-size:13px;line-height:1.3;font-family:Roboto,sans-serif;color:#9a9a9a;margin-bottom:0}.mec-wrap.mec-modern-search-bar .mec-totalcal-box{background:rgba(255,255,255,.87);border:none;padding:35px;border-radius:3px;box-shadow:0 3px 13px rgba(0,0,0,.4);position:relative}.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=search],.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=text]{height:58px;background:rgba(255,255,255,.99);border-radius:2px;box-shadow:0 4px 8px rgba(0,0,0,.1) inset;border:1px solid #ccc;width:100%;padding-left:45px;padding-right:13px;font-size:16px}.mec-wrap.mec-modern-search-bar .mec-totalcal-box .mec-text-input-search i{position:absolute;background:0 0;border:none;font-size:21px;left:15px;top:calc(50% - 19px);color:#40d9f1}.mec-wrap.mec-modern-search-bar .mec-text-input-search{position:relative;height:58px}.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=submit]{height:58px;border:none;border-radius:2px;background:#fc4a1a;font-size:17px;font-weight:700!important}.mec-wrap.mec-modern-search-bar .mec-text-input-search+input#mec-search-bar-input{margin-left:0}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{height:45px;background:rgba(255,255,255,.99);border-radius:2px;box-shadow:0 4px 8px rgba(0,0,0,.1) inset;border:1px solid #ccc;padding-right:13px;font-size:16px;border-left:0}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap i{height:45px;background:#ffff;border-radius:2px 0 0 2px;box-shadow:none;border:1px solid #ccc;font-size:15px;padding-top:14px;border-right:0;color:#40d9f1;margin-right:-1px}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap{min-height:64px}@media(max-width:768px){.mec-wrap.mec-modern-search-bar .mec-search-form .mec-text-input-search{width:70%}.mec-wrap.mec-modern-search-bar input#mec-search-bar-input{width:calc(100% - 72%)}}@media(max-width:480px){.mec-wrap.mec-modern-search-bar input#mec-search-bar-input{width:92%;padding:0 10px;position:relative;display:block;margin-left:11px}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-text-input-search{width:100%;margin-bottom:20px}.mec-wrap.mec-modern-search-bar .mec-text-input-search+input#mec-search-bar-input{margin-left:10px}}.mec-related-events-wrap{margin-top:50px}.mec-related-events-wrap h3.mec-rec-events-title:before{content:"";background:#2c2f34;width:46px;height:4px;position:absolute;top:59px;left:0}.mec-related-events-wrap h3.mec-rec-events-title{font-size:21px;font-weight:600;padding:17px 0;margin-bottom:28px;text-transform:uppercase;border-bottom:1px solid #e8e8e8;position:relative}.mec-related-event-post figure{margin:0}.mec-related-event-post figure img{width:100%}.mec-related-event-content{background-color:#fff;margin:-27px 30px 15px;position:relative;max-width:90%;padding:13px 21px 16px 19px}.mec-related-event-content h5 a{font-size:16px;color:#121212;font-weight:600;transition:all .3s ease}.mec-fes-form-cntt #mec-organizer-payments ul{list-style:none;background:0 0;margin:0}.mec-fes-form-cntt #mec-organizer-payments ul li h4{background:0 0;letter-spacing:.2px;display:inline-block;padding-left:0!important;padding-bottom:10px!important;margin:0;margin-bottom:1px;letter-spacing:1px;text-transform:capitalize;padding-top:1px}.mec-fes-form-cntt #mec-organizer-payments ul>li{width:100%;display:inline-block;vertical-align:top;padding:0;margin:0}#mec-login-form.mec-login-form{width:100%;background:#fff;padding:20px;margin:0 auto;text-align:center;position:relative}#mec-login-form.mec-login-form .mec-login-input{display:block;width:286px;margin:0 auto;margin-bottom:12px}#mec-login-form.mec-login-form .mec-login-forgotpassword{display:inline-block}.mec-login-forgotpassword a{color:#000}#mec-login-form.mec-login-form .mec-login-submit{float:right;text-align:right;width:49%;padding-right:2px}#mec-login-form.mec-login-form .mec-login-input input{border:none;box-shadow:none;background:#fff;color:#ccc;border-left:1px solid #e6e6e6;padding:0;height:100%;background-image:none!important;padding-left:10px;padding-right:0;width:222px;margin-left:0;clear:none;float:left}#mec-login-form.mec-login-form .mec-login-input label{border:1px solid #e6e6e6;height:52px;display:inline-block;padding:0;border-radius:3px;overflow:hidden;box-shadow:0 2px 4px rgba(0,0,0,.04)}#mec-login-form.mec-login-form .mec-login-input label i{padding:15px 13px 17px 16px;vertical-align:middle;font-size:20px;width:50px;color:#c5cad0;background:#fafafa;margin-right:0;float:left}#mec-login-form.mec-login-form .mec-login-forgotpassword{float:left;width:49%;text-align:left;padding-top:10px;font-size:13px;padding-left:2px}#mec-login-form.mec-login-form button{width:120px;height:44px;border:none;color:#fff;border-radius:3px;font-size:12px;font-weight:700;letter-spacing:1px;text-transform:uppercase;transition:all .22s ease;margin:0;min-width:unset}.mec-login-form button{box-shadow:0 4px 22px -7px #40d9f1;background-color:#40d9f1}#mec-login-form.mec-login-form button:hover{background:#222;box-shadow:0 3px 14px -4px #333}#mec-login-form.mec-login-form .mec-login-form-footer{width:286px;margin:0 auto;margin-top:20px;clear:both;position:relative;display:block;min-height:50px}#mec-login-form.mec-login-form .mec-ajax-login-loading{position:absolute;background:#ffffffc2;left:0;right:0;top:0;bottom:0}#mec-login-form.mec-login-form .lds-ripple{position:absolute;width:64px;height:64px;top:calc(50% - 23px);left:calc(50% - 23px)}#mec-login-form.mec-login-form .lds-ripple div{position:absolute;border:4px solid #40d9f1;opacity:1;border-radius:50%;animation:lds-ripple 1.2s cubic-bezier(0,.2,.1,.8) infinite}#mec-login-form.mec-login-form .lds-ripple div:nth-child(2){animation-delay:-.5s}#mec-login-form.mec-login-form .mec-ajax-login-loading-text{position:absolute;min-width:200px;top:calc(50% - 18px);left:calc(50% - 124px);color:#fff;padding:10px 22px;border-radius:3px;background:#fff;height:47px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text strong{color:#3fcc60}#mec-login-form.mec-login-form .mec-ajax-login-loading-text strong:before{content:"";position:absolute;top:8px;left:1px;border-right:2px solid #3fcc60;border-bottom:2px solid #3acb5c;transform:rotate(45deg);transform-origin:0 100%;color:#000;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards;width:8px;height:14px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong:after{content:"";position:absolute;top:14px;left:5px;border-bottom:2px solid #ff5d39;transform:rotate(45deg);transform-origin:0 100%;color:#000;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards;width:14px;height:4px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong{color:#ff5d39}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong:before{border-color:#ff5d39;border-bottom:none}@keyframes lds-ripple{0%{top:28px;left:28px;width:0;height:0;opacity:1}100%{top:-1px;left:-1px;width:58px;height:58px;opacity:0}}.mec-book-form-gateway-checkout [id*=mec_do_transaction_stripe_] .mec-form-row:first-child{margin-bottom:20px}.mec-events-meta-group-booking .StripeElement{box-sizing:border-box;height:40px;padding:10px 12px;border:1px solid transparent;border-radius:4px;background-color:#fff;box-shadow:0 1px 3px 0 #e6ebf1;-webkit-transition:box-shadow 150ms ease;transition:box-shadow 150ms ease;margin-bottom:20px;background:#fff}.mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text]{box-sizing:border-box;height:40px;padding:10px 12px;border:0!important;border-radius:4px;background-color:#fff;box-shadow:0 1px 3px 0 #e6ebf1!important;-webkit-transition:box-shadow 150ms ease;transition:box-shadow 150ms ease;margin-bottom:20px;background:#fff!important}.mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text]:focus{outline:0}.mec-events-meta-group-booking .StripeElement--focus{box-shadow:0 1px 3px 0 #cfd7df}.mec-events-meta-group-booking .StripeElement--invalid{border-color:#fa755a}.mec-events-meta-group-booking .StripeElement--webkit-autofill{background-color:#fefde5!important}.mec-booking-tab-content .button,.mec-booking-tab-content .mec-reg-field-add-option,.mec-fes-form .mec-form-row .button:not(.wp-color-result),.mec-fes-form input[type=file],ul#mec_reg_form_fields li .mec_reg_field_remove{height:40px;margin-top:1px;text-decoration:none;font-size:14px;line-height:34px!important;margin:0;padding:0 15px 1px!important;text-transform:none;letter-spacing:0;font-weight:600;color:#40d9f1;background:#fff;border-radius:3px;margin-right:8px;border:2px solid #cfeff5;box-shadow:0 2px 6px -3px #cfeff5}.mec-booking-tab-content .button:hover,.mec-booking-tab-content .mec-reg-field-add-option:hover,.mec-fes-form .mec-form-row .button:not(.wp-color-result):hover{background:#40d9f1;color:#fff;border-color:#40d9f1;box-shadow:0 2px 6px -3px #40d9f1}.mec-fes-form .mec-form-row input+button.button{vertical-align:top}.mec-fes-form .mec-form-row .quicktags-toolbar input.button.button-small{border-width:1px;padding:0 7px;color:#80c6d2;font-weight:400;margin:1px;transform:none}.mec-fes-form input[type=file]{max-width:166px;text-align:center;height:44px;transition:all .2s ease;border-radius:5px!important;border:2px dashed #b8e9f3}.mec-fes-form input[type=file]:hover{box-shadow:0 2px 16px -3px #cfeff5}.mec-fes-form input[type=file]::-webkit-file-upload-button{visibility:hidden;width:1px;height:38px}.mec-fes-form input[type=file]::-moz-file-upload-button{visibility:hidden;width:1px;height:38px}.mec-fes-form .mec-meta-box-fields>label{padding:0}#mec_reg_form_fields li{list-style:none}ul#mec_reg_form_fields{padding:0;margin:0}ul#mec_reg_form_fields li{background:#f8feff;margin:6px -20px;padding:15px 25px 10px;width:auto;font-size:13px;border-top:1px solid #e8fafd;border-bottom:1px solid #e8fafd;position:relative}ul#mec_reg_form_fields li .mec_reg_field_remove{position:absolute;right:10px;top:10px;margin:0;padding:6px 8px!important;font-size:11px;line-height:12px!important;min-height:10px;height:auto;display:block;cursor:pointer;color:#ea6485;border-color:#ffd2dd;letter-spacing:.4px}ul#mec_reg_form_fields li .mec_reg_field_remove:hover{background:#ea6485;color:#fff;border-color:#ea6485;box-shadow:0 2px 6px -3px #ea6485}#mec_reg_form_fields input[type=checkbox],#mec_reg_form_fields input[type=radio],.mec-form-row input[type=checkbox],.mec-form-row input[type=radio]{background-color:#fff;border:1px solid #cfeff5;box-shadow:0 1px 3px -1px #cfeff5;padding:9px;border-radius:3px;min-width:24px;min-height:24px;display:inline-block!important;vertical-align:middle;float:none;transition:all .18s ease;outline:0;margin:1px 4px 4px 0;text-align:left;cursor:pointer;-webkit-appearance:none;-moz-appearance:none}#mec_reg_form_fields input[type=checkbox]:focus,#mec_reg_form_fields input[type=radio]:focus,.mec-form-row input[type=checkbox]:focus,.mec-form-row input[type=radio]:focus{outline:0}#mec_reg_form_fields input[type=radio],.mec-form-row input[type=radio]{-webkit-appearance:none;border-radius:20px!important;min-width:20px;min-height:20px;margin:0 0 4px 0;vertical-align:middle}#mec_reg_form_fields input[type=checkbox]:hover,#mec_reg_form_fields input[type=radio]:hover,.mec-form-row input[type=checkbox]:hover,.mec-form-row input[type=radio]:hover{border-color:#40d9f1}#mec_reg_form_fields input[type=checkbox]:checked,#mec_reg_form_fields input[type=radio]:checked,.mec-fes-form .mec-form-row input[type=checkbox]:checked,.mec-fes-form .mec-form-row input[type=radio]:checked{box-shadow:0 1px 6px -2px #40d9f1;border-color:#40d9f1;background:#40d9f1!important;border-radius:2px;position:relative}.mec-form-row input[type=radio]:checked{box-shadow:0 1px 6px -2px #40d9f1,inset 0 0 0 3px #fff!important}#mec_reg_form_fields input[type=checkbox]:checked::before,.mec-form-row input[type=checkbox]:checked:before{content:"";font:normal;position:absolute;top:12px;left:5px;margin:0;vertical-align:middle;line-height:1;border-right:2px solid #fff!important;border-bottom:2px solid #fff!important;transform:rotate(45deg);transform-origin:0 100%;color:#fff;transition:all .2s ease;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards}@keyframes checkbox-check{0%{width:0;height:0;border-color:#fff;transform:translate3d(0,0,0) rotate(45deg)}33%{width:6px;height:0;transform:translate3d(0,0,0) rotate(45deg)}100%{width:6px;height:12px;border-color:#fff;transform:translate3d(0,-12px,0) rotate(45deg)}}#mec_reg_form_field_types .button{position:relative;outline:0;border-radius:50px;padding:2px 21px 2px 31px!important;line-height:1;font-size:11px;font-weight:600;color:#40d9f1;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 2px 6px -3px #40d9f1;border:2px solid #cfeff5}#mec_fes_location_remove_image_button,#mec_fes_organizer_remove_image_button,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button,#mec_meta_box_tickets_form [id^=mec_ticket_row] button,#mec_reg_form_field_types .button.red{color:#ea6485;box-shadow:0 2px 6px -3px #ea6485;background:#fff;border-color:#ffd2dd}#mec_fes_location_remove_image_button:hover,#mec_fes_organizer_remove_image_button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button:hover,#mec_meta_box_tickets_form [id^=mec_ticket_row] button:hover,#mec_reg_form_field_types .button.red:hover{background:#ea6485;color:#fff}#mec_reg_form_field_types .button:before{position:absolute;left:12px;color:#40d9f1;content:"\e095";font-family:simple-line-icons;font-size:13px;display:inline-block}#mec_reg_form_field_types .button.red:before{color:#ea6485}#mec_reg_form_field_types .button.red:hover:before,#mec_reg_form_field_types .button:hover:before{color:#fff}#mec_fes_location_remove_image_button:hover,#mec_fes_organizer_remove_image_button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button:hover,#mec_meta_box_tickets_form [id^=mec_ticket_row] button:hover,#mec_price_per_dates_container .button:hover,#mec_reg_form_field_types .button.red:hover{color:#fff;border:2px solid #ea6485}#mec_taxes_fees_container_toggle [id^=mec_remove_fee_button],#mec_ticket_variations_list [id^=mec_remove_ticket_variation_button]{color:#ea6485;border-color:#ffd2dd}#mec_taxes_fees_container_toggle [id^=mec_remove_fee_button]:hover,#mec_ticket_variations_list [id^=mec_remove_ticket_variation_button]:hover{color:#fff;border:2px solid #ea6485;background:#ea6485}#mec_fees_list [id^=mec_remove_fee_button],#mec_meta_box_ticket_variations_form .mec-form-row [id^=mec_remove_ticket_variation_button]{margin-left:14px!important}#mec_meta_box_hourly_schedule_days .mec-add-hourly-schedule-button{line-height:10px!important}#mec_meta_box_tickets_form [id^=mec_ticket_row] .mec_add_price_date_button{color:#40d9f1;box-shadow:0 2px 6px -3px #40d9f1;border:2px solid #cfeff5}#mec_meta_box_tickets_form [id^=mec_ticket_row] .mec_add_price_date_button:hover,#mec_reg_form_field_types .button:hover{color:#fff;border:2px solid #40d9f1;background:#40d9f1}.mec-form-row input+span.mec-tooltip,.mec-form-row select+span.mec-tooltip{bottom:10px}.mec-form-row label+span.mec-tooltip{bottom:8px}.mec-form-row textarea+span.mec-tooltip{bottom:auto;vertical-align:top;top:12px}.mec-form-row span+span.mec-tooltip{bottom:0;vertical-align:middle}.mec-form-row .mec-col-8 input[type=text],.mec-form-row .mec-col-8 select,.mec-form-row .mec-col-8 span.mec-archive-skins{vertical-align:top}.mec-form-row input:disabled{opacity:.6;background:#f6f6f6}.mec-form-row p{font-size:12px!important;line-height:18px!important;color:#97b2bb!important}.mec-form-row p.description{font-style:italic}.ui-datepicker.ui-widget{border:1px solid #e8e8e8;box-shadow:0 1px 9px rgba(0,0,0,.12);font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif}table.ui-datepicker-calendar{margin-bottom:0}.ui-datepicker-calendar th{font-weight:700;color:#4a4b4c}.ui-datepicker-calendar td,.ui-datepicker-calendar th,.ui-datepicker-calendar tr{border:none}.ui-datepicker.ui-widget select{font-weight:600;font-size:12px;display:inline-block;border-radius:2px;padding:2px 10px;margin:5px 3px;width:auto;min-height:20px;height:26px;border:1px solid #e3e3e3;box-shadow:inset 0 1px 3px rgba(0,0,0,.04)}.ui-datepicker.ui-widget table{border-spacing:2px;border:none}.ui-datepicker.ui-widget td,.ui-datepicker.ui-widget tr{padding:0;background:0 0!important}.ui-datepicker.ui-widget td a{color:#9a9b9c;font-weight:600;width:30px;height:30px;line-height:30px;display:inline-block;border-radius:33px;padding:0;background:#fff;transition:all .2s ease}.ui-datepicker.ui-widget td a.ui-state-active,.ui-datepicker.ui-widget td a:hover{background:#40d9f1;color:#fff}.ui-datepicker.ui-widget .ui-datepicker-next,.ui-datepicker.ui-widget .ui-datepicker-prev{color:#40d9f1;width:30px;height:30px;line-height:30px;display:inline-block;text-align:center;border-radius:33px;background:#ecfcff;transition:all .2s ease}.ui-datepicker.ui-widget .ui-datepicker-next:hover,.ui-datepicker.ui-widget .ui-datepicker-prev:hover{background:#fff;box-shadow:0 0 7px -3px rgba(0,0,0,.4)}.mec-fes-form .mec-tooltip .dashicons-before:before{color:#40d9f1}.mec-fes-form button[type=submit].mec-fes-sub-button{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;border-radius:3px;background:#40d9f1;color:#fff;height:54px;font-size:17px;font-weight:700;box-shadow:0 2px 8px -4px #40d9f1;display:block;transition:all .28s ease;text-transform:uppercase;margin:20px 0 0;padding:14px 20px;border:0;cursor:pointer;text-align:center;letter-spacing:.1em;line-height:1}.mec-fes-form button[type=submit].mec-fes-sub-button:hover{box-shadow:0 2px 12px -2px #40d9f1}.mec-fes-form button[type=submit].mec-fes-sub-button:focus{margin-bottom:-2px;background:#1dc2dc}.mec-fes-form .mec-title span.mec-dashicons{color:#40d9f1;float:left;margin-right:5px}.mec-fes-form .mec-tooltip .box h5{padding:14px 2px}#mec_fes_form,.mec-fes-form-top-actions{max-width:838px;margin:0 auto}@media only screen and (min-width:961px){.mec-fes-form .mec-fes-form-cntt{width:calc(100% - 300px);float:left;padding-right:20px;max-width:538px;display:block}.mec-fes-form .mec-fes-form-sdbr{width:300px}}.mec-fes-form .quicktags-toolbar,.mec-fes-form div.mce-toolbar-grp{background:#ecfcff;border-bottom:1px solid #cfeff5;box-shadow:0 1px 0 1px #cfeff5}.mec-fes-form .quicktags-toolbar{margin-right:-1px;border-top:1px solid #cfeff5}.mec-fes-form div.mce-statusbar{border-top-color:#cfeff5}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-listbox{border:1px solid #cfeff5;border-radius:3px}.mec-fes-form .mce-tinymce.mce-container.mce-panel{border:1px solid #cfeff5;box-shadow:0 2px 6px -3px #cfeff5;border-radius:2px 0 2px 2px}.mec-fes-form .wp-editor-tools .wp-media-buttons{transform:translateY(-6px);margin-top:-6px}.mec-fes-form .wp-editor-tabs{padding-right:0;margin-right:-2px}.mec-fes-form .wp-editor-tabs .wp-switch-editor{border-radius:3px 3px 0 0;border-color:#cfeff5;background:#fff;color:#96b8bd;border-bottom:1px solid #ecfcff}.mec-fes-form .html-active .switch-html,.mec-fes-form .tmce-active .switch-tmce,.mec-fes-form .wp-editor-tabs .wp-switch-editor:active{background:#ecfcff;color:#40d9f1}.mec-fes-form .wp-editor-container,.mec-fes-form div.mce-edit-area.mce-panel{border:none;box-shadow:none}.mec-fes-form .wp-editor-container textarea.wp-editor-area{max-width:100%}.mec-fes-form .mce-toolbar .mce-listbox button{font-size:12px;line-height:22px;color:#798f96}.mec-fes-form .mce-toolbar .mce-ico{color:#627f88}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-active,.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn:active,.mec-fes-form .qt-dfw.active{background:#fff;border-color:#40d9f1;box-shadow:inset 0 2px 6px -3px rgba(106,231,255,.7)}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-active .mce-ico{color:#40d9f1}body .mce-menu .mce-menu-item.mce-active.mce-menu-item-normal,body .mce-menu .mce-menu-item.mce-selected,body .mce-menu .mce-menu-item:focus,body .mce-menu .mce-menu-item:hover,body.mce-menu .mce-menu-item.mce-active.mce-menu-item-preview{background:#40d9f1;color:#fff}.mec-fes-form .mec-not-in-days-day{display:inline-block;padding:4px 32px 4px 15px;border-radius:33px;border:1px solid #cfeff5;box-shadow:0 1px 3px -1px #cfeff5;background:#fbfeff;color:#40d9f1;vertical-align:top}.mec-fes-form .mec-not-in-days-remove{display:inline-block;padding:0 1px 0 0;margin-left:-30px;vertical-align:sub;background:#ff918a;color:#fff;font-family:cursive;width:21px;height:21px;line-height:17px;text-align:center;border-radius:20px;cursor:pointer}.mec-fes-list ul li .mec-event-status{float:left;margin-right:10px;margin-left:0;font-size:11px;font-weight:400;letter-spacing:.3px;border-radius:3px;padding:4px 8px}.mec-fes-form .post-status.mec-book-confirmed:before,.mec-fes-list ul li .mec-event-status.mec-book-confirmed:before{content:"";margin:0;vertical-align:middle;line-height:1;border-right:2px solid #fff!important;border-bottom:2px solid #fff!important;transform:rotate(45deg);color:#fff;width:6px;height:12px;float:left;margin-right:6px}.mec-fes-list ul li .mec-fes-event-export a:before,.mec-fes-list ul li .mec-fes-event-remove:before,.mec-fes-list ul li .mec-fes-event-view a:before,.mec-fes-list-top-actions a:before{content:"\e054";font-family:simple-line-icons;font-size:13px;vertical-align:middle}.mec-fes-list ul li .mec-fes-event-view a:before{content:"\e087"}.mec-fes-list-top-actions a:before{content:"\e095";font-weight:400;margin-right:6px}.mec-fes-list ul li .mec-fes-event-export a:before{content:"\e083"}.mec-fes-form .post-status{border-radius:20px}.mec-fes-form .post-status.mec-book-confirmed:before{height:20px;width:9px;margin:3px 10px}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker-calendar th{height:auto;padding:0}.ui-datepicker .ui-datepicker-calendar td a,.ui-datepicker-calendar th{font-size:14px;line-height:30px}.mec-fes-form .description{font-size:16px}.mec-fes-form input[type=file]{text-align:left}.mec-fes-export-wrapper{width:640px;background:#f8feff;padding:40px 25px}.mec-fes-export-wrapper .mec-fes-btn-date{font-size:16px;line-height:44px;overflow:hidden}.mec-fes-export-wrapper .date-messgae{font-family:sans-serif;padding:2px 18px}.mec-fes-list ul li .mec-event-export-csv,.mec-fes-list ul li .mec-event-export-excel{font-size:12px;border:1px solid #40d9f1;padding:1px 4px;background:rgba(141,229,243,.18);border-radius:4px;color:#40d9f1;font-family:sans-serif;cursor:pointer;display:inline-block;height:26px;line-height:22px}.mec-export-badge{font-size:11px;color:#40d9f1;width:auto;height:24px;line-height:25px;display:inline-block;padding:0 8px;text-align:center;border-radius:3px;background:#ecfcff;transition:all .2s ease}.mec-fes-list ul li .mec-fes-event-export{font-size:11px;background:#f7f7f7;float:right;margin-left:5px}.mec-fes-list ul li .mec-fes-event-export:hover{cursor:pointer;background:#90f0e0;border-color:#4dc8cc}.mec-fes-export-wrapper ul{padding:0;width:100%;text-align:center}.mec-fes-export-wrapper ul li{list-style:none;display:inline-block;width:30%;padding:10px 15px 10px 32px;border-radius:3px;margin-bottom:15px;border:1px solid #cfeff5;box-shadow:0 2px 6px -4px #cfeff5;background:#fff;line-height:normal;margin-right:10px;position:relative;cursor:pointer;font-size:13px;line-height:1;transition:all .2s ease}.mec-fes-export-wrapper ul li:nth-child(3n+0){margin-right:0}.mec-fes-export-wrapper ul li:hover{box-shadow:0 2px 16px -1px #c6e8ef}.mec-fes-export-wrapper ul li:before{content:"";position:absolute;display:inline-block;background:#fff;width:15px;height:15px;margin:-1px 0 0 5px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32);border-radius:50%;left:9px;top:calc(50% - 7px)}.mec-fes-export-wrapper ul li.fes-export-date-active{color:#40d9f1}.mec-fes-export-wrapper ul li.fes-export-date-active:before{width:15px;height:15px;border:6px solid #40d9f1;background:#fff;box-shadow:0 3px 16px -3px #40d9f1}.mec-fes-btn-export{margin-left:15px;margin-top:12px}.mec-fes-btn-export span{position:relative;border:none;border-radius:3px;color:#fff!important;display:inline-block;font-size:13px;line-height:1;text-transform:none;font-weight:400;text-decoration:none;cursor:pointer;margin-right:4px;line-height:1;letter-spacing:0;padding:15px 22px;background:#39c36e;box-shadow:0 1px 7px -3px #39c36e!important;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;cursor:pointer;margin-left:6px}.mec-fes-btn-export span:hover{background:#222}.mec-event-export-excel:before,span.mec-event-export-csv:before{content:"\e083";font-family:simple-line-icons;font-size:13px;vertical-align:middle;margin-right:7px;margin-top:-1px;display:inline-block}.mec-fes-list .wn-p-t-right{min-width:170px;max-width:200px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#000;color:#fff;font-weight:400;font-size:14px;letter-spacing:.5px;line-height:1.5;position:absolute;z-index:99999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #535a61;visibility:hidden;opacity:0;transition:opacity .23s;padding:5px 10px 6px;border-radius:8px;text-align:center;font-style:normal}.mec-fes-list .mec-fes-event-export:hover .wn-p-t-right,.mec-fes-list .mec-fes-event-remove:hover .wn-p-t-right,.mec-fes-list .mec-fes-event-view:hover .wn-p-t-right{visibility:visible;opacity:1}.mec-fes-list .wn-p-t-right i{position:absolute!important;top:100%;right:50%;margin-top:-6px!important;margin-right:-6px!important;width:12px;height:24px;overflow:hidden;transform:rotate(-90deg)}.mec-fes-list .wn-p-t-right i:after{content:'';position:absolute;width:12px;height:12px;left:0;top:50%;transform:translate(50%,-50%) rotate(-45deg);background-color:#000;box-shadow:0 8px 9px -4px #535a61}.mec-fes-form .select2-container{min-height:38px;box-sizing:border-box;margin-bottom:8px;padding:0 6px;border-radius:2px;border:1px solid #ddd;box-shadow:inset 0 1px 6px rgba(0,0,0,.07);background-color:#fff;color:#32373c;outline:0;transition:50ms border-color ease-in-out;min-width:200px;font-size:14px}.mec-fes-form .select2-selection{border:none;background:0 0;padding-top:2px;width:100%;height:100%}.mec-fes-form .select2-container--default.select2-container--focus .select2-selection{border:none!important;outline:0}.mec-fes-form .select2-container--default .select2-selection--single .select2-selection__arrow{top:5px;right:4px}.select2-results{font-size:14px}.mec-fes-category-children,.mec-fes-category-children .mec-fes-category-children{padding-left:24px}
|
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:10px}.mec-event-list-minimal .mec-event-detail,.mec-event-list-minimal .mec-time-details{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;font-family:Roboto,sans-serif}.mec-event-list-minimal .btn-wrapper{text-align:right;padding-right:0;padding-top:6px}.mec-event-list-minimal .btn-wrapper .mec-detail-button{border-bottom:0;margin-bottom:14px;margin-right:0;box-shadow:none}.mec-event-list-minimal a.mec-detail-button{text-align:center;display:inline-block;background:#ededed;color:#191919;padding:12px;border-radius:2px;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:2px;transition:all .24s ease}.mec-event-list-minimal a.mec-detail-button:hover{background:#292929;color:#fff}.vc_col-sm-4 .mec-event-list-minimal .mec-event-date,.vc_col-sm-6 .mec-event-list-minimal .mec-event-date{margin-right:12px}.vc_col-sm-4 .mec-event-list-minimal .mec-event-title,.vc_col-sm-6 .mec-event-list-minimal .mec-event-title{font-size:15px;letter-spacing:2px}@media only screen and (min-width:480px) and (max-width:767px){.mec-event-list-minimal .btn-wrapper{padding-left:0}.mec-event-list-minimal .mec-event-date{margin-right:10px}}@media only screen and (max-width:767px){.mec-event-list-minimal .btn-wrapper .mec-detail-button{display:block;text-align:center;margin:0;margin-top:16px;padding:8px}.mec-event-list-minimal .btn-wrapper{margin:12px 0}}@media only screen and (max-width:479px){.mec-event-list-minimal .mec-event-date{float:none;width:100%;margin-bottom:8px}.mec-event-list-minimal .mec-event-date span{display:inline;padding-right:25px;margin-right:7px;font-size:inherit}.mec-event-list-minimal .mec-event-date:after{width:45%;box-shadow:4px 0 4px rgba(0,0,0,.02)}.mec-event-list-minimal .btn-wrapper{text-align:center;padding-left:0}.mec-event-list-minimal{text-align:center}.mec-event-list-minimal .mec-event-detail{margin-bottom:10px}}.mec-wrap .mec-event-list-modern .mec-event-title{margin-top:0;margin-bottom:10px}.mec-event-list-modern .mec-event-article{border-bottom:1px solid #efefef;padding:30px 0 10px}.mec-event-list-modern .mec-event-article:last-child{border-bottom:none}.mec-event-list-modern .mec-event-title a{color:#191919;transition:all .24s ease;box-shadow:none}.mec-event-list-modern .mec-event-date{text-transform:uppercase;padding:10px 0}.mec-event-list-modern .mec-event-date .event-d{font-size:48px;display:table-cell;padding:10px 0 0}.mec-event-list-modern .mec-event-date .event-f{font-size:13px;display:table-cell;vertical-align:middle;padding-left:7px;font-weight:500;letter-spacing:3px;color:#777}.mec-event-list-modern .mec-event-detail{font-weight:300;color:#8a8a8a}.mec-event-list-modern .mec-event-detail .mec-time-details{display:inline}.mec-event-list-modern .mec-event-date .event-da{margin-top:9px;color:silver;font-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,.mec-event-list-classic .mec-event-time{font-weight:400;font-size:13px;letter-spacing:0;line-height:18px;text-align:left;display:initial;margin-right:12px}.mec-event-list-classic .mec-event-time .mec-time-details,.mec-event-list-classic .mec-event-time i{display:inline;margin-right:3px}.mec-event-list-classic .mec-event-date span{font-weight:500;margin-bottom:6px}.mec-event-list-classic .mec-event-title{font-size:15px;margin:10px 0 12px;font-weight:700;text-transform:uppercase}.mec-event-list-classic .mec-event-title a{color:#494949;transition:color .3s ease}.mec-event-list-classic .mec-event-detail{color:#777;font-weight:400;line-height:12px;font-size:12px;overflow:hidden}.mec-event-list-classic a.magicmore{padding:10px 16px;color:#fff;background:#222;letter-spacing:2px;font-size:11px}.mec-event-list-classic a.magicmore:after{content:"";display:none}.mec-event-list-classic a.magicmore:hover{color:#40d9f1}.mec-event-grid-simple .mec-event-article{position:relative;margin-bottom:30px}.mec-event-grid-simple .mec-event-article:after{border-right:1px solid #e6e6e6;height:60px;position:absolute;top:50%;margin-top:-30px;right:-1px}.mec-event-grid-simple .row div:last-child .mec-event-article:after{border:none}.mec-event-grid-simple .row{margin:15px 0 30px;text-align:center}.mec-event-grid-simple .mec-event-date{padding:0;margin:0;text-transform:capitalize;font-size:12px;font-weight:700}.mec-event-grid-simple .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;line-height:21px;font-size:15px;padding-top:5px;text-transform:uppercase;transition:color .37s ease}.mec-event-grid-simple .mec-event-title a{color:#494949;transition:color .3s ease}.mec-event-grid-simple .mec-event-detail{font-family:Roboto,sans-serif;font-weight:400;line-height:1;letter-spacing:0;font-size:13px;color:#777}.mec-event-grid-simple:hover .mec-event-title{color:#40d9f1}.mec-event-grid-simple:hover .mec-event-date{background:0 0}.event-last:after{display:none}@media only screen and (max-width:767px){.mec-event-grid-simple .mec-event-article{padding-bottom:20px;margin-bottom:20px;border-bottom:1px solid #eee}.mec-event-grid-simple .mec-event-article:after{border:none}}.mec-event-grid-novel .mec-event-article{position:relative;margin-bottom:30px;padding:60px 5% 60px 7%;border:1px solid rgba(255,255,255,.12);border-radius:10px;background-color:#0050fd;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease;z-index:1}.mec-event-grid-novel .mec-event-article .novel-grad-bg{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:10px;opacity:0;z-index:-1;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease}.mec-event-grid-novel .mec-event-article:hover{-webkit-box-shadow:0 13px 36px 0 rgba(0,0,0,.23);box-shadow:0 13px 36px 0 rgba(0,0,0,.23);border-color:transparent}.mec-event-grid-novel .mec-event-article:hover .novel-grad-bg{background-image:-webkit-gradient(linear,left top,right top,from(#262e32),to(#0e1015));background-image:-webkit-linear-gradient(left,#262e32 0,#0e1015 100%);background-image:-o-linear-gradient(left,#262e32 0,#0e1015 100%);background-image:linear-gradient(90deg,#262e32 0,#0e1015 100%);opacity:1}.mec-event-grid-novel .mec-event-image{float:left;width:150px;height:150px}.mec-event-grid-novel .mec-event-image img{width:150px;height:150px;border-radius:50%}.mec-event-grid-novel .mec-event-detail-wrap{margin-left:200px}.mec-event-grid-novel .mec-event-content h4{position:relative;margin-bottom:10px;display:inline-block}.mec-event-grid-novel .mec-event-content h4 a{font-size:24px;line-height:35px;color:#fafcff}.mec-event-grid-novel .mec-event-content h4::before{content:'';position:absolute;top:8px;left:-30px;width:17px;height:17px;background:#5cd0ed;opacity:.4;border-radius:50%}.mec-event-grid-novel .mec-event-content h4::after{content:'';position:absolute;top:12px;left:-26px;width:9px;height:9px;background:#5cd0ed;border-radius:50%}.mec-event-grid-novel .mec-event-address,.mec-event-grid-novel .mec-event-detail,.mec-event-grid-novel .mec-event-month{position:relative;padding-left:35px;font-size:15px;line-height:30px;color:rgba(255,255,255,.4)}.mec-event-grid-novel .mec-event-address::before,.mec-event-grid-novel .mec-event-detail::before,.mec-event-grid-novel .mec-event-month::before{position:absolute;top:6px;left:6px;font-size:17px;font-family:simple-line-icons;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1}.mec-event-grid-novel .mec-event-month::before{content:"\e075"}.mec-event-grid-novel .mec-event-detail::before{content:"\e081"}.mec-event-grid-novel .mec-event-address::before{content:"\e096"}.mec-event-grid-novel .mec-event-footer{clear:both;padding:20px 0;border-top:none;background:0 0}.mec-event-grid-novel .mec-event-footer .mec-booking-button{right:auto;left:0;height:42px;width:148px;padding:0 20px;font-size:14px;font-weight:400;line-height:42px;text-align:center;color:#fff;background:0 0;border-color:rgba(255,255,255,.1);border-radius:50px}.mec-event-grid-novel .mec-event-footer .mec-booking-button:hover{background-color:rgba(255,255,255,.1)}.mec-event-grid-novel .mec-event-sharing-wrap{left:175px;cursor:pointer}.mec-event-grid-novel .mec-event-sharing-wrap>li{border-color:rgba(255,255,255,.1);border-radius:50%}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing{top:-5px;left:0;padding:5px 10px 2px 50px;min-width:150px;width:inherit;height:37px;background-color:rgba(255,255,255,.1);-webkit-box-shadow:none;box-shadow:none;border:none;border-radius:50px}.mec-event-grid-novel .mec-event-sharing-wrap:hover>li{background-color:rgba(255,255,255,.1)}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing::after,.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing::before{display:none}.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon,.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon a,.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li i{display:inline}.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon a{padding:0 10px}.mec-event-grid-novel .mec-event-sharing-wrap>li a{color:#fff}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li a{color:rgba(255,255,255,.4)}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li a:hover{color:rgba(255,255,255,1)}@media only screen and (max-width:1200px){.mec-event-grid-novel .row .col-md-6.col-sm-6{width:100%;float:none}.mec-event-grid-novel .mec-event-image{float:none;margin-top:-20px;margin-bottom:20px}.mec-event-grid-novel .mec-event-detail-wrap{margin-left:20px}.mec-event-grid-novel .mec-event-footer{margin-top:30px}}@media only screen and (max-width:767px){.mec-event-grid-novel .mec-event-footer{margin-top:0;padding-top:30px;margin-bottom:24px}.mec-event-grid-novel .mec-event-footer .mec-booking-button{display:block;position:relative}.mec-event-grid-novel .mec-event-sharing-wrap{left:0;bottom:-55px}.mec-event-grid-novel .mec-event-content h4 a{font-size:20px;line-height:1.3}}.mec-event-cover-modern{position:relative}.mec-event-cover-modern .mec-event-cover-a{background:0 0;position:absolute;color:#fff;bottom:0;left:0;text-decoration:none}.mec-event-cover-modern .mec-event-cover-a .mec-event-overlay{transition:all .5s;opacity:.8;width:100%;height:100%;position:absolute}.mec-event-cover-modern .mec-event-cover-a:hover .mec-event-overlay{opacity:1}.mec-event-cover-modern .mec-event-detail{padding:40px;position:relative}.mec-event-cover-modern .mec-event-cover-a:hover .mec-event-tag{color:#333;transition:all .5s}.mec-event-cover-modern .mec-event-cover-a .mec-event-title:hover{text-decoration:underline}.mec-event-cover-modern .mec-event-tag{background:#fff;display:inline-block;padding:5px 9px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:24px}.mec-event-cover-modern .mec-event-date{text-transform:uppercase;font-size:17px;font-weight:300}.mec-event-cover-modern .mec-event-title{color:#fff;text-transform:uppercase;font-size:40px;font-weight:700;margin:6px 0}.mec-event-cover-modern .mec-event-place{font-weight:400;font-size:18px;font-family:Roboto,sans-serif}@media only screen and (max-width:767px){.mec-event-cover-modern .mec-event-cover-a{width:100%}}.mec-event-cover-classic{position:relative;overflow:hidden;background:#fff;padding:6px;border:1px solid #e8e8e8}.mec-event-cover-classic .mec-event-overlay{position:absolute;left:6px;right:6px;bottom:6px;top:6px;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-cover-classic:hover .mec-event-overlay{background-color:rgba(36,36,36,.6)}.mec-event-cover-classic .mec-event-content{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out}.mec-event-cover-classic .mec-event-date{font-size:14px;text-transform:uppercase;font-weight:400;line-height:1.6}.mec-event-cover-classic .mec-event-date span{display:block;font-weight:700;font-size:16px}.mec-event-cover-classic .mec-event-title{color:#fff;margin:20px 0 38px;font-size:24px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-cover-classic .mec-btn-wrapper{text-align:left}.mec-event-cover-classic .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-cover-classic .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:12px 20px;letter-spacing:3px;font-size:12px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-cover-classic .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-cover-classic .mec-event-image img{min-width:100%}@media only screen and (max-width:960px){.mec-event-cover-classic .mec-event-content{padding:20px}.mec-event-cover-classic .mec-event-button{font-size:11px;padding:7px 10px;letter-spacing:1px}.mec-event-cover-classic .mec-event-title{font-size:19px;margin:15px 0 25px}.mec-event-cover-classic .mec-event-date{font-size:12px}}@media only screen and (max-width:767px){.mec-event-cover-classic{margin-bottom:30px}}@media only screen and (max-width:479px){.mec-event-cover-classic .mec-event-content{padding:15px;font-size:15px}.mec-event-cover-classic .mec-event-title{font-size:15px;margin:10px 0}.mec-event-cover-classic .mec-event-button{font-size:10px;padding:6px;letter-spacing:1px}.mec-event-cover-classic .mec-event-icon{padding:10px}}.mec-load-more-wrap{text-align:center;display:block;width:100%;padding-top:20px;text-align:center;position:relative}.mec-load-more-button{box-shadow:none;transition:all .21s ease;font-size:12px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:2px solid #e8e8e8;border-radius:50px;padding:0 28px;margin-bottom:20px;cursor:pointer;line-height:40px;font-family:Montserrat,Helvetica,Arial,sans-serif;height:42px;display:inline-block}.mec-load-more-button:hover{background:#191919;color:#fff;border-color:#191919}.mec-load-more-loading{content:url(../img/ajax-loader.gif);cursor:wait;background:0 0;border-style:none}.mec-load-more-loading:hover{background:0 0}.mec-modal-preloader,.mec-month-navigator-loading{width:100%;height:100%;background:no-repeat rgba(255,255,255,.88) url(../img/ajax-loader.gif) center;border-style:none;position:fixed;left:0;right:0;bottom:0;top:0;z-index:9}.mec-event-calendar-classic .mec-calendar-side .mec-calendar-table{min-height:1024px}.mec-calendar-side .mec-calendar-table{min-height:450px}.mec-skin-weekly-view-events-container.mec-month-navigator-loading{margin-top:0}.mec-calendar.mec-event-calendar-classic .mec-calendar-side{display:block}.mec-skin-daily-view-events-container.mec-month-navigator-loading{margin-top:0}@media only screen and (min-width:961px){.mec-wrap.mec-sm959 .mec-calendar-side .mec-calendar-table{min-height:1px}}@media only screen and (max-width:479px){.mec-calendar-side .mec-calendar-table{min-height:1px}}.mec-event-cover-clean{position:relative;border:1px solid #e6e6e6;padding:8px}.mec-event-cover-clean .mec-event-overlay{height:100%;background-color:rgba(36,36,36,.4);position:absolute;width:100%;left:0;border:8px solid #fff;top:0;transition:all .5s ease-in-out}.mec-event-cover-clean .mec-event-content{color:#fff;position:absolute;bottom:20px;padding:40px 60px;transition:all .5s ease-in-out}.mec-event-cover-clean .mec-event-title{color:#fff;font-weight:700;margin:46px 0 19px;font-size:29px;text-transform:uppercase;text-shadow:0 0 1px rgba(0,0,0,.5)}.mec-event-cover-clean .mec-event-title a{color:#fff;transition:all .5s;text-decoration:none;outline:0;border:none;box-shadow:none}.mec-event-cover-clean .mec-event-title a:hover{text-decoration:underline}.mec-event-cover-clean .mec-event-date{position:absolute;top:-20px;right:60px;color:#fff;width:60px;padding:14px 10px;z-index:1}.mec-event-cover-clean .mec-event-date div{text-align:center;text-transform:uppercase;letter-spacing:1px;line-height:16px}.mec-event-cover-clean .mec-event-date .dday{padding-bottom:15px;border-bottom:1px solid rgba(255,255,255,.5);margin-bottom:13px;font-size:24px}.mec-event-cover-clean .mec-event-date .dmonth{letter-spacing:2px}.mec-event-cover-clean .mec-event-place{font-size:18px;font-family:Roboto,sans-serif}.mec-event-cover-clean .mec-event-image img{width:100%}@media only screen and (max-width:768px){.mec-event-cover-clean .mec-event-content{padding:20px;bottom:5px}.mec-event-cover-clean .mec-event-title{font-size:23px}.mec-event-cover-clean .mec-event-date{right:20px;padding:10px;width:50px}}@media only screen and (max-width:479px){.mec-event-cover-clean .mec-event-content{padding:10px}.mec-event-cover-clean .mec-event-title{font-size:19px;padding-right:25px}.mec-event-cover-clean .mec-event-date{right:-20px;top:-10px}.mec-event-cover-clean .mec-event-detail{font-size:12px}}.mec-month-divider{text-align:center;margin:60px 0 40px 0}.widget .mec-month-divider{margin:10px 0}.mec-month-divider span{text-transform:uppercase;font-size:22px;font-weight:700;padding-bottom:5px;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative}.mec-month-divider span:before{border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-30px;left:50%;width:60px}.widget .mec-month-divider span{font-size:13px}.mec-event-list-standard .mec-events-pagination{margin-top:60px;border-top:4px solid #ebebeb;min-height:80px;padding-top:20px}.mec-event-list-standard .mec-events-pagination .mec-events-pag-previous{float:left;margin-left:0}.mec-event-list-standard .mec-events-pagination .mec-events-pag-next{float:right;margin-right:0}.mec-event-list-standard .mec-event-article{position:relative;display:block;margin-bottom:25px;border:1px solid #e9e9e9;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-list-standard .mec-topsec{display:table;width:100%}.mec-event-list-standard .col-md-3.mec-event-image-wrap{padding-left:0}.mec-event-list-standard .mec-event-content{padding-top:15px;padding-right:30px}.mec-event-list-standard .mec-event-title{font-size:29px;font-weight:700;letter-spacing:-1px;margin:0 0 10px}.mec-event-list-standard .mec-event-title a{color:#292929;transition:color .3s ease}.mec-event-list-standard .mec-col-table-c{display:table-cell;height:100%;vertical-align:middle;float:none!important}.mec-event-list-standard .mec-col-table-c.mec-event-meta-wrap{padding-top:15px}.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{vertical-align:top}.mec-topsec .mec-event-image{line-height:1px}.mec-event-list-standard .mec-event-meta-wrap{border-left:1px solid #eee}.mec-event-list-standard .mec-time-details{text-transform:uppercase;font-size:11px;font-weight:300;padding-top:0;text-align:left;padding-left:30px}.mec-event-list-standard .mec-event-meta .mec-event-address{font-style:normal;letter-spacing:0;font-size:13px;color:#8a8a8a}.mec-event-list-standard .mec-event-meta span.mec-event-d,.mec-event-list-standard .mec-event-meta span.mec-event-m{font-size:17px;font-weight:700;padding-right:6px;color:#444;text-transform:uppercase}.mec-event-list-standard .mec-date-details,.mec-event-list-standard .mec-time-details,.mec-event-list-standard .mec-venue-details{position:relative;padding-left:28px;margin-bottom:10px}.mec-event-list-standard .mec-date-details:before,.mec-event-list-standard .mec-time-details:before,.mec-event-list-standard .mec-venue-details:before{content:"\f041";font-family:fontawesome;position:absolute;left:6px;font-size:15px}.mec-event-list-standard .mec-date-details:before{content:"\f073"}.mec-event-list-standard .mec-time-details:before{content:"\f017"}.mec-event-list-minimal .mec-event-title a{color:#292929;transition:color .3s ease}.mec-event-meta-wrap .mec-price-details{margin-bottom:10px}.mec-price-details i{margin-right:5px;vertical-align:text-top}.mec-event-meta-wrap .mec-event-meta .mec-price-details i:before{font-size:15px}@media only screen and (max-width:960px){.mec-event-list-standard .mec-topsec{display:block}.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:block;width:40%}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{display:block;min-height:230px}.mec-event-list-standard .mec-event-meta-wrap{display:block;border-left:none;border-top:1px solid #eee;width:100%;float:none;padding-top:20px}}@media only screen and (min-width:480px) and (max-width:960px){.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:table-cell}}@media only screen and (max-width:479px){.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap img{float:none;width:100%;padding:0}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{padding:10px 10px 10px 30px}}.mec-wrap .mec-events-cal-links{margin-bottom:0}.mec-single-event #mec-wrap{padding:0;margin-top:35px}.mec-wrap .mec-single-title{margin-top:0;margin-bottom:30px;font-weight:700;font-size:33px}.mec-single-event .mec-event-content{padding:40px 0 30px;margin-bottom:10px}.mec-single-event .mec-events-meta-group-booking,.mec-single-event .mec-frontbox{margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-wrap #main-content{overflow:hidden;padding-top:35px}.mec-single-event .mec-map-get-direction-address-cnt{position:relative}.mec-single-event .mec-map-get-direction-address-cnt input.mec-map-get-direction-address{width:100%;height:46px;padding:13px 10px;margin-bottom:0;background:#fcfcfc;border:1px solid #e0e0e0;border-radius:0;box-shadow:inset 0 2px 5px rgba(0,0,0,.081)}.mec-single-event .mec-map-get-direction-address-cnt input.mec-map-get-direction-address:focus{color:#444;background:#fff;border-color:#b0b0b0;box-shadow:0 0 3px rgba(0,0,0,.2)}.mec-single-event .mec-map-get-direction-btn-cnt input{width:100%}.mec-single-event .mec-map-get-direction-reset{position:absolute;z-index:2;top:5px;right:10px;font-size:11px;cursor:pointer}.mec-events-meta-group-tags{margin-top:20px}.mec-events-meta-group-tags a{display:inline-block;color:#444;font-size:11px;text-transform:uppercase;letter-spacing:1.5px;font-weight:500;padding:3px 7px;border:1px solid #ddd;border-radius:2px;background:#fff;margin:1px 3px}.mec-events-meta-group-tags a:hover{text-decoration:underline;background:#f9f9f9}.mec-local-time-details li{list-style:none}.mec-single-event:not(.mec-single-modern) .mec-local-time-details{background:#f7f7f7;padding:12px 14px 8px;margin-bottom:12px;vertical-align:baseline;position:relative;border:none}.mec-single-event:not(.mec-single-modern) .mec-local-time-details ul{margin:0;padding-left:35px}.mec-single-event:not(.mec-single-modern) .mec-local-time-details h3{border:none;padding-left:15px}.mec-single-event:not(.mec-single-modern) .mec-local-time-details h3:before{display:none}.mec-single-event.mec-single-modern i.mec-sl-speedometer{display:none}.mec-single-event .mec-events-meta-group-booking{padding-bottom:30px}.mec-single-event .mec-events-meta-group-booking ul{list-style:none;margin-left:0;padding-left:0}.mec-single-event .mec-events-meta-group-booking ul li{padding:0;list-style:none;margin-top:40px}.mec-single-event .mec-events-meta-group-booking h4{margin-bottom:20px;font-size:23px;font-weight:700}.mec-single-event .mec-events-meta-group-booking li h4{font-size:19px}.mec-single-event .mec-events-meta-group-booking button,.mec-single-event .mec-events-meta-group-booking input{border-radius:0;margin-bottom:6px}.mec-single-event .mec-events-meta-group-booking button{min-width:170px;margin-top:5px}.mec-single-event .mec-events-meta-group-booking button{margin-left:15px}.mec-single-event .mec-book-form-coupon button{margin-left:0}.mec-single-event .mec-book-form-gateway-checkout button{margin-left:0}.mec-single-event .mec-book-first,.mec-single-event .mec-event-tickets-list{padding-left:15px;padding-right:15px}.mec-single-event label.mec-fill-attendees{margin-left:15px!important}.mec-single-event .mec-events-meta-group-booking .mec-event-ticket-available{display:block;margin-bottom:20px;margin-top:-17px;font-size:11px;color:#8a8a8a}.mec-single-event .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.mec-single-event .mec-events-meta-group-booking form{margin:0}.mec-single-event .mec-events-meta-group-booking h5 span,.mec-single-event .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;display:block;clear:none;padding:5px 1em 3px 0}.mec-single-event .mec-events-meta-group-booking h5 span{display:inline-block}.mec-single-event .mec-events-meta-group-booking h5 span.mec-ticket-variation-name{padding-right:5px;text-transform:capitalize}.mec-single-event .mec-events-meta-group-booking input::-webkit-input-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input:-moz-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:330px;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both}.wbmec-mandatory{padding-left:5px;font-size:14px}.mec-single-event .mec-events-meta-group-booking .mec-red-notification input,.mec-single-event .mec-events-meta-group-booking .mec-red-notification select,.mec-single-event .mec-events-meta-group-booking .mec-red-notification textarea{border:1px solid #ff3c3c}.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=checkbox],.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=radio]{outline:1px solid #ff3c3c}@media only screen and (max-width:479px){.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{width:100%}}.mec-single-event .mec-events-meta-group-booking input[type=email]:focus,.mec-single-event .mec-events-meta-group-booking input[type=number]:focus,.mec-single-event .mec-events-meta-group-booking input[type=password]:focus,.mec-single-event .mec-events-meta-group-booking input[type=tel]:focus,.mec-single-event .mec-events-meta-group-booking input[type=text]:.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking select:focus,.mec-single-event .mec-events-meta-group-booking textarea:focus,focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-single-event .mec-events-meta-group-booking input[type=checkbox],.mec-single-event .mec-events-meta-group-booking input[type=radio]{margin-right:6px;margin-top:5px;min-height:20px;clear:none;margin:0 0 0 2px}.lity-container .mec-events-meta-group-booking input[type=radio]:before,.mec-single-event .mec-events-meta-group-booking input[type=radio]:before{content:"";display:inline-block;background:#fff;border-radius:18px;width:18px;height:18px;margin:-1px 0 0 -3px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32)}.lity-container .mec-events-meta-group-booking input[type=radio]:checked:before,.mec-single-event .mec-events-meta-group-booking input[type=radio]:checked:before{border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff}.lity-container .mec-events-meta-group-booking input[type=radio],.mec-single-event .mec-events-meta-group-booking input[type=radio]{min-height:0;margin:0;margin-right:6px}.mec-single-event .mec-events-meta-group-booking input[type=checkbox]{float:left}.lity-container .mec-events-meta-group-booking .mec_book_first_for_all,.mec-single-event .mec-events-meta-group-booking .mec_book_first_for_all{display:none}.mec-events-meta-group-booking ul.mec-book-price-details{list-style:none;border:1px solid #eee;padding:0;overflow:hidden}.mec-events-meta-group-booking ul.mec-book-price-details li{font-size:15px;color:#a9a9a9;list-style:none;padding:13px 18px;margin:0;float:left;border-right:1px solid #eee}.mec-events-meta-group-booking ul.mec-book-price-details li:last-child{border-right:none}.mec-events-meta-group-booking ul.mec-book-price-details li span.mec-book-price-detail-amount{font-weight:700;font-size:21px;color:#222}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label{height:14px;width:14px;background-color:transparent;border:1px solid #d4d4d4;position:relative;display:inline-block;-moz-transition:border-color ease .2s;-o-transition:border-color ease .2s;-webkit-transition:border-color ease .2s;transition:border-color ease .2s;cursor:pointer;box-shadow:0 2px 16px -2px rgba(0,0,0,.2);vertical-align:middle;margin-right:3px;margin-top:-2px}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label{border-color:#008aff;box-shadow:0 2px 14px -3px #008aff}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:after,.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:before,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:after,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:before{position:absolute;height:0;width:1px;background-color:#008aff;display:inline-block;-moz-transform-origin:left top;-ms-transform-origin:left top;-o-transform-origin:left top;-webkit-transform-origin:left top;transform-origin:left top;content:'';-webkit-transition:opacity ease .5;-moz-transition:opacity ease .5;transition:opacity ease .5}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:before,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:before{top:8px;left:7px;box-shadow:0 0 0 2px #fff;-moz-transform:rotate(-145deg);-ms-transform:rotate(-145deg);-o-transform:rotate(-145deg);-webkit-transform:rotate(-145deg);transform:rotate(-145deg)}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::before,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::before{height:12px;-moz-animation:dothatopcheck .16s ease 0s forwards;-o-animation:dothatopcheck .16s ease 0s forwards;-webkit-animation:dothatopcheck .16s ease 0s forwards;animation:dothatopcheck .16s ease 0s forwards}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:after,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:after{top:6px;left:3px;-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::after,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::after{-moz-animation:dothabottomcheck 80ms ease 0s forwards;-o-animation:dothabottomcheck 80ms ease 0s forwards;-webkit-animation:dothabottomcheck 80ms ease 0s forwards;animation:dothabottomcheck 80ms ease 0s forwards;height:4px}.mec-single-event .mec-events-meta-group-booking button[type=submit]:after,.mec-single-event a.button:after{display:none;font-family:simple-line-icons;content:"\e098";margin-left:4px;-webkit-animation:rotating 1.2s linear infinite;-moz-animation:rotating 1.2s linear infinite;-ms-animation:rotating 1.2s linear infinite;-o-animation:rotating 1.2s linear infinite;animation:rotating 1.2s linear infinite}.mec-single-event .mec-events-meta-group-booking button[type=submit].loading:after,.mec-single-event a.button.loading:after{display:inline-block}.mec-single-event .mec-event-export-module{display:block}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul{display:table;width:100%}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li{display:table-cell}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li:last-child{text-align:right}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a:hover{color:#fff}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul{padding-left:0;margin:15px 5px}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting{padding-left:0;margin:0}.mec-ticket-price{margin-left:10px;font-size:13px;font-weight:300}.mec-book-reg-field-checkbox label,.mec-book-reg-field-radio label{line-height:1.36}.mec-book-reg-field-checkbox input[type=checkbox],.mec-book-reg-field-radio input[type=radio]{float:left;margin-right:5px!important}.mec-ticket-available-spots .mec-event-ticket-description,.mec-ticket-available-spots .mec-event-ticket-price{font-size:11px}.mec-book-ticket-container .mec-reg-mandatory:nth-child(2) label:after,.mec-book-ticket-container .mec-reg-mandatory:nth-child(3) label:after,.mec-book-ticket-container .wbmec-mandatory{content:"";color:red;width:50px;height:50px;font-size:14px;padding-left:5px}@media only screen and (max-width:767px){.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li{width:100%;min-height:40px;margin-bottom:15px;text-align:center;float:none;display:block}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a{width:100%;padding-left:0;padding-right:0;text-align:center;display:block;font-size:12px}}.mec-single-event .mec-events-meta-group{margin-bottom:0}@media only screen and (max-width:767px){.mec-single-event .mec-events-meta-group-booking{margin-bottom:30px}}.mec-single-event .mec-event-meta dt,.mec-single-event .mec-event-meta h3{text-transform:uppercase;font-size:16px;font-weight:700;padding-bottom:5px;display:inline;color:#000;padding-left:10px}.mec-single-event .mec-event-meta h6{text-transform:uppercase;font-size:13px;padding-bottom:5px;display:inline;color:#222;padding-left:0}.mec-single-event .mec-event-meta .mec-events-event-categories a,.mec-single-event .mec-event-meta dd{font-size:14px;color:#8d8d8d}.mec-single-event .mec-event-meta .mec-location dd.author{color:#3c3b3b}.mec-single-event .mec-event-meta dd{margin:0;padding-left:35px}.mec-single-event .mec-event-meta dd.mec-events-event-categories{min-height:35px;line-height:35px}@media only screen and (max-width:480px){.single-mec-events .lity-container{width:100%}.single-mec-events .lity-content .mec-events-meta-group-booking{padding:20px;width:85%;margin:0 auto}}.mec-single-event .mec-event-meta dd.mec-events-event-categories:first-of-type{padding-top:5px}.mec-single-event .mec-event-meta dd.mec-events-event-categories:last-of-type{border-bottom:0}.mec-single-event .mec-event-meta dd a{color:#8d8d8d;transition:all .2s ease}.mec-single-event .mec-event-meta dd a i:before{font-size:16px!important}.mec-single-event .mec-event-meta dd a i{margin-right:8px}.mec-single-event .mec-event-meta dl{margin-bottom:0}.mec-single-event .mec-event-meta .mec-events-event-cost{font-size:18px}.mec-single-event .mec-event-meta .mec-events-address{color:#a9a9a9;margin-bottom:3px}.mec-single-event .mec-event-meta .mec-events-meta-group-venue .author{margin-bottom:0;color:#8d8d8d;font-size:13px}.mec-single-event .mec-events-event-image{margin-bottom:0}.mec-single-event h2.mec-single-event-title{margin-bottom:30px;font-weight:700;font-size:33px}.mec-single-event .mec-booking-button{border-bottom:none;letter-spacing:.5px;line-height:48px;height:76px;transition:all .5s ease;color:#fff;padding:16px;display:block;text-align:center;font-size:16px}.mec-single-event .mec-booking-button:hover{background-color:#101010!important}.mec-single-event .mec-event-tags a{display:inline-block;color:#444;font-size:11px;text-transform:uppercase;letter-spacing:1.5px;font-weight:500;padding:3px 7px;border:1px solid #ddd;border-radius:2px;background:#fff;margin:1px 3px}.mec-single-event .mec-event-tags:before{font-size:24px;color:#303030;margin-right:5px;content:"\f02c";font-family:fontawesome}.mec-single-event .mec-event-tags{padding-top:13px}.mec-single-event .mec-event-sharing{margin:30px 0 10px}.mec-region.mec-events-abbr,.mec-single-event .mec-street-address{font-style:normal;font-size:13px}.mec-events-meta-group.mec-events-meta-group-venue:before,.mec-single-event-date:before,.mec-single-event-time:before{color:#40d9f1}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-event-social h3{text-transform:uppercase;font-size:15px;font-weight:700;padding-bottom:5px;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative}.mec-single-event .mec-social-single:before{padding:13px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:39px}.mec-single-event .mec-event-social .event-sharing{margin-top:30px}.mec-single-event .mec-event-social ul{list-style:none;margin-left:0}.mec-single-event .mec-event-social li.mec-event-social-icon{display:inline-block}.mec-single-event .mec-event-social li.mec-event-social-icon a{display:inline-block;color:#fff;width:40px;height:40px;padding:9px;font-size:16px;margin-right:5px}.mec-single-event .mec-event-social a.facebook{background:#3b5996}.mec-single-event .mec-event-social a.facebook:hover{background:#28385c}.mec-single-event .mec-event-social a.twitter{background:#00acee}.mec-single-event .mec-event-social a.twitter:hover{background:#0087bd}.mec-single-event .mec-event-social a.vimeo{background:#0dadd6}.mec-single-event .mec-event-social a.vimeo:hover{background:#0a85a3}.mec-single-event .mec-event-social a.dribble{background:#d53e68}.mec-single-event .mec-event-social a.dribble:hover{background:#bf4c78}.mec-single-event .mec-event-social a.youtube{background:#cb322c}.mec-single-event .mec-event-social a.youtube:hover{background:#992622}.mec-single-event .mec-event-social a.pinterest{background:#cb2027}.mec-single-event .mec-event-social a.pinterest:hover{background:#99181d}.mec-single-event .mec-event-social a.google{background:#c3391c}.mec-single-event .mec-event-social a.google:hover{background:#99181f}.mec-single-event .mec-event-social a.linkedin{background:#0073b2}.mec-single-event .mec-event-social a.linkedin:hover{background:#005380}.mec-single-event .mec-event-social a.email{background:#ff5d5e}.mec-single-event .mec-event-social a.email:hover{background:#cc4949}.mec-single-event .mec-event-social a.vk{background:#5b88bd}.mec-single-event .mec-event-social a.vk:hover{background:#3d608a}.mec-single-event .mec-event-social a.rss{background:#f29a1d}.mec-single-event .mec-event-social a.rss:hover{background:#cc7400}.mec-single-event .mec-event-social a.instagram{background:#457399}.mec-single-event .mec-event-social a.instagram:hover{background:#2e4d66}.mec-single-event .mec-event-social a.other-social{background:#ff5d5e}.mec-single-event .mec-event-social a.other-social:hover{background:#cc4949}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4,.mec-single-event .mec-frontbox-title{text-transform:uppercase;font-size:15px;font-weight:700;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative;text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4:before,.mec-single-event .mec-frontbox-title:before{padding:1px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-35px;left:50%}.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-month],.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-year]{width:47%!important;margin-right:12px;margin-top:5px;display:inline-block!important}@media(max-width:768px){.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-month],.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-year]{width:100%!important;margin-right:0;display:block!important}}.mec-event-meta i:before{font-size:20px;vertical-align:middle}.mec-event-meta .mec-single-event-additional-organizers i:before,.mec-event-meta .mec-single-event-organizer i:before{font-size:14px;vertical-align:baseline}#mec-wrap .mec-events-day-time-slot .mec-events-content{float:left;width:33%;padding:0 15px}#mec-wrap .mec-events-day-time-slot .mec-events-event-image{padding-left:0}#mec-events-content .mec-events-abbr{color:#8d8d8d;font-size:14px}.mec-single-event .mec-events-content{margin-bottom:30px}.mec-single-event .mec-organizer-url a{word-wrap:break-word}.mec-single-event #headline{margin:0 0 10px}.mec-single-event #headline h2{padding:0}.mec-single-event .mec-events-meta-group.mec-events-meta-group-gmap .mec-events-venue-map{margin-top:0;padding:8px;border:1px solid #e5e5e5;border-radius:7px}#mec-events-gmap-0{height:325px!important}.mec-events-list .mec-events-day-time-slot .mec-events-event-meta{width:33%;float:left;padding:40px;height:auto;margin:0}.mec-events-day-time-slot .mec-events-content.description.entry-summary{font-size:15px;font-weight:300;color:#8d8d8d}.mec-events-day-time-slot .type-mec_events h2{font-size:28px;padding-bottom:20px}.mec-events-day .mec-events-day-time-slot .type-mec_events{margin:0}.mec-events-day .mec-events-day-time-slot h5{background-color:#8d8d8d}.mec-single-event .mec-event-meta .mec-single-event-additional-organizers .mec-events-single-section-title,.mec-single-event .mec-event-meta .mec-single-event-organizer .mec-events-single-section-title,.mec-single-event .mec-events-meta-date h3{padding-left:0;margin:10px;display:inline-block}.mec-single-event .mec-events-meta-date h3{width:100%}.mec-single-event .mec-events-event-image{border:0}.mec-single-event .mec-events-venue-map{padding:0}.mec-event-cost,.mec-event-more-info,.mec-event-website,.mec-events-meta-date,.mec-single-event-additional-organizers,.mec-single-event-category,.mec-single-event-date,.mec-single-event-label,.mec-single-event-location,.mec-single-event-organizer,.mec-single-event-time{background:#f7f7f7;padding:12px 14px 8px;margin-bottom:12px;vertical-align:baseline;position:relative}.mec-single-event .mec-events-meta-date dd,.mec-single-event .mec-single-event-additional-organizers dd,.mec-single-event .mec-single-event-organizer dd{padding-left:0;margin-bottom:10px}.mec-single-event .mec-events-meta-date dd span,.mec-single-event .mec-single-event-additional-organizers dd span,.mec-single-event .mec-single-event-organizer dd span{display:block;padding-left:12px;color:#8d8d8d}.mec-single-event .mec-events-meta-date i,.mec-single-event .mec-single-event-additional-organizers i,.mec-single-event .mec-single-event-organizer i{margin-right:10px;margin-left:12px}.mec-events-meta-group.mec-events-meta-group-venue dl{margin-bottom:0}address.mec-events-address{line-height:19px;font-style:normal;font-size:12px}.mec-single-event .mec-event-content dt{margin-top:5px}.mec-single-event .mec-single-event-additional-organizers .mec-single-event-additional-organizer{margin-bottom:15px;padding-bottom:5px;border-bottom:1px solid #e4e4e4}.mec-single-event .mec-single-event-additional-organizers .mec-single-event-additional-organizer:last-child{margin-bottom:0;padding-bottom:0;border:none}.mec-event-schedule-content{border-left:4px solid #f0f0f0;padding-top:10px;margin-top:30px;margin-left:25px;margin-bottom:20px;color:#8a8a8a}.mec-event-schedule-content dl{padding-left:24px;font-size:12px;position:relative;margin-bottom:35px}.mec-event-schedule-content dl:before{content:'';display:block;position:absolute;left:0;top:4px;width:20px;height:0;border-top:4px solid #f0f0f0}.mec-event-schedule-content dl dt{margin:0 0 10px;line-height:1.16}.mec-event-schedule-content dl dt.mec-schedule-title{font-size:13px;color:#5a5a5a;font-weight:700}.mec-event-schedule-content dl dt.mec-schedule-description{font-weight:300}.mec-event-schedule-content .mec-schedule-speakers{background:#f7f7f7;padding:10px}.mec-wrap .mec-event-schedule-content h6{font-size:13px;color:#5a5a5a;font-weight:700;display:inline-block}.mec-wrap .mec-event-schedule-content a{font-weight:400;color:#5a5a5a;transition:all .1s ease}.single-mec-events .mec-speakers-details ul{padding:0}.mec-single-event .mec-speakers-details ul li{list-style:none;background:#f7f7f7;padding:5px 5px 18px 5px;margin-top:14px}.mec-single-event .mec-speakers-details ul li a{-webkit-transition:.2s all ease;transition:.2s all ease}.mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a img{float:left;border-radius:50%;transition:.2s all ease;border:2px solid transparent;width:68px;height:68px}.mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a:hover img{border-color:#40d9f1}.mec-single-event .mec-speakers-details ul li .mec-speaker-name{display:inline-block;margin-top:6px;font-size:14px;text-transform:capitalize;font-weight:700;padding-left:8px}.mec-single-event .mec-speakers-details ul li .mec-speaker-job-title{display:block;font-size:12px;margin-top:-1px;padding-left:75px}.mec-single-event-location img,.mec-single-event-organizer img{margin-bottom:10px;width:100%}.mec-qrcode-details{text-align:center}.mec-time-comment{font-size:11px}.mec-wrap .mec-attendees-list-details p{font-weight:300;margin:20px 0 0 0;color:#8d8d8d}.mec-wrap .mec-attendees-list-details li{list-style:none;display:block;margin-top:15px}.mec-wrap .mec-attendees-list-details li .mec-attendee-avatar{display:inline-block}.mec-wrap .mec-attendees-list-details li .mec-attendee-profile-link{display:inline-block;vertical-align:top;margin-left:10px}.mec-attendees-list-details ul{margin-bottom:0}.mec-attendees-list-details .mec-attendee-profile-link a{color:#8d8d8d}.mec-attendees-list-details .mec-attendee-profile-link span{display:block;color:#000}.mec-calendar{margin-bottom:20px;border:1px solid #e8e8e8;width:100%;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-calendar .mec-calendar-topsec{display:table;background:#fff}.mec-calendar .mec-calendar-topsec .mec-calendar-events-sec{display:none}.mec-calendar .mec-calendar-side{width:590px;display:table-cell;padding:40px;position:relative;text-align:center;box-shadow:0 1px 5px 6px rgba(0,0,0,.005) inset}.mec-calendar .mec-calendar-events-side{display:table-cell;height:100%;border-left:1px solid #efefef;padding:40px;width:100%}.mec-calendar .mec-calendar-events-side .mec-table-side-day{width:46px;height:46px;margin:0 auto 20px;position:relative;text-align:center;line-height:46px;border:1px solid #40d9f1;border-radius:50%;font-size:12px;font-weight:600;padding:0}.mec-calendar .mec-calendar-events-side .mec-table-side-title{text-align:center;font-size:11px;text-transform:uppercase;letter-spacing:3px;margin-bottom:14px}.mec-calendar .mec-calendar-header{position:relative;width:560px;margin-top:8px;margin-bottom:16px}.mec-calendar .mec-calendar-header h2{text-transform:uppercase;font-size:22px;font-weight:700;color:#333}.mec-calendar .mec-event-footer{width:auto;min-height:60px}.mec-calendar dl{display:table;margin:0;border:none;padding:0;table-layout:fixed}.mec-calendar dt{display:table-cell;transition:all .66s ease;color:#4d4d4d;background:#fff;border-radius:44px;font-size:14px;width:80px;height:80px;line-height:80px;text-align:center}.mec-calendar .mec-calendar-table .mec-no-event{display:none}.mec-calendar .mec-calendar-table-head dt{font-weight:700;text-transform:uppercase;font-size:15px}.mec-calendar .mec-calendar-row dt:hover{background:#f4f4f4}.mec-calendar .mec-table-nullday{color:#cacaca}.mec-calendar.mec-box-calendar .mec-table-nullday:last-child{border-right:1px solid #eaeaea}.mec-calendar .mec-next-month:hover,.mec-calendar .mec-prev-month:hover{background:#f4f4f4}.mec-calendar .mec-selected-day,.mec-calendar .mec-selected-day:hover{background:#40d9f1;color:#fff}.mec-calendar .mec-selected-day a{color:#fff}.mec-calendar .mec-has-event{position:relative}.mec-calendar .mec-calendar-row dt.mec-has-event:hover{background:#40d9f1}.mec-calendar .mec-has-event a{cursor:pointer;display:block;width:100%;height:100%;border-radius:50%;color:#4d4d4d;transition:all .25s ease;text-decoration:none;box-shadow:none}.mec-calendar .mec-calendar-row dt.mec-has-event.mec-selected-day a,.mec-calendar .mec-calendar-row dt.mec-has-event:hover a{color:#fff}.mec-calendar .mec-has-event:after{background-color:#40d9f1;border-radius:50%;display:block;content:'';width:8px;height:8px;bottom:14px;left:50%;margin:-4px 0 0 -4px;position:absolute;transition:all .25s ease}.mec-calendar .mec-calendar-row dt.mec-has-event:hover:after{background-color:#fff}.mec-calendar .mec-has-event.mec-selected-day:after{display:none}.mec-calendar .mec-event-article{text-align:left;margin-bottom:0;padding-bottom:25px;padding-top:26px;border-top:1px solid #efefef;transition:all .33s ease}.mec-calendar .mec-event-article:hover{background-color:#fafafa}.mec-calendar .mec-event-article .mec-event-time{font-size:11px;line-height:1.1;margin:0}.mec-calendar .mec-event-article .mec-event-title{font-size:13px;padding:0;margin:10px 0 8px;font-weight:700;text-transform:uppercase}.mec-calendar .mec-event-article .mec-event-title a{text-decoration:none;color:#494949;transition:color .3s ease}.mec-calendar .mec-event-article .mec-event-title a:hover{color:#40d9f1}.mec-calendar .mec-event-article .mec-event-image,.mec-calendar .mec-event-list-classic .mec-event-image img{width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-image{float:left;margin-right:20px;width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-detail{font-size:13px;line-height:1.3;font-family:Roboto,sans-serif;color:#9a9a9a;margin-bottom:0}.mec-calendar .mec-calendar-side .mec-next-month,.mec-calendar .mec-calendar-side .mec-previous-month{cursor:pointer;position:absolute;top:0;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;color:#a9a9a9;font-size:12px;letter-spacing:1px;text-transform:uppercase;padding-left:10px;padding-right:10px;border:1px solid #efefef;border-top:none;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease}.mec-calendar .mec-calendar-side .mec-next-month i,.mec-calendar .mec-calendar-side .mec-previous-month i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-calendar .mec-calendar-side .mec-next-month:hover,.mec-calendar .mec-calendar-side .mec-previous-month:hover{background-color:#f9f9f9;color:#40d9f1}.mec-calendar .mec-calendar-side .mec-previous-month{left:0;border-bottom-right-radius:6px;border-left:none}.mec-calendar .mec-calendar-side .mec-next-month{right:0;border-bottom-left-radius:6px;border-right:none}@media only screen and (min-width:961px){.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-side{width:370px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-header{position:relative;width:350px;margin-top:30px;margin-bottom:20px;padding-top:20px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) dt{width:50px;height:50px;line-height:50px}.mec-wrap.mec-sm959 .mec-calendar.mec-event-calendar-classic dl dt{height:110px}}@media only screen and (max-width:1200px){.mec-calendar .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-calendar .mec-calendar-side{width:370px}.mec-calendar .mec-calendar-header{position:relative;width:350px;margin-top:30px}.mec-calendar dt{width:50px;height:50px;line-height:50px}}@media only screen and (max-width:767px){.mec-calendar .mec-calendar-header h2{font-size:18px}.mec-calendar .mec-calendar-topsec{width:100%}.mec-calendar .mec-calendar-side{width:100%;display:block;padding:30px}.mec-calendar .mec-calendar-header{width:auto}.mec-calendar .mec-calendar-events-side{width:100%;display:block;height:100%;border-left:none;border-top:1px solid #efefef;padding:20px}.mec-calendar dl{width:100%}.mec-calendar dt{width:14%;height:60px;line-height:60px;border-radius:50px}}@media only screen and (max-width:479px){.mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-calendar .mec-calendar-header h2{font-size:16px;margin-top:33px}.mec-calendar dt{height:38px;line-height:38px}.mec-calendar .mec-event-list-classic .mec-event-detail,.mec-calendar .mec-event-list-classic .mec-event-title{font-size:12px}.mec-calendar .mec-event-list-classic .mec-event-time{font-size:10px}}.mec-box-calendar.mec-calendar .mec-has-event a,.mec-box-calendar.mec-calendar dt{border-radius:0}.mec-box-calendar.mec-calendar .mec-calendar-header{margin-top:2px;margin-bottom:30px}.mec-box-calendar.mec-calendar dt{border-bottom:1px solid #eaeaea;border-left:1px solid #eaeaea}.mec-box-calendar.mec-calendar dl dt:last-child{border-right:1px solid #eaeaea}.mec-box-calendar.mec-calendar .mec-calendar-table-head dt{border-top:1px solid #eaeaea;background-color:#f8f8f8}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{background-color:#f4f4f4}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{border-radius:2px;top:40px;border:1px solid #eee;height:30px;line-height:30px;z-index:1}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:60px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:60px}.mec-box-calendar.mec-calendar .mec-calendar-side{box-shadow:none}.mec-box-calendar.mec-calendar .mec-calendar-events-side{border:none}.mec-box-calendar.mec-calendar .mec-calendar-events-side .mec-table-side-day{border-radius:2px}.mec-box-calendar.mec-calendar h4.mec-month-label{position:relative;width:560px;margin-top:2px;margin-bottom:30px;text-transform:uppercase;font-size:22px;font-weight:700;color:#333}.mec-widget .mec-box-calendar.mec-calendar h4.mec-month-label{width:100%;margin-top:8px;font-size:13px}@media only screen and (max-width:1200px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:42px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:42px}.mec-calendar .mec-calendar-header h2{font-size:17px;margin-top:7px}}@media only screen and (max-width:767px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{top:28px;font-size:10px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:30px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:30px}.mec-calendar .mec-calendar-header h2{font-size:15px}}@media only screen and (max-width:479px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{top:16px;font-size:0;padding:4px 0;text-align:center;min-width:33px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:10px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:10px}.mec-box-calendar.mec-calendar .mec-calendar-header h2{font-size:12px;margin-top:15px}.mec-box-calendar.mec-calendar .mec-event-image{margin-right:12px}}.mec-calendar.mec-event-calendar-classic,.mec-calendar.mec-event-calendar-classic .mec-calendar-side{border:none;padding:0;width:100%;height:100%;box-shadow:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-side{display:block}.mec-calendar.mec-event-calendar-classic .mec-calendar-header,.mec-calendar.mec-event-calendar-classic dl{width:100%}.mec-calendar.mec-event-calendar-classic dl dt{width:15%;height:136px;line-height:1.2;text-align:left;padding:5px 7px;position:relative}.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{height:30px!important}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{top:0}.mec-calendar.mec-event-calendar-classic .mec-has-event:after{bottom:auto;top:24px;left:7px;margin:0}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{left:0}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month{right:0}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{text-align:left;background:#fafafa;border:1px solid #eaeaea;border-top:none;padding:10px 20px}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{display:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-event-article:hover{background-color:#fcfcfc}.mec-calendar.mec-event-calendar-classic .mec-selected-day,.mec-calendar.mec-event-calendar-classic dt.mec-selected-day:hover{color:#40d9f1;font-weight:700;background:#fafafa;border-bottom:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-day,.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{display:inline-block;margin:0;margin-bottom:15px;font-weight:700}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-day{margin-left:4px}.mec-calendar.mec-event-calendar-classic .mec-calendar-row dt.mec-has-event a{color:#4d4d4d}.mec-calendar.mec-event-calendar-classic .mec-calendar-row dt.mec-has-event:not(.mec-selected-day):hover a{color:#fff}@media only screen and (max-width:1200px){.mec-calendar.mec-event-calendar-classic dl dt{height:100px}}@media only screen and (max-width:767px){.mec-calendar.mec-event-calendar-classic dl dt{height:40px}}@media only screen and (max-width:479px){.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{padding:10px}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-header h2{font-size:13px;margin-top:8px}}.mec-calendar .mec-event-article.mec-single-event-novel{padding:4px 8px;min-height:25px;margin:0 -4px;border-radius:0}.mec-calendar .mec-event-article.mec-single-event-novel h4{margin:0;font-size:10px;line-height:18px}.mec-calendar.mec-event-container-novel dl dt{padding:3px}.mec-calendar.mec-event-calendar-classic .mec-calendar-novel-selected-day{display:inline-block;padding:4px;margin-left:1px}.mec-calendar.mec-event-calendar-classic .mec-selected-day .mec-calendar-novel-selected-day{color:#fff}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-selected-day,.mec-calendar.mec-event-calendar-classic.mec-event-container-novel dt.mec-selected-day:hover{border-bottom:1px solid #eaeaea}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-calendar-side .mec-calendar-table{min-height:auto}.mec-single-event-novel.light h4{color:#000!important}.mec-single-event-novel.dark h4{color:#fff!important}@media only screen and (max-width:768px){.mec-calendar .mec-event-article.mec-single-event-novel{padding:0;min-height:5px}.mec-calendar .mec-event-article.mec-single-event-novel h4{display:block;font-size:9px}}.mec-event-container-simple .event-single-content-simple{display:none}.mec-event-calendar-classic.mec-event-container-simple .mec-calendar-side .mec-calendar-table{min-height:unset}.mec-event-container-simple .mec-monthly-tooltip h4{font-size:13px;font-weight:500;margin:0;color:#444}.mec-event-container-simple .mec-monthly-tooltip h4:hover{text-decoration:underline;color:#111}.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple{border-bottom:1px dashed #e3e3e3;padding:10px 2px;display:block}.mec-calendar.mec-event-container-simple dl dt.mec-calendar-day{font-size:30px;color:#000}.mec-calendar.mec-event-container-simple .mec-calendar-row dt:hover{background:unset}.mec-calendar.mec-event-container-simple .mec-calendar-row dt,.mec-calendar.mec-event-container-simple .mec-calendar-row dt:last-child,.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt,.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt:last-child{border-width:2px}.mec-calendar.mec-event-container-simple dl dt.mec-selected-day,.mec-calendar.mec-event-container-simple dl dt.mec-selected-day:hover{border-bottom:2px solid #40d9f1;background:unset}.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt{line-height:36px}@media (max-width:768px){.mec-calendar.mec-event-container-simple{overflow-x:scroll}.mec-calendar.mec-event-container-simple .mec-calendar-side{min-width:700px}.mec-event-container-simple .mec-monthly-tooltip h4{font-size:12px}}.mec-wrap.colorskin-custom .mec-calendar.mec-event-container-simple .mec-selected-day:hover{background:#f4f4f4}.mec-event-container-simple .mec-calendar-day .mec-monthly-tooltip.event-single-link-simple:last-of-type{border:none}.mec-tooltip-event-title{font-size:16px;font-weight:700;color:#000;margin-bottom:2px}.mec-tooltip-event-time{font-size:12px;color:#888;margin-bottom:8px;margin-top:5px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-content{padding:17px}.mec-tooltip-event-content{clear:both}.mec-tooltip-event-featured{float:left;margin-right:13px;margin-bottom:1px}.mec-tooltip-event-featured img{max-width:120px}.mec-tooltip-event-desc{font-size:14px;color:#444;line-height:18px}.mec-tooltip-event-desc p{font-size:13px;line-height:1.4;margin-bottom:10px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-box{border-radius:3px!important;border:1px solid #e2e3e4!important;background:#fff!important;box-shadow:0 -1px 30px -2px rgba(0,0,0,.15)!important}.tooltipster-sidetip .tooltipster-arrow{overflow:visible!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-border{border-width:12px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-right .tooltipster-arrow-border{border-right-color:#e2e3e4!important}.tooltipster-sidetip .tooltipster-arrow-border{left:-12px!important;z-index:9999999999!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-background{display:block!important}.tooltipster-sidetip .tooltipster-arrow-background{border-width:11px!important;z-index:99999999999!important}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background{left:-9px!important;top:1px!important;border-right-color:#fff!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background{border-top-color:#fff!important;left:0!important;top:-1px!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border{left:-1px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-top .tooltipster-arrow-border{border-top-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{left:-1px!important;top:-11px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{border-bottom-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background{top:-9px!important;border-bottom-color:#fff!important}.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background{border-left-color:#fff!important;left:-2px!important;top:0!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-left .tooltipster-arrow-border{border-left-color:#e2e3e4!important;left:-1px!important;top:-1px!important}@media (max-width:780px){.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4{word-break:break-all;font-size:13px}}@media (max-width:320px){.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4{font-size:10px}}.mec-calendar.mec-calendar-daily .mec-calendar-day-events .mec-event-article{padding-left:15px;padding-right:15px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month{text-align:center;background-color:#fff;border-bottom:2px solid #f4f4f4;position:relative}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{color:#444;font-size:18px;line-height:1.2;padding:15px 0 11px;margin:0;font-weight:700;letter-spacing:1px;text-transform:uppercase;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-top{text-align:center;padding:10px 0;position:relative;background-color:#fafafa}.mec-calendar.mec-calendar-daily .mec-next-month,.mec-calendar.mec-calendar-daily .mec-previous-month{position:absolute;top:50%;left:50%;margin-top:-25px;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;border:1px solid #e2e2e2;border-radius:50px;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month i,.mec-calendar.mec-calendar-daily .mec-previous-month i{font-size:14px;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month:hover,.mec-calendar.mec-calendar-daily .mec-previous-month:hover{border-color:#d0d0d0;color:#444;box-shadow:0 2px 5px 0 rgba(0,0,0,.075)}.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-150px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:100px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month{min-height:28px;height:28px;line-height:28px;width:28px;margin-top:-14px;border-radius:3px}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2,.mec-calendar.mec-calendar-daily .mec-calendar-d-top h3{margin-top:9px;color:#b9b9b9;font-family:Roboto,sans-serif;font-size:30px;font-weight:100;text-transform:uppercase;margin-bottom:12px;line-height:1}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2{font-size:81px;color:#444;margin-bottom:10px;line-height:1.1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table{overflow:hidden;background:#fff;min-height:60px;border-top:1px solid #e6e6e6;border-bottom:2px solid #f3f3f3;padding:0 50px;position:relative}@media only screen and (min-width:479px){.mec-calendar.mec-calendar-daily .mec-calendar-d-table{padding:0 55px}}.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl{width:1310px;display:block}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{display:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl.mec-weekly-view-week-active{display:block}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt{display:block;background:#fff;width:42px;height:60px;line-height:60px;text-align:center;float:left;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6;border-radius:0}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day:hover,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt:hover{background:#fafafa;box-shadow:0 2px 5px 0 rgba(0,0,0,.065) inset;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day{cursor:default;background:#fff;color:#c1c1c1;line-height:59px;text-align:center;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-has-event{cursor:pointer;font-weight:700;color:#4a4a4a}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-daily-view-day-active,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt.mec-table-d-current{font-size:18px;font-weight:700;background:#fafafa;color:#40d9f1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-prev{float:none;font-size:14px;width:55px;position:absolute;top:0;left:0;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next{left:auto;right:0;border-left:1px solid #e6e6e6;border-right:none}.mec-calendar.mec-calendar-daily .mec-today-container .mec-today-count{font-size:12px;color:#888;text-align:center}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}}.widget .mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}.widget .mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.widget .mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-util-hidden{display:none}.mec-daily-view-date-events,.mec-weekly-view-date-events{list-style:none;margin:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table{padding:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{width:calc(100% - 1px)}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt{width:14.286%;height:70px;line-height:normal;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:hover{background:#fff;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:last-child{border-right:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:12px;font-weight:700;text-transform:uppercase;display:block;margin:15px 0 6px}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-prev{display:none}ul.mec-weekly-view-dates-events,ul.mec-weekly-view-dates-events li{padding:0;margin:0;line-height:initial}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:64px;height:64px;margin-right:10px;font-size:11px;text-transform:uppercase;float:left;text-align:center;padding-top:2px}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:40px;line-height:30px;font-weight:700;display:block;margin-bottom:6px;letter-spacing:1px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-previous-month{margin-left:0;left:12px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-next-month{margin-left:0;left:auto;right:12px}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}}.widget .mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}.mec-week-events-container .mec-weekly-view-dates-events li.mec-no-event-found{list-style:none!important}li.mec-no-event-found .mec-event-title{text-align:center}.mec-widget .mec-calendar{max-width:100%}.mec-widget .mec-calendar dl dt,.mec-wrap.mec-sm959.mec-widget .mec-calendar.mec-event-calendar-classic dl dt{height:40px}.mec-widget .mec-calendar .mec-calendar-events-sec{padding:10px}.mec-widget .mec-calendar .mec-calendar-header h2{font-size:13px;margin-top:8px}.mec-widget .mec-calendar .mec-event-list-classic .mec-event-image{margin-right:12px}.mec-widget .mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-widget .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{font-size:14px}.mec-widget .mec-calendar .mec-event-article .mec-event-image{margin-right:11px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-header{margin-bottom:20px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{font-size:0;padding:4px 0;text-align:center;min-width:33px}.mec-widget .mec-event-calendar-classic .mec-calendar-side .mec-calendar-table{min-height:200px}.mec-widget .mec-event-list-classic{margin-bottom:8px;padding:8px 0}.mec-widget .mec-event-list-classic .mec-event-article{margin-bottom:0;padding:10px 0;position:relative;min-height:86px;padding-left:80px}.mec-widget .mec-event-list-classic .mec-event-date{font-size:10px;line-height:14px;text-transform:uppercase}.mec-widget .mec-event-list-classic .mec-event-title{font-size:13px}.mec-widget .mec-event-list-classic .mec-event-detail{font-size:11px}.mec-widget .mec-event-list-classic .mec-event-image{width:68px;position:absolute;left:0}.mec-event-list-classic .mec-event-image img{width:100%}.mec-widget .mec-event-list-classic .mec-event-detail{overflow:visible}.event-color{width:14px;display:inline-block;height:14px;margin-left:5px;border-radius:50%}.mec-map-lightbox-wp{width:580px;padding:15px 15px 0;background-color:#fff}.mec-map-view-event-detail.mec-event-detail{width:580px;background-color:#e9e9e9;padding:8px 15px}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-article{padding:0 0 15px;margin:0}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-image{width:70px;margin-right:15px}.mec-marker-infowindow-wp{padding:10px}.mec-marker-infowindow-wp .mec-marker-infowindow-count{width:60px;height:60px;display:block;text-align:center;line-height:60px;border:1px solid #40d9f1;border-radius:50%;font-size:32px;color:#40d9f1;float:left;margin-right:11px}.mec-marker-infowindow-wp .mec-marker-infowindow-content{overflow:hidden;padding-top:6px}.mec-marker-infowindow-wp .mec-marker-infowindow-content span{display:block;color:#222}.mec-marker-infowindow-wp .mec-marker-infowindow-content span:first-child{font-size:15px;font-weight:700}.mec-marker-wrap{display:inline-block;width:35px;height:35px;margin:15px 0 0 4px;border-radius:50% 50% 50% 0;background:#00cae9;animation-name:mec-map-bounce;animation-fill-mode:both;animation-duration:1s;border:3px solid #fff;cursor:pointer}.mec-marker-wrap .mec-marker{margin-top:5px;display:block;-webkit-transform:rotate(45deg);transform:rotate(45deg);text-align:center;color:#fff;font-size:17px}.mec-marker-wrap .mec-marker-pulse-wrap{-webkit-transform:rotate(45deg);transform:rotate(45deg);display:inline-block;margin-left:-11px;margin-top:0}.mec-marker-wrap .mec-marker-pulse{display:inline-block;background:#c5c5c5;border-radius:50%;height:14px;width:14px;-webkit-transform:rotateX(55deg);transform:rotateX(55deg);z-index:-2}.mec-marker-wrap .mec-marker-pulse:after{content:"";border-radius:50%;height:40px;width:40px;position:absolute;margin:-13px 0 0 -13px;animation:pulsate 1s ease-out;animation-iteration-count:infinite;opacity:0;box-shadow:0 0 1px 2px #00cae9;animation-delay:1.1s}@keyframes pulsate{0%{transform:scale(.1,.1);opacity:0}50%{opacity:1}100%{transform:scale(1.2,1.2);opacity:0}}@keyframes mec-map-bounce{0%{opacity:0;transform:translateY(-2000px) rotate(-45deg)}60%{opacity:1;transform:translateY(30px) rotate(-45deg)}80%{transform:translateY(-10px) rotate(-45deg)}100%{transform:translateY(0) rotate(-45deg)}}.mec-skin-grid-container .mec-skin-map-container,.mec-skin-list-container .mec-skin-map-container{margin-bottom:20px}.mec-single-event{margin-top:10px}.mec-single-event .mec-events-meta-group-countdown{color:#c9c9c9;text-align:center;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-events-meta-group-countdown .countdown-w{text-align:center;font-size:36px;margin:0 auto;padding:40px 0 0;position:relative;display:table;table-layout:fixed}.mec-events-meta-group-countdown .countdown-w .icon-w{font-size:24px}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:15px;font-weight:300;letter-spacing:1px;text-transform:uppercase;position:relative}.mec-events-meta-group-countdown .countdown-w .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px;width:190px;font-size:72px;transition:all .3s ease-in-out;line-height:1.2}.mec-events-meta-group-countdown .countdown-w .block-w.done-w{border:0 none}.mec-events-meta-group-countdown .countdown-w span{padding:24px 0 20px}.mec-events-meta-group-countdown .countdown-w .div-d{display:none}.mec-events-meta-group-countdown .countdown-w .countdown-message{display:none}.mec-events-meta-group-countdown .countdown-w .block-w i{display:none}#countdown{list-style:none;margin-bottom:0;margin-top:0;margin-left:0;padding-left:0}.mec-events-meta-group-countdown .mec-end-counts h3{display:inherit;text-align:center;font-size:16px;right:50%}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:23px}@media (min-width:481px) and (max-width:768px){.mec-events-meta-group-countdown .countdown-w{padding:0}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:12px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:34px}}@media (min-width:320px) and (max-width:480px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:10px}.mec-events-meta-group-countdown .countdown-w span{font-size:28px}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:16px}}@media (max-width:320px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:9px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:22px}}.info-msg,.mec-error,.mec-success,.warning-msg{margin:10px 0;padding:10px;border-radius:3px 3px 3px 3px;font-size:13px}.info-msg{color:#059;background-color:#bef}.mec-success{color:#0dbf52;background-color:#cef7ce}.warning-msg{color:#9f6000;background-color:#feefb3}.mec-error{color:#d8000c;background-color:#ffbaba}.mec-fes-form,.mec-fes-list{background:#f8feff;padding:30px 3%;color:#798f96;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important}.mec-fes-list .mec-fes-list-top-actions,.mec-fes-list ul{margin:0 auto 15px;max-width:960px;list-style:none}.mec-fes-form-cntt .dashicons-editor-help{display:none}.mec-fes-list ul li *{text-decoration:none!important}.mec-fes-list ul li{padding:20px 15px;border-radius:3px;margin-bottom:15px;border:1px solid #cfeff5;box-shadow:0 2px 6px -4px #cfeff5;background:#fff;line-height:normal}.mec-fes-list ul li a{box-shadow:none;color:#181818}.mec-fes-list ul li a:hover{color:#40d9f1}.mec-fes-list ul li .mec-event-title{font-size:17px;font-weight:600;width:calc(100% - 250px);display:inline-block}@media (max-width:600px){.mec-fes-list ul li .mec-event-title{font-size:13px}}.mec-fes-list .mec-event-status{color:#fff!important;border-color:transparent!important}.mec-fes-form .mec-book-confirmed,.mec-fes-list .mec-book-confirmed{background:#50d477!important}.mec-fes-form .mec-book-pending,.mec-fes-list .mec-book-pending{background:#fcbe69!important}.mec-fes-form .mec-book-rejected,.mec-fes-list .mec-book-rejected{background:#fe686a!important}.mec-fes-form .mec-book-other,.mec-fes-list .mec-book-other{background:#40d9f1!important}.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view{font-size:11px;padding:0;border:0;background:#f7f8f9;float:right;margin-left:5px;border-radius:2px;transition:all .2s ease}.mec-fes-list ul li .mec-fes-event-export a,.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view a{padding:4px 8px;display:inline-block;border:1px solid #e7e8e9;border-radius:2px;color:#789;position:relative}@media (max-width:600px){.mec-fes-list ul li .mec-fes-event-export a,.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view a{font-size:10px}}.mec-fes-list ul li .mec-fes-event-remove:hover{cursor:pointer;background:#f96f8a;border-color:#f96f8a;color:#fff}.mec-fes-list ul li .mec-fes-event-export a:hover,.mec-fes-list ul li .mec-fes-event-view a:hover{background:#40d9f1;color:#fff;border-color:#40d9f1}.mec-fes-form-top-actions a,.mec-fes-list-top-actions a{position:relative;border:none;border-radius:3px;color:#fff!important;display:inline-block;font-size:13px;line-height:1;text-transform:none;font-weight:400;text-decoration:none;cursor:pointer;margin-bottom:20px!important;margin-right:10px;line-height:1;letter-spacing:0;padding:15px 22px;background:#39c36e;box-shadow:0 1px 7px -3px #39c36e!important;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;text-decoration:unset}.mec-fes-form-top-actions a:hover,.mec-fes-list-top-actions a:hover{background:#222;color:#fff}.mec-fes-list-top-actions a{font-weight:600;text-transform:capitalize}.mec-fes-form-top-actions a:before{content:"";border:solid #fff;border-width:0 2px 2px 0;display:inline-block;padding:6px;margin-right:5px;vertical-align:sub;transform:rotate(135deg);-webkit-transform:rotate(135deg)}.mec-fes-form .mec-form-row,.mec-fes-list .mec-form-row{margin-bottom:10px;clear:both}.mec-fes-form label{font-size:13px;display:block;color:#798f96;font-weight:400;padding:0 0 4px 2px}.mec-fes-form input+label{padding-top:8px;padding-left:3px;margin:0;display:inline-block;vertical-align:top}.mec-fes-form .post-status{float:right!important;margin:0 5px;color:#fff;padding:0 10px;border-radius:12px;font-style:italic;font-size:18px}.mec-fes-form input[type=email],.mec-fes-form input[type=number],.mec-fes-form input[type=password],.mec-fes-form input[type=tel],.mec-fes-form input[type=text],.mec-fes-form select,.mec-fes-form textarea{min-width:inherit;width:auto;display:inline;min-height:30px;font-size:13px;padding:10px;margin-bottom:20px;clear:both;background:#fff;border:1px solid #cfeff5;box-shadow:0 2px 5px rgba(207,239,245,.38) inset;border-radius:3px;height:40px;max-width:280px;color:#798f96;font-family:inherit}.mec-fes-form input{background:#fff!important;border-radius:3px!important;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important}.mec-fes-form textarea{height:80px}.mec-fes-form input::-webkit-input-placeholder{color:#798f96}.mec-fes-form input::-moz-placeholder{color:#798f96}.mec-fes-form input:-ms-input-placeholder{color:#798f96}.mec-fes-form input:-moz-placeholder{color:#798f96}#mec_more_info_target{width:100%}@media only screen and (min-width:961px){.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form textarea{width:100%;display:inline-block}}@media only screen and (max-width:768px){.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form textarea{width:100%}}.mec-fes-form input[type=text]#mec_fes_title{padding:5px 10px;min-height:32px;height:50px;background:#fff!important;max-width:100%;font-size:19px;font-weight:400}.mec-fes-form input[type=checkbox],.mec-fes-form input[type=radio]{display:inline!important;float:left;margin:5px 5px 0 0}.mec-fes-form input[type=email]:focus,.mec-fes-form input[type=number]:focus,.mec-fes-form input[type=password]:focus,.mec-fes-form input[type=tel]:focus,.mec-fes-form input[type=text]:focus,.mec-fes-form select:focus,.mec-fes-form textarea:focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-form-row .mec-color{cursor:pointer}.mec-form-row.mec-available-color-row span{margin:10px;width:14px;height:14px;display:inline-block;margin-right:6px;border-radius:20px 20px 20px 20px;vertical-align:middle}.mec-form-row.mec-available-color-row span:first-of-type{margin-left:0}.mec-fes-form.mec-fes-form .mec-tooltip{display:inline}.mec-fes-form-cntt .dashicons-editor-help{display:block}.mec-fes-form .mec-tooltip:hover:after,.mec-fes-form .mec-tooltip:hover:before{display:none}.mec-fes-form.mec-fes-form .mec-tooltip{display:inline-flex;bottom:7px}.mec-fes-form .mec-tooltip .box{min-width:300px;max-width:600px;display:inline-block;left:26px;top:50%;transform:translateY(-50%);padding:0;margin-top:8px;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.3;position:absolute;z-index:9999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s}#webnus-dashboard .mec-fes-form .mec-tooltip .box p,.mec-fes-form .mec-tooltip .box p{color:#fff;font-size:14px;line-height:1.3;margin:0}.mec-fes-form .mec-tooltip:hover .box{visibility:visible;opacity:1}.mec-fes-form .mec-tooltip:hover .box{padding:20px;border-radius:8px}.mec-fes-form .mec-tooltip .box h5{color:#fff;font-size:17px;font-weight:600;margin:-30px -20px;padding:20px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #32363a;border-radius:6px 6px 0 0;z-index:9999}#webnus-dashboard .mec-fes-form .mec-tooltip .box p a,.mec-fes-form .mec-tooltip .box p a{color:#40d9f1;margin-top:10px;margin-left:0;font-weight:400;position:relative;text-decoration:none;display:block;width:max-content}.mec-fes-form .mec-tooltip .box a:hover{color:#f90}.mec-fes-form .mec-tooltip .box:after{display:block;position:absolute!important;top:100%!important;right:50%!important;margin-top:-6px!important;margin-right:-6px!important;width:12px!important;height:24px!important;overflow:hidden!important;transform:rotate(-90deg)!important}.mec-fes-form .mec-tooltip .box:before{display:block;content:''!important;position:absolute!important;width:12px;height:12px;left:-10px!important;top:50%!important;transform:translate(50%,-50%) rotate(-45deg)!important;background-color:#535a61!important;box-shadow:0 8px 9px -4px #535a61!important;z-index:0!important}.mec-fes-form .mec-tooltip .box.top{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-fes-form .mec-tooltip .box.top:after{top:50%!important;right:100%!important}.mec-fes-form .mec-tooltip .box.top:before{left:50%!important;top:100%!important}.mec-fes-form .mec-tooltip .box.bottom{left:50%;top:auto;bottom:0;transform:translate(-50%,100%);margin-bottom:-20px;margin-left:-10px}.mec-fes-form .mec-tooltip .box.bottom:after{top:0!important;right:50%!important;background-color:#3a3f44!important}.mec-fes-form .mec-tooltip .box.bottom:before{left:50%!important;top:-7px!important;transform:translateX(-50%);background-color:#3a3f44!important}.mec-fes-form .mec-tooltip .box.left{left:auto;right:26px;top:50%;transform:translateY(-50%)}.mec-fes-form .mec-tooltip .box.left:before{right:0!important;left:auto!important;top:50%!important}.mec-fes-form .mec-tooltip{display:inline-block;position:relative;margin-right:10px;cursor:help;bottom:5px;left:3px}.mec-fes-form .mec-tooltip:last-child{margin-right:0}.mec-fes-form .mec-tooltip:hover:after{background:#313130;border-radius:5px;bottom:24px;color:#fff;content:attr(title);left:-75px;padding:10px;position:absolute;z-index:98;width:240px}.mec-fes-form .mec-tooltip:hover:before{border:solid;border-color:#313130 transparent;border-width:6px 6px 0;bottom:18px;content:"";left:30%;position:absolute;z-index:99}.mec-fes-form .mec-tooltip .dashicons-before:before{font-size:24px;color:#008aff;line-height:37px}.mec-fes-form .mec-tooltip a:focus{box-shadow:none}.mec-form-row .bootstrap_unvalid{display:block;border:2px solid red;position:relative;display:inline-block;border-bottom:1px dotted #000}.mec-fes-form .mec-tooltiptext{visibility:hidden;width:120px;background-color:red;color:#fff;text-align:center;border-radius:6px;padding:5px 0;position:absolute;z-index:1}.mec-fes-form .mec-tooltip .content p a{display:none}@media only screen and (min-width:961px){.mec-fes-form .mec-fes-form-cntt,.mec-fes-form .mec-fes-form-sdbr{width:68%;float:left;padding-right:20px}.mec-fes-form .mec-fes-form-sdbr{width:32%;padding-right:0;padding-left:20px}.mec-fes-submit-mobile{display:none}}.mec-fes-form .mec-meta-box-fields{padding:0 20px 20px;border:1px solid #cfeff5;margin-bottom:20px!important;box-shadow:0 2px 6px -3px #cfeff5;border-radius:3px;background:#fff}.mec-fes-form .mec-meta-box-fields h4{margin:0 -20px;font-size:15px;font-weight:600;letter-spacing:0;color:#40d9f1;text-transform:capitalize;padding:15px 20px;background:#ecfcff;margin-bottom:20px;border-radius:3px}.mec-fes-sub-button{width:100%}.mec-available-color-row span.color-selected{border:3px solid #fff;box-sizing:content-box;box-shadow:0 0 0 2px #40d9f1,0 2px 8px -1px #40d9f1}.mec-fes-loading:before{content:url(../img/ajax-loader.gif);background:0 0;border-style:none;display:block;margin-left:47%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:190px;margin-right:1.4%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-1,.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-2{width:120px;margin-right:10px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].widefat{width:100%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row{border-bottom:none;padding-bottom:10px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-6{width:39%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row button{margin-right:0;padding:9px 26px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row button.mec-add-hourly-schedule-button{font-size:12px;height:30px;line-height:25px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row .description{display:inline-block;border-left:1px dashed #bfcacc;margin-left:12px;line-height:28px;padding-left:12px;margin-top:5px;font-style:italic}@media only screen and (max-width:768px){.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:100%!important}}#mec_fes_form_message{max-width:838px;margin:10px auto;display:block!important;text-align:center}.mec-wrap .mec-totalcal-box{position:relative;border:1px solid #efefef;padding:20px 5px;margin:0 0 20px;background:#fafafa;overflow:hidden;box-shadow:0 3px 2px 0 rgba(0,0,0,.012);min-height:78px}.mec-wrap .mec-totalcal-box i{float:left;margin:0;width:36px;height:36px;background:#fff;border:1px solid #efefef;text-align:center;padding:10px 0;font-size:15px;color:#888}.mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-wrap .mec-totalcal-box input,.mec-wrap .mec-totalcal-box select{width:auto;min-height:36px;height:36px;line-height:36px;background:#fff;font-size:13px;color:#777;border:1px solid #efefef;margin:0 0 0 -1px;float:left;padding:0 5px;font-family:Roboto,Helvetica,Arial,sans-serif}.mec-wrap .mec-totalcal-box input[type=submit]{cursor:pointer;padding:0 16px;text-transform:uppercase;font-size:11px;font-family:Montserrat,Helvetica,Arial,sans-serif;transition:all .21s ease}.mec-wrap .mec-totalcal-box input[type=submit]:hover{background:#222;color:#fff}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{display:inline-block;text-transform:uppercase;font-family:Montserrat,Helvetica,Arial,sans-serif;font-size:11px;padding:0 12px;cursor:pointer}.mec-wrap .mec-totalcal-box .mec-totalcal-view span:hover{color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected{color:#fff;background:#40d9f1;border-color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view{text-align:right;float:right}.mec-wrap .mec-totalcal-box input[type=search]{width:calc(100% - 36px)}@media only screen and (min-width:961px) and (max-width:1200px){.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-3,.mec-wrap .mec-totalcal-box .col-md-4,.mec-wrap .mec-totalcal-box .col-md-5{width:100%;float:none;padding-bottom:20px;clear:both;overflow:hidden}}@media only screen and (min-width:768px) and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-4{position:relative;right:10px;top:20px;width:initial}.mec-wrap .mec-totalcal-box .col-md-5{padding-bottom:0}.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:767px){.mec-wrap .mec-totalcal-box .mec-totalcal-view{float:none}.mec-wrap .mec-totalcal-box .col-md-4{padding-bottom:0}}@media only screen and (max-width:479px){.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 8px;font-size:10px}.mec-wrap .mec-totalcal-box input[type=submit]{padding:0 10px;font-size:10px}}@media only screen and (min-width:961px){.mec-wrap .mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5,.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-3{width:100%;float:none;padding-bottom:20px;clear:both;overflow:hidden}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-4{position:absolute;right:10px;top:20px;width:initial}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5{padding-bottom:0;width:100%}}@media (min-width:961px) and (max-width:1200px){.mec-full-calendar-wrap .mec-totalcal-box{padding:20px 20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{padding-bottom:20px!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{min-width:calc(30% - 10px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3:last-child select{min-width:calc(50% - 19px)}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view{margin-right:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:10px;text-align:center}}@media (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box{padding:20px 20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{padding-bottom:10px!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px);margin-bottom:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view{margin-right:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:10px;text-align:center}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:100%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:absolute;top:20px}}@media (min-width:780px) and (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:absolute;top:20px}}@media(max-width:780px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{width:calc(50% - 18px)!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:unset;padding-right:0}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:20%;text-align:center;font-size:10px}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 7px;margin-top:20px}}@media(max-width:480px){.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:20%;text-align:center;font-size:10px}}.mec-search-form{padding:20px 10px}.mec-search-form .mec-dropdown-wrap{display:table;width:100%}.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{padding:0 10px;float:left;min-height:55px}.mec-search-form .mec-date-search,.mec-search-form .mec-text-input-search{width:50%;min-height:36px;display:block}.mec-full-calendar-wrap .mec-search-form .mec-date-search,.mec-full-calendar-wrap .mec-search-form .mec-text-input-search{width:100%}.mec-full-calendar-wrap .mec-search-form .col-md-3,.mec-full-calendar-wrap .mec-search-form .col-md-5,.mec-full-calendar-wrap .mec-search-form .col-md-6,.mec-full-calendar-wrap .mec-search-form .col-md-8{padding:0}.mec-widget .mec-search-form .mec-date-search,.mec-widget .mec-search-form .mec-text-input-search{width:100%}.mec-widget .mec-search-form .mec-text-input-search{margin-top:10px}.mec-search-form .mec-date-search{clear:left}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:table-cell;float:none}.mec-widget .mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block}.mec-wrap .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{width:calc(100% - 36px);margin-bottom:20px}.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 106px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}@media only screen and (max-width:767px){.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{width:100%;float:none}.mec-search-form .mec-date-search{min-height:55px}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:50%;float:left}}@media only screen and (max-width:960px){.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 124px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}}@media only screen and (max-width:479px){.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:100%;float:none}}.ui-datepicker{background-color:#fff;border:1px solid #66afe9;border-radius:4px;box-shadow:0 0 8px rgba(102,175,233,.6);display:none;margin-top:4px;padding:10px;width:240px}.ui-datepicker a,.ui-datepicker a:hover{text-decoration:none;cursor:pointer}.ui-datepicker a:hover,.ui-datepicker td:hover a{color:#2c6396;-webkit-transition:color .1s ease-in-out;-moz-transition:color .1s ease-in-out;-o-transition:color .1s ease-in-out;transition:color .1s ease-in-out}.ui-datepicker .ui-datepicker-header{margin-bottom:4px;text-align:center}.ui-datepicker .ui-datepicker-title{font-weight:700}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{cursor:default;font-family:dashicons;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;height:20px;line-height:1.4;margin-top:2px;width:20px}.ui-datepicker .ui-datepicker-prev{float:left;text-align:left}.ui-datepicker .ui-datepicker-next{float:right;text-align:center}.ui-datepicker .ui-datepicker-prev:before{content:"\f341"}.ui-datepicker .ui-datepicker-next:before{content:"\f345"}.ui-datepicker .ui-icon{display:none}.ui-datepicker .ui-datepicker-calendar{table-layout:fixed;width:100%}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker .ui-datepicker-calendar th{text-align:center;padding:4px 0}.ui-datepicker .ui-datepicker-calendar td{border-radius:4px;-webkit-transition:background-color .1s ease-in-out,color .1s ease-in-out;-moz-transition:background-color .1s ease-in-out,color .1s ease-in-out;-o-transition:background-color .1s ease-in-out,color .1s ease-in-out;transition:background-color .1s ease-in-out,color .1s ease-in-out}.ui-datepicker .ui-datepicker-calendar td:hover{background-color:#eee;cursor:pointer}.ui-datepicker .ui-datepicker-calendar td a{text-decoration:none}.ui-datepicker .ui-datepicker-current-day{background-color:#4289cc}.ui-datepicker .ui-datepicker-current-day a{color:#fff}.ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover{background-color:#fff;cursor:default}.mec-owl-theme .owl-dots .owl-dot{border:none}.event-carousel-type1-head .mec-event-image{position:relative;min-height:150px}.event-carousel-type1-head .mec-event-image img{width:100%}.mec-event-carousel-content .mec-event-carousel-title a{transition:all .2s ease}.event-carousel-type1-head .mec-event-date-carousel{position:absolute;top:25px;left:1px;font-size:41px;width:160px;color:#fff;font-weight:500;background-color:#40d9f1;padding-left:21px;height:97px;line-height:2.3;padding-right:85px}.event-carousel-type1-head .mec-event-date-carousel:after{content:"";position:absolute;display:inline-block;z-index:-1;bottom:-13px;left:5px;width:0;border-width:13px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.event-carousel-type1-head .mec-event-date-info{font-size:12px;font-weight:300;position:absolute;top:27px;left:75px}.event-carousel-type1-head .mec-event-date-info-year{font-size:12px;font-weight:300;position:absolute;top:45px;left:75px}.mec-event-carousel-content{border:1px solid #e8e8e8;border-top:none;margin-top:-5px;padding:34px 9px 11px 37px}.mec-event-carousel-content .mec-event-carousel-title a{font-size:23px;font-weight:500;color:#000;letter-spacing:-1px}.mec-event-carousel-content p{font-size:14px;color:#7a7272;font-weight:300}.mec-owl-crousel-skin-type1 .owl-item .mec-event-article{padding:0 19px}.mec-event-carousel-type1 .owl-page.active span{background-color:#00aeef;height:14px;width:14px}.mec-event-carousel-type1 .mec-event-carousel-content{margin-bottom:15px;box-shadow:0 1px 2px rgba(0,0,0,.04);transition:all .27s ease}.mec-event-carousel-type1 .mec-event-carousel-content:hover{box-shadow:0 0 35px rgba(0,0,0,.07)}@media only screen and (min-width:768px) and (max-width:1000px),(min-width:270px) and (max-width:448px){.event-carousel-type1-head .mec-event-date-carousel{font-size:25px;line-height:2.5;padding-right:70px;height:64px;width:120px}.event-carousel-type1-head .mec-event-date-carousel:after{left:7px}.event-carousel-type1-head .mec-event-date-info{font-size:10px;top:13px;left:55px}.event-carousel-type1-head .mec-event-date-info-year{font-size:10px;top:25px;left:55px}.event-carousel-type1-head .mec-event-date-carousel:after{top:48px}}.event-carousel-type2-head{background:#fff;border:1px solid #e6e6e6}.event-carousel-type2-head .mec-event-carousel-content-type2{margin-top:15px;min-height:182px}.event-carousel-type2-head .mec-event-carousel-content-type2 .mec-event-date-info{font-size:15px;color:#9a9a9a;font-weight:300}.event-carousel-type2-head .mec-event-carousel-content-type2 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-carousel-content-type2 .mec-event-carousel-title a{color:inherit}.mec-event-carousel-type2 .event-carousel-type2-head .mec-event-carousel-content-type2 p{font-size:16px;font-weight:300;color:#444}.event-carousel-type2-head .mec-event-footer-carousel-type2{margin-top:33px;position:relative}.mec-event-carousel-type2 .mec-event-footer-carousel-type2 .mec-event-sharing-wrap{left:0}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-event-sharing-wrap>li{border:none;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button{border:1px solid #e4e4e4;float:right;padding:7px 23px 7px;font-size:12px;text-transform:uppercase;color:#707070;font-weight:500;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button:hover{color:#fff}.mec-event-article .event-carousel-type2-head{padding:10%;margin-right:-1px}.mec-event-carousel-type2 .mec-owl-carousel .owl-wrapper-outer{border-right:1px solid #e6e6e6}.mec-wrap .mec-event-carousel-type2 .owl-next,.mec-wrap .mec-event-carousel-type2 .owl-prev,.mec-wrap .mec-event-carousel-type3 .owl-next,.mec-wrap .mec-event-carousel-type3 .owl-prev,.mec-wrap .mec-event-carousel-type4 .owl-next,.mec-wrap .mec-event-carousel-type4 .owl-prev{transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:47%;background-color:transparent!important}.mec-event-carousel-type2 .owl-next{right:-60px}.mec-event-carousel-type2 .owl-prev{left:-60px}.mec-event-carousel-type2 .owl-next i,.mec-event-carousel-type2 .owl-prev i,.mec-event-carousel-type3 .owl-next i,.mec-event-carousel-type3 .owl-prev i,.mec-event-carousel-type4 .owl-next i,.mec-event-carousel-type4 .owl-prev i{font-size:40px;color:#282828}.mec-event-carousel-type2 .owl-next i:hover,.mec-event-carousel-type2 .owl-prev i:hover,.mec-event-carousel-type3 .owl-next i:hover,.mec-event-carousel-type3 .owl-prev i:hover{color:#000;cursor:pointer}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}@media only screen and (min-width:320px) and (max-width:768px){.mec-event-carousel-type2 .owl-next,.mec-event-carousel-type2 .owl-prev,.mec-event-carousel-type3 .owl-next,.mec-event-carousel-type3 .owl-prev,.mec-event-carousel-type4 .owl-next,.mec-event-carousel-type4 .owl-prev{position:initial;top:100%}}.mec-event-carousel-type3 .mec-event-article{margin:0 10px}.event-carousel-type3-head .mec-event-image,.event-carousel-type3-head .mec-event-image img{width:100%;height:auto}.event-carousel-type3-head .mec-event-footer-carousel-type3{background:#fff;display:inline-block;width:calc(100% - 40px);margin-top:-74px;position:relative;margin-left:20px;margin-right:20px;margin-bottom:6px;padding:8% 11%;box-shadow:0 2px 10px -2px rgba(0,0,0,.2)}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button{border:1px solid #e4e4e4;text-transform:uppercase;float:right;padding:7px 23px 7px;font-size:12px;color:#707070;font-weight:500}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button:hover{color:#fff}.mec-event-footer-carousel-type3 span{font-size:15px;color:#9a9a9a;font-weight:300;display:block;margin-top:30px}.mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:29px;font-weight:700}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-footer-carousel-type3 .mec-event-carousel-title a{color:inherit}.event-carousel-type3-head .mec-event-footer-carousel-type3 p{font-size:16px;font-weight:300;color:#444!important;margin-bottom:36px}.mec-event-carousel-type3 .owl-next{right:-70px}.mec-event-carousel-type3 .owl-prev{left:-70px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap{left:11%}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}.event-carousel-type3-head .mec-end-date-label{display:inline;margin-left:2px}.event-carousel-type4-head.clearfix{position:relative;overflow:hidden;background:#fff}.event-carousel-type4-head .mec-event-overlay{position:absolute;left:0;right:0;bottom:0;top:0;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-hover-carousel-type4{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out;opacity:0;visibility:hidden}.mec-event-carousel-type4 .mec-event-article{margin:0 10px}.mec-event-carousel-type4 .mec-event-article:hover .mec-event-hover-carousel-type4{opacity:1;visibility:visible}.mec-event-hover-carousel-type4 .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-hover-carousel-type4 .mec-event-date{font-size:11px;text-transform:uppercase;font-weight:400;line-height:1.6}.mec-event-hover-carousel-type4 .mec-event-date span{display:block;font-weight:700;font-size:14px}.mec-event-hover-carousel-type4 .mec-event-title{color:#fff;margin:20px 0 38px;font-size:16px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-hover-carousel-type4 .mec-btn-wrapper{text-align:left}.mec-event-hover-carousel-type4 .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:10px 14px;letter-spacing:1.5px;font-size:11px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-hover-carousel-type4 .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-carousel-type4 .owl-next{right:-70px}.mec-event-carousel-type4 .owl-prev{left:-70px}.mec-carousel-type4-head{margin-bottom:25px}.mec-carousel-type4-head-title{padding:0 11px;text-align:left;font-weight:700;font-size:20px;color:#000}.mec-carousel-type4-head-link{text-align:right;padding:0 11px}.mec-carousel-type4-head-link a{background:#222;color:#fff;padding:10px 38px;transition:all .3s ease}.mec-carousel-type4-head-link a:hover,.mec-carousel-type4-head-link a:visited{color:#fff}@media (max-width:960px){.mec-event-carousel-type4 .owl-stage{left:-50px}}.mec-wrap .mec-event-countdown-style1{color:#fff;padding:0!important;display:table;background:#437df9}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1{z-index:5;padding:50px 1% 50px 4%;display:table-cell;float:none;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2{background-color:rgba(0,0,0,.05);height:100%;padding-top:0;display:table-cell;float:none;position:relative;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{background-color:#f8f8f8;display:table-cell;float:none;text-align:center;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style1 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{content:"";position:absolute;display:inline-block;z-index:1;top:50%;margin-top:-11px;right:-24px;width:0;border-width:12px;border-style:solid;border-color:transparent transparent transparent #4077ed}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style1 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto}.mec-event-countdown-style1 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style1 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (min-width:1200px){.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%}}@media (max-width:960px){.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%;transform:rotate(90deg)}}@media (max-width:480px){.mec-event-countdown-style1 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{padding:10px 5px;min-width:50px;margin:3px 1px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:8px}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{display:inline}}.mec-wrap .mec-event-countdown-style2{color:#fff;padding:30px 0;background:#437df9;max-width:600px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part3{width:100%;float:none;vertical-align:middle;padding:50px 10% 50px 10%}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2{padding-top:12%;padding-bottom:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style2 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date-place{text-align:left;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 8px}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#222;background:#fff;transition:all .24s ease}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button:hover{background:#222;color:#fff}.mec-event-countdown-style2 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0}.mec-event-countdown-style2 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style2 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (max-width:767px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:80px;padding:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:26px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:11px}}@media only screen and (max-width:479px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:40px;padding:15px 10px;margin:2px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:20px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:9px}}@media (max-width:380px){.mec-event-countdown-style2 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{padding:10px 4px;margin:4px 1px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:7px}}.mec-wrap .mec-event-countdown-style3{color:#fff;padding:0;background:#282828;display:table;width:100%}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1{width:68%;padding:50px 1% 50px 4%;vertical-align:middle;display:table-cell;position:relative}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:32%;display:table-cell;position:relative;padding-bottom:0;padding-top:0}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 img{width:100%;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{font-weight:300;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{color:#fff;font-size:36px;letter-spacing:-2px;font-weight:700;line-height:1;margin-top:-10px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style3 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style3 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto;position:absolute;top:40px;right:20px}.mec-event-countdown-style3 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style3 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:11px;color:#888;margin:8px 0 0;line-height:1}.mec-event-countdown-style3 .mec-event-date{width:176px;height:96px;background:#40d9f1;color:#fff;font-size:13px;position:absolute;left:-27px;top:146px}.mec-event-countdown-style3 .mec-event-date:after{content:"";position:absolute;display:inline-block;z-index:1;bottom:-18px;left:8px;width:0;border-width:19px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:50px;position:absolute;top:36px;left:12px;letter-spacing:-3px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:80px;top:26px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:80px;top:45px}.mec-event-countdown-style3 .mec-event-countdown-part-details{padding-top:35px;margin-bottom:50px;min-height:100px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-title{font-size:17px;color:#fff;line-height:1.4;padding-right:20px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link{color:#fff;font-size:12px;position:relative;padding-left:22px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link:before{content:"";display:inline-block;width:18px;border-top:1px solid #fff;position:absolute;left:0;top:8px}.mec-event-countdown-style3 .mec-event-title-link{position:absolute;left:190px;top:152px}.event-carousel-type1-head .mec-event-date-carousel:before,.mec-event-countdown-style3 .mec-event-date:before{content:'';position:absolute;left:0;bottom:0;z-index:2;width:100%;height:96px;background:0 0;display:inline-block;box-shadow:0 5px 5px rgba(0,0,0,.12)}@media only screen and (min-width:960px){.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown li{padding:10px}.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:31px}}@media (max-width:959px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:100%;display:block}.mec-event-countdown-style3 .mec-event-title-link{top:190px}.mec-event-countdown-style3 .mec-event-countdown{top:96px}.mec-event-countdown-style3 .mec-event-date{left:0;top:190px}.mec-event-countdown-style3 .mec-event-date:after{display:none}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{display:inline}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:150px}}@media (max-width:767px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:26px;letter-spacing:-1px}.mec-event-countdown-style3 .mec-event-title-link{left:130px}.mec-event-countdown-style3 .mec-event-date{width:120px;font-size:10px;height:63px}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:36px;top:20px;left:4px;letter-spacing:-2px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:52px;top:12px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:52px;top:28px}}@media (max-width:380px){.mec-event-countdown-style3 .mec-event-title-link{left:10px;top:260px}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:300px}.mec-event-countdown-style3 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:10px 5px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:8px}}.mec-slider-t1-wrap{width:100%;padding:60px 90px;background:#f7f7f7;min-height:560px;position:relative}.mec-slider-t1{height:500px;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t1 .mec-event-article{position:relative;height:500px}.mec-slider-t1 .mec-slider-t1-img{position:relative;background-size:cover!important;background-position:center!important;width:50%;height:100%;float:right;margin:0;overflow:hidden}.mec-slider-t1 .mec-slider-t1-content{width:50%;float:left;height:100%;background:#fff;padding:6%}.mec-slider-t1-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t1-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:54px;height:54px;line-height:48px;border-radius:0;text-align:center;background:#fff;box-shadow:0 2px 11px 0 rgba(0,0,0,.045);transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-27px;cursor:pointer}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 29px 0 rgba(0,0,0,.095)}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:12px;color:#282828;transition:all .21s ease}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{font-size:13px;color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t1{margin:0 auto;max-width:900px}}@media only screen and (max-width:960px){.mec-slider-t1 .mec-slider-t1-content,.mec-slider-t1 .mec-slider-t1-img{width:100%;float:none}.mec-slider-t1 .mec-slider-t1-img{height:300px}.mec-slider-t1,.mec-slider-t1 .mec-event-article{height:auto}}@media only screen and (max-width:768px){.mec-slider-t1-wrap{padding:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:10px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}}@media only screen and (max-width:479px){.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t2-wrap{width:100%;padding:0;background:#fff;min-height:600px;position:relative}.mec-slider-t2 .mec-event-article{height:600px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t2 .mec-slider-t2-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:70%;height:100%;margin:0;overflow:hidden}.mec-slider-t2 .mec-slider-t2-content{width:50%;position:absolute;right:0;top:60px;bottom:60px;padding:5%}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern *{color:#fff}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-content,.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t2-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:84px;cursor:pointer}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}.mec-wrap.colorskin-custom .mec-slider-t2 .mec-event-article .mec-event-date.mec-color{color:#fff}@media only screen and (min-width:961px){.mec-slider-t2{margin:0 auto;max-width:1200px}}@media only screen and (max-width:960px){.mec-slider-t2 .mec-slider-t2-content,.mec-slider-t2 .mec-slider-t2-img{width:100%;float:none;position:static}.mec-slider-t2 .mec-slider-t2-img{height:300px}.mec-slider-t2 .mec-event-article{height:auto}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px}}@media only screen and (max-width:479px){.mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:22px}}.mec-slider-t3-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t3 .mec-event-article{height:700px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t3 .mec-slider-t3-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;opacity:.68;z-index:1}.mec-slider-t3 .mec-slider-t3-content{width:50%;height:auto;vertical-align:middle;display:table;position:absolute;left:0;top:0;bottom:0;padding:0 2% 0 7%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t3 .mec-slider-t3-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-content,.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-slider-t3-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t3-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{border-color:#40d9f1}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-22px;cursor:pointer}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next{right:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:50px;font-weight:300}.mec-slider-t3-content.mec-event-grid-modern .mec-event-description{font-size:19px}}@media only screen and (max-width:767px){.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}}@media only screen and (max-width:479px){.mec-slider-t3 .mec-slider-t3-content{width:100%}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t4-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t4 .mec-event-article{height:700px;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t4 .mec-slider-t4-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;z-index:1}.mec-slider-t4 .mec-slider-t4-content{width:auto;max-width:700px;background:rgba(37,37,37,.94)!important;height:auto;vertical-align:middle;display:table;position:absolute;left:8%;top:19%;padding:3%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t4 .mec-slider-t4-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-content,.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:13px;padding:0 42px;line-height:49px;height:50px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t4-content.mec-event-grid-modern .mec-slider-t4-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next{right:60px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{right:112px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:767px){.mec-slider-t4 .mec-slider-t4-content{width:100%;left:0;top:auto;bottom:0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t5-wrap{width:auto;max-width:570px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-slider-t5{height:auto;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t5 .mec-event-article{position:relative;height:auto}.mec-slider-t5 .mec-slider-t5-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:300px;float:none;margin:0;overflow:hidden}.mec-slider-t5 .mec-slider-t5-content{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-slider-t5 .mec-events-content p{margin-bottom:20px}.mec-slider-t5-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t5-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t5 .mec-slider-t5-col6{width:50%;float:left;height:100%}.mec-slider-t5 .mec-slider-t5-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-slider-t5 .mec-slider-t5-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-slider-t5 .mec-slider-t5-col6 address{font-size:12px;margin-bottom:0}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t5-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:768px){.mec-slider-t5 .mec-slider-t5-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-single-modern .mec-events-event-image{text-align:center}.mec-single-modern .mec-events-event-image img{width:100%}.mec-single-modern .mec-single-event-bar{background-color:#f7f7f7;margin:20px 0 0;padding:15px;display:table;width:100%}.mec-single-modern .mec-single-event-bar>div{display:table-cell}.mec-single-modern .mec-single-event-bar>div i{font-size:20px;vertical-align:middle}.mec-single-modern .mec-single-event-bar>div .mec-time-comment{font-size:12px;color:#999}.mec-single-modern .mec-single-event-bar>div h3{text-transform:uppercase;font-size:16px;font-weight:700;padding-bottom:5px;display:inline;color:#000;padding-left:10px}.mec-single-modern .mec-single-event-bar>div dd{font-size:14px;color:#8d8d8d;padding-left:34px;margin-bottom:0}.mec-single-modern .col-md-4 .mec-frontbox{margin-top:-50px;margin-bottom:70px;padding:20px;border:none;background:#f7f7f7;box-shadow:none}.mec-next-occurrence li{list-style:none}@media only screen and (min-width:960px){.mec-single-modern .col-md-4 .mec-frontbox{margin-left:20px}}@media only screen and (max-width:960px){.mec-single-modern .mec-single-event-bar>div{display:block}}.lity-content>div{overflow:auto}.mec-next-event-details li{list-style:none;margin-top:20px}.mec-next-event-details h6{text-transform:uppercase;font-size:13px;padding-bottom:5px;display:inline;color:#222;padding-left:0}.mec-next-event-details abbr{display:block;padding-left:12px;color:#8d8d8d}.mec-next-event-details i{margin-right:10px;margin-left:12px}.mec-next-event-details i:before{color:#40d9f1}.mec-next-event-details a{text-align:center;display:block;background:#fff;padding:6px 0;font-size:11px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;transition:.3s}.mec-single-modal.mec-single-modern .mec-single-title{text-align:center;padding:15px 10px 0}.admin-bar .mec-single-modal.mec-single-modern .mec-single-title{padding-top:40px}.mec-single-modal.mec-single-modern .mec-single-event-bar{padding:5px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div dd{font-size:13px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div h3{font-size:15px}@media only screen and (min-width:960px){.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-left:0}}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-top:10px;margin-bottom:10px}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox.mec-event-meta{padding:0}.mec-single-modal .mec-event-meta dd.mec-organizer-email a,.mec-single-modal .mec-event-meta dd.mec-organizer-url a{font-size:12px;display:block}.mec-modal-wrap{max-width:60vw;max-height:90vh!important;background:#fff;box-shadow:0 1px 55px rgba(0,0,0,.5);overflow-x:hidden!important}@media(max-width:1023px){.mec-modal-wrap{max-width:80vw}}.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li,.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a.mec-events-button{display:block;text-align:center}body .featherlight .featherlight-content{background:0 0;overflow:unset;z-index:9999}body .featherlight .featherlight-close-icon{position:fixed;top:40px;right:40px;background:0 0;color:#fff;border:1px solid #fff;border-radius:0}body .featherlight .featherlight-close-icon:hover{background:#fff;color:#000;border:1px solid #000}@media (max-width:320px){.mec-wrap span.flip-clock-divider{width:20px}.mec-single-event .mec-events-meta-group-countdown{padding:15px 12%}}@media (max-width:414px){.mec-wrap span.flip-clock-divider{width:30px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 7%}}@media (max-width:480px){.mec-wrap span.flip-clock-divider{width:7px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 1%}}@media(max-width:1366px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:20px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 15px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:48px}}@media(max-width:1280px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:14px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:15px 10px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:38px}}@media(min-width:961px) and (max-width:1024px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:7px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:15px 5px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:14px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul li a div{font-size:30px}}@media(max-width:640px){body .mec-modal-wrap .mec-single-modal.featherlight-close-icon{top:14px;right:14px}}@media(max-width:480px){.featherlight .featherlight-content,body .mec-modal-wrap{max-width:100%}body .mec-modal-wrap.flip-clock-divider .flip-clock-label{display:block}}@media (max-width:414px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:50px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 65px}body .featherlight-content .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 2px 20px 2px!important}body .featherlight-content .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:3px!important}}@media (max-width:375px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:50px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 45px}}@media (max-width:320px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:20px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 40px}}.mec-events-toggle{max-width:960px;margin-left:auto;margin-right:auto}.mec-events-toggle .mec-toggle-item{border:1px solid #e4e4e4;margin-bottom:15px;box-shadow:0 10px 15px #f3f3f3}.mec-events-toggle .mec-toggle-item-inner{cursor:pointer;position:relative;padding:30px 60px 30px 15px;background:#fff;transition:all .3s ease;min-height:100px;display:table;width:100%;border-collapse:separate}.mec-events-toggle .mec-toggle-item-inner:hover{background:#fbfbfb}.mec-toggle-item-col{width:200px;border-right:1px solid #e3e3e3;margin-right:15px;display:table-cell;padding-right:5px}.mec-toggle-item-col .mec-event-date{font-size:38px;line-height:40px;float:left;margin-right:8px}.mec-toggle-item-col .mec-event-month,.mec-toggle-item-col .mec-time-details{text-transform:uppercase;font-size:12px;line-height:14px;padding-top:4px;font-weight:700}.mec-toggle-item-col .mec-event-detail{font-size:10px}.mec-toggle-item-col .mec-event-day{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:35px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-events-toggle .mec-toggle-title{color:#000;font-size:23px;font-weight:600;margin-bottom:0;transition:all .3s ease;display:table-cell;text-align:left;max-width:calc(100% - 200px);padding-left:15px;vertical-align:middle}.mec-events-toggle .mec-toggle-item-inner span.event-color{width:5px;height:100%;position:absolute;left:-1px;top:0;bottom:0;border-radius:0;margin:0}.mec-events-toggle .mec-toggle-item-inner i{position:absolute;font-size:30px;right:25px;top:50%;transform:translate(0,-50%);cursor:pointer}.mec-events-toggle .mec-toggle-item.is-open i.mec-sl-plus:before{content:"\e615"}.mec-events-toggle .mec-toggle-item.is-open .mec-toggle-title{background:#f8f8f8;cursor:pointer}.mec-events-toggle .mec-toggle-content{border-top:1px solid #e4e4e4}.mec-events-toggle .mec-toggle-content .mec-modal-wrap{margin:0;max-width:100%;box-shadow:none}.mec-events-toggle .mec-toggle-content .mec-modal-wrap .mec-single-event{margin:0}.mec-events-toggle .mec-toggle-content .mec-single-event-bar,.mec-events-toggle .mec-toggle-content h1.mec-single-title{display:none}.mec-events-toggle .media-links a{margin-bottom:0}.mec-events-toggle .mec-toggle-content .mec-toggle-meta{margin-bottom:14px}.mec-events-toggle #mec_speakers_details.mec-frontbox{padding:0;margin:0}.mec-events-toggle .mec-toggle-item h3.mec-speakers{border:none;text-align:left}.mec-events-toggle .mec-toggle-item h3.mec-speakers:before{content:"\e063";font-family:simple-line-icons;border:none;position:relative;display:inline-block;left:unset;bottom:unset;font-size:22px;font-weight:400;padding:0 11px 0 28px;vertical-align:middle}@media only screen and (max-width:767px){.mec-toggle-item-inner .mec-toggle-item-col{float:none;width:100%;border-right:none;margin-bottom:5px;display:block;max-width:100%;padding-left:15px}.mec-events-toggle .mec-toggle-title{display:block;width:100%;max-width:100%}}.mec-events-agenda-wrap{margin:10px 0;border:1px solid #e9e9e9;padding-left:20px;box-shadow:0 2px 2px rgba(0,0,0,.03)}.mec-events-agenda{padding:0;border-bottom:1px solid #e9e9e9;overflow:hidden}.mec-agenda-date-wrap{width:210px;padding-top:15px;float:left;font-size:13px}.mec-agenda-date-wrap i,.mec-agenda-event i{font-size:11px;color:#aaa;margin-right:4px;margin-left:1px}.mec-agenda-event i{vertical-align:middle;margin-right:1px}.mec-agenda-events-wrap{float:left;width:calc(100% - 210px);background:#f9f9f9;padding:15px}.mec-agenda-time{font-size:11px;color:#707070;padding-right:10px;width:138px;display:inline-block}.mec-agenda-event-title{position:relative;padding-left:14px}.mec-agenda-event-title a{font-family:Roboto,Montserrat,Helvetica,Arial,sans-serif;font-size:14px;font-weight:600;color:#333}.mec-agenda-event-title span.event-color{width:9px;height:9px;position:absolute;left:0;top:4px;margin:0}.mec-agenda-date-wrap span.mec-agenda-day{color:#aaa;font-size:12px}@media only screen and (max-width:767px){.mec-agenda-date-wrap,.mec-agenda-events-wrap{float:none;width:100%}.mec-events-agenda span.mec-agenda-event-title{display:block;width:100%}.mec-agenda-event-title span.event-color{top:7px}.mec-agenda-event-title a{font-size:13px}}.mec-yearly-view-wrap{margin:0 0 15px;border:1px solid #e6e6e6;box-shadow:0 2px 4px rgba(0,0,0,.04);border-bottom-width:4px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar{max-width:100%;width:232px;padding:10px;background:#fff;margin:10px;display:inline-block}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar dl dt{transition:none;height:30px;width:30px;line-height:30px;border-radius:0;font-size:12px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar .mec-calendar-events-sec{padding:10px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar .mec-has-event:after{width:4px;height:4px;bottom:3px;margin-left:-2px}.mec-yearly-view-wrap .mec-calendar-side .mec-calendar-table{min-height:200px}.mec-calendar.mec-yearly-calendar .mec-calendar-table-head dl dt{background:#f9f9f9;font-size:13px}.mec-calendar.mec-yearly-calendar .mec-calendar-table-title{text-align:center;font-size:15px;font-weight:700;color:#222;margin-top:-5px;padding-bottom:5px}.mec-yearly-view-wrap .mec-yearly-calendar-sec{min-height:200px;width:538px;overflow:hidden;float:left;background:#f8f8f8;padding:15px}.mec-yearly-view-wrap .mec-yearly-agenda-sec{min-height:200px;width:calc(100% - 538px);float:left;padding:0 0 0 20px;overflow:hidden}.mec-yearly-view-wrap .mec-yearly-title-sec{position:relative;padding:15px;text-align:center;border-bottom:1px solid #e6e6e6;box-shadow:0 1px 3px rgba(0,0,0,.02)}.mec-yearly-view-wrap .mec-yearly-title-sec h2{font-size:30px;line-height:40px;color:#333;margin:0;font-weight:700}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year,.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{position:absolute;top:50%;margin-top:-15px;min-width:30px;height:30px;line-height:30px;padding:0 8px;text-align:center;background:#fff;color:#666;font-size:14px;border:1px solid #eee;border-radius:2px;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease;cursor:pointer}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{right:auto;left:20px;padding-right:14px}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year{left:auto;right:20px;padding-left:14px}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year i,.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-yearly-view-wrap .mec-events-agenda.mec-selected{box-shadow:-10px 0 0 0 #fffcf2,0 -1px 0 #fbebb6;background:#fffcf2;border-color:#fbebb6;color:#f9af29}@media only screen and (max-width:959px){.mec-yearly-view-wrap .mec-yearly-calendar-sec{width:268px;padding:10px 5px}.mec-yearly-view-wrap .mec-yearly-agenda-sec{width:calc(100% - 268px);padding:0 0 0 10px}}@media only screen and (max-width:767px){.mec-yearly-view-wrap .mec-yearly-agenda-sec,.mec-yearly-view-wrap .mec-yearly-calendar-sec{width:100%;float:none}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar{width:auto}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar dl dt{width:14.2%}.mec-yearly-view-wrap .mec-yearly-title-sec h2{font-size:25px}}.mec-yearly-view-wrap .mec-agenda-event i,.mec-yearly-view-wrap .mec-agenda-time{display:none}@media only screen and (min-width:768px){.mec-yearly-view-wrap .mec-events-agenda-wrap{margin-top:0;border:none;padding-left:0;box-shadow:none}.mec-yearly-view-wrap .mec-agenda-date-wrap{width:174px;font-size:11px;padding-top:10px}.mec-yearly-view-wrap .mec-agenda-events-wrap{width:calc(100% - 174px);padding:10px}.mec-yearly-view-wrap .mec-agenda-event-title a{font-size:13px}.mec-yearly-view-wrap .mec-agenda-event-title span.event-color{width:8px;height:8px}.mec-yearly-view-wrap .mec-agenda-date-wrap span.mec-agenda-day{font-size:11px}.mec-yearly-view-wrap .mec-yearly-calendar-sec{box-shadow:-2px 0 5px rgba(0,0,0,.03) inset}}@media only screen and (max-width:1200px){.mec-yearly-view-wrap .mec-agenda-event-title a{font-size:12px;padding-right:6px}}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table{padding-bottom:10px;border-bottom:none}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt:hover{cursor:pointer}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-has-no-event,.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-has-no-event:hover{color:#bbb;cursor:default}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-day-active{background:#40d9f1;color:#fff;position:relative}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-day-active:after{content:'';position:absolute;display:block;bottom:-20px;left:50%;margin-left:-10px;width:0;border-width:10px;border-style:solid;border-color:#40d9f1 transparent transparent transparent}.mec-timetable-events-list{padding:10px 20px;border:none;margin:0}.mec-timetable-events-list .mec-timetable-event{padding:10px 0;border-bottom:1px dashed #ddd}.mec-timetable-events-list .mec-timetable-event:last-child{border:none}.mec-timetable-event .mec-timetable-event-span{font-size:12px;color:#444;padding-right:30px;line-height:22px}.mec-timetable-events-list .mec-timetable-event i{font-size:13px;color:#aaa;margin-right:3px;vertical-align:baseline}.mec-timetable-event .mec-timetable-event-span a{color:#333}.mec-timetable-event .mec-timetable-event-time{font-size:11px}.mec-timetable-event .mec-timetable-event-time i{vertical-align:text-bottom}.mec-timetable-event .mec-timetable-event-title{font-size:13px}.mec-timetable-event .mec-timetable-event-title .event-color{width:10px;height:10px}.mec-timetable-events-list .mec-timetable-event.mec-util-hidden{display:none}.mec-timetable-events-list.mec-util-hidden{display:none}@media only screen and (min-width:768px){.mec-timetable-events-list{display:table;width:100%;margin:10px 0 20px}.mec-timetable-events-list .mec-timetable-event{display:table-row;padding:0;border:none;background:#fff}.mec-timetable-events-list .mec-timetable-event:hover{background:#fafafa}.mec-timetable-event .mec-timetable-event-span{display:table-cell;padding:10px 15px;border-bottom:1px solid #ebebeb}.mec-timetable-events-list .mec-timetable-event:last-child .mec-timetable-event-span{border-bottom:none}}@media only screen and (max-width:767px){.mec-timetable-event .mec-timetable-event-title{display:block;width:100%;padding:5px 0 10px;font-weight:700}}.mec-timetable-t2-wrap{border:1px solid #e6e6e6;background:#fafafa;padding:0 15px 15px;overflow:hidden;box-shadow:0 3px 2px 0 rgba(0,0,0,.012)}.mec-timetable-t2-col{width:20%;float:left;min-height:20px;padding-right:1px;background:0 0}.mec-ttt2-title{background:#fafafa;color:#333;font-size:13px;font-weight:600;text-transform:uppercase;letter-spacing:1px;text-align:center;padding:25px 10px 10px;margin-bottom:1px}.mec-timetable-t2-col .mec-event-article{position:relative}.mec-timetable-t2-col .mec-event-article .event-color{position:absolute;width:auto;height:auto;left:0;right:0;top:0;bottom:0;margin:0;z-index:1;border-radius:2px}.mec-timetable-t2-content{position:relative;z-index:2;color:#fff;padding:15px 15px 20px;text-align:left;height:130px;margin-bottom:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title{line-height:22px;margin-bottom:13px;white-space:nowrap;padding-right:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title a{color:#fff;font-size:15px;font-weight:600;white-space:nowrap;overflow:hidden}.mec-timetable-t2-content div{color:#fff;font-size:11px;font-weight:400;line-height:19px;white-space:nowrap}.mec-timetable-t2-content div i{font-size:12px;margin-right:4px}@media only screen and (max-width:960px){.mec-timetable-t2-col{width:100%;float:none}}@media(min-width:961px){.mec-timetable-col-7{width:14.28%}.mec-timetable-col-6{width:16.6666%}}.mec-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;text-align:center;word-break:initial}.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:53%;text-align:left}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8) i{color:#fe686a}.mec-profile .mec-event-status{padding:5px 10px;color:#fff;border-radius:2px;font-size:12px;line-height:12px;letter-spacing:.4px}.mec-profile .mec-event-status.mec-book-confirmed{background:#50d477}.mec-profile .mec-event-status.mec-book-pending{background:#fcbe69}.mec-profile .mec-event-status.mec-book-rejected{background:#fe686a}.mec-profile .mec-event-date{font-size:12px;color:#888}.mec-event-date,.mec-event-status{text-align:center}.mec-event-date .mec-tooltip,.mec-event-status .mec-tooltip{position:relative;width:fit-content;margin:auto}.mec-profile i{font-size:15px;color:#008aff;vertical-align:text-bottom;margin-right:4px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{min-width:250px;max-width:300px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#000;color:#fff;font-weight:400;font-size:14px;letter-spacing:.5px;line-height:1.5;position:absolute;z-index:99999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #535a61;padding:5px 10px 6px;border-radius:8px;text-align:center;font-style:normal;opacity:0;visibility:hidden;display:none}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{font-size:13px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;letter-spacing:1.1px;font-weight:500}.mec-event-date .mec-tooltip:hover .box:after,.mec-event-status .mec-tooltip:hover .box:after{content:'';position:absolute;width:12px;height:12px;left:calc(50% - 12px);bottom:-12px;transform:translate(50%,-50%) rotate(-45deg);background-color:#000;box-shadow:0 8px 9px -4px #535a61}.mec-event-status .mec-tooltip .box{min-width:100px}.mec-event-status.mec-book-confirmed .mec-tooltip .box,.mec-event-status.mec-book-confirmed .mec-tooltip:hover .box:after{background-color:#50d477}.mec-event-status.mec-book-rejected .mec-tooltip .box,.mec-event-status.mec-book-rejected .mec-tooltip:hover .box:after{background-color:#fe686a}.mec-event-status.mec-book-pending .mec-tooltip .box,.mec-event-status.mec-book-pending .mec-tooltip:hover .box:after{background-color:#fcbe69}.mec-event-date .mec-tooltip:hover .box,.mec-event-status .mec-tooltip:hover .box{opacity:1;visibility:visible;display:block}.mec-profile .mec-event-status{padding:0}.mec-profile .mec-booking-number-of-attendees{font-size:13px;color:#888}.mec-profile .mec-booking-number-of-attendees i,.mec-profile .mec-profile-bookings-view-invoice i{font-size:15px;color:#008aff;vertical-align:text-bottom;margin-right:4px}.mec-booking-attendees{background:#fff;padding:10px}.mec-booking-attendees{width:850px;text-align:center}.mec-booking-attendees-wrapper{border:2px solid #e6e6e6;font-size:14px}.mec-booking-attendees-head{display:table;width:100%;background:#f7f7f7;border-bottom:1px solid #e6e6e6;font-weight:700}.mec-booking-attendees-head span,.mec-booking-attendees-head-content>span{vertical-align:middle;display:table-cell;padding:7px;border-right:1px solid #e6e6e6;font-size:12px}.mec-booking-attendees-head-content{display:table;width:100%;border-bottom:1px solid #e6e6e6}.mec-booking-attendees-wrapper .mec-booking-attendees-head-content:last-child{border:none}.mec-booking-attendees-head span:nth-child(1),.mec-booking-attendees-head-content>span:nth-child(1){width:4%}.mec-booking-attendees-head span:nth-child(2),.mec-booking-attendees-head-content>span:nth-child(2){width:20%}.mec-booking-attendees-head span:nth-child(3),.mec-booking-attendees-head-content>span:nth-child(3){width:24%}.mec-booking-attendees-head span:nth-child(4),.mec-booking-attendees-head-content>span:nth-child(4){width:26%}.mec-booking-attendees-head span:nth-child(5),.mec-booking-attendees-head-content>span:nth-child(5){width:26%}@media only screen and (max-width:759px){.mec-booking-attendees{width:470px}.mec-booking-attendees-head span,.mec-booking-attendees-head-content>span{word-break:break-all}}@media(max-width:1366px){.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:6%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:40%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:12%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:8%}}@media(max-width:1024px){.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:30%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:15%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:10%}}@media(max-width:780px){.mec-profile .mec-profile-bookings tbody tr,.mec-profile i{font-size:12px}.mec-event-date .mec-tooltip .box{min-width:200px}.mec-event-status .mec-tooltip .box{min-width:90px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{padding:4px 5px!important}.mec-profile .mec-profile-bookings tbody tr{font-size:12px}}@media(max-width:480px){.mec-profile .mec-booking-number-of-attendees,.mec-profile .mec-profile-bookings tbody tr,.mec-profile i{font-size:8px!important}.mec-profile .mec-profile-bookings tbody tr td{padding:3px}.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:19%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:12%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:18%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:13%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:13%}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{font-size:8px}.mec-event-date .mec-tooltip .box{min-width:75px}.mec-event-status .mec-tooltip .box{min-width:70px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{padding:4px 5px!important}}.mec-woo-booking-checkout{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;border-radius:0;margin-bottom:6px;min-width:170px;margin-top:5px;text-align:center}.mec-woo-booking-checkout:hover{background:#222;color:#fff}.mec-woo-booking-checkout:focus,.mec-woo-booking-checkout:visited{color:#fff}.single-mec-events .lity-container{max-width:480px;width:480px}.lity-content .mec-events-meta-group-booking{width:100%;padding:20px 50px;background:#fff}.lity-content .mec-events-meta-group-booking .mec-booking form>h4{text-transform:uppercase;font-size:15px;font-weight:700;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative;text-align:center;line-height:1.2;margin-bottom:10px}.lity-content .mec-events-meta-group-booking .mec-booking form>h4:before{padding:1px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-35px;left:50%}.lity-content .mec-events-meta-group-booking .mec-event-ticket-available,.lity-content .mec-events-meta-group-booking .mec-event-ticket-name,.lity-content .mec-events-meta-group-booking .mec-event-ticket-price,.lity-content .mec-events-meta-group-booking .mec-ticket-variation-name,.lity-content .mec-events-meta-group-booking .mec-ticket-variation-price,.lity-content .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;clear:none;padding:5px 1em 3px 0;display:inline-block}.lity-content .mec-events-meta-group-booking .mec-event-ticket-available{margin-bottom:12px}.lity-content .mec-events-meta-group-booking select{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both;font-family:Montserrat,Helvetica,Arial,sans-serif}.lity-content .mec-events-meta-group-booking input[type=email]{color:#888;border:1px solid #e1e1e1;font-size:14px;display:block;width:100%;outline:0}.lity-content .mec-events-meta-group-booking input{margin-bottom:10px!important}.lity-content .mec-book-ticket-variation h5{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:0;clear:none;padding:5px 1em 3px 0;display:inline-block;text-transform:capitalize;font-family:Montserrat,Helvetica,Arial,sans-serif}.lity-content ul.mec-book-tickets-container{padding:0}.lity-content .mec-events-meta-group-booking input[type=email],.lity-content .mec-events-meta-group-booking input[type=number],.lity-content .mec-events-meta-group-booking input[type=text]{outline:0;font-family:Montserrat,Helvetica,Arial,sans-serif;display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both;margin-bottom:2px!important}.lity-content button[type=submit]{position:relative;border:none;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;min-width:170px;margin-top:5px;border-radius:0;margin-bottom:6px}.lity-content button[type=submit]:hover{background:#222}.lity-content .mec-book-tickets-container li{list-style:none}.lity-content .mec-events-meta-group-booking #mec_book_payment_form h4,.lity-content .mec-events-meta-group-booking li h4{font-size:19px;font-weight:700}.lity-content .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li{width:50%}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li:nth-child(even){border:none}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li span{display:block}.lity-content .mec-events-meta-group-booking button[type=submit]:after{display:none;font-family:simple-line-icons;content:"\e098";margin-left:4px;-webkit-animation:rotating 1.2s linear infinite;-moz-animation:rotating 1.2s linear infinite;-ms-animation:rotating 1.2s linear infinite;-o-animation:rotating 1.2s linear infinite;animation:rotating 1.2s linear infinite}.lity-content .mec-events-meta-group-booking button[type=submit].loading:after{display:inline-block}@media only screen and (max-width:480px){.lity-content .mec-events-meta-group-booking{padding:20px;width:340px;margin:0 auto}}.mec-events-meta-group-booking{position:relative}.mec-cover-loader:after{content:'';position:absolute;top:0;right:0;left:0;bottom:0;background:rgba(255,255,255,.5);z-index:99999}.mec-loader{background:rgba(0,0,0,0);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);z-index:9}.mec-loader,.mec-loader:after{border-radius:50%;width:5em;height:5em;z-index:999999999999}.mec-loader{font-size:10px;text-indent:-9999em;border-top:.5em solid rgba(0,0,0,.2);border-right:.5em solid rgba(0,0,0,.2);border-bottom:.5em solid rgba(0,0,0,.2);border-left:.5em solid #fff;-webkit-transform:translateZ(0);-ms-transform:translateZ(0);transform:translateZ(0);-webkit-animation:mecloader 1.1s infinite linear;animation:mecloader 1.1s infinite linear}@-webkit-keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.mec-google-recaptcha{margin:0 0 20px 16px}.mec-wrap *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap :after,.mec-wrap :before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap .clearfix:after,.mec-wrap .clearfix:before{content:'\0020';display:block;overflow:hidden;visibility:hidden;width:0;height:0}.mec-wrap .clearfix:after{clear:both}.mec-wrap .clearfix{zoom:1}.mec-wrap .clear,.mec-wrap .clr{clear:both;display:block;overflow:hidden;visibility:hidden}.mec-wrap .clr{visibility:visible;overflow:visible}.mec-container [class*=col-] img{max-width:100%}.mec-container{margin-right:auto;margin-left:auto;padding-left:10px;padding-right:10px}.mec-container:after,.mec-container:before{content:" ";display:table}.mec-container:after{clear:both}@media only screen and (max-width:479px){.mec-container{width:300px}}@media only screen and (min-width:480px) and (max-width:767px){.mec-container{width:420px}}@media only screen and (min-width:768px) and (max-width:960px){.mec-container{width:768px}}@media only screen and (min-width:961px){.mec-container{width:960px}}@media only screen and (min-width:1200px){.mec-container{width:1196px;padding-left:15px;padding-right:15px}}@media only screen and (min-width:1921px){.mec-container{max-width:1690px}}.mec-wrap .row{margin-left:-10px;margin-right:-10px}.mec-wrap .row:after,.mec-wrap .row:before{content:" ";display:table}.mec-wrap .row:after{clear:both}.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{position:relative;min-height:1px;padding-left:10px;padding-right:10px}@media only screen and (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{padding-left:15px;padding-right:15px}.mec-wrap .row{margin-left:-15px;margin-right:-15px}}.mec-container [class*=col-].alpha{padding-left:0}.mec-container [class*=col-].omega{padding-right:0}.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{float:left}.mec-wrap .col-xs-12{width:100%}.mec-wrap .col-xs-11{width:91.66666666666666%}.mec-wrap .col-xs-10{width:83.33333333333334%}.mec-wrap .col-xs-9{width:75%}.mec-wrap .col-xs-8{width:66.66666666666666%}.mec-wrap .col-xs-7{width:58.333333333333336%}.mec-wrap .col-xs-6{width:50%}.mec-wrap .col-xs-5{width:41.66666666666667%}.mec-wrap .col-xs-4{width:33.33333333333333%}.mec-wrap .col-xs-3{width:25%}.mec-wrap .col-xs-2{width:16.666666666666664%}.mec-wrap .col-xs-1{width:8.333333333333332%}@media (min-width:768px){.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9{float:left}.mec-wrap .col-sm-12{width:100%}.mec-wrap .col-sm-11{width:91.66666666666666%}.mec-wrap .col-sm-10{width:83.33333333333334%}.mec-wrap .col-sm-9{width:75%}.mec-wrap .col-sm-8{width:66.66666666666666%}.mec-wrap .col-sm-7{width:58.333333333333336%}.mec-wrap .col-sm-6{width:50%}.mec-wrap .col-sm-5{width:41.66666666666667%}.mec-wrap .col-sm-4{width:33.33333333333333%}.mec-wrap .col-sm-3{width:25%}.mec-wrap .col-sm-2{width:16.666666666666664%}.mec-wrap .col-sm-1{width:8.333333333333332%}}@media (min-width:961px){.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9{float:left}.mec-wrap .col-md-12{width:100%}.mec-wrap .col-md-11{width:91.66666666666666%}.mec-wrap .col-md-10{width:83.33333333333334%}.mec-wrap .col-md-9{width:75%}.mec-wrap .col-md-8{width:66.66666666666666%}.mec-wrap .col-md-7{width:58.333333333333336%}.mec-wrap .col-md-6{width:50%}.mec-wrap .col-md-5{width:41.66666666666667%}.mec-wrap .col-md-4{width:33.33333333333333%}.mec-wrap .col-md-3{width:25%}.mec-wrap .col-md-2{width:16.666666666666664%}.mec-wrap .col-md-1{width:8.333333333333332%}}@media (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9{float:left}.mec-wrap .col-lg-12{width:100%}.mec-wrap .col-lg-11{width:91.66666666666666%}.mec-wrap .col-lg-10{width:83.33333333333334%}.mec-wrap .col-lg-9{width:75%}.mec-wrap .col-lg-8{width:66.66666666666666%}.mec-wrap .col-lg-7{width:58.333333333333336%}.mec-wrap .col-lg-6{width:50%}.mec-wrap .col-lg-5{width:41.66666666666667%}.mec-wrap .col-lg-4{width:33.33333333333333%}.mec-wrap .col-lg-3{width:25%}.mec-wrap .col-lg-2{width:16.666666666666664%}.mec-wrap .col-lg-1{width:8.333333333333332%}}#mec_woo_add_to_cart_btn{min-width:170px;margin-top:5px;text-align:center}.mec-breadcrumbs{border-radius:2px;padding:9px 15px 6px;font-size:11px;color:#8d8d8d;letter-spacing:0;text-transform:none;font-weight:500;margin:auto 15px 33px 15px;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.025)}.mec-breadcrumbs-modern{margin:auto 0 33px 0}.mec-breadcrumbs a{color:#000;padding-left:4px}.mec-breadcrumbs a:hover{text-decoration:underline}.mec-breadcrumbs i{font-size:8px;margin:0 0 0 4px}.mec-breadcrumbs .container{padding-left:20px}.mec-content-notification a{margin-left:5px}.mec-content-notification{background:#f7f7f7;padding:10px 10px 10px;border:1px solid #e8e8e8}.mec-content-notification p{margin-bottom:0}.mec-fes-form #mec-advanced-wraper div:first-child>ul{border:1px solid #cfeff5;width:auto;box-shadow:0 1px 4px -2px #cfeff5;display:block;margin:5px 0 10px;padding:5px 0;border-radius:2px}.mec-fes-form #mec-advanced-wraper div:first-child>ul:last-of-type{margin-bottom:35px}#mec-advanced-wraper div:first-child>ul span{display:none}#mec-advanced-wraper div:first-child>ul *{display:inline-block;background:#fff;font-size:12px;color:#717273;text-align:center}#mec-advanced-wraper div:first-child>ul>li{width:60px;font-weight:700;margin:0 10px 0 0;padding:4px 0;border-right:1px solid #cfeff5}#mec-advanced-wraper div:first-child>ul>ul>li{margin:0;padding:2px 10px;cursor:pointer;border-radius:2px;transition:all .18s ease}.mec-fes-form #mec-advanced-wraper div:first-child>ul>ul>li.mec-active,.mec-fes-form #mec-advanced-wraper div:first-child>ul>ul>li:hover{background:#40d9f1!important;box-shadow:0 1px 9px -3px #40d9f1;color:#fff!important}.mec-search-bar-wrap .mec-search-form .mec-text-input-search{width:83%}.mec-search-bar-wrap .mec-search-form .mec-ajax-search-result .mec-text-input-search{width:100%;float:none}.mec-search-bar-wrap input#mec-search-bar-input{width:calc(100% - 84%);margin-left:11px;background:#40d9f1;Color:#fff;font-weight:400}.mec-text-input-search+input#mec-search-bar-input{margin-left:-3px}.mec-search-bar-wrap input#mec-search-bar-input:hover{background:#000}.mec-wrap.mec-search-bar-wrap .mec-totalcal-box input{float:none}@media(max-width:768px){.mec-search-bar-wrap .mec-search-form .mec-text-input-search{display:inline-block}}@media(max-width:480px){.mec-search-bar-wrap .mec-search-form .mec-text-input-search{width:64%}.mec-search-bar-wrap input#mec-search-bar-input{width:calc(100% - 67%)}}.mec-wrap.mec-search-bar-wrap .mec-totalcal-box{overflow:visible}.mec-ajax-search-result{position:relative}.mec-search-bar-wrap.mec-wrap .mec-totalcal-box input[type=text]{width:calc(100% - 36px)}.mec-search-bar-wrap.mec-wrap .mec-totalcal-box input[type=text]:focus{border-color:#efefef}div#mec-ajax-search-result-wrap{position:absolute;top:100%;opacity:0;visibility:hidden;width:calc(100% - 2px);min-height:50px;left:0;right:0;padding:0 10px;z-index:9999;transition:all .3s ease}.mec-ajax-search-result-events{background:#fff;padding:10px 20px;border:1px solid #efefef;border-top:none}.mec-ajax-search-result-events article:first-of-type{border:none}article.mec-search-bar-result{text-align:left;margin-bottom:0;padding-bottom:25px;padding-top:26px;border-top:1px solid #efefef;transition:all .33s ease;clear:both}.mec-search-bar-result .mec-event-list-search-bar-date{width:64px;height:64px;margin-right:10px;font-size:11px;text-transform:uppercase;float:left;text-align:center;padding-top:2px}.mec-search-bar-result .mec-event-list-search-bar-date span{font-size:40px;line-height:30px;font-weight:700;display:block;margin-bottom:6px;letter-spacing:1px}.mec-search-bar-result .mec-event-image{float:left;margin-right:20px;width:65px;height:auto}.mec-search-bar-result .mec-event-time{font-size:11px;line-height:1.1;margin:0}.mec-search-bar-result .mec-event-time i{color:#40d9f1;float:none;width:unset;height:unset;font-size:inherit;margin-right:3px;border:none;padding:0}.mec-search-bar-result .mec-event-title{font-size:13px;padding:0;margin:10px 0 8px;font-weight:700;text-transform:uppercase}.mec-search-bar-result .mec-event-title a{text-decoration:none;color:#494949;transition:color .3s ease}.mec-search-bar-result .mec-event-detail{font-size:13px;line-height:1.3;font-family:Roboto,sans-serif;color:#9a9a9a;margin-bottom:0}.mec-wrap.mec-modern-search-bar .mec-totalcal-box{background:rgba(255,255,255,.87);border:none;padding:35px;border-radius:3px;box-shadow:0 3px 13px rgba(0,0,0,.4);position:relative}.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=search],.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=text]{height:58px;background:rgba(255,255,255,.99);border-radius:2px;box-shadow:0 4px 8px rgba(0,0,0,.1) inset;border:1px solid #ccc;width:100%;padding-left:45px;padding-right:13px;font-size:16px}.mec-wrap.mec-modern-search-bar .mec-totalcal-box .mec-text-input-search i{position:absolute;background:0 0;border:none;font-size:21px;left:15px;top:calc(50% - 19px);color:#40d9f1}.mec-wrap.mec-modern-search-bar .mec-text-input-search{position:relative;height:58px}.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=submit]{height:58px;border:none;border-radius:2px;background:#fc4a1a;font-size:17px;font-weight:700!important}.mec-wrap.mec-modern-search-bar .mec-text-input-search+input#mec-search-bar-input{margin-left:0}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{height:45px;background:rgba(255,255,255,.99);border-radius:2px;box-shadow:0 4px 8px rgba(0,0,0,.1) inset;border:1px solid #ccc;padding-right:13px;font-size:16px;border-left:0}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap i{height:45px;background:#ffff;border-radius:2px 0 0 2px;box-shadow:none;border:1px solid #ccc;font-size:15px;padding-top:14px;border-right:0;color:#40d9f1;margin-right:-1px}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap{min-height:64px}@media(max-width:768px){.mec-wrap.mec-modern-search-bar .mec-search-form .mec-text-input-search{width:70%}.mec-wrap.mec-modern-search-bar input#mec-search-bar-input{width:calc(100% - 72%)}}@media(max-width:480px){.mec-wrap.mec-modern-search-bar input#mec-search-bar-input{width:92%;padding:0 10px;position:relative;display:block;margin-left:11px}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-text-input-search{width:100%;margin-bottom:20px}.mec-wrap.mec-modern-search-bar .mec-text-input-search+input#mec-search-bar-input{margin-left:10px}}.mec-related-events-wrap{margin-top:50px}.mec-related-events-wrap h3.mec-rec-events-title:before{content:"";background:#2c2f34;width:46px;height:4px;position:absolute;top:59px;left:0}.mec-related-events-wrap h3.mec-rec-events-title{font-size:21px;font-weight:600;padding:17px 0;margin-bottom:28px;text-transform:uppercase;border-bottom:1px solid #e8e8e8;position:relative}.mec-related-event-post figure{margin:0}.mec-related-event-post figure img{width:100%}.mec-related-event-content{background-color:#fff;margin:-27px 30px 15px;position:relative;max-width:90%;padding:13px 21px 16px 19px}.mec-related-event-content h5 a{font-size:16px;color:#121212;font-weight:600;transition:all .3s ease}.mec-fes-form-cntt #mec-organizer-payments ul{list-style:none;background:0 0;margin:0}.mec-fes-form-cntt #mec-organizer-payments ul li h4{background:0 0;letter-spacing:.2px;display:inline-block;padding-left:0!important;padding-bottom:10px!important;margin:0;margin-bottom:1px;letter-spacing:1px;text-transform:capitalize;padding-top:1px}.mec-fes-form-cntt #mec-organizer-payments ul>li{width:100%;display:inline-block;vertical-align:top;padding:0;margin:0}#mec-login-form.mec-login-form{width:100%;background:#fff;padding:20px;margin:0 auto;text-align:center;position:relative}#mec-login-form.mec-login-form .mec-login-input{display:block;width:286px;margin:0 auto;margin-bottom:12px}#mec-login-form.mec-login-form .mec-login-forgotpassword{display:inline-block}.mec-login-forgotpassword a{color:#000}#mec-login-form.mec-login-form .mec-login-submit{float:right;text-align:right;width:49%;padding-right:2px}#mec-login-form.mec-login-form .mec-login-input input{border:none;box-shadow:none;background:#fff;color:#ccc;border-left:1px solid #e6e6e6;padding:0;height:100%;background-image:none!important;padding-left:10px;padding-right:0;width:222px;margin-left:0;clear:none;float:left}#mec-login-form.mec-login-form .mec-login-input label{border:1px solid #e6e6e6;height:52px;display:inline-block;padding:0;border-radius:3px;overflow:hidden;box-shadow:0 2px 4px rgba(0,0,0,.04)}#mec-login-form.mec-login-form .mec-login-input label i{padding:15px 13px 17px 16px;vertical-align:middle;font-size:20px;width:50px;color:#c5cad0;background:#fafafa;margin-right:0;float:left}#mec-login-form.mec-login-form .mec-login-forgotpassword{float:left;width:49%;text-align:left;padding-top:10px;font-size:13px;padding-left:2px}#mec-login-form.mec-login-form button{width:120px;height:44px;border:none;color:#fff;border-radius:3px;font-size:12px;font-weight:700;letter-spacing:1px;text-transform:uppercase;transition:all .22s ease;margin:0;min-width:unset}.mec-login-form button{box-shadow:0 4px 22px -7px #40d9f1;background-color:#40d9f1}#mec-login-form.mec-login-form button:hover{background:#222;box-shadow:0 3px 14px -4px #333}#mec-login-form.mec-login-form .mec-login-form-footer{width:286px;margin:0 auto;margin-top:20px;clear:both;position:relative;display:block;min-height:50px}#mec-login-form.mec-login-form .mec-ajax-login-loading{position:absolute;background:#ffffffc2;left:0;right:0;top:0;bottom:0}#mec-login-form.mec-login-form .lds-ripple{position:absolute;width:64px;height:64px;top:calc(50% - 23px);left:calc(50% - 23px)}#mec-login-form.mec-login-form .lds-ripple div{position:absolute;border:4px solid #40d9f1;opacity:1;border-radius:50%;animation:lds-ripple 1.2s cubic-bezier(0,.2,.1,.8) infinite}#mec-login-form.mec-login-form .lds-ripple div:nth-child(2){animation-delay:-.5s}#mec-login-form.mec-login-form .mec-ajax-login-loading-text{position:absolute;min-width:200px;top:calc(50% - 18px);left:calc(50% - 124px);color:#fff;padding:10px 22px;border-radius:3px;background:#fff;height:47px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text strong{color:#3fcc60}#mec-login-form.mec-login-form .mec-ajax-login-loading-text strong:before{content:"";position:absolute;top:8px;left:1px;border-right:2px solid #3fcc60;border-bottom:2px solid #3acb5c;transform:rotate(45deg);transform-origin:0 100%;color:#000;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards;width:8px;height:14px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong:after{content:"";position:absolute;top:14px;left:5px;border-bottom:2px solid #ff5d39;transform:rotate(45deg);transform-origin:0 100%;color:#000;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards;width:14px;height:4px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong{color:#ff5d39}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong:before{border-color:#ff5d39;border-bottom:none}@keyframes lds-ripple{0%{top:28px;left:28px;width:0;height:0;opacity:1}100%{top:-1px;left:-1px;width:58px;height:58px;opacity:0}}.mec-book-form-gateway-checkout [id*=mec_do_transaction_stripe_] .mec-form-row:first-child{margin-bottom:20px}.mec-events-meta-group-booking .StripeElement{box-sizing:border-box;height:40px;padding:10px 12px;border:1px solid transparent;border-radius:4px;background-color:#fff;box-shadow:0 1px 3px 0 #e6ebf1;-webkit-transition:box-shadow 150ms ease;transition:box-shadow 150ms ease;margin-bottom:20px;background:#fff}.mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text]{box-sizing:border-box;height:40px;padding:10px 12px;border:0!important;border-radius:4px;background-color:#fff;box-shadow:0 1px 3px 0 #e6ebf1!important;-webkit-transition:box-shadow 150ms ease;transition:box-shadow 150ms ease;margin-bottom:20px;background:#fff!important}.mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text]:focus{outline:0}.mec-events-meta-group-booking .StripeElement--focus{box-shadow:0 1px 3px 0 #cfd7df}.mec-events-meta-group-booking .StripeElement--invalid{border-color:#fa755a}.mec-events-meta-group-booking .StripeElement--webkit-autofill{background-color:#fefde5!important}.mec-booking-tab-content .button,.mec-booking-tab-content .mec-reg-field-add-option,.mec-fes-form .mec-form-row .button:not(.wp-color-result),.mec-fes-form input[type=file],ul#mec_reg_form_fields li .mec_reg_field_remove{height:40px;margin-top:1px;text-decoration:none;font-size:14px;line-height:34px!important;margin:0;padding:0 15px 1px!important;text-transform:none;letter-spacing:0;font-weight:600;color:#40d9f1;background:#fff;border-radius:3px;margin-right:8px;border:2px solid #cfeff5;box-shadow:0 2px 6px -3px #cfeff5}.mec-booking-tab-content .button:hover,.mec-booking-tab-content .mec-reg-field-add-option:hover,.mec-fes-form .mec-form-row .button:not(.wp-color-result):hover{background:#40d9f1;color:#fff;border-color:#40d9f1;box-shadow:0 2px 6px -3px #40d9f1}.mec-fes-form .mec-form-row input+button.button{vertical-align:top}.mec-fes-form .mec-form-row .quicktags-toolbar input.button.button-small{border-width:1px;padding:0 7px;color:#80c6d2;font-weight:400;margin:1px;transform:none}.mec-fes-form input[type=file]{max-width:166px;text-align:center;height:44px;transition:all .2s ease;border-radius:5px!important;border:2px dashed #b8e9f3}.mec-fes-form input[type=file]:hover{box-shadow:0 2px 16px -3px #cfeff5}.mec-fes-form input[type=file]::-webkit-file-upload-button{visibility:hidden;width:1px;height:38px}.mec-fes-form input[type=file]::-moz-file-upload-button{visibility:hidden;width:1px;height:38px}.mec-fes-form .mec-meta-box-fields>label{padding:0}#mec_reg_form_fields li{list-style:none}ul#mec_reg_form_fields{padding:0;margin:0}ul#mec_reg_form_fields li{background:#f8feff;margin:6px -20px;padding:15px 25px 10px;width:auto;font-size:13px;border-top:1px solid #e8fafd;border-bottom:1px solid #e8fafd;position:relative}ul#mec_reg_form_fields li .mec_reg_field_remove{position:absolute;right:10px;top:10px;margin:0;padding:6px 8px!important;font-size:11px;line-height:12px!important;min-height:10px;height:auto;display:block;cursor:pointer;color:#ea6485;border-color:#ffd2dd;letter-spacing:.4px}ul#mec_reg_form_fields li .mec_reg_field_remove:hover{background:#ea6485;color:#fff;border-color:#ea6485;box-shadow:0 2px 6px -3px #ea6485}#mec_reg_form_fields input[type=checkbox],#mec_reg_form_fields input[type=radio],.mec-form-row input[type=checkbox],.mec-form-row input[type=radio]{background-color:#fff;border:1px solid #cfeff5;box-shadow:0 1px 3px -1px #cfeff5;padding:9px;border-radius:3px;min-width:24px;min-height:24px;display:inline-block!important;vertical-align:middle;float:none;transition:all .18s ease;outline:0;margin:1px 4px 4px 0;text-align:left;cursor:pointer;-webkit-appearance:none;-moz-appearance:none}#mec_reg_form_fields input[type=checkbox]:focus,#mec_reg_form_fields input[type=radio]:focus,.mec-form-row input[type=checkbox]:focus,.mec-form-row input[type=radio]:focus{outline:0}#mec_reg_form_fields input[type=radio],.mec-form-row input[type=radio]{-webkit-appearance:none;border-radius:20px!important;min-width:20px;min-height:20px;margin:0 0 4px 0;vertical-align:middle}#mec_reg_form_fields input[type=checkbox]:hover,#mec_reg_form_fields input[type=radio]:hover,.mec-form-row input[type=checkbox]:hover,.mec-form-row input[type=radio]:hover{border-color:#40d9f1}#mec_reg_form_fields input[type=checkbox]:checked,#mec_reg_form_fields input[type=radio]:checked,.mec-fes-form .mec-form-row input[type=checkbox]:checked,.mec-fes-form .mec-form-row input[type=radio]:checked{box-shadow:0 1px 6px -2px #40d9f1;border-color:#40d9f1;background:#40d9f1!important;border-radius:2px;position:relative}.mec-form-row input[type=radio]:checked{box-shadow:0 1px 6px -2px #40d9f1,inset 0 0 0 3px #fff!important}#mec_reg_form_fields input[type=checkbox]:checked::before,.mec-form-row input[type=checkbox]:checked:before{content:"";font:normal;position:absolute;top:12px;left:5px;margin:0;vertical-align:middle;line-height:1;border-right:2px solid #fff!important;border-bottom:2px solid #fff!important;transform:rotate(45deg);transform-origin:0 100%;color:#fff;transition:all .2s ease;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards}@keyframes checkbox-check{0%{width:0;height:0;border-color:#fff;transform:translate3d(0,0,0) rotate(45deg)}33%{width:6px;height:0;transform:translate3d(0,0,0) rotate(45deg)}100%{width:6px;height:12px;border-color:#fff;transform:translate3d(0,-12px,0) rotate(45deg)}}#mec_reg_form_field_types .button{position:relative;outline:0;border-radius:50px;padding:2px 21px 2px 31px!important;line-height:1;font-size:11px;font-weight:600;color:#40d9f1;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 2px 6px -3px #40d9f1;border:2px solid #cfeff5}#mec_fes_location_remove_image_button,#mec_fes_organizer_remove_image_button,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button,#mec_meta_box_tickets_form [id^=mec_ticket_row] button,#mec_reg_form_field_types .button.red{color:#ea6485;box-shadow:0 2px 6px -3px #ea6485;background:#fff;border-color:#ffd2dd}#mec_fes_location_remove_image_button:hover,#mec_fes_organizer_remove_image_button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button:hover,#mec_meta_box_tickets_form [id^=mec_ticket_row] button:hover,#mec_reg_form_field_types .button.red:hover{background:#ea6485;color:#fff}#mec_reg_form_field_types .button:before{position:absolute;left:12px;color:#40d9f1;content:"\e095";font-family:simple-line-icons;font-size:13px;display:inline-block}#mec_reg_form_field_types .button.red:before{color:#ea6485}#mec_reg_form_field_types .button.red:hover:before,#mec_reg_form_field_types .button:hover:before{color:#fff}#mec_fes_location_remove_image_button:hover,#mec_fes_organizer_remove_image_button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button:hover,#mec_meta_box_tickets_form [id^=mec_ticket_row] button:hover,#mec_price_per_dates_container .button:hover,#mec_reg_form_field_types .button.red:hover{color:#fff;border:2px solid #ea6485}#mec_taxes_fees_container_toggle [id^=mec_remove_fee_button],#mec_ticket_variations_list [id^=mec_remove_ticket_variation_button]{color:#ea6485;border-color:#ffd2dd}#mec_taxes_fees_container_toggle [id^=mec_remove_fee_button]:hover,#mec_ticket_variations_list [id^=mec_remove_ticket_variation_button]:hover{color:#fff;border:2px solid #ea6485;background:#ea6485}#mec_fees_list [id^=mec_remove_fee_button],#mec_meta_box_ticket_variations_form .mec-form-row [id^=mec_remove_ticket_variation_button]{margin-left:14px!important}#mec_meta_box_hourly_schedule_days .mec-add-hourly-schedule-button{line-height:10px!important}#mec_meta_box_tickets_form [id^=mec_ticket_row] .mec_add_price_date_button{color:#40d9f1;box-shadow:0 2px 6px -3px #40d9f1;border:2px solid #cfeff5}#mec_meta_box_tickets_form [id^=mec_ticket_row] .mec_add_price_date_button:hover,#mec_reg_form_field_types .button:hover{color:#fff;border:2px solid #40d9f1;background:#40d9f1}.mec-form-row input+span.mec-tooltip,.mec-form-row select+span.mec-tooltip{bottom:10px}.mec-form-row label+span.mec-tooltip{bottom:8px}.mec-form-row textarea+span.mec-tooltip{bottom:auto;vertical-align:top;top:12px}.mec-form-row span+span.mec-tooltip{bottom:0;vertical-align:middle}.mec-form-row .mec-col-8 input[type=text],.mec-form-row .mec-col-8 select,.mec-form-row .mec-col-8 span.mec-archive-skins{vertical-align:top}.mec-form-row input:disabled{opacity:.6;background:#f6f6f6}.mec-form-row p{font-size:12px!important;line-height:18px!important;color:#97b2bb!important}.mec-form-row p.description{font-style:italic}.ui-datepicker.ui-widget{border:1px solid #e8e8e8;box-shadow:0 1px 9px rgba(0,0,0,.12);font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif}table.ui-datepicker-calendar{margin-bottom:0}.ui-datepicker-calendar th{font-weight:700;color:#4a4b4c}.ui-datepicker-calendar td,.ui-datepicker-calendar th,.ui-datepicker-calendar tr{border:none}.ui-datepicker.ui-widget select{font-weight:600;font-size:12px;display:inline-block;border-radius:2px;padding:2px 10px;margin:5px 3px;width:auto;min-height:20px;height:26px;border:1px solid #e3e3e3;box-shadow:inset 0 1px 3px rgba(0,0,0,.04)}.ui-datepicker.ui-widget table{border-spacing:2px;border:none}.ui-datepicker.ui-widget td,.ui-datepicker.ui-widget tr{padding:0;background:0 0!important}.ui-datepicker.ui-widget td a{color:#9a9b9c;font-weight:600;width:30px;height:30px;line-height:30px;display:inline-block;border-radius:33px;padding:0;background:#fff;transition:all .2s ease}.ui-datepicker.ui-widget td a.ui-state-active,.ui-datepicker.ui-widget td a:hover{background:#40d9f1;color:#fff}.ui-datepicker.ui-widget .ui-datepicker-next,.ui-datepicker.ui-widget .ui-datepicker-prev{color:#40d9f1;width:30px;height:30px;line-height:30px;display:inline-block;text-align:center;border-radius:33px;background:#ecfcff;transition:all .2s ease}.ui-datepicker.ui-widget .ui-datepicker-next:hover,.ui-datepicker.ui-widget .ui-datepicker-prev:hover{background:#fff;box-shadow:0 0 7px -3px rgba(0,0,0,.4)}.mec-fes-form .mec-tooltip .dashicons-before:before{color:#40d9f1}.mec-fes-form button[type=submit].mec-fes-sub-button{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;border-radius:3px;background:#40d9f1;color:#fff;height:54px;font-size:17px;font-weight:700;box-shadow:0 2px 8px -4px #40d9f1;display:block;transition:all .28s ease;text-transform:uppercase;margin:20px 0 0;padding:14px 20px;border:0;cursor:pointer;text-align:center;letter-spacing:.1em;line-height:1}.mec-fes-form button[type=submit].mec-fes-sub-button:hover{box-shadow:0 2px 12px -2px #40d9f1}.mec-fes-form button[type=submit].mec-fes-sub-button:focus{margin-bottom:-2px;background:#1dc2dc}.mec-fes-form .mec-title span.mec-dashicons{color:#40d9f1;float:left;margin-right:5px}.mec-fes-form .mec-tooltip .box h5{padding:14px 2px}#mec_fes_form,.mec-fes-form-top-actions{max-width:838px;margin:0 auto}@media only screen and (min-width:961px){.mec-fes-form .mec-fes-form-cntt{width:calc(100% - 300px);float:left;padding-right:20px;max-width:538px;display:block}.mec-fes-form .mec-fes-form-sdbr{width:300px}}.mec-fes-form .quicktags-toolbar,.mec-fes-form div.mce-toolbar-grp{background:#ecfcff;border-bottom:1px solid #cfeff5;box-shadow:0 1px 0 1px #cfeff5}.mec-fes-form .quicktags-toolbar{margin-right:-1px;border-top:1px solid #cfeff5}.mec-fes-form div.mce-statusbar{border-top-color:#cfeff5}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-listbox{border:1px solid #cfeff5;border-radius:3px}.mec-fes-form .mce-tinymce.mce-container.mce-panel{border:1px solid #cfeff5;box-shadow:0 2px 6px -3px #cfeff5;border-radius:2px 0 2px 2px}.mec-fes-form .wp-editor-tools .wp-media-buttons{transform:translateY(-6px);margin-top:-6px}.mec-fes-form .wp-editor-tabs{padding-right:0;margin-right:-2px}.mec-fes-form .wp-editor-tabs .wp-switch-editor{border-radius:3px 3px 0 0;border-color:#cfeff5;background:#fff;color:#96b8bd;border-bottom:1px solid #ecfcff}.mec-fes-form .html-active .switch-html,.mec-fes-form .tmce-active .switch-tmce,.mec-fes-form .wp-editor-tabs .wp-switch-editor:active{background:#ecfcff;color:#40d9f1}.mec-fes-form .wp-editor-container,.mec-fes-form div.mce-edit-area.mce-panel{border:none;box-shadow:none}.mec-fes-form .wp-editor-container textarea.wp-editor-area{max-width:100%}.mec-fes-form .mce-toolbar .mce-listbox button{font-size:12px;line-height:22px;color:#798f96}.mec-fes-form .mce-toolbar .mce-ico{color:#627f88}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-active,.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn:active,.mec-fes-form .qt-dfw.active{background:#fff;border-color:#40d9f1;box-shadow:inset 0 2px 6px -3px rgba(106,231,255,.7)}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-active .mce-ico{color:#40d9f1}body .mce-menu .mce-menu-item.mce-active.mce-menu-item-normal,body .mce-menu .mce-menu-item.mce-selected,body .mce-menu .mce-menu-item:focus,body .mce-menu .mce-menu-item:hover,body.mce-menu .mce-menu-item.mce-active.mce-menu-item-preview{background:#40d9f1;color:#fff}.mec-fes-form .mec-not-in-days-day{display:inline-block;padding:4px 32px 4px 15px;border-radius:33px;border:1px solid #cfeff5;box-shadow:0 1px 3px -1px #cfeff5;background:#fbfeff;color:#40d9f1;vertical-align:top}.mec-fes-form .mec-not-in-days-remove{display:inline-block;padding:0 1px 0 0;margin-left:-30px;vertical-align:sub;background:#ff918a;color:#fff;font-family:cursive;width:21px;height:21px;line-height:17px;text-align:center;border-radius:20px;cursor:pointer}.mec-fes-list ul li .mec-event-status{float:left;margin-right:10px;margin-left:0;font-size:11px;font-weight:400;letter-spacing:.3px;border-radius:3px;padding:4px 8px}.mec-fes-form .post-status.mec-book-confirmed:before,.mec-fes-list ul li .mec-event-status.mec-book-confirmed:before{content:"";margin:0;vertical-align:middle;line-height:1;border-right:2px solid #fff!important;border-bottom:2px solid #fff!important;transform:rotate(45deg);color:#fff;width:6px;height:12px;float:left;margin-right:6px}.mec-fes-list ul li .mec-fes-event-export a:before,.mec-fes-list ul li .mec-fes-event-remove:before,.mec-fes-list ul li .mec-fes-event-view a:before,.mec-fes-list-top-actions a:before{content:"\e054";font-family:simple-line-icons;font-size:13px;vertical-align:middle}.mec-fes-list ul li .mec-fes-event-view a:before{content:"\e087"}.mec-fes-list-top-actions a:before{content:"\e095";font-weight:400;margin-right:6px}.mec-fes-list ul li .mec-fes-event-export a:before{content:"\e083"}.mec-fes-form .post-status{border-radius:20px}.mec-fes-form .post-status.mec-book-confirmed:before{height:20px;width:9px;margin:3px 10px}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker-calendar th{height:auto;padding:0}.ui-datepicker .ui-datepicker-calendar td a,.ui-datepicker-calendar th{font-size:14px;line-height:30px}.mec-fes-form .description{font-size:16px}.mec-fes-form input[type=file]{text-align:left}.mec-fes-export-wrapper{width:640px;background:#f8feff;padding:40px 25px}.mec-fes-export-wrapper .mec-fes-btn-date{font-size:16px;line-height:44px;overflow:hidden}.mec-fes-export-wrapper .date-messgae{font-family:sans-serif;padding:2px 18px}.mec-fes-list ul li .mec-event-export-csv,.mec-fes-list ul li .mec-event-export-excel{font-size:12px;border:1px solid #40d9f1;padding:1px 4px;background:rgba(141,229,243,.18);border-radius:4px;color:#40d9f1;font-family:sans-serif;cursor:pointer;display:inline-block;height:26px;line-height:22px}.mec-export-badge{font-size:11px;color:#40d9f1;width:auto;height:24px;line-height:25px;display:inline-block;padding:0 8px;text-align:center;border-radius:3px;background:#ecfcff;transition:all .2s ease}.mec-fes-list ul li .mec-fes-event-export{font-size:11px;background:#f7f7f7;float:right;margin-left:5px}.mec-fes-list ul li .mec-fes-event-export:hover{cursor:pointer;background:#90f0e0;border-color:#4dc8cc}.mec-fes-export-wrapper ul{padding:0;width:100%;text-align:center}.mec-fes-export-wrapper ul li{list-style:none;display:inline-block;width:30%;padding:10px 15px 10px 32px;border-radius:3px;margin-bottom:15px;border:1px solid #cfeff5;box-shadow:0 2px 6px -4px #cfeff5;background:#fff;line-height:normal;margin-right:10px;position:relative;cursor:pointer;font-size:13px;line-height:1;transition:all .2s ease}.mec-fes-export-wrapper ul li:nth-child(3n+0){margin-right:0}.mec-fes-export-wrapper ul li:hover{box-shadow:0 2px 16px -1px #c6e8ef}.mec-fes-export-wrapper ul li:before{content:"";position:absolute;display:inline-block;background:#fff;width:15px;height:15px;margin:-1px 0 0 5px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32);border-radius:50%;left:9px;top:calc(50% - 7px)}.mec-fes-export-wrapper ul li.fes-export-date-active{color:#40d9f1}.mec-fes-export-wrapper ul li.fes-export-date-active:before{width:15px;height:15px;border:6px solid #40d9f1;background:#fff;box-shadow:0 3px 16px -3px #40d9f1}.mec-fes-btn-export{margin-left:15px;margin-top:12px}.mec-fes-btn-export span{position:relative;border:none;border-radius:3px;color:#fff!important;display:inline-block;font-size:13px;line-height:1;text-transform:none;font-weight:400;text-decoration:none;cursor:pointer;margin-right:4px;line-height:1;letter-spacing:0;padding:15px 22px;background:#39c36e;box-shadow:0 1px 7px -3px #39c36e!important;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;cursor:pointer;margin-left:6px}.mec-fes-btn-export span:hover{background:#222}.mec-event-export-excel:before,span.mec-event-export-csv:before{content:"\e083";font-family:simple-line-icons;font-size:13px;vertical-align:middle;margin-right:7px;margin-top:-1px;display:inline-block}.mec-fes-list .wn-p-t-right{min-width:170px;max-width:200px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#000;color:#fff;font-weight:400;font-size:14px;letter-spacing:.5px;line-height:1.5;position:absolute;z-index:99999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #535a61;visibility:hidden;opacity:0;transition:opacity .23s;padding:5px 10px 6px;border-radius:8px;text-align:center;font-style:normal}.mec-fes-list .mec-fes-event-export:hover .wn-p-t-right,.mec-fes-list .mec-fes-event-remove:hover .wn-p-t-right,.mec-fes-list .mec-fes-event-view:hover .wn-p-t-right{visibility:visible;opacity:1}.mec-fes-list .wn-p-t-right i{position:absolute!important;top:100%;right:50%;margin-top:-6px!important;margin-right:-6px!important;width:12px;height:24px;overflow:hidden;transform:rotate(-90deg)}.mec-fes-list .wn-p-t-right i:after{content:'';position:absolute;width:12px;height:12px;left:0;top:50%;transform:translate(50%,-50%) rotate(-45deg);background-color:#000;box-shadow:0 8px 9px -4px #535a61}.mec-fes-form .select2-container{min-height:38px;box-sizing:border-box;margin-bottom:8px;padding:0 6px;border-radius:2px;border:1px solid #ddd;box-shadow:inset 0 1px 6px rgba(0,0,0,.07);background-color:#fff;color:#32373c;outline:0;transition:50ms border-color ease-in-out;min-width:200px;font-size:14px}.mec-fes-form .select2-selection{border:none;background:0 0;padding-top:2px;width:100%;height:100%}.mec-fes-form .select2-container--default.select2-container--focus .select2-selection{border:none!important;outline:0}.mec-fes-form .select2-container--default .select2-selection--single .select2-selection__arrow{top:5px;right:4px}.select2-results{font-size:14px}.mec-fes-category-children,.mec-fes-category-children .mec-fes-category-children{padding-left:24px}.mec-wrap .mec-timeline-events-container a,.mec-wrap .mec-timeline-events-container div,.mec-wrap .mec-timeline-events-container h4,.mec-wrap .mec-timeline-events-container p,.mec-wrap .mec-timeline-events-container span{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important}.mec-timeline-events-container{margin-left:19px;padding-top:20px;padding-bottom:9px}.mec-events-timeline-wrap{position:relative;display:block;overflow:visible;padding-left:95px}.mec-events-timeline-wrap:before{width:1px;content:'';height:100%;position:absolute;background:#dedede;left:95px}.mec-timeline-month-divider+.mec-timeline-events-container{padding-top:110px}.mec-timeline-right-content{float:right;width:300px}.mec-timeline-left-content{float:left;width:calc(100% - 300px);padding-left:15px;padding-right:15px}.mec-timeline-month-divider{position:absolute;display:block;background:#fff;right:calc(100% - 95px);left:0;width:190px;text-align:center;border:1px solid #dedede;border-radius:50px;font-size:15px;padding:12px 27px}.mec-timeline-event-date{position:relative}.mec-timeline-events-container .mec-timeline-event-date:before{content:'';width:10px;height:10px;position:absolute;background:#40d9f1;border-radius:50px;top:8px;left:-23px;z-index:99}.mec-timeline-events-container .mec-timeline-event-date:after{content:'';width:20px;height:20px;position:absolute;background:rgba(64,217,241,.3);border-radius:50px;top:3px;left:-28px}.mec-timeline-event-date{float:left;width:17%;margin-top:27px}.mec-timeline-event-content{float:left;width:82%;background:#fff;box-shadow:0 10px 30px 0 rgba(0,0,0,.1);border-radius:10px;overflow:visible;position:relative}.mec-timeline-main-content{padding:23px 30px}.mec-timeline-main-content h4{margin-bottom:15px}.mec-timeline-main-content h4 a{font-size:25px;font-weight:700;color:#000;line-height:33px;text-decoration:none}.mec-timeline-main-content p{font-size:15px;color:#515151;line-height:24px;margin-bottom:36px}a.mec-timeline-readmore{width:100%;display:block;text-align:center;color:#fff;text-decoration:none;line-height:52px;font-size:17px;font-weight:700;-webkit-transition:all .2s ease;transition:all .2s ease;border-radius:0 0 10px 10px}a.mec-timeline-readmore:hover{background:#222;color:#fff}.mec-timeline-event-time .mec-time-details{display:inline-block;margin-left:7px;font-size:13px;line-height:13px;font-weight:500}.mec-timeline-event-time i{vertical-align:middle}.mec-timeline-event-time{background:rgba(64,217,241,.11);display:inline-block;padding:4px 20px 8px;border-radius:50px}.mec-timeline-event-location address{font-style:normal}.mec-timeline-event-location address span{font-size:13px;font-weight:500;vertical-align:middle;margin-left:6px}.mec-timeline-event-location address i{font-size:17px;vertical-align:middle}.mec-timeline-event-location{background:rgba(64,217,241,.11);display:inline-block;padding:7px 20px 11px;border-radius:20px;line-height:1.24}.mec-timeline-event-details+.mec-timeline-event-details{margin-top:12px}.mec-timeline-event-content .col-md-4{padding:0}.mec-timeline-event-content:after{content:'';display:block;position:absolute;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-timeline-event-content:after{top:30px;border-color:transparent #fff transparent transparent;left:-10px}.mec-timeline-event-image img{border-radius:0 10px 0 0;width:100%}.mec-timeline-event-image a{display:block;line-height:0}a.mec-timeline-readmore i{vertical-align:middle;margin-left:10px;font-size:9px}.mec-wrap .mec-timeline-event-content a.mec-timeline-readmore:hover{background:#444}@media(min-width:1024px){.mec-past-event.mec-timeline-event{margin:50px 0}}@media(max-width:1023px){.mec-past-event.mec-timeline-event{margin:25px 0}.mec-events-timeline-wrap{padding-left:20px}.mec-events-timeline-wrap:before{left:20px}}@media (max-width:1200px) and (min-width:992px){.mec-timeline-event-content{width:81%}.mec-timeline-event-date{width:18%}}@media (max-width:992px){.mec-timeline-left-content,.mec-timeline-right-content{float:none;width:100%;text-align:center}.mec-timeline-right-content .mec-timeline-event-image{text-align:center}.mec-timeline-right-content .mec-timeline-event-image img{max-width:300px;border-radius:10px;margin-top:35px}}@media (max-width:440px){.mec-timeline-right-content .mec-timeline-event-image img{margin-top:0}}@media (max-width:320px){.mec-timeline-event-content,.mec-timeline-event-date{float:none;width:100%}.mec-timeline-event-date{margin-bottom:8px}.mec-timeline-event-content:after{display:none}.mec-timeline-main-content{padding:23px 0}.mec-timeline-main-content p{font-size:13px}.mec-timeline-main-content h4 a{font-size:23px;line-height:24px}.mec-time-details span{font-size:11px}.mec-timeline-event-location address span{font-size:12px}a.mec-timeline-readmore{line-height:44px;font-size:14px}}
|
assets/img/wn-ms-icon-17-n.svg
ADDED
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<svg xmlns="http://www.w3.org/2000/svg" width="135" height="135" viewBox="0 0 135 135">
|
2 |
+
<g id="Group_13760" data-name="Group 13760" transform="translate(-1575 -677)">
|
3 |
+
<circle id="Ellipse_8789" data-name="Ellipse 8789" cx="67.5" cy="67.5" r="67.5" transform="translate(1575 677)" fill="#4ccfad" opacity="0.07"/>
|
4 |
+
<circle id="Ellipse_8790" data-name="Ellipse 8790" cx="50" cy="50" r="50" transform="translate(1593 695)" fill="#4ccfad" opacity="0.2"/>
|
5 |
+
<g id="Group_3427" data-name="Group 3427" transform="translate(394.744 -394.933)">
|
6 |
+
<path id="Path_22668" data-name="Path 22668" d="M11.252-3.107H22.538l1,4.286L31.681,8.75l1,7.143h9l1.143,2.286L40.109,29.322l5.715,10.714L44.4,43.607H-11.748l-2.571-2.857,6.571-12s-3.286-10.286-3.286-10.571,3.286-2.286,3.286-2.286H.538V9.75l2.286-4,5-4.571L10.252.036Z" transform="translate(1231.576 1131.882)" fill="#fff"/>
|
7 |
+
<g id="Group_3422" data-name="Group 3422" transform="translate(1231.575 1131.882)">
|
8 |
+
<path id="Path_8645" data-name="Path 8645" d="M1234.5,1116.217l6.965,5.959a9.01,9.01,0,0,1,3.154,6.848v3.295" transform="translate(-1212.428 -1116.217)" fill="none" stroke="#344154" stroke-linecap="round" stroke-linejoin="round" stroke-width="3"/>
|
9 |
+
<path id="Path_8646" data-name="Path 8646" d="M1235.106,1116.217l-7.089,5.956a9.005,9.005,0,0,0-3.218,6.9v3.244" transform="translate(-1224.799 -1116.217)" fill="none" stroke="#344154" stroke-linecap="round" stroke-linejoin="round" stroke-width="3"/>
|
10 |
+
</g>
|
11 |
+
<path id="Path_8639" data-name="Path 8639" d="M1268.444,1143.828l5.142-16.837a2.891,2.891,0,0,0-2.832-3.7h-47.707a2.891,2.891,0,0,0-2.833,3.7l5.142,16.837H1247" transform="translate(0.77 25.249)" fill="none" stroke="#c5c8cc" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
|
12 |
+
<path id="Path_8640" data-name="Path 8640" d="M1222.647,1130.972l-2.882,6.168c-.838,1.8.308,3.964,2.1,3.964h54.515c1.789,0,2.935-2.166,2.1-3.964l-2.88-6.168" transform="translate(-1.45 34.481)" fill="none" stroke="#344154" stroke-linecap="round" stroke-linejoin="round" stroke-width="3"/>
|
13 |
+
<path id="Path_8641" data-name="Path 8641" d="M1226.426,1116.329a12.394,12.394,0,1,1,24.789,0" transform="translate(8.851 0)" fill="none" stroke="#4ccfad" stroke-linecap="round" stroke-linejoin="round" stroke-width="3"/>
|
14 |
+
<path id="Path_8642" data-name="Path 8642" d="M1235.354,1109.348h4.234a2.853,2.853,0,0,1,2.853,2.85v1.538a2.855,2.855,0,0,1-2.853,2.853h-2.562" transform="translate(20.236 6.905)" fill="none" stroke="#4ccfad" stroke-linecap="round" stroke-linejoin="round" stroke-width="3"/>
|
15 |
+
<path id="Path_8643" data-name="Path 8643" d="M1232.235,1109.348h-4.1a2.851,2.851,0,0,0-2.853,2.85v1.538a2.853,2.853,0,0,0,2.853,2.853h2.746" transform="translate(7.386 6.905)" fill="none" stroke="#4ccfad" stroke-linecap="round" stroke-linejoin="round" stroke-width="3"/>
|
16 |
+
<path id="Path_8644" data-name="Path 8644" d="M1221.389,1124.577l1.18,4.75h42.838l1.213-4.7-.019-.051h-45.212Z" transform="translate(3.683 26.591)" fill="#4ccfad"/>
|
17 |
+
<path id="Path_8647" data-name="Path 8647" d="M1246.748,1118.657c0,6.259-4.255,11.333-9.506,11.333s-9.5-5.074-9.5-11.333,4.255-11.333,9.5-11.333S1246.748,1112.4,1246.748,1118.657Z" transform="translate(10.525 4.324)" fill="#fff" stroke="#344154" stroke-linecap="round" stroke-linejoin="round" stroke-width="3"/>
|
18 |
+
<path id="Path_8648" data-name="Path 8648" d="M1231.915,1117.286" transform="translate(15.851 17.028)" fill="none" stroke="#344154" stroke-linecap="round" stroke-linejoin="round" stroke-width="3"/>
|
19 |
+
</g>
|
20 |
+
</g>
|
21 |
+
</svg>
|
assets/js/backend.js
CHANGED
@@ -406,6 +406,11 @@ function mec_skin_style_changed(skin, style, context)
|
|
406 |
else jQuery(context).parent().parent().find('.mec-include-events-times').hide();
|
407 |
}
|
408 |
|
|
|
|
|
|
|
|
|
|
|
409 |
function mec_show_widget_check(context)
|
410 |
{
|
411 |
var skin = jQuery(context).find(':selected').data('skin');
|
406 |
else jQuery(context).parent().parent().find('.mec-include-events-times').hide();
|
407 |
}
|
408 |
|
409 |
+
function mec_skin_map_toggle(context)
|
410 |
+
{
|
411 |
+
jQuery(context).parent().parent().parent().find('.mec-set-geolocation').toggle();
|
412 |
+
}
|
413 |
+
|
414 |
function mec_show_widget_check(context)
|
415 |
{
|
416 |
var skin = jQuery(context).find(':selected').data('skin');
|
assets/js/frontend.js
CHANGED
@@ -241,7 +241,7 @@ var mecSingleEventDisplayer = {
|
|
241 |
else if (settings.getDirection === 2) initAdvancedGetDirection();
|
242 |
|
243 |
// Geolocation
|
244 |
-
if (settings.HTML5geolocation && navigator.geolocation) {
|
245 |
navigator.geolocation.getCurrentPosition(function (position) {
|
246 |
var center = new google.maps.LatLng(position.coords.latitude, position.coords.longitude);
|
247 |
var zoom = map.getZoom();
|
@@ -501,7 +501,7 @@ var mecSingleEventDisplayer = {
|
|
501 |
$('.mec-modal-result').removeClass("mec-month-navigator-loading");
|
502 |
|
503 |
// Focus First Active Day
|
504 |
-
|
505 |
|
506 |
// Focus First Active Week
|
507 |
mec_focus_week(settings.id);
|
@@ -527,7 +527,7 @@ var mecSingleEventDisplayer = {
|
|
527 |
$('.mec-modal-result').removeClass("mec-month-navigator-loading");
|
528 |
|
529 |
// Focus First Active Day
|
530 |
-
|
531 |
|
532 |
// Focus First Active Week
|
533 |
mec_focus_week(settings.id);
|
@@ -1340,6 +1340,9 @@ var mecSingleEventDisplayer = {
|
|
1340 |
// Initialize Days Slider
|
1341 |
initDaysSlider(settings.month_id);
|
1342 |
|
|
|
|
|
|
|
1343 |
// Search Widget
|
1344 |
if (settings.sf.container !== '') {
|
1345 |
$(settings.sf.container).mecSearchForm({
|
@@ -1491,7 +1494,7 @@ var mecSingleEventDisplayer = {
|
|
1491 |
setToday('' + active_year + active_month + active_day);
|
1492 |
|
1493 |
// Focus First Active Day
|
1494 |
-
|
1495 |
},
|
1496 |
error: function () {}
|
1497 |
});
|
@@ -1565,7 +1568,7 @@ var mecSingleEventDisplayer = {
|
|
1565 |
initDaysSlider(month_id, day_id);
|
1566 |
|
1567 |
// Focus First Active Day
|
1568 |
-
|
1569 |
}
|
1570 |
|
1571 |
function sed() {
|
@@ -2719,6 +2722,173 @@ var mecSingleEventDisplayer = {
|
|
2719 |
|
2720 |
}(jQuery));
|
2721 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2722 |
// MEC AGENDA VIEW PLUGIN
|
2723 |
(function ($) {
|
2724 |
$.fn.mecAgendaView = function (options) {
|
@@ -3155,7 +3325,7 @@ function get_parameter_by_name(name, url) {
|
|
3155 |
// Focus events day
|
3156 |
var mec_g_month_id = null;
|
3157 |
|
3158 |
-
function
|
3159 |
setTimeout(function () {
|
3160 |
var owl_go = jQuery("#mec-owl-calendar-d-table-" + id + "-" + mec_g_month_id);
|
3161 |
owl_go.find('.owl-stage > div').each(function (index) {
|
241 |
else if (settings.getDirection === 2) initAdvancedGetDirection();
|
242 |
|
243 |
// Geolocation
|
244 |
+
if ((settings.HTML5geolocation || (options.geolocation !== 'undefined' && options.geolocation == true)) && navigator.geolocation) {
|
245 |
navigator.geolocation.getCurrentPosition(function (position) {
|
246 |
var center = new google.maps.LatLng(position.coords.latitude, position.coords.longitude);
|
247 |
var zoom = map.getZoom();
|
501 |
$('.mec-modal-result').removeClass("mec-month-navigator-loading");
|
502 |
|
503 |
// Focus First Active Day
|
504 |
+
mecFocusDay(settings.id);
|
505 |
|
506 |
// Focus First Active Week
|
507 |
mec_focus_week(settings.id);
|
527 |
$('.mec-modal-result').removeClass("mec-month-navigator-loading");
|
528 |
|
529 |
// Focus First Active Day
|
530 |
+
mecFocusDay(settings.id);
|
531 |
|
532 |
// Focus First Active Week
|
533 |
mec_focus_week(settings.id);
|
1340 |
// Initialize Days Slider
|
1341 |
initDaysSlider(settings.month_id);
|
1342 |
|
1343 |
+
// Slider first event day focus when page load.
|
1344 |
+
mecFocusDay(settings.id);
|
1345 |
+
|
1346 |
// Search Widget
|
1347 |
if (settings.sf.container !== '') {
|
1348 |
$(settings.sf.container).mecSearchForm({
|
1494 |
setToday('' + active_year + active_month + active_day);
|
1495 |
|
1496 |
// Focus First Active Day
|
1497 |
+
mecFocusDay(settings.id);
|
1498 |
},
|
1499 |
error: function () {}
|
1500 |
});
|
1568 |
initDaysSlider(month_id, day_id);
|
1569 |
|
1570 |
// Focus First Active Day
|
1571 |
+
mecFocusDay(settings.id);
|
1572 |
}
|
1573 |
|
1574 |
function sed() {
|
2722 |
|
2723 |
}(jQuery));
|
2724 |
|
2725 |
+
// MEC TIMELINE VIEW PLUGIN
|
2726 |
+
(function ($) {
|
2727 |
+
$.fn.mecTimelineView = function (options) {
|
2728 |
+
// Default Options
|
2729 |
+
var settings = $.extend({
|
2730 |
+
// These are the defaults.
|
2731 |
+
id: 0,
|
2732 |
+
atts: '',
|
2733 |
+
ajax_url: '',
|
2734 |
+
sf: {},
|
2735 |
+
end_date: '',
|
2736 |
+
offset: 0,
|
2737 |
+
start_date: '',
|
2738 |
+
}, options);
|
2739 |
+
|
2740 |
+
// Set onclick Listeners
|
2741 |
+
setListeners();
|
2742 |
+
|
2743 |
+
var sf;
|
2744 |
+
|
2745 |
+
function setListeners() {
|
2746 |
+
// Search Widget
|
2747 |
+
if (settings.sf.container !== '') {
|
2748 |
+
sf = $(settings.sf.container).mecSearchForm({
|
2749 |
+
id: settings.id,
|
2750 |
+
atts: settings.atts,
|
2751 |
+
callback: function (atts) {
|
2752 |
+
settings.atts = atts;
|
2753 |
+
search();
|
2754 |
+
}
|
2755 |
+
});
|
2756 |
+
}
|
2757 |
+
|
2758 |
+
$("#mec_skin_" + settings.id + " .mec-load-more-button").on("click", function () {
|
2759 |
+
loadMore();
|
2760 |
+
});
|
2761 |
+
|
2762 |
+
// Single Event Method
|
2763 |
+
if (settings.sed_method != '0') {
|
2764 |
+
sed();
|
2765 |
+
}
|
2766 |
+
}
|
2767 |
+
|
2768 |
+
function sed() {
|
2769 |
+
// Single Event Display
|
2770 |
+
$("#mec_skin_" + settings.id + " .mec-event-title a, #mec_skin_" + settings.id + " .mec-booking-button").off('click').on('click', function (e) {
|
2771 |
+
e.preventDefault();
|
2772 |
+
var href = $(this).attr('href');
|
2773 |
+
|
2774 |
+
var id = $(this).data('event-id');
|
2775 |
+
var occurrence = get_parameter_by_name('occurrence', href);
|
2776 |
+
|
2777 |
+
mecSingleEventDisplayer.getSinglePage(id, occurrence, settings.ajax_url, settings.sed_method, settings.image_popup);
|
2778 |
+
});
|
2779 |
+
$("#mec_skin_" + settings.id + " .mec-event-image a img").off('click').on('click', function (e) {
|
2780 |
+
e.preventDefault();
|
2781 |
+
var href = $(this).parent().attr('href');
|
2782 |
+
|
2783 |
+
var id = $(this).parent().data('event-id');
|
2784 |
+
var occurrence = get_parameter_by_name('occurrence', href);
|
2785 |
+
|
2786 |
+
mecSingleEventDisplayer.getSinglePage(id, occurrence, settings.ajax_url, settings.sed_method, settings.image_popup);
|
2787 |
+
});
|
2788 |
+
}
|
2789 |
+
|
2790 |
+
function loadMore() {
|
2791 |
+
// Add loading Class
|
2792 |
+
$("#mec_skin_" + settings.id + " .mec-load-more-button").addClass("mec-load-more-loading");
|
2793 |
+
|
2794 |
+
$.ajax({
|
2795 |
+
url: settings.ajax_url,
|
2796 |
+
data: "action=mec_timeline_load_more&mec_start_date=" + settings.end_date + "&mec_offset=" + settings.offset + "&" + settings.atts + "&apply_sf_date=0",
|
2797 |
+
dataType: "json",
|
2798 |
+
type: "post",
|
2799 |
+
success: function (response) {
|
2800 |
+
if (response.count == "0") {
|
2801 |
+
// Remove loading Class
|
2802 |
+
$("#mec_skin_" + settings.id + " .mec-load-more-button").removeClass("mec-load-more-loading");
|
2803 |
+
|
2804 |
+
// Hide load more button
|
2805 |
+
$("#mec_skin_" + settings.id + " .mec-load-more-button").addClass("mec-util-hidden");
|
2806 |
+
} else {
|
2807 |
+
// Show load more button
|
2808 |
+
$("#mec_skin_" + settings.id + " .mec-load-more-button").removeClass("mec-util-hidden");
|
2809 |
+
|
2810 |
+
// Append Items
|
2811 |
+
$("#mec_skin_events_" + settings.id).append(response.html);
|
2812 |
+
|
2813 |
+
// Remove loading Class
|
2814 |
+
$("#mec_skin_" + settings.id + " .mec-load-more-button").removeClass("mec-load-more-loading");
|
2815 |
+
|
2816 |
+
// Update the variables
|
2817 |
+
settings.end_date = response.end_date;
|
2818 |
+
settings.offset = response.offset;
|
2819 |
+
|
2820 |
+
// Single Event Method
|
2821 |
+
if (settings.sed_method != '0') {
|
2822 |
+
sed();
|
2823 |
+
}
|
2824 |
+
|
2825 |
+
}
|
2826 |
+
},
|
2827 |
+
error: function () { }
|
2828 |
+
});
|
2829 |
+
}
|
2830 |
+
|
2831 |
+
function search() {
|
2832 |
+
// Hide no event message
|
2833 |
+
$("#mec_skin_no_events_" + settings.id).addClass("mec-util-hidden");
|
2834 |
+
|
2835 |
+
// Add loading Class
|
2836 |
+
if (jQuery('.mec-modal-result').length === 0) jQuery('.mec-wrap').append('<div class="mec-modal-result"></div>');
|
2837 |
+
jQuery('.mec-modal-result').addClass('mec-month-navigator-loading');
|
2838 |
+
|
2839 |
+
$.ajax({
|
2840 |
+
url: settings.ajax_url,
|
2841 |
+
data: "action=mec_timeline_load_more&mec_start_date=" + settings.start_date + "&" + settings.atts + "&apply_sf_date=1",
|
2842 |
+
dataType: "json",
|
2843 |
+
type: "post",
|
2844 |
+
success: function (response) {
|
2845 |
+
if (response.count == "0") {
|
2846 |
+
// Append Items
|
2847 |
+
$("#mec_skin_events_" + settings.id).html('');
|
2848 |
+
|
2849 |
+
// Remove loading Class
|
2850 |
+
$('.mec-modal-result').removeClass("mec-month-navigator-loading");
|
2851 |
+
|
2852 |
+
// Hide Map
|
2853 |
+
$('.mec-skin-map-container').addClass("mec-util-hidden");
|
2854 |
+
|
2855 |
+
// Hide it
|
2856 |
+
$("#mec_skin_" + settings.id + " .mec-load-more-button").addClass("mec-util-hidden");
|
2857 |
+
|
2858 |
+
// Show no event message
|
2859 |
+
$("#mec_skin_no_events_" + settings.id).removeClass("mec-util-hidden");
|
2860 |
+
} else {
|
2861 |
+
// Append Items
|
2862 |
+
$("#mec_skin_events_" + settings.id).html(response.html);
|
2863 |
+
|
2864 |
+
// Remove loading Class
|
2865 |
+
$('.mec-modal-result').removeClass("mec-month-navigator-loading");
|
2866 |
+
|
2867 |
+
// Show Map
|
2868 |
+
$('.mec-skin-map-container').removeClass("mec-util-hidden");
|
2869 |
+
|
2870 |
+
// Show load more button
|
2871 |
+
if (response.count >= settings.limit) $("#mec_skin_" + settings.id + " .mec-load-more-button").removeClass("mec-util-hidden");
|
2872 |
+
// Hide load more button
|
2873 |
+
else $("#mec_skin_" + settings.id + " .mec-load-more-button").addClass("mec-util-hidden");
|
2874 |
+
|
2875 |
+
// Update the variables
|
2876 |
+
settings.end_date = response.end_date;
|
2877 |
+
settings.offset = response.offset;
|
2878 |
+
|
2879 |
+
// Single Event Method
|
2880 |
+
if (settings.sed_method != '0') {
|
2881 |
+
sed();
|
2882 |
+
}
|
2883 |
+
}
|
2884 |
+
},
|
2885 |
+
error: function () { }
|
2886 |
+
});
|
2887 |
+
}
|
2888 |
+
};
|
2889 |
+
|
2890 |
+
}(jQuery));
|
2891 |
+
|
2892 |
// MEC AGENDA VIEW PLUGIN
|
2893 |
(function ($) {
|
2894 |
$.fn.mecAgendaView = function (options) {
|
3325 |
// Focus events day
|
3326 |
var mec_g_month_id = null;
|
3327 |
|
3328 |
+
function mecFocusDay(id) {
|
3329 |
setTimeout(function () {
|
3330 |
var owl_go = jQuery("#mec-owl-calendar-d-table-" + id + "-" + mec_g_month_id);
|
3331 |
owl_go.find('.owl-stage > div').each(function (index) {
|
changelog.txt
CHANGED
@@ -1,7 +1,17 @@
|
|
1 |
-
v 4.8.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
- Fixed: Monthly view (clean style)
|
3 |
- Fixed: Datepicker
|
4 |
-
- Fixed: Google Map view in single event page
|
5 |
|
6 |
v 4.8.0 - 12 November 2019
|
7 |
- Added: Import events from Event Espresso Plugin
|
1 |
+
v 4.8.2 - 24 November 2019
|
2 |
+
- Added: The ticket variations in CSV and Excel exports in Backend and "Front-end Event Submission" (pro)
|
3 |
+
- Added: Timeline view
|
4 |
+
- Added: Geolocation feature for map feature of list and grid skins (pro)
|
5 |
+
- Fixed: Validation for second attendees in booking module (pro)
|
6 |
+
- Fixed: A required validation issue on the booking form for some fields (pro)
|
7 |
+
- Fixed: "Show Only Expired Events" mode
|
8 |
+
- Fixed: A focus issue on daily skin
|
9 |
+
- Fixed: Set geographical coordinates when add in single event page (pro)
|
10 |
+
|
11 |
+
v 4.8.1 - 13 November 2019
|
12 |
- Fixed: Monthly view (clean style)
|
13 |
- Fixed: Datepicker
|
14 |
+
- Fixed: Google Map view in single event page (pro)
|
15 |
|
16 |
v 4.8.0 - 12 November 2019
|
17 |
- Added: Import events from Event Espresso Plugin
|
languages/modern-events-calendar-lite-cs_CZ.mo
CHANGED
Binary file
|
languages/modern-events-calendar-lite-cs_CZ.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar Lite\n"
|
4 |
-
"POT-Creation-Date: 2019-11-
|
5 |
-
"PO-Revision-Date: 2019-11-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: cs_CZ\n"
|
@@ -67,14 +67,14 @@ msgid "Event Color"
|
|
67 |
msgstr "Barva události"
|
68 |
|
69 |
#: app/features/contextual.php:55 app/features/mec.php:348
|
70 |
-
#: app/features/mec/dashboard.php:134 app/features/mec/support-page.php:
|
71 |
-
#: app/features/mec/support.php:20 app/libraries/main.php:
|
72 |
msgid "Settings"
|
73 |
msgstr "Nastavení"
|
74 |
|
75 |
#: app/features/contextual.php:62 app/features/events.php:2415
|
76 |
#: app/features/mec/booking.php:439 app/features/mec/support.php:29
|
77 |
-
#: app/libraries/main.php:
|
78 |
msgid "Booking Form"
|
79 |
msgstr "Rezervační formulář"
|
80 |
|
@@ -94,7 +94,7 @@ msgstr ""
|
|
94 |
"iframe>"
|
95 |
|
96 |
#: app/features/contextual.php:70 app/features/mec/booking.php:557
|
97 |
-
#: app/features/mec/support.php:36 app/libraries/main.php:
|
98 |
msgid "Payment Gateways"
|
99 |
msgstr "Platební brány"
|
100 |
|
@@ -109,7 +109,7 @@ msgstr ""
|
|
109 |
"allowfullscreen></iframe>"
|
110 |
|
111 |
#: app/features/contextual.php:77 app/features/mec/support.php:45
|
112 |
-
#: app/libraries/main.php:
|
113 |
msgid "Notifications"
|
114 |
msgstr "Upozornění"
|
115 |
|
@@ -189,12 +189,12 @@ msgstr ""
|
|
189 |
"\"0\" allowfullscreen></iframe>"
|
190 |
|
191 |
#: app/features/contextual.php:117 app/features/mec/settings.php:73
|
192 |
-
#: app/libraries/main.php:
|
193 |
msgid "General Options"
|
194 |
msgstr "Obecné možnosti"
|
195 |
|
196 |
#: app/features/contextual.php:139 app/features/mec/settings.php:405
|
197 |
-
#: app/libraries/main.php:
|
198 |
msgid "Slugs/Permalinks"
|
199 |
msgstr "Název v URL / Trvalé odkazy"
|
200 |
|
@@ -203,27 +203,27 @@ msgid "Event Details/Single Event Page"
|
|
203 |
msgstr "Podrobnosti o události / Stránka jedné události"
|
204 |
|
205 |
#: app/features/contextual.php:166 app/features/mec/settings.php:437
|
206 |
-
#: app/libraries/main.php:
|
207 |
msgid "Currency Options"
|
208 |
msgstr "Možnosti Měna"
|
209 |
|
210 |
#: app/features/contextual.php:182 app/features/mec/modules.php:67
|
211 |
-
#: app/features/mec/modules.php:85 app/libraries/main.php:
|
212 |
msgid "Google Maps Options"
|
213 |
msgstr "Možnosti Google Maps"
|
214 |
|
215 |
#: app/features/contextual.php:244 app/features/mec/settings.php:494
|
216 |
-
#: app/libraries/main.php:
|
217 |
msgid "Google Recaptcha Options"
|
218 |
msgstr "Možnosti Google Recaptcha"
|
219 |
|
220 |
#: app/features/contextual.php:258 app/features/mec/single.php:133
|
221 |
-
#: app/libraries/main.php:
|
222 |
msgid "Countdown Options"
|
223 |
msgstr "Možnosti Odpočítávání"
|
224 |
|
225 |
#: app/features/contextual.php:268 app/features/mec/modules.php:263
|
226 |
-
#: app/libraries/main.php:
|
227 |
msgid "Social Networks"
|
228 |
msgstr "Sociální sítě"
|
229 |
|
@@ -232,34 +232,34 @@ msgid "Next Event Module"
|
|
232 |
msgstr "Modul Další události"
|
233 |
|
234 |
#: app/features/contextual.php:286 app/features/mec/settings.php:530
|
235 |
-
#: app/libraries/main.php:
|
236 |
msgid "Frontend Event Submission"
|
237 |
msgstr "Předání události frontendu"
|
238 |
|
239 |
#: app/features/contextual.php:298 app/features/events.php:325
|
240 |
-
#: app/libraries/main.php:
|
241 |
msgid "Exceptional Days"
|
242 |
msgstr "Výjimečné dny"
|
243 |
|
244 |
#: app/features/contextual.php:308 app/features/events.php:298
|
245 |
#: app/features/mec/booking.php:88 app/features/mec/notifications.php:35
|
246 |
-
#: app/libraries/main.php:
|
247 |
-
#: app/libraries/main.php:
|
248 |
msgid "Booking"
|
249 |
msgstr "Rezervace"
|
250 |
|
251 |
#: app/features/contextual.php:318 app/features/mec/booking.php:261
|
252 |
-
#: app/libraries/main.php:
|
253 |
msgid "Coupons"
|
254 |
msgstr "Kupóny"
|
255 |
|
256 |
#: app/features/contextual.php:326 app/features/mec/modules.php:324
|
257 |
-
#: app/libraries/main.php:
|
258 |
msgid "BuddyPress Integration"
|
259 |
msgstr "Integrace BuddyPress"
|
260 |
|
261 |
#: app/features/contextual.php:334 app/features/mec/settings.php:823
|
262 |
-
#: app/libraries/main.php:
|
263 |
msgid "Mailchimp Integration"
|
264 |
msgstr "Integrace Mailchimp"
|
265 |
|
@@ -268,15 +268,15 @@ msgid "MEC Activation"
|
|
268 |
msgstr "Aktivace MEC"
|
269 |
|
270 |
#: app/features/events.php:150 app/features/ix/export.php:34
|
271 |
-
#: app/features/mec/dashboard.php:
|
272 |
#: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
|
273 |
msgid "Events"
|
274 |
msgstr "Události"
|
275 |
|
276 |
#: app/features/events.php:151 app/features/fes.php:223
|
277 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
278 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
279 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
280 |
#: app/features/profile/profile.php:50 app/skins/daily_view/tpl.php:80
|
281 |
#: app/skins/monthly_view/tpl.php:71 app/skins/yearly_view/tpl.php:69
|
282 |
msgid "Event"
|
@@ -312,7 +312,7 @@ msgid "No events found in Trash!"
|
|
312 |
msgstr "V koši nebyly nalezeny žádné události!"
|
313 |
|
314 |
#: app/features/events.php:175 app/features/events.php:3241
|
315 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
316 |
#: app/features/mec/meta_boxes/search_form.php:31
|
317 |
#: app/features/mec/meta_boxes/search_form.php:93
|
318 |
#: app/features/mec/meta_boxes/search_form.php:155
|
@@ -324,8 +324,8 @@ msgstr "V koši nebyly nalezeny žádné události!"
|
|
324 |
#: app/features/mec/meta_boxes/search_form.php:514
|
325 |
#: app/features/mec/meta_boxes/search_form.php:575
|
326 |
#: app/features/mec/settings.php:776 app/features/mec/single.php:204
|
327 |
-
#: app/features/search.php:67 app/libraries/main.php:
|
328 |
-
#: app/libraries/skins.php:
|
329 |
#: app/skins/single/default.php:185 app/skins/single/default.php:397
|
330 |
#: app/skins/single/m1.php:170 app/skins/single/m2.php:102
|
331 |
#: app/skins/single/modern.php:110
|
@@ -334,7 +334,7 @@ msgstr "Kategorie"
|
|
334 |
|
335 |
#: app/features/events.php:176 app/features/events.php:3212
|
336 |
#: app/features/fes/form.php:746 app/features/mec.php:336
|
337 |
-
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:
|
338 |
msgid "Categories"
|
339 |
msgstr "Kategorie"
|
340 |
|
@@ -442,7 +442,7 @@ msgstr "Odkaz"
|
|
442 |
#: app/features/events.php:329 app/features/events.php:3243
|
443 |
#: app/features/events.php:3434 app/features/events.php:3476
|
444 |
#: app/features/ix.php:3373 app/features/ix.php:3414
|
445 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
446 |
#: app/features/mec/meta_boxes/search_form.php:45
|
447 |
#: app/features/mec/meta_boxes/search_form.php:107
|
448 |
#: app/features/mec/meta_boxes/search_form.php:169
|
@@ -457,7 +457,7 @@ msgstr "Odkaz"
|
|
457 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
458 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
459 |
#: app/features/organizers.php:271 app/features/search.php:75
|
460 |
-
#: app/libraries/main.php:
|
461 |
#: app/skins/single.php:797 app/skins/single/default.php:210
|
462 |
#: app/skins/single/default.php:422 app/skins/single/m1.php:90
|
463 |
#: app/skins/single/m2.php:22 app/skins/single/modern.php:31
|
@@ -465,7 +465,7 @@ msgid "Organizer"
|
|
465 |
msgstr "Organizátor"
|
466 |
|
467 |
#: app/features/events.php:330 app/features/events.php:1157
|
468 |
-
#: app/features/fes/form.php:719 app/libraries/main.php:
|
469 |
#: app/skins/single.php:584 app/skins/single/default.php:119
|
470 |
#: app/skins/single/default.php:331 app/skins/single/m1.php:49
|
471 |
#: app/skins/single/modern.php:199
|
@@ -484,7 +484,7 @@ msgstr "Údaje hosta"
|
|
484 |
#: app/features/fes.php:223 app/features/fes/form.php:678
|
485 |
#: app/features/labels.php:178 app/features/mec/booking.php:45
|
486 |
#: app/features/organizers.php:279 app/features/profile/profile.php:180
|
487 |
-
#: app/libraries/notifications.php:
|
488 |
msgid "Name"
|
489 |
msgstr "Jméno"
|
490 |
|
@@ -494,8 +494,8 @@ msgstr "Jméno"
|
|
494 |
#: app/features/mec/booking.php:490 app/features/organizers.php:111
|
495 |
#: app/features/organizers.php:152 app/features/profile/profile.php:183
|
496 |
#: app/features/speakers.php:126 app/features/speakers.php:187
|
497 |
-
#: app/libraries/main.php:
|
498 |
-
#: app/libraries/main.php:
|
499 |
#: app/modules/booking/steps/form.php:46 app/modules/booking/steps/form.php:84
|
500 |
#: app/skins/single.php:814 app/skins/single.php:869
|
501 |
#: app/skins/single/default.php:227 app/skins/single/default.php:439
|
@@ -513,20 +513,21 @@ msgstr "Datum a čas"
|
|
513 |
#: app/features/events.php:3476 app/features/fes/form.php:246
|
514 |
#: app/features/fes/form.php:250 app/features/ix.php:3373
|
515 |
#: app/features/ix.php:3414 app/features/ix/import_g_calendar.php:38
|
516 |
-
#: app/features/mec/dashboard.php:
|
517 |
#: app/features/mec/meta_boxes/display_options.php:48
|
518 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
519 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
520 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
521 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
522 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
523 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
524 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
525 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
526 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
527 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
528 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
529 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
|
|
530 |
msgid "Start Date"
|
531 |
msgstr "Počátečná den"
|
532 |
|
@@ -549,7 +550,7 @@ msgstr "odp."
|
|
549 |
#: app/features/events.php:3476 app/features/fes/form.php:286
|
550 |
#: app/features/fes/form.php:290 app/features/ix.php:3373
|
551 |
#: app/features/ix.php:3414 app/features/ix/import_g_calendar.php:44
|
552 |
-
#: app/features/mec/dashboard.php:
|
553 |
msgid "End Date"
|
554 |
msgstr "Konečný den"
|
555 |
|
@@ -598,31 +599,32 @@ msgstr ""
|
|
598 |
#: app/features/mec/meta_boxes/display_options.php:92
|
599 |
#: app/features/mec/meta_boxes/display_options.php:103
|
600 |
#: app/features/mec/meta_boxes/display_options.php:115
|
601 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
602 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
603 |
-
#: app/features/mec/meta_boxes/display_options.php:243
|
604 |
#: app/features/mec/meta_boxes/display_options.php:256
|
605 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
606 |
#: app/features/mec/meta_boxes/display_options.php:280
|
607 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
608 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
609 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
610 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
611 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
612 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
613 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
614 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
615 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
616 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
617 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
618 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
619 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
620 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
621 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
622 |
-
#: app/features/mec/meta_boxes/display_options.php:1167
|
623 |
#: app/features/mec/meta_boxes/display_options.php:1180
|
624 |
#: app/features/mec/meta_boxes/display_options.php:1193
|
625 |
#: app/features/mec/meta_boxes/display_options.php:1206
|
|
|
|
|
|
|
626 |
#: app/features/mec/modules.php:53 app/features/mec/modules.php:86
|
627 |
#: app/features/mec/modules.php:103 app/features/mec/modules.php:138
|
628 |
#: app/features/mec/modules.php:154 app/features/mec/modules.php:312
|
@@ -668,7 +670,7 @@ msgid "Repeats"
|
|
668 |
msgstr "Opakování"
|
669 |
|
670 |
#: app/features/events.php:738 app/features/fes/form.php:348
|
671 |
-
#: app/features/mec/dashboard.php:
|
672 |
#: app/skins/default_full_calendar/tpl.php:69
|
673 |
#: app/skins/full_calendar/tpl.php:110
|
674 |
msgid "Daily"
|
@@ -693,14 +695,14 @@ msgid "Weekly"
|
|
693 |
msgstr "Týdně"
|
694 |
|
695 |
#: app/features/events.php:773 app/features/fes/form.php:353
|
696 |
-
#: app/features/mec/dashboard.php:
|
697 |
#: app/skins/default_full_calendar/tpl.php:67
|
698 |
#: app/skins/full_calendar/tpl.php:108
|
699 |
msgid "Monthly"
|
700 |
msgstr "Měsíčně"
|
701 |
|
702 |
#: app/features/events.php:780 app/features/fes/form.php:354
|
703 |
-
#: app/features/mec/dashboard.php:
|
704 |
#: app/skins/default_full_calendar/tpl.php:66
|
705 |
#: app/skins/full_calendar/tpl.php:107
|
706 |
msgid "Yearly"
|
@@ -816,7 +818,7 @@ msgstr ""
|
|
816 |
#: app/features/events.php:1153 app/features/events.php:3434
|
817 |
#: app/features/events.php:3476 app/features/fes/form.php:716
|
818 |
#: app/features/ix.php:3373 app/features/ix.php:3414
|
819 |
-
#: app/features/mec/settings.php:632 app/libraries/main.php:
|
820 |
#: app/widgets/single.php:103
|
821 |
msgid "Event Cost"
|
822 |
msgstr "Cena události"
|
@@ -831,8 +833,8 @@ msgstr "Vyloučit určité dny"
|
|
831 |
|
832 |
#: app/features/events.php:1189 app/features/events.php:2485
|
833 |
#: app/features/fes.php:223 app/features/mec/booking.php:491
|
834 |
-
#: app/features/profile/profile.php:53 app/libraries/main.php:
|
835 |
-
#: app/libraries/main.php:
|
836 |
#: app/modules/next-event/details.php:90 app/skins/single.php:639
|
837 |
#: app/skins/single/default.php:83 app/skins/single/default.php:295
|
838 |
#: app/skins/single/m1.php:16 app/skins/single/modern.php:166
|
@@ -890,13 +892,13 @@ msgstr "Název"
|
|
890 |
#: app/features/events.php:2301 app/features/events.php:2343
|
891 |
#: app/features/mec/booking.php:318 app/features/mec/booking.php:347
|
892 |
#: app/features/mec/booking.php:398 app/features/mec/booking.php:430
|
893 |
-
#: app/libraries/main.php:
|
894 |
-
#: app/libraries/main.php:
|
895 |
-
#: app/libraries/main.php:
|
896 |
-
#: app/libraries/main.php:
|
897 |
-
#: app/libraries/main.php:
|
898 |
-
#: app/libraries/main.php:
|
899 |
-
#: app/libraries/main.php:
|
900 |
msgid "Remove"
|
901 |
msgstr "Odstranit"
|
902 |
|
@@ -924,7 +926,7 @@ msgstr "Popis"
|
|
924 |
#: app/features/events.php:1430 app/features/fes/form.php:840
|
925 |
#: app/features/mec.php:344 app/features/mec/modules.php:52
|
926 |
#: app/features/mec/settings.php:680 app/features/speakers.php:62
|
927 |
-
#: app/libraries/main.php:
|
928 |
#: app/modules/speakers/details.php:18
|
929 |
msgid "Speakers"
|
930 |
msgstr "Řečníci"
|
@@ -939,7 +941,7 @@ msgid "Event Links"
|
|
939 |
msgstr "Odkazy na událost"
|
940 |
|
941 |
#: app/features/events.php:1464 app/features/events.php:1470
|
942 |
-
#: app/features/fes/form.php:695 app/libraries/main.php:
|
943 |
msgid "Event Link"
|
944 |
msgstr "Odkaz na událost"
|
945 |
|
@@ -963,7 +965,7 @@ msgid "URL Shortener"
|
|
963 |
msgstr "Zkracovač URL"
|
964 |
|
965 |
#: app/features/events.php:1480 app/features/events.php:1493
|
966 |
-
#: app/features/fes/form.php:700 app/libraries/main.php:
|
967 |
#: app/skins/single.php:658 app/skins/single/default.php:133
|
968 |
#: app/skins/single/default.php:345 app/skins/single/m1.php:191
|
969 |
#: app/skins/single/m2.php:124 app/skins/single/modern.php:132
|
@@ -1032,7 +1034,7 @@ msgid "12"
|
|
1032 |
msgstr "12"
|
1033 |
|
1034 |
#: app/features/events.php:1638 app/libraries/book.php:60
|
1035 |
-
#: app/libraries/main.php:
|
1036 |
msgid "Tickets"
|
1037 |
msgstr "Vstupenky"
|
1038 |
|
@@ -1096,7 +1098,7 @@ msgstr "Cena za datum"
|
|
1096 |
|
1097 |
#: app/features/events.php:1874 app/features/events.php:1900
|
1098 |
#: app/features/events.php:2057 app/features/labels.php:60
|
1099 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1100 |
#: app/features/mec/meta_boxes/search_form.php:66
|
1101 |
#: app/features/mec/meta_boxes/search_form.php:128
|
1102 |
#: app/features/mec/meta_boxes/search_form.php:190
|
@@ -1108,7 +1110,7 @@ msgstr "Cena za datum"
|
|
1108 |
#: app/features/mec/meta_boxes/search_form.php:549
|
1109 |
#: app/features/mec/meta_boxes/search_form.php:610
|
1110 |
#: app/features/mec/settings.php:808 app/features/mec/single.php:222
|
1111 |
-
#: app/libraries/skins.php:
|
1112 |
msgid "Label"
|
1113 |
msgstr "Štítek"
|
1114 |
|
@@ -1174,44 +1176,44 @@ msgid "Maximum Per Ticket. Leave it blank for unlimited."
|
|
1174 |
msgstr "Maximum na jednu vstupenku. Ponechte to prázdné pro neomezené."
|
1175 |
|
1176 |
#: app/features/events.php:2481 app/features/mec/booking.php:487
|
1177 |
-
#: app/libraries/main.php:
|
1178 |
msgid "MEC Name"
|
1179 |
msgstr "MEC Jméno"
|
1180 |
|
1181 |
#: app/features/events.php:2482 app/features/mec/booking.php:488
|
1182 |
-
#: app/libraries/main.php:
|
1183 |
msgid "MEC Email"
|
1184 |
msgstr "MEC Email"
|
1185 |
|
1186 |
#: app/features/events.php:2483 app/features/mec/booking.php:489
|
1187 |
-
#: app/libraries/main.php:
|
1188 |
msgid "Text"
|
1189 |
msgstr "Text"
|
1190 |
|
1191 |
#: app/features/events.php:2486 app/features/mec/booking.php:492
|
1192 |
#: app/features/organizers.php:103 app/features/organizers.php:148
|
1193 |
#: app/features/speakers.php:118 app/features/speakers.php:183
|
1194 |
-
#: app/features/speakers.php:256 app/libraries/main.php:
|
1195 |
msgid "Tel"
|
1196 |
msgstr "Tel"
|
1197 |
|
1198 |
#: app/features/events.php:2487 app/features/mec/booking.php:493
|
1199 |
-
#: app/libraries/main.php:
|
1200 |
msgid "File"
|
1201 |
msgstr "Soubor"
|
1202 |
|
1203 |
#: app/features/events.php:2488 app/features/mec/booking.php:494
|
1204 |
-
#: app/libraries/main.php:
|
1205 |
msgid "Textarea"
|
1206 |
msgstr "Plocha textu"
|
1207 |
|
1208 |
#: app/features/events.php:2489 app/features/mec/booking.php:495
|
1209 |
-
#: app/libraries/main.php:
|
1210 |
msgid "Checkboxes"
|
1211 |
msgstr "Zatržítko"
|
1212 |
|
1213 |
#: app/features/events.php:2490 app/features/mec/booking.php:496
|
1214 |
-
#: app/libraries/main.php:
|
1215 |
msgid "Radio Buttons"
|
1216 |
msgstr "Přepínače"
|
1217 |
|
@@ -1284,17 +1286,17 @@ msgstr "Přepínače"
|
|
1284 |
#: app/features/mec/meta_boxes/search_form.php:599
|
1285 |
#: app/features/mec/meta_boxes/search_form.php:606
|
1286 |
#: app/features/mec/meta_boxes/search_form.php:613
|
1287 |
-
#: app/features/mec/meta_boxes/search_form.php:620 app/libraries/main.php:
|
1288 |
msgid "Dropdown"
|
1289 |
msgstr "Rozbalovací"
|
1290 |
|
1291 |
#: app/features/events.php:2492 app/features/mec/booking.php:498
|
1292 |
-
#: app/libraries/main.php:
|
1293 |
msgid "Agreement"
|
1294 |
msgstr "Smlouva"
|
1295 |
|
1296 |
#: app/features/events.php:2493 app/features/mec/booking.php:499
|
1297 |
-
#: app/libraries/main.php:
|
1298 |
msgid "Paragraph"
|
1299 |
msgstr "Paragraf"
|
1300 |
|
@@ -1321,7 +1323,7 @@ msgstr "organizátoři"
|
|
1321 |
#: app/features/ix.php:3414 app/features/locations.php:58
|
1322 |
#: app/features/locations.php:230 app/features/locations.php:287
|
1323 |
#: app/features/locations.php:289 app/features/locations.php:298
|
1324 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1325 |
#: app/features/mec/meta_boxes/search_form.php:38
|
1326 |
#: app/features/mec/meta_boxes/search_form.php:100
|
1327 |
#: app/features/mec/meta_boxes/search_form.php:162
|
@@ -1333,8 +1335,8 @@ msgstr "organizátoři"
|
|
1333 |
#: app/features/mec/meta_boxes/search_form.php:521
|
1334 |
#: app/features/mec/meta_boxes/search_form.php:582
|
1335 |
#: app/features/mec/settings.php:782 app/features/mec/single.php:212
|
1336 |
-
#: app/features/search.php:71 app/libraries/main.php:
|
1337 |
-
#: app/libraries/main.php:
|
1338 |
#: app/skins/single.php:488 app/skins/single.php:909
|
1339 |
#: app/skins/single/default.php:169 app/skins/single/default.php:381
|
1340 |
#: app/skins/single/m1.php:155 app/skins/single/m2.php:87
|
@@ -1429,11 +1431,11 @@ msgid "The event removed!"
|
|
1429 |
msgstr "Událost byla odebrána!"
|
1430 |
|
1431 |
#: app/features/fes.php:223 app/features/profile/profile.php:186
|
1432 |
-
#: app/libraries/main.php:
|
1433 |
msgid "Ticket"
|
1434 |
msgstr "Vstupenka"
|
1435 |
|
1436 |
-
#: app/features/fes.php:223 app/libraries/main.php:
|
1437 |
msgid "Transaction ID"
|
1438 |
msgstr "ID transakce"
|
1439 |
|
@@ -1441,6 +1443,12 @@ msgstr "ID transakce"
|
|
1441 |
msgid "Total Price"
|
1442 |
msgstr "Celková cena"
|
1443 |
|
|
|
|
|
|
|
|
|
|
|
|
|
1444 |
#: app/features/fes.php:223
|
1445 |
msgid "Confirmation"
|
1446 |
msgstr "Potvrzení"
|
@@ -1449,27 +1457,27 @@ msgstr "Potvrzení"
|
|
1449 |
msgid "Verification"
|
1450 |
msgstr "Ověření"
|
1451 |
|
1452 |
-
#: app/features/fes.php:
|
1453 |
msgid "Unknown"
|
1454 |
msgstr "Neznámý"
|
1455 |
|
1456 |
-
#: app/features/fes.php:
|
1457 |
msgid "The image is uploaded!"
|
1458 |
msgstr "Obrázek je nahraný!"
|
1459 |
|
1460 |
-
#: app/features/fes.php:
|
1461 |
msgid "Captcha is invalid! Please try again."
|
1462 |
msgstr "Captcha je neplatná! Prosím zkuste to znovu."
|
1463 |
|
1464 |
-
#: app/features/fes.php:
|
1465 |
msgid "Please fill event title field!"
|
1466 |
msgstr "Vyplňte prosím pole názvu události!"
|
1467 |
|
1468 |
-
#: app/features/fes.php:
|
1469 |
msgid "The event submitted. It will publish as soon as possible."
|
1470 |
msgstr "Událost byla odeslána. Zveřejní se co nejdříve."
|
1471 |
|
1472 |
-
#: app/features/fes.php:
|
1473 |
msgid "The event published."
|
1474 |
msgstr "Událost byla publikována."
|
1475 |
|
@@ -1478,44 +1486,44 @@ msgid "Go back to events list"
|
|
1478 |
msgstr "Přejít zpět na seznam událostí"
|
1479 |
|
1480 |
#: app/features/fes/form.php:365
|
1481 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1482 |
-
#: app/libraries/main.php:
|
1483 |
msgid "Monday"
|
1484 |
msgstr "Pondělí"
|
1485 |
|
1486 |
#: app/features/fes/form.php:366
|
1487 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1488 |
-
#: app/libraries/main.php:
|
1489 |
msgid "Tuesday"
|
1490 |
msgstr "Úterý"
|
1491 |
|
1492 |
#: app/features/fes/form.php:367
|
1493 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1494 |
-
#: app/libraries/main.php:
|
1495 |
msgid "Wednesday"
|
1496 |
msgstr "Středa"
|
1497 |
|
1498 |
#: app/features/fes/form.php:368
|
1499 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1500 |
-
#: app/libraries/main.php:
|
1501 |
msgid "Thursday"
|
1502 |
msgstr "Čtvrtek"
|
1503 |
|
1504 |
#: app/features/fes/form.php:369
|
1505 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1506 |
-
#: app/libraries/main.php:
|
1507 |
msgid "Friday"
|
1508 |
msgstr "Pátek"
|
1509 |
|
1510 |
#: app/features/fes/form.php:370
|
1511 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1512 |
-
#: app/libraries/main.php:
|
1513 |
msgid "Saturday"
|
1514 |
msgstr "Sobota"
|
1515 |
|
1516 |
#: app/features/fes/form.php:371
|
1517 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1518 |
-
#: app/libraries/main.php:
|
1519 |
msgid "Sunday"
|
1520 |
msgstr "Neděle"
|
1521 |
|
@@ -1558,7 +1566,7 @@ msgstr "Odebrat obrázek"
|
|
1558 |
|
1559 |
#: app/features/fes/form.php:772 app/features/labels.php:61
|
1560 |
#: app/features/labels.php:221 app/features/mec.php:337
|
1561 |
-
#: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:
|
1562 |
#: app/skins/single.php:687 app/skins/single/default.php:148
|
1563 |
#: app/skins/single/default.php:360 app/skins/single/m1.php:64
|
1564 |
#: app/skins/single/modern.php:214
|
@@ -1612,7 +1620,7 @@ msgid "MEC - Import / Export"
|
|
1612 |
msgstr "MEC Import / Export"
|
1613 |
|
1614 |
#: app/features/ix.php:107 app/features/mec/support.php:73
|
1615 |
-
#: app/libraries/main.php:
|
1616 |
msgid "Import / Export"
|
1617 |
msgstr "Import / Export"
|
1618 |
|
@@ -1942,7 +1950,7 @@ msgstr "ICS Feed"
|
|
1942 |
#: app/features/mec/booking.php:264 app/features/mec/booking.php:282
|
1943 |
#: app/features/mec/booking.php:359
|
1944 |
#: app/features/mec/meta_boxes/display_options.php:162
|
1945 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1946 |
#: app/features/mec/modules.php:70 app/features/mec/modules.php:211
|
1947 |
#: app/features/mec/modules.php:228
|
1948 |
#, php-format
|
@@ -1953,14 +1961,14 @@ msgstr "% s je vyžadováno pro použití této funkce."
|
|
1953 |
#: app/features/mec/booking.php:91 app/features/mec/booking.php:264
|
1954 |
#: app/features/mec/booking.php:282 app/features/mec/booking.php:359
|
1955 |
#: app/features/mec/meta_boxes/display_options.php:162
|
1956 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1957 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1958 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1959 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1960 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1961 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1962 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1963 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1964 |
#: app/features/mec/modules.php:70 app/features/mec/modules.php:211
|
1965 |
#: app/features/mec/modules.php:228
|
1966 |
msgid "Pro version of Modern Events Calendar"
|
@@ -2124,7 +2132,7 @@ msgid "Auto Synchronization"
|
|
2124 |
msgstr "Automatická synchronizace"
|
2125 |
|
2126 |
#: app/features/ix/sync.php:22
|
2127 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2128 |
#, php-format
|
2129 |
msgid "%s is required to use synchronization feature."
|
2130 |
msgstr "%s je vyžadováno pro použití vlastností synchronizace."
|
@@ -2289,15 +2297,15 @@ msgstr "Vybrat barvu štítku"
|
|
2289 |
|
2290 |
#: app/features/labels.php:112 app/features/labels.php:139
|
2291 |
#: app/features/mec/meta_boxes/display_options.php:38
|
2292 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2293 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2294 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2295 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2296 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2297 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2298 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2299 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2300 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2301 |
msgid "Style"
|
2302 |
msgstr "Styl"
|
2303 |
|
@@ -2314,13 +2322,14 @@ msgstr "Normální"
|
|
2314 |
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:107
|
2315 |
#: app/skins/monthly_view/calendar_clean.php:107
|
2316 |
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:45
|
2317 |
-
#: app/skins/
|
2318 |
-
#: app/skins/
|
|
|
2319 |
msgid "Featured"
|
2320 |
msgstr "Ztvárněná"
|
2321 |
|
2322 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2323 |
-
#: app/libraries/main.php:
|
2324 |
#: app/skins/available_spot/tpl.php:42 app/skins/carousel/render.php:45
|
2325 |
#: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:32
|
2326 |
#: app/skins/daily_view/render.php:52 app/skins/grid/render.php:50
|
@@ -2328,8 +2337,9 @@ msgstr "Ztvárněná"
|
|
2328 |
#: app/skins/monthly_view/calendar.php:111
|
2329 |
#: app/skins/monthly_view/calendar_clean.php:111
|
2330 |
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:46
|
2331 |
-
#: app/skins/
|
2332 |
-
#: app/skins/
|
|
|
2333 |
msgid "Canceled"
|
2334 |
msgstr "Zrušená"
|
2335 |
|
@@ -2355,8 +2365,8 @@ msgid "Event %s"
|
|
2355 |
msgstr "Událost %s"
|
2356 |
|
2357 |
#: app/features/locations.php:59 app/features/mec.php:338
|
2358 |
-
#: app/features/mec/dashboard.php:
|
2359 |
-
#: app/libraries/main.php:
|
2360 |
msgid "Locations"
|
2361 |
msgstr "Umístění"
|
2362 |
|
@@ -2466,7 +2476,7 @@ msgstr "Vyberte obrázek"
|
|
2466 |
msgid "Don't show map in single event page"
|
2467 |
msgstr "Nezobrazovat mapu na jednostránkové události"
|
2468 |
|
2469 |
-
#: app/features/locations.php:356 app/libraries/main.php:
|
2470 |
msgid "Other Locations"
|
2471 |
msgstr "Další místa"
|
2472 |
|
@@ -2517,14 +2527,14 @@ msgstr "MEC - podpora"
|
|
2517 |
msgid "Support"
|
2518 |
msgstr "Podpora"
|
2519 |
|
2520 |
-
#: app/features/mec.php:339 app/features/mec/dashboard.php:
|
2521 |
#: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
|
2522 |
-
#: app/libraries/main.php:
|
2523 |
msgid "Organizers"
|
2524 |
msgstr "Organizátoři"
|
2525 |
|
2526 |
#: app/features/mec.php:347 app/features/mec.php:367
|
2527 |
-
#: app/features/mec/dashboard.php:
|
2528 |
msgid "Shortcodes"
|
2529 |
msgstr "Zkrácené kódy"
|
2530 |
|
@@ -2614,7 +2624,7 @@ msgstr ""
|
|
2614 |
#: app/features/mec/booking.php:70 app/features/mec/messages.php:13
|
2615 |
#: app/features/mec/modules.php:23 app/features/mec/notifications.php:12
|
2616 |
#: app/features/mec/settings.php:53 app/features/mec/single.php:15
|
2617 |
-
#: app/features/mec/styling.php:35
|
2618 |
msgid "Search..."
|
2619 |
msgstr "Vyhledávání ..."
|
2620 |
|
@@ -2667,11 +2677,12 @@ msgstr "Výchozí je Y-m-d"
|
|
2667 |
|
2668 |
#: app/features/mec/booking.php:115
|
2669 |
#: app/features/mec/meta_boxes/display_options.php:121
|
2670 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2671 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2672 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2673 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2674 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
|
|
2675 |
msgid "Limit"
|
2676 |
msgstr "Limit"
|
2677 |
|
@@ -2785,7 +2796,7 @@ msgid "Auto verification for paid bookings"
|
|
2785 |
msgstr "Automatické ověření pro placené rezervace"
|
2786 |
|
2787 |
#: app/features/mec/booking.php:235 app/features/mec/notifications.php:155
|
2788 |
-
#: app/libraries/main.php:
|
2789 |
msgid "Booking Confirmation"
|
2790 |
msgstr "Potvrzení rezervace"
|
2791 |
|
@@ -2809,7 +2820,7 @@ msgstr ""
|
|
2809 |
"Po povolení a uložení nastavení byste měli stránku znovu načíst a zobrazit "
|
2810 |
"novou nabídku na řídícím panelu > Rezervace"
|
2811 |
|
2812 |
-
#: app/features/mec/booking.php:279 app/libraries/main.php:
|
2813 |
msgid "Taxes / Fees"
|
2814 |
msgstr "Daně / poplatky"
|
2815 |
|
@@ -2821,7 +2832,7 @@ msgstr "Povolit modul daní / poplatků"
|
|
2821 |
msgid "Add Fee"
|
2822 |
msgstr "Přidat poplatek"
|
2823 |
|
2824 |
-
#: app/features/mec/booking.php:356 app/libraries/main.php:
|
2825 |
msgid "Ticket Variations & Options"
|
2826 |
msgstr "Varianty a možnosti vstupenek"
|
2827 |
|
@@ -2868,7 +2879,7 @@ msgstr "Nastavení uložena!"
|
|
2868 |
#: app/features/mec/notifications.php:599
|
2869 |
#: app/features/mec/notifications.php:621 app/features/mec/settings.php:949
|
2870 |
#: app/features/mec/settings.php:971 app/features/mec/single.php:267
|
2871 |
-
#: app/features/mec/single.php:289 app/libraries/main.php:
|
2872 |
msgid "Verified"
|
2873 |
msgstr "Ověřeno"
|
2874 |
|
@@ -2949,11 +2960,19 @@ msgstr ""
|
|
2949 |
"V tomto krátkém videu se dozvíte, jak vytvořit událost a umístit kalendář na "
|
2950 |
"svoje stránky. Sledujte prosím toto 2minutové video až do konce."
|
2951 |
|
2952 |
-
#: app/features/mec/dashboard.php:143
|
2953 |
msgid "MEC Activate"
|
2954 |
msgstr "MEC aktivace"
|
2955 |
|
2956 |
-
#: app/features/mec/dashboard.php:149
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2957 |
msgid ""
|
2958 |
"In order to use all plugin features and options, please enter your purchase "
|
2959 |
"code."
|
@@ -2961,60 +2980,52 @@ msgstr ""
|
|
2961 |
"Chcete-li využívat všechny funkce a možnosti doplňku, zadejte prosím "
|
2962 |
"zakoupený kód."
|
2963 |
|
2964 |
-
#: app/features/mec/dashboard.php:
|
2965 |
-
msgid "Activate Addons"
|
2966 |
-
msgstr "Aktivovat doplňky"
|
2967 |
-
|
2968 |
-
#: app/features/mec/dashboard.php:216
|
2969 |
-
msgid "You cannot access this section."
|
2970 |
-
msgstr "Nemáte přístup do této části."
|
2971 |
-
|
2972 |
-
#: app/features/mec/dashboard.php:263 app/features/mec/settings.php:371
|
2973 |
msgid "Upcoming Events"
|
2974 |
msgstr "Nadcházející události"
|
2975 |
|
2976 |
-
#: app/features/mec/dashboard.php:
|
2977 |
msgid "Popular Gateways"
|
2978 |
msgstr "Oblíbené platební brány"
|
2979 |
|
2980 |
-
#: app/features/mec/dashboard.php:
|
2981 |
msgid "Total Bookings"
|
2982 |
msgstr "Celkový počet rezervací"
|
2983 |
|
2984 |
-
#: app/features/mec/dashboard.php:
|
2985 |
msgid "This Month"
|
2986 |
msgstr "Tento měsíc"
|
2987 |
|
2988 |
-
#: app/features/mec/dashboard.php:
|
2989 |
msgid "Last Month"
|
2990 |
msgstr "Minulý měsíc"
|
2991 |
|
2992 |
-
#: app/features/mec/dashboard.php:
|
2993 |
msgid "This Year"
|
2994 |
msgstr "Tento rok"
|
2995 |
|
2996 |
-
#: app/features/mec/dashboard.php:
|
2997 |
msgid "Last Year"
|
2998 |
msgstr "Minulý rok"
|
2999 |
|
3000 |
-
#: app/features/mec/dashboard.php:
|
3001 |
msgid "Bar"
|
3002 |
msgstr "Pruh"
|
3003 |
|
3004 |
-
#: app/features/mec/dashboard.php:
|
3005 |
msgid "Line"
|
3006 |
msgstr "Čára"
|
3007 |
|
3008 |
-
#: app/features/mec/dashboard.php:
|
3009 |
msgid "Filter"
|
3010 |
msgstr "Filtr"
|
3011 |
|
3012 |
-
#: app/features/mec/dashboard.php:
|
3013 |
#, php-format
|
3014 |
msgid "Total Sells (%s)"
|
3015 |
msgstr "Celkový prodej %s"
|
3016 |
|
3017 |
-
#: app/features/mec/dashboard.php:
|
3018 |
msgid "Change Log"
|
3019 |
msgstr "Změna logu"
|
3020 |
|
@@ -3047,7 +3058,7 @@ msgid "Download Settings"
|
|
3047 |
msgstr "Stáhnout nastavení"
|
3048 |
|
3049 |
#: app/features/mec/messages.php:28 app/features/mec/support.php:66
|
3050 |
-
#: app/libraries/main.php:
|
3051 |
msgid "Messages"
|
3052 |
msgstr "Zprávy"
|
3053 |
|
@@ -3068,9 +3079,9 @@ msgid "Skin"
|
|
3068 |
msgstr "Vzhled"
|
3069 |
|
3070 |
#: app/features/mec/meta_boxes/display_options.php:40
|
3071 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3072 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3073 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3074 |
#: app/features/mec/settings.php:235 app/features/mec/settings.php:259
|
3075 |
#: app/features/mec/settings.php:268 app/features/mec/settings.php:309
|
3076 |
#: app/features/mec/settings.php:333 app/features/mec/settings.php:342
|
@@ -3078,18 +3089,18 @@ msgid "Classic"
|
|
3078 |
msgstr "Klasický"
|
3079 |
|
3080 |
#: app/features/mec/meta_boxes/display_options.php:41
|
3081 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3082 |
#: app/features/mec/settings.php:260 app/features/mec/settings.php:270
|
3083 |
#: app/features/mec/settings.php:334 app/features/mec/settings.php:344
|
3084 |
msgid "Minimal"
|
3085 |
msgstr "Minimální"
|
3086 |
|
3087 |
#: app/features/mec/meta_boxes/display_options.php:42
|
3088 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3089 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3090 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3091 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3092 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3093 |
#: app/features/mec/settings.php:237 app/features/mec/settings.php:250
|
3094 |
#: app/features/mec/settings.php:261 app/features/mec/settings.php:271
|
3095 |
#: app/features/mec/settings.php:311 app/features/mec/settings.php:324
|
@@ -3108,86 +3119,92 @@ msgid "Accordion"
|
|
3108 |
msgstr "Akordeon"
|
3109 |
|
3110 |
#: app/features/mec/meta_boxes/display_options.php:50
|
3111 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3112 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3113 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3114 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3115 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3116 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3117 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
|
|
3118 |
msgid "Today"
|
3119 |
msgstr "Dnes"
|
3120 |
|
3121 |
#: app/features/mec/meta_boxes/display_options.php:51
|
3122 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3123 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3124 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3125 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3126 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3127 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3128 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
|
|
3129 |
msgid "Tomorrow"
|
3130 |
msgstr "Zítra"
|
3131 |
|
3132 |
#: app/features/mec/meta_boxes/display_options.php:52
|
3133 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3134 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3135 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3136 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3137 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3138 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3139 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3140 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3141 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3142 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3143 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
|
|
3144 |
msgid "Start of Current Month"
|
3145 |
msgstr "Začátek aktuálního měsíce"
|
3146 |
|
3147 |
#: app/features/mec/meta_boxes/display_options.php:53
|
3148 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3149 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3150 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3151 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3152 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3153 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3154 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3155 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3156 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3157 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3158 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
|
|
3159 |
msgid "Start of Next Month"
|
3160 |
msgstr "Začátek dalšího měsíce"
|
3161 |
|
3162 |
#: app/features/mec/meta_boxes/display_options.php:54
|
3163 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3164 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3165 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3166 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3167 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3168 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3169 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3170 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3171 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3172 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3173 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3174 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
|
|
3175 |
msgid "On a certain date"
|
3176 |
msgstr "K určitému datu"
|
3177 |
|
3178 |
#: app/features/mec/meta_boxes/display_options.php:57
|
3179 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3180 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3181 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3182 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3183 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3184 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3185 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3186 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3187 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3188 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3189 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3190 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
|
|
3191 |
#, php-format
|
3192 |
msgid "eg. %s"
|
3193 |
msgstr "např. %s"
|
@@ -3202,61 +3219,63 @@ msgstr "např. %s"
|
|
3202 |
#: app/features/mec/meta_boxes/display_options.php:102
|
3203 |
#: app/features/mec/meta_boxes/display_options.php:109
|
3204 |
#: app/features/mec/meta_boxes/display_options.php:114
|
3205 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3206 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3207 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3208 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3209 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3210 |
-
#: app/features/mec/meta_boxes/display_options.php:242
|
3211 |
-
#: app/features/mec/meta_boxes/display_options.php:249
|
3212 |
#: app/features/mec/meta_boxes/display_options.php:255
|
3213 |
#: app/features/mec/meta_boxes/display_options.php:262
|
3214 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3215 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3216 |
#: app/features/mec/meta_boxes/display_options.php:279
|
3217 |
#: app/features/mec/meta_boxes/display_options.php:286
|
3218 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3219 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3220 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3221 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3222 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3223 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3224 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3225 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3226 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3227 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3228 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3229 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3230 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3231 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3232 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3233 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3234 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3235 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3236 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3237 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3238 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3239 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3240 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3241 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3242 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3243 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3244 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3245 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3246 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3247 |
-
#: app/features/mec/meta_boxes/display_options.php:1160
|
3248 |
-
#: app/features/mec/meta_boxes/display_options.php:1166
|
3249 |
#: app/features/mec/meta_boxes/display_options.php:1173
|
3250 |
#: app/features/mec/meta_boxes/display_options.php:1179
|
3251 |
#: app/features/mec/meta_boxes/display_options.php:1186
|
3252 |
#: app/features/mec/meta_boxes/display_options.php:1192
|
3253 |
#: app/features/mec/meta_boxes/display_options.php:1199
|
3254 |
#: app/features/mec/meta_boxes/display_options.php:1205
|
|
|
|
|
|
|
|
|
|
|
|
|
3255 |
msgid "Date Formats"
|
3256 |
msgstr "Formát data"
|
3257 |
|
3258 |
#: app/features/mec/meta_boxes/display_options.php:66
|
3259 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3260 |
msgid "Default value is \"M d Y\""
|
3261 |
msgstr "Výchozí hodnota je \"M d Y\""
|
3262 |
|
@@ -3265,13 +3284,13 @@ msgid "Default values are d, M and l"
|
|
3265 |
msgstr "Výchozí hodnoty jsou d, M a l"
|
3266 |
|
3267 |
#: app/features/mec/meta_boxes/display_options.php:92
|
3268 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3269 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3270 |
-
#: app/features/mec/meta_boxes/display_options.php:1154
|
3271 |
-
#: app/features/mec/meta_boxes/display_options.php:1167
|
3272 |
#: app/features/mec/meta_boxes/display_options.php:1180
|
3273 |
#: app/features/mec/meta_boxes/display_options.php:1193
|
3274 |
#: app/features/mec/meta_boxes/display_options.php:1206
|
|
|
|
|
3275 |
msgid "Default values are d, F and l"
|
3276 |
msgstr "Výchozí hodnoty jsou d, F a I"
|
3277 |
|
@@ -3285,15 +3304,16 @@ msgid "TDefault values are d and F"
|
|
3285 |
msgstr "TVýchozí hodnoty jsou d a F"
|
3286 |
|
3287 |
#: app/features/mec/meta_boxes/display_options.php:122
|
3288 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3289 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3290 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3291 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3292 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3293 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3294 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3295 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3296 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
|
|
3297 |
msgid "eg. 6"
|
3298 |
msgstr "např. 6"
|
3299 |
|
@@ -3304,246 +3324,251 @@ msgid "Include Events Times"
|
|
3304 |
msgstr "Skrýt čas události"
|
3305 |
|
3306 |
#: app/features/mec/meta_boxes/display_options.php:138
|
3307 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3308 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3309 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
|
|
3310 |
msgid "Load More Button"
|
3311 |
msgstr "Načíst tlačítko Další"
|
3312 |
|
3313 |
#: app/features/mec/meta_boxes/display_options.php:148
|
3314 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
|
|
3315 |
msgid "Show Month Divider"
|
3316 |
msgstr "Zobrazit oddělovník měsíce"
|
3317 |
|
3318 |
#: app/features/mec/meta_boxes/display_options.php:158
|
3319 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3320 |
msgid "Show Map on top"
|
3321 |
msgstr "Zobrazit mapu nahoře"
|
3322 |
|
3323 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
3324 |
msgid "Toggle for Month Divider"
|
3325 |
msgstr "Přepínač pro oddělovník měsíce"
|
3326 |
|
3327 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3328 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3329 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3330 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3331 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3332 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3333 |
#: app/features/mec/settings.php:236 app/features/mec/settings.php:251
|
3334 |
#: app/features/mec/settings.php:269 app/features/mec/settings.php:310
|
3335 |
#: app/features/mec/settings.php:325 app/features/mec/settings.php:343
|
3336 |
msgid "Clean"
|
3337 |
msgstr "Čistý"
|
3338 |
|
3339 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3340 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3341 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3342 |
#: app/features/mec/settings.php:239 app/features/mec/settings.php:272
|
3343 |
#: app/features/mec/settings.php:313 app/features/mec/settings.php:346
|
3344 |
msgid "Simple"
|
3345 |
msgstr "Jednoduchý"
|
3346 |
|
3347 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3348 |
msgid "Colorful"
|
3349 |
msgstr "Plněbarevný"
|
3350 |
|
3351 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3352 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3353 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3354 |
#: app/features/mec/settings.php:238 app/features/mec/settings.php:274
|
3355 |
#: app/features/mec/settings.php:312 app/features/mec/settings.php:348
|
3356 |
msgid "Novel"
|
3357 |
msgstr "Novela"
|
3358 |
|
3359 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
|
|
3360 |
msgid "Default value is \"d F Y"
|
3361 |
msgstr "Výchozí hodnota je \"d F Y"
|
3362 |
|
3363 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3364 |
msgid "Default values are d and F"
|
3365 |
msgstr "Výchozí hodnoty jsou d a F"
|
3366 |
|
3367 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3368 |
msgid "Default values are d and M"
|
3369 |
msgstr "Výchozí hodnoty jsou d a M"
|
3370 |
|
3371 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3372 |
msgid "Default value is \"d F Y\""
|
3373 |
msgstr "Výchozí hodnota je \"d F Y\""
|
3374 |
|
3375 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3376 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3377 |
msgid "Count in row"
|
3378 |
msgstr "Počet v řadě"
|
3379 |
|
3380 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3381 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3382 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3383 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3384 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3385 |
#, php-format
|
3386 |
msgid "%s is required to use this skin."
|
3387 |
msgstr "%s je nutné použít tento vzhled."
|
3388 |
|
3389 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3390 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3391 |
msgid "Default values are l and F j"
|
3392 |
msgstr "Výchozí hodnoty jsou I a F j"
|
3393 |
|
3394 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3395 |
msgid "Default View"
|
3396 |
msgstr "Výchozí zobrazení"
|
3397 |
|
3398 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3399 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3400 |
-
#: app/libraries/main.php:
|
3401 |
-
#: app/libraries/main.php:
|
3402 |
msgid "List View"
|
3403 |
msgstr "Zobrazení seznamu"
|
3404 |
|
3405 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3406 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3407 |
-
#: app/libraries/main.php:
|
3408 |
-
#: app/libraries/main.php:
|
3409 |
msgid "Yearly View"
|
3410 |
msgstr "Roční zobrazení"
|
3411 |
|
3412 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3413 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3414 |
msgid "Monthly/Calendar View"
|
3415 |
msgstr "Měsíční / kalendářní zobrazení"
|
3416 |
|
3417 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3418 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3419 |
-
#: app/libraries/main.php:
|
3420 |
-
#: app/libraries/main.php:
|
3421 |
msgid "Weekly View"
|
3422 |
msgstr "Týdenní zobrazení"
|
3423 |
|
3424 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3425 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3426 |
-
#: app/libraries/main.php:
|
3427 |
-
#: app/libraries/main.php:
|
3428 |
msgid "Daily View"
|
3429 |
msgstr "Denní zobrazení"
|
3430 |
|
3431 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3432 |
msgid "Monthly Style"
|
3433 |
msgstr "Měsíční styl"
|
3434 |
|
3435 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3436 |
#, php-format
|
3437 |
msgid "%s is required to use <b>Yearly View</b> skin."
|
3438 |
msgstr "%s je nutné použít vzhled <b>Roční zobrazení</b>."
|
3439 |
|
3440 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3441 |
msgid "The price shows only in List View."
|
3442 |
msgstr "Cena se zobrazuje pouze v zobrazení seznamu."
|
3443 |
|
3444 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3445 |
msgid "Display Event Price"
|
3446 |
msgstr "Zobrazit cenu události"
|
3447 |
|
3448 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3449 |
msgid "Start of Current Year"
|
3450 |
msgstr "Začátek aktuálního roku"
|
3451 |
|
3452 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3453 |
msgid "Start of Next Year"
|
3454 |
msgstr "Začátek příštího roku"
|
3455 |
|
3456 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3457 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3458 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3459 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3460 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3461 |
msgid "Events per day"
|
3462 |
msgstr "Události za den"
|
3463 |
|
3464 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3465 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3466 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3467 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3468 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3469 |
msgid "Next/Previous Buttons"
|
3470 |
msgstr "Tlačítka Další / Předchozí"
|
3471 |
|
3472 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3473 |
msgid "For showing next/previous year navigation."
|
3474 |
msgstr "Pro zobrazení navigace další / předchozí."
|
3475 |
|
3476 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3477 |
msgid "Uppercase Text"
|
3478 |
msgstr "Text velkými písmeny"
|
3479 |
|
3480 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3481 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3482 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3483 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3484 |
msgid "For showing next/previous month navigation."
|
3485 |
msgstr "Pro zobrazení navigace další / předchozí měsíc."
|
3486 |
|
3487 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3488 |
msgid "Maximum events"
|
3489 |
msgstr "Maximum událostí"
|
3490 |
|
3491 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3492 |
msgid "eg. 200"
|
3493 |
msgstr "např. 200"
|
3494 |
|
3495 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3496 |
-
msgid "Geolocation"
|
3497 |
-
msgstr "Geolokace"
|
3498 |
-
|
3499 |
-
#: app/features/mec/meta_boxes/display_options.php:658
|
3500 |
msgid "The geolocation feature works only in secure (https) websites."
|
3501 |
msgstr "Funkce geolokace funguje pouze na zabezpečených (https) webech."
|
3502 |
|
3503 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3504 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3505 |
msgid "Current Week"
|
3506 |
msgstr "Aktuální týden"
|
3507 |
|
3508 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3509 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3510 |
msgid "Next Week"
|
3511 |
msgstr "Další týden"
|
3512 |
|
3513 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3514 |
msgid "Number of Days"
|
3515 |
msgstr "Počet dnů"
|
3516 |
|
3517 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3518 |
msgid "Week Start"
|
3519 |
msgstr "Začátek týdne"
|
3520 |
|
3521 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3522 |
msgid "Inherite from WordPress options"
|
3523 |
msgstr "Zdědit z možností WordPressu"
|
3524 |
|
3525 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3526 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3527 |
msgid "Default values are j and F"
|
3528 |
msgstr "Výchozí hodnoty jsou j a F"
|
3529 |
|
3530 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3531 |
msgid "eg. 24"
|
3532 |
msgstr "např. 24"
|
3533 |
|
3534 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3535 |
msgid "Filter By"
|
3536 |
msgstr "Filtrovat podle"
|
3537 |
|
3538 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3539 |
msgid "None"
|
3540 |
msgstr "Žádný"
|
3541 |
|
3542 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3543 |
msgid "Fit to row"
|
3544 |
msgstr "Přizpůsobit řádku"
|
3545 |
|
3546 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3547 |
msgid ""
|
3548 |
"Items are arranged into rows. Rows progress vertically. Similar to what you "
|
3549 |
"would expect from a layout that uses CSS floats."
|
@@ -3551,104 +3576,104 @@ msgstr ""
|
|
3551 |
"Položky jsou uspořádány do řádků. Řádky postupují svisle. Podobně, co byste "
|
3552 |
"očekávali od rozložení používajícího plovoucí CSS."
|
3553 |
|
3554 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3555 |
msgid "Convert Masonry to Grid"
|
3556 |
msgstr "Převést zdivo na mřížku"
|
3557 |
|
3558 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3559 |
msgid "For using this option, your events should come with image"
|
3560 |
msgstr "Pro použití této možnosti by vaše události měly přijít s obrázkem"
|
3561 |
|
3562 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3563 |
msgid "Default values are d, M and Y"
|
3564 |
msgstr "Výchozí hodnoty jsou d, M a Y"
|
3565 |
|
3566 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3567 |
msgid "Default values are \"F d\" and l"
|
3568 |
msgstr "Výchozí hodnota je \"F d\" a I"
|
3569 |
|
3570 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3571 |
msgid "Default value is \"l, F d Y\""
|
3572 |
msgstr "Výchozí hodnota je \"I, F d Y\""
|
3573 |
|
3574 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3575 |
msgid "Style 1"
|
3576 |
msgstr "Styl 1"
|
3577 |
|
3578 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3579 |
msgid "Style 2"
|
3580 |
msgstr "Styl 2"
|
3581 |
|
3582 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3583 |
msgid "Style 3"
|
3584 |
msgstr "Styl 3"
|
3585 |
|
3586 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3587 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3588 |
msgid "Default value is \"j F Y\""
|
3589 |
msgstr "Výchozí hodnota je \"j F Y\""
|
3590 |
|
3591 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3592 |
msgid "Default values are j, F and Y"
|
3593 |
msgstr "Výchozí hodnoty jsou j, F a Y"
|
3594 |
|
3595 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3596 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3597 |
msgid " -- Next Upcoming Event -- "
|
3598 |
msgstr " -- Další nadcházející událost -- "
|
3599 |
|
3600 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3601 |
msgid "Background Color"
|
3602 |
msgstr "Barva pozadí"
|
3603 |
|
3604 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3605 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3606 |
msgid "Type 1"
|
3607 |
msgstr "Typ 1"
|
3608 |
|
3609 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3610 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3611 |
msgid "Type 2"
|
3612 |
msgstr "Typ 2"
|
3613 |
|
3614 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3615 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3616 |
msgid "Type 3"
|
3617 |
msgstr "Typ 3"
|
3618 |
|
3619 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3620 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3621 |
msgid "Type 4"
|
3622 |
msgstr "Typ 4"
|
3623 |
|
3624 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3625 |
msgid "Default values are d, F and Y"
|
3626 |
msgstr "Výchozí hodnoty jsou d, F a Y"
|
3627 |
|
3628 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3629 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3630 |
msgid "Default value is \"M d, Y\""
|
3631 |
msgstr "Výchozí hodnota je \"M d, Y\""
|
3632 |
|
3633 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3634 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3635 |
msgid "Auto Play Time"
|
3636 |
msgstr "Čas automatického přehrávání"
|
3637 |
|
3638 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3639 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3640 |
msgid "eg. 3000 default is 3 second"
|
3641 |
msgstr "např. výchozí hodnota 3000 jsou 3 vteřiny"
|
3642 |
|
3643 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3644 |
msgid "Archive Link"
|
3645 |
msgstr "Odkaz na archiv"
|
3646 |
|
3647 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3648 |
msgid "Head Text"
|
3649 |
msgstr "Text hlavičky"
|
3650 |
|
3651 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3652 |
msgid "Type 5"
|
3653 |
msgstr "Typ 5"
|
3654 |
|
@@ -3830,8 +3855,8 @@ msgstr "Zakázaný"
|
|
3830 |
#: app/features/mec/meta_boxes/search_form.php:596
|
3831 |
#: app/features/mec/settings.php:795 app/features/mec/single.php:217
|
3832 |
#: app/features/search.php:79 app/features/speakers.php:61
|
3833 |
-
#: app/features/speakers.php:254 app/libraries/main.php:
|
3834 |
-
#: app/libraries/skins.php:
|
3835 |
msgid "Speaker"
|
3836 |
msgstr "Řečník"
|
3837 |
|
@@ -3846,7 +3871,7 @@ msgstr "Řečník"
|
|
3846 |
#: app/features/mec/meta_boxes/search_form.php:542
|
3847 |
#: app/features/mec/meta_boxes/search_form.php:603
|
3848 |
#: app/features/mec/settings.php:802 app/features/mec/single.php:226
|
3849 |
-
#: app/features/search.php:83 app/libraries/skins.php:
|
3850 |
msgid "Tag"
|
3851 |
msgstr "Štítek"
|
3852 |
|
@@ -3990,7 +4015,7 @@ msgstr ""
|
|
3990 |
"Zkontrolujte to, pouze pokud jiný plugin / motiv načítá rozhraní Google Maps "
|
3991 |
"API"
|
3992 |
|
3993 |
-
#: app/features/mec/modules.php:167 app/libraries/main.php:
|
3994 |
msgid "Export Options"
|
3995 |
msgstr "Možnosti exportu"
|
3996 |
|
@@ -4005,7 +4030,7 @@ msgstr ""
|
|
4005 |
msgid "Google Calendar"
|
4006 |
msgstr "Kalendář Google"
|
4007 |
|
4008 |
-
#: app/features/mec/modules.php:194 app/libraries/main.php:
|
4009 |
#: app/modules/local-time/details.php:42 app/widgets/single.php:99
|
4010 |
msgid "Local Time"
|
4011 |
msgstr "Místní čas"
|
@@ -4016,7 +4041,7 @@ msgstr ""
|
|
4016 |
"Zobrazit čas události na základě místního času návštěvníka na stránce "
|
4017 |
"události"
|
4018 |
|
4019 |
-
#: app/features/mec/modules.php:208 app/libraries/main.php:
|
4020 |
#: app/modules/qrcode/details.php:38 app/widgets/single.php:155
|
4021 |
msgid "QR Code"
|
4022 |
msgstr "QR kód"
|
@@ -4026,7 +4051,7 @@ msgid "Show QR code of event in details page and booking invoice"
|
|
4026 |
msgstr ""
|
4027 |
"Zobrazte QR kód události na stránce s podrobnostmi a fakturaci za rezervaci"
|
4028 |
|
4029 |
-
#: app/features/mec/modules.php:226 app/libraries/main.php:
|
4030 |
#: app/modules/weather/details.php:37
|
4031 |
msgid "Weather"
|
4032 |
msgstr "Počasí"
|
@@ -4052,7 +4077,7 @@ msgstr "Zobrazit tlačítko Změna jednotek počasí"
|
|
4052 |
msgid "Show social network module"
|
4053 |
msgstr "Zobrazit modul sociální sítě"
|
4054 |
|
4055 |
-
#: app/features/mec/modules.php:288 app/libraries/main.php:
|
4056 |
#: app/modules/next-event/details.php:82
|
4057 |
msgid "Next Event"
|
4058 |
msgstr "Další událost"
|
@@ -4364,7 +4389,7 @@ msgstr "Čas vstupenky"
|
|
4364 |
msgid "Download ICS file"
|
4365 |
msgstr "Stáhnout ICS soubor"
|
4366 |
|
4367 |
-
#: app/features/mec/notifications.php:101 app/libraries/main.php:
|
4368 |
msgid "Booking Verification"
|
4369 |
msgstr "Ověření rezervace"
|
4370 |
|
@@ -4389,7 +4414,7 @@ msgstr "Odkaz na zrušení rezervace."
|
|
4389 |
msgid "Amount Tickets"
|
4390 |
msgstr "Počet vstupenek"
|
4391 |
|
4392 |
-
#: app/features/mec/notifications.php:210 app/libraries/main.php:
|
4393 |
msgid "Booking Cancellation"
|
4394 |
msgstr "Zrušení rezervace"
|
4395 |
|
@@ -4416,7 +4441,7 @@ msgstr "Pošlete rezervační e-mail uživateli"
|
|
4416 |
msgid "Admin booking management link."
|
4417 |
msgstr "Odkaz administrátora na správu rezervace."
|
4418 |
|
4419 |
-
#: app/features/mec/notifications.php:278 app/libraries/main.php:
|
4420 |
msgid "Admin"
|
4421 |
msgstr "Administrátor"
|
4422 |
|
@@ -4428,7 +4453,7 @@ msgstr "Povolit oznámení správce"
|
|
4428 |
msgid "It sends to admin to notify him/her that a new booking received."
|
4429 |
msgstr "Zašle správci informaci o přijetí nové rezervace."
|
4430 |
|
4431 |
-
#: app/features/mec/notifications.php:338 app/libraries/main.php:
|
4432 |
#: app/libraries/notifications.php:478
|
4433 |
msgid "Booking Reminder"
|
4434 |
msgstr "Připomenutí rezervace"
|
@@ -4456,8 +4481,8 @@ msgstr "pouze jednou denně"
|
|
4456 |
msgid "Days"
|
4457 |
msgstr "Dny"
|
4458 |
|
4459 |
-
#: app/features/mec/notifications.php:414 app/features/mec/support-page.php:
|
4460 |
-
#: app/libraries/main.php:
|
4461 |
msgid "New Event"
|
4462 |
msgstr "Nová událost"
|
4463 |
|
@@ -4499,7 +4524,7 @@ msgstr "Poznámka události"
|
|
4499 |
msgid "Admin events management link."
|
4500 |
msgstr "Odkaz administrátora na správu událostí."
|
4501 |
|
4502 |
-
#: app/features/mec/notifications.php:462 app/libraries/main.php:
|
4503 |
msgid "User Event Publishing"
|
4504 |
msgstr "Publikování uživatelských událostí"
|
4505 |
|
@@ -4607,7 +4632,7 @@ msgid "You can enable/disable Schema scripts"
|
|
4607 |
msgstr "Můžete povolit nebo zakázat skripty schématu"
|
4608 |
|
4609 |
#: app/features/mec/settings.php:157 app/features/mec/settings.php:167
|
4610 |
-
#: app/libraries/main.php:
|
4611 |
msgid "Weekdays"
|
4612 |
msgstr "Pracovní dny"
|
4613 |
|
@@ -4635,7 +4660,7 @@ msgstr ""
|
|
4635 |
"to změnit pomocí „Začátek týdne“ na řídícím panelu WordPress > Nastavení > "
|
4636 |
"Obecné - dolní část stránky )."
|
4637 |
|
4638 |
-
#: app/features/mec/settings.php:200 app/libraries/main.php:
|
4639 |
msgid "Archive Pages"
|
4640 |
msgstr "Archivní stránky"
|
4641 |
|
@@ -4923,7 +4948,7 @@ msgstr ""
|
|
4923 |
"Poznámka k události se zobrazí ve formuláři pro zasílání z webových stránek "
|
4924 |
"(frontend) a Upravit událost v administraci stránek (backend)."
|
4925 |
|
4926 |
-
#: app/features/mec/settings.php:742 app/libraries/main.php:
|
4927 |
msgid "User Profile"
|
4928 |
msgstr "Uživatelský profil"
|
4929 |
|
@@ -4936,7 +4961,7 @@ msgstr ""
|
|
4936 |
"Vložte %s krátký kód na požadovanou stránku. Uživatelé pak mohou vidět "
|
4937 |
"historii svých rezervací."
|
4938 |
|
4939 |
-
#: app/features/mec/settings.php:749 app/libraries/main.php:
|
4940 |
msgid "Search Bar"
|
4941 |
msgstr "Vyhledávací panel"
|
4942 |
|
@@ -5028,7 +5053,7 @@ msgstr "Maximální velikost souboru"
|
|
5028 |
msgid "The unit is Megabyte \"MB\""
|
5029 |
msgstr "Jednotkou je Megabyte \"MB\""
|
5030 |
|
5031 |
-
#: app/features/mec/single.php:34 app/libraries/main.php:
|
5032 |
msgid "Single Event Page"
|
5033 |
msgstr "Stránka jedné události"
|
5034 |
|
@@ -5154,7 +5179,7 @@ msgid ""
|
|
5154 |
msgstr ""
|
5155 |
"Pomocí této možnosti můžete vyloučit určité dny z dat výskytu událostí."
|
5156 |
|
5157 |
-
#: app/features/mec/single.php:171 app/libraries/main.php:
|
5158 |
msgid "Additional Organizers"
|
5159 |
msgstr "Další organizátoři"
|
5160 |
|
@@ -5178,7 +5203,7 @@ msgstr ""
|
|
5178 |
"Zobrazit další umístění na stránce Přidat / Upravit události a na stránce "
|
5179 |
"jediné události."
|
5180 |
|
5181 |
-
#: app/features/mec/single.php:191 app/libraries/main.php:
|
5182 |
#: app/skins/single.php:163
|
5183 |
msgid "Related Events"
|
5184 |
msgstr "Související události"
|
@@ -5259,7 +5284,11 @@ msgstr "Záhlaví (Název události) Rodina písma"
|
|
5259 |
msgid "Paragraph Font Family"
|
5260 |
msgstr "Rodina písma odstavce"
|
5261 |
|
5262 |
-
#: app/features/mec/styling.php:196
|
|
|
|
|
|
|
|
|
5263 |
msgid "Disable Google Fonts"
|
5264 |
msgstr "Zakázat Google písma"
|
5265 |
|
@@ -5329,134 +5358,134 @@ msgstr ""
|
|
5329 |
msgid "Advice and answers from the Webnus Team"
|
5330 |
msgstr "Rady a odpovědi týmu Webnus"
|
5331 |
|
5332 |
-
#: app/features/mec/support-page.php:
|
5333 |
msgid "Quick Setup"
|
5334 |
msgstr "Rychlé nastavení"
|
5335 |
|
5336 |
-
#: app/features/mec/support-page.php:
|
5337 |
msgid "Download the Plugin"
|
5338 |
msgstr "Stažení doplňku"
|
5339 |
|
5340 |
-
#: app/features/mec/support-page.php:
|
5341 |
msgid "Install and Activate the Plugin"
|
5342 |
msgstr "Instalace a aktivace doplňku"
|
5343 |
|
5344 |
-
#: app/features/mec/support-page.php:
|
5345 |
msgid "Add a New Event"
|
5346 |
msgstr "Přidat Novou událost"
|
5347 |
|
5348 |
-
#: app/features/mec/support-page.php:
|
5349 |
-
#: app/features/mec/support-page.php:
|
5350 |
-
#: app/features/mec/support-page.php:
|
5351 |
-
#: app/features/mec/support-page.php:
|
5352 |
msgid "Watch Video"
|
5353 |
msgstr "Sledovat video"
|
5354 |
|
5355 |
-
#: app/features/mec/support-page.php:
|
5356 |
msgid "Activate License"
|
5357 |
msgstr "Aktivovat licenci"
|
5358 |
|
5359 |
-
#: app/features/mec/support-page.php:
|
5360 |
msgid "Login to Dashboard"
|
5361 |
msgstr "Přihlásit se do řídícímu panelu"
|
5362 |
|
5363 |
-
#: app/features/mec/support-page.php:
|
5364 |
msgid "Get the License Key"
|
5365 |
msgstr "Získat licenční klíč"
|
5366 |
|
5367 |
-
#: app/features/mec/support-page.php:
|
5368 |
msgid "Activate the plugin"
|
5369 |
msgstr "Aktivace doplňku"
|
5370 |
|
5371 |
-
#: app/features/mec/support-page.php:
|
5372 |
msgid "Add New Events, Date and Time"
|
5373 |
msgstr "Přidat novou událost, datum a čas"
|
5374 |
|
5375 |
-
#: app/features/mec/support-page.php:
|
5376 |
msgid "Tags, Categories, Organizer, Location"
|
5377 |
msgstr "Tagy, Kategorie, Organizátoři, Místa"
|
5378 |
|
5379 |
-
#: app/features/mec/support-page.php:
|
5380 |
msgid "Hourly Schedule, Set Up Shortcodes"
|
5381 |
msgstr "Hodinový rozvrh, nastavení zkrácených kódů"
|
5382 |
|
5383 |
-
#: app/features/mec/support-page.php:
|
5384 |
msgid "Enable Booking"
|
5385 |
msgstr "Povolit rezervace"
|
5386 |
|
5387 |
-
#: app/features/mec/support-page.php:
|
5388 |
msgid "Customize the Booking Form"
|
5389 |
msgstr "Přizpůsobit rezervační formulář"
|
5390 |
|
5391 |
-
#: app/features/mec/support-page.php:
|
5392 |
msgid "Set Up a Payment Gateway"
|
5393 |
msgstr "Nastavení platební brány"
|
5394 |
|
5395 |
-
#: app/features/mec/support-page.php:
|
5396 |
msgid "Add booking form to event"
|
5397 |
msgstr "Přidat rezervační formulář k události"
|
5398 |
|
5399 |
-
#: app/features/mec/support-page.php:
|
5400 |
msgid "Enable Booking from Settings"
|
5401 |
msgstr "Povolit rezervaci z nastavení"
|
5402 |
|
5403 |
-
#: app/features/mec/support-page.php:
|
5404 |
msgid "Set Up a Booking Form"
|
5405 |
msgstr "Nastavit rezervační formulář"
|
5406 |
|
5407 |
-
#: app/features/mec/support-page.php:
|
5408 |
msgid "Create Shortcodes"
|
5409 |
msgstr "Vytvořit zkrácené kódy"
|
5410 |
|
5411 |
-
#: app/features/mec/support-page.php:
|
5412 |
msgid "Create a New Shortcode"
|
5413 |
msgstr "Vytvořit nové zkrácený kód"
|
5414 |
|
5415 |
-
#: app/features/mec/support-page.php:
|
5416 |
msgid "Customize Shortcodes"
|
5417 |
msgstr "Přizpůsobit zkrácené kódy"
|
5418 |
|
5419 |
-
#: app/features/mec/support-page.php:
|
5420 |
msgid "Use Filters in Shortcodes"
|
5421 |
msgstr "Použít filtry ve zkrácených kódech"
|
5422 |
|
5423 |
-
#: app/features/mec/support-page.php:
|
5424 |
msgid "WooCommerce gateways"
|
5425 |
msgstr "Brána WooCommerce"
|
5426 |
|
5427 |
-
#: app/features/mec/support-page.php:
|
5428 |
msgid "Install and Activate WooCommerce"
|
5429 |
msgstr "Instalace a aktivace WooCommerce"
|
5430 |
|
5431 |
-
#: app/features/mec/support-page.php:
|
5432 |
msgid "Integrate with MEC"
|
5433 |
msgstr "Integrovat s MEC"
|
5434 |
|
5435 |
-
#: app/features/mec/support-page.php:
|
5436 |
msgid "Set Up WooCommerce Gateway"
|
5437 |
msgstr "Nastavit bránu WooCommerce"
|
5438 |
|
5439 |
-
#: app/features/mec/support-page.php:
|
5440 |
msgid "An Overview of the Settings"
|
5441 |
msgstr "Přehled nastavení"
|
5442 |
|
5443 |
-
#: app/features/mec/support-page.php:
|
5444 |
msgid "Set Up Different Settings"
|
5445 |
msgstr "Nastavit různá nastavení"
|
5446 |
|
5447 |
-
#: app/features/mec/support-page.php:
|
5448 |
msgid "Use Different Options"
|
5449 |
msgstr "Použít různé možnosti"
|
5450 |
|
5451 |
-
#: app/features/mec/support-page.php:
|
5452 |
msgid "FAQ"
|
5453 |
msgstr "FAQ"
|
5454 |
|
5455 |
-
#: app/features/mec/support-page.php:
|
5456 |
msgid "How should I update plugin?"
|
5457 |
msgstr "Jak mám aktualizovat doplněk?"
|
5458 |
|
5459 |
-
#: app/features/mec/support-page.php:
|
5460 |
#, php-format
|
5461 |
msgid ""
|
5462 |
"You have two options:<br>\n"
|
@@ -5475,11 +5504,11 @@ msgstr ""
|
|
5475 |
"vyžaduje přidání nákupního kódu v odpovídající sekci pluginu. Pro další "
|
5476 |
"informace, prosím <a href=\"%s\" target=\"_blank\">klikněte sem</a>."
|
5477 |
|
5478 |
-
#: app/features/mec/support-page.php:
|
5479 |
msgid "Do I lose all my data or customization if I update MEC?"
|
5480 |
msgstr "Ztratím všechna moje data nebo přizpůsobení, pokud aktualizuji MEC?"
|
5481 |
|
5482 |
-
#: app/features/mec/support-page.php:
|
5483 |
msgid ""
|
5484 |
"If you’ve added a file to the main folder of MEC, this file will be removed "
|
5485 |
"after the update. Therefore, please do get a full back up before proceeding "
|
@@ -5489,11 +5518,11 @@ msgstr ""
|
|
5489 |
"aktualizaci odstraněn. Před pokračováním v procesu aktualizace proto prosím "
|
5490 |
"proveďte úplné zálohování."
|
5491 |
|
5492 |
-
#: app/features/mec/support-page.php:
|
5493 |
msgid "Can I customize the event pages?"
|
5494 |
msgstr "Mohu přizpůsobit stránky událostí?"
|
5495 |
|
5496 |
-
#: app/features/mec/support-page.php:
|
5497 |
#, php-format
|
5498 |
msgid ""
|
5499 |
"Yes, it is possible. In order to see the related documentations, please <a "
|
@@ -5502,11 +5531,11 @@ msgstr ""
|
|
5502 |
"Ano, je to možné. Chcete-li zobrazit související dokumentaci, prosím <a href="
|
5503 |
"\"%s\" target=\"_blank\">klikněte sem</a>."
|
5504 |
|
5505 |
-
#: app/features/mec/support-page.php:
|
5506 |
msgid "Does MEC have default languages or it needs to be translated?"
|
5507 |
msgstr "Má MEC výchozí jazyky nebo je třeba jej přeložit?"
|
5508 |
|
5509 |
-
#: app/features/mec/support-page.php:
|
5510 |
#, php-format
|
5511 |
msgid ""
|
5512 |
"Yes, for some of the languages MEC has the translation file as default. "
|
@@ -5519,11 +5548,11 @@ msgstr ""
|
|
5519 |
"vyžadovat jejich aktualizace. Další informace naleznete <a href=\"%s\" "
|
5520 |
"target=\"_blank\"> kliknutím sem</a>."
|
5521 |
|
5522 |
-
#: app/features/mec/support-page.php:
|
5523 |
msgid "Can I have more than one calendar in one website?"
|
5524 |
msgstr "Mohu mít na jednom webu více než jeden kalendář?"
|
5525 |
|
5526 |
-
#: app/features/mec/support-page.php:
|
5527 |
msgid ""
|
5528 |
"Unfortunately, MEC does not support more than 1 calendar in a single "
|
5529 |
"website, however, it will be added in its upcoming updates."
|
@@ -5531,11 +5560,11 @@ msgstr ""
|
|
5531 |
"MEC bohužel nepodporuje více než 1 kalendář na jednom webu, bude však přidán "
|
5532 |
"do nadcházejících aktualizací."
|
5533 |
|
5534 |
-
#: app/features/mec/support-page.php:
|
5535 |
msgid "Can I import/export from/to MEC?"
|
5536 |
msgstr "Mohu importovat / exportovat z / do MEC?"
|
5537 |
|
5538 |
-
#: app/features/mec/support-page.php:
|
5539 |
msgid ""
|
5540 |
"Yes, you can get an XML export from MEC data or import the file you've "
|
5541 |
"exported to MEC. Also, if you are using one of the following plugins (The "
|
@@ -5547,73 +5576,76 @@ msgstr ""
|
|
5547 |
"calendarize it, EventOn, Events Schedule WP Plugin), pak můžete své události "
|
5548 |
"snadno přenést do MEC."
|
5549 |
|
5550 |
-
#: app/features/mec/support-page.php:
|
5551 |
msgid "Articles"
|
5552 |
msgstr "Články"
|
5553 |
|
5554 |
-
#: app/features/mec/support-page.php:
|
5555 |
msgid "MEC And Integrate With WooCommerce"
|
5556 |
msgstr "(MEC) a integrace s WooCommerce"
|
5557 |
|
5558 |
-
#: app/features/mec/support-page.php:
|
5559 |
msgid "Create Events With Your Page Builder"
|
5560 |
msgstr "Vytvářejte události pomocí Tvůrce stránek"
|
5561 |
|
5562 |
-
#: app/features/mec/support-page.php:
|
5563 |
msgid "Why can't I use HTML tags?"
|
5564 |
msgstr "Proč nemohu používat značky HTML?"
|
5565 |
|
5566 |
-
#: app/features/mec/support-page.php:
|
5567 |
msgid "Setup Date Option On Shortcodes"
|
5568 |
msgstr "Možnost nastavení data na zkrácené kódy"
|
5569 |
|
5570 |
-
#: app/features/mec/support-page.php:
|
5571 |
msgid "I want to export booking, what should I do?"
|
5572 |
msgstr "Chci exportovat rezervaci, co mám dělat?"
|
5573 |
|
5574 |
-
#: app/features/mec/support-page.php:
|
5575 |
msgid "I Can't Export iCal"
|
5576 |
msgstr "Nemohu exportovat iCal"
|
5577 |
|
5578 |
-
#: app/features/mec/support-page.php:
|
5579 |
msgid "Booking Module Not Working"
|
5580 |
msgstr "Rezervační modul nefunguje"
|
5581 |
|
5582 |
-
#: app/features/mec/support-page.php:
|
5583 |
msgid "Translate MEC"
|
5584 |
msgstr "Přeložit MEC"
|
5585 |
|
5586 |
-
#: app/features/mec/support-page.php:
|
5587 |
msgid "No Event Found!"
|
5588 |
msgstr "Nebyla nalezena žádná událost!"
|
5589 |
|
5590 |
-
#: app/features/mec/support-page.php:
|
5591 |
msgid "MEC Theme Integration Guide"
|
5592 |
msgstr "Průvodce integrací motivů MEC"
|
5593 |
|
5594 |
-
#: app/features/mec/support-page.php:
|
5595 |
msgid "Can I Override MEC Template ?"
|
5596 |
msgstr "Mohu přepsat šablonu MEC?"
|
5597 |
|
5598 |
-
#: app/features/mec/support-page.php:
|
5599 |
msgid ""
|
5600 |
-
"
|
5601 |
-
"
|
5602 |
-
"
|
5603 |
msgstr ""
|
5604 |
-
"Webnus je elitní a spolehlivý autor s vysokým procentem spokojených "
|
5605 |
-
"uživatelů. Pokud máte nějaké problémy, neváhejte nás kontaktovat, odpovíme "
|
5606 |
-
"vám co nejdříve."
|
5607 |
|
5608 |
-
#: app/features/mec/support-page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
5609 |
msgid "Create a support ticket"
|
5610 |
msgstr "Vytvořte lístek podpory"
|
5611 |
|
5612 |
-
#: app/features/mec/support.php:52 app/libraries/main.php:
|
5613 |
msgid "Styling Options"
|
5614 |
msgstr "Možnosti stylování"
|
5615 |
|
5616 |
-
#: app/features/mec/support.php:59 app/libraries/main.php:
|
5617 |
msgid "Custom CSS"
|
5618 |
msgstr "Vlastní CSS"
|
5619 |
|
@@ -5741,7 +5773,7 @@ msgstr "např. info@itreseni.cz"
|
|
5741 |
msgid "eg. https://webnus.net"
|
5742 |
msgstr "např. https://webnus.net"
|
5743 |
|
5744 |
-
#: app/features/organizers.php:311 app/libraries/main.php:
|
5745 |
#: app/skins/single.php:847
|
5746 |
msgid "Other Organizers"
|
5747 |
msgstr "Další organizátoři"
|
@@ -5757,7 +5789,7 @@ msgstr ""
|
|
5757 |
msgid "Please %s/%s in order to see your bookings / profile."
|
5758 |
msgstr "Prosím %s/%s za účelem zobrazení vašich rezervací / profilu."
|
5759 |
|
5760 |
-
#: app/features/profile/profile.php:18 app/libraries/main.php:
|
5761 |
msgid "Your booking already canceled!"
|
5762 |
msgstr "Vaše rezervace již byla zrušena!"
|
5763 |
|
@@ -5765,11 +5797,11 @@ msgstr "Vaše rezervace již byla zrušena!"
|
|
5765 |
msgid "#"
|
5766 |
msgstr "#"
|
5767 |
|
5768 |
-
#: app/features/profile/profile.php:56 app/libraries/main.php:
|
5769 |
msgid "Status"
|
5770 |
msgstr "Stav"
|
5771 |
|
5772 |
-
#: app/features/profile/profile.php:59 app/libraries/main.php:
|
5773 |
msgid "Attendees"
|
5774 |
msgstr "Účastníci"
|
5775 |
|
@@ -5802,7 +5834,7 @@ msgstr "Variace"
|
|
5802 |
msgid "No bookings found!"
|
5803 |
msgstr "Nebyly nalezeny žádné rezervace!"
|
5804 |
|
5805 |
-
#: app/features/search.php:87 app/libraries/main.php:
|
5806 |
msgid "label"
|
5807 |
msgstr "štítek"
|
5808 |
|
@@ -5827,7 +5859,7 @@ msgid "No search result."
|
|
5827 |
msgstr "Žádný výsledek vyhledávání."
|
5828 |
|
5829 |
#: app/features/search_bar/search_result.php:11
|
5830 |
-
#: app/libraries/notifications.php:
|
5831 |
#: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
|
5832 |
#: app/skins/single.php:160 app/skins/single.php:738
|
5833 |
#: app/skins/single/default.php:101 app/skins/single/default.php:313
|
@@ -5897,8 +5929,8 @@ msgstr "%s Cena"
|
|
5897 |
msgid "Discount"
|
5898 |
msgstr "Sleva"
|
5899 |
|
5900 |
-
#: app/libraries/book.php:651 app/modules/booking/default.php:
|
5901 |
-
#: app/modules/booking/default.php:
|
5902 |
msgid "Download Invoice"
|
5903 |
msgstr "Stáhnout fakturu"
|
5904 |
|
@@ -5973,111 +6005,117 @@ msgstr "Vlastní postranní panel pro jednu a modální stránku MEC."
|
|
5973 |
msgid "There is no excerpt because this is a protected post."
|
5974 |
msgstr "Neexistuje výňatek, protože se jedná o chráněný příspěvek."
|
5975 |
|
5976 |
-
#: app/libraries/main.php:
|
5977 |
-
#: app/libraries/main.php:
|
5978 |
msgid "Grid View"
|
5979 |
msgstr "Zobrazení mřížky"
|
5980 |
|
5981 |
-
#: app/libraries/main.php:
|
5982 |
-
#: app/libraries/main.php:
|
5983 |
msgid "Agenda View"
|
5984 |
msgstr "Zobrazení agendy"
|
5985 |
|
5986 |
-
#: app/libraries/main.php:
|
5987 |
-
#: app/libraries/main.php:
|
5988 |
msgid "Full Calendar"
|
5989 |
msgstr "Plný kalendář"
|
5990 |
|
5991 |
-
#: app/libraries/main.php:
|
5992 |
-
#: app/libraries/main.php:
|
5993 |
msgid "Calendar/Monthly View"
|
5994 |
msgstr "Kalendář / zobrazení měsíce"
|
5995 |
|
5996 |
-
#: app/libraries/main.php:
|
5997 |
-
#: app/libraries/main.php:
|
5998 |
msgid "Timetable View"
|
5999 |
msgstr "Zobrazení rozvrhu"
|
6000 |
|
6001 |
-
#: app/libraries/main.php:
|
6002 |
-
#: app/libraries/main.php:
|
6003 |
msgid "Masonry View"
|
6004 |
msgstr "Zobrazení zdi"
|
6005 |
|
6006 |
-
#: app/libraries/main.php:
|
6007 |
-
#: app/libraries/main.php:
|
6008 |
msgid "Map View"
|
6009 |
msgstr "Zobrazení mapy"
|
6010 |
|
6011 |
-
#: app/libraries/main.php:
|
6012 |
msgid "Cover View"
|
6013 |
msgstr "Zobrazení obálky"
|
6014 |
|
6015 |
-
#: app/libraries/main.php:
|
6016 |
msgid "Countdown View"
|
6017 |
msgstr "Zobrazení odpočítávání"
|
6018 |
|
6019 |
# místo, bod, ....
|
6020 |
-
#: app/libraries/main.php:
|
6021 |
msgid "Available Spot"
|
6022 |
msgstr "Dostupný spot"
|
6023 |
|
6024 |
-
#: app/libraries/main.php:
|
6025 |
msgid "Carousel View"
|
6026 |
msgstr "Zobrazení kolotoče"
|
6027 |
|
6028 |
-
#: app/libraries/main.php:
|
6029 |
msgid "Slider View"
|
6030 |
msgstr "Zobrazení posuvníku"
|
6031 |
|
6032 |
-
#: app/libraries/main.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
6033 |
msgid "SU"
|
6034 |
msgstr "NE"
|
6035 |
|
6036 |
-
#: app/libraries/main.php:
|
6037 |
msgid "MO"
|
6038 |
msgstr "PO"
|
6039 |
|
6040 |
-
#: app/libraries/main.php:
|
6041 |
msgid "TU"
|
6042 |
msgstr "ÚT"
|
6043 |
|
6044 |
-
#: app/libraries/main.php:
|
6045 |
msgid "WE"
|
6046 |
msgstr "ST"
|
6047 |
|
6048 |
-
#: app/libraries/main.php:
|
6049 |
msgid "TH"
|
6050 |
msgstr "ČT"
|
6051 |
|
6052 |
-
#: app/libraries/main.php:
|
6053 |
msgid "FR"
|
6054 |
msgstr "PÁ"
|
6055 |
|
6056 |
-
#: app/libraries/main.php:
|
6057 |
msgid "SA"
|
6058 |
msgstr "SO"
|
6059 |
|
6060 |
-
#: app/libraries/main.php:
|
6061 |
msgid "Upload Field"
|
6062 |
msgstr "Nahrát pole"
|
6063 |
|
6064 |
-
#: app/libraries/main.php:
|
6065 |
msgid "Additional Locations"
|
6066 |
msgstr "Další umístění"
|
6067 |
|
6068 |
-
#: app/libraries/main.php:
|
6069 |
msgid "Single Event"
|
6070 |
msgstr "Jedna událost"
|
6071 |
|
6072 |
-
#: app/libraries/main.php:
|
6073 |
msgid "Modules"
|
6074 |
msgstr "Moduly"
|
6075 |
|
6076 |
-
#: app/libraries/main.php:
|
6077 |
msgid "New Addons For MEC! Now Customize MEC in Elementor"
|
6078 |
msgstr "Nové doplňky pro MEC! Nyní přizpůsobte MEC v Elementoru"
|
6079 |
|
6080 |
-
#: app/libraries/main.php:
|
6081 |
msgid ""
|
6082 |
"The time has come at last, and the new practical add-ons for MEC have been "
|
6083 |
"released. This is a revolution in the world of Event Calendars. We have "
|
@@ -6088,7 +6126,7 @@ msgstr ""
|
|
6088 |
"revoluce ve světě kalendářů událostí. Poskytli jsme vám širokou škálu funkcí "
|
6089 |
"pouze tím, že máme 4 doplňky, viz níže:"
|
6090 |
|
6091 |
-
#: app/libraries/main.php:
|
6092 |
msgid ""
|
6093 |
"<strong>WooCommerce Integration:</strong> You can now purchase ticket (as "
|
6094 |
"products) and Woo products at the same time."
|
@@ -6096,7 +6134,7 @@ msgstr ""
|
|
6096 |
"<strong>Integrace WooCommerce:</strong> Nyní si můžete zakoupit lístek (jako "
|
6097 |
"produkty) a produkty Woo současně."
|
6098 |
|
6099 |
-
#: app/libraries/main.php:
|
6100 |
msgid ""
|
6101 |
"<strong>Event API:</strong> display your events (shortcodes/single event) on "
|
6102 |
"other websites without MEC. Use JSON output features to make your Apps "
|
@@ -6106,7 +6144,7 @@ msgstr ""
|
|
6106 |
"událost) na jiných webech bez MEC. Použijte výstupní funkce JSON, aby vaše "
|
6107 |
"aplikace byly kompatibilní s MEC."
|
6108 |
|
6109 |
-
#: app/libraries/main.php:
|
6110 |
msgid ""
|
6111 |
"<strong>Elementor Single Builder:</strong> Edit single event page using "
|
6112 |
"Elementor. Manage the position of all elements in the Single page and in "
|
@@ -6116,7 +6154,7 @@ msgstr ""
|
|
6116 |
"pomocí Elementoru. Spravujte polohu všech prvků na jedné stránce a také na "
|
6117 |
"stolních počítačích, mobilech a tabletech."
|
6118 |
|
6119 |
-
#: app/libraries/main.php:
|
6120 |
msgid ""
|
6121 |
"<strong>Elementor Shortcode Builder:</strong> It enables you to create "
|
6122 |
"shortcodes in Elementor Live Editor."
|
@@ -6124,280 +6162,280 @@ msgstr ""
|
|
6124 |
"<strong>Elementor Shortcode Builder:</strong> To vám umožní vytvářet krátké "
|
6125 |
"kódy v Elementor Live Editoru."
|
6126 |
|
6127 |
-
#: app/libraries/main.php:
|
6128 |
msgid "Events at this location"
|
6129 |
msgstr "Události na tomto místě"
|
6130 |
|
6131 |
-
#: app/libraries/main.php:
|
6132 |
msgid "Event at this location"
|
6133 |
msgstr "Událost na tomto místě"
|
6134 |
|
6135 |
-
#: app/libraries/main.php:
|
6136 |
msgid "Facebook"
|
6137 |
msgstr "Facebook"
|
6138 |
|
6139 |
-
#: app/libraries/main.php:
|
6140 |
msgid "Twitter"
|
6141 |
msgstr "Twitter"
|
6142 |
|
6143 |
-
#: app/libraries/main.php:
|
6144 |
msgid "Linkedin"
|
6145 |
msgstr "Linkedin"
|
6146 |
|
6147 |
-
#: app/libraries/main.php:
|
6148 |
msgid "VK"
|
6149 |
msgstr "VK"
|
6150 |
|
6151 |
-
#: app/libraries/main.php:
|
6152 |
msgid "Share on Facebook"
|
6153 |
msgstr "Sdílet na Facebooku"
|
6154 |
|
6155 |
-
#: app/libraries/main.php:
|
6156 |
msgid "Tweet"
|
6157 |
msgstr "Tweet"
|
6158 |
|
6159 |
-
#: app/libraries/main.php:
|
6160 |
msgid "Custom Shortcode"
|
6161 |
msgstr "Uživatelské zkrácené kódy"
|
6162 |
|
6163 |
-
#: app/libraries/main.php:
|
6164 |
msgid "Your booking already verified!"
|
6165 |
msgstr "Vaše rezervace již byla ověřena!"
|
6166 |
|
6167 |
-
#: app/libraries/main.php:
|
6168 |
msgid "Your booking successfully verified."
|
6169 |
msgstr "Vaše rezervace byla úspěšně ověřena."
|
6170 |
|
6171 |
-
#: app/libraries/main.php:
|
6172 |
msgid "Your booking cannot verify!"
|
6173 |
msgstr "Vaši rezervaci nelze ověřit!"
|
6174 |
|
6175 |
-
#: app/libraries/main.php:
|
6176 |
msgid "Your booking successfully canceled."
|
6177 |
msgstr "Vaše rezervace byla úspěšně zrušena."
|
6178 |
|
6179 |
-
#: app/libraries/main.php:
|
6180 |
msgid "Your booking cannot be canceled."
|
6181 |
msgstr "Vaši rezervaci nelze zrušit."
|
6182 |
|
6183 |
-
#: app/libraries/main.php:
|
6184 |
msgid "You canceled the payment successfully."
|
6185 |
msgstr "Platbu jste úspěšně zrušili."
|
6186 |
|
6187 |
-
#: app/libraries/main.php:
|
6188 |
msgid "You returned from payment gateway successfully."
|
6189 |
msgstr "Úspěšně jste se vrátili z platební brány."
|
6190 |
|
6191 |
-
#: app/libraries/main.php:
|
6192 |
msgid "Cannot find the invoice!"
|
6193 |
msgstr "Fakturu nelze najít!"
|
6194 |
|
6195 |
-
#: app/libraries/main.php:
|
6196 |
msgid "Invoice is invalid."
|
6197 |
msgstr "Faktura je neplatná."
|
6198 |
|
6199 |
-
#: app/libraries/main.php:
|
6200 |
msgid ""
|
6201 |
"Your booking still is not confirmed. You able download it after confirmation!"
|
6202 |
msgstr ""
|
6203 |
"Vaše rezervace stále není potvrzena. Můžete si ji stáhnout po potvrzení!"
|
6204 |
|
6205 |
-
#: app/libraries/main.php:
|
6206 |
msgid "Booking Not Confirmed."
|
6207 |
msgstr "Rezervace nebyla potvrzena."
|
6208 |
|
6209 |
-
#: app/libraries/main.php:
|
6210 |
msgid "Cannot find the booking!"
|
6211 |
msgstr "Nemohu najít rezervaci!"
|
6212 |
|
6213 |
-
#: app/libraries/main.php:
|
6214 |
msgid "Booking is invalid."
|
6215 |
msgstr "Rezervace není platná."
|
6216 |
|
6217 |
-
#: app/libraries/main.php:
|
6218 |
#, php-format
|
6219 |
msgid "%s Invoice"
|
6220 |
msgstr "%s Faktura"
|
6221 |
|
6222 |
-
#: app/libraries/main.php:
|
6223 |
msgid "Billing"
|
6224 |
msgstr "Fakturace"
|
6225 |
|
6226 |
-
#: app/libraries/main.php:
|
6227 |
msgid "Total"
|
6228 |
msgstr "Celkem"
|
6229 |
|
6230 |
-
#: app/libraries/main.php:
|
6231 |
msgid "Request is not valid."
|
6232 |
msgstr "Požadavek není platný."
|
6233 |
|
6234 |
-
#: app/libraries/main.php:
|
6235 |
msgid "iCal export stopped!"
|
6236 |
msgstr "iCal export byl zastaven!"
|
6237 |
|
6238 |
-
#: app/libraries/main.php:
|
6239 |
-
#: app/libraries/main.php:
|
6240 |
-
#: app/libraries/main.php:
|
6241 |
-
#: app/libraries/main.php:
|
6242 |
-
#: app/libraries/main.php:
|
6243 |
-
#: app/libraries/main.php:
|
6244 |
-
#: app/libraries/main.php:
|
6245 |
msgid "Sort"
|
6246 |
msgstr "Seřadit"
|
6247 |
|
6248 |
-
#: app/libraries/main.php:
|
6249 |
-
#: app/libraries/main.php:
|
6250 |
-
#: app/libraries/main.php:
|
6251 |
-
#: app/libraries/main.php:
|
6252 |
-
#: app/libraries/main.php:
|
6253 |
-
#: app/libraries/main.php:
|
6254 |
msgid "Required Field"
|
6255 |
msgstr "Požadovaná pole"
|
6256 |
|
6257 |
-
#: app/libraries/main.php:
|
6258 |
-
#: app/libraries/main.php:
|
6259 |
-
#: app/libraries/main.php:
|
6260 |
-
#: app/libraries/main.php:
|
6261 |
-
#: app/libraries/main.php:
|
6262 |
-
#: app/libraries/main.php:
|
6263 |
msgid "Insert a label for this field"
|
6264 |
msgstr "Vložte štítek pro toto pole"
|
6265 |
|
6266 |
-
#: app/libraries/main.php:
|
6267 |
msgid "HTML and shortcode are allowed."
|
6268 |
msgstr "HTML a zkrácené kódy jsou povoleny."
|
6269 |
|
6270 |
-
#: app/libraries/main.php:
|
6271 |
-
#: app/libraries/main.php:
|
6272 |
msgid "Option"
|
6273 |
msgstr "Možnost"
|
6274 |
|
6275 |
-
#: app/libraries/main.php:
|
6276 |
#, php-format
|
6277 |
msgid "Instead of %s, the page title with a link will be show."
|
6278 |
msgstr "Místo%s se zobrazí název stránky s odkazem."
|
6279 |
|
6280 |
-
#: app/libraries/main.php:
|
6281 |
msgid "Agreement Page"
|
6282 |
msgstr "Stránka smlouvy"
|
6283 |
|
6284 |
-
#: app/libraries/main.php:
|
6285 |
msgid "Checked by default"
|
6286 |
msgstr "Ve výchozím nastavení zaškrtnuto"
|
6287 |
|
6288 |
-
#: app/libraries/main.php:
|
6289 |
msgid "Unchecked by default"
|
6290 |
msgstr "Ve výchozím nastavení není zaškrtnuto"
|
6291 |
|
6292 |
-
#: app/libraries/main.php:
|
6293 |
msgid "Insert a label for this option"
|
6294 |
msgstr "Vložte štítek pro tuto možnost"
|
6295 |
|
6296 |
-
#: app/libraries/main.php:
|
6297 |
msgid "Free"
|
6298 |
msgstr "Zdarma"
|
6299 |
|
6300 |
-
#: app/libraries/main.php:
|
6301 |
msgid "M.E. Calender"
|
6302 |
msgstr "M.E. Kalendář"
|
6303 |
|
6304 |
-
#: app/libraries/main.php:
|
6305 |
#, php-format
|
6306 |
msgid "Copy of %s"
|
6307 |
msgstr "Kopie %s"
|
6308 |
|
6309 |
-
#: app/libraries/main.php:
|
6310 |
msgid "Booked an event."
|
6311 |
msgstr "Událost byla rezervována."
|
6312 |
|
6313 |
-
#: app/libraries/main.php:
|
6314 |
#, php-format
|
6315 |
msgid "%s booked %s event."
|
6316 |
msgstr "%s zarezervoval %s událost."
|
6317 |
|
6318 |
-
#: app/libraries/main.php:
|
6319 |
msgid "Taxonomies"
|
6320 |
msgstr "Taxonomie"
|
6321 |
|
6322 |
# Mrknout na kontext
|
6323 |
-
#: app/libraries/main.php:
|
6324 |
msgid "Category Plural Label"
|
6325 |
msgstr "Štítek množné kategorie"
|
6326 |
|
6327 |
# Mrknout na kontext
|
6328 |
-
#: app/libraries/main.php:
|
6329 |
msgid "Category Singular Label"
|
6330 |
msgstr "Štítek jednotné kategorie"
|
6331 |
|
6332 |
-
#: app/libraries/main.php:
|
6333 |
msgid "Label Plural Label"
|
6334 |
msgstr "Štítek množného štítku"
|
6335 |
|
6336 |
-
#: app/libraries/main.php:
|
6337 |
msgid "Label Singular Label"
|
6338 |
msgstr "Štítek jednotného štítku"
|
6339 |
|
6340 |
-
#: app/libraries/main.php:
|
6341 |
msgid "Location Plural Label"
|
6342 |
msgstr "Štítek množného umístění"
|
6343 |
|
6344 |
-
#: app/libraries/main.php:
|
6345 |
msgid "Location Singular Label"
|
6346 |
msgstr "Štítek jednotného umístění"
|
6347 |
|
6348 |
-
#: app/libraries/main.php:
|
6349 |
msgid "Organizer Plural Label"
|
6350 |
msgstr "Štítek množného organizátora"
|
6351 |
|
6352 |
-
#: app/libraries/main.php:
|
6353 |
msgid "Organizer Singular Label"
|
6354 |
msgstr "Štítek jednotného organizátora"
|
6355 |
|
6356 |
-
#: app/libraries/main.php:
|
6357 |
msgid "Speaker Plural Label"
|
6358 |
msgstr "Štítek množného řečníka"
|
6359 |
|
6360 |
-
#: app/libraries/main.php:
|
6361 |
msgid "Speaker Singular Label"
|
6362 |
msgstr "Štítek jednotného řečníka"
|
6363 |
|
6364 |
-
#: app/libraries/main.php:
|
6365 |
msgid "Sunday abbreviation"
|
6366 |
msgstr "Neděle zkratka"
|
6367 |
|
6368 |
-
#: app/libraries/main.php:
|
6369 |
msgid "Monday abbreviation"
|
6370 |
msgstr "Pondělí zkratka"
|
6371 |
|
6372 |
-
#: app/libraries/main.php:
|
6373 |
msgid "Tuesday abbreviation"
|
6374 |
msgstr "Úterý zkratka"
|
6375 |
|
6376 |
-
#: app/libraries/main.php:
|
6377 |
msgid "Wednesday abbreviation"
|
6378 |
msgstr "Středa zkratka"
|
6379 |
|
6380 |
-
#: app/libraries/main.php:
|
6381 |
msgid "Thursday abbreviation"
|
6382 |
msgstr "Čtvrtek zkratka"
|
6383 |
|
6384 |
-
#: app/libraries/main.php:
|
6385 |
msgid "Friday abbreviation"
|
6386 |
msgstr "Pátek zkratka"
|
6387 |
|
6388 |
-
#: app/libraries/main.php:
|
6389 |
msgid "Saturday abbreviation"
|
6390 |
msgstr "Sobota zkratka"
|
6391 |
|
6392 |
-
#: app/libraries/main.php:
|
6393 |
msgid "Others"
|
6394 |
msgstr "Další"
|
6395 |
|
6396 |
-
#: app/libraries/main.php:
|
6397 |
msgid "Booking Success Message"
|
6398 |
msgstr "Zpráva o úspěchu rezervace"
|
6399 |
|
6400 |
-
#: app/libraries/main.php:
|
6401 |
msgid ""
|
6402 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
6403 |
"needed, please check your email."
|
@@ -6405,11 +6443,11 @@ msgstr ""
|
|
6405 |
"Děkujeme za vaši rezervaci. Vaše vstupenky jsou rezervovány, může být nutné "
|
6406 |
"ověřit rezervaci. Zkontrolujte prosím svůj e-mail."
|
6407 |
|
6408 |
-
#: app/libraries/main.php:
|
6409 |
msgid "Register Button"
|
6410 |
msgstr "Registrační tlačítko"
|
6411 |
|
6412 |
-
#: app/libraries/main.php:
|
6413 |
#: app/skins/carousel/render.php:158 app/skins/carousel/render.php:194
|
6414 |
#: app/skins/grid/render.php:118 app/skins/grid/render.php:164
|
6415 |
#: app/skins/grid/render.php:207 app/skins/grid/render.php:235
|
@@ -6426,11 +6464,11 @@ msgstr "Registrační tlačítko"
|
|
6426 |
msgid "REGISTER"
|
6427 |
msgstr "REGISTROVAT"
|
6428 |
|
6429 |
-
#: app/libraries/main.php:
|
6430 |
msgid "View Detail Button"
|
6431 |
msgstr "Tlačítko Zobrazit detail"
|
6432 |
|
6433 |
-
#: app/libraries/main.php:
|
6434 |
#: app/skins/carousel/render.php:194 app/skins/grid/render.php:118
|
6435 |
#: app/skins/grid/render.php:164 app/skins/grid/render.php:207
|
6436 |
#: app/skins/grid/render.php:235 app/skins/list/render.php:111
|
@@ -6441,77 +6479,77 @@ msgstr "Tlačítko Zobrazit detail"
|
|
6441 |
msgid "View Detail"
|
6442 |
msgstr "Zobrazit detail"
|
6443 |
|
6444 |
-
#: app/libraries/main.php:
|
6445 |
msgid "Event Detail Button"
|
6446 |
msgstr "Tlačítko Detail události"
|
6447 |
|
6448 |
-
#: app/libraries/main.php:
|
6449 |
msgid "Event Detail"
|
6450 |
msgstr "Zobrazit událost"
|
6451 |
|
6452 |
-
#: app/libraries/main.php:
|
6453 |
msgid "More Info Link"
|
6454 |
msgstr "Odkaz na více informací"
|
6455 |
|
6456 |
-
#: app/libraries/main.php:
|
6457 |
msgid "Ticket (Singular)"
|
6458 |
msgstr "Vstupenka (Jednotné)"
|
6459 |
|
6460 |
-
#: app/libraries/main.php:
|
6461 |
msgid "Tickets (Plural)"
|
6462 |
msgstr "Vstupenky (Množné)"
|
6463 |
|
6464 |
-
#: app/libraries/main.php:
|
6465 |
msgid "EventON"
|
6466 |
msgstr "EventON"
|
6467 |
|
6468 |
-
#: app/libraries/main.php:
|
6469 |
msgid "The Events Calendar"
|
6470 |
msgstr "The Events Calendar"
|
6471 |
|
6472 |
-
#: app/libraries/main.php:
|
6473 |
msgid "Events Schedule WP Plugin"
|
6474 |
msgstr "Events Schedule WP Plugin"
|
6475 |
|
6476 |
-
#: app/libraries/main.php:
|
6477 |
msgid "Calendarize It"
|
6478 |
msgstr "Calendarize It"
|
6479 |
|
6480 |
-
#: app/libraries/main.php:
|
6481 |
#, fuzzy
|
6482 |
#| msgid "Event Speakers"
|
6483 |
msgid "Event Espresso"
|
6484 |
msgstr "Řečník události"
|
6485 |
|
6486 |
-
#: app/libraries/main.php:
|
6487 |
#, fuzzy
|
6488 |
#| msgid "Event Repeating (Recurring events)"
|
6489 |
msgid "Events Manager (Recurring)"
|
6490 |
msgstr "Opakování události (opakující se události)"
|
6491 |
|
6492 |
-
#: app/libraries/main.php:
|
6493 |
#, fuzzy
|
6494 |
#| msgid "Modern Events Calendar (Lite)"
|
6495 |
msgid "Events Manager (Single)"
|
6496 |
msgstr "Modern Events Calendar (Lite)"
|
6497 |
|
6498 |
-
#: app/libraries/main.php:
|
6499 |
msgid "Confirmed"
|
6500 |
msgstr "Potvrzeno"
|
6501 |
|
6502 |
-
#: app/libraries/main.php:
|
6503 |
msgid "Rejected"
|
6504 |
msgstr "Odmítnuto"
|
6505 |
|
6506 |
-
#: app/libraries/main.php:
|
6507 |
msgid "Pending"
|
6508 |
msgstr "Nevyřízený"
|
6509 |
|
6510 |
-
#: app/libraries/main.php:
|
6511 |
msgid "Waiting"
|
6512 |
msgstr "Čekající"
|
6513 |
|
6514 |
-
#: app/libraries/main.php:
|
6515 |
msgid "Skin controller does not exist."
|
6516 |
msgstr "Ovladač vzhledu neexistuje."
|
6517 |
|
@@ -6543,28 +6581,33 @@ msgstr "Je přidána se nová událost."
|
|
6543 |
msgid "Your event is published."
|
6544 |
msgstr "Vaše událost je zveřejněna."
|
6545 |
|
6546 |
-
#: app/libraries/notifications.php:
|
6547 |
-
|
|
|
|
|
|
|
|
|
|
|
6548 |
msgid "to"
|
6549 |
msgstr "do"
|
6550 |
|
6551 |
-
#: app/libraries/notifications.php:
|
6552 |
msgid "+ Add to Google Calendar"
|
6553 |
msgstr "+ Přidat do Google kalendáře"
|
6554 |
|
6555 |
-
#: app/libraries/notifications.php:
|
6556 |
msgid "+ iCal export"
|
6557 |
msgstr "+ iCal export"
|
6558 |
|
6559 |
-
#: app/libraries/notifications.php:
|
6560 |
msgid "Yes"
|
6561 |
msgstr "Ano"
|
6562 |
|
6563 |
-
#: app/libraries/notifications.php:
|
6564 |
msgid "No"
|
6565 |
msgstr "Ne"
|
6566 |
|
6567 |
-
#: app/libraries/skins.php:
|
6568 |
msgid "Ignore month and years"
|
6569 |
msgstr "Ignorovat měsíc a roky"
|
6570 |
|
@@ -6729,12 +6772,14 @@ msgstr "Viditelnost"
|
|
6729 |
#: app/skins/grid/tpl.php:66 app/skins/list/tpl.php:67
|
6730 |
#: app/skins/list/tpl.php:71 app/skins/masonry/tpl.php:62
|
6731 |
#: app/skins/masonry/tpl.php:66 app/skins/slider/tpl.php:44
|
|
|
6732 |
msgid "No event found!"
|
6733 |
msgstr "Nebyla nalezena žádná událost!"
|
6734 |
|
6735 |
#: app/skins/agenda/tpl.php:75 app/skins/custom/tpl.php:71
|
6736 |
#: app/skins/grid/tpl.php:71 app/skins/list/tpl.php:76
|
6737 |
-
#: app/skins/masonry/tpl.php:71 app/skins/
|
|
|
6738 |
msgid "Load More"
|
6739 |
msgstr "Načíst více"
|
6740 |
|
@@ -6763,7 +6808,7 @@ msgid "featured event"
|
|
6763 |
msgstr "nejlepší událost"
|
6764 |
|
6765 |
#: app/skins/daily_view/render.php:104 app/skins/monthly_view/calendar.php:170
|
6766 |
-
#: app/skins/monthly_view/calendar_clean.php:
|
6767 |
#: app/skins/weekly_view/render.php:113
|
6768 |
msgid "Sold Out"
|
6769 |
msgstr "Vyprodáno"
|
@@ -6784,13 +6829,13 @@ msgstr "Vše"
|
|
6784 |
#: app/skins/monthly_view/calendar.php:68
|
6785 |
#: app/skins/monthly_view/calendar.php:182
|
6786 |
#: app/skins/monthly_view/calendar_clean.php:68
|
6787 |
-
#: app/skins/monthly_view/calendar_clean.php:
|
6788 |
#, php-format
|
6789 |
msgid "Events for %s"
|
6790 |
msgstr "Událost pro %s"
|
6791 |
|
6792 |
#: app/skins/monthly_view/calendar.php:184
|
6793 |
-
#: app/skins/monthly_view/calendar_clean.php:
|
6794 |
#: app/skins/timetable/render.php:113 app/skins/weekly_view/render.php:122
|
6795 |
msgid "No Events"
|
6796 |
msgstr "Žádné události"
|
@@ -6828,6 +6873,18 @@ msgstr "Řečník:"
|
|
6828 |
msgid "Tags: "
|
6829 |
msgstr "Značky: "
|
6830 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6831 |
#: app/skins/timetable/modern.php:72 app/skins/weekly_view/tpl.php:72
|
6832 |
#, php-format
|
6833 |
msgid "Week %s"
|
@@ -6913,6 +6970,15 @@ msgstr "Webnus Team"
|
|
6913 |
msgid "http://webnus.net"
|
6914 |
msgstr "http://webnus.net"
|
6915 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6916 |
#, fuzzy
|
6917 |
#~| msgid "Enable booking reminder notification"
|
6918 |
#~ msgid "Booking reminder notification is not enabled!"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar Lite\n"
|
4 |
+
"POT-Creation-Date: 2019-11-25 10:19+0330\n"
|
5 |
+
"PO-Revision-Date: 2019-11-25 10:20+0330\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: cs_CZ\n"
|
67 |
msgstr "Barva události"
|
68 |
|
69 |
#: app/features/contextual.php:55 app/features/mec.php:348
|
70 |
+
#: app/features/mec/dashboard.php:134 app/features/mec/support-page.php:197
|
71 |
+
#: app/features/mec/support.php:20 app/libraries/main.php:590
|
72 |
msgid "Settings"
|
73 |
msgstr "Nastavení"
|
74 |
|
75 |
#: app/features/contextual.php:62 app/features/events.php:2415
|
76 |
#: app/features/mec/booking.php:439 app/features/mec/support.php:29
|
77 |
+
#: app/libraries/main.php:556
|
78 |
msgid "Booking Form"
|
79 |
msgstr "Rezervační formulář"
|
80 |
|
94 |
"iframe>"
|
95 |
|
96 |
#: app/features/contextual.php:70 app/features/mec/booking.php:557
|
97 |
+
#: app/features/mec/support.php:36 app/libraries/main.php:557
|
98 |
msgid "Payment Gateways"
|
99 |
msgstr "Platební brány"
|
100 |
|
109 |
"allowfullscreen></iframe>"
|
110 |
|
111 |
#: app/features/contextual.php:77 app/features/mec/support.php:45
|
112 |
+
#: app/libraries/main.php:738
|
113 |
msgid "Notifications"
|
114 |
msgstr "Upozornění"
|
115 |
|
189 |
"\"0\" allowfullscreen></iframe>"
|
190 |
|
191 |
#: app/features/contextual.php:117 app/features/mec/settings.php:73
|
192 |
+
#: app/libraries/main.php:530
|
193 |
msgid "General Options"
|
194 |
msgstr "Obecné možnosti"
|
195 |
|
196 |
#: app/features/contextual.php:139 app/features/mec/settings.php:405
|
197 |
+
#: app/libraries/main.php:532
|
198 |
msgid "Slugs/Permalinks"
|
199 |
msgstr "Název v URL / Trvalé odkazy"
|
200 |
|
203 |
msgstr "Podrobnosti o události / Stránka jedné události"
|
204 |
|
205 |
#: app/features/contextual.php:166 app/features/mec/settings.php:437
|
206 |
+
#: app/libraries/main.php:533
|
207 |
msgid "Currency Options"
|
208 |
msgstr "Možnosti Měna"
|
209 |
|
210 |
#: app/features/contextual.php:182 app/features/mec/modules.php:67
|
211 |
+
#: app/features/mec/modules.php:85 app/libraries/main.php:562
|
212 |
msgid "Google Maps Options"
|
213 |
msgstr "Možnosti Google Maps"
|
214 |
|
215 |
#: app/features/contextual.php:244 app/features/mec/settings.php:494
|
216 |
+
#: app/libraries/main.php:534
|
217 |
msgid "Google Recaptcha Options"
|
218 |
msgstr "Možnosti Google Recaptcha"
|
219 |
|
220 |
#: app/features/contextual.php:258 app/features/mec/single.php:133
|
221 |
+
#: app/libraries/main.php:544
|
222 |
msgid "Countdown Options"
|
223 |
msgstr "Možnosti Odpočítávání"
|
224 |
|
225 |
#: app/features/contextual.php:268 app/features/mec/modules.php:263
|
226 |
+
#: app/libraries/main.php:567
|
227 |
msgid "Social Networks"
|
228 |
msgstr "Sociální sítě"
|
229 |
|
232 |
msgstr "Modul Další události"
|
233 |
|
234 |
#: app/features/contextual.php:286 app/features/mec/settings.php:530
|
235 |
+
#: app/libraries/main.php:535
|
236 |
msgid "Frontend Event Submission"
|
237 |
msgstr "Předání události frontendu"
|
238 |
|
239 |
#: app/features/contextual.php:298 app/features/events.php:325
|
240 |
+
#: app/libraries/main.php:545
|
241 |
msgid "Exceptional Days"
|
242 |
msgstr "Výjimečné dny"
|
243 |
|
244 |
#: app/features/contextual.php:308 app/features/events.php:298
|
245 |
#: app/features/mec/booking.php:88 app/features/mec/notifications.php:35
|
246 |
+
#: app/libraries/main.php:552 app/libraries/main.php:573
|
247 |
+
#: app/libraries/main.php:655
|
248 |
msgid "Booking"
|
249 |
msgstr "Rezervace"
|
250 |
|
251 |
#: app/features/contextual.php:318 app/features/mec/booking.php:261
|
252 |
+
#: app/libraries/main.php:553
|
253 |
msgid "Coupons"
|
254 |
msgstr "Kupóny"
|
255 |
|
256 |
#: app/features/contextual.php:326 app/features/mec/modules.php:324
|
257 |
+
#: app/libraries/main.php:569
|
258 |
msgid "BuddyPress Integration"
|
259 |
msgstr "Integrace BuddyPress"
|
260 |
|
261 |
#: app/features/contextual.php:334 app/features/mec/settings.php:823
|
262 |
+
#: app/libraries/main.php:538
|
263 |
msgid "Mailchimp Integration"
|
264 |
msgstr "Integrace Mailchimp"
|
265 |
|
268 |
msgstr "Aktivace MEC"
|
269 |
|
270 |
#: app/features/events.php:150 app/features/ix/export.php:34
|
271 |
+
#: app/features/mec/dashboard.php:255 app/skins/daily_view/tpl.php:79
|
272 |
#: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
|
273 |
msgid "Events"
|
274 |
msgstr "Události"
|
275 |
|
276 |
#: app/features/events.php:151 app/features/fes.php:223
|
277 |
+
#: app/features/mec/meta_boxes/display_options.php:959
|
278 |
+
#: app/features/mec/meta_boxes/display_options.php:1015
|
279 |
+
#: app/features/mec/meta_boxes/display_options.php:1050
|
280 |
#: app/features/profile/profile.php:50 app/skins/daily_view/tpl.php:80
|
281 |
#: app/skins/monthly_view/tpl.php:71 app/skins/yearly_view/tpl.php:69
|
282 |
msgid "Event"
|
312 |
msgstr "V koši nebyly nalezeny žádné události!"
|
313 |
|
314 |
#: app/features/events.php:175 app/features/events.php:3241
|
315 |
+
#: app/features/mec/meta_boxes/display_options.php:870
|
316 |
#: app/features/mec/meta_boxes/search_form.php:31
|
317 |
#: app/features/mec/meta_boxes/search_form.php:93
|
318 |
#: app/features/mec/meta_boxes/search_form.php:155
|
324 |
#: app/features/mec/meta_boxes/search_form.php:514
|
325 |
#: app/features/mec/meta_boxes/search_form.php:575
|
326 |
#: app/features/mec/settings.php:776 app/features/mec/single.php:204
|
327 |
+
#: app/features/search.php:67 app/libraries/main.php:4919
|
328 |
+
#: app/libraries/skins.php:811 app/skins/single.php:561
|
329 |
#: app/skins/single/default.php:185 app/skins/single/default.php:397
|
330 |
#: app/skins/single/m1.php:170 app/skins/single/m2.php:102
|
331 |
#: app/skins/single/modern.php:110
|
334 |
|
335 |
#: app/features/events.php:176 app/features/events.php:3212
|
336 |
#: app/features/fes/form.php:746 app/features/mec.php:336
|
337 |
+
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:4918
|
338 |
msgid "Categories"
|
339 |
msgstr "Kategorie"
|
340 |
|
442 |
#: app/features/events.php:329 app/features/events.php:3243
|
443 |
#: app/features/events.php:3434 app/features/events.php:3476
|
444 |
#: app/features/ix.php:3373 app/features/ix.php:3414
|
445 |
+
#: app/features/mec/meta_boxes/display_options.php:873
|
446 |
#: app/features/mec/meta_boxes/search_form.php:45
|
447 |
#: app/features/mec/meta_boxes/search_form.php:107
|
448 |
#: app/features/mec/meta_boxes/search_form.php:169
|
457 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
458 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
459 |
#: app/features/organizers.php:271 app/features/search.php:75
|
460 |
+
#: app/libraries/main.php:4925 app/libraries/skins.php:863
|
461 |
#: app/skins/single.php:797 app/skins/single/default.php:210
|
462 |
#: app/skins/single/default.php:422 app/skins/single/m1.php:90
|
463 |
#: app/skins/single/m2.php:22 app/skins/single/modern.php:31
|
465 |
msgstr "Organizátor"
|
466 |
|
467 |
#: app/features/events.php:330 app/features/events.php:1157
|
468 |
+
#: app/features/fes/form.php:719 app/libraries/main.php:4952
|
469 |
#: app/skins/single.php:584 app/skins/single/default.php:119
|
470 |
#: app/skins/single/default.php:331 app/skins/single/m1.php:49
|
471 |
#: app/skins/single/modern.php:199
|
484 |
#: app/features/fes.php:223 app/features/fes/form.php:678
|
485 |
#: app/features/labels.php:178 app/features/mec/booking.php:45
|
486 |
#: app/features/organizers.php:279 app/features/profile/profile.php:180
|
487 |
+
#: app/libraries/notifications.php:919 app/modules/booking/steps/form.php:37
|
488 |
msgid "Name"
|
489 |
msgstr "Jméno"
|
490 |
|
494 |
#: app/features/mec/booking.php:490 app/features/organizers.php:111
|
495 |
#: app/features/organizers.php:152 app/features/profile/profile.php:183
|
496 |
#: app/features/speakers.php:126 app/features/speakers.php:187
|
497 |
+
#: app/libraries/main.php:1474 app/libraries/main.php:1543
|
498 |
+
#: app/libraries/main.php:2605 app/libraries/notifications.php:920
|
499 |
#: app/modules/booking/steps/form.php:46 app/modules/booking/steps/form.php:84
|
500 |
#: app/skins/single.php:814 app/skins/single.php:869
|
501 |
#: app/skins/single/default.php:227 app/skins/single/default.php:439
|
513 |
#: app/features/events.php:3476 app/features/fes/form.php:246
|
514 |
#: app/features/fes/form.php:250 app/features/ix.php:3373
|
515 |
#: app/features/ix.php:3414 app/features/ix/import_g_calendar.php:38
|
516 |
+
#: app/features/mec/dashboard.php:399
|
517 |
#: app/features/mec/meta_boxes/display_options.php:48
|
518 |
+
#: app/features/mec/meta_boxes/display_options.php:214
|
519 |
+
#: app/features/mec/meta_boxes/display_options.php:379
|
520 |
+
#: app/features/mec/meta_boxes/display_options.php:434
|
521 |
+
#: app/features/mec/meta_boxes/display_options.php:557
|
522 |
+
#: app/features/mec/meta_boxes/display_options.php:611
|
523 |
+
#: app/features/mec/meta_boxes/display_options.php:658
|
524 |
+
#: app/features/mec/meta_boxes/display_options.php:691
|
525 |
+
#: app/features/mec/meta_boxes/display_options.php:726
|
526 |
+
#: app/features/mec/meta_boxes/display_options.php:772
|
527 |
+
#: app/features/mec/meta_boxes/display_options.php:838
|
528 |
+
#: app/features/mec/meta_boxes/display_options.php:1073
|
529 |
+
#: app/features/mec/meta_boxes/display_options.php:1160
|
530 |
+
#: app/features/mec/meta_boxes/display_options.php:1252
|
531 |
msgid "Start Date"
|
532 |
msgstr "Počátečná den"
|
533 |
|
550 |
#: app/features/events.php:3476 app/features/fes/form.php:286
|
551 |
#: app/features/fes/form.php:290 app/features/ix.php:3373
|
552 |
#: app/features/ix.php:3414 app/features/ix/import_g_calendar.php:44
|
553 |
+
#: app/features/mec/dashboard.php:400
|
554 |
msgid "End Date"
|
555 |
msgstr "Konečný den"
|
556 |
|
599 |
#: app/features/mec/meta_boxes/display_options.php:92
|
600 |
#: app/features/mec/meta_boxes/display_options.php:103
|
601 |
#: app/features/mec/meta_boxes/display_options.php:115
|
602 |
+
#: app/features/mec/meta_boxes/display_options.php:232
|
603 |
+
#: app/features/mec/meta_boxes/display_options.php:244
|
|
|
604 |
#: app/features/mec/meta_boxes/display_options.php:256
|
605 |
+
#: app/features/mec/meta_boxes/display_options.php:269
|
606 |
#: app/features/mec/meta_boxes/display_options.php:280
|
607 |
+
#: app/features/mec/meta_boxes/display_options.php:293
|
608 |
+
#: app/features/mec/meta_boxes/display_options.php:304
|
609 |
+
#: app/features/mec/meta_boxes/display_options.php:398
|
610 |
+
#: app/features/mec/meta_boxes/display_options.php:574
|
611 |
+
#: app/features/mec/meta_boxes/display_options.php:857
|
612 |
+
#: app/features/mec/meta_boxes/display_options.php:930
|
613 |
+
#: app/features/mec/meta_boxes/display_options.php:942
|
614 |
+
#: app/features/mec/meta_boxes/display_options.php:953
|
615 |
+
#: app/features/mec/meta_boxes/display_options.php:985
|
616 |
+
#: app/features/mec/meta_boxes/display_options.php:996
|
617 |
+
#: app/features/mec/meta_boxes/display_options.php:1009
|
618 |
+
#: app/features/mec/meta_boxes/display_options.php:1044
|
619 |
+
#: app/features/mec/meta_boxes/display_options.php:1093
|
620 |
+
#: app/features/mec/meta_boxes/display_options.php:1104
|
621 |
+
#: app/features/mec/meta_boxes/display_options.php:1115
|
|
|
622 |
#: app/features/mec/meta_boxes/display_options.php:1180
|
623 |
#: app/features/mec/meta_boxes/display_options.php:1193
|
624 |
#: app/features/mec/meta_boxes/display_options.php:1206
|
625 |
+
#: app/features/mec/meta_boxes/display_options.php:1219
|
626 |
+
#: app/features/mec/meta_boxes/display_options.php:1232
|
627 |
+
#: app/features/mec/meta_boxes/display_options.php:1270
|
628 |
#: app/features/mec/modules.php:53 app/features/mec/modules.php:86
|
629 |
#: app/features/mec/modules.php:103 app/features/mec/modules.php:138
|
630 |
#: app/features/mec/modules.php:154 app/features/mec/modules.php:312
|
670 |
msgstr "Opakování"
|
671 |
|
672 |
#: app/features/events.php:738 app/features/fes/form.php:348
|
673 |
+
#: app/features/mec/dashboard.php:402
|
674 |
#: app/skins/default_full_calendar/tpl.php:69
|
675 |
#: app/skins/full_calendar/tpl.php:110
|
676 |
msgid "Daily"
|
695 |
msgstr "Týdně"
|
696 |
|
697 |
#: app/features/events.php:773 app/features/fes/form.php:353
|
698 |
+
#: app/features/mec/dashboard.php:403
|
699 |
#: app/skins/default_full_calendar/tpl.php:67
|
700 |
#: app/skins/full_calendar/tpl.php:108
|
701 |
msgid "Monthly"
|
702 |
msgstr "Měsíčně"
|
703 |
|
704 |
#: app/features/events.php:780 app/features/fes/form.php:354
|
705 |
+
#: app/features/mec/dashboard.php:404
|
706 |
#: app/skins/default_full_calendar/tpl.php:66
|
707 |
#: app/skins/full_calendar/tpl.php:107
|
708 |
msgid "Yearly"
|
818 |
#: app/features/events.php:1153 app/features/events.php:3434
|
819 |
#: app/features/events.php:3476 app/features/fes/form.php:716
|
820 |
#: app/features/ix.php:3373 app/features/ix.php:3414
|
821 |
+
#: app/features/mec/settings.php:632 app/libraries/main.php:4951
|
822 |
#: app/widgets/single.php:103
|
823 |
msgid "Event Cost"
|
824 |
msgstr "Cena události"
|
833 |
|
834 |
#: app/features/events.php:1189 app/features/events.php:2485
|
835 |
#: app/features/fes.php:223 app/features/mec/booking.php:491
|
836 |
+
#: app/features/profile/profile.php:53 app/libraries/main.php:2061
|
837 |
+
#: app/libraries/main.php:2663 app/modules/booking/steps/tickets.php:22
|
838 |
#: app/modules/next-event/details.php:90 app/skins/single.php:639
|
839 |
#: app/skins/single/default.php:83 app/skins/single/default.php:295
|
840 |
#: app/skins/single/m1.php:16 app/skins/single/modern.php:166
|
892 |
#: app/features/events.php:2301 app/features/events.php:2343
|
893 |
#: app/features/mec/booking.php:318 app/features/mec/booking.php:347
|
894 |
#: app/features/mec/booking.php:398 app/features/mec/booking.php:430
|
895 |
+
#: app/libraries/main.php:2524 app/libraries/main.php:2554
|
896 |
+
#: app/libraries/main.php:2583 app/libraries/main.php:2613
|
897 |
+
#: app/libraries/main.php:2642 app/libraries/main.php:2671
|
898 |
+
#: app/libraries/main.php:2700 app/libraries/main.php:2729
|
899 |
+
#: app/libraries/main.php:2751 app/libraries/main.php:2782
|
900 |
+
#: app/libraries/main.php:2826 app/libraries/main.php:2870
|
901 |
+
#: app/libraries/main.php:2917 app/libraries/main.php:2956
|
902 |
msgid "Remove"
|
903 |
msgstr "Odstranit"
|
904 |
|
926 |
#: app/features/events.php:1430 app/features/fes/form.php:840
|
927 |
#: app/features/mec.php:344 app/features/mec/modules.php:52
|
928 |
#: app/features/mec/settings.php:680 app/features/speakers.php:62
|
929 |
+
#: app/libraries/main.php:561 app/libraries/main.php:4926
|
930 |
#: app/modules/speakers/details.php:18
|
931 |
msgid "Speakers"
|
932 |
msgstr "Řečníci"
|
941 |
msgstr "Odkazy na událost"
|
942 |
|
943 |
#: app/features/events.php:1464 app/features/events.php:1470
|
944 |
+
#: app/features/fes/form.php:695 app/libraries/main.php:4949
|
945 |
msgid "Event Link"
|
946 |
msgstr "Odkaz na událost"
|
947 |
|
965 |
msgstr "Zkracovač URL"
|
966 |
|
967 |
#: app/features/events.php:1480 app/features/events.php:1493
|
968 |
+
#: app/features/fes/form.php:700 app/libraries/main.php:4950
|
969 |
#: app/skins/single.php:658 app/skins/single/default.php:133
|
970 |
#: app/skins/single/default.php:345 app/skins/single/m1.php:191
|
971 |
#: app/skins/single/m2.php:124 app/skins/single/modern.php:132
|
1034 |
msgstr "12"
|
1035 |
|
1036 |
#: app/features/events.php:1638 app/libraries/book.php:60
|
1037 |
+
#: app/libraries/main.php:4954 app/modules/booking/steps/tickets.php:40
|
1038 |
msgid "Tickets"
|
1039 |
msgstr "Vstupenky"
|
1040 |
|
1098 |
|
1099 |
#: app/features/events.php:1874 app/features/events.php:1900
|
1100 |
#: app/features/events.php:2057 app/features/labels.php:60
|
1101 |
+
#: app/features/mec/meta_boxes/display_options.php:871
|
1102 |
#: app/features/mec/meta_boxes/search_form.php:66
|
1103 |
#: app/features/mec/meta_boxes/search_form.php:128
|
1104 |
#: app/features/mec/meta_boxes/search_form.php:190
|
1110 |
#: app/features/mec/meta_boxes/search_form.php:549
|
1111 |
#: app/features/mec/meta_boxes/search_form.php:610
|
1112 |
#: app/features/mec/settings.php:808 app/features/mec/single.php:222
|
1113 |
+
#: app/libraries/skins.php:941
|
1114 |
msgid "Label"
|
1115 |
msgstr "Štítek"
|
1116 |
|
1176 |
msgstr "Maximum na jednu vstupenku. Ponechte to prázdné pro neomezené."
|
1177 |
|
1178 |
#: app/features/events.php:2481 app/features/mec/booking.php:487
|
1179 |
+
#: app/libraries/main.php:2546
|
1180 |
msgid "MEC Name"
|
1181 |
msgstr "MEC Jméno"
|
1182 |
|
1183 |
#: app/features/events.php:2482 app/features/mec/booking.php:488
|
1184 |
+
#: app/libraries/main.php:2575
|
1185 |
msgid "MEC Email"
|
1186 |
msgstr "MEC Email"
|
1187 |
|
1188 |
#: app/features/events.php:2483 app/features/mec/booking.php:489
|
1189 |
+
#: app/libraries/main.php:2516
|
1190 |
msgid "Text"
|
1191 |
msgstr "Text"
|
1192 |
|
1193 |
#: app/features/events.php:2486 app/features/mec/booking.php:492
|
1194 |
#: app/features/organizers.php:103 app/features/organizers.php:148
|
1195 |
#: app/features/speakers.php:118 app/features/speakers.php:183
|
1196 |
+
#: app/features/speakers.php:256 app/libraries/main.php:2692
|
1197 |
msgid "Tel"
|
1198 |
msgstr "Tel"
|
1199 |
|
1200 |
#: app/features/events.php:2487 app/features/mec/booking.php:493
|
1201 |
+
#: app/libraries/main.php:2634
|
1202 |
msgid "File"
|
1203 |
msgstr "Soubor"
|
1204 |
|
1205 |
#: app/features/events.php:2488 app/features/mec/booking.php:494
|
1206 |
+
#: app/libraries/main.php:2721
|
1207 |
msgid "Textarea"
|
1208 |
msgstr "Plocha textu"
|
1209 |
|
1210 |
#: app/features/events.php:2489 app/features/mec/booking.php:495
|
1211 |
+
#: app/libraries/main.php:2774
|
1212 |
msgid "Checkboxes"
|
1213 |
msgstr "Zatržítko"
|
1214 |
|
1215 |
#: app/features/events.php:2490 app/features/mec/booking.php:496
|
1216 |
+
#: app/libraries/main.php:2818
|
1217 |
msgid "Radio Buttons"
|
1218 |
msgstr "Přepínače"
|
1219 |
|
1286 |
#: app/features/mec/meta_boxes/search_form.php:599
|
1287 |
#: app/features/mec/meta_boxes/search_form.php:606
|
1288 |
#: app/features/mec/meta_boxes/search_form.php:613
|
1289 |
+
#: app/features/mec/meta_boxes/search_form.php:620 app/libraries/main.php:2862
|
1290 |
msgid "Dropdown"
|
1291 |
msgstr "Rozbalovací"
|
1292 |
|
1293 |
#: app/features/events.php:2492 app/features/mec/booking.php:498
|
1294 |
+
#: app/libraries/main.php:2909
|
1295 |
msgid "Agreement"
|
1296 |
msgstr "Smlouva"
|
1297 |
|
1298 |
#: app/features/events.php:2493 app/features/mec/booking.php:499
|
1299 |
+
#: app/libraries/main.php:2750
|
1300 |
msgid "Paragraph"
|
1301 |
msgstr "Paragraf"
|
1302 |
|
1323 |
#: app/features/ix.php:3414 app/features/locations.php:58
|
1324 |
#: app/features/locations.php:230 app/features/locations.php:287
|
1325 |
#: app/features/locations.php:289 app/features/locations.php:298
|
1326 |
+
#: app/features/mec/meta_boxes/display_options.php:872
|
1327 |
#: app/features/mec/meta_boxes/search_form.php:38
|
1328 |
#: app/features/mec/meta_boxes/search_form.php:100
|
1329 |
#: app/features/mec/meta_boxes/search_form.php:162
|
1335 |
#: app/features/mec/meta_boxes/search_form.php:521
|
1336 |
#: app/features/mec/meta_boxes/search_form.php:582
|
1337 |
#: app/features/mec/settings.php:782 app/features/mec/single.php:212
|
1338 |
+
#: app/features/search.php:71 app/libraries/main.php:2055
|
1339 |
+
#: app/libraries/main.php:4923 app/libraries/skins.php:837
|
1340 |
#: app/skins/single.php:488 app/skins/single.php:909
|
1341 |
#: app/skins/single/default.php:169 app/skins/single/default.php:381
|
1342 |
#: app/skins/single/m1.php:155 app/skins/single/m2.php:87
|
1431 |
msgstr "Událost byla odebrána!"
|
1432 |
|
1433 |
#: app/features/fes.php:223 app/features/profile/profile.php:186
|
1434 |
+
#: app/libraries/main.php:2090 app/libraries/main.php:4953
|
1435 |
msgid "Ticket"
|
1436 |
msgstr "Vstupenka"
|
1437 |
|
1438 |
+
#: app/features/fes.php:223 app/libraries/main.php:2067
|
1439 |
msgid "Transaction ID"
|
1440 |
msgstr "ID transakce"
|
1441 |
|
1443 |
msgid "Total Price"
|
1444 |
msgstr "Celková cena"
|
1445 |
|
1446 |
+
#: app/features/fes.php:223
|
1447 |
+
#, fuzzy
|
1448 |
+
#| msgid "Ticket Variations / Options"
|
1449 |
+
msgid "Ticket Variation"
|
1450 |
+
msgstr "Varianty vstupenky / možnosti"
|
1451 |
+
|
1452 |
#: app/features/fes.php:223
|
1453 |
msgid "Confirmation"
|
1454 |
msgstr "Potvrzení"
|
1457 |
msgid "Verification"
|
1458 |
msgstr "Ověření"
|
1459 |
|
1460 |
+
#: app/features/fes.php:303
|
1461 |
msgid "Unknown"
|
1462 |
msgstr "Neznámý"
|
1463 |
|
1464 |
+
#: app/features/fes.php:362
|
1465 |
msgid "The image is uploaded!"
|
1466 |
msgstr "Obrázek je nahraný!"
|
1467 |
|
1468 |
+
#: app/features/fes.php:388
|
1469 |
msgid "Captcha is invalid! Please try again."
|
1470 |
msgstr "Captcha je neplatná! Prosím zkuste to znovu."
|
1471 |
|
1472 |
+
#: app/features/fes.php:416
|
1473 |
msgid "Please fill event title field!"
|
1474 |
msgstr "Vyplňte prosím pole názvu události!"
|
1475 |
|
1476 |
+
#: app/features/fes.php:1035
|
1477 |
msgid "The event submitted. It will publish as soon as possible."
|
1478 |
msgstr "Událost byla odeslána. Zveřejní se co nejdříve."
|
1479 |
|
1480 |
+
#: app/features/fes.php:1036
|
1481 |
msgid "The event published."
|
1482 |
msgstr "Událost byla publikována."
|
1483 |
|
1486 |
msgstr "Přejít zpět na seznam událostí"
|
1487 |
|
1488 |
#: app/features/fes/form.php:365
|
1489 |
+
#: app/features/mec/meta_boxes/display_options.php:802
|
1490 |
+
#: app/libraries/main.php:409
|
1491 |
msgid "Monday"
|
1492 |
msgstr "Pondělí"
|
1493 |
|
1494 |
#: app/features/fes/form.php:366
|
1495 |
+
#: app/features/mec/meta_boxes/display_options.php:803
|
1496 |
+
#: app/libraries/main.php:409
|
1497 |
msgid "Tuesday"
|
1498 |
msgstr "Úterý"
|
1499 |
|
1500 |
#: app/features/fes/form.php:367
|
1501 |
+
#: app/features/mec/meta_boxes/display_options.php:804
|
1502 |
+
#: app/libraries/main.php:409
|
1503 |
msgid "Wednesday"
|
1504 |
msgstr "Středa"
|
1505 |
|
1506 |
#: app/features/fes/form.php:368
|
1507 |
+
#: app/features/mec/meta_boxes/display_options.php:805
|
1508 |
+
#: app/libraries/main.php:409
|
1509 |
msgid "Thursday"
|
1510 |
msgstr "Čtvrtek"
|
1511 |
|
1512 |
#: app/features/fes/form.php:369
|
1513 |
+
#: app/features/mec/meta_boxes/display_options.php:806
|
1514 |
+
#: app/libraries/main.php:409
|
1515 |
msgid "Friday"
|
1516 |
msgstr "Pátek"
|
1517 |
|
1518 |
#: app/features/fes/form.php:370
|
1519 |
+
#: app/features/mec/meta_boxes/display_options.php:807
|
1520 |
+
#: app/libraries/main.php:409
|
1521 |
msgid "Saturday"
|
1522 |
msgstr "Sobota"
|
1523 |
|
1524 |
#: app/features/fes/form.php:371
|
1525 |
+
#: app/features/mec/meta_boxes/display_options.php:801
|
1526 |
+
#: app/libraries/main.php:409
|
1527 |
msgid "Sunday"
|
1528 |
msgstr "Neděle"
|
1529 |
|
1566 |
|
1567 |
#: app/features/fes/form.php:772 app/features/labels.php:61
|
1568 |
#: app/features/labels.php:221 app/features/mec.php:337
|
1569 |
+
#: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:4920
|
1570 |
#: app/skins/single.php:687 app/skins/single/default.php:148
|
1571 |
#: app/skins/single/default.php:360 app/skins/single/m1.php:64
|
1572 |
#: app/skins/single/modern.php:214
|
1620 |
msgstr "MEC Import / Export"
|
1621 |
|
1622 |
#: app/features/ix.php:107 app/features/mec/support.php:73
|
1623 |
+
#: app/libraries/main.php:798
|
1624 |
msgid "Import / Export"
|
1625 |
msgstr "Import / Export"
|
1626 |
|
1950 |
#: app/features/mec/booking.php:264 app/features/mec/booking.php:282
|
1951 |
#: app/features/mec/booking.php:359
|
1952 |
#: app/features/mec/meta_boxes/display_options.php:162
|
1953 |
+
#: app/features/mec/meta_boxes/display_options.php:340
|
1954 |
#: app/features/mec/modules.php:70 app/features/mec/modules.php:211
|
1955 |
#: app/features/mec/modules.php:228
|
1956 |
#, php-format
|
1961 |
#: app/features/mec/booking.php:91 app/features/mec/booking.php:264
|
1962 |
#: app/features/mec/booking.php:282 app/features/mec/booking.php:359
|
1963 |
#: app/features/mec/meta_boxes/display_options.php:162
|
1964 |
+
#: app/features/mec/meta_boxes/display_options.php:340
|
1965 |
+
#: app/features/mec/meta_boxes/display_options.php:368
|
1966 |
+
#: app/features/mec/meta_boxes/display_options.php:495
|
1967 |
+
#: app/features/mec/meta_boxes/display_options.php:546
|
1968 |
+
#: app/features/mec/meta_boxes/display_options.php:653
|
1969 |
+
#: app/features/mec/meta_boxes/display_options.php:760
|
1970 |
+
#: app/features/mec/meta_boxes/display_options.php:833
|
1971 |
+
#: app/features/mec/meta_boxes/display_options.php:1033
|
1972 |
#: app/features/mec/modules.php:70 app/features/mec/modules.php:211
|
1973 |
#: app/features/mec/modules.php:228
|
1974 |
msgid "Pro version of Modern Events Calendar"
|
2132 |
msgstr "Automatická synchronizace"
|
2133 |
|
2134 |
#: app/features/ix/sync.php:22
|
2135 |
+
#: app/features/mec/meta_boxes/display_options.php:833
|
2136 |
#, php-format
|
2137 |
msgid "%s is required to use synchronization feature."
|
2138 |
msgstr "%s je vyžadováno pro použití vlastností synchronizace."
|
2297 |
|
2298 |
#: app/features/labels.php:112 app/features/labels.php:139
|
2299 |
#: app/features/mec/meta_boxes/display_options.php:38
|
2300 |
+
#: app/features/mec/meta_boxes/display_options.php:202
|
2301 |
+
#: app/features/mec/meta_boxes/display_options.php:373
|
2302 |
+
#: app/features/mec/meta_boxes/display_options.php:551
|
2303 |
+
#: app/features/mec/meta_boxes/display_options.php:601
|
2304 |
+
#: app/features/mec/meta_boxes/display_options.php:765
|
2305 |
+
#: app/features/mec/meta_boxes/display_options.php:915
|
2306 |
+
#: app/features/mec/meta_boxes/display_options.php:972
|
2307 |
+
#: app/features/mec/meta_boxes/display_options.php:1064
|
2308 |
+
#: app/features/mec/meta_boxes/display_options.php:1150
|
2309 |
msgid "Style"
|
2310 |
msgstr "Styl"
|
2311 |
|
2322 |
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:107
|
2323 |
#: app/skins/monthly_view/calendar_clean.php:107
|
2324 |
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:45
|
2325 |
+
#: app/skins/timeline/render.php:43 app/skins/timetable/render.php:33
|
2326 |
+
#: app/skins/timetable/render.php:139 app/skins/weekly_view/render.php:56
|
2327 |
+
#: app/skins/yearly_view/render.php:48
|
2328 |
msgid "Featured"
|
2329 |
msgstr "Ztvárněná"
|
2330 |
|
2331 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2332 |
+
#: app/libraries/main.php:5169 app/skins/agenda/render.php:41
|
2333 |
#: app/skins/available_spot/tpl.php:42 app/skins/carousel/render.php:45
|
2334 |
#: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:32
|
2335 |
#: app/skins/daily_view/render.php:52 app/skins/grid/render.php:50
|
2337 |
#: app/skins/monthly_view/calendar.php:111
|
2338 |
#: app/skins/monthly_view/calendar_clean.php:111
|
2339 |
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:46
|
2340 |
+
#: app/skins/timeline/render.php:47 app/skins/timetable/render.php:37
|
2341 |
+
#: app/skins/timetable/render.php:140 app/skins/weekly_view/render.php:60
|
2342 |
+
#: app/skins/yearly_view/render.php:52
|
2343 |
msgid "Canceled"
|
2344 |
msgstr "Zrušená"
|
2345 |
|
2365 |
msgstr "Událost %s"
|
2366 |
|
2367 |
#: app/features/locations.php:59 app/features/mec.php:338
|
2368 |
+
#: app/features/mec/dashboard.php:269 app/features/mec/meta_boxes/filter.php:96
|
2369 |
+
#: app/libraries/main.php:4922
|
2370 |
msgid "Locations"
|
2371 |
msgstr "Umístění"
|
2372 |
|
2476 |
msgid "Don't show map in single event page"
|
2477 |
msgstr "Nezobrazovat mapu na jednostránkové události"
|
2478 |
|
2479 |
+
#: app/features/locations.php:356 app/libraries/main.php:4956
|
2480 |
msgid "Other Locations"
|
2481 |
msgstr "Další místa"
|
2482 |
|
2527 |
msgid "Support"
|
2528 |
msgstr "Podpora"
|
2529 |
|
2530 |
+
#: app/features/mec.php:339 app/features/mec/dashboard.php:276
|
2531 |
#: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
|
2532 |
+
#: app/libraries/main.php:4924
|
2533 |
msgid "Organizers"
|
2534 |
msgstr "Organizátoři"
|
2535 |
|
2536 |
#: app/features/mec.php:347 app/features/mec.php:367
|
2537 |
+
#: app/features/mec/dashboard.php:262
|
2538 |
msgid "Shortcodes"
|
2539 |
msgstr "Zkrácené kódy"
|
2540 |
|
2624 |
#: app/features/mec/booking.php:70 app/features/mec/messages.php:13
|
2625 |
#: app/features/mec/modules.php:23 app/features/mec/notifications.php:12
|
2626 |
#: app/features/mec/settings.php:53 app/features/mec/single.php:15
|
2627 |
+
#: app/features/mec/styling.php:35
|
2628 |
msgid "Search..."
|
2629 |
msgstr "Vyhledávání ..."
|
2630 |
|
2677 |
|
2678 |
#: app/features/mec/booking.php:115
|
2679 |
#: app/features/mec/meta_boxes/display_options.php:121
|
2680 |
+
#: app/features/mec/meta_boxes/display_options.php:321
|
2681 |
+
#: app/features/mec/meta_boxes/display_options.php:404
|
2682 |
+
#: app/features/mec/meta_boxes/display_options.php:863
|
2683 |
+
#: app/features/mec/meta_boxes/display_options.php:1130
|
2684 |
+
#: app/features/mec/meta_boxes/display_options.php:1238
|
2685 |
+
#: app/features/mec/meta_boxes/display_options.php:1276
|
2686 |
msgid "Limit"
|
2687 |
msgstr "Limit"
|
2688 |
|
2796 |
msgstr "Automatické ověření pro placené rezervace"
|
2797 |
|
2798 |
#: app/features/mec/booking.php:235 app/features/mec/notifications.php:155
|
2799 |
+
#: app/libraries/main.php:575
|
2800 |
msgid "Booking Confirmation"
|
2801 |
msgstr "Potvrzení rezervace"
|
2802 |
|
2820 |
"Po povolení a uložení nastavení byste měli stránku znovu načíst a zobrazit "
|
2821 |
"novou nabídku na řídícím panelu > Rezervace"
|
2822 |
|
2823 |
+
#: app/features/mec/booking.php:279 app/libraries/main.php:554
|
2824 |
msgid "Taxes / Fees"
|
2825 |
msgstr "Daně / poplatky"
|
2826 |
|
2832 |
msgid "Add Fee"
|
2833 |
msgstr "Přidat poplatek"
|
2834 |
|
2835 |
+
#: app/features/mec/booking.php:356 app/libraries/main.php:555
|
2836 |
msgid "Ticket Variations & Options"
|
2837 |
msgstr "Varianty a možnosti vstupenek"
|
2838 |
|
2879 |
#: app/features/mec/notifications.php:599
|
2880 |
#: app/features/mec/notifications.php:621 app/features/mec/settings.php:949
|
2881 |
#: app/features/mec/settings.php:971 app/features/mec/single.php:267
|
2882 |
+
#: app/features/mec/single.php:289 app/libraries/main.php:5168
|
2883 |
msgid "Verified"
|
2884 |
msgstr "Ověřeno"
|
2885 |
|
2960 |
"V tomto krátkém videu se dozvíte, jak vytvořit událost a umístit kalendář na "
|
2961 |
"svoje stránky. Sledujte prosím toto 2minutové video až do konce."
|
2962 |
|
2963 |
+
#: app/features/mec/dashboard.php:143 app/features/mec/dashboard.php:167
|
2964 |
msgid "MEC Activate"
|
2965 |
msgstr "MEC aktivace"
|
2966 |
|
2967 |
+
#: app/features/mec/dashboard.php:149 app/features/mec/dashboard.php:231
|
2968 |
+
msgid "Activate Addons"
|
2969 |
+
msgstr "Aktivovat doplňky"
|
2970 |
+
|
2971 |
+
#: app/features/mec/dashboard.php:157 app/features/mec/dashboard.php:240
|
2972 |
+
msgid "You cannot access this section."
|
2973 |
+
msgstr "Nemáte přístup do této části."
|
2974 |
+
|
2975 |
+
#: app/features/mec/dashboard.php:173
|
2976 |
msgid ""
|
2977 |
"In order to use all plugin features and options, please enter your purchase "
|
2978 |
"code."
|
2980 |
"Chcete-li využívat všechny funkce a možnosti doplňku, zadejte prosím "
|
2981 |
"zakoupený kód."
|
2982 |
|
2983 |
+
#: app/features/mec/dashboard.php:287 app/features/mec/settings.php:371
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2984 |
msgid "Upcoming Events"
|
2985 |
msgstr "Nadcházející události"
|
2986 |
|
2987 |
+
#: app/features/mec/dashboard.php:311
|
2988 |
msgid "Popular Gateways"
|
2989 |
msgstr "Oblíbené platební brány"
|
2990 |
|
2991 |
+
#: app/features/mec/dashboard.php:365
|
2992 |
msgid "Total Bookings"
|
2993 |
msgstr "Celkový počet rezervací"
|
2994 |
|
2995 |
+
#: app/features/mec/dashboard.php:392
|
2996 |
msgid "This Month"
|
2997 |
msgstr "Tento měsíc"
|
2998 |
|
2999 |
+
#: app/features/mec/dashboard.php:393
|
3000 |
msgid "Last Month"
|
3001 |
msgstr "Minulý měsíc"
|
3002 |
|
3003 |
+
#: app/features/mec/dashboard.php:394
|
3004 |
msgid "This Year"
|
3005 |
msgstr "Tento rok"
|
3006 |
|
3007 |
+
#: app/features/mec/dashboard.php:395
|
3008 |
msgid "Last Year"
|
3009 |
msgstr "Minulý rok"
|
3010 |
|
3011 |
+
#: app/features/mec/dashboard.php:407
|
3012 |
msgid "Bar"
|
3013 |
msgstr "Pruh"
|
3014 |
|
3015 |
+
#: app/features/mec/dashboard.php:408
|
3016 |
msgid "Line"
|
3017 |
msgstr "Čára"
|
3018 |
|
3019 |
+
#: app/features/mec/dashboard.php:410
|
3020 |
msgid "Filter"
|
3021 |
msgstr "Filtr"
|
3022 |
|
3023 |
+
#: app/features/mec/dashboard.php:426
|
3024 |
#, php-format
|
3025 |
msgid "Total Sells (%s)"
|
3026 |
msgstr "Celkový prodej %s"
|
3027 |
|
3028 |
+
#: app/features/mec/dashboard.php:447
|
3029 |
msgid "Change Log"
|
3030 |
msgstr "Změna logu"
|
3031 |
|
3058 |
msgstr "Stáhnout nastavení"
|
3059 |
|
3060 |
#: app/features/mec/messages.php:28 app/features/mec/support.php:66
|
3061 |
+
#: app/libraries/main.php:791
|
3062 |
msgid "Messages"
|
3063 |
msgstr "Zprávy"
|
3064 |
|
3079 |
msgstr "Vzhled"
|
3080 |
|
3081 |
#: app/features/mec/meta_boxes/display_options.php:40
|
3082 |
+
#: app/features/mec/meta_boxes/display_options.php:204
|
3083 |
+
#: app/features/mec/meta_boxes/display_options.php:603
|
3084 |
+
#: app/features/mec/meta_boxes/display_options.php:917
|
3085 |
#: app/features/mec/settings.php:235 app/features/mec/settings.php:259
|
3086 |
#: app/features/mec/settings.php:268 app/features/mec/settings.php:309
|
3087 |
#: app/features/mec/settings.php:333 app/features/mec/settings.php:342
|
3089 |
msgstr "Klasický"
|
3090 |
|
3091 |
#: app/features/mec/meta_boxes/display_options.php:41
|
3092 |
+
#: app/features/mec/meta_boxes/display_options.php:206
|
3093 |
#: app/features/mec/settings.php:260 app/features/mec/settings.php:270
|
3094 |
#: app/features/mec/settings.php:334 app/features/mec/settings.php:344
|
3095 |
msgid "Minimal"
|
3096 |
msgstr "Minimální"
|
3097 |
|
3098 |
#: app/features/mec/meta_boxes/display_options.php:42
|
3099 |
+
#: app/features/mec/meta_boxes/display_options.php:207
|
3100 |
+
#: app/features/mec/meta_boxes/display_options.php:553
|
3101 |
+
#: app/features/mec/meta_boxes/display_options.php:605
|
3102 |
+
#: app/features/mec/meta_boxes/display_options.php:767
|
3103 |
+
#: app/features/mec/meta_boxes/display_options.php:919
|
3104 |
#: app/features/mec/settings.php:237 app/features/mec/settings.php:250
|
3105 |
#: app/features/mec/settings.php:261 app/features/mec/settings.php:271
|
3106 |
#: app/features/mec/settings.php:311 app/features/mec/settings.php:324
|
3119 |
msgstr "Akordeon"
|
3120 |
|
3121 |
#: app/features/mec/meta_boxes/display_options.php:50
|
3122 |
+
#: app/features/mec/meta_boxes/display_options.php:216
|
3123 |
+
#: app/features/mec/meta_boxes/display_options.php:381
|
3124 |
+
#: app/features/mec/meta_boxes/display_options.php:660
|
3125 |
+
#: app/features/mec/meta_boxes/display_options.php:693
|
3126 |
+
#: app/features/mec/meta_boxes/display_options.php:840
|
3127 |
+
#: app/features/mec/meta_boxes/display_options.php:1075
|
3128 |
+
#: app/features/mec/meta_boxes/display_options.php:1162
|
3129 |
+
#: app/features/mec/meta_boxes/display_options.php:1254
|
3130 |
msgid "Today"
|
3131 |
msgstr "Dnes"
|
3132 |
|
3133 |
#: app/features/mec/meta_boxes/display_options.php:51
|
3134 |
+
#: app/features/mec/meta_boxes/display_options.php:217
|
3135 |
+
#: app/features/mec/meta_boxes/display_options.php:382
|
3136 |
+
#: app/features/mec/meta_boxes/display_options.php:661
|
3137 |
+
#: app/features/mec/meta_boxes/display_options.php:694
|
3138 |
+
#: app/features/mec/meta_boxes/display_options.php:841
|
3139 |
+
#: app/features/mec/meta_boxes/display_options.php:1076
|
3140 |
+
#: app/features/mec/meta_boxes/display_options.php:1163
|
3141 |
+
#: app/features/mec/meta_boxes/display_options.php:1255
|
3142 |
msgid "Tomorrow"
|
3143 |
msgstr "Zítra"
|
3144 |
|
3145 |
#: app/features/mec/meta_boxes/display_options.php:52
|
3146 |
+
#: app/features/mec/meta_boxes/display_options.php:218
|
3147 |
+
#: app/features/mec/meta_boxes/display_options.php:383
|
3148 |
+
#: app/features/mec/meta_boxes/display_options.php:436
|
3149 |
+
#: app/features/mec/meta_boxes/display_options.php:613
|
3150 |
+
#: app/features/mec/meta_boxes/display_options.php:662
|
3151 |
+
#: app/features/mec/meta_boxes/display_options.php:695
|
3152 |
+
#: app/features/mec/meta_boxes/display_options.php:730
|
3153 |
+
#: app/features/mec/meta_boxes/display_options.php:776
|
3154 |
+
#: app/features/mec/meta_boxes/display_options.php:842
|
3155 |
+
#: app/features/mec/meta_boxes/display_options.php:1077
|
3156 |
+
#: app/features/mec/meta_boxes/display_options.php:1164
|
3157 |
+
#: app/features/mec/meta_boxes/display_options.php:1256
|
3158 |
msgid "Start of Current Month"
|
3159 |
msgstr "Začátek aktuálního měsíce"
|
3160 |
|
3161 |
#: app/features/mec/meta_boxes/display_options.php:53
|
3162 |
+
#: app/features/mec/meta_boxes/display_options.php:219
|
3163 |
+
#: app/features/mec/meta_boxes/display_options.php:384
|
3164 |
+
#: app/features/mec/meta_boxes/display_options.php:437
|
3165 |
+
#: app/features/mec/meta_boxes/display_options.php:614
|
3166 |
+
#: app/features/mec/meta_boxes/display_options.php:663
|
3167 |
+
#: app/features/mec/meta_boxes/display_options.php:696
|
3168 |
+
#: app/features/mec/meta_boxes/display_options.php:731
|
3169 |
+
#: app/features/mec/meta_boxes/display_options.php:777
|
3170 |
+
#: app/features/mec/meta_boxes/display_options.php:843
|
3171 |
+
#: app/features/mec/meta_boxes/display_options.php:1078
|
3172 |
+
#: app/features/mec/meta_boxes/display_options.php:1165
|
3173 |
+
#: app/features/mec/meta_boxes/display_options.php:1257
|
3174 |
msgid "Start of Next Month"
|
3175 |
msgstr "Začátek dalšího měsíce"
|
3176 |
|
3177 |
#: app/features/mec/meta_boxes/display_options.php:54
|
3178 |
+
#: app/features/mec/meta_boxes/display_options.php:220
|
3179 |
+
#: app/features/mec/meta_boxes/display_options.php:385
|
3180 |
+
#: app/features/mec/meta_boxes/display_options.php:438
|
3181 |
+
#: app/features/mec/meta_boxes/display_options.php:561
|
3182 |
+
#: app/features/mec/meta_boxes/display_options.php:615
|
3183 |
+
#: app/features/mec/meta_boxes/display_options.php:664
|
3184 |
+
#: app/features/mec/meta_boxes/display_options.php:697
|
3185 |
+
#: app/features/mec/meta_boxes/display_options.php:732
|
3186 |
+
#: app/features/mec/meta_boxes/display_options.php:778
|
3187 |
+
#: app/features/mec/meta_boxes/display_options.php:844
|
3188 |
+
#: app/features/mec/meta_boxes/display_options.php:1079
|
3189 |
+
#: app/features/mec/meta_boxes/display_options.php:1166
|
3190 |
+
#: app/features/mec/meta_boxes/display_options.php:1258
|
3191 |
msgid "On a certain date"
|
3192 |
msgstr "K určitému datu"
|
3193 |
|
3194 |
#: app/features/mec/meta_boxes/display_options.php:57
|
3195 |
+
#: app/features/mec/meta_boxes/display_options.php:223
|
3196 |
+
#: app/features/mec/meta_boxes/display_options.php:388
|
3197 |
+
#: app/features/mec/meta_boxes/display_options.php:441
|
3198 |
+
#: app/features/mec/meta_boxes/display_options.php:564
|
3199 |
+
#: app/features/mec/meta_boxes/display_options.php:618
|
3200 |
+
#: app/features/mec/meta_boxes/display_options.php:667
|
3201 |
+
#: app/features/mec/meta_boxes/display_options.php:701
|
3202 |
+
#: app/features/mec/meta_boxes/display_options.php:735
|
3203 |
+
#: app/features/mec/meta_boxes/display_options.php:781
|
3204 |
+
#: app/features/mec/meta_boxes/display_options.php:847
|
3205 |
+
#: app/features/mec/meta_boxes/display_options.php:1082
|
3206 |
+
#: app/features/mec/meta_boxes/display_options.php:1169
|
3207 |
+
#: app/features/mec/meta_boxes/display_options.php:1261
|
3208 |
#, php-format
|
3209 |
msgid "eg. %s"
|
3210 |
msgstr "např. %s"
|
3219 |
#: app/features/mec/meta_boxes/display_options.php:102
|
3220 |
#: app/features/mec/meta_boxes/display_options.php:109
|
3221 |
#: app/features/mec/meta_boxes/display_options.php:114
|
3222 |
+
#: app/features/mec/meta_boxes/display_options.php:227
|
3223 |
+
#: app/features/mec/meta_boxes/display_options.php:231
|
3224 |
+
#: app/features/mec/meta_boxes/display_options.php:238
|
3225 |
+
#: app/features/mec/meta_boxes/display_options.php:243
|
3226 |
+
#: app/features/mec/meta_boxes/display_options.php:250
|
|
|
|
|
3227 |
#: app/features/mec/meta_boxes/display_options.php:255
|
3228 |
#: app/features/mec/meta_boxes/display_options.php:262
|
3229 |
+
#: app/features/mec/meta_boxes/display_options.php:268
|
3230 |
+
#: app/features/mec/meta_boxes/display_options.php:275
|
3231 |
#: app/features/mec/meta_boxes/display_options.php:279
|
3232 |
#: app/features/mec/meta_boxes/display_options.php:286
|
3233 |
+
#: app/features/mec/meta_boxes/display_options.php:292
|
3234 |
+
#: app/features/mec/meta_boxes/display_options.php:299
|
3235 |
+
#: app/features/mec/meta_boxes/display_options.php:303
|
3236 |
+
#: app/features/mec/meta_boxes/display_options.php:392
|
3237 |
+
#: app/features/mec/meta_boxes/display_options.php:397
|
3238 |
+
#: app/features/mec/meta_boxes/display_options.php:568
|
3239 |
+
#: app/features/mec/meta_boxes/display_options.php:573
|
3240 |
+
#: app/features/mec/meta_boxes/display_options.php:851
|
3241 |
+
#: app/features/mec/meta_boxes/display_options.php:856
|
3242 |
+
#: app/features/mec/meta_boxes/display_options.php:923
|
3243 |
+
#: app/features/mec/meta_boxes/display_options.php:929
|
3244 |
+
#: app/features/mec/meta_boxes/display_options.php:936
|
3245 |
+
#: app/features/mec/meta_boxes/display_options.php:941
|
3246 |
+
#: app/features/mec/meta_boxes/display_options.php:948
|
3247 |
+
#: app/features/mec/meta_boxes/display_options.php:952
|
3248 |
+
#: app/features/mec/meta_boxes/display_options.php:980
|
3249 |
+
#: app/features/mec/meta_boxes/display_options.php:984
|
3250 |
+
#: app/features/mec/meta_boxes/display_options.php:991
|
3251 |
+
#: app/features/mec/meta_boxes/display_options.php:995
|
3252 |
+
#: app/features/mec/meta_boxes/display_options.php:1002
|
3253 |
+
#: app/features/mec/meta_boxes/display_options.php:1008
|
3254 |
+
#: app/features/mec/meta_boxes/display_options.php:1038
|
3255 |
+
#: app/features/mec/meta_boxes/display_options.php:1043
|
3256 |
+
#: app/features/mec/meta_boxes/display_options.php:1086
|
3257 |
+
#: app/features/mec/meta_boxes/display_options.php:1092
|
3258 |
+
#: app/features/mec/meta_boxes/display_options.php:1099
|
3259 |
+
#: app/features/mec/meta_boxes/display_options.php:1103
|
3260 |
+
#: app/features/mec/meta_boxes/display_options.php:1110
|
3261 |
+
#: app/features/mec/meta_boxes/display_options.php:1114
|
|
|
|
|
3262 |
#: app/features/mec/meta_boxes/display_options.php:1173
|
3263 |
#: app/features/mec/meta_boxes/display_options.php:1179
|
3264 |
#: app/features/mec/meta_boxes/display_options.php:1186
|
3265 |
#: app/features/mec/meta_boxes/display_options.php:1192
|
3266 |
#: app/features/mec/meta_boxes/display_options.php:1199
|
3267 |
#: app/features/mec/meta_boxes/display_options.php:1205
|
3268 |
+
#: app/features/mec/meta_boxes/display_options.php:1212
|
3269 |
+
#: app/features/mec/meta_boxes/display_options.php:1218
|
3270 |
+
#: app/features/mec/meta_boxes/display_options.php:1225
|
3271 |
+
#: app/features/mec/meta_boxes/display_options.php:1231
|
3272 |
+
#: app/features/mec/meta_boxes/display_options.php:1265
|
3273 |
+
#: app/features/mec/meta_boxes/display_options.php:1269
|
3274 |
msgid "Date Formats"
|
3275 |
msgstr "Formát data"
|
3276 |
|
3277 |
#: app/features/mec/meta_boxes/display_options.php:66
|
3278 |
+
#: app/features/mec/meta_boxes/display_options.php:280
|
3279 |
msgid "Default value is \"M d Y\""
|
3280 |
msgstr "Výchozí hodnota je \"M d Y\""
|
3281 |
|
3284 |
msgstr "Výchozí hodnoty jsou d, M a l"
|
3285 |
|
3286 |
#: app/features/mec/meta_boxes/display_options.php:92
|
3287 |
+
#: app/features/mec/meta_boxes/display_options.php:269
|
3288 |
+
#: app/features/mec/meta_boxes/display_options.php:293
|
|
|
|
|
3289 |
#: app/features/mec/meta_boxes/display_options.php:1180
|
3290 |
#: app/features/mec/meta_boxes/display_options.php:1193
|
3291 |
#: app/features/mec/meta_boxes/display_options.php:1206
|
3292 |
+
#: app/features/mec/meta_boxes/display_options.php:1219
|
3293 |
+
#: app/features/mec/meta_boxes/display_options.php:1232
|
3294 |
msgid "Default values are d, F and l"
|
3295 |
msgstr "Výchozí hodnoty jsou d, F a I"
|
3296 |
|
3304 |
msgstr "TVýchozí hodnoty jsou d a F"
|
3305 |
|
3306 |
#: app/features/mec/meta_boxes/display_options.php:122
|
3307 |
+
#: app/features/mec/meta_boxes/display_options.php:322
|
3308 |
+
#: app/features/mec/meta_boxes/display_options.php:405
|
3309 |
+
#: app/features/mec/meta_boxes/display_options.php:581
|
3310 |
+
#: app/features/mec/meta_boxes/display_options.php:623
|
3311 |
+
#: app/features/mec/meta_boxes/display_options.php:706
|
3312 |
+
#: app/features/mec/meta_boxes/display_options.php:740
|
3313 |
+
#: app/features/mec/meta_boxes/display_options.php:786
|
3314 |
+
#: app/features/mec/meta_boxes/display_options.php:1131
|
3315 |
+
#: app/features/mec/meta_boxes/display_options.php:1239
|
3316 |
+
#: app/features/mec/meta_boxes/display_options.php:1277
|
3317 |
msgid "eg. 6"
|
3318 |
msgstr "např. 6"
|
3319 |
|
3324 |
msgstr "Skrýt čas události"
|
3325 |
|
3326 |
#: app/features/mec/meta_boxes/display_options.php:138
|
3327 |
+
#: app/features/mec/meta_boxes/display_options.php:326
|
3328 |
+
#: app/features/mec/meta_boxes/display_options.php:409
|
3329 |
+
#: app/features/mec/meta_boxes/display_options.php:900
|
3330 |
+
#: app/features/mec/meta_boxes/display_options.php:1281
|
3331 |
msgid "Load More Button"
|
3332 |
msgstr "Načíst tlačítko Další"
|
3333 |
|
3334 |
#: app/features/mec/meta_boxes/display_options.php:148
|
3335 |
+
#: app/features/mec/meta_boxes/display_options.php:419
|
3336 |
+
#: app/features/mec/meta_boxes/display_options.php:1291
|
3337 |
msgid "Show Month Divider"
|
3338 |
msgstr "Zobrazit oddělovník měsíce"
|
3339 |
|
3340 |
#: app/features/mec/meta_boxes/display_options.php:158
|
3341 |
+
#: app/features/mec/meta_boxes/display_options.php:336
|
3342 |
msgid "Show Map on top"
|
3343 |
msgstr "Zobrazit mapu nahoře"
|
3344 |
|
3345 |
+
#: app/features/mec/meta_boxes/display_options.php:173
|
3346 |
+
#: app/features/mec/meta_boxes/display_options.php:351
|
3347 |
+
#: app/features/mec/meta_boxes/display_options.php:676
|
3348 |
+
msgid "Geolocation"
|
3349 |
+
msgstr "Geolokace"
|
3350 |
+
|
3351 |
+
#: app/features/mec/meta_boxes/display_options.php:188
|
3352 |
msgid "Toggle for Month Divider"
|
3353 |
msgstr "Přepínač pro oddělovník měsíce"
|
3354 |
|
3355 |
+
#: app/features/mec/meta_boxes/display_options.php:205
|
3356 |
+
#: app/features/mec/meta_boxes/display_options.php:375
|
3357 |
+
#: app/features/mec/meta_boxes/display_options.php:457
|
3358 |
+
#: app/features/mec/meta_boxes/display_options.php:604
|
3359 |
+
#: app/features/mec/meta_boxes/display_options.php:768
|
3360 |
+
#: app/features/mec/meta_boxes/display_options.php:918
|
3361 |
#: app/features/mec/settings.php:236 app/features/mec/settings.php:251
|
3362 |
#: app/features/mec/settings.php:269 app/features/mec/settings.php:310
|
3363 |
#: app/features/mec/settings.php:325 app/features/mec/settings.php:343
|
3364 |
msgid "Clean"
|
3365 |
msgstr "Čistý"
|
3366 |
|
3367 |
+
#: app/features/mec/meta_boxes/display_options.php:208
|
3368 |
+
#: app/features/mec/meta_boxes/display_options.php:459
|
3369 |
+
#: app/features/mec/meta_boxes/display_options.php:607
|
3370 |
#: app/features/mec/settings.php:239 app/features/mec/settings.php:272
|
3371 |
#: app/features/mec/settings.php:313 app/features/mec/settings.php:346
|
3372 |
msgid "Simple"
|
3373 |
msgstr "Jednoduchý"
|
3374 |
|
3375 |
+
#: app/features/mec/meta_boxes/display_options.php:209
|
3376 |
msgid "Colorful"
|
3377 |
msgstr "Plněbarevný"
|
3378 |
|
3379 |
+
#: app/features/mec/meta_boxes/display_options.php:210
|
3380 |
+
#: app/features/mec/meta_boxes/display_options.php:458
|
3381 |
+
#: app/features/mec/meta_boxes/display_options.php:606
|
3382 |
#: app/features/mec/settings.php:238 app/features/mec/settings.php:274
|
3383 |
#: app/features/mec/settings.php:312 app/features/mec/settings.php:348
|
3384 |
msgid "Novel"
|
3385 |
msgstr "Novela"
|
3386 |
|
3387 |
+
#: app/features/mec/meta_boxes/display_options.php:232
|
3388 |
+
#: app/features/mec/meta_boxes/display_options.php:1270
|
3389 |
msgid "Default value is \"d F Y"
|
3390 |
msgstr "Výchozí hodnota je \"d F Y"
|
3391 |
|
3392 |
+
#: app/features/mec/meta_boxes/display_options.php:244
|
3393 |
msgid "Default values are d and F"
|
3394 |
msgstr "Výchozí hodnoty jsou d a F"
|
3395 |
|
3396 |
+
#: app/features/mec/meta_boxes/display_options.php:256
|
3397 |
msgid "Default values are d and M"
|
3398 |
msgstr "Výchozí hodnoty jsou d a M"
|
3399 |
|
3400 |
+
#: app/features/mec/meta_boxes/display_options.php:304
|
3401 |
msgid "Default value is \"d F Y\""
|
3402 |
msgstr "Výchozí hodnota je \"d F Y\""
|
3403 |
|
3404 |
+
#: app/features/mec/meta_boxes/display_options.php:310
|
3405 |
+
#: app/features/mec/meta_boxes/display_options.php:1121
|
3406 |
msgid "Count in row"
|
3407 |
msgstr "Počet v řadě"
|
3408 |
|
3409 |
+
#: app/features/mec/meta_boxes/display_options.php:368
|
3410 |
+
#: app/features/mec/meta_boxes/display_options.php:546
|
3411 |
+
#: app/features/mec/meta_boxes/display_options.php:653
|
3412 |
+
#: app/features/mec/meta_boxes/display_options.php:760
|
3413 |
+
#: app/features/mec/meta_boxes/display_options.php:1033
|
3414 |
#, php-format
|
3415 |
msgid "%s is required to use this skin."
|
3416 |
msgstr "%s je nutné použít tento vzhled."
|
3417 |
|
3418 |
+
#: app/features/mec/meta_boxes/display_options.php:398
|
3419 |
+
#: app/features/mec/meta_boxes/display_options.php:574
|
3420 |
msgid "Default values are l and F j"
|
3421 |
msgstr "Výchozí hodnoty jsou I a F j"
|
3422 |
|
3423 |
+
#: app/features/mec/meta_boxes/display_options.php:445
|
3424 |
msgid "Default View"
|
3425 |
msgstr "Výchozí zobrazení"
|
3426 |
|
3427 |
+
#: app/features/mec/meta_boxes/display_options.php:447
|
3428 |
+
#: app/features/mec/meta_boxes/display_options.php:468
|
3429 |
+
#: app/libraries/main.php:330 app/libraries/main.php:1576
|
3430 |
+
#: app/libraries/main.php:1601
|
3431 |
msgid "List View"
|
3432 |
msgstr "Zobrazení seznamu"
|
3433 |
|
3434 |
+
#: app/features/mec/meta_boxes/display_options.php:448
|
3435 |
+
#: app/features/mec/meta_boxes/display_options.php:478
|
3436 |
+
#: app/libraries/main.php:334 app/libraries/main.php:1570
|
3437 |
+
#: app/libraries/main.php:1595
|
3438 |
msgid "Yearly View"
|
3439 |
msgstr "Roční zobrazení"
|
3440 |
|
3441 |
+
#: app/features/mec/meta_boxes/display_options.php:449
|
3442 |
+
#: app/features/mec/meta_boxes/display_options.php:500
|
3443 |
msgid "Monthly/Calendar View"
|
3444 |
msgstr "Měsíční / kalendářní zobrazení"
|
3445 |
|
3446 |
+
#: app/features/mec/meta_boxes/display_options.php:450
|
3447 |
+
#: app/features/mec/meta_boxes/display_options.php:510
|
3448 |
+
#: app/libraries/main.php:337 app/libraries/main.php:1572
|
3449 |
+
#: app/libraries/main.php:1597
|
3450 |
msgid "Weekly View"
|
3451 |
msgstr "Týdenní zobrazení"
|
3452 |
|
3453 |
+
#: app/features/mec/meta_boxes/display_options.php:451
|
3454 |
+
#: app/features/mec/meta_boxes/display_options.php:520
|
3455 |
+
#: app/libraries/main.php:336 app/libraries/main.php:1573
|
3456 |
+
#: app/libraries/main.php:1598
|
3457 |
msgid "Daily View"
|
3458 |
msgstr "Denní zobrazení"
|
3459 |
|
3460 |
+
#: app/features/mec/meta_boxes/display_options.php:455
|
3461 |
msgid "Monthly Style"
|
3462 |
msgstr "Měsíční styl"
|
3463 |
|
3464 |
+
#: app/features/mec/meta_boxes/display_options.php:495
|
3465 |
#, php-format
|
3466 |
msgid "%s is required to use <b>Yearly View</b> skin."
|
3467 |
msgstr "%s je nutné použít vzhled <b>Roční zobrazení</b>."
|
3468 |
|
3469 |
+
#: app/features/mec/meta_boxes/display_options.php:528
|
3470 |
msgid "The price shows only in List View."
|
3471 |
msgstr "Cena se zobrazuje pouze v zobrazení seznamu."
|
3472 |
|
3473 |
+
#: app/features/mec/meta_boxes/display_options.php:531
|
3474 |
msgid "Display Event Price"
|
3475 |
msgstr "Zobrazit cenu události"
|
3476 |
|
3477 |
+
#: app/features/mec/meta_boxes/display_options.php:559
|
3478 |
msgid "Start of Current Year"
|
3479 |
msgstr "Začátek aktuálního roku"
|
3480 |
|
3481 |
+
#: app/features/mec/meta_boxes/display_options.php:560
|
3482 |
msgid "Start of Next Year"
|
3483 |
msgstr "Začátek příštího roku"
|
3484 |
|
3485 |
+
#: app/features/mec/meta_boxes/display_options.php:580
|
3486 |
+
#: app/features/mec/meta_boxes/display_options.php:622
|
3487 |
+
#: app/features/mec/meta_boxes/display_options.php:705
|
3488 |
+
#: app/features/mec/meta_boxes/display_options.php:739
|
3489 |
+
#: app/features/mec/meta_boxes/display_options.php:785
|
3490 |
msgid "Events per day"
|
3491 |
msgstr "Události za den"
|
3492 |
|
3493 |
+
#: app/features/mec/meta_boxes/display_options.php:585
|
3494 |
+
#: app/features/mec/meta_boxes/display_options.php:627
|
3495 |
+
#: app/features/mec/meta_boxes/display_options.php:710
|
3496 |
+
#: app/features/mec/meta_boxes/display_options.php:744
|
3497 |
+
#: app/features/mec/meta_boxes/display_options.php:814
|
3498 |
msgid "Next/Previous Buttons"
|
3499 |
msgstr "Tlačítka Další / Předchozí"
|
3500 |
|
3501 |
+
#: app/features/mec/meta_boxes/display_options.php:593
|
3502 |
msgid "For showing next/previous year navigation."
|
3503 |
msgstr "Pro zobrazení navigace další / předchozí."
|
3504 |
|
3505 |
+
#: app/features/mec/meta_boxes/display_options.php:637
|
3506 |
msgid "Uppercase Text"
|
3507 |
msgstr "Text velkými písmeny"
|
3508 |
|
3509 |
+
#: app/features/mec/meta_boxes/display_options.php:645
|
3510 |
+
#: app/features/mec/meta_boxes/display_options.php:718
|
3511 |
+
#: app/features/mec/meta_boxes/display_options.php:752
|
3512 |
+
#: app/features/mec/meta_boxes/display_options.php:822
|
3513 |
msgid "For showing next/previous month navigation."
|
3514 |
msgstr "Pro zobrazení navigace další / předchozí měsíc."
|
3515 |
|
3516 |
+
#: app/features/mec/meta_boxes/display_options.php:671
|
3517 |
msgid "Maximum events"
|
3518 |
msgstr "Maximum událostí"
|
3519 |
|
3520 |
+
#: app/features/mec/meta_boxes/display_options.php:672
|
3521 |
msgid "eg. 200"
|
3522 |
msgstr "např. 200"
|
3523 |
|
3524 |
+
#: app/features/mec/meta_boxes/display_options.php:684
|
|
|
|
|
|
|
|
|
3525 |
msgid "The geolocation feature works only in secure (https) websites."
|
3526 |
msgstr "Funkce geolokace funguje pouze na zabezpečených (https) webech."
|
3527 |
|
3528 |
+
#: app/features/mec/meta_boxes/display_options.php:728
|
3529 |
+
#: app/features/mec/meta_boxes/display_options.php:774
|
3530 |
msgid "Current Week"
|
3531 |
msgstr "Aktuální týden"
|
3532 |
|
3533 |
+
#: app/features/mec/meta_boxes/display_options.php:729
|
3534 |
+
#: app/features/mec/meta_boxes/display_options.php:775
|
3535 |
msgid "Next Week"
|
3536 |
msgstr "Další týden"
|
3537 |
|
3538 |
+
#: app/features/mec/meta_boxes/display_options.php:790
|
3539 |
msgid "Number of Days"
|
3540 |
msgstr "Počet dnů"
|
3541 |
|
3542 |
+
#: app/features/mec/meta_boxes/display_options.php:798
|
3543 |
msgid "Week Start"
|
3544 |
msgstr "Začátek týdne"
|
3545 |
|
3546 |
+
#: app/features/mec/meta_boxes/display_options.php:800
|
3547 |
msgid "Inherite from WordPress options"
|
3548 |
msgstr "Zdědit z možností WordPressu"
|
3549 |
|
3550 |
+
#: app/features/mec/meta_boxes/display_options.php:857
|
3551 |
+
#: app/features/mec/meta_boxes/display_options.php:1044
|
3552 |
msgid "Default values are j and F"
|
3553 |
msgstr "Výchozí hodnoty jsou j a F"
|
3554 |
|
3555 |
+
#: app/features/mec/meta_boxes/display_options.php:864
|
3556 |
msgid "eg. 24"
|
3557 |
msgstr "např. 24"
|
3558 |
|
3559 |
+
#: app/features/mec/meta_boxes/display_options.php:867
|
3560 |
msgid "Filter By"
|
3561 |
msgstr "Filtrovat podle"
|
3562 |
|
3563 |
+
#: app/features/mec/meta_boxes/display_options.php:869
|
3564 |
msgid "None"
|
3565 |
msgstr "Žádný"
|
3566 |
|
3567 |
+
#: app/features/mec/meta_boxes/display_options.php:878
|
3568 |
msgid "Fit to row"
|
3569 |
msgstr "Přizpůsobit řádku"
|
3570 |
|
3571 |
+
#: app/features/mec/meta_boxes/display_options.php:879
|
3572 |
msgid ""
|
3573 |
"Items are arranged into rows. Rows progress vertically. Similar to what you "
|
3574 |
"would expect from a layout that uses CSS floats."
|
3576 |
"Položky jsou uspořádány do řádků. Řádky postupují svisle. Podobně, co byste "
|
3577 |
"očekávali od rozložení používajícího plovoucí CSS."
|
3578 |
|
3579 |
+
#: app/features/mec/meta_boxes/display_options.php:889
|
3580 |
msgid "Convert Masonry to Grid"
|
3581 |
msgstr "Převést zdivo na mřížku"
|
3582 |
|
3583 |
+
#: app/features/mec/meta_boxes/display_options.php:890
|
3584 |
msgid "For using this option, your events should come with image"
|
3585 |
msgstr "Pro použití této možnosti by vaše události měly přijít s obrázkem"
|
3586 |
|
3587 |
+
#: app/features/mec/meta_boxes/display_options.php:930
|
3588 |
msgid "Default values are d, M and Y"
|
3589 |
msgstr "Výchozí hodnoty jsou d, M a Y"
|
3590 |
|
3591 |
+
#: app/features/mec/meta_boxes/display_options.php:942
|
3592 |
msgid "Default values are \"F d\" and l"
|
3593 |
msgstr "Výchozí hodnota je \"F d\" a I"
|
3594 |
|
3595 |
+
#: app/features/mec/meta_boxes/display_options.php:953
|
3596 |
msgid "Default value is \"l, F d Y\""
|
3597 |
msgstr "Výchozí hodnota je \"I, F d Y\""
|
3598 |
|
3599 |
+
#: app/features/mec/meta_boxes/display_options.php:974
|
3600 |
msgid "Style 1"
|
3601 |
msgstr "Styl 1"
|
3602 |
|
3603 |
+
#: app/features/mec/meta_boxes/display_options.php:975
|
3604 |
msgid "Style 2"
|
3605 |
msgstr "Styl 2"
|
3606 |
|
3607 |
+
#: app/features/mec/meta_boxes/display_options.php:976
|
3608 |
msgid "Style 3"
|
3609 |
msgstr "Styl 3"
|
3610 |
|
3611 |
+
#: app/features/mec/meta_boxes/display_options.php:985
|
3612 |
+
#: app/features/mec/meta_boxes/display_options.php:996
|
3613 |
msgid "Default value is \"j F Y\""
|
3614 |
msgstr "Výchozí hodnota je \"j F Y\""
|
3615 |
|
3616 |
+
#: app/features/mec/meta_boxes/display_options.php:1009
|
3617 |
msgid "Default values are j, F and Y"
|
3618 |
msgstr "Výchozí hodnoty jsou j, F a Y"
|
3619 |
|
3620 |
+
#: app/features/mec/meta_boxes/display_options.php:1017
|
3621 |
+
#: app/features/mec/meta_boxes/display_options.php:1052
|
3622 |
msgid " -- Next Upcoming Event -- "
|
3623 |
msgstr " -- Další nadcházející událost -- "
|
3624 |
|
3625 |
+
#: app/features/mec/meta_boxes/display_options.php:1024
|
3626 |
msgid "Background Color"
|
3627 |
msgstr "Barva pozadí"
|
3628 |
|
3629 |
+
#: app/features/mec/meta_boxes/display_options.php:1066
|
3630 |
+
#: app/features/mec/meta_boxes/display_options.php:1152
|
3631 |
msgid "Type 1"
|
3632 |
msgstr "Typ 1"
|
3633 |
|
3634 |
+
#: app/features/mec/meta_boxes/display_options.php:1067
|
3635 |
+
#: app/features/mec/meta_boxes/display_options.php:1153
|
3636 |
msgid "Type 2"
|
3637 |
msgstr "Typ 2"
|
3638 |
|
3639 |
+
#: app/features/mec/meta_boxes/display_options.php:1068
|
3640 |
+
#: app/features/mec/meta_boxes/display_options.php:1154
|
3641 |
msgid "Type 3"
|
3642 |
msgstr "Typ 3"
|
3643 |
|
3644 |
+
#: app/features/mec/meta_boxes/display_options.php:1069
|
3645 |
+
#: app/features/mec/meta_boxes/display_options.php:1155
|
3646 |
msgid "Type 4"
|
3647 |
msgstr "Typ 4"
|
3648 |
|
3649 |
+
#: app/features/mec/meta_boxes/display_options.php:1093
|
3650 |
msgid "Default values are d, F and Y"
|
3651 |
msgstr "Výchozí hodnoty jsou d, F a Y"
|
3652 |
|
3653 |
+
#: app/features/mec/meta_boxes/display_options.php:1104
|
3654 |
+
#: app/features/mec/meta_boxes/display_options.php:1115
|
3655 |
msgid "Default value is \"M d, Y\""
|
3656 |
msgstr "Výchozí hodnota je \"M d, Y\""
|
3657 |
|
3658 |
+
#: app/features/mec/meta_boxes/display_options.php:1134
|
3659 |
+
#: app/features/mec/meta_boxes/display_options.php:1242
|
3660 |
msgid "Auto Play Time"
|
3661 |
msgstr "Čas automatického přehrávání"
|
3662 |
|
3663 |
+
#: app/features/mec/meta_boxes/display_options.php:1135
|
3664 |
+
#: app/features/mec/meta_boxes/display_options.php:1243
|
3665 |
msgid "eg. 3000 default is 3 second"
|
3666 |
msgstr "např. výchozí hodnota 3000 jsou 3 vteřiny"
|
3667 |
|
3668 |
+
#: app/features/mec/meta_boxes/display_options.php:1139
|
3669 |
msgid "Archive Link"
|
3670 |
msgstr "Odkaz na archiv"
|
3671 |
|
3672 |
+
#: app/features/mec/meta_boxes/display_options.php:1143
|
3673 |
msgid "Head Text"
|
3674 |
msgstr "Text hlavičky"
|
3675 |
|
3676 |
+
#: app/features/mec/meta_boxes/display_options.php:1156
|
3677 |
msgid "Type 5"
|
3678 |
msgstr "Typ 5"
|
3679 |
|
3855 |
#: app/features/mec/meta_boxes/search_form.php:596
|
3856 |
#: app/features/mec/settings.php:795 app/features/mec/single.php:217
|
3857 |
#: app/features/search.php:79 app/features/speakers.php:61
|
3858 |
+
#: app/features/speakers.php:254 app/libraries/main.php:4927
|
3859 |
+
#: app/libraries/skins.php:889
|
3860 |
msgid "Speaker"
|
3861 |
msgstr "Řečník"
|
3862 |
|
3871 |
#: app/features/mec/meta_boxes/search_form.php:542
|
3872 |
#: app/features/mec/meta_boxes/search_form.php:603
|
3873 |
#: app/features/mec/settings.php:802 app/features/mec/single.php:226
|
3874 |
+
#: app/features/search.php:83 app/libraries/skins.php:915
|
3875 |
msgid "Tag"
|
3876 |
msgstr "Štítek"
|
3877 |
|
4015 |
"Zkontrolujte to, pouze pokud jiný plugin / motiv načítá rozhraní Google Maps "
|
4016 |
"API"
|
4017 |
|
4018 |
+
#: app/features/mec/modules.php:167 app/libraries/main.php:563
|
4019 |
msgid "Export Options"
|
4020 |
msgstr "Možnosti exportu"
|
4021 |
|
4030 |
msgid "Google Calendar"
|
4031 |
msgstr "Kalendář Google"
|
4032 |
|
4033 |
+
#: app/features/mec/modules.php:194 app/libraries/main.php:564
|
4034 |
#: app/modules/local-time/details.php:42 app/widgets/single.php:99
|
4035 |
msgid "Local Time"
|
4036 |
msgstr "Místní čas"
|
4041 |
"Zobrazit čas události na základě místního času návštěvníka na stránce "
|
4042 |
"události"
|
4043 |
|
4044 |
+
#: app/features/mec/modules.php:208 app/libraries/main.php:565
|
4045 |
#: app/modules/qrcode/details.php:38 app/widgets/single.php:155
|
4046 |
msgid "QR Code"
|
4047 |
msgstr "QR kód"
|
4051 |
msgstr ""
|
4052 |
"Zobrazte QR kód události na stránce s podrobnostmi a fakturaci za rezervaci"
|
4053 |
|
4054 |
+
#: app/features/mec/modules.php:226 app/libraries/main.php:566
|
4055 |
#: app/modules/weather/details.php:37
|
4056 |
msgid "Weather"
|
4057 |
msgstr "Počasí"
|
4077 |
msgid "Show social network module"
|
4078 |
msgstr "Zobrazit modul sociální sítě"
|
4079 |
|
4080 |
+
#: app/features/mec/modules.php:288 app/libraries/main.php:568
|
4081 |
#: app/modules/next-event/details.php:82
|
4082 |
msgid "Next Event"
|
4083 |
msgstr "Další událost"
|
4389 |
msgid "Download ICS file"
|
4390 |
msgstr "Stáhnout ICS soubor"
|
4391 |
|
4392 |
+
#: app/features/mec/notifications.php:101 app/libraries/main.php:574
|
4393 |
msgid "Booking Verification"
|
4394 |
msgstr "Ověření rezervace"
|
4395 |
|
4414 |
msgid "Amount Tickets"
|
4415 |
msgstr "Počet vstupenek"
|
4416 |
|
4417 |
+
#: app/features/mec/notifications.php:210 app/libraries/main.php:576
|
4418 |
msgid "Booking Cancellation"
|
4419 |
msgstr "Zrušení rezervace"
|
4420 |
|
4441 |
msgid "Admin booking management link."
|
4442 |
msgstr "Odkaz administrátora na správu rezervace."
|
4443 |
|
4444 |
+
#: app/features/mec/notifications.php:278 app/libraries/main.php:578
|
4445 |
msgid "Admin"
|
4446 |
msgstr "Administrátor"
|
4447 |
|
4453 |
msgid "It sends to admin to notify him/her that a new booking received."
|
4454 |
msgstr "Zašle správci informaci o přijetí nové rezervace."
|
4455 |
|
4456 |
+
#: app/features/mec/notifications.php:338 app/libraries/main.php:577
|
4457 |
#: app/libraries/notifications.php:478
|
4458 |
msgid "Booking Reminder"
|
4459 |
msgstr "Připomenutí rezervace"
|
4481 |
msgid "Days"
|
4482 |
msgstr "Dny"
|
4483 |
|
4484 |
+
#: app/features/mec/notifications.php:414 app/features/mec/support-page.php:109
|
4485 |
+
#: app/libraries/main.php:579
|
4486 |
msgid "New Event"
|
4487 |
msgstr "Nová událost"
|
4488 |
|
4524 |
msgid "Admin events management link."
|
4525 |
msgstr "Odkaz administrátora na správu událostí."
|
4526 |
|
4527 |
+
#: app/features/mec/notifications.php:462 app/libraries/main.php:580
|
4528 |
msgid "User Event Publishing"
|
4529 |
msgstr "Publikování uživatelských událostí"
|
4530 |
|
4632 |
msgstr "Můžete povolit nebo zakázat skripty schématu"
|
4633 |
|
4634 |
#: app/features/mec/settings.php:157 app/features/mec/settings.php:167
|
4635 |
+
#: app/libraries/main.php:4931
|
4636 |
msgid "Weekdays"
|
4637 |
msgstr "Pracovní dny"
|
4638 |
|
4660 |
"to změnit pomocí „Začátek týdne“ na řídícím panelu WordPress > Nastavení > "
|
4661 |
"Obecné - dolní část stránky )."
|
4662 |
|
4663 |
+
#: app/features/mec/settings.php:200 app/libraries/main.php:531
|
4664 |
msgid "Archive Pages"
|
4665 |
msgstr "Archivní stránky"
|
4666 |
|
4948 |
"Poznámka k události se zobrazí ve formuláři pro zasílání z webových stránek "
|
4949 |
"(frontend) a Upravit událost v administraci stránek (backend)."
|
4950 |
|
4951 |
+
#: app/features/mec/settings.php:742 app/libraries/main.php:536
|
4952 |
msgid "User Profile"
|
4953 |
msgstr "Uživatelský profil"
|
4954 |
|
4961 |
"Vložte %s krátký kód na požadovanou stránku. Uživatelé pak mohou vidět "
|
4962 |
"historii svých rezervací."
|
4963 |
|
4964 |
+
#: app/features/mec/settings.php:749 app/libraries/main.php:537
|
4965 |
msgid "Search Bar"
|
4966 |
msgstr "Vyhledávací panel"
|
4967 |
|
5053 |
msgid "The unit is Megabyte \"MB\""
|
5054 |
msgstr "Jednotkou je Megabyte \"MB\""
|
5055 |
|
5056 |
+
#: app/features/mec/single.php:34 app/libraries/main.php:543
|
5057 |
msgid "Single Event Page"
|
5058 |
msgstr "Stránka jedné události"
|
5059 |
|
5179 |
msgstr ""
|
5180 |
"Pomocí této možnosti můžete vyloučit určité dny z dat výskytu událostí."
|
5181 |
|
5182 |
+
#: app/features/mec/single.php:171 app/libraries/main.php:546
|
5183 |
msgid "Additional Organizers"
|
5184 |
msgstr "Další organizátoři"
|
5185 |
|
5203 |
"Zobrazit další umístění na stránce Přidat / Upravit události a na stránce "
|
5204 |
"jediné události."
|
5205 |
|
5206 |
+
#: app/features/mec/single.php:191 app/libraries/main.php:548
|
5207 |
#: app/skins/single.php:163
|
5208 |
msgid "Related Events"
|
5209 |
msgstr "Související události"
|
5284 |
msgid "Paragraph Font Family"
|
5285 |
msgstr "Rodina písma odstavce"
|
5286 |
|
5287 |
+
#: app/features/mec/styling.php:196
|
5288 |
+
msgid "Disable MEC custom font (Montserrat)"
|
5289 |
+
msgstr ""
|
5290 |
+
|
5291 |
+
#: app/features/mec/styling.php:202
|
5292 |
msgid "Disable Google Fonts"
|
5293 |
msgstr "Zakázat Google písma"
|
5294 |
|
5358 |
msgid "Advice and answers from the Webnus Team"
|
5359 |
msgstr "Rady a odpovědi týmu Webnus"
|
5360 |
|
5361 |
+
#: app/features/mec/support-page.php:75
|
5362 |
msgid "Quick Setup"
|
5363 |
msgstr "Rychlé nastavení"
|
5364 |
|
5365 |
+
#: app/features/mec/support-page.php:79
|
5366 |
msgid "Download the Plugin"
|
5367 |
msgstr "Stažení doplňku"
|
5368 |
|
5369 |
+
#: app/features/mec/support-page.php:80
|
5370 |
msgid "Install and Activate the Plugin"
|
5371 |
msgstr "Instalace a aktivace doplňku"
|
5372 |
|
5373 |
+
#: app/features/mec/support-page.php:81
|
5374 |
msgid "Add a New Event"
|
5375 |
msgstr "Přidat Novou událost"
|
5376 |
|
5377 |
+
#: app/features/mec/support-page.php:84 app/features/mec/support-page.php:101
|
5378 |
+
#: app/features/mec/support-page.php:118 app/features/mec/support-page.php:135
|
5379 |
+
#: app/features/mec/support-page.php:155 app/features/mec/support-page.php:172
|
5380 |
+
#: app/features/mec/support-page.php:189 app/features/mec/support-page.php:206
|
5381 |
msgid "Watch Video"
|
5382 |
msgstr "Sledovat video"
|
5383 |
|
5384 |
+
#: app/features/mec/support-page.php:92
|
5385 |
msgid "Activate License"
|
5386 |
msgstr "Aktivovat licenci"
|
5387 |
|
5388 |
+
#: app/features/mec/support-page.php:96
|
5389 |
msgid "Login to Dashboard"
|
5390 |
msgstr "Přihlásit se do řídícímu panelu"
|
5391 |
|
5392 |
+
#: app/features/mec/support-page.php:97
|
5393 |
msgid "Get the License Key"
|
5394 |
msgstr "Získat licenční klíč"
|
5395 |
|
5396 |
+
#: app/features/mec/support-page.php:98
|
5397 |
msgid "Activate the plugin"
|
5398 |
msgstr "Aktivace doplňku"
|
5399 |
|
5400 |
+
#: app/features/mec/support-page.php:113
|
5401 |
msgid "Add New Events, Date and Time"
|
5402 |
msgstr "Přidat novou událost, datum a čas"
|
5403 |
|
5404 |
+
#: app/features/mec/support-page.php:114
|
5405 |
msgid "Tags, Categories, Organizer, Location"
|
5406 |
msgstr "Tagy, Kategorie, Organizátoři, Místa"
|
5407 |
|
5408 |
+
#: app/features/mec/support-page.php:115
|
5409 |
msgid "Hourly Schedule, Set Up Shortcodes"
|
5410 |
msgstr "Hodinový rozvrh, nastavení zkrácených kódů"
|
5411 |
|
5412 |
+
#: app/features/mec/support-page.php:126 app/features/mec/support-page.php:130
|
5413 |
msgid "Enable Booking"
|
5414 |
msgstr "Povolit rezervace"
|
5415 |
|
5416 |
+
#: app/features/mec/support-page.php:131 app/features/mec/support-page.php:152
|
5417 |
msgid "Customize the Booking Form"
|
5418 |
msgstr "Přizpůsobit rezervační formulář"
|
5419 |
|
5420 |
+
#: app/features/mec/support-page.php:132
|
5421 |
msgid "Set Up a Payment Gateway"
|
5422 |
msgstr "Nastavení platební brány"
|
5423 |
|
5424 |
+
#: app/features/mec/support-page.php:146
|
5425 |
msgid "Add booking form to event"
|
5426 |
msgstr "Přidat rezervační formulář k události"
|
5427 |
|
5428 |
+
#: app/features/mec/support-page.php:150
|
5429 |
msgid "Enable Booking from Settings"
|
5430 |
msgstr "Povolit rezervaci z nastavení"
|
5431 |
|
5432 |
+
#: app/features/mec/support-page.php:151
|
5433 |
msgid "Set Up a Booking Form"
|
5434 |
msgstr "Nastavit rezervační formulář"
|
5435 |
|
5436 |
+
#: app/features/mec/support-page.php:163
|
5437 |
msgid "Create Shortcodes"
|
5438 |
msgstr "Vytvořit zkrácené kódy"
|
5439 |
|
5440 |
+
#: app/features/mec/support-page.php:167
|
5441 |
msgid "Create a New Shortcode"
|
5442 |
msgstr "Vytvořit nové zkrácený kód"
|
5443 |
|
5444 |
+
#: app/features/mec/support-page.php:168
|
5445 |
msgid "Customize Shortcodes"
|
5446 |
msgstr "Přizpůsobit zkrácené kódy"
|
5447 |
|
5448 |
+
#: app/features/mec/support-page.php:169
|
5449 |
msgid "Use Filters in Shortcodes"
|
5450 |
msgstr "Použít filtry ve zkrácených kódech"
|
5451 |
|
5452 |
+
#: app/features/mec/support-page.php:180
|
5453 |
msgid "WooCommerce gateways"
|
5454 |
msgstr "Brána WooCommerce"
|
5455 |
|
5456 |
+
#: app/features/mec/support-page.php:184
|
5457 |
msgid "Install and Activate WooCommerce"
|
5458 |
msgstr "Instalace a aktivace WooCommerce"
|
5459 |
|
5460 |
+
#: app/features/mec/support-page.php:185
|
5461 |
msgid "Integrate with MEC"
|
5462 |
msgstr "Integrovat s MEC"
|
5463 |
|
5464 |
+
#: app/features/mec/support-page.php:186
|
5465 |
msgid "Set Up WooCommerce Gateway"
|
5466 |
msgstr "Nastavit bránu WooCommerce"
|
5467 |
|
5468 |
+
#: app/features/mec/support-page.php:201
|
5469 |
msgid "An Overview of the Settings"
|
5470 |
msgstr "Přehled nastavení"
|
5471 |
|
5472 |
+
#: app/features/mec/support-page.php:202
|
5473 |
msgid "Set Up Different Settings"
|
5474 |
msgstr "Nastavit různá nastavení"
|
5475 |
|
5476 |
+
#: app/features/mec/support-page.php:203
|
5477 |
msgid "Use Different Options"
|
5478 |
msgstr "Použít různé možnosti"
|
5479 |
|
5480 |
+
#: app/features/mec/support-page.php:217
|
5481 |
msgid "FAQ"
|
5482 |
msgstr "FAQ"
|
5483 |
|
5484 |
+
#: app/features/mec/support-page.php:221
|
5485 |
msgid "How should I update plugin?"
|
5486 |
msgstr "Jak mám aktualizovat doplněk?"
|
5487 |
|
5488 |
+
#: app/features/mec/support-page.php:223
|
5489 |
#, php-format
|
5490 |
msgid ""
|
5491 |
"You have two options:<br>\n"
|
5504 |
"vyžaduje přidání nákupního kódu v odpovídající sekci pluginu. Pro další "
|
5505 |
"informace, prosím <a href=\"%s\" target=\"_blank\">klikněte sem</a>."
|
5506 |
|
5507 |
+
#: app/features/mec/support-page.php:228
|
5508 |
msgid "Do I lose all my data or customization if I update MEC?"
|
5509 |
msgstr "Ztratím všechna moje data nebo přizpůsobení, pokud aktualizuji MEC?"
|
5510 |
|
5511 |
+
#: app/features/mec/support-page.php:229
|
5512 |
msgid ""
|
5513 |
"If you’ve added a file to the main folder of MEC, this file will be removed "
|
5514 |
"after the update. Therefore, please do get a full back up before proceeding "
|
5518 |
"aktualizaci odstraněn. Před pokračováním v procesu aktualizace proto prosím "
|
5519 |
"proveďte úplné zálohování."
|
5520 |
|
5521 |
+
#: app/features/mec/support-page.php:232
|
5522 |
msgid "Can I customize the event pages?"
|
5523 |
msgstr "Mohu přizpůsobit stránky událostí?"
|
5524 |
|
5525 |
+
#: app/features/mec/support-page.php:234
|
5526 |
#, php-format
|
5527 |
msgid ""
|
5528 |
"Yes, it is possible. In order to see the related documentations, please <a "
|
5531 |
"Ano, je to možné. Chcete-li zobrazit související dokumentaci, prosím <a href="
|
5532 |
"\"%s\" target=\"_blank\">klikněte sem</a>."
|
5533 |
|
5534 |
+
#: app/features/mec/support-page.php:237
|
5535 |
msgid "Does MEC have default languages or it needs to be translated?"
|
5536 |
msgstr "Má MEC výchozí jazyky nebo je třeba jej přeložit?"
|
5537 |
|
5538 |
+
#: app/features/mec/support-page.php:239
|
5539 |
#, php-format
|
5540 |
msgid ""
|
5541 |
"Yes, for some of the languages MEC has the translation file as default. "
|
5548 |
"vyžadovat jejich aktualizace. Další informace naleznete <a href=\"%s\" "
|
5549 |
"target=\"_blank\"> kliknutím sem</a>."
|
5550 |
|
5551 |
+
#: app/features/mec/support-page.php:242
|
5552 |
msgid "Can I have more than one calendar in one website?"
|
5553 |
msgstr "Mohu mít na jednom webu více než jeden kalendář?"
|
5554 |
|
5555 |
+
#: app/features/mec/support-page.php:243
|
5556 |
msgid ""
|
5557 |
"Unfortunately, MEC does not support more than 1 calendar in a single "
|
5558 |
"website, however, it will be added in its upcoming updates."
|
5560 |
"MEC bohužel nepodporuje více než 1 kalendář na jednom webu, bude však přidán "
|
5561 |
"do nadcházejících aktualizací."
|
5562 |
|
5563 |
+
#: app/features/mec/support-page.php:245
|
5564 |
msgid "Can I import/export from/to MEC?"
|
5565 |
msgstr "Mohu importovat / exportovat z / do MEC?"
|
5566 |
|
5567 |
+
#: app/features/mec/support-page.php:246
|
5568 |
msgid ""
|
5569 |
"Yes, you can get an XML export from MEC data or import the file you've "
|
5570 |
"exported to MEC. Also, if you are using one of the following plugins (The "
|
5576 |
"calendarize it, EventOn, Events Schedule WP Plugin), pak můžete své události "
|
5577 |
"snadno přenést do MEC."
|
5578 |
|
5579 |
+
#: app/features/mec/support-page.php:254
|
5580 |
msgid "Articles"
|
5581 |
msgstr "Články"
|
5582 |
|
5583 |
+
#: app/features/mec/support-page.php:257
|
5584 |
msgid "MEC And Integrate With WooCommerce"
|
5585 |
msgstr "(MEC) a integrace s WooCommerce"
|
5586 |
|
5587 |
+
#: app/features/mec/support-page.php:258
|
5588 |
msgid "Create Events With Your Page Builder"
|
5589 |
msgstr "Vytvářejte události pomocí Tvůrce stránek"
|
5590 |
|
5591 |
+
#: app/features/mec/support-page.php:259
|
5592 |
msgid "Why can't I use HTML tags?"
|
5593 |
msgstr "Proč nemohu používat značky HTML?"
|
5594 |
|
5595 |
+
#: app/features/mec/support-page.php:260
|
5596 |
msgid "Setup Date Option On Shortcodes"
|
5597 |
msgstr "Možnost nastavení data na zkrácené kódy"
|
5598 |
|
5599 |
+
#: app/features/mec/support-page.php:261
|
5600 |
msgid "I want to export booking, what should I do?"
|
5601 |
msgstr "Chci exportovat rezervaci, co mám dělat?"
|
5602 |
|
5603 |
+
#: app/features/mec/support-page.php:262
|
5604 |
msgid "I Can't Export iCal"
|
5605 |
msgstr "Nemohu exportovat iCal"
|
5606 |
|
5607 |
+
#: app/features/mec/support-page.php:263
|
5608 |
msgid "Booking Module Not Working"
|
5609 |
msgstr "Rezervační modul nefunguje"
|
5610 |
|
5611 |
+
#: app/features/mec/support-page.php:264
|
5612 |
msgid "Translate MEC"
|
5613 |
msgstr "Přeložit MEC"
|
5614 |
|
5615 |
+
#: app/features/mec/support-page.php:265
|
5616 |
msgid "No Event Found!"
|
5617 |
msgstr "Nebyla nalezena žádná událost!"
|
5618 |
|
5619 |
+
#: app/features/mec/support-page.php:266
|
5620 |
msgid "MEC Theme Integration Guide"
|
5621 |
msgstr "Průvodce integrací motivů MEC"
|
5622 |
|
5623 |
+
#: app/features/mec/support-page.php:267
|
5624 |
msgid "Can I Override MEC Template ?"
|
5625 |
msgstr "Mohu přepsat šablonu MEC?"
|
5626 |
|
5627 |
+
#: app/features/mec/support-page.php:278
|
5628 |
msgid ""
|
5629 |
+
"You don’t need to register anywhere for support anymore.You can click the "
|
5630 |
+
"following button, and the chat box will open up to ask all your different "
|
5631 |
+
"questions using our various channels."
|
5632 |
msgstr ""
|
|
|
|
|
|
|
5633 |
|
5634 |
+
#: app/features/mec/support-page.php:278
|
5635 |
+
msgid ""
|
5636 |
+
"<br><small style=\"color: #8a8a8a;\">Only enter your email address and the "
|
5637 |
+
"answers will be sent over to your mail box.</small>"
|
5638 |
+
msgstr ""
|
5639 |
+
|
5640 |
+
#: app/features/mec/support-page.php:279
|
5641 |
msgid "Create a support ticket"
|
5642 |
msgstr "Vytvořte lístek podpory"
|
5643 |
|
5644 |
+
#: app/features/mec/support.php:52 app/libraries/main.php:777
|
5645 |
msgid "Styling Options"
|
5646 |
msgstr "Možnosti stylování"
|
5647 |
|
5648 |
+
#: app/features/mec/support.php:59 app/libraries/main.php:784
|
5649 |
msgid "Custom CSS"
|
5650 |
msgstr "Vlastní CSS"
|
5651 |
|
5773 |
msgid "eg. https://webnus.net"
|
5774 |
msgstr "např. https://webnus.net"
|
5775 |
|
5776 |
+
#: app/features/organizers.php:311 app/libraries/main.php:4955
|
5777 |
#: app/skins/single.php:847
|
5778 |
msgid "Other Organizers"
|
5779 |
msgstr "Další organizátoři"
|
5789 |
msgid "Please %s/%s in order to see your bookings / profile."
|
5790 |
msgstr "Prosím %s/%s za účelem zobrazení vašich rezervací / profilu."
|
5791 |
|
5792 |
+
#: app/features/profile/profile.php:18 app/libraries/main.php:1961
|
5793 |
msgid "Your booking already canceled!"
|
5794 |
msgstr "Vaše rezervace již byla zrušena!"
|
5795 |
|
5797 |
msgid "#"
|
5798 |
msgstr "#"
|
5799 |
|
5800 |
+
#: app/features/profile/profile.php:56 app/libraries/main.php:2931
|
5801 |
msgid "Status"
|
5802 |
msgstr "Stav"
|
5803 |
|
5804 |
+
#: app/features/profile/profile.php:59 app/libraries/main.php:2076
|
5805 |
msgid "Attendees"
|
5806 |
msgstr "Účastníci"
|
5807 |
|
5834 |
msgid "No bookings found!"
|
5835 |
msgstr "Nebyly nalezeny žádné rezervace!"
|
5836 |
|
5837 |
+
#: app/features/search.php:87 app/libraries/main.php:4921
|
5838 |
msgid "label"
|
5839 |
msgstr "štítek"
|
5840 |
|
5859 |
msgstr "Žádný výsledek vyhledávání."
|
5860 |
|
5861 |
#: app/features/search_bar/search_result.php:11
|
5862 |
+
#: app/libraries/notifications.php:760 app/libraries/render.php:452
|
5863 |
#: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
|
5864 |
#: app/skins/single.php:160 app/skins/single.php:738
|
5865 |
#: app/skins/single/default.php:101 app/skins/single/default.php:313
|
5929 |
msgid "Discount"
|
5930 |
msgstr "Sleva"
|
5931 |
|
5932 |
+
#: app/libraries/book.php:651 app/modules/booking/default.php:306
|
5933 |
+
#: app/modules/booking/default.php:404
|
5934 |
msgid "Download Invoice"
|
5935 |
msgstr "Stáhnout fakturu"
|
5936 |
|
6005 |
msgid "There is no excerpt because this is a protected post."
|
6006 |
msgstr "Neexistuje výňatek, protože se jedná o chráněný příspěvek."
|
6007 |
|
6008 |
+
#: app/libraries/main.php:331 app/libraries/main.php:1577
|
6009 |
+
#: app/libraries/main.php:1602
|
6010 |
msgid "Grid View"
|
6011 |
msgstr "Zobrazení mřížky"
|
6012 |
|
6013 |
+
#: app/libraries/main.php:332 app/libraries/main.php:1578
|
6014 |
+
#: app/libraries/main.php:1603
|
6015 |
msgid "Agenda View"
|
6016 |
msgstr "Zobrazení agendy"
|
6017 |
|
6018 |
+
#: app/libraries/main.php:333 app/libraries/main.php:1569
|
6019 |
+
#: app/libraries/main.php:1594
|
6020 |
msgid "Full Calendar"
|
6021 |
msgstr "Plný kalendář"
|
6022 |
|
6023 |
+
#: app/libraries/main.php:335 app/libraries/main.php:1571
|
6024 |
+
#: app/libraries/main.php:1596
|
6025 |
msgid "Calendar/Monthly View"
|
6026 |
msgstr "Kalendář / zobrazení měsíce"
|
6027 |
|
6028 |
+
#: app/libraries/main.php:338 app/libraries/main.php:1574
|
6029 |
+
#: app/libraries/main.php:1599
|
6030 |
msgid "Timetable View"
|
6031 |
msgstr "Zobrazení rozvrhu"
|
6032 |
|
6033 |
+
#: app/libraries/main.php:339 app/libraries/main.php:1575
|
6034 |
+
#: app/libraries/main.php:1600
|
6035 |
msgid "Masonry View"
|
6036 |
msgstr "Zobrazení zdi"
|
6037 |
|
6038 |
+
#: app/libraries/main.php:340 app/libraries/main.php:1579
|
6039 |
+
#: app/libraries/main.php:1604
|
6040 |
msgid "Map View"
|
6041 |
msgstr "Zobrazení mapy"
|
6042 |
|
6043 |
+
#: app/libraries/main.php:341
|
6044 |
msgid "Cover View"
|
6045 |
msgstr "Zobrazení obálky"
|
6046 |
|
6047 |
+
#: app/libraries/main.php:342
|
6048 |
msgid "Countdown View"
|
6049 |
msgstr "Zobrazení odpočítávání"
|
6050 |
|
6051 |
# místo, bod, ....
|
6052 |
+
#: app/libraries/main.php:343
|
6053 |
msgid "Available Spot"
|
6054 |
msgstr "Dostupný spot"
|
6055 |
|
6056 |
+
#: app/libraries/main.php:344
|
6057 |
msgid "Carousel View"
|
6058 |
msgstr "Zobrazení kolotoče"
|
6059 |
|
6060 |
+
#: app/libraries/main.php:345
|
6061 |
msgid "Slider View"
|
6062 |
msgstr "Zobrazení posuvníku"
|
6063 |
|
6064 |
+
#: app/libraries/main.php:346
|
6065 |
+
#, fuzzy
|
6066 |
+
#| msgid "Timetable View"
|
6067 |
+
msgid "Timeline View"
|
6068 |
+
msgstr "Zobrazení rozvrhu"
|
6069 |
+
|
6070 |
+
#: app/libraries/main.php:384 app/libraries/main.php:4933
|
6071 |
msgid "SU"
|
6072 |
msgstr "NE"
|
6073 |
|
6074 |
+
#: app/libraries/main.php:385 app/libraries/main.php:4934
|
6075 |
msgid "MO"
|
6076 |
msgstr "PO"
|
6077 |
|
6078 |
+
#: app/libraries/main.php:386 app/libraries/main.php:4935
|
6079 |
msgid "TU"
|
6080 |
msgstr "ÚT"
|
6081 |
|
6082 |
+
#: app/libraries/main.php:387 app/libraries/main.php:4936
|
6083 |
msgid "WE"
|
6084 |
msgstr "ST"
|
6085 |
|
6086 |
+
#: app/libraries/main.php:388 app/libraries/main.php:4937
|
6087 |
msgid "TH"
|
6088 |
msgstr "ČT"
|
6089 |
|
6090 |
+
#: app/libraries/main.php:389 app/libraries/main.php:4938
|
6091 |
msgid "FR"
|
6092 |
msgstr "PÁ"
|
6093 |
|
6094 |
+
#: app/libraries/main.php:390 app/libraries/main.php:4939
|
6095 |
msgid "SA"
|
6096 |
msgstr "SO"
|
6097 |
|
6098 |
+
#: app/libraries/main.php:539
|
6099 |
msgid "Upload Field"
|
6100 |
msgstr "Nahrát pole"
|
6101 |
|
6102 |
+
#: app/libraries/main.php:547
|
6103 |
msgid "Additional Locations"
|
6104 |
msgstr "Další umístění"
|
6105 |
|
6106 |
+
#: app/libraries/main.php:631
|
6107 |
msgid "Single Event"
|
6108 |
msgstr "Jedna událost"
|
6109 |
|
6110 |
+
#: app/libraries/main.php:697
|
6111 |
msgid "Modules"
|
6112 |
msgstr "Moduly"
|
6113 |
|
6114 |
+
#: app/libraries/main.php:867
|
6115 |
msgid "New Addons For MEC! Now Customize MEC in Elementor"
|
6116 |
msgstr "Nové doplňky pro MEC! Nyní přizpůsobte MEC v Elementoru"
|
6117 |
|
6118 |
+
#: app/libraries/main.php:874
|
6119 |
msgid ""
|
6120 |
"The time has come at last, and the new practical add-ons for MEC have been "
|
6121 |
"released. This is a revolution in the world of Event Calendars. We have "
|
6126 |
"revoluce ve světě kalendářů událostí. Poskytli jsme vám širokou škálu funkcí "
|
6127 |
"pouze tím, že máme 4 doplňky, viz níže:"
|
6128 |
|
6129 |
+
#: app/libraries/main.php:876
|
6130 |
msgid ""
|
6131 |
"<strong>WooCommerce Integration:</strong> You can now purchase ticket (as "
|
6132 |
"products) and Woo products at the same time."
|
6134 |
"<strong>Integrace WooCommerce:</strong> Nyní si můžete zakoupit lístek (jako "
|
6135 |
"produkty) a produkty Woo současně."
|
6136 |
|
6137 |
+
#: app/libraries/main.php:877
|
6138 |
msgid ""
|
6139 |
"<strong>Event API:</strong> display your events (shortcodes/single event) on "
|
6140 |
"other websites without MEC. Use JSON output features to make your Apps "
|
6144 |
"událost) na jiných webech bez MEC. Použijte výstupní funkce JSON, aby vaše "
|
6145 |
"aplikace byly kompatibilní s MEC."
|
6146 |
|
6147 |
+
#: app/libraries/main.php:878
|
6148 |
msgid ""
|
6149 |
"<strong>Elementor Single Builder:</strong> Edit single event page using "
|
6150 |
"Elementor. Manage the position of all elements in the Single page and in "
|
6154 |
"pomocí Elementoru. Spravujte polohu všech prvků na jedné stránce a také na "
|
6155 |
"stolních počítačích, mobilech a tabletech."
|
6156 |
|
6157 |
+
#: app/libraries/main.php:879
|
6158 |
msgid ""
|
6159 |
"<strong>Elementor Shortcode Builder:</strong> It enables you to create "
|
6160 |
"shortcodes in Elementor Live Editor."
|
6162 |
"<strong>Elementor Shortcode Builder:</strong> To vám umožní vytvářet krátké "
|
6163 |
"kódy v Elementor Live Editoru."
|
6164 |
|
6165 |
+
#: app/libraries/main.php:1428
|
6166 |
msgid "Events at this location"
|
6167 |
msgstr "Události na tomto místě"
|
6168 |
|
6169 |
+
#: app/libraries/main.php:1428
|
6170 |
msgid "Event at this location"
|
6171 |
msgstr "Událost na tomto místě"
|
6172 |
|
6173 |
+
#: app/libraries/main.php:1470
|
6174 |
msgid "Facebook"
|
6175 |
msgstr "Facebook"
|
6176 |
|
6177 |
+
#: app/libraries/main.php:1471
|
6178 |
msgid "Twitter"
|
6179 |
msgstr "Twitter"
|
6180 |
|
6181 |
+
#: app/libraries/main.php:1472 app/libraries/main.php:1522
|
6182 |
msgid "Linkedin"
|
6183 |
msgstr "Linkedin"
|
6184 |
|
6185 |
+
#: app/libraries/main.php:1473 app/libraries/main.php:1558
|
6186 |
msgid "VK"
|
6187 |
msgstr "VK"
|
6188 |
|
6189 |
+
#: app/libraries/main.php:1492
|
6190 |
msgid "Share on Facebook"
|
6191 |
msgstr "Sdílet na Facebooku"
|
6192 |
|
6193 |
+
#: app/libraries/main.php:1507
|
6194 |
msgid "Tweet"
|
6195 |
msgstr "Tweet"
|
6196 |
|
6197 |
+
#: app/libraries/main.php:1580
|
6198 |
msgid "Custom Shortcode"
|
6199 |
msgstr "Uživatelské zkrácené kódy"
|
6200 |
|
6201 |
+
#: app/libraries/main.php:1941
|
6202 |
msgid "Your booking already verified!"
|
6203 |
msgstr "Vaše rezervace již byla ověřena!"
|
6204 |
|
6205 |
+
#: app/libraries/main.php:1946
|
6206 |
msgid "Your booking successfully verified."
|
6207 |
msgstr "Vaše rezervace byla úspěšně ověřena."
|
6208 |
|
6209 |
+
#: app/libraries/main.php:1947
|
6210 |
msgid "Your booking cannot verify!"
|
6211 |
msgstr "Vaši rezervaci nelze ověřit!"
|
6212 |
|
6213 |
+
#: app/libraries/main.php:1966
|
6214 |
msgid "Your booking successfully canceled."
|
6215 |
msgstr "Vaše rezervace byla úspěšně zrušena."
|
6216 |
|
6217 |
+
#: app/libraries/main.php:1967
|
6218 |
msgid "Your booking cannot be canceled."
|
6219 |
msgstr "Vaši rezervaci nelze zrušit."
|
6220 |
|
6221 |
+
#: app/libraries/main.php:1971
|
6222 |
msgid "You canceled the payment successfully."
|
6223 |
msgstr "Platbu jste úspěšně zrušili."
|
6224 |
|
6225 |
+
#: app/libraries/main.php:1975
|
6226 |
msgid "You returned from payment gateway successfully."
|
6227 |
msgstr "Úspěšně jste se vrátili z platební brány."
|
6228 |
|
6229 |
+
#: app/libraries/main.php:1991
|
6230 |
msgid "Cannot find the invoice!"
|
6231 |
msgstr "Fakturu nelze najít!"
|
6232 |
|
6233 |
+
#: app/libraries/main.php:1991
|
6234 |
msgid "Invoice is invalid."
|
6235 |
msgstr "Faktura je neplatná."
|
6236 |
|
6237 |
+
#: app/libraries/main.php:2011
|
6238 |
msgid ""
|
6239 |
"Your booking still is not confirmed. You able download it after confirmation!"
|
6240 |
msgstr ""
|
6241 |
"Vaše rezervace stále není potvrzena. Můžete si ji stáhnout po potvrzení!"
|
6242 |
|
6243 |
+
#: app/libraries/main.php:2011
|
6244 |
msgid "Booking Not Confirmed."
|
6245 |
msgstr "Rezervace nebyla potvrzena."
|
6246 |
|
6247 |
+
#: app/libraries/main.php:2017
|
6248 |
msgid "Cannot find the booking!"
|
6249 |
msgstr "Nemohu najít rezervaci!"
|
6250 |
|
6251 |
+
#: app/libraries/main.php:2017
|
6252 |
msgid "Booking is invalid."
|
6253 |
msgstr "Rezervace není platná."
|
6254 |
|
6255 |
+
#: app/libraries/main.php:2046
|
6256 |
#, php-format
|
6257 |
msgid "%s Invoice"
|
6258 |
msgstr "%s Faktura"
|
6259 |
|
6260 |
+
#: app/libraries/main.php:2120
|
6261 |
msgid "Billing"
|
6262 |
msgstr "Fakturace"
|
6263 |
|
6264 |
+
#: app/libraries/main.php:2131
|
6265 |
msgid "Total"
|
6266 |
msgstr "Celkem"
|
6267 |
|
6268 |
+
#: app/libraries/main.php:2188
|
6269 |
msgid "Request is not valid."
|
6270 |
msgstr "Požadavek není platný."
|
6271 |
|
6272 |
+
#: app/libraries/main.php:2188
|
6273 |
msgid "iCal export stopped!"
|
6274 |
msgstr "iCal export byl zastaven!"
|
6275 |
|
6276 |
+
#: app/libraries/main.php:2515 app/libraries/main.php:2545
|
6277 |
+
#: app/libraries/main.php:2574 app/libraries/main.php:2604
|
6278 |
+
#: app/libraries/main.php:2633 app/libraries/main.php:2662
|
6279 |
+
#: app/libraries/main.php:2691 app/libraries/main.php:2720
|
6280 |
+
#: app/libraries/main.php:2749 app/libraries/main.php:2773
|
6281 |
+
#: app/libraries/main.php:2817 app/libraries/main.php:2861
|
6282 |
+
#: app/libraries/main.php:2908 app/libraries/main.php:2955
|
6283 |
msgid "Sort"
|
6284 |
msgstr "Seřadit"
|
6285 |
|
6286 |
+
#: app/libraries/main.php:2521 app/libraries/main.php:2551
|
6287 |
+
#: app/libraries/main.php:2580 app/libraries/main.php:2610
|
6288 |
+
#: app/libraries/main.php:2639 app/libraries/main.php:2668
|
6289 |
+
#: app/libraries/main.php:2697 app/libraries/main.php:2726
|
6290 |
+
#: app/libraries/main.php:2779 app/libraries/main.php:2823
|
6291 |
+
#: app/libraries/main.php:2867 app/libraries/main.php:2914
|
6292 |
msgid "Required Field"
|
6293 |
msgstr "Požadovaná pole"
|
6294 |
|
6295 |
+
#: app/libraries/main.php:2527 app/libraries/main.php:2557
|
6296 |
+
#: app/libraries/main.php:2586 app/libraries/main.php:2616
|
6297 |
+
#: app/libraries/main.php:2645 app/libraries/main.php:2674
|
6298 |
+
#: app/libraries/main.php:2703 app/libraries/main.php:2732
|
6299 |
+
#: app/libraries/main.php:2785 app/libraries/main.php:2829
|
6300 |
+
#: app/libraries/main.php:2873 app/libraries/main.php:2920
|
6301 |
msgid "Insert a label for this field"
|
6302 |
msgstr "Vložte štítek pro toto pole"
|
6303 |
|
6304 |
+
#: app/libraries/main.php:2755
|
6305 |
msgid "HTML and shortcode are allowed."
|
6306 |
msgstr "HTML a zkrácené kódy jsou povoleny."
|
6307 |
|
6308 |
+
#: app/libraries/main.php:2798 app/libraries/main.php:2842
|
6309 |
+
#: app/libraries/main.php:2886
|
6310 |
msgid "Option"
|
6311 |
msgstr "Možnost"
|
6312 |
|
6313 |
+
#: app/libraries/main.php:2920
|
6314 |
#, php-format
|
6315 |
msgid "Instead of %s, the page title with a link will be show."
|
6316 |
msgstr "Místo%s se zobrazí název stránky s odkazem."
|
6317 |
|
6318 |
+
#: app/libraries/main.php:2922
|
6319 |
msgid "Agreement Page"
|
6320 |
msgstr "Stránka smlouvy"
|
6321 |
|
6322 |
+
#: app/libraries/main.php:2933
|
6323 |
msgid "Checked by default"
|
6324 |
msgstr "Ve výchozím nastavení zaškrtnuto"
|
6325 |
|
6326 |
+
#: app/libraries/main.php:2934
|
6327 |
msgid "Unchecked by default"
|
6328 |
msgstr "Ve výchozím nastavení není zaškrtnuto"
|
6329 |
|
6330 |
+
#: app/libraries/main.php:2957
|
6331 |
msgid "Insert a label for this option"
|
6332 |
msgstr "Vložte štítek pro tuto možnost"
|
6333 |
|
6334 |
+
#: app/libraries/main.php:2972
|
6335 |
msgid "Free"
|
6336 |
msgstr "Zdarma"
|
6337 |
|
6338 |
+
#: app/libraries/main.php:3578 app/libraries/main.php:5183
|
6339 |
msgid "M.E. Calender"
|
6340 |
msgstr "M.E. Kalendář"
|
6341 |
|
6342 |
+
#: app/libraries/main.php:3733
|
6343 |
#, php-format
|
6344 |
msgid "Copy of %s"
|
6345 |
msgstr "Kopie %s"
|
6346 |
|
6347 |
+
#: app/libraries/main.php:4426
|
6348 |
msgid "Booked an event."
|
6349 |
msgstr "Událost byla rezervována."
|
6350 |
|
6351 |
+
#: app/libraries/main.php:4467
|
6352 |
#, php-format
|
6353 |
msgid "%s booked %s event."
|
6354 |
msgstr "%s zarezervoval %s událost."
|
6355 |
|
6356 |
+
#: app/libraries/main.php:4916
|
6357 |
msgid "Taxonomies"
|
6358 |
msgstr "Taxonomie"
|
6359 |
|
6360 |
# Mrknout na kontext
|
6361 |
+
#: app/libraries/main.php:4918
|
6362 |
msgid "Category Plural Label"
|
6363 |
msgstr "Štítek množné kategorie"
|
6364 |
|
6365 |
# Mrknout na kontext
|
6366 |
+
#: app/libraries/main.php:4919
|
6367 |
msgid "Category Singular Label"
|
6368 |
msgstr "Štítek jednotné kategorie"
|
6369 |
|
6370 |
+
#: app/libraries/main.php:4920
|
6371 |
msgid "Label Plural Label"
|
6372 |
msgstr "Štítek množného štítku"
|
6373 |
|
6374 |
+
#: app/libraries/main.php:4921
|
6375 |
msgid "Label Singular Label"
|
6376 |
msgstr "Štítek jednotného štítku"
|
6377 |
|
6378 |
+
#: app/libraries/main.php:4922
|
6379 |
msgid "Location Plural Label"
|
6380 |
msgstr "Štítek množného umístění"
|
6381 |
|
6382 |
+
#: app/libraries/main.php:4923
|
6383 |
msgid "Location Singular Label"
|
6384 |
msgstr "Štítek jednotného umístění"
|
6385 |
|
6386 |
+
#: app/libraries/main.php:4924
|
6387 |
msgid "Organizer Plural Label"
|
6388 |
msgstr "Štítek množného organizátora"
|
6389 |
|
6390 |
+
#: app/libraries/main.php:4925
|
6391 |
msgid "Organizer Singular Label"
|
6392 |
msgstr "Štítek jednotného organizátora"
|
6393 |
|
6394 |
+
#: app/libraries/main.php:4926
|
6395 |
msgid "Speaker Plural Label"
|
6396 |
msgstr "Štítek množného řečníka"
|
6397 |
|
6398 |
+
#: app/libraries/main.php:4927
|
6399 |
msgid "Speaker Singular Label"
|
6400 |
msgstr "Štítek jednotného řečníka"
|
6401 |
|
6402 |
+
#: app/libraries/main.php:4933
|
6403 |
msgid "Sunday abbreviation"
|
6404 |
msgstr "Neděle zkratka"
|
6405 |
|
6406 |
+
#: app/libraries/main.php:4934
|
6407 |
msgid "Monday abbreviation"
|
6408 |
msgstr "Pondělí zkratka"
|
6409 |
|
6410 |
+
#: app/libraries/main.php:4935
|
6411 |
msgid "Tuesday abbreviation"
|
6412 |
msgstr "Úterý zkratka"
|
6413 |
|
6414 |
+
#: app/libraries/main.php:4936
|
6415 |
msgid "Wednesday abbreviation"
|
6416 |
msgstr "Středa zkratka"
|
6417 |
|
6418 |
+
#: app/libraries/main.php:4937
|
6419 |
msgid "Thursday abbreviation"
|
6420 |
msgstr "Čtvrtek zkratka"
|
6421 |
|
6422 |
+
#: app/libraries/main.php:4938
|
6423 |
msgid "Friday abbreviation"
|
6424 |
msgstr "Pátek zkratka"
|
6425 |
|
6426 |
+
#: app/libraries/main.php:4939
|
6427 |
msgid "Saturday abbreviation"
|
6428 |
msgstr "Sobota zkratka"
|
6429 |
|
6430 |
+
#: app/libraries/main.php:4943
|
6431 |
msgid "Others"
|
6432 |
msgstr "Další"
|
6433 |
|
6434 |
+
#: app/libraries/main.php:4945
|
6435 |
msgid "Booking Success Message"
|
6436 |
msgstr "Zpráva o úspěchu rezervace"
|
6437 |
|
6438 |
+
#: app/libraries/main.php:4945
|
6439 |
msgid ""
|
6440 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
6441 |
"needed, please check your email."
|
6443 |
"Děkujeme za vaši rezervaci. Vaše vstupenky jsou rezervovány, může být nutné "
|
6444 |
"ověřit rezervaci. Zkontrolujte prosím svůj e-mail."
|
6445 |
|
6446 |
+
#: app/libraries/main.php:4946 app/widgets/single.php:131
|
6447 |
msgid "Register Button"
|
6448 |
msgstr "Registrační tlačítko"
|
6449 |
|
6450 |
+
#: app/libraries/main.php:4946 app/skins/available_spot/tpl.php:224
|
6451 |
#: app/skins/carousel/render.php:158 app/skins/carousel/render.php:194
|
6452 |
#: app/skins/grid/render.php:118 app/skins/grid/render.php:164
|
6453 |
#: app/skins/grid/render.php:207 app/skins/grid/render.php:235
|
6464 |
msgid "REGISTER"
|
6465 |
msgstr "REGISTROVAT"
|
6466 |
|
6467 |
+
#: app/libraries/main.php:4947
|
6468 |
msgid "View Detail Button"
|
6469 |
msgstr "Tlačítko Zobrazit detail"
|
6470 |
|
6471 |
+
#: app/libraries/main.php:4947 app/skins/carousel/render.php:158
|
6472 |
#: app/skins/carousel/render.php:194 app/skins/grid/render.php:118
|
6473 |
#: app/skins/grid/render.php:164 app/skins/grid/render.php:207
|
6474 |
#: app/skins/grid/render.php:235 app/skins/list/render.php:111
|
6479 |
msgid "View Detail"
|
6480 |
msgstr "Zobrazit detail"
|
6481 |
|
6482 |
+
#: app/libraries/main.php:4948
|
6483 |
msgid "Event Detail Button"
|
6484 |
msgstr "Tlačítko Detail události"
|
6485 |
|
6486 |
+
#: app/libraries/main.php:4948 app/skins/countdown/tpl.php:244
|
6487 |
msgid "Event Detail"
|
6488 |
msgstr "Zobrazit událost"
|
6489 |
|
6490 |
+
#: app/libraries/main.php:4950
|
6491 |
msgid "More Info Link"
|
6492 |
msgstr "Odkaz na více informací"
|
6493 |
|
6494 |
+
#: app/libraries/main.php:4953
|
6495 |
msgid "Ticket (Singular)"
|
6496 |
msgstr "Vstupenka (Jednotné)"
|
6497 |
|
6498 |
+
#: app/libraries/main.php:4954
|
6499 |
msgid "Tickets (Plural)"
|
6500 |
msgstr "Vstupenky (Množné)"
|
6501 |
|
6502 |
+
#: app/libraries/main.php:5040
|
6503 |
msgid "EventON"
|
6504 |
msgstr "EventON"
|
6505 |
|
6506 |
+
#: app/libraries/main.php:5041
|
6507 |
msgid "The Events Calendar"
|
6508 |
msgstr "The Events Calendar"
|
6509 |
|
6510 |
+
#: app/libraries/main.php:5042
|
6511 |
msgid "Events Schedule WP Plugin"
|
6512 |
msgstr "Events Schedule WP Plugin"
|
6513 |
|
6514 |
+
#: app/libraries/main.php:5043
|
6515 |
msgid "Calendarize It"
|
6516 |
msgstr "Calendarize It"
|
6517 |
|
6518 |
+
#: app/libraries/main.php:5044
|
6519 |
#, fuzzy
|
6520 |
#| msgid "Event Speakers"
|
6521 |
msgid "Event Espresso"
|
6522 |
msgstr "Řečník události"
|
6523 |
|
6524 |
+
#: app/libraries/main.php:5045
|
6525 |
#, fuzzy
|
6526 |
#| msgid "Event Repeating (Recurring events)"
|
6527 |
msgid "Events Manager (Recurring)"
|
6528 |
msgstr "Opakování události (opakující se události)"
|
6529 |
|
6530 |
+
#: app/libraries/main.php:5046
|
6531 |
#, fuzzy
|
6532 |
#| msgid "Modern Events Calendar (Lite)"
|
6533 |
msgid "Events Manager (Single)"
|
6534 |
msgstr "Modern Events Calendar (Lite)"
|
6535 |
|
6536 |
+
#: app/libraries/main.php:5120 app/libraries/main.php:5140
|
6537 |
msgid "Confirmed"
|
6538 |
msgstr "Potvrzeno"
|
6539 |
|
6540 |
+
#: app/libraries/main.php:5121 app/libraries/main.php:5148
|
6541 |
msgid "Rejected"
|
6542 |
msgstr "Odmítnuto"
|
6543 |
|
6544 |
+
#: app/libraries/main.php:5122 app/libraries/main.php:5144
|
6545 |
msgid "Pending"
|
6546 |
msgstr "Nevyřízený"
|
6547 |
|
6548 |
+
#: app/libraries/main.php:5170
|
6549 |
msgid "Waiting"
|
6550 |
msgstr "Čekající"
|
6551 |
|
6552 |
+
#: app/libraries/main.php:5375 app/libraries/render.php:382
|
6553 |
msgid "Skin controller does not exist."
|
6554 |
msgstr "Ovladač vzhledu neexistuje."
|
6555 |
|
6581 |
msgid "Your event is published."
|
6582 |
msgstr "Vaše událost je zveřejněna."
|
6583 |
|
6584 |
+
#: app/libraries/notifications.php:750
|
6585 |
+
#, php-format
|
6586 |
+
msgid "%s to %s"
|
6587 |
+
msgstr ""
|
6588 |
+
|
6589 |
+
#: app/libraries/notifications.php:846 app/libraries/notifications.php:857
|
6590 |
+
#: app/libraries/notifications.php:859
|
6591 |
msgid "to"
|
6592 |
msgstr "do"
|
6593 |
|
6594 |
+
#: app/libraries/notifications.php:873 app/modules/export/details.php:45
|
6595 |
msgid "+ Add to Google Calendar"
|
6596 |
msgstr "+ Přidat do Google kalendáře"
|
6597 |
|
6598 |
+
#: app/libraries/notifications.php:874 app/modules/export/details.php:46
|
6599 |
msgid "+ iCal export"
|
6600 |
msgstr "+ iCal export"
|
6601 |
|
6602 |
+
#: app/libraries/notifications.php:937
|
6603 |
msgid "Yes"
|
6604 |
msgstr "Ano"
|
6605 |
|
6606 |
+
#: app/libraries/notifications.php:937
|
6607 |
msgid "No"
|
6608 |
msgstr "Ne"
|
6609 |
|
6610 |
+
#: app/libraries/skins.php:962
|
6611 |
msgid "Ignore month and years"
|
6612 |
msgstr "Ignorovat měsíc a roky"
|
6613 |
|
6772 |
#: app/skins/grid/tpl.php:66 app/skins/list/tpl.php:67
|
6773 |
#: app/skins/list/tpl.php:71 app/skins/masonry/tpl.php:62
|
6774 |
#: app/skins/masonry/tpl.php:66 app/skins/slider/tpl.php:44
|
6775 |
+
#: app/skins/timeline/tpl.php:56 app/skins/timeline/tpl.php:60
|
6776 |
msgid "No event found!"
|
6777 |
msgstr "Nebyla nalezena žádná událost!"
|
6778 |
|
6779 |
#: app/skins/agenda/tpl.php:75 app/skins/custom/tpl.php:71
|
6780 |
#: app/skins/grid/tpl.php:71 app/skins/list/tpl.php:76
|
6781 |
+
#: app/skins/masonry/tpl.php:71 app/skins/timeline/tpl.php:65
|
6782 |
+
#: app/skins/yearly_view/render.php:124
|
6783 |
msgid "Load More"
|
6784 |
msgstr "Načíst více"
|
6785 |
|
6808 |
msgstr "nejlepší událost"
|
6809 |
|
6810 |
#: app/skins/daily_view/render.php:104 app/skins/monthly_view/calendar.php:170
|
6811 |
+
#: app/skins/monthly_view/calendar_clean.php:180
|
6812 |
#: app/skins/weekly_view/render.php:113
|
6813 |
msgid "Sold Out"
|
6814 |
msgstr "Vyprodáno"
|
6829 |
#: app/skins/monthly_view/calendar.php:68
|
6830 |
#: app/skins/monthly_view/calendar.php:182
|
6831 |
#: app/skins/monthly_view/calendar_clean.php:68
|
6832 |
+
#: app/skins/monthly_view/calendar_clean.php:196
|
6833 |
#, php-format
|
6834 |
msgid "Events for %s"
|
6835 |
msgstr "Událost pro %s"
|
6836 |
|
6837 |
#: app/skins/monthly_view/calendar.php:184
|
6838 |
+
#: app/skins/monthly_view/calendar_clean.php:198
|
6839 |
#: app/skins/timetable/render.php:113 app/skins/weekly_view/render.php:122
|
6840 |
msgid "No Events"
|
6841 |
msgstr "Žádné události"
|
6873 |
msgid "Tags: "
|
6874 |
msgstr "Značky: "
|
6875 |
|
6876 |
+
#: app/skins/timeline/render.php:122
|
6877 |
+
#, fuzzy
|
6878 |
+
#| msgid "Title of event"
|
6879 |
+
msgid "Register for event"
|
6880 |
+
msgstr "Název události"
|
6881 |
+
|
6882 |
+
#: app/skins/timeline/render.php:122
|
6883 |
+
#, fuzzy
|
6884 |
+
#| msgid "View Detail"
|
6885 |
+
msgid "View Details"
|
6886 |
+
msgstr "Zobrazit detail"
|
6887 |
+
|
6888 |
#: app/skins/timetable/modern.php:72 app/skins/weekly_view/tpl.php:72
|
6889 |
#, php-format
|
6890 |
msgid "Week %s"
|
6970 |
msgid "http://webnus.net"
|
6971 |
msgstr "http://webnus.net"
|
6972 |
|
6973 |
+
#~ msgid ""
|
6974 |
+
#~ "Webnus is an elite and trusted author with a high percentage of satisfied "
|
6975 |
+
#~ "users. If you have any issues please don't hesitate to contact us, we "
|
6976 |
+
#~ "will reply as soon as possible."
|
6977 |
+
#~ msgstr ""
|
6978 |
+
#~ "Webnus je elitní a spolehlivý autor s vysokým procentem spokojených "
|
6979 |
+
#~ "uživatelů. Pokud máte nějaké problémy, neváhejte nás kontaktovat, "
|
6980 |
+
#~ "odpovíme vám co nejdříve."
|
6981 |
+
|
6982 |
#, fuzzy
|
6983 |
#~| msgid "Enable booking reminder notification"
|
6984 |
#~ msgid "Booking reminder notification is not enabled!"
|
languages/modern-events-calendar-lite-de_DE.mo
CHANGED
Binary file
|
languages/modern-events-calendar-lite-de_DE.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: ME Calender\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2019-11-
|
6 |
-
"PO-Revision-Date: 2019-11-
|
7 |
"Last-Translator: Jogon <koenig@kafinanz.de>\n"
|
8 |
"Language-Team: German\n"
|
9 |
"Language: de_DE\n"
|
@@ -73,14 +73,14 @@ msgid "Event Color"
|
|
73 |
msgstr "Farbe der Veranstaltung"
|
74 |
|
75 |
#: app/features/contextual.php:55 app/features/mec.php:348
|
76 |
-
#: app/features/mec/dashboard.php:134 app/features/mec/support-page.php:
|
77 |
-
#: app/features/mec/support.php:20 app/libraries/main.php:
|
78 |
msgid "Settings"
|
79 |
msgstr "Einstellungen"
|
80 |
|
81 |
#: app/features/contextual.php:62 app/features/events.php:2415
|
82 |
#: app/features/mec/booking.php:439 app/features/mec/support.php:29
|
83 |
-
#: app/libraries/main.php:
|
84 |
msgid "Booking Form"
|
85 |
msgstr "Buchungsformular"
|
86 |
|
@@ -99,7 +99,7 @@ msgstr ""
|
|
99 |
"YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
|
100 |
|
101 |
#: app/features/contextual.php:70 app/features/mec/booking.php:557
|
102 |
-
#: app/features/mec/support.php:36 app/libraries/main.php:
|
103 |
msgid "Payment Gateways"
|
104 |
msgstr "Zahlungs-Gateways"
|
105 |
|
@@ -114,7 +114,7 @@ msgstr ""
|
|
114 |
"\"0\" allowfullscreen></iframe>"
|
115 |
|
116 |
#: app/features/contextual.php:77 app/features/mec/support.php:45
|
117 |
-
#: app/libraries/main.php:
|
118 |
msgid "Notifications"
|
119 |
msgstr "Benachrichtigungen"
|
120 |
|
@@ -194,12 +194,12 @@ msgstr ""
|
|
194 |
"\"0\" allowfullscreen></iframe>"
|
195 |
|
196 |
#: app/features/contextual.php:117 app/features/mec/settings.php:73
|
197 |
-
#: app/libraries/main.php:
|
198 |
msgid "General Options"
|
199 |
msgstr "Allgemeine Einstellungen"
|
200 |
|
201 |
#: app/features/contextual.php:139 app/features/mec/settings.php:405
|
202 |
-
#: app/libraries/main.php:
|
203 |
msgid "Slugs/Permalinks"
|
204 |
msgstr "Slug/Permalinks"
|
205 |
|
@@ -208,27 +208,27 @@ msgid "Event Details/Single Event Page"
|
|
208 |
msgstr "Event Details / Einzelveranstaltungsseite"
|
209 |
|
210 |
#: app/features/contextual.php:166 app/features/mec/settings.php:437
|
211 |
-
#: app/libraries/main.php:
|
212 |
msgid "Currency Options"
|
213 |
msgstr "Währungseinstellungen"
|
214 |
|
215 |
#: app/features/contextual.php:182 app/features/mec/modules.php:67
|
216 |
-
#: app/features/mec/modules.php:85 app/libraries/main.php:
|
217 |
msgid "Google Maps Options"
|
218 |
msgstr "Google Maps Einstellungen"
|
219 |
|
220 |
#: app/features/contextual.php:244 app/features/mec/settings.php:494
|
221 |
-
#: app/libraries/main.php:
|
222 |
msgid "Google Recaptcha Options"
|
223 |
msgstr "Google Recaptcha Einstellungen"
|
224 |
|
225 |
#: app/features/contextual.php:258 app/features/mec/single.php:133
|
226 |
-
#: app/libraries/main.php:
|
227 |
msgid "Countdown Options"
|
228 |
msgstr "Countdown Einstellungsoptionen"
|
229 |
|
230 |
#: app/features/contextual.php:268 app/features/mec/modules.php:263
|
231 |
-
#: app/libraries/main.php:
|
232 |
msgid "Social Networks"
|
233 |
msgstr "Soziale Netzwerke"
|
234 |
|
@@ -237,34 +237,34 @@ msgid "Next Event Module"
|
|
237 |
msgstr "Nächstes Veranstaltung Modul"
|
238 |
|
239 |
#: app/features/contextual.php:286 app/features/mec/settings.php:530
|
240 |
-
#: app/libraries/main.php:
|
241 |
msgid "Frontend Event Submission"
|
242 |
msgstr "Erstellung von Veranstaltungen im Frontend"
|
243 |
|
244 |
#: app/features/contextual.php:298 app/features/events.php:325
|
245 |
-
#: app/libraries/main.php:
|
246 |
msgid "Exceptional Days"
|
247 |
msgstr "Herausgenommene Tage "
|
248 |
|
249 |
#: app/features/contextual.php:308 app/features/events.php:298
|
250 |
#: app/features/mec/booking.php:88 app/features/mec/notifications.php:35
|
251 |
-
#: app/libraries/main.php:
|
252 |
-
#: app/libraries/main.php:
|
253 |
msgid "Booking"
|
254 |
msgstr "Buchung / Reservierung"
|
255 |
|
256 |
#: app/features/contextual.php:318 app/features/mec/booking.php:261
|
257 |
-
#: app/libraries/main.php:
|
258 |
msgid "Coupons"
|
259 |
msgstr "Gutscheine"
|
260 |
|
261 |
#: app/features/contextual.php:326 app/features/mec/modules.php:324
|
262 |
-
#: app/libraries/main.php:
|
263 |
msgid "BuddyPress Integration"
|
264 |
msgstr "Buddy Press Integration"
|
265 |
|
266 |
#: app/features/contextual.php:334 app/features/mec/settings.php:823
|
267 |
-
#: app/libraries/main.php:
|
268 |
msgid "Mailchimp Integration"
|
269 |
msgstr "Mailchimp Integration"
|
270 |
|
@@ -273,15 +273,15 @@ msgid "MEC Activation"
|
|
273 |
msgstr "MEC Aktivierung"
|
274 |
|
275 |
#: app/features/events.php:150 app/features/ix/export.php:34
|
276 |
-
#: app/features/mec/dashboard.php:
|
277 |
#: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
|
278 |
msgid "Events"
|
279 |
msgstr "Veranstaltungen"
|
280 |
|
281 |
#: app/features/events.php:151 app/features/fes.php:223
|
282 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
283 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
284 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
285 |
#: app/features/profile/profile.php:50 app/skins/daily_view/tpl.php:80
|
286 |
#: app/skins/monthly_view/tpl.php:71 app/skins/yearly_view/tpl.php:69
|
287 |
msgid "Event"
|
@@ -317,7 +317,7 @@ msgid "No events found in Trash!"
|
|
317 |
msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
|
318 |
|
319 |
#: app/features/events.php:175 app/features/events.php:3241
|
320 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
321 |
#: app/features/mec/meta_boxes/search_form.php:31
|
322 |
#: app/features/mec/meta_boxes/search_form.php:93
|
323 |
#: app/features/mec/meta_boxes/search_form.php:155
|
@@ -329,8 +329,8 @@ msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
|
|
329 |
#: app/features/mec/meta_boxes/search_form.php:514
|
330 |
#: app/features/mec/meta_boxes/search_form.php:575
|
331 |
#: app/features/mec/settings.php:776 app/features/mec/single.php:204
|
332 |
-
#: app/features/search.php:67 app/libraries/main.php:
|
333 |
-
#: app/libraries/skins.php:
|
334 |
#: app/skins/single/default.php:185 app/skins/single/default.php:397
|
335 |
#: app/skins/single/m1.php:170 app/skins/single/m2.php:102
|
336 |
#: app/skins/single/modern.php:110
|
@@ -339,7 +339,7 @@ msgstr "Kategorie"
|
|
339 |
|
340 |
#: app/features/events.php:176 app/features/events.php:3212
|
341 |
#: app/features/fes/form.php:746 app/features/mec.php:336
|
342 |
-
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:
|
343 |
msgid "Categories"
|
344 |
msgstr "Kategorien"
|
345 |
|
@@ -447,7 +447,7 @@ msgstr "Link"
|
|
447 |
#: app/features/events.php:329 app/features/events.php:3243
|
448 |
#: app/features/events.php:3434 app/features/events.php:3476
|
449 |
#: app/features/ix.php:3373 app/features/ix.php:3414
|
450 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
451 |
#: app/features/mec/meta_boxes/search_form.php:45
|
452 |
#: app/features/mec/meta_boxes/search_form.php:107
|
453 |
#: app/features/mec/meta_boxes/search_form.php:169
|
@@ -462,7 +462,7 @@ msgstr "Link"
|
|
462 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
463 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
464 |
#: app/features/organizers.php:271 app/features/search.php:75
|
465 |
-
#: app/libraries/main.php:
|
466 |
#: app/skins/single.php:797 app/skins/single/default.php:210
|
467 |
#: app/skins/single/default.php:422 app/skins/single/m1.php:90
|
468 |
#: app/skins/single/m2.php:22 app/skins/single/modern.php:31
|
@@ -470,7 +470,7 @@ msgid "Organizer"
|
|
470 |
msgstr "Veranstalter"
|
471 |
|
472 |
#: app/features/events.php:330 app/features/events.php:1157
|
473 |
-
#: app/features/fes/form.php:719 app/libraries/main.php:
|
474 |
#: app/skins/single.php:584 app/skins/single/default.php:119
|
475 |
#: app/skins/single/default.php:331 app/skins/single/m1.php:49
|
476 |
#: app/skins/single/modern.php:199
|
@@ -489,7 +489,7 @@ msgstr "Gäste Daten"
|
|
489 |
#: app/features/fes.php:223 app/features/fes/form.php:678
|
490 |
#: app/features/labels.php:178 app/features/mec/booking.php:45
|
491 |
#: app/features/organizers.php:279 app/features/profile/profile.php:180
|
492 |
-
#: app/libraries/notifications.php:
|
493 |
msgid "Name"
|
494 |
msgstr "Name"
|
495 |
|
@@ -499,8 +499,8 @@ msgstr "Name"
|
|
499 |
#: app/features/mec/booking.php:490 app/features/organizers.php:111
|
500 |
#: app/features/organizers.php:152 app/features/profile/profile.php:183
|
501 |
#: app/features/speakers.php:126 app/features/speakers.php:187
|
502 |
-
#: app/libraries/main.php:
|
503 |
-
#: app/libraries/main.php:
|
504 |
#: app/modules/booking/steps/form.php:46 app/modules/booking/steps/form.php:84
|
505 |
#: app/skins/single.php:814 app/skins/single.php:869
|
506 |
#: app/skins/single/default.php:227 app/skins/single/default.php:439
|
@@ -518,20 +518,21 @@ msgstr "Datum und Uhrzeit"
|
|
518 |
#: app/features/events.php:3476 app/features/fes/form.php:246
|
519 |
#: app/features/fes/form.php:250 app/features/ix.php:3373
|
520 |
#: app/features/ix.php:3414 app/features/ix/import_g_calendar.php:38
|
521 |
-
#: app/features/mec/dashboard.php:
|
522 |
#: app/features/mec/meta_boxes/display_options.php:48
|
523 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
524 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
525 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
526 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
527 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
528 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
529 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
530 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
531 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
532 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
533 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
534 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
|
|
535 |
msgid "Start Date"
|
536 |
msgstr "Start Datum"
|
537 |
|
@@ -554,7 +555,7 @@ msgstr "PM"
|
|
554 |
#: app/features/events.php:3476 app/features/fes/form.php:286
|
555 |
#: app/features/fes/form.php:290 app/features/ix.php:3373
|
556 |
#: app/features/ix.php:3414 app/features/ix/import_g_calendar.php:44
|
557 |
-
#: app/features/mec/dashboard.php:
|
558 |
msgid "End Date"
|
559 |
msgstr "Ende Datum"
|
560 |
|
@@ -607,31 +608,32 @@ msgstr ""
|
|
607 |
#: app/features/mec/meta_boxes/display_options.php:92
|
608 |
#: app/features/mec/meta_boxes/display_options.php:103
|
609 |
#: app/features/mec/meta_boxes/display_options.php:115
|
610 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
611 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
612 |
-
#: app/features/mec/meta_boxes/display_options.php:243
|
613 |
#: app/features/mec/meta_boxes/display_options.php:256
|
614 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
615 |
#: app/features/mec/meta_boxes/display_options.php:280
|
616 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
617 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
618 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
619 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
620 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
621 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
622 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
623 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
624 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
625 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
626 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
627 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
628 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
629 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
630 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
631 |
-
#: app/features/mec/meta_boxes/display_options.php:1167
|
632 |
#: app/features/mec/meta_boxes/display_options.php:1180
|
633 |
#: app/features/mec/meta_boxes/display_options.php:1193
|
634 |
#: app/features/mec/meta_boxes/display_options.php:1206
|
|
|
|
|
|
|
635 |
#: app/features/mec/modules.php:53 app/features/mec/modules.php:86
|
636 |
#: app/features/mec/modules.php:103 app/features/mec/modules.php:138
|
637 |
#: app/features/mec/modules.php:154 app/features/mec/modules.php:312
|
@@ -681,7 +683,7 @@ msgid "Repeats"
|
|
681 |
msgstr "Wiederholend"
|
682 |
|
683 |
#: app/features/events.php:738 app/features/fes/form.php:348
|
684 |
-
#: app/features/mec/dashboard.php:
|
685 |
#: app/skins/default_full_calendar/tpl.php:69
|
686 |
#: app/skins/full_calendar/tpl.php:110
|
687 |
msgid "Daily"
|
@@ -706,14 +708,14 @@ msgid "Weekly"
|
|
706 |
msgstr "Wöchentlich"
|
707 |
|
708 |
#: app/features/events.php:773 app/features/fes/form.php:353
|
709 |
-
#: app/features/mec/dashboard.php:
|
710 |
#: app/skins/default_full_calendar/tpl.php:67
|
711 |
#: app/skins/full_calendar/tpl.php:108
|
712 |
msgid "Monthly"
|
713 |
msgstr "Monatlich"
|
714 |
|
715 |
#: app/features/events.php:780 app/features/fes/form.php:354
|
716 |
-
#: app/features/mec/dashboard.php:
|
717 |
#: app/skins/default_full_calendar/tpl.php:66
|
718 |
#: app/skins/full_calendar/tpl.php:107
|
719 |
msgid "Yearly"
|
@@ -839,7 +841,7 @@ msgstr ""
|
|
839 |
#: app/features/events.php:1153 app/features/events.php:3434
|
840 |
#: app/features/events.php:3476 app/features/fes/form.php:716
|
841 |
#: app/features/ix.php:3373 app/features/ix.php:3414
|
842 |
-
#: app/features/mec/settings.php:632 app/libraries/main.php:
|
843 |
#: app/widgets/single.php:103
|
844 |
msgid "Event Cost"
|
845 |
msgstr ""
|
@@ -857,8 +859,8 @@ msgstr "Ausschluss bestimmter Tage"
|
|
857 |
|
858 |
#: app/features/events.php:1189 app/features/events.php:2485
|
859 |
#: app/features/fes.php:223 app/features/mec/booking.php:491
|
860 |
-
#: app/features/profile/profile.php:53 app/libraries/main.php:
|
861 |
-
#: app/libraries/main.php:
|
862 |
#: app/modules/next-event/details.php:90 app/skins/single.php:639
|
863 |
#: app/skins/single/default.php:83 app/skins/single/default.php:295
|
864 |
#: app/skins/single/m1.php:16 app/skins/single/modern.php:166
|
@@ -911,13 +913,13 @@ msgstr "Titel"
|
|
911 |
#: app/features/events.php:2301 app/features/events.php:2343
|
912 |
#: app/features/mec/booking.php:318 app/features/mec/booking.php:347
|
913 |
#: app/features/mec/booking.php:398 app/features/mec/booking.php:430
|
914 |
-
#: app/libraries/main.php:
|
915 |
-
#: app/libraries/main.php:
|
916 |
-
#: app/libraries/main.php:
|
917 |
-
#: app/libraries/main.php:
|
918 |
-
#: app/libraries/main.php:
|
919 |
-
#: app/libraries/main.php:
|
920 |
-
#: app/libraries/main.php:
|
921 |
msgid "Remove"
|
922 |
msgstr "Entfernen"
|
923 |
|
@@ -945,7 +947,7 @@ msgstr "Beschreibung"
|
|
945 |
#: app/features/events.php:1430 app/features/fes/form.php:840
|
946 |
#: app/features/mec.php:344 app/features/mec/modules.php:52
|
947 |
#: app/features/mec/settings.php:680 app/features/speakers.php:62
|
948 |
-
#: app/libraries/main.php:
|
949 |
#: app/modules/speakers/details.php:18
|
950 |
msgid "Speakers"
|
951 |
msgstr ""
|
@@ -962,7 +964,7 @@ msgid "Event Links"
|
|
962 |
msgstr "Veranstaltungslinks"
|
963 |
|
964 |
#: app/features/events.php:1464 app/features/events.php:1470
|
965 |
-
#: app/features/fes/form.php:695 app/libraries/main.php:
|
966 |
msgid "Event Link"
|
967 |
msgstr "Veranstaltungslink"
|
968 |
|
@@ -990,7 +992,7 @@ msgid "URL Shortener"
|
|
990 |
msgstr ""
|
991 |
|
992 |
#: app/features/events.php:1480 app/features/events.php:1493
|
993 |
-
#: app/features/fes/form.php:700 app/libraries/main.php:
|
994 |
#: app/skins/single.php:658 app/skins/single/default.php:133
|
995 |
#: app/skins/single/default.php:345 app/skins/single/m1.php:191
|
996 |
#: app/skins/single/m2.php:124 app/skins/single/modern.php:132
|
@@ -1064,7 +1066,7 @@ msgid "12"
|
|
1064 |
msgstr ""
|
1065 |
|
1066 |
#: app/features/events.php:1638 app/libraries/book.php:60
|
1067 |
-
#: app/libraries/main.php:
|
1068 |
msgid "Tickets"
|
1069 |
msgstr "Tickets"
|
1070 |
|
@@ -1127,7 +1129,7 @@ msgstr "Preisschild"
|
|
1127 |
|
1128 |
#: app/features/events.php:1874 app/features/events.php:1900
|
1129 |
#: app/features/events.php:2057 app/features/labels.php:60
|
1130 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1131 |
#: app/features/mec/meta_boxes/search_form.php:66
|
1132 |
#: app/features/mec/meta_boxes/search_form.php:128
|
1133 |
#: app/features/mec/meta_boxes/search_form.php:190
|
@@ -1139,7 +1141,7 @@ msgstr "Preisschild"
|
|
1139 |
#: app/features/mec/meta_boxes/search_form.php:549
|
1140 |
#: app/features/mec/meta_boxes/search_form.php:610
|
1141 |
#: app/features/mec/settings.php:808 app/features/mec/single.php:222
|
1142 |
-
#: app/libraries/skins.php:
|
1143 |
msgid "Label"
|
1144 |
msgstr "Label"
|
1145 |
|
@@ -1209,48 +1211,48 @@ msgid "Maximum Per Ticket. Leave it blank for unlimited."
|
|
1209 |
msgstr ""
|
1210 |
|
1211 |
#: app/features/events.php:2481 app/features/mec/booking.php:487
|
1212 |
-
#: app/libraries/main.php:
|
1213 |
#, fuzzy
|
1214 |
#| msgid "Name"
|
1215 |
msgid "MEC Name"
|
1216 |
msgstr "Name"
|
1217 |
|
1218 |
#: app/features/events.php:2482 app/features/mec/booking.php:488
|
1219 |
-
#: app/libraries/main.php:
|
1220 |
#, fuzzy
|
1221 |
#| msgid "Email"
|
1222 |
msgid "MEC Email"
|
1223 |
msgstr "Email"
|
1224 |
|
1225 |
#: app/features/events.php:2483 app/features/mec/booking.php:489
|
1226 |
-
#: app/libraries/main.php:
|
1227 |
msgid "Text"
|
1228 |
msgstr "Text"
|
1229 |
|
1230 |
#: app/features/events.php:2486 app/features/mec/booking.php:492
|
1231 |
#: app/features/organizers.php:103 app/features/organizers.php:148
|
1232 |
#: app/features/speakers.php:118 app/features/speakers.php:183
|
1233 |
-
#: app/features/speakers.php:256 app/libraries/main.php:
|
1234 |
msgid "Tel"
|
1235 |
msgstr "Tel"
|
1236 |
|
1237 |
#: app/features/events.php:2487 app/features/mec/booking.php:493
|
1238 |
-
#: app/libraries/main.php:
|
1239 |
msgid "File"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
#: app/features/events.php:2488 app/features/mec/booking.php:494
|
1243 |
-
#: app/libraries/main.php:
|
1244 |
msgid "Textarea"
|
1245 |
msgstr "Textbereich"
|
1246 |
|
1247 |
#: app/features/events.php:2489 app/features/mec/booking.php:495
|
1248 |
-
#: app/libraries/main.php:
|
1249 |
msgid "Checkboxes"
|
1250 |
msgstr "Checkboxes"
|
1251 |
|
1252 |
#: app/features/events.php:2490 app/features/mec/booking.php:496
|
1253 |
-
#: app/libraries/main.php:
|
1254 |
msgid "Radio Buttons"
|
1255 |
msgstr "Radio Buttons"
|
1256 |
|
@@ -1323,17 +1325,17 @@ msgstr "Radio Buttons"
|
|
1323 |
#: app/features/mec/meta_boxes/search_form.php:599
|
1324 |
#: app/features/mec/meta_boxes/search_form.php:606
|
1325 |
#: app/features/mec/meta_boxes/search_form.php:613
|
1326 |
-
#: app/features/mec/meta_boxes/search_form.php:620 app/libraries/main.php:
|
1327 |
msgid "Dropdown"
|
1328 |
msgstr "Dropdown"
|
1329 |
|
1330 |
#: app/features/events.php:2492 app/features/mec/booking.php:498
|
1331 |
-
#: app/libraries/main.php:
|
1332 |
msgid "Agreement"
|
1333 |
msgstr "Zustimmung"
|
1334 |
|
1335 |
#: app/features/events.php:2493 app/features/mec/booking.php:499
|
1336 |
-
#: app/libraries/main.php:
|
1337 |
msgid "Paragraph"
|
1338 |
msgstr "Absatz"
|
1339 |
|
@@ -1360,7 +1362,7 @@ msgstr "Veranstalter"
|
|
1360 |
#: app/features/ix.php:3414 app/features/locations.php:58
|
1361 |
#: app/features/locations.php:230 app/features/locations.php:287
|
1362 |
#: app/features/locations.php:289 app/features/locations.php:298
|
1363 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1364 |
#: app/features/mec/meta_boxes/search_form.php:38
|
1365 |
#: app/features/mec/meta_boxes/search_form.php:100
|
1366 |
#: app/features/mec/meta_boxes/search_form.php:162
|
@@ -1372,8 +1374,8 @@ msgstr "Veranstalter"
|
|
1372 |
#: app/features/mec/meta_boxes/search_form.php:521
|
1373 |
#: app/features/mec/meta_boxes/search_form.php:582
|
1374 |
#: app/features/mec/settings.php:782 app/features/mec/single.php:212
|
1375 |
-
#: app/features/search.php:71 app/libraries/main.php:
|
1376 |
-
#: app/libraries/main.php:
|
1377 |
#: app/skins/single.php:488 app/skins/single.php:909
|
1378 |
#: app/skins/single/default.php:169 app/skins/single/default.php:381
|
1379 |
#: app/skins/single/m1.php:155 app/skins/single/m2.php:87
|
@@ -1470,11 +1472,11 @@ msgid "The event removed!"
|
|
1470 |
msgstr "Die Veranstaltung wurde entfernt."
|
1471 |
|
1472 |
#: app/features/fes.php:223 app/features/profile/profile.php:186
|
1473 |
-
#: app/libraries/main.php:
|
1474 |
msgid "Ticket"
|
1475 |
msgstr "Ticket"
|
1476 |
|
1477 |
-
#: app/features/fes.php:223 app/libraries/main.php:
|
1478 |
msgid "Transaction ID"
|
1479 |
msgstr "Transaktions-ID"
|
1480 |
|
@@ -1482,6 +1484,12 @@ msgstr "Transaktions-ID"
|
|
1482 |
msgid "Total Price"
|
1483 |
msgstr ""
|
1484 |
|
|
|
|
|
|
|
|
|
|
|
|
|
1485 |
#: app/features/fes.php:223
|
1486 |
msgid "Confirmation"
|
1487 |
msgstr "Bestätigung"
|
@@ -1490,29 +1498,29 @@ msgstr "Bestätigung"
|
|
1490 |
msgid "Verification"
|
1491 |
msgstr "Verifizierung"
|
1492 |
|
1493 |
-
#: app/features/fes.php:
|
1494 |
msgid "Unknown"
|
1495 |
msgstr "Unbekannt"
|
1496 |
|
1497 |
-
#: app/features/fes.php:
|
1498 |
msgid "The image is uploaded!"
|
1499 |
msgstr "Das Bild ist hochgeladen"
|
1500 |
|
1501 |
-
#: app/features/fes.php:
|
1502 |
msgid "Captcha is invalid! Please try again."
|
1503 |
msgstr "Das eingegebene Captcha ist ungültig! Bitte versuchen Sie es erneut."
|
1504 |
|
1505 |
-
#: app/features/fes.php:
|
1506 |
msgid "Please fill event title field!"
|
1507 |
msgstr "Bitte füllen Sie das Event Titelfeld"
|
1508 |
|
1509 |
-
#: app/features/fes.php:
|
1510 |
msgid "The event submitted. It will publish as soon as possible."
|
1511 |
msgstr ""
|
1512 |
"Die Veranstaltung wurde übermittelt. Sie wird sobald wie möglich "
|
1513 |
"veröffentlicht werden."
|
1514 |
|
1515 |
-
#: app/features/fes.php:
|
1516 |
msgid "The event published."
|
1517 |
msgstr "Die Veranstaltung wurde veröffentlicht."
|
1518 |
|
@@ -1523,44 +1531,44 @@ msgid "Go back to events list"
|
|
1523 |
msgstr "Zurück zur Liste der Veranstaltungen"
|
1524 |
|
1525 |
#: app/features/fes/form.php:365
|
1526 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1527 |
-
#: app/libraries/main.php:
|
1528 |
msgid "Monday"
|
1529 |
msgstr "Montag"
|
1530 |
|
1531 |
#: app/features/fes/form.php:366
|
1532 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1533 |
-
#: app/libraries/main.php:
|
1534 |
msgid "Tuesday"
|
1535 |
msgstr "Dienstag"
|
1536 |
|
1537 |
#: app/features/fes/form.php:367
|
1538 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1539 |
-
#: app/libraries/main.php:
|
1540 |
msgid "Wednesday"
|
1541 |
msgstr "Mittwoch"
|
1542 |
|
1543 |
#: app/features/fes/form.php:368
|
1544 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1545 |
-
#: app/libraries/main.php:
|
1546 |
msgid "Thursday"
|
1547 |
msgstr "Donnerstag"
|
1548 |
|
1549 |
#: app/features/fes/form.php:369
|
1550 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1551 |
-
#: app/libraries/main.php:
|
1552 |
msgid "Friday"
|
1553 |
msgstr "Freitag"
|
1554 |
|
1555 |
#: app/features/fes/form.php:370
|
1556 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1557 |
-
#: app/libraries/main.php:
|
1558 |
msgid "Saturday"
|
1559 |
msgstr "Samstag"
|
1560 |
|
1561 |
#: app/features/fes/form.php:371
|
1562 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1563 |
-
#: app/libraries/main.php:
|
1564 |
msgid "Sunday"
|
1565 |
msgstr "Sonntag"
|
1566 |
|
@@ -1603,7 +1611,7 @@ msgstr "Bild entfernen"
|
|
1603 |
|
1604 |
#: app/features/fes/form.php:772 app/features/labels.php:61
|
1605 |
#: app/features/labels.php:221 app/features/mec.php:337
|
1606 |
-
#: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:
|
1607 |
#: app/skins/single.php:687 app/skins/single/default.php:148
|
1608 |
#: app/skins/single/default.php:360 app/skins/single/m1.php:64
|
1609 |
#: app/skins/single/modern.php:214
|
@@ -1664,7 +1672,7 @@ msgid "MEC - Import / Export"
|
|
1664 |
msgstr "MEC - Import / Export"
|
1665 |
|
1666 |
#: app/features/ix.php:107 app/features/mec/support.php:73
|
1667 |
-
#: app/libraries/main.php:
|
1668 |
msgid "Import / Export"
|
1669 |
msgstr "Import / Export"
|
1670 |
|
@@ -1999,7 +2007,7 @@ msgstr ""
|
|
1999 |
#: app/features/mec/booking.php:264 app/features/mec/booking.php:282
|
2000 |
#: app/features/mec/booking.php:359
|
2001 |
#: app/features/mec/meta_boxes/display_options.php:162
|
2002 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2003 |
#: app/features/mec/modules.php:70 app/features/mec/modules.php:211
|
2004 |
#: app/features/mec/modules.php:228
|
2005 |
#, php-format
|
@@ -2010,14 +2018,14 @@ msgstr ""
|
|
2010 |
#: app/features/mec/booking.php:91 app/features/mec/booking.php:264
|
2011 |
#: app/features/mec/booking.php:282 app/features/mec/booking.php:359
|
2012 |
#: app/features/mec/meta_boxes/display_options.php:162
|
2013 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2014 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2015 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2016 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2017 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2018 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2019 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2020 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2021 |
#: app/features/mec/modules.php:70 app/features/mec/modules.php:211
|
2022 |
#: app/features/mec/modules.php:228
|
2023 |
msgid "Pro version of Modern Events Calendar"
|
@@ -2201,7 +2209,7 @@ msgid "Auto Synchronization"
|
|
2201 |
msgstr "Auto Synchronisation"
|
2202 |
|
2203 |
#: app/features/ix/sync.php:22
|
2204 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2205 |
#, php-format
|
2206 |
msgid "%s is required to use synchronization feature."
|
2207 |
msgstr ""
|
@@ -2382,15 +2390,15 @@ msgstr "Wähle Label Farbe"
|
|
2382 |
|
2383 |
#: app/features/labels.php:112 app/features/labels.php:139
|
2384 |
#: app/features/mec/meta_boxes/display_options.php:38
|
2385 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2386 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2387 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2388 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2389 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2390 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2391 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2392 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2393 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2394 |
msgid "Style"
|
2395 |
msgstr "Style"
|
2396 |
|
@@ -2406,15 +2414,16 @@ msgstr ""
|
|
2406 |
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:107
|
2407 |
#: app/skins/monthly_view/calendar_clean.php:107
|
2408 |
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:45
|
2409 |
-
#: app/skins/
|
2410 |
-
#: app/skins/
|
|
|
2411 |
#, fuzzy
|
2412 |
#| msgid "Featured Image"
|
2413 |
msgid "Featured"
|
2414 |
msgstr "Ausgewähltes Bild"
|
2415 |
|
2416 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2417 |
-
#: app/libraries/main.php:
|
2418 |
#: app/skins/available_spot/tpl.php:42 app/skins/carousel/render.php:45
|
2419 |
#: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:32
|
2420 |
#: app/skins/daily_view/render.php:52 app/skins/grid/render.php:50
|
@@ -2422,8 +2431,9 @@ msgstr "Ausgewähltes Bild"
|
|
2422 |
#: app/skins/monthly_view/calendar.php:111
|
2423 |
#: app/skins/monthly_view/calendar_clean.php:111
|
2424 |
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:46
|
2425 |
-
#: app/skins/
|
2426 |
-
#: app/skins/
|
|
|
2427 |
msgid "Canceled"
|
2428 |
msgstr "Abgesagt"
|
2429 |
|
@@ -2448,8 +2458,8 @@ msgid "Event %s"
|
|
2448 |
msgstr "Event %s"
|
2449 |
|
2450 |
#: app/features/locations.php:59 app/features/mec.php:338
|
2451 |
-
#: app/features/mec/dashboard.php:
|
2452 |
-
#: app/libraries/main.php:
|
2453 |
msgid "Locations"
|
2454 |
msgstr "Orte"
|
2455 |
|
@@ -2561,7 +2571,7 @@ msgstr "Bild wählen"
|
|
2561 |
msgid "Don't show map in single event page"
|
2562 |
msgstr "Karte in Einzelansicht nicht anzeigen"
|
2563 |
|
2564 |
-
#: app/features/locations.php:356 app/libraries/main.php:
|
2565 |
#, fuzzy
|
2566 |
#| msgid "Locations"
|
2567 |
msgid "Other Locations"
|
@@ -2620,14 +2630,14 @@ msgstr "Support"
|
|
2620 |
msgid "Support"
|
2621 |
msgstr "Support"
|
2622 |
|
2623 |
-
#: app/features/mec.php:339 app/features/mec/dashboard.php:
|
2624 |
#: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
|
2625 |
-
#: app/libraries/main.php:
|
2626 |
msgid "Organizers"
|
2627 |
msgstr "Veranstalter"
|
2628 |
|
2629 |
#: app/features/mec.php:347 app/features/mec.php:367
|
2630 |
-
#: app/features/mec/dashboard.php:
|
2631 |
msgid "Shortcodes"
|
2632 |
msgstr "Shortcodes"
|
2633 |
|
@@ -2716,7 +2726,7 @@ msgstr ""
|
|
2716 |
#: app/features/mec/booking.php:70 app/features/mec/messages.php:13
|
2717 |
#: app/features/mec/modules.php:23 app/features/mec/notifications.php:12
|
2718 |
#: app/features/mec/settings.php:53 app/features/mec/single.php:15
|
2719 |
-
#: app/features/mec/styling.php:35
|
2720 |
#, fuzzy
|
2721 |
#| msgid "Search %s"
|
2722 |
msgid "Search..."
|
@@ -2769,11 +2779,12 @@ msgstr "Voreinstellung ist J-M-T"
|
|
2769 |
|
2770 |
#: app/features/mec/booking.php:115
|
2771 |
#: app/features/mec/meta_boxes/display_options.php:121
|
2772 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2773 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2774 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2775 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2776 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
|
|
2777 |
msgid "Limit"
|
2778 |
msgstr "Limit"
|
2779 |
|
@@ -2891,7 +2902,7 @@ msgid "Auto verification for paid bookings"
|
|
2891 |
msgstr "Automatische Verifizierung für kostenpflichtige Buchungen"
|
2892 |
|
2893 |
#: app/features/mec/booking.php:235 app/features/mec/notifications.php:155
|
2894 |
-
#: app/libraries/main.php:
|
2895 |
msgid "Booking Confirmation"
|
2896 |
msgstr "Buchungsbestätigung"
|
2897 |
|
@@ -2913,7 +2924,7 @@ msgid ""
|
|
2913 |
"new menu on the Dashboard > Booking"
|
2914 |
msgstr ""
|
2915 |
|
2916 |
-
#: app/features/mec/booking.php:279 app/libraries/main.php:
|
2917 |
msgid "Taxes / Fees"
|
2918 |
msgstr "Steuern/Gebühren"
|
2919 |
|
@@ -2925,7 +2936,7 @@ msgstr "Modul für Gebühren/Steuern aktivieren"
|
|
2925 |
msgid "Add Fee"
|
2926 |
msgstr "Gebühr hinzufügen"
|
2927 |
|
2928 |
-
#: app/features/mec/booking.php:356 app/libraries/main.php:
|
2929 |
msgid "Ticket Variations & Options"
|
2930 |
msgstr ""
|
2931 |
|
@@ -2974,7 +2985,7 @@ msgstr ""
|
|
2974 |
#: app/features/mec/notifications.php:599
|
2975 |
#: app/features/mec/notifications.php:621 app/features/mec/settings.php:949
|
2976 |
#: app/features/mec/settings.php:971 app/features/mec/single.php:267
|
2977 |
-
#: app/features/mec/single.php:289 app/libraries/main.php:
|
2978 |
msgid "Verified"
|
2979 |
msgstr "Verifiziert"
|
2980 |
|
@@ -3056,74 +3067,74 @@ msgid ""
|
|
3056 |
"on your website. Please watch this 2 minutes video to the end."
|
3057 |
msgstr ""
|
3058 |
|
3059 |
-
#: app/features/mec/dashboard.php:143
|
3060 |
#, fuzzy
|
3061 |
#| msgid "MEC Activation"
|
3062 |
msgid "MEC Activate"
|
3063 |
msgstr "MEC Aktivierung"
|
3064 |
|
3065 |
-
#: app/features/mec/dashboard.php:149
|
3066 |
-
msgid ""
|
3067 |
-
"In order to use all plugin features and options, please enter your purchase "
|
3068 |
-
"code."
|
3069 |
-
msgstr ""
|
3070 |
-
|
3071 |
-
#: app/features/mec/dashboard.php:207
|
3072 |
#, fuzzy
|
3073 |
#| msgid "MEC Activation"
|
3074 |
msgid "Activate Addons"
|
3075 |
msgstr "MEC Aktivierung"
|
3076 |
|
3077 |
-
#: app/features/mec/dashboard.php:
|
3078 |
msgid "You cannot access this section."
|
3079 |
msgstr ""
|
3080 |
|
3081 |
-
#: app/features/mec/dashboard.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
3082 |
msgid "Upcoming Events"
|
3083 |
msgstr "Bevorstehende Events"
|
3084 |
|
3085 |
-
#: app/features/mec/dashboard.php:
|
3086 |
msgid "Popular Gateways"
|
3087 |
msgstr "Beliebte Zahlungsgateways"
|
3088 |
|
3089 |
-
#: app/features/mec/dashboard.php:
|
3090 |
msgid "Total Bookings"
|
3091 |
msgstr "Gesamte Buchungen"
|
3092 |
|
3093 |
-
#: app/features/mec/dashboard.php:
|
3094 |
msgid "This Month"
|
3095 |
msgstr "Diesen Monat"
|
3096 |
|
3097 |
-
#: app/features/mec/dashboard.php:
|
3098 |
msgid "Last Month"
|
3099 |
msgstr "Letzten Monat"
|
3100 |
|
3101 |
-
#: app/features/mec/dashboard.php:
|
3102 |
msgid "This Year"
|
3103 |
msgstr "Diese Jahr"
|
3104 |
|
3105 |
-
#: app/features/mec/dashboard.php:
|
3106 |
msgid "Last Year"
|
3107 |
msgstr "Letztes Jahr"
|
3108 |
|
3109 |
-
#: app/features/mec/dashboard.php:
|
3110 |
msgid "Bar"
|
3111 |
msgstr "Bar"
|
3112 |
|
3113 |
-
#: app/features/mec/dashboard.php:
|
3114 |
msgid "Line"
|
3115 |
msgstr "Linie"
|
3116 |
|
3117 |
-
#: app/features/mec/dashboard.php:
|
3118 |
msgid "Filter"
|
3119 |
msgstr "Filter"
|
3120 |
|
3121 |
-
#: app/features/mec/dashboard.php:
|
3122 |
#, php-format
|
3123 |
msgid "Total Sells (%s)"
|
3124 |
msgstr "Alle Verkäufe (%s)"
|
3125 |
|
3126 |
-
#: app/features/mec/dashboard.php:
|
3127 |
msgid "Change Log"
|
3128 |
msgstr "Änderungsprotokoll"
|
3129 |
|
@@ -3156,7 +3167,7 @@ msgid "Download Settings"
|
|
3156 |
msgstr "Download Rechnung\n"
|
3157 |
|
3158 |
#: app/features/mec/messages.php:28 app/features/mec/support.php:66
|
3159 |
-
#: app/libraries/main.php:
|
3160 |
msgid "Messages"
|
3161 |
msgstr "Nachrichten"
|
3162 |
|
@@ -3177,9 +3188,9 @@ msgid "Skin"
|
|
3177 |
msgstr "Skin"
|
3178 |
|
3179 |
#: app/features/mec/meta_boxes/display_options.php:40
|
3180 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3181 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3182 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3183 |
#: app/features/mec/settings.php:235 app/features/mec/settings.php:259
|
3184 |
#: app/features/mec/settings.php:268 app/features/mec/settings.php:309
|
3185 |
#: app/features/mec/settings.php:333 app/features/mec/settings.php:342
|
@@ -3187,18 +3198,18 @@ msgid "Classic"
|
|
3187 |
msgstr "Klassisch"
|
3188 |
|
3189 |
#: app/features/mec/meta_boxes/display_options.php:41
|
3190 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3191 |
#: app/features/mec/settings.php:260 app/features/mec/settings.php:270
|
3192 |
#: app/features/mec/settings.php:334 app/features/mec/settings.php:344
|
3193 |
msgid "Minimal"
|
3194 |
msgstr "Minimal"
|
3195 |
|
3196 |
#: app/features/mec/meta_boxes/display_options.php:42
|
3197 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3198 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3199 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3200 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3201 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3202 |
#: app/features/mec/settings.php:237 app/features/mec/settings.php:250
|
3203 |
#: app/features/mec/settings.php:261 app/features/mec/settings.php:271
|
3204 |
#: app/features/mec/settings.php:311 app/features/mec/settings.php:324
|
@@ -3217,86 +3228,92 @@ msgid "Accordion"
|
|
3217 |
msgstr "Accordion"
|
3218 |
|
3219 |
#: app/features/mec/meta_boxes/display_options.php:50
|
3220 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3221 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3222 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3223 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3224 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3225 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3226 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
|
|
3227 |
msgid "Today"
|
3228 |
msgstr "Heute"
|
3229 |
|
3230 |
#: app/features/mec/meta_boxes/display_options.php:51
|
3231 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3232 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3233 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3234 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3235 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3236 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3237 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
|
|
3238 |
msgid "Tomorrow"
|
3239 |
msgstr "Morgen"
|
3240 |
|
3241 |
#: app/features/mec/meta_boxes/display_options.php:52
|
3242 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3243 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3244 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3245 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3246 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3247 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3248 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3249 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3250 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3251 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3252 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
|
|
3253 |
msgid "Start of Current Month"
|
3254 |
msgstr "Mit Beginn des laufenden Monats"
|
3255 |
|
3256 |
#: app/features/mec/meta_boxes/display_options.php:53
|
3257 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3258 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3259 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3260 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3261 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3262 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3263 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3264 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3265 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3266 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3267 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
|
|
3268 |
msgid "Start of Next Month"
|
3269 |
msgstr "Mit Beginn des kommenden Monats"
|
3270 |
|
3271 |
#: app/features/mec/meta_boxes/display_options.php:54
|
3272 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3273 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3274 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3275 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3276 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3277 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3278 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3279 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3280 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3281 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3282 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3283 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
|
|
3284 |
msgid "On a certain date"
|
3285 |
msgstr "An einem bestimmten Tag"
|
3286 |
|
3287 |
#: app/features/mec/meta_boxes/display_options.php:57
|
3288 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3289 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3290 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3291 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3292 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3293 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3294 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3295 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3296 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3297 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3298 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3299 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
|
|
3300 |
#, php-format
|
3301 |
msgid "eg. %s"
|
3302 |
msgstr "z.B. %s"
|
@@ -3311,61 +3328,63 @@ msgstr "z.B. %s"
|
|
3311 |
#: app/features/mec/meta_boxes/display_options.php:102
|
3312 |
#: app/features/mec/meta_boxes/display_options.php:109
|
3313 |
#: app/features/mec/meta_boxes/display_options.php:114
|
3314 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3315 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3316 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3317 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3318 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3319 |
-
#: app/features/mec/meta_boxes/display_options.php:242
|
3320 |
-
#: app/features/mec/meta_boxes/display_options.php:249
|
3321 |
#: app/features/mec/meta_boxes/display_options.php:255
|
3322 |
#: app/features/mec/meta_boxes/display_options.php:262
|
3323 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3324 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3325 |
#: app/features/mec/meta_boxes/display_options.php:279
|
3326 |
#: app/features/mec/meta_boxes/display_options.php:286
|
3327 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3328 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3329 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3330 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3331 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3332 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3333 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3334 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3335 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3336 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3337 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3338 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3339 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3340 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3341 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3342 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3343 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3344 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3345 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3346 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3347 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3348 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3349 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3350 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3351 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3352 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3353 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3354 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3355 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3356 |
-
#: app/features/mec/meta_boxes/display_options.php:1160
|
3357 |
-
#: app/features/mec/meta_boxes/display_options.php:1166
|
3358 |
#: app/features/mec/meta_boxes/display_options.php:1173
|
3359 |
#: app/features/mec/meta_boxes/display_options.php:1179
|
3360 |
#: app/features/mec/meta_boxes/display_options.php:1186
|
3361 |
#: app/features/mec/meta_boxes/display_options.php:1192
|
3362 |
#: app/features/mec/meta_boxes/display_options.php:1199
|
3363 |
#: app/features/mec/meta_boxes/display_options.php:1205
|
|
|
|
|
|
|
|
|
|
|
|
|
3364 |
msgid "Date Formats"
|
3365 |
msgstr "Datumsformate"
|
3366 |
|
3367 |
#: app/features/mec/meta_boxes/display_options.php:66
|
3368 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3369 |
msgid "Default value is \"M d Y\""
|
3370 |
msgstr "Standard Wert ist \"M T J\""
|
3371 |
|
@@ -3374,13 +3393,13 @@ msgid "Default values are d, M and l"
|
|
3374 |
msgstr "Standard Werte sind T, M und J"
|
3375 |
|
3376 |
#: app/features/mec/meta_boxes/display_options.php:92
|
3377 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3378 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3379 |
-
#: app/features/mec/meta_boxes/display_options.php:1154
|
3380 |
-
#: app/features/mec/meta_boxes/display_options.php:1167
|
3381 |
#: app/features/mec/meta_boxes/display_options.php:1180
|
3382 |
#: app/features/mec/meta_boxes/display_options.php:1193
|
3383 |
#: app/features/mec/meta_boxes/display_options.php:1206
|
|
|
|
|
3384 |
msgid "Default values are d, F and l"
|
3385 |
msgstr ""
|
3386 |
"Standardwerte sind Tag, Monat als ganzes Wort und Wochentag als ganzes Wort"
|
@@ -3396,15 +3415,16 @@ msgid "TDefault values are d and F"
|
|
3396 |
msgstr "Die Standardwerte sind d and F"
|
3397 |
|
3398 |
#: app/features/mec/meta_boxes/display_options.php:122
|
3399 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3400 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3401 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3402 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3403 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3404 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3405 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3406 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3407 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
|
|
3408 |
msgid "eg. 6"
|
3409 |
msgstr "z.B. 6"
|
3410 |
|
@@ -3415,372 +3435,377 @@ msgid "Include Events Times"
|
|
3415 |
msgstr "Event / Veranstaltungszeit verbergen"
|
3416 |
|
3417 |
#: app/features/mec/meta_boxes/display_options.php:138
|
3418 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3419 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3420 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
|
|
3421 |
msgid "Load More Button"
|
3422 |
msgstr "Button \"Weitere Veranstaltungen Laden\""
|
3423 |
|
3424 |
#: app/features/mec/meta_boxes/display_options.php:148
|
3425 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
|
|
3426 |
msgid "Show Month Divider"
|
3427 |
msgstr "Zeige Monatsteilung"
|
3428 |
|
3429 |
#: app/features/mec/meta_boxes/display_options.php:158
|
3430 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3431 |
#, fuzzy
|
3432 |
#| msgid "Show Google Maps on event page"
|
3433 |
msgid "Show Map on top"
|
3434 |
msgstr "Google Maps auf der Veranstaltungsseite anzeigen"
|
3435 |
|
3436 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
3437 |
#, fuzzy
|
3438 |
#| msgid "Show Month Divider"
|
3439 |
msgid "Toggle for Month Divider"
|
3440 |
msgstr "Zeige Monatsteilung"
|
3441 |
|
3442 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3443 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3444 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3445 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3446 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3447 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3448 |
#: app/features/mec/settings.php:236 app/features/mec/settings.php:251
|
3449 |
#: app/features/mec/settings.php:269 app/features/mec/settings.php:310
|
3450 |
#: app/features/mec/settings.php:325 app/features/mec/settings.php:343
|
3451 |
msgid "Clean"
|
3452 |
msgstr "Clean"
|
3453 |
|
3454 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3455 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3456 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3457 |
#: app/features/mec/settings.php:239 app/features/mec/settings.php:272
|
3458 |
#: app/features/mec/settings.php:313 app/features/mec/settings.php:346
|
3459 |
msgid "Simple"
|
3460 |
msgstr "Schlicht"
|
3461 |
|
3462 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3463 |
msgid "Colorful"
|
3464 |
msgstr "Farbenfroh"
|
3465 |
|
3466 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3467 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3468 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3469 |
#: app/features/mec/settings.php:238 app/features/mec/settings.php:274
|
3470 |
#: app/features/mec/settings.php:312 app/features/mec/settings.php:348
|
3471 |
msgid "Novel"
|
3472 |
msgstr ""
|
3473 |
|
3474 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
|
|
3475 |
#, fuzzy
|
3476 |
#| msgid "Default value is \"d F Y\""
|
3477 |
msgid "Default value is \"d F Y"
|
3478 |
msgstr "Standardwert ist \"d (Tag) F Y (Jahr)\" "
|
3479 |
|
3480 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3481 |
msgid "Default values are d and F"
|
3482 |
msgstr "Die Standardwerte sind d and F"
|
3483 |
|
3484 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3485 |
msgid "Default values are d and M"
|
3486 |
msgstr "Standardwerte sind T und M"
|
3487 |
|
3488 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3489 |
msgid "Default value is \"d F Y\""
|
3490 |
msgstr "Standardwert ist \"d (Tag) F Y (Jahr)\" "
|
3491 |
|
3492 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3493 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3494 |
msgid "Count in row"
|
3495 |
msgstr "Zeilen zählen"
|
3496 |
|
3497 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3498 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3499 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3500 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3501 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3502 |
#, php-format
|
3503 |
msgid "%s is required to use this skin."
|
3504 |
msgstr ""
|
3505 |
|
3506 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3507 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3508 |
msgid "Default values are l and F j"
|
3509 |
msgstr "Die Standardwerte sind I und F j"
|
3510 |
|
3511 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3512 |
msgid "Default View"
|
3513 |
msgstr "Standardansicht"
|
3514 |
|
3515 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3516 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3517 |
-
#: app/libraries/main.php:
|
3518 |
-
#: app/libraries/main.php:
|
3519 |
msgid "List View"
|
3520 |
msgstr "Listenansicht"
|
3521 |
|
3522 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3523 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3524 |
-
#: app/libraries/main.php:
|
3525 |
-
#: app/libraries/main.php:
|
3526 |
msgid "Yearly View"
|
3527 |
msgstr "Jahresansicht"
|
3528 |
|
3529 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3530 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3531 |
msgid "Monthly/Calendar View"
|
3532 |
msgstr "Monatliche Kalenderansicht"
|
3533 |
|
3534 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3535 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3536 |
-
#: app/libraries/main.php:
|
3537 |
-
#: app/libraries/main.php:
|
3538 |
msgid "Weekly View"
|
3539 |
msgstr "Wochenansicht"
|
3540 |
|
3541 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3542 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3543 |
-
#: app/libraries/main.php:
|
3544 |
-
#: app/libraries/main.php:
|
3545 |
msgid "Daily View"
|
3546 |
msgstr "Tagesansicht"
|
3547 |
|
3548 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3549 |
#, fuzzy
|
3550 |
#| msgid "Modern Style"
|
3551 |
msgid "Monthly Style"
|
3552 |
msgstr "Moderner Stil"
|
3553 |
|
3554 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3555 |
#, php-format
|
3556 |
msgid "%s is required to use <b>Yearly View</b> skin."
|
3557 |
msgstr ""
|
3558 |
|
3559 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3560 |
msgid "The price shows only in List View."
|
3561 |
msgstr ""
|
3562 |
|
3563 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3564 |
msgid "Display Event Price"
|
3565 |
msgstr ""
|
3566 |
|
3567 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3568 |
msgid "Start of Current Year"
|
3569 |
msgstr "Mit Beginn des laufenden Jahres"
|
3570 |
|
3571 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3572 |
msgid "Start of Next Year"
|
3573 |
msgstr "Start des nächsten Jahres"
|
3574 |
|
3575 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3576 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3577 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3578 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3579 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3580 |
msgid "Events per day"
|
3581 |
msgstr "Veranstaltungen pro Tag"
|
3582 |
|
3583 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3584 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3585 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3586 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3587 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3588 |
msgid "Next/Previous Buttons"
|
3589 |
msgstr "Schaltfläche \"Nächste/Letzte\""
|
3590 |
|
3591 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3592 |
msgid "For showing next/previous year navigation."
|
3593 |
msgstr "Navigation anzeigen zum nächsten/letzten Jahr"
|
3594 |
|
3595 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3596 |
#, fuzzy
|
3597 |
#| msgid "Text"
|
3598 |
msgid "Uppercase Text"
|
3599 |
msgstr "Text"
|
3600 |
|
3601 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3602 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3603 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3604 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3605 |
msgid "For showing next/previous month navigation."
|
3606 |
msgstr "Für die Navigation zum nächsten/letzten Monat"
|
3607 |
|
3608 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3609 |
msgid "Maximum events"
|
3610 |
msgstr "Veranstaltungsmaximum"
|
3611 |
|
3612 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3613 |
msgid "eg. 200"
|
3614 |
msgstr "z.B. 200"
|
3615 |
|
3616 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3617 |
-
msgid "Geolocation"
|
3618 |
-
msgstr ""
|
3619 |
-
|
3620 |
-
#: app/features/mec/meta_boxes/display_options.php:658
|
3621 |
msgid "The geolocation feature works only in secure (https) websites."
|
3622 |
msgstr ""
|
3623 |
|
3624 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3625 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3626 |
msgid "Current Week"
|
3627 |
msgstr "Aktuelle Woche"
|
3628 |
|
3629 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3630 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3631 |
msgid "Next Week"
|
3632 |
msgstr "Nächste Woche"
|
3633 |
|
3634 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3635 |
msgid "Number of Days"
|
3636 |
msgstr ""
|
3637 |
|
3638 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3639 |
#, fuzzy
|
3640 |
#| msgid "Start"
|
3641 |
msgid "Week Start"
|
3642 |
msgstr "Start"
|
3643 |
|
3644 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3645 |
#, fuzzy
|
3646 |
#| msgid "Inherit from global options"
|
3647 |
msgid "Inherite from WordPress options"
|
3648 |
msgstr "Aus den globalen Einstellungen übernehmen"
|
3649 |
|
3650 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3651 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3652 |
msgid "Default values are j and F"
|
3653 |
msgstr "Standardwerte sind j und F"
|
3654 |
|
3655 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3656 |
msgid "eg. 24"
|
3657 |
msgstr "z.B. 24"
|
3658 |
|
3659 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3660 |
msgid "Filter By"
|
3661 |
msgstr "Filtern nach"
|
3662 |
|
3663 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3664 |
msgid "None"
|
3665 |
msgstr ""
|
3666 |
|
3667 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3668 |
msgid "Fit to row"
|
3669 |
msgstr ""
|
3670 |
|
3671 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3672 |
msgid ""
|
3673 |
"Items are arranged into rows. Rows progress vertically. Similar to what you "
|
3674 |
"would expect from a layout that uses CSS floats."
|
3675 |
msgstr ""
|
3676 |
|
3677 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3678 |
msgid "Convert Masonry to Grid"
|
3679 |
msgstr ""
|
3680 |
|
3681 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3682 |
msgid "For using this option, your events should come with image"
|
3683 |
msgstr ""
|
3684 |
|
3685 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3686 |
msgid "Default values are d, M and Y"
|
3687 |
msgstr "Standardwerte sind T, M und J"
|
3688 |
|
3689 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3690 |
msgid "Default values are \"F d\" and l"
|
3691 |
msgstr ""
|
3692 |
"Standardwerte sind Monat als ganzes Wort, Tag des Monates mit führender Null "
|
3693 |
"und ausgeschriebener Wochentag"
|
3694 |
|
3695 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3696 |
msgid "Default value is \"l, F d Y\""
|
3697 |
msgstr ""
|
3698 |
"Standardwerte sind ausgeschriebener Wochentag, Monat als ganzes Wort, Tag "
|
3699 |
"des Monates mit führender 0, Jahr"
|
3700 |
|
3701 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3702 |
msgid "Style 1"
|
3703 |
msgstr "Stil 1"
|
3704 |
|
3705 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3706 |
msgid "Style 2"
|
3707 |
msgstr "Stil 2"
|
3708 |
|
3709 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3710 |
msgid "Style 3"
|
3711 |
msgstr "Stil 3"
|
3712 |
|
3713 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3714 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3715 |
msgid "Default value is \"j F Y\""
|
3716 |
msgstr "Standardwert ist \"j F Y\""
|
3717 |
|
3718 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3719 |
msgid "Default values are j, F and Y"
|
3720 |
msgstr ""
|
3721 |
"Standardwerte sind j ( Tag des Monats ohne führende Nullen), F und Y (Jahr)"
|
3722 |
|
3723 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3724 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3725 |
msgid " -- Next Upcoming Event -- "
|
3726 |
msgstr "-- Nächste Veranstaltung--"
|
3727 |
|
3728 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3729 |
msgid "Background Color"
|
3730 |
msgstr "Hintergrund Farbe"
|
3731 |
|
3732 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3733 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3734 |
msgid "Type 1"
|
3735 |
msgstr "Typ 1"
|
3736 |
|
3737 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3738 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3739 |
msgid "Type 2"
|
3740 |
msgstr "Typ 2"
|
3741 |
|
3742 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3743 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3744 |
msgid "Type 3"
|
3745 |
msgstr "Type 3"
|
3746 |
|
3747 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3748 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3749 |
msgid "Type 4"
|
3750 |
msgstr "Typ 4"
|
3751 |
|
3752 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3753 |
msgid "Default values are d, F and Y"
|
3754 |
msgstr "Standardwert ist d (Tag) F und Y (Jahr)"
|
3755 |
|
3756 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3757 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3758 |
msgid "Default value is \"M d, Y\""
|
3759 |
msgstr "Standardwert ist \"M T, J\""
|
3760 |
|
3761 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3762 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3763 |
msgid "Auto Play Time"
|
3764 |
msgstr "Auto Play Time"
|
3765 |
|
3766 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3767 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3768 |
msgid "eg. 3000 default is 3 second"
|
3769 |
msgstr "z.B. Voreinstellung 3000 sind 3 Sekunden"
|
3770 |
|
3771 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3772 |
#, fuzzy
|
3773 |
#| msgid "Archive Page Skin"
|
3774 |
msgid "Archive Link"
|
3775 |
msgstr "Skin Seite Archiv"
|
3776 |
|
3777 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3778 |
#, fuzzy
|
3779 |
#| msgid "Text"
|
3780 |
msgid "Head Text"
|
3781 |
msgstr "Text"
|
3782 |
|
3783 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3784 |
msgid "Type 5"
|
3785 |
msgstr "Typ 5"
|
3786 |
|
@@ -3960,8 +3985,8 @@ msgstr "Deaktiviert"
|
|
3960 |
#: app/features/mec/meta_boxes/search_form.php:596
|
3961 |
#: app/features/mec/settings.php:795 app/features/mec/single.php:217
|
3962 |
#: app/features/search.php:79 app/features/speakers.php:61
|
3963 |
-
#: app/features/speakers.php:254 app/libraries/main.php:
|
3964 |
-
#: app/libraries/skins.php:
|
3965 |
msgid "Speaker"
|
3966 |
msgstr ""
|
3967 |
|
@@ -3976,7 +4001,7 @@ msgstr ""
|
|
3976 |
#: app/features/mec/meta_boxes/search_form.php:542
|
3977 |
#: app/features/mec/meta_boxes/search_form.php:603
|
3978 |
#: app/features/mec/settings.php:802 app/features/mec/single.php:226
|
3979 |
-
#: app/features/search.php:83 app/libraries/skins.php:
|
3980 |
#, fuzzy
|
3981 |
#| msgid "Tags"
|
3982 |
msgid "Tag"
|
@@ -4121,7 +4146,7 @@ msgid "Check it only if another plugin/theme is loading the Google Maps API"
|
|
4121 |
msgstr ""
|
4122 |
"Checken Sie es nur wenn ein anderes plugin/Thema die Google Maps API lädt."
|
4123 |
|
4124 |
-
#: app/features/mec/modules.php:167 app/libraries/main.php:
|
4125 |
#, fuzzy
|
4126 |
#| msgid "Import Options"
|
4127 |
msgid "Export Options"
|
@@ -4138,7 +4163,7 @@ msgstr ""
|
|
4138 |
msgid "Google Calendar"
|
4139 |
msgstr "Google Calendar"
|
4140 |
|
4141 |
-
#: app/features/mec/modules.php:194 app/libraries/main.php:
|
4142 |
#: app/modules/local-time/details.php:42 app/widgets/single.php:99
|
4143 |
msgid "Local Time"
|
4144 |
msgstr "Lokale Zeit"
|
@@ -4149,7 +4174,7 @@ msgstr ""
|
|
4149 |
"Zeige die Eventzeit basierend auf der Ortszeit des Besuchers auf der "
|
4150 |
"Eventseite"
|
4151 |
|
4152 |
-
#: app/features/mec/modules.php:208 app/libraries/main.php:
|
4153 |
#: app/modules/qrcode/details.php:38 app/widgets/single.php:155
|
4154 |
msgid "QR Code"
|
4155 |
msgstr "QR Code"
|
@@ -4160,7 +4185,7 @@ msgstr ""
|
|
4160 |
"Zeigen Sie QR-Code des Events in der Detailseite und in der Buchungsrechnung "
|
4161 |
"an"
|
4162 |
|
4163 |
-
#: app/features/mec/modules.php:226 app/libraries/main.php:
|
4164 |
#: app/modules/weather/details.php:37
|
4165 |
msgid "Weather"
|
4166 |
msgstr "Wetter"
|
@@ -4188,7 +4213,7 @@ msgstr ""
|
|
4188 |
msgid "Show social network module"
|
4189 |
msgstr "Modul für Soziale Netzwerke anzeigen"
|
4190 |
|
4191 |
-
#: app/features/mec/modules.php:288 app/libraries/main.php:
|
4192 |
#: app/modules/next-event/details.php:82
|
4193 |
msgid "Next Event"
|
4194 |
msgstr "Nächstes Event"
|
@@ -4514,7 +4539,7 @@ msgstr "Ticket Name"
|
|
4514 |
msgid "Download ICS file"
|
4515 |
msgstr "Download Rechnung\n"
|
4516 |
|
4517 |
-
#: app/features/mec/notifications.php:101 app/libraries/main.php:
|
4518 |
msgid "Booking Verification"
|
4519 |
msgstr "Verifizierung der Buchung"
|
4520 |
|
@@ -4544,7 +4569,7 @@ msgstr "Link zur Stornierung der Buchung"
|
|
4544 |
msgid "Amount Tickets"
|
4545 |
msgstr "Betrag (pro Ticket)"
|
4546 |
|
4547 |
-
#: app/features/mec/notifications.php:210 app/libraries/main.php:
|
4548 |
#, fuzzy
|
4549 |
#| msgid "Booking cancellation link."
|
4550 |
msgid "Booking Cancellation"
|
@@ -4583,7 +4608,7 @@ msgstr "Sendet das Email zum Event Organisator"
|
|
4583 |
msgid "Admin booking management link."
|
4584 |
msgstr "Admin-link zur Buchungsverwaltung"
|
4585 |
|
4586 |
-
#: app/features/mec/notifications.php:278 app/libraries/main.php:
|
4587 |
msgid "Admin"
|
4588 |
msgstr ""
|
4589 |
|
@@ -4599,7 +4624,7 @@ msgstr ""
|
|
4599 |
"Sendet eine Benachrichtigung an den Adminstrator um diesen darüber zu "
|
4600 |
"Informieren, dass eine neue Buchung eingegangen ist."
|
4601 |
|
4602 |
-
#: app/features/mec/notifications.php:338 app/libraries/main.php:
|
4603 |
#: app/libraries/notifications.php:478
|
4604 |
msgid "Booking Reminder"
|
4605 |
msgstr "Buchungs Erinnerung"
|
@@ -4628,8 +4653,8 @@ msgstr "nur einmal pro Tag"
|
|
4628 |
msgid "Days"
|
4629 |
msgstr "Tage"
|
4630 |
|
4631 |
-
#: app/features/mec/notifications.php:414 app/features/mec/support-page.php:
|
4632 |
-
#: app/libraries/main.php:
|
4633 |
msgid "New Event"
|
4634 |
msgstr "Neue Veranstaltung"
|
4635 |
|
@@ -4673,7 +4698,7 @@ msgstr "Veranstaltungsnotiz"
|
|
4673 |
msgid "Admin events management link."
|
4674 |
msgstr "Admin-link zur Veranstaltungsverwaltung"
|
4675 |
|
4676 |
-
#: app/features/mec/notifications.php:462 app/libraries/main.php:
|
4677 |
#, fuzzy
|
4678 |
#| msgid "The event published."
|
4679 |
msgid "User Event Publishing"
|
@@ -4791,7 +4816,7 @@ msgid "You can enable/disable Schema scripts"
|
|
4791 |
msgstr ""
|
4792 |
|
4793 |
#: app/features/mec/settings.php:157 app/features/mec/settings.php:167
|
4794 |
-
#: app/libraries/main.php:
|
4795 |
msgid "Weekdays"
|
4796 |
msgstr "Wochentage"
|
4797 |
|
@@ -4819,7 +4844,7 @@ msgid ""
|
|
4819 |
"page )."
|
4820 |
msgstr ""
|
4821 |
|
4822 |
-
#: app/features/mec/settings.php:200 app/libraries/main.php:
|
4823 |
msgid "Archive Pages"
|
4824 |
msgstr ""
|
4825 |
|
@@ -5131,7 +5156,7 @@ msgstr ""
|
|
5131 |
"Die Ereignisnotiz wird im Frontend-Einreichungsformular angezeigt und das "
|
5132 |
"Ereignis im Backend bearbeitet."
|
5133 |
|
5134 |
-
#: app/features/mec/settings.php:742 app/libraries/main.php:
|
5135 |
msgid "User Profile"
|
5136 |
msgstr ""
|
5137 |
|
@@ -5142,7 +5167,7 @@ msgid ""
|
|
5142 |
"of their bookings."
|
5143 |
msgstr ""
|
5144 |
|
5145 |
-
#: app/features/mec/settings.php:749 app/libraries/main.php:
|
5146 |
#, fuzzy
|
5147 |
#| msgid "Search Form"
|
5148 |
msgid "Search Bar"
|
@@ -5244,7 +5269,7 @@ msgstr "Betrag (pro Ticket)"
|
|
5244 |
msgid "The unit is Megabyte \"MB\""
|
5245 |
msgstr ""
|
5246 |
|
5247 |
-
#: app/features/mec/single.php:34 app/libraries/main.php:
|
5248 |
#, fuzzy
|
5249 |
#| msgid "Single Event Style"
|
5250 |
msgid "Single Event Page"
|
@@ -5382,7 +5407,7 @@ msgstr ""
|
|
5382 |
"Mit dieser Option können Sie bestimmte Tage von vorkommenden Eventdaten ein-/"
|
5383 |
"ausschließen."
|
5384 |
|
5385 |
-
#: app/features/mec/single.php:171 app/libraries/main.php:
|
5386 |
msgid "Additional Organizers"
|
5387 |
msgstr "Zusätzliche Organisatoren"
|
5388 |
|
@@ -5412,7 +5437,7 @@ msgstr ""
|
|
5412 |
"Zeigen Sie zusätzliche Organisatoren auf der Seite Events hinzufügen / "
|
5413 |
"bearbeiten und auf der Seite für einzelne Events an."
|
5414 |
|
5415 |
-
#: app/features/mec/single.php:191 app/libraries/main.php:
|
5416 |
#: app/skins/single.php:163
|
5417 |
#, fuzzy
|
5418 |
#| msgid "featured event"
|
@@ -5493,7 +5518,11 @@ msgstr "Schriftart Überschrift (Titel der Veranstaltung)"
|
|
5493 |
msgid "Paragraph Font Family"
|
5494 |
msgstr "Schriftart Absätze"
|
5495 |
|
5496 |
-
#: app/features/mec/styling.php:196
|
|
|
|
|
|
|
|
|
5497 |
#, fuzzy
|
5498 |
#| msgid "Enable Google Recaptcha"
|
5499 |
msgid "Disable Google Fonts"
|
@@ -5564,166 +5593,166 @@ msgstr ""
|
|
5564 |
msgid "Advice and answers from the Webnus Team"
|
5565 |
msgstr ""
|
5566 |
|
5567 |
-
#: app/features/mec/support-page.php:
|
5568 |
msgid "Quick Setup"
|
5569 |
msgstr ""
|
5570 |
|
5571 |
-
#: app/features/mec/support-page.php:
|
5572 |
#, fuzzy
|
5573 |
#| msgid "Download Invoice"
|
5574 |
msgid "Download the Plugin"
|
5575 |
msgstr "Download Rechnung\n"
|
5576 |
|
5577 |
-
#: app/features/mec/support-page.php:
|
5578 |
msgid "Install and Activate the Plugin"
|
5579 |
msgstr ""
|
5580 |
|
5581 |
-
#: app/features/mec/support-page.php:
|
5582 |
#, fuzzy
|
5583 |
#| msgid "Add New Event"
|
5584 |
msgid "Add a New Event"
|
5585 |
msgstr "Neue Veranstaltung hinzufügen"
|
5586 |
|
5587 |
-
#: app/features/mec/support-page.php:
|
5588 |
-
#: app/features/mec/support-page.php:
|
5589 |
-
#: app/features/mec/support-page.php:
|
5590 |
-
#: app/features/mec/support-page.php:
|
5591 |
msgid "Watch Video"
|
5592 |
msgstr ""
|
5593 |
|
5594 |
-
#: app/features/mec/support-page.php:
|
5595 |
#, fuzzy
|
5596 |
#| msgid "MEC Activation"
|
5597 |
msgid "Activate License"
|
5598 |
msgstr "MEC Aktivierung"
|
5599 |
|
5600 |
-
#: app/features/mec/support-page.php:
|
5601 |
msgid "Login to Dashboard"
|
5602 |
msgstr ""
|
5603 |
|
5604 |
-
#: app/features/mec/support-page.php:
|
5605 |
msgid "Get the License Key"
|
5606 |
msgstr ""
|
5607 |
|
5608 |
-
#: app/features/mec/support-page.php:
|
5609 |
msgid "Activate the plugin"
|
5610 |
msgstr ""
|
5611 |
|
5612 |
-
#: app/features/mec/support-page.php:
|
5613 |
#, fuzzy
|
5614 |
#| msgid "Hide Event End Time"
|
5615 |
msgid "Add New Events, Date and Time"
|
5616 |
msgstr "Ende-Zeit der Veranstaltung verbergen"
|
5617 |
|
5618 |
-
#: app/features/mec/support-page.php:
|
5619 |
msgid "Tags, Categories, Organizer, Location"
|
5620 |
msgstr ""
|
5621 |
|
5622 |
-
#: app/features/mec/support-page.php:
|
5623 |
#, fuzzy
|
5624 |
#| msgid "Hourly Schedule"
|
5625 |
msgid "Hourly Schedule, Set Up Shortcodes"
|
5626 |
msgstr "Stundenplan"
|
5627 |
|
5628 |
-
#: app/features/mec/support-page.php:
|
5629 |
#, fuzzy
|
5630 |
#| msgid "Enable booking module"
|
5631 |
msgid "Enable Booking"
|
5632 |
msgstr "Buchungsmodul aktivieren"
|
5633 |
|
5634 |
-
#: app/features/mec/support-page.php:
|
5635 |
#, fuzzy
|
5636 |
#| msgid "Booking Form"
|
5637 |
msgid "Customize the Booking Form"
|
5638 |
msgstr "Buchungsformular"
|
5639 |
|
5640 |
-
#: app/features/mec/support-page.php:
|
5641 |
#, fuzzy
|
5642 |
#| msgid "Payment Gateways"
|
5643 |
msgid "Set Up a Payment Gateway"
|
5644 |
msgstr "Zahlungs-Gateways"
|
5645 |
|
5646 |
-
#: app/features/mec/support-page.php:
|
5647 |
msgid "Add booking form to event"
|
5648 |
msgstr ""
|
5649 |
|
5650 |
-
#: app/features/mec/support-page.php:
|
5651 |
#, fuzzy
|
5652 |
#| msgid "Enable booking notification"
|
5653 |
msgid "Enable Booking from Settings"
|
5654 |
msgstr "Buchungsbenachrichtigung aktivieren"
|
5655 |
|
5656 |
-
#: app/features/mec/support-page.php:
|
5657 |
#, fuzzy
|
5658 |
#| msgid "Booking Form"
|
5659 |
msgid "Set Up a Booking Form"
|
5660 |
msgstr "Buchungsformular"
|
5661 |
|
5662 |
-
#: app/features/mec/support-page.php:
|
5663 |
#, fuzzy
|
5664 |
#| msgid "Shortcodes"
|
5665 |
msgid "Create Shortcodes"
|
5666 |
msgstr "Shortcodes"
|
5667 |
|
5668 |
-
#: app/features/mec/support-page.php:
|
5669 |
#, fuzzy
|
5670 |
#| msgid "Add New Shortcode"
|
5671 |
msgid "Create a New Shortcode"
|
5672 |
msgstr "Neuen Shortcode hinzufügen"
|
5673 |
|
5674 |
-
#: app/features/mec/support-page.php:
|
5675 |
#, fuzzy
|
5676 |
#| msgid "Shortcodes"
|
5677 |
msgid "Customize Shortcodes"
|
5678 |
msgstr "Shortcodes"
|
5679 |
|
5680 |
-
#: app/features/mec/support-page.php:
|
5681 |
#, fuzzy
|
5682 |
#| msgid "All Shortcodes"
|
5683 |
msgid "Use Filters in Shortcodes"
|
5684 |
msgstr "Alle Shortcodes"
|
5685 |
|
5686 |
-
#: app/features/mec/support-page.php:
|
5687 |
msgid "WooCommerce gateways"
|
5688 |
msgstr ""
|
5689 |
|
5690 |
-
#: app/features/mec/support-page.php:
|
5691 |
msgid "Install and Activate WooCommerce"
|
5692 |
msgstr ""
|
5693 |
|
5694 |
-
#: app/features/mec/support-page.php:
|
5695 |
msgid "Integrate with MEC"
|
5696 |
msgstr ""
|
5697 |
|
5698 |
-
#: app/features/mec/support-page.php:
|
5699 |
msgid "Set Up WooCommerce Gateway"
|
5700 |
msgstr ""
|
5701 |
|
5702 |
-
#: app/features/mec/support-page.php:
|
5703 |
msgid "An Overview of the Settings"
|
5704 |
msgstr ""
|
5705 |
|
5706 |
-
#: app/features/mec/support-page.php:
|
5707 |
#, fuzzy
|
5708 |
#| msgid "Import Options"
|
5709 |
msgid "Set Up Different Settings"
|
5710 |
msgstr "Import Optionen"
|
5711 |
|
5712 |
-
#: app/features/mec/support-page.php:
|
5713 |
#, fuzzy
|
5714 |
#| msgid "Filter Options"
|
5715 |
msgid "Use Different Options"
|
5716 |
msgstr "Filteroptionen"
|
5717 |
|
5718 |
-
#: app/features/mec/support-page.php:
|
5719 |
msgid "FAQ"
|
5720 |
msgstr ""
|
5721 |
|
5722 |
-
#: app/features/mec/support-page.php:
|
5723 |
msgid "How should I update plugin?"
|
5724 |
msgstr ""
|
5725 |
|
5726 |
-
#: app/features/mec/support-page.php:
|
5727 |
#, php-format
|
5728 |
msgid ""
|
5729 |
"You have two options:<br>\n"
|
@@ -5735,33 +5764,33 @@ msgid ""
|
|
5735 |
"For more information, please <a href=\"%s\" target=\"_blank\">click here</a>."
|
5736 |
msgstr ""
|
5737 |
|
5738 |
-
#: app/features/mec/support-page.php:
|
5739 |
msgid "Do I lose all my data or customization if I update MEC?"
|
5740 |
msgstr ""
|
5741 |
|
5742 |
-
#: app/features/mec/support-page.php:
|
5743 |
msgid ""
|
5744 |
"If you’ve added a file to the main folder of MEC, this file will be removed "
|
5745 |
"after the update. Therefore, please do get a full back up before proceeding "
|
5746 |
"with the update process."
|
5747 |
msgstr ""
|
5748 |
|
5749 |
-
#: app/features/mec/support-page.php:
|
5750 |
msgid "Can I customize the event pages?"
|
5751 |
msgstr ""
|
5752 |
|
5753 |
-
#: app/features/mec/support-page.php:
|
5754 |
#, php-format
|
5755 |
msgid ""
|
5756 |
"Yes, it is possible. In order to see the related documentations, please <a "
|
5757 |
"href=\"%s\" target=\"_blank\">click here</a>."
|
5758 |
msgstr ""
|
5759 |
|
5760 |
-
#: app/features/mec/support-page.php:
|
5761 |
msgid "Does MEC have default languages or it needs to be translated?"
|
5762 |
msgstr ""
|
5763 |
|
5764 |
-
#: app/features/mec/support-page.php:
|
5765 |
#, php-format
|
5766 |
msgid ""
|
5767 |
"Yes, for some of the languages MEC has the translation file as default. "
|
@@ -5770,21 +5799,21 @@ msgid ""
|
|
5770 |
"please <a href=\"%s\" target=\"_blank\">click here</a>."
|
5771 |
msgstr ""
|
5772 |
|
5773 |
-
#: app/features/mec/support-page.php:
|
5774 |
msgid "Can I have more than one calendar in one website?"
|
5775 |
msgstr ""
|
5776 |
|
5777 |
-
#: app/features/mec/support-page.php:
|
5778 |
msgid ""
|
5779 |
"Unfortunately, MEC does not support more than 1 calendar in a single "
|
5780 |
"website, however, it will be added in its upcoming updates."
|
5781 |
msgstr ""
|
5782 |
|
5783 |
-
#: app/features/mec/support-page.php:
|
5784 |
msgid "Can I import/export from/to MEC?"
|
5785 |
msgstr ""
|
5786 |
|
5787 |
-
#: app/features/mec/support-page.php:
|
5788 |
msgid ""
|
5789 |
"Yes, you can get an XML export from MEC data or import the file you've "
|
5790 |
"exported to MEC. Also, if you are using one of the following plugins (The "
|
@@ -5792,92 +5821,90 @@ msgid ""
|
|
5792 |
"you can easily transfer your events to MEC."
|
5793 |
msgstr ""
|
5794 |
|
5795 |
-
#: app/features/mec/support-page.php:
|
5796 |
#, fuzzy
|
5797 |
#| msgid "View all Articles"
|
5798 |
msgid "Articles"
|
5799 |
msgstr "Alle Artikel anzeigen"
|
5800 |
|
5801 |
-
#: app/features/mec/support-page.php:
|
5802 |
msgid "MEC And Integrate With WooCommerce"
|
5803 |
msgstr ""
|
5804 |
|
5805 |
-
#: app/features/mec/support-page.php:
|
5806 |
msgid "Create Events With Your Page Builder"
|
5807 |
msgstr ""
|
5808 |
|
5809 |
-
#: app/features/mec/support-page.php:
|
5810 |
msgid "Why can't I use HTML tags?"
|
5811 |
msgstr ""
|
5812 |
|
5813 |
-
#: app/features/mec/support-page.php:
|
5814 |
msgid "Setup Date Option On Shortcodes"
|
5815 |
msgstr ""
|
5816 |
|
5817 |
-
#: app/features/mec/support-page.php:
|
5818 |
msgid "I want to export booking, what should I do?"
|
5819 |
msgstr ""
|
5820 |
|
5821 |
-
#: app/features/mec/support-page.php:
|
5822 |
#, fuzzy
|
5823 |
#| msgid "iCal Export"
|
5824 |
msgid "I Can't Export iCal"
|
5825 |
msgstr "ical Export"
|
5826 |
|
5827 |
-
#: app/features/mec/support-page.php:
|
5828 |
#, fuzzy
|
5829 |
#| msgid "Booking module doesn't work"
|
5830 |
msgid "Booking Module Not Working"
|
5831 |
msgstr "Das Buchungsmodul arbeitet nicht."
|
5832 |
|
5833 |
-
#: app/features/mec/support-page.php:
|
5834 |
msgid "Translate MEC"
|
5835 |
msgstr ""
|
5836 |
|
5837 |
-
#: app/features/mec/support-page.php:
|
5838 |
#, fuzzy
|
5839 |
#| msgid "No event found!"
|
5840 |
msgid "No Event Found!"
|
5841 |
msgstr "Keine Veranstaltung gefunden"
|
5842 |
|
5843 |
-
#: app/features/mec/support-page.php:
|
5844 |
#, fuzzy
|
5845 |
#| msgid "Mailchimp Integration"
|
5846 |
msgid "MEC Theme Integration Guide"
|
5847 |
msgstr "Mailchimp Integration"
|
5848 |
|
5849 |
-
#: app/features/mec/support-page.php:
|
5850 |
#, fuzzy
|
5851 |
#| msgid "How to override MEC template files?"
|
5852 |
msgid "Can I Override MEC Template ?"
|
5853 |
msgstr "Wie kann ich MEC-Vorlagendateien überschreiben?"
|
5854 |
|
5855 |
-
#: app/features/mec/support-page.php:
|
5856 |
-
#, fuzzy
|
5857 |
-
#| msgid ""
|
5858 |
-
#| "Webnus is elite and trusted author with high percentage of satisfied "
|
5859 |
-
#| "user. If you have any issues please don't hesitate to contact us, we will "
|
5860 |
-
#| "reply as soon as possible."
|
5861 |
msgid ""
|
5862 |
-
"
|
5863 |
-
"
|
5864 |
-
"
|
5865 |
msgstr ""
|
5866 |
-
"Webnus ist ein Elite- und vertrauenswürdiger Autor mit hoher Prozentzahl von "
|
5867 |
-
"zufriedenen Nutzern. Wenn Sie irgendwelche Fehlerprobleme haben, zögern Sie "
|
5868 |
-
"nicht uns zu kontaktieren. Wir werden so schnell wie möglich antworten."
|
5869 |
|
5870 |
-
#: app/features/mec/support-page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
5871 |
#, fuzzy
|
5872 |
#| msgid "Add New Shortcode"
|
5873 |
msgid "Create a support ticket"
|
5874 |
msgstr "Neuen Shortcode hinzufügen"
|
5875 |
|
5876 |
-
#: app/features/mec/support.php:52 app/libraries/main.php:
|
5877 |
msgid "Styling Options"
|
5878 |
msgstr "Styling-Optionen"
|
5879 |
|
5880 |
-
#: app/features/mec/support.php:59 app/libraries/main.php:
|
5881 |
msgid "Custom CSS"
|
5882 |
msgstr "Custom CSS"
|
5883 |
|
@@ -6009,7 +6036,7 @@ msgstr "z.B.. max@mustermann.com"
|
|
6009 |
msgid "eg. https://webnus.net"
|
6010 |
msgstr "http://webnus.net"
|
6011 |
|
6012 |
-
#: app/features/organizers.php:311 app/libraries/main.php:
|
6013 |
#: app/skins/single.php:847
|
6014 |
msgid "Other Organizers"
|
6015 |
msgstr "Andere Veranstalter"
|
@@ -6027,7 +6054,7 @@ msgstr ""
|
|
6027 |
msgid "Please %s/%s in order to see your bookings / profile."
|
6028 |
msgstr "Um neue Veranstaltungen einzugeben, bitte %s/%s"
|
6029 |
|
6030 |
-
#: app/features/profile/profile.php:18 app/libraries/main.php:
|
6031 |
#, fuzzy
|
6032 |
#| msgid "Your booking cannot be canceled."
|
6033 |
msgid "Your booking already canceled!"
|
@@ -6037,11 +6064,11 @@ msgstr "Ihre Buchung kann nicht storniert werden."
|
|
6037 |
msgid "#"
|
6038 |
msgstr ""
|
6039 |
|
6040 |
-
#: app/features/profile/profile.php:56 app/libraries/main.php:
|
6041 |
msgid "Status"
|
6042 |
msgstr ""
|
6043 |
|
6044 |
-
#: app/features/profile/profile.php:59 app/libraries/main.php:
|
6045 |
msgid "Attendees"
|
6046 |
msgstr "Teilnehmer"
|
6047 |
|
@@ -6080,7 +6107,7 @@ msgstr "Verifizierung"
|
|
6080 |
msgid "No bookings found!"
|
6081 |
msgstr "Keine Buchungen gefunden"
|
6082 |
|
6083 |
-
#: app/features/search.php:87 app/libraries/main.php:
|
6084 |
msgid "label"
|
6085 |
msgstr "label"
|
6086 |
|
@@ -6107,7 +6134,7 @@ msgid "No search result."
|
|
6107 |
msgstr ""
|
6108 |
|
6109 |
#: app/features/search_bar/search_result.php:11
|
6110 |
-
#: app/libraries/notifications.php:
|
6111 |
#: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
|
6112 |
#: app/skins/single.php:160 app/skins/single.php:738
|
6113 |
#: app/skins/single/default.php:101 app/skins/single/default.php:313
|
@@ -6191,8 +6218,8 @@ msgstr "%s Preis"
|
|
6191 |
msgid "Discount"
|
6192 |
msgstr "Rabatt"
|
6193 |
|
6194 |
-
#: app/libraries/book.php:651 app/modules/booking/default.php:
|
6195 |
-
#: app/modules/booking/default.php:
|
6196 |
msgid "Download Invoice"
|
6197 |
msgstr "Download Rechnung"
|
6198 |
|
@@ -6271,118 +6298,124 @@ msgstr ""
|
|
6271 |
"Eine Vorschau kann nicht angezeit werden, da es sich um einen geschützen "
|
6272 |
"Beitrag handelt."
|
6273 |
|
6274 |
-
#: app/libraries/main.php:
|
6275 |
-
#: app/libraries/main.php:
|
6276 |
msgid "Grid View"
|
6277 |
msgstr "Rasterdarstellung"
|
6278 |
|
6279 |
-
#: app/libraries/main.php:
|
6280 |
-
#: app/libraries/main.php:
|
6281 |
msgid "Agenda View"
|
6282 |
msgstr "Agendaansicht"
|
6283 |
|
6284 |
-
#: app/libraries/main.php:
|
6285 |
-
#: app/libraries/main.php:
|
6286 |
msgid "Full Calendar"
|
6287 |
msgstr "Ganzer Kalender"
|
6288 |
|
6289 |
-
#: app/libraries/main.php:
|
6290 |
-
#: app/libraries/main.php:
|
6291 |
msgid "Calendar/Monthly View"
|
6292 |
msgstr "Kalender-/Monatsansicht"
|
6293 |
|
6294 |
-
#: app/libraries/main.php:
|
6295 |
-
#: app/libraries/main.php:
|
6296 |
msgid "Timetable View"
|
6297 |
msgstr "Stundenplan"
|
6298 |
|
6299 |
-
#: app/libraries/main.php:
|
6300 |
-
#: app/libraries/main.php:
|
6301 |
msgid "Masonry View"
|
6302 |
msgstr "Kachel Ansicht"
|
6303 |
|
6304 |
-
#: app/libraries/main.php:
|
6305 |
-
#: app/libraries/main.php:
|
6306 |
msgid "Map View"
|
6307 |
msgstr "Kartenansicht"
|
6308 |
|
6309 |
-
#: app/libraries/main.php:
|
6310 |
msgid "Cover View"
|
6311 |
msgstr "Deckblattansicht"
|
6312 |
|
6313 |
-
#: app/libraries/main.php:
|
6314 |
msgid "Countdown View"
|
6315 |
msgstr "Countdownansicht"
|
6316 |
|
6317 |
-
#: app/libraries/main.php:
|
6318 |
msgid "Available Spot"
|
6319 |
msgstr "Verfügbarer Spot"
|
6320 |
|
6321 |
-
#: app/libraries/main.php:
|
6322 |
msgid "Carousel View"
|
6323 |
msgstr "Karussellansicht"
|
6324 |
|
6325 |
-
#: app/libraries/main.php:
|
6326 |
msgid "Slider View"
|
6327 |
msgstr "Slideransicht"
|
6328 |
|
6329 |
-
#: app/libraries/main.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
6330 |
msgid "SU"
|
6331 |
msgstr "SO"
|
6332 |
|
6333 |
-
#: app/libraries/main.php:
|
6334 |
msgid "MO"
|
6335 |
msgstr "MO"
|
6336 |
|
6337 |
-
#: app/libraries/main.php:
|
6338 |
msgid "TU"
|
6339 |
msgstr "DI"
|
6340 |
|
6341 |
-
#: app/libraries/main.php:
|
6342 |
msgid "WE"
|
6343 |
msgstr "MI"
|
6344 |
|
6345 |
-
#: app/libraries/main.php:
|
6346 |
msgid "TH"
|
6347 |
msgstr "DO"
|
6348 |
|
6349 |
-
#: app/libraries/main.php:
|
6350 |
msgid "FR"
|
6351 |
msgstr "FR"
|
6352 |
|
6353 |
-
#: app/libraries/main.php:
|
6354 |
msgid "SA"
|
6355 |
msgstr "SA"
|
6356 |
|
6357 |
-
#: app/libraries/main.php:
|
6358 |
#, fuzzy
|
6359 |
#| msgid "Upload/Add image"
|
6360 |
msgid "Upload Field"
|
6361 |
msgstr "Bild hochladen/hinzufügen"
|
6362 |
|
6363 |
-
#: app/libraries/main.php:
|
6364 |
#, fuzzy
|
6365 |
#| msgid "Additional Organizers"
|
6366 |
msgid "Additional Locations"
|
6367 |
msgstr "Zusätzliche Organisatoren"
|
6368 |
|
6369 |
-
#: app/libraries/main.php:
|
6370 |
#, fuzzy
|
6371 |
#| msgid "Single Event Style"
|
6372 |
msgid "Single Event"
|
6373 |
msgstr "Single Event Stil"
|
6374 |
|
6375 |
-
#: app/libraries/main.php:
|
6376 |
#, fuzzy
|
6377 |
#| msgid "Social Module : "
|
6378 |
msgid "Modules"
|
6379 |
msgstr "Social Modul:"
|
6380 |
|
6381 |
-
#: app/libraries/main.php:
|
6382 |
msgid "New Addons For MEC! Now Customize MEC in Elementor"
|
6383 |
msgstr ""
|
6384 |
|
6385 |
-
#: app/libraries/main.php:
|
6386 |
msgid ""
|
6387 |
"The time has come at last, and the new practical add-ons for MEC have been "
|
6388 |
"released. This is a revolution in the world of Event Calendars. We have "
|
@@ -6390,321 +6423,321 @@ msgid ""
|
|
6390 |
"below:"
|
6391 |
msgstr ""
|
6392 |
|
6393 |
-
#: app/libraries/main.php:
|
6394 |
msgid ""
|
6395 |
"<strong>WooCommerce Integration:</strong> You can now purchase ticket (as "
|
6396 |
"products) and Woo products at the same time."
|
6397 |
msgstr ""
|
6398 |
|
6399 |
-
#: app/libraries/main.php:
|
6400 |
msgid ""
|
6401 |
"<strong>Event API:</strong> display your events (shortcodes/single event) on "
|
6402 |
"other websites without MEC. Use JSON output features to make your Apps "
|
6403 |
"compatible with MEC."
|
6404 |
msgstr ""
|
6405 |
|
6406 |
-
#: app/libraries/main.php:
|
6407 |
msgid ""
|
6408 |
"<strong>Elementor Single Builder:</strong> Edit single event page using "
|
6409 |
"Elementor. Manage the position of all elements in the Single page and in "
|
6410 |
"desktops, mobiles and tablets as well."
|
6411 |
msgstr ""
|
6412 |
|
6413 |
-
#: app/libraries/main.php:
|
6414 |
msgid ""
|
6415 |
"<strong>Elementor Shortcode Builder:</strong> It enables you to create "
|
6416 |
"shortcodes in Elementor Live Editor."
|
6417 |
msgstr ""
|
6418 |
|
6419 |
-
#: app/libraries/main.php:
|
6420 |
msgid "Events at this location"
|
6421 |
msgstr "Veranstaltungen an diesem Ort "
|
6422 |
|
6423 |
-
#: app/libraries/main.php:
|
6424 |
msgid "Event at this location"
|
6425 |
msgstr "Veranstaltung an diesem Ort "
|
6426 |
|
6427 |
-
#: app/libraries/main.php:
|
6428 |
msgid "Facebook"
|
6429 |
msgstr "Facebook"
|
6430 |
|
6431 |
-
#: app/libraries/main.php:
|
6432 |
msgid "Twitter"
|
6433 |
msgstr "Twitter"
|
6434 |
|
6435 |
-
#: app/libraries/main.php:
|
6436 |
msgid "Linkedin"
|
6437 |
msgstr "Linkedin"
|
6438 |
|
6439 |
-
#: app/libraries/main.php:
|
6440 |
msgid "VK"
|
6441 |
msgstr ""
|
6442 |
|
6443 |
-
#: app/libraries/main.php:
|
6444 |
msgid "Share on Facebook"
|
6445 |
msgstr "Teilen auf Facebook"
|
6446 |
|
6447 |
-
#: app/libraries/main.php:
|
6448 |
msgid "Tweet"
|
6449 |
msgstr "Tweet"
|
6450 |
|
6451 |
-
#: app/libraries/main.php:
|
6452 |
#, fuzzy
|
6453 |
#| msgid "Shortcode"
|
6454 |
msgid "Custom Shortcode"
|
6455 |
msgstr "Shortcode"
|
6456 |
|
6457 |
-
#: app/libraries/main.php:
|
6458 |
#, fuzzy
|
6459 |
#| msgid "Your booking successfully verified."
|
6460 |
msgid "Your booking already verified!"
|
6461 |
msgstr "Ihre Buchung wurde erfolgreich verifiziert."
|
6462 |
|
6463 |
-
#: app/libraries/main.php:
|
6464 |
msgid "Your booking successfully verified."
|
6465 |
msgstr "Ihre Buchung wurde erfolgreich verifiziert."
|
6466 |
|
6467 |
-
#: app/libraries/main.php:
|
6468 |
msgid "Your booking cannot verify!"
|
6469 |
msgstr "Ihre Buchung kann nicht verifiziert werden!"
|
6470 |
|
6471 |
-
#: app/libraries/main.php:
|
6472 |
msgid "Your booking successfully canceled."
|
6473 |
msgstr "Ihre Buchung wurde erfolgreich storniert."
|
6474 |
|
6475 |
-
#: app/libraries/main.php:
|
6476 |
msgid "Your booking cannot be canceled."
|
6477 |
msgstr "Ihre Buchung kann nicht storniert werden."
|
6478 |
|
6479 |
-
#: app/libraries/main.php:
|
6480 |
msgid "You canceled the payment successfully."
|
6481 |
msgstr "Sie haben die Zahlung erfolgreich storniert."
|
6482 |
|
6483 |
-
#: app/libraries/main.php:
|
6484 |
msgid "You returned from payment gateway successfully."
|
6485 |
msgstr "Sie sind vom Bezahlungs-Gateway erfolgreich zurückgekehrt."
|
6486 |
|
6487 |
-
#: app/libraries/main.php:
|
6488 |
#, fuzzy
|
6489 |
#| msgid "Cannot find the booking!"
|
6490 |
msgid "Cannot find the invoice!"
|
6491 |
msgstr "Kann die Buchung nicht finden!"
|
6492 |
|
6493 |
-
#: app/libraries/main.php:
|
6494 |
#, fuzzy
|
6495 |
#| msgid "Booking is invalid."
|
6496 |
msgid "Invoice is invalid."
|
6497 |
msgstr "Buchung ist ungültig."
|
6498 |
|
6499 |
-
#: app/libraries/main.php:
|
6500 |
msgid ""
|
6501 |
"Your booking still is not confirmed. You able download it after confirmation!"
|
6502 |
msgstr ""
|
6503 |
|
6504 |
-
#: app/libraries/main.php:
|
6505 |
#, fuzzy
|
6506 |
#| msgid "Booking Confirmation"
|
6507 |
msgid "Booking Not Confirmed."
|
6508 |
msgstr "Buchungsbestätigung"
|
6509 |
|
6510 |
-
#: app/libraries/main.php:
|
6511 |
msgid "Cannot find the booking!"
|
6512 |
msgstr "Kann die Buchung nicht finden!"
|
6513 |
|
6514 |
-
#: app/libraries/main.php:
|
6515 |
msgid "Booking is invalid."
|
6516 |
msgstr "Buchung ist ungültig."
|
6517 |
|
6518 |
-
#: app/libraries/main.php:
|
6519 |
#, php-format
|
6520 |
msgid "%s Invoice"
|
6521 |
msgstr "% s Rechnung"
|
6522 |
|
6523 |
-
#: app/libraries/main.php:
|
6524 |
msgid "Billing"
|
6525 |
msgstr "Abrechnung"
|
6526 |
|
6527 |
-
#: app/libraries/main.php:
|
6528 |
msgid "Total"
|
6529 |
msgstr "Gesamt"
|
6530 |
|
6531 |
-
#: app/libraries/main.php:
|
6532 |
#, fuzzy
|
6533 |
#| msgid "Request is invalid!"
|
6534 |
msgid "Request is not valid."
|
6535 |
msgstr "Die Anfrage ist ungültig!"
|
6536 |
|
6537 |
-
#: app/libraries/main.php:
|
6538 |
msgid "iCal export stopped!"
|
6539 |
msgstr "iCal Export wurde unterbrochen!"
|
6540 |
|
6541 |
-
#: app/libraries/main.php:
|
6542 |
-
#: app/libraries/main.php:
|
6543 |
-
#: app/libraries/main.php:
|
6544 |
-
#: app/libraries/main.php:
|
6545 |
-
#: app/libraries/main.php:
|
6546 |
-
#: app/libraries/main.php:
|
6547 |
-
#: app/libraries/main.php:
|
6548 |
msgid "Sort"
|
6549 |
msgstr "Sortieren"
|
6550 |
|
6551 |
-
#: app/libraries/main.php:
|
6552 |
-
#: app/libraries/main.php:
|
6553 |
-
#: app/libraries/main.php:
|
6554 |
-
#: app/libraries/main.php:
|
6555 |
-
#: app/libraries/main.php:
|
6556 |
-
#: app/libraries/main.php:
|
6557 |
msgid "Required Field"
|
6558 |
msgstr "Pflichtfeld"
|
6559 |
|
6560 |
-
#: app/libraries/main.php:
|
6561 |
-
#: app/libraries/main.php:
|
6562 |
-
#: app/libraries/main.php:
|
6563 |
-
#: app/libraries/main.php:
|
6564 |
-
#: app/libraries/main.php:
|
6565 |
-
#: app/libraries/main.php:
|
6566 |
msgid "Insert a label for this field"
|
6567 |
msgstr "Geben Sie eine Bezeichnung (Label) für dieses Feld ein."
|
6568 |
|
6569 |
-
#: app/libraries/main.php:
|
6570 |
msgid "HTML and shortcode are allowed."
|
6571 |
msgstr "HTML und shortcodes sind erlaubt."
|
6572 |
|
6573 |
-
#: app/libraries/main.php:
|
6574 |
-
#: app/libraries/main.php:
|
6575 |
msgid "Option"
|
6576 |
msgstr "Option"
|
6577 |
|
6578 |
-
#: app/libraries/main.php:
|
6579 |
#, php-format
|
6580 |
msgid "Instead of %s, the page title with a link will be show."
|
6581 |
msgstr "Anstelle von %s, wird der Seitentitel mit einem Link gezeigt"
|
6582 |
|
6583 |
-
#: app/libraries/main.php:
|
6584 |
msgid "Agreement Page"
|
6585 |
msgstr "Zustimmungsseite"
|
6586 |
|
6587 |
-
#: app/libraries/main.php:
|
6588 |
msgid "Checked by default"
|
6589 |
msgstr ""
|
6590 |
|
6591 |
-
#: app/libraries/main.php:
|
6592 |
msgid "Unchecked by default"
|
6593 |
msgstr ""
|
6594 |
|
6595 |
-
#: app/libraries/main.php:
|
6596 |
msgid "Insert a label for this option"
|
6597 |
msgstr "Ein neues Label für diese Option einfügen"
|
6598 |
|
6599 |
-
#: app/libraries/main.php:
|
6600 |
msgid "Free"
|
6601 |
msgstr "kostenfrei"
|
6602 |
|
6603 |
-
#: app/libraries/main.php:
|
6604 |
#, fuzzy
|
6605 |
#| msgid "M.E. Calendar"
|
6606 |
msgid "M.E. Calender"
|
6607 |
msgstr "M.E. Calender"
|
6608 |
|
6609 |
-
#: app/libraries/main.php:
|
6610 |
#, php-format
|
6611 |
msgid "Copy of %s"
|
6612 |
msgstr "Kopie von %s"
|
6613 |
|
6614 |
-
#: app/libraries/main.php:
|
6615 |
msgid "Booked an event."
|
6616 |
msgstr "Eine Veranstaltung wurde gebucht."
|
6617 |
|
6618 |
-
#: app/libraries/main.php:
|
6619 |
#, php-format
|
6620 |
msgid "%s booked %s event."
|
6621 |
msgstr "%s gebuchtes %s Event"
|
6622 |
|
6623 |
-
#: app/libraries/main.php:
|
6624 |
msgid "Taxonomies"
|
6625 |
msgstr "Klassifizierung "
|
6626 |
|
6627 |
-
#: app/libraries/main.php:
|
6628 |
msgid "Category Plural Label"
|
6629 |
msgstr "Kategorien"
|
6630 |
|
6631 |
-
#: app/libraries/main.php:
|
6632 |
msgid "Category Singular Label"
|
6633 |
msgstr "Kategorie"
|
6634 |
|
6635 |
-
#: app/libraries/main.php:
|
6636 |
msgid "Label Plural Label"
|
6637 |
msgstr "Labels"
|
6638 |
|
6639 |
-
#: app/libraries/main.php:
|
6640 |
msgid "Label Singular Label"
|
6641 |
msgstr "Label"
|
6642 |
|
6643 |
-
#: app/libraries/main.php:
|
6644 |
msgid "Location Plural Label"
|
6645 |
msgstr "Veranstaltungsorte"
|
6646 |
|
6647 |
-
#: app/libraries/main.php:
|
6648 |
msgid "Location Singular Label"
|
6649 |
msgstr "Veranstaltungsort"
|
6650 |
|
6651 |
-
#: app/libraries/main.php:
|
6652 |
msgid "Organizer Plural Label"
|
6653 |
msgstr "Veranstalter"
|
6654 |
|
6655 |
-
#: app/libraries/main.php:
|
6656 |
msgid "Organizer Singular Label"
|
6657 |
msgstr "Veranstalter"
|
6658 |
|
6659 |
-
#: app/libraries/main.php:
|
6660 |
#, fuzzy
|
6661 |
#| msgid "Label Plural Label"
|
6662 |
msgid "Speaker Plural Label"
|
6663 |
msgstr "Labels"
|
6664 |
|
6665 |
-
#: app/libraries/main.php:
|
6666 |
#, fuzzy
|
6667 |
#| msgid "Label Singular Label"
|
6668 |
msgid "Speaker Singular Label"
|
6669 |
msgstr "Label"
|
6670 |
|
6671 |
-
#: app/libraries/main.php:
|
6672 |
msgid "Sunday abbreviation"
|
6673 |
msgstr "Sonntag Abkürzung"
|
6674 |
|
6675 |
-
#: app/libraries/main.php:
|
6676 |
msgid "Monday abbreviation"
|
6677 |
msgstr "Montag Abkürzung"
|
6678 |
|
6679 |
-
#: app/libraries/main.php:
|
6680 |
msgid "Tuesday abbreviation"
|
6681 |
msgstr "Dienstag Abkürzung"
|
6682 |
|
6683 |
-
#: app/libraries/main.php:
|
6684 |
msgid "Wednesday abbreviation"
|
6685 |
msgstr "Mittwoch Abkürzung"
|
6686 |
|
6687 |
-
#: app/libraries/main.php:
|
6688 |
msgid "Thursday abbreviation"
|
6689 |
msgstr "Donnerstag Abkürzung"
|
6690 |
|
6691 |
-
#: app/libraries/main.php:
|
6692 |
msgid "Friday abbreviation"
|
6693 |
msgstr "Freitag Abkürzung"
|
6694 |
|
6695 |
-
#: app/libraries/main.php:
|
6696 |
msgid "Saturday abbreviation"
|
6697 |
msgstr "Samstag Abkürzung "
|
6698 |
|
6699 |
-
#: app/libraries/main.php:
|
6700 |
msgid "Others"
|
6701 |
msgstr "Andere"
|
6702 |
|
6703 |
-
#: app/libraries/main.php:
|
6704 |
msgid "Booking Success Message"
|
6705 |
msgstr "Buchung erfolgreich Mitteilung"
|
6706 |
|
6707 |
-
#: app/libraries/main.php:
|
6708 |
msgid ""
|
6709 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
6710 |
"needed, please check your email."
|
@@ -6712,11 +6745,11 @@ msgstr ""
|
|
6712 |
"Vielen Dank für Ihre Buchung. Für die gebuchten Tickets ist ggf. eine "
|
6713 |
"Bestätigung durch Sie erforderlich. Bitte überprüfen Sie Ihre Emails."
|
6714 |
|
6715 |
-
#: app/libraries/main.php:
|
6716 |
msgid "Register Button"
|
6717 |
msgstr "Register Button"
|
6718 |
|
6719 |
-
#: app/libraries/main.php:
|
6720 |
#: app/skins/carousel/render.php:158 app/skins/carousel/render.php:194
|
6721 |
#: app/skins/grid/render.php:118 app/skins/grid/render.php:164
|
6722 |
#: app/skins/grid/render.php:207 app/skins/grid/render.php:235
|
@@ -6733,11 +6766,11 @@ msgstr "Register Button"
|
|
6733 |
msgid "REGISTER"
|
6734 |
msgstr "ANMELDEN"
|
6735 |
|
6736 |
-
#: app/libraries/main.php:
|
6737 |
msgid "View Detail Button"
|
6738 |
msgstr "Ansicht Detail Button"
|
6739 |
|
6740 |
-
#: app/libraries/main.php:
|
6741 |
#: app/skins/carousel/render.php:194 app/skins/grid/render.php:118
|
6742 |
#: app/skins/grid/render.php:164 app/skins/grid/render.php:207
|
6743 |
#: app/skins/grid/render.php:235 app/skins/list/render.php:111
|
@@ -6748,77 +6781,77 @@ msgstr "Ansicht Detail Button"
|
|
6748 |
msgid "View Detail"
|
6749 |
msgstr "Details "
|
6750 |
|
6751 |
-
#: app/libraries/main.php:
|
6752 |
msgid "Event Detail Button"
|
6753 |
msgstr "Event Detail Button"
|
6754 |
|
6755 |
-
#: app/libraries/main.php:
|
6756 |
msgid "Event Detail"
|
6757 |
msgstr "Veranstaltungsdetails"
|
6758 |
|
6759 |
-
#: app/libraries/main.php:
|
6760 |
msgid "More Info Link"
|
6761 |
msgstr "Link Mehr Informationen"
|
6762 |
|
6763 |
-
#: app/libraries/main.php:
|
6764 |
msgid "Ticket (Singular)"
|
6765 |
msgstr "Ticket"
|
6766 |
|
6767 |
-
#: app/libraries/main.php:
|
6768 |
msgid "Tickets (Plural)"
|
6769 |
msgstr "Tickets"
|
6770 |
|
6771 |
-
#: app/libraries/main.php:
|
6772 |
msgid "EventON"
|
6773 |
msgstr "EventON"
|
6774 |
|
6775 |
-
#: app/libraries/main.php:
|
6776 |
msgid "The Events Calendar"
|
6777 |
msgstr "The Events Calendar"
|
6778 |
|
6779 |
-
#: app/libraries/main.php:
|
6780 |
msgid "Events Schedule WP Plugin"
|
6781 |
msgstr "Event Zeitplan WP-Plugin"
|
6782 |
|
6783 |
-
#: app/libraries/main.php:
|
6784 |
msgid "Calendarize It"
|
6785 |
msgstr ""
|
6786 |
|
6787 |
-
#: app/libraries/main.php:
|
6788 |
#, fuzzy
|
6789 |
#| msgid "No Search Options"
|
6790 |
msgid "Event Espresso"
|
6791 |
msgstr "Keine Suchoptionen"
|
6792 |
|
6793 |
-
#: app/libraries/main.php:
|
6794 |
#, fuzzy
|
6795 |
#| msgid "Event Repeating"
|
6796 |
msgid "Events Manager (Recurring)"
|
6797 |
msgstr "Wiederholende Veranstaltung"
|
6798 |
|
6799 |
-
#: app/libraries/main.php:
|
6800 |
#, fuzzy
|
6801 |
#| msgid "Modern Events Calendar"
|
6802 |
msgid "Events Manager (Single)"
|
6803 |
msgstr "Moderner Event Kalender "
|
6804 |
|
6805 |
-
#: app/libraries/main.php:
|
6806 |
msgid "Confirmed"
|
6807 |
msgstr "Bestätigt"
|
6808 |
|
6809 |
-
#: app/libraries/main.php:
|
6810 |
msgid "Rejected"
|
6811 |
msgstr "Abgelehnt"
|
6812 |
|
6813 |
-
#: app/libraries/main.php:
|
6814 |
msgid "Pending"
|
6815 |
msgstr "Ausstehend"
|
6816 |
|
6817 |
-
#: app/libraries/main.php:
|
6818 |
msgid "Waiting"
|
6819 |
msgstr "in Bearbeitung"
|
6820 |
|
6821 |
-
#: app/libraries/main.php:
|
6822 |
msgid "Skin controller does not exist."
|
6823 |
msgstr "Skin contoller existiert nicht."
|
6824 |
|
@@ -6854,28 +6887,33 @@ msgstr "Eine neue Veranstaltung wurde hinzugefügt."
|
|
6854 |
msgid "Your event is published."
|
6855 |
msgstr "Die Veranstaltung wurde veröffentlicht."
|
6856 |
|
6857 |
-
#: app/libraries/notifications.php:
|
6858 |
-
|
|
|
|
|
|
|
|
|
|
|
6859 |
msgid "to"
|
6860 |
msgstr ""
|
6861 |
|
6862 |
-
#: app/libraries/notifications.php:
|
6863 |
msgid "+ Add to Google Calendar"
|
6864 |
msgstr "+ zum Google Calendar hinzufügen"
|
6865 |
|
6866 |
-
#: app/libraries/notifications.php:
|
6867 |
msgid "+ iCal export"
|
6868 |
msgstr "+ zu iCal exportieren"
|
6869 |
|
6870 |
-
#: app/libraries/notifications.php:
|
6871 |
msgid "Yes"
|
6872 |
msgstr "Ja"
|
6873 |
|
6874 |
-
#: app/libraries/notifications.php:
|
6875 |
msgid "No"
|
6876 |
msgstr "Nein"
|
6877 |
|
6878 |
-
#: app/libraries/skins.php:
|
6879 |
msgid "Ignore month and years"
|
6880 |
msgstr "Monat und Jahre ignorieren"
|
6881 |
|
@@ -7046,12 +7084,14 @@ msgstr "Sichtbarkeit"
|
|
7046 |
#: app/skins/grid/tpl.php:66 app/skins/list/tpl.php:67
|
7047 |
#: app/skins/list/tpl.php:71 app/skins/masonry/tpl.php:62
|
7048 |
#: app/skins/masonry/tpl.php:66 app/skins/slider/tpl.php:44
|
|
|
7049 |
msgid "No event found!"
|
7050 |
msgstr "Keine Veranstaltung gefunden"
|
7051 |
|
7052 |
#: app/skins/agenda/tpl.php:75 app/skins/custom/tpl.php:71
|
7053 |
#: app/skins/grid/tpl.php:71 app/skins/list/tpl.php:76
|
7054 |
-
#: app/skins/masonry/tpl.php:71 app/skins/
|
|
|
7055 |
msgid "Load More"
|
7056 |
msgstr "Weitere anzeigen"
|
7057 |
|
@@ -7082,7 +7122,7 @@ msgid "featured event"
|
|
7082 |
msgstr "Ausgewählte Veranstaltung"
|
7083 |
|
7084 |
#: app/skins/daily_view/render.php:104 app/skins/monthly_view/calendar.php:170
|
7085 |
-
#: app/skins/monthly_view/calendar_clean.php:
|
7086 |
#: app/skins/weekly_view/render.php:113
|
7087 |
#, fuzzy
|
7088 |
#| msgid "Sold out!"
|
@@ -7105,13 +7145,13 @@ msgstr "Alle"
|
|
7105 |
#: app/skins/monthly_view/calendar.php:68
|
7106 |
#: app/skins/monthly_view/calendar.php:182
|
7107 |
#: app/skins/monthly_view/calendar_clean.php:68
|
7108 |
-
#: app/skins/monthly_view/calendar_clean.php:
|
7109 |
#, php-format
|
7110 |
msgid "Events for %s"
|
7111 |
msgstr "Veranstaltungen für %s"
|
7112 |
|
7113 |
#: app/skins/monthly_view/calendar.php:184
|
7114 |
-
#: app/skins/monthly_view/calendar_clean.php:
|
7115 |
#: app/skins/timetable/render.php:113 app/skins/weekly_view/render.php:122
|
7116 |
msgid "No Events"
|
7117 |
msgstr "Keine Veranstaltungen"
|
@@ -7151,6 +7191,18 @@ msgstr "Keine Suchoptionen"
|
|
7151 |
msgid "Tags: "
|
7152 |
msgstr "Tags:"
|
7153 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7154 |
#: app/skins/timetable/modern.php:72 app/skins/weekly_view/tpl.php:72
|
7155 |
#, php-format
|
7156 |
msgid "Week %s"
|
@@ -7258,6 +7310,21 @@ msgstr "Webnus Team"
|
|
7258 |
msgid "http://webnus.net"
|
7259 |
msgstr "http://webnus.net"
|
7260 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7261 |
#~ msgid "Booking reminder notification is not enabled!"
|
7262 |
#~ msgstr "Die Erinnerung für die Buchungserinnerung ist nicht aktiviert!"
|
7263 |
|
@@ -7326,9 +7393,6 @@ msgstr "http://webnus.net"
|
|
7326 |
#~ msgid "Gateway"
|
7327 |
#~ msgstr "Gateway"
|
7328 |
|
7329 |
-
#~ msgid "%s to %s"
|
7330 |
-
#~ msgstr "%s zu %s"
|
7331 |
-
|
7332 |
#, fuzzy
|
7333 |
#~| msgid "Booking cancellation link."
|
7334 |
#~ msgid "Cancellation Date"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: ME Calender\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2019-11-25 10:19+0330\n"
|
6 |
+
"PO-Revision-Date: 2019-11-25 10:20+0330\n"
|
7 |
"Last-Translator: Jogon <koenig@kafinanz.de>\n"
|
8 |
"Language-Team: German\n"
|
9 |
"Language: de_DE\n"
|
73 |
msgstr "Farbe der Veranstaltung"
|
74 |
|
75 |
#: app/features/contextual.php:55 app/features/mec.php:348
|
76 |
+
#: app/features/mec/dashboard.php:134 app/features/mec/support-page.php:197
|
77 |
+
#: app/features/mec/support.php:20 app/libraries/main.php:590
|
78 |
msgid "Settings"
|
79 |
msgstr "Einstellungen"
|
80 |
|
81 |
#: app/features/contextual.php:62 app/features/events.php:2415
|
82 |
#: app/features/mec/booking.php:439 app/features/mec/support.php:29
|
83 |
+
#: app/libraries/main.php:556
|
84 |
msgid "Booking Form"
|
85 |
msgstr "Buchungsformular"
|
86 |
|
99 |
"YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
|
100 |
|
101 |
#: app/features/contextual.php:70 app/features/mec/booking.php:557
|
102 |
+
#: app/features/mec/support.php:36 app/libraries/main.php:557
|
103 |
msgid "Payment Gateways"
|
104 |
msgstr "Zahlungs-Gateways"
|
105 |
|
114 |
"\"0\" allowfullscreen></iframe>"
|
115 |
|
116 |
#: app/features/contextual.php:77 app/features/mec/support.php:45
|
117 |
+
#: app/libraries/main.php:738
|
118 |
msgid "Notifications"
|
119 |
msgstr "Benachrichtigungen"
|
120 |
|
194 |
"\"0\" allowfullscreen></iframe>"
|
195 |
|
196 |
#: app/features/contextual.php:117 app/features/mec/settings.php:73
|
197 |
+
#: app/libraries/main.php:530
|
198 |
msgid "General Options"
|
199 |
msgstr "Allgemeine Einstellungen"
|
200 |
|
201 |
#: app/features/contextual.php:139 app/features/mec/settings.php:405
|
202 |
+
#: app/libraries/main.php:532
|
203 |
msgid "Slugs/Permalinks"
|
204 |
msgstr "Slug/Permalinks"
|
205 |
|
208 |
msgstr "Event Details / Einzelveranstaltungsseite"
|
209 |
|
210 |
#: app/features/contextual.php:166 app/features/mec/settings.php:437
|
211 |
+
#: app/libraries/main.php:533
|
212 |
msgid "Currency Options"
|
213 |
msgstr "Währungseinstellungen"
|
214 |
|
215 |
#: app/features/contextual.php:182 app/features/mec/modules.php:67
|
216 |
+
#: app/features/mec/modules.php:85 app/libraries/main.php:562
|
217 |
msgid "Google Maps Options"
|
218 |
msgstr "Google Maps Einstellungen"
|
219 |
|
220 |
#: app/features/contextual.php:244 app/features/mec/settings.php:494
|
221 |
+
#: app/libraries/main.php:534
|
222 |
msgid "Google Recaptcha Options"
|
223 |
msgstr "Google Recaptcha Einstellungen"
|
224 |
|
225 |
#: app/features/contextual.php:258 app/features/mec/single.php:133
|
226 |
+
#: app/libraries/main.php:544
|
227 |
msgid "Countdown Options"
|
228 |
msgstr "Countdown Einstellungsoptionen"
|
229 |
|
230 |
#: app/features/contextual.php:268 app/features/mec/modules.php:263
|
231 |
+
#: app/libraries/main.php:567
|
232 |
msgid "Social Networks"
|
233 |
msgstr "Soziale Netzwerke"
|
234 |
|
237 |
msgstr "Nächstes Veranstaltung Modul"
|
238 |
|
239 |
#: app/features/contextual.php:286 app/features/mec/settings.php:530
|
240 |
+
#: app/libraries/main.php:535
|
241 |
msgid "Frontend Event Submission"
|
242 |
msgstr "Erstellung von Veranstaltungen im Frontend"
|
243 |
|
244 |
#: app/features/contextual.php:298 app/features/events.php:325
|
245 |
+
#: app/libraries/main.php:545
|
246 |
msgid "Exceptional Days"
|
247 |
msgstr "Herausgenommene Tage "
|
248 |
|
249 |
#: app/features/contextual.php:308 app/features/events.php:298
|
250 |
#: app/features/mec/booking.php:88 app/features/mec/notifications.php:35
|
251 |
+
#: app/libraries/main.php:552 app/libraries/main.php:573
|
252 |
+
#: app/libraries/main.php:655
|
253 |
msgid "Booking"
|
254 |
msgstr "Buchung / Reservierung"
|
255 |
|
256 |
#: app/features/contextual.php:318 app/features/mec/booking.php:261
|
257 |
+
#: app/libraries/main.php:553
|
258 |
msgid "Coupons"
|
259 |
msgstr "Gutscheine"
|
260 |
|
261 |
#: app/features/contextual.php:326 app/features/mec/modules.php:324
|
262 |
+
#: app/libraries/main.php:569
|
263 |
msgid "BuddyPress Integration"
|
264 |
msgstr "Buddy Press Integration"
|
265 |
|
266 |
#: app/features/contextual.php:334 app/features/mec/settings.php:823
|
267 |
+
#: app/libraries/main.php:538
|
268 |
msgid "Mailchimp Integration"
|
269 |
msgstr "Mailchimp Integration"
|
270 |
|
273 |
msgstr "MEC Aktivierung"
|
274 |
|
275 |
#: app/features/events.php:150 app/features/ix/export.php:34
|
276 |
+
#: app/features/mec/dashboard.php:255 app/skins/daily_view/tpl.php:79
|
277 |
#: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
|
278 |
msgid "Events"
|
279 |
msgstr "Veranstaltungen"
|
280 |
|
281 |
#: app/features/events.php:151 app/features/fes.php:223
|
282 |
+
#: app/features/mec/meta_boxes/display_options.php:959
|
283 |
+
#: app/features/mec/meta_boxes/display_options.php:1015
|
284 |
+
#: app/features/mec/meta_boxes/display_options.php:1050
|
285 |
#: app/features/profile/profile.php:50 app/skins/daily_view/tpl.php:80
|
286 |
#: app/skins/monthly_view/tpl.php:71 app/skins/yearly_view/tpl.php:69
|
287 |
msgid "Event"
|
317 |
msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
|
318 |
|
319 |
#: app/features/events.php:175 app/features/events.php:3241
|
320 |
+
#: app/features/mec/meta_boxes/display_options.php:870
|
321 |
#: app/features/mec/meta_boxes/search_form.php:31
|
322 |
#: app/features/mec/meta_boxes/search_form.php:93
|
323 |
#: app/features/mec/meta_boxes/search_form.php:155
|
329 |
#: app/features/mec/meta_boxes/search_form.php:514
|
330 |
#: app/features/mec/meta_boxes/search_form.php:575
|
331 |
#: app/features/mec/settings.php:776 app/features/mec/single.php:204
|
332 |
+
#: app/features/search.php:67 app/libraries/main.php:4919
|
333 |
+
#: app/libraries/skins.php:811 app/skins/single.php:561
|
334 |
#: app/skins/single/default.php:185 app/skins/single/default.php:397
|
335 |
#: app/skins/single/m1.php:170 app/skins/single/m2.php:102
|
336 |
#: app/skins/single/modern.php:110
|
339 |
|
340 |
#: app/features/events.php:176 app/features/events.php:3212
|
341 |
#: app/features/fes/form.php:746 app/features/mec.php:336
|
342 |
+
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:4918
|
343 |
msgid "Categories"
|
344 |
msgstr "Kategorien"
|
345 |
|
447 |
#: app/features/events.php:329 app/features/events.php:3243
|
448 |
#: app/features/events.php:3434 app/features/events.php:3476
|
449 |
#: app/features/ix.php:3373 app/features/ix.php:3414
|
450 |
+
#: app/features/mec/meta_boxes/display_options.php:873
|
451 |
#: app/features/mec/meta_boxes/search_form.php:45
|
452 |
#: app/features/mec/meta_boxes/search_form.php:107
|
453 |
#: app/features/mec/meta_boxes/search_form.php:169
|
462 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
463 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
464 |
#: app/features/organizers.php:271 app/features/search.php:75
|
465 |
+
#: app/libraries/main.php:4925 app/libraries/skins.php:863
|
466 |
#: app/skins/single.php:797 app/skins/single/default.php:210
|
467 |
#: app/skins/single/default.php:422 app/skins/single/m1.php:90
|
468 |
#: app/skins/single/m2.php:22 app/skins/single/modern.php:31
|
470 |
msgstr "Veranstalter"
|
471 |
|
472 |
#: app/features/events.php:330 app/features/events.php:1157
|
473 |
+
#: app/features/fes/form.php:719 app/libraries/main.php:4952
|
474 |
#: app/skins/single.php:584 app/skins/single/default.php:119
|
475 |
#: app/skins/single/default.php:331 app/skins/single/m1.php:49
|
476 |
#: app/skins/single/modern.php:199
|
489 |
#: app/features/fes.php:223 app/features/fes/form.php:678
|
490 |
#: app/features/labels.php:178 app/features/mec/booking.php:45
|
491 |
#: app/features/organizers.php:279 app/features/profile/profile.php:180
|
492 |
+
#: app/libraries/notifications.php:919 app/modules/booking/steps/form.php:37
|
493 |
msgid "Name"
|
494 |
msgstr "Name"
|
495 |
|
499 |
#: app/features/mec/booking.php:490 app/features/organizers.php:111
|
500 |
#: app/features/organizers.php:152 app/features/profile/profile.php:183
|
501 |
#: app/features/speakers.php:126 app/features/speakers.php:187
|
502 |
+
#: app/libraries/main.php:1474 app/libraries/main.php:1543
|
503 |
+
#: app/libraries/main.php:2605 app/libraries/notifications.php:920
|
504 |
#: app/modules/booking/steps/form.php:46 app/modules/booking/steps/form.php:84
|
505 |
#: app/skins/single.php:814 app/skins/single.php:869
|
506 |
#: app/skins/single/default.php:227 app/skins/single/default.php:439
|
518 |
#: app/features/events.php:3476 app/features/fes/form.php:246
|
519 |
#: app/features/fes/form.php:250 app/features/ix.php:3373
|
520 |
#: app/features/ix.php:3414 app/features/ix/import_g_calendar.php:38
|
521 |
+
#: app/features/mec/dashboard.php:399
|
522 |
#: app/features/mec/meta_boxes/display_options.php:48
|
523 |
+
#: app/features/mec/meta_boxes/display_options.php:214
|
524 |
+
#: app/features/mec/meta_boxes/display_options.php:379
|
525 |
+
#: app/features/mec/meta_boxes/display_options.php:434
|
526 |
+
#: app/features/mec/meta_boxes/display_options.php:557
|
527 |
+
#: app/features/mec/meta_boxes/display_options.php:611
|
528 |
+
#: app/features/mec/meta_boxes/display_options.php:658
|
529 |
+
#: app/features/mec/meta_boxes/display_options.php:691
|
530 |
+
#: app/features/mec/meta_boxes/display_options.php:726
|
531 |
+
#: app/features/mec/meta_boxes/display_options.php:772
|
532 |
+
#: app/features/mec/meta_boxes/display_options.php:838
|
533 |
+
#: app/features/mec/meta_boxes/display_options.php:1073
|
534 |
+
#: app/features/mec/meta_boxes/display_options.php:1160
|
535 |
+
#: app/features/mec/meta_boxes/display_options.php:1252
|
536 |
msgid "Start Date"
|
537 |
msgstr "Start Datum"
|
538 |
|
555 |
#: app/features/events.php:3476 app/features/fes/form.php:286
|
556 |
#: app/features/fes/form.php:290 app/features/ix.php:3373
|
557 |
#: app/features/ix.php:3414 app/features/ix/import_g_calendar.php:44
|
558 |
+
#: app/features/mec/dashboard.php:400
|
559 |
msgid "End Date"
|
560 |
msgstr "Ende Datum"
|
561 |
|
608 |
#: app/features/mec/meta_boxes/display_options.php:92
|
609 |
#: app/features/mec/meta_boxes/display_options.php:103
|
610 |
#: app/features/mec/meta_boxes/display_options.php:115
|
611 |
+
#: app/features/mec/meta_boxes/display_options.php:232
|
612 |
+
#: app/features/mec/meta_boxes/display_options.php:244
|
|
|
613 |
#: app/features/mec/meta_boxes/display_options.php:256
|
614 |
+
#: app/features/mec/meta_boxes/display_options.php:269
|
615 |
#: app/features/mec/meta_boxes/display_options.php:280
|
616 |
+
#: app/features/mec/meta_boxes/display_options.php:293
|
617 |
+
#: app/features/mec/meta_boxes/display_options.php:304
|
618 |
+
#: app/features/mec/meta_boxes/display_options.php:398
|
619 |
+
#: app/features/mec/meta_boxes/display_options.php:574
|
620 |
+
#: app/features/mec/meta_boxes/display_options.php:857
|
621 |
+
#: app/features/mec/meta_boxes/display_options.php:930
|
622 |
+
#: app/features/mec/meta_boxes/display_options.php:942
|
623 |
+
#: app/features/mec/meta_boxes/display_options.php:953
|
624 |
+
#: app/features/mec/meta_boxes/display_options.php:985
|
625 |
+
#: app/features/mec/meta_boxes/display_options.php:996
|
626 |
+
#: app/features/mec/meta_boxes/display_options.php:1009
|
627 |
+
#: app/features/mec/meta_boxes/display_options.php:1044
|
628 |
+
#: app/features/mec/meta_boxes/display_options.php:1093
|
629 |
+
#: app/features/mec/meta_boxes/display_options.php:1104
|
630 |
+
#: app/features/mec/meta_boxes/display_options.php:1115
|
|
|
631 |
#: app/features/mec/meta_boxes/display_options.php:1180
|
632 |
#: app/features/mec/meta_boxes/display_options.php:1193
|
633 |
#: app/features/mec/meta_boxes/display_options.php:1206
|
634 |
+
#: app/features/mec/meta_boxes/display_options.php:1219
|
635 |
+
#: app/features/mec/meta_boxes/display_options.php:1232
|
636 |
+
#: app/features/mec/meta_boxes/display_options.php:1270
|
637 |
#: app/features/mec/modules.php:53 app/features/mec/modules.php:86
|
638 |
#: app/features/mec/modules.php:103 app/features/mec/modules.php:138
|
639 |
#: app/features/mec/modules.php:154 app/features/mec/modules.php:312
|
683 |
msgstr "Wiederholend"
|
684 |
|
685 |
#: app/features/events.php:738 app/features/fes/form.php:348
|
686 |
+
#: app/features/mec/dashboard.php:402
|
687 |
#: app/skins/default_full_calendar/tpl.php:69
|
688 |
#: app/skins/full_calendar/tpl.php:110
|
689 |
msgid "Daily"
|
708 |
msgstr "Wöchentlich"
|
709 |
|
710 |
#: app/features/events.php:773 app/features/fes/form.php:353
|
711 |
+
#: app/features/mec/dashboard.php:403
|
712 |
#: app/skins/default_full_calendar/tpl.php:67
|
713 |
#: app/skins/full_calendar/tpl.php:108
|
714 |
msgid "Monthly"
|
715 |
msgstr "Monatlich"
|
716 |
|
717 |
#: app/features/events.php:780 app/features/fes/form.php:354
|
718 |
+
#: app/features/mec/dashboard.php:404
|
719 |
#: app/skins/default_full_calendar/tpl.php:66
|
720 |
#: app/skins/full_calendar/tpl.php:107
|
721 |
msgid "Yearly"
|
841 |
#: app/features/events.php:1153 app/features/events.php:3434
|
842 |
#: app/features/events.php:3476 app/features/fes/form.php:716
|
843 |
#: app/features/ix.php:3373 app/features/ix.php:3414
|
844 |
+
#: app/features/mec/settings.php:632 app/libraries/main.php:4951
|
845 |
#: app/widgets/single.php:103
|
846 |
msgid "Event Cost"
|
847 |
msgstr ""
|
859 |
|
860 |
#: app/features/events.php:1189 app/features/events.php:2485
|
861 |
#: app/features/fes.php:223 app/features/mec/booking.php:491
|
862 |
+
#: app/features/profile/profile.php:53 app/libraries/main.php:2061
|
863 |
+
#: app/libraries/main.php:2663 app/modules/booking/steps/tickets.php:22
|
864 |
#: app/modules/next-event/details.php:90 app/skins/single.php:639
|
865 |
#: app/skins/single/default.php:83 app/skins/single/default.php:295
|
866 |
#: app/skins/single/m1.php:16 app/skins/single/modern.php:166
|
913 |
#: app/features/events.php:2301 app/features/events.php:2343
|
914 |
#: app/features/mec/booking.php:318 app/features/mec/booking.php:347
|
915 |
#: app/features/mec/booking.php:398 app/features/mec/booking.php:430
|
916 |
+
#: app/libraries/main.php:2524 app/libraries/main.php:2554
|
917 |
+
#: app/libraries/main.php:2583 app/libraries/main.php:2613
|
918 |
+
#: app/libraries/main.php:2642 app/libraries/main.php:2671
|
919 |
+
#: app/libraries/main.php:2700 app/libraries/main.php:2729
|
920 |
+
#: app/libraries/main.php:2751 app/libraries/main.php:2782
|
921 |
+
#: app/libraries/main.php:2826 app/libraries/main.php:2870
|
922 |
+
#: app/libraries/main.php:2917 app/libraries/main.php:2956
|
923 |
msgid "Remove"
|
924 |
msgstr "Entfernen"
|
925 |
|
947 |
#: app/features/events.php:1430 app/features/fes/form.php:840
|
948 |
#: app/features/mec.php:344 app/features/mec/modules.php:52
|
949 |
#: app/features/mec/settings.php:680 app/features/speakers.php:62
|
950 |
+
#: app/libraries/main.php:561 app/libraries/main.php:4926
|
951 |
#: app/modules/speakers/details.php:18
|
952 |
msgid "Speakers"
|
953 |
msgstr ""
|
964 |
msgstr "Veranstaltungslinks"
|
965 |
|
966 |
#: app/features/events.php:1464 app/features/events.php:1470
|
967 |
+
#: app/features/fes/form.php:695 app/libraries/main.php:4949
|
968 |
msgid "Event Link"
|
969 |
msgstr "Veranstaltungslink"
|
970 |
|
992 |
msgstr ""
|
993 |
|
994 |
#: app/features/events.php:1480 app/features/events.php:1493
|
995 |
+
#: app/features/fes/form.php:700 app/libraries/main.php:4950
|
996 |
#: app/skins/single.php:658 app/skins/single/default.php:133
|
997 |
#: app/skins/single/default.php:345 app/skins/single/m1.php:191
|
998 |
#: app/skins/single/m2.php:124 app/skins/single/modern.php:132
|
1066 |
msgstr ""
|
1067 |
|
1068 |
#: app/features/events.php:1638 app/libraries/book.php:60
|
1069 |
+
#: app/libraries/main.php:4954 app/modules/booking/steps/tickets.php:40
|
1070 |
msgid "Tickets"
|
1071 |
msgstr "Tickets"
|
1072 |
|
1129 |
|
1130 |
#: app/features/events.php:1874 app/features/events.php:1900
|
1131 |
#: app/features/events.php:2057 app/features/labels.php:60
|
1132 |
+
#: app/features/mec/meta_boxes/display_options.php:871
|
1133 |
#: app/features/mec/meta_boxes/search_form.php:66
|
1134 |
#: app/features/mec/meta_boxes/search_form.php:128
|
1135 |
#: app/features/mec/meta_boxes/search_form.php:190
|
1141 |
#: app/features/mec/meta_boxes/search_form.php:549
|
1142 |
#: app/features/mec/meta_boxes/search_form.php:610
|
1143 |
#: app/features/mec/settings.php:808 app/features/mec/single.php:222
|
1144 |
+
#: app/libraries/skins.php:941
|
1145 |
msgid "Label"
|
1146 |
msgstr "Label"
|
1147 |
|
1211 |
msgstr ""
|
1212 |
|
1213 |
#: app/features/events.php:2481 app/features/mec/booking.php:487
|
1214 |
+
#: app/libraries/main.php:2546
|
1215 |
#, fuzzy
|
1216 |
#| msgid "Name"
|
1217 |
msgid "MEC Name"
|
1218 |
msgstr "Name"
|
1219 |
|
1220 |
#: app/features/events.php:2482 app/features/mec/booking.php:488
|
1221 |
+
#: app/libraries/main.php:2575
|
1222 |
#, fuzzy
|
1223 |
#| msgid "Email"
|
1224 |
msgid "MEC Email"
|
1225 |
msgstr "Email"
|
1226 |
|
1227 |
#: app/features/events.php:2483 app/features/mec/booking.php:489
|
1228 |
+
#: app/libraries/main.php:2516
|
1229 |
msgid "Text"
|
1230 |
msgstr "Text"
|
1231 |
|
1232 |
#: app/features/events.php:2486 app/features/mec/booking.php:492
|
1233 |
#: app/features/organizers.php:103 app/features/organizers.php:148
|
1234 |
#: app/features/speakers.php:118 app/features/speakers.php:183
|
1235 |
+
#: app/features/speakers.php:256 app/libraries/main.php:2692
|
1236 |
msgid "Tel"
|
1237 |
msgstr "Tel"
|
1238 |
|
1239 |
#: app/features/events.php:2487 app/features/mec/booking.php:493
|
1240 |
+
#: app/libraries/main.php:2634
|
1241 |
msgid "File"
|
1242 |
msgstr ""
|
1243 |
|
1244 |
#: app/features/events.php:2488 app/features/mec/booking.php:494
|
1245 |
+
#: app/libraries/main.php:2721
|
1246 |
msgid "Textarea"
|
1247 |
msgstr "Textbereich"
|
1248 |
|
1249 |
#: app/features/events.php:2489 app/features/mec/booking.php:495
|
1250 |
+
#: app/libraries/main.php:2774
|
1251 |
msgid "Checkboxes"
|
1252 |
msgstr "Checkboxes"
|
1253 |
|
1254 |
#: app/features/events.php:2490 app/features/mec/booking.php:496
|
1255 |
+
#: app/libraries/main.php:2818
|
1256 |
msgid "Radio Buttons"
|
1257 |
msgstr "Radio Buttons"
|
1258 |
|
1325 |
#: app/features/mec/meta_boxes/search_form.php:599
|
1326 |
#: app/features/mec/meta_boxes/search_form.php:606
|
1327 |
#: app/features/mec/meta_boxes/search_form.php:613
|
1328 |
+
#: app/features/mec/meta_boxes/search_form.php:620 app/libraries/main.php:2862
|
1329 |
msgid "Dropdown"
|
1330 |
msgstr "Dropdown"
|
1331 |
|
1332 |
#: app/features/events.php:2492 app/features/mec/booking.php:498
|
1333 |
+
#: app/libraries/main.php:2909
|
1334 |
msgid "Agreement"
|
1335 |
msgstr "Zustimmung"
|
1336 |
|
1337 |
#: app/features/events.php:2493 app/features/mec/booking.php:499
|
1338 |
+
#: app/libraries/main.php:2750
|
1339 |
msgid "Paragraph"
|
1340 |
msgstr "Absatz"
|
1341 |
|
1362 |
#: app/features/ix.php:3414 app/features/locations.php:58
|
1363 |
#: app/features/locations.php:230 app/features/locations.php:287
|
1364 |
#: app/features/locations.php:289 app/features/locations.php:298
|
1365 |
+
#: app/features/mec/meta_boxes/display_options.php:872
|
1366 |
#: app/features/mec/meta_boxes/search_form.php:38
|
1367 |
#: app/features/mec/meta_boxes/search_form.php:100
|
1368 |
#: app/features/mec/meta_boxes/search_form.php:162
|
1374 |
#: app/features/mec/meta_boxes/search_form.php:521
|
1375 |
#: app/features/mec/meta_boxes/search_form.php:582
|
1376 |
#: app/features/mec/settings.php:782 app/features/mec/single.php:212
|
1377 |
+
#: app/features/search.php:71 app/libraries/main.php:2055
|
1378 |
+
#: app/libraries/main.php:4923 app/libraries/skins.php:837
|
1379 |
#: app/skins/single.php:488 app/skins/single.php:909
|
1380 |
#: app/skins/single/default.php:169 app/skins/single/default.php:381
|
1381 |
#: app/skins/single/m1.php:155 app/skins/single/m2.php:87
|
1472 |
msgstr "Die Veranstaltung wurde entfernt."
|
1473 |
|
1474 |
#: app/features/fes.php:223 app/features/profile/profile.php:186
|
1475 |
+
#: app/libraries/main.php:2090 app/libraries/main.php:4953
|
1476 |
msgid "Ticket"
|
1477 |
msgstr "Ticket"
|
1478 |
|
1479 |
+
#: app/features/fes.php:223 app/libraries/main.php:2067
|
1480 |
msgid "Transaction ID"
|
1481 |
msgstr "Transaktions-ID"
|
1482 |
|
1484 |
msgid "Total Price"
|
1485 |
msgstr ""
|
1486 |
|
1487 |
+
#: app/features/fes.php:223
|
1488 |
+
#, fuzzy
|
1489 |
+
#| msgid "Verification"
|
1490 |
+
msgid "Ticket Variation"
|
1491 |
+
msgstr "Verifizierung"
|
1492 |
+
|
1493 |
#: app/features/fes.php:223
|
1494 |
msgid "Confirmation"
|
1495 |
msgstr "Bestätigung"
|
1498 |
msgid "Verification"
|
1499 |
msgstr "Verifizierung"
|
1500 |
|
1501 |
+
#: app/features/fes.php:303
|
1502 |
msgid "Unknown"
|
1503 |
msgstr "Unbekannt"
|
1504 |
|
1505 |
+
#: app/features/fes.php:362
|
1506 |
msgid "The image is uploaded!"
|
1507 |
msgstr "Das Bild ist hochgeladen"
|
1508 |
|
1509 |
+
#: app/features/fes.php:388
|
1510 |
msgid "Captcha is invalid! Please try again."
|
1511 |
msgstr "Das eingegebene Captcha ist ungültig! Bitte versuchen Sie es erneut."
|
1512 |
|
1513 |
+
#: app/features/fes.php:416
|
1514 |
msgid "Please fill event title field!"
|
1515 |
msgstr "Bitte füllen Sie das Event Titelfeld"
|
1516 |
|
1517 |
+
#: app/features/fes.php:1035
|
1518 |
msgid "The event submitted. It will publish as soon as possible."
|
1519 |
msgstr ""
|
1520 |
"Die Veranstaltung wurde übermittelt. Sie wird sobald wie möglich "
|
1521 |
"veröffentlicht werden."
|
1522 |
|
1523 |
+
#: app/features/fes.php:1036
|
1524 |
msgid "The event published."
|
1525 |
msgstr "Die Veranstaltung wurde veröffentlicht."
|
1526 |
|
1531 |
msgstr "Zurück zur Liste der Veranstaltungen"
|
1532 |
|
1533 |
#: app/features/fes/form.php:365
|
1534 |
+
#: app/features/mec/meta_boxes/display_options.php:802
|
1535 |
+
#: app/libraries/main.php:409
|
1536 |
msgid "Monday"
|
1537 |
msgstr "Montag"
|
1538 |
|
1539 |
#: app/features/fes/form.php:366
|
1540 |
+
#: app/features/mec/meta_boxes/display_options.php:803
|
1541 |
+
#: app/libraries/main.php:409
|
1542 |
msgid "Tuesday"
|
1543 |
msgstr "Dienstag"
|
1544 |
|
1545 |
#: app/features/fes/form.php:367
|
1546 |
+
#: app/features/mec/meta_boxes/display_options.php:804
|
1547 |
+
#: app/libraries/main.php:409
|
1548 |
msgid "Wednesday"
|
1549 |
msgstr "Mittwoch"
|
1550 |
|
1551 |
#: app/features/fes/form.php:368
|
1552 |
+
#: app/features/mec/meta_boxes/display_options.php:805
|
1553 |
+
#: app/libraries/main.php:409
|
1554 |
msgid "Thursday"
|
1555 |
msgstr "Donnerstag"
|
1556 |
|
1557 |
#: app/features/fes/form.php:369
|
1558 |
+
#: app/features/mec/meta_boxes/display_options.php:806
|
1559 |
+
#: app/libraries/main.php:409
|
1560 |
msgid "Friday"
|
1561 |
msgstr "Freitag"
|
1562 |
|
1563 |
#: app/features/fes/form.php:370
|
1564 |
+
#: app/features/mec/meta_boxes/display_options.php:807
|
1565 |
+
#: app/libraries/main.php:409
|
1566 |
msgid "Saturday"
|
1567 |
msgstr "Samstag"
|
1568 |
|
1569 |
#: app/features/fes/form.php:371
|
1570 |
+
#: app/features/mec/meta_boxes/display_options.php:801
|
1571 |
+
#: app/libraries/main.php:409
|
1572 |
msgid "Sunday"
|
1573 |
msgstr "Sonntag"
|
1574 |
|
1611 |
|
1612 |
#: app/features/fes/form.php:772 app/features/labels.php:61
|
1613 |
#: app/features/labels.php:221 app/features/mec.php:337
|
1614 |
+
#: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:4920
|
1615 |
#: app/skins/single.php:687 app/skins/single/default.php:148
|
1616 |
#: app/skins/single/default.php:360 app/skins/single/m1.php:64
|
1617 |
#: app/skins/single/modern.php:214
|
1672 |
msgstr "MEC - Import / Export"
|
1673 |
|
1674 |
#: app/features/ix.php:107 app/features/mec/support.php:73
|
1675 |
+
#: app/libraries/main.php:798
|
1676 |
msgid "Import / Export"
|
1677 |
msgstr "Import / Export"
|
1678 |
|
2007 |
#: app/features/mec/booking.php:264 app/features/mec/booking.php:282
|
2008 |
#: app/features/mec/booking.php:359
|
2009 |
#: app/features/mec/meta_boxes/display_options.php:162
|
2010 |
+
#: app/features/mec/meta_boxes/display_options.php:340
|
2011 |
#: app/features/mec/modules.php:70 app/features/mec/modules.php:211
|
2012 |
#: app/features/mec/modules.php:228
|
2013 |
#, php-format
|
2018 |
#: app/features/mec/booking.php:91 app/features/mec/booking.php:264
|
2019 |
#: app/features/mec/booking.php:282 app/features/mec/booking.php:359
|
2020 |
#: app/features/mec/meta_boxes/display_options.php:162
|
2021 |
+
#: app/features/mec/meta_boxes/display_options.php:340
|
2022 |
+
#: app/features/mec/meta_boxes/display_options.php:368
|
2023 |
+
#: app/features/mec/meta_boxes/display_options.php:495
|
2024 |
+
#: app/features/mec/meta_boxes/display_options.php:546
|
2025 |
+
#: app/features/mec/meta_boxes/display_options.php:653
|
2026 |
+
#: app/features/mec/meta_boxes/display_options.php:760
|
2027 |
+
#: app/features/mec/meta_boxes/display_options.php:833
|
2028 |
+
#: app/features/mec/meta_boxes/display_options.php:1033
|
2029 |
#: app/features/mec/modules.php:70 app/features/mec/modules.php:211
|
2030 |
#: app/features/mec/modules.php:228
|
2031 |
msgid "Pro version of Modern Events Calendar"
|
2209 |
msgstr "Auto Synchronisation"
|
2210 |
|
2211 |
#: app/features/ix/sync.php:22
|
2212 |
+
#: app/features/mec/meta_boxes/display_options.php:833
|
2213 |
#, php-format
|
2214 |
msgid "%s is required to use synchronization feature."
|
2215 |
msgstr ""
|
2390 |
|
2391 |
#: app/features/labels.php:112 app/features/labels.php:139
|
2392 |
#: app/features/mec/meta_boxes/display_options.php:38
|
2393 |
+
#: app/features/mec/meta_boxes/display_options.php:202
|
2394 |
+
#: app/features/mec/meta_boxes/display_options.php:373
|
2395 |
+
#: app/features/mec/meta_boxes/display_options.php:551
|
2396 |
+
#: app/features/mec/meta_boxes/display_options.php:601
|
2397 |
+
#: app/features/mec/meta_boxes/display_options.php:765
|
2398 |
+
#: app/features/mec/meta_boxes/display_options.php:915
|
2399 |
+
#: app/features/mec/meta_boxes/display_options.php:972
|
2400 |
+
#: app/features/mec/meta_boxes/display_options.php:1064
|
2401 |
+
#: app/features/mec/meta_boxes/display_options.php:1150
|
2402 |
msgid "Style"
|
2403 |
msgstr "Style"
|
2404 |
|
2414 |
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:107
|
2415 |
#: app/skins/monthly_view/calendar_clean.php:107
|
2416 |
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:45
|
2417 |
+
#: app/skins/timeline/render.php:43 app/skins/timetable/render.php:33
|
2418 |
+
#: app/skins/timetable/render.php:139 app/skins/weekly_view/render.php:56
|
2419 |
+
#: app/skins/yearly_view/render.php:48
|
2420 |
#, fuzzy
|
2421 |
#| msgid "Featured Image"
|
2422 |
msgid "Featured"
|
2423 |
msgstr "Ausgewähltes Bild"
|
2424 |
|
2425 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2426 |
+
#: app/libraries/main.php:5169 app/skins/agenda/render.php:41
|
2427 |
#: app/skins/available_spot/tpl.php:42 app/skins/carousel/render.php:45
|
2428 |
#: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:32
|
2429 |
#: app/skins/daily_view/render.php:52 app/skins/grid/render.php:50
|
2431 |
#: app/skins/monthly_view/calendar.php:111
|
2432 |
#: app/skins/monthly_view/calendar_clean.php:111
|
2433 |
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:46
|
2434 |
+
#: app/skins/timeline/render.php:47 app/skins/timetable/render.php:37
|
2435 |
+
#: app/skins/timetable/render.php:140 app/skins/weekly_view/render.php:60
|
2436 |
+
#: app/skins/yearly_view/render.php:52
|
2437 |
msgid "Canceled"
|
2438 |
msgstr "Abgesagt"
|
2439 |
|
2458 |
msgstr "Event %s"
|
2459 |
|
2460 |
#: app/features/locations.php:59 app/features/mec.php:338
|
2461 |
+
#: app/features/mec/dashboard.php:269 app/features/mec/meta_boxes/filter.php:96
|
2462 |
+
#: app/libraries/main.php:4922
|
2463 |
msgid "Locations"
|
2464 |
msgstr "Orte"
|
2465 |
|
2571 |
msgid "Don't show map in single event page"
|
2572 |
msgstr "Karte in Einzelansicht nicht anzeigen"
|
2573 |
|
2574 |
+
#: app/features/locations.php:356 app/libraries/main.php:4956
|
2575 |
#, fuzzy
|
2576 |
#| msgid "Locations"
|
2577 |
msgid "Other Locations"
|
2630 |
msgid "Support"
|
2631 |
msgstr "Support"
|
2632 |
|
2633 |
+
#: app/features/mec.php:339 app/features/mec/dashboard.php:276
|
2634 |
#: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
|
2635 |
+
#: app/libraries/main.php:4924
|
2636 |
msgid "Organizers"
|
2637 |
msgstr "Veranstalter"
|
2638 |
|
2639 |
#: app/features/mec.php:347 app/features/mec.php:367
|
2640 |
+
#: app/features/mec/dashboard.php:262
|
2641 |
msgid "Shortcodes"
|
2642 |
msgstr "Shortcodes"
|
2643 |
|
2726 |
#: app/features/mec/booking.php:70 app/features/mec/messages.php:13
|
2727 |
#: app/features/mec/modules.php:23 app/features/mec/notifications.php:12
|
2728 |
#: app/features/mec/settings.php:53 app/features/mec/single.php:15
|
2729 |
+
#: app/features/mec/styling.php:35
|
2730 |
#, fuzzy
|
2731 |
#| msgid "Search %s"
|
2732 |
msgid "Search..."
|
2779 |
|
2780 |
#: app/features/mec/booking.php:115
|
2781 |
#: app/features/mec/meta_boxes/display_options.php:121
|
2782 |
+
#: app/features/mec/meta_boxes/display_options.php:321
|
2783 |
+
#: app/features/mec/meta_boxes/display_options.php:404
|
2784 |
+
#: app/features/mec/meta_boxes/display_options.php:863
|
2785 |
+
#: app/features/mec/meta_boxes/display_options.php:1130
|
2786 |
+
#: app/features/mec/meta_boxes/display_options.php:1238
|
2787 |
+
#: app/features/mec/meta_boxes/display_options.php:1276
|
2788 |
msgid "Limit"
|
2789 |
msgstr "Limit"
|
2790 |
|
2902 |
msgstr "Automatische Verifizierung für kostenpflichtige Buchungen"
|
2903 |
|
2904 |
#: app/features/mec/booking.php:235 app/features/mec/notifications.php:155
|
2905 |
+
#: app/libraries/main.php:575
|
2906 |
msgid "Booking Confirmation"
|
2907 |
msgstr "Buchungsbestätigung"
|
2908 |
|
2924 |
"new menu on the Dashboard > Booking"
|
2925 |
msgstr ""
|
2926 |
|
2927 |
+
#: app/features/mec/booking.php:279 app/libraries/main.php:554
|
2928 |
msgid "Taxes / Fees"
|
2929 |
msgstr "Steuern/Gebühren"
|
2930 |
|
2936 |
msgid "Add Fee"
|
2937 |
msgstr "Gebühr hinzufügen"
|
2938 |
|
2939 |
+
#: app/features/mec/booking.php:356 app/libraries/main.php:555
|
2940 |
msgid "Ticket Variations & Options"
|
2941 |
msgstr ""
|
2942 |
|
2985 |
#: app/features/mec/notifications.php:599
|
2986 |
#: app/features/mec/notifications.php:621 app/features/mec/settings.php:949
|
2987 |
#: app/features/mec/settings.php:971 app/features/mec/single.php:267
|
2988 |
+
#: app/features/mec/single.php:289 app/libraries/main.php:5168
|
2989 |
msgid "Verified"
|
2990 |
msgstr "Verifiziert"
|
2991 |
|
3067 |
"on your website. Please watch this 2 minutes video to the end."
|
3068 |
msgstr ""
|
3069 |
|
3070 |
+
#: app/features/mec/dashboard.php:143 app/features/mec/dashboard.php:167
|
3071 |
#, fuzzy
|
3072 |
#| msgid "MEC Activation"
|
3073 |
msgid "MEC Activate"
|
3074 |
msgstr "MEC Aktivierung"
|
3075 |
|
3076 |
+
#: app/features/mec/dashboard.php:149 app/features/mec/dashboard.php:231
|
|
|
|
|
|
|
|
|
|
|
|
|
3077 |
#, fuzzy
|
3078 |
#| msgid "MEC Activation"
|
3079 |
msgid "Activate Addons"
|
3080 |
msgstr "MEC Aktivierung"
|
3081 |
|
3082 |
+
#: app/features/mec/dashboard.php:157 app/features/mec/dashboard.php:240
|
3083 |
msgid "You cannot access this section."
|
3084 |
msgstr ""
|
3085 |
|
3086 |
+
#: app/features/mec/dashboard.php:173
|
3087 |
+
msgid ""
|
3088 |
+
"In order to use all plugin features and options, please enter your purchase "
|
3089 |
+
"code."
|
3090 |
+
msgstr ""
|
3091 |
+
|
3092 |
+
#: app/features/mec/dashboard.php:287 app/features/mec/settings.php:371
|
3093 |
msgid "Upcoming Events"
|
3094 |
msgstr "Bevorstehende Events"
|
3095 |
|
3096 |
+
#: app/features/mec/dashboard.php:311
|
3097 |
msgid "Popular Gateways"
|
3098 |
msgstr "Beliebte Zahlungsgateways"
|
3099 |
|
3100 |
+
#: app/features/mec/dashboard.php:365
|
3101 |
msgid "Total Bookings"
|
3102 |
msgstr "Gesamte Buchungen"
|
3103 |
|
3104 |
+
#: app/features/mec/dashboard.php:392
|
3105 |
msgid "This Month"
|
3106 |
msgstr "Diesen Monat"
|
3107 |
|
3108 |
+
#: app/features/mec/dashboard.php:393
|
3109 |
msgid "Last Month"
|
3110 |
msgstr "Letzten Monat"
|
3111 |
|
3112 |
+
#: app/features/mec/dashboard.php:394
|
3113 |
msgid "This Year"
|
3114 |
msgstr "Diese Jahr"
|
3115 |
|
3116 |
+
#: app/features/mec/dashboard.php:395
|
3117 |
msgid "Last Year"
|
3118 |
msgstr "Letztes Jahr"
|
3119 |
|
3120 |
+
#: app/features/mec/dashboard.php:407
|
3121 |
msgid "Bar"
|
3122 |
msgstr "Bar"
|
3123 |
|
3124 |
+
#: app/features/mec/dashboard.php:408
|
3125 |
msgid "Line"
|
3126 |
msgstr "Linie"
|
3127 |
|
3128 |
+
#: app/features/mec/dashboard.php:410
|
3129 |
msgid "Filter"
|
3130 |
msgstr "Filter"
|
3131 |
|
3132 |
+
#: app/features/mec/dashboard.php:426
|
3133 |
#, php-format
|
3134 |
msgid "Total Sells (%s)"
|
3135 |
msgstr "Alle Verkäufe (%s)"
|
3136 |
|
3137 |
+
#: app/features/mec/dashboard.php:447
|
3138 |
msgid "Change Log"
|
3139 |
msgstr "Änderungsprotokoll"
|
3140 |
|
3167 |
msgstr "Download Rechnung\n"
|
3168 |
|
3169 |
#: app/features/mec/messages.php:28 app/features/mec/support.php:66
|
3170 |
+
#: app/libraries/main.php:791
|
3171 |
msgid "Messages"
|
3172 |
msgstr "Nachrichten"
|
3173 |
|
3188 |
msgstr "Skin"
|
3189 |
|
3190 |
#: app/features/mec/meta_boxes/display_options.php:40
|
3191 |
+
#: app/features/mec/meta_boxes/display_options.php:204
|
3192 |
+
#: app/features/mec/meta_boxes/display_options.php:603
|
3193 |
+
#: app/features/mec/meta_boxes/display_options.php:917
|
3194 |
#: app/features/mec/settings.php:235 app/features/mec/settings.php:259
|
3195 |
#: app/features/mec/settings.php:268 app/features/mec/settings.php:309
|
3196 |
#: app/features/mec/settings.php:333 app/features/mec/settings.php:342
|
3198 |
msgstr "Klassisch"
|
3199 |
|
3200 |
#: app/features/mec/meta_boxes/display_options.php:41
|
3201 |
+
#: app/features/mec/meta_boxes/display_options.php:206
|
3202 |
#: app/features/mec/settings.php:260 app/features/mec/settings.php:270
|
3203 |
#: app/features/mec/settings.php:334 app/features/mec/settings.php:344
|
3204 |
msgid "Minimal"
|
3205 |
msgstr "Minimal"
|
3206 |
|
3207 |
#: app/features/mec/meta_boxes/display_options.php:42
|
3208 |
+
#: app/features/mec/meta_boxes/display_options.php:207
|
3209 |
+
#: app/features/mec/meta_boxes/display_options.php:553
|
3210 |
+
#: app/features/mec/meta_boxes/display_options.php:605
|
3211 |
+
#: app/features/mec/meta_boxes/display_options.php:767
|
3212 |
+
#: app/features/mec/meta_boxes/display_options.php:919
|
3213 |
#: app/features/mec/settings.php:237 app/features/mec/settings.php:250
|
3214 |
#: app/features/mec/settings.php:261 app/features/mec/settings.php:271
|
3215 |
#: app/features/mec/settings.php:311 app/features/mec/settings.php:324
|
3228 |
msgstr "Accordion"
|
3229 |
|
3230 |
#: app/features/mec/meta_boxes/display_options.php:50
|
3231 |
+
#: app/features/mec/meta_boxes/display_options.php:216
|
3232 |
+
#: app/features/mec/meta_boxes/display_options.php:381
|
3233 |
+
#: app/features/mec/meta_boxes/display_options.php:660
|
3234 |
+
#: app/features/mec/meta_boxes/display_options.php:693
|
3235 |
+
#: app/features/mec/meta_boxes/display_options.php:840
|
3236 |
+
#: app/features/mec/meta_boxes/display_options.php:1075
|
3237 |
+
#: app/features/mec/meta_boxes/display_options.php:1162
|
3238 |
+
#: app/features/mec/meta_boxes/display_options.php:1254
|
3239 |
msgid "Today"
|
3240 |
msgstr "Heute"
|
3241 |
|
3242 |
#: app/features/mec/meta_boxes/display_options.php:51
|
3243 |
+
#: app/features/mec/meta_boxes/display_options.php:217
|
3244 |
+
#: app/features/mec/meta_boxes/display_options.php:382
|
3245 |
+
#: app/features/mec/meta_boxes/display_options.php:661
|
3246 |
+
#: app/features/mec/meta_boxes/display_options.php:694
|
3247 |
+
#: app/features/mec/meta_boxes/display_options.php:841
|
3248 |
+
#: app/features/mec/meta_boxes/display_options.php:1076
|
3249 |
+
#: app/features/mec/meta_boxes/display_options.php:1163
|
3250 |
+
#: app/features/mec/meta_boxes/display_options.php:1255
|
3251 |
msgid "Tomorrow"
|
3252 |
msgstr "Morgen"
|
3253 |
|
3254 |
#: app/features/mec/meta_boxes/display_options.php:52
|
3255 |
+
#: app/features/mec/meta_boxes/display_options.php:218
|
3256 |
+
#: app/features/mec/meta_boxes/display_options.php:383
|
3257 |
+
#: app/features/mec/meta_boxes/display_options.php:436
|
3258 |
+
#: app/features/mec/meta_boxes/display_options.php:613
|
3259 |
+
#: app/features/mec/meta_boxes/display_options.php:662
|
3260 |
+
#: app/features/mec/meta_boxes/display_options.php:695
|
3261 |
+
#: app/features/mec/meta_boxes/display_options.php:730
|
3262 |
+
#: app/features/mec/meta_boxes/display_options.php:776
|
3263 |
+
#: app/features/mec/meta_boxes/display_options.php:842
|
3264 |
+
#: app/features/mec/meta_boxes/display_options.php:1077
|
3265 |
+
#: app/features/mec/meta_boxes/display_options.php:1164
|
3266 |
+
#: app/features/mec/meta_boxes/display_options.php:1256
|
3267 |
msgid "Start of Current Month"
|
3268 |
msgstr "Mit Beginn des laufenden Monats"
|
3269 |
|
3270 |
#: app/features/mec/meta_boxes/display_options.php:53
|
3271 |
+
#: app/features/mec/meta_boxes/display_options.php:219
|
3272 |
+
#: app/features/mec/meta_boxes/display_options.php:384
|
3273 |
+
#: app/features/mec/meta_boxes/display_options.php:437
|
3274 |
+
#: app/features/mec/meta_boxes/display_options.php:614
|
3275 |
+
#: app/features/mec/meta_boxes/display_options.php:663
|
3276 |
+
#: app/features/mec/meta_boxes/display_options.php:696
|
3277 |
+
#: app/features/mec/meta_boxes/display_options.php:731
|
3278 |
+
#: app/features/mec/meta_boxes/display_options.php:777
|
3279 |
+
#: app/features/mec/meta_boxes/display_options.php:843
|
3280 |
+
#: app/features/mec/meta_boxes/display_options.php:1078
|
3281 |
+
#: app/features/mec/meta_boxes/display_options.php:1165
|
3282 |
+
#: app/features/mec/meta_boxes/display_options.php:1257
|
3283 |
msgid "Start of Next Month"
|
3284 |
msgstr "Mit Beginn des kommenden Monats"
|
3285 |
|
3286 |
#: app/features/mec/meta_boxes/display_options.php:54
|
3287 |
+
#: app/features/mec/meta_boxes/display_options.php:220
|
3288 |
+
#: app/features/mec/meta_boxes/display_options.php:385
|
3289 |
+
#: app/features/mec/meta_boxes/display_options.php:438
|
3290 |
+
#: app/features/mec/meta_boxes/display_options.php:561
|
3291 |
+
#: app/features/mec/meta_boxes/display_options.php:615
|
3292 |
+
#: app/features/mec/meta_boxes/display_options.php:664
|
3293 |
+
#: app/features/mec/meta_boxes/display_options.php:697
|
3294 |
+
#: app/features/mec/meta_boxes/display_options.php:732
|
3295 |
+
#: app/features/mec/meta_boxes/display_options.php:778
|
3296 |
+
#: app/features/mec/meta_boxes/display_options.php:844
|
3297 |
+
#: app/features/mec/meta_boxes/display_options.php:1079
|
3298 |
+
#: app/features/mec/meta_boxes/display_options.php:1166
|
3299 |
+
#: app/features/mec/meta_boxes/display_options.php:1258
|
3300 |
msgid "On a certain date"
|
3301 |
msgstr "An einem bestimmten Tag"
|
3302 |
|
3303 |
#: app/features/mec/meta_boxes/display_options.php:57
|
3304 |
+
#: app/features/mec/meta_boxes/display_options.php:223
|
3305 |
+
#: app/features/mec/meta_boxes/display_options.php:388
|
3306 |
+
#: app/features/mec/meta_boxes/display_options.php:441
|
3307 |
+
#: app/features/mec/meta_boxes/display_options.php:564
|
3308 |
+
#: app/features/mec/meta_boxes/display_options.php:618
|
3309 |
+
#: app/features/mec/meta_boxes/display_options.php:667
|
3310 |
+
#: app/features/mec/meta_boxes/display_options.php:701
|
3311 |
+
#: app/features/mec/meta_boxes/display_options.php:735
|
3312 |
+
#: app/features/mec/meta_boxes/display_options.php:781
|
3313 |
+
#: app/features/mec/meta_boxes/display_options.php:847
|
3314 |
+
#: app/features/mec/meta_boxes/display_options.php:1082
|
3315 |
+
#: app/features/mec/meta_boxes/display_options.php:1169
|
3316 |
+
#: app/features/mec/meta_boxes/display_options.php:1261
|
3317 |
#, php-format
|
3318 |
msgid "eg. %s"
|
3319 |
msgstr "z.B. %s"
|
3328 |
#: app/features/mec/meta_boxes/display_options.php:102
|
3329 |
#: app/features/mec/meta_boxes/display_options.php:109
|
3330 |
#: app/features/mec/meta_boxes/display_options.php:114
|
3331 |
+
#: app/features/mec/meta_boxes/display_options.php:227
|
3332 |
+
#: app/features/mec/meta_boxes/display_options.php:231
|
3333 |
+
#: app/features/mec/meta_boxes/display_options.php:238
|
3334 |
+
#: app/features/mec/meta_boxes/display_options.php:243
|
3335 |
+
#: app/features/mec/meta_boxes/display_options.php:250
|
|
|
|
|
3336 |
#: app/features/mec/meta_boxes/display_options.php:255
|
3337 |
#: app/features/mec/meta_boxes/display_options.php:262
|
3338 |
+
#: app/features/mec/meta_boxes/display_options.php:268
|
3339 |
+
#: app/features/mec/meta_boxes/display_options.php:275
|
3340 |
#: app/features/mec/meta_boxes/display_options.php:279
|
3341 |
#: app/features/mec/meta_boxes/display_options.php:286
|
3342 |
+
#: app/features/mec/meta_boxes/display_options.php:292
|
3343 |
+
#: app/features/mec/meta_boxes/display_options.php:299
|
3344 |
+
#: app/features/mec/meta_boxes/display_options.php:303
|
3345 |
+
#: app/features/mec/meta_boxes/display_options.php:392
|
3346 |
+
#: app/features/mec/meta_boxes/display_options.php:397
|
3347 |
+
#: app/features/mec/meta_boxes/display_options.php:568
|
3348 |
+
#: app/features/mec/meta_boxes/display_options.php:573
|
3349 |
+
#: app/features/mec/meta_boxes/display_options.php:851
|
3350 |
+
#: app/features/mec/meta_boxes/display_options.php:856
|
3351 |
+
#: app/features/mec/meta_boxes/display_options.php:923
|
3352 |
+
#: app/features/mec/meta_boxes/display_options.php:929
|
3353 |
+
#: app/features/mec/meta_boxes/display_options.php:936
|
3354 |
+
#: app/features/mec/meta_boxes/display_options.php:941
|
3355 |
+
#: app/features/mec/meta_boxes/display_options.php:948
|
3356 |
+
#: app/features/mec/meta_boxes/display_options.php:952
|
3357 |
+
#: app/features/mec/meta_boxes/display_options.php:980
|
3358 |
+
#: app/features/mec/meta_boxes/display_options.php:984
|
3359 |
+
#: app/features/mec/meta_boxes/display_options.php:991
|
3360 |
+
#: app/features/mec/meta_boxes/display_options.php:995
|
3361 |
+
#: app/features/mec/meta_boxes/display_options.php:1002
|
3362 |
+
#: app/features/mec/meta_boxes/display_options.php:1008
|
3363 |
+
#: app/features/mec/meta_boxes/display_options.php:1038
|
3364 |
+
#: app/features/mec/meta_boxes/display_options.php:1043
|
3365 |
+
#: app/features/mec/meta_boxes/display_options.php:1086
|
3366 |
+
#: app/features/mec/meta_boxes/display_options.php:1092
|
3367 |
+
#: app/features/mec/meta_boxes/display_options.php:1099
|
3368 |
+
#: app/features/mec/meta_boxes/display_options.php:1103
|
3369 |
+
#: app/features/mec/meta_boxes/display_options.php:1110
|
3370 |
+
#: app/features/mec/meta_boxes/display_options.php:1114
|
|
|
|
|
3371 |
#: app/features/mec/meta_boxes/display_options.php:1173
|
3372 |
#: app/features/mec/meta_boxes/display_options.php:1179
|
3373 |
#: app/features/mec/meta_boxes/display_options.php:1186
|
3374 |
#: app/features/mec/meta_boxes/display_options.php:1192
|
3375 |
#: app/features/mec/meta_boxes/display_options.php:1199
|
3376 |
#: app/features/mec/meta_boxes/display_options.php:1205
|
3377 |
+
#: app/features/mec/meta_boxes/display_options.php:1212
|
3378 |
+
#: app/features/mec/meta_boxes/display_options.php:1218
|
3379 |
+
#: app/features/mec/meta_boxes/display_options.php:1225
|
3380 |
+
#: app/features/mec/meta_boxes/display_options.php:1231
|
3381 |
+
#: app/features/mec/meta_boxes/display_options.php:1265
|
3382 |
+
#: app/features/mec/meta_boxes/display_options.php:1269
|
3383 |
msgid "Date Formats"
|
3384 |
msgstr "Datumsformate"
|
3385 |
|
3386 |
#: app/features/mec/meta_boxes/display_options.php:66
|
3387 |
+
#: app/features/mec/meta_boxes/display_options.php:280
|
3388 |
msgid "Default value is \"M d Y\""
|
3389 |
msgstr "Standard Wert ist \"M T J\""
|
3390 |
|
3393 |
msgstr "Standard Werte sind T, M und J"
|
3394 |
|
3395 |
#: app/features/mec/meta_boxes/display_options.php:92
|
3396 |
+
#: app/features/mec/meta_boxes/display_options.php:269
|
3397 |
+
#: app/features/mec/meta_boxes/display_options.php:293
|
|
|
|
|
3398 |
#: app/features/mec/meta_boxes/display_options.php:1180
|
3399 |
#: app/features/mec/meta_boxes/display_options.php:1193
|
3400 |
#: app/features/mec/meta_boxes/display_options.php:1206
|
3401 |
+
#: app/features/mec/meta_boxes/display_options.php:1219
|
3402 |
+
#: app/features/mec/meta_boxes/display_options.php:1232
|
3403 |
msgid "Default values are d, F and l"
|
3404 |
msgstr ""
|
3405 |
"Standardwerte sind Tag, Monat als ganzes Wort und Wochentag als ganzes Wort"
|
3415 |
msgstr "Die Standardwerte sind d and F"
|
3416 |
|
3417 |
#: app/features/mec/meta_boxes/display_options.php:122
|
3418 |
+
#: app/features/mec/meta_boxes/display_options.php:322
|
3419 |
+
#: app/features/mec/meta_boxes/display_options.php:405
|
3420 |
+
#: app/features/mec/meta_boxes/display_options.php:581
|
3421 |
+
#: app/features/mec/meta_boxes/display_options.php:623
|
3422 |
+
#: app/features/mec/meta_boxes/display_options.php:706
|
3423 |
+
#: app/features/mec/meta_boxes/display_options.php:740
|
3424 |
+
#: app/features/mec/meta_boxes/display_options.php:786
|
3425 |
+
#: app/features/mec/meta_boxes/display_options.php:1131
|
3426 |
+
#: app/features/mec/meta_boxes/display_options.php:1239
|
3427 |
+
#: app/features/mec/meta_boxes/display_options.php:1277
|
3428 |
msgid "eg. 6"
|
3429 |
msgstr "z.B. 6"
|
3430 |
|
3435 |
msgstr "Event / Veranstaltungszeit verbergen"
|
3436 |
|
3437 |
#: app/features/mec/meta_boxes/display_options.php:138
|
3438 |
+
#: app/features/mec/meta_boxes/display_options.php:326
|
3439 |
+
#: app/features/mec/meta_boxes/display_options.php:409
|
3440 |
+
#: app/features/mec/meta_boxes/display_options.php:900
|
3441 |
+
#: app/features/mec/meta_boxes/display_options.php:1281
|
3442 |
msgid "Load More Button"
|
3443 |
msgstr "Button \"Weitere Veranstaltungen Laden\""
|
3444 |
|
3445 |
#: app/features/mec/meta_boxes/display_options.php:148
|
3446 |
+
#: app/features/mec/meta_boxes/display_options.php:419
|
3447 |
+
#: app/features/mec/meta_boxes/display_options.php:1291
|
3448 |
msgid "Show Month Divider"
|
3449 |
msgstr "Zeige Monatsteilung"
|
3450 |
|
3451 |
#: app/features/mec/meta_boxes/display_options.php:158
|
3452 |
+
#: app/features/mec/meta_boxes/display_options.php:336
|
3453 |
#, fuzzy
|
3454 |
#| msgid "Show Google Maps on event page"
|
3455 |
msgid "Show Map on top"
|
3456 |
msgstr "Google Maps auf der Veranstaltungsseite anzeigen"
|
3457 |
|
3458 |
+
#: app/features/mec/meta_boxes/display_options.php:173
|
3459 |
+
#: app/features/mec/meta_boxes/display_options.php:351
|
3460 |
+
#: app/features/mec/meta_boxes/display_options.php:676
|
3461 |
+
msgid "Geolocation"
|
3462 |
+
msgstr ""
|
3463 |
+
|
3464 |
+
#: app/features/mec/meta_boxes/display_options.php:188
|
3465 |
#, fuzzy
|
3466 |
#| msgid "Show Month Divider"
|
3467 |
msgid "Toggle for Month Divider"
|
3468 |
msgstr "Zeige Monatsteilung"
|
3469 |
|
3470 |
+
#: app/features/mec/meta_boxes/display_options.php:205
|
3471 |
+
#: app/features/mec/meta_boxes/display_options.php:375
|
3472 |
+
#: app/features/mec/meta_boxes/display_options.php:457
|
3473 |
+
#: app/features/mec/meta_boxes/display_options.php:604
|
3474 |
+
#: app/features/mec/meta_boxes/display_options.php:768
|
3475 |
+
#: app/features/mec/meta_boxes/display_options.php:918
|
3476 |
#: app/features/mec/settings.php:236 app/features/mec/settings.php:251
|
3477 |
#: app/features/mec/settings.php:269 app/features/mec/settings.php:310
|
3478 |
#: app/features/mec/settings.php:325 app/features/mec/settings.php:343
|
3479 |
msgid "Clean"
|
3480 |
msgstr "Clean"
|
3481 |
|
3482 |
+
#: app/features/mec/meta_boxes/display_options.php:208
|
3483 |
+
#: app/features/mec/meta_boxes/display_options.php:459
|
3484 |
+
#: app/features/mec/meta_boxes/display_options.php:607
|
3485 |
#: app/features/mec/settings.php:239 app/features/mec/settings.php:272
|
3486 |
#: app/features/mec/settings.php:313 app/features/mec/settings.php:346
|
3487 |
msgid "Simple"
|
3488 |
msgstr "Schlicht"
|
3489 |
|
3490 |
+
#: app/features/mec/meta_boxes/display_options.php:209
|
3491 |
msgid "Colorful"
|
3492 |
msgstr "Farbenfroh"
|
3493 |
|
3494 |
+
#: app/features/mec/meta_boxes/display_options.php:210
|
3495 |
+
#: app/features/mec/meta_boxes/display_options.php:458
|
3496 |
+
#: app/features/mec/meta_boxes/display_options.php:606
|
3497 |
#: app/features/mec/settings.php:238 app/features/mec/settings.php:274
|
3498 |
#: app/features/mec/settings.php:312 app/features/mec/settings.php:348
|
3499 |
msgid "Novel"
|
3500 |
msgstr ""
|
3501 |
|
3502 |
+
#: app/features/mec/meta_boxes/display_options.php:232
|
3503 |
+
#: app/features/mec/meta_boxes/display_options.php:1270
|
3504 |
#, fuzzy
|
3505 |
#| msgid "Default value is \"d F Y\""
|
3506 |
msgid "Default value is \"d F Y"
|
3507 |
msgstr "Standardwert ist \"d (Tag) F Y (Jahr)\" "
|
3508 |
|
3509 |
+
#: app/features/mec/meta_boxes/display_options.php:244
|
3510 |
msgid "Default values are d and F"
|
3511 |
msgstr "Die Standardwerte sind d and F"
|
3512 |
|
3513 |
+
#: app/features/mec/meta_boxes/display_options.php:256
|
3514 |
msgid "Default values are d and M"
|
3515 |
msgstr "Standardwerte sind T und M"
|
3516 |
|
3517 |
+
#: app/features/mec/meta_boxes/display_options.php:304
|
3518 |
msgid "Default value is \"d F Y\""
|
3519 |
msgstr "Standardwert ist \"d (Tag) F Y (Jahr)\" "
|
3520 |
|
3521 |
+
#: app/features/mec/meta_boxes/display_options.php:310
|
3522 |
+
#: app/features/mec/meta_boxes/display_options.php:1121
|
3523 |
msgid "Count in row"
|
3524 |
msgstr "Zeilen zählen"
|
3525 |
|
3526 |
+
#: app/features/mec/meta_boxes/display_options.php:368
|
3527 |
+
#: app/features/mec/meta_boxes/display_options.php:546
|
3528 |
+
#: app/features/mec/meta_boxes/display_options.php:653
|
3529 |
+
#: app/features/mec/meta_boxes/display_options.php:760
|
3530 |
+
#: app/features/mec/meta_boxes/display_options.php:1033
|
3531 |
#, php-format
|
3532 |
msgid "%s is required to use this skin."
|
3533 |
msgstr ""
|
3534 |
|
3535 |
+
#: app/features/mec/meta_boxes/display_options.php:398
|
3536 |
+
#: app/features/mec/meta_boxes/display_options.php:574
|
3537 |
msgid "Default values are l and F j"
|
3538 |
msgstr "Die Standardwerte sind I und F j"
|
3539 |
|
3540 |
+
#: app/features/mec/meta_boxes/display_options.php:445
|
3541 |
msgid "Default View"
|
3542 |
msgstr "Standardansicht"
|
3543 |
|
3544 |
+
#: app/features/mec/meta_boxes/display_options.php:447
|
3545 |
+
#: app/features/mec/meta_boxes/display_options.php:468
|
3546 |
+
#: app/libraries/main.php:330 app/libraries/main.php:1576
|
3547 |
+
#: app/libraries/main.php:1601
|
3548 |
msgid "List View"
|
3549 |
msgstr "Listenansicht"
|
3550 |
|
3551 |
+
#: app/features/mec/meta_boxes/display_options.php:448
|
3552 |
+
#: app/features/mec/meta_boxes/display_options.php:478
|
3553 |
+
#: app/libraries/main.php:334 app/libraries/main.php:1570
|
3554 |
+
#: app/libraries/main.php:1595
|
3555 |
msgid "Yearly View"
|
3556 |
msgstr "Jahresansicht"
|
3557 |
|
3558 |
+
#: app/features/mec/meta_boxes/display_options.php:449
|
3559 |
+
#: app/features/mec/meta_boxes/display_options.php:500
|
3560 |
msgid "Monthly/Calendar View"
|
3561 |
msgstr "Monatliche Kalenderansicht"
|
3562 |
|
3563 |
+
#: app/features/mec/meta_boxes/display_options.php:450
|
3564 |
+
#: app/features/mec/meta_boxes/display_options.php:510
|
3565 |
+
#: app/libraries/main.php:337 app/libraries/main.php:1572
|
3566 |
+
#: app/libraries/main.php:1597
|
3567 |
msgid "Weekly View"
|
3568 |
msgstr "Wochenansicht"
|
3569 |
|
3570 |
+
#: app/features/mec/meta_boxes/display_options.php:451
|
3571 |
+
#: app/features/mec/meta_boxes/display_options.php:520
|
3572 |
+
#: app/libraries/main.php:336 app/libraries/main.php:1573
|
3573 |
+
#: app/libraries/main.php:1598
|
3574 |
msgid "Daily View"
|
3575 |
msgstr "Tagesansicht"
|
3576 |
|
3577 |
+
#: app/features/mec/meta_boxes/display_options.php:455
|
3578 |
#, fuzzy
|
3579 |
#| msgid "Modern Style"
|
3580 |
msgid "Monthly Style"
|
3581 |
msgstr "Moderner Stil"
|
3582 |
|
3583 |
+
#: app/features/mec/meta_boxes/display_options.php:495
|
3584 |
#, php-format
|
3585 |
msgid "%s is required to use <b>Yearly View</b> skin."
|
3586 |
msgstr ""
|
3587 |
|
3588 |
+
#: app/features/mec/meta_boxes/display_options.php:528
|
3589 |
msgid "The price shows only in List View."
|
3590 |
msgstr ""
|
3591 |
|
3592 |
+
#: app/features/mec/meta_boxes/display_options.php:531
|
3593 |
msgid "Display Event Price"
|
3594 |
msgstr ""
|
3595 |
|
3596 |
+
#: app/features/mec/meta_boxes/display_options.php:559
|
3597 |
msgid "Start of Current Year"
|
3598 |
msgstr "Mit Beginn des laufenden Jahres"
|
3599 |
|
3600 |
+
#: app/features/mec/meta_boxes/display_options.php:560
|
3601 |
msgid "Start of Next Year"
|
3602 |
msgstr "Start des nächsten Jahres"
|
3603 |
|
3604 |
+
#: app/features/mec/meta_boxes/display_options.php:580
|
3605 |
+
#: app/features/mec/meta_boxes/display_options.php:622
|
3606 |
+
#: app/features/mec/meta_boxes/display_options.php:705
|
3607 |
+
#: app/features/mec/meta_boxes/display_options.php:739
|
3608 |
+
#: app/features/mec/meta_boxes/display_options.php:785
|
3609 |
msgid "Events per day"
|
3610 |
msgstr "Veranstaltungen pro Tag"
|
3611 |
|
3612 |
+
#: app/features/mec/meta_boxes/display_options.php:585
|
3613 |
+
#: app/features/mec/meta_boxes/display_options.php:627
|
3614 |
+
#: app/features/mec/meta_boxes/display_options.php:710
|
3615 |
+
#: app/features/mec/meta_boxes/display_options.php:744
|
3616 |
+
#: app/features/mec/meta_boxes/display_options.php:814
|
3617 |
msgid "Next/Previous Buttons"
|
3618 |
msgstr "Schaltfläche \"Nächste/Letzte\""
|
3619 |
|
3620 |
+
#: app/features/mec/meta_boxes/display_options.php:593
|
3621 |
msgid "For showing next/previous year navigation."
|
3622 |
msgstr "Navigation anzeigen zum nächsten/letzten Jahr"
|
3623 |
|
3624 |
+
#: app/features/mec/meta_boxes/display_options.php:637
|
3625 |
#, fuzzy
|
3626 |
#| msgid "Text"
|
3627 |
msgid "Uppercase Text"
|
3628 |
msgstr "Text"
|
3629 |
|
3630 |
+
#: app/features/mec/meta_boxes/display_options.php:645
|
3631 |
+
#: app/features/mec/meta_boxes/display_options.php:718
|
3632 |
+
#: app/features/mec/meta_boxes/display_options.php:752
|
3633 |
+
#: app/features/mec/meta_boxes/display_options.php:822
|
3634 |
msgid "For showing next/previous month navigation."
|
3635 |
msgstr "Für die Navigation zum nächsten/letzten Monat"
|
3636 |
|
3637 |
+
#: app/features/mec/meta_boxes/display_options.php:671
|
3638 |
msgid "Maximum events"
|
3639 |
msgstr "Veranstaltungsmaximum"
|
3640 |
|
3641 |
+
#: app/features/mec/meta_boxes/display_options.php:672
|
3642 |
msgid "eg. 200"
|
3643 |
msgstr "z.B. 200"
|
3644 |
|
3645 |
+
#: app/features/mec/meta_boxes/display_options.php:684
|
|
|
|
|
|
|
|
|
3646 |
msgid "The geolocation feature works only in secure (https) websites."
|
3647 |
msgstr ""
|
3648 |
|
3649 |
+
#: app/features/mec/meta_boxes/display_options.php:728
|
3650 |
+
#: app/features/mec/meta_boxes/display_options.php:774
|
3651 |
msgid "Current Week"
|
3652 |
msgstr "Aktuelle Woche"
|
3653 |
|
3654 |
+
#: app/features/mec/meta_boxes/display_options.php:729
|
3655 |
+
#: app/features/mec/meta_boxes/display_options.php:775
|
3656 |
msgid "Next Week"
|
3657 |
msgstr "Nächste Woche"
|
3658 |
|
3659 |
+
#: app/features/mec/meta_boxes/display_options.php:790
|
3660 |
msgid "Number of Days"
|
3661 |
msgstr ""
|
3662 |
|
3663 |
+
#: app/features/mec/meta_boxes/display_options.php:798
|
3664 |
#, fuzzy
|
3665 |
#| msgid "Start"
|
3666 |
msgid "Week Start"
|
3667 |
msgstr "Start"
|
3668 |
|
3669 |
+
#: app/features/mec/meta_boxes/display_options.php:800
|
3670 |
#, fuzzy
|
3671 |
#| msgid "Inherit from global options"
|
3672 |
msgid "Inherite from WordPress options"
|
3673 |
msgstr "Aus den globalen Einstellungen übernehmen"
|
3674 |
|
3675 |
+
#: app/features/mec/meta_boxes/display_options.php:857
|
3676 |
+
#: app/features/mec/meta_boxes/display_options.php:1044
|
3677 |
msgid "Default values are j and F"
|
3678 |
msgstr "Standardwerte sind j und F"
|
3679 |
|
3680 |
+
#: app/features/mec/meta_boxes/display_options.php:864
|
3681 |
msgid "eg. 24"
|
3682 |
msgstr "z.B. 24"
|
3683 |
|
3684 |
+
#: app/features/mec/meta_boxes/display_options.php:867
|
3685 |
msgid "Filter By"
|
3686 |
msgstr "Filtern nach"
|
3687 |
|
3688 |
+
#: app/features/mec/meta_boxes/display_options.php:869
|
3689 |
msgid "None"
|
3690 |
msgstr ""
|
3691 |
|
3692 |
+
#: app/features/mec/meta_boxes/display_options.php:878
|
3693 |
msgid "Fit to row"
|
3694 |
msgstr ""
|
3695 |
|
3696 |
+
#: app/features/mec/meta_boxes/display_options.php:879
|
3697 |
msgid ""
|
3698 |
"Items are arranged into rows. Rows progress vertically. Similar to what you "
|
3699 |
"would expect from a layout that uses CSS floats."
|
3700 |
msgstr ""
|
3701 |
|
3702 |
+
#: app/features/mec/meta_boxes/display_options.php:889
|
3703 |
msgid "Convert Masonry to Grid"
|
3704 |
msgstr ""
|
3705 |
|
3706 |
+
#: app/features/mec/meta_boxes/display_options.php:890
|
3707 |
msgid "For using this option, your events should come with image"
|
3708 |
msgstr ""
|
3709 |
|
3710 |
+
#: app/features/mec/meta_boxes/display_options.php:930
|
3711 |
msgid "Default values are d, M and Y"
|
3712 |
msgstr "Standardwerte sind T, M und J"
|
3713 |
|
3714 |
+
#: app/features/mec/meta_boxes/display_options.php:942
|
3715 |
msgid "Default values are \"F d\" and l"
|
3716 |
msgstr ""
|
3717 |
"Standardwerte sind Monat als ganzes Wort, Tag des Monates mit führender Null "
|
3718 |
"und ausgeschriebener Wochentag"
|
3719 |
|
3720 |
+
#: app/features/mec/meta_boxes/display_options.php:953
|
3721 |
msgid "Default value is \"l, F d Y\""
|
3722 |
msgstr ""
|
3723 |
"Standardwerte sind ausgeschriebener Wochentag, Monat als ganzes Wort, Tag "
|
3724 |
"des Monates mit führender 0, Jahr"
|
3725 |
|
3726 |
+
#: app/features/mec/meta_boxes/display_options.php:974
|
3727 |
msgid "Style 1"
|
3728 |
msgstr "Stil 1"
|
3729 |
|
3730 |
+
#: app/features/mec/meta_boxes/display_options.php:975
|
3731 |
msgid "Style 2"
|
3732 |
msgstr "Stil 2"
|
3733 |
|
3734 |
+
#: app/features/mec/meta_boxes/display_options.php:976
|
3735 |
msgid "Style 3"
|
3736 |
msgstr "Stil 3"
|
3737 |
|
3738 |
+
#: app/features/mec/meta_boxes/display_options.php:985
|
3739 |
+
#: app/features/mec/meta_boxes/display_options.php:996
|
3740 |
msgid "Default value is \"j F Y\""
|
3741 |
msgstr "Standardwert ist \"j F Y\""
|
3742 |
|
3743 |
+
#: app/features/mec/meta_boxes/display_options.php:1009
|
3744 |
msgid "Default values are j, F and Y"
|
3745 |
msgstr ""
|
3746 |
"Standardwerte sind j ( Tag des Monats ohne führende Nullen), F und Y (Jahr)"
|
3747 |
|
3748 |
+
#: app/features/mec/meta_boxes/display_options.php:1017
|
3749 |
+
#: app/features/mec/meta_boxes/display_options.php:1052
|
3750 |
msgid " -- Next Upcoming Event -- "
|
3751 |
msgstr "-- Nächste Veranstaltung--"
|
3752 |
|
3753 |
+
#: app/features/mec/meta_boxes/display_options.php:1024
|
3754 |
msgid "Background Color"
|
3755 |
msgstr "Hintergrund Farbe"
|
3756 |
|
3757 |
+
#: app/features/mec/meta_boxes/display_options.php:1066
|
3758 |
+
#: app/features/mec/meta_boxes/display_options.php:1152
|
3759 |
msgid "Type 1"
|
3760 |
msgstr "Typ 1"
|
3761 |
|
3762 |
+
#: app/features/mec/meta_boxes/display_options.php:1067
|
3763 |
+
#: app/features/mec/meta_boxes/display_options.php:1153
|
3764 |
msgid "Type 2"
|
3765 |
msgstr "Typ 2"
|
3766 |
|
3767 |
+
#: app/features/mec/meta_boxes/display_options.php:1068
|
3768 |
+
#: app/features/mec/meta_boxes/display_options.php:1154
|
3769 |
msgid "Type 3"
|
3770 |
msgstr "Type 3"
|
3771 |
|
3772 |
+
#: app/features/mec/meta_boxes/display_options.php:1069
|
3773 |
+
#: app/features/mec/meta_boxes/display_options.php:1155
|
3774 |
msgid "Type 4"
|
3775 |
msgstr "Typ 4"
|
3776 |
|
3777 |
+
#: app/features/mec/meta_boxes/display_options.php:1093
|
3778 |
msgid "Default values are d, F and Y"
|
3779 |
msgstr "Standardwert ist d (Tag) F und Y (Jahr)"
|
3780 |
|
3781 |
+
#: app/features/mec/meta_boxes/display_options.php:1104
|
3782 |
+
#: app/features/mec/meta_boxes/display_options.php:1115
|
3783 |
msgid "Default value is \"M d, Y\""
|
3784 |
msgstr "Standardwert ist \"M T, J\""
|
3785 |
|
3786 |
+
#: app/features/mec/meta_boxes/display_options.php:1134
|
3787 |
+
#: app/features/mec/meta_boxes/display_options.php:1242
|
3788 |
msgid "Auto Play Time"
|
3789 |
msgstr "Auto Play Time"
|
3790 |
|
3791 |
+
#: app/features/mec/meta_boxes/display_options.php:1135
|
3792 |
+
#: app/features/mec/meta_boxes/display_options.php:1243
|
3793 |
msgid "eg. 3000 default is 3 second"
|
3794 |
msgstr "z.B. Voreinstellung 3000 sind 3 Sekunden"
|
3795 |
|
3796 |
+
#: app/features/mec/meta_boxes/display_options.php:1139
|
3797 |
#, fuzzy
|
3798 |
#| msgid "Archive Page Skin"
|
3799 |
msgid "Archive Link"
|
3800 |
msgstr "Skin Seite Archiv"
|
3801 |
|
3802 |
+
#: app/features/mec/meta_boxes/display_options.php:1143
|
3803 |
#, fuzzy
|
3804 |
#| msgid "Text"
|
3805 |
msgid "Head Text"
|
3806 |
msgstr "Text"
|
3807 |
|
3808 |
+
#: app/features/mec/meta_boxes/display_options.php:1156
|
3809 |
msgid "Type 5"
|
3810 |
msgstr "Typ 5"
|
3811 |
|
3985 |
#: app/features/mec/meta_boxes/search_form.php:596
|
3986 |
#: app/features/mec/settings.php:795 app/features/mec/single.php:217
|
3987 |
#: app/features/search.php:79 app/features/speakers.php:61
|
3988 |
+
#: app/features/speakers.php:254 app/libraries/main.php:4927
|
3989 |
+
#: app/libraries/skins.php:889
|
3990 |
msgid "Speaker"
|
3991 |
msgstr ""
|
3992 |
|
4001 |
#: app/features/mec/meta_boxes/search_form.php:542
|
4002 |
#: app/features/mec/meta_boxes/search_form.php:603
|
4003 |
#: app/features/mec/settings.php:802 app/features/mec/single.php:226
|
4004 |
+
#: app/features/search.php:83 app/libraries/skins.php:915
|
4005 |
#, fuzzy
|
4006 |
#| msgid "Tags"
|
4007 |
msgid "Tag"
|
4146 |
msgstr ""
|
4147 |
"Checken Sie es nur wenn ein anderes plugin/Thema die Google Maps API lädt."
|
4148 |
|
4149 |
+
#: app/features/mec/modules.php:167 app/libraries/main.php:563
|
4150 |
#, fuzzy
|
4151 |
#| msgid "Import Options"
|
4152 |
msgid "Export Options"
|
4163 |
msgid "Google Calendar"
|
4164 |
msgstr "Google Calendar"
|
4165 |
|
4166 |
+
#: app/features/mec/modules.php:194 app/libraries/main.php:564
|
4167 |
#: app/modules/local-time/details.php:42 app/widgets/single.php:99
|
4168 |
msgid "Local Time"
|
4169 |
msgstr "Lokale Zeit"
|
4174 |
"Zeige die Eventzeit basierend auf der Ortszeit des Besuchers auf der "
|
4175 |
"Eventseite"
|
4176 |
|
4177 |
+
#: app/features/mec/modules.php:208 app/libraries/main.php:565
|
4178 |
#: app/modules/qrcode/details.php:38 app/widgets/single.php:155
|
4179 |
msgid "QR Code"
|
4180 |
msgstr "QR Code"
|
4185 |
"Zeigen Sie QR-Code des Events in der Detailseite und in der Buchungsrechnung "
|
4186 |
"an"
|
4187 |
|
4188 |
+
#: app/features/mec/modules.php:226 app/libraries/main.php:566
|
4189 |
#: app/modules/weather/details.php:37
|
4190 |
msgid "Weather"
|
4191 |
msgstr "Wetter"
|
4213 |
msgid "Show social network module"
|
4214 |
msgstr "Modul für Soziale Netzwerke anzeigen"
|
4215 |
|
4216 |
+
#: app/features/mec/modules.php:288 app/libraries/main.php:568
|
4217 |
#: app/modules/next-event/details.php:82
|
4218 |
msgid "Next Event"
|
4219 |
msgstr "Nächstes Event"
|
4539 |
msgid "Download ICS file"
|
4540 |
msgstr "Download Rechnung\n"
|
4541 |
|
4542 |
+
#: app/features/mec/notifications.php:101 app/libraries/main.php:574
|
4543 |
msgid "Booking Verification"
|
4544 |
msgstr "Verifizierung der Buchung"
|
4545 |
|
4569 |
msgid "Amount Tickets"
|
4570 |
msgstr "Betrag (pro Ticket)"
|
4571 |
|
4572 |
+
#: app/features/mec/notifications.php:210 app/libraries/main.php:576
|
4573 |
#, fuzzy
|
4574 |
#| msgid "Booking cancellation link."
|
4575 |
msgid "Booking Cancellation"
|
4608 |
msgid "Admin booking management link."
|
4609 |
msgstr "Admin-link zur Buchungsverwaltung"
|
4610 |
|
4611 |
+
#: app/features/mec/notifications.php:278 app/libraries/main.php:578
|
4612 |
msgid "Admin"
|
4613 |
msgstr ""
|
4614 |
|
4624 |
"Sendet eine Benachrichtigung an den Adminstrator um diesen darüber zu "
|
4625 |
"Informieren, dass eine neue Buchung eingegangen ist."
|
4626 |
|
4627 |
+
#: app/features/mec/notifications.php:338 app/libraries/main.php:577
|
4628 |
#: app/libraries/notifications.php:478
|
4629 |
msgid "Booking Reminder"
|
4630 |
msgstr "Buchungs Erinnerung"
|
4653 |
msgid "Days"
|
4654 |
msgstr "Tage"
|
4655 |
|
4656 |
+
#: app/features/mec/notifications.php:414 app/features/mec/support-page.php:109
|
4657 |
+
#: app/libraries/main.php:579
|
4658 |
msgid "New Event"
|
4659 |
msgstr "Neue Veranstaltung"
|
4660 |
|
4698 |
msgid "Admin events management link."
|
4699 |
msgstr "Admin-link zur Veranstaltungsverwaltung"
|
4700 |
|
4701 |
+
#: app/features/mec/notifications.php:462 app/libraries/main.php:580
|
4702 |
#, fuzzy
|
4703 |
#| msgid "The event published."
|
4704 |
msgid "User Event Publishing"
|
4816 |
msgstr ""
|
4817 |
|
4818 |
#: app/features/mec/settings.php:157 app/features/mec/settings.php:167
|
4819 |
+
#: app/libraries/main.php:4931
|
4820 |
msgid "Weekdays"
|
4821 |
msgstr "Wochentage"
|
4822 |
|
4844 |
"page )."
|
4845 |
msgstr ""
|
4846 |
|
4847 |
+
#: app/features/mec/settings.php:200 app/libraries/main.php:531
|
4848 |
msgid "Archive Pages"
|
4849 |
msgstr ""
|
4850 |
|
5156 |
"Die Ereignisnotiz wird im Frontend-Einreichungsformular angezeigt und das "
|
5157 |
"Ereignis im Backend bearbeitet."
|
5158 |
|
5159 |
+
#: app/features/mec/settings.php:742 app/libraries/main.php:536
|
5160 |
msgid "User Profile"
|
5161 |
msgstr ""
|
5162 |
|
5167 |
"of their bookings."
|
5168 |
msgstr ""
|
5169 |
|
5170 |
+
#: app/features/mec/settings.php:749 app/libraries/main.php:537
|
5171 |
#, fuzzy
|
5172 |
#| msgid "Search Form"
|
5173 |
msgid "Search Bar"
|
5269 |
msgid "The unit is Megabyte \"MB\""
|
5270 |
msgstr ""
|
5271 |
|
5272 |
+
#: app/features/mec/single.php:34 app/libraries/main.php:543
|
5273 |
#, fuzzy
|
5274 |
#| msgid "Single Event Style"
|
5275 |
msgid "Single Event Page"
|
5407 |
"Mit dieser Option können Sie bestimmte Tage von vorkommenden Eventdaten ein-/"
|
5408 |
"ausschließen."
|
5409 |
|
5410 |
+
#: app/features/mec/single.php:171 app/libraries/main.php:546
|
5411 |
msgid "Additional Organizers"
|
5412 |
msgstr "Zusätzliche Organisatoren"
|
5413 |
|
5437 |
"Zeigen Sie zusätzliche Organisatoren auf der Seite Events hinzufügen / "
|
5438 |
"bearbeiten und auf der Seite für einzelne Events an."
|
5439 |
|
5440 |
+
#: app/features/mec/single.php:191 app/libraries/main.php:548
|
5441 |
#: app/skins/single.php:163
|
5442 |
#, fuzzy
|
5443 |
#| msgid "featured event"
|
5518 |
msgid "Paragraph Font Family"
|
5519 |
msgstr "Schriftart Absätze"
|
5520 |
|
5521 |
+
#: app/features/mec/styling.php:196
|
5522 |
+
msgid "Disable MEC custom font (Montserrat)"
|
5523 |
+
msgstr ""
|
5524 |
+
|
5525 |
+
#: app/features/mec/styling.php:202
|
5526 |
#, fuzzy
|
5527 |
#| msgid "Enable Google Recaptcha"
|
5528 |
msgid "Disable Google Fonts"
|
5593 |
msgid "Advice and answers from the Webnus Team"
|
5594 |
msgstr ""
|
5595 |
|
5596 |
+
#: app/features/mec/support-page.php:75
|
5597 |
msgid "Quick Setup"
|
5598 |
msgstr ""
|
5599 |
|
5600 |
+
#: app/features/mec/support-page.php:79
|
5601 |
#, fuzzy
|
5602 |
#| msgid "Download Invoice"
|
5603 |
msgid "Download the Plugin"
|
5604 |
msgstr "Download Rechnung\n"
|
5605 |
|
5606 |
+
#: app/features/mec/support-page.php:80
|
5607 |
msgid "Install and Activate the Plugin"
|
5608 |
msgstr ""
|
5609 |
|
5610 |
+
#: app/features/mec/support-page.php:81
|
5611 |
#, fuzzy
|
5612 |
#| msgid "Add New Event"
|
5613 |
msgid "Add a New Event"
|
5614 |
msgstr "Neue Veranstaltung hinzufügen"
|
5615 |
|
5616 |
+
#: app/features/mec/support-page.php:84 app/features/mec/support-page.php:101
|
5617 |
+
#: app/features/mec/support-page.php:118 app/features/mec/support-page.php:135
|
5618 |
+
#: app/features/mec/support-page.php:155 app/features/mec/support-page.php:172
|
5619 |
+
#: app/features/mec/support-page.php:189 app/features/mec/support-page.php:206
|
5620 |
msgid "Watch Video"
|
5621 |
msgstr ""
|
5622 |
|
5623 |
+
#: app/features/mec/support-page.php:92
|
5624 |
#, fuzzy
|
5625 |
#| msgid "MEC Activation"
|
5626 |
msgid "Activate License"
|
5627 |
msgstr "MEC Aktivierung"
|
5628 |
|
5629 |
+
#: app/features/mec/support-page.php:96
|
5630 |
msgid "Login to Dashboard"
|
5631 |
msgstr ""
|
5632 |
|
5633 |
+
#: app/features/mec/support-page.php:97
|
5634 |
msgid "Get the License Key"
|
5635 |
msgstr ""
|
5636 |
|
5637 |
+
#: app/features/mec/support-page.php:98
|
5638 |
msgid "Activate the plugin"
|
5639 |
msgstr ""
|
5640 |
|
5641 |
+
#: app/features/mec/support-page.php:113
|
5642 |
#, fuzzy
|
5643 |
#| msgid "Hide Event End Time"
|
5644 |
msgid "Add New Events, Date and Time"
|
5645 |
msgstr "Ende-Zeit der Veranstaltung verbergen"
|
5646 |
|
5647 |
+
#: app/features/mec/support-page.php:114
|
5648 |
msgid "Tags, Categories, Organizer, Location"
|
5649 |
msgstr ""
|
5650 |
|
5651 |
+
#: app/features/mec/support-page.php:115
|
5652 |
#, fuzzy
|
5653 |
#| msgid "Hourly Schedule"
|
5654 |
msgid "Hourly Schedule, Set Up Shortcodes"
|
5655 |
msgstr "Stundenplan"
|
5656 |
|
5657 |
+
#: app/features/mec/support-page.php:126 app/features/mec/support-page.php:130
|
5658 |
#, fuzzy
|
5659 |
#| msgid "Enable booking module"
|
5660 |
msgid "Enable Booking"
|
5661 |
msgstr "Buchungsmodul aktivieren"
|
5662 |
|
5663 |
+
#: app/features/mec/support-page.php:131 app/features/mec/support-page.php:152
|
5664 |
#, fuzzy
|
5665 |
#| msgid "Booking Form"
|
5666 |
msgid "Customize the Booking Form"
|
5667 |
msgstr "Buchungsformular"
|
5668 |
|
5669 |
+
#: app/features/mec/support-page.php:132
|
5670 |
#, fuzzy
|
5671 |
#| msgid "Payment Gateways"
|
5672 |
msgid "Set Up a Payment Gateway"
|
5673 |
msgstr "Zahlungs-Gateways"
|
5674 |
|
5675 |
+
#: app/features/mec/support-page.php:146
|
5676 |
msgid "Add booking form to event"
|
5677 |
msgstr ""
|
5678 |
|
5679 |
+
#: app/features/mec/support-page.php:150
|
5680 |
#, fuzzy
|
5681 |
#| msgid "Enable booking notification"
|
5682 |
msgid "Enable Booking from Settings"
|
5683 |
msgstr "Buchungsbenachrichtigung aktivieren"
|
5684 |
|
5685 |
+
#: app/features/mec/support-page.php:151
|
5686 |
#, fuzzy
|
5687 |
#| msgid "Booking Form"
|
5688 |
msgid "Set Up a Booking Form"
|
5689 |
msgstr "Buchungsformular"
|
5690 |
|
5691 |
+
#: app/features/mec/support-page.php:163
|
5692 |
#, fuzzy
|
5693 |
#| msgid "Shortcodes"
|
5694 |
msgid "Create Shortcodes"
|
5695 |
msgstr "Shortcodes"
|
5696 |
|
5697 |
+
#: app/features/mec/support-page.php:167
|
5698 |
#, fuzzy
|
5699 |
#| msgid "Add New Shortcode"
|
5700 |
msgid "Create a New Shortcode"
|
5701 |
msgstr "Neuen Shortcode hinzufügen"
|
5702 |
|
5703 |
+
#: app/features/mec/support-page.php:168
|
5704 |
#, fuzzy
|
5705 |
#| msgid "Shortcodes"
|
5706 |
msgid "Customize Shortcodes"
|
5707 |
msgstr "Shortcodes"
|
5708 |
|
5709 |
+
#: app/features/mec/support-page.php:169
|
5710 |
#, fuzzy
|
5711 |
#| msgid "All Shortcodes"
|
5712 |
msgid "Use Filters in Shortcodes"
|
5713 |
msgstr "Alle Shortcodes"
|
5714 |
|
5715 |
+
#: app/features/mec/support-page.php:180
|
5716 |
msgid "WooCommerce gateways"
|
5717 |
msgstr ""
|
5718 |
|
5719 |
+
#: app/features/mec/support-page.php:184
|
5720 |
msgid "Install and Activate WooCommerce"
|
5721 |
msgstr ""
|
5722 |
|
5723 |
+
#: app/features/mec/support-page.php:185
|
5724 |
msgid "Integrate with MEC"
|
5725 |
msgstr ""
|
5726 |
|
5727 |
+
#: app/features/mec/support-page.php:186
|
5728 |
msgid "Set Up WooCommerce Gateway"
|
5729 |
msgstr ""
|
5730 |
|
5731 |
+
#: app/features/mec/support-page.php:201
|
5732 |
msgid "An Overview of the Settings"
|
5733 |
msgstr ""
|
5734 |
|
5735 |
+
#: app/features/mec/support-page.php:202
|
5736 |
#, fuzzy
|
5737 |
#| msgid "Import Options"
|
5738 |
msgid "Set Up Different Settings"
|
5739 |
msgstr "Import Optionen"
|
5740 |
|
5741 |
+
#: app/features/mec/support-page.php:203
|
5742 |
#, fuzzy
|
5743 |
#| msgid "Filter Options"
|
5744 |
msgid "Use Different Options"
|
5745 |
msgstr "Filteroptionen"
|
5746 |
|
5747 |
+
#: app/features/mec/support-page.php:217
|
5748 |
msgid "FAQ"
|
5749 |
msgstr ""
|
5750 |
|
5751 |
+
#: app/features/mec/support-page.php:221
|
5752 |
msgid "How should I update plugin?"
|
5753 |
msgstr ""
|
5754 |
|
5755 |
+
#: app/features/mec/support-page.php:223
|
5756 |
#, php-format
|
5757 |
msgid ""
|
5758 |
"You have two options:<br>\n"
|
5764 |
"For more information, please <a href=\"%s\" target=\"_blank\">click here</a>."
|
5765 |
msgstr ""
|
5766 |
|
5767 |
+
#: app/features/mec/support-page.php:228
|
5768 |
msgid "Do I lose all my data or customization if I update MEC?"
|
5769 |
msgstr ""
|
5770 |
|
5771 |
+
#: app/features/mec/support-page.php:229
|
5772 |
msgid ""
|
5773 |
"If you’ve added a file to the main folder of MEC, this file will be removed "
|
5774 |
"after the update. Therefore, please do get a full back up before proceeding "
|
5775 |
"with the update process."
|
5776 |
msgstr ""
|
5777 |
|
5778 |
+
#: app/features/mec/support-page.php:232
|
5779 |
msgid "Can I customize the event pages?"
|
5780 |
msgstr ""
|
5781 |
|
5782 |
+
#: app/features/mec/support-page.php:234
|
5783 |
#, php-format
|
5784 |
msgid ""
|
5785 |
"Yes, it is possible. In order to see the related documentations, please <a "
|
5786 |
"href=\"%s\" target=\"_blank\">click here</a>."
|
5787 |
msgstr ""
|
5788 |
|
5789 |
+
#: app/features/mec/support-page.php:237
|
5790 |
msgid "Does MEC have default languages or it needs to be translated?"
|
5791 |
msgstr ""
|
5792 |
|
5793 |
+
#: app/features/mec/support-page.php:239
|
5794 |
#, php-format
|
5795 |
msgid ""
|
5796 |
"Yes, for some of the languages MEC has the translation file as default. "
|
5799 |
"please <a href=\"%s\" target=\"_blank\">click here</a>."
|
5800 |
msgstr ""
|
5801 |
|
5802 |
+
#: app/features/mec/support-page.php:242
|
5803 |
msgid "Can I have more than one calendar in one website?"
|
5804 |
msgstr ""
|
5805 |
|
5806 |
+
#: app/features/mec/support-page.php:243
|
5807 |
msgid ""
|
5808 |
"Unfortunately, MEC does not support more than 1 calendar in a single "
|
5809 |
"website, however, it will be added in its upcoming updates."
|
5810 |
msgstr ""
|
5811 |
|
5812 |
+
#: app/features/mec/support-page.php:245
|
5813 |
msgid "Can I import/export from/to MEC?"
|
5814 |
msgstr ""
|
5815 |
|
5816 |
+
#: app/features/mec/support-page.php:246
|
5817 |
msgid ""
|
5818 |
"Yes, you can get an XML export from MEC data or import the file you've "
|
5819 |
"exported to MEC. Also, if you are using one of the following plugins (The "
|
5821 |
"you can easily transfer your events to MEC."
|
5822 |
msgstr ""
|
5823 |
|
5824 |
+
#: app/features/mec/support-page.php:254
|
5825 |
#, fuzzy
|
5826 |
#| msgid "View all Articles"
|
5827 |
msgid "Articles"
|
5828 |
msgstr "Alle Artikel anzeigen"
|
5829 |
|
5830 |
+
#: app/features/mec/support-page.php:257
|
5831 |
msgid "MEC And Integrate With WooCommerce"
|
5832 |
msgstr ""
|
5833 |
|
5834 |
+
#: app/features/mec/support-page.php:258
|
5835 |
msgid "Create Events With Your Page Builder"
|
5836 |
msgstr ""
|
5837 |
|
5838 |
+
#: app/features/mec/support-page.php:259
|
5839 |
msgid "Why can't I use HTML tags?"
|
5840 |
msgstr ""
|
5841 |
|
5842 |
+
#: app/features/mec/support-page.php:260
|
5843 |
msgid "Setup Date Option On Shortcodes"
|
5844 |
msgstr ""
|
5845 |
|
5846 |
+
#: app/features/mec/support-page.php:261
|
5847 |
msgid "I want to export booking, what should I do?"
|
5848 |
msgstr ""
|
5849 |
|
5850 |
+
#: app/features/mec/support-page.php:262
|
5851 |
#, fuzzy
|
5852 |
#| msgid "iCal Export"
|
5853 |
msgid "I Can't Export iCal"
|
5854 |
msgstr "ical Export"
|
5855 |
|
5856 |
+
#: app/features/mec/support-page.php:263
|
5857 |
#, fuzzy
|
5858 |
#| msgid "Booking module doesn't work"
|
5859 |
msgid "Booking Module Not Working"
|
5860 |
msgstr "Das Buchungsmodul arbeitet nicht."
|
5861 |
|
5862 |
+
#: app/features/mec/support-page.php:264
|
5863 |
msgid "Translate MEC"
|
5864 |
msgstr ""
|
5865 |
|
5866 |
+
#: app/features/mec/support-page.php:265
|
5867 |
#, fuzzy
|
5868 |
#| msgid "No event found!"
|
5869 |
msgid "No Event Found!"
|
5870 |
msgstr "Keine Veranstaltung gefunden"
|
5871 |
|
5872 |
+
#: app/features/mec/support-page.php:266
|
5873 |
#, fuzzy
|
5874 |
#| msgid "Mailchimp Integration"
|
5875 |
msgid "MEC Theme Integration Guide"
|
5876 |
msgstr "Mailchimp Integration"
|
5877 |
|
5878 |
+
#: app/features/mec/support-page.php:267
|
5879 |
#, fuzzy
|
5880 |
#| msgid "How to override MEC template files?"
|
5881 |
msgid "Can I Override MEC Template ?"
|
5882 |
msgstr "Wie kann ich MEC-Vorlagendateien überschreiben?"
|
5883 |
|
5884 |
+
#: app/features/mec/support-page.php:278
|
|
|
|
|
|
|
|
|
|
|
5885 |
msgid ""
|
5886 |
+
"You don’t need to register anywhere for support anymore.You can click the "
|
5887 |
+
"following button, and the chat box will open up to ask all your different "
|
5888 |
+
"questions using our various channels."
|
5889 |
msgstr ""
|
|
|
|
|
|
|
5890 |
|
5891 |
+
#: app/features/mec/support-page.php:278
|
5892 |
+
msgid ""
|
5893 |
+
"<br><small style=\"color: #8a8a8a;\">Only enter your email address and the "
|
5894 |
+
"answers will be sent over to your mail box.</small>"
|
5895 |
+
msgstr ""
|
5896 |
+
|
5897 |
+
#: app/features/mec/support-page.php:279
|
5898 |
#, fuzzy
|
5899 |
#| msgid "Add New Shortcode"
|
5900 |
msgid "Create a support ticket"
|
5901 |
msgstr "Neuen Shortcode hinzufügen"
|
5902 |
|
5903 |
+
#: app/features/mec/support.php:52 app/libraries/main.php:777
|
5904 |
msgid "Styling Options"
|
5905 |
msgstr "Styling-Optionen"
|
5906 |
|
5907 |
+
#: app/features/mec/support.php:59 app/libraries/main.php:784
|
5908 |
msgid "Custom CSS"
|
5909 |
msgstr "Custom CSS"
|
5910 |
|
6036 |
msgid "eg. https://webnus.net"
|
6037 |
msgstr "http://webnus.net"
|
6038 |
|
6039 |
+
#: app/features/organizers.php:311 app/libraries/main.php:4955
|
6040 |
#: app/skins/single.php:847
|
6041 |
msgid "Other Organizers"
|
6042 |
msgstr "Andere Veranstalter"
|
6054 |
msgid "Please %s/%s in order to see your bookings / profile."
|
6055 |
msgstr "Um neue Veranstaltungen einzugeben, bitte %s/%s"
|
6056 |
|
6057 |
+
#: app/features/profile/profile.php:18 app/libraries/main.php:1961
|
6058 |
#, fuzzy
|
6059 |
#| msgid "Your booking cannot be canceled."
|
6060 |
msgid "Your booking already canceled!"
|
6064 |
msgid "#"
|
6065 |
msgstr ""
|
6066 |
|
6067 |
+
#: app/features/profile/profile.php:56 app/libraries/main.php:2931
|
6068 |
msgid "Status"
|
6069 |
msgstr ""
|
6070 |
|
6071 |
+
#: app/features/profile/profile.php:59 app/libraries/main.php:2076
|
6072 |
msgid "Attendees"
|
6073 |
msgstr "Teilnehmer"
|
6074 |
|
6107 |
msgid "No bookings found!"
|
6108 |
msgstr "Keine Buchungen gefunden"
|
6109 |
|
6110 |
+
#: app/features/search.php:87 app/libraries/main.php:4921
|
6111 |
msgid "label"
|
6112 |
msgstr "label"
|
6113 |
|
6134 |
msgstr ""
|
6135 |
|
6136 |
#: app/features/search_bar/search_result.php:11
|
6137 |
+
#: app/libraries/notifications.php:760 app/libraries/render.php:452
|
6138 |
#: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
|
6139 |
#: app/skins/single.php:160 app/skins/single.php:738
|
6140 |
#: app/skins/single/default.php:101 app/skins/single/default.php:313
|
6218 |
msgid "Discount"
|
6219 |
msgstr "Rabatt"
|
6220 |
|
6221 |
+
#: app/libraries/book.php:651 app/modules/booking/default.php:306
|
6222 |
+
#: app/modules/booking/default.php:404
|
6223 |
msgid "Download Invoice"
|
6224 |
msgstr "Download Rechnung"
|
6225 |
|
6298 |
"Eine Vorschau kann nicht angezeit werden, da es sich um einen geschützen "
|
6299 |
"Beitrag handelt."
|
6300 |
|
6301 |
+
#: app/libraries/main.php:331 app/libraries/main.php:1577
|
6302 |
+
#: app/libraries/main.php:1602
|
6303 |
msgid "Grid View"
|
6304 |
msgstr "Rasterdarstellung"
|
6305 |
|
6306 |
+
#: app/libraries/main.php:332 app/libraries/main.php:1578
|
6307 |
+
#: app/libraries/main.php:1603
|
6308 |
msgid "Agenda View"
|
6309 |
msgstr "Agendaansicht"
|
6310 |
|
6311 |
+
#: app/libraries/main.php:333 app/libraries/main.php:1569
|
6312 |
+
#: app/libraries/main.php:1594
|
6313 |
msgid "Full Calendar"
|
6314 |
msgstr "Ganzer Kalender"
|
6315 |
|
6316 |
+
#: app/libraries/main.php:335 app/libraries/main.php:1571
|
6317 |
+
#: app/libraries/main.php:1596
|
6318 |
msgid "Calendar/Monthly View"
|
6319 |
msgstr "Kalender-/Monatsansicht"
|
6320 |
|
6321 |
+
#: app/libraries/main.php:338 app/libraries/main.php:1574
|
6322 |
+
#: app/libraries/main.php:1599
|
6323 |
msgid "Timetable View"
|
6324 |
msgstr "Stundenplan"
|
6325 |
|
6326 |
+
#: app/libraries/main.php:339 app/libraries/main.php:1575
|
6327 |
+
#: app/libraries/main.php:1600
|
6328 |
msgid "Masonry View"
|
6329 |
msgstr "Kachel Ansicht"
|
6330 |
|
6331 |
+
#: app/libraries/main.php:340 app/libraries/main.php:1579
|
6332 |
+
#: app/libraries/main.php:1604
|
6333 |
msgid "Map View"
|
6334 |
msgstr "Kartenansicht"
|
6335 |
|
6336 |
+
#: app/libraries/main.php:341
|
6337 |
msgid "Cover View"
|
6338 |
msgstr "Deckblattansicht"
|
6339 |
|
6340 |
+
#: app/libraries/main.php:342
|
6341 |
msgid "Countdown View"
|
6342 |
msgstr "Countdownansicht"
|
6343 |
|
6344 |
+
#: app/libraries/main.php:343
|
6345 |
msgid "Available Spot"
|
6346 |
msgstr "Verfügbarer Spot"
|
6347 |
|
6348 |
+
#: app/libraries/main.php:344
|
6349 |
msgid "Carousel View"
|
6350 |
msgstr "Karussellansicht"
|
6351 |
|
6352 |
+
#: app/libraries/main.php:345
|
6353 |
msgid "Slider View"
|
6354 |
msgstr "Slideransicht"
|
6355 |
|
6356 |
+
#: app/libraries/main.php:346
|
6357 |
+
#, fuzzy
|
6358 |
+
#| msgid "Timetable View"
|
6359 |
+
msgid "Timeline View"
|
6360 |
+
msgstr "Stundenplan"
|
6361 |
+
|
6362 |
+
#: app/libraries/main.php:384 app/libraries/main.php:4933
|
6363 |
msgid "SU"
|
6364 |
msgstr "SO"
|
6365 |
|
6366 |
+
#: app/libraries/main.php:385 app/libraries/main.php:4934
|
6367 |
msgid "MO"
|
6368 |
msgstr "MO"
|
6369 |
|
6370 |
+
#: app/libraries/main.php:386 app/libraries/main.php:4935
|
6371 |
msgid "TU"
|
6372 |
msgstr "DI"
|
6373 |
|
6374 |
+
#: app/libraries/main.php:387 app/libraries/main.php:4936
|
6375 |
msgid "WE"
|
6376 |
msgstr "MI"
|
6377 |
|
6378 |
+
#: app/libraries/main.php:388 app/libraries/main.php:4937
|
6379 |
msgid "TH"
|
6380 |
msgstr "DO"
|
6381 |
|
6382 |
+
#: app/libraries/main.php:389 app/libraries/main.php:4938
|
6383 |
msgid "FR"
|
6384 |
msgstr "FR"
|
6385 |
|
6386 |
+
#: app/libraries/main.php:390 app/libraries/main.php:4939
|
6387 |
msgid "SA"
|
6388 |
msgstr "SA"
|
6389 |
|
6390 |
+
#: app/libraries/main.php:539
|
6391 |
#, fuzzy
|
6392 |
#| msgid "Upload/Add image"
|
6393 |
msgid "Upload Field"
|
6394 |
msgstr "Bild hochladen/hinzufügen"
|
6395 |
|
6396 |
+
#: app/libraries/main.php:547
|
6397 |
#, fuzzy
|
6398 |
#| msgid "Additional Organizers"
|
6399 |
msgid "Additional Locations"
|
6400 |
msgstr "Zusätzliche Organisatoren"
|
6401 |
|
6402 |
+
#: app/libraries/main.php:631
|
6403 |
#, fuzzy
|
6404 |
#| msgid "Single Event Style"
|
6405 |
msgid "Single Event"
|
6406 |
msgstr "Single Event Stil"
|
6407 |
|
6408 |
+
#: app/libraries/main.php:697
|
6409 |
#, fuzzy
|
6410 |
#| msgid "Social Module : "
|
6411 |
msgid "Modules"
|
6412 |
msgstr "Social Modul:"
|
6413 |
|
6414 |
+
#: app/libraries/main.php:867
|
6415 |
msgid "New Addons For MEC! Now Customize MEC in Elementor"
|
6416 |
msgstr ""
|
6417 |
|
6418 |
+
#: app/libraries/main.php:874
|
6419 |
msgid ""
|
6420 |
"The time has come at last, and the new practical add-ons for MEC have been "
|
6421 |
"released. This is a revolution in the world of Event Calendars. We have "
|
6423 |
"below:"
|
6424 |
msgstr ""
|
6425 |
|
6426 |
+
#: app/libraries/main.php:876
|
6427 |
msgid ""
|
6428 |
"<strong>WooCommerce Integration:</strong> You can now purchase ticket (as "
|
6429 |
"products) and Woo products at the same time."
|
6430 |
msgstr ""
|
6431 |
|
6432 |
+
#: app/libraries/main.php:877
|
6433 |
msgid ""
|
6434 |
"<strong>Event API:</strong> display your events (shortcodes/single event) on "
|
6435 |
"other websites without MEC. Use JSON output features to make your Apps "
|
6436 |
"compatible with MEC."
|
6437 |
msgstr ""
|
6438 |
|
6439 |
+
#: app/libraries/main.php:878
|
6440 |
msgid ""
|
6441 |
"<strong>Elementor Single Builder:</strong> Edit single event page using "
|
6442 |
"Elementor. Manage the position of all elements in the Single page and in "
|
6443 |
"desktops, mobiles and tablets as well."
|
6444 |
msgstr ""
|
6445 |
|
6446 |
+
#: app/libraries/main.php:879
|
6447 |
msgid ""
|
6448 |
"<strong>Elementor Shortcode Builder:</strong> It enables you to create "
|
6449 |
"shortcodes in Elementor Live Editor."
|
6450 |
msgstr ""
|
6451 |
|
6452 |
+
#: app/libraries/main.php:1428
|
6453 |
msgid "Events at this location"
|
6454 |
msgstr "Veranstaltungen an diesem Ort "
|
6455 |
|
6456 |
+
#: app/libraries/main.php:1428
|
6457 |
msgid "Event at this location"
|
6458 |
msgstr "Veranstaltung an diesem Ort "
|
6459 |
|
6460 |
+
#: app/libraries/main.php:1470
|
6461 |
msgid "Facebook"
|
6462 |
msgstr "Facebook"
|
6463 |
|
6464 |
+
#: app/libraries/main.php:1471
|
6465 |
msgid "Twitter"
|
6466 |
msgstr "Twitter"
|
6467 |
|
6468 |
+
#: app/libraries/main.php:1472 app/libraries/main.php:1522
|
6469 |
msgid "Linkedin"
|
6470 |
msgstr "Linkedin"
|
6471 |
|
6472 |
+
#: app/libraries/main.php:1473 app/libraries/main.php:1558
|
6473 |
msgid "VK"
|
6474 |
msgstr ""
|
6475 |
|
6476 |
+
#: app/libraries/main.php:1492
|
6477 |
msgid "Share on Facebook"
|
6478 |
msgstr "Teilen auf Facebook"
|
6479 |
|
6480 |
+
#: app/libraries/main.php:1507
|
6481 |
msgid "Tweet"
|
6482 |
msgstr "Tweet"
|
6483 |
|
6484 |
+
#: app/libraries/main.php:1580
|
6485 |
#, fuzzy
|
6486 |
#| msgid "Shortcode"
|
6487 |
msgid "Custom Shortcode"
|
6488 |
msgstr "Shortcode"
|
6489 |
|
6490 |
+
#: app/libraries/main.php:1941
|
6491 |
#, fuzzy
|
6492 |
#| msgid "Your booking successfully verified."
|
6493 |
msgid "Your booking already verified!"
|
6494 |
msgstr "Ihre Buchung wurde erfolgreich verifiziert."
|
6495 |
|
6496 |
+
#: app/libraries/main.php:1946
|
6497 |
msgid "Your booking successfully verified."
|
6498 |
msgstr "Ihre Buchung wurde erfolgreich verifiziert."
|
6499 |
|
6500 |
+
#: app/libraries/main.php:1947
|
6501 |
msgid "Your booking cannot verify!"
|
6502 |
msgstr "Ihre Buchung kann nicht verifiziert werden!"
|
6503 |
|
6504 |
+
#: app/libraries/main.php:1966
|
6505 |
msgid "Your booking successfully canceled."
|
6506 |
msgstr "Ihre Buchung wurde erfolgreich storniert."
|
6507 |
|
6508 |
+
#: app/libraries/main.php:1967
|
6509 |
msgid "Your booking cannot be canceled."
|
6510 |
msgstr "Ihre Buchung kann nicht storniert werden."
|
6511 |
|
6512 |
+
#: app/libraries/main.php:1971
|
6513 |
msgid "You canceled the payment successfully."
|
6514 |
msgstr "Sie haben die Zahlung erfolgreich storniert."
|
6515 |
|
6516 |
+
#: app/libraries/main.php:1975
|
6517 |
msgid "You returned from payment gateway successfully."
|
6518 |
msgstr "Sie sind vom Bezahlungs-Gateway erfolgreich zurückgekehrt."
|
6519 |
|
6520 |
+
#: app/libraries/main.php:1991
|
6521 |
#, fuzzy
|
6522 |
#| msgid "Cannot find the booking!"
|
6523 |
msgid "Cannot find the invoice!"
|
6524 |
msgstr "Kann die Buchung nicht finden!"
|
6525 |
|
6526 |
+
#: app/libraries/main.php:1991
|
6527 |
#, fuzzy
|
6528 |
#| msgid "Booking is invalid."
|
6529 |
msgid "Invoice is invalid."
|
6530 |
msgstr "Buchung ist ungültig."
|
6531 |
|
6532 |
+
#: app/libraries/main.php:2011
|
6533 |
msgid ""
|
6534 |
"Your booking still is not confirmed. You able download it after confirmation!"
|
6535 |
msgstr ""
|
6536 |
|
6537 |
+
#: app/libraries/main.php:2011
|
6538 |
#, fuzzy
|
6539 |
#| msgid "Booking Confirmation"
|
6540 |
msgid "Booking Not Confirmed."
|
6541 |
msgstr "Buchungsbestätigung"
|
6542 |
|
6543 |
+
#: app/libraries/main.php:2017
|
6544 |
msgid "Cannot find the booking!"
|
6545 |
msgstr "Kann die Buchung nicht finden!"
|
6546 |
|
6547 |
+
#: app/libraries/main.php:2017
|
6548 |
msgid "Booking is invalid."
|
6549 |
msgstr "Buchung ist ungültig."
|
6550 |
|
6551 |
+
#: app/libraries/main.php:2046
|
6552 |
#, php-format
|
6553 |
msgid "%s Invoice"
|
6554 |
msgstr "% s Rechnung"
|
6555 |
|
6556 |
+
#: app/libraries/main.php:2120
|
6557 |
msgid "Billing"
|
6558 |
msgstr "Abrechnung"
|
6559 |
|
6560 |
+
#: app/libraries/main.php:2131
|
6561 |
msgid "Total"
|
6562 |
msgstr "Gesamt"
|
6563 |
|
6564 |
+
#: app/libraries/main.php:2188
|
6565 |
#, fuzzy
|
6566 |
#| msgid "Request is invalid!"
|
6567 |
msgid "Request is not valid."
|
6568 |
msgstr "Die Anfrage ist ungültig!"
|
6569 |
|
6570 |
+
#: app/libraries/main.php:2188
|
6571 |
msgid "iCal export stopped!"
|
6572 |
msgstr "iCal Export wurde unterbrochen!"
|
6573 |
|
6574 |
+
#: app/libraries/main.php:2515 app/libraries/main.php:2545
|
6575 |
+
#: app/libraries/main.php:2574 app/libraries/main.php:2604
|
6576 |
+
#: app/libraries/main.php:2633 app/libraries/main.php:2662
|
6577 |
+
#: app/libraries/main.php:2691 app/libraries/main.php:2720
|
6578 |
+
#: app/libraries/main.php:2749 app/libraries/main.php:2773
|
6579 |
+
#: app/libraries/main.php:2817 app/libraries/main.php:2861
|
6580 |
+
#: app/libraries/main.php:2908 app/libraries/main.php:2955
|
6581 |
msgid "Sort"
|
6582 |
msgstr "Sortieren"
|
6583 |
|
6584 |
+
#: app/libraries/main.php:2521 app/libraries/main.php:2551
|
6585 |
+
#: app/libraries/main.php:2580 app/libraries/main.php:2610
|
6586 |
+
#: app/libraries/main.php:2639 app/libraries/main.php:2668
|
6587 |
+
#: app/libraries/main.php:2697 app/libraries/main.php:2726
|
6588 |
+
#: app/libraries/main.php:2779 app/libraries/main.php:2823
|
6589 |
+
#: app/libraries/main.php:2867 app/libraries/main.php:2914
|
6590 |
msgid "Required Field"
|
6591 |
msgstr "Pflichtfeld"
|
6592 |
|
6593 |
+
#: app/libraries/main.php:2527 app/libraries/main.php:2557
|
6594 |
+
#: app/libraries/main.php:2586 app/libraries/main.php:2616
|
6595 |
+
#: app/libraries/main.php:2645 app/libraries/main.php:2674
|
6596 |
+
#: app/libraries/main.php:2703 app/libraries/main.php:2732
|
6597 |
+
#: app/libraries/main.php:2785 app/libraries/main.php:2829
|
6598 |
+
#: app/libraries/main.php:2873 app/libraries/main.php:2920
|
6599 |
msgid "Insert a label for this field"
|
6600 |
msgstr "Geben Sie eine Bezeichnung (Label) für dieses Feld ein."
|
6601 |
|
6602 |
+
#: app/libraries/main.php:2755
|
6603 |
msgid "HTML and shortcode are allowed."
|
6604 |
msgstr "HTML und shortcodes sind erlaubt."
|
6605 |
|
6606 |
+
#: app/libraries/main.php:2798 app/libraries/main.php:2842
|
6607 |
+
#: app/libraries/main.php:2886
|
6608 |
msgid "Option"
|
6609 |
msgstr "Option"
|
6610 |
|
6611 |
+
#: app/libraries/main.php:2920
|
6612 |
#, php-format
|
6613 |
msgid "Instead of %s, the page title with a link will be show."
|
6614 |
msgstr "Anstelle von %s, wird der Seitentitel mit einem Link gezeigt"
|
6615 |
|
6616 |
+
#: app/libraries/main.php:2922
|
6617 |
msgid "Agreement Page"
|
6618 |
msgstr "Zustimmungsseite"
|
6619 |
|
6620 |
+
#: app/libraries/main.php:2933
|
6621 |
msgid "Checked by default"
|
6622 |
msgstr ""
|
6623 |
|
6624 |
+
#: app/libraries/main.php:2934
|
6625 |
msgid "Unchecked by default"
|
6626 |
msgstr ""
|
6627 |
|
6628 |
+
#: app/libraries/main.php:2957
|
6629 |
msgid "Insert a label for this option"
|
6630 |
msgstr "Ein neues Label für diese Option einfügen"
|
6631 |
|
6632 |
+
#: app/libraries/main.php:2972
|
6633 |
msgid "Free"
|
6634 |
msgstr "kostenfrei"
|
6635 |
|
6636 |
+
#: app/libraries/main.php:3578 app/libraries/main.php:5183
|
6637 |
#, fuzzy
|
6638 |
#| msgid "M.E. Calendar"
|
6639 |
msgid "M.E. Calender"
|
6640 |
msgstr "M.E. Calender"
|
6641 |
|
6642 |
+
#: app/libraries/main.php:3733
|
6643 |
#, php-format
|
6644 |
msgid "Copy of %s"
|
6645 |
msgstr "Kopie von %s"
|
6646 |
|
6647 |
+
#: app/libraries/main.php:4426
|
6648 |
msgid "Booked an event."
|
6649 |
msgstr "Eine Veranstaltung wurde gebucht."
|
6650 |
|
6651 |
+
#: app/libraries/main.php:4467
|
6652 |
#, php-format
|
6653 |
msgid "%s booked %s event."
|
6654 |
msgstr "%s gebuchtes %s Event"
|
6655 |
|
6656 |
+
#: app/libraries/main.php:4916
|
6657 |
msgid "Taxonomies"
|
6658 |
msgstr "Klassifizierung "
|
6659 |
|
6660 |
+
#: app/libraries/main.php:4918
|
6661 |
msgid "Category Plural Label"
|
6662 |
msgstr "Kategorien"
|
6663 |
|
6664 |
+
#: app/libraries/main.php:4919
|
6665 |
msgid "Category Singular Label"
|
6666 |
msgstr "Kategorie"
|
6667 |
|
6668 |
+
#: app/libraries/main.php:4920
|
6669 |
msgid "Label Plural Label"
|
6670 |
msgstr "Labels"
|
6671 |
|
6672 |
+
#: app/libraries/main.php:4921
|
6673 |
msgid "Label Singular Label"
|
6674 |
msgstr "Label"
|
6675 |
|
6676 |
+
#: app/libraries/main.php:4922
|
6677 |
msgid "Location Plural Label"
|
6678 |
msgstr "Veranstaltungsorte"
|
6679 |
|
6680 |
+
#: app/libraries/main.php:4923
|
6681 |
msgid "Location Singular Label"
|
6682 |
msgstr "Veranstaltungsort"
|
6683 |
|
6684 |
+
#: app/libraries/main.php:4924
|
6685 |
msgid "Organizer Plural Label"
|
6686 |
msgstr "Veranstalter"
|
6687 |
|
6688 |
+
#: app/libraries/main.php:4925
|
6689 |
msgid "Organizer Singular Label"
|
6690 |
msgstr "Veranstalter"
|
6691 |
|
6692 |
+
#: app/libraries/main.php:4926
|
6693 |
#, fuzzy
|
6694 |
#| msgid "Label Plural Label"
|
6695 |
msgid "Speaker Plural Label"
|
6696 |
msgstr "Labels"
|
6697 |
|
6698 |
+
#: app/libraries/main.php:4927
|
6699 |
#, fuzzy
|
6700 |
#| msgid "Label Singular Label"
|
6701 |
msgid "Speaker Singular Label"
|
6702 |
msgstr "Label"
|
6703 |
|
6704 |
+
#: app/libraries/main.php:4933
|
6705 |
msgid "Sunday abbreviation"
|
6706 |
msgstr "Sonntag Abkürzung"
|
6707 |
|
6708 |
+
#: app/libraries/main.php:4934
|
6709 |
msgid "Monday abbreviation"
|
6710 |
msgstr "Montag Abkürzung"
|
6711 |
|
6712 |
+
#: app/libraries/main.php:4935
|
6713 |
msgid "Tuesday abbreviation"
|
6714 |
msgstr "Dienstag Abkürzung"
|
6715 |
|
6716 |
+
#: app/libraries/main.php:4936
|
6717 |
msgid "Wednesday abbreviation"
|
6718 |
msgstr "Mittwoch Abkürzung"
|
6719 |
|
6720 |
+
#: app/libraries/main.php:4937
|
6721 |
msgid "Thursday abbreviation"
|
6722 |
msgstr "Donnerstag Abkürzung"
|
6723 |
|
6724 |
+
#: app/libraries/main.php:4938
|
6725 |
msgid "Friday abbreviation"
|
6726 |
msgstr "Freitag Abkürzung"
|
6727 |
|
6728 |
+
#: app/libraries/main.php:4939
|
6729 |
msgid "Saturday abbreviation"
|
6730 |
msgstr "Samstag Abkürzung "
|
6731 |
|
6732 |
+
#: app/libraries/main.php:4943
|
6733 |
msgid "Others"
|
6734 |
msgstr "Andere"
|
6735 |
|
6736 |
+
#: app/libraries/main.php:4945
|
6737 |
msgid "Booking Success Message"
|
6738 |
msgstr "Buchung erfolgreich Mitteilung"
|
6739 |
|
6740 |
+
#: app/libraries/main.php:4945
|
6741 |
msgid ""
|
6742 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
6743 |
"needed, please check your email."
|
6745 |
"Vielen Dank für Ihre Buchung. Für die gebuchten Tickets ist ggf. eine "
|
6746 |
"Bestätigung durch Sie erforderlich. Bitte überprüfen Sie Ihre Emails."
|
6747 |
|
6748 |
+
#: app/libraries/main.php:4946 app/widgets/single.php:131
|
6749 |
msgid "Register Button"
|
6750 |
msgstr "Register Button"
|
6751 |
|
6752 |
+
#: app/libraries/main.php:4946 app/skins/available_spot/tpl.php:224
|
6753 |
#: app/skins/carousel/render.php:158 app/skins/carousel/render.php:194
|
6754 |
#: app/skins/grid/render.php:118 app/skins/grid/render.php:164
|
6755 |
#: app/skins/grid/render.php:207 app/skins/grid/render.php:235
|
6766 |
msgid "REGISTER"
|
6767 |
msgstr "ANMELDEN"
|
6768 |
|
6769 |
+
#: app/libraries/main.php:4947
|
6770 |
msgid "View Detail Button"
|
6771 |
msgstr "Ansicht Detail Button"
|
6772 |
|
6773 |
+
#: app/libraries/main.php:4947 app/skins/carousel/render.php:158
|
6774 |
#: app/skins/carousel/render.php:194 app/skins/grid/render.php:118
|
6775 |
#: app/skins/grid/render.php:164 app/skins/grid/render.php:207
|
6776 |
#: app/skins/grid/render.php:235 app/skins/list/render.php:111
|
6781 |
msgid "View Detail"
|
6782 |
msgstr "Details "
|
6783 |
|
6784 |
+
#: app/libraries/main.php:4948
|
6785 |
msgid "Event Detail Button"
|
6786 |
msgstr "Event Detail Button"
|
6787 |
|
6788 |
+
#: app/libraries/main.php:4948 app/skins/countdown/tpl.php:244
|
6789 |
msgid "Event Detail"
|
6790 |
msgstr "Veranstaltungsdetails"
|
6791 |
|
6792 |
+
#: app/libraries/main.php:4950
|
6793 |
msgid "More Info Link"
|
6794 |
msgstr "Link Mehr Informationen"
|
6795 |
|
6796 |
+
#: app/libraries/main.php:4953
|
6797 |
msgid "Ticket (Singular)"
|
6798 |
msgstr "Ticket"
|
6799 |
|
6800 |
+
#: app/libraries/main.php:4954
|
6801 |
msgid "Tickets (Plural)"
|
6802 |
msgstr "Tickets"
|
6803 |
|
6804 |
+
#: app/libraries/main.php:5040
|
6805 |
msgid "EventON"
|
6806 |
msgstr "EventON"
|
6807 |
|
6808 |
+
#: app/libraries/main.php:5041
|
6809 |
msgid "The Events Calendar"
|
6810 |
msgstr "The Events Calendar"
|
6811 |
|
6812 |
+
#: app/libraries/main.php:5042
|
6813 |
msgid "Events Schedule WP Plugin"
|
6814 |
msgstr "Event Zeitplan WP-Plugin"
|
6815 |
|
6816 |
+
#: app/libraries/main.php:5043
|
6817 |
msgid "Calendarize It"
|
6818 |
msgstr ""
|
6819 |
|
6820 |
+
#: app/libraries/main.php:5044
|
6821 |
#, fuzzy
|
6822 |
#| msgid "No Search Options"
|
6823 |
msgid "Event Espresso"
|
6824 |
msgstr "Keine Suchoptionen"
|
6825 |
|
6826 |
+
#: app/libraries/main.php:5045
|
6827 |
#, fuzzy
|
6828 |
#| msgid "Event Repeating"
|
6829 |
msgid "Events Manager (Recurring)"
|
6830 |
msgstr "Wiederholende Veranstaltung"
|
6831 |
|
6832 |
+
#: app/libraries/main.php:5046
|
6833 |
#, fuzzy
|
6834 |
#| msgid "Modern Events Calendar"
|
6835 |
msgid "Events Manager (Single)"
|
6836 |
msgstr "Moderner Event Kalender "
|
6837 |
|
6838 |
+
#: app/libraries/main.php:5120 app/libraries/main.php:5140
|
6839 |
msgid "Confirmed"
|
6840 |
msgstr "Bestätigt"
|
6841 |
|
6842 |
+
#: app/libraries/main.php:5121 app/libraries/main.php:5148
|
6843 |
msgid "Rejected"
|
6844 |
msgstr "Abgelehnt"
|
6845 |
|
6846 |
+
#: app/libraries/main.php:5122 app/libraries/main.php:5144
|
6847 |
msgid "Pending"
|
6848 |
msgstr "Ausstehend"
|
6849 |
|
6850 |
+
#: app/libraries/main.php:5170
|
6851 |
msgid "Waiting"
|
6852 |
msgstr "in Bearbeitung"
|
6853 |
|
6854 |
+
#: app/libraries/main.php:5375 app/libraries/render.php:382
|
6855 |
msgid "Skin controller does not exist."
|
6856 |
msgstr "Skin contoller existiert nicht."
|
6857 |
|
6887 |
msgid "Your event is published."
|
6888 |
msgstr "Die Veranstaltung wurde veröffentlicht."
|
6889 |
|
6890 |
+
#: app/libraries/notifications.php:750
|
6891 |
+
#, php-format
|
6892 |
+
msgid "%s to %s"
|
6893 |
+
msgstr "%s zu %s"
|
6894 |
+
|
6895 |
+
#: app/libraries/notifications.php:846 app/libraries/notifications.php:857
|
6896 |
+
#: app/libraries/notifications.php:859
|
6897 |
msgid "to"
|
6898 |
msgstr ""
|
6899 |
|
6900 |
+
#: app/libraries/notifications.php:873 app/modules/export/details.php:45
|
6901 |
msgid "+ Add to Google Calendar"
|
6902 |
msgstr "+ zum Google Calendar hinzufügen"
|
6903 |
|
6904 |
+
#: app/libraries/notifications.php:874 app/modules/export/details.php:46
|
6905 |
msgid "+ iCal export"
|
6906 |
msgstr "+ zu iCal exportieren"
|
6907 |
|
6908 |
+
#: app/libraries/notifications.php:937
|
6909 |
msgid "Yes"
|
6910 |
msgstr "Ja"
|
6911 |
|
6912 |
+
#: app/libraries/notifications.php:937
|
6913 |
msgid "No"
|
6914 |
msgstr "Nein"
|
6915 |
|
6916 |
+
#: app/libraries/skins.php:962
|
6917 |
msgid "Ignore month and years"
|
6918 |
msgstr "Monat und Jahre ignorieren"
|
6919 |
|
7084 |
#: app/skins/grid/tpl.php:66 app/skins/list/tpl.php:67
|
7085 |
#: app/skins/list/tpl.php:71 app/skins/masonry/tpl.php:62
|
7086 |
#: app/skins/masonry/tpl.php:66 app/skins/slider/tpl.php:44
|
7087 |
+
#: app/skins/timeline/tpl.php:56 app/skins/timeline/tpl.php:60
|
7088 |
msgid "No event found!"
|
7089 |
msgstr "Keine Veranstaltung gefunden"
|
7090 |
|
7091 |
#: app/skins/agenda/tpl.php:75 app/skins/custom/tpl.php:71
|
7092 |
#: app/skins/grid/tpl.php:71 app/skins/list/tpl.php:76
|
7093 |
+
#: app/skins/masonry/tpl.php:71 app/skins/timeline/tpl.php:65
|
7094 |
+
#: app/skins/yearly_view/render.php:124
|
7095 |
msgid "Load More"
|
7096 |
msgstr "Weitere anzeigen"
|
7097 |
|
7122 |
msgstr "Ausgewählte Veranstaltung"
|
7123 |
|
7124 |
#: app/skins/daily_view/render.php:104 app/skins/monthly_view/calendar.php:170
|
7125 |
+
#: app/skins/monthly_view/calendar_clean.php:180
|
7126 |
#: app/skins/weekly_view/render.php:113
|
7127 |
#, fuzzy
|
7128 |
#| msgid "Sold out!"
|
7145 |
#: app/skins/monthly_view/calendar.php:68
|
7146 |
#: app/skins/monthly_view/calendar.php:182
|
7147 |
#: app/skins/monthly_view/calendar_clean.php:68
|
7148 |
+
#: app/skins/monthly_view/calendar_clean.php:196
|
7149 |
#, php-format
|
7150 |
msgid "Events for %s"
|
7151 |
msgstr "Veranstaltungen für %s"
|
7152 |
|
7153 |
#: app/skins/monthly_view/calendar.php:184
|
7154 |
+
#: app/skins/monthly_view/calendar_clean.php:198
|
7155 |
#: app/skins/timetable/render.php:113 app/skins/weekly_view/render.php:122
|
7156 |
msgid "No Events"
|
7157 |
msgstr "Keine Veranstaltungen"
|
7191 |
msgid "Tags: "
|
7192 |
msgstr "Tags:"
|
7193 |
|
7194 |
+
#: app/skins/timeline/render.php:122
|
7195 |
+
#, fuzzy
|
7196 |
+
#| msgid "Title of event"
|
7197 |
+
msgid "Register for event"
|
7198 |
+
msgstr "Titel der Veranstaltung"
|
7199 |
+
|
7200 |
+
#: app/skins/timeline/render.php:122
|
7201 |
+
#, fuzzy
|
7202 |
+
#| msgid "View Detail"
|
7203 |
+
msgid "View Details"
|
7204 |
+
msgstr "Details "
|
7205 |
+
|
7206 |
#: app/skins/timetable/modern.php:72 app/skins/weekly_view/tpl.php:72
|
7207 |
#, php-format
|
7208 |
msgid "Week %s"
|
7310 |
msgid "http://webnus.net"
|
7311 |
msgstr "http://webnus.net"
|
7312 |
|
7313 |
+
#, fuzzy
|
7314 |
+
#~| msgid ""
|
7315 |
+
#~| "Webnus is elite and trusted author with high percentage of satisfied "
|
7316 |
+
#~| "user. If you have any issues please don't hesitate to contact us, we "
|
7317 |
+
#~| "will reply as soon as possible."
|
7318 |
+
#~ msgid ""
|
7319 |
+
#~ "Webnus is an elite and trusted author with a high percentage of satisfied "
|
7320 |
+
#~ "users. If you have any issues please don't hesitate to contact us, we "
|
7321 |
+
#~ "will reply as soon as possible."
|
7322 |
+
#~ msgstr ""
|
7323 |
+
#~ "Webnus ist ein Elite- und vertrauenswürdiger Autor mit hoher Prozentzahl "
|
7324 |
+
#~ "von zufriedenen Nutzern. Wenn Sie irgendwelche Fehlerprobleme haben, "
|
7325 |
+
#~ "zögern Sie nicht uns zu kontaktieren. Wir werden so schnell wie möglich "
|
7326 |
+
#~ "antworten."
|
7327 |
+
|
7328 |
#~ msgid "Booking reminder notification is not enabled!"
|
7329 |
#~ msgstr "Die Erinnerung für die Buchungserinnerung ist nicht aktiviert!"
|
7330 |
|
7393 |
#~ msgid "Gateway"
|
7394 |
#~ msgstr "Gateway"
|
7395 |
|
|
|
|
|
|
|
7396 |
#, fuzzy
|
7397 |
#~| msgid "Booking cancellation link."
|
7398 |
#~ msgid "Cancellation Date"
|
languages/modern-events-calendar-lite-en_US.mo
CHANGED
Binary file
|
languages/modern-events-calendar-lite-en_US.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: modern-events-calendar\n"
|
4 |
-
"POT-Creation-Date: 2019-11-
|
5 |
-
"PO-Revision-Date: 2019-11-
|
6 |
"Last-Translator: Howard <howard@realtyna.com>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: en_US\n"
|
@@ -61,14 +61,14 @@ msgid "Event Color"
|
|
61 |
msgstr ""
|
62 |
|
63 |
#: app/features/contextual.php:55 app/features/mec.php:348
|
64 |
-
#: app/features/mec/dashboard.php:134 app/features/mec/support-page.php:
|
65 |
-
#: app/features/mec/support.php:20 app/libraries/main.php:
|
66 |
msgid "Settings"
|
67 |
msgstr ""
|
68 |
|
69 |
#: app/features/contextual.php:62 app/features/events.php:2415
|
70 |
#: app/features/mec/booking.php:439 app/features/mec/support.php:29
|
71 |
-
#: app/libraries/main.php:
|
72 |
msgid "Booking Form"
|
73 |
msgstr ""
|
74 |
|
@@ -82,7 +82,7 @@ msgid ""
|
|
82 |
msgstr ""
|
83 |
|
84 |
#: app/features/contextual.php:70 app/features/mec/booking.php:557
|
85 |
-
#: app/features/mec/support.php:36 app/libraries/main.php:
|
86 |
msgid "Payment Gateways"
|
87 |
msgstr ""
|
88 |
|
@@ -94,7 +94,7 @@ msgid ""
|
|
94 |
msgstr ""
|
95 |
|
96 |
#: app/features/contextual.php:77 app/features/mec/support.php:45
|
97 |
-
#: app/libraries/main.php:
|
98 |
msgid "Notifications"
|
99 |
msgstr ""
|
100 |
|
@@ -158,12 +158,12 @@ msgid ""
|
|
158 |
msgstr ""
|
159 |
|
160 |
#: app/features/contextual.php:117 app/features/mec/settings.php:73
|
161 |
-
#: app/libraries/main.php:
|
162 |
msgid "General Options"
|
163 |
msgstr ""
|
164 |
|
165 |
#: app/features/contextual.php:139 app/features/mec/settings.php:405
|
166 |
-
#: app/libraries/main.php:
|
167 |
msgid "Slugs/Permalinks"
|
168 |
msgstr ""
|
169 |
|
@@ -172,27 +172,27 @@ msgid "Event Details/Single Event Page"
|
|
172 |
msgstr ""
|
173 |
|
174 |
#: app/features/contextual.php:166 app/features/mec/settings.php:437
|
175 |
-
#: app/libraries/main.php:
|
176 |
msgid "Currency Options"
|
177 |
msgstr ""
|
178 |
|
179 |
#: app/features/contextual.php:182 app/features/mec/modules.php:67
|
180 |
-
#: app/features/mec/modules.php:85 app/libraries/main.php:
|
181 |
msgid "Google Maps Options"
|
182 |
msgstr ""
|
183 |
|
184 |
#: app/features/contextual.php:244 app/features/mec/settings.php:494
|
185 |
-
#: app/libraries/main.php:
|
186 |
msgid "Google Recaptcha Options"
|
187 |
msgstr ""
|
188 |
|
189 |
#: app/features/contextual.php:258 app/features/mec/single.php:133
|
190 |
-
#: app/libraries/main.php:
|
191 |
msgid "Countdown Options"
|
192 |
msgstr ""
|
193 |
|
194 |
#: app/features/contextual.php:268 app/features/mec/modules.php:263
|
195 |
-
#: app/libraries/main.php:
|
196 |
msgid "Social Networks"
|
197 |
msgstr ""
|
198 |
|
@@ -201,34 +201,34 @@ msgid "Next Event Module"
|
|
201 |
msgstr ""
|
202 |
|
203 |
#: app/features/contextual.php:286 app/features/mec/settings.php:530
|
204 |
-
#: app/libraries/main.php:
|
205 |
msgid "Frontend Event Submission"
|
206 |
msgstr ""
|
207 |
|
208 |
#: app/features/contextual.php:298 app/features/events.php:325
|
209 |
-
#: app/libraries/main.php:
|
210 |
msgid "Exceptional Days"
|
211 |
msgstr ""
|
212 |
|
213 |
#: app/features/contextual.php:308 app/features/events.php:298
|
214 |
#: app/features/mec/booking.php:88 app/features/mec/notifications.php:35
|
215 |
-
#: app/libraries/main.php:
|
216 |
-
#: app/libraries/main.php:
|
217 |
msgid "Booking"
|
218 |
msgstr ""
|
219 |
|
220 |
#: app/features/contextual.php:318 app/features/mec/booking.php:261
|
221 |
-
#: app/libraries/main.php:
|
222 |
msgid "Coupons"
|
223 |
msgstr ""
|
224 |
|
225 |
#: app/features/contextual.php:326 app/features/mec/modules.php:324
|
226 |
-
#: app/libraries/main.php:
|
227 |
msgid "BuddyPress Integration"
|
228 |
msgstr ""
|
229 |
|
230 |
#: app/features/contextual.php:334 app/features/mec/settings.php:823
|
231 |
-
#: app/libraries/main.php:
|
232 |
msgid "Mailchimp Integration"
|
233 |
msgstr ""
|
234 |
|
@@ -237,15 +237,15 @@ msgid "MEC Activation"
|
|
237 |
msgstr ""
|
238 |
|
239 |
#: app/features/events.php:150 app/features/ix/export.php:34
|
240 |
-
#: app/features/mec/dashboard.php:
|
241 |
#: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
|
242 |
msgid "Events"
|
243 |
msgstr ""
|
244 |
|
245 |
#: app/features/events.php:151 app/features/fes.php:223
|
246 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
247 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
248 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
249 |
#: app/features/profile/profile.php:50 app/skins/daily_view/tpl.php:80
|
250 |
#: app/skins/monthly_view/tpl.php:71 app/skins/yearly_view/tpl.php:69
|
251 |
msgid "Event"
|
@@ -281,7 +281,7 @@ msgid "No events found in Trash!"
|
|
281 |
msgstr ""
|
282 |
|
283 |
#: app/features/events.php:175 app/features/events.php:3241
|
284 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
285 |
#: app/features/mec/meta_boxes/search_form.php:31
|
286 |
#: app/features/mec/meta_boxes/search_form.php:93
|
287 |
#: app/features/mec/meta_boxes/search_form.php:155
|
@@ -293,8 +293,8 @@ msgstr ""
|
|
293 |
#: app/features/mec/meta_boxes/search_form.php:514
|
294 |
#: app/features/mec/meta_boxes/search_form.php:575
|
295 |
#: app/features/mec/settings.php:776 app/features/mec/single.php:204
|
296 |
-
#: app/features/search.php:67 app/libraries/main.php:
|
297 |
-
#: app/libraries/skins.php:
|
298 |
#: app/skins/single/default.php:185 app/skins/single/default.php:397
|
299 |
#: app/skins/single/m1.php:170 app/skins/single/m2.php:102
|
300 |
#: app/skins/single/modern.php:110
|
@@ -303,7 +303,7 @@ msgstr ""
|
|
303 |
|
304 |
#: app/features/events.php:176 app/features/events.php:3212
|
305 |
#: app/features/fes/form.php:746 app/features/mec.php:336
|
306 |
-
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:
|
307 |
msgid "Categories"
|
308 |
msgstr ""
|
309 |
|
@@ -403,7 +403,7 @@ msgstr ""
|
|
403 |
#: app/features/events.php:329 app/features/events.php:3243
|
404 |
#: app/features/events.php:3434 app/features/events.php:3476
|
405 |
#: app/features/ix.php:3373 app/features/ix.php:3414
|
406 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
407 |
#: app/features/mec/meta_boxes/search_form.php:45
|
408 |
#: app/features/mec/meta_boxes/search_form.php:107
|
409 |
#: app/features/mec/meta_boxes/search_form.php:169
|
@@ -418,7 +418,7 @@ msgstr ""
|
|
418 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
419 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
420 |
#: app/features/organizers.php:271 app/features/search.php:75
|
421 |
-
#: app/libraries/main.php:
|
422 |
#: app/skins/single.php:797 app/skins/single/default.php:210
|
423 |
#: app/skins/single/default.php:422 app/skins/single/m1.php:90
|
424 |
#: app/skins/single/m2.php:22 app/skins/single/modern.php:31
|
@@ -426,7 +426,7 @@ msgid "Organizer"
|
|
426 |
msgstr ""
|
427 |
|
428 |
#: app/features/events.php:330 app/features/events.php:1157
|
429 |
-
#: app/features/fes/form.php:719 app/libraries/main.php:
|
430 |
#: app/skins/single.php:584 app/skins/single/default.php:119
|
431 |
#: app/skins/single/default.php:331 app/skins/single/m1.php:49
|
432 |
#: app/skins/single/modern.php:199
|
@@ -445,7 +445,7 @@ msgstr ""
|
|
445 |
#: app/features/fes.php:223 app/features/fes/form.php:678
|
446 |
#: app/features/labels.php:178 app/features/mec/booking.php:45
|
447 |
#: app/features/organizers.php:279 app/features/profile/profile.php:180
|
448 |
-
#: app/libraries/notifications.php:
|
449 |
msgid "Name"
|
450 |
msgstr ""
|
451 |
|
@@ -455,8 +455,8 @@ msgstr ""
|
|
455 |
#: app/features/mec/booking.php:490 app/features/organizers.php:111
|
456 |
#: app/features/organizers.php:152 app/features/profile/profile.php:183
|
457 |
#: app/features/speakers.php:126 app/features/speakers.php:187
|
458 |
-
#: app/libraries/main.php:
|
459 |
-
#: app/libraries/main.php:
|
460 |
#: app/modules/booking/steps/form.php:46 app/modules/booking/steps/form.php:84
|
461 |
#: app/skins/single.php:814 app/skins/single.php:869
|
462 |
#: app/skins/single/default.php:227 app/skins/single/default.php:439
|
@@ -474,20 +474,21 @@ msgstr ""
|
|
474 |
#: app/features/events.php:3476 app/features/fes/form.php:246
|
475 |
#: app/features/fes/form.php:250 app/features/ix.php:3373
|
476 |
#: app/features/ix.php:3414 app/features/ix/import_g_calendar.php:38
|
477 |
-
#: app/features/mec/dashboard.php:
|
478 |
#: app/features/mec/meta_boxes/display_options.php:48
|
479 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
480 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
481 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
482 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
483 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
484 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
485 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
486 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
487 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
488 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
489 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
490 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
|
|
491 |
msgid "Start Date"
|
492 |
msgstr ""
|
493 |
|
@@ -510,7 +511,7 @@ msgstr ""
|
|
510 |
#: app/features/events.php:3476 app/features/fes/form.php:286
|
511 |
#: app/features/fes/form.php:290 app/features/ix.php:3373
|
512 |
#: app/features/ix.php:3414 app/features/ix/import_g_calendar.php:44
|
513 |
-
#: app/features/mec/dashboard.php:
|
514 |
msgid "End Date"
|
515 |
msgstr ""
|
516 |
|
@@ -557,31 +558,32 @@ msgstr ""
|
|
557 |
#: app/features/mec/meta_boxes/display_options.php:92
|
558 |
#: app/features/mec/meta_boxes/display_options.php:103
|
559 |
#: app/features/mec/meta_boxes/display_options.php:115
|
560 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
561 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
562 |
-
#: app/features/mec/meta_boxes/display_options.php:243
|
563 |
#: app/features/mec/meta_boxes/display_options.php:256
|
564 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
565 |
#: app/features/mec/meta_boxes/display_options.php:280
|
566 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
567 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
568 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
569 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
570 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
571 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
572 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
573 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
574 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
575 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
576 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
577 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
578 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
579 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
580 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
581 |
-
#: app/features/mec/meta_boxes/display_options.php:1167
|
582 |
#: app/features/mec/meta_boxes/display_options.php:1180
|
583 |
#: app/features/mec/meta_boxes/display_options.php:1193
|
584 |
#: app/features/mec/meta_boxes/display_options.php:1206
|
|
|
|
|
|
|
585 |
#: app/features/mec/modules.php:53 app/features/mec/modules.php:86
|
586 |
#: app/features/mec/modules.php:103 app/features/mec/modules.php:138
|
587 |
#: app/features/mec/modules.php:154 app/features/mec/modules.php:312
|
@@ -627,7 +629,7 @@ msgid "Repeats"
|
|
627 |
msgstr ""
|
628 |
|
629 |
#: app/features/events.php:738 app/features/fes/form.php:348
|
630 |
-
#: app/features/mec/dashboard.php:
|
631 |
#: app/skins/default_full_calendar/tpl.php:69
|
632 |
#: app/skins/full_calendar/tpl.php:110
|
633 |
msgid "Daily"
|
@@ -652,14 +654,14 @@ msgid "Weekly"
|
|
652 |
msgstr ""
|
653 |
|
654 |
#: app/features/events.php:773 app/features/fes/form.php:353
|
655 |
-
#: app/features/mec/dashboard.php:
|
656 |
#: app/skins/default_full_calendar/tpl.php:67
|
657 |
#: app/skins/full_calendar/tpl.php:108
|
658 |
msgid "Monthly"
|
659 |
msgstr ""
|
660 |
|
661 |
#: app/features/events.php:780 app/features/fes/form.php:354
|
662 |
-
#: app/features/mec/dashboard.php:
|
663 |
#: app/skins/default_full_calendar/tpl.php:66
|
664 |
#: app/skins/full_calendar/tpl.php:107
|
665 |
msgid "Yearly"
|
@@ -769,7 +771,7 @@ msgstr ""
|
|
769 |
#: app/features/events.php:1153 app/features/events.php:3434
|
770 |
#: app/features/events.php:3476 app/features/fes/form.php:716
|
771 |
#: app/features/ix.php:3373 app/features/ix.php:3414
|
772 |
-
#: app/features/mec/settings.php:632 app/libraries/main.php:
|
773 |
#: app/widgets/single.php:103
|
774 |
msgid "Event Cost"
|
775 |
msgstr ""
|
@@ -784,8 +786,8 @@ msgstr ""
|
|
784 |
|
785 |
#: app/features/events.php:1189 app/features/events.php:2485
|
786 |
#: app/features/fes.php:223 app/features/mec/booking.php:491
|
787 |
-
#: app/features/profile/profile.php:53 app/libraries/main.php:
|
788 |
-
#: app/libraries/main.php:
|
789 |
#: app/modules/next-event/details.php:90 app/skins/single.php:639
|
790 |
#: app/skins/single/default.php:83 app/skins/single/default.php:295
|
791 |
#: app/skins/single/m1.php:16 app/skins/single/modern.php:166
|
@@ -838,13 +840,13 @@ msgstr ""
|
|
838 |
#: app/features/events.php:2301 app/features/events.php:2343
|
839 |
#: app/features/mec/booking.php:318 app/features/mec/booking.php:347
|
840 |
#: app/features/mec/booking.php:398 app/features/mec/booking.php:430
|
841 |
-
#: app/libraries/main.php:
|
842 |
-
#: app/libraries/main.php:
|
843 |
-
#: app/libraries/main.php:
|
844 |
-
#: app/libraries/main.php:
|
845 |
-
#: app/libraries/main.php:
|
846 |
-
#: app/libraries/main.php:
|
847 |
-
#: app/libraries/main.php:
|
848 |
msgid "Remove"
|
849 |
msgstr ""
|
850 |
|
@@ -872,7 +874,7 @@ msgstr ""
|
|
872 |
#: app/features/events.php:1430 app/features/fes/form.php:840
|
873 |
#: app/features/mec.php:344 app/features/mec/modules.php:52
|
874 |
#: app/features/mec/settings.php:680 app/features/speakers.php:62
|
875 |
-
#: app/libraries/main.php:
|
876 |
#: app/modules/speakers/details.php:18
|
877 |
msgid "Speakers"
|
878 |
msgstr ""
|
@@ -887,7 +889,7 @@ msgid "Event Links"
|
|
887 |
msgstr ""
|
888 |
|
889 |
#: app/features/events.php:1464 app/features/events.php:1470
|
890 |
-
#: app/features/fes/form.php:695 app/libraries/main.php:
|
891 |
msgid "Event Link"
|
892 |
msgstr ""
|
893 |
|
@@ -908,7 +910,7 @@ msgid "URL Shortener"
|
|
908 |
msgstr ""
|
909 |
|
910 |
#: app/features/events.php:1480 app/features/events.php:1493
|
911 |
-
#: app/features/fes/form.php:700 app/libraries/main.php:
|
912 |
#: app/skins/single.php:658 app/skins/single/default.php:133
|
913 |
#: app/skins/single/default.php:345 app/skins/single/m1.php:191
|
914 |
#: app/skins/single/m2.php:124 app/skins/single/modern.php:132
|
@@ -973,7 +975,7 @@ msgid "12"
|
|
973 |
msgstr ""
|
974 |
|
975 |
#: app/features/events.php:1638 app/libraries/book.php:60
|
976 |
-
#: app/libraries/main.php:
|
977 |
msgid "Tickets"
|
978 |
msgstr ""
|
979 |
|
@@ -1034,7 +1036,7 @@ msgstr ""
|
|
1034 |
|
1035 |
#: app/features/events.php:1874 app/features/events.php:1900
|
1036 |
#: app/features/events.php:2057 app/features/labels.php:60
|
1037 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1038 |
#: app/features/mec/meta_boxes/search_form.php:66
|
1039 |
#: app/features/mec/meta_boxes/search_form.php:128
|
1040 |
#: app/features/mec/meta_boxes/search_form.php:190
|
@@ -1046,7 +1048,7 @@ msgstr ""
|
|
1046 |
#: app/features/mec/meta_boxes/search_form.php:549
|
1047 |
#: app/features/mec/meta_boxes/search_form.php:610
|
1048 |
#: app/features/mec/settings.php:808 app/features/mec/single.php:222
|
1049 |
-
#: app/libraries/skins.php:
|
1050 |
msgid "Label"
|
1051 |
msgstr ""
|
1052 |
|
@@ -1110,44 +1112,44 @@ msgid "Maximum Per Ticket. Leave it blank for unlimited."
|
|
1110 |
msgstr ""
|
1111 |
|
1112 |
#: app/features/events.php:2481 app/features/mec/booking.php:487
|
1113 |
-
#: app/libraries/main.php:
|
1114 |
msgid "MEC Name"
|
1115 |
msgstr ""
|
1116 |
|
1117 |
#: app/features/events.php:2482 app/features/mec/booking.php:488
|
1118 |
-
#: app/libraries/main.php:
|
1119 |
msgid "MEC Email"
|
1120 |
msgstr ""
|
1121 |
|
1122 |
#: app/features/events.php:2483 app/features/mec/booking.php:489
|
1123 |
-
#: app/libraries/main.php:
|
1124 |
msgid "Text"
|
1125 |
msgstr ""
|
1126 |
|
1127 |
#: app/features/events.php:2486 app/features/mec/booking.php:492
|
1128 |
#: app/features/organizers.php:103 app/features/organizers.php:148
|
1129 |
#: app/features/speakers.php:118 app/features/speakers.php:183
|
1130 |
-
#: app/features/speakers.php:256 app/libraries/main.php:
|
1131 |
msgid "Tel"
|
1132 |
msgstr ""
|
1133 |
|
1134 |
#: app/features/events.php:2487 app/features/mec/booking.php:493
|
1135 |
-
#: app/libraries/main.php:
|
1136 |
msgid "File"
|
1137 |
msgstr ""
|
1138 |
|
1139 |
#: app/features/events.php:2488 app/features/mec/booking.php:494
|
1140 |
-
#: app/libraries/main.php:
|
1141 |
msgid "Textarea"
|
1142 |
msgstr ""
|
1143 |
|
1144 |
#: app/features/events.php:2489 app/features/mec/booking.php:495
|
1145 |
-
#: app/libraries/main.php:
|
1146 |
msgid "Checkboxes"
|
1147 |
msgstr ""
|
1148 |
|
1149 |
#: app/features/events.php:2490 app/features/mec/booking.php:496
|
1150 |
-
#: app/libraries/main.php:
|
1151 |
msgid "Radio Buttons"
|
1152 |
msgstr ""
|
1153 |
|
@@ -1220,17 +1222,17 @@ msgstr ""
|
|
1220 |
#: app/features/mec/meta_boxes/search_form.php:599
|
1221 |
#: app/features/mec/meta_boxes/search_form.php:606
|
1222 |
#: app/features/mec/meta_boxes/search_form.php:613
|
1223 |
-
#: app/features/mec/meta_boxes/search_form.php:620 app/libraries/main.php:
|
1224 |
msgid "Dropdown"
|
1225 |
msgstr ""
|
1226 |
|
1227 |
#: app/features/events.php:2492 app/features/mec/booking.php:498
|
1228 |
-
#: app/libraries/main.php:
|
1229 |
msgid "Agreement"
|
1230 |
msgstr ""
|
1231 |
|
1232 |
#: app/features/events.php:2493 app/features/mec/booking.php:499
|
1233 |
-
#: app/libraries/main.php:
|
1234 |
msgid "Paragraph"
|
1235 |
msgstr ""
|
1236 |
|
@@ -1257,7 +1259,7 @@ msgstr ""
|
|
1257 |
#: app/features/ix.php:3414 app/features/locations.php:58
|
1258 |
#: app/features/locations.php:230 app/features/locations.php:287
|
1259 |
#: app/features/locations.php:289 app/features/locations.php:298
|
1260 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1261 |
#: app/features/mec/meta_boxes/search_form.php:38
|
1262 |
#: app/features/mec/meta_boxes/search_form.php:100
|
1263 |
#: app/features/mec/meta_boxes/search_form.php:162
|
@@ -1269,8 +1271,8 @@ msgstr ""
|
|
1269 |
#: app/features/mec/meta_boxes/search_form.php:521
|
1270 |
#: app/features/mec/meta_boxes/search_form.php:582
|
1271 |
#: app/features/mec/settings.php:782 app/features/mec/single.php:212
|
1272 |
-
#: app/features/search.php:71 app/libraries/main.php:
|
1273 |
-
#: app/libraries/main.php:
|
1274 |
#: app/skins/single.php:488 app/skins/single.php:909
|
1275 |
#: app/skins/single/default.php:169 app/skins/single/default.php:381
|
1276 |
#: app/skins/single/m1.php:155 app/skins/single/m2.php:87
|
@@ -1364,11 +1366,11 @@ msgid "The event removed!"
|
|
1364 |
msgstr ""
|
1365 |
|
1366 |
#: app/features/fes.php:223 app/features/profile/profile.php:186
|
1367 |
-
#: app/libraries/main.php:
|
1368 |
msgid "Ticket"
|
1369 |
msgstr ""
|
1370 |
|
1371 |
-
#: app/features/fes.php:223 app/libraries/main.php:
|
1372 |
msgid "Transaction ID"
|
1373 |
msgstr ""
|
1374 |
|
@@ -1376,6 +1378,10 @@ msgstr ""
|
|
1376 |
msgid "Total Price"
|
1377 |
msgstr ""
|
1378 |
|
|
|
|
|
|
|
|
|
1379 |
#: app/features/fes.php:223
|
1380 |
msgid "Confirmation"
|
1381 |
msgstr ""
|
@@ -1384,27 +1390,27 @@ msgstr ""
|
|
1384 |
msgid "Verification"
|
1385 |
msgstr ""
|
1386 |
|
1387 |
-
#: app/features/fes.php:
|
1388 |
msgid "Unknown"
|
1389 |
msgstr ""
|
1390 |
|
1391 |
-
#: app/features/fes.php:
|
1392 |
msgid "The image is uploaded!"
|
1393 |
msgstr ""
|
1394 |
|
1395 |
-
#: app/features/fes.php:
|
1396 |
msgid "Captcha is invalid! Please try again."
|
1397 |
msgstr ""
|
1398 |
|
1399 |
-
#: app/features/fes.php:
|
1400 |
msgid "Please fill event title field!"
|
1401 |
msgstr ""
|
1402 |
|
1403 |
-
#: app/features/fes.php:
|
1404 |
msgid "The event submitted. It will publish as soon as possible."
|
1405 |
msgstr ""
|
1406 |
|
1407 |
-
#: app/features/fes.php:
|
1408 |
msgid "The event published."
|
1409 |
msgstr ""
|
1410 |
|
@@ -1413,44 +1419,44 @@ msgid "Go back to events list"
|
|
1413 |
msgstr ""
|
1414 |
|
1415 |
#: app/features/fes/form.php:365
|
1416 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1417 |
-
#: app/libraries/main.php:
|
1418 |
msgid "Monday"
|
1419 |
msgstr ""
|
1420 |
|
1421 |
#: app/features/fes/form.php:366
|
1422 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1423 |
-
#: app/libraries/main.php:
|
1424 |
msgid "Tuesday"
|
1425 |
msgstr ""
|
1426 |
|
1427 |
#: app/features/fes/form.php:367
|
1428 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1429 |
-
#: app/libraries/main.php:
|
1430 |
msgid "Wednesday"
|
1431 |
msgstr ""
|
1432 |
|
1433 |
#: app/features/fes/form.php:368
|
1434 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1435 |
-
#: app/libraries/main.php:
|
1436 |
msgid "Thursday"
|
1437 |
msgstr ""
|
1438 |
|
1439 |
#: app/features/fes/form.php:369
|
1440 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1441 |
-
#: app/libraries/main.php:
|
1442 |
msgid "Friday"
|
1443 |
msgstr ""
|
1444 |
|
1445 |
#: app/features/fes/form.php:370
|
1446 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1447 |
-
#: app/libraries/main.php:
|
1448 |
msgid "Saturday"
|
1449 |
msgstr ""
|
1450 |
|
1451 |
#: app/features/fes/form.php:371
|
1452 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1453 |
-
#: app/libraries/main.php:
|
1454 |
msgid "Sunday"
|
1455 |
msgstr ""
|
1456 |
|
@@ -1490,7 +1496,7 @@ msgstr ""
|
|
1490 |
|
1491 |
#: app/features/fes/form.php:772 app/features/labels.php:61
|
1492 |
#: app/features/labels.php:221 app/features/mec.php:337
|
1493 |
-
#: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:
|
1494 |
#: app/skins/single.php:687 app/skins/single/default.php:148
|
1495 |
#: app/skins/single/default.php:360 app/skins/single/m1.php:64
|
1496 |
#: app/skins/single/modern.php:214
|
@@ -1544,7 +1550,7 @@ msgid "MEC - Import / Export"
|
|
1544 |
msgstr ""
|
1545 |
|
1546 |
#: app/features/ix.php:107 app/features/mec/support.php:73
|
1547 |
-
#: app/libraries/main.php:
|
1548 |
msgid "Import / Export"
|
1549 |
msgstr ""
|
1550 |
|
@@ -1855,7 +1861,7 @@ msgstr ""
|
|
1855 |
#: app/features/mec/booking.php:264 app/features/mec/booking.php:282
|
1856 |
#: app/features/mec/booking.php:359
|
1857 |
#: app/features/mec/meta_boxes/display_options.php:162
|
1858 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1859 |
#: app/features/mec/modules.php:70 app/features/mec/modules.php:211
|
1860 |
#: app/features/mec/modules.php:228
|
1861 |
#, php-format
|
@@ -1866,14 +1872,14 @@ msgstr ""
|
|
1866 |
#: app/features/mec/booking.php:91 app/features/mec/booking.php:264
|
1867 |
#: app/features/mec/booking.php:282 app/features/mec/booking.php:359
|
1868 |
#: app/features/mec/meta_boxes/display_options.php:162
|
1869 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1870 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1871 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1872 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1873 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1874 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1875 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1876 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1877 |
#: app/features/mec/modules.php:70 app/features/mec/modules.php:211
|
1878 |
#: app/features/mec/modules.php:228
|
1879 |
msgid "Pro version of Modern Events Calendar"
|
@@ -2027,7 +2033,7 @@ msgid "Auto Synchronization"
|
|
2027 |
msgstr ""
|
2028 |
|
2029 |
#: app/features/ix/sync.php:22
|
2030 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2031 |
#, php-format
|
2032 |
msgid "%s is required to use synchronization feature."
|
2033 |
msgstr ""
|
@@ -2176,15 +2182,15 @@ msgstr ""
|
|
2176 |
|
2177 |
#: app/features/labels.php:112 app/features/labels.php:139
|
2178 |
#: app/features/mec/meta_boxes/display_options.php:38
|
2179 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2180 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2181 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2182 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2183 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2184 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2185 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2186 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2187 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2188 |
msgid "Style"
|
2189 |
msgstr ""
|
2190 |
|
@@ -2200,13 +2206,14 @@ msgstr ""
|
|
2200 |
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:107
|
2201 |
#: app/skins/monthly_view/calendar_clean.php:107
|
2202 |
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:45
|
2203 |
-
#: app/skins/
|
2204 |
-
#: app/skins/
|
|
|
2205 |
msgid "Featured"
|
2206 |
msgstr ""
|
2207 |
|
2208 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2209 |
-
#: app/libraries/main.php:
|
2210 |
#: app/skins/available_spot/tpl.php:42 app/skins/carousel/render.php:45
|
2211 |
#: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:32
|
2212 |
#: app/skins/daily_view/render.php:52 app/skins/grid/render.php:50
|
@@ -2214,8 +2221,9 @@ msgstr ""
|
|
2214 |
#: app/skins/monthly_view/calendar.php:111
|
2215 |
#: app/skins/monthly_view/calendar_clean.php:111
|
2216 |
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:46
|
2217 |
-
#: app/skins/
|
2218 |
-
#: app/skins/
|
|
|
2219 |
msgid "Canceled"
|
2220 |
msgstr ""
|
2221 |
|
@@ -2240,8 +2248,8 @@ msgid "Event %s"
|
|
2240 |
msgstr ""
|
2241 |
|
2242 |
#: app/features/locations.php:59 app/features/mec.php:338
|
2243 |
-
#: app/features/mec/dashboard.php:
|
2244 |
-
#: app/libraries/main.php:
|
2245 |
msgid "Locations"
|
2246 |
msgstr ""
|
2247 |
|
@@ -2346,7 +2354,7 @@ msgstr ""
|
|
2346 |
msgid "Don't show map in single event page"
|
2347 |
msgstr ""
|
2348 |
|
2349 |
-
#: app/features/locations.php:356 app/libraries/main.php:
|
2350 |
msgid "Other Locations"
|
2351 |
msgstr ""
|
2352 |
|
@@ -2392,14 +2400,14 @@ msgstr ""
|
|
2392 |
msgid "Support"
|
2393 |
msgstr ""
|
2394 |
|
2395 |
-
#: app/features/mec.php:339 app/features/mec/dashboard.php:
|
2396 |
#: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
|
2397 |
-
#: app/libraries/main.php:
|
2398 |
msgid "Organizers"
|
2399 |
msgstr ""
|
2400 |
|
2401 |
#: app/features/mec.php:347 app/features/mec.php:367
|
2402 |
-
#: app/features/mec/dashboard.php:
|
2403 |
msgid "Shortcodes"
|
2404 |
msgstr ""
|
2405 |
|
@@ -2486,7 +2494,7 @@ msgstr ""
|
|
2486 |
#: app/features/mec/booking.php:70 app/features/mec/messages.php:13
|
2487 |
#: app/features/mec/modules.php:23 app/features/mec/notifications.php:12
|
2488 |
#: app/features/mec/settings.php:53 app/features/mec/single.php:15
|
2489 |
-
#: app/features/mec/styling.php:35
|
2490 |
msgid "Search..."
|
2491 |
msgstr ""
|
2492 |
|
@@ -2537,11 +2545,12 @@ msgstr ""
|
|
2537 |
|
2538 |
#: app/features/mec/booking.php:115
|
2539 |
#: app/features/mec/meta_boxes/display_options.php:121
|
2540 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2541 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2542 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2543 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2544 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
|
|
2545 |
msgid "Limit"
|
2546 |
msgstr ""
|
2547 |
|
@@ -2643,7 +2652,7 @@ msgid "Auto verification for paid bookings"
|
|
2643 |
msgstr ""
|
2644 |
|
2645 |
#: app/features/mec/booking.php:235 app/features/mec/notifications.php:155
|
2646 |
-
#: app/libraries/main.php:
|
2647 |
msgid "Booking Confirmation"
|
2648 |
msgstr ""
|
2649 |
|
@@ -2665,7 +2674,7 @@ msgid ""
|
|
2665 |
"new menu on the Dashboard > Booking"
|
2666 |
msgstr ""
|
2667 |
|
2668 |
-
#: app/features/mec/booking.php:279 app/libraries/main.php:
|
2669 |
msgid "Taxes / Fees"
|
2670 |
msgstr ""
|
2671 |
|
@@ -2677,7 +2686,7 @@ msgstr ""
|
|
2677 |
msgid "Add Fee"
|
2678 |
msgstr ""
|
2679 |
|
2680 |
-
#: app/features/mec/booking.php:356 app/libraries/main.php:
|
2681 |
msgid "Ticket Variations & Options"
|
2682 |
msgstr ""
|
2683 |
|
@@ -2722,7 +2731,7 @@ msgstr ""
|
|
2722 |
#: app/features/mec/notifications.php:599
|
2723 |
#: app/features/mec/notifications.php:621 app/features/mec/settings.php:949
|
2724 |
#: app/features/mec/settings.php:971 app/features/mec/single.php:267
|
2725 |
-
#: app/features/mec/single.php:289 app/libraries/main.php:
|
2726 |
msgid "Verified"
|
2727 |
msgstr ""
|
2728 |
|
@@ -2796,70 +2805,70 @@ msgid ""
|
|
2796 |
"on your website. Please watch this 2 minutes video to the end."
|
2797 |
msgstr ""
|
2798 |
|
2799 |
-
#: app/features/mec/dashboard.php:143
|
2800 |
msgid "MEC Activate"
|
2801 |
msgstr ""
|
2802 |
|
2803 |
-
#: app/features/mec/dashboard.php:149
|
2804 |
-
msgid ""
|
2805 |
-
"In order to use all plugin features and options, please enter your purchase "
|
2806 |
-
"code."
|
2807 |
-
msgstr ""
|
2808 |
-
|
2809 |
-
#: app/features/mec/dashboard.php:207
|
2810 |
msgid "Activate Addons"
|
2811 |
msgstr ""
|
2812 |
|
2813 |
-
#: app/features/mec/dashboard.php:
|
2814 |
msgid "You cannot access this section."
|
2815 |
msgstr ""
|
2816 |
|
2817 |
-
#: app/features/mec/dashboard.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
2818 |
msgid "Upcoming Events"
|
2819 |
msgstr ""
|
2820 |
|
2821 |
-
#: app/features/mec/dashboard.php:
|
2822 |
msgid "Popular Gateways"
|
2823 |
msgstr ""
|
2824 |
|
2825 |
-
#: app/features/mec/dashboard.php:
|
2826 |
msgid "Total Bookings"
|
2827 |
msgstr ""
|
2828 |
|
2829 |
-
#: app/features/mec/dashboard.php:
|
2830 |
msgid "This Month"
|
2831 |
msgstr ""
|
2832 |
|
2833 |
-
#: app/features/mec/dashboard.php:
|
2834 |
msgid "Last Month"
|
2835 |
msgstr ""
|
2836 |
|
2837 |
-
#: app/features/mec/dashboard.php:
|
2838 |
msgid "This Year"
|
2839 |
msgstr ""
|
2840 |
|
2841 |
-
#: app/features/mec/dashboard.php:
|
2842 |
msgid "Last Year"
|
2843 |
msgstr ""
|
2844 |
|
2845 |
-
#: app/features/mec/dashboard.php:
|
2846 |
msgid "Bar"
|
2847 |
msgstr ""
|
2848 |
|
2849 |
-
#: app/features/mec/dashboard.php:
|
2850 |
msgid "Line"
|
2851 |
msgstr ""
|
2852 |
|
2853 |
-
#: app/features/mec/dashboard.php:
|
2854 |
msgid "Filter"
|
2855 |
msgstr ""
|
2856 |
|
2857 |
-
#: app/features/mec/dashboard.php:
|
2858 |
#, php-format
|
2859 |
msgid "Total Sells (%s)"
|
2860 |
msgstr ""
|
2861 |
|
2862 |
-
#: app/features/mec/dashboard.php:
|
2863 |
msgid "Change Log"
|
2864 |
msgstr ""
|
2865 |
|
@@ -2888,7 +2897,7 @@ msgid "Download Settings"
|
|
2888 |
msgstr ""
|
2889 |
|
2890 |
#: app/features/mec/messages.php:28 app/features/mec/support.php:66
|
2891 |
-
#: app/libraries/main.php:
|
2892 |
msgid "Messages"
|
2893 |
msgstr ""
|
2894 |
|
@@ -2905,9 +2914,9 @@ msgid "Skin"
|
|
2905 |
msgstr ""
|
2906 |
|
2907 |
#: app/features/mec/meta_boxes/display_options.php:40
|
2908 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2909 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2910 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2911 |
#: app/features/mec/settings.php:235 app/features/mec/settings.php:259
|
2912 |
#: app/features/mec/settings.php:268 app/features/mec/settings.php:309
|
2913 |
#: app/features/mec/settings.php:333 app/features/mec/settings.php:342
|
@@ -2915,18 +2924,18 @@ msgid "Classic"
|
|
2915 |
msgstr ""
|
2916 |
|
2917 |
#: app/features/mec/meta_boxes/display_options.php:41
|
2918 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2919 |
#: app/features/mec/settings.php:260 app/features/mec/settings.php:270
|
2920 |
#: app/features/mec/settings.php:334 app/features/mec/settings.php:344
|
2921 |
msgid "Minimal"
|
2922 |
msgstr ""
|
2923 |
|
2924 |
#: app/features/mec/meta_boxes/display_options.php:42
|
2925 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2926 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2927 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2928 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2929 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2930 |
#: app/features/mec/settings.php:237 app/features/mec/settings.php:250
|
2931 |
#: app/features/mec/settings.php:261 app/features/mec/settings.php:271
|
2932 |
#: app/features/mec/settings.php:311 app/features/mec/settings.php:324
|
@@ -2945,86 +2954,92 @@ msgid "Accordion"
|
|
2945 |
msgstr ""
|
2946 |
|
2947 |
#: app/features/mec/meta_boxes/display_options.php:50
|
2948 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2949 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2950 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2951 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2952 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2953 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2954 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
|
|
2955 |
msgid "Today"
|
2956 |
msgstr ""
|
2957 |
|
2958 |
#: app/features/mec/meta_boxes/display_options.php:51
|
2959 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2960 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2961 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2962 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2963 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2964 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2965 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
|
|
2966 |
msgid "Tomorrow"
|
2967 |
msgstr ""
|
2968 |
|
2969 |
#: app/features/mec/meta_boxes/display_options.php:52
|
2970 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2971 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2972 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2973 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2974 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2975 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2976 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2977 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2978 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2979 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2980 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
|
|
2981 |
msgid "Start of Current Month"
|
2982 |
msgstr ""
|
2983 |
|
2984 |
#: app/features/mec/meta_boxes/display_options.php:53
|
2985 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2986 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2987 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2988 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2989 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2990 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2991 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2992 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2993 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2994 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2995 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
|
|
2996 |
msgid "Start of Next Month"
|
2997 |
msgstr ""
|
2998 |
|
2999 |
#: app/features/mec/meta_boxes/display_options.php:54
|
3000 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3001 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3002 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3003 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3004 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3005 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3006 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3007 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3008 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3009 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3010 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3011 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
|
|
3012 |
msgid "On a certain date"
|
3013 |
msgstr ""
|
3014 |
|
3015 |
#: app/features/mec/meta_boxes/display_options.php:57
|
3016 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3017 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3018 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3019 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3020 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3021 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3022 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3023 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3024 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3025 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3026 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3027 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
|
|
3028 |
#, php-format
|
3029 |
msgid "eg. %s"
|
3030 |
msgstr ""
|
@@ -3039,61 +3054,63 @@ msgstr ""
|
|
3039 |
#: app/features/mec/meta_boxes/display_options.php:102
|
3040 |
#: app/features/mec/meta_boxes/display_options.php:109
|
3041 |
#: app/features/mec/meta_boxes/display_options.php:114
|
3042 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3043 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3044 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3045 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3046 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3047 |
-
#: app/features/mec/meta_boxes/display_options.php:242
|
3048 |
-
#: app/features/mec/meta_boxes/display_options.php:249
|
3049 |
#: app/features/mec/meta_boxes/display_options.php:255
|
3050 |
#: app/features/mec/meta_boxes/display_options.php:262
|
3051 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3052 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3053 |
#: app/features/mec/meta_boxes/display_options.php:279
|
3054 |
#: app/features/mec/meta_boxes/display_options.php:286
|
3055 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3056 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3057 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3058 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3059 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3060 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3061 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3062 |
-
#: app/features/mec/meta_boxes/display_options.php:897
|
3063 |
-
#: app/features/mec/meta_boxes/display_options.php:903
|
3064 |
-
#: app/features/mec/meta_boxes/display_options.php:910
|
3065 |
-
#: app/features/mec/meta_boxes/display_options.php:915
|
3066 |
-
#: app/features/mec/meta_boxes/display_options.php:922
|
3067 |
-
#: app/features/mec/meta_boxes/display_options.php:926
|
3068 |
-
#: app/features/mec/meta_boxes/display_options.php:954
|
3069 |
-
#: app/features/mec/meta_boxes/display_options.php:958
|
3070 |
-
#: app/features/mec/meta_boxes/display_options.php:965
|
3071 |
-
#: app/features/mec/meta_boxes/display_options.php:969
|
3072 |
-
#: app/features/mec/meta_boxes/display_options.php:976
|
3073 |
-
#: app/features/mec/meta_boxes/display_options.php:982
|
3074 |
-
#: app/features/mec/meta_boxes/display_options.php:1012
|
3075 |
-
#: app/features/mec/meta_boxes/display_options.php:1017
|
3076 |
-
#: app/features/mec/meta_boxes/display_options.php:1060
|
3077 |
-
#: app/features/mec/meta_boxes/display_options.php:1066
|
3078 |
-
#: app/features/mec/meta_boxes/display_options.php:1073
|
3079 |
-
#: app/features/mec/meta_boxes/display_options.php:1077
|
3080 |
-
#: app/features/mec/meta_boxes/display_options.php:1084
|
3081 |
-
#: app/features/mec/meta_boxes/display_options.php:1088
|
3082 |
-
#: app/features/mec/meta_boxes/display_options.php:1147
|
3083 |
-
#: app/features/mec/meta_boxes/display_options.php:1153
|
3084 |
-
#: app/features/mec/meta_boxes/display_options.php:1160
|
3085 |
-
#: app/features/mec/meta_boxes/display_options.php:1166
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: modern-events-calendar\n"
|
4 |
+
"POT-Creation-Date: 2019-11-25 10:19+0330\n"
|
5 |
+
"PO-Revision-Date: 2019-11-25 10:20+0330\n"
|
6 |
"Last-Translator: Howard <howard@realtyna.com>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: en_US\n"
|
61 |
msgstr ""
|
62 |
|
63 |
#: app/features/contextual.php:55 app/features/mec.php:348
|
64 |
+
#: app/features/mec/dashboard.php:134 app/features/mec/support-page.php:197
|
65 |
+
#: app/features/mec/support.php:20 app/libraries/main.php:590
|
66 |
msgid "Settings"
|
67 |
msgstr ""
|
68 |
|
69 |
#: app/features/contextual.php:62 app/features/events.php:2415
|
70 |
#: app/features/mec/booking.php:439 app/features/mec/support.php:29
|
71 |
+
#: app/libraries/main.php:556
|
72 |
msgid "Booking Form"
|
73 |
msgstr ""
|
74 |
|
82 |
msgstr ""
|
83 |
|
84 |
#: app/features/contextual.php:70 app/features/mec/booking.php:557
|
85 |
+
#: app/features/mec/support.php:36 app/libraries/main.php:557
|
86 |
msgid "Payment Gateways"
|
87 |
msgstr ""
|
88 |
|
94 |
msgstr ""
|
95 |
|
96 |
#: app/features/contextual.php:77 app/features/mec/support.php:45
|
97 |
+
#: app/libraries/main.php:738
|
98 |
msgid "Notifications"
|
99 |
msgstr ""
|
100 |
|
158 |
msgstr ""
|
159 |
|
160 |
#: app/features/contextual.php:117 app/features/mec/settings.php:73
|
161 |
+
#: app/libraries/main.php:530
|
162 |
msgid "General Options"
|
163 |
msgstr ""
|
164 |
|
165 |
#: app/features/contextual.php:139 app/features/mec/settings.php:405
|
166 |
+
#: app/libraries/main.php:532
|
167 |
msgid "Slugs/Permalinks"
|
168 |
msgstr ""
|
169 |
|
172 |
msgstr ""
|
173 |
|
174 |
#: app/features/contextual.php:166 app/features/mec/settings.php:437
|
175 |
+
#: app/libraries/main.php:533
|
176 |
msgid "Currency Options"
|
177 |
msgstr ""
|
178 |
|
179 |
#: app/features/contextual.php:182 app/features/mec/modules.php:67
|
180 |
+
#: app/features/mec/modules.php:85 app/libraries/main.php:562
|
181 |
msgid "Google Maps Options"
|
182 |
msgstr ""
|
183 |
|
184 |
#: app/features/contextual.php:244 app/features/mec/settings.php:494
|
185 |
+
#: app/libraries/main.php:534
|
186 |
msgid "Google Recaptcha Options"
|
187 |
msgstr ""
|
188 |
|
189 |
#: app/features/contextual.php:258 app/features/mec/single.php:133
|
190 |
+
#: app/libraries/main.php:544
|
191 |
msgid "Countdown Options"
|
192 |
msgstr ""
|
193 |
|
194 |
#: app/features/contextual.php:268 app/features/mec/modules.php:263
|
195 |
+
#: app/libraries/main.php:567
|
196 |
msgid "Social Networks"
|
197 |
msgstr ""
|
198 |
|
201 |
msgstr ""
|
202 |
|
203 |
#: app/features/contextual.php:286 app/features/mec/settings.php:530
|
204 |
+
#: app/libraries/main.php:535
|
205 |
msgid "Frontend Event Submission"
|
206 |
msgstr ""
|
207 |
|
208 |
#: app/features/contextual.php:298 app/features/events.php:325
|
209 |
+
#: app/libraries/main.php:545
|
210 |
msgid "Exceptional Days"
|
211 |
msgstr ""
|
212 |
|
213 |
#: app/features/contextual.php:308 app/features/events.php:298
|
214 |
#: app/features/mec/booking.php:88 app/features/mec/notifications.php:35
|
215 |
+
#: app/libraries/main.php:552 app/libraries/main.php:573
|
216 |
+
#: app/libraries/main.php:655
|
217 |
msgid "Booking"
|
218 |
msgstr ""
|
219 |
|
220 |
#: app/features/contextual.php:318 app/features/mec/booking.php:261
|
221 |
+
#: app/libraries/main.php:553
|
222 |
msgid "Coupons"
|
223 |
msgstr ""
|
224 |
|
225 |
#: app/features/contextual.php:326 app/features/mec/modules.php:324
|
226 |
+
#: app/libraries/main.php:569
|
227 |
msgid "BuddyPress Integration"
|
228 |
msgstr ""
|
229 |
|
230 |
#: app/features/contextual.php:334 app/features/mec/settings.php:823
|
231 |
+
#: app/libraries/main.php:538
|
232 |
msgid "Mailchimp Integration"
|
233 |
msgstr ""
|
234 |
|
237 |
msgstr ""
|
238 |
|
239 |
#: app/features/events.php:150 app/features/ix/export.php:34
|
240 |
+
#: app/features/mec/dashboard.php:255 app/skins/daily_view/tpl.php:79
|
241 |
#: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
|
242 |
msgid "Events"
|
243 |
msgstr ""
|
244 |
|
245 |
#: app/features/events.php:151 app/features/fes.php:223
|
246 |
+
#: app/features/mec/meta_boxes/display_options.php:959
|
247 |
+
#: app/features/mec/meta_boxes/display_options.php:1015
|
248 |
+
#: app/features/mec/meta_boxes/display_options.php:1050
|
249 |
#: app/features/profile/profile.php:50 app/skins/daily_view/tpl.php:80
|
250 |
#: app/skins/monthly_view/tpl.php:71 app/skins/yearly_view/tpl.php:69
|
251 |
msgid "Event"
|
281 |
msgstr ""
|
282 |
|
283 |
#: app/features/events.php:175 app/features/events.php:3241
|
284 |
+
#: app/features/mec/meta_boxes/display_options.php:870
|
285 |
#: app/features/mec/meta_boxes/search_form.php:31
|
286 |
#: app/features/mec/meta_boxes/search_form.php:93
|
287 |
#: app/features/mec/meta_boxes/search_form.php:155
|
293 |
#: app/features/mec/meta_boxes/search_form.php:514
|
294 |
#: app/features/mec/meta_boxes/search_form.php:575
|
295 |
#: app/features/mec/settings.php:776 app/features/mec/single.php:204
|
296 |
+
#: app/features/search.php:67 app/libraries/main.php:4919
|
297 |
+
#: app/libraries/skins.php:811 app/skins/single.php:561
|
298 |
#: app/skins/single/default.php:185 app/skins/single/default.php:397
|
299 |
#: app/skins/single/m1.php:170 app/skins/single/m2.php:102
|
300 |
#: app/skins/single/modern.php:110
|
303 |
|
304 |
#: app/features/events.php:176 app/features/events.php:3212
|
305 |
#: app/features/fes/form.php:746 app/features/mec.php:336
|
306 |
+
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:4918
|
307 |
msgid "Categories"
|
308 |
msgstr ""
|
309 |
|
403 |
#: app/features/events.php:329 app/features/events.php:3243
|
404 |
#: app/features/events.php:3434 app/features/events.php:3476
|
405 |
#: app/features/ix.php:3373 app/features/ix.php:3414
|
406 |
+
#: app/features/mec/meta_boxes/display_options.php:873
|
407 |
#: app/features/mec/meta_boxes/search_form.php:45
|
408 |
#: app/features/mec/meta_boxes/search_form.php:107
|
409 |
#: app/features/mec/meta_boxes/search_form.php:169
|
418 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
419 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
420 |
#: app/features/organizers.php:271 app/features/search.php:75
|
421 |
+
#: app/libraries/main.php:4925 app/libraries/skins.php:863
|
422 |
#: app/skins/single.php:797 app/skins/single/default.php:210
|
423 |
#: app/skins/single/default.php:422 app/skins/single/m1.php:90
|
424 |
#: app/skins/single/m2.php:22 app/skins/single/modern.php:31
|
426 |
msgstr ""
|
427 |
|
428 |
#: app/features/events.php:330 app/features/events.php:1157
|
429 |
+
#: app/features/fes/form.php:719 app/libraries/main.php:4952
|
430 |
#: app/skins/single.php:584 app/skins/single/default.php:119
|
431 |
#: app/skins/single/default.php:331 app/skins/single/m1.php:49
|
432 |
#: app/skins/single/modern.php:199
|
445 |
#: app/features/fes.php:223 app/features/fes/form.php:678
|
446 |
#: app/features/labels.php:178 app/features/mec/booking.php:45
|
447 |
#: app/features/organizers.php:279 app/features/profile/profile.php:180
|
448 |
+
#: app/libraries/notifications.php:919 app/modules/booking/steps/form.php:37
|
449 |
msgid "Name"
|
450 |
msgstr ""
|
451 |
|
455 |
#: app/features/mec/booking.php:490 app/features/organizers.php:111
|
456 |
#: app/features/organizers.php:152 app/features/profile/profile.php:183
|
457 |
#: app/features/speakers.php:126 app/features/speakers.php:187
|
458 |
+
#: app/libraries/main.php:1474 app/libraries/main.php:1543
|
459 |
+
#: app/libraries/main.php:2605 app/libraries/notifications.php:920
|
460 |
#: app/modules/booking/steps/form.php:46 app/modules/booking/steps/form.php:84
|
461 |
#: app/skins/single.php:814 app/skins/single.php:869
|
462 |
#: app/skins/single/default.php:227 app/skins/single/default.php:439
|
474 |
#: app/features/events.php:3476 app/features/fes/form.php:246
|
475 |
#: app/features/fes/form.php:250 app/features/ix.php:3373
|
476 |
#: app/features/ix.php:3414 app/features/ix/import_g_calendar.php:38
|
477 |
+
#: app/features/mec/dashboard.php:399
|
478 |
#: app/features/mec/meta_boxes/display_options.php:48
|
479 |
+
#: app/features/mec/meta_boxes/display_options.php:214
|
480 |
+
#: app/features/mec/meta_boxes/display_options.php:379
|
481 |
+
#: app/features/mec/meta_boxes/display_options.php:434
|
482 |
+
#: app/features/mec/meta_boxes/display_options.php:557
|
483 |
+
#: app/features/mec/meta_boxes/display_options.php:611
|
484 |
+
#: app/features/mec/meta_boxes/display_options.php:658
|
485 |
+
#: app/features/mec/meta_boxes/display_options.php:691
|
486 |
+
#: app/features/mec/meta_boxes/display_options.php:726
|
487 |
+
#: app/features/mec/meta_boxes/display_options.php:772
|
488 |
+
#: app/features/mec/meta_boxes/display_options.php:838
|
489 |
+
#: app/features/mec/meta_boxes/display_options.php:1073
|
490 |
+
#: app/features/mec/meta_boxes/display_options.php:1160
|
491 |
+
#: app/features/mec/meta_boxes/display_options.php:1252
|
492 |
msgid "Start Date"
|
493 |
msgstr ""
|
494 |
|
511 |
#: app/features/events.php:3476 app/features/fes/form.php:286
|
512 |
#: app/features/fes/form.php:290 app/features/ix.php:3373
|
513 |
#: app/features/ix.php:3414 app/features/ix/import_g_calendar.php:44
|
514 |
+
#: app/features/mec/dashboard.php:400
|
515 |
msgid "End Date"
|
516 |
msgstr ""
|
517 |
|
558 |
#: app/features/mec/meta_boxes/display_options.php:92
|
559 |
#: app/features/mec/meta_boxes/display_options.php:103
|
560 |
#: app/features/mec/meta_boxes/display_options.php:115
|
561 |
+
#: app/features/mec/meta_boxes/display_options.php:232
|
562 |
+
#: app/features/mec/meta_boxes/display_options.php:244
|
|
|
563 |
#: app/features/mec/meta_boxes/display_options.php:256
|
564 |
+
#: app/features/mec/meta_boxes/display_options.php:269
|
565 |
#: app/features/mec/meta_boxes/display_options.php:280
|
566 |
+
#: app/features/mec/meta_boxes/display_options.php:293
|
567 |
+
#: app/features/mec/meta_boxes/display_options.php:304
|
568 |
+
#: app/features/mec/meta_boxes/display_options.php:398
|
569 |
+
#: app/features/mec/meta_boxes/display_options.php:574
|
570 |
+
#: app/features/mec/meta_boxes/display_options.php:857
|
571 |
+
#: app/features/mec/meta_boxes/display_options.php:930
|
572 |
+
#: app/features/mec/meta_boxes/display_options.php:942
|
573 |
+
#: app/features/mec/meta_boxes/display_options.php:953
|
574 |
+
#: app/features/mec/meta_boxes/display_options.php:985
|
575 |
+
#: app/features/mec/meta_boxes/display_options.php:996
|
576 |
+
#: app/features/mec/meta_boxes/display_options.php:1009
|
577 |
+
#: app/features/mec/meta_boxes/display_options.php:1044
|
578 |
+
#: app/features/mec/meta_boxes/display_options.php:1093
|
579 |
+
#: app/features/mec/meta_boxes/display_options.php:1104
|
580 |
+
#: app/features/mec/meta_boxes/display_options.php:1115
|
|
|
581 |
#: app/features/mec/meta_boxes/display_options.php:1180
|
582 |
#: app/features/mec/meta_boxes/display_options.php:1193
|
583 |
#: app/features/mec/meta_boxes/display_options.php:1206
|
584 |
+
#: app/features/mec/meta_boxes/display_options.php:1219
|
585 |
+
#: app/features/mec/meta_boxes/display_options.php:1232
|
586 |
+
#: app/features/mec/meta_boxes/display_options.php:1270
|
587 |
#: app/features/mec/modules.php:53 app/features/mec/modules.php:86
|
588 |
#: app/features/mec/modules.php:103 app/features/mec/modules.php:138
|
589 |
#: app/features/mec/modules.php:154 app/features/mec/modules.php:312
|
629 |
msgstr ""
|
630 |
|
631 |
#: app/features/events.php:738 app/features/fes/form.php:348
|
632 |
+
#: app/features/mec/dashboard.php:402
|
633 |
#: app/skins/default_full_calendar/tpl.php:69
|
634 |
#: app/skins/full_calendar/tpl.php:110
|
635 |
msgid "Daily"
|
654 |
msgstr ""
|
655 |
|
656 |
#: app/features/events.php:773 app/features/fes/form.php:353
|
657 |
+
#: app/features/mec/dashboard.php:403
|
658 |
#: app/skins/default_full_calendar/tpl.php:67
|
659 |
#: app/skins/full_calendar/tpl.php:108
|
660 |
msgid "Monthly"
|
661 |
msgstr ""
|
662 |
|
663 |
#: app/features/events.php:780 app/features/fes/form.php:354
|
664 |
+
#: app/features/mec/dashboard.php:404
|
665 |
#: app/skins/default_full_calendar/tpl.php:66
|
666 |
#: app/skins/full_calendar/tpl.php:107
|
667 |
msgid "Yearly"
|
771 |
#: app/features/events.php:1153 app/features/events.php:3434
|
772 |
#: app/features/events.php:3476 app/features/fes/form.php:716
|
773 |
#: app/features/ix.php:3373 app/features/ix.php:3414
|
774 |
+
#: app/features/mec/settings.php:632 app/libraries/main.php:4951
|
775 |
#: app/widgets/single.php:103
|
776 |
msgid "Event Cost"
|
777 |
msgstr ""
|
786 |
|
787 |
#: app/features/events.php:1189 app/features/events.php:2485
|
788 |
#: app/features/fes.php:223 app/features/mec/booking.php:491
|
789 |
+
#: app/features/profile/profile.php:53 app/libraries/main.php:2061
|
790 |
+
#: app/libraries/main.php:2663 app/modules/booking/steps/tickets.php:22
|
791 |
#: app/modules/next-event/details.php:90 app/skins/single.php:639
|
792 |
#: app/skins/single/default.php:83 app/skins/single/default.php:295
|
793 |
#: app/skins/single/m1.php:16 app/skins/single/modern.php:166
|
840 |
#: app/features/events.php:2301 app/features/events.php:2343
|
841 |
#: app/features/mec/booking.php:318 app/features/mec/booking.php:347
|
842 |
#: app/features/mec/booking.php:398 app/features/mec/booking.php:430
|
843 |
+
#: app/libraries/main.php:2524 app/libraries/main.php:2554
|
844 |
+
#: app/libraries/main.php:2583 app/libraries/main.php:2613
|
845 |
+
#: app/libraries/main.php:2642 app/libraries/main.php:2671
|
846 |
+
#: app/libraries/main.php:2700 app/libraries/main.php:2729
|
847 |
+
#: app/libraries/main.php:2751 app/libraries/main.php:2782
|
848 |
+
#: app/libraries/main.php:2826 app/libraries/main.php:2870
|
849 |
+
#: app/libraries/main.php:2917 app/libraries/main.php:2956
|
850 |
msgid "Remove"
|
851 |
msgstr ""
|
852 |
|
874 |
#: app/features/events.php:1430 app/features/fes/form.php:840
|
875 |
#: app/features/mec.php:344 app/features/mec/modules.php:52
|
876 |
#: app/features/mec/settings.php:680 app/features/speakers.php:62
|
877 |
+
#: app/libraries/main.php:561 app/libraries/main.php:4926
|
878 |
#: app/modules/speakers/details.php:18
|
879 |
msgid "Speakers"
|
880 |
msgstr ""
|
889 |
msgstr ""
|
890 |
|
891 |
#: app/features/events.php:1464 app/features/events.php:1470
|
892 |
+
#: app/features/fes/form.php:695 app/libraries/main.php:4949
|
893 |
msgid "Event Link"
|
894 |
msgstr ""
|
895 |
|
910 |
msgstr ""
|
911 |
|
912 |
#: app/features/events.php:1480 app/features/events.php:1493
|
913 |
+
#: app/features/fes/form.php:700 app/libraries/main.php:4950
|
914 |
#: app/skins/single.php:658 app/skins/single/default.php:133
|
915 |
#: app/skins/single/default.php:345 app/skins/single/m1.php:191
|
916 |
#: app/skins/single/m2.php:124 app/skins/single/modern.php:132
|
975 |
msgstr ""
|
976 |
|
977 |
#: app/features/events.php:1638 app/libraries/book.php:60
|
978 |
+
#: app/libraries/main.php:4954 app/modules/booking/steps/tickets.php:40
|
979 |
msgid "Tickets"
|
980 |
msgstr ""
|
981 |
|
1036 |
|
1037 |
#: app/features/events.php:1874 app/features/events.php:1900
|
1038 |
#: app/features/events.php:2057 app/features/labels.php:60
|
1039 |
+
#: app/features/mec/meta_boxes/display_options.php:871
|
1040 |
#: app/features/mec/meta_boxes/search_form.php:66
|
1041 |
#: app/features/mec/meta_boxes/search_form.php:128
|
1042 |
#: app/features/mec/meta_boxes/search_form.php:190
|
1048 |
#: app/features/mec/meta_boxes/search_form.php:549
|
1049 |
#: app/features/mec/meta_boxes/search_form.php:610
|
1050 |
#: app/features/mec/settings.php:808 app/features/mec/single.php:222
|
1051 |
+
#: app/libraries/skins.php:941
|
1052 |
msgid "Label"
|
1053 |
msgstr ""
|
1054 |
|
1112 |
msgstr ""
|
1113 |
|
1114 |
#: app/features/events.php:2481 app/features/mec/booking.php:487
|
1115 |
+
#: app/libraries/main.php:2546
|
1116 |
msgid "MEC Name"
|
1117 |
msgstr ""
|
1118 |
|
1119 |
#: app/features/events.php:2482 app/features/mec/booking.php:488
|
1120 |
+
#: app/libraries/main.php:2575
|
1121 |
msgid "MEC Email"
|
1122 |
msgstr ""
|
1123 |
|
1124 |
#: app/features/events.php:2483 app/features/mec/booking.php:489
|
1125 |
+
#: app/libraries/main.php:2516
|
1126 |
msgid "Text"
|
1127 |
msgstr ""
|
1128 |
|
1129 |
#: app/features/events.php:2486 app/features/mec/booking.php:492
|
1130 |
#: app/features/organizers.php:103 app/features/organizers.php:148
|
1131 |
#: app/features/speakers.php:118 app/features/speakers.php:183
|
1132 |
+
#: app/features/speakers.php:256 app/libraries/main.php:2692
|
1133 |
msgid "Tel"
|
1134 |
msgstr ""
|
1135 |
|
1136 |
#: app/features/events.php:2487 app/features/mec/booking.php:493
|
1137 |
+
#: app/libraries/main.php:2634
|
1138 |
msgid "File"
|
1139 |
msgstr ""
|
1140 |
|
1141 |
#: app/features/events.php:2488 app/features/mec/booking.php:494
|
1142 |
+
#: app/libraries/main.php:2721
|
1143 |
msgid "Textarea"
|
1144 |
msgstr ""
|
1145 |
|
1146 |
#: app/features/events.php:2489 app/features/mec/booking.php:495
|
1147 |
+
#: app/libraries/main.php:2774
|
1148 |
msgid "Checkboxes"
|
1149 |
msgstr ""
|
1150 |
|
1151 |
#: app/features/events.php:2490 app/features/mec/booking.php:496
|
1152 |
+
#: app/libraries/main.php:2818
|
1153 |
msgid "Radio Buttons"
|
1154 |
msgstr ""
|
1155 |
|
1222 |
#: app/features/mec/meta_boxes/search_form.php:599
|
1223 |
#: app/features/mec/meta_boxes/search_form.php:606
|
1224 |
#: app/features/mec/meta_boxes/search_form.php:613
|
1225 |
+
#: app/features/mec/meta_boxes/search_form.php:620 app/libraries/main.php:2862
|
1226 |
msgid "Dropdown"
|
1227 |
msgstr ""
|
1228 |
|
1229 |
#: app/features/events.php:2492 app/features/mec/booking.php:498
|
1230 |
+
#: app/libraries/main.php:2909
|
1231 |
msgid "Agreement"
|
1232 |
msgstr ""
|
1233 |
|
1234 |
#: app/features/events.php:2493 app/features/mec/booking.php:499
|
1235 |
+
#: app/libraries/main.php:2750
|
1236 |
msgid "Paragraph"
|
1237 |
msgstr ""
|
1238 |
|
1259 |
#: app/features/ix.php:3414 app/features/locations.php:58
|
1260 |
#: app/features/locations.php:230 app/features/locations.php:287
|
1261 |
#: app/features/locations.php:289 app/features/locations.php:298
|
1262 |
+
#: app/features/mec/meta_boxes/display_options.php:872
|
1263 |
#: app/features/mec/meta_boxes/search_form.php:38
|
1264 |
#: app/features/mec/meta_boxes/search_form.php:100
|
1265 |
#: app/features/mec/meta_boxes/search_form.php:162
|
1271 |
#: app/features/mec/meta_boxes/search_form.php:521
|
1272 |
#: app/features/mec/meta_boxes/search_form.php:582
|
1273 |
#: app/features/mec/settings.php:782 app/features/mec/single.php:212
|
1274 |
+
#: app/features/search.php:71 app/libraries/main.php:2055
|
1275 |
+
#: app/libraries/main.php:4923 app/libraries/skins.php:837
|
1276 |
#: app/skins/single.php:488 app/skins/single.php:909
|
1277 |
#: app/skins/single/default.php:169 app/skins/single/default.php:381
|
1278 |
#: app/skins/single/m1.php:155 app/skins/single/m2.php:87
|
1366 |
msgstr ""
|
1367 |
|
1368 |
#: app/features/fes.php:223 app/features/profile/profile.php:186
|
1369 |
+
#: app/libraries/main.php:2090 app/libraries/main.php:4953
|
1370 |
msgid "Ticket"
|
1371 |
msgstr ""
|
1372 |
|
1373 |
+
#: app/features/fes.php:223 app/libraries/main.php:2067
|
1374 |
msgid "Transaction ID"
|
1375 |
msgstr ""
|
1376 |
|
1378 |
msgid "Total Price"
|
1379 |
msgstr ""
|
1380 |
|
1381 |
+
#: app/features/fes.php:223
|
1382 |
+
msgid "Ticket Variation"
|
1383 |
+
msgstr ""
|
1384 |
+
|
1385 |
#: app/features/fes.php:223
|
1386 |
msgid "Confirmation"
|
1387 |
msgstr ""
|
1390 |
msgid "Verification"
|
1391 |
msgstr ""
|
1392 |
|
1393 |
+
#: app/features/fes.php:303
|
1394 |
msgid "Unknown"
|
1395 |
msgstr ""
|
1396 |
|
1397 |
+
#: app/features/fes.php:362
|
1398 |
msgid "The image is uploaded!"
|
1399 |
msgstr ""
|
1400 |
|
1401 |
+
#: app/features/fes.php:388
|
1402 |
msgid "Captcha is invalid! Please try again."
|
1403 |
msgstr ""
|
1404 |
|
1405 |
+
#: app/features/fes.php:416
|
1406 |
msgid "Please fill event title field!"
|
1407 |
msgstr ""
|
1408 |
|
1409 |
+
#: app/features/fes.php:1035
|
1410 |
msgid "The event submitted. It will publish as soon as possible."
|
1411 |
msgstr ""
|
1412 |
|
1413 |
+
#: app/features/fes.php:1036
|
1414 |
msgid "The event published."
|
1415 |
msgstr ""
|
1416 |
|
1419 |
msgstr ""
|
1420 |
|
1421 |
#: app/features/fes/form.php:365
|
1422 |
+
#: app/features/mec/meta_boxes/display_options.php:802
|
1423 |
+
#: app/libraries/main.php:409
|
1424 |
msgid "Monday"
|
1425 |
msgstr ""
|
1426 |
|
1427 |
#: app/features/fes/form.php:366
|
1428 |
+
#: app/features/mec/meta_boxes/display_options.php:803
|
1429 |
+
#: app/libraries/main.php:409
|
1430 |
msgid "Tuesday"
|
1431 |
msgstr ""
|
1432 |
|
1433 |
#: app/features/fes/form.php:367
|
1434 |
+
#: app/features/mec/meta_boxes/display_options.php:804
|
1435 |
+
#: app/libraries/main.php:409
|
1436 |
msgid "Wednesday"
|
1437 |
msgstr ""
|
1438 |
|
1439 |
#: app/features/fes/form.php:368
|
1440 |
+
#: app/features/mec/meta_boxes/display_options.php:805
|
1441 |
+
#: app/libraries/main.php:409
|
1442 |
msgid "Thursday"
|
1443 |
msgstr ""
|
1444 |
|
1445 |
#: app/features/fes/form.php:369
|
1446 |
+
#: app/features/mec/meta_boxes/display_options.php:806
|
1447 |
+
#: app/libraries/main.php:409
|
1448 |
msgid "Friday"
|
1449 |
msgstr ""
|
1450 |
|
1451 |
#: app/features/fes/form.php:370
|
1452 |
+
#: app/features/mec/meta_boxes/display_options.php:807
|
1453 |
+
#: app/libraries/main.php:409
|
1454 |
msgid "Saturday"
|
1455 |
msgstr ""
|
1456 |
|
1457 |
#: app/features/fes/form.php:371
|
1458 |
+
#: app/features/mec/meta_boxes/display_options.php:801
|
1459 |
+
#: app/libraries/main.php:409
|
1460 |
msgid "Sunday"
|
1461 |
msgstr ""
|
1462 |
|
1496 |
|
1497 |
#: app/features/fes/form.php:772 app/features/labels.php:61
|
1498 |
#: app/features/labels.php:221 app/features/mec.php:337
|
1499 |
+
#: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:4920
|
1500 |
#: app/skins/single.php:687 app/skins/single/default.php:148
|
1501 |
#: app/skins/single/default.php:360 app/skins/single/m1.php:64
|
1502 |
#: app/skins/single/modern.php:214
|
1550 |
msgstr ""
|
1551 |
|
1552 |
#: app/features/ix.php:107 app/features/mec/support.php:73
|
1553 |
+
#: app/libraries/main.php:798
|
1554 |
msgid "Import / Export"
|
1555 |
msgstr ""
|
1556 |
|
1861 |
#: app/features/mec/booking.php:264 app/features/mec/booking.php:282
|
1862 |
#: app/features/mec/booking.php:359
|
1863 |
#: app/features/mec/meta_boxes/display_options.php:162
|
1864 |
+
#: app/features/mec/meta_boxes/display_options.php:340
|
1865 |
#: app/features/mec/modules.php:70 app/features/mec/modules.php:211
|
1866 |
#: app/features/mec/modules.php:228
|
1867 |
#, php-format
|
1872 |
#: app/features/mec/booking.php:91 app/features/mec/booking.php:264
|
1873 |
#: app/features/mec/booking.php:282 app/features/mec/booking.php:359
|
1874 |
#: app/features/mec/meta_boxes/display_options.php:162
|
1875 |
+
#: app/features/mec/meta_boxes/display_options.php:340
|
1876 |
+
#: app/features/mec/meta_boxes/display_options.php:368
|
1877 |
+
#: app/features/mec/meta_boxes/display_options.php:495
|
1878 |
+
#: app/features/mec/meta_boxes/display_options.php:546
|
1879 |
+
#: app/features/mec/meta_boxes/display_options.php:653
|
1880 |
+
#: app/features/mec/meta_boxes/display_options.php:760
|
1881 |
+
#: app/features/mec/meta_boxes/display_options.php:833
|
1882 |
+
#: app/features/mec/meta_boxes/display_options.php:1033
|
1883 |
#: app/features/mec/modules.php:70 app/features/mec/modules.php:211
|
1884 |
#: app/features/mec/modules.php:228
|
1885 |
msgid "Pro version of Modern Events Calendar"
|
2033 |
msgstr ""
|
2034 |
|
2035 |
#: app/features/ix/sync.php:22
|
2036 |
+
#: app/features/mec/meta_boxes/display_options.php:833
|
2037 |
#, php-format
|
2038 |
msgid "%s is required to use synchronization feature."
|
2039 |
msgstr ""
|
2182 |
|
2183 |
#: app/features/labels.php:112 app/features/labels.php:139
|
2184 |
#: app/features/mec/meta_boxes/display_options.php:38
|
2185 |
+
#: app/features/mec/meta_boxes/display_options.php:202
|
2186 |
+
#: app/features/mec/meta_boxes/display_options.php:373
|
2187 |
+
#: app/features/mec/meta_boxes/display_options.php:551
|
2188 |
+
#: app/features/mec/meta_boxes/display_options.php:601
|
2189 |
+
#: app/features/mec/meta_boxes/display_options.php:765
|
2190 |
+
#: app/features/mec/meta_boxes/display_options.php:915
|
2191 |
+
#: app/features/mec/meta_boxes/display_options.php:972
|
2192 |
+
#: app/features/mec/meta_boxes/display_options.php:1064
|
2193 |
+
#: app/features/mec/meta_boxes/display_options.php:1150
|
2194 |
msgid "Style"
|
2195 |
msgstr ""
|
2196 |
|
2206 |
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:107
|
2207 |
#: app/skins/monthly_view/calendar_clean.php:107
|
2208 |
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:45
|
2209 |
+
#: app/skins/timeline/render.php:43 app/skins/timetable/render.php:33
|
2210 |
+
#: app/skins/timetable/render.php:139 app/skins/weekly_view/render.php:56
|
2211 |
+
#: app/skins/yearly_view/render.php:48
|
2212 |
msgid "Featured"
|
2213 |
msgstr ""
|
2214 |
|
2215 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2216 |
+
#: app/libraries/main.php:5169 app/skins/agenda/render.php:41
|
2217 |
#: app/skins/available_spot/tpl.php:42 app/skins/carousel/render.php:45
|
2218 |
#: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:32
|
2219 |
#: app/skins/daily_view/render.php:52 app/skins/grid/render.php:50
|
2221 |
#: app/skins/monthly_view/calendar.php:111
|
2222 |
#: app/skins/monthly_view/calendar_clean.php:111
|
2223 |
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:46
|
2224 |
+
#: app/skins/timeline/render.php:47 app/skins/timetable/render.php:37
|
2225 |
+
#: app/skins/timetable/render.php:140 app/skins/weekly_view/render.php:60
|
2226 |
+
#: app/skins/yearly_view/render.php:52
|
2227 |
msgid "Canceled"
|
2228 |
msgstr ""
|
2229 |
|
2248 |
msgstr ""
|
2249 |
|
2250 |
#: app/features/locations.php:59 app/features/mec.php:338
|
2251 |
+
#: app/features/mec/dashboard.php:269 app/features/mec/meta_boxes/filter.php:96
|
2252 |
+
#: app/libraries/main.php:4922
|
2253 |
msgid "Locations"
|
2254 |
msgstr ""
|
2255 |
|
2354 |
msgid "Don't show map in single event page"
|
2355 |
msgstr ""
|
2356 |
|
2357 |
+
#: app/features/locations.php:356 app/libraries/main.php:4956
|
2358 |
msgid "Other Locations"
|
2359 |
msgstr ""
|
2360 |
|
2400 |
msgid "Support"
|
2401 |
msgstr ""
|
2402 |
|
2403 |
+
#: app/features/mec.php:339 app/features/mec/dashboard.php:276
|
2404 |
#: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
|
2405 |
+
#: app/libraries/main.php:4924
|
2406 |
msgid "Organizers"
|
2407 |
msgstr ""
|
2408 |
|
2409 |
#: app/features/mec.php:347 app/features/mec.php:367
|
2410 |
+
#: app/features/mec/dashboard.php:262
|
2411 |
msgid "Shortcodes"
|
2412 |
msgstr ""
|
2413 |
|
2494 |
#: app/features/mec/booking.php:70 app/features/mec/messages.php:13
|
2495 |
#: app/features/mec/modules.php:23 app/features/mec/notifications.php:12
|
2496 |
#: app/features/mec/settings.php:53 app/features/mec/single.php:15
|
2497 |
+
#: app/features/mec/styling.php:35
|
2498 |
msgid "Search..."
|
2499 |
msgstr ""
|
2500 |
|
2545 |
|
2546 |
#: app/features/mec/booking.php:115
|
2547 |
#: app/features/mec/meta_boxes/display_options.php:121
|
2548 |
+
#: app/features/mec/meta_boxes/display_options.php:321
|
2549 |
+
#: app/features/mec/meta_boxes/display_options.php:404
|
2550 |
+
#: app/features/mec/meta_boxes/display_options.php:863
|
2551 |
+
#: app/features/mec/meta_boxes/display_options.php:1130
|
2552 |
+
#: app/features/mec/meta_boxes/display_options.php:1238
|
2553 |
+
#: app/features/mec/meta_boxes/display_options.php:1276
|
2554 |
msgid "Limit"
|
2555 |
msgstr ""
|
2556 |
|
2652 |
msgstr ""
|
2653 |
|
2654 |
#: app/features/mec/booking.php:235 app/features/mec/notifications.php:155
|
2655 |
+
#: app/libraries/main.php:575
|
2656 |
msgid "Booking Confirmation"
|
2657 |
msgstr ""
|
2658 |
|
2674 |
"new menu on the Dashboard > Booking"
|
2675 |
msgstr ""
|
2676 |
|
2677 |
+
#: app/features/mec/booking.php:279 app/libraries/main.php:554
|
2678 |
msgid "Taxes / Fees"
|
2679 |
msgstr ""
|
2680 |
|
2686 |
msgid "Add Fee"
|
2687 |
msgstr ""
|
2688 |
|
2689 |
+
#: app/features/mec/booking.php:356 app/libraries/main.php:555
|
2690 |
msgid "Ticket Variations & Options"
|
2691 |
msgstr ""
|
2692 |
|
2731 |
#: app/features/mec/notifications.php:599
|
2732 |
#: app/features/mec/notifications.php:621 app/features/mec/settings.php:949
|
2733 |
#: app/features/mec/settings.php:971 app/features/mec/single.php:267
|
2734 |
+
#: app/features/mec/single.php:289 app/libraries/main.php:5168
|
2735 |
msgid "Verified"
|
2736 |
msgstr ""
|
2737 |
|
2805 |
"on your website. Please watch this 2 minutes video to the end."
|
2806 |
msgstr ""
|
2807 |
|
2808 |
+
#: app/features/mec/dashboard.php:143 app/features/mec/dashboard.php:167
|
2809 |
msgid "MEC Activate"
|
2810 |
msgstr ""
|
2811 |
|
2812 |
+
#: app/features/mec/dashboard.php:149 app/features/mec/dashboard.php:231
|
|
|
|
|
|
|
|
|
|
|
|
|
2813 |
msgid "Activate Addons"
|
2814 |
msgstr ""
|
2815 |
|
2816 |
+
#: app/features/mec/dashboard.php:157 app/features/mec/dashboard.php:240
|
2817 |
msgid "You cannot access this section."
|
2818 |
msgstr ""
|
2819 |
|
2820 |
+
#: app/features/mec/dashboard.php:173
|
2821 |
+
msgid ""
|
2822 |
+
"In order to use all plugin features and options, please enter your purchase "
|
2823 |
+
"code."
|
2824 |
+
msgstr ""
|
2825 |
+
|
2826 |
+
#: app/features/mec/dashboard.php:287 app/features/mec/settings.php:371
|
2827 |
msgid "Upcoming Events"
|
2828 |
msgstr ""
|
2829 |
|
2830 |
+
#: app/features/mec/dashboard.php:311
|
2831 |
msgid "Popular Gateways"
|
2832 |
msgstr ""
|
2833 |
|
2834 |
+
#: app/features/mec/dashboard.php:365
|
2835 |
msgid "Total Bookings"
|
2836 |
msgstr ""
|
2837 |
|
2838 |
+
#: app/features/mec/dashboard.php:392
|
2839 |
msgid "This Month"
|
2840 |
msgstr ""
|
2841 |
|
2842 |
+
#: app/features/mec/dashboard.php:393
|
2843 |
msgid "Last Month"
|
2844 |
msgstr ""
|
2845 |
|
2846 |
+
#: app/features/mec/dashboard.php:394
|
2847 |
msgid "This Year"
|
2848 |
msgstr ""
|
2849 |
|
2850 |
+
#: app/features/mec/dashboard.php:395
|
2851 |
msgid "Last Year"
|
2852 |
msgstr ""
|
2853 |
|
2854 |
+
#: app/features/mec/dashboard.php:407
|
2855 |
msgid "Bar"
|
2856 |
msgstr ""
|
2857 |
|
2858 |
+
#: app/features/mec/dashboard.php:408
|
2859 |
msgid "Line"
|
2860 |
msgstr ""
|
2861 |
|
2862 |
+
#: app/features/mec/dashboard.php:410
|
2863 |
msgid "Filter"
|
2864 |
msgstr ""
|
2865 |
|
2866 |
+
#: app/features/mec/dashboard.php:426
|
2867 |
#, php-format
|
2868 |
msgid "Total Sells (%s)"
|
2869 |
msgstr ""
|
2870 |
|
2871 |
+
#: app/features/mec/dashboard.php:447
|
2872 |
msgid "Change Log"
|
2873 |
msgstr ""
|
2874 |
|
2897 |
msgstr ""
|
2898 |
|
2899 |
#: app/features/mec/messages.php:28 app/features/mec/support.php:66
|
2900 |
+
#: app/libraries/main.php:791
|
2901 |
msgid "Messages"
|
2902 |
msgstr ""
|
2903 |
|
2914 |
msgstr ""
|
2915 |
|
2916 |
#: app/features/mec/meta_boxes/display_options.php:40
|
2917 |
+
#: app/features/mec/meta_boxes/display_options.php:204
|
2918 |
+
#: app/features/mec/meta_boxes/display_options.php:603
|
2919 |
+
#: app/features/mec/meta_boxes/display_options.php:917
|
2920 |
#: app/features/mec/settings.php:235 app/features/mec/settings.php:259
|
2921 |
#: app/features/mec/settings.php:268 app/features/mec/settings.php:309
|
2922 |
#: app/features/mec/settings.php:333 app/features/mec/settings.php:342
|
2924 |
msgstr ""
|
2925 |
|
2926 |
#: app/features/mec/meta_boxes/display_options.php:41
|
2927 |
+
#: app/features/mec/meta_boxes/display_options.php:206
|
2928 |
#: app/features/mec/settings.php:260 app/features/mec/settings.php:270
|
2929 |
#: app/features/mec/settings.php:334 app/features/mec/settings.php:344
|
2930 |
msgid "Minimal"
|
2931 |
msgstr ""
|
2932 |
|
2933 |
#: app/features/mec/meta_boxes/display_options.php:42
|
2934 |
+
#: app/features/mec/meta_boxes/display_options.php:207
|
2935 |
+
#: app/features/mec/meta_boxes/display_options.php:553
|
2936 |
+
#: app/features/mec/meta_boxes/display_options.php:605
|
2937 |
+
#: app/features/mec/meta_boxes/display_options.php:767
|
2938 |
+
#: app/features/mec/meta_boxes/display_options.php:919
|
2939 |
#: app/features/mec/settings.php:237 app/features/mec/settings.php:250
|
2940 |
#: app/features/mec/settings.php:261 app/features/mec/settings.php:271
|
2941 |
#: app/features/mec/settings.php:311 app/features/mec/settings.php:324
|
2954 |
msgstr ""
|
2955 |
|
2956 |
#: app/features/mec/meta_boxes/display_options.php:50
|
2957 |
+
#: app/features/mec/meta_boxes/display_options.php:216
|
2958 |
+
#: app/features/mec/meta_boxes/display_options.php:381
|
2959 |
+
#: app/features/mec/meta_boxes/display_options.php:660
|
2960 |
+
#: app/features/mec/meta_boxes/display_options.php:693
|
2961 |
+
#: app/features/mec/meta_boxes/display_options.php:840
|
2962 |
+
#: app/features/mec/meta_boxes/display_options.php:1075
|
2963 |
+
#: app/features/mec/meta_boxes/display_options.php:1162
|
2964 |
+
#: app/features/mec/meta_boxes/display_options.php:1254
|
2965 |
msgid "Today"
|
2966 |
msgstr ""
|
2967 |
|
2968 |
#: app/features/mec/meta_boxes/display_options.php:51
|
2969 |
+
#: app/features/mec/meta_boxes/display_options.php:217
|
2970 |
+
#: app/features/mec/meta_boxes/display_options.php:382
|
2971 |
+
#: app/features/mec/meta_boxes/display_options.php:661
|
2972 |
+
#: app/features/mec/meta_boxes/display_options.php:694
|
2973 |
+
#: app/features/mec/meta_boxes/display_options.php:841
|
2974 |
+
#: app/features/mec/meta_boxes/display_options.php:1076
|
2975 |
+
#: app/features/mec/meta_boxes/display_options.php:1163
|
2976 |
+
#: app/features/mec/meta_boxes/display_options.php:1255
|
2977 |
msgid "Tomorrow"
|
2978 |
msgstr ""
|
2979 |
|
2980 |
#: app/features/mec/meta_boxes/display_options.php:52
|
2981 |
+
#: app/features/mec/meta_boxes/display_options.php:218
|
2982 |
+
#: app/features/mec/meta_boxes/display_options.php:383
|
2983 |
+
#: app/features/mec/meta_boxes/display_options.php:436
|
2984 |
+
#: app/features/mec/meta_boxes/display_options.php:613
|
2985 |
+
#: app/features/mec/meta_boxes/display_options.php:662
|
2986 |
+
#: app/features/mec/meta_boxes/display_options.php:695
|
2987 |
+
#: app/features/mec/meta_boxes/display_options.php:730
|
2988 |
+
#: app/features/mec/meta_boxes/display_options.php:776
|
2989 |
+
#: app/features/mec/meta_boxes/display_options.php:842
|
2990 |
+
#: app/features/mec/meta_boxes/display_options.php:1077
|
2991 |
+
#: app/features/mec/meta_boxes/display_options.php:1164
|
2992 |
+
#: app/features/mec/meta_boxes/display_options.php:1256
|
2993 |
msgid "Start of Current Month"
|
2994 |
msgstr ""
|
2995 |
|
2996 |
#: app/features/mec/meta_boxes/display_options.php:53
|
2997 |
+
#: app/features/mec/meta_boxes/display_options.php:219
|
2998 |
+
#: app/features/mec/meta_boxes/display_options.php:384
|
2999 |
+
#: app/features/mec/meta_boxes/display_options.php:437
|
3000 |
+
#: app/features/mec/meta_boxes/display_options.php:614
|
3001 |
+
#: app/features/mec/meta_boxes/display_options.php:663
|
3002 |
+
#: app/features/mec/meta_boxes/display_options.php:696
|
3003 |
+
#: app/features/mec/meta_boxes/display_options.php:731
|
3004 |
+
#: app/features/mec/meta_boxes/display_options.php:777
|
3005 |
+
#: app/features/mec/meta_boxes/display_options.php:843
|
3006 |
+
#: app/features/mec/meta_boxes/display_options.php:1078
|
3007 |
+
#: app/features/mec/meta_boxes/display_options.php:1165
|
3008 |
+
#: app/features/mec/meta_boxes/display_options.php:1257
|
3009 |
msgid "Start of Next Month"
|
3010 |
msgstr ""
|
3011 |
|
3012 |
#: app/features/mec/meta_boxes/display_options.php:54
|
3013 |
+
#: app/features/mec/meta_boxes/display_options.php:220
|
3014 |
+
#: app/features/mec/meta_boxes/display_options.php:385
|
3015 |
+
#: app/features/mec/meta_boxes/display_options.php:438
|
3016 |
+
#: app/features/mec/meta_boxes/display_options.php:561
|
3017 |
+
#: app/features/mec/meta_boxes/display_options.php:615
|
3018 |
+
#: app/features/mec/meta_boxes/display_options.php:664
|
3019 |
+
#: app/features/mec/meta_boxes/display_options.php:697
|
3020 |
+
#: app/features/mec/meta_boxes/display_options.php:732
|
3021 |
+
#: app/features/mec/meta_boxes/display_options.php:778
|
3022 |
+
#: app/features/mec/meta_boxes/display_options.php:844
|
3023 |
+
#: app/features/mec/meta_boxes/display_options.php:1079
|
3024 |
+
#: app/features/mec/meta_boxes/display_options.php:1166
|
3025 |
+
#: app/features/mec/meta_boxes/display_options.php:1258
|
3026 |
msgid "On a certain date"
|
3027 |
msgstr ""
|
3028 |
|
3029 |
#: app/features/mec/meta_boxes/display_options.php:57
|
3030 |
+
#: app/features/mec/meta_boxes/display_options.php:223
|
3031 |
+
#: app/features/mec/meta_boxes/display_options.php:388
|
3032 |
+
#: app/features/mec/meta_boxes/display_options.php:441
|
3033 |
+
#: app/features/mec/meta_boxes/display_options.php:564
|
3034 |
+
#: app/features/mec/meta_boxes/display_options.php:618
|
3035 |
+
#: app/features/mec/meta_boxes/display_options.php:667
|
3036 |
+
#: app/features/mec/meta_boxes/display_options.php:701
|
3037 |
+
#: app/features/mec/meta_boxes/display_options.php:735
|
3038 |
+
#: app/features/mec/meta_boxes/display_options.php:781
|
3039 |
+
#: app/features/mec/meta_boxes/display_options.php:847
|
3040 |
+
#: app/features/mec/meta_boxes/display_options.php:1082
|
3041 |
+
#: app/features/mec/meta_boxes/display_options.php:1169
|
3042 |
+
#: app/features/mec/meta_boxes/display_options.php:1261
|
3043 |
#, php-format
|
3044 |
msgid "eg. %s"
|
3045 |
msgstr ""
|
3054 |
#: app/features/mec/meta_boxes/display_options.php:102
|
3055 |
#: app/features/mec/meta_boxes/display_options.php:109
|
3056 |
#: app/features/mec/meta_boxes/display_options.php:114
|
3057 |
+
#: app/features/mec/meta_boxes/display_options.php:227
|
3058 |
+
#: app/features/mec/meta_boxes/display_options.php:231
|
3059 |
+
#: app/features/mec/meta_boxes/display_options.php:238
|
3060 |
+
#: app/features/mec/meta_boxes/display_options.php:243
|
3061 |
+
#: app/features/mec/meta_boxes/display_options.php:250
|
|
|
|
|
3062 |
#: app/features/mec/meta_boxes/display_options.php:255
|
3063 |
#: app/features/mec/meta_boxes/display_options.php:262
|
3064 |
+
#: app/features/mec/meta_boxes/display_options.php:268
|
3065 |
+
#: app/features/mec/meta_boxes/display_options.php:275
|
3066 |
#: app/features/mec/meta_boxes/display_options.php:279
|
3067 |
#: app/features/mec/meta_boxes/display_options.php:286
|
3068 |
+
#: app/features/mec/meta_boxes/display_options.php:292
|
3069 |
+
#: app/features/mec/meta_boxes/display_options.php:299
|
3070 |
+
#: app/features/mec/meta_boxes/display_options.php:303
|
3071 |
+
#: app/features/mec/meta_boxes/display_options.php:392
|
3072 |
+
#: app/features/mec/meta_boxes/display_options.php:397
|
3073 |
+
#: app/features/mec/meta_boxes/display_options.php:568
|
3074 |
+
#: app/features/mec/meta_boxes/display_options.php:5
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|