Version Description
- 24 December 2019 =
- Added: An option to set minimum sale for tickets (pro)
- Added: A new badge for new events to inform administrator
- Added: An option for Facebook importer to import Facebook link as event link (pro)
- Added: An option for Facebook importer to import Facebook link as more info link (pro)
- Added: Mass email feature in attendees menu so admin can send mass email for selected attendees of a certain event at a specific date (pro)
- Added: Payment information such as gateway and payment time in invoices (pro)
- Added: WooCommerce order link in booking menu if booking is paid by WooCommerce (pro)
- Added: An option to stop selling tickets at a certain time before the event starts (pro)
- Added: Popular Social Networks (share): Tumblr, Pinterest, Flipboard, GetPocket, Reddit, WhatsApp and Telegram.
- Fixed: A security issue on iCal download
- Fixed: Date on next event module and export module
- Fixed: The iCal export button
- Fixed: Extra columns in CSV and MS Excel export (pro)
- Fixed: Extra comma in the list view minimal when not having a location
- Fixed: Some minor issues
Download this release
Release Info
Developer | webnus |
Plugin | Modern Events Calendar Lite |
Version | 4.9.5 |
Comparing to | |
See all releases |
Code changes from version 4.9.0 to 4.9.5
- app/features/events.php +161 -15
- app/features/fes.php +9 -3
- app/features/gateways/paypal_ipn.php +30 -0
- app/features/ix.php +13 -2
- app/features/ix/import_f_calendar.php +12 -0
- app/features/mec.php +62 -0
- app/features/mec/meta_boxes/display_options.php +1 -0
- app/features/mec/modules.php +5 -0
- app/libraries/book.php +21 -1
- app/libraries/main.php +157 -12
- app/libraries/notifications.php +81 -9
- app/modules/booking/default.php +15 -6
- app/modules/booking/steps/tickets.php +26 -3
- app/modules/export/details.php +1 -2
- app/modules/next-event/details.php +9 -9
- app/skins/custom.php +4 -35
- app/skins/custom/render.php +8 -3
- app/skins/grid/render.php +6 -1
- app/skins/list/render.php +1 -1
- app/skins/single.php +8 -5
- app/skins/timetable.php +10 -1
- app/skins/timetable/render.php +2 -0
- assets/css/backend.css +56 -2
- assets/css/backend.min.css +2 -2
- assets/css/frontend.css +102 -23
- assets/css/frontend.min.css +1 -1
- assets/img/mec-addons-teaser1.png +0 -0
- assets/js/backend.js +91 -2
- changelog.txt +18 -1
- languages/modern-events-calendar-lite-ca_ES.mo +0 -0
- languages/modern-events-calendar-lite-ca_ES.po +749 -559
- languages/modern-events-calendar-lite-cs_CZ.mo +0 -0
- languages/modern-events-calendar-lite-cs_CZ.po +671 -494
app/features/events.php
CHANGED
@@ -135,6 +135,9 @@ class MEC_feature_events extends MEC_base
|
|
135 |
// Event Attendees
|
136 |
$this->factory->action('wp_ajax_mec_attendees', array($this, 'attendees'));
|
137 |
$this->factory->action('wp_ajax_mec_attendees_date_list', array($this, 'attendees_date_list'));
|
|
|
|
|
|
|
138 |
}
|
139 |
|
140 |
/**
|
@@ -1840,6 +1843,27 @@ class MEC_feature_events extends MEC_base
|
|
1840 |
<button class="button remove" type="button"
|
1841 |
onclick="mec_ticket_remove(<?php echo $key; ?>);"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" width="1em" height="1em" style="-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); transform: rotate(360deg);" preserveAspectRatio="xMidYMid meet" viewBox="0 0 20 20"><path d="M14.95 6.46L11.41 10l3.54 3.54l-1.41 1.41L10 11.42l-3.53 3.53l-1.42-1.42L8.58 10L5.05 6.47l1.42-1.42L10 8.58l3.54-3.53z"/></svg></button>
|
1842 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1843 |
<?php do_action('custom_field_ticket', $ticket, $key); ?>
|
1844 |
<div id="mec_price_per_dates_container">
|
1845 |
<div class="mec-form-row">
|
@@ -2034,6 +2058,27 @@ class MEC_feature_events extends MEC_base
|
|
2034 |
<button class="button remove" type="button"
|
2035 |
onclick="mec_ticket_remove(:i:)"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" width="1em" height="1em" style="-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); transform: rotate(360deg);" preserveAspectRatio="xMidYMid meet" viewBox="0 0 20 20"><path d="M14.95 6.46L11.41 10l3.54 3.54l-1.41 1.41L10 11.42l-3.53 3.53l-1.42-1.42L8.58 10L5.05 6.47l1.42-1.42L10 8.58l3.54-3.53z"/></svg></button>
|
2036 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2037 |
<div id="mec_price_per_dates_container_:i:">
|
2038 |
<div class="mec-form-row">
|
2039 |
<h4><?php _e('Price per Date', 'modern-events-calendar-lite'); ?></h4>
|
@@ -2783,6 +2828,9 @@ class MEC_feature_events extends MEC_base
|
|
2783 |
update_post_meta($post_id, 'mec_repeat_end_at_date', $repeat_end_at_date);
|
2784 |
update_post_meta($post_id, 'mec_advanced_days', $advanced);
|
2785 |
|
|
|
|
|
|
|
2786 |
// Creating $event array for inserting in mec_events table
|
2787 |
$event = array(
|
2788 |
'post_id' => $post_id,
|
@@ -3611,12 +3659,23 @@ class MEC_feature_events extends MEC_base
|
|
3611 |
$bookings = get_posts(array(
|
3612 |
'posts_per_page' => -1,
|
3613 |
'post_type' => $this->main->get_book_post_type(),
|
3614 |
-
'
|
3615 |
-
'
|
|
|
3616 |
'meta_compare' => '=',
|
3617 |
'meta_query' => array
|
3618 |
(
|
3619 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3620 |
),
|
3621 |
'date_query' => array(
|
3622 |
array(
|
@@ -3643,10 +3702,13 @@ class MEC_feature_events extends MEC_base
|
|
3643 |
{
|
3644 |
$actions['mec-attendees'] .= '
|
3645 |
<div class="w-clearfix mec-attendees-head">
|
|
|
|
|
|
|
3646 |
<div class="w-col-xs-3">
|
3647 |
<span>'.__('Name', 'modern-events-calendar-lite').'</span>
|
3648 |
</div>
|
3649 |
-
<div class="w-col-xs-
|
3650 |
<span>'.__('Email', 'modern-events-calendar-lite').'</span>
|
3651 |
</div>
|
3652 |
<div class="w-col-xs-3">
|
@@ -3657,12 +3719,13 @@ class MEC_feature_events extends MEC_base
|
|
3657 |
</div>
|
3658 |
</div>
|
3659 |
';
|
3660 |
-
|
3661 |
foreach($attendees as $attendee)
|
3662 |
{
|
3663 |
$actions['mec-attendees'] .= '<div class="w-clearfix mec-attendees-content">';
|
|
|
3664 |
$actions['mec-attendees'] .= '<div class="w-col-xs-3">' . get_avatar($attendee['email']) .$attendee['name'].'</div>';
|
3665 |
-
$actions['mec-attendees'] .= '<div class="w-col-xs-
|
3666 |
$actions['mec-attendees'] .= '<div class="w-col-xs-3">'.((isset($attendee['id']) and isset($tickets[$attendee['id']]['name'])) ? $tickets[$attendee['id']]['name'] : __('Unknown', 'modern-events-calendar-lite')).'</div>';
|
3667 |
|
3668 |
$variations = '';
|
@@ -3685,6 +3748,7 @@ class MEC_feature_events extends MEC_base
|
|
3685 |
$actions['mec-attendees'] .= $variations;
|
3686 |
|
3687 |
$actions['mec-attendees'] .= '</div>';
|
|
|
3688 |
}
|
3689 |
|
3690 |
|
@@ -3693,11 +3757,31 @@ class MEC_feature_events extends MEC_base
|
|
3693 |
{
|
3694 |
$actions['mec-attendees'] .= '<p>'.__("No Attendees Found!", 'modern-events-calendar-lite').'</p>';
|
3695 |
}
|
3696 |
-
|
3697 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3698 |
</div>
|
3699 |
</div>
|
3700 |
-
';
|
|
|
3701 |
}
|
3702 |
|
3703 |
return $actions;
|
@@ -3808,12 +3892,23 @@ class MEC_feature_events extends MEC_base
|
|
3808 |
$bookings = get_posts(array(
|
3809 |
'posts_per_page' => -1,
|
3810 |
'post_type' => $this->main->get_book_post_type(),
|
3811 |
-
'
|
3812 |
-
'
|
|
|
3813 |
'meta_compare' => '=',
|
3814 |
'meta_query' => array
|
3815 |
(
|
3816 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3817 |
),
|
3818 |
'date_query' => array(
|
3819 |
array(
|
@@ -3839,10 +3934,13 @@ class MEC_feature_events extends MEC_base
|
|
3839 |
{
|
3840 |
$html .= '
|
3841 |
<div class="w-clearfix mec-attendees-head">
|
|
|
|
|
|
|
3842 |
<div class="w-col-xs-3">
|
3843 |
<span>'.__('Name', 'modern-events-calendar-lite').'</span>
|
3844 |
</div>
|
3845 |
-
<div class="w-col-xs-
|
3846 |
<span>'.__('Email', 'modern-events-calendar-lite').'</span>
|
3847 |
</div>
|
3848 |
<div class="w-col-xs-3">
|
@@ -3855,12 +3953,13 @@ class MEC_feature_events extends MEC_base
|
|
3855 |
';
|
3856 |
|
3857 |
|
3858 |
-
|
3859 |
foreach($attendees as $attendee)
|
3860 |
{
|
3861 |
$html .= '<div class="w-clearfix mec-attendees-content">';
|
|
|
3862 |
$html .= '<div class="w-col-xs-3">' . get_avatar($attendee['email']) .$attendee['name'].'</div>';
|
3863 |
-
$html .= '<div class="w-col-xs-
|
3864 |
$html .= '<div class="w-col-xs-3">'.((isset($attendee['id']) and isset($tickets[$attendee['id']]['name'])) ? $tickets[$attendee['id']]['name'] : __('Unknown', 'modern-events-calendar-lite')).'</div>';
|
3865 |
|
3866 |
$variations = '';
|
@@ -3883,6 +3982,7 @@ class MEC_feature_events extends MEC_base
|
|
3883 |
$html .= $variations;
|
3884 |
|
3885 |
$html .= '</div>';
|
|
|
3886 |
}
|
3887 |
|
3888 |
|
@@ -3895,4 +3995,50 @@ class MEC_feature_events extends MEC_base
|
|
3895 |
echo json_encode(array('html' => $html));
|
3896 |
exit;
|
3897 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3898 |
}
|
135 |
// Event Attendees
|
136 |
$this->factory->action('wp_ajax_mec_attendees', array($this, 'attendees'));
|
137 |
$this->factory->action('wp_ajax_mec_attendees_date_list', array($this, 'attendees_date_list'));
|
138 |
+
|
139 |
+
// Mass Email
|
140 |
+
$this->factory->action('wp_ajax_mec_mass_email', array($this, 'mass_email'));
|
141 |
}
|
142 |
|
143 |
/**
|
1843 |
<button class="button remove" type="button"
|
1844 |
onclick="mec_ticket_remove(<?php echo $key; ?>);"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" width="1em" height="1em" style="-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); transform: rotate(360deg);" preserveAspectRatio="xMidYMid meet" viewBox="0 0 20 20"><path d="M14.95 6.46L11.41 10l3.54 3.54l-1.41 1.41L10 11.42l-3.53 3.53l-1.42-1.42L8.58 10L5.05 6.47l1.42-1.42L10 8.58l3.54-3.53z"/></svg></button>
|
1845 |
</div>
|
1846 |
+
<div class="mec-form-row">
|
1847 |
+
<input type="text" name="mec[tickets][<?php echo $key; ?>][minimum_ticket]" value="<?php echo(isset($ticket['minimum_ticket']) ? esc_attr($ticket['minimum_ticket']) : '0'); ?>" placeholder="<?php _e('Minimum Ticket e.g. 3', 'modern-events-calendar-lite'); ?>">
|
1848 |
+
<span class="mec-tooltip">
|
1849 |
+
<div class="box top">
|
1850 |
+
<h5 class="title"><?php _e('MinimumTicket', 'modern-events-calendar-lite'); ?></h5>
|
1851 |
+
<div class="content">
|
1852 |
+
<p><?php esc_attr_e('Set a number for the minimum ticket reservation', 'modern-events-calendar-lite'); ?></p>
|
1853 |
+
</div>
|
1854 |
+
</div>
|
1855 |
+
<i title="" class="dashicons-before dashicons-editor-help"></i>
|
1856 |
+
</span>
|
1857 |
+
</div>
|
1858 |
+
<div class="mec-form-row">
|
1859 |
+
<?php ob_start(); ?>
|
1860 |
+
<input type="number" name="mec[tickets][<?php echo $key; ?>][stop_selling_value]" value="<?php echo((isset($ticket['stop_selling_value']) and trim($ticket['stop_selling_value'])) ? esc_attr($ticket['stop_selling_value']) : '0'); ?>" placeholder="<?php _e('e.g. 0', 'modern-events-calendar-lite'); ?>">
|
1861 |
+
<select name="mec[tickets][<?php echo $key; ?>][stop_selling_type]">
|
1862 |
+
<option value="day" <?php echo(isset($ticket['stop_selling_type']) and trim($ticket['stop_selling_type']) == 'day') ? 'selected="selected"' : ''; ?>><?php _e("Day", "limitmec"); ?></option>
|
1863 |
+
<option value="hour" <?php echo(isset($ticket['stop_selling_type']) and trim($ticket['stop_selling_type']) == 'hour') ? 'selected="selected"' : ''; ?>><?php _e("Hour", "mec"); ?></option>
|
1864 |
+
</select>
|
1865 |
+
<?php echo sprintf(__('Stop selling ticket %s before event start.', 'modern-events-calendar-lite'), ob_get_clean()); ?>
|
1866 |
+
</div>
|
1867 |
<?php do_action('custom_field_ticket', $ticket, $key); ?>
|
1868 |
<div id="mec_price_per_dates_container">
|
1869 |
<div class="mec-form-row">
|
2058 |
<button class="button remove" type="button"
|
2059 |
onclick="mec_ticket_remove(:i:)"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" width="1em" height="1em" style="-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); transform: rotate(360deg);" preserveAspectRatio="xMidYMid meet" viewBox="0 0 20 20"><path d="M14.95 6.46L11.41 10l3.54 3.54l-1.41 1.41L10 11.42l-3.53 3.53l-1.42-1.42L8.58 10L5.05 6.47l1.42-1.42L10 8.58l3.54-3.53z"/></svg></button>
|
2060 |
</div>
|
2061 |
+
<div class="mec-form-row">
|
2062 |
+
<input type="text" name="mec[tickets][:i:][minimum_ticket]" placeholder="<?php _e('Minimum Ticket e.g. 3', 'modern-events-calendar-lite'); ?>">
|
2063 |
+
<span class="mec-tooltip">
|
2064 |
+
<div class="box top">
|
2065 |
+
<h5 class="title"><?php _e('MinimumTicket', 'modern-events-calendar-lite'); ?></h5>
|
2066 |
+
<div class="content">
|
2067 |
+
<p><?php esc_attr_e('Set a number for the minimum ticket reservation', 'modern-events-calendar-lite'); ?></p>
|
2068 |
+
</div>
|
2069 |
+
</div>
|
2070 |
+
<i title="" class="dashicons-before dashicons-editor-help"></i>
|
2071 |
+
</span>
|
2072 |
+
</div>
|
2073 |
+
<div class="mec-form-row">
|
2074 |
+
<?php ob_start(); ?>
|
2075 |
+
<input type="number" name="mec[tickets][:i:][stop_selling_value]" value="0" placeholder="<?php _e('e.g. 0', 'modern-events-calendar-lite'); ?>">
|
2076 |
+
<select name="mec[tickets][:i:][stop_selling_type]">
|
2077 |
+
<option value="day"><?php _e("Day", "mec"); ?></option>
|
2078 |
+
<option value="hour"><?php _e("Hour", "mec"); ?></option>
|
2079 |
+
</select>
|
2080 |
+
<?php echo sprintf(__('Stop selling ticket %s before event start.', 'modern-events-calendar-lite'), ob_get_clean()); ?>
|
2081 |
+
</div>
|
2082 |
<div id="mec_price_per_dates_container_:i:">
|
2083 |
<div class="mec-form-row">
|
2084 |
<h4><?php _e('Price per Date', 'modern-events-calendar-lite'); ?></h4>
|
2828 |
update_post_meta($post_id, 'mec_repeat_end_at_date', $repeat_end_at_date);
|
2829 |
update_post_meta($post_id, 'mec_advanced_days', $advanced);
|
2830 |
|
2831 |
+
// For Event Notification Badge.
|
2832 |
+
if(!current_user_can('administrator')) update_post_meta($post_id, 'mec_event_date_submit', date('YmdHis', current_time('timestamp', 0)));
|
2833 |
+
|
2834 |
// Creating $event array for inserting in mec_events table
|
2835 |
$event = array(
|
2836 |
'post_id' => $post_id,
|
3659 |
$bookings = get_posts(array(
|
3660 |
'posts_per_page' => -1,
|
3661 |
'post_type' => $this->main->get_book_post_type(),
|
3662 |
+
'post_status' => 'any',
|
3663 |
+
'meta_key' => 'mec_event_id',
|
3664 |
+
'meta_value' => $id,
|
3665 |
'meta_compare' => '=',
|
3666 |
'meta_query' => array
|
3667 |
(
|
3668 |
+
'relation' => 'AND',
|
3669 |
+
array(
|
3670 |
+
'key' => 'mec_verified',
|
3671 |
+
'value' => '1',
|
3672 |
+
'compare' => '=',
|
3673 |
+
),
|
3674 |
+
array(
|
3675 |
+
'key' => 'mec_confirmed',
|
3676 |
+
'value' => '1',
|
3677 |
+
'compare' => '=',
|
3678 |
+
),
|
3679 |
),
|
3680 |
'date_query' => array(
|
3681 |
array(
|
3702 |
{
|
3703 |
$actions['mec-attendees'] .= '
|
3704 |
<div class="w-clearfix mec-attendees-head">
|
3705 |
+
<div class="w-col-xs-1">
|
3706 |
+
<span><input type="checkbox" id="mec-send-email-check-all" onchange="mec_send_email_check_all(this);" /></span>
|
3707 |
+
</div>
|
3708 |
<div class="w-col-xs-3">
|
3709 |
<span>'.__('Name', 'modern-events-calendar-lite').'</span>
|
3710 |
</div>
|
3711 |
+
<div class="w-col-xs-3">
|
3712 |
<span>'.__('Email', 'modern-events-calendar-lite').'</span>
|
3713 |
</div>
|
3714 |
<div class="w-col-xs-3">
|
3719 |
</div>
|
3720 |
</div>
|
3721 |
';
|
3722 |
+
$index = 0;
|
3723 |
foreach($attendees as $attendee)
|
3724 |
{
|
3725 |
$actions['mec-attendees'] .= '<div class="w-clearfix mec-attendees-content">';
|
3726 |
+
$actions['mec-attendees'] .= '<div class="w-col-xs-1"><input type="checkbox" onchange="mec_send_email_check(this);" /><span class="mec-util-hidden mec-send-email-attendee-info">'.$attendee['name'].':.:'.$attendee['email'].',</span></div>';
|
3727 |
$actions['mec-attendees'] .= '<div class="w-col-xs-3">' . get_avatar($attendee['email']) .$attendee['name'].'</div>';
|
3728 |
+
$actions['mec-attendees'] .= '<div class="w-col-xs-3">'.$attendee['email'].'</div>';
|
3729 |
$actions['mec-attendees'] .= '<div class="w-col-xs-3">'.((isset($attendee['id']) and isset($tickets[$attendee['id']]['name'])) ? $tickets[$attendee['id']]['name'] : __('Unknown', 'modern-events-calendar-lite')).'</div>';
|
3730 |
|
3731 |
$variations = '';
|
3748 |
$actions['mec-attendees'] .= $variations;
|
3749 |
|
3750 |
$actions['mec-attendees'] .= '</div>';
|
3751 |
+
$index++;
|
3752 |
}
|
3753 |
|
3754 |
|
3757 |
{
|
3758 |
$actions['mec-attendees'] .= '<p>'.__("No Attendees Found!", 'modern-events-calendar-lite').'</p>';
|
3759 |
}
|
3760 |
+
|
3761 |
+
$send_email_label = __('Send Email', 'modern-events-calendar-lite');
|
3762 |
+
$actions['mec-attendees'] .='</div>
|
3763 |
+
<div class="mec-send-email-form-wrap">
|
3764 |
+
<h2>'.__('Mass Email', 'modern-events-calendar-lite').'</h2>
|
3765 |
+
<h4 class="mec-send-email-count">'.sprintf(__('You are sending email to %s attendees', 'modern-events-calendar-lite'), '<span>0</span>').'</h4>
|
3766 |
+
<input type="text" class="widefat" id="mec-send-email-subject" placeholder="'.__('Email Subject', 'modern-events-calendar-lite').'"/><br><br>
|
3767 |
+
<div id="mec-send-email-editor'.$id.'-wrap"></div>
|
3768 |
+
<br><p class="description">'.__('You can use following placeholders', 'modern-events-calendar-lite').'</p>
|
3769 |
+
<ul>
|
3770 |
+
<li><span>%%name%%</span>: '.__('Attendee Name', 'modern-events-calendar-lite').'</li>
|
3771 |
+
</ul>
|
3772 |
+
<div id="mec-send-email-message" class="mec-util-hidden mec-error"></div>
|
3773 |
+
<input type="hidden" id="mec-send-email-label" value="'.$send_email_label.'" />
|
3774 |
+
<input type="hidden" id="mec-send-email-label-loading" value="'.esc_attr__('Loading...', 'modern-events-calendar-lite').'" />
|
3775 |
+
<input type="hidden" id="mec-send-email-success" value="'.esc_attr__('Emails successfully sent.', 'modern-events-calendar-lite').'" />
|
3776 |
+
<input type="hidden" id="mec-send-email-no-user-selected" value="'.esc_attr__('No user selected!', 'modern-events-calendar-lite').'" />
|
3777 |
+
<input type="hidden" id="mec-send-email-empty-subject" value="'.esc_attr__('Email subject cannot be empty!', 'modern-events-calendar-lite').'" />
|
3778 |
+
<input type="hidden" id="mec-send-email-empty-content" value="'.esc_attr__('Email content cannot be empty!', 'modern-events-calendar-lite').'" />
|
3779 |
+
<input type="hidden" id="mec-send-email-error" value="'.esc_attr__('There was an error please try again!', 'modern-events-calendar-lite').'" />
|
3780 |
+
<span class="mec-send-email-button">'.$send_email_label.'</span>
|
3781 |
</div>
|
3782 |
</div>
|
3783 |
+
</div>';
|
3784 |
+
wp_enqueue_editor();
|
3785 |
}
|
3786 |
|
3787 |
return $actions;
|
3892 |
$bookings = get_posts(array(
|
3893 |
'posts_per_page' => -1,
|
3894 |
'post_type' => $this->main->get_book_post_type(),
|
3895 |
+
'post_status' => 'any',
|
3896 |
+
'meta_key' => 'mec_event_id',
|
3897 |
+
'meta_value' => $id,
|
3898 |
'meta_compare' => '=',
|
3899 |
'meta_query' => array
|
3900 |
(
|
3901 |
+
'relation' => 'AND',
|
3902 |
+
array(
|
3903 |
+
'key' => 'mec_verified',
|
3904 |
+
'value' => '1',
|
3905 |
+
'compare' => '=',
|
3906 |
+
),
|
3907 |
+
array(
|
3908 |
+
'key' => 'mec_confirmed',
|
3909 |
+
'value' => '1',
|
3910 |
+
'compare' => '=',
|
3911 |
+
),
|
3912 |
),
|
3913 |
'date_query' => array(
|
3914 |
array(
|
3934 |
{
|
3935 |
$html .= '
|
3936 |
<div class="w-clearfix mec-attendees-head">
|
3937 |
+
<div class="w-col-xs-1">
|
3938 |
+
<span><input type="checkbox" id="mec-send-email-check-all" onchange="mec_send_email_check_all(this);" /></span>
|
3939 |
+
</div>
|
3940 |
<div class="w-col-xs-3">
|
3941 |
<span>'.__('Name', 'modern-events-calendar-lite').'</span>
|
3942 |
</div>
|
3943 |
+
<div class="w-col-xs-3">
|
3944 |
<span>'.__('Email', 'modern-events-calendar-lite').'</span>
|
3945 |
</div>
|
3946 |
<div class="w-col-xs-3">
|
3953 |
';
|
3954 |
|
3955 |
|
3956 |
+
$index = 0;
|
3957 |
foreach($attendees as $attendee)
|
3958 |
{
|
3959 |
$html .= '<div class="w-clearfix mec-attendees-content">';
|
3960 |
+
$html .= '<div class="w-col-xs-1"><input type="checkbox" onchange="mec_send_email_check(this);" /><span class="mec-util-hidden mec-send-email-attendee-info">'.$attendee['name'].':.:'.$attendee['email'].',</span></div>';
|
3961 |
$html .= '<div class="w-col-xs-3">' . get_avatar($attendee['email']) .$attendee['name'].'</div>';
|
3962 |
+
$html .= '<div class="w-col-xs-3">'.$attendee['email'].'</div>';
|
3963 |
$html .= '<div class="w-col-xs-3">'.((isset($attendee['id']) and isset($tickets[$attendee['id']]['name'])) ? $tickets[$attendee['id']]['name'] : __('Unknown', 'modern-events-calendar-lite')).'</div>';
|
3964 |
|
3965 |
$variations = '';
|
3982 |
$html .= $variations;
|
3983 |
|
3984 |
$html .= '</div>';
|
3985 |
+
$index++;
|
3986 |
}
|
3987 |
|
3988 |
|
3995 |
echo json_encode(array('html' => $html));
|
3996 |
exit;
|
3997 |
}
|
3998 |
+
|
3999 |
+
public function mass_email()
|
4000 |
+
{
|
4001 |
+
if(!wp_verify_nonce($_REQUEST['nonce'], 'mec_settings_nonce')) exit();
|
4002 |
+
|
4003 |
+
$mail_recipients_info = isset($_POST['mail_recipients_info']) ? sanitize_text_field($_POST['mail_recipients_info']) : '';
|
4004 |
+
$mail_subject = isset($_POST['mail_subject']) ? sanitize_text_field($_POST['mail_subject']) : '';
|
4005 |
+
$mail_content = isset($_POST['mail_content']) ? sanitize_text_field($_POST['mail_content']) : '';
|
4006 |
+
|
4007 |
+
if(substr($mail_recipients_info, -1) == ',') $mail_recipients_info = substr($mail_recipients_info, 0, -1);
|
4008 |
+
|
4009 |
+
$send_mail_user = array();
|
4010 |
+
$render_recipients = explode(',', $mail_recipients_info);
|
4011 |
+
$headers = array('Content-Type: text/html; charset=UTF-8');
|
4012 |
+
|
4013 |
+
foreach($render_recipients as $recipient)
|
4014 |
+
{
|
4015 |
+
$render_recipient = explode(':.:', $recipient);
|
4016 |
+
|
4017 |
+
$to = isset($render_recipient[1]) ? trim($render_recipient[1]) : '';
|
4018 |
+
if(isset($send_mail_user[$to])) continue;
|
4019 |
+
|
4020 |
+
$message = $mail_content;
|
4021 |
+
$message = str_replace('%%name%%', (isset($render_recipient[0]) ? trim($render_recipient[0]) : ''), $message);
|
4022 |
+
|
4023 |
+
$mail_arg = array(
|
4024 |
+
'to' => $to,
|
4025 |
+
'subject' => $mail_subject,
|
4026 |
+
'message' => $message,
|
4027 |
+
'headers' => $headers,
|
4028 |
+
'attachments' => array(),
|
4029 |
+
);
|
4030 |
+
|
4031 |
+
$mail_arg = apply_filters('mec_before_send_mass_email', $mail_arg, 'mass_email');
|
4032 |
+
|
4033 |
+
// Send the mail
|
4034 |
+
wp_mail($mail_arg['to'], html_entity_decode(stripslashes($mail_arg['subject']), ENT_HTML5), wpautop(stripslashes($mail_arg['message'])), $mail_arg['headers'], $mail_arg['attachments']);
|
4035 |
+
|
4036 |
+
$send_mail_user[$mail_arg['to']] = '';
|
4037 |
+
}
|
4038 |
+
|
4039 |
+
// Remove the HTML Email filter
|
4040 |
+
remove_filter('wp_mail_content_type', array($this->main, 'html_email_type'));
|
4041 |
+
|
4042 |
+
wp_die(true);
|
4043 |
+
}
|
4044 |
}
|
app/features/fes.php
CHANGED
@@ -231,7 +231,7 @@ class MEC_feature_fes extends MEC_base
|
|
231 |
$type = isset($reg_field['type']) ? $reg_field['type'] : '';
|
232 |
$label = isset($reg_field['label']) ? __($reg_field['label'], 'modern-events-calendar-lite') : '';
|
233 |
|
234 |
-
if(trim($label) == '') continue;
|
235 |
if($type == 'agreement') $label = sprintf($label, get_the_title($reg_field['page']));
|
236 |
|
237 |
$columns[] = $label;
|
@@ -291,7 +291,7 @@ class MEC_feature_fes extends MEC_base
|
|
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 |
{
|
@@ -309,8 +309,9 @@ class MEC_feature_fes extends MEC_base
|
|
309 |
// Placeholder Keys
|
310 |
if(!is_numeric($field_id)) continue;
|
311 |
|
|
|
312 |
$label = isset($reg_field['label']) ? __($reg_field['label'], 'modern-events-calendar-lite') : '';
|
313 |
-
if(trim($label) == '') continue;
|
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 |
}
|
@@ -978,6 +979,8 @@ class MEC_feature_fes extends MEC_base
|
|
978 |
update_post_meta($post_id, 'mec_op', $op);
|
979 |
update_user_meta(get_post_field('post_author', $post_id), 'mec_op', $op);
|
980 |
|
|
|
|
|
981 |
if($booking_date_update)
|
982 |
{
|
983 |
$render_date = $past_start_date . ':' . $past_end_date;
|
@@ -1031,6 +1034,9 @@ class MEC_feature_fes extends MEC_base
|
|
1031 |
}
|
1032 |
}
|
1033 |
|
|
|
|
|
|
|
1034 |
$message = '';
|
1035 |
if($status == 'pending') $message = __('The event submitted. It will publish as soon as possible.', 'modern-events-calendar-lite');
|
1036 |
elseif($status == 'publish') $message = __('The event published.', 'modern-events-calendar-lite');
|
231 |
$type = isset($reg_field['type']) ? $reg_field['type'] : '';
|
232 |
$label = isset($reg_field['label']) ? __($reg_field['label'], 'modern-events-calendar-lite') : '';
|
233 |
|
234 |
+
if(trim($label) == '' or $type == 'name' or $type == 'mec_email') continue;
|
235 |
if($type == 'agreement') $label = sprintf($label, get_the_title($reg_field['page']));
|
236 |
|
237 |
$columns[] = $label;
|
291 |
{
|
292 |
continue;
|
293 |
}
|
294 |
+
if(isset($get_variations['tickets']) and is_array($get_variations['tickets']) and isset($get_variations['tickets'][$counter]) and isset($get_variations['tickets'][$counter]['variations']))
|
295 |
{
|
296 |
for($i = 1; $i <= count($get_variations['tickets'][$counter]['variations']); $i++)
|
297 |
{
|
309 |
// Placeholder Keys
|
310 |
if(!is_numeric($field_id)) continue;
|
311 |
|
312 |
+
$type = isset($reg_field['type']) ? $reg_field['type'] : '';
|
313 |
$label = isset($reg_field['label']) ? __($reg_field['label'], 'modern-events-calendar-lite') : '';
|
314 |
+
if(trim($label) == '' or $type == 'name' or $type == 'mec_email') continue;
|
315 |
|
316 |
$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]) : '---')) : '';
|
317 |
}
|
979 |
update_post_meta($post_id, 'mec_op', $op);
|
980 |
update_user_meta(get_post_field('post_author', $post_id), 'mec_op', $op);
|
981 |
|
982 |
+
do_action('save_fes_meta_action' , $post_id , $mec);
|
983 |
+
|
984 |
if($booking_date_update)
|
985 |
{
|
986 |
$render_date = $past_start_date . ':' . $past_end_date;
|
1034 |
}
|
1035 |
}
|
1036 |
|
1037 |
+
// For Event Notification Badge.
|
1038 |
+
update_post_meta($post_id, 'mec_event_date_submit', date('YmdHis', current_time('timestamp', 0)));
|
1039 |
+
|
1040 |
$message = '';
|
1041 |
if($status == 'pending') $message = __('The event submitted. It will publish as soon as possible.', 'modern-events-calendar-lite');
|
1042 |
elseif($status == 'publish') $message = __('The event published.', 'modern-events-calendar-lite');
|
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/ix.php
CHANGED
@@ -3777,7 +3777,7 @@ class MEC_feature_ix extends MEC_base
|
|
3777 |
$post_ids = array();
|
3778 |
foreach($f_events as $f_event_id)
|
3779 |
{
|
3780 |
-
$events_result = $this->main->get_web_page('https://graph.facebook.com/
|
3781 |
$event = json_decode($events_result, true);
|
3782 |
|
3783 |
// An error Occurred
|
@@ -3830,6 +3830,14 @@ class MEC_feature_ix extends MEC_base
|
|
3830 |
|
3831 |
// Event Time Options
|
3832 |
$allday = 0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3833 |
|
3834 |
$args = array
|
3835 |
(
|
@@ -3880,7 +3888,9 @@ class MEC_feature_ix extends MEC_base
|
|
3880 |
'mec_source'=>'facebook-calendar',
|
3881 |
'mec_facebook_page_id'=>$fb_page_id,
|
3882 |
'mec_facebook_event_id'=>$f_event_id,
|
3883 |
-
'mec_allday'=>$allday
|
|
|
|
|
3884 |
)
|
3885 |
);
|
3886 |
|
@@ -3917,6 +3927,7 @@ class MEC_feature_ix extends MEC_base
|
|
3917 |
{
|
3918 |
$this->fb_access_token = isset($this->ix['facebook_app_token']) ? $this->ix['facebook_app_token'] : NULL;
|
3919 |
$fb_page_result = $this->main->get_web_page('https://graph.facebook.com/v3.2/?access_token='.$this->fb_access_token.'&id='.$link);
|
|
|
3920 |
return json_decode($fb_page_result, true);
|
3921 |
}
|
3922 |
}
|
3777 |
$post_ids = array();
|
3778 |
foreach($f_events as $f_event_id)
|
3779 |
{
|
3780 |
+
$events_result = $this->main->get_web_page('https://graph.facebook.com/v5.0/'.$f_event_id.'?access_token='.$this->fb_access_token);
|
3781 |
$event = json_decode($events_result, true);
|
3782 |
|
3783 |
// An error Occurred
|
3830 |
|
3831 |
// Event Time Options
|
3832 |
$allday = 0;
|
3833 |
+
|
3834 |
+
// Import Facebook Link as Event Link
|
3835 |
+
$read_more = '';
|
3836 |
+
if(isset($this->ix['import_link_event']) and $this->ix['import_link_event']) $read_more = 'https://www.facebook.com/events/'.$f_event_id.'/';
|
3837 |
+
|
3838 |
+
// Import Facebook Link as More Info
|
3839 |
+
$more_info = '';
|
3840 |
+
if(isset($this->ix['import_link_more_info']) and $this->ix['import_link_more_info']) $more_info = 'https://www.facebook.com/events/'.$f_event_id.'/';
|
3841 |
|
3842 |
$args = array
|
3843 |
(
|
3888 |
'mec_source'=>'facebook-calendar',
|
3889 |
'mec_facebook_page_id'=>$fb_page_id,
|
3890 |
'mec_facebook_event_id'=>$f_event_id,
|
3891 |
+
'mec_allday'=>$allday,
|
3892 |
+
'mec_read_more'=>$read_more,
|
3893 |
+
'mec_more_info'=>$more_info,
|
3894 |
)
|
3895 |
);
|
3896 |
|
3927 |
{
|
3928 |
$this->fb_access_token = isset($this->ix['facebook_app_token']) ? $this->ix['facebook_app_token'] : NULL;
|
3929 |
$fb_page_result = $this->main->get_web_page('https://graph.facebook.com/v3.2/?access_token='.$this->fb_access_token.'&id='.$link);
|
3930 |
+
|
3931 |
return json_decode($fb_page_result, true);
|
3932 |
}
|
3933 |
}
|
app/features/ix/import_f_calendar.php
CHANGED
@@ -76,6 +76,18 @@ $ix_options = $this->main->get_ix_options();
|
|
76 |
<?php _e('Import Locations', 'modern-events-calendar-lite'); ?>
|
77 |
</label>
|
78 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
79 |
<input type="hidden" name="mec-ix-action" value="facebook-calendar-import-do" />
|
80 |
<input type="hidden" name="ix[facebook_import_page_link]" value="<?php echo (isset($this->ix['facebook_import_page_link']) ? $this->ix['facebook_import_page_link'] : ''); ?>" />
|
81 |
<input type="hidden" name="ix[facebook_app_token]" value="<?php echo (isset($this->ix['facebook_app_token']) ? $this->ix['facebook_app_token'] : ''); ?>" />
|
76 |
<?php _e('Import Locations', 'modern-events-calendar-lite'); ?>
|
77 |
</label>
|
78 |
</div>
|
79 |
+
<div class="mec-form-row">
|
80 |
+
<label>
|
81 |
+
<input type="checkbox" name="ix[import_link_event]" value="1" />
|
82 |
+
<?php _e('Import Facebook Link as Event Link', 'modern-events-calendar-lite'); ?>
|
83 |
+
</label>
|
84 |
+
</div>
|
85 |
+
<div class="mec-form-row">
|
86 |
+
<label>
|
87 |
+
<input type="checkbox" name="ix[import_link_more_info]" value="1" />
|
88 |
+
<?php _e('Import Facebook Link as More Info Link', 'modern-events-calendar-lite'); ?>
|
89 |
+
</label>
|
90 |
+
</div>
|
91 |
<input type="hidden" name="mec-ix-action" value="facebook-calendar-import-do" />
|
92 |
<input type="hidden" name="ix[facebook_import_page_link]" value="<?php echo (isset($this->ix['facebook_import_page_link']) ? $this->ix['facebook_import_page_link'] : ''); ?>" />
|
93 |
<input type="hidden" name="ix[facebook_app_token]" value="<?php echo (isset($this->ix['facebook_app_token']) ? $this->ix['facebook_app_token'] : ''); ?>" />
|
app/features/mec.php
CHANGED
@@ -68,6 +68,7 @@ class MEC_feature_mec extends MEC_base
|
|
68 |
$this->factory->action('submenu_file', array($this, 'mec_sub_menu_highlight'));
|
69 |
|
70 |
$this->factory->action('current_screen', array($this, 'booking_badge'));
|
|
|
71 |
|
72 |
// Google recaptcha
|
73 |
$this->factory->filter('mec_grecaptcha_include', array($this, 'grecaptcha_include'));
|
@@ -880,4 +881,65 @@ class MEC_feature_mec extends MEC_base
|
|
880 |
}
|
881 |
}
|
882 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
883 |
}
|
68 |
$this->factory->action('submenu_file', array($this, 'mec_sub_menu_highlight'));
|
69 |
|
70 |
$this->factory->action('current_screen', array($this, 'booking_badge'));
|
71 |
+
$this->factory->action('current_screen', array($this, 'events_badge'));
|
72 |
|
73 |
// Google recaptcha
|
74 |
$this->factory->filter('mec_grecaptcha_include', array($this, 'grecaptcha_include'));
|
881 |
}
|
882 |
}
|
883 |
}
|
884 |
+
|
885 |
+
/**
|
886 |
+
* Show Events Badge.
|
887 |
+
* @param object $screen
|
888 |
+
* @return void
|
889 |
+
*/
|
890 |
+
public function events_badge($screen)
|
891 |
+
{
|
892 |
+
if(!current_user_can('administrator') and !current_user_can('editor')) return;
|
893 |
+
|
894 |
+
$user_id = get_current_user_id();
|
895 |
+
$user_last_view_date_events = get_user_meta($user_id, 'user_last_view_date_events', true);
|
896 |
+
$count = 0;
|
897 |
+
|
898 |
+
if(!trim($user_last_view_date_events))
|
899 |
+
{
|
900 |
+
update_user_meta($user_id, 'user_last_view_date_events', date('YmdHis', current_time('timestamp', 0)));
|
901 |
+
return;
|
902 |
+
}
|
903 |
+
|
904 |
+
$args = array(
|
905 |
+
'post_type' => $this->main->get_main_post_type(),
|
906 |
+
'post_status' => 'any',
|
907 |
+
'meta_query' => array(
|
908 |
+
array(
|
909 |
+
'key' => 'mec_event_date_submit',
|
910 |
+
'value' => $user_last_view_date_events,
|
911 |
+
'compare' => '>=',
|
912 |
+
),
|
913 |
+
),
|
914 |
+
);
|
915 |
+
|
916 |
+
$query = new WP_Query($args);
|
917 |
+
if($query->have_posts())
|
918 |
+
{
|
919 |
+
while($query->have_posts())
|
920 |
+
{
|
921 |
+
$query->the_post();
|
922 |
+
$count += 1;
|
923 |
+
}
|
924 |
+
}
|
925 |
+
|
926 |
+
if($count != 0)
|
927 |
+
{
|
928 |
+
if(isset($screen->id) and $screen->id == 'edit-mec-events')
|
929 |
+
{
|
930 |
+
update_user_meta($user_id, 'user_last_view_date_events', date('YmdHis', current_time('timestamp', 0)));
|
931 |
+
return;
|
932 |
+
}
|
933 |
+
|
934 |
+
// Append Events Badge To Event Menu.
|
935 |
+
global $menu;
|
936 |
+
|
937 |
+
$badge = ' <span class="update-plugins count-%%count%%"><span class="plugin-count">%%count%%</span></span>';
|
938 |
+
$menu_item = wp_list_filter($menu, array(2 =>'mec-intro'));
|
939 |
+
if(is_array($menu_item) and count($menu_item))
|
940 |
+
{
|
941 |
+
$menu[key($menu_item)][0] .= str_replace('%%count%%', esc_attr($count), $badge);
|
942 |
+
}
|
943 |
+
}
|
944 |
+
}
|
945 |
}
|
app/features/mec/meta_boxes/display_options.php
CHANGED
@@ -1381,6 +1381,7 @@ $events = $this->main->get_events();
|
|
1381 |
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>');
|
1382 |
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>');
|
1383 |
jQuery('.mec-custom-nice-select li[data-value="tile"]').prepend('<div class="wn-img-sh"><img src="https://webnus.net/modern-events-calendar/wp-content/skins/tile.svg" /></div>');
|
|
|
1384 |
|
1385 |
/** List View Skins */
|
1386 |
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>');
|
1381 |
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>');
|
1382 |
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>');
|
1383 |
jQuery('.mec-custom-nice-select li[data-value="tile"]').prepend('<div class="wn-img-sh"><img src="https://webnus.net/modern-events-calendar/wp-content/skins/tile.svg" /></div>');
|
1384 |
+
jQuery('.mec-custom-nice-select li[data-value="custom"]').prepend('<div class="wn-img-sh"><img src="https://webnus.net/modern-events-calendar/wp-content/skins/shortcode-designer.svg" /></div>');
|
1385 |
|
1386 |
/** List View Skins */
|
1387 |
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/modules.php
CHANGED
@@ -274,8 +274,13 @@ if($this->getPRO())
|
|
274 |
<li id="mec_sn_<?php echo esc_attr($social['id']); ?>" data-id="<?php echo esc_attr($social['id']); ?>" class="mec-form-row mec-switcher <?php echo ((isset($settings['sn'][$social['id']]) and $settings['sn'][$social['id']]) ? 'mec-enabled' : 'mec-disabled'); ?>">
|
275 |
<label class="mec-col-3"><?php echo esc_html($social['name']); ?></label>
|
276 |
<div class="mec-col-2">
|
|
|
|
|
|
|
|
|
277 |
<input class="mec-status" type="hidden" name="mec[settings][sn][<?php echo esc_attr($social['id']); ?>]" value="<?php echo (isset($settings['sn'][$social['id']]) ? $settings['sn'][$social['id']] : '1'); ?>" />
|
278 |
<label for="mec[settings][sn][<?php echo esc_attr($social['id']); ?>]"></label>
|
|
|
279 |
</div>
|
280 |
</li>
|
281 |
<?php endforeach; ?>
|
274 |
<li id="mec_sn_<?php echo esc_attr($social['id']); ?>" data-id="<?php echo esc_attr($social['id']); ?>" class="mec-form-row mec-switcher <?php echo ((isset($settings['sn'][$social['id']]) and $settings['sn'][$social['id']]) ? 'mec-enabled' : 'mec-disabled'); ?>">
|
275 |
<label class="mec-col-3"><?php echo esc_html($social['name']); ?></label>
|
276 |
<div class="mec-col-2">
|
277 |
+
<?php if ($social['id'] == 'vk' || $social['id'] == 'tumblr' || $social['id'] == 'pinterest' || $social['id'] == 'flipboard' || $social['id'] == 'pocket' || $social['id'] == 'reddit' || $social['id'] == 'whatsapp' || $social['id'] == 'telegram') : ?>
|
278 |
+
<input class="mec-status" type="hidden" name="mec[settings][sn][<?php echo esc_attr($social['id']); ?>]" value="<?php echo (isset($settings['sn'][$social['id']]) ? $settings['sn'][$social['id']] : '0'); ?>" />
|
279 |
+
<label for="mec[settings][sn][<?php echo esc_attr($social['id']); ?>]"></label>
|
280 |
+
<?php else : ?>
|
281 |
<input class="mec-status" type="hidden" name="mec[settings][sn][<?php echo esc_attr($social['id']); ?>]" value="<?php echo (isset($settings['sn'][$social['id']]) ? $settings['sn'][$social['id']] : '1'); ?>" />
|
282 |
<label for="mec[settings][sn][<?php echo esc_attr($social['id']); ?>]"></label>
|
283 |
+
<?php endif; ?>
|
284 |
</div>
|
285 |
</li>
|
286 |
<?php endforeach; ?>
|
app/libraries/book.php
CHANGED
@@ -377,10 +377,16 @@ class MEC_book extends MEC_base
|
|
377 |
* @return array
|
378 |
*/
|
379 |
public function get_tickets_availability($event_id, $date, $mode = 'availability')
|
380 |
-
{
|
381 |
$availability = array();
|
382 |
$tickets = get_post_meta($event_id, 'mec_tickets', true);
|
383 |
|
|
|
|
|
|
|
|
|
|
|
|
|
384 |
// No Ticket Found!
|
385 |
if(!is_array($tickets) or (is_array($tickets) and !count($tickets)))
|
386 |
{
|
@@ -452,6 +458,20 @@ class MEC_book extends MEC_base
|
|
452 |
// Restore original Post Data
|
453 |
wp_reset_postdata();
|
454 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
455 |
if((isset($ticket['unlimited']) and $ticket['unlimited'] == 1) or $limit == -1)
|
456 |
{
|
457 |
$availability[$ticket_id] = ($total_bookings_limit > 0) ? $total_bookings_limit : -1;
|
377 |
* @return array
|
378 |
*/
|
379 |
public function get_tickets_availability($event_id, $date, $mode = 'availability')
|
380 |
+
{
|
381 |
$availability = array();
|
382 |
$tickets = get_post_meta($event_id, 'mec_tickets', true);
|
383 |
|
384 |
+
// Ticket Selling Stop
|
385 |
+
$start_time_hour = sprintf('%02d', get_post_meta($event_id, 'mec_start_time_hour', true));
|
386 |
+
$start_time_minute = sprintf('%02d', get_post_meta($event_id, 'mec_start_time_minutes', true));
|
387 |
+
$start_time_ampm = get_post_meta($event_id, 'mec_start_time_ampm', true);
|
388 |
+
$event_date = "{$date} {$start_time_hour}:{$start_time_minute}{$start_time_ampm}";
|
389 |
+
|
390 |
// No Ticket Found!
|
391 |
if(!is_array($tickets) or (is_array($tickets) and !count($tickets)))
|
392 |
{
|
458 |
// Restore original Post Data
|
459 |
wp_reset_postdata();
|
460 |
|
461 |
+
// Ticket Selling Stop
|
462 |
+
$stop_selling_value = isset($ticket['stop_selling_value']) ? trim($ticket['stop_selling_value']) : 0;
|
463 |
+
$stop_selling_type = isset($ticket['stop_selling_type']) ? trim($ticket['stop_selling_type']) : 'day';
|
464 |
+
|
465 |
+
if($stop_selling_value > 0 and $this->main->check_date_time_validation('Y-m-d h:ia', strtolower($event_date)))
|
466 |
+
{
|
467 |
+
if(strtotime("-{$stop_selling_value}{$stop_selling_type}", strtotime($event_date)) <= current_time('timestamp', 0))
|
468 |
+
{
|
469 |
+
$availability[$ticket_id] = 0;
|
470 |
+
$availability['stop_selling_'.$ticket_id] = true;
|
471 |
+
continue;
|
472 |
+
}
|
473 |
+
}
|
474 |
+
|
475 |
if((isset($ticket['unlimited']) and $ticket['unlimited'] == 1) or $limit == -1)
|
476 |
{
|
477 |
$availability[$ticket_id] = ($total_bookings_limit > 0) ? $total_bookings_limit : -1;
|
app/libraries/main.php
CHANGED
@@ -876,8 +876,8 @@ class MEC_main extends MEC_base
|
|
876 |
<ol>
|
877 |
<li>'.__('<strong>WooCommerce Integration:</strong> You can now purchase ticket (as products) and Woo products at the same time.' , 'modern-events-calendar-lite').'</li>
|
878 |
<li>'.__('<strong>Event API:</strong> display your events (shortcodes/single event) on other websites without MEC. Use JSON output features to make your Apps compatible with MEC.' , 'modern-events-calendar-lite').'</li>
|
879 |
-
<li>'.__('<strong>
|
880 |
-
<li>'.__('<strong>
|
881 |
</ol>
|
882 |
<a href="https://webnus.net/modern-events-calendar/addons/?ref=17" target="_blank">'.esc_html('find out more', 'modern-events-calendar-lite').'</a>
|
883 |
</div>
|
@@ -1473,6 +1473,13 @@ class MEC_main extends MEC_base
|
|
1473 |
'twitter'=>array('id'=>'twitter', 'name'=>__('Twitter', 'modern-events-calendar-lite'), 'function'=>array($this, 'sn_twitter')),
|
1474 |
'linkedin'=>array('id'=>'linkedin', 'name'=>__('Linkedin', 'modern-events-calendar-lite'), 'function'=>array($this, 'sn_linkedin')),
|
1475 |
'vk'=>array('id'=>'vk', 'name'=>__('VK', 'modern-events-calendar-lite'), 'function'=>array($this, 'sn_vk')),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1476 |
'email'=>array('id'=>'email', 'name'=>__('Email', 'modern-events-calendar-lite'), 'function'=>array($this, 'sn_email')),
|
1477 |
);
|
1478 |
|
@@ -1559,7 +1566,123 @@ class MEC_main extends MEC_base
|
|
1559 |
|
1560 |
return '<li class="mec-event-social-icon"><a class="vk" href=" http://vk.com/share.php?url='.rawurlencode($url).'" title="'.__('VK', 'modern-events-calendar-lite').'" target="_blank"><i class="mec-fa-vk"></i></a></li>';
|
1561 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1562 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1563 |
/**
|
1564 |
* Get available skins for archive page
|
1565 |
* @author Webnus <info@webnus.biz>
|
@@ -2135,6 +2258,24 @@ class MEC_main extends MEC_base
|
|
2135 |
$pdf->Ln();
|
2136 |
}
|
2137 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2138 |
$image = $this->module('qrcode.invoice', array('event'=>$event));
|
2139 |
if(trim($image))
|
2140 |
{
|
@@ -2159,16 +2300,21 @@ class MEC_main extends MEC_base
|
|
2159 |
if(isset($_GET['method']) and sanitize_text_field($_GET['method']) == 'ical')
|
2160 |
{
|
2161 |
$id = sanitize_text_field($_GET['id']);
|
2162 |
-
$
|
2163 |
|
2164 |
-
$
|
2165 |
-
|
2166 |
-
|
2167 |
-
|
2168 |
-
|
2169 |
-
|
2170 |
-
|
2171 |
-
|
|
|
|
|
|
|
|
|
|
|
2172 |
}
|
2173 |
}
|
2174 |
|
@@ -2297,7 +2443,6 @@ class MEC_main extends MEC_base
|
|
2297 |
return $ical;
|
2298 |
}
|
2299 |
|
2300 |
-
|
2301 |
/**
|
2302 |
* Returns iCal export for email
|
2303 |
* @author Webnus <info@webnus.biz>
|
876 |
<ol>
|
877 |
<li>'.__('<strong>WooCommerce Integration:</strong> You can now purchase ticket (as products) and Woo products at the same time.' , 'modern-events-calendar-lite').'</li>
|
878 |
<li>'.__('<strong>Event API:</strong> display your events (shortcodes/single event) on other websites without MEC. Use JSON output features to make your Apps compatible with MEC.' , 'modern-events-calendar-lite').'</li>
|
879 |
+
<li>'.__('<strong>Multisite Event Sync:</strong> Sync events between your subsites and main websites. Changes in the main one will be inherited by the subsites. you can set these up in the admin panel.' , 'modern-events-calendar-lite').'</li>
|
880 |
+
<li>'.__('<strong>User Dashboard:</strong> Create exclusive pages for users. These pages can contain ticket purchase information, information about registered events. Users can now log in to purchase tickets.', 'modern-events-calendar-lite').'</li>
|
881 |
</ol>
|
882 |
<a href="https://webnus.net/modern-events-calendar/addons/?ref=17" target="_blank">'.esc_html('find out more', 'modern-events-calendar-lite').'</a>
|
883 |
</div>
|
1473 |
'twitter'=>array('id'=>'twitter', 'name'=>__('Twitter', 'modern-events-calendar-lite'), 'function'=>array($this, 'sn_twitter')),
|
1474 |
'linkedin'=>array('id'=>'linkedin', 'name'=>__('Linkedin', 'modern-events-calendar-lite'), 'function'=>array($this, 'sn_linkedin')),
|
1475 |
'vk'=>array('id'=>'vk', 'name'=>__('VK', 'modern-events-calendar-lite'), 'function'=>array($this, 'sn_vk')),
|
1476 |
+
'tumblr'=>array('id'=>'tumblr', 'name'=>__('Tumblr', 'modern-events-calendar-lite'), 'function'=>array($this, 'sn_tumblr')),
|
1477 |
+
'pinterest'=>array('id'=>'pinterest', 'name'=>__('Pinterest', 'modern-events-calendar-lite'), 'function'=>array($this, 'sn_pinterest')),
|
1478 |
+
'flipboard'=>array('id'=>'flipboard', 'name'=>__('Flipboard', 'modern-events-calendar-lite'), 'function'=>array($this, 'sn_flipboard')),
|
1479 |
+
'pocket'=>array('id'=>'pocket', 'name'=>__('GetPocket', 'modern-events-calendar-lite'), 'function'=>array($this, 'sn_pocket')),
|
1480 |
+
'reddit'=>array('id'=>'reddit', 'name'=>__('Reddit', 'modern-events-calendar-lite'), 'function'=>array($this, 'sn_reddit')),
|
1481 |
+
'whatsapp'=>array('id'=>'whatsapp', 'name'=>__('WhatsApp', 'modern-events-calendar-lite'), 'function'=>array($this, 'sn_whatsapp')),
|
1482 |
+
'telegram'=>array('id'=>'telegram', 'name'=>__('Telegram', 'modern-events-calendar-lite'), 'function'=>array($this, 'sn_telegram')),
|
1483 |
'email'=>array('id'=>'email', 'name'=>__('Email', 'modern-events-calendar-lite'), 'function'=>array($this, 'sn_email')),
|
1484 |
);
|
1485 |
|
1566 |
|
1567 |
return '<li class="mec-event-social-icon"><a class="vk" href=" http://vk.com/share.php?url='.rawurlencode($url).'" title="'.__('VK', 'modern-events-calendar-lite').'" target="_blank"><i class="mec-fa-vk"></i></a></li>';
|
1568 |
}
|
1569 |
+
|
1570 |
+
|
1571 |
+
/**
|
1572 |
+
* Do tumblr link for social networks
|
1573 |
+
* @author Webnus <info@webnus.biz>
|
1574 |
+
* @param string $url
|
1575 |
+
* @param object $event
|
1576 |
+
* @return string
|
1577 |
+
*/
|
1578 |
+
public function sn_tumblr($url, $event)
|
1579 |
+
{
|
1580 |
+
$occurrence = (isset($_GET['occurrence']) ? sanitize_text_field($_GET['occurrence']) : '');
|
1581 |
+
if(trim($occurrence) != '') $url = $this->add_qs_var('occurrence', $occurrence, $url);
|
1582 |
+
return '<li class="mec-event-social-icon"><a class="tumblr" href="https://www.tumblr.com/widgets/share/tool?canonicalUrl='.rawurlencode($url).'&title'.wp_specialchars_decode($event->data->title).'&caption='.wp_specialchars_decode($event->data->title).'" title="'.__('Share on Tumblr', 'modern-events-calendar-lite').'"><i class="mec-fa-tumblr"></i></a></li>';
|
1583 |
+
|
1584 |
+
}
|
1585 |
+
|
1586 |
+
/**
|
1587 |
+
* Do pinterest link for social networks
|
1588 |
+
* @author Webnus <info@webnus.biz>
|
1589 |
+
* @param string $url
|
1590 |
+
* @param object $event
|
1591 |
+
* @return string
|
1592 |
+
*/
|
1593 |
+
public function sn_pinterest($url, $event)
|
1594 |
+
{
|
1595 |
+
$occurrence = (isset($_GET['occurrence']) ? sanitize_text_field($_GET['occurrence']) : '');
|
1596 |
+
if(trim($occurrence) != '') $url = $this->add_qs_var('occurrence', $occurrence, $url);
|
1597 |
+
|
1598 |
+
return '<li class="mec-event-social-icon"><a class="pinterest" href="http://pinterest.com/pin/create/button/?url='.rawurlencode($url).'" title="'.__('Share on Pinterest', 'modern-events-calendar-lite').'"><i class="mec-fa-pinterest"></i></a></li>';
|
1599 |
+
|
1600 |
+
}
|
1601 |
|
1602 |
+
/**
|
1603 |
+
* Do flipboard link for social networks
|
1604 |
+
* @author Webnus <info@webnus.biz>
|
1605 |
+
* @param string $url
|
1606 |
+
* @param object $event
|
1607 |
+
* @return string
|
1608 |
+
*/
|
1609 |
+
public function sn_flipboard($url, $event)
|
1610 |
+
{
|
1611 |
+
$occurrence = (isset($_GET['occurrence']) ? sanitize_text_field($_GET['occurrence']) : '');
|
1612 |
+
if(trim($occurrence) != '') $url = $this->add_qs_var('occurrence', $occurrence, $url);
|
1613 |
+
|
1614 |
+
return '<li class="mec-event-social-icon"><a class="flipboard" href="https://share.flipboard.com/bookmarklet/popout?v=2&title'.wp_specialchars_decode($event->data->title).'=&url='.rawurlencode($url).'" title="'.__('Share on Flipboard', 'modern-events-calendar-lite').'">
|
1615 |
+
<svg aria-hidden="true" focusable="false" data-prefix="fab" data-icon="flipboard" class="svg-inline--fa fa-flipboard fa-w-14" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M0 32v448h448V32H0zm358.4 179.2h-89.6v89.6h-89.6v89.6H89.6V121.6h268.8v89.6z"></path></svg>
|
1616 |
+
</a></li>';
|
1617 |
+
|
1618 |
+
}
|
1619 |
+
|
1620 |
+
/**
|
1621 |
+
* Do pocket link for social networks
|
1622 |
+
* @author Webnus <info@webnus.biz>
|
1623 |
+
* @param string $url
|
1624 |
+
* @param object $event
|
1625 |
+
* @return string
|
1626 |
+
*/
|
1627 |
+
public function sn_pocket($url, $event)
|
1628 |
+
{
|
1629 |
+
$occurrence = (isset($_GET['occurrence']) ? sanitize_text_field($_GET['occurrence']) : '');
|
1630 |
+
if(trim($occurrence) != '') $url = $this->add_qs_var('occurrence', $occurrence, $url);
|
1631 |
+
|
1632 |
+
return '<li class="mec-event-social-icon"><a class="pocket" href="https://getpocket.com/edit?url='.rawurlencode($url).'" title="'.__('Share on GetPocket', 'modern-events-calendar-lite').'"><i class="mec-fa-get-pocket"></i></a></li>';
|
1633 |
+
|
1634 |
+
}
|
1635 |
+
|
1636 |
+
/**
|
1637 |
+
* Do reddit link for social networks
|
1638 |
+
* @author Webnus <info@webnus.biz>
|
1639 |
+
* @param string $url
|
1640 |
+
* @param object $event
|
1641 |
+
* @return string
|
1642 |
+
*/
|
1643 |
+
public function sn_reddit($url, $event)
|
1644 |
+
{
|
1645 |
+
$occurrence = (isset($_GET['occurrence']) ? sanitize_text_field($_GET['occurrence']) : '');
|
1646 |
+
if(trim($occurrence) != '') $url = $this->add_qs_var('occurrence', $occurrence, $url);
|
1647 |
+
|
1648 |
+
return '<li class="mec-event-social-icon"><a class="reddit" href="https://reddit.com/submit?url='.rawurlencode($url).'&title='.wp_specialchars_decode($event->data->title).'" title="'.__('Share on Reddit', 'modern-events-calendar-lite').'"><i class="mec-fa-reddit"></i></a></li>';
|
1649 |
+
|
1650 |
+
}
|
1651 |
+
|
1652 |
+
/**
|
1653 |
+
* Do telegram link for social networks
|
1654 |
+
* @author Webnus <info@webnus.biz>
|
1655 |
+
* @param string $url
|
1656 |
+
* @param object $event
|
1657 |
+
* @return string
|
1658 |
+
*/
|
1659 |
+
public function sn_telegram($url, $event)
|
1660 |
+
{
|
1661 |
+
$occurrence = (isset($_GET['occurrence']) ? sanitize_text_field($_GET['occurrence']) : '');
|
1662 |
+
if(trim($occurrence) != '') $url = $this->add_qs_var('occurrence', $occurrence, $url);
|
1663 |
+
|
1664 |
+
return '<li class="mec-event-social-icon"><a class="telegram" href="https://telegram.me/share/url?url='.rawurlencode($url).'&text='.wp_specialchars_decode($event->data->title).'" title="'.__('Share on Telegram', 'modern-events-calendar-lite').'">
|
1665 |
+
<svg aria-hidden="true" focusable="false" data-prefix="fab" data-icon="telegram" class="svg-inline--fa fa-telegram fa-w-16" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><path fill="currentColor" d="M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm121.8 169.9l-40.7 191.8c-3 13.6-11.1 16.9-22.4 10.5l-62-45.7-29.9 28.8c-3.3 3.3-6.1 6.1-12.5 6.1l4.4-63.1 114.9-103.8c5-4.4-1.1-6.9-7.7-2.5l-142 89.4-61.2-19.1c-13.3-4.2-13.6-13.3 2.8-19.7l239.1-92.2c11.1-4 20.8 2.7 17.2 19.5z"></path></svg>
|
1666 |
+
</a></li>';
|
1667 |
+
|
1668 |
+
}
|
1669 |
+
|
1670 |
+
/**
|
1671 |
+
* Do whatsapp link for social networks
|
1672 |
+
* @author Webnus <info@webnus.biz>
|
1673 |
+
* @param string $url
|
1674 |
+
* @param object $event
|
1675 |
+
* @return string
|
1676 |
+
*/
|
1677 |
+
public function sn_whatsapp($url, $event)
|
1678 |
+
{
|
1679 |
+
$occurrence = (isset($_GET['occurrence']) ? sanitize_text_field($_GET['occurrence']) : '');
|
1680 |
+
if(trim($occurrence) != '') $url = $this->add_qs_var('occurrence', $occurrence, $url);
|
1681 |
+
|
1682 |
+
return '<li class="mec-event-social-icon"><a class="whatsapp" href="https://wa.me/?text='.rawurlencode($url).'" title="'.__('Share on WhatsApp', 'modern-events-calendar-lite').'"><i class="mec-fa-whatsapp"></i></a></li>';
|
1683 |
+
|
1684 |
+
}
|
1685 |
+
|
1686 |
/**
|
1687 |
* Get available skins for archive page
|
1688 |
* @author Webnus <info@webnus.biz>
|
2258 |
$pdf->Ln();
|
2259 |
}
|
2260 |
|
2261 |
+
// Geteway
|
2262 |
+
$pdf->SetFont('DejaVuBold', '', 16);
|
2263 |
+
$pdf->Write(20, __('Payment', 'modern-events-calendar-lite'));
|
2264 |
+
$pdf->Ln();
|
2265 |
+
|
2266 |
+
$pdf->SetFont('DejaVu', '', 12);
|
2267 |
+
$pdf->Write(6, __('Gateway', 'modern-events-calendar-lite').': ');
|
2268 |
+
$pdf->Write(6, get_post_meta($book_id, 'mec_gateway_label', true));
|
2269 |
+
$pdf->Ln();
|
2270 |
+
|
2271 |
+
$date_format = get_option('date_format');
|
2272 |
+
$time_format = get_option('time_format');
|
2273 |
+
|
2274 |
+
$pdf->SetFont('DejaVu', '', 12);
|
2275 |
+
$pdf->Write(6, __('Payment Time', 'modern-events-calendar-lite').': ');
|
2276 |
+
$pdf->Write(6, date($date_format.' '.$time_format, strtotime(get_post_meta($book_id, 'mec_booking_time', true))));
|
2277 |
+
$pdf->Ln();
|
2278 |
+
|
2279 |
$image = $this->module('qrcode.invoice', array('event'=>$event));
|
2280 |
if(trim($image))
|
2281 |
{
|
2300 |
if(isset($_GET['method']) and sanitize_text_field($_GET['method']) == 'ical')
|
2301 |
{
|
2302 |
$id = sanitize_text_field($_GET['id']);
|
2303 |
+
$post = get_post($id);
|
2304 |
|
2305 |
+
if($post->post_type == $this->get_main_post_type() and $post->post_status == 'publish')
|
2306 |
+
{
|
2307 |
+
$occurrence = isset($_GET['occurrence']) ? sanitize_text_field($_GET['occurrence']) : '';
|
2308 |
+
|
2309 |
+
$events = $this->ical_single($id, $occurrence);
|
2310 |
+
$ical_calendar = $this->ical_calendar($events);
|
2311 |
+
|
2312 |
+
header('Content-type: application/force-download; charset=utf-8');
|
2313 |
+
header('Content-Disposition: attachment; filename="mec-event-'.$id.'.ics"');
|
2314 |
+
|
2315 |
+
echo $ical_calendar;
|
2316 |
+
exit;
|
2317 |
+
}
|
2318 |
}
|
2319 |
}
|
2320 |
|
2443 |
return $ical;
|
2444 |
}
|
2445 |
|
|
|
2446 |
/**
|
2447 |
* Returns iCal export for email
|
2448 |
* @author Webnus <info@webnus.biz>
|
app/libraries/notifications.php
CHANGED
@@ -58,7 +58,7 @@ class MEC_notifications extends MEC_base
|
|
58 |
if($price > 0 and isset($this->settings['booking_auto_verify_paid']) and $this->settings['booking_auto_verify_paid'] == 1) return false;
|
59 |
|
60 |
$subject = isset($this->notif_settings['email_verification']['subject']) ? $this->content(__($this->notif_settings['email_verification']['subject'], 'modern-events-calendar-lite'), $book_id) : __('Please verify your email.', 'modern-events-calendar-lite');
|
61 |
-
$headers = array();
|
62 |
|
63 |
$recipients_str = isset($this->notif_settings['email_verification']['recipients']) ? $this->notif_settings['email_verification']['recipients'] : '';
|
64 |
$recipients = trim($recipients_str) ? explode(',', $recipients_str) : array();
|
@@ -140,7 +140,7 @@ class MEC_notifications extends MEC_base
|
|
140 |
if(isset($this->notif_settings['booking_notification']['status']) and !$this->notif_settings['booking_notification']['status']) return false;
|
141 |
|
142 |
$subject = isset($this->notif_settings['booking_notification']['subject']) ? $this->content(__($this->notif_settings['booking_notification']['subject'], 'modern-events-calendar-lite'), $book_id) : __('Your booking is received.', 'modern-events-calendar-lite');
|
143 |
-
$headers = array();
|
144 |
|
145 |
$recipients_str = isset($this->notif_settings['booking_notification']['recipients']) ? $this->notif_settings['booking_notification']['recipients'] : '';
|
146 |
$recipients = trim($recipients_str) ? explode(',', $recipients_str) : array();
|
@@ -186,7 +186,21 @@ class MEC_notifications extends MEC_base
|
|
186 |
$message = str_replace('%%attendee_full_info%%', $attendees_full_info, $message);
|
187 |
$message = str_replace('%%attendees_full_info%%', $attendees_full_info, $message);
|
188 |
}
|
|
|
|
|
|
|
|
|
|
|
189 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
190 |
// Filter the email
|
191 |
$mail_arg = array(
|
192 |
'to' => $to,
|
@@ -233,7 +247,7 @@ class MEC_notifications extends MEC_base
|
|
233 |
if($price > 0 and isset($this->settings['booking_auto_confirm_paid']) and $this->settings['booking_auto_confirm_paid'] == 1) return false;
|
234 |
|
235 |
$subject = isset($this->notif_settings['booking_confirmation']['subject']) ? $this->content(__($this->notif_settings['booking_confirmation']['subject'], 'modern-events-calendar-lite'), $book_id) : __('Your booking is confirmed.', 'modern-events-calendar-lite');
|
236 |
-
$headers = array();
|
237 |
|
238 |
$recipients_str = isset($this->notif_settings['booking_confirmation']['recipients']) ? $this->notif_settings['booking_confirmation']['recipients'] : '';
|
239 |
$recipients = trim($recipients_str) ? explode(',', $recipients_str) : array();
|
@@ -263,7 +277,21 @@ class MEC_notifications extends MEC_base
|
|
263 |
if(!trim($to) or in_array($to, $done_emails) or !filter_var($to, FILTER_VALIDATE_EMAIL)) continue;
|
264 |
|
265 |
$message = isset($this->notif_settings['booking_confirmation']['content']) ? $this->content($this->notif_settings['booking_confirmation']['content'], $book_id, $attendee) : '';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
266 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
267 |
// Filter the email
|
268 |
$mail_arg = array(
|
269 |
'to' => $to,
|
@@ -347,7 +375,7 @@ class MEC_notifications extends MEC_base
|
|
347 |
// No Recipient
|
348 |
if(!count($tos)) return;
|
349 |
|
350 |
-
$headers = array();
|
351 |
|
352 |
$recipients_str = isset($this->notif_settings['cancellation_notification']['recipients']) ? $this->notif_settings['cancellation_notification']['recipients'] : '';
|
353 |
$recipients = trim($recipients_str) ? explode(',', $recipients_str) : array();
|
@@ -372,7 +400,7 @@ class MEC_notifications extends MEC_base
|
|
372 |
$mailto = (is_array($to) and isset($to['email'])) ? $to['email'] : $to;
|
373 |
|
374 |
if(!trim($mailto) or !filter_var($mailto, FILTER_VALIDATE_EMAIL)) continue;
|
375 |
-
if($i > 1) $headers = array();
|
376 |
|
377 |
$message = isset($this->notif_settings['cancellation_notification']['content']) ? $this->content($this->notif_settings['cancellation_notification']['content'], $book_id, (is_array($to) ? $to : NULL)) : '';
|
378 |
|
@@ -387,7 +415,21 @@ class MEC_notifications extends MEC_base
|
|
387 |
$message = str_replace('%%attendee_full_info%%', $attendees_full_info, $message);
|
388 |
$message = str_replace('%%attendees_full_info%%', $attendees_full_info, $message);
|
389 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
390 |
|
|
|
|
|
|
|
|
|
391 |
// Filter the email
|
392 |
$mail_arg = array(
|
393 |
'to' => $mailto,
|
@@ -422,7 +464,7 @@ class MEC_notifications extends MEC_base
|
|
422 |
|
423 |
$to = get_bloginfo('admin_email');
|
424 |
$subject = isset($this->notif_settings['admin_notification']['subject']) ? $this->content(__($this->notif_settings['admin_notification']['subject'], 'modern-events-calendar-lite'), $book_id) : __('A new booking is received.', 'modern-events-calendar-lite');
|
425 |
-
$headers = array();
|
426 |
|
427 |
$recipients_str = isset($this->notif_settings['admin_notification']['recipients']) ? $this->notif_settings['admin_notification']['recipients'] : '';
|
428 |
$recipients = trim($recipients_str) ? explode(',', $recipients_str) : array();
|
@@ -458,7 +500,21 @@ class MEC_notifications extends MEC_base
|
|
458 |
|
459 |
// Set Email Type to HTML
|
460 |
add_filter('wp_mail_content_type', array($this->main, 'html_email_type'));
|
|
|
|
|
|
|
|
|
|
|
461 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
462 |
// Filter the email
|
463 |
$mail_arg = array(
|
464 |
'to' => $to,
|
@@ -490,7 +546,7 @@ class MEC_notifications extends MEC_base
|
|
490 |
if(!isset($booker->user_email)) return false;
|
491 |
|
492 |
$subject = isset($this->notif_settings['booking_reminder']['subject']) ? $this->content(__($this->notif_settings['booking_reminder']['subject'], 'modern-events-calendar-lite'), $book_id) : __('Booking Reminder', 'modern-events-calendar-lite');
|
493 |
-
$headers = array();
|
494 |
|
495 |
$recipients_str = isset($this->notif_settings['booking_reminder']['recipients']) ? $this->notif_settings['booking_reminder']['recipients'] : '';
|
496 |
$recipients = trim($recipients_str) ? explode(',', $recipients_str) : array();
|
@@ -520,6 +576,22 @@ class MEC_notifications extends MEC_base
|
|
520 |
|
521 |
if(!trim($to)) continue;
|
522 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
523 |
// Filter the email
|
524 |
$mail_arg = array(
|
525 |
'to' => $to,
|
@@ -572,7 +644,7 @@ class MEC_notifications extends MEC_base
|
|
572 |
|
573 |
$to = get_bloginfo('admin_email');
|
574 |
$subject = (isset($this->notif_settings['new_event']['subject']) and trim($this->notif_settings['new_event']['subject'])) ? __($this->notif_settings['new_event']['subject'], 'modern-events-calendar-lite') : __('A new event is added.', 'modern-events-calendar-lite');
|
575 |
-
$headers = array();
|
576 |
|
577 |
$recipients_str = isset($this->notif_settings['new_event']['recipients']) ? $this->notif_settings['new_event']['recipients'] : '';
|
578 |
$recipients = trim($recipients_str) ? explode(',', $recipients_str) : array();
|
@@ -644,7 +716,7 @@ class MEC_notifications extends MEC_base
|
|
644 |
|
645 |
$to = $guest_email;
|
646 |
$subject = (isset($this->notif_settings['user_event_publishing']['subject']) and trim($this->notif_settings['user_event_publishing']['subject'])) ? __($this->notif_settings['user_event_publishing']['subject'], 'modern-events-calendar-lite') : __('Your event is published.', 'modern-events-calendar-lite');
|
647 |
-
$headers = array();
|
648 |
|
649 |
$recipients_str = isset($this->notif_settings['user_event_publishing']['recipients']) ? $this->notif_settings['user_event_publishing']['recipients'] : '';
|
650 |
$recipients = trim($recipients_str) ? explode(',', $recipients_str) : array();
|
58 |
if($price > 0 and isset($this->settings['booking_auto_verify_paid']) and $this->settings['booking_auto_verify_paid'] == 1) return false;
|
59 |
|
60 |
$subject = isset($this->notif_settings['email_verification']['subject']) ? $this->content(__($this->notif_settings['email_verification']['subject'], 'modern-events-calendar-lite'), $book_id) : __('Please verify your email.', 'modern-events-calendar-lite');
|
61 |
+
$headers = array('Content-Type: text/html; charset=UTF-8');
|
62 |
|
63 |
$recipients_str = isset($this->notif_settings['email_verification']['recipients']) ? $this->notif_settings['email_verification']['recipients'] : '';
|
64 |
$recipients = trim($recipients_str) ? explode(',', $recipients_str) : array();
|
140 |
if(isset($this->notif_settings['booking_notification']['status']) and !$this->notif_settings['booking_notification']['status']) return false;
|
141 |
|
142 |
$subject = isset($this->notif_settings['booking_notification']['subject']) ? $this->content(__($this->notif_settings['booking_notification']['subject'], 'modern-events-calendar-lite'), $book_id) : __('Your booking is received.', 'modern-events-calendar-lite');
|
143 |
+
$headers = array('Content-Type: text/html; charset=UTF-8');
|
144 |
|
145 |
$recipients_str = isset($this->notif_settings['booking_notification']['recipients']) ? $this->notif_settings['booking_notification']['recipients'] : '';
|
146 |
$recipients = trim($recipients_str) ? explode(',', $recipients_str) : array();
|
186 |
$message = str_replace('%%attendee_full_info%%', $attendees_full_info, $message);
|
187 |
$message = str_replace('%%attendees_full_info%%', $attendees_full_info, $message);
|
188 |
}
|
189 |
+
$message = '
|
190 |
+
<table border="0" cellpadding="0" cellspacing="0" class="wn-body" style="background-color: #f6f6f6; width: 100%; font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Oxygen,Open Sans, sans-serif;border-collapse: separate; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 100%;">
|
191 |
+
<tr>
|
192 |
+
<td class="wn-container" style="display: block; margin: 0 auto !important; max-width: 680px; padding: 10px;font-family: sans-serif; font-size: 14px; vertical-align: top;">
|
193 |
+
<div class="wn-wrapper" style="box-sizing: border-box; padding: 38px 9% 50px; width: 100%; height: auto; background: #fff; background-size: contain; margin-bottom: 25px; margin-top: 30px; border-radius: 4px; box-shadow: 0 3px 55px -18px rgba(0,0,0,0.1);">
|
194 |
|
195 |
+
'.$message.'
|
196 |
+
|
197 |
+
</div>
|
198 |
+
|
199 |
+
|
200 |
+
</td>
|
201 |
+
</tr>
|
202 |
+
</table>
|
203 |
+
';
|
204 |
// Filter the email
|
205 |
$mail_arg = array(
|
206 |
'to' => $to,
|
247 |
if($price > 0 and isset($this->settings['booking_auto_confirm_paid']) and $this->settings['booking_auto_confirm_paid'] == 1) return false;
|
248 |
|
249 |
$subject = isset($this->notif_settings['booking_confirmation']['subject']) ? $this->content(__($this->notif_settings['booking_confirmation']['subject'], 'modern-events-calendar-lite'), $book_id) : __('Your booking is confirmed.', 'modern-events-calendar-lite');
|
250 |
+
$headers = array('Content-Type: text/html; charset=UTF-8');
|
251 |
|
252 |
$recipients_str = isset($this->notif_settings['booking_confirmation']['recipients']) ? $this->notif_settings['booking_confirmation']['recipients'] : '';
|
253 |
$recipients = trim($recipients_str) ? explode(',', $recipients_str) : array();
|
277 |
if(!trim($to) or in_array($to, $done_emails) or !filter_var($to, FILTER_VALIDATE_EMAIL)) continue;
|
278 |
|
279 |
$message = isset($this->notif_settings['booking_confirmation']['content']) ? $this->content($this->notif_settings['booking_confirmation']['content'], $book_id, $attendee) : '';
|
280 |
+
$message = '
|
281 |
+
<table border="0" cellpadding="0" cellspacing="0" class="wn-body" style="background-color: #f6f6f6; width: 100%; font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Oxygen,Open Sans, sans-serif;border-collapse: separate; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 100%;">
|
282 |
+
<tr>
|
283 |
+
<td class="wn-container" style="display: block; margin: 0 auto !important; max-width: 680px; padding: 10px;font-family: sans-serif; font-size: 14px; vertical-align: top;">
|
284 |
+
<div class="wn-wrapper" style="box-sizing: border-box; padding: 38px 9% 50px; width: 100%; height: auto; background: #fff; background-size: contain; margin-bottom: 25px; margin-top: 30px; border-radius: 4px; box-shadow: 0 3px 55px -18px rgba(0,0,0,0.1);">
|
285 |
+
|
286 |
+
'.$message.'
|
287 |
|
288 |
+
</div>
|
289 |
+
|
290 |
+
|
291 |
+
</td>
|
292 |
+
</tr>
|
293 |
+
</table>
|
294 |
+
';
|
295 |
// Filter the email
|
296 |
$mail_arg = array(
|
297 |
'to' => $to,
|
375 |
// No Recipient
|
376 |
if(!count($tos)) return;
|
377 |
|
378 |
+
$headers = array('Content-Type: text/html; charset=UTF-8');
|
379 |
|
380 |
$recipients_str = isset($this->notif_settings['cancellation_notification']['recipients']) ? $this->notif_settings['cancellation_notification']['recipients'] : '';
|
381 |
$recipients = trim($recipients_str) ? explode(',', $recipients_str) : array();
|
400 |
$mailto = (is_array($to) and isset($to['email'])) ? $to['email'] : $to;
|
401 |
|
402 |
if(!trim($mailto) or !filter_var($mailto, FILTER_VALIDATE_EMAIL)) continue;
|
403 |
+
if($i > 1) $headers = array('Content-Type: text/html; charset=UTF-8');
|
404 |
|
405 |
$message = isset($this->notif_settings['cancellation_notification']['content']) ? $this->content($this->notif_settings['cancellation_notification']['content'], $book_id, (is_array($to) ? $to : NULL)) : '';
|
406 |
|
415 |
$message = str_replace('%%attendee_full_info%%', $attendees_full_info, $message);
|
416 |
$message = str_replace('%%attendees_full_info%%', $attendees_full_info, $message);
|
417 |
}
|
418 |
+
$message = '
|
419 |
+
<table border="0" cellpadding="0" cellspacing="0" class="wn-body" style="background-color: #f6f6f6; width: 100%; font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Oxygen,Open Sans, sans-serif;border-collapse: separate; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 100%;">
|
420 |
+
<tr>
|
421 |
+
<td class="wn-container" style="display: block; margin: 0 auto !important; max-width: 680px; padding: 10px;font-family: sans-serif; font-size: 14px; vertical-align: top;">
|
422 |
+
<div class="wn-wrapper" style="box-sizing: border-box; padding: 38px 9% 50px; width: 100%; height: auto; background: #fff; background-size: contain; margin-bottom: 25px; margin-top: 30px; border-radius: 4px; box-shadow: 0 3px 55px -18px rgba(0,0,0,0.1);">
|
423 |
+
|
424 |
+
'.$message.'
|
425 |
+
|
426 |
+
</div>
|
427 |
+
|
428 |
|
429 |
+
</td>
|
430 |
+
</tr>
|
431 |
+
</table>
|
432 |
+
';
|
433 |
// Filter the email
|
434 |
$mail_arg = array(
|
435 |
'to' => $mailto,
|
464 |
|
465 |
$to = get_bloginfo('admin_email');
|
466 |
$subject = isset($this->notif_settings['admin_notification']['subject']) ? $this->content(__($this->notif_settings['admin_notification']['subject'], 'modern-events-calendar-lite'), $book_id) : __('A new booking is received.', 'modern-events-calendar-lite');
|
467 |
+
$headers = array('Content-Type: text/html; charset=UTF-8');
|
468 |
|
469 |
$recipients_str = isset($this->notif_settings['admin_notification']['recipients']) ? $this->notif_settings['admin_notification']['recipients'] : '';
|
470 |
$recipients = trim($recipients_str) ? explode(',', $recipients_str) : array();
|
500 |
|
501 |
// Set Email Type to HTML
|
502 |
add_filter('wp_mail_content_type', array($this->main, 'html_email_type'));
|
503 |
+
$message = '
|
504 |
+
<table border="0" cellpadding="0" cellspacing="0" class="wn-body" style="background-color: #f6f6f6; width: 100%; font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Oxygen,Open Sans, sans-serif;border-collapse: separate; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 100%;">
|
505 |
+
<tr>
|
506 |
+
<td class="wn-container" style="display: block; margin: 0 auto !important; max-width: 680px; padding: 10px;font-family: sans-serif; font-size: 14px; vertical-align: top;">
|
507 |
+
<div class="wn-wrapper" style="box-sizing: border-box; padding: 38px 9% 50px; width: 100%; height: auto; background: #fff; background-size: contain; margin-bottom: 25px; margin-top: 30px; border-radius: 4px; box-shadow: 0 3px 55px -18px rgba(0,0,0,0.1);">
|
508 |
|
509 |
+
'.$message.'
|
510 |
+
|
511 |
+
</div>
|
512 |
+
|
513 |
+
|
514 |
+
</td>
|
515 |
+
</tr>
|
516 |
+
</table>
|
517 |
+
';
|
518 |
// Filter the email
|
519 |
$mail_arg = array(
|
520 |
'to' => $to,
|
546 |
if(!isset($booker->user_email)) return false;
|
547 |
|
548 |
$subject = isset($this->notif_settings['booking_reminder']['subject']) ? $this->content(__($this->notif_settings['booking_reminder']['subject'], 'modern-events-calendar-lite'), $book_id) : __('Booking Reminder', 'modern-events-calendar-lite');
|
549 |
+
$headers = array('Content-Type: text/html; charset=UTF-8');
|
550 |
|
551 |
$recipients_str = isset($this->notif_settings['booking_reminder']['recipients']) ? $this->notif_settings['booking_reminder']['recipients'] : '';
|
552 |
$recipients = trim($recipients_str) ? explode(',', $recipients_str) : array();
|
576 |
|
577 |
if(!trim($to)) continue;
|
578 |
|
579 |
+
$message = '
|
580 |
+
<table border="0" cellpadding="0" cellspacing="0" class="wn-body" style="background-color: #f6f6f6; width: 100%; font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Oxygen,Open Sans, sans-serif;border-collapse: separate; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 100%;">
|
581 |
+
<tr>
|
582 |
+
<td class="wn-container" style="display: block; margin: 0 auto !important; max-width: 680px; padding: 10px;font-family: sans-serif; font-size: 14px; vertical-align: top;">
|
583 |
+
<div class="wn-wrapper" style="box-sizing: border-box; padding: 38px 9% 50px; width: 100%; height: auto; background: #fff; background-size: contain; margin-bottom: 25px; margin-top: 30px; border-radius: 4px; box-shadow: 0 3px 55px -18px rgba(0,0,0,0.1);">
|
584 |
+
|
585 |
+
'.$message.'
|
586 |
+
|
587 |
+
</div>
|
588 |
+
|
589 |
+
|
590 |
+
</td>
|
591 |
+
</tr>
|
592 |
+
</table>
|
593 |
+
';
|
594 |
+
|
595 |
// Filter the email
|
596 |
$mail_arg = array(
|
597 |
'to' => $to,
|
644 |
|
645 |
$to = get_bloginfo('admin_email');
|
646 |
$subject = (isset($this->notif_settings['new_event']['subject']) and trim($this->notif_settings['new_event']['subject'])) ? __($this->notif_settings['new_event']['subject'], 'modern-events-calendar-lite') : __('A new event is added.', 'modern-events-calendar-lite');
|
647 |
+
$headers = array('Content-Type: text/html; charset=UTF-8');
|
648 |
|
649 |
$recipients_str = isset($this->notif_settings['new_event']['recipients']) ? $this->notif_settings['new_event']['recipients'] : '';
|
650 |
$recipients = trim($recipients_str) ? explode(',', $recipients_str) : array();
|
716 |
|
717 |
$to = $guest_email;
|
718 |
$subject = (isset($this->notif_settings['user_event_publishing']['subject']) and trim($this->notif_settings['user_event_publishing']['subject'])) ? __($this->notif_settings['user_event_publishing']['subject'], 'modern-events-calendar-lite') : __('Your event is published.', 'modern-events-calendar-lite');
|
719 |
+
$headers = array('Content-Type: text/html; charset=UTF-8');
|
720 |
|
721 |
$recipients_str = isset($this->notif_settings['user_event_publishing']['recipients']) ? $this->notif_settings['user_event_publishing']['recipients'] : '';
|
722 |
$recipients = trim($recipients_str) ? explode(',', $recipients_str) : array();
|
app/modules/booking/default.php
CHANGED
@@ -11,8 +11,11 @@ $settings = $this->get_settings();
|
|
11 |
// Booking module is disabled
|
12 |
if(!isset($settings['booking_status']) or (isset($settings['booking_status']) and !$settings['booking_status'])) return;
|
13 |
|
|
|
|
|
|
|
14 |
$event = $event[0];
|
15 |
-
$uniqueid = (isset($uniqueid) ? $uniqueid : $event->data->ID);
|
16 |
|
17 |
$tickets = isset($event->data->tickets) ? $event->data->tickets : array();
|
18 |
$dates = isset($event->dates) ? $event->dates : $event->date;
|
@@ -25,11 +28,14 @@ if(!count($tickets)) return;
|
|
25 |
|
26 |
// Generate JavaScript code of Booking Module
|
27 |
$javascript = '<script type="text/javascript">
|
28 |
-
jQuery("#mec_book_form'.$uniqueid.'").
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
|
|
|
|
|
|
33 |
|
34 |
var mec_tickets_availability_ajax'.$uniqueid.' = false;
|
35 |
function mec_get_tickets_availability'.$uniqueid.'(event_id, date)
|
@@ -66,6 +72,9 @@ function mec_get_tickets_availability'.$uniqueid.'(event_id, date)
|
|
66 |
|
67 |
jQuery("#mec_booking'.$uniqueid.' #mec_event_ticket"+ticket_id).addClass(".mec-event-ticket"+limit);
|
68 |
|
|
|
|
|
|
|
69 |
// There are some available spots
|
70 |
if(limit != "0")
|
71 |
{
|
11 |
// Booking module is disabled
|
12 |
if(!isset($settings['booking_status']) or (isset($settings['booking_status']) and !$settings['booking_status'])) return;
|
13 |
|
14 |
+
$uniqueid = '';
|
15 |
+
$uniqueid = apply_filters('mec_booking_uniqueid_value', $uniqueid);
|
16 |
+
|
17 |
$event = $event[0];
|
18 |
+
$uniqueid = (isset($uniqueid) && !empty($uniqueid) ? $uniqueid : $event->data->ID);
|
19 |
|
20 |
$tickets = isset($event->data->tickets) ? $event->data->tickets : array();
|
21 |
$dates = isset($event->dates) ? $event->dates : $event->date;
|
28 |
|
29 |
// Generate JavaScript code of Booking Module
|
30 |
$javascript = '<script type="text/javascript">
|
31 |
+
jQuery("#mec_book_form'.$uniqueid.'").each(function(index, el) {
|
32 |
+
jQuery(this).on("submit", function(event)
|
33 |
+
{
|
34 |
+
event.preventDefault();
|
35 |
+
mec_book_form_submit'.$uniqueid.'();
|
36 |
+
});
|
37 |
+
})
|
38 |
+
|
39 |
|
40 |
var mec_tickets_availability_ajax'.$uniqueid.' = false;
|
41 |
function mec_get_tickets_availability'.$uniqueid.'(event_id, date)
|
72 |
|
73 |
jQuery("#mec_booking'.$uniqueid.' #mec_event_ticket"+ticket_id).addClass(".mec-event-ticket"+limit);
|
74 |
|
75 |
+
if(data.availability["stop_selling_"+ticket_id]) jQuery("#mec-ticket-message-"+ticket_id).attr("class", "mec-ticket-unavailable-spots mec-error").find("div").html(jQuery("#mec-ticket-message-sales-"+ticket_id).val());
|
76 |
+
else jQuery("#mec-ticket-message-"+ticket_id).attr("class", "mec-ticket-unavailable-spots info-msg").find("div").html(jQuery("#mec-ticket-message-sold-out-"+ticket_id).val());
|
77 |
+
|
78 |
// There are some available spots
|
79 |
if(limit != "0")
|
80 |
{
|
app/modules/booking/steps/tickets.php
CHANGED
@@ -28,7 +28,7 @@ $date_format = (isset($settings['booking_date_format1']) and trim($settings['boo
|
|
28 |
</div>
|
29 |
|
30 |
<div class="mec-event-tickets-list" id="mec_book_form_tickets_container<?php echo $uniqueid; ?>" data-total-booking-limit="<?php echo isset($availability['total']) ? $availability['total'] : '-1'; ?>">
|
31 |
-
<?php foreach($tickets as $ticket_id=>$ticket): $ticket_limit = isset($availability[$ticket_id]) ? $availability[$ticket_id] : -1; if($ticket_limit === '0' and count($dates) <= 1) continue; ?>
|
32 |
<div class="mec-event-ticket mec-event-ticket<?php echo $ticket_limit; ?>" id="mec_event_ticket<?php echo $ticket_id; ?>">
|
33 |
<div class="mec-ticket-available-spots <?php echo ($ticket_limit == '0' ? 'mec-util-hidden' : ''); ?>">
|
34 |
<span class="mec-event-ticket-name"><?php echo (isset($ticket['name']) ? $ticket['name'] : ''); ?></span>
|
@@ -36,12 +36,35 @@ $date_format = (isset($settings['booking_date_format1']) and trim($settings['boo
|
|
36 |
<?php if(isset($ticket['description']) and trim($ticket['description'])): ?><p class="mec-event-ticket-description"><?php echo $ticket['description']; ?></p><?php endif; ?>
|
37 |
<div>
|
38 |
<input type="number" class="mec-book-ticket-limit" name="book[tickets][<?php echo $ticket_id; ?>]" placeholder="<?php esc_attr_e('Count', 'modern-events-calendar-lite'); ?>" value="<?php echo $default_ticket_number; ?>" min="0" max="<?php echo ($ticket_limit != '-1' ? $ticket_limit : ''); ?>" onchange="mec_check_tickets_availability<?php echo $uniqueid; ?>(<?php echo $ticket_id; ?>, this.value);" />
|
|
|
|
|
|
|
|
|
39 |
</div>
|
40 |
<span class="mec-event-ticket-available"><?php echo sprintf(__('Available %s: <span>%s</span>', 'modern-events-calendar-lite'), $this->m('tickets', __('Tickets', 'modern-events-calendar-lite')), ($ticket['unlimited'] ? __('Unlimited', 'modern-events-calendar-lite') : ($ticket_limit != '-1' ? $ticket_limit : __('Unlimited', 'modern-events-calendar-lite')))); ?></span>
|
41 |
</div>
|
42 |
-
|
43 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
44 |
</div>
|
|
|
45 |
</div>
|
46 |
<?php endforeach; ?>
|
47 |
</div>
|
28 |
</div>
|
29 |
|
30 |
<div class="mec-event-tickets-list" id="mec_book_form_tickets_container<?php echo $uniqueid; ?>" data-total-booking-limit="<?php echo isset($availability['total']) ? $availability['total'] : '-1'; ?>">
|
31 |
+
<?php foreach($tickets as $ticket_id=>$ticket): $stop_selling = isset($availability['stop_selling_'.$ticket_id]) ? $availability['stop_selling_'.$ticket_id] : false; $ticket_limit = isset($availability[$ticket_id]) ? $availability[$ticket_id] : -1; if($ticket_limit === '0' and count($dates) <= 1) continue; ?>
|
32 |
<div class="mec-event-ticket mec-event-ticket<?php echo $ticket_limit; ?>" id="mec_event_ticket<?php echo $ticket_id; ?>">
|
33 |
<div class="mec-ticket-available-spots <?php echo ($ticket_limit == '0' ? 'mec-util-hidden' : ''); ?>">
|
34 |
<span class="mec-event-ticket-name"><?php echo (isset($ticket['name']) ? $ticket['name'] : ''); ?></span>
|
36 |
<?php if(isset($ticket['description']) and trim($ticket['description'])): ?><p class="mec-event-ticket-description"><?php echo $ticket['description']; ?></p><?php endif; ?>
|
37 |
<div>
|
38 |
<input type="number" class="mec-book-ticket-limit" name="book[tickets][<?php echo $ticket_id; ?>]" placeholder="<?php esc_attr_e('Count', 'modern-events-calendar-lite'); ?>" value="<?php echo $default_ticket_number; ?>" min="0" max="<?php echo ($ticket_limit != '-1' ? $ticket_limit : ''); ?>" onchange="mec_check_tickets_availability<?php echo $uniqueid; ?>(<?php echo $ticket_id; ?>, this.value);" />
|
39 |
+
|
40 |
+
<!-- Set Input Minimum Ticket Min Value -->
|
41 |
+
<?php $min_ticket = (isset($ticket['minimum_ticket']) and intval($ticket['minimum_ticket']) > 0) ? intval($ticket['minimum_ticket']) : 0; ?>
|
42 |
+
<input type="hidden" name="book[tickets_info][<?php echo $ticket_id; ?>]" value="<?php echo "{$ticket_id} , ".(isset($ticket['name']) ? $ticket['name'] : '')." , {$min_ticket}"; ?>" />
|
43 |
</div>
|
44 |
<span class="mec-event-ticket-available"><?php echo sprintf(__('Available %s: <span>%s</span>', 'modern-events-calendar-lite'), $this->m('tickets', __('Tickets', 'modern-events-calendar-lite')), ($ticket['unlimited'] ? __('Unlimited', 'modern-events-calendar-lite') : ($ticket_limit != '-1' ? $ticket_limit : __('Unlimited', 'modern-events-calendar-lite')))); ?></span>
|
45 |
</div>
|
46 |
+
<?php
|
47 |
+
$str_replace = isset($ticket['name']) ? '<strong>'.$ticket['name'].'</strong>' : '';
|
48 |
+
$ticket_message_sales = sprintf(__('The %s ticket sales has stoped!', 'modern-events-calendar-lite'), $str_replace);
|
49 |
+
$ticket_message_sold_out = sprintf(__('The %s ticket is sold out. You can try another ticket or another date.', 'modern-events-calendar-lite'), $str_replace);
|
50 |
+
?>
|
51 |
+
<?php if(isset($stop_selling) and $stop_selling): ?>
|
52 |
+
<div id="mec-ticket-message-<?php echo $ticket_id; ?>" class="mec-ticket-unavailable-spots mec-error <?php echo ($ticket_limit == '0' ? '' : 'mec-util-hidden'); ?>">
|
53 |
+
<div>
|
54 |
+
<?php echo $ticket_message_sales; ?>
|
55 |
+
</div>
|
56 |
+
<input type="hidden" id="mec-ticket-message-sales-<?php echo $ticket_id; ?>" value="<?php echo $ticket_message_sales; ?>" />
|
57 |
+
<input type="hidden" id="mec-ticket-message-sold-out-<?php echo $ticket_id; ?>" value="<?php echo $ticket_message_sold_out; ?>" />
|
58 |
+
</div>
|
59 |
+
<?php else: ?>
|
60 |
+
<div id="mec-ticket-message-<?php echo $ticket_id; ?>" class="mec-ticket-unavailable-spots info-msg <?php echo ($ticket_limit == '0' ? '' : 'mec-util-hidden'); ?>">
|
61 |
+
<div>
|
62 |
+
<?php echo $ticket_message_sold_out; ?>
|
63 |
+
</div>
|
64 |
+
<input type="hidden" id="mec-ticket-message-sales-<?php echo $ticket_id; ?>" value="<?php echo $ticket_message_sales; ?>" />
|
65 |
+
<input type="hidden" id="mec-ticket-message-sold-out-<?php echo $ticket_id; ?>" value="<?php echo $ticket_message_sold_out; ?>" />
|
66 |
</div>
|
67 |
+
<?php endif; ?>
|
68 |
</div>
|
69 |
<?php endforeach; ?>
|
70 |
</div>
|
app/modules/export/details.php
CHANGED
@@ -37,7 +37,6 @@ if((is_null($start_date_temp) or is_null($start_hour_temp) or is_null($start_min
|
|
37 |
|
38 |
$start_time = strtotime((trim($occurrence) ? $occurrence : $start_date_temp).' '.sprintf("%02d", $start_hour_temp).':'.sprintf("%02d", $start_minutes_temp).' '.$start_ampm_temp);
|
39 |
$end_time = strtotime((trim($occurrence_end_date) ? $occurrence_end_date : $end_date_temp).' '.sprintf("%02d", $end_hour_temp).':'.sprintf("%02d", $end_minutes_temp).' '.$end_ampm_temp);
|
40 |
-
|
41 |
$gmt_offset_seconds = $this->get_gmt_offset_seconds($start_time);
|
42 |
?>
|
43 |
<div class="mec-event-export-module mec-frontbox">
|
@@ -45,7 +44,7 @@ $gmt_offset_seconds = $this->get_gmt_offset_seconds($start_time);
|
|
45 |
<div class="mec-export-details">
|
46 |
<ul>
|
47 |
<?php if($settings['sn']['googlecal']): ?><li><a class="mec-events-gcal mec-events-button mec-color mec-bg-color-hover mec-border-color" href="https://www.google.com/calendar/event?action=TEMPLATE&text=<?php echo urlencode($title); ?>&dates=<?php echo gmdate('Ymd\\THi00\\Z', ($start_time - $gmt_offset_seconds)); ?>/<?php echo gmdate('Ymd\\THi00\\Z', ($end_time - $gmt_offset_seconds)); ?>&details=<?php echo urlencode($content).$location; ?>" target="_blank"><?php echo __('+ Add to Google Calendar', 'modern-events-calendar-lite'); ?></a></li><?php endif; ?>
|
48 |
-
<?php if($settings['sn']['ical']): ?><li><a class="mec-events-gcal mec-events-button mec-color mec-bg-color-hover mec-border-color" href="<?php echo $this->ical_URL($event->data->ID
|
49 |
</ul>
|
50 |
</div>
|
51 |
</div>
|
37 |
|
38 |
$start_time = strtotime((trim($occurrence) ? $occurrence : $start_date_temp).' '.sprintf("%02d", $start_hour_temp).':'.sprintf("%02d", $start_minutes_temp).' '.$start_ampm_temp);
|
39 |
$end_time = strtotime((trim($occurrence_end_date) ? $occurrence_end_date : $end_date_temp).' '.sprintf("%02d", $end_hour_temp).':'.sprintf("%02d", $end_minutes_temp).' '.$end_ampm_temp);
|
|
|
40 |
$gmt_offset_seconds = $this->get_gmt_offset_seconds($start_time);
|
41 |
?>
|
42 |
<div class="mec-event-export-module mec-frontbox">
|
44 |
<div class="mec-export-details">
|
45 |
<ul>
|
46 |
<?php if($settings['sn']['googlecal']): ?><li><a class="mec-events-gcal mec-events-button mec-color mec-bg-color-hover mec-border-color" href="https://www.google.com/calendar/event?action=TEMPLATE&text=<?php echo urlencode($title); ?>&dates=<?php echo gmdate('Ymd\\THi00\\Z', ($start_time - $gmt_offset_seconds)); ?>/<?php echo gmdate('Ymd\\THi00\\Z', ($end_time - $gmt_offset_seconds)); ?>&details=<?php echo urlencode($content).$location; ?>" target="_blank"><?php echo __('+ Add to Google Calendar', 'modern-events-calendar-lite'); ?></a></li><?php endif; ?>
|
47 |
+
<?php if($settings['sn']['ical']): ?><li><a class="mec-events-gcal mec-events-button mec-color mec-bg-color-hover mec-border-color" href="<?php echo $this->ical_URL($event->data->ID); ?>"><?php echo __('+ iCal export', 'modern-events-calendar-lite'); ?></a></li><?php endif; ?>
|
48 |
</ul>
|
49 |
</div>
|
50 |
</div>
|
app/modules/next-event/details.php
CHANGED
@@ -14,15 +14,14 @@ $date_format1 = isset($settings['next_event_module_date_format1']) ? $settings['
|
|
14 |
// Next Event Method
|
15 |
$method = isset($settings['next_event_module_method']) ? $settings['next_event_module_method'] : 'occurrence';
|
16 |
|
17 |
-
$date =
|
18 |
-
if
|
19 |
-
{
|
20 |
-
$date = $event->date;
|
21 |
-
}
|
22 |
|
23 |
$start_date = (isset($date['start']) and isset($date['start']['date'])) ? $date['start']['date'] : date('Y-m-d');
|
24 |
if(isset($_GET['occurrence']) and trim($_GET['occurrence'])) $start_date = sanitize_text_field($_GET['occurrence']);
|
25 |
|
|
|
|
|
26 |
// Show next occurrence from other events
|
27 |
if($method == 'event')
|
28 |
{
|
@@ -50,6 +49,8 @@ if($method == 'event')
|
|
50 |
|
51 |
// Nothing Found!
|
52 |
if(!isset($next->data)) return false;
|
|
|
|
|
53 |
}
|
54 |
else
|
55 |
{
|
@@ -65,7 +66,7 @@ else
|
|
65 |
if(strtotime($occ['start']['date']) > strtotime($start_date))
|
66 |
{
|
67 |
$found = true;
|
68 |
-
$
|
69 |
break;
|
70 |
}
|
71 |
}
|
@@ -80,15 +81,14 @@ $allday = isset($next->data->meta['mec_allday']) ? $next->data->meta['mec_allday
|
|
80 |
<div class="mec-next-event-details mec-frontbox" id="mec_next_event_details">
|
81 |
<div class="mec-next-<?php echo $method; ?>">
|
82 |
<h3 class="mec-frontbox-title"><?php echo ($method == 'occurrence' ? __('Next Occurrence', 'modern-events-calendar-lite') : __('Next Event', 'modern-events-calendar-lite')); ?></h3>
|
83 |
-
|
84 |
<ul>
|
85 |
<li>
|
86 |
-
<a href="<?php echo $this->get_event_date_permalink($next->data->permalink, $
|
87 |
</li>
|
88 |
<li>
|
89 |
<i class="mec-sl-calendar"></i>
|
90 |
<h6><?php _e('Date', 'modern-events-calendar-lite'); ?></h6>
|
91 |
-
<dd><abbr class="mec-events-abbr"><?php echo $this->date_label($
|
92 |
</li>
|
93 |
<li>
|
94 |
<i class="mec-sl-clock"></i>
|
14 |
// Next Event Method
|
15 |
$method = isset($settings['next_event_module_method']) ? $settings['next_event_module_method'] : 'occurrence';
|
16 |
|
17 |
+
$date = array();
|
18 |
+
if(!empty($event->date)) $date = $event->date;
|
|
|
|
|
|
|
19 |
|
20 |
$start_date = (isset($date['start']) and isset($date['start']['date'])) ? $date['start']['date'] : date('Y-m-d');
|
21 |
if(isset($_GET['occurrence']) and trim($_GET['occurrence'])) $start_date = sanitize_text_field($_GET['occurrence']);
|
22 |
|
23 |
+
$next_date = array();
|
24 |
+
|
25 |
// Show next occurrence from other events
|
26 |
if($method == 'event')
|
27 |
{
|
49 |
|
50 |
// Nothing Found!
|
51 |
if(!isset($next->data)) return false;
|
52 |
+
|
53 |
+
$next_date = $next->date;
|
54 |
}
|
55 |
else
|
56 |
{
|
66 |
if(strtotime($occ['start']['date']) > strtotime($start_date))
|
67 |
{
|
68 |
$found = true;
|
69 |
+
$next_date = $occ;
|
70 |
break;
|
71 |
}
|
72 |
}
|
81 |
<div class="mec-next-event-details mec-frontbox" id="mec_next_event_details">
|
82 |
<div class="mec-next-<?php echo $method; ?>">
|
83 |
<h3 class="mec-frontbox-title"><?php echo ($method == 'occurrence' ? __('Next Occurrence', 'modern-events-calendar-lite') : __('Next Event', 'modern-events-calendar-lite')); ?></h3>
|
|
|
84 |
<ul>
|
85 |
<li>
|
86 |
+
<a href="<?php echo $this->get_event_date_permalink($next->data->permalink, $next_date['start']['date'], true); ?>"><?php echo ($method == 'occurrence' ? __('Go to occurrence page', 'modern-events-calendar-lite') : $next->data->title); ?></a>
|
87 |
</li>
|
88 |
<li>
|
89 |
<i class="mec-sl-calendar"></i>
|
90 |
<h6><?php _e('Date', 'modern-events-calendar-lite'); ?></h6>
|
91 |
+
<dd><abbr class="mec-events-abbr"><?php echo $this->date_label($next_date['start'], (isset($next_date['end']) ? $next_date['end'] : NULL), $date_format1); ?></abbr></dd>
|
92 |
</li>
|
93 |
<li>
|
94 |
<i class="mec-sl-clock"></i>
|
app/skins/custom.php
CHANGED
@@ -13,17 +13,6 @@ class MEC_skin_custom extends MEC_skins
|
|
13 |
*/
|
14 |
public $skin = 'custom';
|
15 |
|
16 |
-
public $date_format_classic_1;
|
17 |
-
public $date_format_clean_1;
|
18 |
-
public $date_format_clean_2;
|
19 |
-
public $date_format_minimal_1;
|
20 |
-
public $date_format_minimal_2;
|
21 |
-
public $date_format_modern_1;
|
22 |
-
public $date_format_modern_2;
|
23 |
-
public $date_format_modern_3;
|
24 |
-
public $date_format_simple_1;
|
25 |
-
public $date_format_novel_1;
|
26 |
-
|
27 |
/**
|
28 |
* Constructor method
|
29 |
* @author Webnus <info@webnus.biz>
|
@@ -57,31 +46,8 @@ class MEC_skin_custom extends MEC_skins
|
|
57 |
|
58 |
// The style
|
59 |
$this->style = isset($this->skin_options['style']) ? $this->skin_options['style'] : 'modern';
|
60 |
-
|
61 |
-
// Date Formats
|
62 |
-
$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';
|
63 |
-
|
64 |
-
$this->date_format_clean_1 = (isset($this->skin_options['clean_date_format1']) and trim($this->skin_options['clean_date_format1'])) ? $this->skin_options['clean_date_format1'] : 'd';
|
65 |
-
$this->date_format_clean_2 = (isset($this->skin_options['clean_date_format2']) and trim($this->skin_options['clean_date_format2'])) ? $this->skin_options['clean_date_format2'] : 'F';
|
66 |
-
|
67 |
-
$this->date_format_minimal_1 = (isset($this->skin_options['minimal_date_format1']) and trim($this->skin_options['minimal_date_format1'])) ? $this->skin_options['minimal_date_format1'] : 'd';
|
68 |
-
$this->date_format_minimal_2 = (isset($this->skin_options['minimal_date_format2']) and trim($this->skin_options['minimal_date_format2'])) ? $this->skin_options['minimal_date_format2'] : 'M';
|
69 |
-
|
70 |
-
$this->date_format_modern_1 = (isset($this->skin_options['modern_date_format1']) and trim($this->skin_options['modern_date_format1'])) ? $this->skin_options['modern_date_format1'] : 'd';
|
71 |
-
$this->date_format_modern_2 = (isset($this->skin_options['modern_date_format2']) and trim($this->skin_options['modern_date_format2'])) ? $this->skin_options['modern_date_format2'] : 'F';
|
72 |
-
$this->date_format_modern_3 = (isset($this->skin_options['modern_date_format3']) and trim($this->skin_options['modern_date_format3'])) ? $this->skin_options['modern_date_format3'] : 'l';
|
73 |
-
|
74 |
-
$this->date_format_simple_1 = (isset($this->skin_options['simple_date_format1']) and trim($this->skin_options['simple_date_format1'])) ? $this->skin_options['simple_date_format1'] : 'M d Y';
|
75 |
-
|
76 |
-
$this->date_format_novel_1 = (isset($this->skin_options['novel_date_format1']) and trim($this->skin_options['novel_date_format1'])) ? $this->skin_options['novel_date_format1'] : 'd F Y';
|
77 |
|
78 |
-
|
79 |
-
if($this->style == 'colorful')
|
80 |
-
{
|
81 |
-
$this->date_format_modern_1 = (isset($this->skin_options['colorful_date_format1']) and trim($this->skin_options['colorful_date_format1'])) ? $this->skin_options['colorful_date_format1'] : 'd';
|
82 |
-
$this->date_format_modern_2 = (isset($this->skin_options['colorful_date_format2']) and trim($this->skin_options['colorful_date_format2'])) ? $this->skin_options['colorful_date_format2'] : 'F';
|
83 |
-
$this->date_format_modern_3 = (isset($this->skin_options['colorful_date_format3']) and trim($this->skin_options['colorful_date_format3'])) ? $this->skin_options['colorful_date_format3'] : 'l';
|
84 |
-
}
|
85 |
|
86 |
// Search Form Options
|
87 |
$this->sf_options = (isset($this->atts['sf-options']) and isset($this->atts['sf-options'][$this->skin])) ? $this->atts['sf-options'][$this->skin] : array();
|
@@ -122,6 +88,9 @@ class MEC_skin_custom extends MEC_skins
|
|
122 |
// The count in row
|
123 |
$this->count = isset($this->skin_options['count']) ? $this->skin_options['count'] : '3';
|
124 |
|
|
|
|
|
|
|
125 |
// Map on top
|
126 |
$this->map_on_top = isset($this->skin_options['map_on_top']) ? $this->skin_options['map_on_top'] : false;
|
127 |
|
13 |
*/
|
14 |
public $skin = 'custom';
|
15 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
/**
|
17 |
* Constructor method
|
18 |
* @author Webnus <info@webnus.biz>
|
46 |
|
47 |
// The style
|
48 |
$this->style = isset($this->skin_options['style']) ? $this->skin_options['style'] : 'modern';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
49 |
|
50 |
+
$this->month_divider = isset($this->skin_options['month_divider']) ? $this->skin_options['month_divider'] : true;
|
|
|
|
|
|
|
|
|
|
|
|
|
51 |
|
52 |
// Search Form Options
|
53 |
$this->sf_options = (isset($this->atts['sf-options']) and isset($this->atts['sf-options'][$this->skin])) ? $this->atts['sf-options'][$this->skin] : array();
|
88 |
// The count in row
|
89 |
$this->count = isset($this->skin_options['count']) ? $this->skin_options['count'] : '3';
|
90 |
|
91 |
+
// Map geolocation
|
92 |
+
$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;
|
93 |
+
|
94 |
// Map on top
|
95 |
$this->map_on_top = isset($this->skin_options['map_on_top']) ? $this->skin_options['map_on_top'] : false;
|
96 |
|
app/skins/custom/render.php
CHANGED
@@ -9,7 +9,7 @@ if ( ! did_action( 'elementor/loaded' ) ) {
|
|
9 |
$styling = $this->main->get_styling();
|
10 |
$event_colorskin = (isset($styling['mec_colorskin'] ) || isset($styling['color'])) ? 'colorskin-custom' : '';
|
11 |
$settings = $this->main->get_settings();
|
12 |
-
|
13 |
// colorful
|
14 |
$colorful_flag = $colorful_class = '';
|
15 |
if($this->style == 'colorful')
|
@@ -18,7 +18,6 @@ if($this->style == 'colorful')
|
|
18 |
$this->style = 'modern';
|
19 |
$colorful_class = ' mec-event-custom-colorful';
|
20 |
}
|
21 |
-
|
22 |
?>
|
23 |
<div class="mec-wrap <?php echo $event_colorskin . $colorful_class; ?>">
|
24 |
<div class="mec-event-custom-<?php echo $this->style; ?>">
|
@@ -72,6 +71,11 @@ if($this->style == 'colorful')
|
|
72 |
$this->args['offset'] = 0;
|
73 |
}
|
74 |
|
|
|
|
|
|
|
|
|
|
|
75 |
// The Query
|
76 |
$query = new WP_Query($this->args);
|
77 |
if($query->have_posts())
|
@@ -97,7 +101,7 @@ if($this->style == 'colorful')
|
|
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)
|
@@ -161,6 +165,7 @@ if(isset($map_eventss) and !empty($map_eventss))
|
|
161 |
clustering_images: "'.$this->main->asset('img/cluster1/m').'",
|
162 |
getDirection: 0,
|
163 |
ajax_url: "'.admin_url('admin-ajax.php', NULL).'",
|
|
|
164 |
});
|
165 |
});
|
166 |
</script>';
|
9 |
$styling = $this->main->get_styling();
|
10 |
$event_colorskin = (isset($styling['mec_colorskin'] ) || isset($styling['color'])) ? 'colorskin-custom' : '';
|
11 |
$settings = $this->main->get_settings();
|
12 |
+
$current_month_divider = $this->request->getVar('current_month_divider', 0);
|
13 |
// colorful
|
14 |
$colorful_flag = $colorful_class = '';
|
15 |
if($this->style == 'colorful')
|
18 |
$this->style = 'modern';
|
19 |
$colorful_class = ' mec-event-custom-colorful';
|
20 |
}
|
|
|
21 |
?>
|
22 |
<div class="mec-wrap <?php echo $event_colorskin . $colorful_class; ?>">
|
23 |
<div class="mec-event-custom-<?php echo $this->style; ?>">
|
71 |
$this->args['offset'] = 0;
|
72 |
}
|
73 |
|
74 |
+
$month_id = date('Ym', strtotime($date));
|
75 |
+
if($this->count == '1' and $this->month_divider and $month_id != $current_month_divider): $current_month_divider = $month_id; ?>
|
76 |
+
<div class="mec-month-divider" data-toggle-divider="mec-toggle-<?php echo date_i18n('Ym', strtotime($date)); ?>-<?php echo $this->id; ?>"><span><?php echo date_i18n('F Y', strtotime($date)); ?></span><i class="mec-sl-arrow-down"></i></div>
|
77 |
+
<?php endif;
|
78 |
+
|
79 |
// The Query
|
80 |
$query = new WP_Query($this->args);
|
81 |
if($query->have_posts())
|
101 |
);
|
102 |
echo ($rcount == 1) ? '<div class="row">' : '';
|
103 |
echo '<div class="col-md-'.$col.' col-sm-'.$col.'">';
|
104 |
+
echo '<article class="mec-event-article mec-sd-event-article'. get_the_ID().' mec-clear" itemscope>';
|
105 |
echo Plugin::instance()->frontend->get_builder_content_for_display( $this->style, true );
|
106 |
echo '</article></div>';
|
107 |
if($rcount == $count)
|
165 |
clustering_images: "'.$this->main->asset('img/cluster1/m').'",
|
166 |
getDirection: 0,
|
167 |
ajax_url: "'.admin_url('admin-ajax.php', NULL).'",
|
168 |
+
geolocation: "'.$this->geolocation.'",
|
169 |
});
|
170 |
});
|
171 |
</script>';
|
app/skins/grid/render.php
CHANGED
@@ -18,7 +18,9 @@ if($this->style == 'colorful')
|
|
18 |
<div class="mec-wrap <?php echo $event_colorskin . $colorful_class; ?>">
|
19 |
<div class="mec-event-grid-<?php echo $this->style; ?>">
|
20 |
<?php
|
21 |
-
$count
|
|
|
|
|
22 |
|
23 |
if($count == 0 or $count == 5) $col = 4;
|
24 |
else $col = 12 / $count;
|
@@ -268,6 +270,9 @@ if($this->style == 'colorful')
|
|
268 |
?>
|
269 |
<?php endforeach; ?>
|
270 |
<?php endforeach; ?>
|
|
|
|
|
|
|
271 |
</div>
|
272 |
</div>
|
273 |
|
18 |
<div class="mec-wrap <?php echo $event_colorskin . $colorful_class; ?>">
|
19 |
<div class="mec-event-grid-<?php echo $this->style; ?>">
|
20 |
<?php
|
21 |
+
$count = $this->count;
|
22 |
+
$grid_div = $this->count;
|
23 |
+
$grid_limit = $this->limit;
|
24 |
|
25 |
if($count == 0 or $count == 5) $col = 4;
|
26 |
else $col = 12 / $count;
|
270 |
?>
|
271 |
<?php endforeach; ?>
|
272 |
<?php endforeach; ?>
|
273 |
+
<?php if (($grid_div & 1 ? 'odd' : 'even') =='even' && ($grid_limit % 2 ? 'odd' : 'even') == 'odd' ) {
|
274 |
+
echo '</div>';
|
275 |
+
} ?>
|
276 |
</div>
|
277 |
</div>
|
278 |
|
app/skins/list/render.php
CHANGED
@@ -128,7 +128,7 @@ $event_colorskin = (isset($styling['mec_colorskin']) || isset($styling['color'])
|
|
128 |
<div class="mec-event-date mec-bg-color"><span><?php echo date_i18n($this->date_format_minimal_1, strtotime($event->date['start']['date'])); ?></span><?php echo date_i18n($this->date_format_minimal_2, strtotime($event->date['start']['date'])); ?></div>
|
129 |
<?php if($this->include_events_times) echo $this->main->mec_include_time_labels($start_time, $end_time); ?>
|
130 |
<h4 class="mec-event-title"><a class="mec-color-hover" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $this->main->get_flags($event->data->ID, $event_start_date).$event_color; ?></h4>
|
131 |
-
<div class="mec-event-detail"><?php echo date_i18n($this->date_format_minimal_3, strtotime($event->date['start']['date']));
|
132 |
</div>
|
133 |
<div class="col-md-3 col-sm-3 btn-wrapper"><?php do_action('before_mec_list_minimal_button',$event); ?><a class="mec-detail-button" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $this->main->m('event_detail', __('EVENT DETAIL', 'modern-events-calendar-lite')); ?></a></div>
|
134 |
<?php elseif($this->style == 'standard'): ?>
|
128 |
<div class="mec-event-date mec-bg-color"><span><?php echo date_i18n($this->date_format_minimal_1, strtotime($event->date['start']['date'])); ?></span><?php echo date_i18n($this->date_format_minimal_2, strtotime($event->date['start']['date'])); ?></div>
|
129 |
<?php if($this->include_events_times) echo $this->main->mec_include_time_labels($start_time, $end_time); ?>
|
130 |
<h4 class="mec-event-title"><a class="mec-color-hover" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $this->main->get_flags($event->data->ID, $event_start_date).$event_color; ?></h4>
|
131 |
+
<div class="mec-event-detail"><?php echo date_i18n($this->date_format_minimal_3, strtotime($event->date['start']['date'])); ?><?php echo (isset($location['name']) ? ', ' . $location['name'] : ''); ?></div>
|
132 |
</div>
|
133 |
<div class="col-md-3 col-sm-3 btn-wrapper"><?php do_action('before_mec_list_minimal_button',$event); ?><a class="mec-detail-button" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $this->main->m('event_detail', __('EVENT DETAIL', 'modern-events-calendar-lite')); ?></a></div>
|
134 |
<?php elseif($this->style == 'standard'): ?>
|
app/skins/single.php
CHANGED
@@ -246,19 +246,23 @@ class MEC_skin_single extends MEC_skins
|
|
246 |
$end_date = (isset($dates[0]['end']) and isset($dates[0]['end']['date'])) ? $dates[0]['end']['date'] : current_time('Y-m-d H:i:s');
|
247 |
|
248 |
$s_time = '';
|
249 |
-
if
|
|
|
250 |
$s_time .= sprintf("%02d", $dates[0]['start']['hour']).':';
|
251 |
$s_time .= sprintf("%02d", $dates[0]['start']['minutes']);
|
252 |
$s_time .= trim($dates[0]['start']['ampm']);
|
253 |
-
|
|
|
254 |
$start_time = date('D M j Y G:i:s', strtotime($start_date.' '.$s_time));
|
255 |
|
256 |
$e_time = '';
|
257 |
-
if
|
|
|
258 |
$e_time .= sprintf("%02d", $dates[0]['end']['hour']).':';
|
259 |
$e_time .= sprintf("%02d", $dates[0]['end']['minutes']);
|
260 |
$e_time .= trim($dates[0]['end']['ampm']);
|
261 |
-
|
|
|
262 |
$end_time = date('D M j Y G:i:s', strtotime($end_date.' '.$e_time));
|
263 |
|
264 |
$d1 = new DateTime($start_time);
|
@@ -270,7 +274,6 @@ class MEC_skin_single extends MEC_skins
|
|
270 |
|
271 |
// Booking OnGoing Event Option
|
272 |
$ongoing_event_book = (isset($settings['booking_ongoing']) and $settings['booking_ongoing'] == '1') ? true : false;
|
273 |
-
|
274 |
if($ongoing_event_book)
|
275 |
{
|
276 |
if($d3 < $d2)
|
246 |
$end_date = (isset($dates[0]['end']) and isset($dates[0]['end']['date'])) ? $dates[0]['end']['date'] : current_time('Y-m-d H:i:s');
|
247 |
|
248 |
$s_time = '';
|
249 |
+
if(!empty($dates))
|
250 |
+
{
|
251 |
$s_time .= sprintf("%02d", $dates[0]['start']['hour']).':';
|
252 |
$s_time .= sprintf("%02d", $dates[0]['start']['minutes']);
|
253 |
$s_time .= trim($dates[0]['start']['ampm']);
|
254 |
+
}
|
255 |
+
|
256 |
$start_time = date('D M j Y G:i:s', strtotime($start_date.' '.$s_time));
|
257 |
|
258 |
$e_time = '';
|
259 |
+
if(!empty($dates))
|
260 |
+
{
|
261 |
$e_time .= sprintf("%02d", $dates[0]['end']['hour']).':';
|
262 |
$e_time .= sprintf("%02d", $dates[0]['end']['minutes']);
|
263 |
$e_time .= trim($dates[0]['end']['ampm']);
|
264 |
+
}
|
265 |
+
|
266 |
$end_time = date('D M j Y G:i:s', strtotime($end_date.' '.$e_time));
|
267 |
|
268 |
$d1 = new DateTime($start_time);
|
274 |
|
275 |
// Booking OnGoing Event Option
|
276 |
$ongoing_event_book = (isset($settings['booking_ongoing']) and $settings['booking_ongoing'] == '1') ? true : false;
|
|
|
277 |
if($ongoing_event_book)
|
278 |
{
|
279 |
if($d3 < $d2)
|
app/skins/timetable.php
CHANGED
@@ -208,6 +208,15 @@ class MEC_skin_timetable extends MEC_skins
|
|
208 |
|
209 |
$rendered = $this->render->data(get_the_ID());
|
210 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
211 |
$data = new stdClass();
|
212 |
$data->ID = get_the_ID();
|
213 |
$data->data = $rendered;
|
@@ -217,7 +226,7 @@ class MEC_skin_timetable extends MEC_skins
|
|
217 |
'start'=>array('date'=>$date),
|
218 |
'end'=>array('date'=>$this->main->get_end_date($date, $rendered))
|
219 |
);
|
220 |
-
|
221 |
$events[$date][] = $data;
|
222 |
}
|
223 |
}
|
208 |
|
209 |
$rendered = $this->render->data(get_the_ID());
|
210 |
|
211 |
+
|
212 |
+
$repeat_type = !empty($rendered->meta['mec_repeat_type']) ? $rendered->meta['mec_repeat_type'] : '';
|
213 |
+
$occurrence = $date;
|
214 |
+
|
215 |
+
if(strtotime($occurrence) and in_array($repeat_type, array('certain_weekdays', 'custom_days', 'weekday', 'weekend'))) $occurrence = date('Y-m-d', strtotime($occurrence));
|
216 |
+
elseif(strtotime($occurrence)) $occurrence = date('Y-m-d', strtotime('-1 day', strtotime($occurrence)));
|
217 |
+
else $occurrence = NULL;
|
218 |
+
$dates = $this->render->dates(get_the_ID(), $rendered, $this->maximum_dates, $occurrence);
|
219 |
+
|
220 |
$data = new stdClass();
|
221 |
$data->ID = get_the_ID();
|
222 |
$data->data = $rendered;
|
226 |
'start'=>array('date'=>$date),
|
227 |
'end'=>array('date'=>$this->main->get_end_date($date, $rendered))
|
228 |
);
|
229 |
+
$data->dates = $dates;
|
230 |
$events[$date][] = $data;
|
231 |
}
|
232 |
}
|
app/skins/timetable/render.php
CHANGED
@@ -108,8 +108,10 @@ $settings = $this->main->get_settings();
|
|
108 |
<?php endif; ?>
|
109 |
</span>
|
110 |
</article>
|
|
|
111 |
<?php endforeach; ?>
|
112 |
</div>
|
|
|
113 |
<?php elseif(!isset($has_events[$week])): $has_events[$week] = 'printed'; ?>
|
114 |
<div class="mec-timetable-events-list mec-weekly-view-date-events mec-util-hidden mec-calendar-day-events mec-clear mec-weekly-view-week-<?php echo $this->id; ?>-<?php echo date('Ym', strtotime($date)).$week; ?>" id="mec_weekly_view_date_events<?php echo $this->id; ?>_<?php echo date('Ymd', strtotime($date)); ?>" data-week-number="<?php echo $week; ?>">
|
115 |
<article class="mec-event-article"><h4 class="mec-event-title"><?php _e('No Events', 'modern-events-calendar-lite'); ?></h4><div class="mec-event-detail"></div></article>
|
108 |
<?php endif; ?>
|
109 |
</span>
|
110 |
</article>
|
111 |
+
<?php do_action('mec_timetable_view_content' , $event , $this , $date , $label_style); ?>
|
112 |
<?php endforeach; ?>
|
113 |
</div>
|
114 |
+
|
115 |
<?php elseif(!isset($has_events[$week])): $has_events[$week] = 'printed'; ?>
|
116 |
<div class="mec-timetable-events-list mec-weekly-view-date-events mec-util-hidden mec-calendar-day-events mec-clear mec-weekly-view-week-<?php echo $this->id; ?>-<?php echo date('Ym', strtotime($date)).$week; ?>" id="mec_weekly_view_date_events<?php echo $this->id; ?>_<?php echo date('Ymd', strtotime($date)); ?>" data-week-number="<?php echo $week; ?>">
|
117 |
<article class="mec-event-article"><h4 class="mec-event-title"><?php _e('No Events', 'modern-events-calendar-lite'); ?></h4><div class="mec-event-detail"></div></article>
|
assets/css/backend.css
CHANGED
@@ -20,6 +20,24 @@
|
|
20 |
vertical-align: middle
|
21 |
}
|
22 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
.mec-event-color-container,.mec-event-title-container {
|
24 |
display: inline-block
|
25 |
}
|
@@ -889,13 +907,21 @@ body.post-type-mec-books th.column-author {
|
|
889 |
|
890 |
/* WordPress 3 select */
|
891 |
.mec-form-row select {
|
892 |
-
min-width:
|
893 |
}
|
894 |
|
895 |
.ui-datepicker select {
|
896 |
min-width: 60px;
|
897 |
}
|
898 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
899 |
.mec-book-status-form select {
|
900 |
display: block;
|
901 |
width: 99%;
|
@@ -1107,6 +1133,11 @@ body.post-type-mec-books th.column-author {
|
|
1107 |
margin-bottom: 20px
|
1108 |
}
|
1109 |
|
|
|
|
|
|
|
|
|
|
|
1110 |
#mec_notifications_form label {
|
1111 |
display: inline-block;
|
1112 |
min-width: 160px
|
@@ -4014,6 +4045,20 @@ textarea.mec-import-settings-content {
|
|
4014 |
max-width: 400px;
|
4015 |
}
|
4016 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4017 |
#mec_tickets .button.remove {
|
4018 |
padding: 0;
|
4019 |
min-height: 28px;
|
@@ -5599,6 +5644,11 @@ a.mec-create-shortcode-tabs-link {
|
|
5599 |
padding-right: 20px;
|
5600 |
}
|
5601 |
|
|
|
|
|
|
|
|
|
|
|
5602 |
.mec-calendar-metabox .wn-mec-select {
|
5603 |
border: solid 1px #ddd;
|
5604 |
border-radius: 2px;
|
@@ -5724,6 +5774,10 @@ a.mec-create-shortcode-tabs-link {
|
|
5724 |
vertical-align: top;
|
5725 |
}
|
5726 |
|
|
|
|
|
|
|
|
|
5727 |
.mec-form-row input:disabled {
|
5728 |
opacity: 0.6;
|
5729 |
background: #f6f6f6;
|
@@ -6352,7 +6406,7 @@ input.fserv-input-text {
|
|
6352 |
border-radius: 0;
|
6353 |
position: relative;
|
6354 |
}
|
6355 |
-
.mec-attendees-list-right {
|
6356 |
flex: 1;
|
6357 |
border-radius: 0 0 5px 5px;
|
6358 |
padding: 0 20px 20px;
|
20 |
vertical-align: middle
|
21 |
}
|
22 |
|
23 |
+
.mec-send-email-button {
|
24 |
+
background:#008aff;
|
25 |
+
color:#fff;
|
26 |
+
width: 100%;
|
27 |
+
display: block;
|
28 |
+
text-align: center;
|
29 |
+
font-size: 20px;
|
30 |
+
padding: 10px 0px;
|
31 |
+
margin-top: 18px;
|
32 |
+
font-weight: bold;
|
33 |
+
border-radius: 4px;
|
34 |
+
cursor: pointer;
|
35 |
+
}
|
36 |
+
|
37 |
+
.mec-send-email-button:hover {
|
38 |
+
opacity: 0.9;
|
39 |
+
}
|
40 |
+
|
41 |
.mec-event-color-container,.mec-event-title-container {
|
42 |
display: inline-block
|
43 |
}
|
907 |
|
908 |
/* WordPress 3 select */
|
909 |
.mec-form-row select {
|
910 |
+
min-width: 65px;
|
911 |
}
|
912 |
|
913 |
.ui-datepicker select {
|
914 |
min-width: 60px;
|
915 |
}
|
916 |
|
917 |
+
.mec-form-row input[type=text] {
|
918 |
+
width: 85%;
|
919 |
+
}
|
920 |
+
|
921 |
+
#mec_styles_CSS {
|
922 |
+
max-width: 100%;
|
923 |
+
}
|
924 |
+
|
925 |
.mec-book-status-form select {
|
926 |
display: block;
|
927 |
width: 99%;
|
1133 |
margin-bottom: 20px
|
1134 |
}
|
1135 |
|
1136 |
+
#mec_gateways_form_container .mec-form-row input[type=number],
|
1137 |
+
#mec_gateways_form_container .mec-form-row select {
|
1138 |
+
width: 100%;
|
1139 |
+
}
|
1140 |
+
|
1141 |
#mec_notifications_form label {
|
1142 |
display: inline-block;
|
1143 |
min-width: 160px
|
4045 |
max-width: 400px;
|
4046 |
}
|
4047 |
|
4048 |
+
#mec_ticket_variations_list input[type=text].mec-col-12,
|
4049 |
+
#mec_fees_list input[type=text].mec-col-12{
|
4050 |
+
max-width: 625px;
|
4051 |
+
}
|
4052 |
+
|
4053 |
+
#ticket_variations_option input[type=text].mec-col-12,
|
4054 |
+
#taxes_option .mec-form-row input[type=text].mec-col-12 {
|
4055 |
+
max-width: 554px
|
4056 |
+
}
|
4057 |
+
|
4058 |
+
.mec-booking-tab-content .mec-form-row textarea {
|
4059 |
+
max-width: 762px;
|
4060 |
+
}
|
4061 |
+
|
4062 |
#mec_tickets .button.remove {
|
4063 |
padding: 0;
|
4064 |
min-height: 28px;
|
5644 |
padding-right: 20px;
|
5645 |
}
|
5646 |
|
5647 |
+
.mec-form-row input[type=number],
|
5648 |
+
.mec-form-row input[type=text],
|
5649 |
+
.mec-form-row select,
|
5650 |
+
.mec-form-row textarea,
|
5651 |
+
.mec-form-row.mec-skin-list-date-format-container input[type=text],
|
5652 |
.mec-calendar-metabox .wn-mec-select {
|
5653 |
border: solid 1px #ddd;
|
5654 |
border-radius: 2px;
|
5774 |
vertical-align: top;
|
5775 |
}
|
5776 |
|
5777 |
+
.mec-form-row .mec-col-8 span.mec-archive-skins input[type=text] {
|
5778 |
+
max-width: 225px;
|
5779 |
+
}
|
5780 |
+
|
5781 |
.mec-form-row input:disabled {
|
5782 |
opacity: 0.6;
|
5783 |
background: #f6f6f6;
|
6406 |
border-radius: 0;
|
6407 |
position: relative;
|
6408 |
}
|
6409 |
+
.mec-attendees-list-right, .mec-send-email-form-wrap {
|
6410 |
flex: 1;
|
6411 |
border-radius: 0 0 5px 5px;
|
6412 |
padding: 0 20px 20px;
|
assets/css/backend.min.css
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
-
#mec_location_thumbnail_img img,#mec_organizer_thumbnail_img img,#mec_thumbnail_img img{max-width:250px}.taxonomy-mec_label .column-id,.taxonomy-mec_location .column-id,.taxonomy-mec_organizer .column-id,.taxonomy-mec_speaker .column-id{width:40px}.taxonomy-mec_label .column-primary,.taxonomy-mec_location .column-primary,.taxonomy-mec_organizer .column-primary,.taxonomy-mec_speaker .column-primary{width:250px}.mec-color{margin:10px;width:14px;height:14px;display:inline-block;margin-right:6px;border-radius:20px 20px 20px 20px;vertical-align:middle}.mec-event-color-container,.mec-event-title-container{display:inline-block}.mec-available-color-row{margin-top:15px}.mec-available-color-row .mec-color{cursor:pointer}.mec-widget-container a{text-decoration:none}.mec-widget-container label{padding-right:15px}.mec-util-hidden{display:none}.button.mec-util-hidden{display:none}.wns-be-container{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Oxygen,Roboto,sans-serif;max-width:100%;background-color:#f6f6f6;border:1px solid #c1cad2;box-shadow:0 1px 1px rgba(0,0,0,.04);margin-top:40px;margin-right:15px;overflow:hidden}.wns-be-sidebar{width:260px;float:left;position:relative}.wns-be-sidebar ul.wns-be-group-menu,.wns-be-sidebar ul.wns-be-group-menu li{list-style:none;margin:0}.wns-be-sidebar .wns-be-group-menu li a{display:block;position:relative;outline:0;padding:13px 4px 13px 20px;background:#e0e0e0;background:0 0;border:none;color:#3f454a;font-size:13px;font-weight:600;text-decoration:none;-webkit-transition:none;transition:none}.wns-be-sidebar .wns-be-group-menu li a:hover{background:#fff;color:#008aff;opacity:1}.wns-be-sidebar .wns-be-group-menu>li.active>a,.wns-be-sidebar .wns-be-group-menu>li.active>a:hover{background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff}.wns-be-sidebar .wns-be-group-menu>li.active>a{box-shadow:0 2px 12px -5px #008aff}.wns-be-sidebar .wns-be-group-menu li a:first-child{border-top:none}.wns-be-main{background:#fff;margin-left:260px;border-left:1px solid #dedede;padding-bottom:84px;box-shadow:inset 0 1px 0 #fff;min-height:1120px;position:relative}.wns-be-main .wns-saved-settings{margin:0;border-bottom:1px solid #dedede;background:#dff0d8;color:#468847;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.6)}.wns-be-container .dpr-btn{display:inline-block;font-size:13px;padding:0 16px 1px;height:36px;margin-right:3px;line-height:35px;color:#555;border:1px solid #ccc;background:#f7f7f7;text-decoration:none;transition:.24s all ease;-webkit-transition:.24s all ease}.wns-be-container .dpr-btn:hover{background:#fcfcfc;border-color:#999;color:#303030}.wns-be-container .dpr-btn.dpr-save-btn{color:#fff;font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s}.wns-be-container .dpr-btn.dpr-save-btn:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5);cursor:pointer}.wns-be-container .wns-be-group-tab h2,.wns-be-container .wns-be-group-tab h4{color:#000;margin-bottom:25px;padding:15px;background:#f5f5f5;font-size:21px;line-height:23px;letter-spacing:.4px;font-weight:700;position:relative}.wns-be-container .wns-be-group-tab h2{margin-top:10px}.wns-be-container .wns-be-group-tab h2:before,.wns-be-container .wns-be-group-tab h4:before{content:"";width:4px;height:16px;margin-right:5px;background-color:#008aff;display:block;position:absolute;left:0;top:18px}.wns-be-container .wns-be-group-tab h4:before{width:2px;top:16px}.wns-be-container .wns-be-group-tab h4{font-size:16px;font-weight:600;background:#f8f8f8;border:none;padding:12px 15px 12px 15px}.wns-be-container .wns-be-group-tab p{font-size:13px;color:#888}.wns-be-sidebar .wns-be-group-tab-link-a:hover{cursor:pointer}.wns-be-sidebar .wns-be-group-tab-link-a span{display:block}.wns-be-sidebar .wns-be-group-tab-link-a span.wns-be-group-menu-title{padding-left:24px}.wns-be-sidebar li.active ul.subsection{padding-top:8px;padding-bottom:12px;background:#fff;border-bottom:1px solid #dedede;margin:0}.wns-be-sidebar li .subsection a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 46px}.wns-be-sidebar li .subsection a:hover{background:#f6f6f6;color:#222}.wns-be-sidebar .wns-be-group-menu li .subsection li.active a{color:#008aff}.wns-be-sidebar .wns-be-group-menu li .subsection li.active a:after,.wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;right:-1px;top:10px}.wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{border-right-color:#c5c5c5;right:0}.wns-be-sidebar li a i{color:#a0abb5;vertical-align:middle;font-size:18px;position:absolute;margin-top:0;margin-left:-4px}.wns-be-sidebar .wns-be-group-menu li.active>a i{color:#fff}.wns-be-sidebar .has-sub span.extra-icon{display:inline-block;float:right;padding:4px 7px 4px;margin-left:4px;margin-right:10px;font-family:sans-serif;font-size:9px;font-weight:600;line-height:9px;border-radius:10px;-moz-border-radius:10px;-webkit-border-radius:10px;border:0 solid transparent}.wns-be-sidebar .has-sub span.extra-icon i{margin-left:-3px;margin-top:2px;color:#bac6d0;font-size:10px}.wns-be-sidebar .wns-be-group-tab-link-a span.extra-icon i{right:10px;font-size:10px}.wns-be-sidebar .wns-be-group-menu li.active>a span.extra-icon i{margin-top:1px}.wns-be-container #wns-be-footer{border-top:1px solid #dedede;z-index:999;padding:25px 20px 20px;background:#fafafa!important;height:44px;text-align:right}.wns-be-container #wns-be-content{padding:5px 40px 40px}.wns-be-container #wns-be-infobar{background:#fff;border-bottom:1px solid #dedede;padding:20px;text-align:right;box-shadow:inset 0 1px 0 #fcfcfc;height:79px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;position:relative}.wns-be-container #wns-be-infobar:before{content:"";width:261px;height:78px;display:block;position:absolute;left:0;top:0;background:#fff url(../img/webnus-logo.png) no-repeat center;border-bottom:1px solid #dedede;background-size:220px;z-index:997}.wns-be-container .notice-yellow{margin:0;border-bottom:1px solid #dedede;background-color:#fcf8e3;color:#c09853;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.5)}.wns-be-container .notice-red,.wns-be-container .wns-be-field-errors{margin:0;border-bottom:1px solid #dedede;background-color:#f2dede;color:#b94a48;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.5)}@media(max-width:480px){a.dpr-btn.dpr-save-btn{display:block!important;text-align:center!important;margin-top:20px!important}.mec-search-settings-wrap{margin-top:73px!important;text-align:center!important;display:block!important}#mec-search-settings{margin:0!important;width:100%!important}.wns-be-container #wns-be-infobar{height:auto!important}}body.post-type-mec-events th.column-primary{width:35%}body.post-type-mec-events th.column-start_date{width:100px}body.post-type-mec-events th.column-end_date{width:100px}body.post-type-mec-events th.column-repeat{width:75px}body.post-type-mec-events th.column-author{width:150px}body.post-type-mec-books th.column-primary{width:20%}body.post-type-mec-books th.column-event{width:170px}body.post-type-mec-books th.column-bdate{width:120px}body.post-type-mec-books th.column-confirmation{width:120px}body.post-type-mec-books th.column-verification{width:120px}body.post-type-mec-books th.column-author{width:150px}.mec-meta-box-labels-container .mec-form-row{height:100px;overflow:auto}.mec-tooltip{display:inline;position:relative;margin-right:10px;cursor:help;bottom:5px;left:3px}.mec-tooltip:last-child{margin-right:0}.mec-tooltip:hover:after{background:#313130;border-radius:5px;bottom:24px;color:#fff;content:attr(title);left:-75px;padding:10px;position:absolute;z-index:98;width:240px}.mec-tooltip:hover:before{border:solid;border-color:#313130 transparent;border-width:6px 6px 0;bottom:18px;content:"";left:30%;position:absolute;z-index:99}.mec-tooltip .dashicons-before:before{font-size:24px;color:#40d9f1;line-height:37px}.mec-tooltip a:focus{box-shadow:none}.mec-form-row .bootstrap_unvalid{display:block;border:2px solid red;position:relative;display:inline-block;border-bottom:1px dotted #000}.mec-tooltiptext{visibility:hidden;width:120px;background-color:red;color:#fff;text-align:center;border-radius:6px;padding:5px 0;position:absolute;z-index:1}.ui-datepicker{background-color:#fff;border:1px solid #66afe9;border-radius:4px;box-shadow:0 0 8px rgba(102,175,233,.6);display:none;margin-top:4px;padding:10px;width:240px}.ui-datepicker a,.ui-datepicker a:hover{text-decoration:none;cursor:pointer}.ui-datepicker a:hover,.ui-datepicker td:hover a{color:#2c6396;-webkit-transition:color .1s ease-in-out;-moz-transition:color .1s ease-in-out;-o-transition:color .1s ease-in-out;transition:color .1s ease-in-out}.ui-datepicker .ui-datepicker-header{margin-bottom:4px;text-align:center}.ui-datepicker .ui-datepicker-title{font-weight:700}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{cursor:default;font-family:dashicons;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;height:20px;line-height:1.4;margin-top:2px;width:20px}.ui-datepicker .ui-datepicker-prev{float:left;text-align:left}.ui-datepicker .ui-datepicker-next{float:right;text-align:center}.ui-datepicker .ui-datepicker-prev:before{content:"\f341"}.ui-datepicker .ui-datepicker-next:before{content:"\f345"}.ui-datepicker .ui-icon{display:none}.ui-datepicker .ui-datepicker-calendar{table-layout:fixed;width:100%}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker .ui-datepicker-calendar th{text-align:center;padding:4px 0}.ui-datepicker .ui-datepicker-calendar td{border-radius:4px;-webkit-transition:background-color .1s ease-in-out,color .1s ease-in-out;-moz-transition:background-color .1s ease-in-out,color .1s ease-in-out;-o-transition:background-color .1s ease-in-out,color .1s ease-in-out;transition:background-color .1s ease-in-out,color .1s ease-in-out}.ui-datepicker .ui-datepicker-calendar td:hover{background-color:#eee;cursor:pointer}.ui-datepicker .ui-datepicker-calendar td a{text-decoration:none}.ui-datepicker .ui-datepicker-current-day{background-color:#4289cc}.ui-datepicker .ui-datepicker-current-day a{color:#fff}.ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover{background-color:#fff;cursor:default}.mec-col-1,.mec-col-10,.mec-col-11,.mec-col-12,.mec-col-2,.mec-col-3,.mec-col-4,.mec-col-5,.mec-col-6,.mec-col-7,.mec-col-8,.mec-col-9{position:relative;min-height:1px;padding:0;margin:0 1% 0 0}@media (min-width:783px){.mec-col-1,.mec-col-10,.mec-col-11,.mec-col-12,.mec-col-2,.mec-col-3,.mec-col-4,.mec-col-5,.mec-col-6,.mec-col-7,.mec-col-8,.mec-col-9{float:left}.mec-col-12{width:99%}.mec-col-11{width:90.66666667%}.mec-col-10{width:82.33333333%}.mec-col-9{width:74%}.mec-col-8{width:65.66666667%}.mec-col-7{width:57.33333333%}.mec-col-6{width:49%}.mec-col-5{width:40.66666667%}.mec-col-4{width:32.33333333%}.mec-col-3{width:24%}.mec-col-2{width:15.66666667%}.mec-col-1{width:7.33333333%}}#mec_reg_form_fields{background:#eee;padding:20px}#mec_reg_form_fields li{margin:4px;border-radius:2px;padding:20px 34px 24px;background:#fff;position:relative;transition:all .3s ease}#mec_reg_form_fields li ul{padding-top:15px;padding-bottom:15px;margin:1px}#mec_reg_form_fields li ul li{padding:7px 30px 7px 46px}#mec_reg_form_fields span.mec_reg_field_type{font-size:11px;font-weight:600;color:#8a8a8a;text-transform:uppercase;letter-spacing:2px}#mec_reg_form_fields span.mec_reg_field_option_sort,#mec_reg_form_fields span.mec_reg_field_remove,#mec_reg_form_fields span.mec_reg_field_sort{font-size:0;color:#fff}#mec_reg_form_fields span.mec_reg_field_remove{position:absolute;right:0;top:0}#mec_reg_form_fields span.mec_reg_field_option_sort:before,#mec_reg_form_fields span.mec_reg_field_remove:before,#mec_reg_form_fields span.mec_reg_field_sort:before{position:absolute;left:10px;top:20px;width:80px;height:20px;display:block;cursor:move;font-family:simple-line-icons;content:"\e023";font-size:18px;color:#888}#mec_reg_form_fields span.mec_reg_field_remove:before{content:"\e082";width:20px;height:20px;left:auto;right:15px;color:#f96666;cursor:pointer}#mec_reg_form_fields span.mec_reg_field_option_sort:before{font-size:13px;left:2px;top:23px;width:14px;height:14px}#mec_reg_form_fields li ul li span.mec_reg_field_remove{right:auto;left:60px;top:2px}#mec_reg_form_fields p.mec_reg_field_options{margin:6px 0 8px}#mec_reg_form_fields input[type=number],#mec_reg_form_fields input[type=text],#mec_reg_form_fields select,#mec_reg_form_fields textarea{min-width:260px;min-height:34px;margin-bottom:7px;margin-top:7px}#mec_reg_form_fields textarea{min-height:66px}#mec_reg_form_field_types button,#mec_reg_form_fields button{position:relative;outline:0;background:#fff;border:1px solid #e2e2e2;border-radius:50px;padding:11px 21px 11px 31px;line-height:1;font-size:11px;font-weight:600;color:#444;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 0 3px rgba(0,0,0,.03)}#mec_reg_form_field_types button:hover,#mec_reg_form_fields button:hover{border-color:#008aff;box-shadow:0 0 7px rgba(0,0,0,.1)}#mec_reg_form_field_types button:before,#mec_reg_form_fields button:before{position:absolute;left:12px;color:#008aff;content:"\e095";font-family:simple-line-icons;font-size:13px;display:inline-block}#mec_reg_form_field_types button.red:hover,#mec_reg_form_fields button.red:hover{border-color:red;box-shadow:0 0 7px rgba(0,0,0,.1)}#mec_reg_form_field_types button.red:before,#mec_reg_form_fields button.red:before{position:absolute;left:12px;color:red;content:"\e095";font-family:simple-line-icons;font-size:13px;display:inline-block}@media (max-width:768px){#mec_reg_form_fields input[type=number],#mec_reg_form_fields input[type=text],#mec_reg_form_fields select,#mec_reg_form_fields textarea{min-width:80px;width:100%}}.mec-form-row{margin:0 auto 16px}.mec-options-fields{padding-top:25px;overflow:hidden;animation:fadeEffect .31s}#mec_booking_form .mec-options-fields,#mec_modules_form .mec-options-fields,#mec_notifications_form .mec-options-fields,#mec_settings_form .mec-options-fields,#mec_single_form .mec-options-fields{display:none}.mec-options-fields.active{display:block!important}@keyframes fadeEffect{from{opacity:0;margin-left:12px}to{opacity:1;margin-left:0}}.mec-form-row:after,.mec-form-row:before{content:" ";display:table}.mec-form-row:after{clear:both}.mec-form-row input[type=number],.mec-form-row input[type=text],.mec-form-row select,.mec-form-row textarea{height:38px;box-sizing:border-box;margin-bottom:8px;padding:0 6px;box-shadow:none;border-radius:2px;box-shadow:inset 0 1px 5px rgba(0,0,0,.05)}.mec-form-row input[type=radio]{margin:5px 0}.mec-form-row select{margin-top:1px}.mec-form-row select{min-width:50px}.ui-datepicker select{min-width:60px}.mec-book-status-form select{display:block;width:99%;margin-top:10px;margin-bottom:10px}.mec-form-row label{margin:10px 0}.mec-form-row input[type=checkbox]{background-color:#fafafa;border:1px solid #cacece;box-shadow:0 1px 2px rgba(0,0,0,.05),inset 0 -15px 10px -12px rgba(0,0,0,.05);padding:9px;border-radius:3px;min-width:20px;min-height:20px;display:inline-block}.mec-form-row input[type=checkbox]:checked{box-shadow:0 3px 11px -4px #008aff;border-color:#008aff;background:#fff}.mec-form-row input[type=checkbox]:checked:before{color:#008aff;width:20px;font:400 24px/1 dashicons}.mec-form-row .mec-col-4 input[type=number],.mec-form-row .mec-col-4 input[type=text],.mec-form-row .mec-col-4 select,.mec-form-row .mec-col-4 textarea{width:75%}.mec-form-row .description{display:inline-block;border-left:1px dashed #ccc;margin-left:12px;line-height:32px;padding-left:12px;margin-top:5px;color:#555}.mec-form-row .description code{font-style:normal}.mec-form-row .time-dv{font-size:14px;font-weight:700}.mec-meta-box-fields{margin:30px 10px}.mec-meta-box-fields>.mec-meta-box-fields{margin-left:0}.mec-meta-box-fields .mec-title{margin:5px 0}.mec-meta-box-fields h4.mec-title{margin:40px 0 16px}.mec-meta-box-fields .mec-dashicons{font-size:20px;line-height:22px;color:#008aff}.mec-form-row .mec-box,.mec-meta-box-fields .mec-box{background:#f7f7f7;padding:10px;margin:10px 0;border-radius:2px;border:1px solid #e6e6e6}.mec-form-row .mec-box{max-width:960px}.mec-form-row .mec-box .button,.mec-meta-box-fields .mec-box .button{float:right}#mec_gateways_form .mec-form-row:first-child,#mec_notifications_form_container .mec-form-row:nth-child(2){overflow:hidden}#mec_gateways_form .mec-tooltip{float:right}.mec-container{background:#fff;padding:15px}.nav-tab-active{background:#fff;border-bottom:1px solid #fff}#mec_social_networks .mec-form-row{margin-bottom:0}#mec_gateways_form h4,.mec-meta-box-fields h4,.mec-options-fields h4,h4.mec-form-subtitle{text-transform:capitalize;border-bottom:1px solid #e5e5e5;padding-bottom:6px;margin:40px 0 16px;font-size:15px;font-weight:600}#mec_gateways_form h4{margin-bottom:0}#mec_styles_form #mec_styles_CSS{height:200px;margin-bottom:5px;font-family:Consolas,Monaco,monospace;font-size:13px;width:97%;background:#f9f9f9;outline:0}#mec_calendar_filter .description,#mec_styles_form .description{max-width:500px;display:block;margin:0 0 5px 0;padding:0;border:none}.mec-sed-methods li{display:inline-block;padding:8px 12px;border:1px solid #ddd;margin:0 5px 5px 0;cursor:pointer;border-radius:3px;box-shadow:0 2px 15px -2px rgba(0,0,0,.1)}.mec-sed-methods li:hover{border-color:#008aff}.mec-sed-methods li.active{border-color:#008aff;background-color:#fff;color:#008aff;font-weight:600;cursor:default;box-shadow:0 0 4px rgba(1,138,255,.3) inset}.mec-switcher input+label{display:block;position:relative;cursor:pointer;outline:0;padding:2px;width:38px;height:22px;background-color:#ddd;border-radius:60px}.mec-switcher input:checked+label{background-color:#008aff;box-shadow:0 3px 22px -6px #008aff}.mec-switcher input:checked+label:after{margin-left:16px}#mec_gateways_form input[type=text],#mec_gateways_form select,#mec_gateways_form textarea{width:calc(100% - 30px)}#mec_gateways_form textarea{min-height:65px}#mec_gateways_form li .mec-gateway-options-form,#payment_gateways_option li .mec-gateway-options-form{padding:15px 20px;background-color:#f7f7f7;border-left:6px solid #e3e3e3;margin-bottom:20px}#mec_notifications_form label{display:inline-block;min-width:160px}#mec_notifications_form input[type=text],#mec_notifications_form select{min-width:300px}@media (max-width:536px){#mec_notifications_form input[type=text],#mec_notifications_form select{min-width:100%}}#mec_notifications_form .wp-editor-container{margin-bottom:45px}#mec_notifications_form ul li:last-child .wp-editor-container{margin-bottom:0}#mec_messages_form_container ul li label{display:block;font-weight:700}#mec_messages_form_container ul li input{display:block;width:100%}.mec-message-categories li.mec-acc-label{font-size:15px;font-weight:600;padding:25px 30px;cursor:pointer;background-color:#fff;border:none;border-bottom:1px solid #e6e6e6;margin:0;letter-spacing:.5px;position:relative}.mec-message-categories ul{margin:15px 5px}.webnus-icons-list li{width:40px;display:inline-block;list-style:none;padding:0}.webnus-icons-list input{visibility:hidden;margin:0;padding:0;width:1px;height:1px;-moz-opacity:0;-khtml-opacity:0;opacity:0;cursor:pointer}.webnus-icons-list li label{color:#777;display:inline-block!important;float:none!important;width:33px!important;text-align:center;font-size:23px!important;font-weight:400!important;padding:5px 0!important;border:1px solid #eee!important}.mec-webnus-icon{float:left;margin-right:10px}.mec-webnus-icon i{font-size:24px;color:#222}.mec-accordion ul{display:none}.mec-switcher input{position:absolute;margin-left:-9999px;visibility:hidden}.mec-switcher input+label{display:block;position:relative;cursor:pointer;outline:0;padding:2px;width:50px;height:22px;background-color:#ddd;border-radius:60px}.mec-switcher input+label:after,.mec-switcher input+label:before{display:block;position:absolute;top:1px;left:1px;bottom:1px;content:""}.mec-switcher input+label:before{right:1px;background-color:#f1f1f1;border-radius:60px;transition:background .4s}.mec-switcher input+label:after{width:24px;background-color:#fff;border-radius:100%;box-shadow:0 2px 3px rgba(0,0,0,.1);transition:margin .4s}.wns-be-group-tab .mec-switcher input[value="1"]+label,.wns-be-group-tab .mec-switcher input[value="1"]+label:before{background-color:#008aff;background:linear-gradient(95deg,#4dacfd 0,#0d90ff 50%,#008aff 100%);box-shadow:0 3px 11px -7px #008aff}.wns-be-group-tab .mec-switcher input[value="1"]+label:after{margin-left:28px}.mec-switcher input:checked+label{box-shadow:0 3px 11px -7px #008aff}.mec-switcher input:checked+label:before{background-color:#008aff;background:linear-gradient(95deg,#4dacfd 0,#0d90ff 50%,#008aff 100%)}.mec-switcher input:checked+label:after{margin-left:28px}.mec-switcher label{display:block}.mec-sed-methods li{display:inline-block;padding:10px;border:1px solid #ddd;margin:0 5px 5px 0;cursor:pointer}#wpwrap .mec-button-primary{border-bottom:none;letter-spacing:.5px;line-height:18px;height:46px;transition:all .5s ease;color:#fff;padding:12px 25px;display:block;text-align:center;font-size:14px;background:0 0;background-color:#008aff;text-shadow:none;border:0;box-shadow:none;display:inline-block;margin:25px 0 12px;min-width:146px}#wpwrap .mec-button-primary:hover{background-color:#41c9de}#wpwrap .mec-button-primary.loading{background-color:#73c02a}#wpwrap .mec-button-primary:before{content:"\f00c";font-family:fontawesome;margin-right:4px;font-size:16px;display:none}#wpwrap .mec-button-primary.loading:before{display:inline-block}.mec-image-select-wrap{clear:both;overflow:hidden;padding:10px 0;margin:0}.mec-image-select-wrap li{float:left;display:block;margin-right:15px;margin-bottom:15px}.mec-image-select-wrap li input{display:none}.mec-image-select-wrap li span{width:35px;height:35px;display:block;margin:3px;border-radius:2px;border:3px solid transparent;transition:all .2s ease}.mec-image-select-wrap li input:checked+span{border-color:#fff;box-shadow:0 0 14px rgba(0,0,0,.25)}.mec-image-select-wrap li input:checked+span:after{content:"\f00c";font-family:fontawesome;font-size:20px;display:inline-block;color:#fff;padding:8px;max-width:100%;max-height:100%}.m-e-calendar_page_MEC-ix #wpwrap .mec-button-primary.mec-btn-2{margin:0 0 0 12px}.m-e-calendar_page_MEC-ix #wpwrap input[type=file]{padding-top:12px;padding-bottom:12px}.m-e-calendar_page_MEC-ix #wpwrap .mec-form-row select{min-height:46px}.mec-image-select-wrap .mec-colorskin-1{background-color:#40d9f1}.mec-image-select-wrap .mec-colorskin-2{background-color:#0093d0}.mec-image-select-wrap .mec-colorskin-3{background-color:#e53f51}.mec-image-select-wrap .mec-colorskin-4{background-color:#f1c40f}.mec-image-select-wrap .mec-colorskin-5{background-color:#e64883}.mec-image-select-wrap .mec-colorskin-6{background-color:#45ab48}.mec-image-select-wrap .mec-colorskin-7{background-color:#9661ab}.mec-image-select-wrap .mec-colorskin-8{background-color:#0aad80}.mec-image-select-wrap .mec-colorskin-9{background-color:#0ab1f0}.mec-image-select-wrap .mec-colorskin-10{background-color:#ff5a00}.mec-image-select-wrap .mec-colorskin-11{background-color:#c3512f}.mec-image-select-wrap .mec-colorskin-12{background-color:#55606e}.mec-image-select-wrap .mec-colorskin-13{background-color:#fe8178}.mec-image-select-wrap .mec-colorskin-14{background-color:#7c6853}.mec-image-select-wrap .mec-colorskin-15{background-color:#bed431}.mec-image-select-wrap .mec-colorskin-16{background-color:#2d5c88}.mec-image-select-wrap .mec-colorskin-17{background-color:#77da55}.mec-image-select-wrap .mec-colorskin-18{background-color:#2997ab}.mec-image-select-wrap .mec-colorskin-19{background-color:#734854}.mec-image-select-wrap .mec-colorskin-20{background-color:#a81010}.mec-image-select-wrap .mec-colorskin-21{background-color:#4ccfad}.mec-image-select-wrap .mec-colorskin-22{background-color:#3a609f}@media screen and (max-width:782px){.mec-form-row .description{max-width:500px;display:block;margin:0 0 5px 0;padding:0;border:none}.mec-col-1,.mec-col-10,.mec-col-11,.mec-col-12,.mec-col-2,.mec-col-3,.mec-col-4,.mec-col-5,.mec-col-6,.mec-col-7,.mec-col-8,.mec-col-9{margin-bottom:5px;display:block}.mec-form-row .mec-box .button,.mec-meta-box-fields .mec-box .button{float:left}.mec-form-row .time-dv{padding:0 4px}.mec-form-row .mec-col-4 input[type=text],.mec-form-row .mec-col-4 select{width:auto;min-width:192px}.mec-tooltip .dashicons-before:before{font-size:32px}}#frmb-0-clear-all,#frmb-0-save,#frmb-0-view-data{display:none}#mec_sn_googlecal{margin-bottom:0}#mec_fee_row1 .button{margin-right:10px}h4.mec-form-subtitle{font-size:15px;margin-top:0}h5.mec-form-second-title{font-size:15px;margin-top:0}#webnus-dashboard *{box-sizing:border-box}#webnus-dashboard.about-wrap{max-width:1240px;margin:25px auto 20px}#webnus-dashboard .change-log{word-wrap:break-word}#webnus-dashboard .welcome-head img{border:none}.w-welcome{position:relative;margin-top:30px;margin-bottom:10px}.w-box{position:relative;background:#fff;padding:5px 25px;margin-top:30px}.w-theme-version{box-shadow:0 3px 30px -4px #40d8f0;text-shadow:none;background:#40d8f0;background:linear-gradient(95deg,#40d8f0 0,#2dd1ea 50%,#13cbe8 100%);text-align:center;display:block;padding:10px 0;color:#fff;font-weight:600;margin-top:10px;border-radius:2px}.w-box{padding:0;min-height:310px;box-shadow:0 1px 16px rgba(0,0,0,.034);border-radius:2px}.w-box-head{font-weight:600;padding:20px 72px;position:relative;border-bottom:2px solid #008aff;font-size:20px}.w-box-head span{position:absolute;left:0;padding:0 25px;line-height:58px;background:#008aff;height:100%;top:0;color:#fff}.w-box-child,.w-box-content{padding:18px;line-height:24px;font-size:14px}.mec-count-child{width:50%;margin:0 auto}#webnus-dashboard .w-button a{color:#fff!important;border-radius:0;padding:10px 24px;font-size:12px;letter-spacing:1px;font-weight:600;background:#008aff;margin:10px 0;display:inline-block;text-transform:uppercase}#webnus-dashboard .w-box .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}.w-system-info{margin-bottom:7px}.w-system-info:first-child{margin-top:20px}.w-system-info>span{display:inline-block;min-width:145px;line-height:20px;font-size:13px}#webnus-dashboard .w-current{min-width:110px}#webnus-dashboard .w-min{min-width:65px}.w-icon{color:#fff;padding:3px;border-radius:4px;margin-right:10px;vertical-align:middle}.w-icon-green{background:#27ae60}.w-icon-red{background:#e74c3c}.extra .w-box-head{padding:20px;border-bottom:1px solid #ededed}.doc .w-box-head{color:#4cbf67}#webnus-dashboard .doc .w-button a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);margin:35px 0 17px;box-shadow:0 5px 10px -5px #4cbf67;background-color:#fff}#webnus-dashboard .support .w-button a{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);margin:13px 0 18px;box-shadow:0 5px 10px -5px #ff876c}.doc .w-box-content{background:url(../img/document.png) no-repeat right center}.doc .w-box-content p,.w-box.support .w-box-content p{width:54%;color:#666;margin-top:10px;max-width:380px}.w-box-child p{color:#666;margin-top:10px}.w-box.support{background:#fff url(../img/support.png) no-repeat top right}.w-box.support .w-box-head{width:50%;color:#ff876c}.w-box-content pre{text-align:left;background:#f5f5f5;font-size:13px;padding:20px 25px;height:480px;overflow-y:scroll}.w-box.change-log .w-box-head{color:#01c6d9}#webnus-dashboard .button:not(.mec-intro-section-link-tag){border:0;background:0 0;box-shadow:none;color:#e74c3c;font-weight:700}.w-box .state{position:absolute;top:0;left:-100vw}#webnus-dashboard .button:hover{color:#222}.w-box .state:checked~.content{-webkit-transform:none;-ms-transform:none;transform:none}.w-box .state:checked~.backdrop{bottom:0;opacity:1;z-index:1}.w-box .lightbox{position:fixed;top:0;right:0;left:0;height:0;padding:0 20px}.w-box .lightbox .content{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;overflow:hidden;position:relative;z-index:2;max-width:500px;max-height:95vh;margin:20px auto;padding:20px;background:#fff;-webkit-transform:translateY(-200%);-ms-transform:translateY(-200%);transform:translateY(-200%);-webkit-transition:.3s -webkit-transform ease-in-out;transition:.3s transform ease-in-out;border:1px solid rgba(0,0,0,.1)}.w-box .lightbox .main{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1}.w-box .lightbox .backdrop{position:fixed;z-index:-1;top:0;right:0;bottom:100%;left:0;opacity:0;background:rgba(0,0,0,.3);-webkit-transition:.3s opacity ease-in-out;transition:.3s opacity ease-in-out}.content .main p{color:#bf3737}p.mec_dash_count{font-size:60px;font-weight:600;margin:0;color:#01c6d9}.w-col-sm-3 .w-box.doc{text-align:center;min-height:auto}.w-Knowledgebase{color:#8e5cea}.mec-view-all-articles a{margin:30px 0 17px;display:inline-block;color:#fff!important;border-radius:0;padding:10px 24px;font-size:12px;letter-spacing:1px;font-weight:600;background:#8e5cea;display:inline-block;text-transform:uppercase;transition:all .24s ease;-webkit-transition:all .24s ease}.mec-view-all-articles a:hover{background-color:#222}.w-box.upcoming-events .mec-event-article{margin-bottom:22px;border-bottom:1px solid #eee;padding-bottom:16px}.w-box.upcoming-events .mec-event-article .mec-event-date{font-size:14px;color:#666}.w-box.upcoming-events .mec-event-article .mec-event-date span{font-weight:600;margin-right:4px}.w-box.upcoming-events .mec-event-article h4.mec-event-title{margin:0;font-size:15px}.w-box.upcoming-events .mec-event-article .mec-event-detail{font-size:13px;color:#999}.w-box.upcoming-events .mec-event-article .mec-detail-button{font-size:10px;font-weight:600;letter-spacing:1px;padding:4px 12px;background:#f2f2f2;float:right}.w-box.total-bookings ul li{display:inline-block;padding:4px 12px;background:#f1f1f1;margin-right:5px;border-radius:3px}.w-box.total-bookings ul li.selected{background:#fff;border:1px solid #e9e9e9}.info-msg,.mec-error,.mec-success,.warning-msg{margin:10px 0;padding:10px;border-radius:3px 3px 3px 3px}.info-msg{color:#059;background-color:#bef}.info-msg-link{background:#fff;padding:4px 12px 6px;border-radius:3px;line-height:1;font-weight:600;color:#008aff}.mec-success{color:#270;background-color:#dff2bf}.warning-msg{color:#9f6000;background-color:#feefb3}.mec-error{color:#d8000c;background-color:#ffbaba}.mec-certain-day>div,.mec-select-deselect-actions li,.mec-xi-facebook-import-events .mec-select-deselect-actions li,.mec-xi-google-import-events .mec-select-deselect-actions li{display:inline-block;position:relative;outline:0;background:#fff;border:1px solid #e2e2e2;border-radius:50px;padding:11px 21px 11px 21px;line-height:1;font-size:11px;font-weight:600;color:#444;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 0 3px rgba(0,0,0,.03)}.mec-certain-day>div:hover,.mec-select-deselect-actions li:hover,.mec-xi-facebook-import-events .mec-select-deselect-actions li:hover,.mec-xi-google-import-events .mec-select-deselect-actions li:hover{border-color:#008aff;box-shadow:0 0 7px rgba(0,0,0,.1)}.mec-not-in-days-remove{border:1px solid #ff4b64;border-radius:20px;padding:0 0 0 1px;color:#ff4b64;width:11px;height:12px;text-align:center;line-height:12px;display:inline-block;margin-right:-5px;margin-left:6px}div#mec_not_in_days_row2:hover{border-color:#e2e2e2!important;box-shadow:none!important}.mec-xi-facebook-import-events .mec-success,.mec-xi-google-import-events .mec-success{width:460px}.mec-xi-facebook-import-events .mec-select-deselect-actions li,.mec-xi-google-import-events .mec-select-deselect-actions li{display:inline-block;cursor:pointer}.lity-content>div{overflow:auto}.mce-mec-mce-items{text-transform:capitalize!important}#mec_setting_contextual li{list-style:none!important;font-size:12px;margin:0;padding:6px}.mec-bbf-field-container{margin-bottom:10px}.mec-bbf-field-container label{display:block}.kc-components ul.kc-components-list li .cpicon.mec-kingcomposer-icon,.kc-element-icon .cpicon.mec-kingcomposer-icon{background:url(../img/ico-mec-vc.png) no-repeat center center;background-size:auto;background-repeat:no-repeat}.mec-archive-skinsm.mec-category-skins,.mec-carousel-archive-link,.mec-carousel-head-text,.mec-toggle-month-divider{display:none}span.mec-archive-skins,span.mec-category-skins{margin-left:10px;vertical-align:text-bottom}.mec-archive-skins input,.mec-archive-skins select,.mec-category-skins input,.mec-category-skins select{min-width:225px;vertical-align:baseline}#mec_settings_default_skin_archive,#mec_settings_default_skin_category{min-width:225px}.w-welcome p span{background:#fff;padding:4px 10px}#mec_masonry_skin_options_container .mec-form-row .description{margin-left:0;padding-left:0;border:none;margin-top:-4px}@media (max-width:1280px){span.mec-archive-skins,span.mec-category-skins{margin-left:0}}/*!
|
2 |
* Bootstrap v3.3.7 (http://getbootstrap.com)
|
3 |
* Copyright 2011-2016 Twitter, Inc.
|
4 |
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
5 |
-
*/#webnus-dashboard button,#webnus-dashboard input,#webnus-dashboard select,#webnus-dashboard textarea{font-family:inherit;font-size:inherit;line-height:inherit}#webnus-dashboard a{color:#337ab7;text-decoration:none}#webnus-dashboard a:focus,#webnus-dashboard a:hover{color:#23527c}#webnus-dashboard a:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}#webnus-dashboard figure{margin:0}#webnus-dashboard img{vertical-align:middle}.w-img-responsive{display:block;max-width:100%;height:auto}.w-img-rounded{border-radius:6px}.w-img-thumbnail{padding:4px;line-height:1w-42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all 0w-2s ease-in-out;-o-transition:all 0w-2s ease-in-out;transition:all 0w-2s ease-in-out;display:inline-block;max-width:100%;height:auto}.w-img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.w-sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.w-sr-only-focusable:active,.w-sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.w-container,.w-container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}[role=button]{cursor:pointer}@media (min-width:768px){.w-container{width:750px}}@media (min-width:992px){.w-container{width:970px}}@media (min-width:1200px){.w-container{width:1170px}}.w-row{margin-left:-15px;margin-right:-15px}.w-col-lg-1,.w-col-lg-10,.w-col-lg-11,.w-col-lg-12,.w-col-lg-2,.w-col-lg-3,.w-col-lg-4,.w-col-lg-5,.w-col-lg-6,.w-col-lg-7,.w-col-lg-8,.w-col-lg-9,.w-col-md-1,.w-col-md-10,.w-col-md-11,.w-col-md-12,.w-col-md-2,.w-col-md-3,.w-col-md-4,.w-col-md-5,.w-col-md-6,.w-col-md-7,.w-col-md-8,.w-col-md-9,.w-col-sm-1,.w-col-sm-10,.w-col-sm-11,.w-col-sm-12,.w-col-sm-2,.w-col-sm-3,.w-col-sm-4,.w-col-sm-5,.w-col-sm-6,.w-col-sm-7,.w-col-sm-8,.w-col-sm-9,.w-col-xs-1,.w-col-xs-10,.w-col-xs-11,.w-col-xs-12,.w-col-xs-2,.w-col-xs-3,.w-col-xs-4,.w-col-xs-5,.w-col-xs-6,.w-col-xs-7,.w-col-xs-8,.w-col-xs-9{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.w-col-xs-1,.w-col-xs-10,.w-col-xs-11,.w-col-xs-12,.w-col-xs-2,.w-col-xs-3,.w-col-xs-4,.w-col-xs-5,.w-col-xs-6,.w-col-xs-7,.w-col-xs-8,.w-col-xs-9{float:left}.w-col-xs-12{width:100%}.w-col-xs-11{width:91.66666667%}.w-col-xs-10{width:83.33333333%}.w-col-xs-9{width:75%}.w-col-xs-8{width:66.66666667%}.w-col-xs-7{width:58.33333333%}.w-col-xs-6{width:50%}.w-col-xs-5{width:41.66666667%}.w-col-xs-4{width:33.33333333%}.w-col-xs-3{width:25%}.w-col-xs-2{width:16.66666667%}.w-col-xs-1{width:8w-33333333%}.w-col-xs-pull-12{right:100%}.w-col-xs-pull-11{right:91.66666667%}.w-col-xs-pull-10{right:83.33333333%}.w-col-xs-pull-9{right:75%}.w-col-xs-pull-8{right:66.66666667%}.w-col-xs-pull-7{right:58.33333333%}.w-col-xs-pull-6{right:50%}.w-col-xs-pull-5{right:41.66666667%}.w-col-xs-pull-4{right:33.33333333%}.w-col-xs-pull-3{right:25%}.w-col-xs-pull-2{right:16.66666667%}.w-col-xs-pull-1{right:8w-33333333%}.w-col-xs-pull-0{right:auto}.w-col-xs-push-12{left:100%}.w-col-xs-push-11{left:91.66666667%}.w-col-xs-push-10{left:83.33333333%}.w-col-xs-push-9{left:75%}.w-col-xs-push-8{left:66.66666667%}.w-col-xs-push-7{left:58.33333333%}.w-col-xs-push-6{left:50%}.w-col-xs-push-5{left:41.66666667%}.w-col-xs-push-4{left:33.33333333%}.w-col-xs-push-3{left:25%}.w-col-xs-push-2{left:16.66666667%}.w-col-xs-push-1{left:8w-33333333%}.w-col-xs-push-0{left:auto}.w-col-xs-offset-12{margin-left:100%}.w-col-xs-offset-11{margin-left:91.66666667%}.w-col-xs-offset-10{margin-left:83.33333333%}.w-col-xs-offset-9{margin-left:75%}.w-col-xs-offset-8{margin-left:66.66666667%}.w-col-xs-offset-7{margin-left:58.33333333%}.w-col-xs-offset-6{margin-left:50%}.w-col-xs-offset-5{margin-left:41.66666667%}.w-col-xs-offset-4{margin-left:33.33333333%}.w-col-xs-offset-3{margin-left:25%}.w-col-xs-offset-2{margin-left:16.66666667%}.w-col-xs-offset-1{margin-left:8w-33333333%}.w-col-xs-offset-0{margin-left:0}@media (min-width:768px){.w-col-sm-1,.w-col-sm-10,.w-col-sm-11,.w-col-sm-12,.w-col-sm-2,.w-col-sm-3,.w-col-sm-4,.w-col-sm-5,.w-col-sm-6,.w-col-sm-7,.w-col-sm-8,.w-col-sm-9{float:left}.w-col-sm-12{width:100%}.w-col-sm-11{width:91.66666667%}.w-col-sm-10{width:83.33333333%}.w-col-sm-9{width:75%}.w-col-sm-8{width:66.66666667%}.w-col-sm-7{width:58.33333333%}.w-col-sm-6{width:50%}.w-col-sm-5{width:41.66666667%}.w-col-sm-4{width:33.33333333%}.w-col-sm-3{width:25%}.w-col-sm-2{width:16.66666667%}.w-col-sm-1{width:8w-33333333%}.w-col-sm-pull-12{right:100%}.w-col-sm-pull-11{right:91.66666667%}.w-col-sm-pull-10{right:83.33333333%}.w-col-sm-pull-9{right:75%}.w-col-sm-pull-8{right:66.66666667%}.w-col-sm-pull-7{right:58.33333333%}.w-col-sm-pull-6{right:50%}.w-col-sm-pull-5{right:41.66666667%}.w-col-sm-pull-4{right:33.33333333%}.w-col-sm-pull-3{right:25%}.w-col-sm-pull-2{right:16.66666667%}.w-col-sm-pull-1{right:8w-33333333%}.w-col-sm-pull-0{right:auto}.w-col-sm-push-12{left:100%}.w-col-sm-push-11{left:91.66666667%}.w-col-sm-push-10{left:83.33333333%}.w-col-sm-push-9{left:75%}.w-col-sm-push-8{left:66.66666667%}.w-col-sm-push-7{left:58.33333333%}.w-col-sm-push-6{left:50%}.w-col-sm-push-5{left:41.66666667%}.w-col-sm-push-4{left:33.33333333%}.w-col-sm-push-3{left:25%}.w-col-sm-push-2{left:16.66666667%}.w-col-sm-push-1{left:8w-33333333%}.w-col-sm-push-0{left:auto}.w-col-sm-offset-12{margin-left:100%}.w-col-sm-offset-11{margin-left:91.66666667%}.w-col-sm-offset-10{margin-left:83.33333333%}.w-col-sm-offset-9{margin-left:75%}.w-col-sm-offset-8{margin-left:66.66666667%}.w-col-sm-offset-7{margin-left:58.33333333%}.w-col-sm-offset-6{margin-left:50%}.w-col-sm-offset-5{margin-left:41.66666667%}.w-col-sm-offset-4{margin-left:33.33333333%}.w-col-sm-offset-3{margin-left:25%}.w-col-sm-offset-2{margin-left:16.66666667%}.w-col-sm-offset-1{margin-left:8w-33333333%}.w-col-sm-offset-0{margin-left:0}}@media (min-width:992px){.w-col-md-1,.w-col-md-10,.w-col-md-11,.w-col-md-12,.w-col-md-2,.w-col-md-3,.w-col-md-4,.w-col-md-5,.w-col-md-6,.w-col-md-7,.w-col-md-8,.w-col-md-9{float:left}.w-col-md-12{width:100%}.w-col-md-11{width:91.66666667%}.w-col-md-10{width:83.33333333%}.w-col-md-9{width:75%}.w-col-md-8{width:66.66666667%}.w-col-md-7{width:58.33333333%}.w-col-md-6{width:50%}.w-col-md-5{width:41.66666667%}.w-col-md-4{width:33.33333333%}.w-col-md-3{width:25%}.w-col-md-2{width:16.66666667%}.w-col-md-1{width:8w-33333333%}.w-col-md-pull-12{right:100%}.w-col-md-pull-11{right:91.66666667%}.w-col-md-pull-10{right:83.33333333%}.w-col-md-pull-9{right:75%}.w-col-md-pull-8{right:66.66666667%}.w-col-md-pull-7{right:58.33333333%}.w-col-md-pull-6{right:50%}.w-col-md-pull-5{right:41.66666667%}.w-col-md-pull-4{right:33.33333333%}.w-col-md-pull-3{right:25%}.w-col-md-pull-2{right:16.66666667%}.w-col-md-pull-1{right:8w-33333333%}.w-col-md-pull-0{right:auto}.w-col-md-push-12{left:100%}.w-col-md-push-11{left:91.66666667%}.w-col-md-push-10{left:83.33333333%}.w-col-md-push-9{left:75%}.w-col-md-push-8{left:66.66666667%}.w-col-md-push-7{left:58.33333333%}.w-col-md-push-6{left:50%}.w-col-md-push-5{left:41.66666667%}.w-col-md-push-4{left:33.33333333%}.w-col-md-push-3{left:25%}.w-col-md-push-2{left:16.66666667%}.w-col-md-push-1{left:8w-33333333%}.w-col-md-push-0{left:auto}.w-col-md-offset-12{margin-left:100%}.w-col-md-offset-11{margin-left:91.66666667%}.w-col-md-offset-10{margin-left:83.33333333%}.w-col-md-offset-9{margin-left:75%}.w-col-md-offset-8{margin-left:66.66666667%}.w-col-md-offset-7{margin-left:58.33333333%}.w-col-md-offset-6{margin-left:50%}.w-col-md-offset-5{margin-left:41.66666667%}.w-col-md-offset-4{margin-left:33.33333333%}.w-col-md-offset-3{margin-left:25%}.w-col-md-offset-2{margin-left:16.66666667%}.w-col-md-offset-1{margin-left:8w-33333333%}.w-col-md-offset-0{margin-left:0}}@media (min-width:1200px){.w-col-lg-1,.w-col-lg-10,.w-col-lg-11,.w-col-lg-12,.w-col-lg-2,.w-col-lg-3,.w-col-lg-4,.w-col-lg-5,.w-col-lg-6,.w-col-lg-7,.w-col-lg-8,.w-col-lg-9{float:left}.w-col-lg-12{width:100%}.w-col-lg-11{width:91.66666667%}.w-col-lg-10{width:83.33333333%}.w-col-lg-9{width:75%}.w-col-lg-8{width:66.66666667%}.w-col-lg-7{width:58.33333333%}.w-col-lg-6{width:50%}.w-col-lg-5{width:41.66666667%}.w-col-lg-4{width:33.33333333%}.w-col-lg-3{width:25%}.w-col-lg-2{width:16.66666667%}.w-col-lg-1{width:8w-33333333%}.w-col-lg-pull-12{right:100%}.w-col-lg-pull-11{right:91.66666667%}.w-col-lg-pull-10{right:83.33333333%}.w-col-lg-pull-9{right:75%}.w-col-lg-pull-8{right:66.66666667%}.w-col-lg-pull-7{right:58.33333333%}.w-col-lg-pull-6{right:50%}.w-col-lg-pull-5{right:41.66666667%}.w-col-lg-pull-4{right:33.33333333%}.w-col-lg-pull-3{right:25%}.w-col-lg-pull-2{right:16.66666667%}.w-col-lg-pull-1{right:8w-33333333%}.w-col-lg-pull-0{right:auto}.w-col-lg-push-12{left:100%}.w-col-lg-push-11{left:91.66666667%}.w-col-lg-push-10{left:83.33333333%}.w-col-lg-push-9{left:75%}.w-col-lg-push-8{left:66.66666667%}.w-col-lg-push-7{left:58.33333333%}.w-col-lg-push-6{left:50%}.w-col-lg-push-5{left:41.66666667%}.w-col-lg-push-4{left:33.33333333%}.w-col-lg-push-3{left:25%}.w-col-lg-push-2{left:16.66666667%}.w-col-lg-push-1{left:8w-33333333%}.w-col-lg-push-0{left:auto}.w-col-lg-offset-12{margin-left:100%}.w-col-lg-offset-11{margin-left:91.66666667%}.w-col-lg-offset-10{margin-left:83.33333333%}.w-col-lg-offset-9{margin-left:75%}.w-col-lg-offset-8{margin-left:66.66666667%}.w-col-lg-offset-7{margin-left:58.33333333%}.w-col-lg-offset-6{margin-left:50%}.w-col-lg-offset-5{margin-left:41.66666667%}.w-col-lg-offset-4{margin-left:33.33333333%}.w-col-lg-offset-3{margin-left:25%}.w-col-lg-offset-2{margin-left:16.66666667%}.w-col-lg-offset-1{margin-left:8w-33333333%}.w-col-lg-offset-0{margin-left:0}}.w-clearfix:after,.w-clearfix:before,.w-container-fluid:after,.w-container-fluid:before,.w-container:after,.w-container:before,.w-row:after,.w-row:before{content:" ";display:table}.w-clearfix:after,.w-container-fluid:after,.w-container:after,.w-row:after{clear:both}.w-center-block{display:block;margin-left:auto;margin-right:auto}.w-pull-right{float:right!important}.w-pull-left{float:left!important}.w-hide{display:none!important}.w-show{display:block!important}.w-invisible{visibility:hidden}.w-text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.w-hidden{display:none!important}.w-affix{position:fixed}.mec-image-popup-wrap{display:none}#wns-be-infobar.sticky{position:fixed;top:32px;background:#fff;z-index:9999;width:82%}.wns-be-main .wns-saved-settings.sticky{position:fixed;width:62.5%;top:111px;z-index:999999999999999999}.mec-export-settings,.mec-import-settings{font-weight:700;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:8px 32px;height:36px;letter-spacing:.2px;line-height:36px;font-size:13px;color:#fff;text-decoration:none;display:inline-block}.mec-export-settings:hover,.mec-import-settings:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5);color:#fff}textarea.mec-import-settings-content{display:block;width:100%;min-height:120px;margin-bottom:25px;padding:10px 15px}.mec-import-options-notification{display:inline-block}.mec-import-options-notification .mec-message-import-error,.mec-import-options-notification .mec-message-import-success{display:inline-block;padding:15px 12px;margin-left:12px;opacity:0;visibility:hidden;font-weight:700}.mec-import-options-notification .mec-message-import-success{opacity:1;visibility:visible;border:2px solid green}.mec-import-options-notification .mec-message-import-error{opacity:1;visibility:visible;border:2px solid #e62117}.mec-export-settings:focus,.mec-import-settings:focus{color:#fff}.mec-import-settings-wrap{position:relative}.mec-loarder-wrap{position:absolute;top:0;bottom:0;left:0;right:0;background:rgba(202,202,202,.7);z-index:9999}.mec-loarder-wrap.mec-settings-loader{top:34px}.mec-loarder{position:absolute;width:64px;height:64px;top:calc(50% - 32px);left:calc(50% - 36px)}.mec-loarder div{display:inline-block;position:absolute;left:6px;width:4px;background:#fff;animation:mec-loarder 1.2s cubic-bezier(0,.5,.5,1) infinite}.mec-loarder div:nth-child(1){left:27px;animation-delay:-.24s;background:#0075ff}.mec-loarder div:nth-child(2){left:36px;animation-delay:-.12s;background:#028bff}.mec-loarder div:nth-child(3){left:45px;animation-delay:0;background:#32a0ff}@keyframes mec-loarder{0%{top:6px;height:51px}100%,50%{top:19px;height:26px}}.w-box.support-page.searchbox{background:#008aff;background:linear-gradient(180deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff;min-height:260px;text-align:center;border-radius:2px}#webnus-dashboard .search-form input{background:rgba(255,255,255,.2);border:none;width:50%;outline:0;color:rgba(255,255,255,.7);font-size:18px;border-radius:4px 0 0 4px;box-shadow:0 1px 2px 0 rgba(0,0,0,.03);-webkit-transition:background .4s,box-shadow .2s;transition:background .4s,box-shadow .2s;padding:20px 32px;margin:0}#webnus-dashboard .search-form button{background:rgba(255,255,255,.2);border:none;padding:20px 32px;margin-left:-2px;color:#fff;border-radius:0 4px 4px 0;font-size:18px;cursor:pointer;-webkit-transition:background .4s,box-shadow .2s;transition:background .4s,box-shadow .2s}#webnus-dashboard .search-form button:hover{background:#fff;color:#3a3c4c}.w-box.support-page.searchbox p{font-size:30px}.search-form input::-webkit-input-placeholder{color:rgba(255,255,255,.7)}.search-form input::-moz-placeholder{color:rgba(255,255,255,.7)}.search-form input:-ms-input-placeholder{color:rgba(255,255,255,.7)}.search-form input:-moz-placeholder{color:rgba(255,255,255,.7)}#webnus-dashboard .search-form input:active,#webnus-dashboard .search-form input:focus{box-shadow:0 10px 20px rgba(0,0,0,.14);background:#fff;color:#3a3c4c}#webnus-dashboard .search-form input:active::-webkit-input-placeholder,#webnus-dashboard .search-form input:focus::-webkit-input-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active::-moz-placeholder,#webnus-dashboard .search-form input:focus::-moz-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active:-ms-input-placeholder,#webnus-dashboard .search-form input:focus:-ms-input-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active:-moz-placeholder,#webnus-dashboard .search-form input:focus:-moz-placeholder{color:#3a3c4c}#webnus-dashboard .w-box.support-page.mec-ticksy{text-align:center;min-height:260px}#webnus-dashboard .w-box.support-page.mec-ticksy p{font-size:20px;width:70%;margin:0 auto;margin-bottom:40px;margin-top:40px}#webnus-dashboard .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}}#mec_tickets .mec-box{position:relative;padding:25px 10px}.mec-form-row input[type=text],.mec-form-row textarea{max-width:400px}#mec_tickets .button.remove{padding:0;min-height:28px;height:28px;width:28px;margin:0;border-radius:50%;position:absolute;top:20px;right:20px;color:#ea6485;box-shadow:0 2px 6px -3px #ea6485;background:#fff;border-color:#ffd2dd;font-size:20px;line-height:1.5}#mec_tickets .button.remove svg{fill:#ea6485!important}#mec_tickets .button.remove:hover{color:#fff;border:2px solid #ea6485;background:#ea6485}#mec_tickets .button.remove:hover svg{fill:#fff!important}@media(max-width:480px){#mec_tickets .button.remove{top:5px;right:5px}}.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}.post-type-mec-events .lity{background:#edf0f3}.post-type-mec-events .lity-container{width:60vW;max-width:883px;margin:0 auto;border-radius:7px}.post-type-mec-events .lity-content:after{display:none}.mec-manage-events-lightbox{box-shadow:0 3px 20px rgba(0,0,0,.05)}.w-clearfix.mec-attendees-content img{display:inline-block;width:25px;height:25px;vertical-align:middle;margin-right:7px}.post-type-mec-events .mec-attendees-list-head{background:#008aff;color:#fff;text-align:center;padding:17px 0;text-transform:capitalize;font-size:26px;font-weight:700;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;border-radius:7px 7px 0 0;line-height:43px;box-shadow:0 3px 15px rgba(0,138,255,.25);z-index:99}.mec-attendees-list-wrap{display:flex;width:100%;flex-direction:column;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;background:#fff;box-shadow:0 3px 20px rgba(0,0,0,.05);border-radius:0 0 5px 5px;overflow:hidden}.mec-attendees-list-left{flex:1;background:#f6f8fa;padding:0;border-radius:0;position:relative}.mec-attendees-list-right{flex:1;border-radius:0 0 5px 5px;padding:0 20px 20px;background:#f2f4f7}.mec-attendees-list-left-menu a{display:inline-block;line-height:22px;font-size:12px;color:#000;font-weight:500;border-bottom:1px solid #eaebec;border-left:1px solid #eaebec;padding-bottom:0;padding:7px 6px;margin-bottom:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;transition:all .2s ease;text-decoration:none;text-align:center}.mec-attendees-list-left-menu a.selected-day{color:#008aff}.mec-attendees-list-left-menu .owl-item:last-child a{border-right:1px solid #eaebec}.mec-attendees-list-right table{width:100%}.w-clearfix.mec-attendees-head{margin-top:30px;border-bottom:2px solid #008aff;padding-bottom:18px;margin-bottom:3px}.w-clearfix.mec-attendees-content [class^=w-col-xs-],.w-clearfix.mec-attendees-head [class^=w-col-xs-]{padding:0}.w-clearfix.mec-attendees-head span{font-weight:600;color:#000;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;font-size:17px}.w-clearfix.mec-attendees-content{background:#fff;margin-bottom:2px;padding:10px 20px}.mec-attendees-list-left-menu{height:36px;margin-left:35px;margin-right:36px}.mec-attendees-list-left-menu a:active,.mec-attendees-list-left-menu a:focus,.mec-attendees-list-left-menu a:visited{outline:0;box-shadow:none}.mec-attendees-list-left-menu .owl-item{display:inline-block}.mec-attendees-list-left-menu .owl-stage{min-width:800px!important}.owl-nav.disabled .owl-next{position:absolute;right:0;top:0}.owl-nav.disabled .owl-prev{position:absolute;left:0;top:0}.owl-nav.disabled button{background:#fff;box-shadow:none;border:1px solid #ccc;height:36px;width:36px;font-size:54px;line-height:54px}.owl-nav.disabled button span{margin-top:-18px;display:block}.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}@media(max-width:992px){.post-type-mec-events .lity-container{width:80vw}}@-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)}}
|
1 |
+
#mec_location_thumbnail_img img,#mec_organizer_thumbnail_img img,#mec_thumbnail_img img{max-width:250px}.taxonomy-mec_label .column-id,.taxonomy-mec_location .column-id,.taxonomy-mec_organizer .column-id,.taxonomy-mec_speaker .column-id{width:40px}.taxonomy-mec_label .column-primary,.taxonomy-mec_location .column-primary,.taxonomy-mec_organizer .column-primary,.taxonomy-mec_speaker .column-primary{width:250px}.mec-color{margin:10px;width:14px;height:14px;display:inline-block;margin-right:6px;border-radius:20px 20px 20px 20px;vertical-align:middle}.mec-send-email-button{background:#008aff;color:#fff;width:100%;display:block;text-align:center;font-size:20px;padding:10px 0;margin-top:18px;font-weight:700;border-radius:4px;cursor:pointer}.mec-send-email-button:hover{opacity:.9}.mec-event-color-container,.mec-event-title-container{display:inline-block}.mec-available-color-row{margin-top:15px}.mec-available-color-row .mec-color{cursor:pointer}.mec-widget-container a{text-decoration:none}.mec-widget-container label{padding-right:15px}.mec-util-hidden{display:none}.button.mec-util-hidden{display:none}.wns-be-container{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Oxygen,Roboto,sans-serif;max-width:100%;background-color:#f6f6f6;border:1px solid #c1cad2;box-shadow:0 1px 1px rgba(0,0,0,.04);margin-top:40px;margin-right:15px;overflow:hidden}.wns-be-sidebar{width:260px;float:left;position:relative}.wns-be-sidebar ul.wns-be-group-menu,.wns-be-sidebar ul.wns-be-group-menu li{list-style:none;margin:0}.wns-be-sidebar .wns-be-group-menu li a{display:block;position:relative;outline:0;padding:13px 4px 13px 20px;background:#e0e0e0;background:0 0;border:none;color:#3f454a;font-size:13px;font-weight:600;text-decoration:none;-webkit-transition:none;transition:none}.wns-be-sidebar .wns-be-group-menu li a:hover{background:#fff;color:#008aff;opacity:1}.wns-be-sidebar .wns-be-group-menu>li.active>a,.wns-be-sidebar .wns-be-group-menu>li.active>a:hover{background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff}.wns-be-sidebar .wns-be-group-menu>li.active>a{box-shadow:0 2px 12px -5px #008aff}.wns-be-sidebar .wns-be-group-menu li a:first-child{border-top:none}.wns-be-main{background:#fff;margin-left:260px;border-left:1px solid #dedede;padding-bottom:84px;box-shadow:inset 0 1px 0 #fff;min-height:1120px;position:relative}.wns-be-main .wns-saved-settings{margin:0;border-bottom:1px solid #dedede;background:#dff0d8;color:#468847;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.6)}.wns-be-container .dpr-btn{display:inline-block;font-size:13px;padding:0 16px 1px;height:36px;margin-right:3px;line-height:35px;color:#555;border:1px solid #ccc;background:#f7f7f7;text-decoration:none;transition:.24s all ease;-webkit-transition:.24s all ease}.wns-be-container .dpr-btn:hover{background:#fcfcfc;border-color:#999;color:#303030}.wns-be-container .dpr-btn.dpr-save-btn{color:#fff;font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s}.wns-be-container .dpr-btn.dpr-save-btn:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5);cursor:pointer}.wns-be-container .wns-be-group-tab h2,.wns-be-container .wns-be-group-tab h4{color:#000;margin-bottom:25px;padding:15px;background:#f5f5f5;font-size:21px;line-height:23px;letter-spacing:.4px;font-weight:700;position:relative}.wns-be-container .wns-be-group-tab h2{margin-top:10px}.wns-be-container .wns-be-group-tab h2:before,.wns-be-container .wns-be-group-tab h4:before{content:"";width:4px;height:16px;margin-right:5px;background-color:#008aff;display:block;position:absolute;left:0;top:18px}.wns-be-container .wns-be-group-tab h4:before{width:2px;top:16px}.wns-be-container .wns-be-group-tab h4{font-size:16px;font-weight:600;background:#f8f8f8;border:none;padding:12px 15px 12px 15px}.wns-be-container .wns-be-group-tab p{font-size:13px;color:#888}.wns-be-sidebar .wns-be-group-tab-link-a:hover{cursor:pointer}.wns-be-sidebar .wns-be-group-tab-link-a span{display:block}.wns-be-sidebar .wns-be-group-tab-link-a span.wns-be-group-menu-title{padding-left:24px}.wns-be-sidebar li.active ul.subsection{padding-top:8px;padding-bottom:12px;background:#fff;border-bottom:1px solid #dedede;margin:0}.wns-be-sidebar li .subsection a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 46px}.wns-be-sidebar li .subsection a:hover{background:#f6f6f6;color:#222}.wns-be-sidebar .wns-be-group-menu li .subsection li.active a{color:#008aff}.wns-be-sidebar .wns-be-group-menu li .subsection li.active a:after,.wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;right:-1px;top:10px}.wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{border-right-color:#c5c5c5;right:0}.wns-be-sidebar li a i{color:#a0abb5;vertical-align:middle;font-size:18px;position:absolute;margin-top:0;margin-left:-4px}.wns-be-sidebar .wns-be-group-menu li.active>a i{color:#fff}.wns-be-sidebar .has-sub span.extra-icon{display:inline-block;float:right;padding:4px 7px 4px;margin-left:4px;margin-right:10px;font-family:sans-serif;font-size:9px;font-weight:600;line-height:9px;border-radius:10px;-moz-border-radius:10px;-webkit-border-radius:10px;border:0 solid transparent}.wns-be-sidebar .has-sub span.extra-icon i{margin-left:-3px;margin-top:2px;color:#bac6d0;font-size:10px}.wns-be-sidebar .wns-be-group-tab-link-a span.extra-icon i{right:10px;font-size:10px}.wns-be-sidebar .wns-be-group-menu li.active>a span.extra-icon i{margin-top:1px}.wns-be-container #wns-be-footer{border-top:1px solid #dedede;z-index:999;padding:25px 20px 20px;background:#fafafa!important;height:44px;text-align:right}.wns-be-container #wns-be-content{padding:5px 40px 40px}.wns-be-container #wns-be-infobar{background:#fff;border-bottom:1px solid #dedede;padding:20px;text-align:right;box-shadow:inset 0 1px 0 #fcfcfc;height:79px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;position:relative}.wns-be-container #wns-be-infobar:before{content:"";width:261px;height:78px;display:block;position:absolute;left:0;top:0;background:#fff url(../img/webnus-logo.png) no-repeat center;border-bottom:1px solid #dedede;background-size:220px;z-index:997}.wns-be-container .notice-yellow{margin:0;border-bottom:1px solid #dedede;background-color:#fcf8e3;color:#c09853;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.5)}.wns-be-container .notice-red,.wns-be-container .wns-be-field-errors{margin:0;border-bottom:1px solid #dedede;background-color:#f2dede;color:#b94a48;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.5)}@media(max-width:480px){a.dpr-btn.dpr-save-btn{display:block!important;text-align:center!important;margin-top:20px!important}.mec-search-settings-wrap{margin-top:73px!important;text-align:center!important;display:block!important}#mec-search-settings{margin:0!important;width:100%!important}.wns-be-container #wns-be-infobar{height:auto!important}}body.post-type-mec-events th.column-primary{width:35%}body.post-type-mec-events th.column-start_date{width:100px}body.post-type-mec-events th.column-end_date{width:100px}body.post-type-mec-events th.column-repeat{width:75px}body.post-type-mec-events th.column-author{width:150px}body.post-type-mec-books th.column-primary{width:20%}body.post-type-mec-books th.column-event{width:170px}body.post-type-mec-books th.column-bdate{width:120px}body.post-type-mec-books th.column-confirmation{width:120px}body.post-type-mec-books th.column-verification{width:120px}body.post-type-mec-books th.column-author{width:150px}.mec-meta-box-labels-container .mec-form-row{height:100px;overflow:auto}.mec-tooltip{display:inline;position:relative;margin-right:10px;cursor:help;bottom:5px;left:3px}.mec-tooltip:last-child{margin-right:0}.mec-tooltip:hover:after{background:#313130;border-radius:5px;bottom:24px;color:#fff;content:attr(title);left:-75px;padding:10px;position:absolute;z-index:98;width:240px}.mec-tooltip:hover:before{border:solid;border-color:#313130 transparent;border-width:6px 6px 0;bottom:18px;content:"";left:30%;position:absolute;z-index:99}.mec-tooltip .dashicons-before:before{font-size:24px;color:#40d9f1;line-height:37px}.mec-tooltip a:focus{box-shadow:none}.mec-form-row .bootstrap_unvalid{display:block;border:2px solid red;position:relative;display:inline-block;border-bottom:1px dotted #000}.mec-tooltiptext{visibility:hidden;width:120px;background-color:red;color:#fff;text-align:center;border-radius:6px;padding:5px 0;position:absolute;z-index:1}.ui-datepicker{background-color:#fff;border:1px solid #66afe9;border-radius:4px;box-shadow:0 0 8px rgba(102,175,233,.6);display:none;margin-top:4px;padding:10px;width:240px}.ui-datepicker a,.ui-datepicker a:hover{text-decoration:none;cursor:pointer}.ui-datepicker a:hover,.ui-datepicker td:hover a{color:#2c6396;-webkit-transition:color .1s ease-in-out;-moz-transition:color .1s ease-in-out;-o-transition:color .1s ease-in-out;transition:color .1s ease-in-out}.ui-datepicker .ui-datepicker-header{margin-bottom:4px;text-align:center}.ui-datepicker .ui-datepicker-title{font-weight:700}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{cursor:default;font-family:dashicons;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;height:20px;line-height:1.4;margin-top:2px;width:20px}.ui-datepicker .ui-datepicker-prev{float:left;text-align:left}.ui-datepicker .ui-datepicker-next{float:right;text-align:center}.ui-datepicker .ui-datepicker-prev:before{content:"\f341"}.ui-datepicker .ui-datepicker-next:before{content:"\f345"}.ui-datepicker .ui-icon{display:none}.ui-datepicker .ui-datepicker-calendar{table-layout:fixed;width:100%}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker .ui-datepicker-calendar th{text-align:center;padding:4px 0}.ui-datepicker .ui-datepicker-calendar td{border-radius:4px;-webkit-transition:background-color .1s ease-in-out,color .1s ease-in-out;-moz-transition:background-color .1s ease-in-out,color .1s ease-in-out;-o-transition:background-color .1s ease-in-out,color .1s ease-in-out;transition:background-color .1s ease-in-out,color .1s ease-in-out}.ui-datepicker .ui-datepicker-calendar td:hover{background-color:#eee;cursor:pointer}.ui-datepicker .ui-datepicker-calendar td a{text-decoration:none}.ui-datepicker .ui-datepicker-current-day{background-color:#4289cc}.ui-datepicker .ui-datepicker-current-day a{color:#fff}.ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover{background-color:#fff;cursor:default}.mec-col-1,.mec-col-10,.mec-col-11,.mec-col-12,.mec-col-2,.mec-col-3,.mec-col-4,.mec-col-5,.mec-col-6,.mec-col-7,.mec-col-8,.mec-col-9{position:relative;min-height:1px;padding:0;margin:0 1% 0 0}@media (min-width:783px){.mec-col-1,.mec-col-10,.mec-col-11,.mec-col-12,.mec-col-2,.mec-col-3,.mec-col-4,.mec-col-5,.mec-col-6,.mec-col-7,.mec-col-8,.mec-col-9{float:left}.mec-col-12{width:99%}.mec-col-11{width:90.66666667%}.mec-col-10{width:82.33333333%}.mec-col-9{width:74%}.mec-col-8{width:65.66666667%}.mec-col-7{width:57.33333333%}.mec-col-6{width:49%}.mec-col-5{width:40.66666667%}.mec-col-4{width:32.33333333%}.mec-col-3{width:24%}.mec-col-2{width:15.66666667%}.mec-col-1{width:7.33333333%}}#mec_reg_form_fields{background:#eee;padding:20px}#mec_reg_form_fields li{margin:4px;border-radius:2px;padding:20px 34px 24px;background:#fff;position:relative;transition:all .3s ease}#mec_reg_form_fields li ul{padding-top:15px;padding-bottom:15px;margin:1px}#mec_reg_form_fields li ul li{padding:7px 30px 7px 46px}#mec_reg_form_fields span.mec_reg_field_type{font-size:11px;font-weight:600;color:#8a8a8a;text-transform:uppercase;letter-spacing:2px}#mec_reg_form_fields span.mec_reg_field_option_sort,#mec_reg_form_fields span.mec_reg_field_remove,#mec_reg_form_fields span.mec_reg_field_sort{font-size:0;color:#fff}#mec_reg_form_fields span.mec_reg_field_remove{position:absolute;right:0;top:0}#mec_reg_form_fields span.mec_reg_field_option_sort:before,#mec_reg_form_fields span.mec_reg_field_remove:before,#mec_reg_form_fields span.mec_reg_field_sort:before{position:absolute;left:10px;top:20px;width:80px;height:20px;display:block;cursor:move;font-family:simple-line-icons;content:"\e023";font-size:18px;color:#888}#mec_reg_form_fields span.mec_reg_field_remove:before{content:"\e082";width:20px;height:20px;left:auto;right:15px;color:#f96666;cursor:pointer}#mec_reg_form_fields span.mec_reg_field_option_sort:before{font-size:13px;left:2px;top:23px;width:14px;height:14px}#mec_reg_form_fields li ul li span.mec_reg_field_remove{right:auto;left:60px;top:2px}#mec_reg_form_fields p.mec_reg_field_options{margin:6px 0 8px}#mec_reg_form_fields input[type=number],#mec_reg_form_fields input[type=text],#mec_reg_form_fields select,#mec_reg_form_fields textarea{min-width:260px;min-height:34px;margin-bottom:7px;margin-top:7px}#mec_reg_form_fields textarea{min-height:66px}#mec_reg_form_field_types button,#mec_reg_form_fields button{position:relative;outline:0;background:#fff;border:1px solid #e2e2e2;border-radius:50px;padding:11px 21px 11px 31px;line-height:1;font-size:11px;font-weight:600;color:#444;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 0 3px rgba(0,0,0,.03)}#mec_reg_form_field_types button:hover,#mec_reg_form_fields button:hover{border-color:#008aff;box-shadow:0 0 7px rgba(0,0,0,.1)}#mec_reg_form_field_types button:before,#mec_reg_form_fields button:before{position:absolute;left:12px;color:#008aff;content:"\e095";font-family:simple-line-icons;font-size:13px;display:inline-block}#mec_reg_form_field_types button.red:hover,#mec_reg_form_fields button.red:hover{border-color:red;box-shadow:0 0 7px rgba(0,0,0,.1)}#mec_reg_form_field_types button.red:before,#mec_reg_form_fields button.red:before{position:absolute;left:12px;color:red;content:"\e095";font-family:simple-line-icons;font-size:13px;display:inline-block}@media (max-width:768px){#mec_reg_form_fields input[type=number],#mec_reg_form_fields input[type=text],#mec_reg_form_fields select,#mec_reg_form_fields textarea{min-width:80px;width:100%}}.mec-form-row{margin:0 auto 16px}.mec-options-fields{padding-top:25px;overflow:hidden;animation:fadeEffect .31s}#mec_booking_form .mec-options-fields,#mec_modules_form .mec-options-fields,#mec_notifications_form .mec-options-fields,#mec_settings_form .mec-options-fields,#mec_single_form .mec-options-fields{display:none}.mec-options-fields.active{display:block!important}@keyframes fadeEffect{from{opacity:0;margin-left:12px}to{opacity:1;margin-left:0}}.mec-form-row:after,.mec-form-row:before{content:" ";display:table}.mec-form-row:after{clear:both}.mec-form-row input[type=number],.mec-form-row input[type=text],.mec-form-row select,.mec-form-row textarea{height:38px;box-sizing:border-box;margin-bottom:8px;padding:0 6px;box-shadow:none;border-radius:2px;box-shadow:inset 0 1px 5px rgba(0,0,0,.05)}.mec-form-row input[type=radio]{margin:5px 0}.mec-form-row select{margin-top:1px}.mec-form-row select{min-width:65px}.ui-datepicker select{min-width:60px}.mec-form-row input[type=text]{width:85%}#mec_styles_CSS{max-width:100%}.mec-book-status-form select{display:block;width:99%;margin-top:10px;margin-bottom:10px}.mec-form-row label{margin:10px 0}.mec-form-row input[type=checkbox]{background-color:#fafafa;border:1px solid #cacece;box-shadow:0 1px 2px rgba(0,0,0,.05),inset 0 -15px 10px -12px rgba(0,0,0,.05);padding:9px;border-radius:3px;min-width:20px;min-height:20px;display:inline-block}.mec-form-row input[type=checkbox]:checked{box-shadow:0 3px 11px -4px #008aff;border-color:#008aff;background:#fff}.mec-form-row input[type=checkbox]:checked:before{color:#008aff;width:20px;font:400 24px/1 dashicons}.mec-form-row .mec-col-4 input[type=number],.mec-form-row .mec-col-4 input[type=text],.mec-form-row .mec-col-4 select,.mec-form-row .mec-col-4 textarea{width:75%}.mec-form-row .description{display:inline-block;border-left:1px dashed #ccc;margin-left:12px;line-height:32px;padding-left:12px;margin-top:5px;color:#555}.mec-form-row .description code{font-style:normal}.mec-form-row .time-dv{font-size:14px;font-weight:700}.mec-meta-box-fields{margin:30px 10px}.mec-meta-box-fields>.mec-meta-box-fields{margin-left:0}.mec-meta-box-fields .mec-title{margin:5px 0}.mec-meta-box-fields h4.mec-title{margin:40px 0 16px}.mec-meta-box-fields .mec-dashicons{font-size:20px;line-height:22px;color:#008aff}.mec-form-row .mec-box,.mec-meta-box-fields .mec-box{background:#f7f7f7;padding:10px;margin:10px 0;border-radius:2px;border:1px solid #e6e6e6}.mec-form-row .mec-box{max-width:960px}.mec-form-row .mec-box .button,.mec-meta-box-fields .mec-box .button{float:right}#mec_gateways_form .mec-form-row:first-child,#mec_notifications_form_container .mec-form-row:nth-child(2){overflow:hidden}#mec_gateways_form .mec-tooltip{float:right}.mec-container{background:#fff;padding:15px}.nav-tab-active{background:#fff;border-bottom:1px solid #fff}#mec_social_networks .mec-form-row{margin-bottom:0}#mec_gateways_form h4,.mec-meta-box-fields h4,.mec-options-fields h4,h4.mec-form-subtitle{text-transform:capitalize;border-bottom:1px solid #e5e5e5;padding-bottom:6px;margin:40px 0 16px;font-size:15px;font-weight:600}#mec_gateways_form h4{margin-bottom:0}#mec_styles_form #mec_styles_CSS{height:200px;margin-bottom:5px;font-family:Consolas,Monaco,monospace;font-size:13px;width:97%;background:#f9f9f9;outline:0}#mec_calendar_filter .description,#mec_styles_form .description{max-width:500px;display:block;margin:0 0 5px 0;padding:0;border:none}.mec-sed-methods li{display:inline-block;padding:8px 12px;border:1px solid #ddd;margin:0 5px 5px 0;cursor:pointer;border-radius:3px;box-shadow:0 2px 15px -2px rgba(0,0,0,.1)}.mec-sed-methods li:hover{border-color:#008aff}.mec-sed-methods li.active{border-color:#008aff;background-color:#fff;color:#008aff;font-weight:600;cursor:default;box-shadow:0 0 4px rgba(1,138,255,.3) inset}.mec-switcher input+label{display:block;position:relative;cursor:pointer;outline:0;padding:2px;width:38px;height:22px;background-color:#ddd;border-radius:60px}.mec-switcher input:checked+label{background-color:#008aff;box-shadow:0 3px 22px -6px #008aff}.mec-switcher input:checked+label:after{margin-left:16px}#mec_gateways_form input[type=text],#mec_gateways_form select,#mec_gateways_form textarea{width:calc(100% - 30px)}#mec_gateways_form textarea{min-height:65px}#mec_gateways_form li .mec-gateway-options-form,#payment_gateways_option li .mec-gateway-options-form{padding:15px 20px;background-color:#f7f7f7;border-left:6px solid #e3e3e3;margin-bottom:20px}#mec_gateways_form_container .mec-form-row input[type=number],#mec_gateways_form_container .mec-form-row select{width:100%}#mec_notifications_form label{display:inline-block;min-width:160px}#mec_notifications_form input[type=text],#mec_notifications_form select{min-width:300px}@media (max-width:536px){#mec_notifications_form input[type=text],#mec_notifications_form select{min-width:100%}}#mec_notifications_form .wp-editor-container{margin-bottom:45px}#mec_notifications_form ul li:last-child .wp-editor-container{margin-bottom:0}#mec_messages_form_container ul li label{display:block;font-weight:700}#mec_messages_form_container ul li input{display:block;width:100%}.mec-message-categories li.mec-acc-label{font-size:15px;font-weight:600;padding:25px 30px;cursor:pointer;background-color:#fff;border:none;border-bottom:1px solid #e6e6e6;margin:0;letter-spacing:.5px;position:relative}.mec-message-categories ul{margin:15px 5px}.webnus-icons-list li{width:40px;display:inline-block;list-style:none;padding:0}.webnus-icons-list input{visibility:hidden;margin:0;padding:0;width:1px;height:1px;-moz-opacity:0;-khtml-opacity:0;opacity:0;cursor:pointer}.webnus-icons-list li label{color:#777;display:inline-block!important;float:none!important;width:33px!important;text-align:center;font-size:23px!important;font-weight:400!important;padding:5px 0!important;border:1px solid #eee!important}.mec-webnus-icon{float:left;margin-right:10px}.mec-webnus-icon i{font-size:24px;color:#222}.mec-accordion ul{display:none}.mec-switcher input{position:absolute;margin-left:-9999px;visibility:hidden}.mec-switcher input+label{display:block;position:relative;cursor:pointer;outline:0;padding:2px;width:50px;height:22px;background-color:#ddd;border-radius:60px}.mec-switcher input+label:after,.mec-switcher input+label:before{display:block;position:absolute;top:1px;left:1px;bottom:1px;content:""}.mec-switcher input+label:before{right:1px;background-color:#f1f1f1;border-radius:60px;transition:background .4s}.mec-switcher input+label:after{width:24px;background-color:#fff;border-radius:100%;box-shadow:0 2px 3px rgba(0,0,0,.1);transition:margin .4s}.wns-be-group-tab .mec-switcher input[value="1"]+label,.wns-be-group-tab .mec-switcher input[value="1"]+label:before{background-color:#008aff;background:linear-gradient(95deg,#4dacfd 0,#0d90ff 50%,#008aff 100%);box-shadow:0 3px 11px -7px #008aff}.wns-be-group-tab .mec-switcher input[value="1"]+label:after{margin-left:28px}.mec-switcher input:checked+label{box-shadow:0 3px 11px -7px #008aff}.mec-switcher input:checked+label:before{background-color:#008aff;background:linear-gradient(95deg,#4dacfd 0,#0d90ff 50%,#008aff 100%)}.mec-switcher input:checked+label:after{margin-left:28px}.mec-switcher label{display:block}.mec-sed-methods li{display:inline-block;padding:10px;border:1px solid #ddd;margin:0 5px 5px 0;cursor:pointer}#wpwrap .mec-button-primary{border-bottom:none;letter-spacing:.5px;line-height:18px;height:46px;transition:all .5s ease;color:#fff;padding:12px 25px;display:block;text-align:center;font-size:14px;background:0 0;background-color:#008aff;text-shadow:none;border:0;box-shadow:none;display:inline-block;margin:25px 0 12px;min-width:146px}#wpwrap .mec-button-primary:hover{background-color:#41c9de}#wpwrap .mec-button-primary.loading{background-color:#73c02a}#wpwrap .mec-button-primary:before{content:"\f00c";font-family:fontawesome;margin-right:4px;font-size:16px;display:none}#wpwrap .mec-button-primary.loading:before{display:inline-block}.mec-image-select-wrap{clear:both;overflow:hidden;padding:10px 0;margin:0}.mec-image-select-wrap li{float:left;display:block;margin-right:15px;margin-bottom:15px}.mec-image-select-wrap li input{display:none}.mec-image-select-wrap li span{width:35px;height:35px;display:block;margin:3px;border-radius:2px;border:3px solid transparent;transition:all .2s ease}.mec-image-select-wrap li input:checked+span{border-color:#fff;box-shadow:0 0 14px rgba(0,0,0,.25)}.mec-image-select-wrap li input:checked+span:after{content:"\f00c";font-family:fontawesome;font-size:20px;display:inline-block;color:#fff;padding:8px;max-width:100%;max-height:100%}.m-e-calendar_page_MEC-ix #wpwrap .mec-button-primary.mec-btn-2{margin:0 0 0 12px}.m-e-calendar_page_MEC-ix #wpwrap input[type=file]{padding-top:12px;padding-bottom:12px}.m-e-calendar_page_MEC-ix #wpwrap .mec-form-row select{min-height:46px}.mec-image-select-wrap .mec-colorskin-1{background-color:#40d9f1}.mec-image-select-wrap .mec-colorskin-2{background-color:#0093d0}.mec-image-select-wrap .mec-colorskin-3{background-color:#e53f51}.mec-image-select-wrap .mec-colorskin-4{background-color:#f1c40f}.mec-image-select-wrap .mec-colorskin-5{background-color:#e64883}.mec-image-select-wrap .mec-colorskin-6{background-color:#45ab48}.mec-image-select-wrap .mec-colorskin-7{background-color:#9661ab}.mec-image-select-wrap .mec-colorskin-8{background-color:#0aad80}.mec-image-select-wrap .mec-colorskin-9{background-color:#0ab1f0}.mec-image-select-wrap .mec-colorskin-10{background-color:#ff5a00}.mec-image-select-wrap .mec-colorskin-11{background-color:#c3512f}.mec-image-select-wrap .mec-colorskin-12{background-color:#55606e}.mec-image-select-wrap .mec-colorskin-13{background-color:#fe8178}.mec-image-select-wrap .mec-colorskin-14{background-color:#7c6853}.mec-image-select-wrap .mec-colorskin-15{background-color:#bed431}.mec-image-select-wrap .mec-colorskin-16{background-color:#2d5c88}.mec-image-select-wrap .mec-colorskin-17{background-color:#77da55}.mec-image-select-wrap .mec-colorskin-18{background-color:#2997ab}.mec-image-select-wrap .mec-colorskin-19{background-color:#734854}.mec-image-select-wrap .mec-colorskin-20{background-color:#a81010}.mec-image-select-wrap .mec-colorskin-21{background-color:#4ccfad}.mec-image-select-wrap .mec-colorskin-22{background-color:#3a609f}@media screen and (max-width:782px){.mec-form-row .description{max-width:500px;display:block;margin:0 0 5px 0;padding:0;border:none}.mec-col-1,.mec-col-10,.mec-col-11,.mec-col-12,.mec-col-2,.mec-col-3,.mec-col-4,.mec-col-5,.mec-col-6,.mec-col-7,.mec-col-8,.mec-col-9{margin-bottom:5px;display:block}.mec-form-row .mec-box .button,.mec-meta-box-fields .mec-box .button{float:left}.mec-form-row .time-dv{padding:0 4px}.mec-form-row .mec-col-4 input[type=text],.mec-form-row .mec-col-4 select{width:auto;min-width:192px}.mec-tooltip .dashicons-before:before{font-size:32px}}#frmb-0-clear-all,#frmb-0-save,#frmb-0-view-data{display:none}#mec_sn_googlecal{margin-bottom:0}#mec_fee_row1 .button{margin-right:10px}h4.mec-form-subtitle{font-size:15px;margin-top:0}h5.mec-form-second-title{font-size:15px;margin-top:0}#webnus-dashboard *{box-sizing:border-box}#webnus-dashboard.about-wrap{max-width:1240px;margin:25px auto 20px}#webnus-dashboard .change-log{word-wrap:break-word}#webnus-dashboard .welcome-head img{border:none}.w-welcome{position:relative;margin-top:30px;margin-bottom:10px}.w-box{position:relative;background:#fff;padding:5px 25px;margin-top:30px}.w-theme-version{box-shadow:0 3px 30px -4px #40d8f0;text-shadow:none;background:#40d8f0;background:linear-gradient(95deg,#40d8f0 0,#2dd1ea 50%,#13cbe8 100%);text-align:center;display:block;padding:10px 0;color:#fff;font-weight:600;margin-top:10px;border-radius:2px}.w-box{padding:0;min-height:310px;box-shadow:0 1px 16px rgba(0,0,0,.034);border-radius:2px}.w-box-head{font-weight:600;padding:20px 72px;position:relative;border-bottom:2px solid #008aff;font-size:20px}.w-box-head span{position:absolute;left:0;padding:0 25px;line-height:58px;background:#008aff;height:100%;top:0;color:#fff}.w-box-child,.w-box-content{padding:18px;line-height:24px;font-size:14px}.mec-count-child{width:50%;margin:0 auto}#webnus-dashboard .w-button a{color:#fff!important;border-radius:0;padding:10px 24px;font-size:12px;letter-spacing:1px;font-weight:600;background:#008aff;margin:10px 0;display:inline-block;text-transform:uppercase}#webnus-dashboard .w-box .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}.w-system-info{margin-bottom:7px}.w-system-info:first-child{margin-top:20px}.w-system-info>span{display:inline-block;min-width:145px;line-height:20px;font-size:13px}#webnus-dashboard .w-current{min-width:110px}#webnus-dashboard .w-min{min-width:65px}.w-icon{color:#fff;padding:3px;border-radius:4px;margin-right:10px;vertical-align:middle}.w-icon-green{background:#27ae60}.w-icon-red{background:#e74c3c}.extra .w-box-head{padding:20px;border-bottom:1px solid #ededed}.doc .w-box-head{color:#4cbf67}#webnus-dashboard .doc .w-button a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);margin:35px 0 17px;box-shadow:0 5px 10px -5px #4cbf67;background-color:#fff}#webnus-dashboard .support .w-button a{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);margin:13px 0 18px;box-shadow:0 5px 10px -5px #ff876c}.doc .w-box-content{background:url(../img/document.png) no-repeat right center}.doc .w-box-content p,.w-box.support .w-box-content p{width:54%;color:#666;margin-top:10px;max-width:380px}.w-box-child p{color:#666;margin-top:10px}.w-box.support{background:#fff url(../img/support.png) no-repeat top right}.w-box.support .w-box-head{width:50%;color:#ff876c}.w-box-content pre{text-align:left;background:#f5f5f5;font-size:13px;padding:20px 25px;height:480px;overflow-y:scroll}.w-box.change-log .w-box-head{color:#01c6d9}#webnus-dashboard .button:not(.mec-intro-section-link-tag){border:0;background:0 0;box-shadow:none;color:#e74c3c;font-weight:700}.w-box .state{position:absolute;top:0;left:-100vw}#webnus-dashboard .button:hover{color:#222}.w-box .state:checked~.content{-webkit-transform:none;-ms-transform:none;transform:none}.w-box .state:checked~.backdrop{bottom:0;opacity:1;z-index:1}.w-box .lightbox{position:fixed;top:0;right:0;left:0;height:0;padding:0 20px}.w-box .lightbox .content{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;overflow:hidden;position:relative;z-index:2;max-width:500px;max-height:95vh;margin:20px auto;padding:20px;background:#fff;-webkit-transform:translateY(-200%);-ms-transform:translateY(-200%);transform:translateY(-200%);-webkit-transition:.3s -webkit-transform ease-in-out;transition:.3s transform ease-in-out;border:1px solid rgba(0,0,0,.1)}.w-box .lightbox .main{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1}.w-box .lightbox .backdrop{position:fixed;z-index:-1;top:0;right:0;bottom:100%;left:0;opacity:0;background:rgba(0,0,0,.3);-webkit-transition:.3s opacity ease-in-out;transition:.3s opacity ease-in-out}.content .main p{color:#bf3737}p.mec_dash_count{font-size:60px;font-weight:600;margin:0;color:#01c6d9}.w-col-sm-3 .w-box.doc{text-align:center;min-height:auto}.w-Knowledgebase{color:#8e5cea}.mec-view-all-articles a{margin:30px 0 17px;display:inline-block;color:#fff!important;border-radius:0;padding:10px 24px;font-size:12px;letter-spacing:1px;font-weight:600;background:#8e5cea;display:inline-block;text-transform:uppercase;transition:all .24s ease;-webkit-transition:all .24s ease}.mec-view-all-articles a:hover{background-color:#222}.w-box.upcoming-events .mec-event-article{margin-bottom:22px;border-bottom:1px solid #eee;padding-bottom:16px}.w-box.upcoming-events .mec-event-article .mec-event-date{font-size:14px;color:#666}.w-box.upcoming-events .mec-event-article .mec-event-date span{font-weight:600;margin-right:4px}.w-box.upcoming-events .mec-event-article h4.mec-event-title{margin:0;font-size:15px}.w-box.upcoming-events .mec-event-article .mec-event-detail{font-size:13px;color:#999}.w-box.upcoming-events .mec-event-article .mec-detail-button{font-size:10px;font-weight:600;letter-spacing:1px;padding:4px 12px;background:#f2f2f2;float:right}.w-box.total-bookings ul li{display:inline-block;padding:4px 12px;background:#f1f1f1;margin-right:5px;border-radius:3px}.w-box.total-bookings ul li.selected{background:#fff;border:1px solid #e9e9e9}.info-msg,.mec-error,.mec-success,.warning-msg{margin:10px 0;padding:10px;border-radius:3px 3px 3px 3px}.info-msg{color:#059;background-color:#bef}.info-msg-link{background:#fff;padding:4px 12px 6px;border-radius:3px;line-height:1;font-weight:600;color:#008aff}.mec-success{color:#270;background-color:#dff2bf}.warning-msg{color:#9f6000;background-color:#feefb3}.mec-error{color:#d8000c;background-color:#ffbaba}.mec-certain-day>div,.mec-select-deselect-actions li,.mec-xi-facebook-import-events .mec-select-deselect-actions li,.mec-xi-google-import-events .mec-select-deselect-actions li{display:inline-block;position:relative;outline:0;background:#fff;border:1px solid #e2e2e2;border-radius:50px;padding:11px 21px 11px 21px;line-height:1;font-size:11px;font-weight:600;color:#444;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 0 3px rgba(0,0,0,.03)}.mec-certain-day>div:hover,.mec-select-deselect-actions li:hover,.mec-xi-facebook-import-events .mec-select-deselect-actions li:hover,.mec-xi-google-import-events .mec-select-deselect-actions li:hover{border-color:#008aff;box-shadow:0 0 7px rgba(0,0,0,.1)}.mec-not-in-days-remove{border:1px solid #ff4b64;border-radius:20px;padding:0 0 0 1px;color:#ff4b64;width:11px;height:12px;text-align:center;line-height:12px;display:inline-block;margin-right:-5px;margin-left:6px}div#mec_not_in_days_row2:hover{border-color:#e2e2e2!important;box-shadow:none!important}.mec-xi-facebook-import-events .mec-success,.mec-xi-google-import-events .mec-success{width:460px}.mec-xi-facebook-import-events .mec-select-deselect-actions li,.mec-xi-google-import-events .mec-select-deselect-actions li{display:inline-block;cursor:pointer}.lity-content>div{overflow:auto}.mce-mec-mce-items{text-transform:capitalize!important}#mec_setting_contextual li{list-style:none!important;font-size:12px;margin:0;padding:6px}.mec-bbf-field-container{margin-bottom:10px}.mec-bbf-field-container label{display:block}.kc-components ul.kc-components-list li .cpicon.mec-kingcomposer-icon,.kc-element-icon .cpicon.mec-kingcomposer-icon{background:url(../img/ico-mec-vc.png) no-repeat center center;background-size:auto;background-repeat:no-repeat}.mec-archive-skinsm.mec-category-skins,.mec-carousel-archive-link,.mec-carousel-head-text,.mec-toggle-month-divider{display:none}span.mec-archive-skins,span.mec-category-skins{margin-left:10px;vertical-align:text-bottom}.mec-archive-skins input,.mec-archive-skins select,.mec-category-skins input,.mec-category-skins select{min-width:225px;vertical-align:baseline}#mec_settings_default_skin_archive,#mec_settings_default_skin_category{min-width:225px}.w-welcome p span{background:#fff;padding:4px 10px}#mec_masonry_skin_options_container .mec-form-row .description{margin-left:0;padding-left:0;border:none;margin-top:-4px}@media (max-width:1280px){span.mec-archive-skins,span.mec-category-skins{margin-left:0}}/*!
|
2 |
* Bootstrap v3.3.7 (http://getbootstrap.com)
|
3 |
* Copyright 2011-2016 Twitter, Inc.
|
4 |
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
5 |
+
*/#webnus-dashboard button,#webnus-dashboard input,#webnus-dashboard select,#webnus-dashboard textarea{font-family:inherit;font-size:inherit;line-height:inherit}#webnus-dashboard a{color:#337ab7;text-decoration:none}#webnus-dashboard a:focus,#webnus-dashboard a:hover{color:#23527c}#webnus-dashboard a:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}#webnus-dashboard figure{margin:0}#webnus-dashboard img{vertical-align:middle}.w-img-responsive{display:block;max-width:100%;height:auto}.w-img-rounded{border-radius:6px}.w-img-thumbnail{padding:4px;line-height:1w-42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all 0w-2s ease-in-out;-o-transition:all 0w-2s ease-in-out;transition:all 0w-2s ease-in-out;display:inline-block;max-width:100%;height:auto}.w-img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.w-sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.w-sr-only-focusable:active,.w-sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.w-container,.w-container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}[role=button]{cursor:pointer}@media (min-width:768px){.w-container{width:750px}}@media (min-width:992px){.w-container{width:970px}}@media (min-width:1200px){.w-container{width:1170px}}.w-row{margin-left:-15px;margin-right:-15px}.w-col-lg-1,.w-col-lg-10,.w-col-lg-11,.w-col-lg-12,.w-col-lg-2,.w-col-lg-3,.w-col-lg-4,.w-col-lg-5,.w-col-lg-6,.w-col-lg-7,.w-col-lg-8,.w-col-lg-9,.w-col-md-1,.w-col-md-10,.w-col-md-11,.w-col-md-12,.w-col-md-2,.w-col-md-3,.w-col-md-4,.w-col-md-5,.w-col-md-6,.w-col-md-7,.w-col-md-8,.w-col-md-9,.w-col-sm-1,.w-col-sm-10,.w-col-sm-11,.w-col-sm-12,.w-col-sm-2,.w-col-sm-3,.w-col-sm-4,.w-col-sm-5,.w-col-sm-6,.w-col-sm-7,.w-col-sm-8,.w-col-sm-9,.w-col-xs-1,.w-col-xs-10,.w-col-xs-11,.w-col-xs-12,.w-col-xs-2,.w-col-xs-3,.w-col-xs-4,.w-col-xs-5,.w-col-xs-6,.w-col-xs-7,.w-col-xs-8,.w-col-xs-9{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.w-col-xs-1,.w-col-xs-10,.w-col-xs-11,.w-col-xs-12,.w-col-xs-2,.w-col-xs-3,.w-col-xs-4,.w-col-xs-5,.w-col-xs-6,.w-col-xs-7,.w-col-xs-8,.w-col-xs-9{float:left}.w-col-xs-12{width:100%}.w-col-xs-11{width:91.66666667%}.w-col-xs-10{width:83.33333333%}.w-col-xs-9{width:75%}.w-col-xs-8{width:66.66666667%}.w-col-xs-7{width:58.33333333%}.w-col-xs-6{width:50%}.w-col-xs-5{width:41.66666667%}.w-col-xs-4{width:33.33333333%}.w-col-xs-3{width:25%}.w-col-xs-2{width:16.66666667%}.w-col-xs-1{width:8w-33333333%}.w-col-xs-pull-12{right:100%}.w-col-xs-pull-11{right:91.66666667%}.w-col-xs-pull-10{right:83.33333333%}.w-col-xs-pull-9{right:75%}.w-col-xs-pull-8{right:66.66666667%}.w-col-xs-pull-7{right:58.33333333%}.w-col-xs-pull-6{right:50%}.w-col-xs-pull-5{right:41.66666667%}.w-col-xs-pull-4{right:33.33333333%}.w-col-xs-pull-3{right:25%}.w-col-xs-pull-2{right:16.66666667%}.w-col-xs-pull-1{right:8w-33333333%}.w-col-xs-pull-0{right:auto}.w-col-xs-push-12{left:100%}.w-col-xs-push-11{left:91.66666667%}.w-col-xs-push-10{left:83.33333333%}.w-col-xs-push-9{left:75%}.w-col-xs-push-8{left:66.66666667%}.w-col-xs-push-7{left:58.33333333%}.w-col-xs-push-6{left:50%}.w-col-xs-push-5{left:41.66666667%}.w-col-xs-push-4{left:33.33333333%}.w-col-xs-push-3{left:25%}.w-col-xs-push-2{left:16.66666667%}.w-col-xs-push-1{left:8w-33333333%}.w-col-xs-push-0{left:auto}.w-col-xs-offset-12{margin-left:100%}.w-col-xs-offset-11{margin-left:91.66666667%}.w-col-xs-offset-10{margin-left:83.33333333%}.w-col-xs-offset-9{margin-left:75%}.w-col-xs-offset-8{margin-left:66.66666667%}.w-col-xs-offset-7{margin-left:58.33333333%}.w-col-xs-offset-6{margin-left:50%}.w-col-xs-offset-5{margin-left:41.66666667%}.w-col-xs-offset-4{margin-left:33.33333333%}.w-col-xs-offset-3{margin-left:25%}.w-col-xs-offset-2{margin-left:16.66666667%}.w-col-xs-offset-1{margin-left:8w-33333333%}.w-col-xs-offset-0{margin-left:0}@media (min-width:768px){.w-col-sm-1,.w-col-sm-10,.w-col-sm-11,.w-col-sm-12,.w-col-sm-2,.w-col-sm-3,.w-col-sm-4,.w-col-sm-5,.w-col-sm-6,.w-col-sm-7,.w-col-sm-8,.w-col-sm-9{float:left}.w-col-sm-12{width:100%}.w-col-sm-11{width:91.66666667%}.w-col-sm-10{width:83.33333333%}.w-col-sm-9{width:75%}.w-col-sm-8{width:66.66666667%}.w-col-sm-7{width:58.33333333%}.w-col-sm-6{width:50%}.w-col-sm-5{width:41.66666667%}.w-col-sm-4{width:33.33333333%}.w-col-sm-3{width:25%}.w-col-sm-2{width:16.66666667%}.w-col-sm-1{width:8w-33333333%}.w-col-sm-pull-12{right:100%}.w-col-sm-pull-11{right:91.66666667%}.w-col-sm-pull-10{right:83.33333333%}.w-col-sm-pull-9{right:75%}.w-col-sm-pull-8{right:66.66666667%}.w-col-sm-pull-7{right:58.33333333%}.w-col-sm-pull-6{right:50%}.w-col-sm-pull-5{right:41.66666667%}.w-col-sm-pull-4{right:33.33333333%}.w-col-sm-pull-3{right:25%}.w-col-sm-pull-2{right:16.66666667%}.w-col-sm-pull-1{right:8w-33333333%}.w-col-sm-pull-0{right:auto}.w-col-sm-push-12{left:100%}.w-col-sm-push-11{left:91.66666667%}.w-col-sm-push-10{left:83.33333333%}.w-col-sm-push-9{left:75%}.w-col-sm-push-8{left:66.66666667%}.w-col-sm-push-7{left:58.33333333%}.w-col-sm-push-6{left:50%}.w-col-sm-push-5{left:41.66666667%}.w-col-sm-push-4{left:33.33333333%}.w-col-sm-push-3{left:25%}.w-col-sm-push-2{left:16.66666667%}.w-col-sm-push-1{left:8w-33333333%}.w-col-sm-push-0{left:auto}.w-col-sm-offset-12{margin-left:100%}.w-col-sm-offset-11{margin-left:91.66666667%}.w-col-sm-offset-10{margin-left:83.33333333%}.w-col-sm-offset-9{margin-left:75%}.w-col-sm-offset-8{margin-left:66.66666667%}.w-col-sm-offset-7{margin-left:58.33333333%}.w-col-sm-offset-6{margin-left:50%}.w-col-sm-offset-5{margin-left:41.66666667%}.w-col-sm-offset-4{margin-left:33.33333333%}.w-col-sm-offset-3{margin-left:25%}.w-col-sm-offset-2{margin-left:16.66666667%}.w-col-sm-offset-1{margin-left:8w-33333333%}.w-col-sm-offset-0{margin-left:0}}@media (min-width:992px){.w-col-md-1,.w-col-md-10,.w-col-md-11,.w-col-md-12,.w-col-md-2,.w-col-md-3,.w-col-md-4,.w-col-md-5,.w-col-md-6,.w-col-md-7,.w-col-md-8,.w-col-md-9{float:left}.w-col-md-12{width:100%}.w-col-md-11{width:91.66666667%}.w-col-md-10{width:83.33333333%}.w-col-md-9{width:75%}.w-col-md-8{width:66.66666667%}.w-col-md-7{width:58.33333333%}.w-col-md-6{width:50%}.w-col-md-5{width:41.66666667%}.w-col-md-4{width:33.33333333%}.w-col-md-3{width:25%}.w-col-md-2{width:16.66666667%}.w-col-md-1{width:8w-33333333%}.w-col-md-pull-12{right:100%}.w-col-md-pull-11{right:91.66666667%}.w-col-md-pull-10{right:83.33333333%}.w-col-md-pull-9{right:75%}.w-col-md-pull-8{right:66.66666667%}.w-col-md-pull-7{right:58.33333333%}.w-col-md-pull-6{right:50%}.w-col-md-pull-5{right:41.66666667%}.w-col-md-pull-4{right:33.33333333%}.w-col-md-pull-3{right:25%}.w-col-md-pull-2{right:16.66666667%}.w-col-md-pull-1{right:8w-33333333%}.w-col-md-pull-0{right:auto}.w-col-md-push-12{left:100%}.w-col-md-push-11{left:91.66666667%}.w-col-md-push-10{left:83.33333333%}.w-col-md-push-9{left:75%}.w-col-md-push-8{left:66.66666667%}.w-col-md-push-7{left:58.33333333%}.w-col-md-push-6{left:50%}.w-col-md-push-5{left:41.66666667%}.w-col-md-push-4{left:33.33333333%}.w-col-md-push-3{left:25%}.w-col-md-push-2{left:16.66666667%}.w-col-md-push-1{left:8w-33333333%}.w-col-md-push-0{left:auto}.w-col-md-offset-12{margin-left:100%}.w-col-md-offset-11{margin-left:91.66666667%}.w-col-md-offset-10{margin-left:83.33333333%}.w-col-md-offset-9{margin-left:75%}.w-col-md-offset-8{margin-left:66.66666667%}.w-col-md-offset-7{margin-left:58.33333333%}.w-col-md-offset-6{margin-left:50%}.w-col-md-offset-5{margin-left:41.66666667%}.w-col-md-offset-4{margin-left:33.33333333%}.w-col-md-offset-3{margin-left:25%}.w-col-md-offset-2{margin-left:16.66666667%}.w-col-md-offset-1{margin-left:8w-33333333%}.w-col-md-offset-0{margin-left:0}}@media (min-width:1200px){.w-col-lg-1,.w-col-lg-10,.w-col-lg-11,.w-col-lg-12,.w-col-lg-2,.w-col-lg-3,.w-col-lg-4,.w-col-lg-5,.w-col-lg-6,.w-col-lg-7,.w-col-lg-8,.w-col-lg-9{float:left}.w-col-lg-12{width:100%}.w-col-lg-11{width:91.66666667%}.w-col-lg-10{width:83.33333333%}.w-col-lg-9{width:75%}.w-col-lg-8{width:66.66666667%}.w-col-lg-7{width:58.33333333%}.w-col-lg-6{width:50%}.w-col-lg-5{width:41.66666667%}.w-col-lg-4{width:33.33333333%}.w-col-lg-3{width:25%}.w-col-lg-2{width:16.66666667%}.w-col-lg-1{width:8w-33333333%}.w-col-lg-pull-12{right:100%}.w-col-lg-pull-11{right:91.66666667%}.w-col-lg-pull-10{right:83.33333333%}.w-col-lg-pull-9{right:75%}.w-col-lg-pull-8{right:66.66666667%}.w-col-lg-pull-7{right:58.33333333%}.w-col-lg-pull-6{right:50%}.w-col-lg-pull-5{right:41.66666667%}.w-col-lg-pull-4{right:33.33333333%}.w-col-lg-pull-3{right:25%}.w-col-lg-pull-2{right:16.66666667%}.w-col-lg-pull-1{right:8w-33333333%}.w-col-lg-pull-0{right:auto}.w-col-lg-push-12{left:100%}.w-col-lg-push-11{left:91.66666667%}.w-col-lg-push-10{left:83.33333333%}.w-col-lg-push-9{left:75%}.w-col-lg-push-8{left:66.66666667%}.w-col-lg-push-7{left:58.33333333%}.w-col-lg-push-6{left:50%}.w-col-lg-push-5{left:41.66666667%}.w-col-lg-push-4{left:33.33333333%}.w-col-lg-push-3{left:25%}.w-col-lg-push-2{left:16.66666667%}.w-col-lg-push-1{left:8w-33333333%}.w-col-lg-push-0{left:auto}.w-col-lg-offset-12{margin-left:100%}.w-col-lg-offset-11{margin-left:91.66666667%}.w-col-lg-offset-10{margin-left:83.33333333%}.w-col-lg-offset-9{margin-left:75%}.w-col-lg-offset-8{margin-left:66.66666667%}.w-col-lg-offset-7{margin-left:58.33333333%}.w-col-lg-offset-6{margin-left:50%}.w-col-lg-offset-5{margin-left:41.66666667%}.w-col-lg-offset-4{margin-left:33.33333333%}.w-col-lg-offset-3{margin-left:25%}.w-col-lg-offset-2{margin-left:16.66666667%}.w-col-lg-offset-1{margin-left:8w-33333333%}.w-col-lg-offset-0{margin-left:0}}.w-clearfix:after,.w-clearfix:before,.w-container-fluid:after,.w-container-fluid:before,.w-container:after,.w-container:before,.w-row:after,.w-row:before{content:" ";display:table}.w-clearfix:after,.w-container-fluid:after,.w-container:after,.w-row:after{clear:both}.w-center-block{display:block;margin-left:auto;margin-right:auto}.w-pull-right{float:right!important}.w-pull-left{float:left!important}.w-hide{display:none!important}.w-show{display:block!important}.w-invisible{visibility:hidden}.w-text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.w-hidden{display:none!important}.w-affix{position:fixed}.mec-image-popup-wrap{display:none}#wns-be-infobar.sticky{position:fixed;top:32px;background:#fff;z-index:9999;width:82%}.wns-be-main .wns-saved-settings.sticky{position:fixed;width:62.5%;top:111px;z-index:999999999999999999}.mec-export-settings,.mec-import-settings{font-weight:700;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:8px 32px;height:36px;letter-spacing:.2px;line-height:36px;font-size:13px;color:#fff;text-decoration:none;display:inline-block}.mec-export-settings:hover,.mec-import-settings:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5);color:#fff}textarea.mec-import-settings-content{display:block;width:100%;min-height:120px;margin-bottom:25px;padding:10px 15px}.mec-import-options-notification{display:inline-block}.mec-import-options-notification .mec-message-import-error,.mec-import-options-notification .mec-message-import-success{display:inline-block;padding:15px 12px;margin-left:12px;opacity:0;visibility:hidden;font-weight:700}.mec-import-options-notification .mec-message-import-success{opacity:1;visibility:visible;border:2px solid green}.mec-import-options-notification .mec-message-import-error{opacity:1;visibility:visible;border:2px solid #e62117}.mec-export-settings:focus,.mec-import-settings:focus{color:#fff}.mec-import-settings-wrap{position:relative}.mec-loarder-wrap{position:absolute;top:0;bottom:0;left:0;right:0;background:rgba(202,202,202,.7);z-index:9999}.mec-loarder-wrap.mec-settings-loader{top:34px}.mec-loarder{position:absolute;width:64px;height:64px;top:calc(50% - 32px);left:calc(50% - 36px)}.mec-loarder div{display:inline-block;position:absolute;left:6px;width:4px;background:#fff;animation:mec-loarder 1.2s cubic-bezier(0,.5,.5,1) infinite}.mec-loarder div:nth-child(1){left:27px;animation-delay:-.24s;background:#0075ff}.mec-loarder div:nth-child(2){left:36px;animation-delay:-.12s;background:#028bff}.mec-loarder div:nth-child(3){left:45px;animation-delay:0;background:#32a0ff}@keyframes mec-loarder{0%{top:6px;height:51px}100%,50%{top:19px;height:26px}}.w-box.support-page.searchbox{background:#008aff;background:linear-gradient(180deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff;min-height:260px;text-align:center;border-radius:2px}#webnus-dashboard .search-form input{background:rgba(255,255,255,.2);border:none;width:50%;outline:0;color:rgba(255,255,255,.7);font-size:18px;border-radius:4px 0 0 4px;box-shadow:0 1px 2px 0 rgba(0,0,0,.03);-webkit-transition:background .4s,box-shadow .2s;transition:background .4s,box-shadow .2s;padding:20px 32px;margin:0}#webnus-dashboard .search-form button{background:rgba(255,255,255,.2);border:none;padding:20px 32px;margin-left:-2px;color:#fff;border-radius:0 4px 4px 0;font-size:18px;cursor:pointer;-webkit-transition:background .4s,box-shadow .2s;transition:background .4s,box-shadow .2s}#webnus-dashboard .search-form button:hover{background:#fff;color:#3a3c4c}.w-box.support-page.searchbox p{font-size:30px}.search-form input::-webkit-input-placeholder{color:rgba(255,255,255,.7)}.search-form input::-moz-placeholder{color:rgba(255,255,255,.7)}.search-form input:-ms-input-placeholder{color:rgba(255,255,255,.7)}.search-form input:-moz-placeholder{color:rgba(255,255,255,.7)}#webnus-dashboard .search-form input:active,#webnus-dashboard .search-form input:focus{box-shadow:0 10px 20px rgba(0,0,0,.14);background:#fff;color:#3a3c4c}#webnus-dashboard .search-form input:active::-webkit-input-placeholder,#webnus-dashboard .search-form input:focus::-webkit-input-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active::-moz-placeholder,#webnus-dashboard .search-form input:focus::-moz-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active:-ms-input-placeholder,#webnus-dashboard .search-form input:focus:-ms-input-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active:-moz-placeholder,#webnus-dashboard .search-form input:focus:-moz-placeholder{color:#3a3c4c}#webnus-dashboard .w-box.support-page.mec-ticksy{text-align:center;min-height:260px}#webnus-dashboard .w-box.support-page.mec-ticksy p{font-size:20px;width:70%;margin:0 auto;margin-bottom:40px;margin-top:40px}#webnus-dashboard .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}}#mec_tickets .mec-box{position:relative;padding:25px 10px}.mec-form-row input[type=text],.mec-form-row textarea{max-width:400px}#mec_fees_list input[type=text].mec-col-12,#mec_ticket_variations_list input[type=text].mec-col-12{max-width:625px}#taxes_option .mec-form-row input[type=text].mec-col-12,#ticket_variations_option input[type=text].mec-col-12{max-width:554px}.mec-booking-tab-content .mec-form-row textarea{max-width:762px}#mec_tickets .button.remove{padding:0;min-height:28px;height:28px;width:28px;margin:0;border-radius:50%;position:absolute;top:20px;right:20px;color:#ea6485;box-shadow:0 2px 6px -3px #ea6485;background:#fff;border-color:#ffd2dd;font-size:20px;line-height:1.5}#mec_tickets .button.remove svg{fill:#ea6485!important}#mec_tickets .button.remove:hover{color:#fff;border:2px solid #ea6485;background:#ea6485}#mec_tickets .button.remove:hover svg{fill:#fff!important}@media(max-width:480px){#mec_tickets .button.remove{top:5px;right:5px}}.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,.mec-form-row input[type=number],.mec-form-row input[type=text],.mec-form-row select,.mec-form-row textarea,.mec-form-row.mec-skin-list-date-format-container input[type=text]{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 .mec-col-8 span.mec-archive-skins input[type=text]{max-width:225px}.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}.post-type-mec-events .lity{background:#edf0f3}.post-type-mec-events .lity-container{width:60vW;max-width:883px;margin:0 auto;border-radius:7px}.post-type-mec-events .lity-content:after{display:none}.mec-manage-events-lightbox{box-shadow:0 3px 20px rgba(0,0,0,.05)}.w-clearfix.mec-attendees-content img{display:inline-block;width:25px;height:25px;vertical-align:middle;margin-right:7px}.post-type-mec-events .mec-attendees-list-head{background:#008aff;color:#fff;text-align:center;padding:17px 0;text-transform:capitalize;font-size:26px;font-weight:700;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;border-radius:7px 7px 0 0;line-height:43px;box-shadow:0 3px 15px rgba(0,138,255,.25);z-index:99}.mec-attendees-list-wrap{display:flex;width:100%;flex-direction:column;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;background:#fff;box-shadow:0 3px 20px rgba(0,0,0,.05);border-radius:0 0 5px 5px;overflow:hidden}.mec-attendees-list-left{flex:1;background:#f6f8fa;padding:0;border-radius:0;position:relative}.mec-attendees-list-right,.mec-send-email-form-wrap{flex:1;border-radius:0 0 5px 5px;padding:0 20px 20px;background:#f2f4f7}.mec-attendees-list-left-menu a{display:inline-block;line-height:22px;font-size:12px;color:#000;font-weight:500;border-bottom:1px solid #eaebec;border-left:1px solid #eaebec;padding-bottom:0;padding:7px 6px;margin-bottom:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;transition:all .2s ease;text-decoration:none;text-align:center}.mec-attendees-list-left-menu a.selected-day{color:#008aff}.mec-attendees-list-left-menu .owl-item:last-child a{border-right:1px solid #eaebec}.mec-attendees-list-right table{width:100%}.w-clearfix.mec-attendees-head{margin-top:30px;border-bottom:2px solid #008aff;padding-bottom:18px;margin-bottom:3px}.w-clearfix.mec-attendees-content [class^=w-col-xs-],.w-clearfix.mec-attendees-head [class^=w-col-xs-]{padding:0}.w-clearfix.mec-attendees-head span{font-weight:600;color:#000;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;font-size:17px}.w-clearfix.mec-attendees-content{background:#fff;margin-bottom:2px;padding:10px 20px}.mec-attendees-list-left-menu{height:36px;margin-left:35px;margin-right:36px}.mec-attendees-list-left-menu a:active,.mec-attendees-list-left-menu a:focus,.mec-attendees-list-left-menu a:visited{outline:0;box-shadow:none}.mec-attendees-list-left-menu .owl-item{display:inline-block}.mec-attendees-list-left-menu .owl-stage{min-width:800px!important}.owl-nav.disabled .owl-next{position:absolute;right:0;top:0}.owl-nav.disabled .owl-prev{position:absolute;left:0;top:0}.owl-nav.disabled button{background:#fff;box-shadow:none;border:1px solid #ccc;height:36px;width:36px;font-size:54px;line-height:54px}.owl-nav.disabled button span{margin-top:-18px;display:block}.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}@media(max-width:992px){.post-type-mec-events .lity-container{width:80vw}}@-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)}}
|
assets/css/frontend.css
CHANGED
@@ -518,6 +518,10 @@
|
|
518 |
vertical-align: middle;
|
519 |
}
|
520 |
|
|
|
|
|
|
|
|
|
521 |
.mec-event-sharing-wrap .mec-event-sharing li a {
|
522 |
display: block;
|
523 |
}
|
@@ -1053,14 +1057,14 @@ span.mec-event-title-soldout {
|
|
1053 |
|
1054 |
.mec-event-list-minimal .mec-event-date:after {
|
1055 |
display: block;
|
1056 |
-
|
1057 |
-
|
1058 |
-
|
1059 |
-
|
1060 |
-
|
1061 |
-
|
1062 |
-
|
1063 |
-
|
1064 |
}
|
1065 |
|
1066 |
.mec-event-list-minimal .mec-event-title {
|
@@ -1238,12 +1242,13 @@ span.mec-event-title-soldout {
|
|
1238 |
|
1239 |
.mec-event-list-modern .mec-event-date .event-da {
|
1240 |
margin-top: 9px;
|
1241 |
-
|
1242 |
-
|
1243 |
-
|
1244 |
-
|
1245 |
-
|
1246 |
-
|
|
|
1247 |
}
|
1248 |
|
1249 |
.mec-event-list-modern .mec-btn-wrapper .mec-booking-button {
|
@@ -3322,6 +3327,7 @@ focus,
|
|
3322 |
padding: 9px;
|
3323 |
font-size: 16px;
|
3324 |
margin-right: 5px;
|
|
|
3325 |
}
|
3326 |
|
3327 |
.mec-single-event .mec-event-social a.facebook {
|
@@ -3404,6 +3410,63 @@ focus,
|
|
3404 |
background: #3d608a;
|
3405 |
}
|
3406 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3407 |
.mec-single-event .mec-event-social a.rss {
|
3408 |
background: #f29a1d;
|
3409 |
}
|
@@ -3736,8 +3799,9 @@ address.mec-events-address {
|
|
3736 |
|
3737 |
.mec-single-event .mec-speakers-details ul li .mec-speaker-name {
|
3738 |
display: inline-block;
|
3739 |
-
margin-top:
|
3740 |
-
font-size:
|
|
|
3741 |
text-transform: capitalize;
|
3742 |
font-weight: 700;
|
3743 |
padding-left: 8px;
|
@@ -3748,6 +3812,7 @@ address.mec-events-address {
|
|
3748 |
font-size: 12px;
|
3749 |
margin-top: -1px;
|
3750 |
padding-left: 75px;
|
|
|
3751 |
}
|
3752 |
|
3753 |
/* Location */
|
@@ -5454,6 +5519,10 @@ li.mec-no-event-found .mec-event-title {
|
|
5454 |
border: 0 none;
|
5455 |
}
|
5456 |
|
|
|
|
|
|
|
|
|
5457 |
.mec-events-meta-group-countdown .countdown-w span {
|
5458 |
padding: 24px 0 20px;
|
5459 |
}
|
@@ -10398,8 +10467,10 @@ body .featherlight .featherlight-close-icon:hover {
|
|
10398 |
}
|
10399 |
|
10400 |
.mec-masonry .mec-masonry-col6 .mec-event-date {
|
10401 |
-
font-size:
|
10402 |
letter-spacing: -2px;
|
|
|
|
|
10403 |
}
|
10404 |
|
10405 |
.mec-masonry .mec-masonry-col6 {
|
@@ -11589,9 +11660,10 @@ ul.mec-weekly-view-dates-events article:before,
|
|
11589 |
height: 30px;
|
11590 |
display: inline-block;
|
11591 |
text-align: center;
|
11592 |
-
transition: all
|
11593 |
font-size: 15px;
|
11594 |
cursor: pointer;
|
|
|
11595 |
}
|
11596 |
|
11597 |
.mec-hourly-schedule-speaker-contact-information a i:hover {
|
@@ -14766,6 +14838,7 @@ a.mec-timeline-readmore:hover {
|
|
14766 |
|
14767 |
.mec-timeline-event-location address {
|
14768 |
font-style: normal;
|
|
|
14769 |
}
|
14770 |
|
14771 |
.mec-timeline-event-location address span {
|
@@ -14941,8 +15014,9 @@ a.mec-timeline-readmore i {
|
|
14941 |
position: relative;
|
14942 |
color: #fff;
|
14943 |
background-size: cover !important;
|
14944 |
-
|
14945 |
-
|
|
|
14946 |
}
|
14947 |
|
14948 |
.mec-event-tile-view article.mec-tile-item:hover {
|
@@ -14956,14 +15030,19 @@ a.mec-timeline-readmore i {
|
|
14956 |
|
14957 |
.mec-event-tile-view article.mec-tile-item:before,
|
14958 |
.mec-event-tile-view article.mec-tile-item:after {
|
14959 |
-
position: absolute;
|
14960 |
-
background: linear-gradient(180deg,
|
|
|
|
|
|
|
14961 |
content: "";
|
14962 |
left: 0;
|
14963 |
right: 0;
|
14964 |
bottom: 0;
|
14965 |
top: 0;
|
14966 |
width: 100%;
|
|
|
|
|
14967 |
border-radius: 22px;
|
14968 |
z-index: 1;
|
14969 |
}
|
@@ -14971,7 +15050,7 @@ a.mec-timeline-readmore i {
|
|
14971 |
.mec-event-tile-view article.mec-tile-item:after {
|
14972 |
background-color: inherit;
|
14973 |
background-image: none;
|
14974 |
-
top:
|
14975 |
bottom: auto;
|
14976 |
height: 40px;
|
14977 |
border-radius: 0 3px 3px 0;
|
518 |
vertical-align: middle;
|
519 |
}
|
520 |
|
521 |
+
.mec-event-sharing-wrap li svg {
|
522 |
+
height: 16px;
|
523 |
+
}
|
524 |
+
|
525 |
.mec-event-sharing-wrap .mec-event-sharing li a {
|
526 |
display: block;
|
527 |
}
|
1057 |
|
1058 |
.mec-event-list-minimal .mec-event-date:after {
|
1059 |
display: block;
|
1060 |
+
content: "";
|
1061 |
+
position: absolute;
|
1062 |
+
width: 50px;
|
1063 |
+
left: 1px;
|
1064 |
+
top: 1px;
|
1065 |
+
height: 34px;
|
1066 |
+
background: rgba(255,255,255,.1);
|
1067 |
+
box-shadow: 0 4px 4px rgba(0,0,0,.02);
|
1068 |
}
|
1069 |
|
1070 |
.mec-event-list-minimal .mec-event-title {
|
1242 |
|
1243 |
.mec-event-list-modern .mec-event-date .event-da {
|
1244 |
margin-top: 9px;
|
1245 |
+
color: silver;
|
1246 |
+
font-family: Roboto,sans-serif;
|
1247 |
+
font-size: 28px;
|
1248 |
+
font-weight: 100;
|
1249 |
+
text-transform: uppercase;
|
1250 |
+
letter-spacing: -1px;
|
1251 |
+
text-align: left;
|
1252 |
}
|
1253 |
|
1254 |
.mec-event-list-modern .mec-btn-wrapper .mec-booking-button {
|
3327 |
padding: 9px;
|
3328 |
font-size: 16px;
|
3329 |
margin-right: 5px;
|
3330 |
+
margin-bottom: 5px;
|
3331 |
}
|
3332 |
|
3333 |
.mec-single-event .mec-event-social a.facebook {
|
3410 |
background: #3d608a;
|
3411 |
}
|
3412 |
|
3413 |
+
.mec-single-event .mec-event-social a.tumblr {
|
3414 |
+
background: #34465d;
|
3415 |
+
}
|
3416 |
+
|
3417 |
+
.mec-single-event .mec-event-social a.tumblr:hover {
|
3418 |
+
background: #273649;
|
3419 |
+
}
|
3420 |
+
|
3421 |
+
.mec-single-event .mec-event-social a.telegram {
|
3422 |
+
background: #0088CC;
|
3423 |
+
}
|
3424 |
+
|
3425 |
+
.mec-single-event .mec-event-social a.telegram:hover {
|
3426 |
+
background: rgb(16, 118, 190);
|
3427 |
+
}
|
3428 |
+
|
3429 |
+
.mec-single-event .mec-event-social a.whatsapp {
|
3430 |
+
background: #25D366;
|
3431 |
+
}
|
3432 |
+
|
3433 |
+
.mec-single-event .mec-event-social a.whatsapp:hover {
|
3434 |
+
background: #23ac55;
|
3435 |
+
}
|
3436 |
+
|
3437 |
+
.mec-single-event .mec-event-social a.flipboard {
|
3438 |
+
background: #e12828;
|
3439 |
+
}
|
3440 |
+
|
3441 |
+
.mec-single-event .mec-event-social a.flipboard:hover {
|
3442 |
+
background: #af1e1e;
|
3443 |
+
}
|
3444 |
+
|
3445 |
+
.mec-single-event .mec-event-social a.pocket {
|
3446 |
+
background: #ef4056;
|
3447 |
+
}
|
3448 |
+
|
3449 |
+
.mec-single-event .mec-event-social a.pocket:hover {
|
3450 |
+
background: #8d1717;
|
3451 |
+
}
|
3452 |
+
|
3453 |
+
.mec-single-event .mec-event-social a.reddit {
|
3454 |
+
background: #ff5700;
|
3455 |
+
}
|
3456 |
+
|
3457 |
+
.mec-single-event .mec-event-social a.reddit:hover {
|
3458 |
+
background: #c94909;
|
3459 |
+
}
|
3460 |
+
|
3461 |
+
.mec-single-event .mec-event-social a.telegram svg,
|
3462 |
+
.mec-single-event .mec-event-social a.flipboard svg {
|
3463 |
+
height: 16px;
|
3464 |
+
}
|
3465 |
+
|
3466 |
+
.mec-single-event .mec-event-social li.mec-event-social-icon a svg {
|
3467 |
+
display: unset;
|
3468 |
+
}
|
3469 |
+
|
3470 |
.mec-single-event .mec-event-social a.rss {
|
3471 |
background: #f29a1d;
|
3472 |
}
|
3799 |
|
3800 |
.mec-single-event .mec-speakers-details ul li .mec-speaker-name {
|
3801 |
display: inline-block;
|
3802 |
+
margin-top: 10px;
|
3803 |
+
font-size: 15px;
|
3804 |
+
line-height: 1.8;
|
3805 |
text-transform: capitalize;
|
3806 |
font-weight: 700;
|
3807 |
padding-left: 8px;
|
3812 |
font-size: 12px;
|
3813 |
margin-top: -1px;
|
3814 |
padding-left: 75px;
|
3815 |
+
color: #888;
|
3816 |
}
|
3817 |
|
3818 |
/* Location */
|
5519 |
border: 0 none;
|
5520 |
}
|
5521 |
|
5522 |
+
.mec-events-meta-group-countdown .countdown-w .block-w li {
|
5523 |
+
font-size: 50px;
|
5524 |
+
}
|
5525 |
+
|
5526 |
.mec-events-meta-group-countdown .countdown-w span {
|
5527 |
padding: 24px 0 20px;
|
5528 |
}
|
10467 |
}
|
10468 |
|
10469 |
.mec-masonry .mec-masonry-col6 .mec-event-date {
|
10470 |
+
font-size: 52px;
|
10471 |
letter-spacing: -2px;
|
10472 |
+
line-height: 41px;
|
10473 |
+
vertical-align: top;
|
10474 |
}
|
10475 |
|
10476 |
.mec-masonry .mec-masonry-col6 {
|
11660 |
height: 30px;
|
11661 |
display: inline-block;
|
11662 |
text-align: center;
|
11663 |
+
transition: all .2s ease;
|
11664 |
font-size: 15px;
|
11665 |
cursor: pointer;
|
11666 |
+
border-radius: 3px;
|
11667 |
}
|
11668 |
|
11669 |
.mec-hourly-schedule-speaker-contact-information a i:hover {
|
14838 |
|
14839 |
.mec-timeline-event-location address {
|
14840 |
font-style: normal;
|
14841 |
+
margin-bottom:0;
|
14842 |
}
|
14843 |
|
14844 |
.mec-timeline-event-location address span {
|
15014 |
position: relative;
|
15015 |
color: #fff;
|
15016 |
background-size: cover !important;
|
15017 |
+
background-position: center !important;
|
15018 |
+
box-shadow: 0 2px 9px rgba(0, 0, 0, .25);
|
15019 |
+
transition: all .22s ease;
|
15020 |
}
|
15021 |
|
15022 |
.mec-event-tile-view article.mec-tile-item:hover {
|
15030 |
|
15031 |
.mec-event-tile-view article.mec-tile-item:before,
|
15032 |
.mec-event-tile-view article.mec-tile-item:after {
|
15033 |
+
position: absolute;
|
15034 |
+
background: -moz-linear-gradient(180deg,rgba(0,0,0,.35) 0%,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);
|
15035 |
+
background: -webkit-gradient(left top, right top, color-stop(0%, rgba(0,0,0,.35)), color-stop(65%, rgba(0,0,0,.48)), color-stop(100%, rgba(0,0,0,.72)));
|
15036 |
+
background: -webkit-gradient(180deg,rgba(0,0,0,.35) 0%,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);
|
15037 |
+
background: linear-gradient(180deg,rgba(0,0,0,.35) 0%,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);
|
15038 |
content: "";
|
15039 |
left: 0;
|
15040 |
right: 0;
|
15041 |
bottom: 0;
|
15042 |
top: 0;
|
15043 |
width: 100%;
|
15044 |
+
width: calc(100% + 1px);
|
15045 |
+
height: 100%;
|
15046 |
border-radius: 22px;
|
15047 |
z-index: 1;
|
15048 |
}
|
15050 |
.mec-event-tile-view article.mec-tile-item:after {
|
15051 |
background-color: inherit;
|
15052 |
background-image: none;
|
15053 |
+
top: 35px;
|
15054 |
bottom: auto;
|
15055 |
height: 40px;
|
15056 |
border-radius: 0 3px 3px 0;
|
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}}span.mec-event-title-soldout{font-size:8px;font-weight:700;letter-spacing:.5px;text-transform:uppercase;background:#e63360;color:#fff;padding:3px 8px;line-height:1;border-radius:15px;white-space:nowrap;vertical-align:middle}.mec-event-grid-colorful .mec-event-article{min-height:400px;border:none;box-shadow:none;background:#40d9f1;padding-top:25px;margin:0;color:#fff}.mec-event-grid-colorful .mec-event-content{background:0 0}.mec-event-grid-colorful .event-grid-modern-head,.mec-event-grid-colorful .event-grid-modern-head .mec-event-date,.mec-event-grid-colorful .event-grid-modern-head .mec-event-day,.mec-event-grid-colorful .mec-event-content p,.mec-event-grid-colorful .mec-event-sharing-wrap>li>a,.mec-event-grid-colorful .mec-event-title a{color:#fff}.mec-event-grid-colorful .mec-event-footer .mec-booking-button{border:none}.mec-event-grid-colorful .mec-event-sharing-wrap>li{border-color:#fff}.mec-event-grid-colorful .mec-event-sharing-wrap:hover>li{background:#333;border-color:#333}.mec-event-grid-colorful .mec-event-title a.mec-color-hover:hover{color:#fff;text-decoration:underline}.mec-event-grid-colorful .mec-event-title .event-color{display:none}.mec-event-grid-colorful div[class^=col-md-]{padding:0 1px 1px 0;margin:0}@media only screen and (min-width:768px){.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-day{font-size:26px}.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-month{font-size:15px}.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-date{font-size:50px}.mec-wrap.mec-sm959.mec-event-grid-colorful .mec-event-title{font-size:21px}.mec-wrap.mec-sm959.mec-event-grid-colorful .mec-event-content p{font-size:13px}}@media only screen and (min-width:768px) and (max-width:1200px){.mec-wrap.mec-sm959.mec-event-grid-colorful div[class^=col-md-]{width:50%}}.mec-event-list-minimal .mec-event-article{border-bottom:1px solid #efefef;padding:24px 0 16px}.mec-event-list-minimal .mec-wrap .col-md-9{padding:0}.mec-event-list-minimal .mec-event-date{position:relative;float:left;margin-right:30px;color:#fff;width:52px;padding:6px 4px 3px;text-align:center;text-transform:uppercase;border-radius:3px}.mec-event-list-minimal .mec-event-date span{display:block;font-size:24px;font-weight:700;text-align:center;margin-bottom:4px}.mec-event-list-minimal .mec-event-date:after{display:block;content:"";position:absolute;width:50px;left:1px;top:1px;height: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;margin-left:15px;border-radius:2px;box-shadow:0 1px 2px rgba(0,0,0,.15)}.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;border-radius:2px;box-shadow:0 1px 2px rgba(0,0,0,.15)}.mec-single-event .mec-booking-button:hover{background-color:#101010!important}.mec-single-event .mec-event-tags a{display:inline-block;color:#444;font-size:11px;text-transform:uppercase;letter-spacing:1.5px;font-weight:500;padding:3px 7px;border:1px solid #ddd;border-radius:2px;background:#fff;margin:1px 3px}.mec-single-event .mec-event-tags:before{font-size:24px;color:#303030;margin-right:5px;content:"\f02c";font-family:fontawesome}.mec-single-event .mec-event-tags{padding-top:13px}.mec-single-event .mec-event-sharing{margin:30px 0 10px}.mec-region.mec-events-abbr,.mec-single-event .mec-street-address{font-style:normal;font-size:13px}.mec-events-meta-group.mec-events-meta-group-venue:before,.mec-single-event-date:before,.mec-single-event-time:before{color:#40d9f1}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-event-social h3{text-transform:uppercase;font-size:15px;font-weight:700;padding-bottom:5px;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative}.mec-single-event .mec-social-single:before{padding:13px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:39px}.mec-single-event .mec-event-social .event-sharing{margin-top:30px}.mec-single-event .mec-event-social ul{list-style:none;margin-left:0}.mec-single-event .mec-event-social li.mec-event-social-icon{display:inline-block}.mec-single-event .mec-event-social li.mec-event-social-icon a{display:inline-block;color:#fff;width:40px;height:40px;padding:9px;font-size:16px;margin-right:5px}.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;display:block}.mec-attendees-list-details .mec-attendee-profile-link span{display:inline-block;color:#000;vertical-align:middle;cursor:pointer}.mec-attendees-list-details span.mec-attendee-profile-ticket-number{border-radius:50px;width:20px;height:20px;font-size:12px;text-align:center;color:#fff;margin-right:4px}.mec-attendees-list-details .mec-attendee-profile-link span i{vertical-align:middle;font-size:9px;font-weight:700;margin-left:5px}.mec-attendees-list-details .mec-attendees-toggle{border:1px solid #e6e6e6;background:#fafafa;padding:15px 15px 0;border-radius:3px;margin:12px 0 20px 52px;position:relative;font-size:13px;box-shadow:0 3px 1px 0 rgba(0,0,0,.02)}.mec-attendees-list-details .mec-attendees-toggle:after,.mec-attendees-list-details .mec-attendees-toggle:before{content:'';display:block;position:absolute;left:50px;width:0;height:0;border-style:solid;border-width:10px}.mec-attendees-list-details .mec-attendees-toggle:after{top:-20px;border-color:transparent transparent #fafafa transparent}.mec-attendees-list-details .mec-attendees-toggle:before{top:-21px;border-color:transparent transparent #e1e1e1 transparent}.mec-attendees-list-details .mec-attendees-toggle .mec-attendees-item{padding-bottom:15px}.mec-attendees-list-details .mec-attendee-avatar img{border-radius:3px}.mec-attendee-avatar-sec{float:left;width:50px;margin-right:12px}.mec-attendee-profile-name-sec,.mec-attendee-profile-ticket-sec{float:left;width:calc(100% - 62px);margin-top:3px}.mec-calendar{margin-bottom:20px;border:1px solid #e8e8e8;width:100%;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-calendar .mec-calendar-topsec{display:table;background:#fff}.mec-calendar .mec-calendar-topsec .mec-calendar-events-sec{display:none}.mec-calendar .mec-calendar-side{width:590px;display:table-cell;padding:40px;position:relative;text-align:center;box-shadow:0 1px 5px 6px rgba(0,0,0,.005) inset}.mec-calendar .mec-calendar-events-side{display:table-cell;height:100%;border-left:1px solid #efefef;padding:40px;width:100%}.mec-calendar .mec-calendar-events-side .mec-table-side-day{width:46px;height:46px;margin:0 auto 20px;position:relative;text-align:center;line-height:46px;border:1px solid #40d9f1;border-radius:50%;font-size:12px;font-weight:600;padding:0}.mec-calendar .mec-calendar-events-side .mec-table-side-title{text-align:center;font-size:11px;text-transform:uppercase;letter-spacing:3px;margin-bottom:14px}.mec-calendar .mec-calendar-header{position:relative;width:560px;margin-top:8px;margin-bottom:16px}.mec-calendar .mec-calendar-header h2{text-transform:uppercase;font-size:22px;font-weight:700;color:#333}.mec-calendar .mec-event-footer{width:auto;min-height:60px}.mec-calendar dl{display:table;margin:0;border:none;padding:0;table-layout:fixed}.mec-calendar dt{display:table-cell;transition:all .66s ease;color:#4d4d4d;background:#fff;border-radius:44px;font-size:14px;width:80px;height:80px;line-height:80px;text-align:center}.mec-calendar .mec-calendar-table .mec-no-event{display:none}.mec-calendar .mec-calendar-table-head dt{font-weight:700;text-transform:uppercase;font-size:15px}.mec-calendar .mec-calendar-row dt:hover{background:#f4f4f4}.mec-calendar .mec-table-nullday{color:#cacaca}.mec-calendar.mec-box-calendar .mec-table-nullday:last-child{border-right:1px solid #eaeaea}.mec-calendar .mec-next-month:hover,.mec-calendar .mec-prev-month:hover{background:#f4f4f4}.mec-calendar .mec-selected-day,.mec-calendar .mec-selected-day:hover{background:#40d9f1;color:#fff}.mec-calendar .mec-selected-day a{color:#fff}.mec-calendar .mec-has-event{position:relative}.mec-calendar .mec-calendar-row dt.mec-has-event:hover{background:#40d9f1}.mec-calendar .mec-has-event a{cursor:pointer;display:block;width:100%;height:100%;border-radius:50%;color:#4d4d4d;transition:all .25s ease;text-decoration:none;box-shadow:none}.mec-calendar .mec-calendar-row dt.mec-has-event.mec-selected-day a,.mec-calendar .mec-calendar-row dt.mec-has-event:hover a{color:#fff}.mec-calendar .mec-has-event:after{background-color:#40d9f1;border-radius:50%;display:block;content:'';width:8px;height:8px;bottom:14px;left:50%;margin:-4px 0 0 -4px;position:absolute;transition:all .25s ease}.mec-calendar .mec-calendar-row dt.mec-has-event:hover:after{background-color:#fff}.mec-calendar .mec-has-event.mec-selected-day:after{display:none}.mec-calendar .mec-event-article{text-align:left;margin-bottom:0;padding-bottom:25px;padding-top:26px;border-top:1px solid #efefef;transition:all .33s ease}.mec-calendar .mec-event-article:hover{background-color:#fafafa}.mec-calendar .mec-event-article .mec-event-time{font-size:11px;line-height:1.1;margin:0}.mec-calendar .mec-event-article .mec-event-title{font-size:13px;padding:0;margin:10px 0 8px;font-weight:700;text-transform:uppercase}.mec-calendar .mec-event-article .mec-event-title a{text-decoration:none;color:#494949;transition:color .3s ease}.mec-calendar .mec-event-article .mec-event-title a:hover{color:#40d9f1}.mec-calendar .mec-event-article .mec-event-image,.mec-calendar .mec-event-list-classic .mec-event-image img{width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-image{float:left;margin-right:20px;width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-detail{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}}.mec-event-tile-view article.mec-tile-item{height:400px;margin:15px 0;border-radius:22px;padding:35px 25px;position:relative;color:#fff;background-size:cover!important;box-shadow:0 2px 9px rgba(0,0,0,.25);transition:all .22s ease}.mec-event-tile-view article.mec-tile-item:hover{box-shadow:0 4px 19px rgba(0,0,0,.5)}.mec-event-tile-view article.mec-tile-item div{position:relative;z-index:3}.mec-event-tile-view article.mec-tile-item:after,.mec-event-tile-view article.mec-tile-item:before{position:absolute;background:linear-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);content:"";left:0;right:0;bottom:0;top:0;width:100%;border-radius:22px;z-index:1}.mec-event-tile-view article.mec-tile-item:after{background-color:inherit;background-image:none;top:34px;bottom:auto;height:40px;border-radius:0 3px 3px 0;width:97px;z-index:2;box-shadow:2px 1px 7px rgba(0,0,0,.1)}.mec-event-tile-view article.mec-tile-item .event-tile-view-head{padding:8px 3px;font-size:16px;font-weight:700;margin-bottom:50px;text-transform:uppercase}.mec-event-tile-view article.mec-tile-item .mec-event-time{color:#d6d6d6;font-size:15px;font-weight:400;line-height:1;padding-top:4px;position:absolute;right:1px;top:10px}.mec-event-tile-view article.mec-tile-item .mec-event-time i{vertical-align:baseline;font-size:14px;float:left}.mec-event-tile-view article.mec-tile-item i{margin-right:5px}.mec-event-tile-view article.mec-tile-item .mec-event-title{color:#fff;font-weight:700;font-size:23px;padding-top:12px}.mec-event-tile-view article.mec-tile-item .mec-event-title a{color:#fff}.mec-event-tile-view article.mec-tile-item .mec-event-title a:hover{text-decoration:underline}.mec-event-tile-view article.mec-tile-item .mec-event-content{position:absolute;bottom:25px;left:25px;right:25px}.mec-skin-tile-month-navigator-container{position:relative;text-align:center;font-size:12px;height:80px;background:#f7f7f7;padding:28px;border-radius:11px;margin-bottom:20px}.mec-skin-tile-month-navigator-container:after,.mec-skin-tile-month-navigator-container:before{content:'';display:block;position:absolute;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-skin-tile-month-navigator-container:after{bottom:-20px;border-color:#f7f7f7 transparent transparent transparent}.mec-skin-tile-month-navigator-container:before{bottom:-21px;border-color:#fff transparent transparent transparent}@media only screen and (max-width:480px){.mec-skin-tile-month-navigator-container{height:110px;padding-top:68px}}.mec-skin-tile-month-navigator-container h2{font-size:23px;font-weight:700}.mec-skin-tile-month-navigator-container .mec-next-month,.mec-skin-tile-month-navigator-container .mec-previous-month{position:absolute;top:28px;left:20px;cursor:pointer;padding:3px 12px;line-height:23px;background:#fff;border-radius:32px;box-shadow:0 1px 3px rgba(0,0,0,.02);transition:all .22s ease}.mec-skin-tile-month-navigator-container .mec-next-month{left:auto;right:20px}.mec-skin-tile-month-navigator-container .mec-next-month:hover,.mec-skin-tile-month-navigator-container .mec-previous-month:hover{box-shadow:0 2px 5px rgba(0,0,0,.1);color:#000}.mec-wrap .mec-event-tile-view article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view article.mec-label-featured:before{position:absolute;bottom:auto;text-align:center;right:auto;font-size:10px}.mec-wrap .mec-event-tile-view .col-md-3 article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view .col-md-3 article.mec-label-featured:before{top:12px;left:103px}.mec-wrap .mec-event-tile-view .col-md-4 article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view .col-md-4 article.mec-label-featured:before{top:18px;left:125px}.mec-wrap .mec-event-tile-view .col-md-6 article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view .col-md-6 article.mec-label-featured:before{top:20px;left:200px}
|
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 li svg{height:16px}.mec-event-sharing-wrap .mec-event-sharing li a{display:block}.mec-event-sharing-wrap .mec-event-sharing li:hover a{color:#40d9f1}.mec-event-sharing .mec-event-share:hover .event-sharing-icon{background:#40d9f1;border-width:0 1px 0;cursor:pointer}.mec-event-sharing .mec-event-map{border-width:1px 0 1px}.mec-event-footer .mec-booking-button{box-shadow:none;transition:all .21s ease;font-size:11px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:1px solid #e8e8e8;position:absolute;top:20px;right:15px;padding:0 16px;line-height:37px;height:38px}.mec-event-footer .mec-booking-button:hover{background:#191919;color:#fff;border-color:#191919}@media only screen and (max-width:960px){.mec-event-grid-classic{margin-bottom:30px}}.mec-widget .mec-event-grid-classic.mec-owl-carousel{padding:36px 0 16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav{margin:5px 0;width:100%;position:absolute;top:15px;padding:0}.mec-skin-grid-container.mec-widget{padding-top:18px}.mec-widget .mec-event-grid-classic.mec-owl-carousel{padding:20px 0 16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav{margin:0;width:100%;position:absolute;top:0;padding:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav div{position:absolute;background:#fff;line-height:0;width:34px;height:26px;padding:6px;text-align:center;margin-top:-17px;border-radius:3px;border:1px solid #e2e2e2;text-align:center;box-shadow:0 2px 0 0 rgba(0,0,0,.028);transition:all .33s ease}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav .owl-next{right:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav .owl-prev{left:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-sharing{display:none}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-footer{text-align:center}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-footer .mec-booking-button{position:static;padding:11px 16px}.widget .mec-event-footer ul.mec-event-sharing-wrap li a.mec-event-share-icon{padding:0}@media screen and (min-width:56.875em){.mec-widget .mec-month-container dl{margin-bottom:0}}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-footer{text-align:right}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-sharing-wrap{left:5px;padding-left:5px}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-sharing-wrap .mec-event-sharing{left:0}.mec-widget .mec-event-sharing-wrap .mec-event-sharing{position:absolute;top:auto;bottom:52px;margin:0;margin-top:0;border-radius:5px}.mec-widget .mec-event-sharing-wrap .mec-event-sharing:after{top:auto;bottom:-17px;border-color:#fff transparent transparent transparent}.mec-widget .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-18px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-grid-clean{margin-bottom:10px;max-width:none}.mec-event-grid-clean .mec-event-article{margin-bottom:30px;position:relative;border:1px solid #e2e2e2;text-align:center;padding:15px 15px 0;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-clean .mec-event-content{background:#fff;color:#767676;padding:25px 16px 0;text-align:left}.mec-event-grid-clean .mec-event-title{color:#202020;margin:0 0 10px 0;font-weight:700;font-size:21px;text-transform:capitalize}.mec-event-grid-clean .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-clean .mec-event-date{font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:1px;background-color:#40d9f1;color:#fff;padding:3px 0;margin:0;text-align:center}.mec-event-grid-clean .mec-event-content p{font-size:15px;color:#9a9a9a;line-height:1.54}.mec-event-grid-clean img{margin-bottom:0;width:100%}.mec-event-grid-clean .event-grid-t2-head{margin-bottom:10px;color:#fff;padding:9px 14px 6px;text-align:left}.mec-event-grid-clean .event-grid-t2-head .mec-event-date{font-size:50px;line-height:50px;float:left;margin-right:11px}.mec-event-grid-clean .event-grid-t2-head .mec-event-month{text-transform:uppercase;font-size:17px;line-height:20px;padding-top:4px}.mec-event-grid-clean .event-grid-t2-head .mec-event-detail{font-size:12px}.mec-event-grid-clean .mec-event-sharing-wrap{left:0}.mec-event-grid-clean .mec-event-footer{position:relative;border-top:2px solid;padding:20px 0;margin:0 14px;text-align:left;background:0 0}.mec-event-grid-clean .mec-event-footer .mec-booking-button{right:0}.mec-event-grid-clean .row{margin-bottom:30px}.mec-event-grid-modern{margin-bottom:10px;max-width:none}.mec-event-grid-modern .mec-event-article{position:relative;border:1px solid #e2e2e2;text-align:center;margin-bottom:30px;padding:45px 15px 10px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-modern .mec-event-content{background:#fff;color:#767676;padding:35px 15px 10px;text-align:left}.mec-event-grid-modern .mec-event-title{color:#202020;margin:0 0 10px 0;font-weight:700;font-size:24px;text-transform:none;letter-spacing:-1px}.mec-event-grid-modern .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-modern .mec-event-content p{font-size:15px;color:#9a9a9a;line-height:1.54}.mec-event-grid-modern img{margin-bottom:0;width:100%}.mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:9px 14px 6px;text-align:left}.mec-event-grid-modern .event-grid-modern-head .mec-event-date{font-size:50px;line-height:50px;float:left;margin-right:11px}.mec-event-grid-modern .event-grid-modern-head .mec-event-month{text-transform:uppercase;font-size:17px;line-height:20px;padding-top:4px}.mec-event-grid-modern .event-grid-modern-head .mec-event-detail{font-size:12px}.mec-event-grid-modern .event-grid-modern-head .mec-event-day{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:35px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-event-grid-modern .mec-event-footer{position:relative;height:90px;padding:20px 0;border:none;margin:0 14px;text-align:left;background:0 0}.mec-event-grid-modern .mec-event-footer .mec-booking-button{right:auto;left:0}.mec-event-grid-modern .mec-event-sharing-wrap{left:auto;right:0}.mec-event-grid-modern .mec-event-sharing{left:auto;right:-6px}.mec-event-grid-modern .mec-event-sharing-wrap li{border-radius:55px}.mec-event-grid-modern .row{margin-bottom:0}@media only screen and (max-width:479px){.mec-event-grid-modern .mec-event-article{padding-bottom:30px}.mec-event-grid-modern .mec-event-sharing{top:60px;left:0;right:auto}.mec-event-grid-modern .mec-event-footer .mec-booking-button{top:0}}span.mec-event-title-soldout{font-size:8px;font-weight:700;letter-spacing:.5px;text-transform:uppercase;background:#e63360;color:#fff;padding:3px 8px;line-height:1;border-radius:15px;white-space:nowrap;vertical-align:middle}.mec-event-grid-colorful .mec-event-article{min-height:400px;border:none;box-shadow:none;background:#40d9f1;padding-top:25px;margin:0;color:#fff}.mec-event-grid-colorful .mec-event-content{background:0 0}.mec-event-grid-colorful .event-grid-modern-head,.mec-event-grid-colorful .event-grid-modern-head .mec-event-date,.mec-event-grid-colorful .event-grid-modern-head .mec-event-day,.mec-event-grid-colorful .mec-event-content p,.mec-event-grid-colorful .mec-event-sharing-wrap>li>a,.mec-event-grid-colorful .mec-event-title a{color:#fff}.mec-event-grid-colorful .mec-event-footer .mec-booking-button{border:none}.mec-event-grid-colorful .mec-event-sharing-wrap>li{border-color:#fff}.mec-event-grid-colorful .mec-event-sharing-wrap:hover>li{background:#333;border-color:#333}.mec-event-grid-colorful .mec-event-title a.mec-color-hover:hover{color:#fff;text-decoration:underline}.mec-event-grid-colorful .mec-event-title .event-color{display:none}.mec-event-grid-colorful div[class^=col-md-]{padding:0 1px 1px 0;margin:0}@media only screen and (min-width:768px){.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-day{font-size:26px}.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-month{font-size:15px}.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-date{font-size:50px}.mec-wrap.mec-sm959.mec-event-grid-colorful .mec-event-title{font-size:21px}.mec-wrap.mec-sm959.mec-event-grid-colorful .mec-event-content p{font-size:13px}}@media only screen and (min-width:768px) and (max-width:1200px){.mec-wrap.mec-sm959.mec-event-grid-colorful div[class^=col-md-]{width:50%}}.mec-event-list-minimal .mec-event-article{border-bottom:1px solid #efefef;padding:24px 0 16px}.mec-event-list-minimal .mec-wrap .col-md-9{padding:0}.mec-event-list-minimal .mec-event-date{position:relative;float:left;margin-right:30px;color:#fff;width:52px;padding:6px 4px 3px;text-align:center;text-transform:uppercase;border-radius:3px}.mec-event-list-minimal .mec-event-date span{display:block;font-size:24px;font-weight:700;text-align:center;margin-bottom:4px}.mec-event-list-minimal .mec-event-date:after{display:block;content:"";position:absolute;width:50px;left:1px;top:1px;height:34px;background:rgba(255,255,255,.1);box-shadow:0 4px 4px rgba(0,0,0,.02)}.mec-event-list-minimal .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;font-size:18px;text-transform:uppercase;letter-spacing:0;padding-top:10px}.mec-event-list-minimal .mec-event-detail,.mec-event-list-minimal .mec-time-details{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;font-family:Roboto,sans-serif}.mec-event-list-minimal .btn-wrapper{text-align:right;padding-right:0;padding-top:6px}.mec-event-list-minimal .btn-wrapper .mec-detail-button{border-bottom:0;margin-bottom:14px;margin-right:0;box-shadow:none}.mec-event-list-minimal a.mec-detail-button{text-align:center;display:inline-block;background:#ededed;color:#191919;padding:12px;border-radius:2px;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:2px;transition:all .24s ease}.mec-event-list-minimal a.mec-detail-button:hover{background:#292929;color:#fff}.vc_col-sm-4 .mec-event-list-minimal .mec-event-date,.vc_col-sm-6 .mec-event-list-minimal .mec-event-date{margin-right:12px}.vc_col-sm-4 .mec-event-list-minimal .mec-event-title,.vc_col-sm-6 .mec-event-list-minimal .mec-event-title{font-size:15px;letter-spacing:2px}@media only screen and (min-width:480px) and (max-width:767px){.mec-event-list-minimal .btn-wrapper{padding-left:0}.mec-event-list-minimal .mec-event-date{margin-right:10px}}@media only screen and (max-width:767px){.mec-event-list-minimal .btn-wrapper .mec-detail-button{display:block;text-align:center;margin:0;margin-top:16px;padding:8px}.mec-event-list-minimal .btn-wrapper{margin:12px 0}}@media only screen and (max-width:479px){.mec-event-list-minimal .mec-event-date{float:none;width:100%;margin-bottom:8px}.mec-event-list-minimal .mec-event-date span{display:inline;padding-right:25px;margin-right:7px;font-size:inherit}.mec-event-list-minimal .mec-event-date:after{width:45%;box-shadow:4px 0 4px rgba(0,0,0,.02)}.mec-event-list-minimal .btn-wrapper{text-align:center;padding-left:0}.mec-event-list-minimal{text-align:center}.mec-event-list-minimal .mec-event-detail{margin-bottom:10px}}.mec-wrap .mec-event-list-modern .mec-event-title{margin-top:0;margin-bottom:10px}.mec-event-list-modern .mec-event-article{border-bottom:1px solid #efefef;padding:30px 0 10px}.mec-event-list-modern .mec-event-article:last-child{border-bottom:none}.mec-event-list-modern .mec-event-title a{color:#191919;transition:all .24s ease;box-shadow:none}.mec-event-list-modern .mec-event-date{text-transform:uppercase;padding:10px 0}.mec-event-list-modern .mec-event-date .event-d{font-size:48px;display:table-cell;padding:10px 0 0}.mec-event-list-modern .mec-event-date .event-f{font-size:13px;display:table-cell;vertical-align:middle;padding-left:7px;font-weight:500;letter-spacing:3px;color:#777}.mec-event-list-modern .mec-event-detail{font-weight:300;color:#8a8a8a}.mec-event-list-modern .mec-event-detail .mec-time-details{display:inline}.mec-event-list-modern .mec-event-date .event-da{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:28px;font-weight:100;text-transform:uppercase;letter-spacing:-1px;text-align:left}.mec-event-list-modern .mec-btn-wrapper .mec-booking-button{border-radius:1px;letter-spacing:2px;border:1px solid #e6e6e6;color:#333;background-color:#fff;padding:13px 20px;font-weight:700;font-size:11px;box-shadow:0 2px 0 0 rgba(0,0,0,.016);transition:all .28s ease}.mec-event-list-modern .mec-btn-wrapper .mec-booking-button:hover{border-color:#222;background:#222;color:#fff}.mec-event-list-modern .mec-event-title{font-weight:700;font-size:20px;text-transform:uppercase;letter-spacing:1px}.mec-event-list-modern .mec-event-detail{color:#9a9a9a;font-size:15px;font-weight:300;line-height:25px;font-family:Roboto,sans-serif}.mec-event-list-modern .mec-btn-wrapper{text-align:right;padding:10px 0;text-transform:uppercase}.mec-event-list-modern .mec-event-sharing{position:relative;margin:10px 0}.mec-event-list-modern .mec-event-sharing>li{display:inline-block;border:none;border-radius:50%;margin-right:3px}.mec-event-list-modern .mec-event-sharing>li:hover{display:inline-block}.mec-event-list-modern .mec-event-sharing>li:hover a i{color:#fff;background:#40d9f1;border-color:#40d9f1}.mec-event-list-modern .mec-event-sharing>li i{width:36px;display:inline-block;line-height:35px;color:#767676;text-align:center;border-radius:50%;border:1px solid #ddd;font-size:14px}.mec-event-list-modern .mec-event-sharing .mec-event-share:hover .mec-event-sharing-icon{background:#40d9f1;border-color:#40d9f1;cursor:pointer;border-radius:50%}.mec-event-list-modern .mec-event-sharing li:hover a i{background:#40d9f1}@media only screen and (min-width:768px){.mec-event-list-modern .mec-event-article{position:relative;min-height:160px;overflow:hidden}.mec-event-list-modern .col-md-2.col-sm-2{width:210px;position:absolute;left:0;top:20px}.mec-event-list-modern .col-md-4.col-sm-4.mec-btn-wrapper{width:180px;padding:0;position:absolute;right:0;top:30%}.mec-event-list-modern .col-md-6.col-sm-6{width:100%;padding-left:225px;padding-right:195px}}@media only screen and (max-width:767px){.mec-event-list-modern .mec-btn-wrapper .mec-booking-button{letter-spacing:1px;border:1px solid #e1e1e1;padding:8px 16px}.mec-event-list-modern .mec-btn-wrapper{padding:0 0 12px}.mec-event-list-modern .mec-event-sharing{margin-bottom:0}}.mec-event-grid-minimal .mec-event-article{margin:15px 0;min-height:80px;display:table}.mec-event-grid-minimal .event-detail-wrap{display:table-cell;vertical-align:middle}.mec-event-grid-minimal .mec-event-date{width:70px;float:left;margin-right:20px;padding:12px 16px 10px;text-align:center;text-transform:uppercase;border-radius:4px;border:1px solid #e6e6e6;transition:all .37s ease-in-out;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-minimal .mec-event-date span{display:block;font-size:24px;font-weight:700;text-align:center;margin-bottom:4px;color:#2a2a2a;transition:color .3s ease}.mec-event-grid-minimal .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;line-height:21px;font-size:16px;text-transform:uppercase;transition:color .3s ease}.mec-event-grid-minimal .mec-event-title a{color:#191919;transition:color .3s ease}.mec-event-grid-minimal .mec-event-detail{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;font-family:Roboto,sans-serif}.mec-event-grid-minimal .mec-event-date:hover{color:#fff}.mec-event-grid-minimal .mec-event-date:hover span{color:#fff}.mec-event-list-classic .mec-event-article{padding:12px 0;margin-bottom:20px}.mec-event-list-classic .mec-event-image{float:left;width:86px;margin-right:20px}.mec-event-list-classic .mec-event-date,.mec-event-list-classic .mec-event-time{font-weight:400;font-size:13px;letter-spacing:0;line-height:18px;text-align:left;display:initial;margin-right:12px}.mec-event-list-classic .mec-event-time .mec-time-details,.mec-event-list-classic .mec-event-time i{display:inline;margin-right:3px}.mec-event-list-classic .mec-event-date span{font-weight:500;margin-bottom:6px}.mec-event-list-classic .mec-event-title{font-size:15px;margin:10px 0 12px;font-weight:700;text-transform:uppercase}.mec-event-list-classic .mec-event-title a{color:#494949;transition:color .3s ease}.mec-event-list-classic .mec-event-detail{color:#777;font-weight:400;line-height:12px;font-size:12px;overflow:hidden}.mec-event-list-classic a.magicmore{padding:10px 16px;color:#fff;background:#222;letter-spacing:2px;font-size:11px}.mec-event-list-classic a.magicmore:after{content:"";display:none}.mec-event-list-classic a.magicmore:hover{color:#40d9f1}.mec-event-grid-simple .mec-event-article{position:relative;margin-bottom:30px}.mec-event-grid-simple .mec-event-article:after{border-right:1px solid #e6e6e6;height:60px;position:absolute;top:50%;margin-top:-30px;right:-1px}.mec-event-grid-simple .row div:last-child .mec-event-article:after{border:none}.mec-event-grid-simple .row{margin:15px 0 30px;text-align:center}.mec-event-grid-simple .mec-event-date{padding:0;margin:0;text-transform:capitalize;font-size:12px;font-weight:700}.mec-event-grid-simple .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;line-height:21px;font-size:15px;padding-top:5px;text-transform:uppercase;transition:color .37s ease}.mec-event-grid-simple .mec-event-title a{color:#494949;transition:color .3s ease}.mec-event-grid-simple .mec-event-detail{font-family:Roboto,sans-serif;font-weight:400;line-height:1;letter-spacing:0;font-size:13px;color:#777}.mec-event-grid-simple:hover .mec-event-title{color:#40d9f1}.mec-event-grid-simple:hover .mec-event-date{background:0 0}.event-last:after{display:none}@media only screen and (max-width:767px){.mec-event-grid-simple .mec-event-article{padding-bottom:20px;margin-bottom:20px;border-bottom:1px solid #eee}.mec-event-grid-simple .mec-event-article:after{border:none}}.mec-event-grid-novel .mec-event-article{position:relative;margin-bottom:30px;padding:60px 5% 60px 7%;border:1px solid rgba(255,255,255,.12);border-radius:10px;background-color:#0050fd;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease;z-index:1}.mec-event-grid-novel .mec-event-article .novel-grad-bg{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:10px;opacity:0;z-index:-1;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease}.mec-event-grid-novel .mec-event-article:hover{-webkit-box-shadow:0 13px 36px 0 rgba(0,0,0,.23);box-shadow:0 13px 36px 0 rgba(0,0,0,.23);border-color:transparent}.mec-event-grid-novel .mec-event-article:hover .novel-grad-bg{background-image:-webkit-gradient(linear,left top,right top,from(#262e32),to(#0e1015));background-image:-webkit-linear-gradient(left,#262e32 0,#0e1015 100%);background-image:-o-linear-gradient(left,#262e32 0,#0e1015 100%);background-image:linear-gradient(90deg,#262e32 0,#0e1015 100%);opacity:1}.mec-event-grid-novel .mec-event-image{float:left;width:150px;height:150px}.mec-event-grid-novel .mec-event-image img{width:150px;height:150px;border-radius:50%}.mec-event-grid-novel .mec-event-detail-wrap{margin-left:200px}.mec-event-grid-novel .mec-event-content h4{position:relative;margin-bottom:10px;display:inline-block}.mec-event-grid-novel .mec-event-content h4 a{font-size:24px;line-height:35px;color:#fafcff}.mec-event-grid-novel .mec-event-content h4::before{content:'';position:absolute;top:8px;left:-30px;width:17px;height:17px;background:#5cd0ed;opacity:.4;border-radius:50%}.mec-event-grid-novel .mec-event-content h4::after{content:'';position:absolute;top:12px;left:-26px;width:9px;height:9px;background:#5cd0ed;border-radius:50%}.mec-event-grid-novel .mec-event-address,.mec-event-grid-novel .mec-event-detail,.mec-event-grid-novel .mec-event-month{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;margin-left:15px;border-radius:2px;box-shadow:0 1px 2px rgba(0,0,0,.15)}.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;border-radius:2px;box-shadow:0 1px 2px rgba(0,0,0,.15)}.mec-single-event .mec-booking-button:hover{background-color:#101010!important}.mec-single-event .mec-event-tags a{display:inline-block;color:#444;font-size:11px;text-transform:uppercase;letter-spacing:1.5px;font-weight:500;padding:3px 7px;border:1px solid #ddd;border-radius:2px;background:#fff;margin:1px 3px}.mec-single-event .mec-event-tags:before{font-size:24px;color:#303030;margin-right:5px;content:"\f02c";font-family:fontawesome}.mec-single-event .mec-event-tags{padding-top:13px}.mec-single-event .mec-event-sharing{margin:30px 0 10px}.mec-region.mec-events-abbr,.mec-single-event .mec-street-address{font-style:normal;font-size:13px}.mec-events-meta-group.mec-events-meta-group-venue:before,.mec-single-event-date:before,.mec-single-event-time:before{color:#40d9f1}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-event-social h3{text-transform:uppercase;font-size:15px;font-weight:700;padding-bottom:5px;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative}.mec-single-event .mec-social-single:before{padding:13px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:39px}.mec-single-event .mec-event-social .event-sharing{margin-top:30px}.mec-single-event .mec-event-social ul{list-style:none;margin-left:0}.mec-single-event .mec-event-social li.mec-event-social-icon{display:inline-block}.mec-single-event .mec-event-social li.mec-event-social-icon a{display:inline-block;color:#fff;width:40px;height:40px;padding:9px;font-size:16px;margin-right:5px;margin-bottom:5px}.mec-single-event .mec-event-social a.facebook{background:#3b5996}.mec-single-event .mec-event-social a.facebook:hover{background:#28385c}.mec-single-event .mec-event-social a.twitter{background:#00acee}.mec-single-event .mec-event-social a.twitter:hover{background:#0087bd}.mec-single-event .mec-event-social a.vimeo{background:#0dadd6}.mec-single-event .mec-event-social a.vimeo:hover{background:#0a85a3}.mec-single-event .mec-event-social a.dribble{background:#d53e68}.mec-single-event .mec-event-social a.dribble:hover{background:#bf4c78}.mec-single-event .mec-event-social a.youtube{background:#cb322c}.mec-single-event .mec-event-social a.youtube:hover{background:#992622}.mec-single-event .mec-event-social a.pinterest{background:#cb2027}.mec-single-event .mec-event-social a.pinterest:hover{background:#99181d}.mec-single-event .mec-event-social a.google{background:#c3391c}.mec-single-event .mec-event-social a.google:hover{background:#99181f}.mec-single-event .mec-event-social a.linkedin{background:#0073b2}.mec-single-event .mec-event-social a.linkedin:hover{background:#005380}.mec-single-event .mec-event-social a.email{background:#ff5d5e}.mec-single-event .mec-event-social a.email:hover{background:#cc4949}.mec-single-event .mec-event-social a.vk{background:#5b88bd}.mec-single-event .mec-event-social a.vk:hover{background:#3d608a}.mec-single-event .mec-event-social a.tumblr{background:#34465d}.mec-single-event .mec-event-social a.tumblr:hover{background:#273649}.mec-single-event .mec-event-social a.telegram{background:#08c}.mec-single-event .mec-event-social a.telegram:hover{background:#1076be}.mec-single-event .mec-event-social a.whatsapp{background:#25d366}.mec-single-event .mec-event-social a.whatsapp:hover{background:#23ac55}.mec-single-event .mec-event-social a.flipboard{background:#e12828}.mec-single-event .mec-event-social a.flipboard:hover{background:#af1e1e}.mec-single-event .mec-event-social a.pocket{background:#ef4056}.mec-single-event .mec-event-social a.pocket:hover{background:#8d1717}.mec-single-event .mec-event-social a.reddit{background:#ff5700}.mec-single-event .mec-event-social a.reddit:hover{background:#c94909}.mec-single-event .mec-event-social a.flipboard svg,.mec-single-event .mec-event-social a.telegram svg{height:16px}.mec-single-event .mec-event-social li.mec-event-social-icon a svg{display:unset}.mec-single-event .mec-event-social a.rss{background:#f29a1d}.mec-single-event .mec-event-social a.rss:hover{background:#cc7400}.mec-single-event .mec-event-social a.instagram{background:#457399}.mec-single-event .mec-event-social a.instagram:hover{background:#2e4d66}.mec-single-event .mec-event-social a.other-social{background:#ff5d5e}.mec-single-event .mec-event-social a.other-social:hover{background:#cc4949}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4,.mec-single-event .mec-frontbox-title{text-transform:uppercase;font-size:15px;font-weight:700;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative;text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4:before,.mec-single-event .mec-frontbox-title:before{padding:1px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-35px;left:50%}.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-month],.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-year]{width:47%!important;margin-right:12px;margin-top:5px;display:inline-block!important}@media(max-width:768px){.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-month],.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-year]{width:100%!important;margin-right:0;display:block!important}}.mec-event-meta i:before{font-size:20px;vertical-align:middle}.mec-event-meta .mec-single-event-additional-organizers i:before,.mec-event-meta .mec-single-event-organizer i:before{font-size:14px;vertical-align:baseline}#mec-wrap .mec-events-day-time-slot .mec-events-content{float:left;width:33%;padding:0 15px}#mec-wrap .mec-events-day-time-slot .mec-events-event-image{padding-left:0}#mec-events-content .mec-events-abbr{color:#8d8d8d;font-size:14px}.mec-single-event .mec-events-content{margin-bottom:30px}.mec-single-event .mec-organizer-url a{word-wrap:break-word}.mec-single-event #headline{margin:0 0 10px}.mec-single-event #headline h2{padding:0}.mec-single-event .mec-events-meta-group.mec-events-meta-group-gmap .mec-events-venue-map{margin-top:0;padding:8px;border:1px solid #e5e5e5;border-radius:7px}#mec-events-gmap-0{height:325px!important}.mec-events-list .mec-events-day-time-slot .mec-events-event-meta{width:33%;float:left;padding:40px;height:auto;margin:0}.mec-events-day-time-slot .mec-events-content.description.entry-summary{font-size:15px;font-weight:300;color:#8d8d8d}.mec-events-day-time-slot .type-mec_events h2{font-size:28px;padding-bottom:20px}.mec-events-day .mec-events-day-time-slot .type-mec_events{margin:0}.mec-events-day .mec-events-day-time-slot h5{background-color:#8d8d8d}.mec-single-event .mec-event-meta .mec-single-event-additional-organizers .mec-events-single-section-title,.mec-single-event .mec-event-meta .mec-single-event-organizer .mec-events-single-section-title,.mec-single-event .mec-events-meta-date h3{padding-left:0;margin:10px;display:inline-block}.mec-single-event .mec-events-meta-date h3{width:100%}.mec-single-event .mec-events-event-image{border:0}.mec-single-event .mec-events-venue-map{padding:0}.mec-event-cost,.mec-event-more-info,.mec-event-website,.mec-events-meta-date,.mec-single-event-additional-organizers,.mec-single-event-category,.mec-single-event-date,.mec-single-event-label,.mec-single-event-location,.mec-single-event-organizer,.mec-single-event-time{background:#f7f7f7;padding:12px 14px 8px;margin-bottom:12px;vertical-align:baseline;position:relative}.mec-single-event .mec-events-meta-date dd,.mec-single-event .mec-single-event-additional-organizers dd,.mec-single-event .mec-single-event-organizer dd{padding-left:0;margin-bottom:10px}.mec-single-event .mec-events-meta-date dd span,.mec-single-event .mec-single-event-additional-organizers dd span,.mec-single-event .mec-single-event-organizer dd span{display:block;padding-left:12px;color:#8d8d8d}.mec-single-event .mec-events-meta-date i,.mec-single-event .mec-single-event-additional-organizers i,.mec-single-event .mec-single-event-organizer i{margin-right:10px;margin-left:12px}.mec-events-meta-group.mec-events-meta-group-venue dl{margin-bottom:0}address.mec-events-address{line-height:19px;font-style:normal;font-size:12px}.mec-single-event .mec-event-content dt{margin-top:5px}.mec-single-event .mec-single-event-additional-organizers .mec-single-event-additional-organizer{margin-bottom:15px;padding-bottom:5px;border-bottom:1px solid #e4e4e4}.mec-single-event .mec-single-event-additional-organizers .mec-single-event-additional-organizer:last-child{margin-bottom:0;padding-bottom:0;border:none}.mec-event-schedule-content{border-left:4px solid #f0f0f0;padding-top:10px;margin-top:30px;margin-left:25px;margin-bottom:20px;color:#8a8a8a}.mec-event-schedule-content dl{padding-left:24px;font-size:12px;position:relative;margin-bottom:35px}.mec-event-schedule-content dl:before{content:'';display:block;position:absolute;left:0;top:4px;width:20px;height:0;border-top:4px solid #f0f0f0}.mec-event-schedule-content dl dt{margin:0 0 10px;line-height:1.16}.mec-event-schedule-content dl dt.mec-schedule-title{font-size:13px;color:#5a5a5a;font-weight:700}.mec-event-schedule-content dl dt.mec-schedule-description{font-weight:300}.mec-event-schedule-content .mec-schedule-speakers{background:#f7f7f7;padding:10px}.mec-wrap .mec-event-schedule-content h6{font-size:13px;color:#5a5a5a;font-weight:700;display:inline-block}.mec-wrap .mec-event-schedule-content a{font-weight:400;color:#5a5a5a;transition:all .1s ease}.single-mec-events .mec-speakers-details ul{padding:0}.mec-single-event .mec-speakers-details ul li{list-style:none;background:#f7f7f7;padding:5px 5px 18px 5px;margin-top:14px}.mec-single-event .mec-speakers-details ul li a{-webkit-transition:.2s all ease;transition:.2s all ease}.mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a img{float:left;border-radius:50%;transition:.2s all ease;border:2px solid transparent;width:68px;height:68px}.mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a:hover img{border-color:#40d9f1}.mec-single-event .mec-speakers-details ul li .mec-speaker-name{display:inline-block;margin-top:10px;font-size:15px;line-height:1.8;text-transform:capitalize;font-weight:700;padding-left:8px}.mec-single-event .mec-speakers-details ul li .mec-speaker-job-title{display:block;font-size:12px;margin-top:-1px;padding-left:75px;color:#888}.mec-single-event-location img,.mec-single-event-organizer img{margin-bottom:10px;width:100%}.mec-qrcode-details{text-align:center}.mec-time-comment{font-size:11px}.mec-wrap .mec-attendees-list-details p{font-weight:300;margin:20px 0 0 0;color:#8d8d8d}.mec-wrap .mec-attendees-list-details li{list-style:none;display:block;margin-top:15px}.mec-wrap .mec-attendees-list-details li .mec-attendee-avatar{display:inline-block}.mec-wrap .mec-attendees-list-details li .mec-attendee-profile-link{display:inline-block;vertical-align:top;margin-left:10px}.mec-attendees-list-details ul{margin-bottom:0}.mec-attendees-list-details .mec-attendee-profile-link a{color:#8d8d8d;display:block}.mec-attendees-list-details .mec-attendee-profile-link span{display:inline-block;color:#000;vertical-align:middle;cursor:pointer}.mec-attendees-list-details span.mec-attendee-profile-ticket-number{border-radius:50px;width:20px;height:20px;font-size:12px;text-align:center;color:#fff;margin-right:4px}.mec-attendees-list-details .mec-attendee-profile-link span i{vertical-align:middle;font-size:9px;font-weight:700;margin-left:5px}.mec-attendees-list-details .mec-attendees-toggle{border:1px solid #e6e6e6;background:#fafafa;padding:15px 15px 0;border-radius:3px;margin:12px 0 20px 52px;position:relative;font-size:13px;box-shadow:0 3px 1px 0 rgba(0,0,0,.02)}.mec-attendees-list-details .mec-attendees-toggle:after,.mec-attendees-list-details .mec-attendees-toggle:before{content:'';display:block;position:absolute;left:50px;width:0;height:0;border-style:solid;border-width:10px}.mec-attendees-list-details .mec-attendees-toggle:after{top:-20px;border-color:transparent transparent #fafafa transparent}.mec-attendees-list-details .mec-attendees-toggle:before{top:-21px;border-color:transparent transparent #e1e1e1 transparent}.mec-attendees-list-details .mec-attendees-toggle .mec-attendees-item{padding-bottom:15px}.mec-attendees-list-details .mec-attendee-avatar img{border-radius:3px}.mec-attendee-avatar-sec{float:left;width:50px;margin-right:12px}.mec-attendee-profile-name-sec,.mec-attendee-profile-ticket-sec{float:left;width:calc(100% - 62px);margin-top:3px}.mec-calendar{margin-bottom:20px;border:1px solid #e8e8e8;width:100%;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-calendar .mec-calendar-topsec{display:table;background:#fff}.mec-calendar .mec-calendar-topsec .mec-calendar-events-sec{display:none}.mec-calendar .mec-calendar-side{width:590px;display:table-cell;padding:40px;position:relative;text-align:center;box-shadow:0 1px 5px 6px rgba(0,0,0,.005) inset}.mec-calendar .mec-calendar-events-side{display:table-cell;height:100%;border-left:1px solid #efefef;padding:40px;width:100%}.mec-calendar .mec-calendar-events-side .mec-table-side-day{width:46px;height:46px;margin:0 auto 20px;position:relative;text-align:center;line-height:46px;border:1px solid #40d9f1;border-radius:50%;font-size:12px;font-weight:600;padding:0}.mec-calendar .mec-calendar-events-side .mec-table-side-title{text-align:center;font-size:11px;text-transform:uppercase;letter-spacing:3px;margin-bottom:14px}.mec-calendar .mec-calendar-header{position:relative;width:560px;margin-top:8px;margin-bottom:16px}.mec-calendar .mec-calendar-header h2{text-transform:uppercase;font-size:22px;font-weight:700;color:#333}.mec-calendar .mec-event-footer{width:auto;min-height:60px}.mec-calendar dl{display:table;margin:0;border:none;padding:0;table-layout:fixed}.mec-calendar dt{display:table-cell;transition:all .66s ease;color:#4d4d4d;background:#fff;border-radius:44px;font-size:14px;width:80px;height:80px;line-height:80px;text-align:center}.mec-calendar .mec-calendar-table .mec-no-event{display:none}.mec-calendar .mec-calendar-table-head dt{font-weight:700;text-transform:uppercase;font-size:15px}.mec-calendar .mec-calendar-row dt:hover{background:#f4f4f4}.mec-calendar .mec-table-nullday{color:#cacaca}.mec-calendar.mec-box-calendar .mec-table-nullday:last-child{border-right:1px solid #eaeaea}.mec-calendar .mec-next-month:hover,.mec-calendar .mec-prev-month:hover{background:#f4f4f4}.mec-calendar .mec-selected-day,.mec-calendar .mec-selected-day:hover{background:#40d9f1;color:#fff}.mec-calendar .mec-selected-day a{color:#fff}.mec-calendar .mec-has-event{position:relative}.mec-calendar .mec-calendar-row dt.mec-has-event:hover{background:#40d9f1}.mec-calendar .mec-has-event a{cursor:pointer;display:block;width:100%;height:100%;border-radius:50%;color:#4d4d4d;transition:all .25s ease;text-decoration:none;box-shadow:none}.mec-calendar .mec-calendar-row dt.mec-has-event.mec-selected-day a,.mec-calendar .mec-calendar-row dt.mec-has-event:hover a{color:#fff}.mec-calendar .mec-has-event:after{background-color:#40d9f1;border-radius:50%;display:block;content:'';width:8px;height:8px;bottom:14px;left:50%;margin:-4px 0 0 -4px;position:absolute;transition:all .25s ease}.mec-calendar .mec-calendar-row dt.mec-has-event:hover:after{background-color:#fff}.mec-calendar .mec-has-event.mec-selected-day:after{display:none}.mec-calendar .mec-event-article{text-align:left;margin-bottom:0;padding-bottom:25px;padding-top:26px;border-top:1px solid #efefef;transition:all .33s ease}.mec-calendar .mec-event-article:hover{background-color:#fafafa}.mec-calendar .mec-event-article .mec-event-time{font-size:11px;line-height:1.1;margin:0}.mec-calendar .mec-event-article .mec-event-title{font-size:13px;padding:0;margin:10px 0 8px;font-weight:700;text-transform:uppercase}.mec-calendar .mec-event-article .mec-event-title a{text-decoration:none;color:#494949;transition:color .3s ease}.mec-calendar .mec-event-article .mec-event-title a:hover{color:#40d9f1}.mec-calendar .mec-event-article .mec-event-image,.mec-calendar .mec-event-list-classic .mec-event-image img{width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-image{float:left;margin-right:20px;width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-detail{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 .block-w li{font-size:50px}.mec-events-meta-group-countdown .countdown-w span{padding:24px 0 20px}.mec-events-meta-group-countdown .countdown-w .div-d{display:none}.mec-events-meta-group-countdown .countdown-w .countdown-message{display:none}.mec-events-meta-group-countdown .countdown-w .block-w i{display:none}#countdown{list-style:none;margin-bottom:0;margin-top:0;margin-left:0;padding-left:0}.mec-events-meta-group-countdown .mec-end-counts h3{display:inherit;text-align:center;font-size:16px;right:50%}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:23px}@media (min-width:481px) and (max-width:768px){.mec-events-meta-group-countdown .countdown-w{padding:0}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:12px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:34px}}@media (min-width:320px) and (max-width:480px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:10px}.mec-events-meta-group-countdown .countdown-w span{font-size:28px}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:16px}}@media (max-width:320px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:9px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:22px}}.info-msg,.mec-error,.mec-success,.warning-msg{margin:10px 0;padding:10px;border-radius:3px 3px 3px 3px;font-size:13px}.info-msg{color:#059;background-color:#bef}.mec-success{color:#0dbf52;background-color:#cef7ce}.warning-msg{color:#9f6000;background-color:#feefb3}.mec-error{color:#d8000c;background-color:#ffbaba}.mec-fes-form,.mec-fes-list{background:#f8feff;padding:30px 3%;color:#798f96;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important}.mec-fes-list .mec-fes-list-top-actions,.mec-fes-list ul{margin:0 auto 15px;max-width:960px;list-style:none}.mec-fes-form-cntt .dashicons-editor-help{display:none}.mec-fes-list ul li *{text-decoration:none!important}.mec-fes-list ul li{padding:20px 15px;border-radius:3px;margin-bottom:15px;border:1px solid #cfeff5;box-shadow:0 2px 6px -4px #cfeff5;background:#fff;line-height:normal}.mec-fes-list ul li a{box-shadow:none;color:#181818}.mec-fes-list ul li a:hover{color:#40d9f1}.mec-fes-list ul li .mec-event-title{font-size:17px;font-weight:600;width:calc(100% - 250px);display:inline-block}@media (max-width:600px){.mec-fes-list ul li .mec-event-title{font-size:13px}}.mec-fes-list .mec-event-status{color:#fff!important;border-color:transparent!important}.mec-fes-form .mec-book-confirmed,.mec-fes-list .mec-book-confirmed{background:#50d477!important}.mec-fes-form .mec-book-pending,.mec-fes-list .mec-book-pending{background:#fcbe69!important}.mec-fes-form .mec-book-rejected,.mec-fes-list .mec-book-rejected{background:#fe686a!important}.mec-fes-form .mec-book-other,.mec-fes-list .mec-book-other{background:#40d9f1!important}.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view{font-size:11px;padding:0;border:0;background:#f7f8f9;float:right;margin-left:5px;border-radius:2px;transition:all .2s ease}.mec-fes-list ul li .mec-fes-event-export a,.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view a{padding:4px 8px;display:inline-block;border:1px solid #e7e8e9;border-radius:2px;color:#789;position:relative}@media (max-width:600px){.mec-fes-list ul li .mec-fes-event-export a,.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view a{font-size:10px}}.mec-fes-list ul li .mec-fes-event-remove:hover{cursor:pointer;background:#f96f8a;border-color:#f96f8a;color:#fff}.mec-fes-list ul li .mec-fes-event-export a:hover,.mec-fes-list ul li .mec-fes-event-view a:hover{background:#40d9f1;color:#fff;border-color:#40d9f1}.mec-fes-form-top-actions a,.mec-fes-list-top-actions a{position:relative;border:none;border-radius:3px;color:#fff!important;display:inline-block;font-size:13px;line-height:1;text-transform:none;font-weight:400;text-decoration:none;cursor:pointer;margin-bottom:20px!important;margin-right:10px;line-height:1;letter-spacing:0;padding:15px 22px;background:#39c36e;box-shadow:0 1px 7px -3px #39c36e!important;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;text-decoration:unset}.mec-fes-form-top-actions a:hover,.mec-fes-list-top-actions a:hover{background:#222;color:#fff}.mec-fes-list-top-actions a{font-weight:600;text-transform:capitalize}.mec-fes-form-top-actions a:before{content:"";border:solid #fff;border-width:0 2px 2px 0;display:inline-block;padding:6px;margin-right:5px;vertical-align:sub;transform:rotate(135deg);-webkit-transform:rotate(135deg)}.mec-fes-form .mec-form-row,.mec-fes-list .mec-form-row{margin-bottom:10px;clear:both}.mec-fes-form label{font-size:13px;display:block;color:#798f96;font-weight:400;padding:0 0 4px 2px}.mec-fes-form input+label{padding-top:8px;padding-left:3px;margin:0;display:inline-block;vertical-align:top}.mec-fes-form .post-status{float:right!important;margin:0 5px;color:#fff;padding:0 10px;border-radius:12px;font-style:italic;font-size:18px}.mec-fes-form input[type=email],.mec-fes-form input[type=number],.mec-fes-form input[type=password],.mec-fes-form input[type=tel],.mec-fes-form input[type=text],.mec-fes-form select,.mec-fes-form textarea{min-width:inherit;width:auto;display:inline;min-height:30px;font-size:13px;padding:10px;margin-bottom:20px;clear:both;background:#fff;border:1px solid #cfeff5;box-shadow:0 2px 5px rgba(207,239,245,.38) inset;border-radius:3px;height:40px;max-width:280px;color:#798f96;font-family:inherit}.mec-fes-form input{background:#fff!important;border-radius:3px!important;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important}.mec-fes-form textarea{height:80px}.mec-fes-form input::-webkit-input-placeholder{color:#798f96}.mec-fes-form input::-moz-placeholder{color:#798f96}.mec-fes-form input:-ms-input-placeholder{color:#798f96}.mec-fes-form input:-moz-placeholder{color:#798f96}#mec_more_info_target{width:100%}@media only screen and (min-width:961px){.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form textarea{width:100%;display:inline-block}}@media only screen and (max-width:768px){.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form textarea{width:100%}}.mec-fes-form input[type=text]#mec_fes_title{padding:5px 10px;min-height:32px;height:50px;background:#fff!important;max-width:100%;font-size:19px;font-weight:400}.mec-fes-form input[type=checkbox],.mec-fes-form input[type=radio]{display:inline!important;float:left;margin:5px 5px 0 0}.mec-fes-form input[type=email]:focus,.mec-fes-form input[type=number]:focus,.mec-fes-form input[type=password]:focus,.mec-fes-form input[type=tel]:focus,.mec-fes-form input[type=text]:focus,.mec-fes-form select:focus,.mec-fes-form textarea:focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-form-row .mec-color{cursor:pointer}.mec-form-row.mec-available-color-row span{margin:10px;width:14px;height:14px;display:inline-block;margin-right:6px;border-radius:20px 20px 20px 20px;vertical-align:middle}.mec-form-row.mec-available-color-row span:first-of-type{margin-left:0}.mec-fes-form.mec-fes-form .mec-tooltip{display:inline}.mec-fes-form-cntt .dashicons-editor-help{display:block}.mec-fes-form .mec-tooltip:hover:after,.mec-fes-form .mec-tooltip:hover:before{display:none}.mec-fes-form.mec-fes-form .mec-tooltip{display:inline-flex;bottom:7px}.mec-fes-form .mec-tooltip .box{min-width:300px;max-width:600px;display:inline-block;left:26px;top:50%;transform:translateY(-50%);padding:0;margin-top:8px;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.3;position:absolute;z-index:9999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s}#webnus-dashboard .mec-fes-form .mec-tooltip .box p,.mec-fes-form .mec-tooltip .box p{color:#fff;font-size:14px;line-height:1.3;margin:0}.mec-fes-form .mec-tooltip:hover .box{visibility:visible;opacity:1}.mec-fes-form .mec-tooltip:hover .box{padding:20px;border-radius:8px}.mec-fes-form .mec-tooltip .box h5{color:#fff;font-size:17px;font-weight:600;margin:-30px -20px;padding:20px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #32363a;border-radius:6px 6px 0 0;z-index:9999}#webnus-dashboard .mec-fes-form .mec-tooltip .box p a,.mec-fes-form .mec-tooltip .box p a{color:#40d9f1;margin-top:10px;margin-left:0;font-weight:400;position:relative;text-decoration:none;display:block;width:max-content}.mec-fes-form .mec-tooltip .box a:hover{color:#f90}.mec-fes-form .mec-tooltip .box:after{display:block;position:absolute!important;top:100%!important;right:50%!important;margin-top:-6px!important;margin-right:-6px!important;width:12px!important;height:24px!important;overflow:hidden!important;transform:rotate(-90deg)!important}.mec-fes-form .mec-tooltip .box:before{display:block;content:''!important;position:absolute!important;width:12px;height:12px;left:-10px!important;top:50%!important;transform:translate(50%,-50%) rotate(-45deg)!important;background-color:#535a61!important;box-shadow:0 8px 9px -4px #535a61!important;z-index:0!important}.mec-fes-form .mec-tooltip .box.top{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-fes-form .mec-tooltip .box.top:after{top:50%!important;right:100%!important}.mec-fes-form .mec-tooltip .box.top:before{left:50%!important;top:100%!important}.mec-fes-form .mec-tooltip .box.bottom{left:50%;top:auto;bottom:0;transform:translate(-50%,100%);margin-bottom:-20px;margin-left:-10px}.mec-fes-form .mec-tooltip .box.bottom:after{top:0!important;right:50%!important;background-color:#3a3f44!important}.mec-fes-form .mec-tooltip .box.bottom:before{left:50%!important;top:-7px!important;transform:translateX(-50%);background-color:#3a3f44!important}.mec-fes-form .mec-tooltip .box.left{left:auto;right:26px;top:50%;transform:translateY(-50%)}.mec-fes-form .mec-tooltip .box.left:before{right:0!important;left:auto!important;top:50%!important}.mec-fes-form .mec-tooltip{display:inline-block;position:relative;margin-right:10px;cursor:help;bottom:5px;left:3px}.mec-fes-form .mec-tooltip:last-child{margin-right:0}.mec-fes-form .mec-tooltip:hover:after{background:#313130;border-radius:5px;bottom:24px;color:#fff;content:attr(title);left:-75px;padding:10px;position:absolute;z-index:98;width:240px}.mec-fes-form .mec-tooltip:hover:before{border:solid;border-color:#313130 transparent;border-width:6px 6px 0;bottom:18px;content:"";left:30%;position:absolute;z-index:99}.mec-fes-form .mec-tooltip .dashicons-before:before{font-size:24px;color:#008aff;line-height:37px}.mec-fes-form .mec-tooltip a:focus{box-shadow:none}.mec-form-row .bootstrap_unvalid{display:block;border:2px solid red;position:relative;display:inline-block;border-bottom:1px dotted #000}.mec-fes-form .mec-tooltiptext{visibility:hidden;width:120px;background-color:red;color:#fff;text-align:center;border-radius:6px;padding:5px 0;position:absolute;z-index:1}.mec-fes-form .mec-tooltip .content p a{display:none}@media only screen and (min-width:961px){.mec-fes-form .mec-fes-form-cntt,.mec-fes-form .mec-fes-form-sdbr{width:68%;float:left;padding-right:20px}.mec-fes-form .mec-fes-form-sdbr{width:32%;padding-right:0;padding-left:20px}.mec-fes-submit-mobile{display:none}}.mec-fes-form .mec-meta-box-fields{padding:0 20px 20px;border:1px solid #cfeff5;margin-bottom:20px!important;box-shadow:0 2px 6px -3px #cfeff5;border-radius:3px;background:#fff}.mec-fes-form .mec-meta-box-fields h4{margin:0 -20px;font-size:15px;font-weight:600;letter-spacing:0;color:#40d9f1;text-transform:capitalize;padding:15px 20px;background:#ecfcff;margin-bottom:20px;border-radius:3px}.mec-fes-sub-button{width:100%}.mec-available-color-row span.color-selected{border:3px solid #fff;box-sizing:content-box;box-shadow:0 0 0 2px #40d9f1,0 2px 8px -1px #40d9f1}.mec-fes-loading:before{content:url(../img/ajax-loader.gif);background:0 0;border-style:none;display:block;margin-left:47%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:190px;margin-right:1.4%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-1,.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-2{width:120px;margin-right:10px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].widefat{width:100%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row{border-bottom:none;padding-bottom:10px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-6{width:39%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row button{margin-right:0;padding:9px 26px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row button.mec-add-hourly-schedule-button{font-size:12px;height:30px;line-height:25px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row .description{display:inline-block;border-left:1px dashed #bfcacc;margin-left:12px;line-height:28px;padding-left:12px;margin-top:5px;font-style:italic}@media only screen and (max-width:768px){.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:100%!important}}#mec_fes_form_message{max-width:838px;margin:10px auto;display:block!important;text-align:center}.mec-wrap .mec-totalcal-box{position:relative;border:1px solid #efefef;padding:20px 5px;margin:0 0 20px;background:#fafafa;overflow:hidden;box-shadow:0 3px 2px 0 rgba(0,0,0,.012);min-height:78px}.mec-wrap .mec-totalcal-box i{float:left;margin:0;width:36px;height:36px;background:#fff;border:1px solid #efefef;text-align:center;padding:10px 0;font-size:15px;color:#888}.mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-wrap .mec-totalcal-box input,.mec-wrap .mec-totalcal-box select{width:auto;min-height:36px;height:36px;line-height:36px;background:#fff;font-size:13px;color:#777;border:1px solid #efefef;margin:0 0 0 -1px;float:left;padding:0 5px;font-family:Roboto,Helvetica,Arial,sans-serif}.mec-wrap .mec-totalcal-box input[type=submit]{cursor:pointer;padding:0 16px;text-transform:uppercase;font-size:11px;font-family:Montserrat,Helvetica,Arial,sans-serif;transition:all .21s ease}.mec-wrap .mec-totalcal-box input[type=submit]:hover{background:#222;color:#fff}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{display:inline-block;text-transform:uppercase;font-family:Montserrat,Helvetica,Arial,sans-serif;font-size:11px;padding:0 12px;cursor:pointer}.mec-wrap .mec-totalcal-box .mec-totalcal-view span:hover{color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected{color:#fff;background:#40d9f1;border-color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view{text-align:right;float:right}.mec-wrap .mec-totalcal-box input[type=search]{width:calc(100% - 36px)}@media only screen and (min-width:961px) and (max-width:1200px){.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-3,.mec-wrap .mec-totalcal-box .col-md-4,.mec-wrap .mec-totalcal-box .col-md-5{width:100%;float:none;padding-bottom:20px;clear:both;overflow:hidden}}@media only screen and (min-width:768px) and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-4{position:relative;right:10px;top:20px;width:initial}.mec-wrap .mec-totalcal-box .col-md-5{padding-bottom:0}.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:767px){.mec-wrap .mec-totalcal-box .mec-totalcal-view{float:none}.mec-wrap .mec-totalcal-box .col-md-4{padding-bottom:0}}@media only screen and (max-width:479px){.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 8px;font-size:10px}.mec-wrap .mec-totalcal-box input[type=submit]{padding:0 10px;font-size:10px}}@media only screen and (min-width:961px){.mec-wrap .mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5,.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-3{width:100%;float:none;padding-bottom:20px;clear:both;overflow:hidden}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-4{position:absolute;right:10px;top:20px;width:initial}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5{padding-bottom:0;width:100%}}@media (min-width:961px) and (max-width:1200px){.mec-full-calendar-wrap .mec-totalcal-box{padding:20px 20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{padding-bottom:20px!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{min-width:calc(30% - 10px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3:last-child select{min-width:calc(50% - 19px)}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view{margin-right:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:10px;text-align:center}}@media (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box{padding:20px 20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{padding-bottom:10px!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px);margin-bottom:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view{margin-right:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:10px;text-align:center}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:100%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:absolute;top:20px}}@media (min-width:780px) and (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:absolute;top:20px}}@media(max-width:780px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{width:calc(50% - 18px)!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:unset;padding-right:0}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:20%;text-align:center;font-size:10px}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 7px;margin-top:20px}}@media(max-width:480px){.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:20%;text-align:center;font-size:10px}}.mec-search-form{padding:20px 10px}.mec-search-form .mec-dropdown-wrap{display:table;width:100%}.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{padding:0 10px;float:left;min-height:55px}.mec-search-form .mec-date-search,.mec-search-form .mec-text-input-search{width:50%;min-height:36px;display:block}.mec-full-calendar-wrap .mec-search-form .mec-date-search,.mec-full-calendar-wrap .mec-search-form .mec-text-input-search{width:100%}.mec-full-calendar-wrap .mec-search-form .col-md-3,.mec-full-calendar-wrap .mec-search-form .col-md-5,.mec-full-calendar-wrap .mec-search-form .col-md-6,.mec-full-calendar-wrap .mec-search-form .col-md-8{padding:0}.mec-widget .mec-search-form .mec-date-search,.mec-widget .mec-search-form .mec-text-input-search{width:100%}.mec-widget .mec-search-form .mec-text-input-search{margin-top:10px}.mec-search-form .mec-date-search{clear:left}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:table-cell;float:none}.mec-widget .mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block}.mec-wrap .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{width:calc(100% - 36px);margin-bottom:20px}.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 106px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}@media only screen and (max-width:767px){.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{width:100%;float:none}.mec-search-form .mec-date-search{min-height:55px}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:50%;float:left}}@media only screen and (max-width:960px){.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 124px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}}@media only screen and (max-width:479px){.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:100%;float:none}}.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:52px;letter-spacing:-2px;line-height:41px;vertical-align:top}.mec-masonry .mec-masonry-col6{width:50%;float:left;height:100%}.mec-masonry .mec-masonry-col6 i{font-size:24px;float:left;margin-right:7px;height:50px}.mec-masonry .mec-masonry-col6 .mec-event-month,.mec-masonry .mec-masonry-col6 h6{text-transform:capitalize;font-size:15px;padding:4px 0;display:inline;color:#444}.mec-masonry .mec-masonry-col6 .mec-event-detail,.mec-masonry .mec-masonry-col6 address{font-size:11px;margin-bottom:0}.mec-masonry-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-masonry-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05)}@media only screen and (max-width:960px){.mec-masonry-item-wrap{width:calc(50% - 30px)}}@media only screen and (max-width:768px){.mec-masonry .mec-masonry-col6{width:100%;margin:10px 0}.mec-masonry-item-wrap{width:calc(100% - 30px)}}@media only screen and (max-width:479px){.mec-masonry-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.btn-wrapper{text-align:center}.countdown-wrapper .btn-wrapper{padding-top:10px;padding-right:0}.countdown-wrapper h5.countdown-message{letter-spacing:5px;font-weight:500;font-size:18px}.blox.dar .countdown-wrapper p,.countdown-wrapper p{color:#888}.countdown-wrapper a.button.black{float:right;margin-right:0}.mec-wrap .threedaydigits .days .flip-clock-label{right:-100px}@media only screen and (min-width:320px) and (max-width:767px){.mec-wrap .flip-clock-wrapper ul{width:29px!important}.mec-wrap .flip-clock-wrapper ul li a div div.inn{font-size:25px!important}.mec-wrap .flip-clock-divider .flip-clock-label{left:0;font-weight:300}.mec-wrap span.flip-clock-divider{width:12px}}@media only screen and (min-width:320px) and (max-width:480px){.mec-wrap .flip-clock-wrapper ul{width:29px!important}.mec-wrap .flip-clock-wrapper ul li a div div.inn{font-size:25px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}.mec-wrap span.flip-clock-divider:first-child{width:0}.mec-wrap span.flip-clock-divider{width:20px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 18%}}@media screen and (min-width:960px) and (max-width:1200px){.mec-wrap .threedaydigits ul{height:50px;width:47px}}@media screen and (min-width:480px) and (max-width:768px){.mec-wrap .threedaydigits ul{height:48px;width:26px!important}.mec-wrap .threedaydigits .flip-clock-label{font-size:8px;left:-8px}}@media screen and (min-width:320px) and (max-width:480px){.mec-wrap .threedaydigits ul{height:48px;width:22px!important}}.mec-wrap .flip-clock-wrapper *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;-o-box-sizing:border-box;box-sizing:border-box;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden}.mec-wrap .flip-clock-wrapper a{cursor:pointer;text-decoration:none;color:#ccc}.mec-wrap .flip-clock-wrapper a:hover{color:#fff}.mec-wrap .flip-clock-wrapper ul{list-style:none}.flip-clock-wrapper.clearfix:after,.mec-wrap .flip-clock-wrapper.clearfix:before{content:" ";display:table}.mec-wrap .flip-clock-wrapper.clearfix:after{clear:both}.mec-wrap .flip-clock-wrapper{font:normal 11px "helvetica neue",helvetica,sans-serif;-webkit-user-select:none}.mec-wrap .flip-clock-meridium{background:0 0!important;box-shadow:0 0 0!important;font-size:36px!important}.mec-wrap .flip-clock-meridium a{color:#313333}.mec-wrap .flip-clock-wrapper{text-align:center;position:relative;display:inline-block;padding-bottom:10px}.flip-clock-wrapper:after,.mec-wrap .flip-clock-wrapper:before{content:" ";display:table}.mec-wrap .flip-clock-wrapper:after{clear:both}.mec-wrap .flip-clock-wrapper ul{position:relative;float:left;margin:2px;width:50px;height:50px;font-size:80px;font-weight:700;line-height:87px;border-radius:3px;background:rgba(0,0,0,.21)}.mec-wrap .flip-clock-wrapper ul li{z-index:1;position:absolute;left:0;top:0;width:100%;height:100%;line-height:54px;text-decoration:none!important}.mec-wrap .flip-clock-wrapper ul li:first-child{z-index:2}.mec-wrap .flip-clock-wrapper ul li a{display:block;height:100%;-webkit-perspective:200px;-moz-perspective:200px;perspective:200px;margin:0!important;overflow:visible!important;cursor:default!important}.mec-wrap .flip-clock-wrapper ul li a div{z-index:1;position:absolute;left:0;width:100%;height:50%;font-size:80px;overflow:hidden;outline:1px solid transparent}.mec-wrap .flip-clock-wrapper ul li a div .shadow{position:absolute;width:100%;height:100%;z-index:2}.mec-wrap .flip-clock-wrapper ul li a div.up{-webkit-transform-origin:50% 100%;-moz-transform-origin:50% 100%;-ms-transform-origin:50% 100%;-o-transform-origin:50% 100%;transform-origin:50% 100%;top:0}.mec-wrap .flip-clock-wrapper ul li a div.up:after{content:"";position:absolute;top:24px;left:0;z-index:5;width:100%;height:3px;background-color:rgba(0,0,0,.12)}.mec-wrap .flip-clock-wrapper ul li a div.down{-webkit-transform-origin:50% 0;-moz-transform-origin:50% 0;-ms-transform-origin:50% 0;-o-transform-origin:50% 0;transform-origin:50% 0;bottom:0;border-bottom-left-radius:3px;border-bottom-right-radius:3px}.mec-wrap .flip-clock-wrapper ul li a div div.inn{position:absolute;left:0;z-index:1;width:100%;height:200%;color:#fff;text-shadow:0 0 2px rgba(0,0,0,.25);text-align:center;background-color:#40d9f1;border-radius:3px;font-size:48px}.mec-wrap .flip-clock-wrapper ul li a div.up div.inn{top:0}.mec-wrap .flip-clock-wrapper ul li a div.down div.inn{bottom:0}.mec-wrap .flip-clock-wrapper ul.play li.flip-clock-before{z-index:3}.mec-wrap .flip-clock-wrapper .flip{box-shadow:0 2px 5px rgba(0,0,0,.17)}.mec-wrap .flip-clock-wrapper ul.play li.flip-clock-active{-webkit-animation:asd .5s .5s linear both;-moz-animation:asd .5s .5s linear both;animation:asd .5s .5s linear both;z-index:5}.mec-wrap .flip-clock-divider{float:left;display:inline-block;position:relative;width:18px;height:62px}.mec-wrap .flip-clock-divider:first-child{width:0}.mec-wrap .flip-clock-dot{display:none;background:#323434;width:10px;height:10px;position:absolute;border-radius:50%;box-shadow:0 0 5px rgba(0,0,0,.5);left:5px}.mec-wrap .flip-clock-divider .flip-clock-label{position:absolute;bottom:-1.5em;right:-71px;color:#101010;font-weight:700;text-shadow:none;text-transform:uppercase}.mec-wrap .blox.dark .flip-clock-divider .flip-clock-label{color:#8a8a8a}.mec-wrap .flip-clock-divider.seconds .flip-clock-label{right:-82px}.mec-wrap .flip-clock-dot.top{top:30px}.mec-wrap .flip-clock-dot.bottom{bottom:30px}@-webkit-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@-moz-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@-o-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}.flip-clock-wrapper ul.play li.flip-clock-active .down{z-index:2;-webkit-animation:turn .5s .5s linear both;-moz-animation:turn .5s .5s linear both;animation:turn .5s .5s linear both}@-webkit-keyframes turn{0%{-webkit-transform:rotatex(90deg)}100%{-webkit-transform:rotatex(0)}}@-moz-keyframes turn{0%{-moz-transform:rotatex(90deg)}100%{-moz-transform:rotatex(0)}}@-o-keyframes turn{0%{-o-transform:rotatex(90deg)}100%{-o-transform:rotatex(0)}}@keyframes turn{0%{transform:rotatex(90deg)}100%{transform:rotatex(0)}}.flip-clock-wrapper ul.play li.flip-clock-before .up{z-index:2;-webkit-animation:turn2 .5s linear both;-moz-animation:turn2 .5s linear both;animation:turn2 .5s linear both}@-webkit-keyframes turn2{0%{-webkit-transform:rotatex(0)}100%{-webkit-transform:rotatex(-90deg)}}@-moz-keyframes turn2{0%{-moz-transform:rotatex(0)}100%{-moz-transform:rotatex(-90deg)}}@-o-keyframes turn2{0%{-o-transform:rotatex(0)}100%{-o-transform:rotatex(-90deg)}}@keyframes turn2{0%{transform:rotatex(0)}100%{transform:rotatex(-90deg)}}.flip-clock-wrapper ul li.flip-clock-active{z-index:3}.flip-clock-wrapper ul.play li.flip-clock-before .up .shadow{background:-moz-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.1)),color-stop(100%,rgba(64,64,64,.68)));background:linear,top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;background:-o-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-ms-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:linear,to bottom,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;-webkit-animation:show .5s linear both;-moz-animation:show .5s linear both;animation:show .5s linear both}.flip-clock-wrapper ul.play li.flip-clock-active .up .shadow{background:-moz-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.1)),color-stop(100%,rgba(64,64,64,.68)));background:linear,top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;background:-o-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-ms-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:linear,to bottom,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;-webkit-animation:hide .5s .3s linear both;-moz-animation:hide .5s .3s linear both;animation:hide .5s .3s linear both}.flip-clock-wrapper ul.play li.flip-clock-before .down .shadow{background:-moz-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(64,64,64,.68)),color-stop(100%,rgba(0,0,0,.1)));background:linear,top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;background:-o-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-ms-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:linear,to bottom,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;-webkit-animation:show .5s linear both;-moz-animation:show .5s linear both;animation:show .5s linear both}.flip-clock-wrapper ul.play li.flip-clock-active .down .shadow{background:-moz-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(64,64,64,.68)),color-stop(100%,rgba(0,0,0,.1)));background:linear,top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;background:-o-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-ms-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:linear,to bottom,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;-webkit-animation:hide .5s .3s linear both;-moz-animation:hide .5s .3s linear both;animation:hide .5s .2s linear both}@-webkit-keyframes show{0%{opacity:0}100%{opacity:1}}@-moz-keyframes show{0%{opacity:0}100%{opacity:1}}@-o-keyframes show{0%{opacity:0}100%{opacity:1}}@keyframes show{0%{opacity:0}100%{opacity:1}}@-webkit-keyframes hide{0%{opacity:1}100%{opacity:0}}@-moz-keyframes hide{0%{opacity:1}100%{opacity:0}}@-o-keyframes hide{0%{opacity:1}100%{opacity:0}}@keyframes hide{0%{opacity:1}100%{opacity:0}}@font-face{font-family:simple-line-icons;src:url(../fonts/Simple-Line-Icons.eot?v=2.3.1);src:url(../fonts/Simple-Line-Icons.eot?v=2.3.1#iefix) format('embedded-opentype'),url(../fonts/Simple-Line-Icons.woff2?v=2.3.1) format('woff2'),url(../fonts/Simple-Line-Icons.woff?v=2.3.1) format('woff'),url(../fonts/Simple-Line-Icons.ttf?v=2.3.1) format('truetype'),url(../fonts/Simple-Line-Icons.svg?v=2.3.1#simple-line-icons) format('svg');font-weight:400;font-style:normal}[class*=mec-sl-]{font-family:simple-line-icons;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.mec-sl-facebook:before{content:"\e00b"}.mec-sl-twitter:before{content:"\e009"}.mec-sl-google-plus:before{content:"\e60d"}.mec-sl-angle-left:before{content:"\e605"}.mec-sl-angle-right:before{content:"\e606"}.mec-sl-calendar:before{content:"\e075"}.mec-sl-clock-o:before{content:"\e081"}.mec-sl-home:before{content:"\e069"}.mec-sl-phone:before{content:"\e600"}.mec-sl-envelope:before{content:"\e086"}.mec-sl-sitemap:before{content:"\e037"}.mec-sl-map-marker:before{content:"\e096"}.mec-sl-floder:before{content:"\e089"}.mec-sl-wallet:before{content:"\e02a"}.mec-color,.mec-color-before :before,.mec-color-hover:hover,.mec-wrap .mec-color,.mec-wrap .mec-color-before :before,.mec-wrap .mec-color-hover:hover{color:#40d9f1}.mec-bg-color,.mec-bg-color-hover:hover,.mec-wrap .mec-bg-color,.mec-wrap .mec-bg-color-hover:hover{background-color:#40d9f1}.mec-border-color,.mec-border-color-hover:hover,.mec-wrap .mec-border-color,.mec-wrap .mec-border-color-hover:hover{border-color:#40d9f1}.mec-toggle-month-divider.mec-skin-list-events-container{border:1px solid #e8e8e8;margin-bottom:30px;background:#f8f8f8;box-shadow:0 2px 18px -1px rgba(0,0,0,.1);border-radius:2px}.mec-toggle-month-divider .mec-month-divider{margin:0;text-align:left;background:#fff;position:relative;cursor:pointer;border-top:1px solid #e8e8e8}.mec-toggle-month-divider .mec-month-divider span{padding:20px;border-bottom:1px solid #e8e8e8}.mec-toggle-month-divider .mec-month-divider i{position:absolute;right:20px;top:24px;font-size:20px;cursor:pointer}.mec-toggle-month-divider .mec-month-divider span:before{display:none}.mec-toggle-month-divider .mec-month-divider+article{margin-top:20px}.mec-toggle-month-divider .mec-wrap .mec-month-divider:first-of-type{border-top:none}.mec-toggle-month-divider .mec-event-list-accordion .mec-month-divider:not(:first-of-type)~article{display:none}.mec-skin-list-events-container:not(.mec-toggle-month-divider) .mec-month-divider i{display:none}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-month{display:inline-block;padding-top:0}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-date{font-size:14px;line-height:14px;float:none;display:inline-block;margin-right:0;font-weight:700}.mec-events-toggle .mec-toogle-inner-month-divider.mec-toggle-item-inner{padding:20px 60px 30px 15px}.mec-toogle-inner-month-divider .mec-toggle-month-inner-image{float:left;clear:right;width:100px;margin-right:20px;margin-left:10px}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-detail{margin-top:-6px}.mec-toogle-inner-month-divider .mec-toggle-item-col{float:none;width:100%;margin-top:10px;display:block;border:none}.mec-events-toggle .mec-toogle-inner-month-divider .mec-toggle-title{font-size:19px;display:block;padding-top:10px}@media only screen and (max-width:768px){.mec-events-toggle .mec-toogle-inner-month-divider .mec-toggle-title{font-size:14px;padding-top:0}.mec-toogle-inner-month-divider .mec-toggle-item-col{margin-top:0}.mec-toogle-inner-month-divider .mec-toggle-month-inner-image{width:70px}}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled:before,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-featured:before{z-index:1;position:absolute;top:25px;right:-37px;font-size:11px;letter-spacing:1px;text-transform:uppercase;background:#04de78;padding:2px 40px;color:#fff;-ms-transform:rotate(45deg);-webkit-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:.5s cubic-bezier(.25,.5,.06,.85);transition:.5s cubic-bezier(.25,.5,.06,.85);content:attr(data-style)}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-featured{overflow:hidden;position:relative}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled:before{background:#de0404}.mec-daily-view-date-events article:before,ul.mec-weekly-view-dates-events article:before{padding:7px 40px!important;top:27px!important}.mec-event-grid-classic article .mec-fc-style,.mec-event-grid-minimal article .mec-fc-style,.mec-event-grid-simple article .mec-fc-style,.mec-timetable-wrap article .mec-fc-style,.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article.mec-event-cover-modern .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{font-size:9px;letter-spacing:.5px;text-transform:uppercase;background:#04de78;padding:2px 7px;color:#fff;position:relative;margin-left:5px;border-radius:2px}.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-modern.mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-minimal article .mec-fc-style:before,.mec-event-grid-simple article .mec-fc-style:before,.mec-timetable-wrap article .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article .mec-fc-style:before,.mec-wrap .mec-event-list-modern article .mec-fc-style:before,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style:before{width:0;height:0;border-top:4px solid transparent!important;border-right:5px solid;border-bottom:4px solid transparent;margin:0;top:50%;left:-4px;transform:translateY(-4.5px);position:absolute;content:'';color:#04de78}.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-event-grid-classic article.mec-label-canceled:before,.mec-event-grid-classic article.mec-label-featured:before,.mec-event-grid-minimal article.mec-label-canceled:before,.mec-event-grid-minimal article.mec-label-featured:before,.mec-event-grid-simple article.mec-label-canceled:before,.mec-event-grid-simple article.mec-label-featured:before,.mec-timetable-wrap article.mec-label-canceled:before,.mec-timetable-wrap article.mec-label-featured:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled:before,.mec-wrap .mec-event-list-accordion article.mec-label-featured:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled:before,.mec-wrap .mec-event-list-modern article.mec-label-featured:before{display:none}.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{top:-3px;font-size:11px;margin-left:10px}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style:before,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-canceled:before,.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-featured:before{-ms-transform:none;-webkit-transform:none;transform:none;-webkit-transition:none;transition:none;top:271px;right:0}.mec-timetable-wrap article .mec-fc-style{top:-2px;font-size:10px}.mec-wrap article.mec-event-cover-modern .mec-fc-style{padding:5px 9px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:24px;display:inline-block;border-radius:2px}.mec-skin-grid-events-container .mec-wrap .mec-event-grid-clean .mec-event-article:before{-ms-transform:none;-webkit-transform:none;transform:none!important;-webkit-transition:none;transition:none;top:22px!important;right:22px!important;padding:0 10px!important}.mec-event-grid-minimal article .mec-fc-style,.mec-event-grid-simple article .mec-fc-style{top:-4px;font-size:10px;margin-left:10px}.mec-event-grid-classic article .mec-fc-style{padding:5px 20px;font-size:12px;margin-top:8px;display:inline-block}.mec-hourly-schedule-speaker-info{background:#fff;padding:30px;border:1px solid #e6e6e6;max-width:740px;width:740px;margin-left:-110px}.mec-hourly-schedule-speaker-thumbnail{float:left;max-width:30%;width:30%}.mec-hourly-schedule-speaker-name{font-weight:700;font-size:26px;line-height:1.2;color:#333;text-transform:uppercase}.mec-hourly-schedule-speaker-details{float:left;width:69%;padding-left:25px}.mec-hourly-schedule-speaker-job-title{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-hourly-schedule-speaker-description{font-size:14px;font-weight:400;color:#6d7683;line-height:1.7;text-align:left}.mec-hourly-schedule-speaker-contact-information a i{color:#6b6b6b;background:#ebebeb;line-height:29px;margin:9px 7px 9px 0;width:30px;height:30px;display:inline-block;text-align:center;transition:all .2s ease;font-size:15px;cursor:pointer;border-radius:3px}.mec-hourly-schedule-speaker-contact-information a i:hover{background:#222;color:#fff}@media only screen and (max-width:479px){.mec-hourly-schedule-speaker-thumbnail{float:none;max-width:none;margin-right:0;margin-bottom:15px;width:100%}.mec-hourly-schedule-speaker-thumbnail img{width:100%}.mec-hourly-schedule-speaker-details{padding-left:0}.mec-hourly-schedule-speaker-info{width:90%;margin:0 auto}}.mec-profile .mec-profile-bookings{border:2px solid #e6e6e6;text-align:center}.mec-profile .mec-profile-bookings tbody tr:first-child{background:#f7f7f7;font-weight:700;text-transform:capitalize}.mec-profile .mec-profile-bookings tbody tr{border-bottom:1px solid #e6e6e6;font-size:14px}.mec-profile .mec-profile-bookings tbody tr td{border:1px solid #e6e6e6;padding:10px;text-align:center;word-break:initial}.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:53%;text-align:left}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8) i{color:#fe686a}.mec-profile .mec-event-status{padding:5px 10px;color:#fff;border-radius:2px;font-size:12px;line-height:12px;letter-spacing:.4px}.mec-profile .mec-event-status.mec-book-confirmed{background:#50d477}.mec-profile .mec-event-status.mec-book-pending{background:#fcbe69}.mec-profile .mec-event-status.mec-book-rejected{background:#fe686a}.mec-profile .mec-event-date{font-size:12px;color:#888}.mec-event-date,.mec-event-status{text-align:center}.mec-event-date .mec-tooltip,.mec-event-status .mec-tooltip{position:relative;width:fit-content;margin:auto}.mec-profile i{font-size:15px;color:#008aff;vertical-align:text-bottom;margin-right:4px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{min-width:250px;max-width:300px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#000;color:#fff;font-weight:400;font-size:14px;letter-spacing:.5px;line-height:1.5;position:absolute;z-index:99999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #535a61;padding:5px 10px 6px;border-radius:8px;text-align:center;font-style:normal;opacity:0;visibility:hidden;display:none}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{font-size:13px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;letter-spacing:1.1px;font-weight:500}.mec-event-date .mec-tooltip:hover .box:after,.mec-event-status .mec-tooltip:hover .box:after{content:'';position:absolute;width:12px;height:12px;left:calc(50% - 12px);bottom:-12px;transform:translate(50%,-50%) rotate(-45deg);background-color:#000;box-shadow:0 8px 9px -4px #535a61}.mec-event-status .mec-tooltip .box{min-width:100px}.mec-event-status.mec-book-confirmed .mec-tooltip .box,.mec-event-status.mec-book-confirmed .mec-tooltip:hover .box:after{background-color:#50d477}.mec-event-status.mec-book-rejected .mec-tooltip .box,.mec-event-status.mec-book-rejected .mec-tooltip:hover .box:after{background-color:#fe686a}.mec-event-status.mec-book-pending .mec-tooltip .box,.mec-event-status.mec-book-pending .mec-tooltip:hover .box:after{background-color:#fcbe69}.mec-event-date .mec-tooltip:hover .box,.mec-event-status .mec-tooltip:hover .box{opacity:1;visibility:visible;display:block}.mec-profile .mec-event-status{padding:0}.mec-profile .mec-booking-number-of-attendees{font-size:13px;color:#888}.mec-profile .mec-booking-number-of-attendees i,.mec-profile .mec-profile-bookings-view-invoice i{font-size:15px;color:#008aff;vertical-align:text-bottom;margin-right:4px}.mec-booking-attendees{background:#fff;padding:10px}.mec-booking-attendees{width:850px;text-align:center}.mec-booking-attendees-wrapper{border:2px solid #e6e6e6;font-size:14px}.mec-booking-attendees-head{display:table;width:100%;background:#f7f7f7;border-bottom:1px solid #e6e6e6;font-weight:700}.mec-booking-attendees-head span,.mec-booking-attendees-head-content>span{vertical-align:middle;display:table-cell;padding:7px;border-right:1px solid #e6e6e6;font-size:12px}.mec-booking-attendees-head-content{display:table;width:100%;border-bottom:1px solid #e6e6e6}.mec-booking-attendees-wrapper .mec-booking-attendees-head-content:last-child{border:none}.mec-booking-attendees-head span:nth-child(1),.mec-booking-attendees-head-content>span:nth-child(1){width:4%}.mec-booking-attendees-head span:nth-child(2),.mec-booking-attendees-head-content>span:nth-child(2){width:20%}.mec-booking-attendees-head span:nth-child(3),.mec-booking-attendees-head-content>span:nth-child(3){width:24%}.mec-booking-attendees-head span:nth-child(4),.mec-booking-attendees-head-content>span:nth-child(4){width:26%}.mec-booking-attendees-head span:nth-child(5),.mec-booking-attendees-head-content>span:nth-child(5){width:26%}@media only screen and (max-width:759px){.mec-booking-attendees{width:470px}.mec-booking-attendees-head span,.mec-booking-attendees-head-content>span{word-break:break-all}}@media(max-width:1366px){.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:6%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:40%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:12%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:8%}}@media(max-width:1024px){.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:30%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:15%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:10%}}@media(max-width:780px){.mec-profile .mec-profile-bookings tbody tr,.mec-profile i{font-size:12px}.mec-event-date .mec-tooltip .box{min-width:200px}.mec-event-status .mec-tooltip .box{min-width:90px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{padding:4px 5px!important}.mec-profile .mec-profile-bookings tbody tr{font-size:12px}}@media(max-width:480px){.mec-profile .mec-booking-number-of-attendees,.mec-profile .mec-profile-bookings tbody tr,.mec-profile i{font-size:8px!important}.mec-profile .mec-profile-bookings tbody tr td{padding:3px}.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:19%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:12%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:18%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:13%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:13%}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{font-size:8px}.mec-event-date .mec-tooltip .box{min-width:75px}.mec-event-status .mec-tooltip .box{min-width:70px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{padding:4px 5px!important}}.mec-woo-booking-checkout{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;border-radius:0;margin-bottom:6px;min-width:170px;margin-top:5px;text-align:center}.mec-woo-booking-checkout:hover{background:#222;color:#fff}.mec-woo-booking-checkout:focus,.mec-woo-booking-checkout:visited{color:#fff}.single-mec-events .lity-container{max-width:480px;width:480px}.lity-content .mec-events-meta-group-booking{width:100%;padding:20px 50px;background:#fff}.lity-content .mec-events-meta-group-booking .mec-booking form>h4{text-transform:uppercase;font-size:15px;font-weight:700;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative;text-align:center;line-height:1.2;margin-bottom:10px}.lity-content .mec-events-meta-group-booking .mec-booking form>h4:before{padding:1px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-35px;left:50%}.lity-content .mec-events-meta-group-booking .mec-event-ticket-available,.lity-content .mec-events-meta-group-booking .mec-event-ticket-name,.lity-content .mec-events-meta-group-booking .mec-event-ticket-price,.lity-content .mec-events-meta-group-booking .mec-ticket-variation-name,.lity-content .mec-events-meta-group-booking .mec-ticket-variation-price,.lity-content .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;clear:none;padding:5px 1em 3px 0;display:inline-block}.lity-content .mec-events-meta-group-booking .mec-event-ticket-available{margin-bottom:12px}.lity-content .mec-events-meta-group-booking select{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both;font-family:Montserrat,Helvetica,Arial,sans-serif}.lity-content .mec-events-meta-group-booking input[type=email]{color:#888;border:1px solid #e1e1e1;font-size:14px;display:block;width:100%;outline:0}.lity-content .mec-events-meta-group-booking input{margin-bottom:10px!important}.lity-content .mec-book-ticket-variation h5{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:0;clear:none;padding:5px 1em 3px 0;display:inline-block;text-transform:capitalize;font-family:Montserrat,Helvetica,Arial,sans-serif}.lity-content ul.mec-book-tickets-container{padding:0}.lity-content .mec-events-meta-group-booking input[type=email],.lity-content .mec-events-meta-group-booking input[type=number],.lity-content .mec-events-meta-group-booking input[type=text]{outline:0;font-family:Montserrat,Helvetica,Arial,sans-serif;display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both;margin-bottom:2px!important}.lity-content button[type=submit]{position:relative;border:none;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;min-width:170px;margin-top:5px;border-radius:0;margin-bottom:6px}.lity-content button[type=submit]:hover{background:#222}.lity-content .mec-book-tickets-container li{list-style:none}.lity-content .mec-events-meta-group-booking #mec_book_payment_form h4,.lity-content .mec-events-meta-group-booking li h4{font-size:19px;font-weight:700}.lity-content .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li{width:50%}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li:nth-child(even){border:none}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li span{display:block}.lity-content .mec-events-meta-group-booking button[type=submit]:after{display:none;font-family:simple-line-icons;content:"\e098";margin-left:4px;-webkit-animation:rotating 1.2s linear infinite;-moz-animation:rotating 1.2s linear infinite;-ms-animation:rotating 1.2s linear infinite;-o-animation:rotating 1.2s linear infinite;animation:rotating 1.2s linear infinite}.lity-content .mec-events-meta-group-booking button[type=submit].loading:after{display:inline-block}@media only screen and (max-width:480px){.lity-content .mec-events-meta-group-booking{padding:20px;width:340px;margin:0 auto}}.mec-events-meta-group-booking{position:relative}.mec-cover-loader:after{content:'';position:absolute;top:0;right:0;left:0;bottom:0;background:rgba(255,255,255,.5);z-index:99999}.mec-loader{background:rgba(0,0,0,0);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);z-index:9}.mec-loader,.mec-loader:after{border-radius:50%;width:5em;height:5em;z-index:999999999999}.mec-loader{font-size:10px;text-indent:-9999em;border-top:.5em solid rgba(0,0,0,.2);border-right:.5em solid rgba(0,0,0,.2);border-bottom:.5em solid rgba(0,0,0,.2);border-left:.5em solid #fff;-webkit-transform:translateZ(0);-ms-transform:translateZ(0);transform:translateZ(0);-webkit-animation:mecloader 1.1s infinite linear;animation:mecloader 1.1s infinite linear}@-webkit-keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.mec-google-recaptcha{margin:0 0 20px 16px}.mec-wrap *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap :after,.mec-wrap :before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap .clearfix:after,.mec-wrap .clearfix:before{content:'\0020';display:block;overflow:hidden;visibility:hidden;width:0;height:0}.mec-wrap .clearfix:after{clear:both}.mec-wrap .clearfix{zoom:1}.mec-wrap .clear,.mec-wrap .clr{clear:both;display:block;overflow:hidden;visibility:hidden}.mec-wrap .clr{visibility:visible;overflow:visible}.mec-container [class*=col-] img{max-width:100%}.mec-container{margin-right:auto;margin-left:auto;padding-left:10px;padding-right:10px}.mec-container:after,.mec-container:before{content:" ";display:table}.mec-container:after{clear:both}@media only screen and (max-width:479px){.mec-container{width:300px}}@media only screen and (min-width:480px) and (max-width:767px){.mec-container{width:420px}}@media only screen and (min-width:768px) and (max-width:960px){.mec-container{width:768px}}@media only screen and (min-width:961px){.mec-container{width:960px}}@media only screen and (min-width:1200px){.mec-container{width:1196px;padding-left:15px;padding-right:15px}}@media only screen and (min-width:1921px){.mec-container{max-width:1690px}}.mec-wrap .row{margin-left:-10px;margin-right:-10px}.mec-wrap .row:after,.mec-wrap .row:before{content:" ";display:table}.mec-wrap .row:after{clear:both}.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{position:relative;min-height:1px;padding-left:10px;padding-right:10px}@media only screen and (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{padding-left:15px;padding-right:15px}.mec-wrap .row{margin-left:-15px;margin-right:-15px}}.mec-container [class*=col-].alpha{padding-left:0}.mec-container [class*=col-].omega{padding-right:0}.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{float:left}.mec-wrap .col-xs-12{width:100%}.mec-wrap .col-xs-11{width:91.66666666666666%}.mec-wrap .col-xs-10{width:83.33333333333334%}.mec-wrap .col-xs-9{width:75%}.mec-wrap .col-xs-8{width:66.66666666666666%}.mec-wrap .col-xs-7{width:58.333333333333336%}.mec-wrap .col-xs-6{width:50%}.mec-wrap .col-xs-5{width:41.66666666666667%}.mec-wrap .col-xs-4{width:33.33333333333333%}.mec-wrap .col-xs-3{width:25%}.mec-wrap .col-xs-2{width:16.666666666666664%}.mec-wrap .col-xs-1{width:8.333333333333332%}@media (min-width:768px){.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9{float:left}.mec-wrap .col-sm-12{width:100%}.mec-wrap .col-sm-11{width:91.66666666666666%}.mec-wrap .col-sm-10{width:83.33333333333334%}.mec-wrap .col-sm-9{width:75%}.mec-wrap .col-sm-8{width:66.66666666666666%}.mec-wrap .col-sm-7{width:58.333333333333336%}.mec-wrap .col-sm-6{width:50%}.mec-wrap .col-sm-5{width:41.66666666666667%}.mec-wrap .col-sm-4{width:33.33333333333333%}.mec-wrap .col-sm-3{width:25%}.mec-wrap .col-sm-2{width:16.666666666666664%}.mec-wrap .col-sm-1{width:8.333333333333332%}}@media (min-width:961px){.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9{float:left}.mec-wrap .col-md-12{width:100%}.mec-wrap .col-md-11{width:91.66666666666666%}.mec-wrap .col-md-10{width:83.33333333333334%}.mec-wrap .col-md-9{width:75%}.mec-wrap .col-md-8{width:66.66666666666666%}.mec-wrap .col-md-7{width:58.333333333333336%}.mec-wrap .col-md-6{width:50%}.mec-wrap .col-md-5{width:41.66666666666667%}.mec-wrap .col-md-4{width:33.33333333333333%}.mec-wrap .col-md-3{width:25%}.mec-wrap .col-md-2{width:16.666666666666664%}.mec-wrap .col-md-1{width:8.333333333333332%}}@media (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9{float:left}.mec-wrap .col-lg-12{width:100%}.mec-wrap .col-lg-11{width:91.66666666666666%}.mec-wrap .col-lg-10{width:83.33333333333334%}.mec-wrap .col-lg-9{width:75%}.mec-wrap .col-lg-8{width:66.66666666666666%}.mec-wrap .col-lg-7{width:58.333333333333336%}.mec-wrap .col-lg-6{width:50%}.mec-wrap .col-lg-5{width:41.66666666666667%}.mec-wrap .col-lg-4{width:33.33333333333333%}.mec-wrap .col-lg-3{width:25%}.mec-wrap .col-lg-2{width:16.666666666666664%}.mec-wrap .col-lg-1{width:8.333333333333332%}}#mec_woo_add_to_cart_btn{min-width:170px;margin-top:5px;text-align:center}.mec-breadcrumbs{border-radius:2px;padding:9px 15px 6px;font-size:11px;color:#8d8d8d;letter-spacing:0;text-transform:none;font-weight:500;margin:auto 15px 33px 15px;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.025)}.mec-breadcrumbs-modern{margin:auto 0 33px 0}.mec-breadcrumbs a{color:#000;padding-left:4px}.mec-breadcrumbs a:hover{text-decoration:underline}.mec-breadcrumbs i{font-size:8px;margin:0 0 0 4px}.mec-breadcrumbs .container{padding-left:20px}.mec-content-notification a{margin-left:5px}.mec-content-notification{background:#f7f7f7;padding:10px 10px 10px;border:1px solid #e8e8e8}.mec-content-notification p{margin-bottom:0}.mec-fes-form #mec-advanced-wraper div:first-child>ul{border:1px solid #cfeff5;width:auto;box-shadow:0 1px 4px -2px #cfeff5;display:block;margin:5px 0 10px;padding:5px 0;border-radius:2px}.mec-fes-form #mec-advanced-wraper div:first-child>ul:last-of-type{margin-bottom:35px}#mec-advanced-wraper div:first-child>ul span{display:none}#mec-advanced-wraper div:first-child>ul *{display:inline-block;background:#fff;font-size:12px;color:#717273;text-align:center}#mec-advanced-wraper div:first-child>ul>li{width:60px;font-weight:700;margin:0 10px 0 0;padding:4px 0;border-right:1px solid #cfeff5}#mec-advanced-wraper div:first-child>ul>ul>li{margin:0;padding:2px 10px;cursor:pointer;border-radius:2px;transition:all .18s ease}.mec-fes-form #mec-advanced-wraper div:first-child>ul>ul>li.mec-active,.mec-fes-form #mec-advanced-wraper div:first-child>ul>ul>li:hover{background:#40d9f1!important;box-shadow:0 1px 9px -3px #40d9f1;color:#fff!important}.mec-search-bar-wrap .mec-search-form .mec-text-input-search{width:83%}.mec-search-bar-wrap .mec-search-form .mec-ajax-search-result .mec-text-input-search{width:100%;float:none}.mec-search-bar-wrap input#mec-search-bar-input{width:calc(100% - 84%);margin-left:11px;background:#40d9f1;Color:#fff;font-weight:400}.mec-text-input-search+input#mec-search-bar-input{margin-left:-3px}.mec-search-bar-wrap input#mec-search-bar-input:hover{background:#000}.mec-wrap.mec-search-bar-wrap .mec-totalcal-box input{float:none}@media(max-width:768px){.mec-search-bar-wrap .mec-search-form .mec-text-input-search{display:inline-block}}@media(max-width:480px){.mec-search-bar-wrap .mec-search-form .mec-text-input-search{width:64%}.mec-search-bar-wrap input#mec-search-bar-input{width:calc(100% - 67%)}}.mec-wrap.mec-search-bar-wrap .mec-totalcal-box{overflow:visible}.mec-ajax-search-result{position:relative}.mec-search-bar-wrap.mec-wrap .mec-totalcal-box input[type=text]{width:calc(100% - 36px)}.mec-search-bar-wrap.mec-wrap .mec-totalcal-box input[type=text]:focus{border-color:#efefef}div#mec-ajax-search-result-wrap{position:absolute;top:100%;opacity:0;visibility:hidden;width:calc(100% - 2px);min-height:50px;left:0;right:0;padding:0 10px;z-index:9999;transition:all .3s ease}.mec-ajax-search-result-events{background:#fff;padding:10px 20px;border:1px solid #efefef;border-top:none}.mec-ajax-search-result-events article:first-of-type{border:none}article.mec-search-bar-result{text-align:left;margin-bottom:0;padding-bottom:25px;padding-top:26px;border-top:1px solid #efefef;transition:all .33s ease;clear:both}.mec-search-bar-result .mec-event-list-search-bar-date{width:64px;height:64px;margin-right:10px;font-size:11px;text-transform:uppercase;float:left;text-align:center;padding-top:2px}.mec-search-bar-result .mec-event-list-search-bar-date span{font-size:40px;line-height:30px;font-weight:700;display:block;margin-bottom:6px;letter-spacing:1px}.mec-search-bar-result .mec-event-image{float:left;margin-right:20px;width:65px;height:auto}.mec-search-bar-result .mec-event-time{font-size:11px;line-height:1.1;margin:0}.mec-search-bar-result .mec-event-time i{color:#40d9f1;float:none;width:unset;height:unset;font-size:inherit;margin-right:3px;border:none;padding:0}.mec-search-bar-result .mec-event-title{font-size:13px;padding:0;margin:10px 0 8px;font-weight:700;text-transform:uppercase}.mec-search-bar-result .mec-event-title a{text-decoration:none;color:#494949;transition:color .3s ease}.mec-search-bar-result .mec-event-detail{font-size:13px;line-height:1.3;font-family:Roboto,sans-serif;color:#9a9a9a;margin-bottom:0}.mec-wrap.mec-modern-search-bar .mec-totalcal-box{background:rgba(255,255,255,.87);border:none;padding:35px;border-radius:3px;box-shadow:0 3px 13px rgba(0,0,0,.4);position:relative}.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=search],.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=text]{height:58px;background:rgba(255,255,255,.99);border-radius:2px;box-shadow:0 4px 8px rgba(0,0,0,.1) inset;border:1px solid #ccc;width:100%;padding-left:45px;padding-right:13px;font-size:16px}.mec-wrap.mec-modern-search-bar .mec-totalcal-box .mec-text-input-search i{position:absolute;background:0 0;border:none;font-size:21px;left:15px;top:calc(50% - 19px);color:#40d9f1}.mec-wrap.mec-modern-search-bar .mec-text-input-search{position:relative;height:58px}.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=submit]{height:58px;border:none;border-radius:2px;background:#fc4a1a;font-size:17px;font-weight:700!important}.mec-wrap.mec-modern-search-bar .mec-text-input-search+input#mec-search-bar-input{margin-left:0}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{height:45px;background:rgba(255,255,255,.99);border-radius:2px;box-shadow:0 4px 8px rgba(0,0,0,.1) inset;border:1px solid #ccc;padding-right:13px;font-size:16px;border-left:0}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap i{height:45px;background:#ffff;border-radius:2px 0 0 2px;box-shadow:none;border:1px solid #ccc;font-size:15px;padding-top:14px;border-right:0;color:#40d9f1;margin-right:-1px}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap{min-height:64px}@media(max-width:768px){.mec-wrap.mec-modern-search-bar .mec-search-form .mec-text-input-search{width:70%}.mec-wrap.mec-modern-search-bar input#mec-search-bar-input{width:calc(100% - 72%)}}@media(max-width:480px){.mec-wrap.mec-modern-search-bar input#mec-search-bar-input{width:92%;padding:0 10px;position:relative;display:block;margin-left:11px}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-text-input-search{width:100%;margin-bottom:20px}.mec-wrap.mec-modern-search-bar .mec-text-input-search+input#mec-search-bar-input{margin-left:10px}}.mec-related-events-wrap{margin-top:50px}.mec-related-events-wrap h3.mec-rec-events-title:before{content:"";background:#2c2f34;width:46px;height:4px;position:absolute;top:59px;left:0}.mec-related-events-wrap h3.mec-rec-events-title{font-size:21px;font-weight:600;padding:17px 0;margin-bottom:28px;text-transform:uppercase;border-bottom:1px solid #e8e8e8;position:relative}.mec-related-event-post figure{margin:0}.mec-related-event-post figure img{width:100%}.mec-related-event-content{background-color:#fff;margin:-27px 30px 15px;position:relative;max-width:90%;padding:13px 21px 16px 19px}.mec-related-event-content h5 a{font-size:16px;color:#121212;font-weight:600;transition:all .3s ease}.mec-fes-form-cntt #mec-organizer-payments ul{list-style:none;background:0 0;margin:0}.mec-fes-form-cntt #mec-organizer-payments ul li h4{background:0 0;letter-spacing:.2px;display:inline-block;padding-left:0!important;padding-bottom:10px!important;margin:0;margin-bottom:1px;letter-spacing:1px;text-transform:capitalize;padding-top:1px}.mec-fes-form-cntt #mec-organizer-payments ul>li{width:100%;display:inline-block;vertical-align:top;padding:0;margin:0}#mec-login-form.mec-login-form{width:100%;background:#fff;padding:20px;margin:0 auto;text-align:center;position:relative}#mec-login-form.mec-login-form .mec-login-input{display:block;width:286px;margin:0 auto;margin-bottom:12px}#mec-login-form.mec-login-form .mec-login-forgotpassword{display:inline-block}.mec-login-forgotpassword a{color:#000}#mec-login-form.mec-login-form .mec-login-submit{float:right;text-align:right;width:49%;padding-right:2px}#mec-login-form.mec-login-form .mec-login-input input{border:none;box-shadow:none;background:#fff;color:#ccc;border-left:1px solid #e6e6e6;padding:0;height:100%;background-image:none!important;padding-left:10px;padding-right:0;width:222px;margin-left:0;clear:none;float:left}#mec-login-form.mec-login-form .mec-login-input label{border:1px solid #e6e6e6;height:52px;display:inline-block;padding:0;border-radius:3px;overflow:hidden;box-shadow:0 2px 4px rgba(0,0,0,.04)}#mec-login-form.mec-login-form .mec-login-input label i{padding:15px 13px 17px 16px;vertical-align:middle;font-size:20px;width:50px;color:#c5cad0;background:#fafafa;margin-right:0;float:left}#mec-login-form.mec-login-form .mec-login-forgotpassword{float:left;width:49%;text-align:left;padding-top:10px;font-size:13px;padding-left:2px}#mec-login-form.mec-login-form button{width:120px;height:44px;border:none;color:#fff;border-radius:3px;font-size:12px;font-weight:700;letter-spacing:1px;text-transform:uppercase;transition:all .22s ease;margin:0;min-width:unset}.mec-login-form button{box-shadow:0 4px 22px -7px #40d9f1;background-color:#40d9f1}#mec-login-form.mec-login-form button:hover{background:#222;box-shadow:0 3px 14px -4px #333}#mec-login-form.mec-login-form .mec-login-form-footer{width:286px;margin:0 auto;margin-top:20px;clear:both;position:relative;display:block;min-height:50px}#mec-login-form.mec-login-form .mec-ajax-login-loading{position:absolute;background:#ffffffc2;left:0;right:0;top:0;bottom:0}#mec-login-form.mec-login-form .lds-ripple{position:absolute;width:64px;height:64px;top:calc(50% - 23px);left:calc(50% - 23px)}#mec-login-form.mec-login-form .lds-ripple div{position:absolute;border:4px solid #40d9f1;opacity:1;border-radius:50%;animation:lds-ripple 1.2s cubic-bezier(0,.2,.1,.8) infinite}#mec-login-form.mec-login-form .lds-ripple div:nth-child(2){animation-delay:-.5s}#mec-login-form.mec-login-form .mec-ajax-login-loading-text{position:absolute;min-width:200px;top:calc(50% - 18px);left:calc(50% - 124px);color:#fff;padding:10px 22px;border-radius:3px;background:#fff;height:47px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text strong{color:#3fcc60}#mec-login-form.mec-login-form .mec-ajax-login-loading-text strong:before{content:"";position:absolute;top:8px;left:1px;border-right:2px solid #3fcc60;border-bottom:2px solid #3acb5c;transform:rotate(45deg);transform-origin:0 100%;color:#000;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards;width:8px;height:14px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong:after{content:"";position:absolute;top:14px;left:5px;border-bottom:2px solid #ff5d39;transform:rotate(45deg);transform-origin:0 100%;color:#000;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards;width:14px;height:4px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong{color:#ff5d39}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong:before{border-color:#ff5d39;border-bottom:none}@keyframes lds-ripple{0%{top:28px;left:28px;width:0;height:0;opacity:1}100%{top:-1px;left:-1px;width:58px;height:58px;opacity:0}}.mec-book-form-gateway-checkout [id*=mec_do_transaction_stripe_] .mec-form-row:first-child{margin-bottom:20px}.mec-events-meta-group-booking .StripeElement{box-sizing:border-box;height:40px;padding:10px 12px;border:1px solid transparent;border-radius:4px;background-color:#fff;box-shadow:0 1px 3px 0 #e6ebf1;-webkit-transition:box-shadow 150ms ease;transition:box-shadow 150ms ease;margin-bottom:20px;background:#fff}.mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text]{box-sizing:border-box;height:40px;padding:10px 12px;border:0!important;border-radius:4px;background-color:#fff;box-shadow:0 1px 3px 0 #e6ebf1!important;-webkit-transition:box-shadow 150ms ease;transition:box-shadow 150ms ease;margin-bottom:20px;background:#fff!important}.mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text]:focus{outline:0}.mec-events-meta-group-booking .StripeElement--focus{box-shadow:0 1px 3px 0 #cfd7df}.mec-events-meta-group-booking .StripeElement--invalid{border-color:#fa755a}.mec-events-meta-group-booking .StripeElement--webkit-autofill{background-color:#fefde5!important}.mec-booking-tab-content .button,.mec-booking-tab-content .mec-reg-field-add-option,.mec-fes-form .mec-form-row .button:not(.wp-color-result),.mec-fes-form input[type=file],ul#mec_reg_form_fields li .mec_reg_field_remove{height:40px;margin-top:1px;text-decoration:none;font-size:14px;line-height:34px!important;margin:0;padding:0 15px 1px!important;text-transform:none;letter-spacing:0;font-weight:600;color:#40d9f1;background:#fff;border-radius:3px;margin-right:8px;border:2px solid #cfeff5;box-shadow:0 2px 6px -3px #cfeff5}.mec-booking-tab-content .button:hover,.mec-booking-tab-content .mec-reg-field-add-option:hover,.mec-fes-form .mec-form-row .button:not(.wp-color-result):hover{background:#40d9f1;color:#fff;border-color:#40d9f1;box-shadow:0 2px 6px -3px #40d9f1}.mec-fes-form .mec-form-row input+button.button{vertical-align:top}.mec-fes-form .mec-form-row .quicktags-toolbar input.button.button-small{border-width:1px;padding:0 7px;color:#80c6d2;font-weight:400;margin:1px;transform:none}.mec-fes-form input[type=file]{max-width:166px;text-align:center;height:44px;transition:all .2s ease;border-radius:5px!important;border:2px dashed #b8e9f3}.mec-fes-form input[type=file]:hover{box-shadow:0 2px 16px -3px #cfeff5}.mec-fes-form input[type=file]::-webkit-file-upload-button{visibility:hidden;width:1px;height:38px}.mec-fes-form input[type=file]::-moz-file-upload-button{visibility:hidden;width:1px;height:38px}.mec-fes-form .mec-meta-box-fields>label{padding:0}#mec_reg_form_fields li{list-style:none}ul#mec_reg_form_fields{padding:0;margin:0}ul#mec_reg_form_fields li{background:#f8feff;margin:6px -20px;padding:15px 25px 10px;width:auto;font-size:13px;border-top:1px solid #e8fafd;border-bottom:1px solid #e8fafd;position:relative}ul#mec_reg_form_fields li .mec_reg_field_remove{position:absolute;right:10px;top:10px;margin:0;padding:6px 8px!important;font-size:11px;line-height:12px!important;min-height:10px;height:auto;display:block;cursor:pointer;color:#ea6485;border-color:#ffd2dd;letter-spacing:.4px}ul#mec_reg_form_fields li .mec_reg_field_remove:hover{background:#ea6485;color:#fff;border-color:#ea6485;box-shadow:0 2px 6px -3px #ea6485}#mec_reg_form_fields input[type=checkbox],#mec_reg_form_fields input[type=radio],.mec-form-row input[type=checkbox],.mec-form-row input[type=radio]{background-color:#fff;border:1px solid #cfeff5;box-shadow:0 1px 3px -1px #cfeff5;padding:9px;border-radius:3px;min-width:24px;min-height:24px;display:inline-block!important;vertical-align:middle;float:none;transition:all .18s ease;outline:0;margin:1px 4px 4px 0;text-align:left;cursor:pointer;-webkit-appearance:none;-moz-appearance:none}#mec_reg_form_fields input[type=checkbox]:focus,#mec_reg_form_fields input[type=radio]:focus,.mec-form-row input[type=checkbox]:focus,.mec-form-row input[type=radio]:focus{outline:0}#mec_reg_form_fields input[type=radio],.mec-form-row input[type=radio]{-webkit-appearance:none;border-radius:20px!important;min-width:20px;min-height:20px;margin:0 0 4px 0;vertical-align:middle}#mec_reg_form_fields input[type=checkbox]:hover,#mec_reg_form_fields input[type=radio]:hover,.mec-form-row input[type=checkbox]:hover,.mec-form-row input[type=radio]:hover{border-color:#40d9f1}#mec_reg_form_fields input[type=checkbox]:checked,#mec_reg_form_fields input[type=radio]:checked,.mec-fes-form .mec-form-row input[type=checkbox]:checked,.mec-fes-form .mec-form-row input[type=radio]:checked{box-shadow:0 1px 6px -2px #40d9f1;border-color:#40d9f1;background:#40d9f1!important;border-radius:2px;position:relative}.mec-form-row input[type=radio]:checked{box-shadow:0 1px 6px -2px #40d9f1,inset 0 0 0 3px #fff!important}#mec_reg_form_fields input[type=checkbox]:checked::before,.mec-form-row input[type=checkbox]:checked:before{content:"";font:normal;position:absolute;top:12px;left:5px;margin:0;vertical-align:middle;line-height:1;border-right:2px solid #fff!important;border-bottom:2px solid #fff!important;transform:rotate(45deg);transform-origin:0 100%;color:#fff;transition:all .2s ease;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards}@keyframes checkbox-check{0%{width:0;height:0;border-color:#fff;transform:translate3d(0,0,0) rotate(45deg)}33%{width:6px;height:0;transform:translate3d(0,0,0) rotate(45deg)}100%{width:6px;height:12px;border-color:#fff;transform:translate3d(0,-12px,0) rotate(45deg)}}#mec_reg_form_field_types .button{position:relative;outline:0;border-radius:50px;padding:2px 21px 2px 31px!important;line-height:1;font-size:11px;font-weight:600;color:#40d9f1;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 2px 6px -3px #40d9f1;border:2px solid #cfeff5}#mec_fes_location_remove_image_button,#mec_fes_organizer_remove_image_button,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button,#mec_meta_box_tickets_form [id^=mec_ticket_row] button,#mec_reg_form_field_types .button.red{color:#ea6485;box-shadow:0 2px 6px -3px #ea6485;background:#fff;border-color:#ffd2dd}#mec_fes_location_remove_image_button:hover,#mec_fes_organizer_remove_image_button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button:hover,#mec_meta_box_tickets_form [id^=mec_ticket_row] button:hover,#mec_reg_form_field_types .button.red:hover{background:#ea6485;color:#fff}#mec_reg_form_field_types .button:before{position:absolute;left:12px;color:#40d9f1;content:"\e095";font-family:simple-line-icons;font-size:13px;display:inline-block}#mec_reg_form_field_types .button.red:before{color:#ea6485}#mec_reg_form_field_types .button.red:hover:before,#mec_reg_form_field_types .button:hover:before{color:#fff}#mec_fes_location_remove_image_button:hover,#mec_fes_organizer_remove_image_button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button:hover,#mec_meta_box_tickets_form [id^=mec_ticket_row] button:hover,#mec_price_per_dates_container .button:hover,#mec_reg_form_field_types .button.red:hover{color:#fff;border:2px solid #ea6485}#mec_taxes_fees_container_toggle [id^=mec_remove_fee_button],#mec_ticket_variations_list [id^=mec_remove_ticket_variation_button]{color:#ea6485;border-color:#ffd2dd}#mec_taxes_fees_container_toggle [id^=mec_remove_fee_button]:hover,#mec_ticket_variations_list [id^=mec_remove_ticket_variation_button]:hover{color:#fff;border:2px solid #ea6485;background:#ea6485}#mec_fees_list [id^=mec_remove_fee_button],#mec_meta_box_ticket_variations_form .mec-form-row [id^=mec_remove_ticket_variation_button]{margin-left:14px!important}#mec_meta_box_hourly_schedule_days .mec-add-hourly-schedule-button{line-height:10px!important}#mec_meta_box_tickets_form [id^=mec_ticket_row] .mec_add_price_date_button{color:#40d9f1;box-shadow:0 2px 6px -3px #40d9f1;border:2px solid #cfeff5}#mec_meta_box_tickets_form [id^=mec_ticket_row] .mec_add_price_date_button:hover,#mec_reg_form_field_types .button:hover{color:#fff;border:2px solid #40d9f1;background:#40d9f1}.mec-form-row input+span.mec-tooltip,.mec-form-row select+span.mec-tooltip{bottom:10px}.mec-form-row label+span.mec-tooltip{bottom:8px}.mec-form-row textarea+span.mec-tooltip{bottom:auto;vertical-align:top;top:12px}.mec-form-row span+span.mec-tooltip{bottom:0;vertical-align:middle}.mec-form-row .mec-col-8 input[type=text],.mec-form-row .mec-col-8 select,.mec-form-row .mec-col-8 span.mec-archive-skins{vertical-align:top}.mec-form-row input:disabled{opacity:.6;background:#f6f6f6}.mec-form-row p{font-size:12px!important;line-height:18px!important;color:#97b2bb!important}.mec-form-row p.description{font-style:italic}.ui-datepicker.ui-widget{border:1px solid #e8e8e8;box-shadow:0 1px 9px rgba(0,0,0,.12);font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif}table.ui-datepicker-calendar{margin-bottom:0}.ui-datepicker-calendar th{font-weight:700;color:#4a4b4c}.ui-datepicker-calendar td,.ui-datepicker-calendar th,.ui-datepicker-calendar tr{border:none}.ui-datepicker.ui-widget select{font-weight:600;font-size:12px;display:inline-block;border-radius:2px;padding:2px 10px;margin:5px 3px;width:auto;min-height:20px;height:26px;border:1px solid #e3e3e3;box-shadow:inset 0 1px 3px rgba(0,0,0,.04)}.ui-datepicker.ui-widget table{border-spacing:2px;border:none}.ui-datepicker.ui-widget td,.ui-datepicker.ui-widget tr{padding:0;background:0 0!important}.ui-datepicker.ui-widget td a{color:#9a9b9c;font-weight:600;width:30px;height:30px;line-height:30px;display:inline-block;border-radius:33px;padding:0;background:#fff;transition:all .2s ease}.ui-datepicker.ui-widget td a.ui-state-active,.ui-datepicker.ui-widget td a:hover{background:#40d9f1;color:#fff}.ui-datepicker.ui-widget .ui-datepicker-next,.ui-datepicker.ui-widget .ui-datepicker-prev{color:#40d9f1;width:30px;height:30px;line-height:30px;display:inline-block;text-align:center;border-radius:33px;background:#ecfcff;transition:all .2s ease}.ui-datepicker.ui-widget .ui-datepicker-next:hover,.ui-datepicker.ui-widget .ui-datepicker-prev:hover{background:#fff;box-shadow:0 0 7px -3px rgba(0,0,0,.4)}.mec-fes-form .mec-tooltip .dashicons-before:before{color:#40d9f1}.mec-fes-form button[type=submit].mec-fes-sub-button{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;border-radius:3px;background:#40d9f1;color:#fff;height:54px;font-size:17px;font-weight:700;box-shadow:0 2px 8px -4px #40d9f1;display:block;transition:all .28s ease;text-transform:uppercase;margin:20px 0 0;padding:14px 20px;border:0;cursor:pointer;text-align:center;letter-spacing:.1em;line-height:1}.mec-fes-form button[type=submit].mec-fes-sub-button:hover{box-shadow:0 2px 12px -2px #40d9f1}.mec-fes-form button[type=submit].mec-fes-sub-button:focus{margin-bottom:-2px;background:#1dc2dc}.mec-fes-form .mec-title span.mec-dashicons{color:#40d9f1;float:left;margin-right:5px}.mec-fes-form .mec-tooltip .box h5{padding:14px 2px}#mec_fes_form,.mec-fes-form-top-actions{max-width:838px;margin:0 auto}@media only screen and (min-width:961px){.mec-fes-form .mec-fes-form-cntt{width:calc(100% - 300px);float:left;padding-right:20px;max-width:538px;display:block}.mec-fes-form .mec-fes-form-sdbr{width:300px}}.mec-fes-form .quicktags-toolbar,.mec-fes-form div.mce-toolbar-grp{background:#ecfcff;border-bottom:1px solid #cfeff5;box-shadow:0 1px 0 1px #cfeff5}.mec-fes-form .quicktags-toolbar{margin-right:-1px;border-top:1px solid #cfeff5}.mec-fes-form div.mce-statusbar{border-top-color:#cfeff5}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-listbox{border:1px solid #cfeff5;border-radius:3px}.mec-fes-form .mce-tinymce.mce-container.mce-panel{border:1px solid #cfeff5;box-shadow:0 2px 6px -3px #cfeff5;border-radius:2px 0 2px 2px}.mec-fes-form .wp-editor-tools .wp-media-buttons{transform:translateY(-6px);margin-top:-6px}.mec-fes-form .wp-editor-tabs{padding-right:0;margin-right:-2px}.mec-fes-form .wp-editor-tabs .wp-switch-editor{border-radius:3px 3px 0 0;border-color:#cfeff5;background:#fff;color:#96b8bd;border-bottom:1px solid #ecfcff}.mec-fes-form .html-active .switch-html,.mec-fes-form .tmce-active .switch-tmce,.mec-fes-form .wp-editor-tabs .wp-switch-editor:active{background:#ecfcff;color:#40d9f1}.mec-fes-form .wp-editor-container,.mec-fes-form div.mce-edit-area.mce-panel{border:none;box-shadow:none}.mec-fes-form .wp-editor-container textarea.wp-editor-area{max-width:100%}.mec-fes-form .mce-toolbar .mce-listbox button{font-size:12px;line-height:22px;color:#798f96}.mec-fes-form .mce-toolbar .mce-ico{color:#627f88}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-active,.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn:active,.mec-fes-form .qt-dfw.active{background:#fff;border-color:#40d9f1;box-shadow:inset 0 2px 6px -3px rgba(106,231,255,.7)}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-active .mce-ico{color:#40d9f1}body .mce-menu .mce-menu-item.mce-active.mce-menu-item-normal,body .mce-menu .mce-menu-item.mce-selected,body .mce-menu .mce-menu-item:focus,body .mce-menu .mce-menu-item:hover,body.mce-menu .mce-menu-item.mce-active.mce-menu-item-preview{background:#40d9f1;color:#fff}.mec-fes-form .mec-not-in-days-day{display:inline-block;padding:4px 32px 4px 15px;border-radius:33px;border:1px solid #cfeff5;box-shadow:0 1px 3px -1px #cfeff5;background:#fbfeff;color:#40d9f1;vertical-align:top}.mec-fes-form .mec-not-in-days-remove{display:inline-block;padding:0 1px 0 0;margin-left:-30px;vertical-align:sub;background:#ff918a;color:#fff;font-family:cursive;width:21px;height:21px;line-height:17px;text-align:center;border-radius:20px;cursor:pointer}.mec-fes-list ul li .mec-event-status{float:left;margin-right:10px;margin-left:0;font-size:11px;font-weight:400;letter-spacing:.3px;border-radius:3px;padding:4px 8px}.mec-fes-form .post-status.mec-book-confirmed:before,.mec-fes-list ul li .mec-event-status.mec-book-confirmed:before{content:"";margin:0;vertical-align:middle;line-height:1;border-right:2px solid #fff!important;border-bottom:2px solid #fff!important;transform:rotate(45deg);color:#fff;width:6px;height:12px;float:left;margin-right:6px}.mec-fes-list ul li .mec-fes-event-export a:before,.mec-fes-list ul li .mec-fes-event-remove:before,.mec-fes-list ul li .mec-fes-event-view a:before,.mec-fes-list-top-actions a:before{content:"\e054";font-family:simple-line-icons;font-size:13px;vertical-align:middle}.mec-fes-list ul li .mec-fes-event-view a:before{content:"\e087"}.mec-fes-list-top-actions a:before{content:"\e095";font-weight:400;margin-right:6px}.mec-fes-list ul li .mec-fes-event-export a:before{content:"\e083"}.mec-fes-form .post-status{border-radius:20px}.mec-fes-form .post-status.mec-book-confirmed:before{height:20px;width:9px;margin:3px 10px}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker-calendar th{height:auto;padding:0}.ui-datepicker .ui-datepicker-calendar td a,.ui-datepicker-calendar th{font-size:14px;line-height:30px}.mec-fes-form .description{font-size:16px}.mec-fes-form input[type=file]{text-align:left}.mec-fes-export-wrapper{width:640px;background:#f8feff;padding:40px 25px}.mec-fes-export-wrapper .mec-fes-btn-date{font-size:16px;line-height:44px;overflow:hidden}.mec-fes-export-wrapper .date-messgae{font-family:sans-serif;padding:2px 18px}.mec-fes-list ul li .mec-event-export-csv,.mec-fes-list ul li .mec-event-export-excel{font-size:12px;border:1px solid #40d9f1;padding:1px 4px;background:rgba(141,229,243,.18);border-radius:4px;color:#40d9f1;font-family:sans-serif;cursor:pointer;display:inline-block;height:26px;line-height:22px}.mec-export-badge{font-size:11px;color:#40d9f1;width:auto;height:24px;line-height:25px;display:inline-block;padding:0 8px;text-align:center;border-radius:3px;background:#ecfcff;transition:all .2s ease}.mec-fes-list ul li .mec-fes-event-export{font-size:11px;background:#f7f7f7;float:right;margin-left:5px}.mec-fes-list ul li .mec-fes-event-export:hover{cursor:pointer;background:#90f0e0;border-color:#4dc8cc}.mec-fes-export-wrapper ul{padding:0;width:100%;text-align:center}.mec-fes-export-wrapper ul li{list-style:none;display:inline-block;width:30%;padding:10px 15px 10px 32px;border-radius:3px;margin-bottom:15px;border:1px solid #cfeff5;box-shadow:0 2px 6px -4px #cfeff5;background:#fff;line-height:normal;margin-right:10px;position:relative;cursor:pointer;font-size:13px;line-height:1;transition:all .2s ease}.mec-fes-export-wrapper ul li:nth-child(3n+0){margin-right:0}.mec-fes-export-wrapper ul li:hover{box-shadow:0 2px 16px -1px #c6e8ef}.mec-fes-export-wrapper ul li:before{content:"";position:absolute;display:inline-block;background:#fff;width:15px;height:15px;margin:-1px 0 0 5px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32);border-radius:50%;left:9px;top:calc(50% - 7px)}.mec-fes-export-wrapper ul li.fes-export-date-active{color:#40d9f1}.mec-fes-export-wrapper ul li.fes-export-date-active:before{width:15px;height:15px;border:6px solid #40d9f1;background:#fff;box-shadow:0 3px 16px -3px #40d9f1}.mec-fes-btn-export{margin-left:15px;margin-top:12px}.mec-fes-btn-export span{position:relative;border:none;border-radius:3px;color:#fff!important;display:inline-block;font-size:13px;line-height:1;text-transform:none;font-weight:400;text-decoration:none;cursor:pointer;margin-right:4px;line-height:1;letter-spacing:0;padding:15px 22px;background:#39c36e;box-shadow:0 1px 7px -3px #39c36e!important;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;cursor:pointer;margin-left:6px}.mec-fes-btn-export span:hover{background:#222}.mec-event-export-excel:before,span.mec-event-export-csv:before{content:"\e083";font-family:simple-line-icons;font-size:13px;vertical-align:middle;margin-right:7px;margin-top:-1px;display:inline-block}.mec-fes-list .wn-p-t-right{min-width:170px;max-width:200px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#000;color:#fff;font-weight:400;font-size:14px;letter-spacing:.5px;line-height:1.5;position:absolute;z-index:99999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #535a61;visibility:hidden;opacity:0;transition:opacity .23s;padding:5px 10px 6px;border-radius:8px;text-align:center;font-style:normal}.mec-fes-list .mec-fes-event-export:hover .wn-p-t-right,.mec-fes-list .mec-fes-event-remove:hover .wn-p-t-right,.mec-fes-list .mec-fes-event-view:hover .wn-p-t-right{visibility:visible;opacity:1}.mec-fes-list .wn-p-t-right i{position:absolute!important;top:100%;right:50%;margin-top:-6px!important;margin-right:-6px!important;width:12px;height:24px;overflow:hidden;transform:rotate(-90deg)}.mec-fes-list .wn-p-t-right i:after{content:'';position:absolute;width:12px;height:12px;left:0;top:50%;transform:translate(50%,-50%) rotate(-45deg);background-color:#000;box-shadow:0 8px 9px -4px #535a61}.mec-fes-form .select2-container{min-height:38px;box-sizing:border-box;margin-bottom:8px;padding:0 6px;border-radius:2px;border:1px solid #ddd;box-shadow:inset 0 1px 6px rgba(0,0,0,.07);background-color:#fff;color:#32373c;outline:0;transition:50ms border-color ease-in-out;min-width:200px;font-size:14px}.mec-fes-form .select2-selection{border:none;background:0 0;padding-top:2px;width:100%;height:100%}.mec-fes-form .select2-container--default.select2-container--focus .select2-selection{border:none!important;outline:0}.mec-fes-form .select2-container--default .select2-selection--single .select2-selection__arrow{top:5px;right:4px}.select2-results{font-size:14px}.mec-fes-category-children,.mec-fes-category-children .mec-fes-category-children{padding-left:24px}.mec-wrap .mec-timeline-events-container a,.mec-wrap .mec-timeline-events-container div,.mec-wrap .mec-timeline-events-container h4,.mec-wrap .mec-timeline-events-container p,.mec-wrap .mec-timeline-events-container span{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important}.mec-timeline-events-container{margin-left:19px;padding-top:20px;padding-bottom:9px}.mec-events-timeline-wrap{position:relative;display:block;overflow:visible;padding-left:95px}.mec-events-timeline-wrap:before{width:1px;content:'';height:100%;position:absolute;background:#dedede;left:95px}.mec-timeline-month-divider+.mec-timeline-events-container{padding-top:110px}.mec-timeline-right-content{float:right;width:300px}.mec-timeline-left-content{float:left;width:calc(100% - 300px);padding-left:15px;padding-right:15px}.mec-timeline-month-divider{position:absolute;display:block;background:#fff;right:calc(100% - 95px);left:0;width:190px;text-align:center;border:1px solid #dedede;border-radius:50px;font-size:15px;padding:12px 27px}.mec-timeline-event-date{position:relative}.mec-timeline-events-container .mec-timeline-event-date:before{content:'';width:10px;height:10px;position:absolute;background:#40d9f1;border-radius:50px;top:8px;left:-23px;z-index:99}.mec-timeline-events-container .mec-timeline-event-date:after{content:'';width:20px;height:20px;position:absolute;background:rgba(64,217,241,.3);border-radius:50px;top:3px;left:-28px}.mec-timeline-event-date{float:left;width:17%;margin-top:27px}.mec-timeline-event-content{float:left;width:82%;background:#fff;box-shadow:0 10px 30px 0 rgba(0,0,0,.1);border-radius:10px;overflow:visible;position:relative}.mec-timeline-main-content{padding:23px 30px}.mec-timeline-main-content h4{margin-bottom:15px}.mec-timeline-main-content h4 a{font-size:25px;font-weight:700;color:#000;line-height:33px;text-decoration:none}.mec-timeline-main-content p{font-size:15px;color:#515151;line-height:24px;margin-bottom:36px}a.mec-timeline-readmore{width:100%;display:block;text-align:center;color:#fff;text-decoration:none;line-height:52px;font-size:17px;font-weight:700;-webkit-transition:all .2s ease;transition:all .2s ease;border-radius:0 0 10px 10px}a.mec-timeline-readmore:hover{background:#222;color:#fff}.mec-timeline-event-time .mec-time-details{display:inline-block;margin-left:7px;font-size:13px;line-height:13px;font-weight:500}.mec-timeline-event-time i{vertical-align:middle}.mec-timeline-event-time{background:rgba(64,217,241,.11);display:inline-block;padding:4px 20px 8px;border-radius:50px}.mec-timeline-event-location address{font-style:normal;margin-bottom:0}.mec-timeline-event-location address span{font-size:13px;font-weight:500;vertical-align:middle;margin-left:6px}.mec-timeline-event-location address i{font-size:17px;vertical-align:middle}.mec-timeline-event-location{background:rgba(64,217,241,.11);display:inline-block;padding:7px 20px 11px;border-radius:20px;line-height:1.24}.mec-timeline-event-details+.mec-timeline-event-details{margin-top:12px}.mec-timeline-event-content .col-md-4{padding:0}.mec-timeline-event-content:after{content:'';display:block;position:absolute;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-timeline-event-content:after{top:30px;border-color:transparent #fff transparent transparent;left:-10px}.mec-timeline-event-image img{border-radius:0 10px 0 0;width:100%}.mec-timeline-event-image a{display:block;line-height:0}a.mec-timeline-readmore i{vertical-align:middle;margin-left:10px;font-size:9px}.mec-wrap .mec-timeline-event-content a.mec-timeline-readmore:hover{background:#444}@media(min-width:1024px){.mec-past-event.mec-timeline-event{margin:50px 0}}@media(max-width:1023px){.mec-past-event.mec-timeline-event{margin:25px 0}.mec-events-timeline-wrap{padding-left:20px}.mec-events-timeline-wrap:before{left:20px}}@media (max-width:1200px) and (min-width:992px){.mec-timeline-event-content{width:81%}.mec-timeline-event-date{width:18%}}@media (max-width:992px){.mec-timeline-left-content,.mec-timeline-right-content{float:none;width:100%;text-align:center}.mec-timeline-right-content .mec-timeline-event-image{text-align:center}.mec-timeline-right-content .mec-timeline-event-image img{max-width:300px;border-radius:10px;margin-top:35px}}@media (max-width:440px){.mec-timeline-right-content .mec-timeline-event-image img{margin-top:0}}@media (max-width:320px){.mec-timeline-event-content,.mec-timeline-event-date{float:none;width:100%}.mec-timeline-event-date{margin-bottom:8px}.mec-timeline-event-content:after{display:none}.mec-timeline-main-content{padding:23px 0}.mec-timeline-main-content p{font-size:13px}.mec-timeline-main-content h4 a{font-size:23px;line-height:24px}.mec-time-details span{font-size:11px}.mec-timeline-event-location address span{font-size:12px}a.mec-timeline-readmore{line-height:44px;font-size:14px}}.mec-event-tile-view article.mec-tile-item{height:400px;margin:15px 0;border-radius:22px;padding:35px 25px;position:relative;color:#fff;background-size:cover!important;background-position:center!important;box-shadow:0 2px 9px rgba(0,0,0,.25);transition:all .22s ease}.mec-event-tile-view article.mec-tile-item:hover{box-shadow:0 4px 19px rgba(0,0,0,.5)}.mec-event-tile-view article.mec-tile-item div{position:relative;z-index:3}.mec-event-tile-view article.mec-tile-item:after,.mec-event-tile-view article.mec-tile-item:before{position:absolute;background:-moz-linear-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);background:-webkit-gradient(left top,right top,color-stop(0,rgba(0,0,0,.35)),color-stop(65%,rgba(0,0,0,.48)),color-stop(100%,rgba(0,0,0,.72)));background:-webkit-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);background:linear-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);content:"";left:0;right:0;bottom:0;top:0;width:100%;width:calc(100% + 1px);height:100%;border-radius:22px;z-index:1}.mec-event-tile-view article.mec-tile-item:after{background-color:inherit;background-image:none;top:35px;bottom:auto;height:40px;border-radius:0 3px 3px 0;width:97px;z-index:2;box-shadow:2px 1px 7px rgba(0,0,0,.1)}.mec-event-tile-view article.mec-tile-item .event-tile-view-head{padding:8px 3px;font-size:16px;font-weight:700;margin-bottom:50px;text-transform:uppercase}.mec-event-tile-view article.mec-tile-item .mec-event-time{color:#d6d6d6;font-size:15px;font-weight:400;line-height:1;padding-top:4px;position:absolute;right:1px;top:10px}.mec-event-tile-view article.mec-tile-item .mec-event-time i{vertical-align:baseline;font-size:14px;float:left}.mec-event-tile-view article.mec-tile-item i{margin-right:5px}.mec-event-tile-view article.mec-tile-item .mec-event-title{color:#fff;font-weight:700;font-size:23px;padding-top:12px}.mec-event-tile-view article.mec-tile-item .mec-event-title a{color:#fff}.mec-event-tile-view article.mec-tile-item .mec-event-title a:hover{text-decoration:underline}.mec-event-tile-view article.mec-tile-item .mec-event-content{position:absolute;bottom:25px;left:25px;right:25px}.mec-skin-tile-month-navigator-container{position:relative;text-align:center;font-size:12px;height:80px;background:#f7f7f7;padding:28px;border-radius:11px;margin-bottom:20px}.mec-skin-tile-month-navigator-container:after,.mec-skin-tile-month-navigator-container:before{content:'';display:block;position:absolute;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-skin-tile-month-navigator-container:after{bottom:-20px;border-color:#f7f7f7 transparent transparent transparent}.mec-skin-tile-month-navigator-container:before{bottom:-21px;border-color:#fff transparent transparent transparent}@media only screen and (max-width:480px){.mec-skin-tile-month-navigator-container{height:110px;padding-top:68px}}.mec-skin-tile-month-navigator-container h2{font-size:23px;font-weight:700}.mec-skin-tile-month-navigator-container .mec-next-month,.mec-skin-tile-month-navigator-container .mec-previous-month{position:absolute;top:28px;left:20px;cursor:pointer;padding:3px 12px;line-height:23px;background:#fff;border-radius:32px;box-shadow:0 1px 3px rgba(0,0,0,.02);transition:all .22s ease}.mec-skin-tile-month-navigator-container .mec-next-month{left:auto;right:20px}.mec-skin-tile-month-navigator-container .mec-next-month:hover,.mec-skin-tile-month-navigator-container .mec-previous-month:hover{box-shadow:0 2px 5px rgba(0,0,0,.1);color:#000}.mec-wrap .mec-event-tile-view article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view article.mec-label-featured:before{position:absolute;bottom:auto;text-align:center;right:auto;font-size:10px}.mec-wrap .mec-event-tile-view .col-md-3 article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view .col-md-3 article.mec-label-featured:before{top:12px;left:103px}.mec-wrap .mec-event-tile-view .col-md-4 article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view .col-md-4 article.mec-label-featured:before{top:18px;left:125px}.mec-wrap .mec-event-tile-view .col-md-6 article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view .col-md-6 article.mec-label-featured:before{top:20px;left:200px}
|
assets/img/mec-addons-teaser1.png
CHANGED
Binary file
|
assets/js/backend.js
CHANGED
@@ -353,9 +353,27 @@ jQuery(document).ready(function($)
|
|
353 |
var ID = $(this).data('id');
|
354 |
if(!ID) return;
|
355 |
|
356 |
-
lity("#mec_manage_events_lightbox" + ID
|
357 |
-
jQuery(
|
|
|
358 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
359 |
});
|
360 |
});
|
361 |
|
@@ -510,8 +528,79 @@ function mec_show_widget_check(context)
|
|
510 |
jQuery(document).ready(function()
|
511 |
{
|
512 |
if(jQuery('.wn-mec-select').length > 0) jQuery('.wn-mec-select').niceSelect();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
513 |
});
|
514 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
515 |
// TinyMce Plugins
|
516 |
if(jQuery('.mec-fes-form').length < 1)
|
517 |
{
|
353 |
var ID = $(this).data('id');
|
354 |
if(!ID) return;
|
355 |
|
356 |
+
lity("#mec_manage_events_lightbox" + ID);
|
357 |
+
jQuery('#mec-send-email-editor' + ID + '-wrap').html('<textarea id="editor' + ID + '" class="wp-editor-area"></textarea>');
|
358 |
+
jQuery('#mec-send-email-editor' + ID + '-wrap').parent().find('.mec-send-email-button').data('id', ID);
|
359 |
|
360 |
+
wp.editor.initialize('editor' + ID,
|
361 |
+
{
|
362 |
+
tinymce:
|
363 |
+
{
|
364 |
+
wpautop:true,
|
365 |
+
toolbar1: 'formatselect bold italic | bullist numlist | blockquote | alignleft aligncenter alignright | link unlink | wp_more | spellchecker',
|
366 |
+
},
|
367 |
+
quicktags: true,
|
368 |
+
mediaButtons: true,
|
369 |
+
});
|
370 |
+
|
371 |
+
jQuery(document).on('lity:close', function()
|
372 |
+
{
|
373 |
+
wp.editor.remove('editor' + ID);
|
374 |
+
});
|
375 |
+
|
376 |
+
jQuery("#mec_manage_events_lightbox" + ID + ' .mec-attendees-list-left-menu').trigger('refresh.owl.carousel');
|
377 |
});
|
378 |
});
|
379 |
|
528 |
jQuery(document).ready(function()
|
529 |
{
|
530 |
if(jQuery('.wn-mec-select').length > 0) jQuery('.wn-mec-select').niceSelect();
|
531 |
+
|
532 |
+
// Send Custom Email To Attendees Button
|
533 |
+
jQuery('.mec-send-email-button').click(function()
|
534 |
+
{
|
535 |
+
var $this = this;
|
536 |
+
var data_send = jQuery($this).parent().parent().find('.mec-attendees-content').find('input[type="checkbox"]:checked').parent().find('.mec-send-email-attendee-info').text();
|
537 |
+
var mail_subject = jQuery($this).parent().find('#mec-send-email-subject').val();
|
538 |
+
var mail_content = wp.editor.getContent('editor' + jQuery(this).data('id'));
|
539 |
+
var mail_message = jQuery($this).parent().find('#mec-send-email-message');
|
540 |
+
|
541 |
+
if(data_send.length == 0) mail_message.attr('class', 'mec-util-hidden mec-error').html(jQuery('#mec-send-email-no-user-selected').val()).show();
|
542 |
+
else if(mail_subject.length == 0) mail_message.attr('class', 'mec-util-hidden mec-error').html(jQuery('#mec-send-email-empty-subject').val()).show();
|
543 |
+
else if(mail_content.length == 0) mail_message.attr('class', 'mec-util-hidden mec-error').html(jQuery('#mec-send-email-empty-content').val()).show();
|
544 |
+
else
|
545 |
+
{
|
546 |
+
mail_message.hide();
|
547 |
+
jQuery($this).html(jQuery('#mec-send-email-label-loading').val());
|
548 |
+
jQuery.ajax(
|
549 |
+
{
|
550 |
+
url: mec_admin_localize.ajax_url,
|
551 |
+
type: 'POST',
|
552 |
+
data: {
|
553 |
+
action: 'mec_mass_email',
|
554 |
+
nonce: mec_admin_localize.ajax_nonce,
|
555 |
+
mail_recipients_info: data_send,
|
556 |
+
mail_subject: mail_subject,
|
557 |
+
mail_content: mail_content
|
558 |
+
},
|
559 |
+
success: function(response)
|
560 |
+
{
|
561 |
+
jQuery($this).html(jQuery('#mec-send-email-label').val());
|
562 |
+
if(response == true) mail_message.attr('class', 'mec-util-hidden mec-success').html(jQuery('#mec-send-email-success').val()).show();
|
563 |
+
else mail_message.attr('class', 'mec-util-hidden mec-error').html(jQuery('#mec-send-email-error').val()).show();
|
564 |
+
},
|
565 |
+
error: function()
|
566 |
+
{
|
567 |
+
jQuery($this).html(jQuery('#mec-send-email-label').val());
|
568 |
+
mail_message.attr('class', 'mec-util-hidden mec-error').html(jQuery('#mec-send-email-error').val()).show();
|
569 |
+
}
|
570 |
+
});
|
571 |
+
}
|
572 |
+
});
|
573 |
+
|
574 |
+
jQuery('.mec-attendees-list-left-menu .owl-item').click(function()
|
575 |
+
{
|
576 |
+
jQuery(this).parent().parent().parent().parent().parent().find('.mec-send-email-count > span').html(0);
|
577 |
+
});
|
578 |
});
|
579 |
|
580 |
+
// Check All Send Custom Email To Attendees
|
581 |
+
function mec_send_email_check(Context)
|
582 |
+
{
|
583 |
+
var all_item = jQuery(Context).parent().parent().parent().find('.mec-attendees-content');
|
584 |
+
var item_len = all_item.find('input[type="checkbox"]').length;
|
585 |
+
var check_len = all_item.find('input[type="checkbox"]:checked').length;
|
586 |
+
var all_check = jQuery(Context).parent().parent().parent().find('#mec-send-email-check-all');
|
587 |
+
|
588 |
+
all_item.parent().parent().find('.mec-send-email-count > span').html(check_len);
|
589 |
+
if(item_len === check_len) all_check.prop('checked', true);
|
590 |
+
else all_check.prop('checked', false);
|
591 |
+
}
|
592 |
+
|
593 |
+
function mec_send_email_check_all(Context)
|
594 |
+
{
|
595 |
+
var all_item = jQuery(Context).parent().parent().parent().parent().find('.mec-attendees-content');
|
596 |
+
|
597 |
+
if(jQuery(Context).is(':checked')) all_item.find('input[type="checkbox"]').prop('checked', true);
|
598 |
+
else all_item.find('input[type="checkbox"]').prop('checked', false);
|
599 |
+
|
600 |
+
var check_len = all_item.find('input[type="checkbox"]:checked').length;
|
601 |
+
all_item.parent().parent().find('.mec-send-email-count > span').html(check_len);
|
602 |
+
}
|
603 |
+
|
604 |
// TinyMce Plugins
|
605 |
if(jQuery('.mec-fes-form').length < 1)
|
606 |
{
|
changelog.txt
CHANGED
@@ -1,4 +1,21 @@
|
|
1 |
-
v 4.9.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
- Added: An advanced option to edit bookings from backend (pro)
|
3 |
- Added: Ticket variation option to edit bookings (pro)
|
4 |
- Added: Recalculate price option for edit bookings (pro)
|
1 |
+
v 4.9.5 - 24 December 2019
|
2 |
+
- Added: An option to set minimum sale for tickets (pro)
|
3 |
+
- Added: A new badge for new events to inform administrator
|
4 |
+
- Added: An option for Facebook importer to import Facebook link as event link (pro)
|
5 |
+
- Added: An option for Facebook importer to import Facebook link as more info link (pro)
|
6 |
+
- Added: Mass email feature in attendees menu so admin can send mass email for selected attendees of a certain event at a specific date (pro)
|
7 |
+
- Added: Payment information such as gateway and payment time in invoices (pro)
|
8 |
+
- Added: WooCommerce order link in booking menu if booking is paid by WooCommerce (pro)
|
9 |
+
- Added: An option to stop selling tickets at a certain time before the event starts (pro)
|
10 |
+
- Added: Popular Social Networks (share): Tumblr, Pinterest, Flipboard, GetPocket, Reddit, WhatsApp and Telegram.
|
11 |
+
- Fixed: A security issue on iCal download
|
12 |
+
- Fixed: Date on next event module and export module
|
13 |
+
- Fixed: The iCal export button
|
14 |
+
- Fixed: Extra columns in CSV and MS Excel export (pro)
|
15 |
+
- Fixed: Extra comma in the list view minimal when not having a location
|
16 |
+
- Fixed: Some minor issues
|
17 |
+
|
18 |
+
v 4.9.0 - 10 December 2019
|
19 |
- Added: An advanced option to edit bookings from backend (pro)
|
20 |
- Added: Ticket variation option to edit bookings (pro)
|
21 |
- Added: Recalculate price option for edit bookings (pro)
|
languages/modern-events-calendar-lite-ca_ES.mo
CHANGED
Binary file
|
languages/modern-events-calendar-lite-ca_ES.po
CHANGED
@@ -4,8 +4,8 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Plugins - Modern Events Calendar Lite - Stable (latest "
|
6 |
"release)\n"
|
7 |
-
"POT-Creation-Date: 2019-12-
|
8 |
-
"PO-Revision-Date: 2019-12-
|
9 |
"Last-Translator: \n"
|
10 |
"Language-Team: \n"
|
11 |
"Language: ca\n"
|
@@ -25,8 +25,8 @@ msgstr "Modern Events Calendar"
|
|
25 |
msgid "Content"
|
26 |
msgstr "Contingut"
|
27 |
|
28 |
-
#: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:
|
29 |
-
#: app/features/mec.php:
|
30 |
msgid "Shortcode"
|
31 |
msgstr "Shortcode"
|
32 |
|
@@ -60,13 +60,13 @@ msgstr "Seleccionar tipus"
|
|
60 |
msgid "Event Color"
|
61 |
msgstr "Color de l'esdeveniment"
|
62 |
|
63 |
-
#: app/features/contextual.php:55 app/features/mec.php:
|
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:591
|
66 |
msgid "Settings"
|
67 |
msgstr "Configuració"
|
68 |
|
69 |
-
#: app/features/contextual.php:62 app/features/events.php:
|
70 |
#: app/features/mec/booking.php:439 app/features/mec/support.php:29
|
71 |
#: app/libraries/main.php:557
|
72 |
msgid "Booking Form"
|
@@ -230,12 +230,12 @@ msgstr "Mòdul de Següent Esdeveniment"
|
|
230 |
msgid "Frontend Event Submission"
|
231 |
msgstr "Presentació de l'esdeveniment Frontend"
|
232 |
|
233 |
-
#: app/features/contextual.php:298 app/features/events.php:
|
234 |
#: app/libraries/main.php:546
|
235 |
msgid "Exceptional Days"
|
236 |
msgstr "Dies excepcionals"
|
237 |
|
238 |
-
#: app/features/contextual.php:308 app/features/events.php:
|
239 |
#: app/features/mec/booking.php:88 app/features/mec/notifications.php:34
|
240 |
#: app/libraries/main.php:553 app/libraries/main.php:574
|
241 |
#: app/libraries/main.php:656
|
@@ -247,7 +247,7 @@ msgstr "Reserva"
|
|
247 |
msgid "Coupons"
|
248 |
msgstr "Cupons"
|
249 |
|
250 |
-
#: app/features/contextual.php:326 app/features/mec/modules.php:
|
251 |
#: app/libraries/main.php:570
|
252 |
msgid "BuddyPress Integration"
|
253 |
msgstr "Integració de BuddyPress"
|
@@ -261,14 +261,14 @@ msgstr "Integració de MailChimp"
|
|
261 |
msgid "MEC Activation"
|
262 |
msgstr "Activació MEC"
|
263 |
|
264 |
-
#: app/features/events.php:
|
265 |
#: app/features/mec/dashboard.php:255 app/skins/daily_view/tpl.php:79
|
266 |
#: app/skins/monthly_view/tpl.php:70 app/skins/tile/tpl.php:69
|
267 |
#: app/skins/yearly_view/tpl.php:68
|
268 |
msgid "Events"
|
269 |
msgstr "Esdeveniments"
|
270 |
|
271 |
-
#: app/features/events.php:
|
272 |
#: app/features/mec/meta_boxes/display_options.php:959
|
273 |
#: app/features/mec/meta_boxes/display_options.php:1015
|
274 |
#: app/features/mec/meta_boxes/display_options.php:1050
|
@@ -278,36 +278,36 @@ msgstr "Esdeveniments"
|
|
278 |
msgid "Event"
|
279 |
msgstr "Esdeveniment"
|
280 |
|
281 |
-
#: app/features/events.php:
|
282 |
msgid "Add Event"
|
283 |
msgstr "Nou Esdeveniment"
|
284 |
|
285 |
-
#: app/features/events.php:
|
286 |
msgid "Add New Event"
|
287 |
msgstr "Afegir nou esdeveniment"
|
288 |
|
289 |
-
#: app/features/events.php:
|
290 |
#: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:58
|
291 |
msgid "No events found!"
|
292 |
msgstr "No hi ha esdeveniments!"
|
293 |
|
294 |
-
#: app/features/events.php:
|
295 |
msgid "All Events"
|
296 |
msgstr "Tots els esdeveniments"
|
297 |
|
298 |
-
#: app/features/events.php:
|
299 |
msgid "Edit Event"
|
300 |
msgstr "Editar Esdeveniment"
|
301 |
|
302 |
-
#: app/features/events.php:
|
303 |
msgid "View Event"
|
304 |
msgstr "Veure Esdeveniment"
|
305 |
|
306 |
-
#: app/features/events.php:
|
307 |
msgid "No events found in Trash!"
|
308 |
msgstr "No hi ha esdeveniments a la paperera!"
|
309 |
|
310 |
-
#: app/features/events.php:
|
311 |
#: app/features/mec/meta_boxes/display_options.php:870
|
312 |
#: app/features/mec/meta_boxes/search_form.php:31
|
313 |
#: app/features/mec/meta_boxes/search_form.php:93
|
@@ -321,115 +321,115 @@ msgstr "No hi ha esdeveniments a la paperera!"
|
|
321 |
#: app/features/mec/meta_boxes/search_form.php:575
|
322 |
#: app/features/mec/meta_boxes/search_form.php:672
|
323 |
#: app/features/mec/settings.php:796 app/features/mec/single.php:204
|
324 |
-
#: app/features/search.php:67 app/libraries/main.php:
|
325 |
-
#: app/libraries/skins.php:811 app/skins/single.php:
|
326 |
#: app/skins/single/default.php:185 app/skins/single/default.php:397
|
327 |
#: app/skins/single/m1.php:174 app/skins/single/m2.php:106
|
328 |
#: app/skins/single/modern.php:114
|
329 |
msgid "Category"
|
330 |
msgstr "Categoria"
|
331 |
|
332 |
-
#: app/features/events.php:
|
333 |
-
#: app/features/fes/form.php:746 app/features/mec.php:
|
334 |
-
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:
|
335 |
msgid "Categories"
|
336 |
msgstr "Categories"
|
337 |
|
338 |
-
#: app/features/events.php:
|
339 |
#: app/features/locations.php:69 app/features/organizers.php:69
|
340 |
#: app/features/speakers.php:72
|
341 |
#, php-format
|
342 |
msgid "All %s"
|
343 |
msgstr "Tots %s"
|
344 |
|
345 |
-
#: app/features/events.php:
|
346 |
#: app/features/locations.php:70 app/features/organizers.php:70
|
347 |
#: app/features/speakers.php:73
|
348 |
#, php-format
|
349 |
msgid "Edit %s"
|
350 |
msgstr "Editar %s"
|
351 |
|
352 |
-
#: app/features/events.php:
|
353 |
#: app/features/locations.php:71 app/features/organizers.php:71
|
354 |
#: app/features/speakers.php:74
|
355 |
#, php-format
|
356 |
msgid "View %s"
|
357 |
msgstr "Veure %s"
|
358 |
|
359 |
-
#: app/features/events.php:
|
360 |
#: app/features/locations.php:72 app/features/organizers.php:72
|
361 |
#: app/features/speakers.php:75
|
362 |
#, php-format
|
363 |
msgid "Update %s"
|
364 |
msgstr "Actualitzar %s"
|
365 |
|
366 |
-
#: app/features/events.php:
|
367 |
#: app/features/locations.php:73 app/features/organizers.php:73
|
368 |
#: app/features/speakers.php:76
|
369 |
#, php-format
|
370 |
msgid "Add New %s"
|
371 |
msgstr "Afegir nou %s"
|
372 |
|
373 |
-
#: app/features/events.php:
|
374 |
#: app/features/locations.php:74 app/features/organizers.php:74
|
375 |
#: app/features/speakers.php:77
|
376 |
#, php-format
|
377 |
msgid "New %s Name"
|
378 |
msgstr "Nou %s Nom"
|
379 |
|
380 |
-
#: app/features/events.php:
|
381 |
#: app/features/locations.php:75 app/features/organizers.php:75
|
382 |
#: app/features/speakers.php:78
|
383 |
#, php-format
|
384 |
msgid "Popular %s"
|
385 |
msgstr "Popular %s"
|
386 |
|
387 |
-
#: app/features/events.php:
|
388 |
#: app/features/locations.php:76 app/features/organizers.php:76
|
389 |
#: app/features/speakers.php:79
|
390 |
#, php-format
|
391 |
msgid "Search %s"
|
392 |
msgstr "Cercar %s"
|
393 |
|
394 |
-
#: app/features/events.php:
|
395 |
msgid "Category Icon"
|
396 |
msgstr "Icona de categoria"
|
397 |
|
398 |
-
#: app/features/events.php:
|
399 |
msgid "Select icon"
|
400 |
msgstr "Seleccionar icona"
|
401 |
|
402 |
-
#: app/features/events.php:
|
403 |
msgid "Event Details"
|
404 |
msgstr "Detall d'esdeveniment"
|
405 |
|
406 |
-
#: app/features/events.php:
|
407 |
msgid "FES Details"
|
408 |
msgstr "Detall d'esdeveniment"
|
409 |
|
410 |
-
#: app/features/events.php:
|
411 |
msgid "Date And Time"
|
412 |
msgstr "Data i Hora"
|
413 |
|
414 |
-
#: app/features/events.php:
|
415 |
msgid "Event Repeating"
|
416 |
msgstr "Repetir l'esdeveniment"
|
417 |
|
418 |
-
#: app/features/events.php:
|
419 |
-
#: app/features/mec/settings.php:706 app/skins/single.php:
|
420 |
msgid "Hourly Schedule"
|
421 |
msgstr "Programació horària"
|
422 |
|
423 |
-
#: app/features/events.php:
|
424 |
msgid "Location/Venue"
|
425 |
msgstr "Localització"
|
426 |
|
427 |
-
#: app/features/events.php:
|
428 |
msgid "Links"
|
429 |
msgstr "Enllaç"
|
430 |
|
431 |
-
#: app/features/events.php:
|
432 |
-
#: app/features/events.php:
|
433 |
#: app/features/ix.php:3373 app/features/ix.php:3414
|
434 |
#: app/features/mec/meta_boxes/display_options.php:873
|
435 |
#: app/features/mec/meta_boxes/search_form.php:45
|
@@ -447,62 +447,62 @@ msgstr "Enllaç"
|
|
447 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
448 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
449 |
#: app/features/organizers.php:271 app/features/search.php:75
|
450 |
-
#: app/libraries/main.php:
|
451 |
-
#: app/skins/single.php:
|
452 |
#: app/skins/single/default.php:422 app/skins/single/m1.php:94
|
453 |
#: app/skins/single/m2.php:26 app/skins/single/modern.php:35
|
454 |
msgid "Organizer"
|
455 |
msgstr "Organitzador"
|
456 |
|
457 |
-
#: app/features/events.php:
|
458 |
-
#: app/features/fes/form.php:719 app/libraries/main.php:
|
459 |
-
#: app/skins/single.php:
|
460 |
#: app/skins/single/default.php:331 app/skins/single/m1.php:53
|
461 |
#: app/skins/single/modern.php:203
|
462 |
msgid "Cost"
|
463 |
msgstr "Cost"
|
464 |
|
465 |
-
#: app/features/events.php:
|
466 |
msgid "Note for reviewer"
|
467 |
msgstr "Nota per a l'encarregat"
|
468 |
|
469 |
-
#: app/features/events.php:
|
470 |
msgid "Guest Data"
|
471 |
msgstr "Dades de l'invitat"
|
472 |
|
473 |
-
#: app/features/events.php:
|
474 |
-
#: app/features/events.php:
|
475 |
#: app/features/fes.php:223 app/features/fes/form.php:678
|
476 |
#: app/features/labels.php:178 app/features/mec/booking.php:45
|
477 |
#: app/features/organizers.php:279 app/features/profile/profile.php:180
|
478 |
-
#: app/libraries/notifications.php:
|
479 |
msgid "Name"
|
480 |
msgstr "Nom"
|
481 |
|
482 |
-
#: app/features/events.php:
|
483 |
-
#: app/features/events.php:
|
484 |
-
#: app/features/events.php:
|
485 |
#: app/features/fes/form.php:674 app/features/mec/booking.php:57
|
486 |
#: app/features/mec/booking.php:490 app/features/organizers.php:111
|
487 |
#: app/features/organizers.php:152 app/features/profile/profile.php:183
|
488 |
#: app/features/speakers.php:126 app/features/speakers.php:187
|
489 |
-
#: app/libraries/main.php:
|
490 |
-
#: app/libraries/main.php:
|
491 |
#: app/modules/booking/steps/form.php:46 app/modules/booking/steps/form.php:83
|
492 |
-
#: app/skins/single.php:
|
493 |
#: app/skins/single/default.php:227 app/skins/single/default.php:439
|
494 |
#: app/skins/single/m1.php:111 app/skins/single/m2.php:43
|
495 |
#: app/skins/single/modern.php:52
|
496 |
msgid "Email"
|
497 |
msgstr "Correu electrònic"
|
498 |
|
499 |
-
#: app/features/events.php:
|
500 |
msgid "Date and Time"
|
501 |
msgstr "Date And Time"
|
502 |
|
503 |
-
#: app/features/events.php:
|
504 |
-
#: app/features/events.php:
|
505 |
-
#: app/features/events.php:
|
506 |
#: app/features/fes/form.php:250 app/features/ix.php:3373
|
507 |
#: app/features/ix.php:3414 app/features/ix/import_g_calendar.php:38
|
508 |
#: app/features/mec/dashboard.php:399
|
@@ -524,47 +524,47 @@ msgstr "Date And Time"
|
|
524 |
msgid "Start Date"
|
525 |
msgstr "Data d'inici"
|
526 |
|
527 |
-
#: app/features/events.php:
|
528 |
-
#: app/features/events.php:
|
529 |
-
#: app/features/events.php:
|
530 |
#: app/features/fes/form.php:278 app/features/fes/form.php:318
|
531 |
msgid "AM"
|
532 |
msgstr "AM"
|
533 |
|
534 |
-
#: app/features/events.php:
|
535 |
-
#: app/features/events.php:
|
536 |
-
#: app/features/events.php:
|
537 |
#: app/features/fes/form.php:279 app/features/fes/form.php:319
|
538 |
msgid "PM"
|
539 |
msgstr "PM"
|
540 |
|
541 |
-
#: app/features/events.php:
|
542 |
-
#: app/features/events.php:
|
543 |
-
#: app/features/events.php:
|
544 |
#: app/features/fes/form.php:290 app/features/ix.php:3373
|
545 |
#: app/features/ix.php:3414 app/features/ix/import_g_calendar.php:44
|
546 |
#: app/features/mec/dashboard.php:400
|
547 |
msgid "End Date"
|
548 |
msgstr "Data final"
|
549 |
|
550 |
-
#: app/features/events.php:
|
551 |
msgid "All Day Event"
|
552 |
msgstr "Esdeveniment de tot el dia"
|
553 |
|
554 |
-
#: app/features/events.php:
|
555 |
msgid "Hide Event Time"
|
556 |
msgstr "Ocultar l'hora de l'esdeveniment"
|
557 |
|
558 |
-
#: app/features/events.php:
|
559 |
msgid "Hide Event End Time"
|
560 |
msgstr "Oculta l'hora de finalització de l'esdeveniment"
|
561 |
|
562 |
-
#: app/features/events.php:
|
563 |
#: app/features/fes/form.php:335
|
564 |
msgid "Time Comment"
|
565 |
msgstr "Temps per comentar"
|
566 |
|
567 |
-
#: app/features/events.php:
|
568 |
msgid ""
|
569 |
"It shows next to event time on single event page. You can insert Timezone "
|
570 |
"etc. in this field."
|
@@ -572,14 +572,14 @@ msgstr ""
|
|
572 |
"Mostra l'hora de el següent Esdeveniment al calendari. Pots inserir Zona "
|
573 |
"horària, etc a aquest camp."
|
574 |
|
575 |
-
#: app/features/events.php:
|
576 |
-
#: app/features/events.php:
|
577 |
-
#: app/features/events.php:
|
578 |
-
#: app/features/events.php:
|
579 |
-
#: app/features/events.php:
|
580 |
-
#: app/features/events.php:
|
581 |
-
#: app/features/events.php:
|
582 |
-
#: app/features/events.php:
|
583 |
#: app/features/fes/form.php:640 app/features/locations.php:299
|
584 |
#: app/features/mec/booking.php:108 app/features/mec/booking.php:158
|
585 |
#: app/features/mec/booking.php:171 app/features/mec/booking.php:187
|
@@ -621,7 +621,7 @@ msgstr ""
|
|
621 |
#: app/features/mec/meta_boxes/display_options.php:1324
|
622 |
#: app/features/mec/modules.php:53 app/features/mec/modules.php:86
|
623 |
#: app/features/mec/modules.php:103 app/features/mec/modules.php:138
|
624 |
-
#: app/features/mec/modules.php:154 app/features/mec/modules.php:
|
625 |
#: app/features/mec/notifications.php:53 app/features/mec/notifications.php:114
|
626 |
#: app/features/mec/notifications.php:170
|
627 |
#: app/features/mec/notifications.php:238
|
@@ -644,111 +644,111 @@ msgstr ""
|
|
644 |
#: app/features/mec/single.php:110 app/features/mec/single.php:124
|
645 |
#: app/features/mec/single.php:162 app/features/mec/styling.php:203
|
646 |
#: app/features/mec/styling.php:220 app/features/mec/styling.php:233
|
647 |
-
#: app/features/organizers.php:272 app/skins/single.php:
|
648 |
#: app/skins/single/default.php:134 app/skins/single/default.php:346
|
649 |
#: app/skins/single/m1.php:196 app/skins/single/m2.php:129
|
650 |
#: app/skins/single/modern.php:137
|
651 |
msgid "Read More"
|
652 |
msgstr "Llegir més"
|
653 |
|
654 |
-
#: app/features/events.php:
|
655 |
msgid "Repeating"
|
656 |
msgstr "Repetint"
|
657 |
|
658 |
-
#: app/features/events.php:
|
659 |
msgid "Event Repeating (Recurring events)"
|
660 |
msgstr "Repetir l'esdeveniment"
|
661 |
|
662 |
-
#: app/features/events.php:
|
663 |
msgid "Repeats"
|
664 |
msgstr "Repeticions"
|
665 |
|
666 |
-
#: app/features/events.php:
|
667 |
#: app/features/mec/dashboard.php:402
|
668 |
#: app/skins/default_full_calendar/tpl.php:69
|
669 |
#: app/skins/full_calendar/tpl.php:110
|
670 |
msgid "Daily"
|
671 |
msgstr "Diàriament"
|
672 |
|
673 |
-
#: app/features/events.php:
|
674 |
msgid "Every Weekday"
|
675 |
msgstr "Cada dia de la setmana"
|
676 |
|
677 |
-
#: app/features/events.php:
|
678 |
msgid "Every Weekend"
|
679 |
msgstr "Cada cap de setmana"
|
680 |
|
681 |
-
#: app/features/events.php:
|
682 |
msgid "Certain Weekdays"
|
683 |
msgstr "Certs dies de la setmana"
|
684 |
|
685 |
-
#: app/features/events.php:
|
686 |
#: app/skins/default_full_calendar/tpl.php:68
|
687 |
#: app/skins/full_calendar/tpl.php:109
|
688 |
msgid "Weekly"
|
689 |
msgstr "Setmanal"
|
690 |
|
691 |
-
#: app/features/events.php:
|
692 |
#: app/features/mec/dashboard.php:403
|
693 |
#: app/skins/default_full_calendar/tpl.php:67
|
694 |
#: app/skins/full_calendar/tpl.php:108
|
695 |
msgid "Monthly"
|
696 |
msgstr "Mensual"
|
697 |
|
698 |
-
#: app/features/events.php:
|
699 |
#: app/features/mec/dashboard.php:404
|
700 |
#: app/skins/default_full_calendar/tpl.php:66
|
701 |
#: app/skins/full_calendar/tpl.php:107
|
702 |
msgid "Yearly"
|
703 |
msgstr "Anual"
|
704 |
|
705 |
-
#: app/features/events.php:
|
706 |
msgid "Custom Days"
|
707 |
msgstr "Dies personalitzats"
|
708 |
|
709 |
-
#: app/features/events.php:
|
710 |
msgid "Advanced"
|
711 |
msgstr "Mètode avançat"
|
712 |
|
713 |
-
#: app/features/events.php:
|
714 |
msgid "Repeat Interval"
|
715 |
msgstr "Interval de repetició"
|
716 |
|
717 |
-
#: app/features/events.php:
|
718 |
msgid "Repeat interval"
|
719 |
msgstr "Interval de repetició"
|
720 |
|
721 |
-
#: app/features/events.php:
|
722 |
msgid "Week Days"
|
723 |
msgstr "Dies de setmana"
|
724 |
|
725 |
-
#: app/features/events.php:
|
726 |
-
#: app/features/events.php:
|
727 |
#: app/features/fes/form.php:376 app/features/ix/import_f_calendar.php:42
|
728 |
#: app/features/ix/import_g_calendar.php:51
|
729 |
#: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
|
730 |
msgid "Start"
|
731 |
msgstr "Inici"
|
732 |
|
733 |
-
#: app/features/events.php:
|
734 |
-
#: app/features/events.php:
|
735 |
#: app/features/fes/form.php:377
|
736 |
msgid "End"
|
737 |
msgstr "Fi"
|
738 |
|
739 |
-
#: app/features/events.php:
|
740 |
-
#: app/features/events.php:
|
741 |
-
#: app/features/events.php:
|
742 |
-
#: app/features/events.php:
|
743 |
#: app/features/fes/form.php:378 app/features/fes/form.php:844
|
744 |
msgid "Add"
|
745 |
msgstr "Afegir"
|
746 |
|
747 |
-
#: app/features/events.php:
|
748 |
msgid "Custom Days Repeating"
|
749 |
msgstr "Dies personalitzats"
|
750 |
|
751 |
-
#: app/features/events.php:
|
752 |
msgid ""
|
753 |
"Add certain days to event occurrence dates. If you have single day event, "
|
754 |
"start and end date should be the same, If you have multiple day event the "
|
@@ -759,48 +759,48 @@ msgstr ""
|
|
759 |
"Si teniu un esdeveniment de diversos dies, les dates d'inici i final han de "
|
760 |
"ser proporcionals a la data inicial."
|
761 |
|
762 |
-
#: app/features/events.php:
|
763 |
msgid "First"
|
764 |
msgstr "Primer"
|
765 |
|
766 |
-
#: app/features/events.php:
|
767 |
msgid "Second"
|
768 |
msgstr "Segon"
|
769 |
|
770 |
-
#: app/features/events.php:
|
771 |
msgid "Third"
|
772 |
msgstr "Tercer"
|
773 |
|
774 |
-
#: app/features/events.php:
|
775 |
msgid "Fourth"
|
776 |
msgstr "Quart"
|
777 |
|
778 |
-
#: app/features/events.php:
|
779 |
msgid "Last"
|
780 |
msgstr "Últim"
|
781 |
|
782 |
-
#: app/features/events.php:
|
783 |
msgid "Ends Repeat"
|
784 |
msgstr "Finalitza la repetició"
|
785 |
|
786 |
-
#: app/features/events.php:
|
787 |
msgid "Never"
|
788 |
msgstr "Mai"
|
789 |
|
790 |
-
#: app/features/events.php:
|
791 |
msgid "On"
|
792 |
msgstr "En"
|
793 |
|
794 |
-
#: app/features/events.php:
|
795 |
msgid "After"
|
796 |
msgstr "Després"
|
797 |
|
798 |
-
#: app/features/events.php:
|
799 |
#: app/features/fes/form.php:636 app/features/fes/form.php:639
|
800 |
msgid "Occurrences times"
|
801 |
msgstr "Ocurrències de l'esdeveniment"
|
802 |
|
803 |
-
#: app/features/events.php:
|
804 |
msgid ""
|
805 |
"The event will finish after certain repeats. For example if you set it to "
|
806 |
"10, the event will finish after 10 repeats."
|
@@ -808,33 +808,33 @@ msgstr ""
|
|
808 |
"L'esdeveniment finalitzarà després de certes repeticions. Per exemple, si "
|
809 |
"estableixes en 10, el Esdeveniment acabarà després de 10 repeticions."
|
810 |
|
811 |
-
#: app/features/events.php:
|
812 |
-
#: app/features/events.php:
|
813 |
#: app/features/ix.php:3373 app/features/ix.php:3414
|
814 |
-
#: app/features/mec/settings.php:652 app/libraries/main.php:
|
815 |
#: app/widgets/single.php:103
|
816 |
msgid "Event Cost"
|
817 |
msgstr "Cost de l'esdeveniment"
|
818 |
|
819 |
-
#: app/features/events.php:
|
820 |
msgid "Exceptional Days (Exclude Dates)"
|
821 |
msgstr "Dies excepcionals"
|
822 |
|
823 |
-
#: app/features/events.php:
|
824 |
msgid "Exclude certain days"
|
825 |
msgstr "Excloure certs dies"
|
826 |
|
827 |
-
#: app/features/events.php:
|
828 |
#: app/features/fes.php:223 app/features/mec/booking.php:491
|
829 |
-
#: app/features/profile/profile.php:53 app/libraries/main.php:
|
830 |
-
#: app/libraries/main.php:
|
831 |
-
#: app/modules/next-event/details.php:90 app/skins/single.php:
|
832 |
#: app/skins/single/default.php:83 app/skins/single/default.php:295
|
833 |
#: app/skins/single/m1.php:20 app/skins/single/modern.php:170
|
834 |
msgid "Date"
|
835 |
msgstr "Data"
|
836 |
|
837 |
-
#: app/features/events.php:
|
838 |
msgid ""
|
839 |
"Exclude certain days from event occurrence dates. Please note that you can "
|
840 |
"exclude only single day occurrences and you cannot exclude one day from "
|
@@ -844,15 +844,15 @@ msgstr ""
|
|
844 |
"Tingueu en compte que només podeu excloure les ocurrències d’un sol dia i no "
|
845 |
"podeu excloure un dia de les coincidències de diversos dies."
|
846 |
|
847 |
-
#: app/features/events.php:
|
848 |
msgid "Day 1"
|
849 |
msgstr "Dia 1"
|
850 |
|
851 |
-
#: app/features/events.php:
|
852 |
msgid "Add Day"
|
853 |
msgstr "Afegeix dia"
|
854 |
|
855 |
-
#: app/features/events.php:
|
856 |
msgid ""
|
857 |
"Add new days for schedule. For example if your event is multiple days, you "
|
858 |
"can add a different schedule for each day!"
|
@@ -860,89 +860,89 @@ msgstr ""
|
|
860 |
"Afegiu nous dies per al programa. Per exemple, si el vostre esdeveniment és "
|
861 |
"de diversos dies, podeu afegir una programació diferent per a cada dia!"
|
862 |
|
863 |
-
#: app/features/events.php:
|
864 |
#, php-format
|
865 |
msgid "Day %s"
|
866 |
msgstr "Dia %s"
|
867 |
|
868 |
-
#: app/features/events.php:
|
869 |
-
#: app/features/events.php:
|
870 |
-
#: app/features/events.php:
|
871 |
-
#: app/features/events.php:
|
872 |
-
#: app/features/events.php:
|
873 |
#: app/features/fes/form.php:235 app/features/ix.php:3373
|
874 |
#: app/features/ix.php:3414 app/features/mec/booking.php:375
|
875 |
#: app/features/mec/booking.php:407 app/features/mec/styling.php:115
|
876 |
msgid "Title"
|
877 |
msgstr "Títol"
|
878 |
|
879 |
-
#: app/features/events.php:
|
880 |
-
#: app/features/events.php:
|
881 |
-
#: app/features/events.php:
|
882 |
-
#: app/features/events.php:
|
883 |
-
#: app/features/events.php:
|
884 |
-
#: app/features/events.php:
|
885 |
#: app/features/mec/booking.php:318 app/features/mec/booking.php:347
|
886 |
#: app/features/mec/booking.php:398 app/features/mec/booking.php:430
|
887 |
-
#: app/libraries/main.php:
|
888 |
-
#: app/libraries/main.php:
|
889 |
-
#: app/libraries/main.php:
|
890 |
-
#: app/libraries/main.php:
|
891 |
-
#: app/libraries/main.php:
|
892 |
-
#: app/libraries/main.php:
|
893 |
-
#: app/libraries/main.php:
|
894 |
msgid "Remove"
|
895 |
msgstr "Eliminar"
|
896 |
|
897 |
-
#: app/features/events.php:
|
898 |
msgid "Add new hourly schedule row"
|
899 |
msgstr "Afegir nova línia programa horari"
|
900 |
|
901 |
-
#: app/features/events.php:
|
902 |
-
#: app/features/events.php:
|
903 |
msgid "From e.g. 8:15"
|
904 |
msgstr "Des de ex. 8:15"
|
905 |
|
906 |
-
#: app/features/events.php:
|
907 |
-
#: app/features/events.php:
|
908 |
msgid "To e.g. 8:45"
|
909 |
msgstr "Fins a ex. 8:45"
|
910 |
|
911 |
-
#: app/features/events.php:
|
912 |
-
#: app/features/events.php:
|
913 |
-
#: app/features/events.php:
|
914 |
msgid "Description"
|
915 |
msgstr "Descripció"
|
916 |
|
917 |
-
#: app/features/events.php:
|
918 |
-
#: app/features/events.php:
|
919 |
-
#: app/features/mec.php:
|
920 |
#: app/features/mec/settings.php:700 app/features/speakers.php:62
|
921 |
-
#: app/libraries/main.php:562 app/libraries/main.php:
|
922 |
#: app/modules/speakers/details.php:18
|
923 |
msgid "Speakers"
|
924 |
msgstr "Ponents"
|
925 |
|
926 |
-
#: app/features/events.php:
|
927 |
msgid "New Day"
|
928 |
msgstr "Nou dia"
|
929 |
|
930 |
-
#: app/features/events.php:
|
931 |
#: app/features/mec/settings.php:646
|
932 |
msgid "Event Links"
|
933 |
msgstr "Enlklaços d'esdeveniments"
|
934 |
|
935 |
-
#: app/features/events.php:
|
936 |
-
#: app/features/fes/form.php:695 app/libraries/main.php:
|
937 |
msgid "Event Link"
|
938 |
msgstr "Enllaç de l'esdeveniment"
|
939 |
|
940 |
-
#: app/features/events.php:
|
941 |
#: app/features/fes/form.php:696 app/features/fes/form.php:701
|
942 |
msgid "eg. http://yoursite.com/your-event"
|
943 |
msgstr "eg. http://yoursite.com/your-event"
|
944 |
|
945 |
-
#: app/features/events.php:
|
946 |
msgid ""
|
947 |
"If you fill it, it will be replaced instead of default event page link. "
|
948 |
"Insert full link including http(s):// - Also, if you use advertising URL, "
|
@@ -952,32 +952,32 @@ msgstr ""
|
|
952 |
"l'esdeveniment per defecte. Insereix tot l'enllaç incloent http (s): //- A "
|
953 |
"més, si utilitzeu URL de publicitat, podeu utilitzar URL escurçat"
|
954 |
|
955 |
-
#: app/features/events.php:
|
956 |
msgid "URL Shortener"
|
957 |
msgstr "URL curta"
|
958 |
|
959 |
-
#: app/features/events.php:
|
960 |
-
#: app/features/fes/form.php:700 app/libraries/main.php:
|
961 |
-
#: app/skins/single.php:
|
962 |
#: app/skins/single/default.php:345 app/skins/single/m1.php:195
|
963 |
#: app/skins/single/m2.php:128 app/skins/single/modern.php:136
|
964 |
#: app/widgets/single.php:107
|
965 |
msgid "More Info"
|
966 |
msgstr "Més Informació"
|
967 |
|
968 |
-
#: app/features/events.php:
|
969 |
msgid "More Information"
|
970 |
msgstr "Més Informació"
|
971 |
|
972 |
-
#: app/features/events.php:
|
973 |
msgid "Current Window"
|
974 |
msgstr "Finestra actual"
|
975 |
|
976 |
-
#: app/features/events.php:
|
977 |
msgid "New Window"
|
978 |
msgstr "Nova finestra"
|
979 |
|
980 |
-
#: app/features/events.php:
|
981 |
msgid ""
|
982 |
"If you fill it, it will be shown in event details page as an optional link. "
|
983 |
"Insert full link including http(s)://"
|
@@ -985,18 +985,18 @@ msgstr ""
|
|
985 |
"Si ho omples, es mostrarà a la pàgina de detalls de l'Esdeveniment com a "
|
986 |
"enllaç opcional. Insereix tot l'enllaç incloent http (s): //"
|
987 |
|
988 |
-
#: app/features/events.php:
|
989 |
msgid "Total booking limits"
|
990 |
msgstr "Límit total de reserves"
|
991 |
|
992 |
-
#: app/features/events.php:
|
993 |
-
#: app/features/events.php:
|
994 |
-
#: app/modules/booking/steps/tickets.php:
|
995 |
#: app/skins/available_spot/tpl.php:160
|
996 |
msgid "Unlimited"
|
997 |
msgstr "Il·limitat"
|
998 |
|
999 |
-
#: app/features/events.php:
|
1000 |
msgid ""
|
1001 |
"If you want to set a limit to all tickets, uncheck this checkbox and put a "
|
1002 |
"limitation number."
|
@@ -1004,33 +1004,33 @@ msgstr ""
|
|
1004 |
"Si voleu establir un límit a totes les entrades, desmarqueu aquesta casella "
|
1005 |
"de verificació i poseu un número de limitació."
|
1006 |
|
1007 |
-
#: app/features/events.php:
|
1008 |
msgid "Read About A Booking System"
|
1009 |
msgstr "Llegiu sobre un sistema de reserves"
|
1010 |
|
1011 |
-
#: app/features/events.php:
|
1012 |
msgid "100"
|
1013 |
msgstr "100"
|
1014 |
|
1015 |
-
#: app/features/events.php:
|
1016 |
msgid "Total user booking limits"
|
1017 |
msgstr "Límit total de reserves"
|
1018 |
|
1019 |
-
#: app/features/events.php:
|
1020 |
-
#: app/features/events.php:
|
1021 |
msgid "Inherit from global options"
|
1022 |
msgstr "Heretat de d'opciones globals"
|
1023 |
|
1024 |
-
#: app/features/events.php:
|
1025 |
msgid "12"
|
1026 |
msgstr "12"
|
1027 |
|
1028 |
-
#: app/features/events.php:
|
1029 |
-
#: app/libraries/main.php:
|
1030 |
msgid "Tickets"
|
1031 |
msgstr "Tickets"
|
1032 |
|
1033 |
-
#: app/features/events.php:
|
1034 |
msgid ""
|
1035 |
"You're translating an event so MEC will use the original event for tickets "
|
1036 |
"and booking. You can only translate the ticket name and description. Please "
|
@@ -1041,63 +1041,98 @@ msgstr ""
|
|
1041 |
"l'entrada. Si us plau defineix les entrades exactes que podries definir en "
|
1042 |
"un esdeveniment original aquí."
|
1043 |
|
1044 |
-
#: app/features/events.php:
|
1045 |
#, fuzzy
|
1046 |
#| msgid "Ticket"
|
1047 |
msgid "Add Ticket"
|
1048 |
msgstr "Ticket"
|
1049 |
|
1050 |
-
#: app/features/events.php:
|
1051 |
msgid "Ticket Name"
|
1052 |
msgstr "Nom del ticket"
|
1053 |
|
1054 |
-
#: app/features/events.php:
|
1055 |
-
#: app/features/events.php:
|
1056 |
#: app/features/ix.php:3373 app/features/ix.php:3414
|
1057 |
msgid "Start Time"
|
1058 |
msgstr "Hora d'Inici"
|
1059 |
|
1060 |
-
#: app/features/events.php:
|
1061 |
-
#: app/features/events.php:
|
1062 |
#: app/features/ix.php:3373 app/features/ix.php:3414
|
1063 |
msgid "End Time"
|
1064 |
msgstr "Hora de finalització"
|
1065 |
|
1066 |
-
#: app/features/events.php:
|
1067 |
-
#: app/features/events.php:
|
1068 |
-
#: app/features/events.php:
|
1069 |
-
#: app/features/events.php:
|
1070 |
-
#: app/features/events.php:
|
1071 |
-
#: app/features/events.php:
|
1072 |
#: app/features/mec/booking.php:382 app/features/mec/booking.php:411
|
1073 |
#: app/features/mec/booking.php:414
|
1074 |
msgid "Price"
|
1075 |
msgstr "Preu"
|
1076 |
|
1077 |
-
#: app/features/events.php:
|
1078 |
msgid "Insert 0 for free ticket. Only numbers please."
|
1079 |
msgstr ""
|
1080 |
"Introdueix un 0 per a una entrada gratuïta. Utilitza únicament nombres."
|
1081 |
|
1082 |
-
#: app/features/events.php:
|
1083 |
-
#: app/features/events.php:
|
1084 |
msgid "Price Label"
|
1085 |
msgstr "Etiqueta del preu"
|
1086 |
|
1087 |
-
#: app/features/events.php:
|
1088 |
msgid "For showing on website. e.g. $15"
|
1089 |
msgstr "Per mostrar a la web. Ex. 15€"
|
1090 |
|
1091 |
-
#: app/features/events.php:
|
1092 |
msgid "Available Tickets"
|
1093 |
msgstr "Tickets disponibles"
|
1094 |
|
1095 |
-
#: app/features/events.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1096 |
msgid "Price per Date"
|
1097 |
msgstr "Preu per Dia"
|
1098 |
|
1099 |
-
#: app/features/events.php:
|
1100 |
-
#: app/features/events.php:
|
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
|
@@ -1115,23 +1150,23 @@ msgstr "Preu per Dia"
|
|
1115 |
msgid "Label"
|
1116 |
msgstr "Etiqueta"
|
1117 |
|
1118 |
-
#: app/features/events.php:
|
1119 |
msgid "Fees"
|
1120 |
msgstr "Taxes"
|
1121 |
|
1122 |
-
#: app/features/events.php:
|
1123 |
#: app/features/mec/booking.php:298 app/features/mec/booking.php:327
|
1124 |
msgid "Fee Title"
|
1125 |
msgstr "Títol de la quota"
|
1126 |
|
1127 |
-
#: app/features/events.php:
|
1128 |
-
#: app/features/events.php:
|
1129 |
#: app/features/mec/booking.php:302 app/features/mec/booking.php:305
|
1130 |
#: app/features/mec/booking.php:331 app/features/mec/booking.php:334
|
1131 |
msgid "Amount"
|
1132 |
msgstr "Quantitat"
|
1133 |
|
1134 |
-
#: app/features/events.php:
|
1135 |
#: app/features/mec/booking.php:306 app/features/mec/booking.php:335
|
1136 |
msgid ""
|
1137 |
"Fee amount, considered as fixed amount if you set the type to amount "
|
@@ -1140,85 +1175,85 @@ msgstr ""
|
|
1140 |
"Quantitat de quota, considerada com quantitat fixa si estableixes el tipus "
|
1141 |
"de quantitat, si no serà considerada com a percentatge"
|
1142 |
|
1143 |
-
#: app/features/events.php:
|
1144 |
#: app/features/mec/booking.php:313 app/features/mec/booking.php:342
|
1145 |
msgid "Percent"
|
1146 |
msgstr "Percentatge"
|
1147 |
|
1148 |
-
#: app/features/events.php:
|
1149 |
#: app/features/mec/booking.php:314 app/features/mec/booking.php:343
|
1150 |
msgid "Amount (Per Ticket)"
|
1151 |
msgstr "Quantidad (Per ticket)"
|
1152 |
|
1153 |
-
#: app/features/events.php:
|
1154 |
#: app/features/mec/booking.php:315 app/features/mec/booking.php:344
|
1155 |
msgid "Amount (Per Booking)"
|
1156 |
msgstr "Quantitat (per reserves)"
|
1157 |
|
1158 |
-
#: app/features/events.php:
|
1159 |
msgid "Ticket Variations / Options"
|
1160 |
msgstr "Variacions i opcions de tickets"
|
1161 |
|
1162 |
-
#: app/features/events.php:
|
1163 |
#: app/features/mec/booking.php:383 app/features/mec/booking.php:415
|
1164 |
msgid "Option Price"
|
1165 |
msgstr "Opció de Preu"
|
1166 |
|
1167 |
-
#: app/features/events.php:
|
1168 |
-
#: app/features/events.php:
|
1169 |
#: app/features/mec/booking.php:389 app/features/mec/booking.php:392
|
1170 |
#: app/features/mec/booking.php:421 app/features/mec/booking.php:424
|
1171 |
msgid "Maximum Per Ticket"
|
1172 |
msgstr "Màxim per ticket"
|
1173 |
|
1174 |
-
#: app/features/events.php:
|
1175 |
#: app/features/mec/booking.php:393 app/features/mec/booking.php:425
|
1176 |
msgid "Maximum Per Ticket. Leave it blank for unlimited."
|
1177 |
msgstr "Màxim per ticket. Deixa en blanc per a il·limitat."
|
1178 |
|
1179 |
-
#: app/features/events.php:
|
1180 |
-
#: app/libraries/main.php:
|
1181 |
msgid "MEC Name"
|
1182 |
msgstr "Nom"
|
1183 |
|
1184 |
-
#: app/features/events.php:
|
1185 |
-
#: app/libraries/main.php:
|
1186 |
msgid "MEC Email"
|
1187 |
msgstr "Correu electrònic"
|
1188 |
|
1189 |
-
#: app/features/events.php:
|
1190 |
-
#: app/libraries/main.php:
|
1191 |
msgid "Text"
|
1192 |
msgstr "Text"
|
1193 |
|
1194 |
-
#: app/features/events.php:
|
1195 |
#: app/features/organizers.php:103 app/features/organizers.php:148
|
1196 |
#: app/features/speakers.php:118 app/features/speakers.php:183
|
1197 |
-
#: app/features/speakers.php:256 app/libraries/main.php:
|
1198 |
msgid "Tel"
|
1199 |
msgstr "Tel"
|
1200 |
|
1201 |
-
#: app/features/events.php:
|
1202 |
-
#: app/libraries/main.php:
|
1203 |
msgid "File"
|
1204 |
msgstr "Arxiu"
|
1205 |
|
1206 |
-
#: app/features/events.php:
|
1207 |
-
#: app/libraries/main.php:
|
1208 |
msgid "Textarea"
|
1209 |
msgstr "Àrea de text"
|
1210 |
|
1211 |
-
#: app/features/events.php:
|
1212 |
-
#: app/libraries/main.php:
|
1213 |
msgid "Checkboxes"
|
1214 |
msgstr "Caselles de selecció"
|
1215 |
|
1216 |
-
#: app/features/events.php:
|
1217 |
-
#: app/libraries/main.php:
|
1218 |
msgid "Radio Buttons"
|
1219 |
msgstr "Botons tipus radi"
|
1220 |
|
1221 |
-
#: app/features/events.php:
|
1222 |
#: app/features/mec/meta_boxes/search_form.php:34
|
1223 |
#: app/features/mec/meta_boxes/search_form.php:41
|
1224 |
#: app/features/mec/meta_boxes/search_form.php:48
|
@@ -1294,44 +1329,44 @@ msgstr "Botons tipus radi"
|
|
1294 |
#: app/features/mec/meta_boxes/search_form.php:696
|
1295 |
#: app/features/mec/meta_boxes/search_form.php:703
|
1296 |
#: app/features/mec/meta_boxes/search_form.php:710
|
1297 |
-
#: app/features/mec/meta_boxes/search_form.php:717 app/libraries/main.php:
|
1298 |
msgid "Dropdown"
|
1299 |
msgstr "Desplegable"
|
1300 |
|
1301 |
-
#: app/features/events.php:
|
1302 |
-
#: app/libraries/main.php:
|
1303 |
msgid "Agreement"
|
1304 |
msgstr "Acord"
|
1305 |
|
1306 |
-
#: app/features/events.php:
|
1307 |
-
#: app/libraries/main.php:
|
1308 |
msgid "Paragraph"
|
1309 |
msgstr "Paràgraf"
|
1310 |
|
1311 |
-
#: app/features/events.php:
|
1312 |
-
#: app/features/events.php:
|
1313 |
#, php-format
|
1314 |
msgid "Show all %s"
|
1315 |
msgstr "Mostrar tots %s"
|
1316 |
|
1317 |
-
#: app/features/events.php:
|
1318 |
msgid "labels"
|
1319 |
msgstr "etiquetes"
|
1320 |
|
1321 |
-
#: app/features/events.php:
|
1322 |
msgid "locations"
|
1323 |
msgstr "ubicacions"
|
1324 |
|
1325 |
-
#: app/features/events.php:
|
1326 |
msgid "organizers"
|
1327 |
msgstr "organitzadors"
|
1328 |
|
1329 |
-
#: app/features/events.php:
|
1330 |
msgid "Attendees List"
|
1331 |
msgstr "Límit d'assistents"
|
1332 |
|
1333 |
-
#: app/features/events.php:
|
1334 |
-
#: app/features/events.php:
|
1335 |
#: app/features/ix.php:3414 app/features/locations.php:58
|
1336 |
#: app/features/locations.php:230 app/features/locations.php:287
|
1337 |
#: app/features/locations.php:289 app/features/locations.php:298
|
@@ -1348,100 +1383,173 @@ msgstr "Límit d'assistents"
|
|
1348 |
#: app/features/mec/meta_boxes/search_form.php:582
|
1349 |
#: app/features/mec/meta_boxes/search_form.php:679
|
1350 |
#: app/features/mec/settings.php:802 app/features/mec/single.php:212
|
1351 |
-
#: app/features/search.php:71 app/libraries/main.php:
|
1352 |
-
#: app/libraries/main.php:
|
1353 |
-
#: app/skins/single.php:
|
1354 |
#: app/skins/single/default.php:169 app/skins/single/default.php:381
|
1355 |
#: app/skins/single/m1.php:159 app/skins/single/m2.php:91
|
1356 |
#: app/skins/single/modern.php:98
|
1357 |
msgid "Location"
|
1358 |
msgstr "Localització"
|
1359 |
|
1360 |
-
#: app/features/events.php:
|
1361 |
msgid "Repeat"
|
1362 |
msgstr "Repetir"
|
1363 |
|
1364 |
-
#: app/features/events.php:
|
1365 |
msgid "Author"
|
1366 |
msgstr "Autor"
|
1367 |
|
1368 |
-
#: app/features/events.php:
|
1369 |
msgid "iCal Export"
|
1370 |
msgstr "Exportar iCal"
|
1371 |
|
1372 |
-
#: app/features/events.php:
|
1373 |
msgid "CSV Export"
|
1374 |
msgstr "Exportar CSV"
|
1375 |
|
1376 |
-
#: app/features/events.php:
|
1377 |
msgid "MS Excel Export"
|
1378 |
msgstr "Exportar Excel"
|
1379 |
|
1380 |
-
#: app/features/events.php:
|
1381 |
msgid "XML Export"
|
1382 |
msgstr "Exportació XML"
|
1383 |
|
1384 |
-
#: app/features/events.php:
|
1385 |
msgid "JSON Export"
|
1386 |
msgstr "Exportació JSON"
|
1387 |
|
1388 |
-
#: app/features/events.php:
|
1389 |
-
#: app/features/events.php:
|
1390 |
msgid "Duplicate"
|
1391 |
msgstr "Duplicar"
|
1392 |
|
1393 |
-
#: app/features/events.php:
|
1394 |
#: app/features/fes.php:223 app/features/ix.php:3373 app/features/ix.php:3414
|
1395 |
#: app/features/labels.php:177 app/features/locations.php:229
|
1396 |
#: app/features/organizers.php:203 app/features/speakers.php:253
|
1397 |
msgid "ID"
|
1398 |
msgstr "ID"
|
1399 |
|
1400 |
-
#: app/features/events.php:
|
1401 |
#: app/features/ix.php:3373 app/features/ix.php:3414
|
1402 |
msgid "Link"
|
1403 |
msgstr "Enllaç"
|
1404 |
|
1405 |
-
#: app/features/events.php:
|
1406 |
#, php-format
|
1407 |
msgid "%s Tel"
|
1408 |
msgstr "%s Tel"
|
1409 |
|
1410 |
-
#: app/features/events.php:
|
1411 |
#, php-format
|
1412 |
msgid "%s Email"
|
1413 |
msgstr "%s Correu electrònic"
|
1414 |
|
1415 |
-
#: app/features/events.php:
|
1416 |
-
#: app/libraries/main.php:
|
1417 |
msgid "Attendees"
|
1418 |
msgstr "Assistents"
|
1419 |
|
1420 |
-
#: app/features/events.php:
|
1421 |
#, php-format
|
1422 |
msgid "%s to %s"
|
1423 |
msgstr "%s a %s"
|
1424 |
|
1425 |
-
#: app/features/events.php:
|
1426 |
#: app/features/fes.php:223 app/features/profile/profile.php:186
|
1427 |
-
#: app/libraries/main.php:
|
1428 |
msgid "Ticket"
|
1429 |
msgstr "Ticket"
|
1430 |
|
1431 |
-
#: app/features/events.php:
|
1432 |
#: app/features/profile/profile.php:189
|
1433 |
msgid "Variations"
|
1434 |
msgstr "Variacions"
|
1435 |
|
1436 |
-
#: app/features/events.php:
|
1437 |
#: app/features/fes.php:303
|
1438 |
msgid "Unknown"
|
1439 |
msgstr "Desconegut"
|
1440 |
|
1441 |
-
#: app/features/events.php:
|
1442 |
msgid "No Attendees Found!"
|
1443 |
msgstr "No s’han trobat assistents!"
|
1444 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1445 |
#: app/features/fes.php:87
|
1446 |
#, php-format
|
1447 |
msgid "Please %s/%s in order to submit new events."
|
@@ -1472,7 +1580,7 @@ msgstr "Si us plau %s/%s per gestionar esdeveniments."
|
|
1472 |
msgid "The event removed!"
|
1473 |
msgstr "L'esdeveniment ha estat eliminat!"
|
1474 |
|
1475 |
-
#: app/features/fes.php:223 app/libraries/main.php:
|
1476 |
msgid "Transaction ID"
|
1477 |
msgstr "ID Transacció"
|
1478 |
|
@@ -1492,23 +1600,23 @@ msgstr "Confirmació de reserva"
|
|
1492 |
msgid "Verification"
|
1493 |
msgstr "Verificació de la reserva"
|
1494 |
|
1495 |
-
#: app/features/fes.php:
|
1496 |
msgid "The image is uploaded!"
|
1497 |
msgstr "La imatge ha estat pujada!"
|
1498 |
|
1499 |
-
#: app/features/fes.php:
|
1500 |
msgid "Captcha is invalid! Please try again."
|
1501 |
msgstr "El Captcha no és vàlid! Torna-ho a intentar."
|
1502 |
|
1503 |
-
#: app/features/fes.php:
|
1504 |
msgid "Please fill event title field!"
|
1505 |
msgstr "Si us plau omple el camp de títol de l'esdeveniment!"
|
1506 |
|
1507 |
-
#: app/features/fes.php:
|
1508 |
msgid "The event submitted. It will publish as soon as possible."
|
1509 |
msgstr "Esdeveniment enviat. Es publicarà el més aviat possible."
|
1510 |
|
1511 |
-
#: app/features/fes.php:
|
1512 |
msgid "The event published."
|
1513 |
msgstr "L'esdeveniment a estat publicat."
|
1514 |
|
@@ -1595,15 +1703,15 @@ msgid "Remove Image"
|
|
1595 |
msgstr "Eliminar imatge"
|
1596 |
|
1597 |
#: app/features/fes/form.php:772 app/features/labels.php:61
|
1598 |
-
#: app/features/labels.php:221 app/features/mec.php:
|
1599 |
-
#: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:
|
1600 |
-
#: app/skins/single.php:
|
1601 |
#: app/skins/single/default.php:360 app/skins/single/m1.php:68
|
1602 |
#: app/skins/single/modern.php:218
|
1603 |
msgid "Labels"
|
1604 |
msgstr "Etiquetes"
|
1605 |
|
1606 |
-
#: app/features/fes/form.php:818 app/features/mec.php:
|
1607 |
#: app/features/mec/meta_boxes/filter.php:147
|
1608 |
msgid "Tags"
|
1609 |
msgstr "Tags"
|
@@ -1792,7 +1900,7 @@ msgstr "Exportar"
|
|
1792 |
|
1793 |
#: app/features/ix/export.php:16 app/features/ix/export_g_calendar.php:20
|
1794 |
#: app/features/ix/import.php:16 app/features/ix/import_f_calendar.php:16
|
1795 |
-
#: app/features/ix/import_f_calendar.php:
|
1796 |
#: app/features/ix/import_g_calendar.php:16
|
1797 |
#: app/features/ix/import_g_calendar.php:103
|
1798 |
#: app/features/ix/import_meetup.php:16 app/features/ix/import_meetup.php:85
|
@@ -1928,7 +2036,7 @@ msgid "Add to Google Calendar"
|
|
1928 |
msgstr "Afegir a Google Calendar"
|
1929 |
|
1930 |
#: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:629
|
1931 |
-
#: app/features/mec/modules.php:
|
1932 |
#: app/features/mec/settings.php:971 app/features/mec/single.php:269
|
1933 |
msgid "Checking ..."
|
1934 |
msgstr "Verificant…"
|
@@ -2059,7 +2167,17 @@ msgstr "Importar Opcions"
|
|
2059 |
msgid "Import Locations"
|
2060 |
msgstr "Importar ubicacions"
|
2061 |
|
2062 |
-
#: app/features/ix/import_f_calendar.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2063 |
#, php-format
|
2064 |
msgid "%s events successfully imported to your website from Facebook Calendar."
|
2065 |
msgstr ""
|
@@ -2358,27 +2476,27 @@ msgstr "Normal"
|
|
2358 |
#: app/skins/agenda/render.php:39 app/skins/available_spot/tpl.php:39
|
2359 |
#: app/skins/carousel/render.php:45 app/skins/countdown/tpl.php:28
|
2360 |
#: app/skins/cover/tpl.php:29 app/skins/daily_view/render.php:25
|
2361 |
-
#: app/skins/grid/render.php:
|
2362 |
#: app/skins/masonry/render.php:29 app/skins/monthly_view/calendar.php:86
|
2363 |
#: app/skins/monthly_view/calendar_clean.php:86
|
2364 |
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:46
|
2365 |
#: app/skins/tile/render.php:35 app/skins/timeline/render.php:44
|
2366 |
-
#: app/skins/timetable/render.php:35 app/skins/timetable/render.php:
|
2367 |
#: app/skins/weekly_view/render.php:33 app/skins/yearly_view/render.php:48
|
2368 |
msgid "Featured"
|
2369 |
msgstr "Destacats"
|
2370 |
|
2371 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2372 |
-
#: app/libraries/main.php:
|
2373 |
#: app/skins/available_spot/tpl.php:43 app/skins/carousel/render.php:46
|
2374 |
#: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:33
|
2375 |
-
#: app/skins/daily_view/render.php:29 app/skins/grid/render.php:
|
2376 |
#: app/skins/list/render.php:45 app/skins/masonry/render.php:30
|
2377 |
#: app/skins/monthly_view/calendar.php:90
|
2378 |
#: app/skins/monthly_view/calendar_clean.php:90
|
2379 |
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:47
|
2380 |
#: app/skins/tile/render.php:36 app/skins/timeline/render.php:48
|
2381 |
-
#: app/skins/timetable/render.php:39 app/skins/timetable/render.php:
|
2382 |
#: app/skins/weekly_view/render.php:37 app/skins/yearly_view/render.php:52
|
2383 |
msgid "Canceled"
|
2384 |
msgstr "Cancel·lats"
|
@@ -2405,9 +2523,9 @@ msgstr "Slug"
|
|
2405 |
msgid "Event %s"
|
2406 |
msgstr "Esdeveniment %s"
|
2407 |
|
2408 |
-
#: app/features/locations.php:59 app/features/mec.php:
|
2409 |
#: app/features/mec/dashboard.php:269 app/features/mec/meta_boxes/filter.php:96
|
2410 |
-
#: app/libraries/main.php:
|
2411 |
msgid "Locations"
|
2412 |
msgstr "Llocs"
|
2413 |
|
@@ -2518,7 +2636,7 @@ msgstr "Triar imatge"
|
|
2518 |
msgid "Don't show map in single event page"
|
2519 |
msgstr "No mostrar el mapa a la pàgina de detall de l'esdeveniment"
|
2520 |
|
2521 |
-
#: app/features/locations.php:356 app/libraries/main.php:
|
2522 |
msgid "Other Locations"
|
2523 |
msgstr "Altres llocs"
|
2524 |
|
@@ -2533,7 +2651,7 @@ msgstr ""
|
|
2533 |
msgid "<strong>"
|
2534 |
msgstr "<strong>"
|
2535 |
|
2536 |
-
#: app/features/mec.php:
|
2537 |
msgid ""
|
2538 |
"Activation faild. Please check your purchase code or license type."
|
2539 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
@@ -2542,11 +2660,11 @@ msgstr ""
|
|
2542 |
"llicència. <br> <b> Nota: El vostre codi de compra ha de coincidir amb el "
|
2543 |
"vostre tipus de llicència. </b>"
|
2544 |
|
2545 |
-
#: app/features/mec.php:
|
2546 |
msgid "Troubleshooting"
|
2547 |
msgstr "Resolució de problemes"
|
2548 |
|
2549 |
-
#: app/features/mec.php:
|
2550 |
msgid ""
|
2551 |
"Your options is not in JSON format. Please insert correct options in this "
|
2552 |
"field and try again."
|
@@ -2554,95 +2672,95 @@ msgstr ""
|
|
2554 |
"Les vostres opcions no estan en format JSON. Introduïu les opcions correctes "
|
2555 |
"en aquest camp i torneu-ho a provar."
|
2556 |
|
2557 |
-
#: app/features/mec.php:
|
2558 |
msgid "Your options field can not be empty!"
|
2559 |
msgstr "El vostre camp d’opcions no pot estar buit!"
|
2560 |
|
2561 |
-
#: app/features/mec.php:
|
2562 |
msgid "Your options imported successfuly."
|
2563 |
msgstr "Les vostres opcions s’han importat correctament."
|
2564 |
|
2565 |
-
#: app/features/mec.php:
|
2566 |
msgid "MEC - Support"
|
2567 |
msgstr "MEC - Suport"
|
2568 |
|
2569 |
-
#: app/features/mec.php:
|
2570 |
#: app/features/mec/support.php:80 app/features/mec/support.php:93
|
2571 |
msgid "Support"
|
2572 |
msgstr "Suport"
|
2573 |
|
2574 |
-
#: app/features/mec.php:
|
2575 |
#: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
|
2576 |
-
#: app/libraries/main.php:
|
2577 |
msgid "Organizers"
|
2578 |
msgstr "Organitzadors"
|
2579 |
|
2580 |
-
#: app/features/mec.php:
|
2581 |
#: app/features/mec/dashboard.php:262
|
2582 |
msgid "Shortcodes"
|
2583 |
msgstr "Shortcodes"
|
2584 |
|
2585 |
-
#: app/features/mec.php:
|
2586 |
msgid "MEC - Settings"
|
2587 |
msgstr "Configuració MEC"
|
2588 |
|
2589 |
-
#: app/features/mec.php:
|
2590 |
msgid "MEC - Addons"
|
2591 |
msgstr "Complements MEC"
|
2592 |
|
2593 |
-
#: app/features/mec.php:
|
2594 |
msgid "Addons"
|
2595 |
msgstr "Complements"
|
2596 |
|
2597 |
-
#: app/features/mec.php:
|
2598 |
msgid "Add Shortcode"
|
2599 |
msgstr "Afegir Shortcode"
|
2600 |
|
2601 |
-
#: app/features/mec.php:
|
2602 |
msgid "Add New Shortcode"
|
2603 |
msgstr "Afegir nou Shortcode"
|
2604 |
|
2605 |
-
#: app/features/mec.php:
|
2606 |
msgid "No shortcodes found!"
|
2607 |
msgstr "No hi ha shortcodes!"
|
2608 |
|
2609 |
-
#: app/features/mec.php:
|
2610 |
msgid "All Shortcodes"
|
2611 |
msgstr "Tots els Shortcodes"
|
2612 |
|
2613 |
-
#: app/features/mec.php:
|
2614 |
msgid "Edit shortcodes"
|
2615 |
msgstr "Editar Shortcodes"
|
2616 |
|
2617 |
-
#: app/features/mec.php:
|
2618 |
msgid "No shortcodes found in Trash!"
|
2619 |
msgstr "No hi ha shortcodes a la paperera!"
|
2620 |
|
2621 |
-
#: app/features/mec.php:
|
2622 |
msgid "Display Options"
|
2623 |
msgstr "Opcions de pantalla"
|
2624 |
|
2625 |
-
#: app/features/mec.php:
|
2626 |
msgid "Filter Options"
|
2627 |
msgstr "Opcions de filtres"
|
2628 |
|
2629 |
-
#: app/features/mec.php:
|
2630 |
msgid "Search Form"
|
2631 |
msgstr "Formulari de Cerca"
|
2632 |
|
2633 |
-
#: app/features/mec.php:
|
2634 |
msgid "Display content's images as Popup"
|
2635 |
msgstr "Mostra les imatges del contingut com a finestra emergent"
|
2636 |
|
2637 |
-
#: app/features/mec.php:
|
2638 |
msgid "Single Event Display Method"
|
2639 |
msgstr "Mètode de vista per a la pàgina de l'esdeveniment"
|
2640 |
|
2641 |
-
#: app/features/mec.php:
|
2642 |
msgid "Separate Window"
|
2643 |
msgstr "Finestra separada"
|
2644 |
|
2645 |
-
#: app/features/mec.php:
|
2646 |
msgid "Modal 1"
|
2647 |
msgstr "Modal 1"
|
2648 |
|
@@ -2678,9 +2796,9 @@ msgstr "Cercar..."
|
|
2678 |
#: app/features/mec/booking.php:660 app/features/mec/messages.php:15
|
2679 |
#: app/features/mec/messages.php:51 app/features/mec/messages.php:60
|
2680 |
#: app/features/mec/messages.php:94 app/features/mec/messages.php:103
|
2681 |
-
#: app/features/mec/modules.php:25 app/features/mec/modules.php:
|
2682 |
-
#: app/features/mec/modules.php:
|
2683 |
-
#: app/features/mec/modules.php:
|
2684 |
#: app/features/mec/notifications.php:525
|
2685 |
#: app/features/mec/notifications.php:537
|
2686 |
#: app/features/mec/notifications.php:633
|
@@ -2712,7 +2830,7 @@ msgstr ""
|
|
2712 |
"element de menú al Tauler de control"
|
2713 |
|
2714 |
#: app/features/mec/booking.php:102 app/features/mec/booking.php:107
|
2715 |
-
#: app/features/mec/modules.php:
|
2716 |
msgid "Date Format"
|
2717 |
msgstr "Format de data"
|
2718 |
|
@@ -2906,29 +3024,29 @@ msgstr ""
|
|
2906 |
"rebre directament els pagaments!"
|
2907 |
|
2908 |
#: app/features/mec/booking.php:624 app/features/mec/messages.php:78
|
2909 |
-
#: app/features/mec/modules.php:
|
2910 |
#: app/features/mec/settings.php:966 app/features/mec/single.php:264
|
2911 |
#: app/features/mec/styles.php:60 app/features/mec/styling.php:296
|
2912 |
msgid "Saved"
|
2913 |
msgstr "Desat"
|
2914 |
|
2915 |
#: app/features/mec/booking.php:625 app/features/mec/messages.php:79
|
2916 |
-
#: app/features/mec/modules.php:
|
2917 |
#: app/features/mec/settings.php:967 app/features/mec/single.php:265
|
2918 |
#: app/features/mec/styles.php:61 app/features/mec/styling.php:297
|
2919 |
msgid "Settings Saved!"
|
2920 |
msgstr "Configuració desada!"
|
2921 |
|
2922 |
#: app/features/mec/booking.php:627 app/features/mec/booking.php:649
|
2923 |
-
#: app/features/mec/modules.php:
|
2924 |
#: app/features/mec/notifications.php:614
|
2925 |
#: app/features/mec/notifications.php:636 app/features/mec/settings.php:969
|
2926 |
#: app/features/mec/settings.php:991 app/features/mec/single.php:267
|
2927 |
-
#: app/features/mec/single.php:289 app/libraries/main.php:
|
2928 |
msgid "Verified"
|
2929 |
msgstr "Verificat"
|
2930 |
|
2931 |
-
#: app/features/mec/booking.php:651 app/features/mec/modules.php:
|
2932 |
#: app/features/mec/notifications.php:638 app/features/mec/settings.php:993
|
2933 |
#: app/features/mec/single.php:291
|
2934 |
msgid "Please Refresh Page"
|
@@ -3476,15 +3594,15 @@ msgstr "Vista per defecte"
|
|
3476 |
|
3477 |
#: app/features/mec/meta_boxes/display_options.php:447
|
3478 |
#: app/features/mec/meta_boxes/display_options.php:468
|
3479 |
-
#: app/libraries/main.php:330 app/libraries/main.php:
|
3480 |
-
#: app/libraries/main.php:
|
3481 |
msgid "List View"
|
3482 |
msgstr "Vista de llista"
|
3483 |
|
3484 |
#: app/features/mec/meta_boxes/display_options.php:448
|
3485 |
#: app/features/mec/meta_boxes/display_options.php:478
|
3486 |
-
#: app/libraries/main.php:334 app/libraries/main.php:
|
3487 |
-
#: app/libraries/main.php:
|
3488 |
msgid "Yearly View"
|
3489 |
msgstr "Vista anual"
|
3490 |
|
@@ -3495,15 +3613,15 @@ msgstr "Vista Mensual/Calendari"
|
|
3495 |
|
3496 |
#: app/features/mec/meta_boxes/display_options.php:450
|
3497 |
#: app/features/mec/meta_boxes/display_options.php:510
|
3498 |
-
#: app/libraries/main.php:337 app/libraries/main.php:
|
3499 |
-
#: app/libraries/main.php:
|
3500 |
msgid "Weekly View"
|
3501 |
msgstr "Vista setmanal"
|
3502 |
|
3503 |
#: app/features/mec/meta_boxes/display_options.php:451
|
3504 |
#: app/features/mec/meta_boxes/display_options.php:520
|
3505 |
-
#: app/libraries/main.php:336 app/libraries/main.php:
|
3506 |
-
#: app/libraries/main.php:
|
3507 |
msgid "Daily View"
|
3508 |
msgstr "Vista diària"
|
3509 |
|
@@ -3928,7 +4046,7 @@ msgstr "Desactivat"
|
|
3928 |
#: app/features/mec/meta_boxes/search_form.php:693
|
3929 |
#: app/features/mec/settings.php:815 app/features/mec/single.php:217
|
3930 |
#: app/features/search.php:79 app/features/speakers.php:61
|
3931 |
-
#: app/features/speakers.php:254 app/libraries/main.php:
|
3932 |
#: app/libraries/skins.php:889
|
3933 |
msgid "Speaker"
|
3934 |
msgstr "Ponent"
|
@@ -4158,45 +4276,45 @@ msgstr "Mostra el botó de les unitats de canvi de temps"
|
|
4158 |
msgid "Show social network module"
|
4159 |
msgstr "Mostrar el mòdul de xarxes socials"
|
4160 |
|
4161 |
-
#: app/features/mec/modules.php:
|
4162 |
-
#: app/modules/next-event/details.php:
|
4163 |
msgid "Next Event"
|
4164 |
msgstr "Pròxim esdeveniment"
|
4165 |
|
4166 |
-
#: app/features/mec/modules.php:
|
4167 |
msgid "Show next event module on event page"
|
4168 |
msgstr "Mostra el mòdul següent esdeveniment a la pàgina de l'Esdeveniment"
|
4169 |
|
4170 |
-
#: app/features/mec/modules.php:
|
4171 |
msgid "Method"
|
4172 |
msgstr "Mètode"
|
4173 |
|
4174 |
-
#: app/features/mec/modules.php:
|
4175 |
msgid "Next Occurrence of Current Event"
|
4176 |
msgstr "Següent ocurrència de l'esdeveniment actual"
|
4177 |
|
4178 |
-
#: app/features/mec/modules.php:
|
4179 |
msgid "Next Occurrence of Other Events"
|
4180 |
msgstr "Següent Aparició d'altres esdeveniments"
|
4181 |
|
4182 |
-
#: app/features/mec/modules.php:
|
4183 |
msgid "Default is M d Y"
|
4184 |
msgstr "El valor predeterminat és M d Y"
|
4185 |
|
4186 |
-
#: app/features/mec/modules.php:
|
4187 |
msgid "Enable BuddyPress Integration"
|
4188 |
msgstr "Habilitar la integració de BuddyPress"
|
4189 |
|
4190 |
-
#: app/features/mec/modules.php:
|
4191 |
msgid "Show \"Attendees Module\" in event details page"
|
4192 |
msgstr ""
|
4193 |
"Mostrar \"Mòdul d'assistents\" a la pàgina de detalls de l'esdeveniment"
|
4194 |
|
4195 |
-
#: app/features/mec/modules.php:
|
4196 |
msgid "Attendees Limit"
|
4197 |
msgstr "Límit d'assistents"
|
4198 |
|
4199 |
-
#: app/features/mec/modules.php:
|
4200 |
msgid "Add booking activity to user profile"
|
4201 |
msgstr "Afegir activitat de reserves al perfil de l'usuari"
|
4202 |
|
@@ -4208,16 +4326,6 @@ msgstr "Activar notificació de reserves"
|
|
4208 |
msgid "It sends to attendee after booking for notifying him/her."
|
4209 |
msgstr "Envia als assistents després de fer la reserva per avisar-lo."
|
4210 |
|
4211 |
-
#: app/features/mec/notifications.php:44 app/features/mec/notifications.php:105
|
4212 |
-
#: app/features/mec/notifications.php:161
|
4213 |
-
#: app/features/mec/notifications.php:229
|
4214 |
-
#: app/features/mec/notifications.php:299
|
4215 |
-
#: app/features/mec/notifications.php:364
|
4216 |
-
#: app/features/mec/notifications.php:439
|
4217 |
-
#: app/features/mec/notifications.php:487
|
4218 |
-
msgid "Email Subject"
|
4219 |
-
msgstr "Assumpte de l'email"
|
4220 |
-
|
4221 |
#: app/features/mec/notifications.php:48 app/features/mec/notifications.php:52
|
4222 |
#: app/features/mec/notifications.php:109
|
4223 |
#: app/features/mec/notifications.php:113
|
@@ -4263,16 +4371,6 @@ msgstr "Enviar email a l'organitzador de l'esdeveniment"
|
|
4263 |
msgid "Email Content"
|
4264 |
msgstr "Contingut de l'email"
|
4265 |
|
4266 |
-
#: app/features/mec/notifications.php:66 app/features/mec/notifications.php:123
|
4267 |
-
#: app/features/mec/notifications.php:183
|
4268 |
-
#: app/features/mec/notifications.php:259
|
4269 |
-
#: app/features/mec/notifications.php:321
|
4270 |
-
#: app/features/mec/notifications.php:393
|
4271 |
-
#: app/features/mec/notifications.php:457
|
4272 |
-
#: app/features/mec/notifications.php:505
|
4273 |
-
msgid "You can use following placeholders"
|
4274 |
-
msgstr "Podeu utilitzar els marcadors de posició següents"
|
4275 |
-
|
4276 |
#: app/features/mec/notifications.php:68 app/features/mec/notifications.php:125
|
4277 |
#: app/features/mec/notifications.php:185
|
4278 |
#: app/features/mec/notifications.php:261
|
@@ -4559,7 +4657,7 @@ msgid "It sends to admin to notify him/her that a new booking received."
|
|
4559 |
msgstr "S'envia a l'administrador per notificar-li una nova reserva rebuda."
|
4560 |
|
4561 |
#: app/features/mec/notifications.php:351 app/libraries/main.php:578
|
4562 |
-
#: app/libraries/notifications.php:
|
4563 |
msgid "Booking Reminder"
|
4564 |
msgstr "Recordatori de reserva"
|
4565 |
|
@@ -4757,7 +4855,7 @@ msgid "You can enable/disable Schema scripts"
|
|
4757 |
msgstr "Podeu activar / desactivar els scripts de l’esquema"
|
4758 |
|
4759 |
#: app/features/mec/settings.php:177 app/features/mec/settings.php:187
|
4760 |
-
#: app/libraries/main.php:
|
4761 |
msgid "Weekdays"
|
4762 |
msgstr "Dies de la setmana"
|
4763 |
|
@@ -5909,8 +6007,8 @@ msgstr "ex. usuari@elteuweb.com"
|
|
5909 |
msgid "eg. https://webnus.net"
|
5910 |
msgstr "ex. https://webnus.net"
|
5911 |
|
5912 |
-
#: app/features/organizers.php:311 app/libraries/main.php:
|
5913 |
-
#: app/skins/single.php:
|
5914 |
msgid "Other Organizers"
|
5915 |
msgstr "Altres organitzadors"
|
5916 |
|
@@ -5926,7 +6024,7 @@ msgstr ""
|
|
5926 |
msgid "Please %s/%s in order to see your bookings / profile."
|
5927 |
msgstr "Si us plau,%s/%s per veure les vostres reserves / perfil."
|
5928 |
|
5929 |
-
#: app/features/profile/profile.php:18 app/libraries/main.php:
|
5930 |
msgid "Your booking already canceled!"
|
5931 |
msgstr "La vostra reserva ja s'ha cancel·lat!"
|
5932 |
|
@@ -5934,7 +6032,7 @@ msgstr "La vostra reserva ja s'ha cancel·lat!"
|
|
5934 |
msgid "#"
|
5935 |
msgstr "#"
|
5936 |
|
5937 |
-
#: app/features/profile/profile.php:56 app/libraries/main.php:
|
5938 |
msgid "Status"
|
5939 |
msgstr "Estat"
|
5940 |
|
@@ -5963,7 +6061,7 @@ msgstr "<i class=\"mec-sl-eye\"></i> %s"
|
|
5963 |
msgid "No bookings found!"
|
5964 |
msgstr "No s’han trobat reserves!"
|
5965 |
|
5966 |
-
#: app/features/search.php:87 app/libraries/main.php:
|
5967 |
msgid "label"
|
5968 |
msgstr "etiqueta"
|
5969 |
|
@@ -5988,9 +6086,9 @@ msgid "No search result."
|
|
5988 |
msgstr "Cap resultat de cerca."
|
5989 |
|
5990 |
#: app/features/search_bar/search_result.php:11
|
5991 |
-
#: app/libraries/notifications.php:
|
5992 |
#: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
|
5993 |
-
#: app/skins/single.php:160 app/skins/single.php:
|
5994 |
#: app/skins/single/default.php:101 app/skins/single/default.php:313
|
5995 |
#: app/skins/single/m1.php:38 app/skins/single/modern.php:188
|
5996 |
msgid "All of the day"
|
@@ -6054,12 +6152,12 @@ msgstr ""
|
|
6054 |
msgid "%s Price"
|
6055 |
msgstr "%s Preu"
|
6056 |
|
6057 |
-
#: app/libraries/book.php:
|
6058 |
msgid "Discount"
|
6059 |
msgstr "Descompte"
|
6060 |
|
6061 |
-
#: app/libraries/book.php:
|
6062 |
-
#: app/modules/booking/default.php:
|
6063 |
msgid "Download Invoice"
|
6064 |
msgstr "Descarregar factura"
|
6065 |
|
@@ -6134,38 +6232,38 @@ msgstr "Barra lateral personalitzada per a una pàgina modal i única de MEC."
|
|
6134 |
msgid "There is no excerpt because this is a protected post."
|
6135 |
msgstr "No hi ha cap extracte perquè es tracta d’una publicació protegida."
|
6136 |
|
6137 |
-
#: app/libraries/main.php:331 app/libraries/main.php:
|
6138 |
-
#: app/libraries/main.php:
|
6139 |
msgid "Grid View"
|
6140 |
msgstr "Vista cuadrícula"
|
6141 |
|
6142 |
-
#: app/libraries/main.php:332 app/libraries/main.php:
|
6143 |
-
#: app/libraries/main.php:
|
6144 |
msgid "Agenda View"
|
6145 |
msgstr "Vista d'Agenda"
|
6146 |
|
6147 |
-
#: app/libraries/main.php:333 app/libraries/main.php:
|
6148 |
-
#: app/libraries/main.php:
|
6149 |
msgid "Full Calendar"
|
6150 |
msgstr "Calendari complet"
|
6151 |
|
6152 |
-
#: app/libraries/main.php:335 app/libraries/main.php:
|
6153 |
-
#: app/libraries/main.php:
|
6154 |
msgid "Calendar/Monthly View"
|
6155 |
msgstr "Veure Calendari/Mes"
|
6156 |
|
6157 |
-
#: app/libraries/main.php:338 app/libraries/main.php:
|
6158 |
-
#: app/libraries/main.php:
|
6159 |
msgid "Timetable View"
|
6160 |
msgstr "Vista d'Horari"
|
6161 |
|
6162 |
-
#: app/libraries/main.php:339 app/libraries/main.php:
|
6163 |
-
#: app/libraries/main.php:
|
6164 |
msgid "Masonry View"
|
6165 |
msgstr "Vista en mosaic"
|
6166 |
|
6167 |
-
#: app/libraries/main.php:340 app/libraries/main.php:
|
6168 |
-
#: app/libraries/main.php:
|
6169 |
msgid "Map View"
|
6170 |
msgstr "Vista de mapa"
|
6171 |
|
@@ -6199,31 +6297,31 @@ msgstr "Vista de la línia de temps"
|
|
6199 |
msgid "Tile View"
|
6200 |
msgstr "Vista de la línia de temps"
|
6201 |
|
6202 |
-
#: app/libraries/main.php:385 app/libraries/main.php:
|
6203 |
msgid "SU"
|
6204 |
msgstr "DG"
|
6205 |
|
6206 |
-
#: app/libraries/main.php:386 app/libraries/main.php:
|
6207 |
msgid "MO"
|
6208 |
msgstr "DL"
|
6209 |
|
6210 |
-
#: app/libraries/main.php:387 app/libraries/main.php:
|
6211 |
msgid "TU"
|
6212 |
msgstr "DM"
|
6213 |
|
6214 |
-
#: app/libraries/main.php:388 app/libraries/main.php:
|
6215 |
msgid "WE"
|
6216 |
msgstr "DC"
|
6217 |
|
6218 |
-
#: app/libraries/main.php:389 app/libraries/main.php:
|
6219 |
msgid "TH"
|
6220 |
msgstr "DJ"
|
6221 |
|
6222 |
-
#: app/libraries/main.php:390 app/libraries/main.php:
|
6223 |
msgid "FR"
|
6224 |
msgstr "DV"
|
6225 |
|
6226 |
-
#: app/libraries/main.php:391 app/libraries/main.php:
|
6227 |
msgid "SA"
|
6228 |
msgstr "DS"
|
6229 |
|
@@ -6280,21 +6378,17 @@ msgstr ""
|
|
6280 |
|
6281 |
#: app/libraries/main.php:879
|
6282 |
msgid ""
|
6283 |
-
"<strong>
|
6284 |
-
"
|
6285 |
-
"
|
6286 |
msgstr ""
|
6287 |
-
"<strong>Elementor Single Builder:</strong> Edita la pàgina d’un sol "
|
6288 |
-
"esdeveniment mitjançant Elementor. Gestioneu la posició de tots els elements "
|
6289 |
-
"de la pàgina única i també en ordinadors de sobretaula, mòbils i tauletes."
|
6290 |
|
6291 |
#: app/libraries/main.php:880
|
6292 |
msgid ""
|
6293 |
-
"<strong>
|
6294 |
-
"
|
|
|
6295 |
msgstr ""
|
6296 |
-
"<strong>Elementor Shortcode Builder:</strong> Us permet crear codis directes "
|
6297 |
-
"en Elementor Live Editor."
|
6298 |
|
6299 |
#: app/libraries/main.php:1429
|
6300 |
msgid "Events at this location"
|
@@ -6312,263 +6406,347 @@ msgstr "Facebook"
|
|
6312 |
msgid "Twitter"
|
6313 |
msgstr "Twitter"
|
6314 |
|
6315 |
-
#: app/libraries/main.php:1474 app/libraries/main.php:
|
6316 |
msgid "Linkedin"
|
6317 |
msgstr "LinkedIn"
|
6318 |
|
6319 |
-
#: app/libraries/main.php:1475 app/libraries/main.php:
|
6320 |
msgid "VK"
|
6321 |
msgstr "VK"
|
6322 |
|
6323 |
-
#: app/libraries/main.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6324 |
msgid "Share on Facebook"
|
6325 |
msgstr "Compartir en Facebook"
|
6326 |
|
6327 |
-
#: app/libraries/main.php:
|
6328 |
msgid "Tweet"
|
6329 |
msgstr "Tweet"
|
6330 |
|
6331 |
#: app/libraries/main.php:1582
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6332 |
msgid "Custom Shortcode"
|
6333 |
msgstr "Shortcode personalitzat"
|
6334 |
|
6335 |
-
#: app/libraries/main.php:
|
6336 |
msgid "Your booking already verified!"
|
6337 |
msgstr "La teva reserva s'ha verificat correctament!"
|
6338 |
|
6339 |
-
#: app/libraries/main.php:
|
6340 |
msgid "Your booking successfully verified."
|
6341 |
msgstr "La vostra reserva s'ha verificat correctament."
|
6342 |
|
6343 |
-
#: app/libraries/main.php:
|
6344 |
msgid "Your booking cannot verify!"
|
6345 |
msgstr "La vostra reserva no es pot verificar!"
|
6346 |
|
6347 |
-
#: app/libraries/main.php:
|
6348 |
msgid "Your booking successfully canceled."
|
6349 |
msgstr "La vostra reserva s'ha cancel·lat correctament."
|
6350 |
|
6351 |
-
#: app/libraries/main.php:
|
6352 |
msgid "Your booking cannot be canceled."
|
6353 |
msgstr "La vostra reserva no es pot cancel·lar."
|
6354 |
|
6355 |
-
#: app/libraries/main.php:
|
6356 |
msgid "You canceled the payment successfully."
|
6357 |
msgstr "You canceled the payment successfully."
|
6358 |
|
6359 |
-
#: app/libraries/main.php:
|
6360 |
msgid "You returned from payment gateway successfully."
|
6361 |
msgstr "Heu retornat correctament de la passarel·la de pagament."
|
6362 |
|
6363 |
-
#: app/libraries/main.php:
|
6364 |
msgid "Cannot find the invoice!"
|
6365 |
msgstr "No es pot trobar la factura!"
|
6366 |
|
6367 |
-
#: app/libraries/main.php:
|
6368 |
msgid "Invoice is invalid."
|
6369 |
msgstr "La factura no és vàlida."
|
6370 |
|
6371 |
-
#: app/libraries/main.php:
|
6372 |
msgid ""
|
6373 |
"Your booking still is not confirmed. You able download it after confirmation!"
|
6374 |
msgstr ""
|
6375 |
"La vostra reserva encara no està confirmada. La podeu descarregar després de "
|
6376 |
"la confirmació!"
|
6377 |
|
6378 |
-
#: app/libraries/main.php:
|
6379 |
msgid "Booking Not Confirmed."
|
6380 |
msgstr "Reserva no confirmada."
|
6381 |
|
6382 |
-
#: app/libraries/main.php:
|
6383 |
msgid "Cannot find the booking!"
|
6384 |
msgstr "No es troba la reserva!"
|
6385 |
|
6386 |
-
#: app/libraries/main.php:
|
6387 |
msgid "Booking is invalid."
|
6388 |
msgstr "Reserva no vàlida."
|
6389 |
|
6390 |
-
#: app/libraries/main.php:
|
6391 |
#, php-format
|
6392 |
msgid "%s Invoice"
|
6393 |
msgstr "%s Factura"
|
6394 |
|
6395 |
-
#: app/libraries/main.php:
|
6396 |
msgid "Billing"
|
6397 |
msgstr "Facturació"
|
6398 |
|
6399 |
-
#: app/libraries/main.php:
|
6400 |
msgid "Total"
|
6401 |
msgstr "Total"
|
6402 |
|
6403 |
-
#: app/libraries/main.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6404 |
msgid "Request is not valid."
|
6405 |
msgstr "La sol·licitud no és vàlida."
|
6406 |
|
6407 |
-
#: app/libraries/main.php:
|
6408 |
msgid "iCal export stopped!"
|
6409 |
msgstr "L'exportació de iCal s'ha aturat!"
|
6410 |
|
6411 |
-
#: app/libraries/main.php:
|
6412 |
-
#: app/libraries/main.php:
|
6413 |
-
#: app/libraries/main.php:
|
6414 |
-
#: app/libraries/main.php:
|
6415 |
-
#: app/libraries/main.php:
|
6416 |
-
#: app/libraries/main.php:
|
6417 |
-
#: app/libraries/main.php:
|
6418 |
msgid "Sort"
|
6419 |
msgstr "Ordre"
|
6420 |
|
6421 |
-
#: app/libraries/main.php:
|
6422 |
-
#: app/libraries/main.php:
|
6423 |
-
#: app/libraries/main.php:
|
6424 |
-
#: app/libraries/main.php:
|
6425 |
-
#: app/libraries/main.php:
|
6426 |
-
#: app/libraries/main.php:
|
6427 |
msgid "Required Field"
|
6428 |
msgstr "Camp necessari"
|
6429 |
|
6430 |
-
#: app/libraries/main.php:
|
6431 |
-
#: app/libraries/main.php:
|
6432 |
-
#: app/libraries/main.php:
|
6433 |
-
#: app/libraries/main.php:
|
6434 |
-
#: app/libraries/main.php:
|
6435 |
-
#: app/libraries/main.php:
|
6436 |
msgid "Insert a label for this field"
|
6437 |
msgstr "Inseriu una etiqueta per a aquest camp"
|
6438 |
|
6439 |
-
#: app/libraries/main.php:
|
6440 |
msgid "HTML and shortcode are allowed."
|
6441 |
msgstr "HTML i shortcodes són permesos."
|
6442 |
|
6443 |
-
#: app/libraries/main.php:
|
6444 |
-
#: app/libraries/main.php:
|
6445 |
msgid "Option"
|
6446 |
msgstr "Opció"
|
6447 |
|
6448 |
-
#: app/libraries/main.php:
|
6449 |
#, php-format
|
6450 |
msgid "Instead of %s, the page title with a link will be show."
|
6451 |
msgstr "En lugar de %s, se mostrará el título de la pàgina con un enllaç."
|
6452 |
|
6453 |
-
#: app/libraries/main.php:
|
6454 |
msgid "Agreement Page"
|
6455 |
msgstr "Pàgina de l’acord"
|
6456 |
|
6457 |
-
#: app/libraries/main.php:
|
6458 |
msgid "Checked by default"
|
6459 |
msgstr "Marcat per defecte"
|
6460 |
|
6461 |
-
#: app/libraries/main.php:
|
6462 |
msgid "Unchecked by default"
|
6463 |
msgstr "Sense marcar per defecte"
|
6464 |
|
6465 |
-
#: app/libraries/main.php:
|
6466 |
msgid "Insert a label for this option"
|
6467 |
msgstr "Inseriu una etiqueta per a aquesta opció"
|
6468 |
|
6469 |
-
#: app/libraries/main.php:
|
6470 |
msgid "Free"
|
6471 |
msgstr "Gratuït"
|
6472 |
|
6473 |
-
#: app/libraries/main.php:
|
6474 |
msgid "M.E. Calender"
|
6475 |
msgstr "M.E. Calendari"
|
6476 |
|
6477 |
-
#: app/libraries/main.php:
|
6478 |
#, php-format
|
6479 |
msgid "Copy of %s"
|
6480 |
msgstr "Còpia de %s"
|
6481 |
|
6482 |
-
#: app/libraries/main.php:
|
6483 |
msgid "Booked an event."
|
6484 |
msgstr "S'ha reservat un esdeveniment."
|
6485 |
|
6486 |
-
#: app/libraries/main.php:
|
6487 |
#, php-format
|
6488 |
msgid "%s booked %s event."
|
6489 |
msgstr "%s reservat %s esdeveniment."
|
6490 |
|
6491 |
-
#: app/libraries/main.php:
|
6492 |
msgid "Taxonomies"
|
6493 |
msgstr "Taxonomies"
|
6494 |
|
6495 |
-
#: app/libraries/main.php:
|
6496 |
msgid "Category Plural Label"
|
6497 |
msgstr "Categoria Etiqueta plural"
|
6498 |
|
6499 |
-
#: app/libraries/main.php:
|
6500 |
msgid "Category Singular Label"
|
6501 |
msgstr "Categoria Etiqueta Singular"
|
6502 |
|
6503 |
-
#: app/libraries/main.php:
|
6504 |
msgid "Label Plural Label"
|
6505 |
msgstr "Etiqueta plural de l'etiqueta"
|
6506 |
|
6507 |
-
#: app/libraries/main.php:
|
6508 |
msgid "Label Singular Label"
|
6509 |
msgstr "Etiqueta singular de l'etiqueta"
|
6510 |
|
6511 |
-
#: app/libraries/main.php:
|
6512 |
msgid "Location Plural Label"
|
6513 |
msgstr "Etiqueta d'ubicació plural"
|
6514 |
|
6515 |
-
#: app/libraries/main.php:
|
6516 |
msgid "Location Singular Label"
|
6517 |
msgstr "Etiqueta d'ubicació en singular"
|
6518 |
|
6519 |
-
#: app/libraries/main.php:
|
6520 |
msgid "Organizer Plural Label"
|
6521 |
msgstr "Etiqueta de l'organizador en plural"
|
6522 |
|
6523 |
-
#: app/libraries/main.php:
|
6524 |
msgid "Organizer Singular Label"
|
6525 |
msgstr "Etiqueta de l'Organizador Singular"
|
6526 |
|
6527 |
-
#: app/libraries/main.php:
|
6528 |
msgid "Speaker Plural Label"
|
6529 |
msgstr "Etiqueta de ponent plural"
|
6530 |
|
6531 |
-
#: app/libraries/main.php:
|
6532 |
msgid "Speaker Singular Label"
|
6533 |
msgstr "Etiqueta de ponent singular"
|
6534 |
|
6535 |
-
#: app/libraries/main.php:
|
6536 |
msgid "Sunday abbreviation"
|
6537 |
msgstr "Abreviatura de Diumenge"
|
6538 |
|
6539 |
-
#: app/libraries/main.php:
|
6540 |
msgid "Monday abbreviation"
|
6541 |
msgstr "Abreviatura de Dilluns"
|
6542 |
|
6543 |
-
#: app/libraries/main.php:
|
6544 |
msgid "Tuesday abbreviation"
|
6545 |
msgstr "Abreviatura de Dimarts"
|
6546 |
|
6547 |
-
#: app/libraries/main.php:
|
6548 |
msgid "Wednesday abbreviation"
|
6549 |
msgstr "Abreviatura de Dimecres"
|
6550 |
|
6551 |
-
#: app/libraries/main.php:
|
6552 |
msgid "Thursday abbreviation"
|
6553 |
msgstr "Abreviatura de Dijous"
|
6554 |
|
6555 |
-
#: app/libraries/main.php:
|
6556 |
msgid "Friday abbreviation"
|
6557 |
msgstr "Abreviatura de Divendres"
|
6558 |
|
6559 |
-
#: app/libraries/main.php:
|
6560 |
msgid "Saturday abbreviation"
|
6561 |
msgstr "Abreviatura de Dissabte"
|
6562 |
|
6563 |
-
#: app/libraries/main.php:
|
6564 |
msgid "Others"
|
6565 |
msgstr "Altres"
|
6566 |
|
6567 |
-
#: app/libraries/main.php:
|
6568 |
msgid "Booking Success Message"
|
6569 |
msgstr "Missatge d’èxit de la reserva"
|
6570 |
|
6571 |
-
#: app/libraries/main.php:
|
6572 |
msgid ""
|
6573 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
6574 |
"needed, please check your email."
|
@@ -6577,17 +6755,17 @@ msgstr ""
|
|
6577 |
"entrades reservades, la verificació de la reserva, consulteu el vostre "
|
6578 |
"correu electrònic."
|
6579 |
|
6580 |
-
#: app/libraries/main.php:
|
6581 |
msgid "Register Button"
|
6582 |
msgstr "Botó de registre"
|
6583 |
|
6584 |
-
#: app/libraries/main.php:
|
6585 |
#: app/skins/carousel/render.php:159 app/skins/carousel/render.php:195
|
6586 |
-
#: app/skins/grid/render.php:
|
6587 |
-
#: app/skins/grid/render.php:
|
6588 |
#: app/skins/list/render.php:113 app/skins/list/render.php:198
|
6589 |
-
#: app/skins/masonry/render.php:179 app/skins/single.php:
|
6590 |
-
#: app/skins/single.php:
|
6591 |
#: app/skins/single/default.php:250 app/skins/single/default.php:460
|
6592 |
#: app/skins/single/default.php:462 app/skins/single/m1.php:130
|
6593 |
#: app/skins/single/m1.php:132 app/skins/single/m2.php:62
|
@@ -6598,14 +6776,14 @@ msgstr "Botó de registre"
|
|
6598 |
msgid "REGISTER"
|
6599 |
msgstr "REGISTRE"
|
6600 |
|
6601 |
-
#: app/libraries/main.php:
|
6602 |
msgid "View Detail Button"
|
6603 |
msgstr "Veure detall del botó"
|
6604 |
|
6605 |
-
#: app/libraries/main.php:
|
6606 |
-
#: app/skins/carousel/render.php:195 app/skins/grid/render.php:
|
6607 |
-
#: app/skins/grid/render.php:
|
6608 |
-
#: app/skins/grid/render.php:
|
6609 |
#: app/skins/list/render.php:198 app/skins/masonry/render.php:179
|
6610 |
#: app/skins/slider/render.php:113 app/skins/slider/render.php:161
|
6611 |
#: app/skins/slider/render.php:208 app/skins/slider/render.php:256
|
@@ -6613,79 +6791,79 @@ msgstr "Veure detall del botó"
|
|
6613 |
msgid "View Detail"
|
6614 |
msgstr "Veure detall"
|
6615 |
|
6616 |
-
#: app/libraries/main.php:
|
6617 |
msgid "Event Detail Button"
|
6618 |
msgstr "Botó de detall de l'esdeveniment"
|
6619 |
|
6620 |
-
#: app/libraries/main.php:
|
6621 |
msgid "Event Detail"
|
6622 |
msgstr "Detalle de l'esdeveniment"
|
6623 |
|
6624 |
-
#: app/libraries/main.php:
|
6625 |
msgid "More Info Link"
|
6626 |
msgstr "Enllaç a Més Informació"
|
6627 |
|
6628 |
-
#: app/libraries/main.php:
|
6629 |
msgid "Ticket (Singular)"
|
6630 |
msgstr "Ticket (Singular)"
|
6631 |
|
6632 |
-
#: app/libraries/main.php:
|
6633 |
msgid "Tickets (Plural)"
|
6634 |
msgstr "Tickets (Plural)"
|
6635 |
|
6636 |
-
#: app/libraries/main.php:
|
6637 |
msgid "EventON"
|
6638 |
msgstr "EventON"
|
6639 |
|
6640 |
-
#: app/libraries/main.php:
|
6641 |
msgid "The Events Calendar"
|
6642 |
msgstr "The Events Calendar"
|
6643 |
|
6644 |
-
#: app/libraries/main.php:
|
6645 |
msgid "Events Schedule WP Plugin"
|
6646 |
msgstr "Plugin WP de Programació d'esdeveniments"
|
6647 |
|
6648 |
-
#: app/libraries/main.php:
|
6649 |
msgid "Calendarize It"
|
6650 |
msgstr "Posa-ho al calendari"
|
6651 |
|
6652 |
-
#: app/libraries/main.php:
|
6653 |
msgid "Event Espresso"
|
6654 |
msgstr "Esdeveniment Espresso"
|
6655 |
|
6656 |
-
#: app/libraries/main.php:
|
6657 |
msgid "Events Manager (Recurring)"
|
6658 |
msgstr "Gestor d'esdeveniments (recurrent)"
|
6659 |
|
6660 |
-
#: app/libraries/main.php:
|
6661 |
msgid "Events Manager (Single)"
|
6662 |
msgstr "Gestor d'esdeveniments (Únic)"
|
6663 |
|
6664 |
-
#: app/libraries/main.php:
|
6665 |
msgid "Confirmed"
|
6666 |
msgstr "Confirmat"
|
6667 |
|
6668 |
-
#: app/libraries/main.php:
|
6669 |
msgid "Rejected"
|
6670 |
msgstr "Rebutjada"
|
6671 |
|
6672 |
-
#: app/libraries/main.php:
|
6673 |
msgid "Pending"
|
6674 |
msgstr "Pendent"
|
6675 |
|
6676 |
-
#: app/libraries/main.php:
|
6677 |
msgid "Waiting"
|
6678 |
msgstr "Esperant"
|
6679 |
|
6680 |
-
#: app/libraries/main.php:
|
6681 |
msgid "Skin controller does not exist."
|
6682 |
msgstr "El controlador de tema no existeix."
|
6683 |
|
6684 |
-
#: app/libraries/main.php:
|
6685 |
msgid "Sold Out"
|
6686 |
msgstr "Esgotat"
|
6687 |
|
6688 |
-
#: app/libraries/main.php:
|
6689 |
#, fuzzy
|
6690 |
#| msgid "Ticket"
|
6691 |
msgid "Last Few Tickets"
|
@@ -6699,44 +6877,44 @@ msgstr "Si us plau revisa el teu email."
|
|
6699 |
msgid "Your booking is received."
|
6700 |
msgstr "S'ha rebut la vostra reserva."
|
6701 |
|
6702 |
-
#: app/libraries/notifications.php:
|
6703 |
msgid "Your booking is confirmed."
|
6704 |
msgstr "S'ha confirmat la vostra reserva."
|
6705 |
|
6706 |
-
#: app/libraries/notifications.php:
|
6707 |
msgid "booking canceled."
|
6708 |
msgstr "reserva cancel·lada."
|
6709 |
|
6710 |
-
#: app/libraries/notifications.php:
|
6711 |
msgid "A new booking is received."
|
6712 |
msgstr "Nova reserva rebuda."
|
6713 |
|
6714 |
-
#: app/libraries/notifications.php:
|
6715 |
msgid "A new event is added."
|
6716 |
msgstr "S'ha afegit un nou esdeveniment."
|
6717 |
|
6718 |
-
#: app/libraries/notifications.php:
|
6719 |
msgid "Your event is published."
|
6720 |
msgstr "L'esdeveniment ha estat publicat."
|
6721 |
|
6722 |
-
#: app/libraries/notifications.php:
|
6723 |
-
#: app/libraries/notifications.php:
|
6724 |
msgid "to"
|
6725 |
msgstr "a"
|
6726 |
|
6727 |
-
#: app/libraries/notifications.php:
|
6728 |
msgid "+ Add to Google Calendar"
|
6729 |
msgstr "+ Afegir Google Calendar"
|
6730 |
|
6731 |
-
#: app/libraries/notifications.php:
|
6732 |
msgid "+ iCal export"
|
6733 |
msgstr "Exportación + iCal"
|
6734 |
|
6735 |
-
#: app/libraries/notifications.php:
|
6736 |
msgid "Yes"
|
6737 |
msgstr "Sí"
|
6738 |
|
6739 |
-
#: app/libraries/notifications.php:
|
6740 |
msgid "No"
|
6741 |
msgstr "No"
|
6742 |
|
@@ -6779,7 +6957,7 @@ msgid "Fill other attendees information like the first form."
|
|
6779 |
msgstr "Ompliu informació d'altres assistents com el primer formulari."
|
6780 |
|
6781 |
#: app/modules/booking/steps/form.php:178
|
6782 |
-
#: app/modules/booking/steps/tickets.php:
|
6783 |
#: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:234
|
6784 |
msgid "Next"
|
6785 |
msgstr "Sigüent"
|
@@ -6792,12 +6970,17 @@ msgstr "Gràcies per la vostra reserva."
|
|
6792 |
msgid "Book Event"
|
6793 |
msgstr "Reservar esdeveniment"
|
6794 |
|
6795 |
-
#: app/modules/booking/steps/tickets.php:
|
6796 |
#, php-format
|
6797 |
msgid "Available %s: <span>%s</span>"
|
6798 |
msgstr "%s disponibles: <span>%s</span>"
|
6799 |
|
6800 |
-
#: app/modules/booking/steps/tickets.php:
|
|
|
|
|
|
|
|
|
|
|
6801 |
#, php-format
|
6802 |
msgid "The %s ticket is sold out. You can try another ticket or another date."
|
6803 |
msgstr ""
|
@@ -6820,7 +7003,7 @@ msgstr "Adreça de…"
|
|
6820 |
msgid "Get Directions"
|
6821 |
msgstr "Obtenir adreces"
|
6822 |
|
6823 |
-
#: app/modules/links/details.php:17 app/skins/single.php:
|
6824 |
msgid "Share this event"
|
6825 |
msgstr "Compartir aquest esdeveniment"
|
6826 |
|
@@ -6839,7 +7022,7 @@ msgstr "Data: %s"
|
|
6839 |
msgid "Time: %s"
|
6840 |
msgstr "Hora: %s"
|
6841 |
|
6842 |
-
#: app/modules/next-event/details.php:
|
6843 |
msgid "Next Occurrence"
|
6844 |
msgstr "Següent repetició"
|
6845 |
|
@@ -6847,7 +7030,7 @@ msgstr "Següent repetició"
|
|
6847 |
msgid "Go to occurrence page"
|
6848 |
msgstr "Ana a la pàgina de repetició"
|
6849 |
|
6850 |
-
#: app/modules/next-event/details.php:95 app/skins/single.php:
|
6851 |
#: app/skins/single/default.php:95 app/skins/single/default.php:307
|
6852 |
#: app/skins/single/m1.php:32 app/skins/single/modern.php:182
|
6853 |
msgid "Time"
|
@@ -6965,7 +7148,7 @@ msgstr "Esdeveniments per a %s"
|
|
6965 |
|
6966 |
#: app/skins/monthly_view/calendar.php:161
|
6967 |
#: app/skins/monthly_view/calendar_clean.php:175
|
6968 |
-
#: app/skins/timetable/render.php:
|
6969 |
msgid "No Events"
|
6970 |
msgstr "Sense esdeveniments"
|
6971 |
|
@@ -6973,27 +7156,27 @@ msgstr "Sense esdeveniments"
|
|
6973 |
msgid "Home"
|
6974 |
msgstr "Inici"
|
6975 |
|
6976 |
-
#: app/skins/single.php:
|
6977 |
#: app/skins/single/m1.php:251 app/skins/single/m2.php:178
|
6978 |
#: app/skins/single/modern.php:260
|
6979 |
msgid "Sold out!"
|
6980 |
msgstr "Esgotat!"
|
6981 |
|
6982 |
-
#: app/skins/single.php:
|
6983 |
#: app/skins/single/default.php:220 app/skins/single/default.php:432
|
6984 |
#: app/skins/single/m1.php:104 app/skins/single/m2.php:36
|
6985 |
#: app/skins/single/modern.php:45
|
6986 |
msgid "Phone"
|
6987 |
msgstr "Telèfon"
|
6988 |
|
6989 |
-
#: app/skins/single.php:
|
6990 |
#: app/skins/single/default.php:234 app/skins/single/default.php:446
|
6991 |
#: app/skins/single/m1.php:118 app/skins/single/m2.php:50
|
6992 |
#: app/skins/single/modern.php:59
|
6993 |
msgid "Website"
|
6994 |
msgstr "Web"
|
6995 |
|
6996 |
-
#: app/skins/single.php:
|
6997 |
msgid "Speakers:"
|
6998 |
msgstr "Ponents:"
|
6999 |
|
@@ -7095,6 +7278,23 @@ msgstr "Equipo de Webnus"
|
|
7095 |
msgid "http://webnus.net"
|
7096 |
msgstr "http://webnus.net"
|
7097 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7098 |
#~ msgid "%s tickets"
|
7099 |
#~ msgstr "%s entrades"
|
7100 |
|
@@ -7187,16 +7387,6 @@ msgstr "http://webnus.net"
|
|
7187 |
#~ msgid "Status & Invoice"
|
7188 |
#~ msgstr "%s Factura"
|
7189 |
|
7190 |
-
#, fuzzy
|
7191 |
-
#~| msgid "Payment Gateways"
|
7192 |
-
#~ msgid "Payment"
|
7193 |
-
#~ msgstr "Pasarelas de pago"
|
7194 |
-
|
7195 |
-
#, fuzzy
|
7196 |
-
#~| msgid "Popular Gateways"
|
7197 |
-
#~ msgid "Gateway"
|
7198 |
-
#~ msgstr "Pasarelas de pago populares"
|
7199 |
-
|
7200 |
#, fuzzy
|
7201 |
#~| msgid "Booking cancellation link."
|
7202 |
#~ msgid "Cancellation Date"
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Plugins - Modern Events Calendar Lite - Stable (latest "
|
6 |
"release)\n"
|
7 |
+
"POT-Creation-Date: 2019-12-24 16:38+0330\n"
|
8 |
+
"PO-Revision-Date: 2019-12-24 16:38+0330\n"
|
9 |
"Last-Translator: \n"
|
10 |
"Language-Team: \n"
|
11 |
"Language: ca\n"
|
25 |
msgid "Content"
|
26 |
msgstr "Contingut"
|
27 |
|
28 |
+
#: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:375
|
29 |
+
#: app/features/mec.php:406 app/features/mec.php:436
|
30 |
msgid "Shortcode"
|
31 |
msgstr "Shortcode"
|
32 |
|
60 |
msgid "Event Color"
|
61 |
msgstr "Color de l'esdeveniment"
|
62 |
|
63 |
+
#: app/features/contextual.php:55 app/features/mec.php:355
|
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:591
|
66 |
msgid "Settings"
|
67 |
msgstr "Configuració"
|
68 |
|
69 |
+
#: app/features/contextual.php:62 app/features/events.php:2463
|
70 |
#: app/features/mec/booking.php:439 app/features/mec/support.php:29
|
71 |
#: app/libraries/main.php:557
|
72 |
msgid "Booking Form"
|
230 |
msgid "Frontend Event Submission"
|
231 |
msgstr "Presentació de l'esdeveniment Frontend"
|
232 |
|
233 |
+
#: app/features/contextual.php:298 app/features/events.php:332
|
234 |
#: app/libraries/main.php:546
|
235 |
msgid "Exceptional Days"
|
236 |
msgstr "Dies excepcionals"
|
237 |
|
238 |
+
#: app/features/contextual.php:308 app/features/events.php:305
|
239 |
#: app/features/mec/booking.php:88 app/features/mec/notifications.php:34
|
240 |
#: app/libraries/main.php:553 app/libraries/main.php:574
|
241 |
#: app/libraries/main.php:656
|
247 |
msgid "Coupons"
|
248 |
msgstr "Cupons"
|
249 |
|
250 |
+
#: app/features/contextual.php:326 app/features/mec/modules.php:329
|
251 |
#: app/libraries/main.php:570
|
252 |
msgid "BuddyPress Integration"
|
253 |
msgstr "Integració de BuddyPress"
|
261 |
msgid "MEC Activation"
|
262 |
msgstr "Activació MEC"
|
263 |
|
264 |
+
#: app/features/events.php:157 app/features/ix/export.php:34
|
265 |
#: app/features/mec/dashboard.php:255 app/skins/daily_view/tpl.php:79
|
266 |
#: app/skins/monthly_view/tpl.php:70 app/skins/tile/tpl.php:69
|
267 |
#: app/skins/yearly_view/tpl.php:68
|
268 |
msgid "Events"
|
269 |
msgstr "Esdeveniments"
|
270 |
|
271 |
+
#: app/features/events.php:158 app/features/fes.php:223
|
272 |
#: app/features/mec/meta_boxes/display_options.php:959
|
273 |
#: app/features/mec/meta_boxes/display_options.php:1015
|
274 |
#: app/features/mec/meta_boxes/display_options.php:1050
|
278 |
msgid "Event"
|
279 |
msgstr "Esdeveniment"
|
280 |
|
281 |
+
#: app/features/events.php:159 app/features/mec.php:341
|
282 |
msgid "Add Event"
|
283 |
msgstr "Nou Esdeveniment"
|
284 |
|
285 |
+
#: app/features/events.php:160 app/features/mec/dashboard.php:133
|
286 |
msgid "Add New Event"
|
287 |
msgstr "Afegir nou esdeveniment"
|
288 |
|
289 |
+
#: app/features/events.php:161 app/features/ix.php:3752
|
290 |
#: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:58
|
291 |
msgid "No events found!"
|
292 |
msgstr "No hi ha esdeveniments!"
|
293 |
|
294 |
+
#: app/features/events.php:162
|
295 |
msgid "All Events"
|
296 |
msgstr "Tots els esdeveniments"
|
297 |
|
298 |
+
#: app/features/events.php:163
|
299 |
msgid "Edit Event"
|
300 |
msgstr "Editar Esdeveniment"
|
301 |
|
302 |
+
#: app/features/events.php:164 app/features/fes/list.php:82
|
303 |
msgid "View Event"
|
304 |
msgstr "Veure Esdeveniment"
|
305 |
|
306 |
+
#: app/features/events.php:165
|
307 |
msgid "No events found in Trash!"
|
308 |
msgstr "No hi ha esdeveniments a la paperera!"
|
309 |
|
310 |
+
#: app/features/events.php:182 app/features/events.php:3310
|
311 |
#: app/features/mec/meta_boxes/display_options.php:870
|
312 |
#: app/features/mec/meta_boxes/search_form.php:31
|
313 |
#: app/features/mec/meta_boxes/search_form.php:93
|
321 |
#: app/features/mec/meta_boxes/search_form.php:575
|
322 |
#: app/features/mec/meta_boxes/search_form.php:672
|
323 |
#: app/features/mec/settings.php:796 app/features/mec/single.php:204
|
324 |
+
#: app/features/search.php:67 app/libraries/main.php:5066
|
325 |
+
#: app/libraries/skins.php:811 app/skins/single.php:560
|
326 |
#: app/skins/single/default.php:185 app/skins/single/default.php:397
|
327 |
#: app/skins/single/m1.php:174 app/skins/single/m2.php:106
|
328 |
#: app/skins/single/modern.php:114
|
329 |
msgid "Category"
|
330 |
msgstr "Categoria"
|
331 |
|
332 |
+
#: app/features/events.php:183 app/features/events.php:3265
|
333 |
+
#: app/features/fes/form.php:746 app/features/mec.php:343
|
334 |
+
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5065
|
335 |
msgid "Categories"
|
336 |
msgstr "Categories"
|
337 |
|
338 |
+
#: app/features/events.php:193 app/features/labels.php:71
|
339 |
#: app/features/locations.php:69 app/features/organizers.php:69
|
340 |
#: app/features/speakers.php:72
|
341 |
#, php-format
|
342 |
msgid "All %s"
|
343 |
msgstr "Tots %s"
|
344 |
|
345 |
+
#: app/features/events.php:194 app/features/labels.php:72
|
346 |
#: app/features/locations.php:70 app/features/organizers.php:70
|
347 |
#: app/features/speakers.php:73
|
348 |
#, php-format
|
349 |
msgid "Edit %s"
|
350 |
msgstr "Editar %s"
|
351 |
|
352 |
+
#: app/features/events.php:195 app/features/labels.php:73
|
353 |
#: app/features/locations.php:71 app/features/organizers.php:71
|
354 |
#: app/features/speakers.php:74
|
355 |
#, php-format
|
356 |
msgid "View %s"
|
357 |
msgstr "Veure %s"
|
358 |
|
359 |
+
#: app/features/events.php:196 app/features/labels.php:74
|
360 |
#: app/features/locations.php:72 app/features/organizers.php:72
|
361 |
#: app/features/speakers.php:75
|
362 |
#, php-format
|
363 |
msgid "Update %s"
|
364 |
msgstr "Actualitzar %s"
|
365 |
|
366 |
+
#: app/features/events.php:197 app/features/labels.php:75
|
367 |
#: app/features/locations.php:73 app/features/organizers.php:73
|
368 |
#: app/features/speakers.php:76
|
369 |
#, php-format
|
370 |
msgid "Add New %s"
|
371 |
msgstr "Afegir nou %s"
|
372 |
|
373 |
+
#: app/features/events.php:198 app/features/labels.php:76
|
374 |
#: app/features/locations.php:74 app/features/organizers.php:74
|
375 |
#: app/features/speakers.php:77
|
376 |
#, php-format
|
377 |
msgid "New %s Name"
|
378 |
msgstr "Nou %s Nom"
|
379 |
|
380 |
+
#: app/features/events.php:199 app/features/labels.php:77
|
381 |
#: app/features/locations.php:75 app/features/organizers.php:75
|
382 |
#: app/features/speakers.php:78
|
383 |
#, php-format
|
384 |
msgid "Popular %s"
|
385 |
msgstr "Popular %s"
|
386 |
|
387 |
+
#: app/features/events.php:200 app/features/labels.php:78
|
388 |
#: app/features/locations.php:76 app/features/organizers.php:76
|
389 |
#: app/features/speakers.php:79
|
390 |
#, php-format
|
391 |
msgid "Search %s"
|
392 |
msgstr "Cercar %s"
|
393 |
|
394 |
+
#: app/features/events.php:225 app/features/events.php:246
|
395 |
msgid "Category Icon"
|
396 |
msgstr "Icona de categoria"
|
397 |
|
398 |
+
#: app/features/events.php:228 app/features/events.php:251
|
399 |
msgid "Select icon"
|
400 |
msgstr "Seleccionar icona"
|
401 |
|
402 |
+
#: app/features/events.php:300
|
403 |
msgid "Event Details"
|
404 |
msgstr "Detall d'esdeveniment"
|
405 |
|
406 |
+
#: app/features/events.php:329
|
407 |
msgid "FES Details"
|
408 |
msgstr "Detall d'esdeveniment"
|
409 |
|
410 |
+
#: app/features/events.php:330
|
411 |
msgid "Date And Time"
|
412 |
msgstr "Data i Hora"
|
413 |
|
414 |
+
#: app/features/events.php:331 app/features/fes/form.php:342
|
415 |
msgid "Event Repeating"
|
416 |
msgstr "Repetir l'esdeveniment"
|
417 |
|
418 |
+
#: app/features/events.php:333 app/features/events.php:1278
|
419 |
+
#: app/features/mec/settings.php:706 app/skins/single.php:931
|
420 |
msgid "Hourly Schedule"
|
421 |
msgstr "Programació horària"
|
422 |
|
423 |
+
#: app/features/events.php:334
|
424 |
msgid "Location/Venue"
|
425 |
msgstr "Localització"
|
426 |
|
427 |
+
#: app/features/events.php:335
|
428 |
msgid "Links"
|
429 |
msgstr "Enllaç"
|
430 |
|
431 |
+
#: app/features/events.php:336 app/features/events.php:3312
|
432 |
+
#: app/features/events.php:3503 app/features/events.php:3545
|
433 |
#: app/features/ix.php:3373 app/features/ix.php:3414
|
434 |
#: app/features/mec/meta_boxes/display_options.php:873
|
435 |
#: app/features/mec/meta_boxes/search_form.php:45
|
447 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
448 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
449 |
#: app/features/organizers.php:271 app/features/search.php:75
|
450 |
+
#: app/libraries/main.php:5072 app/libraries/skins.php:863
|
451 |
+
#: app/skins/single.php:796 app/skins/single/default.php:210
|
452 |
#: app/skins/single/default.php:422 app/skins/single/m1.php:94
|
453 |
#: app/skins/single/m2.php:26 app/skins/single/modern.php:35
|
454 |
msgid "Organizer"
|
455 |
msgstr "Organitzador"
|
456 |
|
457 |
+
#: app/features/events.php:337 app/features/events.php:1164
|
458 |
+
#: app/features/fes/form.php:719 app/libraries/main.php:5099
|
459 |
+
#: app/skins/single.php:583 app/skins/single/default.php:119
|
460 |
#: app/skins/single/default.php:331 app/skins/single/m1.php:53
|
461 |
#: app/skins/single/modern.php:203
|
462 |
msgid "Cost"
|
463 |
msgstr "Cost"
|
464 |
|
465 |
+
#: app/features/events.php:474
|
466 |
msgid "Note for reviewer"
|
467 |
msgstr "Nota per a l'encarregat"
|
468 |
|
469 |
+
#: app/features/events.php:480
|
470 |
msgid "Guest Data"
|
471 |
msgstr "Dades de l'invitat"
|
472 |
|
473 |
+
#: app/features/events.php:481 app/features/events.php:2445
|
474 |
+
#: app/features/events.php:3709 app/features/events.php:3941
|
475 |
#: app/features/fes.php:223 app/features/fes/form.php:678
|
476 |
#: app/features/labels.php:178 app/features/mec/booking.php:45
|
477 |
#: app/features/organizers.php:279 app/features/profile/profile.php:180
|
478 |
+
#: app/libraries/notifications.php:1017 app/modules/booking/steps/form.php:37
|
479 |
msgid "Name"
|
480 |
msgstr "Nom"
|
481 |
|
482 |
+
#: app/features/events.php:482 app/features/events.php:2456
|
483 |
+
#: app/features/events.php:2532 app/features/events.php:3712
|
484 |
+
#: app/features/events.php:3944 app/features/fes.php:223
|
485 |
#: app/features/fes/form.php:674 app/features/mec/booking.php:57
|
486 |
#: app/features/mec/booking.php:490 app/features/organizers.php:111
|
487 |
#: app/features/organizers.php:152 app/features/profile/profile.php:183
|
488 |
#: app/features/speakers.php:126 app/features/speakers.php:187
|
489 |
+
#: app/libraries/main.php:1483 app/libraries/main.php:1552
|
490 |
+
#: app/libraries/main.php:2752 app/libraries/notifications.php:1018
|
491 |
#: app/modules/booking/steps/form.php:46 app/modules/booking/steps/form.php:83
|
492 |
+
#: app/skins/single.php:813 app/skins/single.php:868
|
493 |
#: app/skins/single/default.php:227 app/skins/single/default.php:439
|
494 |
#: app/skins/single/m1.php:111 app/skins/single/m2.php:43
|
495 |
#: app/skins/single/modern.php:52
|
496 |
msgid "Email"
|
497 |
msgstr "Correu electrònic"
|
498 |
|
499 |
+
#: app/features/events.php:490 app/features/fes/form.php:242
|
500 |
msgid "Date and Time"
|
501 |
msgstr "Date And Time"
|
502 |
|
503 |
+
#: app/features/events.php:493 app/features/events.php:499
|
504 |
+
#: app/features/events.php:3313 app/features/events.php:3503
|
505 |
+
#: app/features/events.php:3545 app/features/fes/form.php:246
|
506 |
#: app/features/fes/form.php:250 app/features/ix.php:3373
|
507 |
#: app/features/ix.php:3414 app/features/ix/import_g_calendar.php:38
|
508 |
#: app/features/mec/dashboard.php:399
|
524 |
msgid "Start Date"
|
525 |
msgstr "Data d'inici"
|
526 |
|
527 |
+
#: app/features/events.php:571 app/features/events.php:663
|
528 |
+
#: app/features/events.php:1718 app/features/events.php:1777
|
529 |
+
#: app/features/events.php:1970 app/features/events.php:2009
|
530 |
#: app/features/fes/form.php:278 app/features/fes/form.php:318
|
531 |
msgid "AM"
|
532 |
msgstr "AM"
|
533 |
|
534 |
+
#: app/features/events.php:578 app/features/events.php:670
|
535 |
+
#: app/features/events.php:1725 app/features/events.php:1784
|
536 |
+
#: app/features/events.php:1971 app/features/events.php:2010
|
537 |
#: app/features/fes/form.php:279 app/features/fes/form.php:319
|
538 |
msgid "PM"
|
539 |
msgstr "PM"
|
540 |
|
541 |
+
#: app/features/events.php:585 app/features/events.php:590
|
542 |
+
#: app/features/events.php:3314 app/features/events.php:3503
|
543 |
+
#: app/features/events.php:3545 app/features/fes/form.php:286
|
544 |
#: app/features/fes/form.php:290 app/features/ix.php:3373
|
545 |
#: app/features/ix.php:3414 app/features/ix/import_g_calendar.php:44
|
546 |
#: app/features/mec/dashboard.php:400
|
547 |
msgid "End Date"
|
548 |
msgstr "Data final"
|
549 |
|
550 |
+
#: app/features/events.php:684 app/features/fes/form.php:325
|
551 |
msgid "All Day Event"
|
552 |
msgstr "Esdeveniment de tot el dia"
|
553 |
|
554 |
+
#: app/features/events.php:694 app/features/fes/form.php:328
|
555 |
msgid "Hide Event Time"
|
556 |
msgstr "Ocultar l'hora de l'esdeveniment"
|
557 |
|
558 |
+
#: app/features/events.php:704 app/features/fes/form.php:331
|
559 |
msgid "Hide Event End Time"
|
560 |
msgstr "Oculta l'hora de finalització de l'esdeveniment"
|
561 |
|
562 |
+
#: app/features/events.php:709 app/features/events.php:713
|
563 |
#: app/features/fes/form.php:335
|
564 |
msgid "Time Comment"
|
565 |
msgstr "Temps per comentar"
|
566 |
|
567 |
+
#: app/features/events.php:714 app/features/fes/form.php:336
|
568 |
msgid ""
|
569 |
"It shows next to event time on single event page. You can insert Timezone "
|
570 |
"etc. in this field."
|
572 |
"Mostra l'hora de el següent Esdeveniment al calendari. Pots inserir Zona "
|
573 |
"horària, etc a aquest camp."
|
574 |
|
575 |
+
#: app/features/events.php:716 app/features/events.php:837
|
576 |
+
#: app/features/events.php:1137 app/features/events.php:1204
|
577 |
+
#: app/features/events.php:1503 app/features/events.php:1595
|
578 |
+
#: app/features/events.php:1805 app/features/events.php:1820
|
579 |
+
#: app/features/events.php:2029 app/features/events.php:2042
|
580 |
+
#: app/features/events.php:2193 app/features/events.php:2229
|
581 |
+
#: app/features/events.php:2327 app/features/events.php:2342
|
582 |
+
#: app/features/events.php:2372 app/features/events.php:2385
|
583 |
#: app/features/fes/form.php:640 app/features/locations.php:299
|
584 |
#: app/features/mec/booking.php:108 app/features/mec/booking.php:158
|
585 |
#: app/features/mec/booking.php:171 app/features/mec/booking.php:187
|
621 |
#: app/features/mec/meta_boxes/display_options.php:1324
|
622 |
#: app/features/mec/modules.php:53 app/features/mec/modules.php:86
|
623 |
#: app/features/mec/modules.php:103 app/features/mec/modules.php:138
|
624 |
+
#: app/features/mec/modules.php:154 app/features/mec/modules.php:317
|
625 |
#: app/features/mec/notifications.php:53 app/features/mec/notifications.php:114
|
626 |
#: app/features/mec/notifications.php:170
|
627 |
#: app/features/mec/notifications.php:238
|
644 |
#: app/features/mec/single.php:110 app/features/mec/single.php:124
|
645 |
#: app/features/mec/single.php:162 app/features/mec/styling.php:203
|
646 |
#: app/features/mec/styling.php:220 app/features/mec/styling.php:233
|
647 |
+
#: app/features/organizers.php:272 app/skins/single.php:658
|
648 |
#: app/skins/single/default.php:134 app/skins/single/default.php:346
|
649 |
#: app/skins/single/m1.php:196 app/skins/single/m2.php:129
|
650 |
#: app/skins/single/modern.php:137
|
651 |
msgid "Read More"
|
652 |
msgstr "Llegir més"
|
653 |
|
654 |
+
#: app/features/events.php:724
|
655 |
msgid "Repeating"
|
656 |
msgstr "Repetint"
|
657 |
|
658 |
+
#: app/features/events.php:733
|
659 |
msgid "Event Repeating (Recurring events)"
|
660 |
msgstr "Repetir l'esdeveniment"
|
661 |
|
662 |
+
#: app/features/events.php:737 app/features/fes/form.php:346
|
663 |
msgid "Repeats"
|
664 |
msgstr "Repeticions"
|
665 |
|
666 |
+
#: app/features/events.php:745 app/features/fes/form.php:348
|
667 |
#: app/features/mec/dashboard.php:402
|
668 |
#: app/skins/default_full_calendar/tpl.php:69
|
669 |
#: app/skins/full_calendar/tpl.php:110
|
670 |
msgid "Daily"
|
671 |
msgstr "Diàriament"
|
672 |
|
673 |
+
#: app/features/events.php:752 app/features/fes/form.php:349
|
674 |
msgid "Every Weekday"
|
675 |
msgstr "Cada dia de la setmana"
|
676 |
|
677 |
+
#: app/features/events.php:759 app/features/fes/form.php:350
|
678 |
msgid "Every Weekend"
|
679 |
msgstr "Cada cap de setmana"
|
680 |
|
681 |
+
#: app/features/events.php:766 app/features/fes/form.php:351
|
682 |
msgid "Certain Weekdays"
|
683 |
msgstr "Certs dies de la setmana"
|
684 |
|
685 |
+
#: app/features/events.php:773 app/features/fes/form.php:352
|
686 |
#: app/skins/default_full_calendar/tpl.php:68
|
687 |
#: app/skins/full_calendar/tpl.php:109
|
688 |
msgid "Weekly"
|
689 |
msgstr "Setmanal"
|
690 |
|
691 |
+
#: app/features/events.php:780 app/features/fes/form.php:353
|
692 |
#: app/features/mec/dashboard.php:403
|
693 |
#: app/skins/default_full_calendar/tpl.php:67
|
694 |
#: app/skins/full_calendar/tpl.php:108
|
695 |
msgid "Monthly"
|
696 |
msgstr "Mensual"
|
697 |
|
698 |
+
#: app/features/events.php:787 app/features/fes/form.php:354
|
699 |
#: app/features/mec/dashboard.php:404
|
700 |
#: app/skins/default_full_calendar/tpl.php:66
|
701 |
#: app/skins/full_calendar/tpl.php:107
|
702 |
msgid "Yearly"
|
703 |
msgstr "Anual"
|
704 |
|
705 |
+
#: app/features/events.php:794 app/features/fes/form.php:355
|
706 |
msgid "Custom Days"
|
707 |
msgstr "Dies personalitzats"
|
708 |
|
709 |
+
#: app/features/events.php:801 app/features/fes/form.php:356
|
710 |
msgid "Advanced"
|
711 |
msgstr "Mètode avançat"
|
712 |
|
713 |
+
#: app/features/events.php:806 app/features/fes/form.php:360
|
714 |
msgid "Repeat Interval"
|
715 |
msgstr "Interval de repetició"
|
716 |
|
717 |
+
#: app/features/events.php:808 app/features/fes/form.php:361
|
718 |
msgid "Repeat interval"
|
719 |
msgstr "Interval de repetició"
|
720 |
|
721 |
+
#: app/features/events.php:812 app/features/fes/form.php:364
|
722 |
msgid "Week Days"
|
723 |
msgstr "Dies de setmana"
|
724 |
|
725 |
+
#: app/features/events.php:827 app/features/events.php:1889
|
726 |
+
#: app/features/events.php:1917 app/features/events.php:2097
|
727 |
#: app/features/fes/form.php:376 app/features/ix/import_f_calendar.php:42
|
728 |
#: app/features/ix/import_g_calendar.php:51
|
729 |
#: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
|
730 |
msgid "Start"
|
731 |
msgstr "Inici"
|
732 |
|
733 |
+
#: app/features/events.php:829 app/features/events.php:1893
|
734 |
+
#: app/features/events.php:1921 app/features/events.php:2101
|
735 |
#: app/features/fes/form.php:377
|
736 |
msgid "End"
|
737 |
msgstr "Fi"
|
738 |
|
739 |
+
#: app/features/events.php:831 app/features/events.php:1198
|
740 |
+
#: app/features/events.php:1309 app/features/events.php:1414
|
741 |
+
#: app/features/events.php:1872 app/features/events.php:2086
|
742 |
+
#: app/features/events.php:2166 app/features/events.php:2299
|
743 |
#: app/features/fes/form.php:378 app/features/fes/form.php:844
|
744 |
msgid "Add"
|
745 |
msgstr "Afegir"
|
746 |
|
747 |
+
#: app/features/events.php:834
|
748 |
msgid "Custom Days Repeating"
|
749 |
msgstr "Dies personalitzats"
|
750 |
|
751 |
+
#: app/features/events.php:835
|
752 |
msgid ""
|
753 |
"Add certain days to event occurrence dates. If you have single day event, "
|
754 |
"start and end date should be the same, If you have multiple day event the "
|
759 |
"Si teniu un esdeveniment de diversos dies, les dates d'inici i final han de "
|
760 |
"ser proporcionals a la data inicial."
|
761 |
|
762 |
+
#: app/features/events.php:871 app/features/fes/form.php:404
|
763 |
msgid "First"
|
764 |
msgstr "Primer"
|
765 |
|
766 |
+
#: app/features/events.php:913 app/features/fes/form.php:446
|
767 |
msgid "Second"
|
768 |
msgstr "Segon"
|
769 |
|
770 |
+
#: app/features/events.php:955 app/features/fes/form.php:488
|
771 |
msgid "Third"
|
772 |
msgstr "Tercer"
|
773 |
|
774 |
+
#: app/features/events.php:997 app/features/fes/form.php:530
|
775 |
msgid "Fourth"
|
776 |
msgstr "Quart"
|
777 |
|
778 |
+
#: app/features/events.php:1039 app/features/fes/form.php:572
|
779 |
msgid "Last"
|
780 |
msgstr "Últim"
|
781 |
|
782 |
+
#: app/features/events.php:1086 app/features/fes/form.php:618
|
783 |
msgid "Ends Repeat"
|
784 |
msgstr "Finalitza la repetició"
|
785 |
|
786 |
+
#: app/features/events.php:1098 app/features/fes/form.php:622
|
787 |
msgid "Never"
|
788 |
msgstr "Mai"
|
789 |
|
790 |
+
#: app/features/events.php:1110 app/features/fes/form.php:627
|
791 |
msgid "On"
|
792 |
msgstr "En"
|
793 |
|
794 |
+
#: app/features/events.php:1126 app/features/fes/form.php:634
|
795 |
msgid "After"
|
796 |
msgstr "Després"
|
797 |
|
798 |
+
#: app/features/events.php:1130 app/features/events.php:1134
|
799 |
#: app/features/fes/form.php:636 app/features/fes/form.php:639
|
800 |
msgid "Occurrences times"
|
801 |
msgstr "Ocurrències de l'esdeveniment"
|
802 |
|
803 |
+
#: app/features/events.php:1135 app/features/fes/form.php:640
|
804 |
msgid ""
|
805 |
"The event will finish after certain repeats. For example if you set it to "
|
806 |
"10, the event will finish after 10 repeats."
|
808 |
"L'esdeveniment finalitzarà després de certes repeticions. Per exemple, si "
|
809 |
"estableixes en 10, el Esdeveniment acabarà després de 10 repeticions."
|
810 |
|
811 |
+
#: app/features/events.php:1160 app/features/events.php:3503
|
812 |
+
#: app/features/events.php:3545 app/features/fes/form.php:716
|
813 |
#: app/features/ix.php:3373 app/features/ix.php:3414
|
814 |
+
#: app/features/mec/settings.php:652 app/libraries/main.php:5098
|
815 |
#: app/widgets/single.php:103
|
816 |
msgid "Event Cost"
|
817 |
msgstr "Cost de l'esdeveniment"
|
818 |
|
819 |
+
#: app/features/events.php:1185
|
820 |
msgid "Exceptional Days (Exclude Dates)"
|
821 |
msgstr "Dies excepcionals"
|
822 |
|
823 |
+
#: app/features/events.php:1191 app/features/events.php:1201
|
824 |
msgid "Exclude certain days"
|
825 |
msgstr "Excloure certs dies"
|
826 |
|
827 |
+
#: app/features/events.php:1196 app/features/events.php:2533
|
828 |
#: app/features/fes.php:223 app/features/mec/booking.php:491
|
829 |
+
#: app/features/profile/profile.php:53 app/libraries/main.php:2186
|
830 |
+
#: app/libraries/main.php:2810 app/modules/booking/steps/tickets.php:22
|
831 |
+
#: app/modules/next-event/details.php:90 app/skins/single.php:638
|
832 |
#: app/skins/single/default.php:83 app/skins/single/default.php:295
|
833 |
#: app/skins/single/m1.php:20 app/skins/single/modern.php:170
|
834 |
msgid "Date"
|
835 |
msgstr "Data"
|
836 |
|
837 |
+
#: app/features/events.php:1202
|
838 |
msgid ""
|
839 |
"Exclude certain days from event occurrence dates. Please note that you can "
|
840 |
"exclude only single day occurrences and you cannot exclude one day from "
|
844 |
"Tingueu en compte que només podeu excloure les ocurrències d’un sol dia i no "
|
845 |
"podeu excloure un dia de les coincidències de diversos dies."
|
846 |
|
847 |
+
#: app/features/events.php:1256 app/libraries/render.php:471
|
848 |
msgid "Day 1"
|
849 |
msgstr "Dia 1"
|
850 |
|
851 |
+
#: app/features/events.php:1282
|
852 |
msgid "Add Day"
|
853 |
msgstr "Afegeix dia"
|
854 |
|
855 |
+
#: app/features/events.php:1283
|
856 |
msgid ""
|
857 |
"Add new days for schedule. For example if your event is multiple days, you "
|
858 |
"can add a different schedule for each day!"
|
860 |
"Afegiu nous dies per al programa. Per exemple, si el vostre esdeveniment és "
|
861 |
"de diversos dies, podeu afegir una programació diferent per a cada dia!"
|
862 |
|
863 |
+
#: app/features/events.php:1290
|
864 |
#, php-format
|
865 |
msgid "Day %s"
|
866 |
msgstr "Dia %s"
|
867 |
|
868 |
+
#: app/features/events.php:1294 app/features/events.php:1333
|
869 |
+
#: app/features/events.php:1368 app/features/events.php:1400
|
870 |
+
#: app/features/events.php:1429 app/features/events.php:2314
|
871 |
+
#: app/features/events.php:2361 app/features/events.php:3309
|
872 |
+
#: app/features/events.php:3503 app/features/events.php:3545
|
873 |
#: app/features/fes/form.php:235 app/features/ix.php:3373
|
874 |
#: app/features/ix.php:3414 app/features/mec/booking.php:375
|
875 |
#: app/features/mec/booking.php:407 app/features/mec/styling.php:115
|
876 |
msgid "Title"
|
877 |
msgstr "Títol"
|
878 |
|
879 |
+
#: app/features/events.php:1303 app/features/events.php:1340
|
880 |
+
#: app/features/events.php:1373 app/features/events.php:1408
|
881 |
+
#: app/features/events.php:1434 app/features/events.php:1903
|
882 |
+
#: app/features/events.php:1929 app/features/events.php:2107
|
883 |
+
#: app/features/events.php:2206 app/features/events.php:2242
|
884 |
+
#: app/features/events.php:2349 app/features/events.php:2391
|
885 |
#: app/features/mec/booking.php:318 app/features/mec/booking.php:347
|
886 |
#: app/features/mec/booking.php:398 app/features/mec/booking.php:430
|
887 |
+
#: app/libraries/main.php:2671 app/libraries/main.php:2701
|
888 |
+
#: app/libraries/main.php:2730 app/libraries/main.php:2760
|
889 |
+
#: app/libraries/main.php:2789 app/libraries/main.php:2818
|
890 |
+
#: app/libraries/main.php:2847 app/libraries/main.php:2876
|
891 |
+
#: app/libraries/main.php:2898 app/libraries/main.php:2929
|
892 |
+
#: app/libraries/main.php:2973 app/libraries/main.php:3017
|
893 |
+
#: app/libraries/main.php:3064 app/libraries/main.php:3103
|
894 |
msgid "Remove"
|
895 |
msgstr "Eliminar"
|
896 |
|
897 |
+
#: app/features/events.php:1310 app/features/events.php:1415
|
898 |
msgid "Add new hourly schedule row"
|
899 |
msgstr "Afegir nova línia programa horari"
|
900 |
|
901 |
+
#: app/features/events.php:1325 app/features/events.php:1362
|
902 |
+
#: app/features/events.php:1424
|
903 |
msgid "From e.g. 8:15"
|
904 |
msgstr "Des de ex. 8:15"
|
905 |
|
906 |
+
#: app/features/events.php:1329 app/features/events.php:1365
|
907 |
+
#: app/features/events.php:1426
|
908 |
msgid "To e.g. 8:45"
|
909 |
msgstr "Fins a ex. 8:45"
|
910 |
|
911 |
+
#: app/features/events.php:1337 app/features/events.php:1371
|
912 |
+
#: app/features/events.php:1432 app/features/events.php:1793
|
913 |
+
#: app/features/events.php:2018
|
914 |
msgid "Description"
|
915 |
msgstr "Descripció"
|
916 |
|
917 |
+
#: app/features/events.php:1343 app/features/events.php:1376
|
918 |
+
#: app/features/events.php:1437 app/features/fes/form.php:840
|
919 |
+
#: app/features/mec.php:351 app/features/mec/modules.php:52
|
920 |
#: app/features/mec/settings.php:700 app/features/speakers.php:62
|
921 |
+
#: app/libraries/main.php:562 app/libraries/main.php:5073
|
922 |
#: app/modules/speakers/details.php:18
|
923 |
msgid "Speakers"
|
924 |
msgstr "Ponents"
|
925 |
|
926 |
+
#: app/features/events.php:1396 app/features/events.php:1404
|
927 |
msgid "New Day"
|
928 |
msgstr "Nou dia"
|
929 |
|
930 |
+
#: app/features/events.php:1468 app/features/fes/form.php:693
|
931 |
#: app/features/mec/settings.php:646
|
932 |
msgid "Event Links"
|
933 |
msgstr "Enlklaços d'esdeveniments"
|
934 |
|
935 |
+
#: app/features/events.php:1471 app/features/events.php:1477
|
936 |
+
#: app/features/fes/form.php:695 app/libraries/main.php:5096
|
937 |
msgid "Event Link"
|
938 |
msgstr "Enllaç de l'esdeveniment"
|
939 |
|
940 |
+
#: app/features/events.php:1474 app/features/events.php:1490
|
941 |
#: app/features/fes/form.php:696 app/features/fes/form.php:701
|
942 |
msgid "eg. http://yoursite.com/your-event"
|
943 |
msgstr "eg. http://yoursite.com/your-event"
|
944 |
|
945 |
+
#: app/features/events.php:1478
|
946 |
msgid ""
|
947 |
"If you fill it, it will be replaced instead of default event page link. "
|
948 |
"Insert full link including http(s):// - Also, if you use advertising URL, "
|
952 |
"l'esdeveniment per defecte. Insereix tot l'enllaç incloent http (s): //- A "
|
953 |
"més, si utilitzeu URL de publicitat, podeu utilitzar URL escurçat"
|
954 |
|
955 |
+
#: app/features/events.php:1480
|
956 |
msgid "URL Shortener"
|
957 |
msgstr "URL curta"
|
958 |
|
959 |
+
#: app/features/events.php:1487 app/features/events.php:1500
|
960 |
+
#: app/features/fes/form.php:700 app/libraries/main.php:5097
|
961 |
+
#: app/skins/single.php:657 app/skins/single/default.php:133
|
962 |
#: app/skins/single/default.php:345 app/skins/single/m1.php:195
|
963 |
#: app/skins/single/m2.php:128 app/skins/single/modern.php:136
|
964 |
#: app/widgets/single.php:107
|
965 |
msgid "More Info"
|
966 |
msgstr "Més Informació"
|
967 |
|
968 |
+
#: app/features/events.php:1493 app/features/fes/form.php:702
|
969 |
msgid "More Information"
|
970 |
msgstr "Més Informació"
|
971 |
|
972 |
+
#: app/features/events.php:1495 app/features/fes/form.php:704
|
973 |
msgid "Current Window"
|
974 |
msgstr "Finestra actual"
|
975 |
|
976 |
+
#: app/features/events.php:1496 app/features/fes/form.php:705
|
977 |
msgid "New Window"
|
978 |
msgstr "Nova finestra"
|
979 |
|
980 |
+
#: app/features/events.php:1501 app/features/fes/form.php:707
|
981 |
msgid ""
|
982 |
"If you fill it, it will be shown in event details page as an optional link. "
|
983 |
"Insert full link including http(s)://"
|
985 |
"Si ho omples, es mostrarà a la pàgina de detalls de l'Esdeveniment com a "
|
986 |
"enllaç opcional. Insereix tot l'enllaç incloent http (s): //"
|
987 |
|
988 |
+
#: app/features/events.php:1576 app/features/events.php:1591
|
989 |
msgid "Total booking limits"
|
990 |
msgstr "Límit total de reserves"
|
991 |
|
992 |
+
#: app/features/events.php:1588 app/features/events.php:1841
|
993 |
+
#: app/features/events.php:2056 app/modules/booking/default.php:94
|
994 |
+
#: app/modules/booking/steps/tickets.php:44
|
995 |
#: app/skins/available_spot/tpl.php:160
|
996 |
msgid "Unlimited"
|
997 |
msgstr "Il·limitat"
|
998 |
|
999 |
+
#: app/features/events.php:1594
|
1000 |
msgid ""
|
1001 |
"If you want to set a limit to all tickets, uncheck this checkbox and put a "
|
1002 |
"limitation number."
|
1004 |
"Si voleu establir un límit a totes les entrades, desmarqueu aquesta casella "
|
1005 |
"de verificació i poseu un número de limitació."
|
1006 |
|
1007 |
+
#: app/features/events.php:1596
|
1008 |
msgid "Read About A Booking System"
|
1009 |
msgstr "Llegiu sobre un sistema de reserves"
|
1010 |
|
1011 |
+
#: app/features/events.php:1604
|
1012 |
msgid "100"
|
1013 |
msgstr "100"
|
1014 |
|
1015 |
+
#: app/features/events.php:1609
|
1016 |
msgid "Total user booking limits"
|
1017 |
msgstr "Límit total de reserves"
|
1018 |
|
1019 |
+
#: app/features/events.php:1621 app/features/events.php:2155
|
1020 |
+
#: app/features/events.php:2287 app/features/events.php:2475
|
1021 |
msgid "Inherit from global options"
|
1022 |
msgstr "Heretat de d'opciones globals"
|
1023 |
|
1024 |
+
#: app/features/events.php:1624
|
1025 |
msgid "12"
|
1026 |
msgstr "12"
|
1027 |
|
1028 |
+
#: app/features/events.php:1645 app/libraries/book.php:60
|
1029 |
+
#: app/libraries/main.php:5101 app/modules/booking/steps/tickets.php:44
|
1030 |
msgid "Tickets"
|
1031 |
msgstr "Tickets"
|
1032 |
|
1033 |
+
#: app/features/events.php:1648
|
1034 |
msgid ""
|
1035 |
"You're translating an event so MEC will use the original event for tickets "
|
1036 |
"and booking. You can only translate the ticket name and description. Please "
|
1041 |
"l'entrada. Si us plau defineix les entrades exactes que podries definir en "
|
1042 |
"un esdeveniment original aquí."
|
1043 |
|
1044 |
+
#: app/features/events.php:1653
|
1045 |
#, fuzzy
|
1046 |
#| msgid "Ticket"
|
1047 |
msgid "Add Ticket"
|
1048 |
msgstr "Ticket"
|
1049 |
|
1050 |
+
#: app/features/events.php:1667 app/features/events.php:1943
|
1051 |
msgid "Ticket Name"
|
1052 |
msgstr "Nom del ticket"
|
1053 |
|
1054 |
+
#: app/features/events.php:1672 app/features/events.php:1947
|
1055 |
+
#: app/features/events.php:3503 app/features/events.php:3545
|
1056 |
#: app/features/ix.php:3373 app/features/ix.php:3414
|
1057 |
msgid "Start Time"
|
1058 |
msgstr "Hora d'Inici"
|
1059 |
|
1060 |
+
#: app/features/events.php:1731 app/features/events.php:1977
|
1061 |
+
#: app/features/events.php:3503 app/features/events.php:3545
|
1062 |
#: app/features/ix.php:3373 app/features/ix.php:3414
|
1063 |
msgid "End Time"
|
1064 |
msgstr "Hora de finalització"
|
1065 |
|
1066 |
+
#: app/features/events.php:1798 app/features/events.php:1802
|
1067 |
+
#: app/features/events.php:1897 app/features/events.php:1924
|
1068 |
+
#: app/features/events.php:2023 app/features/events.php:2026
|
1069 |
+
#: app/features/events.php:2103 app/features/events.php:2320
|
1070 |
+
#: app/features/events.php:2324 app/features/events.php:2366
|
1071 |
+
#: app/features/events.php:2369 app/features/mec/booking.php:379
|
1072 |
#: app/features/mec/booking.php:382 app/features/mec/booking.php:411
|
1073 |
#: app/features/mec/booking.php:414
|
1074 |
msgid "Price"
|
1075 |
msgstr "Preu"
|
1076 |
|
1077 |
+
#: app/features/events.php:1803 app/features/events.php:2027
|
1078 |
msgid "Insert 0 for free ticket. Only numbers please."
|
1079 |
msgstr ""
|
1080 |
"Introdueix un 0 per a una entrada gratuïta. Utilitza únicament nombres."
|
1081 |
|
1082 |
+
#: app/features/events.php:1812 app/features/events.php:1817
|
1083 |
+
#: app/features/events.php:2036 app/features/events.php:2039
|
1084 |
msgid "Price Label"
|
1085 |
msgstr "Etiqueta del preu"
|
1086 |
|
1087 |
+
#: app/features/events.php:1818 app/features/events.php:2040
|
1088 |
msgid "For showing on website. e.g. $15"
|
1089 |
msgstr "Per mostrar a la web. Ex. 15€"
|
1090 |
|
1091 |
+
#: app/features/events.php:1828 app/features/events.php:2050
|
1092 |
msgid "Available Tickets"
|
1093 |
msgstr "Tickets disponibles"
|
1094 |
|
1095 |
+
#: app/features/events.php:1847 app/features/events.php:2062
|
1096 |
+
#, fuzzy
|
1097 |
+
#| msgid "Maximum Per Ticket"
|
1098 |
+
msgid "Minimum Ticket e.g. 3"
|
1099 |
+
msgstr "Màxim per ticket"
|
1100 |
+
|
1101 |
+
#: app/features/events.php:1850 app/features/events.php:2065
|
1102 |
+
#, fuzzy
|
1103 |
+
#| msgid "Maximum Per Ticket"
|
1104 |
+
msgid "MinimumTicket"
|
1105 |
+
msgstr "Màxim per ticket"
|
1106 |
+
|
1107 |
+
#: app/features/events.php:1852 app/features/events.php:2067
|
1108 |
+
msgid "Set a number for the minimum ticket reservation"
|
1109 |
+
msgstr ""
|
1110 |
+
|
1111 |
+
#: app/features/events.php:1860 app/features/events.php:2075
|
1112 |
+
msgid "e.g. 0"
|
1113 |
+
msgstr ""
|
1114 |
+
|
1115 |
+
#: app/features/events.php:1862 app/features/events.php:2077
|
1116 |
+
#, fuzzy
|
1117 |
+
#| msgid "Days"
|
1118 |
+
msgid "Day"
|
1119 |
+
msgstr "Dies"
|
1120 |
+
|
1121 |
+
#: app/features/events.php:1863 app/features/events.php:2078
|
1122 |
+
msgid "Hour"
|
1123 |
+
msgstr ""
|
1124 |
+
|
1125 |
+
#: app/features/events.php:1865 app/features/events.php:2080
|
1126 |
+
#, php-format
|
1127 |
+
msgid "Stop selling ticket %s before event start."
|
1128 |
+
msgstr ""
|
1129 |
+
|
1130 |
+
#: app/features/events.php:1870 app/features/events.php:2084
|
1131 |
msgid "Price per Date"
|
1132 |
msgstr "Preu per Dia"
|
1133 |
|
1134 |
+
#: app/features/events.php:1901 app/features/events.php:1927
|
1135 |
+
#: app/features/events.php:2105 app/features/labels.php:60
|
1136 |
#: app/features/mec/meta_boxes/display_options.php:871
|
1137 |
#: app/features/mec/meta_boxes/search_form.php:66
|
1138 |
#: app/features/mec/meta_boxes/search_form.php:128
|
1150 |
msgid "Label"
|
1151 |
msgstr "Etiqueta"
|
1152 |
|
1153 |
+
#: app/features/events.php:2143
|
1154 |
msgid "Fees"
|
1155 |
msgstr "Taxes"
|
1156 |
|
1157 |
+
#: app/features/events.php:2180 app/features/events.php:2218
|
1158 |
#: app/features/mec/booking.php:298 app/features/mec/booking.php:327
|
1159 |
msgid "Fee Title"
|
1160 |
msgstr "Títol de la quota"
|
1161 |
|
1162 |
+
#: app/features/events.php:2186 app/features/events.php:2190
|
1163 |
+
#: app/features/events.php:2223 app/features/events.php:2226
|
1164 |
#: app/features/mec/booking.php:302 app/features/mec/booking.php:305
|
1165 |
#: app/features/mec/booking.php:331 app/features/mec/booking.php:334
|
1166 |
msgid "Amount"
|
1167 |
msgstr "Quantitat"
|
1168 |
|
1169 |
+
#: app/features/events.php:2191 app/features/events.php:2227
|
1170 |
#: app/features/mec/booking.php:306 app/features/mec/booking.php:335
|
1171 |
msgid ""
|
1172 |
"Fee amount, considered as fixed amount if you set the type to amount "
|
1175 |
"Quantitat de quota, considerada com quantitat fixa si estableixes el tipus "
|
1176 |
"de quantitat, si no serà considerada com a percentatge"
|
1177 |
|
1178 |
+
#: app/features/events.php:2200 app/features/events.php:2236
|
1179 |
#: app/features/mec/booking.php:313 app/features/mec/booking.php:342
|
1180 |
msgid "Percent"
|
1181 |
msgstr "Percentatge"
|
1182 |
|
1183 |
+
#: app/features/events.php:2201 app/features/events.php:2237
|
1184 |
#: app/features/mec/booking.php:314 app/features/mec/booking.php:343
|
1185 |
msgid "Amount (Per Ticket)"
|
1186 |
msgstr "Quantidad (Per ticket)"
|
1187 |
|
1188 |
+
#: app/features/events.php:2202 app/features/events.php:2238
|
1189 |
#: app/features/mec/booking.php:315 app/features/mec/booking.php:344
|
1190 |
msgid "Amount (Per Booking)"
|
1191 |
msgstr "Quantitat (per reserves)"
|
1192 |
|
1193 |
+
#: app/features/events.php:2275 app/features/mec/settings.php:724
|
1194 |
msgid "Ticket Variations / Options"
|
1195 |
msgstr "Variacions i opcions de tickets"
|
1196 |
|
1197 |
+
#: app/features/events.php:2325 app/features/events.php:2370
|
1198 |
#: app/features/mec/booking.php:383 app/features/mec/booking.php:415
|
1199 |
msgid "Option Price"
|
1200 |
msgstr "Opció de Preu"
|
1201 |
|
1202 |
+
#: app/features/events.php:2335 app/features/events.php:2339
|
1203 |
+
#: app/features/events.php:2379 app/features/events.php:2382
|
1204 |
#: app/features/mec/booking.php:389 app/features/mec/booking.php:392
|
1205 |
#: app/features/mec/booking.php:421 app/features/mec/booking.php:424
|
1206 |
msgid "Maximum Per Ticket"
|
1207 |
msgstr "Màxim per ticket"
|
1208 |
|
1209 |
+
#: app/features/events.php:2340 app/features/events.php:2383
|
1210 |
#: app/features/mec/booking.php:393 app/features/mec/booking.php:425
|
1211 |
msgid "Maximum Per Ticket. Leave it blank for unlimited."
|
1212 |
msgstr "Màxim per ticket. Deixa en blanc per a il·limitat."
|
1213 |
|
1214 |
+
#: app/features/events.php:2529 app/features/mec/booking.php:487
|
1215 |
+
#: app/libraries/main.php:2693
|
1216 |
msgid "MEC Name"
|
1217 |
msgstr "Nom"
|
1218 |
|
1219 |
+
#: app/features/events.php:2530 app/features/mec/booking.php:488
|
1220 |
+
#: app/libraries/main.php:2722
|
1221 |
msgid "MEC Email"
|
1222 |
msgstr "Correu electrònic"
|
1223 |
|
1224 |
+
#: app/features/events.php:2531 app/features/mec/booking.php:489
|
1225 |
+
#: app/libraries/main.php:2663
|
1226 |
msgid "Text"
|
1227 |
msgstr "Text"
|
1228 |
|
1229 |
+
#: app/features/events.php:2534 app/features/mec/booking.php:492
|
1230 |
#: app/features/organizers.php:103 app/features/organizers.php:148
|
1231 |
#: app/features/speakers.php:118 app/features/speakers.php:183
|
1232 |
+
#: app/features/speakers.php:256 app/libraries/main.php:2839
|
1233 |
msgid "Tel"
|
1234 |
msgstr "Tel"
|
1235 |
|
1236 |
+
#: app/features/events.php:2535 app/features/mec/booking.php:493
|
1237 |
+
#: app/libraries/main.php:2781
|
1238 |
msgid "File"
|
1239 |
msgstr "Arxiu"
|
1240 |
|
1241 |
+
#: app/features/events.php:2536 app/features/mec/booking.php:494
|
1242 |
+
#: app/libraries/main.php:2868
|
1243 |
msgid "Textarea"
|
1244 |
msgstr "Àrea de text"
|
1245 |
|
1246 |
+
#: app/features/events.php:2537 app/features/mec/booking.php:495
|
1247 |
+
#: app/libraries/main.php:2921
|
1248 |
msgid "Checkboxes"
|
1249 |
msgstr "Caselles de selecció"
|
1250 |
|
1251 |
+
#: app/features/events.php:2538 app/features/mec/booking.php:496
|
1252 |
+
#: app/libraries/main.php:2965
|
1253 |
msgid "Radio Buttons"
|
1254 |
msgstr "Botons tipus radi"
|
1255 |
|
1256 |
+
#: app/features/events.php:2539 app/features/mec/booking.php:497
|
1257 |
#: app/features/mec/meta_boxes/search_form.php:34
|
1258 |
#: app/features/mec/meta_boxes/search_form.php:41
|
1259 |
#: app/features/mec/meta_boxes/search_form.php:48
|
1329 |
#: app/features/mec/meta_boxes/search_form.php:696
|
1330 |
#: app/features/mec/meta_boxes/search_form.php:703
|
1331 |
#: app/features/mec/meta_boxes/search_form.php:710
|
1332 |
+
#: app/features/mec/meta_boxes/search_form.php:717 app/libraries/main.php:3009
|
1333 |
msgid "Dropdown"
|
1334 |
msgstr "Desplegable"
|
1335 |
|
1336 |
+
#: app/features/events.php:2540 app/features/mec/booking.php:498
|
1337 |
+
#: app/libraries/main.php:3056
|
1338 |
msgid "Agreement"
|
1339 |
msgstr "Acord"
|
1340 |
|
1341 |
+
#: app/features/events.php:2541 app/features/mec/booking.php:499
|
1342 |
+
#: app/libraries/main.php:2897
|
1343 |
msgid "Paragraph"
|
1344 |
msgstr "Paràgraf"
|
1345 |
|
1346 |
+
#: app/features/events.php:3211 app/features/events.php:3229
|
1347 |
+
#: app/features/events.php:3247 app/features/events.php:3265
|
1348 |
#, php-format
|
1349 |
msgid "Show all %s"
|
1350 |
msgstr "Mostrar tots %s"
|
1351 |
|
1352 |
+
#: app/features/events.php:3211
|
1353 |
msgid "labels"
|
1354 |
msgstr "etiquetes"
|
1355 |
|
1356 |
+
#: app/features/events.php:3229
|
1357 |
msgid "locations"
|
1358 |
msgstr "ubicacions"
|
1359 |
|
1360 |
+
#: app/features/events.php:3247
|
1361 |
msgid "organizers"
|
1362 |
msgstr "organitzadors"
|
1363 |
|
1364 |
+
#: app/features/events.php:3281 app/features/events.php:3641
|
1365 |
msgid "Attendees List"
|
1366 |
msgstr "Límit d'assistents"
|
1367 |
|
1368 |
+
#: app/features/events.php:3311 app/features/events.php:3503
|
1369 |
+
#: app/features/events.php:3545 app/features/ix.php:3373
|
1370 |
#: app/features/ix.php:3414 app/features/locations.php:58
|
1371 |
#: app/features/locations.php:230 app/features/locations.php:287
|
1372 |
#: app/features/locations.php:289 app/features/locations.php:298
|
1383 |
#: app/features/mec/meta_boxes/search_form.php:582
|
1384 |
#: app/features/mec/meta_boxes/search_form.php:679
|
1385 |
#: app/features/mec/settings.php:802 app/features/mec/single.php:212
|
1386 |
+
#: app/features/search.php:71 app/libraries/main.php:2180
|
1387 |
+
#: app/libraries/main.php:5070 app/libraries/skins.php:837
|
1388 |
+
#: app/skins/single.php:487 app/skins/single.php:908
|
1389 |
#: app/skins/single/default.php:169 app/skins/single/default.php:381
|
1390 |
#: app/skins/single/m1.php:159 app/skins/single/m2.php:91
|
1391 |
#: app/skins/single/modern.php:98
|
1392 |
msgid "Location"
|
1393 |
msgstr "Localització"
|
1394 |
|
1395 |
+
#: app/features/events.php:3316
|
1396 |
msgid "Repeat"
|
1397 |
msgstr "Repetir"
|
1398 |
|
1399 |
+
#: app/features/events.php:3317
|
1400 |
msgid "Author"
|
1401 |
msgstr "Autor"
|
1402 |
|
1403 |
+
#: app/features/events.php:3438 app/features/events.php:3439
|
1404 |
msgid "iCal Export"
|
1405 |
msgstr "Exportar iCal"
|
1406 |
|
1407 |
+
#: app/features/events.php:3441 app/features/events.php:3442
|
1408 |
msgid "CSV Export"
|
1409 |
msgstr "Exportar CSV"
|
1410 |
|
1411 |
+
#: app/features/events.php:3444 app/features/events.php:3445
|
1412 |
msgid "MS Excel Export"
|
1413 |
msgstr "Exportar Excel"
|
1414 |
|
1415 |
+
#: app/features/events.php:3447 app/features/events.php:3448
|
1416 |
msgid "XML Export"
|
1417 |
msgstr "Exportació XML"
|
1418 |
|
1419 |
+
#: app/features/events.php:3450 app/features/events.php:3451
|
1420 |
msgid "JSON Export"
|
1421 |
msgstr "Exportació JSON"
|
1422 |
|
1423 |
+
#: app/features/events.php:3453 app/features/events.php:3454
|
1424 |
+
#: app/features/events.php:3636
|
1425 |
msgid "Duplicate"
|
1426 |
msgstr "Duplicar"
|
1427 |
|
1428 |
+
#: app/features/events.php:3503 app/features/events.php:3545
|
1429 |
#: app/features/fes.php:223 app/features/ix.php:3373 app/features/ix.php:3414
|
1430 |
#: app/features/labels.php:177 app/features/locations.php:229
|
1431 |
#: app/features/organizers.php:203 app/features/speakers.php:253
|
1432 |
msgid "ID"
|
1433 |
msgstr "ID"
|
1434 |
|
1435 |
+
#: app/features/events.php:3503 app/features/events.php:3545
|
1436 |
#: app/features/ix.php:3373 app/features/ix.php:3414
|
1437 |
msgid "Link"
|
1438 |
msgstr "Enllaç"
|
1439 |
|
1440 |
+
#: app/features/events.php:3503 app/features/events.php:3545
|
1441 |
#, php-format
|
1442 |
msgid "%s Tel"
|
1443 |
msgstr "%s Tel"
|
1444 |
|
1445 |
+
#: app/features/events.php:3503 app/features/events.php:3545
|
1446 |
#, php-format
|
1447 |
msgid "%s Email"
|
1448 |
msgstr "%s Correu electrònic"
|
1449 |
|
1450 |
+
#: app/features/events.php:3639 app/features/profile/profile.php:59
|
1451 |
+
#: app/libraries/main.php:2201
|
1452 |
msgid "Attendees"
|
1453 |
msgstr "Assistents"
|
1454 |
|
1455 |
+
#: app/features/events.php:3652 app/libraries/notifications.php:837
|
1456 |
#, php-format
|
1457 |
msgid "%s to %s"
|
1458 |
msgstr "%s a %s"
|
1459 |
|
1460 |
+
#: app/features/events.php:3715 app/features/events.php:3947
|
1461 |
#: app/features/fes.php:223 app/features/profile/profile.php:186
|
1462 |
+
#: app/libraries/main.php:2215 app/libraries/main.php:5100
|
1463 |
msgid "Ticket"
|
1464 |
msgstr "Ticket"
|
1465 |
|
1466 |
+
#: app/features/events.php:3718 app/features/events.php:3950
|
1467 |
#: app/features/profile/profile.php:189
|
1468 |
msgid "Variations"
|
1469 |
msgstr "Variacions"
|
1470 |
|
1471 |
+
#: app/features/events.php:3729 app/features/events.php:3963
|
1472 |
#: app/features/fes.php:303
|
1473 |
msgid "Unknown"
|
1474 |
msgstr "Desconegut"
|
1475 |
|
1476 |
+
#: app/features/events.php:3758 app/features/events.php:3992
|
1477 |
msgid "No Attendees Found!"
|
1478 |
msgstr "No s’han trobat assistents!"
|
1479 |
|
1480 |
+
#: app/features/events.php:3761
|
1481 |
+
#, fuzzy
|
1482 |
+
#| msgid "Organizer Email"
|
1483 |
+
msgid "Send Email"
|
1484 |
+
msgstr "Correu electrònic de l'organitzador"
|
1485 |
+
|
1486 |
+
#: app/features/events.php:3764
|
1487 |
+
#, fuzzy
|
1488 |
+
#| msgid "%s Email"
|
1489 |
+
msgid "Mass Email"
|
1490 |
+
msgstr "%s Correu electrònic"
|
1491 |
+
|
1492 |
+
#: app/features/events.php:3765
|
1493 |
+
#, php-format
|
1494 |
+
msgid "You are sending email to %s attendees"
|
1495 |
+
msgstr ""
|
1496 |
+
|
1497 |
+
#: app/features/events.php:3766 app/features/mec/notifications.php:44
|
1498 |
+
#: app/features/mec/notifications.php:105
|
1499 |
+
#: app/features/mec/notifications.php:161
|
1500 |
+
#: app/features/mec/notifications.php:229
|
1501 |
+
#: app/features/mec/notifications.php:299
|
1502 |
+
#: app/features/mec/notifications.php:364
|
1503 |
+
#: app/features/mec/notifications.php:439
|
1504 |
+
#: app/features/mec/notifications.php:487
|
1505 |
+
msgid "Email Subject"
|
1506 |
+
msgstr "Assumpte de l'email"
|
1507 |
+
|
1508 |
+
#: app/features/events.php:3768 app/features/mec/notifications.php:66
|
1509 |
+
#: app/features/mec/notifications.php:123
|
1510 |
+
#: app/features/mec/notifications.php:183
|
1511 |
+
#: app/features/mec/notifications.php:259
|
1512 |
+
#: app/features/mec/notifications.php:321
|
1513 |
+
#: app/features/mec/notifications.php:393
|
1514 |
+
#: app/features/mec/notifications.php:457
|
1515 |
+
#: app/features/mec/notifications.php:505
|
1516 |
+
msgid "You can use following placeholders"
|
1517 |
+
msgstr "Podeu utilitzar els marcadors de posició següents"
|
1518 |
+
|
1519 |
+
#: app/features/events.php:3770
|
1520 |
+
#, fuzzy
|
1521 |
+
#| msgid "Speakers Names"
|
1522 |
+
msgid "Attendee Name"
|
1523 |
+
msgstr "Nom dels Ponents"
|
1524 |
+
|
1525 |
+
#: app/features/events.php:3774
|
1526 |
+
msgid "Loading..."
|
1527 |
+
msgstr ""
|
1528 |
+
|
1529 |
+
#: app/features/events.php:3775
|
1530 |
+
msgid "Emails successfully sent."
|
1531 |
+
msgstr ""
|
1532 |
+
|
1533 |
+
#: app/features/events.php:3776
|
1534 |
+
msgid "No user selected!"
|
1535 |
+
msgstr ""
|
1536 |
+
|
1537 |
+
#: app/features/events.php:3777
|
1538 |
+
#, fuzzy
|
1539 |
+
#| msgid "Your options field can not be empty!"
|
1540 |
+
msgid "Email subject cannot be empty!"
|
1541 |
+
msgstr "El vostre camp d’opcions no pot estar buit!"
|
1542 |
+
|
1543 |
+
#: app/features/events.php:3778
|
1544 |
+
#, fuzzy
|
1545 |
+
#| msgid "Your options field can not be empty!"
|
1546 |
+
msgid "Email content cannot be empty!"
|
1547 |
+
msgstr "El vostre camp d’opcions no pot estar buit!"
|
1548 |
+
|
1549 |
+
#: app/features/events.php:3779
|
1550 |
+
msgid "There was an error please try again!"
|
1551 |
+
msgstr ""
|
1552 |
+
|
1553 |
#: app/features/fes.php:87
|
1554 |
#, php-format
|
1555 |
msgid "Please %s/%s in order to submit new events."
|
1580 |
msgid "The event removed!"
|
1581 |
msgstr "L'esdeveniment ha estat eliminat!"
|
1582 |
|
1583 |
+
#: app/features/fes.php:223 app/libraries/main.php:2192
|
1584 |
msgid "Transaction ID"
|
1585 |
msgstr "ID Transacció"
|
1586 |
|
1600 |
msgid "Verification"
|
1601 |
msgstr "Verificació de la reserva"
|
1602 |
|
1603 |
+
#: app/features/fes.php:363
|
1604 |
msgid "The image is uploaded!"
|
1605 |
msgstr "La imatge ha estat pujada!"
|
1606 |
|
1607 |
+
#: app/features/fes.php:389
|
1608 |
msgid "Captcha is invalid! Please try again."
|
1609 |
msgstr "El Captcha no és vàlid! Torna-ho a intentar."
|
1610 |
|
1611 |
+
#: app/features/fes.php:417
|
1612 |
msgid "Please fill event title field!"
|
1613 |
msgstr "Si us plau omple el camp de títol de l'esdeveniment!"
|
1614 |
|
1615 |
+
#: app/features/fes.php:1041
|
1616 |
msgid "The event submitted. It will publish as soon as possible."
|
1617 |
msgstr "Esdeveniment enviat. Es publicarà el més aviat possible."
|
1618 |
|
1619 |
+
#: app/features/fes.php:1042
|
1620 |
msgid "The event published."
|
1621 |
msgstr "L'esdeveniment a estat publicat."
|
1622 |
|
1703 |
msgstr "Eliminar imatge"
|
1704 |
|
1705 |
#: app/features/fes/form.php:772 app/features/labels.php:61
|
1706 |
+
#: app/features/labels.php:221 app/features/mec.php:344
|
1707 |
+
#: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:5067
|
1708 |
+
#: app/skins/single.php:686 app/skins/single/default.php:148
|
1709 |
#: app/skins/single/default.php:360 app/skins/single/m1.php:68
|
1710 |
#: app/skins/single/modern.php:218
|
1711 |
msgid "Labels"
|
1712 |
msgstr "Etiquetes"
|
1713 |
|
1714 |
+
#: app/features/fes/form.php:818 app/features/mec.php:342
|
1715 |
#: app/features/mec/meta_boxes/filter.php:147
|
1716 |
msgid "Tags"
|
1717 |
msgstr "Tags"
|
1900 |
|
1901 |
#: app/features/ix/export.php:16 app/features/ix/export_g_calendar.php:20
|
1902 |
#: app/features/ix/import.php:16 app/features/ix/import_f_calendar.php:16
|
1903 |
+
#: app/features/ix/import_f_calendar.php:94
|
1904 |
#: app/features/ix/import_g_calendar.php:16
|
1905 |
#: app/features/ix/import_g_calendar.php:103
|
1906 |
#: app/features/ix/import_meetup.php:16 app/features/ix/import_meetup.php:85
|
2036 |
msgstr "Afegir a Google Calendar"
|
2037 |
|
2038 |
#: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:629
|
2039 |
+
#: app/features/mec/modules.php:397 app/features/mec/notifications.php:616
|
2040 |
#: app/features/mec/settings.php:971 app/features/mec/single.php:269
|
2041 |
msgid "Checking ..."
|
2042 |
msgstr "Verificant…"
|
2167 |
msgid "Import Locations"
|
2168 |
msgstr "Importar ubicacions"
|
2169 |
|
2170 |
+
#: app/features/ix/import_f_calendar.php:82
|
2171 |
+
#, fuzzy
|
2172 |
+
#| msgid "Facebook Page Link"
|
2173 |
+
msgid "Import Facebook Link as Event Link"
|
2174 |
+
msgstr "Enllaç a la pàgina de Facebook"
|
2175 |
+
|
2176 |
+
#: app/features/ix/import_f_calendar.php:88
|
2177 |
+
msgid "Import Facebook Link as More Info Link"
|
2178 |
+
msgstr ""
|
2179 |
+
|
2180 |
+
#: app/features/ix/import_f_calendar.php:104
|
2181 |
#, php-format
|
2182 |
msgid "%s events successfully imported to your website from Facebook Calendar."
|
2183 |
msgstr ""
|
2476 |
#: app/skins/agenda/render.php:39 app/skins/available_spot/tpl.php:39
|
2477 |
#: app/skins/carousel/render.php:45 app/skins/countdown/tpl.php:28
|
2478 |
#: app/skins/cover/tpl.php:29 app/skins/daily_view/render.php:25
|
2479 |
+
#: app/skins/grid/render.php:52 app/skins/list/render.php:41
|
2480 |
#: app/skins/masonry/render.php:29 app/skins/monthly_view/calendar.php:86
|
2481 |
#: app/skins/monthly_view/calendar_clean.php:86
|
2482 |
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:46
|
2483 |
#: app/skins/tile/render.php:35 app/skins/timeline/render.php:44
|
2484 |
+
#: app/skins/timetable/render.php:35 app/skins/timetable/render.php:144
|
2485 |
#: app/skins/weekly_view/render.php:33 app/skins/yearly_view/render.php:48
|
2486 |
msgid "Featured"
|
2487 |
msgstr "Destacats"
|
2488 |
|
2489 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2490 |
+
#: app/libraries/main.php:5316 app/skins/agenda/render.php:43
|
2491 |
#: app/skins/available_spot/tpl.php:43 app/skins/carousel/render.php:46
|
2492 |
#: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:33
|
2493 |
+
#: app/skins/daily_view/render.php:29 app/skins/grid/render.php:53
|
2494 |
#: app/skins/list/render.php:45 app/skins/masonry/render.php:30
|
2495 |
#: app/skins/monthly_view/calendar.php:90
|
2496 |
#: app/skins/monthly_view/calendar_clean.php:90
|
2497 |
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:47
|
2498 |
#: app/skins/tile/render.php:36 app/skins/timeline/render.php:48
|
2499 |
+
#: app/skins/timetable/render.php:39 app/skins/timetable/render.php:145
|
2500 |
#: app/skins/weekly_view/render.php:37 app/skins/yearly_view/render.php:52
|
2501 |
msgid "Canceled"
|
2502 |
msgstr "Cancel·lats"
|
2523 |
msgid "Event %s"
|
2524 |
msgstr "Esdeveniment %s"
|
2525 |
|
2526 |
+
#: app/features/locations.php:59 app/features/mec.php:345
|
2527 |
#: app/features/mec/dashboard.php:269 app/features/mec/meta_boxes/filter.php:96
|
2528 |
+
#: app/libraries/main.php:5069
|
2529 |
msgid "Locations"
|
2530 |
msgstr "Llocs"
|
2531 |
|
2636 |
msgid "Don't show map in single event page"
|
2637 |
msgstr "No mostrar el mapa a la pàgina de detall de l'esdeveniment"
|
2638 |
|
2639 |
+
#: app/features/locations.php:356 app/libraries/main.php:5103
|
2640 |
msgid "Other Locations"
|
2641 |
msgstr "Altres llocs"
|
2642 |
|
2651 |
msgid "<strong>"
|
2652 |
msgstr "<strong>"
|
2653 |
|
2654 |
+
#: app/features/mec.php:168
|
2655 |
msgid ""
|
2656 |
"Activation faild. Please check your purchase code or license type."
|
2657 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
2660 |
"llicència. <br> <b> Nota: El vostre codi de compra ha de coincidir amb el "
|
2661 |
"vostre tipus de llicència. </b>"
|
2662 |
|
2663 |
+
#: app/features/mec.php:168
|
2664 |
msgid "Troubleshooting"
|
2665 |
msgstr "Resolució de problemes"
|
2666 |
|
2667 |
+
#: app/features/mec.php:219
|
2668 |
msgid ""
|
2669 |
"Your options is not in JSON format. Please insert correct options in this "
|
2670 |
"field and try again."
|
2672 |
"Les vostres opcions no estan en format JSON. Introduïu les opcions correctes "
|
2673 |
"en aquest camp i torneu-ho a provar."
|
2674 |
|
2675 |
+
#: app/features/mec.php:226
|
2676 |
msgid "Your options field can not be empty!"
|
2677 |
msgstr "El vostre camp d’opcions no pot estar buit!"
|
2678 |
|
2679 |
+
#: app/features/mec.php:232
|
2680 |
msgid "Your options imported successfuly."
|
2681 |
msgstr "Les vostres opcions s’han importat correctament."
|
2682 |
|
2683 |
+
#: app/features/mec.php:325
|
2684 |
msgid "MEC - Support"
|
2685 |
msgstr "MEC - Suport"
|
2686 |
|
2687 |
+
#: app/features/mec.php:325 app/features/mec/support-page.php:9
|
2688 |
#: app/features/mec/support.php:80 app/features/mec/support.php:93
|
2689 |
msgid "Support"
|
2690 |
msgstr "Suport"
|
2691 |
|
2692 |
+
#: app/features/mec.php:346 app/features/mec/dashboard.php:276
|
2693 |
#: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
|
2694 |
+
#: app/libraries/main.php:5071
|
2695 |
msgid "Organizers"
|
2696 |
msgstr "Organitzadors"
|
2697 |
|
2698 |
+
#: app/features/mec.php:354 app/features/mec.php:374
|
2699 |
#: app/features/mec/dashboard.php:262
|
2700 |
msgid "Shortcodes"
|
2701 |
msgstr "Shortcodes"
|
2702 |
|
2703 |
+
#: app/features/mec.php:355
|
2704 |
msgid "MEC - Settings"
|
2705 |
msgstr "Configuració MEC"
|
2706 |
|
2707 |
+
#: app/features/mec.php:356
|
2708 |
msgid "MEC - Addons"
|
2709 |
msgstr "Complements MEC"
|
2710 |
|
2711 |
+
#: app/features/mec.php:356 app/features/mec/addons.php:22
|
2712 |
msgid "Addons"
|
2713 |
msgstr "Complements"
|
2714 |
|
2715 |
+
#: app/features/mec.php:376
|
2716 |
msgid "Add Shortcode"
|
2717 |
msgstr "Afegir Shortcode"
|
2718 |
|
2719 |
+
#: app/features/mec.php:377
|
2720 |
msgid "Add New Shortcode"
|
2721 |
msgstr "Afegir nou Shortcode"
|
2722 |
|
2723 |
+
#: app/features/mec.php:378
|
2724 |
msgid "No shortcodes found!"
|
2725 |
msgstr "No hi ha shortcodes!"
|
2726 |
|
2727 |
+
#: app/features/mec.php:379
|
2728 |
msgid "All Shortcodes"
|
2729 |
msgstr "Tots els Shortcodes"
|
2730 |
|
2731 |
+
#: app/features/mec.php:380
|
2732 |
msgid "Edit shortcodes"
|
2733 |
msgstr "Editar Shortcodes"
|
2734 |
|
2735 |
+
#: app/features/mec.php:381
|
2736 |
msgid "No shortcodes found in Trash!"
|
2737 |
msgstr "No hi ha shortcodes a la paperera!"
|
2738 |
|
2739 |
+
#: app/features/mec.php:434
|
2740 |
msgid "Display Options"
|
2741 |
msgstr "Opcions de pantalla"
|
2742 |
|
2743 |
+
#: app/features/mec.php:435
|
2744 |
msgid "Filter Options"
|
2745 |
msgstr "Opcions de filtres"
|
2746 |
|
2747 |
+
#: app/features/mec.php:437
|
2748 |
msgid "Search Form"
|
2749 |
msgstr "Formulari de Cerca"
|
2750 |
|
2751 |
+
#: app/features/mec.php:789
|
2752 |
msgid "Display content's images as Popup"
|
2753 |
msgstr "Mostra les imatges del contingut com a finestra emergent"
|
2754 |
|
2755 |
+
#: app/features/mec.php:802
|
2756 |
msgid "Single Event Display Method"
|
2757 |
msgstr "Mètode de vista per a la pàgina de l'esdeveniment"
|
2758 |
|
2759 |
+
#: app/features/mec.php:807
|
2760 |
msgid "Separate Window"
|
2761 |
msgstr "Finestra separada"
|
2762 |
|
2763 |
+
#: app/features/mec.php:808
|
2764 |
msgid "Modal 1"
|
2765 |
msgstr "Modal 1"
|
2766 |
|
2796 |
#: app/features/mec/booking.php:660 app/features/mec/messages.php:15
|
2797 |
#: app/features/mec/messages.php:51 app/features/mec/messages.php:60
|
2798 |
#: app/features/mec/messages.php:94 app/features/mec/messages.php:103
|
2799 |
+
#: app/features/mec/modules.php:25 app/features/mec/modules.php:362
|
2800 |
+
#: app/features/mec/modules.php:372 app/features/mec/modules.php:414
|
2801 |
+
#: app/features/mec/modules.php:428 app/features/mec/notifications.php:14
|
2802 |
#: app/features/mec/notifications.php:525
|
2803 |
#: app/features/mec/notifications.php:537
|
2804 |
#: app/features/mec/notifications.php:633
|
2830 |
"element de menú al Tauler de control"
|
2831 |
|
2832 |
#: app/features/mec/booking.php:102 app/features/mec/booking.php:107
|
2833 |
+
#: app/features/mec/modules.php:311 app/features/mec/modules.php:316
|
2834 |
msgid "Date Format"
|
2835 |
msgstr "Format de data"
|
2836 |
|
3024 |
"rebre directament els pagaments!"
|
3025 |
|
3026 |
#: app/features/mec/booking.php:624 app/features/mec/messages.php:78
|
3027 |
+
#: app/features/mec/modules.php:392 app/features/mec/notifications.php:611
|
3028 |
#: app/features/mec/settings.php:966 app/features/mec/single.php:264
|
3029 |
#: app/features/mec/styles.php:60 app/features/mec/styling.php:296
|
3030 |
msgid "Saved"
|
3031 |
msgstr "Desat"
|
3032 |
|
3033 |
#: app/features/mec/booking.php:625 app/features/mec/messages.php:79
|
3034 |
+
#: app/features/mec/modules.php:393 app/features/mec/notifications.php:612
|
3035 |
#: app/features/mec/settings.php:967 app/features/mec/single.php:265
|
3036 |
#: app/features/mec/styles.php:61 app/features/mec/styling.php:297
|
3037 |
msgid "Settings Saved!"
|
3038 |
msgstr "Configuració desada!"
|
3039 |
|
3040 |
#: app/features/mec/booking.php:627 app/features/mec/booking.php:649
|
3041 |
+
#: app/features/mec/modules.php:395 app/features/mec/modules.php:417
|
3042 |
#: app/features/mec/notifications.php:614
|
3043 |
#: app/features/mec/notifications.php:636 app/features/mec/settings.php:969
|
3044 |
#: app/features/mec/settings.php:991 app/features/mec/single.php:267
|
3045 |
+
#: app/features/mec/single.php:289 app/libraries/main.php:5315
|
3046 |
msgid "Verified"
|
3047 |
msgstr "Verificat"
|
3048 |
|
3049 |
+
#: app/features/mec/booking.php:651 app/features/mec/modules.php:419
|
3050 |
#: app/features/mec/notifications.php:638 app/features/mec/settings.php:993
|
3051 |
#: app/features/mec/single.php:291
|
3052 |
msgid "Please Refresh Page"
|
3594 |
|
3595 |
#: app/features/mec/meta_boxes/display_options.php:447
|
3596 |
#: app/features/mec/meta_boxes/display_options.php:468
|
3597 |
+
#: app/libraries/main.php:330 app/libraries/main.php:1701
|
3598 |
+
#: app/libraries/main.php:1726
|
3599 |
msgid "List View"
|
3600 |
msgstr "Vista de llista"
|
3601 |
|
3602 |
#: app/features/mec/meta_boxes/display_options.php:448
|
3603 |
#: app/features/mec/meta_boxes/display_options.php:478
|
3604 |
+
#: app/libraries/main.php:334 app/libraries/main.php:1695
|
3605 |
+
#: app/libraries/main.php:1720
|
3606 |
msgid "Yearly View"
|
3607 |
msgstr "Vista anual"
|
3608 |
|
3613 |
|
3614 |
#: app/features/mec/meta_boxes/display_options.php:450
|
3615 |
#: app/features/mec/meta_boxes/display_options.php:510
|
3616 |
+
#: app/libraries/main.php:337 app/libraries/main.php:1697
|
3617 |
+
#: app/libraries/main.php:1722
|
3618 |
msgid "Weekly View"
|
3619 |
msgstr "Vista setmanal"
|
3620 |
|
3621 |
#: app/features/mec/meta_boxes/display_options.php:451
|
3622 |
#: app/features/mec/meta_boxes/display_options.php:520
|
3623 |
+
#: app/libraries/main.php:336 app/libraries/main.php:1698
|
3624 |
+
#: app/libraries/main.php:1723
|
3625 |
msgid "Daily View"
|
3626 |
msgstr "Vista diària"
|
3627 |
|
4046 |
#: app/features/mec/meta_boxes/search_form.php:693
|
4047 |
#: app/features/mec/settings.php:815 app/features/mec/single.php:217
|
4048 |
#: app/features/search.php:79 app/features/speakers.php:61
|
4049 |
+
#: app/features/speakers.php:254 app/libraries/main.php:5074
|
4050 |
#: app/libraries/skins.php:889
|
4051 |
msgid "Speaker"
|
4052 |
msgstr "Ponent"
|
4276 |
msgid "Show social network module"
|
4277 |
msgstr "Mostrar el mòdul de xarxes socials"
|
4278 |
|
4279 |
+
#: app/features/mec/modules.php:293 app/libraries/main.php:569
|
4280 |
+
#: app/modules/next-event/details.php:83
|
4281 |
msgid "Next Event"
|
4282 |
msgstr "Pròxim esdeveniment"
|
4283 |
|
4284 |
+
#: app/features/mec/modules.php:297
|
4285 |
msgid "Show next event module on event page"
|
4286 |
msgstr "Mostra el mòdul següent esdeveniment a la pàgina de l'Esdeveniment"
|
4287 |
|
4288 |
+
#: app/features/mec/modules.php:302
|
4289 |
msgid "Method"
|
4290 |
msgstr "Mètode"
|
4291 |
|
4292 |
+
#: app/features/mec/modules.php:305
|
4293 |
msgid "Next Occurrence of Current Event"
|
4294 |
msgstr "Següent ocurrència de l'esdeveniment actual"
|
4295 |
|
4296 |
+
#: app/features/mec/modules.php:306
|
4297 |
msgid "Next Occurrence of Other Events"
|
4298 |
msgstr "Següent Aparició d'altres esdeveniments"
|
4299 |
|
4300 |
+
#: app/features/mec/modules.php:317 app/features/mec/single.php:42
|
4301 |
msgid "Default is M d Y"
|
4302 |
msgstr "El valor predeterminat és M d Y"
|
4303 |
|
4304 |
+
#: app/features/mec/modules.php:333
|
4305 |
msgid "Enable BuddyPress Integration"
|
4306 |
msgstr "Habilitar la integració de BuddyPress"
|
4307 |
|
4308 |
+
#: app/features/mec/modules.php:340
|
4309 |
msgid "Show \"Attendees Module\" in event details page"
|
4310 |
msgstr ""
|
4311 |
"Mostrar \"Mòdul d'assistents\" a la pàgina de detalls de l'esdeveniment"
|
4312 |
|
4313 |
+
#: app/features/mec/modules.php:344
|
4314 |
msgid "Attendees Limit"
|
4315 |
msgstr "Límit d'assistents"
|
4316 |
|
4317 |
+
#: app/features/mec/modules.php:352
|
4318 |
msgid "Add booking activity to user profile"
|
4319 |
msgstr "Afegir activitat de reserves al perfil de l'usuari"
|
4320 |
|
4326 |
msgid "It sends to attendee after booking for notifying him/her."
|
4327 |
msgstr "Envia als assistents després de fer la reserva per avisar-lo."
|
4328 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4329 |
#: app/features/mec/notifications.php:48 app/features/mec/notifications.php:52
|
4330 |
#: app/features/mec/notifications.php:109
|
4331 |
#: app/features/mec/notifications.php:113
|
4371 |
msgid "Email Content"
|
4372 |
msgstr "Contingut de l'email"
|
4373 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4374 |
#: app/features/mec/notifications.php:68 app/features/mec/notifications.php:125
|
4375 |
#: app/features/mec/notifications.php:185
|
4376 |
#: app/features/mec/notifications.php:261
|
4657 |
msgstr "S'envia a l'administrador per notificar-li una nova reserva rebuda."
|
4658 |
|
4659 |
#: app/features/mec/notifications.php:351 app/libraries/main.php:578
|
4660 |
+
#: app/libraries/notifications.php:548
|
4661 |
msgid "Booking Reminder"
|
4662 |
msgstr "Recordatori de reserva"
|
4663 |
|
4855 |
msgstr "Podeu activar / desactivar els scripts de l’esquema"
|
4856 |
|
4857 |
#: app/features/mec/settings.php:177 app/features/mec/settings.php:187
|
4858 |
+
#: app/libraries/main.php:5078
|
4859 |
msgid "Weekdays"
|
4860 |
msgstr "Dies de la setmana"
|
4861 |
|
6007 |
msgid "eg. https://webnus.net"
|
6008 |
msgstr "ex. https://webnus.net"
|
6009 |
|
6010 |
+
#: app/features/organizers.php:311 app/libraries/main.php:5102
|
6011 |
+
#: app/skins/single.php:846
|
6012 |
msgid "Other Organizers"
|
6013 |
msgstr "Altres organitzadors"
|
6014 |
|
6024 |
msgid "Please %s/%s in order to see your bookings / profile."
|
6025 |
msgstr "Si us plau,%s/%s per veure les vostres reserves / perfil."
|
6026 |
|
6027 |
+
#: app/features/profile/profile.php:18 app/libraries/main.php:2086
|
6028 |
msgid "Your booking already canceled!"
|
6029 |
msgstr "La vostra reserva ja s'ha cancel·lat!"
|
6030 |
|
6032 |
msgid "#"
|
6033 |
msgstr "#"
|
6034 |
|
6035 |
+
#: app/features/profile/profile.php:56 app/libraries/main.php:3078
|
6036 |
msgid "Status"
|
6037 |
msgstr "Estat"
|
6038 |
|
6061 |
msgid "No bookings found!"
|
6062 |
msgstr "No s’han trobat reserves!"
|
6063 |
|
6064 |
+
#: app/features/search.php:87 app/libraries/main.php:5068
|
6065 |
msgid "label"
|
6066 |
msgstr "etiqueta"
|
6067 |
|
6086 |
msgstr "Cap resultat de cerca."
|
6087 |
|
6088 |
#: app/features/search_bar/search_result.php:11
|
6089 |
+
#: app/libraries/notifications.php:851 app/libraries/render.php:453
|
6090 |
#: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
|
6091 |
+
#: app/skins/single.php:160 app/skins/single.php:737
|
6092 |
#: app/skins/single/default.php:101 app/skins/single/default.php:313
|
6093 |
#: app/skins/single/m1.php:38 app/skins/single/modern.php:188
|
6094 |
msgid "All of the day"
|
6152 |
msgid "%s Price"
|
6153 |
msgstr "%s Preu"
|
6154 |
|
6155 |
+
#: app/libraries/book.php:588
|
6156 |
msgid "Discount"
|
6157 |
msgstr "Descompte"
|
6158 |
|
6159 |
+
#: app/libraries/book.php:678 app/modules/booking/default.php:315
|
6160 |
+
#: app/modules/booking/default.php:413
|
6161 |
msgid "Download Invoice"
|
6162 |
msgstr "Descarregar factura"
|
6163 |
|
6232 |
msgid "There is no excerpt because this is a protected post."
|
6233 |
msgstr "No hi ha cap extracte perquè es tracta d’una publicació protegida."
|
6234 |
|
6235 |
+
#: app/libraries/main.php:331 app/libraries/main.php:1702
|
6236 |
+
#: app/libraries/main.php:1727
|
6237 |
msgid "Grid View"
|
6238 |
msgstr "Vista cuadrícula"
|
6239 |
|
6240 |
+
#: app/libraries/main.php:332 app/libraries/main.php:1703
|
6241 |
+
#: app/libraries/main.php:1728
|
6242 |
msgid "Agenda View"
|
6243 |
msgstr "Vista d'Agenda"
|
6244 |
|
6245 |
+
#: app/libraries/main.php:333 app/libraries/main.php:1694
|
6246 |
+
#: app/libraries/main.php:1719
|
6247 |
msgid "Full Calendar"
|
6248 |
msgstr "Calendari complet"
|
6249 |
|
6250 |
+
#: app/libraries/main.php:335 app/libraries/main.php:1696
|
6251 |
+
#: app/libraries/main.php:1721
|
6252 |
msgid "Calendar/Monthly View"
|
6253 |
msgstr "Veure Calendari/Mes"
|
6254 |
|
6255 |
+
#: app/libraries/main.php:338 app/libraries/main.php:1699
|
6256 |
+
#: app/libraries/main.php:1724
|
6257 |
msgid "Timetable View"
|
6258 |
msgstr "Vista d'Horari"
|
6259 |
|
6260 |
+
#: app/libraries/main.php:339 app/libraries/main.php:1700
|
6261 |
+
#: app/libraries/main.php:1725
|
6262 |
msgid "Masonry View"
|
6263 |
msgstr "Vista en mosaic"
|
6264 |
|
6265 |
+
#: app/libraries/main.php:340 app/libraries/main.php:1704
|
6266 |
+
#: app/libraries/main.php:1729
|
6267 |
msgid "Map View"
|
6268 |
msgstr "Vista de mapa"
|
6269 |
|
6297 |
msgid "Tile View"
|
6298 |
msgstr "Vista de la línia de temps"
|
6299 |
|
6300 |
+
#: app/libraries/main.php:385 app/libraries/main.php:5080
|
6301 |
msgid "SU"
|
6302 |
msgstr "DG"
|
6303 |
|
6304 |
+
#: app/libraries/main.php:386 app/libraries/main.php:5081
|
6305 |
msgid "MO"
|
6306 |
msgstr "DL"
|
6307 |
|
6308 |
+
#: app/libraries/main.php:387 app/libraries/main.php:5082
|
6309 |
msgid "TU"
|
6310 |
msgstr "DM"
|
6311 |
|
6312 |
+
#: app/libraries/main.php:388 app/libraries/main.php:5083
|
6313 |
msgid "WE"
|
6314 |
msgstr "DC"
|
6315 |
|
6316 |
+
#: app/libraries/main.php:389 app/libraries/main.php:5084
|
6317 |
msgid "TH"
|
6318 |
msgstr "DJ"
|
6319 |
|
6320 |
+
#: app/libraries/main.php:390 app/libraries/main.php:5085
|
6321 |
msgid "FR"
|
6322 |
msgstr "DV"
|
6323 |
|
6324 |
+
#: app/libraries/main.php:391 app/libraries/main.php:5086
|
6325 |
msgid "SA"
|
6326 |
msgstr "DS"
|
6327 |
|
6378 |
|
6379 |
#: app/libraries/main.php:879
|
6380 |
msgid ""
|
6381 |
+
"<strong>Multisite Event Sync:</strong> Sync events between your subsites and "
|
6382 |
+
"main websites. Changes in the main one will be inherited by the subsites. "
|
6383 |
+
"you can set these up in the admin panel."
|
6384 |
msgstr ""
|
|
|
|
|
|
|
6385 |
|
6386 |
#: app/libraries/main.php:880
|
6387 |
msgid ""
|
6388 |
+
"<strong>User Dashboard:</strong> Create exclusive pages for users. These "
|
6389 |
+
"pages can contain ticket purchase information, information about registered "
|
6390 |
+
"events. Users can now log in to purchase tickets."
|
6391 |
msgstr ""
|
|
|
|
|
6392 |
|
6393 |
#: app/libraries/main.php:1429
|
6394 |
msgid "Events at this location"
|
6406 |
msgid "Twitter"
|
6407 |
msgstr "Twitter"
|
6408 |
|
6409 |
+
#: app/libraries/main.php:1474 app/libraries/main.php:1531
|
6410 |
msgid "Linkedin"
|
6411 |
msgstr "LinkedIn"
|
6412 |
|
6413 |
+
#: app/libraries/main.php:1475 app/libraries/main.php:1567
|
6414 |
msgid "VK"
|
6415 |
msgstr "VK"
|
6416 |
|
6417 |
+
#: app/libraries/main.php:1476
|
6418 |
+
msgid "Tumblr"
|
6419 |
+
msgstr ""
|
6420 |
+
|
6421 |
+
#: app/libraries/main.php:1477
|
6422 |
+
msgid "Pinterest"
|
6423 |
+
msgstr ""
|
6424 |
+
|
6425 |
+
#: app/libraries/main.php:1478
|
6426 |
+
msgid "Flipboard"
|
6427 |
+
msgstr ""
|
6428 |
+
|
6429 |
+
#: app/libraries/main.php:1479
|
6430 |
+
#, fuzzy
|
6431 |
+
#| msgid "Tickets"
|
6432 |
+
msgid "GetPocket"
|
6433 |
+
msgstr "Tickets"
|
6434 |
+
|
6435 |
+
#: app/libraries/main.php:1480
|
6436 |
+
msgid "Reddit"
|
6437 |
+
msgstr ""
|
6438 |
+
|
6439 |
+
#: app/libraries/main.php:1481
|
6440 |
+
msgid "WhatsApp"
|
6441 |
+
msgstr ""
|
6442 |
+
|
6443 |
+
#: app/libraries/main.php:1482
|
6444 |
+
msgid "Telegram"
|
6445 |
+
msgstr ""
|
6446 |
+
|
6447 |
+
#: app/libraries/main.php:1501
|
6448 |
msgid "Share on Facebook"
|
6449 |
msgstr "Compartir en Facebook"
|
6450 |
|
6451 |
+
#: app/libraries/main.php:1516
|
6452 |
msgid "Tweet"
|
6453 |
msgstr "Tweet"
|
6454 |
|
6455 |
#: app/libraries/main.php:1582
|
6456 |
+
#, fuzzy
|
6457 |
+
#| msgid "Share on Facebook"
|
6458 |
+
msgid "Share on Tumblr"
|
6459 |
+
msgstr "Compartir en Facebook"
|
6460 |
+
|
6461 |
+
#: app/libraries/main.php:1598
|
6462 |
+
msgid "Share on Pinterest"
|
6463 |
+
msgstr ""
|
6464 |
+
|
6465 |
+
#: app/libraries/main.php:1614
|
6466 |
+
#, fuzzy
|
6467 |
+
#| msgid "Share on Facebook"
|
6468 |
+
msgid "Share on Flipboard"
|
6469 |
+
msgstr "Compartir en Facebook"
|
6470 |
+
|
6471 |
+
#: app/libraries/main.php:1632
|
6472 |
+
#, fuzzy
|
6473 |
+
#| msgid "Share on Facebook"
|
6474 |
+
msgid "Share on GetPocket"
|
6475 |
+
msgstr "Compartir en Facebook"
|
6476 |
+
|
6477 |
+
#: app/libraries/main.php:1648
|
6478 |
+
#, fuzzy
|
6479 |
+
#| msgid "Share on Facebook"
|
6480 |
+
msgid "Share on Reddit"
|
6481 |
+
msgstr "Compartir en Facebook"
|
6482 |
+
|
6483 |
+
#: app/libraries/main.php:1664
|
6484 |
+
msgid "Share on Telegram"
|
6485 |
+
msgstr ""
|
6486 |
+
|
6487 |
+
#: app/libraries/main.php:1682
|
6488 |
+
msgid "Share on WhatsApp"
|
6489 |
+
msgstr ""
|
6490 |
+
|
6491 |
+
#: app/libraries/main.php:1705
|
6492 |
msgid "Custom Shortcode"
|
6493 |
msgstr "Shortcode personalitzat"
|
6494 |
|
6495 |
+
#: app/libraries/main.php:2066
|
6496 |
msgid "Your booking already verified!"
|
6497 |
msgstr "La teva reserva s'ha verificat correctament!"
|
6498 |
|
6499 |
+
#: app/libraries/main.php:2071
|
6500 |
msgid "Your booking successfully verified."
|
6501 |
msgstr "La vostra reserva s'ha verificat correctament."
|
6502 |
|
6503 |
+
#: app/libraries/main.php:2072
|
6504 |
msgid "Your booking cannot verify!"
|
6505 |
msgstr "La vostra reserva no es pot verificar!"
|
6506 |
|
6507 |
+
#: app/libraries/main.php:2091
|
6508 |
msgid "Your booking successfully canceled."
|
6509 |
msgstr "La vostra reserva s'ha cancel·lat correctament."
|
6510 |
|
6511 |
+
#: app/libraries/main.php:2092
|
6512 |
msgid "Your booking cannot be canceled."
|
6513 |
msgstr "La vostra reserva no es pot cancel·lar."
|
6514 |
|
6515 |
+
#: app/libraries/main.php:2096
|
6516 |
msgid "You canceled the payment successfully."
|
6517 |
msgstr "You canceled the payment successfully."
|
6518 |
|
6519 |
+
#: app/libraries/main.php:2100
|
6520 |
msgid "You returned from payment gateway successfully."
|
6521 |
msgstr "Heu retornat correctament de la passarel·la de pagament."
|
6522 |
|
6523 |
+
#: app/libraries/main.php:2116
|
6524 |
msgid "Cannot find the invoice!"
|
6525 |
msgstr "No es pot trobar la factura!"
|
6526 |
|
6527 |
+
#: app/libraries/main.php:2116
|
6528 |
msgid "Invoice is invalid."
|
6529 |
msgstr "La factura no és vàlida."
|
6530 |
|
6531 |
+
#: app/libraries/main.php:2136
|
6532 |
msgid ""
|
6533 |
"Your booking still is not confirmed. You able download it after confirmation!"
|
6534 |
msgstr ""
|
6535 |
"La vostra reserva encara no està confirmada. La podeu descarregar després de "
|
6536 |
"la confirmació!"
|
6537 |
|
6538 |
+
#: app/libraries/main.php:2136
|
6539 |
msgid "Booking Not Confirmed."
|
6540 |
msgstr "Reserva no confirmada."
|
6541 |
|
6542 |
+
#: app/libraries/main.php:2142
|
6543 |
msgid "Cannot find the booking!"
|
6544 |
msgstr "No es troba la reserva!"
|
6545 |
|
6546 |
+
#: app/libraries/main.php:2142
|
6547 |
msgid "Booking is invalid."
|
6548 |
msgstr "Reserva no vàlida."
|
6549 |
|
6550 |
+
#: app/libraries/main.php:2171
|
6551 |
#, php-format
|
6552 |
msgid "%s Invoice"
|
6553 |
msgstr "%s Factura"
|
6554 |
|
6555 |
+
#: app/libraries/main.php:2245
|
6556 |
msgid "Billing"
|
6557 |
msgstr "Facturació"
|
6558 |
|
6559 |
+
#: app/libraries/main.php:2256
|
6560 |
msgid "Total"
|
6561 |
msgstr "Total"
|
6562 |
|
6563 |
+
#: app/libraries/main.php:2263
|
6564 |
+
#, fuzzy
|
6565 |
+
#| msgid "Payment Gateways"
|
6566 |
+
msgid "Payment"
|
6567 |
+
msgstr "Pasarelas de pago"
|
6568 |
+
|
6569 |
+
#: app/libraries/main.php:2267
|
6570 |
+
#, fuzzy
|
6571 |
+
#| msgid "Popular Gateways"
|
6572 |
+
msgid "Gateway"
|
6573 |
+
msgstr "Pasarelas de pago populares"
|
6574 |
+
|
6575 |
+
#: app/libraries/main.php:2275
|
6576 |
+
#, fuzzy
|
6577 |
+
#| msgid "Payment Gateways"
|
6578 |
+
msgid "Payment Time"
|
6579 |
+
msgstr "Pasarelas de pago"
|
6580 |
+
|
6581 |
+
#: app/libraries/main.php:2336
|
6582 |
msgid "Request is not valid."
|
6583 |
msgstr "La sol·licitud no és vàlida."
|
6584 |
|
6585 |
+
#: app/libraries/main.php:2336
|
6586 |
msgid "iCal export stopped!"
|
6587 |
msgstr "L'exportació de iCal s'ha aturat!"
|
6588 |
|
6589 |
+
#: app/libraries/main.php:2662 app/libraries/main.php:2692
|
6590 |
+
#: app/libraries/main.php:2721 app/libraries/main.php:2751
|
6591 |
+
#: app/libraries/main.php:2780 app/libraries/main.php:2809
|
6592 |
+
#: app/libraries/main.php:2838 app/libraries/main.php:2867
|
6593 |
+
#: app/libraries/main.php:2896 app/libraries/main.php:2920
|
6594 |
+
#: app/libraries/main.php:2964 app/libraries/main.php:3008
|
6595 |
+
#: app/libraries/main.php:3055 app/libraries/main.php:3102
|
6596 |
msgid "Sort"
|
6597 |
msgstr "Ordre"
|
6598 |
|
6599 |
+
#: app/libraries/main.php:2668 app/libraries/main.php:2698
|
6600 |
+
#: app/libraries/main.php:2727 app/libraries/main.php:2757
|
6601 |
+
#: app/libraries/main.php:2786 app/libraries/main.php:2815
|
6602 |
+
#: app/libraries/main.php:2844 app/libraries/main.php:2873
|
6603 |
+
#: app/libraries/main.php:2926 app/libraries/main.php:2970
|
6604 |
+
#: app/libraries/main.php:3014 app/libraries/main.php:3061
|
6605 |
msgid "Required Field"
|
6606 |
msgstr "Camp necessari"
|
6607 |
|
6608 |
+
#: app/libraries/main.php:2674 app/libraries/main.php:2704
|
6609 |
+
#: app/libraries/main.php:2733 app/libraries/main.php:2763
|
6610 |
+
#: app/libraries/main.php:2792 app/libraries/main.php:2821
|
6611 |
+
#: app/libraries/main.php:2850 app/libraries/main.php:2879
|
6612 |
+
#: app/libraries/main.php:2932 app/libraries/main.php:2976
|
6613 |
+
#: app/libraries/main.php:3020 app/libraries/main.php:3067
|
6614 |
msgid "Insert a label for this field"
|
6615 |
msgstr "Inseriu una etiqueta per a aquest camp"
|
6616 |
|
6617 |
+
#: app/libraries/main.php:2902
|
6618 |
msgid "HTML and shortcode are allowed."
|
6619 |
msgstr "HTML i shortcodes són permesos."
|
6620 |
|
6621 |
+
#: app/libraries/main.php:2945 app/libraries/main.php:2989
|
6622 |
+
#: app/libraries/main.php:3033
|
6623 |
msgid "Option"
|
6624 |
msgstr "Opció"
|
6625 |
|
6626 |
+
#: app/libraries/main.php:3067
|
6627 |
#, php-format
|
6628 |
msgid "Instead of %s, the page title with a link will be show."
|
6629 |
msgstr "En lugar de %s, se mostrará el título de la pàgina con un enllaç."
|
6630 |
|
6631 |
+
#: app/libraries/main.php:3069
|
6632 |
msgid "Agreement Page"
|
6633 |
msgstr "Pàgina de l’acord"
|
6634 |
|
6635 |
+
#: app/libraries/main.php:3080
|
6636 |
msgid "Checked by default"
|
6637 |
msgstr "Marcat per defecte"
|
6638 |
|
6639 |
+
#: app/libraries/main.php:3081
|
6640 |
msgid "Unchecked by default"
|
6641 |
msgstr "Sense marcar per defecte"
|
6642 |
|
6643 |
+
#: app/libraries/main.php:3104
|
6644 |
msgid "Insert a label for this option"
|
6645 |
msgstr "Inseriu una etiqueta per a aquesta opció"
|
6646 |
|
6647 |
+
#: app/libraries/main.php:3119
|
6648 |
msgid "Free"
|
6649 |
msgstr "Gratuït"
|
6650 |
|
6651 |
+
#: app/libraries/main.php:3725 app/libraries/main.php:5330
|
6652 |
msgid "M.E. Calender"
|
6653 |
msgstr "M.E. Calendari"
|
6654 |
|
6655 |
+
#: app/libraries/main.php:3880
|
6656 |
#, php-format
|
6657 |
msgid "Copy of %s"
|
6658 |
msgstr "Còpia de %s"
|
6659 |
|
6660 |
+
#: app/libraries/main.php:4573
|
6661 |
msgid "Booked an event."
|
6662 |
msgstr "S'ha reservat un esdeveniment."
|
6663 |
|
6664 |
+
#: app/libraries/main.php:4614
|
6665 |
#, php-format
|
6666 |
msgid "%s booked %s event."
|
6667 |
msgstr "%s reservat %s esdeveniment."
|
6668 |
|
6669 |
+
#: app/libraries/main.php:5063
|
6670 |
msgid "Taxonomies"
|
6671 |
msgstr "Taxonomies"
|
6672 |
|
6673 |
+
#: app/libraries/main.php:5065
|
6674 |
msgid "Category Plural Label"
|
6675 |
msgstr "Categoria Etiqueta plural"
|
6676 |
|
6677 |
+
#: app/libraries/main.php:5066
|
6678 |
msgid "Category Singular Label"
|
6679 |
msgstr "Categoria Etiqueta Singular"
|
6680 |
|
6681 |
+
#: app/libraries/main.php:5067
|
6682 |
msgid "Label Plural Label"
|
6683 |
msgstr "Etiqueta plural de l'etiqueta"
|
6684 |
|
6685 |
+
#: app/libraries/main.php:5068
|
6686 |
msgid "Label Singular Label"
|
6687 |
msgstr "Etiqueta singular de l'etiqueta"
|
6688 |
|
6689 |
+
#: app/libraries/main.php:5069
|
6690 |
msgid "Location Plural Label"
|
6691 |
msgstr "Etiqueta d'ubicació plural"
|
6692 |
|
6693 |
+
#: app/libraries/main.php:5070
|
6694 |
msgid "Location Singular Label"
|
6695 |
msgstr "Etiqueta d'ubicació en singular"
|
6696 |
|
6697 |
+
#: app/libraries/main.php:5071
|
6698 |
msgid "Organizer Plural Label"
|
6699 |
msgstr "Etiqueta de l'organizador en plural"
|
6700 |
|
6701 |
+
#: app/libraries/main.php:5072
|
6702 |
msgid "Organizer Singular Label"
|
6703 |
msgstr "Etiqueta de l'Organizador Singular"
|
6704 |
|
6705 |
+
#: app/libraries/main.php:5073
|
6706 |
msgid "Speaker Plural Label"
|
6707 |
msgstr "Etiqueta de ponent plural"
|
6708 |
|
6709 |
+
#: app/libraries/main.php:5074
|
6710 |
msgid "Speaker Singular Label"
|
6711 |
msgstr "Etiqueta de ponent singular"
|
6712 |
|
6713 |
+
#: app/libraries/main.php:5080
|
6714 |
msgid "Sunday abbreviation"
|
6715 |
msgstr "Abreviatura de Diumenge"
|
6716 |
|
6717 |
+
#: app/libraries/main.php:5081
|
6718 |
msgid "Monday abbreviation"
|
6719 |
msgstr "Abreviatura de Dilluns"
|
6720 |
|
6721 |
+
#: app/libraries/main.php:5082
|
6722 |
msgid "Tuesday abbreviation"
|
6723 |
msgstr "Abreviatura de Dimarts"
|
6724 |
|
6725 |
+
#: app/libraries/main.php:5083
|
6726 |
msgid "Wednesday abbreviation"
|
6727 |
msgstr "Abreviatura de Dimecres"
|
6728 |
|
6729 |
+
#: app/libraries/main.php:5084
|
6730 |
msgid "Thursday abbreviation"
|
6731 |
msgstr "Abreviatura de Dijous"
|
6732 |
|
6733 |
+
#: app/libraries/main.php:5085
|
6734 |
msgid "Friday abbreviation"
|
6735 |
msgstr "Abreviatura de Divendres"
|
6736 |
|
6737 |
+
#: app/libraries/main.php:5086
|
6738 |
msgid "Saturday abbreviation"
|
6739 |
msgstr "Abreviatura de Dissabte"
|
6740 |
|
6741 |
+
#: app/libraries/main.php:5090
|
6742 |
msgid "Others"
|
6743 |
msgstr "Altres"
|
6744 |
|
6745 |
+
#: app/libraries/main.php:5092
|
6746 |
msgid "Booking Success Message"
|
6747 |
msgstr "Missatge d’èxit de la reserva"
|
6748 |
|
6749 |
+
#: app/libraries/main.php:5092
|
6750 |
msgid ""
|
6751 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
6752 |
"needed, please check your email."
|
6755 |
"entrades reservades, la verificació de la reserva, consulteu el vostre "
|
6756 |
"correu electrònic."
|
6757 |
|
6758 |
+
#: app/libraries/main.php:5093 app/widgets/single.php:131
|
6759 |
msgid "Register Button"
|
6760 |
msgstr "Botó de registre"
|
6761 |
|
6762 |
+
#: app/libraries/main.php:5093 app/skins/available_spot/tpl.php:225
|
6763 |
#: app/skins/carousel/render.php:159 app/skins/carousel/render.php:195
|
6764 |
+
#: app/skins/grid/render.php:121 app/skins/grid/render.php:167
|
6765 |
+
#: app/skins/grid/render.php:210 app/skins/grid/render.php:238
|
6766 |
#: app/skins/list/render.php:113 app/skins/list/render.php:198
|
6767 |
+
#: app/skins/masonry/render.php:179 app/skins/single.php:758
|
6768 |
+
#: app/skins/single.php:761 app/skins/single/default.php:248
|
6769 |
#: app/skins/single/default.php:250 app/skins/single/default.php:460
|
6770 |
#: app/skins/single/default.php:462 app/skins/single/m1.php:130
|
6771 |
#: app/skins/single/m1.php:132 app/skins/single/m2.php:62
|
6776 |
msgid "REGISTER"
|
6777 |
msgstr "REGISTRE"
|
6778 |
|
6779 |
+
#: app/libraries/main.php:5094
|
6780 |
msgid "View Detail Button"
|
6781 |
msgstr "Veure detall del botó"
|
6782 |
|
6783 |
+
#: app/libraries/main.php:5094 app/skins/carousel/render.php:159
|
6784 |
+
#: app/skins/carousel/render.php:195 app/skins/grid/render.php:121
|
6785 |
+
#: app/skins/grid/render.php:167 app/skins/grid/render.php:210
|
6786 |
+
#: app/skins/grid/render.php:238 app/skins/list/render.php:113
|
6787 |
#: app/skins/list/render.php:198 app/skins/masonry/render.php:179
|
6788 |
#: app/skins/slider/render.php:113 app/skins/slider/render.php:161
|
6789 |
#: app/skins/slider/render.php:208 app/skins/slider/render.php:256
|
6791 |
msgid "View Detail"
|
6792 |
msgstr "Veure detall"
|
6793 |
|
6794 |
+
#: app/libraries/main.php:5095
|
6795 |
msgid "Event Detail Button"
|
6796 |
msgstr "Botó de detall de l'esdeveniment"
|
6797 |
|
6798 |
+
#: app/libraries/main.php:5095 app/skins/countdown/tpl.php:244
|
6799 |
msgid "Event Detail"
|
6800 |
msgstr "Detalle de l'esdeveniment"
|
6801 |
|
6802 |
+
#: app/libraries/main.php:5097
|
6803 |
msgid "More Info Link"
|
6804 |
msgstr "Enllaç a Més Informació"
|
6805 |
|
6806 |
+
#: app/libraries/main.php:5100
|
6807 |
msgid "Ticket (Singular)"
|
6808 |
msgstr "Ticket (Singular)"
|
6809 |
|
6810 |
+
#: app/libraries/main.php:5101
|
6811 |
msgid "Tickets (Plural)"
|
6812 |
msgstr "Tickets (Plural)"
|
6813 |
|
6814 |
+
#: app/libraries/main.php:5187
|
6815 |
msgid "EventON"
|
6816 |
msgstr "EventON"
|
6817 |
|
6818 |
+
#: app/libraries/main.php:5188
|
6819 |
msgid "The Events Calendar"
|
6820 |
msgstr "The Events Calendar"
|
6821 |
|
6822 |
+
#: app/libraries/main.php:5189
|
6823 |
msgid "Events Schedule WP Plugin"
|
6824 |
msgstr "Plugin WP de Programació d'esdeveniments"
|
6825 |
|
6826 |
+
#: app/libraries/main.php:5190
|
6827 |
msgid "Calendarize It"
|
6828 |
msgstr "Posa-ho al calendari"
|
6829 |
|
6830 |
+
#: app/libraries/main.php:5191
|
6831 |
msgid "Event Espresso"
|
6832 |
msgstr "Esdeveniment Espresso"
|
6833 |
|
6834 |
+
#: app/libraries/main.php:5192
|
6835 |
msgid "Events Manager (Recurring)"
|
6836 |
msgstr "Gestor d'esdeveniments (recurrent)"
|
6837 |
|
6838 |
+
#: app/libraries/main.php:5193
|
6839 |
msgid "Events Manager (Single)"
|
6840 |
msgstr "Gestor d'esdeveniments (Únic)"
|
6841 |
|
6842 |
+
#: app/libraries/main.php:5267 app/libraries/main.php:5287
|
6843 |
msgid "Confirmed"
|
6844 |
msgstr "Confirmat"
|
6845 |
|
6846 |
+
#: app/libraries/main.php:5268 app/libraries/main.php:5295
|
6847 |
msgid "Rejected"
|
6848 |
msgstr "Rebutjada"
|
6849 |
|
6850 |
+
#: app/libraries/main.php:5269 app/libraries/main.php:5291
|
6851 |
msgid "Pending"
|
6852 |
msgstr "Pendent"
|
6853 |
|
6854 |
+
#: app/libraries/main.php:5317
|
6855 |
msgid "Waiting"
|
6856 |
msgstr "Esperant"
|
6857 |
|
6858 |
+
#: app/libraries/main.php:5522 app/libraries/render.php:383
|
6859 |
msgid "Skin controller does not exist."
|
6860 |
msgstr "El controlador de tema no existeix."
|
6861 |
|
6862 |
+
#: app/libraries/main.php:5636
|
6863 |
msgid "Sold Out"
|
6864 |
msgstr "Esgotat"
|
6865 |
|
6866 |
+
#: app/libraries/main.php:5644
|
6867 |
#, fuzzy
|
6868 |
#| msgid "Ticket"
|
6869 |
msgid "Last Few Tickets"
|
6877 |
msgid "Your booking is received."
|
6878 |
msgstr "S'ha rebut la vostra reserva."
|
6879 |
|
6880 |
+
#: app/libraries/notifications.php:249
|
6881 |
msgid "Your booking is confirmed."
|
6882 |
msgstr "S'ha confirmat la vostra reserva."
|
6883 |
|
6884 |
+
#: app/libraries/notifications.php:391
|
6885 |
msgid "booking canceled."
|
6886 |
msgstr "reserva cancel·lada."
|
6887 |
|
6888 |
+
#: app/libraries/notifications.php:466
|
6889 |
msgid "A new booking is received."
|
6890 |
msgstr "Nova reserva rebuda."
|
6891 |
|
6892 |
+
#: app/libraries/notifications.php:646
|
6893 |
msgid "A new event is added."
|
6894 |
msgstr "S'ha afegit un nou esdeveniment."
|
6895 |
|
6896 |
+
#: app/libraries/notifications.php:718
|
6897 |
msgid "Your event is published."
|
6898 |
msgstr "L'esdeveniment ha estat publicat."
|
6899 |
|
6900 |
+
#: app/libraries/notifications.php:943 app/libraries/notifications.php:954
|
6901 |
+
#: app/libraries/notifications.php:956
|
6902 |
msgid "to"
|
6903 |
msgstr "a"
|
6904 |
|
6905 |
+
#: app/libraries/notifications.php:971 app/modules/export/details.php:46
|
6906 |
msgid "+ Add to Google Calendar"
|
6907 |
msgstr "+ Afegir Google Calendar"
|
6908 |
|
6909 |
+
#: app/libraries/notifications.php:972 app/modules/export/details.php:47
|
6910 |
msgid "+ iCal export"
|
6911 |
msgstr "Exportación + iCal"
|
6912 |
|
6913 |
+
#: app/libraries/notifications.php:1035
|
6914 |
msgid "Yes"
|
6915 |
msgstr "Sí"
|
6916 |
|
6917 |
+
#: app/libraries/notifications.php:1035
|
6918 |
msgid "No"
|
6919 |
msgstr "No"
|
6920 |
|
6957 |
msgstr "Ompliu informació d'altres assistents com el primer formulari."
|
6958 |
|
6959 |
#: app/modules/booking/steps/form.php:178
|
6960 |
+
#: app/modules/booking/steps/tickets.php:78 app/skins/countdown/tpl.php:145
|
6961 |
#: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:234
|
6962 |
msgid "Next"
|
6963 |
msgstr "Sigüent"
|
6970 |
msgid "Book Event"
|
6971 |
msgstr "Reservar esdeveniment"
|
6972 |
|
6973 |
+
#: app/modules/booking/steps/tickets.php:44
|
6974 |
#, php-format
|
6975 |
msgid "Available %s: <span>%s</span>"
|
6976 |
msgstr "%s disponibles: <span>%s</span>"
|
6977 |
|
6978 |
+
#: app/modules/booking/steps/tickets.php:48
|
6979 |
+
#, php-format
|
6980 |
+
msgid "The %s ticket sales has stoped!"
|
6981 |
+
msgstr ""
|
6982 |
+
|
6983 |
+
#: app/modules/booking/steps/tickets.php:49
|
6984 |
#, php-format
|
6985 |
msgid "The %s ticket is sold out. You can try another ticket or another date."
|
6986 |
msgstr ""
|
7003 |
msgid "Get Directions"
|
7004 |
msgstr "Obtenir adreces"
|
7005 |
|
7006 |
+
#: app/modules/links/details.php:17 app/skins/single.php:455
|
7007 |
msgid "Share this event"
|
7008 |
msgstr "Compartir aquest esdeveniment"
|
7009 |
|
7022 |
msgid "Time: %s"
|
7023 |
msgstr "Hora: %s"
|
7024 |
|
7025 |
+
#: app/modules/next-event/details.php:83
|
7026 |
msgid "Next Occurrence"
|
7027 |
msgstr "Següent repetició"
|
7028 |
|
7030 |
msgid "Go to occurrence page"
|
7031 |
msgstr "Ana a la pàgina de repetició"
|
7032 |
|
7033 |
+
#: app/modules/next-event/details.php:95 app/skins/single.php:731
|
7034 |
#: app/skins/single/default.php:95 app/skins/single/default.php:307
|
7035 |
#: app/skins/single/m1.php:32 app/skins/single/modern.php:182
|
7036 |
msgid "Time"
|
7148 |
|
7149 |
#: app/skins/monthly_view/calendar.php:161
|
7150 |
#: app/skins/monthly_view/calendar_clean.php:175
|
7151 |
+
#: app/skins/timetable/render.php:117 app/skins/weekly_view/render.php:96
|
7152 |
msgid "No Events"
|
7153 |
msgstr "Sense esdeveniments"
|
7154 |
|
7156 |
msgid "Home"
|
7157 |
msgstr "Inici"
|
7158 |
|
7159 |
+
#: app/skins/single.php:538 app/skins/single/default.php:50
|
7160 |
#: app/skins/single/m1.php:251 app/skins/single/m2.php:178
|
7161 |
#: app/skins/single/modern.php:260
|
7162 |
msgid "Sold out!"
|
7163 |
msgstr "Esgotat!"
|
7164 |
|
7165 |
+
#: app/skins/single.php:806 app/skins/single.php:861
|
7166 |
#: app/skins/single/default.php:220 app/skins/single/default.php:432
|
7167 |
#: app/skins/single/m1.php:104 app/skins/single/m2.php:36
|
7168 |
#: app/skins/single/modern.php:45
|
7169 |
msgid "Phone"
|
7170 |
msgstr "Telèfon"
|
7171 |
|
7172 |
+
#: app/skins/single.php:820 app/skins/single.php:875
|
7173 |
#: app/skins/single/default.php:234 app/skins/single/default.php:446
|
7174 |
#: app/skins/single/m1.php:118 app/skins/single/m2.php:50
|
7175 |
#: app/skins/single/modern.php:59
|
7176 |
msgid "Website"
|
7177 |
msgstr "Web"
|
7178 |
|
7179 |
+
#: app/skins/single.php:945
|
7180 |
msgid "Speakers:"
|
7181 |
msgstr "Ponents:"
|
7182 |
|
7278 |
msgid "http://webnus.net"
|
7279 |
msgstr "http://webnus.net"
|
7280 |
|
7281 |
+
#~ msgid ""
|
7282 |
+
#~ "<strong>Elementor Single Builder:</strong> Edit single event page using "
|
7283 |
+
#~ "Elementor. Manage the position of all elements in the Single page and in "
|
7284 |
+
#~ "desktops, mobiles and tablets as well."
|
7285 |
+
#~ msgstr ""
|
7286 |
+
#~ "<strong>Elementor Single Builder:</strong> Edita la pàgina d’un sol "
|
7287 |
+
#~ "esdeveniment mitjançant Elementor. Gestioneu la posició de tots els "
|
7288 |
+
#~ "elements de la pàgina única i també en ordinadors de sobretaula, mòbils i "
|
7289 |
+
#~ "tauletes."
|
7290 |
+
|
7291 |
+
#~ msgid ""
|
7292 |
+
#~ "<strong>Elementor Shortcode Builder:</strong> It enables you to create "
|
7293 |
+
#~ "shortcodes in Elementor Live Editor."
|
7294 |
+
#~ msgstr ""
|
7295 |
+
#~ "<strong>Elementor Shortcode Builder:</strong> Us permet crear codis "
|
7296 |
+
#~ "directes en Elementor Live Editor."
|
7297 |
+
|
7298 |
#~ msgid "%s tickets"
|
7299 |
#~ msgstr "%s entrades"
|
7300 |
|
7387 |
#~ msgid "Status & Invoice"
|
7388 |
#~ msgstr "%s Factura"
|
7389 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7390 |
#, fuzzy
|
7391 |
#~| msgid "Booking cancellation link."
|
7392 |
#~ msgid "Cancellation Date"
|
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-12-
|
5 |
-
"PO-Revision-Date: 2019-12-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: cs_CZ\n"
|
@@ -31,8 +31,8 @@ msgstr "Moderní kalendář událostí"
|
|
31 |
msgid "Content"
|
32 |
msgstr "Obsah"
|
33 |
|
34 |
-
#: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:
|
35 |
-
#: app/features/mec.php:
|
36 |
msgid "Shortcode"
|
37 |
msgstr "Zkrácený kód"
|
38 |
|
@@ -66,13 +66,13 @@ msgstr "Vyberte typ"
|
|
66 |
msgid "Event Color"
|
67 |
msgstr "Barva události"
|
68 |
|
69 |
-
#: app/features/contextual.php:55 app/features/mec.php:
|
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:591
|
72 |
msgid "Settings"
|
73 |
msgstr "Nastavení"
|
74 |
|
75 |
-
#: app/features/contextual.php:62 app/features/events.php:
|
76 |
#: app/features/mec/booking.php:439 app/features/mec/support.php:29
|
77 |
#: app/libraries/main.php:557
|
78 |
msgid "Booking Form"
|
@@ -236,12 +236,12 @@ msgstr "Modul Další události"
|
|
236 |
msgid "Frontend Event Submission"
|
237 |
msgstr "Předání události frontendu"
|
238 |
|
239 |
-
#: app/features/contextual.php:298 app/features/events.php:
|
240 |
#: app/libraries/main.php:546
|
241 |
msgid "Exceptional Days"
|
242 |
msgstr "Výjimečné dny"
|
243 |
|
244 |
-
#: app/features/contextual.php:308 app/features/events.php:
|
245 |
#: app/features/mec/booking.php:88 app/features/mec/notifications.php:34
|
246 |
#: app/libraries/main.php:553 app/libraries/main.php:574
|
247 |
#: app/libraries/main.php:656
|
@@ -253,7 +253,7 @@ msgstr "Rezervace"
|
|
253 |
msgid "Coupons"
|
254 |
msgstr "Kupóny"
|
255 |
|
256 |
-
#: app/features/contextual.php:326 app/features/mec/modules.php:
|
257 |
#: app/libraries/main.php:570
|
258 |
msgid "BuddyPress Integration"
|
259 |
msgstr "Integrace BuddyPress"
|
@@ -267,14 +267,14 @@ msgstr "Integrace Mailchimp"
|
|
267 |
msgid "MEC Activation"
|
268 |
msgstr "Aktivace MEC"
|
269 |
|
270 |
-
#: app/features/events.php:
|
271 |
#: app/features/mec/dashboard.php:255 app/skins/daily_view/tpl.php:79
|
272 |
#: app/skins/monthly_view/tpl.php:70 app/skins/tile/tpl.php:69
|
273 |
#: app/skins/yearly_view/tpl.php:68
|
274 |
msgid "Events"
|
275 |
msgstr "Události"
|
276 |
|
277 |
-
#: app/features/events.php:
|
278 |
#: app/features/mec/meta_boxes/display_options.php:959
|
279 |
#: app/features/mec/meta_boxes/display_options.php:1015
|
280 |
#: app/features/mec/meta_boxes/display_options.php:1050
|
@@ -284,36 +284,36 @@ msgstr "Události"
|
|
284 |
msgid "Event"
|
285 |
msgstr "Událost"
|
286 |
|
287 |
-
#: app/features/events.php:
|
288 |
msgid "Add Event"
|
289 |
msgstr "Přidat událost"
|
290 |
|
291 |
-
#: app/features/events.php:
|
292 |
msgid "Add New Event"
|
293 |
msgstr "Přidat novou událost"
|
294 |
|
295 |
-
#: app/features/events.php:
|
296 |
#: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:58
|
297 |
msgid "No events found!"
|
298 |
msgstr "Nebyly nalezeny žádné události!"
|
299 |
|
300 |
-
#: app/features/events.php:
|
301 |
msgid "All Events"
|
302 |
msgstr "Všechny události"
|
303 |
|
304 |
-
#: app/features/events.php:
|
305 |
msgid "Edit Event"
|
306 |
msgstr "Editace události"
|
307 |
|
308 |
-
#: app/features/events.php:
|
309 |
msgid "View Event"
|
310 |
msgstr "Zobrazit událost"
|
311 |
|
312 |
-
#: app/features/events.php:
|
313 |
msgid "No events found in Trash!"
|
314 |
msgstr "V koši nebyly nalezeny žádné události!"
|
315 |
|
316 |
-
#: app/features/events.php:
|
317 |
#: app/features/mec/meta_boxes/display_options.php:870
|
318 |
#: app/features/mec/meta_boxes/search_form.php:31
|
319 |
#: app/features/mec/meta_boxes/search_form.php:93
|
@@ -327,123 +327,123 @@ msgstr "V koši nebyly nalezeny žádné události!"
|
|
327 |
#: app/features/mec/meta_boxes/search_form.php:575
|
328 |
#: app/features/mec/meta_boxes/search_form.php:672
|
329 |
#: app/features/mec/settings.php:796 app/features/mec/single.php:204
|
330 |
-
#: app/features/search.php:67 app/libraries/main.php:
|
331 |
-
#: app/libraries/skins.php:811 app/skins/single.php:
|
332 |
#: app/skins/single/default.php:185 app/skins/single/default.php:397
|
333 |
#: app/skins/single/m1.php:174 app/skins/single/m2.php:106
|
334 |
#: app/skins/single/modern.php:114
|
335 |
msgid "Category"
|
336 |
msgstr "Kategorie"
|
337 |
|
338 |
-
#: app/features/events.php:
|
339 |
-
#: app/features/fes/form.php:746 app/features/mec.php:
|
340 |
-
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:
|
341 |
msgid "Categories"
|
342 |
msgstr "Kategorie"
|
343 |
|
344 |
-
#: app/features/events.php:
|
345 |
#: app/features/locations.php:69 app/features/organizers.php:69
|
346 |
#: app/features/speakers.php:72
|
347 |
#, php-format
|
348 |
msgid "All %s"
|
349 |
msgstr "Všechny %s"
|
350 |
|
351 |
-
#: app/features/events.php:
|
352 |
#: app/features/locations.php:70 app/features/organizers.php:70
|
353 |
#: app/features/speakers.php:73
|
354 |
#, php-format
|
355 |
msgid "Edit %s"
|
356 |
msgstr "Editovat %s"
|
357 |
|
358 |
-
#: app/features/events.php:
|
359 |
#: app/features/locations.php:71 app/features/organizers.php:71
|
360 |
#: app/features/speakers.php:74
|
361 |
#, php-format
|
362 |
msgid "View %s"
|
363 |
msgstr "Zobrazit %s"
|
364 |
|
365 |
-
#: app/features/events.php:
|
366 |
#: app/features/locations.php:72 app/features/organizers.php:72
|
367 |
#: app/features/speakers.php:75
|
368 |
#, php-format
|
369 |
msgid "Update %s"
|
370 |
msgstr "Aktualizovat %s"
|
371 |
|
372 |
-
#: app/features/events.php:
|
373 |
#: app/features/locations.php:73 app/features/organizers.php:73
|
374 |
#: app/features/speakers.php:76
|
375 |
#, php-format
|
376 |
msgid "Add New %s"
|
377 |
msgstr "Přidat novou %s"
|
378 |
|
379 |
-
#: app/features/events.php:
|
380 |
#: app/features/locations.php:74 app/features/organizers.php:74
|
381 |
#: app/features/speakers.php:77
|
382 |
#, php-format
|
383 |
msgid "New %s Name"
|
384 |
msgstr "Nové jméno %s"
|
385 |
|
386 |
-
#: app/features/events.php:
|
387 |
#: app/features/locations.php:75 app/features/organizers.php:75
|
388 |
#: app/features/speakers.php:78
|
389 |
#, php-format
|
390 |
msgid "Popular %s"
|
391 |
msgstr "Populární %s"
|
392 |
|
393 |
-
#: app/features/events.php:
|
394 |
#: app/features/locations.php:76 app/features/organizers.php:76
|
395 |
#: app/features/speakers.php:79
|
396 |
#, php-format
|
397 |
msgid "Search %s"
|
398 |
msgstr "Vyhledat %s"
|
399 |
|
400 |
-
#: app/features/events.php:
|
401 |
msgid "Category Icon"
|
402 |
msgstr "Ikona kategorie"
|
403 |
|
404 |
-
#: app/features/events.php:
|
405 |
msgid "Select icon"
|
406 |
msgstr "Vybrat ikonu"
|
407 |
|
408 |
-
#: app/features/events.php:
|
409 |
msgid "Event Details"
|
410 |
msgstr "Podrobnosti události"
|
411 |
|
412 |
-
#: app/features/events.php:
|
413 |
#, fuzzy
|
414 |
#| msgid "Event Details"
|
415 |
msgid "FES Details"
|
416 |
msgstr "Podrobnosti události"
|
417 |
|
418 |
-
#: app/features/events.php:
|
419 |
#, fuzzy
|
420 |
#| msgid "Date and Time"
|
421 |
msgid "Date And Time"
|
422 |
msgstr "Datum a čas"
|
423 |
|
424 |
-
#: app/features/events.php:
|
425 |
msgid "Event Repeating"
|
426 |
msgstr "Opakování události"
|
427 |
|
428 |
-
#: app/features/events.php:
|
429 |
-
#: app/features/mec/settings.php:706 app/skins/single.php:
|
430 |
msgid "Hourly Schedule"
|
431 |
msgstr "Hodinový rozvrh"
|
432 |
|
433 |
-
#: app/features/events.php:
|
434 |
#, fuzzy
|
435 |
#| msgid "Location"
|
436 |
msgid "Location/Venue"
|
437 |
msgstr "Umístění"
|
438 |
|
439 |
-
#: app/features/events.php:
|
440 |
#, fuzzy
|
441 |
#| msgid "Link"
|
442 |
msgid "Links"
|
443 |
msgstr "Odkaz"
|
444 |
|
445 |
-
#: app/features/events.php:
|
446 |
-
#: app/features/events.php:
|
447 |
#: app/features/ix.php:3373 app/features/ix.php:3414
|
448 |
#: app/features/mec/meta_boxes/display_options.php:873
|
449 |
#: app/features/mec/meta_boxes/search_form.php:45
|
@@ -461,62 +461,62 @@ msgstr "Odkaz"
|
|
461 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
462 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
463 |
#: app/features/organizers.php:271 app/features/search.php:75
|
464 |
-
#: app/libraries/main.php:
|
465 |
-
#: app/skins/single.php:
|
466 |
#: app/skins/single/default.php:422 app/skins/single/m1.php:94
|
467 |
#: app/skins/single/m2.php:26 app/skins/single/modern.php:35
|
468 |
msgid "Organizer"
|
469 |
msgstr "Organizátor"
|
470 |
|
471 |
-
#: app/features/events.php:
|
472 |
-
#: app/features/fes/form.php:719 app/libraries/main.php:
|
473 |
-
#: app/skins/single.php:
|
474 |
#: app/skins/single/default.php:331 app/skins/single/m1.php:53
|
475 |
#: app/skins/single/modern.php:203
|
476 |
msgid "Cost"
|
477 |
msgstr "Cena"
|
478 |
|
479 |
-
#: app/features/events.php:
|
480 |
msgid "Note for reviewer"
|
481 |
msgstr "Poznámka pro recenzenta"
|
482 |
|
483 |
-
#: app/features/events.php:
|
484 |
msgid "Guest Data"
|
485 |
msgstr "Údaje hosta"
|
486 |
|
487 |
-
#: app/features/events.php:
|
488 |
-
#: app/features/events.php:
|
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 "Jméno"
|
495 |
|
496 |
-
#: app/features/events.php:
|
497 |
-
#: app/features/events.php:
|
498 |
-
#: app/features/events.php:
|
499 |
#: app/features/fes/form.php:674 app/features/mec/booking.php:57
|
500 |
#: app/features/mec/booking.php:490 app/features/organizers.php:111
|
501 |
#: app/features/organizers.php:152 app/features/profile/profile.php:183
|
502 |
#: app/features/speakers.php:126 app/features/speakers.php:187
|
503 |
-
#: app/libraries/main.php:
|
504 |
-
#: app/libraries/main.php:
|
505 |
#: app/modules/booking/steps/form.php:46 app/modules/booking/steps/form.php:83
|
506 |
-
#: app/skins/single.php:
|
507 |
#: app/skins/single/default.php:227 app/skins/single/default.php:439
|
508 |
#: app/skins/single/m1.php:111 app/skins/single/m2.php:43
|
509 |
#: app/skins/single/modern.php:52
|
510 |
msgid "Email"
|
511 |
msgstr "Email"
|
512 |
|
513 |
-
#: app/features/events.php:
|
514 |
msgid "Date and Time"
|
515 |
msgstr "Datum a čas"
|
516 |
|
517 |
-
#: app/features/events.php:
|
518 |
-
#: app/features/events.php:
|
519 |
-
#: app/features/events.php:
|
520 |
#: app/features/fes/form.php:250 app/features/ix.php:3373
|
521 |
#: app/features/ix.php:3414 app/features/ix/import_g_calendar.php:38
|
522 |
#: app/features/mec/dashboard.php:399
|
@@ -538,47 +538,47 @@ msgstr "Datum a čas"
|
|
538 |
msgid "Start Date"
|
539 |
msgstr "Počátečná den"
|
540 |
|
541 |
-
#: app/features/events.php:
|
542 |
-
#: app/features/events.php:
|
543 |
-
#: app/features/events.php:
|
544 |
#: app/features/fes/form.php:278 app/features/fes/form.php:318
|
545 |
msgid "AM"
|
546 |
msgstr "dop."
|
547 |
|
548 |
-
#: app/features/events.php:
|
549 |
-
#: app/features/events.php:
|
550 |
-
#: app/features/events.php:
|
551 |
#: app/features/fes/form.php:279 app/features/fes/form.php:319
|
552 |
msgid "PM"
|
553 |
msgstr "odp."
|
554 |
|
555 |
-
#: app/features/events.php:
|
556 |
-
#: app/features/events.php:
|
557 |
-
#: app/features/events.php:
|
558 |
#: app/features/fes/form.php:290 app/features/ix.php:3373
|
559 |
#: app/features/ix.php:3414 app/features/ix/import_g_calendar.php:44
|
560 |
#: app/features/mec/dashboard.php:400
|
561 |
msgid "End Date"
|
562 |
msgstr "Konečný den"
|
563 |
|
564 |
-
#: app/features/events.php:
|
565 |
msgid "All Day Event"
|
566 |
msgstr "Celodenní událost"
|
567 |
|
568 |
-
#: app/features/events.php:
|
569 |
msgid "Hide Event Time"
|
570 |
msgstr "Skrýt čas události"
|
571 |
|
572 |
-
#: app/features/events.php:
|
573 |
msgid "Hide Event End Time"
|
574 |
msgstr "Skrýt čas ukončení události"
|
575 |
|
576 |
-
#: app/features/events.php:
|
577 |
#: app/features/fes/form.php:335
|
578 |
msgid "Time Comment"
|
579 |
msgstr "Časový komentář"
|
580 |
|
581 |
-
#: app/features/events.php:
|
582 |
msgid ""
|
583 |
"It shows next to event time on single event page. You can insert Timezone "
|
584 |
"etc. in this field."
|
@@ -586,14 +586,14 @@ msgstr ""
|
|
586 |
"Zobrazuje se vedle času události na stránce jedné události. Do tohoto pole "
|
587 |
"můžete vložit časové pásmo atd."
|
588 |
|
589 |
-
#: app/features/events.php:
|
590 |
-
#: app/features/events.php:
|
591 |
-
#: app/features/events.php:
|
592 |
-
#: app/features/events.php:
|
593 |
-
#: app/features/events.php:
|
594 |
-
#: app/features/events.php:
|
595 |
-
#: app/features/events.php:
|
596 |
-
#: app/features/events.php:
|
597 |
#: app/features/fes/form.php:640 app/features/locations.php:299
|
598 |
#: app/features/mec/booking.php:108 app/features/mec/booking.php:158
|
599 |
#: app/features/mec/booking.php:171 app/features/mec/booking.php:187
|
@@ -635,7 +635,7 @@ msgstr ""
|
|
635 |
#: app/features/mec/meta_boxes/display_options.php:1324
|
636 |
#: app/features/mec/modules.php:53 app/features/mec/modules.php:86
|
637 |
#: app/features/mec/modules.php:103 app/features/mec/modules.php:138
|
638 |
-
#: app/features/mec/modules.php:154 app/features/mec/modules.php:
|
639 |
#: app/features/mec/notifications.php:53 app/features/mec/notifications.php:114
|
640 |
#: app/features/mec/notifications.php:170
|
641 |
#: app/features/mec/notifications.php:238
|
@@ -658,111 +658,111 @@ msgstr ""
|
|
658 |
#: app/features/mec/single.php:110 app/features/mec/single.php:124
|
659 |
#: app/features/mec/single.php:162 app/features/mec/styling.php:203
|
660 |
#: app/features/mec/styling.php:220 app/features/mec/styling.php:233
|
661 |
-
#: app/features/organizers.php:272 app/skins/single.php:
|
662 |
#: app/skins/single/default.php:134 app/skins/single/default.php:346
|
663 |
#: app/skins/single/m1.php:196 app/skins/single/m2.php:129
|
664 |
#: app/skins/single/modern.php:137
|
665 |
msgid "Read More"
|
666 |
msgstr "Číst více"
|
667 |
|
668 |
-
#: app/features/events.php:
|
669 |
msgid "Repeating"
|
670 |
msgstr "Opakování"
|
671 |
|
672 |
-
#: app/features/events.php:
|
673 |
msgid "Event Repeating (Recurring events)"
|
674 |
msgstr "Opakování události (opakující se události)"
|
675 |
|
676 |
-
#: app/features/events.php:
|
677 |
msgid "Repeats"
|
678 |
msgstr "Opakování"
|
679 |
|
680 |
-
#: app/features/events.php:
|
681 |
#: app/features/mec/dashboard.php:402
|
682 |
#: app/skins/default_full_calendar/tpl.php:69
|
683 |
#: app/skins/full_calendar/tpl.php:110
|
684 |
msgid "Daily"
|
685 |
msgstr "Děnně"
|
686 |
|
687 |
-
#: app/features/events.php:
|
688 |
msgid "Every Weekday"
|
689 |
msgstr "Každý všední den"
|
690 |
|
691 |
-
#: app/features/events.php:
|
692 |
msgid "Every Weekend"
|
693 |
msgstr "Každý víkend"
|
694 |
|
695 |
-
#: app/features/events.php:
|
696 |
msgid "Certain Weekdays"
|
697 |
msgstr "Určité pracovní dny"
|
698 |
|
699 |
-
#: app/features/events.php:
|
700 |
#: app/skins/default_full_calendar/tpl.php:68
|
701 |
#: app/skins/full_calendar/tpl.php:109
|
702 |
msgid "Weekly"
|
703 |
msgstr "Týdně"
|
704 |
|
705 |
-
#: app/features/events.php:
|
706 |
#: app/features/mec/dashboard.php:403
|
707 |
#: app/skins/default_full_calendar/tpl.php:67
|
708 |
#: app/skins/full_calendar/tpl.php:108
|
709 |
msgid "Monthly"
|
710 |
msgstr "Měsíčně"
|
711 |
|
712 |
-
#: app/features/events.php:
|
713 |
#: app/features/mec/dashboard.php:404
|
714 |
#: app/skins/default_full_calendar/tpl.php:66
|
715 |
#: app/skins/full_calendar/tpl.php:107
|
716 |
msgid "Yearly"
|
717 |
msgstr "Ročně"
|
718 |
|
719 |
-
#: app/features/events.php:
|
720 |
msgid "Custom Days"
|
721 |
msgstr "Vlastní dny"
|
722 |
|
723 |
-
#: app/features/events.php:
|
724 |
msgid "Advanced"
|
725 |
msgstr "Pokročilé"
|
726 |
|
727 |
-
#: app/features/events.php:
|
728 |
msgid "Repeat Interval"
|
729 |
msgstr "Interval opakování"
|
730 |
|
731 |
-
#: app/features/events.php:
|
732 |
msgid "Repeat interval"
|
733 |
msgstr "Interval opakování"
|
734 |
|
735 |
-
#: app/features/events.php:
|
736 |
msgid "Week Days"
|
737 |
msgstr "Dny v týdnu"
|
738 |
|
739 |
-
#: app/features/events.php:
|
740 |
-
#: app/features/events.php:
|
741 |
#: app/features/fes/form.php:376 app/features/ix/import_f_calendar.php:42
|
742 |
#: app/features/ix/import_g_calendar.php:51
|
743 |
#: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
|
744 |
msgid "Start"
|
745 |
msgstr "Začátek"
|
746 |
|
747 |
-
#: app/features/events.php:
|
748 |
-
#: app/features/events.php:
|
749 |
#: app/features/fes/form.php:377
|
750 |
msgid "End"
|
751 |
msgstr "Konec"
|
752 |
|
753 |
-
#: app/features/events.php:
|
754 |
-
#: app/features/events.php:
|
755 |
-
#: app/features/events.php:
|
756 |
-
#: app/features/events.php:
|
757 |
#: app/features/fes/form.php:378 app/features/fes/form.php:844
|
758 |
msgid "Add"
|
759 |
msgstr "Přidat"
|
760 |
|
761 |
-
#: app/features/events.php:
|
762 |
msgid "Custom Days Repeating"
|
763 |
msgstr "Opakování vlastních dnů"
|
764 |
|
765 |
-
#: app/features/events.php:
|
766 |
msgid ""
|
767 |
"Add certain days to event occurrence dates. If you have single day event, "
|
768 |
"start and end date should be the same, If you have multiple day event the "
|
@@ -772,49 +772,49 @@ msgstr ""
|
|
772 |
"datum zahájení a ukončení by mělo být stejné. Pokud máte vícedenní událost, "
|
773 |
"datum zahájení a ukončení musí odpovídat počátečnímu datu."
|
774 |
|
775 |
-
#: app/features/events.php:
|
776 |
msgid "First"
|
777 |
msgstr "První"
|
778 |
|
779 |
-
#: app/features/events.php:
|
780 |
msgid "Second"
|
781 |
msgstr "Druhá"
|
782 |
|
783 |
-
#: app/features/events.php:
|
784 |
msgid "Third"
|
785 |
msgstr "Třetí"
|
786 |
|
787 |
-
#: app/features/events.php:
|
788 |
msgid "Fourth"
|
789 |
msgstr "Čtvrtá"
|
790 |
|
791 |
-
#: app/features/events.php:
|
792 |
msgid "Last"
|
793 |
msgstr "Poslední"
|
794 |
|
795 |
-
#: app/features/events.php:
|
796 |
msgid "Ends Repeat"
|
797 |
msgstr "Ukončení opakování"
|
798 |
|
799 |
-
#: app/features/events.php:
|
800 |
msgid "Never"
|
801 |
msgstr "Nikdy"
|
802 |
|
803 |
# Možná Zapnuto
|
804 |
-
#: app/features/events.php:
|
805 |
msgid "On"
|
806 |
msgstr "Na"
|
807 |
|
808 |
-
#: app/features/events.php:
|
809 |
msgid "After"
|
810 |
msgstr "Po"
|
811 |
|
812 |
-
#: app/features/events.php:
|
813 |
#: app/features/fes/form.php:636 app/features/fes/form.php:639
|
814 |
msgid "Occurrences times"
|
815 |
msgstr "Časy výskytu"
|
816 |
|
817 |
-
#: app/features/events.php:
|
818 |
msgid ""
|
819 |
"The event will finish after certain repeats. For example if you set it to "
|
820 |
"10, the event will finish after 10 repeats."
|
@@ -822,33 +822,33 @@ msgstr ""
|
|
822 |
"Událost bude ukončena po určitých opakováních. Pokud například nastavíte "
|
823 |
"hodnotu 10, událost skončí po 10 opakováních."
|
824 |
|
825 |
-
#: app/features/events.php:
|
826 |
-
#: app/features/events.php:
|
827 |
#: app/features/ix.php:3373 app/features/ix.php:3414
|
828 |
-
#: app/features/mec/settings.php:652 app/libraries/main.php:
|
829 |
#: app/widgets/single.php:103
|
830 |
msgid "Event Cost"
|
831 |
msgstr "Cena události"
|
832 |
|
833 |
-
#: app/features/events.php:
|
834 |
msgid "Exceptional Days (Exclude Dates)"
|
835 |
msgstr "Výjimečné dny (vyjma dat)"
|
836 |
|
837 |
-
#: app/features/events.php:
|
838 |
msgid "Exclude certain days"
|
839 |
msgstr "Vyloučit určité dny"
|
840 |
|
841 |
-
#: app/features/events.php:
|
842 |
#: app/features/fes.php:223 app/features/mec/booking.php:491
|
843 |
-
#: app/features/profile/profile.php:53 app/libraries/main.php:
|
844 |
-
#: app/libraries/main.php:
|
845 |
-
#: app/modules/next-event/details.php:90 app/skins/single.php:
|
846 |
#: app/skins/single/default.php:83 app/skins/single/default.php:295
|
847 |
#: app/skins/single/m1.php:20 app/skins/single/modern.php:170
|
848 |
msgid "Date"
|
849 |
msgstr "Datum"
|
850 |
|
851 |
-
#: app/features/events.php:
|
852 |
msgid ""
|
853 |
"Exclude certain days from event occurrence dates. Please note that you can "
|
854 |
"exclude only single day occurrences and you cannot exclude one day from "
|
@@ -858,15 +858,15 @@ msgstr ""
|
|
858 |
"můžete vyloučit pouze výskyty za jeden den a nelze vyloučit jeden den z "
|
859 |
"vícedenních výskytů."
|
860 |
|
861 |
-
#: app/features/events.php:
|
862 |
msgid "Day 1"
|
863 |
msgstr "Den 1"
|
864 |
|
865 |
-
#: app/features/events.php:
|
866 |
msgid "Add Day"
|
867 |
msgstr "Přidat den"
|
868 |
|
869 |
-
#: app/features/events.php:
|
870 |
msgid ""
|
871 |
"Add new days for schedule. For example if your event is multiple days, you "
|
872 |
"can add a different schedule for each day!"
|
@@ -874,89 +874,89 @@ msgstr ""
|
|
874 |
"Přidat nové dny pro rozvrh. Pokud je například vaše akce vícedenní, můžete "
|
875 |
"pro každý den přidat jiný rozvrh!"
|
876 |
|
877 |
-
#: app/features/events.php:
|
878 |
#, php-format
|
879 |
msgid "Day %s"
|
880 |
msgstr "Den %s"
|
881 |
|
882 |
-
#: app/features/events.php:
|
883 |
-
#: app/features/events.php:
|
884 |
-
#: app/features/events.php:
|
885 |
-
#: app/features/events.php:
|
886 |
-
#: app/features/events.php:
|
887 |
#: app/features/fes/form.php:235 app/features/ix.php:3373
|
888 |
#: app/features/ix.php:3414 app/features/mec/booking.php:375
|
889 |
#: app/features/mec/booking.php:407 app/features/mec/styling.php:115
|
890 |
msgid "Title"
|
891 |
msgstr "Název"
|
892 |
|
893 |
-
#: app/features/events.php:
|
894 |
-
#: app/features/events.php:
|
895 |
-
#: app/features/events.php:
|
896 |
-
#: app/features/events.php:
|
897 |
-
#: app/features/events.php:
|
898 |
-
#: app/features/events.php:
|
899 |
#: app/features/mec/booking.php:318 app/features/mec/booking.php:347
|
900 |
#: app/features/mec/booking.php:398 app/features/mec/booking.php:430
|
901 |
-
#: app/libraries/main.php:
|
902 |
-
#: app/libraries/main.php:
|
903 |
-
#: app/libraries/main.php:
|
904 |
-
#: app/libraries/main.php:
|
905 |
-
#: app/libraries/main.php:
|
906 |
-
#: app/libraries/main.php:
|
907 |
-
#: app/libraries/main.php:
|
908 |
msgid "Remove"
|
909 |
msgstr "Odstranit"
|
910 |
|
911 |
-
#: app/features/events.php:
|
912 |
msgid "Add new hourly schedule row"
|
913 |
msgstr "Přidejte nový řádek rozvrhu hodin"
|
914 |
|
915 |
-
#: app/features/events.php:
|
916 |
-
#: app/features/events.php:
|
917 |
msgid "From e.g. 8:15"
|
918 |
msgstr "Od např. 8:15"
|
919 |
|
920 |
-
#: app/features/events.php:
|
921 |
-
#: app/features/events.php:
|
922 |
msgid "To e.g. 8:45"
|
923 |
msgstr "Do např. 8:45"
|
924 |
|
925 |
-
#: app/features/events.php:
|
926 |
-
#: app/features/events.php:
|
927 |
-
#: app/features/events.php:
|
928 |
msgid "Description"
|
929 |
msgstr "Popis"
|
930 |
|
931 |
-
#: app/features/events.php:
|
932 |
-
#: app/features/events.php:
|
933 |
-
#: app/features/mec.php:
|
934 |
#: app/features/mec/settings.php:700 app/features/speakers.php:62
|
935 |
-
#: app/libraries/main.php:562 app/libraries/main.php:
|
936 |
#: app/modules/speakers/details.php:18
|
937 |
msgid "Speakers"
|
938 |
msgstr "Řečníci"
|
939 |
|
940 |
-
#: app/features/events.php:
|
941 |
msgid "New Day"
|
942 |
msgstr "Nový den"
|
943 |
|
944 |
-
#: app/features/events.php:
|
945 |
#: app/features/mec/settings.php:646
|
946 |
msgid "Event Links"
|
947 |
msgstr "Odkazy na událost"
|
948 |
|
949 |
-
#: app/features/events.php:
|
950 |
-
#: app/features/fes/form.php:695 app/libraries/main.php:
|
951 |
msgid "Event Link"
|
952 |
msgstr "Odkaz na událost"
|
953 |
|
954 |
-
#: app/features/events.php:
|
955 |
#: app/features/fes/form.php:696 app/features/fes/form.php:701
|
956 |
msgid "eg. http://yoursite.com/your-event"
|
957 |
msgstr "např. http://yoursite.com/vase-udalost"
|
958 |
|
959 |
-
#: app/features/events.php:
|
960 |
msgid ""
|
961 |
"If you fill it, it will be replaced instead of default event page link. "
|
962 |
"Insert full link including http(s):// - Also, if you use advertising URL, "
|
@@ -966,32 +966,32 @@ msgstr ""
|
|
966 |
"Vložte úplný odkaz včetně http (s): // - Pokud používáte reklamní adresu "
|
967 |
"URL, můžete také použít zkracovač URL"
|
968 |
|
969 |
-
#: app/features/events.php:
|
970 |
msgid "URL Shortener"
|
971 |
msgstr "Zkracovač URL"
|
972 |
|
973 |
-
#: app/features/events.php:
|
974 |
-
#: app/features/fes/form.php:700 app/libraries/main.php:
|
975 |
-
#: app/skins/single.php:
|
976 |
#: app/skins/single/default.php:345 app/skins/single/m1.php:195
|
977 |
#: app/skins/single/m2.php:128 app/skins/single/modern.php:136
|
978 |
#: app/widgets/single.php:107
|
979 |
msgid "More Info"
|
980 |
msgstr "Více info"
|
981 |
|
982 |
-
#: app/features/events.php:
|
983 |
msgid "More Information"
|
984 |
msgstr "Více informací"
|
985 |
|
986 |
-
#: app/features/events.php:
|
987 |
msgid "Current Window"
|
988 |
msgstr "Aktuální okno"
|
989 |
|
990 |
-
#: app/features/events.php:
|
991 |
msgid "New Window"
|
992 |
msgstr "Nové okno"
|
993 |
|
994 |
-
#: app/features/events.php:
|
995 |
msgid ""
|
996 |
"If you fill it, it will be shown in event details page as an optional link. "
|
997 |
"Insert full link including http(s)://"
|
@@ -999,18 +999,18 @@ msgstr ""
|
|
999 |
"Pokud ji vyplníte, zobrazí se jako volitelný odkaz na stránce s podrobnostmi "
|
1000 |
"o události. Vložte celý odkaz včetně http (s): //"
|
1001 |
|
1002 |
-
#: app/features/events.php:
|
1003 |
msgid "Total booking limits"
|
1004 |
msgstr "Celkové limity rezervace"
|
1005 |
|
1006 |
-
#: app/features/events.php:
|
1007 |
-
#: app/features/events.php:
|
1008 |
-
#: app/modules/booking/steps/tickets.php:
|
1009 |
#: app/skins/available_spot/tpl.php:160
|
1010 |
msgid "Unlimited"
|
1011 |
msgstr "Neomezené"
|
1012 |
|
1013 |
-
#: app/features/events.php:
|
1014 |
msgid ""
|
1015 |
"If you want to set a limit to all tickets, uncheck this checkbox and put a "
|
1016 |
"limitation number."
|
@@ -1018,33 +1018,33 @@ msgstr ""
|
|
1018 |
"Pokud chcete nastavit limit na všechny lístky, zrušte zaškrtnutí tohoto "
|
1019 |
"políčka a zadejte číslo omezení."
|
1020 |
|
1021 |
-
#: app/features/events.php:
|
1022 |
msgid "Read About A Booking System"
|
1023 |
msgstr "Přečtěte si o rezervačním systému"
|
1024 |
|
1025 |
-
#: app/features/events.php:
|
1026 |
msgid "100"
|
1027 |
msgstr "100"
|
1028 |
|
1029 |
-
#: app/features/events.php:
|
1030 |
msgid "Total user booking limits"
|
1031 |
msgstr "Celkové limity rezervace uživatelů"
|
1032 |
|
1033 |
-
#: app/features/events.php:
|
1034 |
-
#: app/features/events.php:
|
1035 |
msgid "Inherit from global options"
|
1036 |
msgstr "Zdědí z globálních možností"
|
1037 |
|
1038 |
-
#: app/features/events.php:
|
1039 |
msgid "12"
|
1040 |
msgstr "12"
|
1041 |
|
1042 |
-
#: app/features/events.php:
|
1043 |
-
#: app/libraries/main.php:
|
1044 |
msgid "Tickets"
|
1045 |
msgstr "Vstupenky"
|
1046 |
|
1047 |
-
#: app/features/events.php:
|
1048 |
msgid ""
|
1049 |
"You're translating an event so MEC will use the original event for tickets "
|
1050 |
"and booking. You can only translate the ticket name and description. Please "
|
@@ -1054,62 +1054,97 @@ msgstr ""
|
|
1054 |
"vstupenek a rezervace. Můžete přeložit pouze název a popis vstupenky. Prosím "
|
1055 |
"definujte určité vstupenky, které jste definovali v původní události."
|
1056 |
|
1057 |
-
#: app/features/events.php:
|
1058 |
#, fuzzy
|
1059 |
#| msgid "Ticket"
|
1060 |
msgid "Add Ticket"
|
1061 |
msgstr "Vstupenka"
|
1062 |
|
1063 |
-
#: app/features/events.php:
|
1064 |
msgid "Ticket Name"
|
1065 |
msgstr "Název vstupenky"
|
1066 |
|
1067 |
-
#: app/features/events.php:
|
1068 |
-
#: app/features/events.php:
|
1069 |
#: app/features/ix.php:3373 app/features/ix.php:3414
|
1070 |
msgid "Start Time"
|
1071 |
msgstr "Začátek"
|
1072 |
|
1073 |
-
#: app/features/events.php:
|
1074 |
-
#: app/features/events.php:
|
1075 |
#: app/features/ix.php:3373 app/features/ix.php:3414
|
1076 |
msgid "End Time"
|
1077 |
msgstr "Konec"
|
1078 |
|
1079 |
-
#: app/features/events.php:
|
1080 |
-
#: app/features/events.php:
|
1081 |
-
#: app/features/events.php:
|
1082 |
-
#: app/features/events.php:
|
1083 |
-
#: app/features/events.php:
|
1084 |
-
#: app/features/events.php:
|
1085 |
#: app/features/mec/booking.php:382 app/features/mec/booking.php:411
|
1086 |
#: app/features/mec/booking.php:414
|
1087 |
msgid "Price"
|
1088 |
msgstr "Cena"
|
1089 |
|
1090 |
-
#: app/features/events.php:
|
1091 |
msgid "Insert 0 for free ticket. Only numbers please."
|
1092 |
msgstr "Vložte 0 pro vstupenku zdarma. Prosím pouze čísla."
|
1093 |
|
1094 |
-
#: app/features/events.php:
|
1095 |
-
#: app/features/events.php:
|
1096 |
msgid "Price Label"
|
1097 |
msgstr "Cenový štítek"
|
1098 |
|
1099 |
-
#: app/features/events.php:
|
1100 |
msgid "For showing on website. e.g. $15"
|
1101 |
msgstr "Pro zobrazení na webu. např. 15 $"
|
1102 |
|
1103 |
-
#: app/features/events.php:
|
1104 |
msgid "Available Tickets"
|
1105 |
msgstr "Dostupné vstupenky"
|
1106 |
|
1107 |
-
#: app/features/events.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1108 |
msgid "Price per Date"
|
1109 |
msgstr "Cena za datum"
|
1110 |
|
1111 |
-
#: app/features/events.php:
|
1112 |
-
#: app/features/events.php:
|
1113 |
#: app/features/mec/meta_boxes/display_options.php:871
|
1114 |
#: app/features/mec/meta_boxes/search_form.php:66
|
1115 |
#: app/features/mec/meta_boxes/search_form.php:128
|
@@ -1127,23 +1162,23 @@ msgstr "Cena za datum"
|
|
1127 |
msgid "Label"
|
1128 |
msgstr "Štítek"
|
1129 |
|
1130 |
-
#: app/features/events.php:
|
1131 |
msgid "Fees"
|
1132 |
msgstr "Poplatky"
|
1133 |
|
1134 |
-
#: app/features/events.php:
|
1135 |
#: app/features/mec/booking.php:298 app/features/mec/booking.php:327
|
1136 |
msgid "Fee Title"
|
1137 |
msgstr "Název poplatku"
|
1138 |
|
1139 |
-
#: app/features/events.php:
|
1140 |
-
#: app/features/events.php:
|
1141 |
#: app/features/mec/booking.php:302 app/features/mec/booking.php:305
|
1142 |
#: app/features/mec/booking.php:331 app/features/mec/booking.php:334
|
1143 |
msgid "Amount"
|
1144 |
msgstr "Množství"
|
1145 |
|
1146 |
-
#: app/features/events.php:
|
1147 |
#: app/features/mec/booking.php:306 app/features/mec/booking.php:335
|
1148 |
msgid ""
|
1149 |
"Fee amount, considered as fixed amount if you set the type to amount "
|
@@ -1152,85 +1187,85 @@ msgstr ""
|
|
1152 |
"Výše poplatku, je považovaná za pevnou částku, pokud nastavíte typ na částku "
|
1153 |
"odpovídající procentuální hodnotě"
|
1154 |
|
1155 |
-
#: app/features/events.php:
|
1156 |
#: app/features/mec/booking.php:313 app/features/mec/booking.php:342
|
1157 |
msgid "Percent"
|
1158 |
msgstr "Procent"
|
1159 |
|
1160 |
-
#: app/features/events.php:
|
1161 |
#: app/features/mec/booking.php:314 app/features/mec/booking.php:343
|
1162 |
msgid "Amount (Per Ticket)"
|
1163 |
msgstr "Částka (za vstupenku)"
|
1164 |
|
1165 |
-
#: app/features/events.php:
|
1166 |
#: app/features/mec/booking.php:315 app/features/mec/booking.php:344
|
1167 |
msgid "Amount (Per Booking)"
|
1168 |
msgstr "Částka (za rezervaci)"
|
1169 |
|
1170 |
-
#: app/features/events.php:
|
1171 |
msgid "Ticket Variations / Options"
|
1172 |
msgstr "Varianty vstupenky / možnosti"
|
1173 |
|
1174 |
-
#: app/features/events.php:
|
1175 |
#: app/features/mec/booking.php:383 app/features/mec/booking.php:415
|
1176 |
msgid "Option Price"
|
1177 |
msgstr "Možnosti ceny"
|
1178 |
|
1179 |
-
#: app/features/events.php:
|
1180 |
-
#: app/features/events.php:
|
1181 |
#: app/features/mec/booking.php:389 app/features/mec/booking.php:392
|
1182 |
#: app/features/mec/booking.php:421 app/features/mec/booking.php:424
|
1183 |
msgid "Maximum Per Ticket"
|
1184 |
msgstr "Maximum na jednu vstupenku"
|
1185 |
|
1186 |
-
#: app/features/events.php:
|
1187 |
#: app/features/mec/booking.php:393 app/features/mec/booking.php:425
|
1188 |
msgid "Maximum Per Ticket. Leave it blank for unlimited."
|
1189 |
msgstr "Maximum na jednu vstupenku. Ponechte to prázdné pro neomezené."
|
1190 |
|
1191 |
-
#: app/features/events.php:
|
1192 |
-
#: app/libraries/main.php:
|
1193 |
msgid "MEC Name"
|
1194 |
msgstr "MEC Jméno"
|
1195 |
|
1196 |
-
#: app/features/events.php:
|
1197 |
-
#: app/libraries/main.php:
|
1198 |
msgid "MEC Email"
|
1199 |
msgstr "MEC Email"
|
1200 |
|
1201 |
-
#: app/features/events.php:
|
1202 |
-
#: app/libraries/main.php:
|
1203 |
msgid "Text"
|
1204 |
msgstr "Text"
|
1205 |
|
1206 |
-
#: app/features/events.php:
|
1207 |
#: app/features/organizers.php:103 app/features/organizers.php:148
|
1208 |
#: app/features/speakers.php:118 app/features/speakers.php:183
|
1209 |
-
#: app/features/speakers.php:256 app/libraries/main.php:
|
1210 |
msgid "Tel"
|
1211 |
msgstr "Tel"
|
1212 |
|
1213 |
-
#: app/features/events.php:
|
1214 |
-
#: app/libraries/main.php:
|
1215 |
msgid "File"
|
1216 |
msgstr "Soubor"
|
1217 |
|
1218 |
-
#: app/features/events.php:
|
1219 |
-
#: app/libraries/main.php:
|
1220 |
msgid "Textarea"
|
1221 |
msgstr "Plocha textu"
|
1222 |
|
1223 |
-
#: app/features/events.php:
|
1224 |
-
#: app/libraries/main.php:
|
1225 |
msgid "Checkboxes"
|
1226 |
msgstr "Zatržítko"
|
1227 |
|
1228 |
-
#: app/features/events.php:
|
1229 |
-
#: app/libraries/main.php:
|
1230 |
msgid "Radio Buttons"
|
1231 |
msgstr "Přepínače"
|
1232 |
|
1233 |
-
#: app/features/events.php:
|
1234 |
#: app/features/mec/meta_boxes/search_form.php:34
|
1235 |
#: app/features/mec/meta_boxes/search_form.php:41
|
1236 |
#: app/features/mec/meta_boxes/search_form.php:48
|
@@ -1306,46 +1341,46 @@ msgstr "Přepínače"
|
|
1306 |
#: app/features/mec/meta_boxes/search_form.php:696
|
1307 |
#: app/features/mec/meta_boxes/search_form.php:703
|
1308 |
#: app/features/mec/meta_boxes/search_form.php:710
|
1309 |
-
#: app/features/mec/meta_boxes/search_form.php:717 app/libraries/main.php:
|
1310 |
msgid "Dropdown"
|
1311 |
msgstr "Rozbalovací"
|
1312 |
|
1313 |
-
#: app/features/events.php:
|
1314 |
-
#: app/libraries/main.php:
|
1315 |
msgid "Agreement"
|
1316 |
msgstr "Smlouva"
|
1317 |
|
1318 |
-
#: app/features/events.php:
|
1319 |
-
#: app/libraries/main.php:
|
1320 |
msgid "Paragraph"
|
1321 |
msgstr "Paragraf"
|
1322 |
|
1323 |
-
#: app/features/events.php:
|
1324 |
-
#: app/features/events.php:
|
1325 |
#, php-format
|
1326 |
msgid "Show all %s"
|
1327 |
msgstr "Ukázat všechny %s"
|
1328 |
|
1329 |
-
#: app/features/events.php:
|
1330 |
msgid "labels"
|
1331 |
msgstr "štítky"
|
1332 |
|
1333 |
-
#: app/features/events.php:
|
1334 |
msgid "locations"
|
1335 |
msgstr "umístění"
|
1336 |
|
1337 |
-
#: app/features/events.php:
|
1338 |
msgid "organizers"
|
1339 |
msgstr "organizátoři"
|
1340 |
|
1341 |
-
#: app/features/events.php:
|
1342 |
#, fuzzy
|
1343 |
#| msgid "Attendees Limit"
|
1344 |
msgid "Attendees List"
|
1345 |
msgstr "Limit účastníků"
|
1346 |
|
1347 |
-
#: app/features/events.php:
|
1348 |
-
#: app/features/events.php:
|
1349 |
#: app/features/ix.php:3414 app/features/locations.php:58
|
1350 |
#: app/features/locations.php:230 app/features/locations.php:287
|
1351 |
#: app/features/locations.php:289 app/features/locations.php:298
|
@@ -1362,102 +1397,175 @@ msgstr "Limit účastníků"
|
|
1362 |
#: app/features/mec/meta_boxes/search_form.php:582
|
1363 |
#: app/features/mec/meta_boxes/search_form.php:679
|
1364 |
#: app/features/mec/settings.php:802 app/features/mec/single.php:212
|
1365 |
-
#: app/features/search.php:71 app/libraries/main.php:
|
1366 |
-
#: app/libraries/main.php:
|
1367 |
-
#: app/skins/single.php:
|
1368 |
#: app/skins/single/default.php:169 app/skins/single/default.php:381
|
1369 |
#: app/skins/single/m1.php:159 app/skins/single/m2.php:91
|
1370 |
#: app/skins/single/modern.php:98
|
1371 |
msgid "Location"
|
1372 |
msgstr "Umístění"
|
1373 |
|
1374 |
-
#: app/features/events.php:
|
1375 |
msgid "Repeat"
|
1376 |
msgstr "Opakovat"
|
1377 |
|
1378 |
-
#: app/features/events.php:
|
1379 |
msgid "Author"
|
1380 |
msgstr "Autor"
|
1381 |
|
1382 |
-
#: app/features/events.php:
|
1383 |
msgid "iCal Export"
|
1384 |
msgstr "iCal Export"
|
1385 |
|
1386 |
-
#: app/features/events.php:
|
1387 |
msgid "CSV Export"
|
1388 |
msgstr "CSV Export"
|
1389 |
|
1390 |
-
#: app/features/events.php:
|
1391 |
msgid "MS Excel Export"
|
1392 |
msgstr "MS Excel Export"
|
1393 |
|
1394 |
-
#: app/features/events.php:
|
1395 |
msgid "XML Export"
|
1396 |
msgstr "XML Export"
|
1397 |
|
1398 |
-
#: app/features/events.php:
|
1399 |
msgid "JSON Export"
|
1400 |
msgstr "JSON Export"
|
1401 |
|
1402 |
-
#: app/features/events.php:
|
1403 |
-
#: app/features/events.php:
|
1404 |
msgid "Duplicate"
|
1405 |
msgstr "Duplikát"
|
1406 |
|
1407 |
-
#: app/features/events.php:
|
1408 |
#: app/features/fes.php:223 app/features/ix.php:3373 app/features/ix.php:3414
|
1409 |
#: app/features/labels.php:177 app/features/locations.php:229
|
1410 |
#: app/features/organizers.php:203 app/features/speakers.php:253
|
1411 |
msgid "ID"
|
1412 |
msgstr "ID"
|
1413 |
|
1414 |
-
#: app/features/events.php:
|
1415 |
#: app/features/ix.php:3373 app/features/ix.php:3414
|
1416 |
msgid "Link"
|
1417 |
msgstr "Odkaz"
|
1418 |
|
1419 |
-
#: app/features/events.php:
|
1420 |
#, php-format
|
1421 |
msgid "%s Tel"
|
1422 |
msgstr "%s Tel"
|
1423 |
|
1424 |
-
#: app/features/events.php:
|
1425 |
#, php-format
|
1426 |
msgid "%s Email"
|
1427 |
msgstr "%s Email"
|
1428 |
|
1429 |
-
#: app/features/events.php:
|
1430 |
-
#: app/libraries/main.php:
|
1431 |
msgid "Attendees"
|
1432 |
msgstr "Účastníci"
|
1433 |
|
1434 |
-
#: app/features/events.php:
|
1435 |
#, php-format
|
1436 |
msgid "%s to %s"
|
1437 |
msgstr ""
|
1438 |
|
1439 |
-
#: app/features/events.php:
|
1440 |
#: app/features/fes.php:223 app/features/profile/profile.php:186
|
1441 |
-
#: app/libraries/main.php:
|
1442 |
msgid "Ticket"
|
1443 |
msgstr "Vstupenka"
|
1444 |
|
1445 |
-
#: app/features/events.php:
|
1446 |
#: app/features/profile/profile.php:189
|
1447 |
msgid "Variations"
|
1448 |
msgstr "Variace"
|
1449 |
|
1450 |
-
#: app/features/events.php:
|
1451 |
#: app/features/fes.php:303
|
1452 |
msgid "Unknown"
|
1453 |
msgstr "Neznámý"
|
1454 |
|
1455 |
-
#: app/features/events.php:
|
1456 |
#, fuzzy
|
1457 |
#| msgid "Attendees Form"
|
1458 |
msgid "No Attendees Found!"
|
1459 |
msgstr "Formulář účastníků"
|
1460 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1461 |
#: app/features/fes.php:87
|
1462 |
#, php-format
|
1463 |
msgid "Please %s/%s in order to submit new events."
|
@@ -1489,7 +1597,7 @@ msgstr "Prosím %s/%s v pořadí pro správu událostí."
|
|
1489 |
msgid "The event removed!"
|
1490 |
msgstr "Událost byla odebrána!"
|
1491 |
|
1492 |
-
#: app/features/fes.php:223 app/libraries/main.php:
|
1493 |
msgid "Transaction ID"
|
1494 |
msgstr "ID transakce"
|
1495 |
|
@@ -1511,23 +1619,23 @@ msgstr "Potvrzení"
|
|
1511 |
msgid "Verification"
|
1512 |
msgstr "Ověření"
|
1513 |
|
1514 |
-
#: app/features/fes.php:
|
1515 |
msgid "The image is uploaded!"
|
1516 |
msgstr "Obrázek je nahraný!"
|
1517 |
|
1518 |
-
#: app/features/fes.php:
|
1519 |
msgid "Captcha is invalid! Please try again."
|
1520 |
msgstr "Captcha je neplatná! Prosím zkuste to znovu."
|
1521 |
|
1522 |
-
#: app/features/fes.php:
|
1523 |
msgid "Please fill event title field!"
|
1524 |
msgstr "Vyplňte prosím pole názvu události!"
|
1525 |
|
1526 |
-
#: app/features/fes.php:
|
1527 |
msgid "The event submitted. It will publish as soon as possible."
|
1528 |
msgstr "Událost byla odeslána. Zveřejní se co nejdříve."
|
1529 |
|
1530 |
-
#: app/features/fes.php:
|
1531 |
msgid "The event published."
|
1532 |
msgstr "Událost byla publikována."
|
1533 |
|
@@ -1615,15 +1723,15 @@ msgid "Remove Image"
|
|
1615 |
msgstr "Odebrat obrázek"
|
1616 |
|
1617 |
#: app/features/fes/form.php:772 app/features/labels.php:61
|
1618 |
-
#: app/features/labels.php:221 app/features/mec.php:
|
1619 |
-
#: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:
|
1620 |
-
#: app/skins/single.php:
|
1621 |
#: app/skins/single/default.php:360 app/skins/single/m1.php:68
|
1622 |
#: app/skins/single/modern.php:218
|
1623 |
msgid "Labels"
|
1624 |
msgstr "Štítky"
|
1625 |
|
1626 |
-
#: app/features/fes/form.php:818 app/features/mec.php:
|
1627 |
#: app/features/mec/meta_boxes/filter.php:147
|
1628 |
msgid "Tags"
|
1629 |
msgstr "Tagy"
|
@@ -1811,7 +1919,7 @@ msgstr "Export"
|
|
1811 |
|
1812 |
#: app/features/ix/export.php:16 app/features/ix/export_g_calendar.php:20
|
1813 |
#: app/features/ix/import.php:16 app/features/ix/import_f_calendar.php:16
|
1814 |
-
#: app/features/ix/import_f_calendar.php:
|
1815 |
#: app/features/ix/import_g_calendar.php:16
|
1816 |
#: app/features/ix/import_g_calendar.php:103
|
1817 |
#: app/features/ix/import_meetup.php:16 app/features/ix/import_meetup.php:85
|
@@ -1948,7 +2056,7 @@ msgid "Add to Google Calendar"
|
|
1948 |
msgstr "Přidat do Google kalendáře"
|
1949 |
|
1950 |
#: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:629
|
1951 |
-
#: app/features/mec/modules.php:
|
1952 |
#: app/features/mec/settings.php:971 app/features/mec/single.php:269
|
1953 |
msgid "Checking ..."
|
1954 |
msgstr "Ověřování ..."
|
@@ -2078,7 +2186,17 @@ msgstr "Možnosti importu"
|
|
2078 |
msgid "Import Locations"
|
2079 |
msgstr "Umístění importu"
|
2080 |
|
2081 |
-
#: app/features/ix/import_f_calendar.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2082 |
#, php-format
|
2083 |
msgid "%s events successfully imported to your website from Facebook Calendar."
|
2084 |
msgstr "% s události byly úspěšně importovány na váš web z kalendáře Facebook."
|
@@ -2368,27 +2486,27 @@ msgstr "Normální"
|
|
2368 |
#: app/skins/agenda/render.php:39 app/skins/available_spot/tpl.php:39
|
2369 |
#: app/skins/carousel/render.php:45 app/skins/countdown/tpl.php:28
|
2370 |
#: app/skins/cover/tpl.php:29 app/skins/daily_view/render.php:25
|
2371 |
-
#: app/skins/grid/render.php:
|
2372 |
#: app/skins/masonry/render.php:29 app/skins/monthly_view/calendar.php:86
|
2373 |
#: app/skins/monthly_view/calendar_clean.php:86
|
2374 |
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:46
|
2375 |
#: app/skins/tile/render.php:35 app/skins/timeline/render.php:44
|
2376 |
-
#: app/skins/timetable/render.php:35 app/skins/timetable/render.php:
|
2377 |
#: app/skins/weekly_view/render.php:33 app/skins/yearly_view/render.php:48
|
2378 |
msgid "Featured"
|
2379 |
msgstr "Ztvárněná"
|
2380 |
|
2381 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2382 |
-
#: app/libraries/main.php:
|
2383 |
#: app/skins/available_spot/tpl.php:43 app/skins/carousel/render.php:46
|
2384 |
#: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:33
|
2385 |
-
#: app/skins/daily_view/render.php:29 app/skins/grid/render.php:
|
2386 |
#: app/skins/list/render.php:45 app/skins/masonry/render.php:30
|
2387 |
#: app/skins/monthly_view/calendar.php:90
|
2388 |
#: app/skins/monthly_view/calendar_clean.php:90
|
2389 |
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:47
|
2390 |
#: app/skins/tile/render.php:36 app/skins/timeline/render.php:48
|
2391 |
-
#: app/skins/timetable/render.php:39 app/skins/timetable/render.php:
|
2392 |
#: app/skins/weekly_view/render.php:37 app/skins/yearly_view/render.php:52
|
2393 |
msgid "Canceled"
|
2394 |
msgstr "Zrušená"
|
@@ -2414,9 +2532,9 @@ msgstr "Slug"
|
|
2414 |
msgid "Event %s"
|
2415 |
msgstr "Událost %s"
|
2416 |
|
2417 |
-
#: app/features/locations.php:59 app/features/mec.php:
|
2418 |
#: app/features/mec/dashboard.php:269 app/features/mec/meta_boxes/filter.php:96
|
2419 |
-
#: app/libraries/main.php:
|
2420 |
msgid "Locations"
|
2421 |
msgstr "Umístění"
|
2422 |
|
@@ -2526,7 +2644,7 @@ msgstr "Vyberte obrázek"
|
|
2526 |
msgid "Don't show map in single event page"
|
2527 |
msgstr "Nezobrazovat mapu na jednostránkové události"
|
2528 |
|
2529 |
-
#: app/features/locations.php:356 app/libraries/main.php:
|
2530 |
msgid "Other Locations"
|
2531 |
msgstr "Další místa"
|
2532 |
|
@@ -2539,7 +2657,7 @@ msgstr "Pokud chcete, můžete kromě hlavního místa vybrat i další místa."
|
|
2539 |
msgid "<strong>"
|
2540 |
msgstr "<strong>"
|
2541 |
|
2542 |
-
#: app/features/mec.php:
|
2543 |
msgid ""
|
2544 |
"Activation faild. Please check your purchase code or license type."
|
2545 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
@@ -2548,11 +2666,11 @@ msgstr ""
|
|
2548 |
"<br> <b> Poznámka: Váš nákupní kód by se měl shodovat s vaším typem licence. "
|
2549 |
"</b>"
|
2550 |
|
2551 |
-
#: app/features/mec.php:
|
2552 |
msgid "Troubleshooting"
|
2553 |
msgstr "Odstraňování problémů"
|
2554 |
|
2555 |
-
#: app/features/mec.php:
|
2556 |
msgid ""
|
2557 |
"Your options is not in JSON format. Please insert correct options in this "
|
2558 |
"field and try again."
|
@@ -2560,95 +2678,95 @@ msgstr ""
|
|
2560 |
"Vaše možnosti nejsou ve formátu JSON. Do tohoto pole vložte správné možnosti "
|
2561 |
"a zkuste to znovu."
|
2562 |
|
2563 |
-
#: app/features/mec.php:
|
2564 |
msgid "Your options field can not be empty!"
|
2565 |
msgstr "Pole možností nemůže být prázdné!"
|
2566 |
|
2567 |
-
#: app/features/mec.php:
|
2568 |
msgid "Your options imported successfuly."
|
2569 |
msgstr "Vaše možnosti byly úspěšně importovány."
|
2570 |
|
2571 |
-
#: app/features/mec.php:
|
2572 |
msgid "MEC - Support"
|
2573 |
msgstr "MEC - podpora"
|
2574 |
|
2575 |
-
#: app/features/mec.php:
|
2576 |
#: app/features/mec/support.php:80 app/features/mec/support.php:93
|
2577 |
msgid "Support"
|
2578 |
msgstr "Podpora"
|
2579 |
|
2580 |
-
#: app/features/mec.php:
|
2581 |
#: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
|
2582 |
-
#: app/libraries/main.php:
|
2583 |
msgid "Organizers"
|
2584 |
msgstr "Organizátoři"
|
2585 |
|
2586 |
-
#: app/features/mec.php:
|
2587 |
#: app/features/mec/dashboard.php:262
|
2588 |
msgid "Shortcodes"
|
2589 |
msgstr "Zkrácené kódy"
|
2590 |
|
2591 |
-
#: app/features/mec.php:
|
2592 |
msgid "MEC - Settings"
|
2593 |
msgstr "MEC - Nastavení"
|
2594 |
|
2595 |
-
#: app/features/mec.php:
|
2596 |
msgid "MEC - Addons"
|
2597 |
msgstr "MEC - doplňky"
|
2598 |
|
2599 |
-
#: app/features/mec.php:
|
2600 |
msgid "Addons"
|
2601 |
msgstr "Doplňky"
|
2602 |
|
2603 |
-
#: app/features/mec.php:
|
2604 |
msgid "Add Shortcode"
|
2605 |
msgstr "Přidat zkrácený kód"
|
2606 |
|
2607 |
-
#: app/features/mec.php:
|
2608 |
msgid "Add New Shortcode"
|
2609 |
msgstr "Přidat nový zkrácený kód"
|
2610 |
|
2611 |
-
#: app/features/mec.php:
|
2612 |
msgid "No shortcodes found!"
|
2613 |
msgstr "Nebyly nalezeny žádné zkrácené kódy!"
|
2614 |
|
2615 |
-
#: app/features/mec.php:
|
2616 |
msgid "All Shortcodes"
|
2617 |
msgstr "Všechny zkrácené kódy"
|
2618 |
|
2619 |
-
#: app/features/mec.php:
|
2620 |
msgid "Edit shortcodes"
|
2621 |
msgstr "Editace zkrácených kódů"
|
2622 |
|
2623 |
-
#: app/features/mec.php:
|
2624 |
msgid "No shortcodes found in Trash!"
|
2625 |
msgstr "V koši nebyly nalezeny žádné zkrácené kódy!"
|
2626 |
|
2627 |
-
#: app/features/mec.php:
|
2628 |
msgid "Display Options"
|
2629 |
msgstr "Zobrazit možnosti"
|
2630 |
|
2631 |
-
#: app/features/mec.php:
|
2632 |
msgid "Filter Options"
|
2633 |
msgstr "Filtrovat možnosti"
|
2634 |
|
2635 |
-
#: app/features/mec.php:
|
2636 |
msgid "Search Form"
|
2637 |
msgstr "Vyhledávací formulář"
|
2638 |
|
2639 |
-
#: app/features/mec.php:
|
2640 |
msgid "Display content's images as Popup"
|
2641 |
msgstr "Zobrazit obrázky obsahu jako vyskakovací okno"
|
2642 |
|
2643 |
-
#: app/features/mec.php:
|
2644 |
msgid "Single Event Display Method"
|
2645 |
msgstr "Metoda zobrazení jedné události"
|
2646 |
|
2647 |
-
#: app/features/mec.php:
|
2648 |
msgid "Separate Window"
|
2649 |
msgstr "Samostatné okno"
|
2650 |
|
2651 |
-
#: app/features/mec.php:
|
2652 |
msgid "Modal 1"
|
2653 |
msgstr "Modal 1"
|
2654 |
|
@@ -2684,9 +2802,9 @@ msgstr "Vyhledávání ..."
|
|
2684 |
#: app/features/mec/booking.php:660 app/features/mec/messages.php:15
|
2685 |
#: app/features/mec/messages.php:51 app/features/mec/messages.php:60
|
2686 |
#: app/features/mec/messages.php:94 app/features/mec/messages.php:103
|
2687 |
-
#: app/features/mec/modules.php:25 app/features/mec/modules.php:
|
2688 |
-
#: app/features/mec/modules.php:
|
2689 |
-
#: app/features/mec/modules.php:
|
2690 |
#: app/features/mec/notifications.php:525
|
2691 |
#: app/features/mec/notifications.php:537
|
2692 |
#: app/features/mec/notifications.php:633
|
@@ -2717,7 +2835,7 @@ msgstr ""
|
|
2717 |
"přidá „platební brána“ a nová položka nabídky na řídícím panelu"
|
2718 |
|
2719 |
#: app/features/mec/booking.php:102 app/features/mec/booking.php:107
|
2720 |
-
#: app/features/mec/modules.php:
|
2721 |
msgid "Date Format"
|
2722 |
msgstr "Formát data"
|
2723 |
|
@@ -2911,29 +3029,29 @@ msgstr ""
|
|
2911 |
"údaje pro povolené brány pro události a přijímat platby přímo!"
|
2912 |
|
2913 |
#: app/features/mec/booking.php:624 app/features/mec/messages.php:78
|
2914 |
-
#: app/features/mec/modules.php:
|
2915 |
#: app/features/mec/settings.php:966 app/features/mec/single.php:264
|
2916 |
#: app/features/mec/styles.php:60 app/features/mec/styling.php:296
|
2917 |
msgid "Saved"
|
2918 |
msgstr "Uloženo"
|
2919 |
|
2920 |
#: app/features/mec/booking.php:625 app/features/mec/messages.php:79
|
2921 |
-
#: app/features/mec/modules.php:
|
2922 |
#: app/features/mec/settings.php:967 app/features/mec/single.php:265
|
2923 |
#: app/features/mec/styles.php:61 app/features/mec/styling.php:297
|
2924 |
msgid "Settings Saved!"
|
2925 |
msgstr "Nastavení uložena!"
|
2926 |
|
2927 |
#: app/features/mec/booking.php:627 app/features/mec/booking.php:649
|
2928 |
-
#: app/features/mec/modules.php:
|
2929 |
#: app/features/mec/notifications.php:614
|
2930 |
#: app/features/mec/notifications.php:636 app/features/mec/settings.php:969
|
2931 |
#: app/features/mec/settings.php:991 app/features/mec/single.php:267
|
2932 |
-
#: app/features/mec/single.php:289 app/libraries/main.php:
|
2933 |
msgid "Verified"
|
2934 |
msgstr "Ověřeno"
|
2935 |
|
2936 |
-
#: app/features/mec/booking.php:651 app/features/mec/modules.php:
|
2937 |
#: app/features/mec/notifications.php:638 app/features/mec/settings.php:993
|
2938 |
#: app/features/mec/single.php:291
|
2939 |
msgid "Please Refresh Page"
|
@@ -3483,15 +3601,15 @@ msgstr "Výchozí zobrazení"
|
|
3483 |
|
3484 |
#: app/features/mec/meta_boxes/display_options.php:447
|
3485 |
#: app/features/mec/meta_boxes/display_options.php:468
|
3486 |
-
#: app/libraries/main.php:330 app/libraries/main.php:
|
3487 |
-
#: app/libraries/main.php:
|
3488 |
msgid "List View"
|
3489 |
msgstr "Zobrazení seznamu"
|
3490 |
|
3491 |
#: app/features/mec/meta_boxes/display_options.php:448
|
3492 |
#: app/features/mec/meta_boxes/display_options.php:478
|
3493 |
-
#: app/libraries/main.php:334 app/libraries/main.php:
|
3494 |
-
#: app/libraries/main.php:
|
3495 |
msgid "Yearly View"
|
3496 |
msgstr "Roční zobrazení"
|
3497 |
|
@@ -3502,15 +3620,15 @@ msgstr "Měsíční / kalendářní zobrazení"
|
|
3502 |
|
3503 |
#: app/features/mec/meta_boxes/display_options.php:450
|
3504 |
#: app/features/mec/meta_boxes/display_options.php:510
|
3505 |
-
#: app/libraries/main.php:337 app/libraries/main.php:
|
3506 |
-
#: app/libraries/main.php:
|
3507 |
msgid "Weekly View"
|
3508 |
msgstr "Týdenní zobrazení"
|
3509 |
|
3510 |
#: app/features/mec/meta_boxes/display_options.php:451
|
3511 |
#: app/features/mec/meta_boxes/display_options.php:520
|
3512 |
-
#: app/libraries/main.php:336 app/libraries/main.php:
|
3513 |
-
#: app/libraries/main.php:
|
3514 |
msgid "Daily View"
|
3515 |
msgstr "Denní zobrazení"
|
3516 |
|
@@ -3929,7 +4047,7 @@ msgstr "Zakázaný"
|
|
3929 |
#: app/features/mec/meta_boxes/search_form.php:693
|
3930 |
#: app/features/mec/settings.php:815 app/features/mec/single.php:217
|
3931 |
#: app/features/search.php:79 app/features/speakers.php:61
|
3932 |
-
#: app/features/speakers.php:254 app/libraries/main.php:
|
3933 |
#: app/libraries/skins.php:889
|
3934 |
msgid "Speaker"
|
3935 |
msgstr "Řečník"
|
@@ -4155,44 +4273,44 @@ msgstr "Zobrazit tlačítko Změna jednotek počasí"
|
|
4155 |
msgid "Show social network module"
|
4156 |
msgstr "Zobrazit modul sociální sítě"
|
4157 |
|
4158 |
-
#: app/features/mec/modules.php:
|
4159 |
-
#: app/modules/next-event/details.php:
|
4160 |
msgid "Next Event"
|
4161 |
msgstr "Další událost"
|
4162 |
|
4163 |
-
#: app/features/mec/modules.php:
|
4164 |
msgid "Show next event module on event page"
|
4165 |
msgstr "Zobrazit další modul události na stránce události"
|
4166 |
|
4167 |
-
#: app/features/mec/modules.php:
|
4168 |
msgid "Method"
|
4169 |
msgstr "Metoda"
|
4170 |
|
4171 |
-
#: app/features/mec/modules.php:
|
4172 |
msgid "Next Occurrence of Current Event"
|
4173 |
msgstr "Další výskyt aktuální události"
|
4174 |
|
4175 |
-
#: app/features/mec/modules.php:
|
4176 |
msgid "Next Occurrence of Other Events"
|
4177 |
msgstr "Další výskyt dalších událostí"
|
4178 |
|
4179 |
-
#: app/features/mec/modules.php:
|
4180 |
msgid "Default is M d Y"
|
4181 |
msgstr "Výchozí je M d Y"
|
4182 |
|
4183 |
-
#: app/features/mec/modules.php:
|
4184 |
msgid "Enable BuddyPress Integration"
|
4185 |
msgstr "Povolit integraci BuddyPress"
|
4186 |
|
4187 |
-
#: app/features/mec/modules.php:
|
4188 |
msgid "Show \"Attendees Module\" in event details page"
|
4189 |
msgstr "Zobrazit \"Účastnický modul\" na stránce s podrobnostmi o události"
|
4190 |
|
4191 |
-
#: app/features/mec/modules.php:
|
4192 |
msgid "Attendees Limit"
|
4193 |
msgstr "Limit účastníků"
|
4194 |
|
4195 |
-
#: app/features/mec/modules.php:
|
4196 |
msgid "Add booking activity to user profile"
|
4197 |
msgstr "Přidejte do uživatelského profilu rezervační aktivitu"
|
4198 |
|
@@ -4204,16 +4322,6 @@ msgstr "Povolit upozornění na rezervaci"
|
|
4204 |
msgid "It sends to attendee after booking for notifying him/her."
|
4205 |
msgstr "Po rezervaci odešle účastníkovi informační upozornění."
|
4206 |
|
4207 |
-
#: app/features/mec/notifications.php:44 app/features/mec/notifications.php:105
|
4208 |
-
#: app/features/mec/notifications.php:161
|
4209 |
-
#: app/features/mec/notifications.php:229
|
4210 |
-
#: app/features/mec/notifications.php:299
|
4211 |
-
#: app/features/mec/notifications.php:364
|
4212 |
-
#: app/features/mec/notifications.php:439
|
4213 |
-
#: app/features/mec/notifications.php:487
|
4214 |
-
msgid "Email Subject"
|
4215 |
-
msgstr "Předmět emailové zprávy"
|
4216 |
-
|
4217 |
#: app/features/mec/notifications.php:48 app/features/mec/notifications.php:52
|
4218 |
#: app/features/mec/notifications.php:109
|
4219 |
#: app/features/mec/notifications.php:113
|
@@ -4259,16 +4367,6 @@ msgstr "Pošlete e-mail organizátorovi události"
|
|
4259 |
msgid "Email Content"
|
4260 |
msgstr "Obsah zprávy"
|
4261 |
|
4262 |
-
#: app/features/mec/notifications.php:66 app/features/mec/notifications.php:123
|
4263 |
-
#: app/features/mec/notifications.php:183
|
4264 |
-
#: app/features/mec/notifications.php:259
|
4265 |
-
#: app/features/mec/notifications.php:321
|
4266 |
-
#: app/features/mec/notifications.php:393
|
4267 |
-
#: app/features/mec/notifications.php:457
|
4268 |
-
#: app/features/mec/notifications.php:505
|
4269 |
-
msgid "You can use following placeholders"
|
4270 |
-
msgstr "Můžete použít následující zástupné symboly"
|
4271 |
-
|
4272 |
#: app/features/mec/notifications.php:68 app/features/mec/notifications.php:125
|
4273 |
#: app/features/mec/notifications.php:185
|
4274 |
#: app/features/mec/notifications.php:261
|
@@ -4554,7 +4652,7 @@ msgid "It sends to admin to notify him/her that a new booking received."
|
|
4554 |
msgstr "Zašle správci informaci o přijetí nové rezervace."
|
4555 |
|
4556 |
#: app/features/mec/notifications.php:351 app/libraries/main.php:578
|
4557 |
-
#: app/libraries/notifications.php:
|
4558 |
msgid "Booking Reminder"
|
4559 |
msgstr "Připomenutí rezervace"
|
4560 |
|
@@ -4752,7 +4850,7 @@ msgid "You can enable/disable Schema scripts"
|
|
4752 |
msgstr "Můžete povolit nebo zakázat skripty schématu"
|
4753 |
|
4754 |
#: app/features/mec/settings.php:177 app/features/mec/settings.php:187
|
4755 |
-
#: app/libraries/main.php:
|
4756 |
msgid "Weekdays"
|
4757 |
msgstr "Pracovní dny"
|
4758 |
|
@@ -5901,8 +5999,8 @@ msgstr "např. info@itreseni.cz"
|
|
5901 |
msgid "eg. https://webnus.net"
|
5902 |
msgstr "např. https://webnus.net"
|
5903 |
|
5904 |
-
#: app/features/organizers.php:311 app/libraries/main.php:
|
5905 |
-
#: app/skins/single.php:
|
5906 |
msgid "Other Organizers"
|
5907 |
msgstr "Další organizátoři"
|
5908 |
|
@@ -5917,7 +6015,7 @@ msgstr ""
|
|
5917 |
msgid "Please %s/%s in order to see your bookings / profile."
|
5918 |
msgstr "Prosím %s/%s za účelem zobrazení vašich rezervací / profilu."
|
5919 |
|
5920 |
-
#: app/features/profile/profile.php:18 app/libraries/main.php:
|
5921 |
msgid "Your booking already canceled!"
|
5922 |
msgstr "Vaše rezervace již byla zrušena!"
|
5923 |
|
@@ -5925,7 +6023,7 @@ msgstr "Vaše rezervace již byla zrušena!"
|
|
5925 |
msgid "#"
|
5926 |
msgstr "#"
|
5927 |
|
5928 |
-
#: app/features/profile/profile.php:56 app/libraries/main.php:
|
5929 |
msgid "Status"
|
5930 |
msgstr "Stav"
|
5931 |
|
@@ -5954,7 +6052,7 @@ msgstr "<i class=\"mec-sl-eye\"></i> %s"
|
|
5954 |
msgid "No bookings found!"
|
5955 |
msgstr "Nebyly nalezeny žádné rezervace!"
|
5956 |
|
5957 |
-
#: app/features/search.php:87 app/libraries/main.php:
|
5958 |
msgid "label"
|
5959 |
msgstr "štítek"
|
5960 |
|
@@ -5979,9 +6077,9 @@ msgid "No search result."
|
|
5979 |
msgstr "Žádný výsledek vyhledávání."
|
5980 |
|
5981 |
#: app/features/search_bar/search_result.php:11
|
5982 |
-
#: app/libraries/notifications.php:
|
5983 |
#: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
|
5984 |
-
#: app/skins/single.php:160 app/skins/single.php:
|
5985 |
#: app/skins/single/default.php:101 app/skins/single/default.php:313
|
5986 |
#: app/skins/single/m1.php:38 app/skins/single/modern.php:188
|
5987 |
msgid "All of the day"
|
@@ -6045,12 +6143,12 @@ msgstr ""
|
|
6045 |
msgid "%s Price"
|
6046 |
msgstr "%s Cena"
|
6047 |
|
6048 |
-
#: app/libraries/book.php:
|
6049 |
msgid "Discount"
|
6050 |
msgstr "Sleva"
|
6051 |
|
6052 |
-
#: app/libraries/book.php:
|
6053 |
-
#: app/modules/booking/default.php:
|
6054 |
msgid "Download Invoice"
|
6055 |
msgstr "Stáhnout fakturu"
|
6056 |
|
@@ -6125,38 +6223,38 @@ msgstr "Vlastní postranní panel pro jednu a modální stránku MEC."
|
|
6125 |
msgid "There is no excerpt because this is a protected post."
|
6126 |
msgstr "Neexistuje výňatek, protože se jedná o chráněný příspěvek."
|
6127 |
|
6128 |
-
#: app/libraries/main.php:331 app/libraries/main.php:
|
6129 |
-
#: app/libraries/main.php:
|
6130 |
msgid "Grid View"
|
6131 |
msgstr "Zobrazení mřížky"
|
6132 |
|
6133 |
-
#: app/libraries/main.php:332 app/libraries/main.php:
|
6134 |
-
#: app/libraries/main.php:
|
6135 |
msgid "Agenda View"
|
6136 |
msgstr "Zobrazení agendy"
|
6137 |
|
6138 |
-
#: app/libraries/main.php:333 app/libraries/main.php:
|
6139 |
-
#: app/libraries/main.php:
|
6140 |
msgid "Full Calendar"
|
6141 |
msgstr "Plný kalendář"
|
6142 |
|
6143 |
-
#: app/libraries/main.php:335 app/libraries/main.php:
|
6144 |
-
#: app/libraries/main.php:
|
6145 |
msgid "Calendar/Monthly View"
|
6146 |
msgstr "Kalendář / zobrazení měsíce"
|
6147 |
|
6148 |
-
#: app/libraries/main.php:338 app/libraries/main.php:
|
6149 |
-
#: app/libraries/main.php:
|
6150 |
msgid "Timetable View"
|
6151 |
msgstr "Zobrazení rozvrhu"
|
6152 |
|
6153 |
-
#: app/libraries/main.php:339 app/libraries/main.php:
|
6154 |
-
#: app/libraries/main.php:
|
6155 |
msgid "Masonry View"
|
6156 |
msgstr "Zobrazení zdi"
|
6157 |
|
6158 |
-
#: app/libraries/main.php:340 app/libraries/main.php:
|
6159 |
-
#: app/libraries/main.php:
|
6160 |
msgid "Map View"
|
6161 |
msgstr "Zobrazení mapy"
|
6162 |
|
@@ -6193,31 +6291,31 @@ msgstr "Zobrazení rozvrhu"
|
|
6193 |
msgid "Tile View"
|
6194 |
msgstr "Zobrazení rozvrhu"
|
6195 |
|
6196 |
-
#: app/libraries/main.php:385 app/libraries/main.php:
|
6197 |
msgid "SU"
|
6198 |
msgstr "NE"
|
6199 |
|
6200 |
-
#: app/libraries/main.php:386 app/libraries/main.php:
|
6201 |
msgid "MO"
|
6202 |
msgstr "PO"
|
6203 |
|
6204 |
-
#: app/libraries/main.php:387 app/libraries/main.php:
|
6205 |
msgid "TU"
|
6206 |
msgstr "ÚT"
|
6207 |
|
6208 |
-
#: app/libraries/main.php:388 app/libraries/main.php:
|
6209 |
msgid "WE"
|
6210 |
msgstr "ST"
|
6211 |
|
6212 |
-
#: app/libraries/main.php:389 app/libraries/main.php:
|
6213 |
msgid "TH"
|
6214 |
msgstr "ČT"
|
6215 |
|
6216 |
-
#: app/libraries/main.php:390 app/libraries/main.php:
|
6217 |
msgid "FR"
|
6218 |
msgstr "PÁ"
|
6219 |
|
6220 |
-
#: app/libraries/main.php:391 app/libraries/main.php:
|
6221 |
msgid "SA"
|
6222 |
msgstr "SO"
|
6223 |
|
@@ -6272,21 +6370,17 @@ msgstr ""
|
|
6272 |
|
6273 |
#: app/libraries/main.php:879
|
6274 |
msgid ""
|
6275 |
-
"<strong>
|
6276 |
-
"
|
6277 |
-
"
|
6278 |
msgstr ""
|
6279 |
-
"<strong>Elementor Single Builder:</strong> Upravte stránku jedné události "
|
6280 |
-
"pomocí Elementoru. Spravujte polohu všech prvků na jedné stránce a také na "
|
6281 |
-
"stolních počítačích, mobilech a tabletech."
|
6282 |
|
6283 |
#: app/libraries/main.php:880
|
6284 |
msgid ""
|
6285 |
-
"<strong>
|
6286 |
-
"
|
|
|
6287 |
msgstr ""
|
6288 |
-
"<strong>Elementor Shortcode Builder:</strong> To vám umožní vytvářet krátké "
|
6289 |
-
"kódy v Elementor Live Editoru."
|
6290 |
|
6291 |
#: app/libraries/main.php:1429
|
6292 |
msgid "Events at this location"
|
@@ -6304,264 +6398,348 @@ msgstr "Facebook"
|
|
6304 |
msgid "Twitter"
|
6305 |
msgstr "Twitter"
|
6306 |
|
6307 |
-
#: app/libraries/main.php:1474 app/libraries/main.php:
|
6308 |
msgid "Linkedin"
|
6309 |
msgstr "Linkedin"
|
6310 |
|
6311 |
-
#: app/libraries/main.php:1475 app/libraries/main.php:
|
6312 |
msgid "VK"
|
6313 |
msgstr "VK"
|
6314 |
|
6315 |
-
#: app/libraries/main.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6316 |
msgid "Share on Facebook"
|
6317 |
msgstr "Sdílet na Facebooku"
|
6318 |
|
6319 |
-
#: app/libraries/main.php:
|
6320 |
msgid "Tweet"
|
6321 |
msgstr "Tweet"
|
6322 |
|
6323 |
#: app/libraries/main.php:1582
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6324 |
msgid "Custom Shortcode"
|
6325 |
msgstr "Uživatelské zkrácené kódy"
|
6326 |
|
6327 |
-
#: app/libraries/main.php:
|
6328 |
msgid "Your booking already verified!"
|
6329 |
msgstr "Vaše rezervace již byla ověřena!"
|
6330 |
|
6331 |
-
#: app/libraries/main.php:
|
6332 |
msgid "Your booking successfully verified."
|
6333 |
msgstr "Vaše rezervace byla úspěšně ověřena."
|
6334 |
|
6335 |
-
#: app/libraries/main.php:
|
6336 |
msgid "Your booking cannot verify!"
|
6337 |
msgstr "Vaši rezervaci nelze ověřit!"
|
6338 |
|
6339 |
-
#: app/libraries/main.php:
|
6340 |
msgid "Your booking successfully canceled."
|
6341 |
msgstr "Vaše rezervace byla úspěšně zrušena."
|
6342 |
|
6343 |
-
#: app/libraries/main.php:
|
6344 |
msgid "Your booking cannot be canceled."
|
6345 |
msgstr "Vaši rezervaci nelze zrušit."
|
6346 |
|
6347 |
-
#: app/libraries/main.php:
|
6348 |
msgid "You canceled the payment successfully."
|
6349 |
msgstr "Platbu jste úspěšně zrušili."
|
6350 |
|
6351 |
-
#: app/libraries/main.php:
|
6352 |
msgid "You returned from payment gateway successfully."
|
6353 |
msgstr "Úspěšně jste se vrátili z platební brány."
|
6354 |
|
6355 |
-
#: app/libraries/main.php:
|
6356 |
msgid "Cannot find the invoice!"
|
6357 |
msgstr "Fakturu nelze najít!"
|
6358 |
|
6359 |
-
#: app/libraries/main.php:
|
6360 |
msgid "Invoice is invalid."
|
6361 |
msgstr "Faktura je neplatná."
|
6362 |
|
6363 |
-
#: app/libraries/main.php:
|
6364 |
msgid ""
|
6365 |
"Your booking still is not confirmed. You able download it after confirmation!"
|
6366 |
msgstr ""
|
6367 |
"Vaše rezervace stále není potvrzena. Můžete si ji stáhnout po potvrzení!"
|
6368 |
|
6369 |
-
#: app/libraries/main.php:
|
6370 |
msgid "Booking Not Confirmed."
|
6371 |
msgstr "Rezervace nebyla potvrzena."
|
6372 |
|
6373 |
-
#: app/libraries/main.php:
|
6374 |
msgid "Cannot find the booking!"
|
6375 |
msgstr "Nemohu najít rezervaci!"
|
6376 |
|
6377 |
-
#: app/libraries/main.php:
|
6378 |
msgid "Booking is invalid."
|
6379 |
msgstr "Rezervace není platná."
|
6380 |
|
6381 |
-
#: app/libraries/main.php:
|
6382 |
#, php-format
|
6383 |
msgid "%s Invoice"
|
6384 |
msgstr "%s Faktura"
|
6385 |
|
6386 |
-
#: app/libraries/main.php:
|
6387 |
msgid "Billing"
|
6388 |
msgstr "Fakturace"
|
6389 |
|
6390 |
-
#: app/libraries/main.php:
|
6391 |
msgid "Total"
|
6392 |
msgstr "Celkem"
|
6393 |
|
6394 |
-
#: app/libraries/main.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6395 |
msgid "Request is not valid."
|
6396 |
msgstr "Požadavek není platný."
|
6397 |
|
6398 |
-
#: app/libraries/main.php:
|
6399 |
msgid "iCal export stopped!"
|
6400 |
msgstr "iCal export byl zastaven!"
|
6401 |
|
6402 |
-
#: app/libraries/main.php:
|
6403 |
-
#: app/libraries/main.php:
|
6404 |
-
#: app/libraries/main.php:
|
6405 |
-
#: app/libraries/main.php:
|
6406 |
-
#: app/libraries/main.php:
|
6407 |
-
#: app/libraries/main.php:
|
6408 |
-
#: app/libraries/main.php:
|
6409 |
msgid "Sort"
|
6410 |
msgstr "Seřadit"
|
6411 |
|
6412 |
-
#: app/libraries/main.php:
|
6413 |
-
#: app/libraries/main.php:
|
6414 |
-
#: app/libraries/main.php:
|
6415 |
-
#: app/libraries/main.php:
|
6416 |
-
#: app/libraries/main.php:
|
6417 |
-
#: app/libraries/main.php:
|
6418 |
msgid "Required Field"
|
6419 |
msgstr "Požadovaná pole"
|
6420 |
|
6421 |
-
#: app/libraries/main.php:
|
6422 |
-
#: app/libraries/main.php:
|
6423 |
-
#: app/libraries/main.php:
|
6424 |
-
#: app/libraries/main.php:
|
6425 |
-
#: app/libraries/main.php:
|
6426 |
-
#: app/libraries/main.php:
|
6427 |
msgid "Insert a label for this field"
|
6428 |
msgstr "Vložte štítek pro toto pole"
|
6429 |
|
6430 |
-
#: app/libraries/main.php:
|
6431 |
msgid "HTML and shortcode are allowed."
|
6432 |
msgstr "HTML a zkrácené kódy jsou povoleny."
|
6433 |
|
6434 |
-
#: app/libraries/main.php:
|
6435 |
-
#: app/libraries/main.php:
|
6436 |
msgid "Option"
|
6437 |
msgstr "Možnost"
|
6438 |
|
6439 |
-
#: app/libraries/main.php:
|
6440 |
#, php-format
|
6441 |
msgid "Instead of %s, the page title with a link will be show."
|
6442 |
msgstr "Místo%s se zobrazí název stránky s odkazem."
|
6443 |
|
6444 |
-
#: app/libraries/main.php:
|
6445 |
msgid "Agreement Page"
|
6446 |
msgstr "Stránka smlouvy"
|
6447 |
|
6448 |
-
#: app/libraries/main.php:
|
6449 |
msgid "Checked by default"
|
6450 |
msgstr "Ve výchozím nastavení zaškrtnuto"
|
6451 |
|
6452 |
-
#: app/libraries/main.php:
|
6453 |
msgid "Unchecked by default"
|
6454 |
msgstr "Ve výchozím nastavení není zaškrtnuto"
|
6455 |
|
6456 |
-
#: app/libraries/main.php:
|
6457 |
msgid "Insert a label for this option"
|
6458 |
msgstr "Vložte štítek pro tuto možnost"
|
6459 |
|
6460 |
-
#: app/libraries/main.php:
|
6461 |
msgid "Free"
|
6462 |
msgstr "Zdarma"
|
6463 |
|
6464 |
-
#: app/libraries/main.php:
|
6465 |
msgid "M.E. Calender"
|
6466 |
msgstr "M.E. Kalendář"
|
6467 |
|
6468 |
-
#: app/libraries/main.php:
|
6469 |
#, php-format
|
6470 |
msgid "Copy of %s"
|
6471 |
msgstr "Kopie %s"
|
6472 |
|
6473 |
-
#: app/libraries/main.php:
|
6474 |
msgid "Booked an event."
|
6475 |
msgstr "Událost byla rezervována."
|
6476 |
|
6477 |
-
#: app/libraries/main.php:
|
6478 |
#, php-format
|
6479 |
msgid "%s booked %s event."
|
6480 |
msgstr "%s zarezervoval %s událost."
|
6481 |
|
6482 |
-
#: app/libraries/main.php:
|
6483 |
msgid "Taxonomies"
|
6484 |
msgstr "Taxonomie"
|
6485 |
|
6486 |
# Mrknout na kontext
|
6487 |
-
#: app/libraries/main.php:
|
6488 |
msgid "Category Plural Label"
|
6489 |
msgstr "Štítek množné kategorie"
|
6490 |
|
6491 |
# Mrknout na kontext
|
6492 |
-
#: app/libraries/main.php:
|
6493 |
msgid "Category Singular Label"
|
6494 |
msgstr "Štítek jednotné kategorie"
|
6495 |
|
6496 |
-
#: app/libraries/main.php:
|
6497 |
msgid "Label Plural Label"
|
6498 |
msgstr "Štítek množného štítku"
|
6499 |
|
6500 |
-
#: app/libraries/main.php:
|
6501 |
msgid "Label Singular Label"
|
6502 |
msgstr "Štítek jednotného štítku"
|
6503 |
|
6504 |
-
#: app/libraries/main.php:
|
6505 |
msgid "Location Plural Label"
|
6506 |
msgstr "Štítek množného umístění"
|
6507 |
|
6508 |
-
#: app/libraries/main.php:
|
6509 |
msgid "Location Singular Label"
|
6510 |
msgstr "Štítek jednotného umístění"
|
6511 |
|
6512 |
-
#: app/libraries/main.php:
|
6513 |
msgid "Organizer Plural Label"
|
6514 |
msgstr "Štítek množného organizátora"
|
6515 |
|
6516 |
-
#: app/libraries/main.php:
|
6517 |
msgid "Organizer Singular Label"
|
6518 |
msgstr "Štítek jednotného organizátora"
|
6519 |
|
6520 |
-
#: app/libraries/main.php:
|
6521 |
msgid "Speaker Plural Label"
|
6522 |
msgstr "Štítek množného řečníka"
|
6523 |
|
6524 |
-
#: app/libraries/main.php:
|
6525 |
msgid "Speaker Singular Label"
|
6526 |
msgstr "Štítek jednotného řečníka"
|
6527 |
|
6528 |
-
#: app/libraries/main.php:
|
6529 |
msgid "Sunday abbreviation"
|
6530 |
msgstr "Neděle zkratka"
|
6531 |
|
6532 |
-
#: app/libraries/main.php:
|
6533 |
msgid "Monday abbreviation"
|
6534 |
msgstr "Pondělí zkratka"
|
6535 |
|
6536 |
-
#: app/libraries/main.php:
|
6537 |
msgid "Tuesday abbreviation"
|
6538 |
msgstr "Úterý zkratka"
|
6539 |
|
6540 |
-
#: app/libraries/main.php:
|
6541 |
msgid "Wednesday abbreviation"
|
6542 |
msgstr "Středa zkratka"
|
6543 |
|
6544 |
-
#: app/libraries/main.php:
|
6545 |
msgid "Thursday abbreviation"
|
6546 |
msgstr "Čtvrtek zkratka"
|
6547 |
|
6548 |
-
#: app/libraries/main.php:
|
6549 |
msgid "Friday abbreviation"
|
6550 |
msgstr "Pátek zkratka"
|
6551 |
|
6552 |
-
#: a
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar Lite\n"
|
4 |
+
"POT-Creation-Date: 2019-12-24 16:38+0330\n"
|
5 |
+
"PO-Revision-Date: 2019-12-24 16:38+0330\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: cs_CZ\n"
|
31 |
msgid "Content"
|
32 |
msgstr "Obsah"
|
33 |
|
34 |
+
#: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:375
|
35 |
+
#: app/features/mec.php:406 app/features/mec.php:436
|
36 |
msgid "Shortcode"
|
37 |
msgstr "Zkrácený kód"
|
38 |
|
66 |
msgid "Event Color"
|
67 |
msgstr "Barva události"
|
68 |
|
69 |
+
#: app/features/contextual.php:55 app/features/mec.php:355
|
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:591
|
72 |
msgid "Settings"
|
73 |
msgstr "Nastavení"
|
74 |
|
75 |
+
#: app/features/contextual.php:62 app/features/events.php:2463
|
76 |
#: app/features/mec/booking.php:439 app/features/mec/support.php:29
|
77 |
#: app/libraries/main.php:557
|
78 |
msgid "Booking Form"
|
236 |
msgid "Frontend Event Submission"
|
237 |
msgstr "Předání události frontendu"
|
238 |
|
239 |
+
#: app/features/contextual.php:298 app/features/events.php:332
|
240 |
#: app/libraries/main.php:546
|
241 |
msgid "Exceptional Days"
|
242 |
msgstr "Výjimečné dny"
|
243 |
|
244 |
+
#: app/features/contextual.php:308 app/features/events.php:305
|
245 |
#: app/features/mec/booking.php:88 app/features/mec/notifications.php:34
|
246 |
#: app/libraries/main.php:553 app/libraries/main.php:574
|
247 |
#: app/libraries/main.php:656
|
253 |
msgid "Coupons"
|
254 |
msgstr "Kupóny"
|
255 |
|
256 |
+
#: app/features/contextual.php:326 app/features/mec/modules.php:329
|
257 |
#: app/libraries/main.php:570
|
258 |
msgid "BuddyPress Integration"
|
259 |
msgstr "Integrace BuddyPress"
|
267 |
msgid "MEC Activation"
|
268 |
msgstr "Aktivace MEC"
|
269 |
|
270 |
+
#: app/features/events.php:157 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/tile/tpl.php:69
|
273 |
#: app/skins/yearly_view/tpl.php:68
|
274 |
msgid "Events"
|
275 |
msgstr "Události"
|
276 |
|
277 |
+
#: app/features/events.php:158 app/features/fes.php:223
|
278 |
#: app/features/mec/meta_boxes/display_options.php:959
|
279 |
#: app/features/mec/meta_boxes/display_options.php:1015
|
280 |
#: app/features/mec/meta_boxes/display_options.php:1050
|
284 |
msgid "Event"
|
285 |
msgstr "Událost"
|
286 |
|
287 |
+
#: app/features/events.php:159 app/features/mec.php:341
|
288 |
msgid "Add Event"
|
289 |
msgstr "Přidat událost"
|
290 |
|
291 |
+
#: app/features/events.php:160 app/features/mec/dashboard.php:133
|
292 |
msgid "Add New Event"
|
293 |
msgstr "Přidat novou událost"
|
294 |
|
295 |
+
#: app/features/events.php:161 app/features/ix.php:3752
|
296 |
#: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:58
|
297 |
msgid "No events found!"
|
298 |
msgstr "Nebyly nalezeny žádné události!"
|
299 |
|
300 |
+
#: app/features/events.php:162
|
301 |
msgid "All Events"
|
302 |
msgstr "Všechny události"
|
303 |
|
304 |
+
#: app/features/events.php:163
|
305 |
msgid "Edit Event"
|
306 |
msgstr "Editace události"
|
307 |
|
308 |
+
#: app/features/events.php:164 app/features/fes/list.php:82
|
309 |
msgid "View Event"
|
310 |
msgstr "Zobrazit událost"
|
311 |
|
312 |
+
#: app/features/events.php:165
|
313 |
msgid "No events found in Trash!"
|
314 |
msgstr "V koši nebyly nalezeny žádné události!"
|
315 |
|
316 |
+
#: app/features/events.php:182 app/features/events.php:3310
|
317 |
#: app/features/mec/meta_boxes/display_options.php:870
|
318 |
#: app/features/mec/meta_boxes/search_form.php:31
|
319 |
#: app/features/mec/meta_boxes/search_form.php:93
|
327 |
#: app/features/mec/meta_boxes/search_form.php:575
|
328 |
#: app/features/mec/meta_boxes/search_form.php:672
|
329 |
#: app/features/mec/settings.php:796 app/features/mec/single.php:204
|
330 |
+
#: app/features/search.php:67 app/libraries/main.php:5066
|
331 |
+
#: app/libraries/skins.php:811 app/skins/single.php:560
|
332 |
#: app/skins/single/default.php:185 app/skins/single/default.php:397
|
333 |
#: app/skins/single/m1.php:174 app/skins/single/m2.php:106
|
334 |
#: app/skins/single/modern.php:114
|
335 |
msgid "Category"
|
336 |
msgstr "Kategorie"
|
337 |
|
338 |
+
#: app/features/events.php:183 app/features/events.php:3265
|
339 |
+
#: app/features/fes/form.php:746 app/features/mec.php:343
|
340 |
+
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5065
|
341 |
msgid "Categories"
|
342 |
msgstr "Kategorie"
|
343 |
|
344 |
+
#: app/features/events.php:193 app/features/labels.php:71
|
345 |
#: app/features/locations.php:69 app/features/organizers.php:69
|
346 |
#: app/features/speakers.php:72
|
347 |
#, php-format
|
348 |
msgid "All %s"
|
349 |
msgstr "Všechny %s"
|
350 |
|
351 |
+
#: app/features/events.php:194 app/features/labels.php:72
|
352 |
#: app/features/locations.php:70 app/features/organizers.php:70
|
353 |
#: app/features/speakers.php:73
|
354 |
#, php-format
|
355 |
msgid "Edit %s"
|
356 |
msgstr "Editovat %s"
|
357 |
|
358 |
+
#: app/features/events.php:195 app/features/labels.php:73
|
359 |
#: app/features/locations.php:71 app/features/organizers.php:71
|
360 |
#: app/features/speakers.php:74
|
361 |
#, php-format
|
362 |
msgid "View %s"
|
363 |
msgstr "Zobrazit %s"
|
364 |
|
365 |
+
#: app/features/events.php:196 app/features/labels.php:74
|
366 |
#: app/features/locations.php:72 app/features/organizers.php:72
|
367 |
#: app/features/speakers.php:75
|
368 |
#, php-format
|
369 |
msgid "Update %s"
|
370 |
msgstr "Aktualizovat %s"
|
371 |
|
372 |
+
#: app/features/events.php:197 app/features/labels.php:75
|
373 |
#: app/features/locations.php:73 app/features/organizers.php:73
|
374 |
#: app/features/speakers.php:76
|
375 |
#, php-format
|
376 |
msgid "Add New %s"
|
377 |
msgstr "Přidat novou %s"
|
378 |
|
379 |
+
#: app/features/events.php:198 app/features/labels.php:76
|
380 |
#: app/features/locations.php:74 app/features/organizers.php:74
|
381 |
#: app/features/speakers.php:77
|
382 |
#, php-format
|
383 |
msgid "New %s Name"
|
384 |
msgstr "Nové jméno %s"
|
385 |
|
386 |
+
#: app/features/events.php:199 app/features/labels.php:77
|
387 |
#: app/features/locations.php:75 app/features/organizers.php:75
|
388 |
#: app/features/speakers.php:78
|
389 |
#, php-format
|
390 |
msgid "Popular %s"
|
391 |
msgstr "Populární %s"
|
392 |
|
393 |
+
#: app/features/events.php:200 app/features/labels.php:78
|
394 |
#: app/features/locations.php:76 app/features/organizers.php:76
|
395 |
#: app/features/speakers.php:79
|
396 |
#, php-format
|
397 |
msgid "Search %s"
|
398 |
msgstr "Vyhledat %s"
|
399 |
|
400 |
+
#: app/features/events.php:225 app/features/events.php:246
|
401 |
msgid "Category Icon"
|
402 |
msgstr "Ikona kategorie"
|
403 |
|
404 |
+
#: app/features/events.php:228 app/features/events.php:251
|
405 |
msgid "Select icon"
|
406 |
msgstr "Vybrat ikonu"
|
407 |
|
408 |
+
#: app/features/events.php:300
|
409 |
msgid "Event Details"
|
410 |
msgstr "Podrobnosti události"
|
411 |
|
412 |
+
#: app/features/events.php:329
|
413 |
#, fuzzy
|
414 |
#| msgid "Event Details"
|
415 |
msgid "FES Details"
|
416 |
msgstr "Podrobnosti události"
|
417 |
|
418 |
+
#: app/features/events.php:330
|
419 |
#, fuzzy
|
420 |
#| msgid "Date and Time"
|
421 |
msgid "Date And Time"
|
422 |
msgstr "Datum a čas"
|
423 |
|
424 |
+
#: app/features/events.php:331 app/features/fes/form.php:342
|
425 |
msgid "Event Repeating"
|
426 |
msgstr "Opakování události"
|
427 |
|
428 |
+
#: app/features/events.php:333 app/features/events.php:1278
|
429 |
+
#: app/features/mec/settings.php:706 app/skins/single.php:931
|
430 |
msgid "Hourly Schedule"
|
431 |
msgstr "Hodinový rozvrh"
|
432 |
|
433 |
+
#: app/features/events.php:334
|
434 |
#, fuzzy
|
435 |
#| msgid "Location"
|
436 |
msgid "Location/Venue"
|
437 |
msgstr "Umístění"
|
438 |
|
439 |
+
#: app/features/events.php:335
|
440 |
#, fuzzy
|
441 |
#| msgid "Link"
|
442 |
msgid "Links"
|
443 |
msgstr "Odkaz"
|
444 |
|
445 |
+
#: app/features/events.php:336 app/features/events.php:3312
|
446 |
+
#: app/features/events.php:3503 app/features/events.php:3545
|
447 |
#: app/features/ix.php:3373 app/features/ix.php:3414
|
448 |
#: app/features/mec/meta_boxes/display_options.php:873
|
449 |
#: app/features/mec/meta_boxes/search_form.php:45
|
461 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
462 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
463 |
#: app/features/organizers.php:271 app/features/search.php:75
|
464 |
+
#: app/libraries/main.php:5072 app/libraries/skins.php:863
|
465 |
+
#: app/skins/single.php:796 app/skins/single/default.php:210
|
466 |
#: app/skins/single/default.php:422 app/skins/single/m1.php:94
|
467 |
#: app/skins/single/m2.php:26 app/skins/single/modern.php:35
|
468 |
msgid "Organizer"
|
469 |
msgstr "Organizátor"
|
470 |
|
471 |
+
#: app/features/events.php:337 app/features/events.php:1164
|
472 |
+
#: app/features/fes/form.php:719 app/libraries/main.php:5099
|
473 |
+
#: app/skins/single.php:583 app/skins/single/default.php:119
|
474 |
#: app/skins/single/default.php:331 app/skins/single/m1.php:53
|
475 |
#: app/skins/single/modern.php:203
|
476 |
msgid "Cost"
|
477 |
msgstr "Cena"
|
478 |
|
479 |
+
#: app/features/events.php:474
|
480 |
msgid "Note for reviewer"
|
481 |
msgstr "Poznámka pro recenzenta"
|
482 |
|
483 |
+
#: app/features/events.php:480
|
484 |
msgid "Guest Data"
|
485 |
msgstr "Údaje hosta"
|
486 |
|
487 |
+
#: app/features/events.php:481 app/features/events.php:2445
|
488 |
+
#: app/features/events.php:3709 app/features/events.php:3941
|
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:1017 app/modules/booking/steps/form.php:37
|
493 |
msgid "Name"
|
494 |
msgstr "Jméno"
|
495 |
|
496 |
+
#: app/features/events.php:482 app/features/events.php:2456
|
497 |
+
#: app/features/events.php:2532 app/features/events.php:3712
|
498 |
+
#: app/features/events.php:3944 app/features/fes.php:223
|
499 |
#: app/features/fes/form.php:674 app/features/mec/booking.php:57
|
500 |
#: app/features/mec/booking.php:490 app/features/organizers.php:111
|
501 |
#: app/features/organizers.php:152 app/features/profile/profile.php:183
|
502 |
#: app/features/speakers.php:126 app/features/speakers.php:187
|
503 |
+
#: app/libraries/main.php:1483 app/libraries/main.php:1552
|
504 |
+
#: app/libraries/main.php:2752 app/libraries/notifications.php:1018
|
505 |
#: app/modules/booking/steps/form.php:46 app/modules/booking/steps/form.php:83
|
506 |
+
#: app/skins/single.php:813 app/skins/single.php:868
|
507 |
#: app/skins/single/default.php:227 app/skins/single/default.php:439
|
508 |
#: app/skins/single/m1.php:111 app/skins/single/m2.php:43
|
509 |
#: app/skins/single/modern.php:52
|
510 |
msgid "Email"
|
511 |
msgstr "Email"
|
512 |
|
513 |
+
#: app/features/events.php:490 app/features/fes/form.php:242
|
514 |
msgid "Date and Time"
|
515 |
msgstr "Datum a čas"
|
516 |
|
517 |
+
#: app/features/events.php:493 app/features/events.php:499
|
518 |
+
#: app/features/events.php:3313 app/features/events.php:3503
|
519 |
+
#: app/features/events.php:3545 app/features/fes/form.php:246
|
520 |
#: app/features/fes/form.php:250 app/features/ix.php:3373
|
521 |
#: app/features/ix.php:3414 app/features/ix/import_g_calendar.php:38
|
522 |
#: app/features/mec/dashboard.php:399
|
538 |
msgid "Start Date"
|
539 |
msgstr "Počátečná den"
|
540 |
|
541 |
+
#: app/features/events.php:571 app/features/events.php:663
|
542 |
+
#: app/features/events.php:1718 app/features/events.php:1777
|
543 |
+
#: app/features/events.php:1970 app/features/events.php:2009
|
544 |
#: app/features/fes/form.php:278 app/features/fes/form.php:318
|
545 |
msgid "AM"
|
546 |
msgstr "dop."
|
547 |
|
548 |
+
#: app/features/events.php:578 app/features/events.php:670
|
549 |
+
#: app/features/events.php:1725 app/features/events.php:1784
|
550 |
+
#: app/features/events.php:1971 app/features/events.php:2010
|
551 |
#: app/features/fes/form.php:279 app/features/fes/form.php:319
|
552 |
msgid "PM"
|
553 |
msgstr "odp."
|
554 |
|
555 |
+
#: app/features/events.php:585 app/features/events.php:590
|
556 |
+
#: app/features/events.php:3314 app/features/events.php:3503
|
557 |
+
#: app/features/events.php:3545 app/features/fes/form.php:286
|
558 |
#: app/features/fes/form.php:290 app/features/ix.php:3373
|
559 |
#: app/features/ix.php:3414 app/features/ix/import_g_calendar.php:44
|
560 |
#: app/features/mec/dashboard.php:400
|
561 |
msgid "End Date"
|
562 |
msgstr "Konečný den"
|
563 |
|
564 |
+
#: app/features/events.php:684 app/features/fes/form.php:325
|
565 |
msgid "All Day Event"
|
566 |
msgstr "Celodenní událost"
|
567 |
|
568 |
+
#: app/features/events.php:694 app/features/fes/form.php:328
|
569 |
msgid "Hide Event Time"
|
570 |
msgstr "Skrýt čas události"
|
571 |
|
572 |
+
#: app/features/events.php:704 app/features/fes/form.php:331
|
573 |
msgid "Hide Event End Time"
|
574 |
msgstr "Skrýt čas ukončení události"
|
575 |
|
576 |
+
#: app/features/events.php:709 app/features/events.php:713
|
577 |
#: app/features/fes/form.php:335
|
578 |
msgid "Time Comment"
|
579 |
msgstr "Časový komentář"
|
580 |
|
581 |
+
#: app/features/events.php:714 app/features/fes/form.php:336
|
582 |
msgid ""
|
583 |
"It shows next to event time on single event page. You can insert Timezone "
|
584 |
"etc. in this field."
|
586 |
"Zobrazuje se vedle času události na stránce jedné události. Do tohoto pole "
|
587 |
"můžete vložit časové pásmo atd."
|
588 |
|
589 |
+
#: app/features/events.php:716 app/features/events.php:837
|
590 |
+
#: app/features/events.php:1137 app/features/events.php:1204
|
591 |
+
#: app/features/events.php:1503 app/features/events.php:1595
|
592 |
+
#: app/features/events.php:1805 app/features/events.php:1820
|
593 |
+
#: app/features/events.php:2029 app/features/events.php:2042
|
594 |
+
#: app/features/events.php:2193 app/features/events.php:2229
|
595 |
+
#: app/features/events.php:2327 app/features/events.php:2342
|
596 |
+
#: app/features/events.php:2372 app/features/events.php:2385
|
597 |
#: app/features/fes/form.php:640 app/features/locations.php:299
|
598 |
#: app/features/mec/booking.php:108 app/features/mec/booking.php:158
|
599 |
#: app/features/mec/booking.php:171 app/features/mec/booking.php:187
|
635 |
#: app/features/mec/meta_boxes/display_options.php:1324
|
636 |
#: app/features/mec/modules.php:53 app/features/mec/modules.php:86
|
637 |
#: app/features/mec/modules.php:103 app/features/mec/modules.php:138
|
638 |
+
#: app/features/mec/modules.php:154 app/features/mec/modules.php:317
|
639 |
#: app/features/mec/notifications.php:53 app/features/mec/notifications.php:114
|
640 |
#: app/features/mec/notifications.php:170
|
641 |
#: app/features/mec/notifications.php:238
|
658 |
#: app/features/mec/single.php:110 app/features/mec/single.php:124
|
659 |
#: app/features/mec/single.php:162 app/features/mec/styling.php:203
|
660 |
#: app/features/mec/styling.php:220 app/features/mec/styling.php:233
|
661 |
+
#: app/features/organizers.php:272 app/skins/single.php:658
|
662 |
#: app/skins/single/default.php:134 app/skins/single/default.php:346
|
663 |
#: app/skins/single/m1.php:196 app/skins/single/m2.php:129
|
664 |
#: app/skins/single/modern.php:137
|
665 |
msgid "Read More"
|
666 |
msgstr "Číst více"
|
667 |
|
668 |
+
#: app/features/events.php:724
|
669 |
msgid "Repeating"
|
670 |
msgstr "Opakování"
|
671 |
|
672 |
+
#: app/features/events.php:733
|
673 |
msgid "Event Repeating (Recurring events)"
|
674 |
msgstr "Opakování události (opakující se události)"
|
675 |
|
676 |
+
#: app/features/events.php:737 app/features/fes/form.php:346
|
677 |
msgid "Repeats"
|
678 |
msgstr "Opakování"
|
679 |
|
680 |
+
#: app/features/events.php:745 app/features/fes/form.php:348
|
681 |
#: app/features/mec/dashboard.php:402
|
682 |
#: app/skins/default_full_calendar/tpl.php:69
|
683 |
#: app/skins/full_calendar/tpl.php:110
|
684 |
msgid "Daily"
|
685 |
msgstr "Děnně"
|
686 |
|
687 |
+
#: app/features/events.php:752 app/features/fes/form.php:349
|
688 |
msgid "Every Weekday"
|
689 |
msgstr "Každý všední den"
|
690 |
|
691 |
+
#: app/features/events.php:759 app/features/fes/form.php:350
|
692 |
msgid "Every Weekend"
|
693 |
msgstr "Každý víkend"
|
694 |
|
695 |
+
#: app/features/events.php:766 app/features/fes/form.php:351
|
696 |
msgid "Certain Weekdays"
|
697 |
msgstr "Určité pracovní dny"
|
698 |
|
699 |
+
#: app/features/events.php:773 app/features/fes/form.php:352
|
700 |
#: app/skins/default_full_calendar/tpl.php:68
|
701 |
#: app/skins/full_calendar/tpl.php:109
|
702 |
msgid "Weekly"
|
703 |
msgstr "Týdně"
|
704 |
|
705 |
+
#: app/features/events.php:780 app/features/fes/form.php:353
|
706 |
#: app/features/mec/dashboard.php:403
|
707 |
#: app/skins/default_full_calendar/tpl.php:67
|
708 |
#: app/skins/full_calendar/tpl.php:108
|
709 |
msgid "Monthly"
|
710 |
msgstr "Měsíčně"
|
711 |
|
712 |
+
#: app/features/events.php:787 app/features/fes/form.php:354
|
713 |
#: app/features/mec/dashboard.php:404
|
714 |
#: app/skins/default_full_calendar/tpl.php:66
|
715 |
#: app/skins/full_calendar/tpl.php:107
|
716 |
msgid "Yearly"
|
717 |
msgstr "Ročně"
|
718 |
|
719 |
+
#: app/features/events.php:794 app/features/fes/form.php:355
|
720 |
msgid "Custom Days"
|
721 |
msgstr "Vlastní dny"
|
722 |
|
723 |
+
#: app/features/events.php:801 app/features/fes/form.php:356
|
724 |
msgid "Advanced"
|
725 |
msgstr "Pokročilé"
|
726 |
|
727 |
+
#: app/features/events.php:806 app/features/fes/form.php:360
|
728 |
msgid "Repeat Interval"
|
729 |
msgstr "Interval opakování"
|
730 |
|
731 |
+
#: app/features/events.php:808 app/features/fes/form.php:361
|
732 |
msgid "Repeat interval"
|
733 |
msgstr "Interval opakování"
|
734 |
|
735 |
+
#: app/features/events.php:812 app/features/fes/form.php:364
|
736 |
msgid "Week Days"
|
737 |
msgstr "Dny v týdnu"
|
738 |
|
739 |
+
#: app/features/events.php:827 app/features/events.php:1889
|
740 |
+
#: app/features/events.php:1917 app/features/events.php:2097
|
741 |
#: app/features/fes/form.php:376 app/features/ix/import_f_calendar.php:42
|
742 |
#: app/features/ix/import_g_calendar.php:51
|
743 |
#: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
|
744 |
msgid "Start"
|
745 |
msgstr "Začátek"
|
746 |
|
747 |
+
#: app/features/events.php:829 app/features/events.php:1893
|
748 |
+
#: app/features/events.php:1921 app/features/events.php:2101
|
749 |
#: app/features/fes/form.php:377
|
750 |
msgid "End"
|
751 |
msgstr "Konec"
|
752 |
|
753 |
+
#: app/features/events.php:831 app/features/events.php:1198
|
754 |
+
#: app/features/events.php:1309 app/features/events.php:1414
|
755 |
+
#: app/features/events.php:1872 app/features/events.php:2086
|
756 |
+
#: app/features/events.php:2166 app/features/events.php:2299
|
757 |
#: app/features/fes/form.php:378 app/features/fes/form.php:844
|
758 |
msgid "Add"
|
759 |
msgstr "Přidat"
|
760 |
|
761 |
+
#: app/features/events.php:834
|
762 |
msgid "Custom Days Repeating"
|
763 |
msgstr "Opakování vlastních dnů"
|
764 |
|
765 |
+
#: app/features/events.php:835
|
766 |
msgid ""
|
767 |
"Add certain days to event occurrence dates. If you have single day event, "
|
768 |
"start and end date should be the same, If you have multiple day event the "
|
772 |
"datum zahájení a ukončení by mělo být stejné. Pokud máte vícedenní událost, "
|
773 |
"datum zahájení a ukončení musí odpovídat počátečnímu datu."
|
774 |
|
775 |
+
#: app/features/events.php:871 app/features/fes/form.php:404
|
776 |
msgid "First"
|
777 |
msgstr "První"
|
778 |
|
779 |
+
#: app/features/events.php:913 app/features/fes/form.php:446
|
780 |
msgid "Second"
|
781 |
msgstr "Druhá"
|
782 |
|
783 |
+
#: app/features/events.php:955 app/features/fes/form.php:488
|
784 |
msgid "Third"
|
785 |
msgstr "Třetí"
|
786 |
|
787 |
+
#: app/features/events.php:997 app/features/fes/form.php:530
|
788 |
msgid "Fourth"
|
789 |
msgstr "Čtvrtá"
|
790 |
|
791 |
+
#: app/features/events.php:1039 app/features/fes/form.php:572
|
792 |
msgid "Last"
|
793 |
msgstr "Poslední"
|
794 |
|
795 |
+
#: app/features/events.php:1086 app/features/fes/form.php:618
|
796 |
msgid "Ends Repeat"
|
797 |
msgstr "Ukončení opakování"
|
798 |
|
799 |
+
#: app/features/events.php:1098 app/features/fes/form.php:622
|
800 |
msgid "Never"
|
801 |
msgstr "Nikdy"
|
802 |
|
803 |
# Možná Zapnuto
|
804 |
+
#: app/features/events.php:1110 app/features/fes/form.php:627
|
805 |
msgid "On"
|
806 |
msgstr "Na"
|
807 |
|
808 |
+
#: app/features/events.php:1126 app/features/fes/form.php:634
|
809 |
msgid "After"
|
810 |
msgstr "Po"
|
811 |
|
812 |
+
#: app/features/events.php:1130 app/features/events.php:1134
|
813 |
#: app/features/fes/form.php:636 app/features/fes/form.php:639
|
814 |
msgid "Occurrences times"
|
815 |
msgstr "Časy výskytu"
|
816 |
|
817 |
+
#: app/features/events.php:1135 app/features/fes/form.php:640
|
818 |
msgid ""
|
819 |
"The event will finish after certain repeats. For example if you set it to "
|
820 |
"10, the event will finish after 10 repeats."
|
822 |
"Událost bude ukončena po určitých opakováních. Pokud například nastavíte "
|
823 |
"hodnotu 10, událost skončí po 10 opakováních."
|
824 |
|
825 |
+
#: app/features/events.php:1160 app/features/events.php:3503
|
826 |
+
#: app/features/events.php:3545 app/features/fes/form.php:716
|
827 |
#: app/features/ix.php:3373 app/features/ix.php:3414
|
828 |
+
#: app/features/mec/settings.php:652 app/libraries/main.php:5098
|
829 |
#: app/widgets/single.php:103
|
830 |
msgid "Event Cost"
|
831 |
msgstr "Cena události"
|
832 |
|
833 |
+
#: app/features/events.php:1185
|
834 |
msgid "Exceptional Days (Exclude Dates)"
|
835 |
msgstr "Výjimečné dny (vyjma dat)"
|
836 |
|
837 |
+
#: app/features/events.php:1191 app/features/events.php:1201
|
838 |
msgid "Exclude certain days"
|
839 |
msgstr "Vyloučit určité dny"
|
840 |
|
841 |
+
#: app/features/events.php:1196 app/features/events.php:2533
|
842 |
#: app/features/fes.php:223 app/features/mec/booking.php:491
|
843 |
+
#: app/features/profile/profile.php:53 app/libraries/main.php:2186
|
844 |
+
#: app/libraries/main.php:2810 app/modules/booking/steps/tickets.php:22
|
845 |
+
#: app/modules/next-event/details.php:90 app/skins/single.php:638
|
846 |
#: app/skins/single/default.php:83 app/skins/single/default.php:295
|
847 |
#: app/skins/single/m1.php:20 app/skins/single/modern.php:170
|
848 |
msgid "Date"
|
849 |
msgstr "Datum"
|
850 |
|
851 |
+
#: app/features/events.php:1202
|
852 |
msgid ""
|
853 |
"Exclude certain days from event occurrence dates. Please note that you can "
|
854 |
"exclude only single day occurrences and you cannot exclude one day from "
|
858 |
"můžete vyloučit pouze výskyty za jeden den a nelze vyloučit jeden den z "
|
859 |
"vícedenních výskytů."
|
860 |
|
861 |
+
#: app/features/events.php:1256 app/libraries/render.php:471
|
862 |
msgid "Day 1"
|
863 |
msgstr "Den 1"
|
864 |
|
865 |
+
#: app/features/events.php:1282
|
866 |
msgid "Add Day"
|
867 |
msgstr "Přidat den"
|
868 |
|
869 |
+
#: app/features/events.php:1283
|
870 |
msgid ""
|
871 |
"Add new days for schedule. For example if your event is multiple days, you "
|
872 |
"can add a different schedule for each day!"
|
874 |
"Přidat nové dny pro rozvrh. Pokud je například vaše akce vícedenní, můžete "
|
875 |
"pro každý den přidat jiný rozvrh!"
|
876 |
|
877 |
+
#: app/features/events.php:1290
|
878 |
#, php-format
|
879 |
msgid "Day %s"
|
880 |
msgstr "Den %s"
|
881 |
|
882 |
+
#: app/features/events.php:1294 app/features/events.php:1333
|
883 |
+
#: app/features/events.php:1368 app/features/events.php:1400
|
884 |
+
#: app/features/events.php:1429 app/features/events.php:2314
|
885 |
+
#: app/features/events.php:2361 app/features/events.php:3309
|
886 |
+
#: app/features/events.php:3503 app/features/events.php:3545
|
887 |
#: app/features/fes/form.php:235 app/features/ix.php:3373
|
888 |
#: app/features/ix.php:3414 app/features/mec/booking.php:375
|
889 |
#: app/features/mec/booking.php:407 app/features/mec/styling.php:115
|
890 |
msgid "Title"
|
891 |
msgstr "Název"
|
892 |
|
893 |
+
#: app/features/events.php:1303 app/features/events.php:1340
|
894 |
+
#: app/features/events.php:1373 app/features/events.php:1408
|
895 |
+
#: app/features/events.php:1434 app/features/events.php:1903
|
896 |
+
#: app/features/events.php:1929 app/features/events.php:2107
|
897 |
+
#: app/features/events.php:2206 app/features/events.php:2242
|
898 |
+
#: app/features/events.php:2349 app/features/events.php:2391
|
899 |
#: app/features/mec/booking.php:318 app/features/mec/booking.php:347
|
900 |
#: app/features/mec/booking.php:398 app/features/mec/booking.php:430
|
901 |
+
#: app/libraries/main.php:2671 app/libraries/main.php:2701
|
902 |
+
#: app/libraries/main.php:2730 app/libraries/main.php:2760
|
903 |
+
#: app/libraries/main.php:2789 app/libraries/main.php:2818
|
904 |
+
#: app/libraries/main.php:2847 app/libraries/main.php:2876
|
905 |
+
#: app/libraries/main.php:2898 app/libraries/main.php:2929
|
906 |
+
#: app/libraries/main.php:2973 app/libraries/main.php:3017
|
907 |
+
#: app/libraries/main.php:3064 app/libraries/main.php:3103
|
908 |
msgid "Remove"
|
909 |
msgstr "Odstranit"
|
910 |
|
911 |
+
#: app/features/events.php:1310 app/features/events.php:1415
|
912 |
msgid "Add new hourly schedule row"
|
913 |
msgstr "Přidejte nový řádek rozvrhu hodin"
|
914 |
|
915 |
+
#: app/features/events.php:1325 app/features/events.php:1362
|
916 |
+
#: app/features/events.php:1424
|
917 |
msgid "From e.g. 8:15"
|
918 |
msgstr "Od např. 8:15"
|
919 |
|
920 |
+
#: app/features/events.php:1329 app/features/events.php:1365
|
921 |
+
#: app/features/events.php:1426
|
922 |
msgid "To e.g. 8:45"
|
923 |
msgstr "Do např. 8:45"
|
924 |
|
925 |
+
#: app/features/events.php:1337 app/features/events.php:1371
|
926 |
+
#: app/features/events.php:1432 app/features/events.php:1793
|
927 |
+
#: app/features/events.php:2018
|
928 |
msgid "Description"
|
929 |
msgstr "Popis"
|
930 |
|
931 |
+
#: app/features/events.php:1343 app/features/events.php:1376
|
932 |
+
#: app/features/events.php:1437 app/features/fes/form.php:840
|
933 |
+
#: app/features/mec.php:351 app/features/mec/modules.php:52
|
934 |
#: app/features/mec/settings.php:700 app/features/speakers.php:62
|
935 |
+
#: app/libraries/main.php:562 app/libraries/main.php:5073
|
936 |
#: app/modules/speakers/details.php:18
|
937 |
msgid "Speakers"
|
938 |
msgstr "Řečníci"
|
939 |
|
940 |
+
#: app/features/events.php:1396 app/features/events.php:1404
|
941 |
msgid "New Day"
|
942 |
msgstr "Nový den"
|
943 |
|
944 |
+
#: app/features/events.php:1468 app/features/fes/form.php:693
|
945 |
#: app/features/mec/settings.php:646
|
946 |
msgid "Event Links"
|
947 |
msgstr "Odkazy na událost"
|
948 |
|
949 |
+
#: app/features/events.php:1471 app/features/events.php:1477
|
950 |
+
#: app/features/fes/form.php:695 app/libraries/main.php:5096
|
951 |
msgid "Event Link"
|
952 |
msgstr "Odkaz na událost"
|
953 |
|
954 |
+
#: app/features/events.php:1474 app/features/events.php:1490
|
955 |
#: app/features/fes/form.php:696 app/features/fes/form.php:701
|
956 |
msgid "eg. http://yoursite.com/your-event"
|
957 |
msgstr "např. http://yoursite.com/vase-udalost"
|
958 |
|
959 |
+
#: app/features/events.php:1478
|
960 |
msgid ""
|
961 |
"If you fill it, it will be replaced instead of default event page link. "
|
962 |
"Insert full link including http(s):// - Also, if you use advertising URL, "
|
966 |
"Vložte úplný odkaz včetně http (s): // - Pokud používáte reklamní adresu "
|
967 |
"URL, můžete také použít zkracovač URL"
|
968 |
|
969 |
+
#: app/features/events.php:1480
|
970 |
msgid "URL Shortener"
|
971 |
msgstr "Zkracovač URL"
|
972 |
|
973 |
+
#: app/features/events.php:1487 app/features/events.php:1500
|
974 |
+
#: app/features/fes/form.php:700 app/libraries/main.php:5097
|
975 |
+
#: app/skins/single.php:657 app/skins/single/default.php:133
|
976 |
#: app/skins/single/default.php:345 app/skins/single/m1.php:195
|
977 |
#: app/skins/single/m2.php:128 app/skins/single/modern.php:136
|
978 |
#: app/widgets/single.php:107
|
979 |
msgid "More Info"
|
980 |
msgstr "Více info"
|
981 |
|
982 |
+
#: app/features/events.php:1493 app/features/fes/form.php:702
|
983 |
msgid "More Information"
|
984 |
msgstr "Více informací"
|
985 |
|
986 |
+
#: app/features/events.php:1495 app/features/fes/form.php:704
|
987 |
msgid "Current Window"
|
988 |
msgstr "Aktuální okno"
|
989 |
|
990 |
+
#: app/features/events.php:1496 app/features/fes/form.php:705
|
991 |
msgid "New Window"
|
992 |
msgstr "Nové okno"
|
993 |
|
994 |
+
#: app/features/events.php:1501 app/features/fes/form.php:707
|
995 |
msgid ""
|
996 |
"If you fill it, it will be shown in event details page as an optional link. "
|
997 |
"Insert full link including http(s)://"
|
999 |
"Pokud ji vyplníte, zobrazí se jako volitelný odkaz na stránce s podrobnostmi "
|
1000 |
"o události. Vložte celý odkaz včetně http (s): //"
|
1001 |
|
1002 |
+
#: app/features/events.php:1576 app/features/events.php:1591
|
1003 |
msgid "Total booking limits"
|
1004 |
msgstr "Celkové limity rezervace"
|
1005 |
|
1006 |
+
#: app/features/events.php:1588 app/features/events.php:1841
|
1007 |
+
#: app/features/events.php:2056 app/modules/booking/default.php:94
|
1008 |
+
#: app/modules/booking/steps/tickets.php:44
|
1009 |
#: app/skins/available_spot/tpl.php:160
|
1010 |
msgid "Unlimited"
|
1011 |
msgstr "Neomezené"
|
1012 |
|
1013 |
+
#: app/features/events.php:1594
|
1014 |
msgid ""
|
1015 |
"If you want to set a limit to all tickets, uncheck this checkbox and put a "
|
1016 |
"limitation number."
|
1018 |
"Pokud chcete nastavit limit na všechny lístky, zrušte zaškrtnutí tohoto "
|
1019 |
"políčka a zadejte číslo omezení."
|
1020 |
|
1021 |
+
#: app/features/events.php:1596
|
1022 |
msgid "Read About A Booking System"
|
1023 |
msgstr "Přečtěte si o rezervačním systému"
|
1024 |
|
1025 |
+
#: app/features/events.php:1604
|
1026 |
msgid "100"
|
1027 |
msgstr "100"
|
1028 |
|
1029 |
+
#: app/features/events.php:1609
|
1030 |
msgid "Total user booking limits"
|
1031 |
msgstr "Celkové limity rezervace uživatelů"
|
1032 |
|
1033 |
+
#: app/features/events.php:1621 app/features/events.php:2155
|
1034 |
+
#: app/features/events.php:2287 app/features/events.php:2475
|
1035 |
msgid "Inherit from global options"
|
1036 |
msgstr "Zdědí z globálních možností"
|
1037 |
|
1038 |
+
#: app/features/events.php:1624
|
1039 |
msgid "12"
|
1040 |
msgstr "12"
|
1041 |
|
1042 |
+
#: app/features/events.php:1645 app/libraries/book.php:60
|
1043 |
+
#: app/libraries/main.php:5101 app/modules/booking/steps/tickets.php:44
|
1044 |
msgid "Tickets"
|
1045 |
msgstr "Vstupenky"
|
1046 |
|
1047 |
+
#: app/features/events.php:1648
|
1048 |
msgid ""
|
1049 |
"You're translating an event so MEC will use the original event for tickets "
|
1050 |
"and booking. You can only translate the ticket name and description. Please "
|
1054 |
"vstupenek a rezervace. Můžete přeložit pouze název a popis vstupenky. Prosím "
|
1055 |
"definujte určité vstupenky, které jste definovali v původní události."
|
1056 |
|
1057 |
+
#: app/features/events.php:1653
|
1058 |
#, fuzzy
|
1059 |
#| msgid "Ticket"
|
1060 |
msgid "Add Ticket"
|
1061 |
msgstr "Vstupenka"
|
1062 |
|
1063 |
+
#: app/features/events.php:1667 app/features/events.php:1943
|
1064 |
msgid "Ticket Name"
|
1065 |
msgstr "Název vstupenky"
|
1066 |
|
1067 |
+
#: app/features/events.php:1672 app/features/events.php:1947
|
1068 |
+
#: app/features/events.php:3503 app/features/events.php:3545
|
1069 |
#: app/features/ix.php:3373 app/features/ix.php:3414
|
1070 |
msgid "Start Time"
|
1071 |
msgstr "Začátek"
|
1072 |
|
1073 |
+
#: app/features/events.php:1731 app/features/events.php:1977
|
1074 |
+
#: app/features/events.php:3503 app/features/events.php:3545
|
1075 |
#: app/features/ix.php:3373 app/features/ix.php:3414
|
1076 |
msgid "End Time"
|
1077 |
msgstr "Konec"
|
1078 |
|
1079 |
+
#: app/features/events.php:1798 app/features/events.php:1802
|
1080 |
+
#: app/features/events.php:1897 app/features/events.php:1924
|
1081 |
+
#: app/features/events.php:2023 app/features/events.php:2026
|
1082 |
+
#: app/features/events.php:2103 app/features/events.php:2320
|
1083 |
+
#: app/features/events.php:2324 app/features/events.php:2366
|
1084 |
+
#: app/features/events.php:2369 app/features/mec/booking.php:379
|
1085 |
#: app/features/mec/booking.php:382 app/features/mec/booking.php:411
|
1086 |
#: app/features/mec/booking.php:414
|
1087 |
msgid "Price"
|
1088 |
msgstr "Cena"
|
1089 |
|
1090 |
+
#: app/features/events.php:1803 app/features/events.php:2027
|
1091 |
msgid "Insert 0 for free ticket. Only numbers please."
|
1092 |
msgstr "Vložte 0 pro vstupenku zdarma. Prosím pouze čísla."
|
1093 |
|
1094 |
+
#: app/features/events.php:1812 app/features/events.php:1817
|
1095 |
+
#: app/features/events.php:2036 app/features/events.php:2039
|
1096 |
msgid "Price Label"
|
1097 |
msgstr "Cenový štítek"
|
1098 |
|
1099 |
+
#: app/features/events.php:1818 app/features/events.php:2040
|
1100 |
msgid "For showing on website. e.g. $15"
|
1101 |
msgstr "Pro zobrazení na webu. např. 15 $"
|
1102 |
|
1103 |
+
#: app/features/events.php:1828 app/features/events.php:2050
|
1104 |
msgid "Available Tickets"
|
1105 |
msgstr "Dostupné vstupenky"
|
1106 |
|
1107 |
+
#: app/features/events.php:1847 app/features/events.php:2062
|
1108 |
+
#, fuzzy
|
1109 |
+
#| msgid "Maximum Per Ticket"
|
1110 |
+
msgid "Minimum Ticket e.g. 3"
|
1111 |
+
msgstr "Maximum na jednu vstupenku"
|
1112 |
+
|
1113 |
+
#: app/features/events.php:1850 app/features/events.php:2065
|
1114 |
+
#, fuzzy
|
1115 |
+
#| msgid "Maximum Per Ticket"
|
1116 |
+
msgid "MinimumTicket"
|
1117 |
+
msgstr "Maximum na jednu vstupenku"
|
1118 |
+
|
1119 |
+
#: app/features/events.php:1852 app/features/events.php:2067
|
1120 |
+
msgid "Set a number for the minimum ticket reservation"
|
1121 |
+
msgstr ""
|
1122 |
+
|
1123 |
+
#: app/features/events.php:1860 app/features/events.php:2075
|
1124 |
+
msgid "e.g. 0"
|
1125 |
+
msgstr ""
|
1126 |
+
|
1127 |
+
#: app/features/events.php:1862 app/features/events.php:2077
|
1128 |
+
#, fuzzy
|
1129 |
+
#| msgid "Days"
|
1130 |
+
msgid "Day"
|
1131 |
+
msgstr "Dny"
|
1132 |
+
|
1133 |
+
#: app/features/events.php:1863 app/features/events.php:2078
|
1134 |
+
msgid "Hour"
|
1135 |
+
msgstr ""
|
1136 |
+
|
1137 |
+
#: app/features/events.php:1865 app/features/events.php:2080
|
1138 |
+
#, php-format
|
1139 |
+
msgid "Stop selling ticket %s before event start."
|
1140 |
+
msgstr ""
|
1141 |
+
|
1142 |
+
#: app/features/events.php:1870 app/features/events.php:2084
|
1143 |
msgid "Price per Date"
|
1144 |
msgstr "Cena za datum"
|
1145 |
|
1146 |
+
#: app/features/events.php:1901 app/features/events.php:1927
|
1147 |
+
#: app/features/events.php:2105 app/features/labels.php:60
|
1148 |
#: app/features/mec/meta_boxes/display_options.php:871
|
1149 |
#: app/features/mec/meta_boxes/search_form.php:66
|
1150 |
#: app/features/mec/meta_boxes/search_form.php:128
|
1162 |
msgid "Label"
|
1163 |
msgstr "Štítek"
|
1164 |
|
1165 |
+
#: app/features/events.php:2143
|
1166 |
msgid "Fees"
|
1167 |
msgstr "Poplatky"
|
1168 |
|
1169 |
+
#: app/features/events.php:2180 app/features/events.php:2218
|
1170 |
#: app/features/mec/booking.php:298 app/features/mec/booking.php:327
|
1171 |
msgid "Fee Title"
|
1172 |
msgstr "Název poplatku"
|
1173 |
|
1174 |
+
#: app/features/events.php:2186 app/features/events.php:2190
|
1175 |
+
#: app/features/events.php:2223 app/features/events.php:2226
|
1176 |
#: app/features/mec/booking.php:302 app/features/mec/booking.php:305
|
1177 |
#: app/features/mec/booking.php:331 app/features/mec/booking.php:334
|
1178 |
msgid "Amount"
|
1179 |
msgstr "Množství"
|
1180 |
|
1181 |
+
#: app/features/events.php:2191 app/features/events.php:2227
|
1182 |
#: app/features/mec/booking.php:306 app/features/mec/booking.php:335
|
1183 |
msgid ""
|
1184 |
"Fee amount, considered as fixed amount if you set the type to amount "
|
1187 |
"Výše poplatku, je považovaná za pevnou částku, pokud nastavíte typ na částku "
|
1188 |
"odpovídající procentuální hodnotě"
|
1189 |
|
1190 |
+
#: app/features/events.php:2200 app/features/events.php:2236
|
1191 |
#: app/features/mec/booking.php:313 app/features/mec/booking.php:342
|
1192 |
msgid "Percent"
|
1193 |
msgstr "Procent"
|
1194 |
|
1195 |
+
#: app/features/events.php:2201 app/features/events.php:2237
|
1196 |
#: app/features/mec/booking.php:314 app/features/mec/booking.php:343
|
1197 |
msgid "Amount (Per Ticket)"
|
1198 |
msgstr "Částka (za vstupenku)"
|
1199 |
|
1200 |
+
#: app/features/events.php:2202 app/features/events.php:2238
|
1201 |
#: app/features/mec/booking.php:315 app/features/mec/booking.php:344
|
1202 |
msgid "Amount (Per Booking)"
|
1203 |
msgstr "Částka (za rezervaci)"
|
1204 |
|
1205 |
+
#: app/features/events.php:2275 app/features/mec/settings.php:724
|
1206 |
msgid "Ticket Variations / Options"
|
1207 |
msgstr "Varianty vstupenky / možnosti"
|
1208 |
|
1209 |
+
#: app/features/events.php:2325 app/features/events.php:2370
|
1210 |
#: app/features/mec/booking.php:383 app/features/mec/booking.php:415
|
1211 |
msgid "Option Price"
|
1212 |
msgstr "Možnosti ceny"
|
1213 |
|
1214 |
+
#: app/features/events.php:2335 app/features/events.php:2339
|
1215 |
+
#: app/features/events.php:2379 app/features/events.php:2382
|
1216 |
#: app/features/mec/booking.php:389 app/features/mec/booking.php:392
|
1217 |
#: app/features/mec/booking.php:421 app/features/mec/booking.php:424
|
1218 |
msgid "Maximum Per Ticket"
|
1219 |
msgstr "Maximum na jednu vstupenku"
|
1220 |
|
1221 |
+
#: app/features/events.php:2340 app/features/events.php:2383
|
1222 |
#: app/features/mec/booking.php:393 app/features/mec/booking.php:425
|
1223 |
msgid "Maximum Per Ticket. Leave it blank for unlimited."
|
1224 |
msgstr "Maximum na jednu vstupenku. Ponechte to prázdné pro neomezené."
|
1225 |
|
1226 |
+
#: app/features/events.php:2529 app/features/mec/booking.php:487
|
1227 |
+
#: app/libraries/main.php:2693
|
1228 |
msgid "MEC Name"
|
1229 |
msgstr "MEC Jméno"
|
1230 |
|
1231 |
+
#: app/features/events.php:2530 app/features/mec/booking.php:488
|
1232 |
+
#: app/libraries/main.php:2722
|
1233 |
msgid "MEC Email"
|
1234 |
msgstr "MEC Email"
|
1235 |
|
1236 |
+
#: app/features/events.php:2531 app/features/mec/booking.php:489
|
1237 |
+
#: app/libraries/main.php:2663
|
1238 |
msgid "Text"
|
1239 |
msgstr "Text"
|
1240 |
|
1241 |
+
#: app/features/events.php:2534 app/features/mec/booking.php:492
|
1242 |
#: app/features/organizers.php:103 app/features/organizers.php:148
|
1243 |
#: app/features/speakers.php:118 app/features/speakers.php:183
|
1244 |
+
#: app/features/speakers.php:256 app/libraries/main.php:2839
|
1245 |
msgid "Tel"
|
1246 |
msgstr "Tel"
|
1247 |
|
1248 |
+
#: app/features/events.php:2535 app/features/mec/booking.php:493
|
1249 |
+
#: app/libraries/main.php:2781
|
1250 |
msgid "File"
|
1251 |
msgstr "Soubor"
|
1252 |
|
1253 |
+
#: app/features/events.php:2536 app/features/mec/booking.php:494
|
1254 |
+
#: app/libraries/main.php:2868
|
1255 |
msgid "Textarea"
|
1256 |
msgstr "Plocha textu"
|
1257 |
|
1258 |
+
#: app/features/events.php:2537 app/features/mec/booking.php:495
|
1259 |
+
#: app/libraries/main.php:2921
|
1260 |
msgid "Checkboxes"
|
1261 |
msgstr "Zatržítko"
|
1262 |
|
1263 |
+
#: app/features/events.php:2538 app/features/mec/booking.php:496
|
1264 |
+
#: app/libraries/main.php:2965
|
1265 |
msgid "Radio Buttons"
|
1266 |
msgstr "Přepínače"
|
1267 |
|
1268 |
+
#: app/features/events.php:2539 app/features/mec/booking.php:497
|
1269 |
#: app/features/mec/meta_boxes/search_form.php:34
|
1270 |
#: app/features/mec/meta_boxes/search_form.php:41
|
1271 |
#: app/features/mec/meta_boxes/search_form.php:48
|
1341 |
#: app/features/mec/meta_boxes/search_form.php:696
|
1342 |
#: app/features/mec/meta_boxes/search_form.php:703
|
1343 |
#: app/features/mec/meta_boxes/search_form.php:710
|
1344 |
+
#: app/features/mec/meta_boxes/search_form.php:717 app/libraries/main.php:3009
|
1345 |
msgid "Dropdown"
|
1346 |
msgstr "Rozbalovací"
|
1347 |
|
1348 |
+
#: app/features/events.php:2540 app/features/mec/booking.php:498
|
1349 |
+
#: app/libraries/main.php:3056
|
1350 |
msgid "Agreement"
|
1351 |
msgstr "Smlouva"
|
1352 |
|
1353 |
+
#: app/features/events.php:2541 app/features/mec/booking.php:499
|
1354 |
+
#: app/libraries/main.php:2897
|
1355 |
msgid "Paragraph"
|
1356 |
msgstr "Paragraf"
|
1357 |
|
1358 |
+
#: app/features/events.php:3211 app/features/events.php:3229
|
1359 |
+
#: app/features/events.php:3247 app/features/events.php:3265
|
1360 |
#, php-format
|
1361 |
msgid "Show all %s"
|
1362 |
msgstr "Ukázat všechny %s"
|
1363 |
|
1364 |
+
#: app/features/events.php:3211
|
1365 |
msgid "labels"
|
1366 |
msgstr "štítky"
|
1367 |
|
1368 |
+
#: app/features/events.php:3229
|
1369 |
msgid "locations"
|
1370 |
msgstr "umístění"
|
1371 |
|
1372 |
+
#: app/features/events.php:3247
|
1373 |
msgid "organizers"
|
1374 |
msgstr "organizátoři"
|
1375 |
|
1376 |
+
#: app/features/events.php:3281 app/features/events.php:3641
|
1377 |
#, fuzzy
|
1378 |
#| msgid "Attendees Limit"
|
1379 |
msgid "Attendees List"
|
1380 |
msgstr "Limit účastníků"
|
1381 |
|
1382 |
+
#: app/features/events.php:3311 app/features/events.php:3503
|
1383 |
+
#: app/features/events.php:3545 app/features/ix.php:3373
|
1384 |
#: app/features/ix.php:3414 app/features/locations.php:58
|
1385 |
#: app/features/locations.php:230 app/features/locations.php:287
|
1386 |
#: app/features/locations.php:289 app/features/locations.php:298
|
1397 |
#: app/features/mec/meta_boxes/search_form.php:582
|
1398 |
#: app/features/mec/meta_boxes/search_form.php:679
|
1399 |
#: app/features/mec/settings.php:802 app/features/mec/single.php:212
|
1400 |
+
#: app/features/search.php:71 app/libraries/main.php:2180
|
1401 |
+
#: app/libraries/main.php:5070 app/libraries/skins.php:837
|
1402 |
+
#: app/skins/single.php:487 app/skins/single.php:908
|
1403 |
#: app/skins/single/default.php:169 app/skins/single/default.php:381
|
1404 |
#: app/skins/single/m1.php:159 app/skins/single/m2.php:91
|
1405 |
#: app/skins/single/modern.php:98
|
1406 |
msgid "Location"
|
1407 |
msgstr "Umístění"
|
1408 |
|
1409 |
+
#: app/features/events.php:3316
|
1410 |
msgid "Repeat"
|
1411 |
msgstr "Opakovat"
|
1412 |
|
1413 |
+
#: app/features/events.php:3317
|
1414 |
msgid "Author"
|
1415 |
msgstr "Autor"
|
1416 |
|
1417 |
+
#: app/features/events.php:3438 app/features/events.php:3439
|
1418 |
msgid "iCal Export"
|
1419 |
msgstr "iCal Export"
|
1420 |
|
1421 |
+
#: app/features/events.php:3441 app/features/events.php:3442
|
1422 |
msgid "CSV Export"
|
1423 |
msgstr "CSV Export"
|
1424 |
|
1425 |
+
#: app/features/events.php:3444 app/features/events.php:3445
|
1426 |
msgid "MS Excel Export"
|
1427 |
msgstr "MS Excel Export"
|
1428 |
|
1429 |
+
#: app/features/events.php:3447 app/features/events.php:3448
|
1430 |
msgid "XML Export"
|
1431 |
msgstr "XML Export"
|
1432 |
|
1433 |
+
#: app/features/events.php:3450 app/features/events.php:3451
|
1434 |
msgid "JSON Export"
|
1435 |
msgstr "JSON Export"
|
1436 |
|
1437 |
+
#: app/features/events.php:3453 app/features/events.php:3454
|
1438 |
+
#: app/features/events.php:3636
|
1439 |
msgid "Duplicate"
|
1440 |
msgstr "Duplikát"
|
1441 |
|
1442 |
+
#: app/features/events.php:3503 app/features/events.php:3545
|
1443 |
#: app/features/fes.php:223 app/features/ix.php:3373 app/features/ix.php:3414
|
1444 |
#: app/features/labels.php:177 app/features/locations.php:229
|
1445 |
#: app/features/organizers.php:203 app/features/speakers.php:253
|
1446 |
msgid "ID"
|
1447 |
msgstr "ID"
|
1448 |
|
1449 |
+
#: app/features/events.php:3503 app/features/events.php:3545
|
1450 |
#: app/features/ix.php:3373 app/features/ix.php:3414
|
1451 |
msgid "Link"
|
1452 |
msgstr "Odkaz"
|
1453 |
|
1454 |
+
#: app/features/events.php:3503 app/features/events.php:3545
|
1455 |
#, php-format
|
1456 |
msgid "%s Tel"
|
1457 |
msgstr "%s Tel"
|
1458 |
|
1459 |
+
#: app/features/events.php:3503 app/features/events.php:3545
|
1460 |
#, php-format
|
1461 |
msgid "%s Email"
|
1462 |
msgstr "%s Email"
|
1463 |
|
1464 |
+
#: app/features/events.php:3639 app/features/profile/profile.php:59
|
1465 |
+
#: app/libraries/main.php:2201
|
1466 |
msgid "Attendees"
|
1467 |
msgstr "Účastníci"
|
1468 |
|
1469 |
+
#: app/features/events.php:3652 app/libraries/notifications.php:837
|
1470 |
#, php-format
|
1471 |
msgid "%s to %s"
|
1472 |
msgstr ""
|
1473 |
|
1474 |
+
#: app/features/events.php:3715 app/features/events.php:3947
|
1475 |
#: app/features/fes.php:223 app/features/profile/profile.php:186
|
1476 |
+
#: app/libraries/main.php:2215 app/libraries/main.php:5100
|
1477 |
msgid "Ticket"
|
1478 |
msgstr "Vstupenka"
|
1479 |
|
1480 |
+
#: app/features/events.php:3718 app/features/events.php:3950
|
1481 |
#: app/features/profile/profile.php:189
|
1482 |
msgid "Variations"
|
1483 |
msgstr "Variace"
|
1484 |
|
1485 |
+
#: app/features/events.php:3729 app/features/events.php:3963
|
1486 |
#: app/features/fes.php:303
|
1487 |
msgid "Unknown"
|
1488 |
msgstr "Neznámý"
|
1489 |
|
1490 |
+
#: app/features/events.php:3758 app/features/events.php:3992
|
1491 |
#, fuzzy
|
1492 |
#| msgid "Attendees Form"
|
1493 |
msgid "No Attendees Found!"
|
1494 |
msgstr "Formulář účastníků"
|
1495 |
|
1496 |
+
#: app/features/events.php:3761
|
1497 |
+
#, fuzzy
|
1498 |
+
#| msgid "Organizer Email"
|
1499 |
+
msgid "Send Email"
|
1500 |
+
msgstr "Organizátor Email"
|
1501 |
+
|
1502 |
+
#: app/features/events.php:3764
|
1503 |
+
#, fuzzy
|
1504 |
+
#| msgid "%s Email"
|
1505 |
+
msgid "Mass Email"
|
1506 |
+
msgstr "%s Email"
|
1507 |
+
|
1508 |
+
#: app/features/events.php:3765
|
1509 |
+
#, php-format
|
1510 |
+
msgid "You are sending email to %s attendees"
|
1511 |
+
msgstr ""
|
1512 |
+
|
1513 |
+
#: app/features/events.php:3766 app/features/mec/notifications.php:44
|
1514 |
+
#: app/features/mec/notifications.php:105
|
1515 |
+
#: app/features/mec/notifications.php:161
|
1516 |
+
#: app/features/mec/notifications.php:229
|
1517 |
+
#: app/features/mec/notifications.php:299
|
1518 |
+
#: app/features/mec/notifications.php:364
|
1519 |
+
#: app/features/mec/notifications.php:439
|
1520 |
+
#: app/features/mec/notifications.php:487
|
1521 |
+
msgid "Email Subject"
|
1522 |
+
msgstr "Předmět emailové zprávy"
|
1523 |
+
|
1524 |
+
#: app/features/events.php:3768 app/features/mec/notifications.php:66
|
1525 |
+
#: app/features/mec/notifications.php:123
|
1526 |
+
#: app/features/mec/notifications.php:183
|
1527 |
+
#: app/features/mec/notifications.php:259
|
1528 |
+
#: app/features/mec/notifications.php:321
|
1529 |
+
#: app/features/mec/notifications.php:393
|
1530 |
+
#: app/features/mec/notifications.php:457
|
1531 |
+
#: app/features/mec/notifications.php:505
|
1532 |
+
msgid "You can use following placeholders"
|
1533 |
+
msgstr "Můžete použít následující zástupné symboly"
|
1534 |
+
|
1535 |
+
#: app/features/events.php:3770
|
1536 |
+
#, fuzzy
|
1537 |
+
#| msgid "Speakers Names"
|
1538 |
+
msgid "Attendee Name"
|
1539 |
+
msgstr "Jméno řečníka"
|
1540 |
+
|
1541 |
+
#: app/features/events.php:3774
|
1542 |
+
msgid "Loading..."
|
1543 |
+
msgstr ""
|
1544 |
+
|
1545 |
+
#: app/features/events.php:3775
|
1546 |
+
msgid "Emails successfully sent."
|
1547 |
+
msgstr ""
|
1548 |
+
|
1549 |
+
#: app/features/events.php:3776
|
1550 |
+
msgid "No user selected!"
|
1551 |
+
msgstr ""
|
1552 |
+
|
1553 |
+
#: app/features/events.php:3777
|
1554 |
+
#, fuzzy
|
1555 |
+
#| msgid "Your options field can not be empty!"
|
1556 |
+
msgid "Email subject cannot be empty!"
|
1557 |
+
msgstr "Pole možností nemůže být prázdné!"
|
1558 |
+
|
1559 |
+
#: app/features/events.php:3778
|
1560 |
+
#, fuzzy
|
1561 |
+
#| msgid "Your options field can not be empty!"
|
1562 |
+
msgid "Email content cannot be empty!"
|
1563 |
+
msgstr "Pole možností nemůže být prázdné!"
|
1564 |
+
|
1565 |
+
#: app/features/events.php:3779
|
1566 |
+
msgid "There was an error please try again!"
|
1567 |
+
msgstr ""
|
1568 |
+
|
1569 |
#: app/features/fes.php:87
|
1570 |
#, php-format
|
1571 |
msgid "Please %s/%s in order to submit new events."
|
1597 |
msgid "The event removed!"
|
1598 |
msgstr "Událost byla odebrána!"
|
1599 |
|
1600 |
+
#: app/features/fes.php:223 app/libraries/main.php:2192
|
1601 |
msgid "Transaction ID"
|
1602 |
msgstr "ID transakce"
|
1603 |
|
1619 |
msgid "Verification"
|
1620 |
msgstr "Ověření"
|
1621 |
|
1622 |
+
#: app/features/fes.php:363
|
1623 |
msgid "The image is uploaded!"
|
1624 |
msgstr "Obrázek je nahraný!"
|
1625 |
|
1626 |
+
#: app/features/fes.php:389
|
1627 |
msgid "Captcha is invalid! Please try again."
|
1628 |
msgstr "Captcha je neplatná! Prosím zkuste to znovu."
|
1629 |
|
1630 |
+
#: app/features/fes.php:417
|
1631 |
msgid "Please fill event title field!"
|
1632 |
msgstr "Vyplňte prosím pole názvu události!"
|
1633 |
|
1634 |
+
#: app/features/fes.php:1041
|
1635 |
msgid "The event submitted. It will publish as soon as possible."
|
1636 |
msgstr "Událost byla odeslána. Zveřejní se co nejdříve."
|
1637 |
|
1638 |
+
#: app/features/fes.php:1042
|
1639 |
msgid "The event published."
|
1640 |
msgstr "Událost byla publikována."
|
1641 |
|
1723 |
msgstr "Odebrat obrázek"
|
1724 |
|
1725 |
#: app/features/fes/form.php:772 app/features/labels.php:61
|
1726 |
+
#: app/features/labels.php:221 app/features/mec.php:344
|
1727 |
+
#: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:5067
|
1728 |
+
#: app/skins/single.php:686 app/skins/single/default.php:148
|
1729 |
#: app/skins/single/default.php:360 app/skins/single/m1.php:68
|
1730 |
#: app/skins/single/modern.php:218
|
1731 |
msgid "Labels"
|
1732 |
msgstr "Štítky"
|
1733 |
|
1734 |
+
#: app/features/fes/form.php:818 app/features/mec.php:342
|
1735 |
#: app/features/mec/meta_boxes/filter.php:147
|
1736 |
msgid "Tags"
|
1737 |
msgstr "Tagy"
|
1919 |
|
1920 |
#: app/features/ix/export.php:16 app/features/ix/export_g_calendar.php:20
|
1921 |
#: app/features/ix/import.php:16 app/features/ix/import_f_calendar.php:16
|
1922 |
+
#: app/features/ix/import_f_calendar.php:94
|
1923 |
#: app/features/ix/import_g_calendar.php:16
|
1924 |
#: app/features/ix/import_g_calendar.php:103
|
1925 |
#: app/features/ix/import_meetup.php:16 app/features/ix/import_meetup.php:85
|
2056 |
msgstr "Přidat do Google kalendáře"
|
2057 |
|
2058 |
#: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:629
|
2059 |
+
#: app/features/mec/modules.php:397 app/features/mec/notifications.php:616
|
2060 |
#: app/features/mec/settings.php:971 app/features/mec/single.php:269
|
2061 |
msgid "Checking ..."
|
2062 |
msgstr "Ověřování ..."
|
2186 |
msgid "Import Locations"
|
2187 |
msgstr "Umístění importu"
|
2188 |
|
2189 |
+
#: app/features/ix/import_f_calendar.php:82
|
2190 |
+
#, fuzzy
|
2191 |
+
#| msgid "Facebook Page Link"
|
2192 |
+
msgid "Import Facebook Link as Event Link"
|
2193 |
+
msgstr "Odkaz na stránku Facebook"
|
2194 |
+
|
2195 |
+
#: app/features/ix/import_f_calendar.php:88
|
2196 |
+
msgid "Import Facebook Link as More Info Link"
|
2197 |
+
msgstr ""
|
2198 |
+
|
2199 |
+
#: app/features/ix/import_f_calendar.php:104
|
2200 |
#, php-format
|
2201 |
msgid "%s events successfully imported to your website from Facebook Calendar."
|
2202 |
msgstr "% s události byly úspěšně importovány na váš web z kalendáře Facebook."
|
2486 |
#: app/skins/agenda/render.php:39 app/skins/available_spot/tpl.php:39
|
2487 |
#: app/skins/carousel/render.php:45 app/skins/countdown/tpl.php:28
|
2488 |
#: app/skins/cover/tpl.php:29 app/skins/daily_view/render.php:25
|
2489 |
+
#: app/skins/grid/render.php:52 app/skins/list/render.php:41
|
2490 |
#: app/skins/masonry/render.php:29 app/skins/monthly_view/calendar.php:86
|
2491 |
#: app/skins/monthly_view/calendar_clean.php:86
|
2492 |
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:46
|
2493 |
#: app/skins/tile/render.php:35 app/skins/timeline/render.php:44
|
2494 |
+
#: app/skins/timetable/render.php:35 app/skins/timetable/render.php:144
|
2495 |
#: app/skins/weekly_view/render.php:33 app/skins/yearly_view/render.php:48
|
2496 |
msgid "Featured"
|
2497 |
msgstr "Ztvárněná"
|
2498 |
|
2499 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2500 |
+
#: app/libraries/main.php:5316 app/skins/agenda/render.php:43
|
2501 |
#: app/skins/available_spot/tpl.php:43 app/skins/carousel/render.php:46
|
2502 |
#: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:33
|
2503 |
+
#: app/skins/daily_view/render.php:29 app/skins/grid/render.php:53
|
2504 |
#: app/skins/list/render.php:45 app/skins/masonry/render.php:30
|
2505 |
#: app/skins/monthly_view/calendar.php:90
|
2506 |
#: app/skins/monthly_view/calendar_clean.php:90
|
2507 |
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:47
|
2508 |
#: app/skins/tile/render.php:36 app/skins/timeline/render.php:48
|
2509 |
+
#: app/skins/timetable/render.php:39 app/skins/timetable/render.php:145
|
2510 |
#: app/skins/weekly_view/render.php:37 app/skins/yearly_view/render.php:52
|
2511 |
msgid "Canceled"
|
2512 |
msgstr "Zrušená"
|
2532 |
msgid "Event %s"
|
2533 |
msgstr "Událost %s"
|
2534 |
|
2535 |
+
#: app/features/locations.php:59 app/features/mec.php:345
|
2536 |
#: app/features/mec/dashboard.php:269 app/features/mec/meta_boxes/filter.php:96
|
2537 |
+
#: app/libraries/main.php:5069
|
2538 |
msgid "Locations"
|
2539 |
msgstr "Umístění"
|
2540 |
|
2644 |
msgid "Don't show map in single event page"
|
2645 |
msgstr "Nezobrazovat mapu na jednostránkové události"
|
2646 |
|
2647 |
+
#: app/features/locations.php:356 app/libraries/main.php:5103
|
2648 |
msgid "Other Locations"
|
2649 |
msgstr "Další místa"
|
2650 |
|
2657 |
msgid "<strong>"
|
2658 |
msgstr "<strong>"
|
2659 |
|
2660 |
+
#: app/features/mec.php:168
|
2661 |
msgid ""
|
2662 |
"Activation faild. Please check your purchase code or license type."
|
2663 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
2666 |
"<br> <b> Poznámka: Váš nákupní kód by se měl shodovat s vaším typem licence. "
|
2667 |
"</b>"
|
2668 |
|
2669 |
+
#: app/features/mec.php:168
|
2670 |
msgid "Troubleshooting"
|
2671 |
msgstr "Odstraňování problémů"
|
2672 |
|
2673 |
+
#: app/features/mec.php:219
|
2674 |
msgid ""
|
2675 |
"Your options is not in JSON format. Please insert correct options in this "
|
2676 |
"field and try again."
|
2678 |
"Vaše možnosti nejsou ve formátu JSON. Do tohoto pole vložte správné možnosti "
|
2679 |
"a zkuste to znovu."
|
2680 |
|
2681 |
+
#: app/features/mec.php:226
|
2682 |
msgid "Your options field can not be empty!"
|
2683 |
msgstr "Pole možností nemůže být prázdné!"
|
2684 |
|
2685 |
+
#: app/features/mec.php:232
|
2686 |
msgid "Your options imported successfuly."
|
2687 |
msgstr "Vaše možnosti byly úspěšně importovány."
|
2688 |
|
2689 |
+
#: app/features/mec.php:325
|
2690 |
msgid "MEC - Support"
|
2691 |
msgstr "MEC - podpora"
|
2692 |
|
2693 |
+
#: app/features/mec.php:325 app/features/mec/support-page.php:9
|
2694 |
#: app/features/mec/support.php:80 app/features/mec/support.php:93
|
2695 |
msgid "Support"
|
2696 |
msgstr "Podpora"
|
2697 |
|
2698 |
+
#: app/features/mec.php:346 app/features/mec/dashboard.php:276
|
2699 |
#: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
|
2700 |
+
#: app/libraries/main.php:5071
|
2701 |
msgid "Organizers"
|
2702 |
msgstr "Organizátoři"
|
2703 |
|
2704 |
+
#: app/features/mec.php:354 app/features/mec.php:374
|
2705 |
#: app/features/mec/dashboard.php:262
|
2706 |
msgid "Shortcodes"
|
2707 |
msgstr "Zkrácené kódy"
|
2708 |
|
2709 |
+
#: app/features/mec.php:355
|
2710 |
msgid "MEC - Settings"
|
2711 |
msgstr "MEC - Nastavení"
|
2712 |
|
2713 |
+
#: app/features/mec.php:356
|
2714 |
msgid "MEC - Addons"
|
2715 |
msgstr "MEC - doplňky"
|
2716 |
|
2717 |
+
#: app/features/mec.php:356 app/features/mec/addons.php:22
|
2718 |
msgid "Addons"
|
2719 |
msgstr "Doplňky"
|
2720 |
|
2721 |
+
#: app/features/mec.php:376
|
2722 |
msgid "Add Shortcode"
|
2723 |
msgstr "Přidat zkrácený kód"
|
2724 |
|
2725 |
+
#: app/features/mec.php:377
|
2726 |
msgid "Add New Shortcode"
|
2727 |
msgstr "Přidat nový zkrácený kód"
|
2728 |
|
2729 |
+
#: app/features/mec.php:378
|
2730 |
msgid "No shortcodes found!"
|
2731 |
msgstr "Nebyly nalezeny žádné zkrácené kódy!"
|
2732 |
|
2733 |
+
#: app/features/mec.php:379
|
2734 |
msgid "All Shortcodes"
|
2735 |
msgstr "Všechny zkrácené kódy"
|
2736 |
|
2737 |
+
#: app/features/mec.php:380
|
2738 |
msgid "Edit shortcodes"
|
2739 |
msgstr "Editace zkrácených kódů"
|
2740 |
|
2741 |
+
#: app/features/mec.php:381
|
2742 |
msgid "No shortcodes found in Trash!"
|
2743 |
msgstr "V koši nebyly nalezeny žádné zkrácené kódy!"
|
2744 |
|
2745 |
+
#: app/features/mec.php:434
|
2746 |
msgid "Display Options"
|
2747 |
msgstr "Zobrazit možnosti"
|
2748 |
|
2749 |
+
#: app/features/mec.php:435
|
2750 |
msgid "Filter Options"
|
2751 |
msgstr "Filtrovat možnosti"
|
2752 |
|
2753 |
+
#: app/features/mec.php:437
|
2754 |
msgid "Search Form"
|
2755 |
msgstr "Vyhledávací formulář"
|
2756 |
|
2757 |
+
#: app/features/mec.php:789
|
2758 |
msgid "Display content's images as Popup"
|
2759 |
msgstr "Zobrazit obrázky obsahu jako vyskakovací okno"
|
2760 |
|
2761 |
+
#: app/features/mec.php:802
|
2762 |
msgid "Single Event Display Method"
|
2763 |
msgstr "Metoda zobrazení jedné události"
|
2764 |
|
2765 |
+
#: app/features/mec.php:807
|
2766 |
msgid "Separate Window"
|
2767 |
msgstr "Samostatné okno"
|
2768 |
|
2769 |
+
#: app/features/mec.php:808
|
2770 |
msgid "Modal 1"
|
2771 |
msgstr "Modal 1"
|
2772 |
|
2802 |
#: app/features/mec/booking.php:660 app/features/mec/messages.php:15
|
2803 |
#: app/features/mec/messages.php:51 app/features/mec/messages.php:60
|
2804 |
#: app/features/mec/messages.php:94 app/features/mec/messages.php:103
|
2805 |
+
#: app/features/mec/modules.php:25 app/features/mec/modules.php:362
|
2806 |
+
#: app/features/mec/modules.php:372 app/features/mec/modules.php:414
|
2807 |
+
#: app/features/mec/modules.php:428 app/features/mec/notifications.php:14
|
2808 |
#: app/features/mec/notifications.php:525
|
2809 |
#: app/features/mec/notifications.php:537
|
2810 |
#: app/features/mec/notifications.php:633
|
2835 |
"přidá „platební brána“ a nová položka nabídky na řídícím panelu"
|
2836 |
|
2837 |
#: app/features/mec/booking.php:102 app/features/mec/booking.php:107
|
2838 |
+
#: app/features/mec/modules.php:311 app/features/mec/modules.php:316
|
2839 |
msgid "Date Format"
|
2840 |
msgstr "Formát data"
|
2841 |
|
3029 |
"údaje pro povolené brány pro události a přijímat platby přímo!"
|
3030 |
|
3031 |
#: app/features/mec/booking.php:624 app/features/mec/messages.php:78
|
3032 |
+
#: app/features/mec/modules.php:392 app/features/mec/notifications.php:611
|
3033 |
#: app/features/mec/settings.php:966 app/features/mec/single.php:264
|
3034 |
#: app/features/mec/styles.php:60 app/features/mec/styling.php:296
|
3035 |
msgid "Saved"
|
3036 |
msgstr "Uloženo"
|
3037 |
|
3038 |
#: app/features/mec/booking.php:625 app/features/mec/messages.php:79
|
3039 |
+
#: app/features/mec/modules.php:393 app/features/mec/notifications.php:612
|
3040 |
#: app/features/mec/settings.php:967 app/features/mec/single.php:265
|
3041 |
#: app/features/mec/styles.php:61 app/features/mec/styling.php:297
|
3042 |
msgid "Settings Saved!"
|
3043 |
msgstr "Nastavení uložena!"
|
3044 |
|
3045 |
#: app/features/mec/booking.php:627 app/features/mec/booking.php:649
|
3046 |
+
#: app/features/mec/modules.php:395 app/features/mec/modules.php:417
|
3047 |
#: app/features/mec/notifications.php:614
|
3048 |
#: app/features/mec/notifications.php:636 app/features/mec/settings.php:969
|
3049 |
#: app/features/mec/settings.php:991 app/features/mec/single.php:267
|
3050 |
+
#: app/features/mec/single.php:289 app/libraries/main.php:5315
|
3051 |
msgid "Verified"
|
3052 |
msgstr "Ověřeno"
|
3053 |
|
3054 |
+
#: app/features/mec/booking.php:651 app/features/mec/modules.php:419
|
3055 |
#: app/features/mec/notifications.php:638 app/features/mec/settings.php:993
|
3056 |
#: app/features/mec/single.php:291
|
3057 |
msgid "Please Refresh Page"
|
3601 |
|
3602 |
#: app/features/mec/meta_boxes/display_options.php:447
|
3603 |
#: app/features/mec/meta_boxes/display_options.php:468
|
3604 |
+
#: app/libraries/main.php:330 app/libraries/main.php:1701
|
3605 |
+
#: app/libraries/main.php:1726
|
3606 |
msgid "List View"
|
3607 |
msgstr "Zobrazení seznamu"
|
3608 |
|
3609 |
#: app/features/mec/meta_boxes/display_options.php:448
|
3610 |
#: app/features/mec/meta_boxes/display_options.php:478
|
3611 |
+
#: app/libraries/main.php:334 app/libraries/main.php:1695
|
3612 |
+
#: app/libraries/main.php:1720
|
3613 |
msgid "Yearly View"
|
3614 |
msgstr "Roční zobrazení"
|
3615 |
|
3620 |
|
3621 |
#: app/features/mec/meta_boxes/display_options.php:450
|
3622 |
#: app/features/mec/meta_boxes/display_options.php:510
|
3623 |
+
#: app/libraries/main.php:337 app/libraries/main.php:1697
|
3624 |
+
#: app/libraries/main.php:1722
|
3625 |
msgid "Weekly View"
|
3626 |
msgstr "Týdenní zobrazení"
|
3627 |
|
3628 |
#: app/features/mec/meta_boxes/display_options.php:451
|
3629 |
#: app/features/mec/meta_boxes/display_options.php:520
|
3630 |
+
#: app/libraries/main.php:336 app/libraries/main.php:1698
|
3631 |
+
#: app/libraries/main.php:1723
|
3632 |
msgid "Daily View"
|
3633 |
msgstr "Denní zobrazení"
|
3634 |
|
4047 |
#: app/features/mec/meta_boxes/search_form.php:693
|
4048 |
#: app/features/mec/settings.php:815 app/features/mec/single.php:217
|
4049 |
#: app/features/search.php:79 app/features/speakers.php:61
|
4050 |
+
#: app/features/speakers.php:254 app/libraries/main.php:5074
|
4051 |
#: app/libraries/skins.php:889
|
4052 |
msgid "Speaker"
|
4053 |
msgstr "Řečník"
|
4273 |
msgid "Show social network module"
|
4274 |
msgstr "Zobrazit modul sociální sítě"
|
4275 |
|
4276 |
+
#: app/features/mec/modules.php:293 app/libraries/main.php:569
|
4277 |
+
#: app/modules/next-event/details.php:83
|
4278 |
msgid "Next Event"
|
4279 |
msgstr "Další událost"
|
4280 |
|
4281 |
+
#: app/features/mec/modules.php:297
|
4282 |
msgid "Show next event module on event page"
|
4283 |
msgstr "Zobrazit další modul události na stránce události"
|
4284 |
|
4285 |
+
#: app/features/mec/modules.php:302
|
4286 |
msgid "Method"
|
4287 |
msgstr "Metoda"
|
4288 |
|
4289 |
+
#: app/features/mec/modules.php:305
|
4290 |
msgid "Next Occurrence of Current Event"
|
4291 |
msgstr "Další výskyt aktuální události"
|
4292 |
|
4293 |
+
#: app/features/mec/modules.php:306
|
4294 |
msgid "Next Occurrence of Other Events"
|
4295 |
msgstr "Další výskyt dalších událostí"
|
4296 |
|
4297 |
+
#: app/features/mec/modules.php:317 app/features/mec/single.php:42
|
4298 |
msgid "Default is M d Y"
|
4299 |
msgstr "Výchozí je M d Y"
|
4300 |
|
4301 |
+
#: app/features/mec/modules.php:333
|
4302 |
msgid "Enable BuddyPress Integration"
|
4303 |
msgstr "Povolit integraci BuddyPress"
|
4304 |
|
4305 |
+
#: app/features/mec/modules.php:340
|
4306 |
msgid "Show \"Attendees Module\" in event details page"
|
4307 |
msgstr "Zobrazit \"Účastnický modul\" na stránce s podrobnostmi o události"
|
4308 |
|
4309 |
+
#: app/features/mec/modules.php:344
|
4310 |
msgid "Attendees Limit"
|
4311 |
msgstr "Limit účastníků"
|
4312 |
|
4313 |
+
#: app/features/mec/modules.php:352
|
4314 |
msgid "Add booking activity to user profile"
|
4315 |
msgstr "Přidejte do uživatelského profilu rezervační aktivitu"
|
4316 |
|
4322 |
msgid "It sends to attendee after booking for notifying him/her."
|
4323 |
msgstr "Po rezervaci odešle účastníkovi informační upozornění."
|
4324 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4325 |
#: app/features/mec/notifications.php:48 app/features/mec/notifications.php:52
|
4326 |
#: app/features/mec/notifications.php:109
|
4327 |
#: app/features/mec/notifications.php:113
|
4367 |
msgid "Email Content"
|
4368 |
msgstr "Obsah zprávy"
|
4369 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4370 |
#: app/features/mec/notifications.php:68 app/features/mec/notifications.php:125
|
4371 |
#: app/features/mec/notifications.php:185
|
4372 |
#: app/features/mec/notifications.php:261
|
4652 |
msgstr "Zašle správci informaci o přijetí nové rezervace."
|
4653 |
|
4654 |
#: app/features/mec/notifications.php:351 app/libraries/main.php:578
|
4655 |
+
#: app/libraries/notifications.php:548
|
4656 |
msgid "Booking Reminder"
|
4657 |
msgstr "Připomenutí rezervace"
|
4658 |
|
4850 |
msgstr "Můžete povolit nebo zakázat skripty schématu"
|
4851 |
|
4852 |
#: app/features/mec/settings.php:177 app/features/mec/settings.php:187
|
4853 |
+
#: app/libraries/main.php:5078
|
4854 |
msgid "Weekdays"
|
4855 |
msgstr "Pracovní dny"
|
4856 |
|
5999 |
msgid "eg. https://webnus.net"
|
6000 |
msgstr "např. https://webnus.net"
|
6001 |
|
6002 |
+
#: app/features/organizers.php:311 app/libraries/main.php:5102
|
6003 |
+
#: app/skins/single.php:846
|
6004 |
msgid "Other Organizers"
|
6005 |
msgstr "Další organizátoři"
|
6006 |
|
6015 |
msgid "Please %s/%s in order to see your bookings / profile."
|
6016 |
msgstr "Prosím %s/%s za účelem zobrazení vašich rezervací / profilu."
|
6017 |
|
6018 |
+
#: app/features/profile/profile.php:18 app/libraries/main.php:2086
|
6019 |
msgid "Your booking already canceled!"
|
6020 |
msgstr "Vaše rezervace již byla zrušena!"
|
6021 |
|
6023 |
msgid "#"
|
6024 |
msgstr "#"
|
6025 |
|
6026 |
+
#: app/features/profile/profile.php:56 app/libraries/main.php:3078
|
6027 |
msgid "Status"
|
6028 |
msgstr "Stav"
|
6029 |
|
6052 |
msgid "No bookings found!"
|
6053 |
msgstr "Nebyly nalezeny žádné rezervace!"
|
6054 |
|
6055 |
+
#: app/features/search.php:87 app/libraries/main.php:5068
|
6056 |
msgid "label"
|
6057 |
msgstr "štítek"
|
6058 |
|
6077 |
msgstr "Žádný výsledek vyhledávání."
|
6078 |
|
6079 |
#: app/features/search_bar/search_result.php:11
|
6080 |
+
#: app/libraries/notifications.php:851 app/libraries/render.php:453
|
6081 |
#: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
|
6082 |
+
#: app/skins/single.php:160 app/skins/single.php:737
|
6083 |
#: app/skins/single/default.php:101 app/skins/single/default.php:313
|
6084 |
#: app/skins/single/m1.php:38 app/skins/single/modern.php:188
|
6085 |
msgid "All of the day"
|
6143 |
msgid "%s Price"
|
6144 |
msgstr "%s Cena"
|
6145 |
|
6146 |
+
#: app/libraries/book.php:588
|
6147 |
msgid "Discount"
|
6148 |
msgstr "Sleva"
|
6149 |
|
6150 |
+
#: app/libraries/book.php:678 app/modules/booking/default.php:315
|
6151 |
+
#: app/modules/booking/default.php:413
|
6152 |
msgid "Download Invoice"
|
6153 |
msgstr "Stáhnout fakturu"
|
6154 |
|
6223 |
msgid "There is no excerpt because this is a protected post."
|
6224 |
msgstr "Neexistuje výňatek, protože se jedná o chráněný příspěvek."
|
6225 |
|
6226 |
+
#: app/libraries/main.php:331 app/libraries/main.php:1702
|
6227 |
+
#: app/libraries/main.php:1727
|
6228 |
msgid "Grid View"
|
6229 |
msgstr "Zobrazení mřížky"
|
6230 |
|
6231 |
+
#: app/libraries/main.php:332 app/libraries/main.php:1703
|
6232 |
+
#: app/libraries/main.php:1728
|
6233 |
msgid "Agenda View"
|
6234 |
msgstr "Zobrazení agendy"
|
6235 |
|
6236 |
+
#: app/libraries/main.php:333 app/libraries/main.php:1694
|
6237 |
+
#: app/libraries/main.php:1719
|
6238 |
msgid "Full Calendar"
|
6239 |
msgstr "Plný kalendář"
|
6240 |
|
6241 |
+
#: app/libraries/main.php:335 app/libraries/main.php:1696
|
6242 |
+
#: app/libraries/main.php:1721
|
6243 |
msgid "Calendar/Monthly View"
|
6244 |
msgstr "Kalendář / zobrazení měsíce"
|
6245 |
|
6246 |
+
#: app/libraries/main.php:338 app/libraries/main.php:1699
|
6247 |
+
#: app/libraries/main.php:1724
|
6248 |
msgid "Timetable View"
|
6249 |
msgstr "Zobrazení rozvrhu"
|
6250 |
|
6251 |
+
#: app/libraries/main.php:339 app/libraries/main.php:1700
|
6252 |
+
#: app/libraries/main.php:1725
|
6253 |
msgid "Masonry View"
|
6254 |
msgstr "Zobrazení zdi"
|
6255 |
|
6256 |
+
#: app/libraries/main.php:340 app/libraries/main.php:1704
|
6257 |
+
#: app/libraries/main.php:1729
|
6258 |
msgid "Map View"
|
6259 |
msgstr "Zobrazení mapy"
|
6260 |
|
6291 |
msgid "Tile View"
|
6292 |
msgstr "Zobrazení rozvrhu"
|
6293 |
|
6294 |
+
#: app/libraries/main.php:385 app/libraries/main.php:5080
|
6295 |
msgid "SU"
|
6296 |
msgstr "NE"
|
6297 |
|
6298 |
+
#: app/libraries/main.php:386 app/libraries/main.php:5081
|
6299 |
msgid "MO"
|
6300 |
msgstr "PO"
|
6301 |
|
6302 |
+
#: app/libraries/main.php:387 app/libraries/main.php:5082
|
6303 |
msgid "TU"
|
6304 |
msgstr "ÚT"
|
6305 |
|
6306 |
+
#: app/libraries/main.php:388 app/libraries/main.php:5083
|
6307 |
msgid "WE"
|
6308 |
msgstr "ST"
|
6309 |
|
6310 |
+
#: app/libraries/main.php:389 app/libraries/main.php:5084
|
6311 |
msgid "TH"
|
6312 |
msgstr "ČT"
|
6313 |
|
6314 |
+
#: app/libraries/main.php:390 app/libraries/main.php:5085
|
6315 |
msgid "FR"
|
6316 |
msgstr "PÁ"
|
6317 |
|
6318 |
+
#: app/libraries/main.php:391 app/libraries/main.php:5086
|
6319 |
msgid "SA"
|
6320 |
msgstr "SO"
|
6321 |
|
6370 |
|
6371 |
#: app/libraries/main.php:879
|
6372 |
msgid ""
|
6373 |
+
"<strong>Multisite Event Sync:</strong> Sync events between your subsites and "
|
6374 |
+
"main websites. Changes in the main one will be inherited by the subsites. "
|
6375 |
+
"you can set these up in the admin panel."
|
6376 |
msgstr ""
|
|
|
|
|
|
|
6377 |
|
6378 |
#: app/libraries/main.php:880
|
6379 |
msgid ""
|
6380 |
+
"<strong>User Dashboard:</strong> Create exclusive pages for users. These "
|
6381 |
+
"pages can contain ticket purchase information, information about registered "
|
6382 |
+
"events. Users can now log in to purchase tickets."
|
6383 |
msgstr ""
|
|
|
|
|
6384 |
|
6385 |
#: app/libraries/main.php:1429
|
6386 |
msgid "Events at this location"
|
6398 |
msgid "Twitter"
|
6399 |
msgstr "Twitter"
|
6400 |
|
6401 |
+
#: app/libraries/main.php:1474 app/libraries/main.php:1531
|
6402 |
msgid "Linkedin"
|
6403 |
msgstr "Linkedin"
|
6404 |
|
6405 |
+
#: app/libraries/main.php:1475 app/libraries/main.php:1567
|
6406 |
msgid "VK"
|
6407 |
msgstr "VK"
|
6408 |
|
6409 |
+
#: app/libraries/main.php:1476
|
6410 |
+
msgid "Tumblr"
|
6411 |
+
msgstr ""
|
6412 |
+
|
6413 |
+
#: app/libraries/main.php:1477
|
6414 |
+
msgid "Pinterest"
|
6415 |
+
msgstr ""
|
6416 |
+
|
6417 |
+
#: app/libraries/main.php:1478
|
6418 |
+
msgid "Flipboard"
|
6419 |
+
msgstr ""
|
6420 |
+
|
6421 |
+
#: app/libraries/main.php:1479
|
6422 |
+
#, fuzzy
|
6423 |
+
#| msgid "Tickets"
|
6424 |
+
msgid "GetPocket"
|
6425 |
+
msgstr "Vstupenky"
|
6426 |
+
|
6427 |
+
#: app/libraries/main.php:1480
|
6428 |
+
msgid "Reddit"
|
6429 |
+
msgstr ""
|
6430 |
+
|
6431 |
+
#: app/libraries/main.php:1481
|
6432 |
+
msgid "WhatsApp"
|
6433 |
+
msgstr ""
|
6434 |
+
|
6435 |
+
#: app/libraries/main.php:1482
|
6436 |
+
msgid "Telegram"
|
6437 |
+
msgstr ""
|
6438 |
+
|
6439 |
+
#: app/libraries/main.php:1501
|
6440 |
msgid "Share on Facebook"
|
6441 |
msgstr "Sdílet na Facebooku"
|
6442 |
|
6443 |
+
#: app/libraries/main.php:1516
|
6444 |
msgid "Tweet"
|
6445 |
msgstr "Tweet"
|
6446 |
|
6447 |
#: app/libraries/main.php:1582
|
6448 |
+
#, fuzzy
|
6449 |
+
#| msgid "Share on Facebook"
|
6450 |
+
msgid "Share on Tumblr"
|
6451 |
+
msgstr "Sdílet na Facebooku"
|
6452 |
+
|
6453 |
+
#: app/libraries/main.php:1598
|
6454 |
+
msgid "Share on Pinterest"
|
6455 |
+
msgstr ""
|
6456 |
+
|
6457 |
+
#: app/libraries/main.php:1614
|
6458 |
+
#, fuzzy
|
6459 |
+
#| msgid "Share on Facebook"
|
6460 |
+
msgid "Share on Flipboard"
|
6461 |
+
msgstr "Sdílet na Facebooku"
|
6462 |
+
|
6463 |
+
#: app/libraries/main.php:1632
|
6464 |
+
#, fuzzy
|
6465 |
+
#| msgid "Share on Facebook"
|
6466 |
+
msgid "Share on GetPocket"
|
6467 |
+
msgstr "Sdílet na Facebooku"
|
6468 |
+
|
6469 |
+
#: app/libraries/main.php:1648
|
6470 |
+
#, fuzzy
|
6471 |
+
#| msgid "Share on Facebook"
|
6472 |
+
msgid "Share on Reddit"
|
6473 |
+
msgstr "Sdílet na Facebooku"
|
6474 |
+
|
6475 |
+
#: app/libraries/main.php:1664
|
6476 |
+
msgid "Share on Telegram"
|
6477 |
+
msgstr ""
|
6478 |
+
|
6479 |
+
#: app/libraries/main.php:1682
|
6480 |
+
msgid "Share on WhatsApp"
|
6481 |
+
msgstr ""
|
6482 |
+
|
6483 |
+
#: app/libraries/main.php:1705
|
6484 |
msgid "Custom Shortcode"
|
6485 |
msgstr "Uživatelské zkrácené kódy"
|
6486 |
|
6487 |
+
#: app/libraries/main.php:2066
|
6488 |
msgid "Your booking already verified!"
|
6489 |
msgstr "Vaše rezervace již byla ověřena!"
|
6490 |
|
6491 |
+
#: app/libraries/main.php:2071
|
6492 |
msgid "Your booking successfully verified."
|
6493 |
msgstr "Vaše rezervace byla úspěšně ověřena."
|
6494 |
|
6495 |
+
#: app/libraries/main.php:2072
|
6496 |
msgid "Your booking cannot verify!"
|
6497 |
msgstr "Vaši rezervaci nelze ověřit!"
|
6498 |
|
6499 |
+
#: app/libraries/main.php:2091
|
6500 |
msgid "Your booking successfully canceled."
|
6501 |
msgstr "Vaše rezervace byla úspěšně zrušena."
|
6502 |
|
6503 |
+
#: app/libraries/main.php:2092
|
6504 |
msgid "Your booking cannot be canceled."
|
6505 |
msgstr "Vaši rezervaci nelze zrušit."
|
6506 |
|
6507 |
+
#: app/libraries/main.php:2096
|
6508 |
msgid "You canceled the payment successfully."
|
6509 |
msgstr "Platbu jste úspěšně zrušili."
|
6510 |
|
6511 |
+
#: app/libraries/main.php:2100
|
6512 |
msgid "You returned from payment gateway successfully."
|
6513 |
msgstr "Úspěšně jste se vrátili z platební brány."
|
6514 |
|
6515 |
+
#: app/libraries/main.php:2116
|
6516 |
msgid "Cannot find the invoice!"
|
6517 |
msgstr "Fakturu nelze najít!"
|
6518 |
|
6519 |
+
#: app/libraries/main.php:2116
|
6520 |
msgid "Invoice is invalid."
|
6521 |
msgstr "Faktura je neplatná."
|
6522 |
|
6523 |
+
#: app/libraries/main.php:2136
|
6524 |
msgid ""
|
6525 |
"Your booking still is not confirmed. You able download it after confirmation!"
|
6526 |
msgstr ""
|
6527 |
"Vaše rezervace stále není potvrzena. Můžete si ji stáhnout po potvrzení!"
|
6528 |
|
6529 |
+
#: app/libraries/main.php:2136
|
6530 |
msgid "Booking Not Confirmed."
|
6531 |
msgstr "Rezervace nebyla potvrzena."
|
6532 |
|
6533 |
+
#: app/libraries/main.php:2142
|
6534 |
msgid "Cannot find the booking!"
|
6535 |
msgstr "Nemohu najít rezervaci!"
|
6536 |
|
6537 |
+
#: app/libraries/main.php:2142
|
6538 |
msgid "Booking is invalid."
|
6539 |
msgstr "Rezervace není platná."
|
6540 |
|
6541 |
+
#: app/libraries/main.php:2171
|
6542 |
#, php-format
|
6543 |
msgid "%s Invoice"
|
6544 |
msgstr "%s Faktura"
|
6545 |
|
6546 |
+
#: app/libraries/main.php:2245
|
6547 |
msgid "Billing"
|
6548 |
msgstr "Fakturace"
|
6549 |
|
6550 |
+
#: app/libraries/main.php:2256
|
6551 |
msgid "Total"
|
6552 |
msgstr "Celkem"
|
6553 |
|
6554 |
+
#: app/libraries/main.php:2263
|
6555 |
+
#, fuzzy
|
6556 |
+
#| msgid "Payment Gateways"
|
6557 |
+
msgid "Payment"
|
6558 |
+
msgstr "Platební brány"
|
6559 |
+
|
6560 |
+
#: app/libraries/main.php:2267
|
6561 |
+
#, fuzzy
|
6562 |
+
#| msgid "Payment Gateways"
|
6563 |
+
msgid "Gateway"
|
6564 |
+
msgstr "Platební brány"
|
6565 |
+
|
6566 |
+
#: app/libraries/main.php:2275
|
6567 |
+
#, fuzzy
|
6568 |
+
#| msgid "Payment Gateways"
|
6569 |
+
msgid "Payment Time"
|
6570 |
+
msgstr "Platební brány"
|
6571 |
+
|
6572 |
+
#: app/libraries/main.php:2336
|
6573 |
msgid "Request is not valid."
|
6574 |
msgstr "Požadavek není platný."
|
6575 |
|
6576 |
+
#: app/libraries/main.php:2336
|
6577 |
msgid "iCal export stopped!"
|
6578 |
msgstr "iCal export byl zastaven!"
|
6579 |
|
6580 |
+
#: app/libraries/main.php:2662 app/libraries/main.php:2692
|
6581 |
+
#: app/libraries/main.php:2721 app/libraries/main.php:2751
|
6582 |
+
#: app/libraries/main.php:2780 app/libraries/main.php:2809
|
6583 |
+
#: app/libraries/main.php:2838 app/libraries/main.php:2867
|
6584 |
+
#: app/libraries/main.php:2896 app/libraries/main.php:2920
|
6585 |
+
#: app/libraries/main.php:2964 app/libraries/main.php:3008
|
6586 |
+
#: app/libraries/main.php:3055 app/libraries/main.php:3102
|
6587 |
msgid "Sort"
|
6588 |
msgstr "Seřadit"
|
6589 |
|
6590 |
+
#: app/libraries/main.php:2668 app/libraries/main.php:2698
|
6591 |
+
#: app/libraries/main.php:2727 app/libraries/main.php:2757
|
6592 |
+
#: app/libraries/main.php:2786 app/libraries/main.php:2815
|
6593 |
+
#: app/libraries/main.php:2844 app/libraries/main.php:2873
|
6594 |
+
#: app/libraries/main.php:2926 app/libraries/main.php:2970
|
6595 |
+
#: app/libraries/main.php:3014 app/libraries/main.php:3061
|
6596 |
msgid "Required Field"
|
6597 |
msgstr "Požadovaná pole"
|
6598 |
|
6599 |
+
#: app/libraries/main.php:2674 app/libraries/main.php:2704
|
6600 |
+
#: app/libraries/main.php:2733 app/libraries/main.php:2763
|
6601 |
+
#: app/libraries/main.php:2792 app/libraries/main.php:2821
|
6602 |
+
#: app/libraries/main.php:2850 app/libraries/main.php:2879
|
6603 |
+
#: app/libraries/main.php:2932 app/libraries/main.php:2976
|
6604 |
+
#: app/libraries/main.php:3020 app/libraries/main.php:3067
|
6605 |
msgid "Insert a label for this field"
|
6606 |
msgstr "Vložte štítek pro toto pole"
|
6607 |
|
6608 |
+
#: app/libraries/main.php:2902
|
6609 |
msgid "HTML and shortcode are allowed."
|
6610 |
msgstr "HTML a zkrácené kódy jsou povoleny."
|
6611 |
|
6612 |
+
#: app/libraries/main.php:2945 app/libraries/main.php:2989
|
6613 |
+
#: app/libraries/main.php:3033
|
6614 |
msgid "Option"
|
6615 |
msgstr "Možnost"
|
6616 |
|
6617 |
+
#: app/libraries/main.php:3067
|
6618 |
#, php-format
|
6619 |
msgid "Instead of %s, the page title with a link will be show."
|
6620 |
msgstr "Místo%s se zobrazí název stránky s odkazem."
|
6621 |
|
6622 |
+
#: app/libraries/main.php:3069
|
6623 |
msgid "Agreement Page"
|
6624 |
msgstr "Stránka smlouvy"
|
6625 |
|
6626 |
+
#: app/libraries/main.php:3080
|
6627 |
msgid "Checked by default"
|
6628 |
msgstr "Ve výchozím nastavení zaškrtnuto"
|
6629 |
|
6630 |
+
#: app/libraries/main.php:3081
|
6631 |
msgid "Unchecked by default"
|
6632 |
msgstr "Ve výchozím nastavení není zaškrtnuto"
|
6633 |
|
6634 |
+
#: app/libraries/main.php:3104
|
6635 |
msgid "Insert a label for this option"
|
6636 |
msgstr "Vložte štítek pro tuto možnost"
|
6637 |
|
6638 |
+
#: app/libraries/main.php:3119
|
6639 |
msgid "Free"
|
6640 |
msgstr "Zdarma"
|
6641 |
|
6642 |
+
#: app/libraries/main.php:3725 app/libraries/main.php:5330
|
6643 |
msgid "M.E. Calender"
|
6644 |
msgstr "M.E. Kalendář"
|
6645 |
|
6646 |
+
#: app/libraries/main.php:3880
|
6647 |
#, php-format
|
6648 |
msgid "Copy of %s"
|
6649 |
msgstr "Kopie %s"
|
6650 |
|
6651 |
+
#: app/libraries/main.php:4573
|
6652 |
msgid "Booked an event."
|
6653 |
msgstr "Událost byla rezervována."
|
6654 |
|
6655 |
+
#: app/libraries/main.php:4614
|
6656 |
#, php-format
|
6657 |
msgid "%s booked %s event."
|
6658 |
msgstr "%s zarezervoval %s událost."
|
6659 |
|
6660 |
+
#: app/libraries/main.php:5063
|
6661 |
msgid "Taxonomies"
|
6662 |
msgstr "Taxonomie"
|
6663 |
|
6664 |
# Mrknout na kontext
|
6665 |
+
#: app/libraries/main.php:5065
|
6666 |
msgid "Category Plural Label"
|
6667 |
msgstr "Štítek množné kategorie"
|
6668 |
|
6669 |
# Mrknout na kontext
|
6670 |
+
#: app/libraries/main.php:5066
|
6671 |
msgid "Category Singular Label"
|
6672 |
msgstr "Štítek jednotné kategorie"
|
6673 |
|
6674 |
+
#: app/libraries/main.php:5067
|
6675 |
msgid "Label Plural Label"
|
6676 |
msgstr "Štítek množného štítku"
|
6677 |
|
6678 |
+
#: app/libraries/main.php:5068
|
6679 |
msgid "Label Singular Label"
|
6680 |
msgstr "Štítek jednotného štítku"
|
6681 |
|
6682 |
+
#: app/libraries/main.php:5069
|
6683 |
msgid "Location Plural Label"
|
6684 |
msgstr "Štítek množného umístění"
|
6685 |
|
6686 |
+
#: app/libraries/main.php:5070
|
6687 |
msgid "Location Singular Label"
|
6688 |
msgstr "Štítek jednotného umístění"
|
6689 |
|
6690 |
+
#: app/libraries/main.php:5071
|
6691 |
msgid "Organizer Plural Label"
|
6692 |
msgstr "Štítek množného organizátora"
|
6693 |
|
6694 |
+
#: app/libraries/main.php:5072
|
6695 |
msgid "Organizer Singular Label"
|
6696 |
msgstr "Štítek jednotného organizátora"
|
6697 |
|
6698 |
+
#: app/libraries/main.php:5073
|
6699 |
msgid "Speaker Plural Label"
|
6700 |
msgstr "Štítek množného řečníka"
|
6701 |
|
6702 |
+
#: app/libraries/main.php:5074
|
6703 |
msgid "Speaker Singular Label"
|
6704 |
msgstr "Štítek jednotného řečníka"
|
6705 |
|
6706 |
+
#: app/libraries/main.php:5080
|
6707 |
msgid "Sunday abbreviation"
|
6708 |
msgstr "Neděle zkratka"
|
6709 |
|
6710 |
+
#: app/libraries/main.php:5081
|
6711 |
msgid "Monday abbreviation"
|
6712 |
msgstr "Pondělí zkratka"
|
6713 |
|
6714 |
+
#: app/libraries/main.php:5082
|
6715 |
msgid "Tuesday abbreviation"
|
6716 |
msgstr "Úterý zkratka"
|
6717 |
|
6718 |
+
#: app/libraries/main.php:5083
|
6719 |
msgid "Wednesday abbreviation"
|
6720 |
msgstr "Středa zkratka"
|
6721 |
|
6722 |
+
#: app/libraries/main.php:5084
|
6723 |
msgid "Thursday abbreviation"
|
6724 |
msgstr "Čtvrtek zkratka"
|
6725 |
|
6726 |
+
#: app/libraries/main.php:5085
|
6727 |
msgid "Friday abbreviation"
|
6728 |
msgstr "Pátek zkratka"
|
6729 |
|
|