Version Description
- 10 December 2019 =
- Added: An advanced option to edit bookings from backend (pro)
- Added: Ticket variation option to edit bookings (pro)
- Added: Recalculate price option for edit bookings (pro)
- Added: An ability to remove and add attendees in edit bookings (pro)
- Added: Event featured image placeholder (pro)
- Added: Booking order time as a new placeholder (pro)
- Added: Tile view skin
- Added: A new booking badge to show amount of unread bookings in admin panel (pro)
- Added: An option to show name of all attendees in attendees module in event details page - you need to install BuddyPress plugin (pro)
- Added: Display Soldout and Last Few Tickets flags for events (pro)
- Added: An option to send confirmation notification just to the main attendee instead of all attendees (pro)
- Added: An option to change sender name and sender email of WordPress emails
- Added: Show booking cancellation time in backend booking menu (pro)
- Changed: Text field type to textarea field for description of the tickets (pro)
- Improved: "Remove" ticket button in single event edit page (pro)
- Fixed: Location of Google Calendar link
- Fixed: Event end date in notifications (pro)
- Fixed: Auto Synchronization (pro)
- Fixed: Booking reminder notifications (pro)
- Fixed: Ticket styling in single event edit page (pro)
Download this release
Release Info
Developer | webnus |
Plugin | Modern Events Calendar Lite |
Version | 4.9.0 |
Comparing to | |
See all releases |
Code changes from version 4.8.5 to 4.9.0
- app/features/events.php +9 -10
- app/features/mec.php +65 -0
- app/features/mec/dyncss.php +2 -2
- app/features/mec/meta_boxes/display_options.php +51 -1
- app/features/mec/meta_boxes/search_form.php +61 -0
- app/features/mec/notifications.php +17 -2
- app/features/mec/settings.php +20 -0
- app/features/update.php +15 -0
- app/libraries/book.php +83 -76
- app/libraries/main.php +53 -14
- app/libraries/notifications.php +48 -7
- app/libraries/render.php +6 -2
- app/libraries/syncSchedule.php +4 -4
- app/modules/attendees-list/details.php +51 -1
- app/modules/booking/steps/form.php +1 -2
- app/modules/export/details.php +6 -4
- app/skins/agenda/render.php +3 -1
- app/skins/available_spot/tpl.php +2 -1
- app/skins/carousel/render.php +5 -4
- app/skins/countdown/tpl.php +3 -3
- app/skins/cover/tpl.php +4 -3
- app/skins/daily_view/render.php +2 -29
- app/skins/grid/render.php +7 -6
- app/skins/list/render.php +7 -5
- app/skins/masonry/render.php +2 -1
- app/skins/monthly_view/calendar.php +2 -25
- app/skins/monthly_view/calendar_clean.php +3 -26
- app/skins/slider/render.php +7 -6
- app/skins/tile.php +326 -0
- app/skins/tile/index.html +0 -0
- app/skins/tile/render.php +114 -0
- app/skins/tile/tpl.php +117 -0
- app/skins/timeline/render.php +3 -2
- app/skins/timetable/render.php +6 -3
- app/skins/weekly_view.php +14 -2
- app/skins/weekly_view/render.php +4 -30
- assets/css/backend.css +50 -2
- assets/css/backend.min.css +1 -1
- assets/css/frontend.css +241 -41
- assets/css/frontend.min.css +1 -1
- assets/js/frontend.js +248 -1
- changelog.txt +23 -1
- languages/modern-events-calendar-lite-ca_ES.mo +0 -0
- languages/modern-events-calendar-lite-ca_ES.po +4575 -0
app/features/events.php
CHANGED
@@ -1647,7 +1647,7 @@ class MEC_feature_events extends MEC_base
|
|
1647 |
|
1648 |
<div id="mec_meta_box_tickets_form">
|
1649 |
<div class="mec-form-row">
|
1650 |
-
<button class="button" type="button" id="mec_add_ticket_button"><?php _e('Add', 'modern-events-calendar-lite'); ?></button>
|
1651 |
</div>
|
1652 |
<div id="mec_tickets">
|
1653 |
<?php
|
@@ -1785,10 +1785,9 @@ class MEC_feature_events extends MEC_base
|
|
1785 |
</div>
|
1786 |
</div>
|
1787 |
<div class="mec-form-row">
|
1788 |
-
<
|
1789 |
name="mec[tickets][<?php echo $key; ?>][description]"
|
1790 |
-
placeholder="<?php esc_attr_e('Description', 'modern-events-calendar-lite'); ?>"
|
1791 |
-
value="<?php echo(isset($ticket['description']) ? esc_attr($ticket['description']) : ''); ?>"/>
|
1792 |
</div>
|
1793 |
<div class="mec-form-row">
|
1794 |
<span class="mec-col-4">
|
@@ -1838,8 +1837,8 @@ class MEC_feature_events extends MEC_base
|
|
1838 |
/>
|
1839 |
<?php _e('Unlimited', 'modern-events-calendar-lite'); ?>
|
1840 |
</label>
|
1841 |
-
<button class="button" type="button"
|
1842 |
-
onclick="mec_ticket_remove(<?php echo $key; ?>);"
|
1843 |
</div>
|
1844 |
<?php do_action('custom_field_ticket', $ticket, $key); ?>
|
1845 |
<div id="mec_price_per_dates_container">
|
@@ -1991,8 +1990,8 @@ class MEC_feature_events extends MEC_base
|
|
1991 |
</div>
|
1992 |
</div>
|
1993 |
<div class="mec-form-row">
|
1994 |
-
<
|
1995 |
-
placeholder="<?php esc_attr_e('Description', 'modern-events-calendar-lite'); ?>"
|
1996 |
</div>
|
1997 |
<div class="mec-form-row">
|
1998 |
<span class="mec-col-4">
|
@@ -2032,8 +2031,8 @@ class MEC_feature_events extends MEC_base
|
|
2032 |
name="mec[tickets][:i:][unlimited]"/>
|
2033 |
<?php _e('Unlimited', 'modern-events-calendar-lite'); ?>
|
2034 |
</label>
|
2035 |
-
<button class="button" type="button"
|
2036 |
-
onclick="mec_ticket_remove(:i:)"
|
2037 |
</div>
|
2038 |
<div id="mec_price_per_dates_container_:i:">
|
2039 |
<div class="mec-form-row">
|
1647 |
|
1648 |
<div id="mec_meta_box_tickets_form">
|
1649 |
<div class="mec-form-row">
|
1650 |
+
<button class="button" type="button" id="mec_add_ticket_button"><?php _e('Add Ticket', 'modern-events-calendar-lite'); ?></button>
|
1651 |
</div>
|
1652 |
<div id="mec_tickets">
|
1653 |
<?php
|
1785 |
</div>
|
1786 |
</div>
|
1787 |
<div class="mec-form-row">
|
1788 |
+
<textarea type="text" class="mec-col-12"
|
1789 |
name="mec[tickets][<?php echo $key; ?>][description]"
|
1790 |
+
placeholder="<?php esc_attr_e('Description', 'modern-events-calendar-lite'); ?>"><?php echo(isset($ticket['description']) ? esc_attr($ticket['description']) : ''); ?></textarea>
|
|
|
1791 |
</div>
|
1792 |
<div class="mec-form-row">
|
1793 |
<span class="mec-col-4">
|
1837 |
/>
|
1838 |
<?php _e('Unlimited', 'modern-events-calendar-lite'); ?>
|
1839 |
</label>
|
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">
|
1990 |
</div>
|
1991 |
</div>
|
1992 |
<div class="mec-form-row">
|
1993 |
+
<textarea class="mec-col-12" type="text" name="mec[tickets][:i:][description]"
|
1994 |
+
placeholder="<?php esc_attr_e('Description', 'modern-events-calendar-lite'); ?>"></textarea>
|
1995 |
</div>
|
1996 |
<div class="mec-form-row">
|
1997 |
<span class="mec-col-4">
|
2031 |
name="mec[tickets][:i:][unlimited]"/>
|
2032 |
<?php _e('Unlimited', 'modern-events-calendar-lite'); ?>
|
2033 |
</label>
|
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">
|
app/features/mec.php
CHANGED
@@ -66,6 +66,8 @@ class MEC_feature_mec extends MEC_base
|
|
66 |
|
67 |
$this->factory->action('parent_file', array($this, 'mec_parent_menu_highlight'));
|
68 |
$this->factory->action('submenu_file', array($this, 'mec_sub_menu_highlight'));
|
|
|
|
|
69 |
|
70 |
// Google recaptcha
|
71 |
$this->factory->filter('mec_grecaptcha_include', array($this, 'grecaptcha_include'));
|
@@ -95,6 +97,10 @@ class MEC_feature_mec extends MEC_base
|
|
95 |
$this->factory->action('mec_fes_added', array($this->notifications, 'new_event'), 50, 3);
|
96 |
$this->factory->action('mec_event_published', array($this->notifications, 'user_event_publishing'), 10, 3);
|
97 |
|
|
|
|
|
|
|
|
|
98 |
$this->page = isset($_GET['page']) ? sanitize_text_field($_GET['page']) : 'MEC-settings';
|
99 |
|
100 |
// MEC Post Type Name
|
@@ -815,4 +821,63 @@ class MEC_feature_mec extends MEC_base
|
|
815 |
if(in_array($post_type, array($this->PT, $this->main->get_book_post_type(), $this->main->get_shortcode_post_type()))) return false;
|
816 |
return $status;
|
817 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
818 |
}
|
66 |
|
67 |
$this->factory->action('parent_file', array($this, 'mec_parent_menu_highlight'));
|
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'));
|
97 |
$this->factory->action('mec_fes_added', array($this->notifications, 'new_event'), 50, 3);
|
98 |
$this->factory->action('mec_event_published', array($this->notifications, 'user_event_publishing'), 10, 3);
|
99 |
|
100 |
+
// MEC Notification Sender Email
|
101 |
+
$this->factory->filter('wp_mail_from_name', array($this->notifications, 'notification_sender_name'));
|
102 |
+
$this->factory->filter('wp_mail_from', array($this->notifications, 'notification_sender_email'));
|
103 |
+
|
104 |
$this->page = isset($_GET['page']) ? sanitize_text_field($_GET['page']) : 'MEC-settings';
|
105 |
|
106 |
// MEC Post Type Name
|
821 |
if(in_array($post_type, array($this->PT, $this->main->get_book_post_type(), $this->main->get_shortcode_post_type()))) return false;
|
822 |
return $status;
|
823 |
}
|
824 |
+
|
825 |
+
/**
|
826 |
+
* Show Booking Badge.
|
827 |
+
* @param object $screen
|
828 |
+
* @return void
|
829 |
+
*/
|
830 |
+
public function booking_badge($screen)
|
831 |
+
{
|
832 |
+
$user_id = get_current_user_id();
|
833 |
+
$user_last_view_date = get_user_meta($user_id, 'user_last_view_date', true);
|
834 |
+
$count = 0;
|
835 |
+
|
836 |
+
if(!trim($user_last_view_date))
|
837 |
+
{
|
838 |
+
update_user_meta($user_id, 'user_last_view_date', date('YmdHis', current_time('timestamp', 0)));
|
839 |
+
return;
|
840 |
+
}
|
841 |
+
|
842 |
+
$args = array(
|
843 |
+
'post_type' => $this->main->get_book_post_type(),
|
844 |
+
'post_status' => 'any',
|
845 |
+
'meta_query' => array(
|
846 |
+
array(
|
847 |
+
'key' => 'mec_book_date_submit',
|
848 |
+
'value' => $user_last_view_date,
|
849 |
+
'compare' => '>=',
|
850 |
+
),
|
851 |
+
),
|
852 |
+
);
|
853 |
+
|
854 |
+
$query = new WP_Query($args);
|
855 |
+
if($query->have_posts())
|
856 |
+
{
|
857 |
+
while($query->have_posts())
|
858 |
+
{
|
859 |
+
$query->the_post();
|
860 |
+
$count += 1;
|
861 |
+
}
|
862 |
+
}
|
863 |
+
|
864 |
+
if($count != 0)
|
865 |
+
{
|
866 |
+
if(isset($screen->id) and $screen->id == 'edit-mec-books')
|
867 |
+
{
|
868 |
+
update_user_meta($user_id, 'user_last_view_date', date('YmdHis', current_time('timestamp', 0)));
|
869 |
+
return;
|
870 |
+
}
|
871 |
+
|
872 |
+
// Append Booking Badge To Booking Menu.
|
873 |
+
global $menu;
|
874 |
+
|
875 |
+
$badge = ' <span class="update-plugins count-%%count%%"><span class="plugin-count">%%count%%</span></span>';
|
876 |
+
$menu_item = wp_list_filter($menu, array(2 =>'edit.php?post_type='.$this->main->get_book_post_type()));
|
877 |
+
if(is_array($menu_item) and count($menu_item))
|
878 |
+
{
|
879 |
+
$menu[key($menu_item)][0] .= str_replace('%%count%%', esc_attr($count), $badge);
|
880 |
+
}
|
881 |
+
}
|
882 |
+
}
|
883 |
}
|
app/features/mec/dyncss.php
CHANGED
@@ -8,7 +8,7 @@ $styling = $this->main->get_styling();
|
|
8 |
// colorskin
|
9 |
$color = '';
|
10 |
|
11 |
-
function
|
12 |
if ( $cc[0] == '#' ) {
|
13 |
$cc = substr( $cc, 1 );
|
14 |
}
|
@@ -30,7 +30,7 @@ if(isset($styling['color']) && $styling['color']) $color = $styling['color'];
|
|
30 |
elseif(isset($styling['mec_colorskin'])) $color = $styling['mec_colorskin'];
|
31 |
|
32 |
$rgb_color = '64,217,241';
|
33 |
-
if ( !empty($color)) $rgb_color =
|
34 |
|
35 |
// Typography
|
36 |
$mec_h_fontfamily_arr = $mec_p_fontfamily_arr = $fonts_url = $mec_container_normal_width = $mec_container_large_width = '';
|
8 |
// colorskin
|
9 |
$color = '';
|
10 |
|
11 |
+
function mec_hex2rgb( $cc ) {
|
12 |
if ( $cc[0] == '#' ) {
|
13 |
$cc = substr( $cc, 1 );
|
14 |
}
|
30 |
elseif(isset($styling['mec_colorskin'])) $color = $styling['mec_colorskin'];
|
31 |
|
32 |
$rgb_color = '64,217,241';
|
33 |
+
if ( !empty($color)) $rgb_color = mec_hex2rgb($color);
|
34 |
|
35 |
// Typography
|
36 |
$mec_h_fontfamily_arr = $mec_p_fontfamily_arr = $fonts_url = $mec_container_normal_width = $mec_container_large_width = '';
|
app/features/mec/meta_boxes/display_options.php
CHANGED
@@ -4,7 +4,7 @@ defined('MECEXEC') or die();
|
|
4 |
|
5 |
// Fix conflict between ACF and niceSelect
|
6 |
include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
|
7 |
-
if
|
8 |
|
9 |
// Skin Options
|
10 |
$skins = $this->main->get_skins();
|
@@ -1143,6 +1143,7 @@ $events = $this->main->get_events();
|
|
1143 |
<label class="mec-col-4" for="mec_skin_carousel_head_text"><?php _e('Head Text', 'modern-events-calendar-lite'); ?></label>
|
1144 |
<input type="text" class="mec-col-4" name="mec[sk-options][carousel][head_text]" id="mec_skin_carousel_head_text" value="<?php echo ((isset($sk_options_carousel['head_text']) and trim($sk_options_carousel['head_text']) != '') ? $sk_options_carousel['head_text'] : ''); ?>" />
|
1145 |
</div>
|
|
|
1146 |
<!-- Slider View -->
|
1147 |
<div class="mec-skin-options-container mec-util-hidden" id="mec_slider_skin_options_container">
|
1148 |
<?php $sk_options_slider = isset($sk_options['slider']) ? $sk_options['slider'] : array(); ?>
|
@@ -1299,6 +1300,54 @@ $events = $this->main->get_events();
|
|
1299 |
<?php echo $this->sed_method_field('timeline', (isset($sk_options_timeline['sed_method']) ? $sk_options_timeline['sed_method'] : 0), (isset($sk_options_timeline['image_popup']) ? $sk_options_timeline['image_popup'] : 0)); ?>
|
1300 |
</div>
|
1301 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1302 |
<!-- Custom Skins -->
|
1303 |
<?php do_action('mec_skin_options', $sk_options); ?>
|
1304 |
</div>
|
@@ -1331,6 +1380,7 @@ $events = $this->main->get_events();
|
|
1331 |
jQuery('.mec-custom-nice-select li[data-value="carousel"]').prepend('<div class="wn-img-sh"><img src="https://webnus.net/modern-events-calendar/wp-content/skins/carousel.svg" /></div>');
|
1332 |
jQuery('.mec-custom-nice-select li[data-value="slider"]').prepend('<div class="wn-img-sh"><img src="https://webnus.net/modern-events-calendar/wp-content/skins/slider.svg" /></div>');
|
1333 |
jQuery('.mec-custom-nice-select li[data-value="timeline"]').prepend('<div class="wn-img-sh"><img src="https://webnus.net/modern-events-calendar/wp-content/skins/timeline.svg" /></div>');
|
|
|
1334 |
|
1335 |
/** List View Skins */
|
1336 |
jQuery('#mec_list_skin_options_container .mec-form-row .nice-select .list li[data-value="classic"]').append('<span class="wn-hover-img-sh"><img src="https://webnus.net/modern-events-calendar/wp-content/skins/list/list-classic.png" /></span>');
|
4 |
|
5 |
// Fix conflict between ACF and niceSelect
|
6 |
include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
|
7 |
+
if(is_plugin_active('advanced-custom-fields/acf.php')) remove_action('admin_footer', 'acf_enqueue_uploader', 5);
|
8 |
|
9 |
// Skin Options
|
10 |
$skins = $this->main->get_skins();
|
1143 |
<label class="mec-col-4" for="mec_skin_carousel_head_text"><?php _e('Head Text', 'modern-events-calendar-lite'); ?></label>
|
1144 |
<input type="text" class="mec-col-4" name="mec[sk-options][carousel][head_text]" id="mec_skin_carousel_head_text" value="<?php echo ((isset($sk_options_carousel['head_text']) and trim($sk_options_carousel['head_text']) != '') ? $sk_options_carousel['head_text'] : ''); ?>" />
|
1145 |
</div>
|
1146 |
+
|
1147 |
<!-- Slider View -->
|
1148 |
<div class="mec-skin-options-container mec-util-hidden" id="mec_slider_skin_options_container">
|
1149 |
<?php $sk_options_slider = isset($sk_options['slider']) ? $sk_options['slider'] : array(); ?>
|
1300 |
<?php echo $this->sed_method_field('timeline', (isset($sk_options_timeline['sed_method']) ? $sk_options_timeline['sed_method'] : 0), (isset($sk_options_timeline['image_popup']) ? $sk_options_timeline['image_popup'] : 0)); ?>
|
1301 |
</div>
|
1302 |
|
1303 |
+
<!-- Tile View -->
|
1304 |
+
<div class="mec-skin-options-container mec-util-hidden" id="mec_tile_skin_options_container">
|
1305 |
+
<?php $sk_options_tile = isset($sk_options['tile']) ? $sk_options['tile'] : array(); ?>
|
1306 |
+
<div class="mec-form-row">
|
1307 |
+
<label class="mec-col-4" for="mec_skin_tile_start_date_type"><?php _e('Start Date', 'modern-events-calendar-lite'); ?></label>
|
1308 |
+
<select class="mec-col-4 wn-mec-select" name="mec[sk-options][tile][start_date_type]" id="mec_skin_tile_start_date_type" onchange="if(this.value == 'date') jQuery('#mec_skin_tile_start_date_container').show(); else jQuery('#mec_skin_tile_start_date_container').hide();">
|
1309 |
+
<option value="start_current_month" <?php if(isset($sk_options_tile['start_date_type']) and $sk_options_tile['start_date_type'] == 'start_current_month') echo 'selected="selected"'; ?>><?php _e('Start of Current Month', 'modern-events-calendar-lite'); ?></option>
|
1310 |
+
<option value="start_next_month" <?php if(isset($sk_options_tile['start_date_type']) and $sk_options_tile['start_date_type'] == 'start_next_month') echo 'selected="selected"'; ?>><?php _e('Start of Next Month', 'modern-events-calendar-lite'); ?></option>
|
1311 |
+
<option value="date" <?php if(isset($sk_options_tile['start_date_type']) and $sk_options_tile['start_date_type'] == 'date') echo 'selected="selected"'; ?>><?php _e('On a certain date', 'modern-events-calendar-lite'); ?></option>
|
1312 |
+
</select>
|
1313 |
+
<div class="mec-col-4 <?php if(!isset($sk_options_tile['start_date_type']) or (isset($sk_options_tile['start_date_type']) and $sk_options_tile['start_date_type'] != 'date')) echo 'mec-util-hidden'; ?>" id="mec_skin_tile_start_date_container">
|
1314 |
+
<input class="mec_date_picker" type="text" name="mec[sk-options][tile][start_date]" id="mec_skin_tile_start_date" placeholder="<?php echo sprintf(__('eg. %s', 'modern-events-calendar-lite'), date('Y-n-d')); ?>" value="<?php if(isset($sk_options_tile['start_date'])) echo $sk_options_tile['start_date']; ?>" />
|
1315 |
+
</div>
|
1316 |
+
</div>
|
1317 |
+
<div class="mec-form-row mec-skin-tile-date-format-container <?php if(isset($sk_options_tile['style']) and $sk_options_tile['style'] != 'clean') echo 'mec-util-hidden'; ?>" id="mec_skin_tile_date_format_clean_container">
|
1318 |
+
<label class="mec-col-4" for="mec_skin_tile_minimal_date_format1"><?php _e('Date Formats', 'modern-events-calendar-lite'); ?></label>
|
1319 |
+
<input type="text" class="mec-col-3" name="mec[sk-options][tile][clean_date_format1]" id="mec_skin_tile_clean_date_format1" value="<?php echo ((isset($sk_options_tile['clean_date_format1']) and trim($sk_options_tile['clean_date_format1']) != '') ? $sk_options_tile['clean_date_format1'] : 'j'); ?>" />
|
1320 |
+
<input type="text" class="mec-col-3" name="mec[sk-options][tile][clean_date_format2]" id="mec_skin_tile_clean_date_format2" value="<?php echo ((isset($sk_options_tile['clean_date_format2']) and trim($sk_options_tile['clean_date_format2']) != '') ? $sk_options_tile['clean_date_format2'] : 'M'); ?>" />
|
1321 |
+
<span class="mec-tooltip">
|
1322 |
+
<div class="box top">
|
1323 |
+
<h5 class="title"><?php _e('Date Formats', 'modern-events-calendar-lite'); ?></h5>
|
1324 |
+
<div class="content"><p><?php esc_attr_e('Default values are j and M', 'modern-events-calendar-lite'); ?><a href="https://webnus.net/dox/modern-events-calendar/list-view-skin/" target="_blank"><?php _e('Read More', 'modern-events-calendar-lite'); ?></a></p></div>
|
1325 |
+
</div>
|
1326 |
+
<i title="" class="dashicons-before dashicons-editor-help"></i>
|
1327 |
+
</span>
|
1328 |
+
</div>
|
1329 |
+
<div class="mec-form-row">
|
1330 |
+
<label class="mec-col-4" for="mec_skin_tile_count"><?php _e('Count in row', 'modern-events-calendar-lite'); ?></label>
|
1331 |
+
<select class="mec-col-4 wn-mec-select" name="mec[sk-options][tile][count]" id="mec_skin_tile_count">
|
1332 |
+
<option value="4" <?php echo (isset($sk_options_tile['count']) and $sk_options_tile['count'] == 4) ? 'selected="selected"' : ''; ?>>4</option>
|
1333 |
+
<option value="3" <?php echo (isset($sk_options_tile['count']) and $sk_options_tile['count'] == 3) ? 'selected="selected"' : ''; ?>>3</option>
|
1334 |
+
<option value="2" <?php echo (isset($sk_options_tile['count']) and $sk_options_tile['count'] == 2) ? 'selected="selected"' : ''; ?>>2</option>
|
1335 |
+
</select>
|
1336 |
+
</div>
|
1337 |
+
<div class="mec-form-row mec-switcher">
|
1338 |
+
<div class="mec-col-4">
|
1339 |
+
<label><?php _e('Next/Previous Buttons', 'modern-events-calendar-lite'); ?></label>
|
1340 |
+
</div>
|
1341 |
+
<div class="mec-col-4">
|
1342 |
+
<input type="hidden" name="mec[sk-options][tile][next_previous_button]" value="0" />
|
1343 |
+
<input type="checkbox" name="mec[sk-options][tile][next_previous_button]" id="mec_skin_tile_next_previous_button" value="1" <?php if(!isset($sk_options_tile['next_previous_button']) or (isset($sk_options_tile['next_previous_button']) and $sk_options_tile['next_previous_button'])) echo 'checked="checked"'; ?> />
|
1344 |
+
<label for="mec_skin_tile_next_previous_button"></label>
|
1345 |
+
</div>
|
1346 |
+
</div>
|
1347 |
+
<p class="description"><?php _e('For showing next/previous month navigation.', 'modern-events-calendar-lite'); ?></p>
|
1348 |
+
<?php echo $this->sed_method_field('tile', (isset($sk_options_tile['sed_method']) ? $sk_options_tile['sed_method'] : 0), (isset($sk_options_tile['image_popup']) ? $sk_options_tile['image_popup'] : 0)); ?>
|
1349 |
+
</div>
|
1350 |
+
|
1351 |
<!-- Custom Skins -->
|
1352 |
<?php do_action('mec_skin_options', $sk_options); ?>
|
1353 |
</div>
|
1380 |
jQuery('.mec-custom-nice-select li[data-value="carousel"]').prepend('<div class="wn-img-sh"><img src="https://webnus.net/modern-events-calendar/wp-content/skins/carousel.svg" /></div>');
|
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>');
|
app/features/mec/meta_boxes/search_form.php
CHANGED
@@ -664,6 +664,67 @@ $sf_options = get_post_meta($post->ID, 'sf-options', true);
|
|
664 |
<?php $sf_options_countdown = isset($sf_options['slider']) ? $sf_options['slider'] : array(); ?>
|
665 |
<p><?php _e('No Search Options', 'modern-events-calendar-lite'); ?></p>
|
666 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
667 |
|
668 |
<!-- Custom Skins -->
|
669 |
<?php do_action('mec_sf_options', $sf_options); ?>
|
664 |
<?php $sf_options_countdown = isset($sf_options['slider']) ? $sf_options['slider'] : array(); ?>
|
665 |
<p><?php _e('No Search Options', 'modern-events-calendar-lite'); ?></p>
|
666 |
</div>
|
667 |
+
|
668 |
+
<!-- Tile View -->
|
669 |
+
<div class="mec-search-form-options-container mec-util-hidden" id="mec_tile_search_form_options_container">
|
670 |
+
<?php $sf_options_tile = isset($sf_options['tile']) ? $sf_options['tile'] : array(); ?>
|
671 |
+
<div class="mec-form-row">
|
672 |
+
<label class="mec-col-12" for="mec_sf_tile_category"><?php echo $this->main->m('taxonomy_category', __('Category', 'modern-events-calendar-lite')); ?></label>
|
673 |
+
<select class="mec-col-12" name="mec[sf-options][tile][category][type]" id="mec_sf_tile_category">
|
674 |
+
<option value="0" <?php if(isset($sf_options_tile['category']) and isset($sf_options_tile['category']['type']) and $sf_options_tile['category']['type'] == '0') echo 'selected="selected"'; ?>><?php _e('Disabled', 'modern-events-calendar-lite'); ?></option>
|
675 |
+
<option value="dropdown" <?php if(isset($sf_options_tile['category']) and isset($sf_options_tile['category']['type']) and $sf_options_tile['category']['type'] == 'dropdown') echo 'selected="selected"'; ?>><?php _e('Dropdown', 'modern-events-calendar-lite'); ?></option>
|
676 |
+
</select>
|
677 |
+
</div>
|
678 |
+
<div class="mec-form-row">
|
679 |
+
<label class="mec-col-12" for="mec_sf_tile_location"><?php echo $this->main->m('taxonomy_location', __('Location', 'modern-events-calendar-lite')); ?></label>
|
680 |
+
<select class="mec-col-12" name="mec[sf-options][tile][location][type]" id="mec_sf_tile_location">
|
681 |
+
<option value="0" <?php if(isset($sf_options_tile['location']) and isset($sf_options_tile['location']['type']) and $sf_options_tile['location']['type'] == '0') echo 'selected="selected"'; ?>><?php _e('Disabled', 'modern-events-calendar-lite'); ?></option>
|
682 |
+
<option value="dropdown" <?php if(isset($sf_options_tile['location']) and isset($sf_options_tile['location']['type']) and $sf_options_tile['location']['type'] == 'dropdown') echo 'selected="selected"'; ?>><?php _e('Dropdown', 'modern-events-calendar-lite'); ?></option>
|
683 |
+
</select>
|
684 |
+
</div>
|
685 |
+
<div class="mec-form-row">
|
686 |
+
<label class="mec-col-12" for="mec_sf_tile_organizer"><?php echo $this->main->m('taxonomy_organizer', __('Organizer', 'modern-events-calendar-lite')); ?></label>
|
687 |
+
<select class="mec-col-12" name="mec[sf-options][tile][organizer][type]" id="mec_sf_tile_organizer">
|
688 |
+
<option value="0" <?php if(isset($sf_options_tile['organizer']) and isset($sf_options_tile['organizer']['type']) and $sf_options_tile['organizer']['type'] == '0') echo 'selected="selected"'; ?>><?php _e('Disabled', 'modern-events-calendar-lite'); ?></option>
|
689 |
+
<option value="dropdown" <?php if(isset($sf_options_tile['organizer']) and isset($sf_options_tile['organizer']['type']) and $sf_options_tile['organizer']['type'] == 'dropdown') echo 'selected="selected"'; ?>><?php _e('Dropdown', 'modern-events-calendar-lite'); ?></option>
|
690 |
+
</select>
|
691 |
+
</div>
|
692 |
+
<div class="mec-form-row">
|
693 |
+
<label class="mec-col-12" for="mec_sf_tile_speaker"><?php echo $this->main->m('taxonomy_speaker', __('Speaker', 'modern-events-calendar-lite')); ?></label>
|
694 |
+
<select class="mec-col-12" name="mec[sf-options][tile][speaker][type]" id="mec_sf_tile_speaker">
|
695 |
+
<option value="0" <?php if(isset($sf_options_tile['speaker']) and isset($sf_options_tile['speaker']['type']) and $sf_options_tile['speaker']['type'] == '0') echo 'selected="selected"'; ?>><?php _e('Disabled', 'modern-events-calendar-lite'); ?></option>
|
696 |
+
<option value="dropdown" <?php if(isset($sf_options_tile['speaker']) and isset($sf_options_tile['speaker']['type']) and $sf_options_tile['speaker']['type'] == 'dropdown') echo 'selected="selected"'; ?>><?php _e('Dropdown', 'modern-events-calendar-lite'); ?></option>
|
697 |
+
</select>
|
698 |
+
</div>
|
699 |
+
<div class="mec-form-row">
|
700 |
+
<label class="mec-col-12" for="mec_sf_tile_tag"><?php echo $this->main->m('taxonomy_tag', __('Tag', 'modern-events-calendar-lite')); ?></label>
|
701 |
+
<select class="mec-col-12" name="mec[sf-options][tile][tag][type]" id="mec_sf_tile_tag">
|
702 |
+
<option value="0" <?php if(isset($sf_options_tile['tag']) and isset($sf_options_tile['tag']['type']) and $sf_options_tile['tag']['type'] == '0') echo 'selected="selected"'; ?>><?php _e('Disabled', 'modern-events-calendar-lite'); ?></option>
|
703 |
+
<option value="dropdown" <?php if(isset($sf_options_tile['tag']) and isset($sf_options_tile['tag']['type']) and $sf_options_tile['tag']['type'] == 'dropdown') echo 'selected="selected"'; ?>><?php _e('Dropdown', 'modern-events-calendar-lite'); ?></option>
|
704 |
+
</select>
|
705 |
+
</div>
|
706 |
+
<div class="mec-form-row">
|
707 |
+
<label class="mec-col-12" for="mec_sf_tile_label"><?php echo $this->main->m('taxonomy_label', __('Label', 'modern-events-calendar-lite')); ?></label>
|
708 |
+
<select class="mec-col-12" name="mec[sf-options][tile][label][type]" id="mec_sf_tile_label">
|
709 |
+
<option value="0" <?php if(isset($sf_options_tile['label']) and isset($sf_options_tile['label']['type']) and $sf_options_tile['label']['type'] == '0') echo 'selected="selected"'; ?>><?php _e('Disabled', 'modern-events-calendar-lite'); ?></option>
|
710 |
+
<option value="dropdown" <?php if(isset($sf_options_tile['label']) and isset($sf_options_tile['label']['type']) and $sf_options_tile['label']['type'] == 'dropdown') echo 'selected="selected"'; ?>><?php _e('Dropdown', 'modern-events-calendar-lite'); ?></option>
|
711 |
+
</select>
|
712 |
+
</div>
|
713 |
+
<div class="mec-form-row">
|
714 |
+
<label class="mec-col-12" for="mec_sf_tile_month_filter"><?php _e('Month Filter', 'modern-events-calendar-lite'); ?></label>
|
715 |
+
<select class="mec-col-12" name="mec[sf-options][tile][month_filter][type]" id="mec_sf_tile_month_filter">
|
716 |
+
<option value="0" <?php if(isset($sf_options_tile['month_filter']) and isset($sf_options_tile['month_filter']['type']) and $sf_options_tile['month_filter']['type'] == '0') echo 'selected="selected"'; ?>><?php _e('Disabled', 'modern-events-calendar-lite'); ?></option>
|
717 |
+
<option value="dropdown" <?php if(isset($sf_options_tile['month_filter']) and isset($sf_options_tile['month_filter']['type']) and $sf_options_tile['month_filter']['type'] == 'dropdown') echo 'selected="selected"'; ?>><?php _e('Dropdown', 'modern-events-calendar-lite'); ?></option>
|
718 |
+
</select>
|
719 |
+
</div>
|
720 |
+
<div class="mec-form-row">
|
721 |
+
<label class="mec-col-12" for="mec_sf_tile_text_search"><?php _e('Text Search', 'modern-events-calendar-lite'); ?></label>
|
722 |
+
<select class="mec-col-12" name="mec[sf-options][tile][text_search][type]" id="mec_sf_tile_text_search">
|
723 |
+
<option value="0" <?php if(isset($sf_options_tile['text_search']) and isset($sf_options_tile['text_search']['type']) and $sf_options_tile['text_search']['type'] == '0') echo 'selected="selected"'; ?>><?php _e('Disabled', 'modern-events-calendar-lite'); ?></option>
|
724 |
+
<option value="text_input" <?php if(isset($sf_options_tile['text_search']) and isset($sf_options_tile['text_search']['type']) and $sf_options_tile['text_search']['type'] == 'text_input') echo 'selected="selected"'; ?>><?php _e('Text Input', 'modern-events-calendar-lite'); ?></option>
|
725 |
+
</select>
|
726 |
+
</div>
|
727 |
+
</div>
|
728 |
|
729 |
<!-- Custom Skins -->
|
730 |
<?php do_action('mec_sf_options', $sf_options); ?>
|
app/features/mec/notifications.php
CHANGED
@@ -10,7 +10,7 @@ $notifications = $this->main->get_notifications();
|
|
10 |
<div class="mec-search-settings-wrap">
|
11 |
<i class="mec-sl-magnifier"></i>
|
12 |
<input id="mec-search-settings" type="text" placeholder="<?php esc_html_e('Search...' ,'modern-events-calendar-lite'); ?>">
|
13 |
-
</div>
|
14 |
<a href="" id="" class="dpr-btn dpr-save-btn"><?php _e('Save Changes', 'modern-events-calendar-lite'); ?></a>
|
15 |
</div>
|
16 |
|
@@ -18,7 +18,6 @@ $notifications = $this->main->get_notifications();
|
|
18 |
<?php $this->main->get_sidebar_menu('notifications'); ?>
|
19 |
</div>
|
20 |
|
21 |
-
|
22 |
<div class="wns-be-main">
|
23 |
<div id="wns-be-notification"></div>
|
24 |
<div id="wns-be-content">
|
@@ -72,6 +71,7 @@ $notifications = $this->main->get_notifications();
|
|
72 |
<li><span>%%book_date%%</span>: <?php _e('Booked date of event', 'modern-events-calendar-lite'); ?></li>
|
73 |
<li><span>%%book_time%%</span>: <?php _e('Booked time of event', 'modern-events-calendar-lite'); ?></li>
|
74 |
<li><span>%%book_price%%</span>: <?php _e('Booking Price', 'modern-events-calendar-lite'); ?></li>
|
|
|
75 |
<li><span>%%blog_name%%</span>: <?php _e('Your website title', 'modern-events-calendar-lite'); ?></li>
|
76 |
<li><span>%%blog_url%%</span>: <?php _e('Your website URL', 'modern-events-calendar-lite'); ?></li>
|
77 |
<li><span>%%blog_description%%</span>: <?php _e('Your website description', 'modern-events-calendar-lite'); ?></li>
|
@@ -85,6 +85,7 @@ $notifications = $this->main->get_notifications();
|
|
85 |
<li><span>%%event_organizer_email%%</span>: <?php _e('Organizer email of booked event', 'modern-events-calendar-lite'); ?></li>
|
86 |
<li><span>%%event_location_name%%</span>: <?php _e('Location name of booked event', 'modern-events-calendar-lite'); ?></li>
|
87 |
<li><span>%%event_location_address%%</span>: <?php _e('Location address of booked event', 'modern-events-calendar-lite'); ?></li>
|
|
|
88 |
<li><span>%%attendees_full_info%%</span>: <?php _e('Full Attendee info such as booking form data, name, email etc.', 'modern-events-calendar-lite'); ?></li>
|
89 |
<li><span>%%invoice_link%%</span>: <?php _e('Invoice Link', 'modern-events-calendar-lite'); ?></li>
|
90 |
<li><span>%%total_attendees%%</span>: <?php _e('Total Attendees', 'modern-events-calendar-lite'); ?></li>
|
@@ -127,6 +128,7 @@ $notifications = $this->main->get_notifications();
|
|
127 |
<li><span>%%book_date%%</span>: <?php _e('Booked date of event', 'modern-events-calendar-lite'); ?></li>
|
128 |
<li><span>%%book_time%%</span>: <?php _e('Booked time of event', 'modern-events-calendar-lite'); ?></li>
|
129 |
<li><span>%%book_price%%</span>: <?php _e('Booking Price', 'modern-events-calendar-lite'); ?></li>
|
|
|
130 |
<li><span>%%blog_name%%</span>: <?php _e('Your website title', 'modern-events-calendar-lite'); ?></li>
|
131 |
<li><span>%%blog_url%%</span>: <?php _e('Your website URL', 'modern-events-calendar-lite'); ?></li>
|
132 |
<li><span>%%blog_description%%</span>: <?php _e('Your website description', 'modern-events-calendar-lite'); ?></li>
|
@@ -140,6 +142,7 @@ $notifications = $this->main->get_notifications();
|
|
140 |
<li><span>%%event_organizer_email%%</span>: <?php _e('Organizer email of booked event', 'modern-events-calendar-lite'); ?></li>
|
141 |
<li><span>%%event_location_name%%</span>: <?php _e('Location name of booked event', 'modern-events-calendar-lite'); ?></li>
|
142 |
<li><span>%%event_location_address%%</span>: <?php _e('Location address of booked event', 'modern-events-calendar-lite'); ?></li>
|
|
|
143 |
<li><span>%%verification_link%%</span>: <?php _e('Email/Booking verification link.', 'modern-events-calendar-lite'); ?></li>
|
144 |
<li><span>%%total_attendees%%</span>: <?php _e('Total Attendees', 'modern-events-calendar-lite'); ?></li>
|
145 |
<li><span>%%ticket_name%%</span>: <?php _e('Ticket name', 'modern-events-calendar-lite'); ?></li>
|
@@ -169,6 +172,10 @@ $notifications = $this->main->get_notifications();
|
|
169 |
<i title="" class="dashicons-before dashicons-editor-help"></i>
|
170 |
</span>
|
171 |
</div>
|
|
|
|
|
|
|
|
|
172 |
<div class="mec-form-row">
|
173 |
<label for="mec_notifications_booking_confirmation_content"><?php _e('Email Content', 'modern-events-calendar-lite'); ?></label>
|
174 |
<?php wp_editor((isset($notifications['booking_confirmation']) ? stripslashes($notifications['booking_confirmation']['content']) : ''), 'mec_notifications_booking_confirmation_content', array('textarea_name'=>'mec[notifications][booking_confirmation][content]')); ?>
|
@@ -181,6 +188,7 @@ $notifications = $this->main->get_notifications();
|
|
181 |
<li><span>%%book_date%%</span>: <?php _e('Booked date of event', 'modern-events-calendar-lite'); ?></li>
|
182 |
<li><span>%%book_time%%</span>: <?php _e('Booked time of event', 'modern-events-calendar-lite'); ?></li>
|
183 |
<li><span>%%book_price%%</span>: <?php _e('Booking Price', 'modern-events-calendar-lite'); ?></li>
|
|
|
184 |
<li><span>%%blog_name%%</span>: <?php _e('Your website title', 'modern-events-calendar-lite'); ?></li>
|
185 |
<li><span>%%blog_url%%</span>: <?php _e('Your website URL', 'modern-events-calendar-lite'); ?></li>
|
186 |
<li><span>%%blog_description%%</span>: <?php _e('Your website description', 'modern-events-calendar-lite'); ?></li>
|
@@ -194,6 +202,7 @@ $notifications = $this->main->get_notifications();
|
|
194 |
<li><span>%%event_organizer_email%%</span>: <?php _e('Organizer email of booked event', 'modern-events-calendar-lite'); ?></li>
|
195 |
<li><span>%%event_location_name%%</span>: <?php _e('Location name of booked event', 'modern-events-calendar-lite'); ?></li>
|
196 |
<li><span>%%event_location_address%%</span>: <?php _e('Location address of booked event', 'modern-events-calendar-lite'); ?></li>
|
|
|
197 |
<li><span>%%cancellation_link%%</span>: <?php _e('Booking cancellation link.', 'modern-events-calendar-lite'); ?></li>
|
198 |
<li><span>%%invoice_link%%</span>: <?php _e('Invoice Link', 'modern-events-calendar-lite'); ?></li>
|
199 |
<li><span>%%total_attendees%%</span>: <?php _e('Total Attendees', 'modern-events-calendar-lite'); ?></li>
|
@@ -255,6 +264,7 @@ $notifications = $this->main->get_notifications();
|
|
255 |
<li><span>%%book_date%%</span>: <?php _e('Booked date of event', 'modern-events-calendar-lite'); ?></li>
|
256 |
<li><span>%%book_time%%</span>: <?php _e('Booked time of event', 'modern-events-calendar-lite'); ?></li>
|
257 |
<li><span>%%book_price%%</span>: <?php _e('Booking Price', 'modern-events-calendar-lite'); ?></li>
|
|
|
258 |
<li><span>%%blog_name%%</span>: <?php _e('Your website title', 'modern-events-calendar-lite'); ?></li>
|
259 |
<li><span>%%blog_url%%</span>: <?php _e('Your website URL', 'modern-events-calendar-lite'); ?></li>
|
260 |
<li><span>%%blog_description%%</span>: <?php _e('Your website description', 'modern-events-calendar-lite'); ?></li>
|
@@ -266,6 +276,7 @@ $notifications = $this->main->get_notifications();
|
|
266 |
<li><span>%%event_organizer_email%%</span>: <?php _e('Organizer email of booked event', 'modern-events-calendar-lite'); ?></li>
|
267 |
<li><span>%%event_location_name%%</span>: <?php _e('Location name of booked event', 'modern-events-calendar-lite'); ?></li>
|
268 |
<li><span>%%event_location_address%%</span>: <?php _e('Location address of booked event', 'modern-events-calendar-lite'); ?></li>
|
|
|
269 |
<li><span>%%admin_link%%</span>: <?php _e('Admin booking management link.', 'modern-events-calendar-lite'); ?></li>
|
270 |
<li><span>%%attendees_full_info%%</span>: <?php _e('Full Attendee info such as booking form data, name, email etc.', 'modern-events-calendar-lite'); ?></li>
|
271 |
<li><span>%%total_attendees%%</span>: <?php _e('Total Attendees', 'modern-events-calendar-lite'); ?></li>
|
@@ -315,6 +326,7 @@ $notifications = $this->main->get_notifications();
|
|
315 |
<li><span>%%book_date%%</span>: <?php _e('Booked date of event', 'modern-events-calendar-lite'); ?></li>
|
316 |
<li><span>%%book_time%%</span>: <?php _e('Booked time of event', 'modern-events-calendar-lite'); ?></li>
|
317 |
<li><span>%%book_price%%</span>: <?php _e('Booking Price', 'modern-events-calendar-lite'); ?></li>
|
|
|
318 |
<li><span>%%blog_name%%</span>: <?php _e('Your website title', 'modern-events-calendar-lite'); ?></li>
|
319 |
<li><span>%%blog_url%%</span>: <?php _e('Your website URL', 'modern-events-calendar-lite'); ?></li>
|
320 |
<li><span>%%blog_description%%</span>: <?php _e('Your website description', 'modern-events-calendar-lite'); ?></li>
|
@@ -326,6 +338,7 @@ $notifications = $this->main->get_notifications();
|
|
326 |
<li><span>%%event_organizer_email%%</span>: <?php _e('Organizer email of booked event', 'modern-events-calendar-lite'); ?></li>
|
327 |
<li><span>%%event_location_name%%</span>: <?php _e('Location name of booked event', 'modern-events-calendar-lite'); ?></li>
|
328 |
<li><span>%%event_location_address%%</span>: <?php _e('Location address of booked event', 'modern-events-calendar-lite'); ?></li>
|
|
|
329 |
<li><span>%%admin_link%%</span>: <?php _e('Admin booking management link.', 'modern-events-calendar-lite'); ?></li>
|
330 |
<li><span>%%attendees_full_info%%</span>: <?php _e('Full Attendee info such as booking form data, name, email etc.', 'modern-events-calendar-lite'); ?></li>
|
331 |
<li><span>%%total_attendees%%</span>: <?php _e('Total Attendees', 'modern-events-calendar-lite'); ?></li>
|
@@ -385,6 +398,7 @@ $notifications = $this->main->get_notifications();
|
|
385 |
<li><span>%%book_date%%</span>: <?php _e('Booked date of event', 'modern-events-calendar-lite'); ?></li>
|
386 |
<li><span>%%book_time%%</span>: <?php _e('Booked time of event', 'modern-events-calendar-lite'); ?></li>
|
387 |
<li><span>%%book_price%%</span>: <?php _e('Booking Price', 'modern-events-calendar-lite'); ?></li>
|
|
|
388 |
<li><span>%%blog_name%%</span>: <?php _e('Your website title', 'modern-events-calendar-lite'); ?></li>
|
389 |
<li><span>%%blog_url%%</span>: <?php _e('Your website URL', 'modern-events-calendar-lite'); ?></li>
|
390 |
<li><span>%%blog_description%%</span>: <?php _e('Your website description', 'modern-events-calendar-lite'); ?></li>
|
@@ -396,6 +410,7 @@ $notifications = $this->main->get_notifications();
|
|
396 |
<li><span>%%event_organizer_email%%</span>: <?php _e('Organizer email of booked event', 'modern-events-calendar-lite'); ?></li>
|
397 |
<li><span>%%event_location_name%%</span>: <?php _e('Location name of booked event', 'modern-events-calendar-lite'); ?></li>
|
398 |
<li><span>%%event_location_address%%</span>: <?php _e('Location address of booked event', 'modern-events-calendar-lite'); ?></li>
|
|
|
399 |
<li><span>%%cancellation_link%%</span>: <?php _e('Booking cancellation link.', 'modern-events-calendar-lite'); ?></li>
|
400 |
<li><span>%%invoice_link%%</span>: <?php _e('Invoice Link', 'modern-events-calendar-lite'); ?></li>
|
401 |
<li><span>%%total_attendees%%</span>: <?php _e('Total Attendees', 'modern-events-calendar-lite'); ?></li>
|
10 |
<div class="mec-search-settings-wrap">
|
11 |
<i class="mec-sl-magnifier"></i>
|
12 |
<input id="mec-search-settings" type="text" placeholder="<?php esc_html_e('Search...' ,'modern-events-calendar-lite'); ?>">
|
13 |
+
</div>
|
14 |
<a href="" id="" class="dpr-btn dpr-save-btn"><?php _e('Save Changes', 'modern-events-calendar-lite'); ?></a>
|
15 |
</div>
|
16 |
|
18 |
<?php $this->main->get_sidebar_menu('notifications'); ?>
|
19 |
</div>
|
20 |
|
|
|
21 |
<div class="wns-be-main">
|
22 |
<div id="wns-be-notification"></div>
|
23 |
<div id="wns-be-content">
|
71 |
<li><span>%%book_date%%</span>: <?php _e('Booked date of event', 'modern-events-calendar-lite'); ?></li>
|
72 |
<li><span>%%book_time%%</span>: <?php _e('Booked time of event', 'modern-events-calendar-lite'); ?></li>
|
73 |
<li><span>%%book_price%%</span>: <?php _e('Booking Price', 'modern-events-calendar-lite'); ?></li>
|
74 |
+
<li><span>%%book_order_time%%</span>: <?php _e('Date and time of placing booking', 'modern-events-calendar-lite'); ?></li>
|
75 |
<li><span>%%blog_name%%</span>: <?php _e('Your website title', 'modern-events-calendar-lite'); ?></li>
|
76 |
<li><span>%%blog_url%%</span>: <?php _e('Your website URL', 'modern-events-calendar-lite'); ?></li>
|
77 |
<li><span>%%blog_description%%</span>: <?php _e('Your website description', 'modern-events-calendar-lite'); ?></li>
|
85 |
<li><span>%%event_organizer_email%%</span>: <?php _e('Organizer email of booked event', 'modern-events-calendar-lite'); ?></li>
|
86 |
<li><span>%%event_location_name%%</span>: <?php _e('Location name of booked event', 'modern-events-calendar-lite'); ?></li>
|
87 |
<li><span>%%event_location_address%%</span>: <?php _e('Location address of booked event', 'modern-events-calendar-lite'); ?></li>
|
88 |
+
<li><span>%%event_featured_image%%</span>: <?php _e('Featured image of booked event', 'modern-events-calendar-lite'); ?></li>
|
89 |
<li><span>%%attendees_full_info%%</span>: <?php _e('Full Attendee info such as booking form data, name, email etc.', 'modern-events-calendar-lite'); ?></li>
|
90 |
<li><span>%%invoice_link%%</span>: <?php _e('Invoice Link', 'modern-events-calendar-lite'); ?></li>
|
91 |
<li><span>%%total_attendees%%</span>: <?php _e('Total Attendees', 'modern-events-calendar-lite'); ?></li>
|
128 |
<li><span>%%book_date%%</span>: <?php _e('Booked date of event', 'modern-events-calendar-lite'); ?></li>
|
129 |
<li><span>%%book_time%%</span>: <?php _e('Booked time of event', 'modern-events-calendar-lite'); ?></li>
|
130 |
<li><span>%%book_price%%</span>: <?php _e('Booking Price', 'modern-events-calendar-lite'); ?></li>
|
131 |
+
<li><span>%%book_order_time%%</span>: <?php _e('Date and time of placing booking', 'modern-events-calendar-lite'); ?></li>
|
132 |
<li><span>%%blog_name%%</span>: <?php _e('Your website title', 'modern-events-calendar-lite'); ?></li>
|
133 |
<li><span>%%blog_url%%</span>: <?php _e('Your website URL', 'modern-events-calendar-lite'); ?></li>
|
134 |
<li><span>%%blog_description%%</span>: <?php _e('Your website description', 'modern-events-calendar-lite'); ?></li>
|
142 |
<li><span>%%event_organizer_email%%</span>: <?php _e('Organizer email of booked event', 'modern-events-calendar-lite'); ?></li>
|
143 |
<li><span>%%event_location_name%%</span>: <?php _e('Location name of booked event', 'modern-events-calendar-lite'); ?></li>
|
144 |
<li><span>%%event_location_address%%</span>: <?php _e('Location address of booked event', 'modern-events-calendar-lite'); ?></li>
|
145 |
+
<li><span>%%event_featured_image%%</span>: <?php _e('Featured image of booked event', 'modern-events-calendar-lite'); ?></li>
|
146 |
<li><span>%%verification_link%%</span>: <?php _e('Email/Booking verification link.', 'modern-events-calendar-lite'); ?></li>
|
147 |
<li><span>%%total_attendees%%</span>: <?php _e('Total Attendees', 'modern-events-calendar-lite'); ?></li>
|
148 |
<li><span>%%ticket_name%%</span>: <?php _e('Ticket name', 'modern-events-calendar-lite'); ?></li>
|
172 |
<i title="" class="dashicons-before dashicons-editor-help"></i>
|
173 |
</span>
|
174 |
</div>
|
175 |
+
<div class="mec-form-row">
|
176 |
+
<input type="checkbox" name="mec[notifications][booking_confirmation][send_single_one_email]" value="1" id="mec_notifications_booking_confirmation_send_single_one_email" <?php echo ((isset($notifications['booking_confirmation']['send_single_one_email']) and $notifications['booking_confirmation']['send_single_one_email'] == 1) ? 'checked="checked"' : ''); ?> />
|
177 |
+
<label for="mec_notifications_booking_confirmation_send_single_one_email"><?php _e('Send One Single Email Only To First Attendee', 'modern-events-calendar-lite'); ?></label>
|
178 |
+
</div>
|
179 |
<div class="mec-form-row">
|
180 |
<label for="mec_notifications_booking_confirmation_content"><?php _e('Email Content', 'modern-events-calendar-lite'); ?></label>
|
181 |
<?php wp_editor((isset($notifications['booking_confirmation']) ? stripslashes($notifications['booking_confirmation']['content']) : ''), 'mec_notifications_booking_confirmation_content', array('textarea_name'=>'mec[notifications][booking_confirmation][content]')); ?>
|
188 |
<li><span>%%book_date%%</span>: <?php _e('Booked date of event', 'modern-events-calendar-lite'); ?></li>
|
189 |
<li><span>%%book_time%%</span>: <?php _e('Booked time of event', 'modern-events-calendar-lite'); ?></li>
|
190 |
<li><span>%%book_price%%</span>: <?php _e('Booking Price', 'modern-events-calendar-lite'); ?></li>
|
191 |
+
<li><span>%%book_order_time%%</span>: <?php _e('Date and time of placing booking', 'modern-events-calendar-lite'); ?></li>
|
192 |
<li><span>%%blog_name%%</span>: <?php _e('Your website title', 'modern-events-calendar-lite'); ?></li>
|
193 |
<li><span>%%blog_url%%</span>: <?php _e('Your website URL', 'modern-events-calendar-lite'); ?></li>
|
194 |
<li><span>%%blog_description%%</span>: <?php _e('Your website description', 'modern-events-calendar-lite'); ?></li>
|
202 |
<li><span>%%event_organizer_email%%</span>: <?php _e('Organizer email of booked event', 'modern-events-calendar-lite'); ?></li>
|
203 |
<li><span>%%event_location_name%%</span>: <?php _e('Location name of booked event', 'modern-events-calendar-lite'); ?></li>
|
204 |
<li><span>%%event_location_address%%</span>: <?php _e('Location address of booked event', 'modern-events-calendar-lite'); ?></li>
|
205 |
+
<li><span>%%event_featured_image%%</span>: <?php _e('Featured image of booked event', 'modern-events-calendar-lite'); ?></li>
|
206 |
<li><span>%%cancellation_link%%</span>: <?php _e('Booking cancellation link.', 'modern-events-calendar-lite'); ?></li>
|
207 |
<li><span>%%invoice_link%%</span>: <?php _e('Invoice Link', 'modern-events-calendar-lite'); ?></li>
|
208 |
<li><span>%%total_attendees%%</span>: <?php _e('Total Attendees', 'modern-events-calendar-lite'); ?></li>
|
264 |
<li><span>%%book_date%%</span>: <?php _e('Booked date of event', 'modern-events-calendar-lite'); ?></li>
|
265 |
<li><span>%%book_time%%</span>: <?php _e('Booked time of event', 'modern-events-calendar-lite'); ?></li>
|
266 |
<li><span>%%book_price%%</span>: <?php _e('Booking Price', 'modern-events-calendar-lite'); ?></li>
|
267 |
+
<li><span>%%book_order_time%%</span>: <?php _e('Date and time of placing booking', 'modern-events-calendar-lite'); ?></li>
|
268 |
<li><span>%%blog_name%%</span>: <?php _e('Your website title', 'modern-events-calendar-lite'); ?></li>
|
269 |
<li><span>%%blog_url%%</span>: <?php _e('Your website URL', 'modern-events-calendar-lite'); ?></li>
|
270 |
<li><span>%%blog_description%%</span>: <?php _e('Your website description', 'modern-events-calendar-lite'); ?></li>
|
276 |
<li><span>%%event_organizer_email%%</span>: <?php _e('Organizer email of booked event', 'modern-events-calendar-lite'); ?></li>
|
277 |
<li><span>%%event_location_name%%</span>: <?php _e('Location name of booked event', 'modern-events-calendar-lite'); ?></li>
|
278 |
<li><span>%%event_location_address%%</span>: <?php _e('Location address of booked event', 'modern-events-calendar-lite'); ?></li>
|
279 |
+
<li><span>%%event_featured_image%%</span>: <?php _e('Featured image of booked event', 'modern-events-calendar-lite'); ?></li>
|
280 |
<li><span>%%admin_link%%</span>: <?php _e('Admin booking management link.', 'modern-events-calendar-lite'); ?></li>
|
281 |
<li><span>%%attendees_full_info%%</span>: <?php _e('Full Attendee info such as booking form data, name, email etc.', 'modern-events-calendar-lite'); ?></li>
|
282 |
<li><span>%%total_attendees%%</span>: <?php _e('Total Attendees', 'modern-events-calendar-lite'); ?></li>
|
326 |
<li><span>%%book_date%%</span>: <?php _e('Booked date of event', 'modern-events-calendar-lite'); ?></li>
|
327 |
<li><span>%%book_time%%</span>: <?php _e('Booked time of event', 'modern-events-calendar-lite'); ?></li>
|
328 |
<li><span>%%book_price%%</span>: <?php _e('Booking Price', 'modern-events-calendar-lite'); ?></li>
|
329 |
+
<li><span>%%book_order_time%%</span>: <?php _e('Date and time of placing booking', 'modern-events-calendar-lite'); ?></li>
|
330 |
<li><span>%%blog_name%%</span>: <?php _e('Your website title', 'modern-events-calendar-lite'); ?></li>
|
331 |
<li><span>%%blog_url%%</span>: <?php _e('Your website URL', 'modern-events-calendar-lite'); ?></li>
|
332 |
<li><span>%%blog_description%%</span>: <?php _e('Your website description', 'modern-events-calendar-lite'); ?></li>
|
338 |
<li><span>%%event_organizer_email%%</span>: <?php _e('Organizer email of booked event', 'modern-events-calendar-lite'); ?></li>
|
339 |
<li><span>%%event_location_name%%</span>: <?php _e('Location name of booked event', 'modern-events-calendar-lite'); ?></li>
|
340 |
<li><span>%%event_location_address%%</span>: <?php _e('Location address of booked event', 'modern-events-calendar-lite'); ?></li>
|
341 |
+
<li><span>%%event_featured_image%%</span>: <?php _e('Featured image of booked event', 'modern-events-calendar-lite'); ?></li>
|
342 |
<li><span>%%admin_link%%</span>: <?php _e('Admin booking management link.', 'modern-events-calendar-lite'); ?></li>
|
343 |
<li><span>%%attendees_full_info%%</span>: <?php _e('Full Attendee info such as booking form data, name, email etc.', 'modern-events-calendar-lite'); ?></li>
|
344 |
<li><span>%%total_attendees%%</span>: <?php _e('Total Attendees', 'modern-events-calendar-lite'); ?></li>
|
398 |
<li><span>%%book_date%%</span>: <?php _e('Booked date of event', 'modern-events-calendar-lite'); ?></li>
|
399 |
<li><span>%%book_time%%</span>: <?php _e('Booked time of event', 'modern-events-calendar-lite'); ?></li>
|
400 |
<li><span>%%book_price%%</span>: <?php _e('Booking Price', 'modern-events-calendar-lite'); ?></li>
|
401 |
+
<li><span>%%book_order_time%%</span>: <?php _e('Date and time of placing booking', 'modern-events-calendar-lite'); ?></li>
|
402 |
<li><span>%%blog_name%%</span>: <?php _e('Your website title', 'modern-events-calendar-lite'); ?></li>
|
403 |
<li><span>%%blog_url%%</span>: <?php _e('Your website URL', 'modern-events-calendar-lite'); ?></li>
|
404 |
<li><span>%%blog_description%%</span>: <?php _e('Your website description', 'modern-events-calendar-lite'); ?></li>
|
410 |
<li><span>%%event_organizer_email%%</span>: <?php _e('Organizer email of booked event', 'modern-events-calendar-lite'); ?></li>
|
411 |
<li><span>%%event_location_name%%</span>: <?php _e('Location name of booked event', 'modern-events-calendar-lite'); ?></li>
|
412 |
<li><span>%%event_location_address%%</span>: <?php _e('Location address of booked event', 'modern-events-calendar-lite'); ?></li>
|
413 |
+
<li><span>%%event_featured_image%%</span>: <?php _e('Featured image of booked event', 'modern-events-calendar-lite'); ?></li>
|
414 |
<li><span>%%cancellation_link%%</span>: <?php _e('Booking cancellation link.', 'modern-events-calendar-lite'); ?></li>
|
415 |
<li><span>%%invoice_link%%</span>: <?php _e('Invoice Link', 'modern-events-calendar-lite'); ?></li>
|
416 |
<li><span>%%total_attendees%%</span>: <?php _e('Total Attendees', 'modern-events-calendar-lite'); ?></li>
|
app/features/mec/settings.php
CHANGED
@@ -121,6 +121,26 @@ if ( $get_n_option != 'open' ) :
|
|
121 |
</div>
|
122 |
</div>
|
123 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
124 |
<div class="mec-form-row">
|
125 |
<label class="mec-col-3"><?php _e('Exclude Date Suffix', 'modern-events-calendar-lite'); ?></label>
|
126 |
<label>
|
121 |
</div>
|
122 |
</div>
|
123 |
|
124 |
+
<!-- Start Sender Name -->
|
125 |
+
<div class="mec-form-row">
|
126 |
+
<label class="mec-col-3" for="mec_settings_booking_sender_name"><?php _e('Sender Name', 'modern-events-calendar-lite'); ?></label>
|
127 |
+
<div class="mec-col-4">
|
128 |
+
<input type="text" id="mec_settings_booking_sender_name" name="mec[settings][booking_sender_name]"
|
129 |
+
value="<?php echo (isset($settings['booking_sender_name']) and trim($settings['booking_sender_name'])) ? $settings['booking_sender_name'] : ''; ?>" placeholder="<?php _e('e.g. Webnus', 'modern-events-calendar-lite'); ?>"/>
|
130 |
+
</div>
|
131 |
+
</div>
|
132 |
+
<!-- End Sender Name -->
|
133 |
+
|
134 |
+
<!-- Start Sender Email -->
|
135 |
+
<div class="mec-form-row">
|
136 |
+
<label class="mec-col-3" for="mec_settings_booking_sender_email"><?php _e('Sender Email', 'modern-events-calendar-lite'); ?></label>
|
137 |
+
<div class="mec-col-4">
|
138 |
+
<input type="text" id="mec_settings_booking_sender_email" name="mec[settings][booking_sender_email]"
|
139 |
+
value="<?php echo (isset($settings['booking_sender_email']) and trim($settings['booking_sender_email'])) ? $settings['booking_sender_email'] : ''; ?>" placeholder="<?php _e('e.g. info@webnus.biz', 'modern-events-calendar-lite'); ?>"/>
|
140 |
+
</div>
|
141 |
+
</div>
|
142 |
+
<!-- End Sender Email -->
|
143 |
+
|
144 |
<div class="mec-form-row">
|
145 |
<label class="mec-col-3"><?php _e('Exclude Date Suffix', 'modern-events-calendar-lite'); ?></label>
|
146 |
<label>
|
app/features/update.php
CHANGED
@@ -60,6 +60,7 @@ class MEC_feature_update extends MEC_base
|
|
60 |
if(version_compare($version, '4.3.0', '<')) $this->version430();
|
61 |
if(version_compare($version, '4.4.6', '<')) $this->version446();
|
62 |
if(version_compare($version, '4.6.1', '<')) $this->version461();
|
|
|
63 |
|
64 |
// Update to latest version to prevent running the code twice
|
65 |
update_option('mec_version', $this->main->get_version());
|
@@ -297,4 +298,18 @@ class MEC_feature_update extends MEC_base
|
|
297 |
update_option('mec_options', $current);
|
298 |
}
|
299 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
300 |
}
|
60 |
if(version_compare($version, '4.3.0', '<')) $this->version430();
|
61 |
if(version_compare($version, '4.4.6', '<')) $this->version446();
|
62 |
if(version_compare($version, '4.6.1', '<')) $this->version461();
|
63 |
+
if(version_compare($version, '4.9.0', '<')) $this->version490();
|
64 |
|
65 |
// Update to latest version to prevent running the code twice
|
66 |
update_option('mec_version', $this->main->get_version());
|
298 |
update_option('mec_options', $current);
|
299 |
}
|
300 |
}
|
301 |
+
|
302 |
+
public function version490()
|
303 |
+
{
|
304 |
+
// Get Booking Posts
|
305 |
+
$args = array(
|
306 |
+
'post_type' => 'mec-books',
|
307 |
+
);
|
308 |
+
$bookings = get_posts($args);
|
309 |
+
foreach ($bookings as $id => $booking) {
|
310 |
+
$event_id = get_post_meta($booking->ID, 'mec_event_id', true);
|
311 |
+
$location_id = get_post_meta($event_id, 'mec_location_id', true);
|
312 |
+
if ( !empty( $location_id )) update_post_meta($booking->ID, 'mec_booking_location', $location_id);
|
313 |
+
}
|
314 |
+
}
|
315 |
}
|
app/libraries/book.php
CHANGED
@@ -23,14 +23,14 @@ class MEC_book extends MEC_base
|
|
23 |
{
|
24 |
// Import MEC Main
|
25 |
$this->main = $this->getMain();
|
26 |
-
|
27 |
// MEC Book Post Type Name
|
28 |
$this->PT = $this->main->get_book_post_type();
|
29 |
-
|
30 |
// MEC Settings
|
31 |
$this->settings = $this->main->get_settings();
|
32 |
}
|
33 |
-
|
34 |
/**
|
35 |
* Get invoice (Ticket price + Fees) based on tickets
|
36 |
* @author Webnus <info@webnus.biz>
|
@@ -50,13 +50,13 @@ class MEC_book extends MEC_base
|
|
50 |
{
|
51 |
if(!$count) continue;
|
52 |
if(!isset($event_tickets[$ticket_id])) continue;
|
53 |
-
|
54 |
$total_tickets_count += $count;
|
55 |
-
|
56 |
$t_price = (isset($event_tickets[$ticket_id]) and isset($event_tickets[$ticket_id]['price'])) ? $this->get_ticket_price($event_tickets[$ticket_id], current_time('Y-m-d')) : 0;
|
57 |
$total = $total+($t_price*$count);
|
58 |
}
|
59 |
-
|
60 |
$details[] = array('amount'=>$total, 'description'=>sprintf(__('%s Price', 'modern-events-calendar-lite'), $this->main->m('tickets', __('Tickets', 'modern-events-calendar-lite'))), 'type'=>'tickets');
|
61 |
|
62 |
// Default variations amount
|
@@ -82,33 +82,33 @@ class MEC_book extends MEC_base
|
|
82 |
$total_variations_amount += $variation_amount;
|
83 |
}
|
84 |
}
|
85 |
-
|
86 |
// Default fee amount
|
87 |
$total_fee_amount = 0;
|
88 |
-
|
89 |
// Fees module is enabled
|
90 |
if(isset($this->settings['taxes_fees_status']) and $this->settings['taxes_fees_status'])
|
91 |
{
|
92 |
$fees = $this->get_fees($event_id);
|
93 |
-
|
94 |
foreach($fees as $key=>$fee)
|
95 |
{
|
96 |
$fee_amount = 0;
|
97 |
if(!is_numeric($key)) continue;
|
98 |
-
|
99 |
if($fee['type'] == 'percent') $fee_amount += (($total+$total_variations_amount)*$fee['amount'])/100;
|
100 |
elseif($fee['type'] == 'amount') $fee_amount += ($total_tickets_count*$fee['amount']);
|
101 |
elseif($fee['type'] == 'amount_per_booking') $fee_amount += $fee['amount'];
|
102 |
|
103 |
$details[] = array('amount'=>$fee_amount, 'description'=>__($fee['title'], 'modern-events-calendar-lite'), 'type'=>'fee');
|
104 |
-
|
105 |
$total_fee_amount += $fee_amount;
|
106 |
}
|
107 |
}
|
108 |
-
|
109 |
return array('total'=>($total+$total_fee_amount+$total_variations_amount), 'details'=>$details);
|
110 |
}
|
111 |
-
|
112 |
/**
|
113 |
* Get fees of a certain event
|
114 |
* @author Webnus <info@webnus.biz>
|
@@ -119,7 +119,7 @@ class MEC_book extends MEC_base
|
|
119 |
{
|
120 |
$fees_global_inheritance = get_post_meta($event_id, 'mec_fees_global_inheritance', true);
|
121 |
if(is_string($fees_global_inheritance) and trim($fees_global_inheritance) == '') $fees_global_inheritance = 1;
|
122 |
-
|
123 |
// Event fees
|
124 |
$fees = get_post_meta($event_id, 'mec_fees', true);
|
125 |
|
@@ -128,10 +128,10 @@ class MEC_book extends MEC_base
|
|
128 |
{
|
129 |
$fees = isset($this->settings['fees']) ? $this->settings['fees'] : array();
|
130 |
}
|
131 |
-
|
132 |
return $fees;
|
133 |
}
|
134 |
-
|
135 |
/**
|
136 |
* Save a temporary booking
|
137 |
* @author Webnus <info@webnus.biz>
|
@@ -142,10 +142,10 @@ class MEC_book extends MEC_base
|
|
142 |
{
|
143 |
$transaction_id = $this->get_transaction_id();
|
144 |
update_option($transaction_id, $data);
|
145 |
-
|
146 |
return $transaction_id;
|
147 |
}
|
148 |
-
|
149 |
/**
|
150 |
* Generate a transaction id for bookings
|
151 |
* @author Webnus <info@webnus.biz>
|
@@ -155,13 +155,13 @@ class MEC_book extends MEC_base
|
|
155 |
{
|
156 |
$string = str_shuffle('ABCDEFGHJKLMNOPQRSTUVWXYZ');
|
157 |
$key = substr($string, 0, 3).mt_rand(10000, 99999);
|
158 |
-
|
159 |
// If the key exist then generate another key
|
160 |
if(get_option($key, false) !== false) $key = $this->get_transaction_id();
|
161 |
-
|
162 |
return $key;
|
163 |
}
|
164 |
-
|
165 |
/**
|
166 |
* Get transaction data
|
167 |
* @author Webnus <info@webnus.biz>
|
@@ -172,7 +172,7 @@ class MEC_book extends MEC_base
|
|
172 |
{
|
173 |
return get_option($transaction_id, array());
|
174 |
}
|
175 |
-
|
176 |
/**
|
177 |
* Update a transaction
|
178 |
* @author Webnus <info@webnus.biz>
|
@@ -183,7 +183,7 @@ class MEC_book extends MEC_base
|
|
183 |
{
|
184 |
update_option($transaction_id, $data);
|
185 |
}
|
186 |
-
|
187 |
/**
|
188 |
* Add a booking
|
189 |
* @author Webnus <info@webnus.biz>
|
@@ -197,32 +197,39 @@ class MEC_book extends MEC_base
|
|
197 |
// Transaction Data
|
198 |
$transaction = $this->get_transaction($transaction_id);
|
199 |
$event_id = $transaction['event_id'];
|
200 |
-
|
201 |
// Default values
|
202 |
if(!isset($values['post_date'])) $values['post_date'] = $transaction['date'];
|
203 |
if(!isset($values['post_status'])) $values['post_status'] = 'publish';
|
204 |
-
|
205 |
$book_id = wp_insert_post($values);
|
|
|
206 |
|
207 |
// Publish it
|
208 |
wp_publish_post($book_id);
|
209 |
-
|
210 |
update_post_meta($book_id, 'mec_verified', 0);
|
211 |
update_post_meta($book_id, 'mec_verification_key', md5(time().mt_rand(10000, 99999)));
|
212 |
update_post_meta($book_id, 'mec_cancellation_key', md5(time().mt_rand(10000, 99999)));
|
213 |
-
|
214 |
update_post_meta($book_id, 'mec_confirmed', 0);
|
215 |
update_post_meta($book_id, 'mec_transaction_id', $transaction_id);
|
216 |
-
|
217 |
update_post_meta($book_id, 'mec_event_id', $event_id);
|
218 |
update_post_meta($book_id, 'mec_date', $transaction['date']);
|
219 |
update_post_meta($book_id, 'mec_ticket_id', $ticket_ids);
|
220 |
update_post_meta($book_id, 'mec_booking_time', current_time('Y-m-d H:i:s'));
|
|
|
|
|
|
|
|
|
|
|
|
|
221 |
if(isset($values['mec_attendees'])) update_post_meta($book_id, 'mec_attendees', $values['mec_attendees']);
|
222 |
-
|
223 |
$price = isset($transaction['price']) ? $transaction['price'] : (isset($transaction['total']) ? $transaction['total'] : 0);
|
224 |
update_post_meta($book_id, 'mec_price', $price);
|
225 |
-
|
226 |
// A coupon applied
|
227 |
if(isset($transaction['coupon']))
|
228 |
{
|
@@ -233,37 +240,37 @@ class MEC_book extends MEC_base
|
|
233 |
update_post_meta($book_id, 'mec_coupon_code', $transaction['coupon']);
|
234 |
}
|
235 |
}
|
236 |
-
|
237 |
// Fires after adding a new booking to send notifications etc
|
238 |
do_action('mec_booking_added', $book_id);
|
239 |
-
|
240 |
// Auto verification for free bookings is enabled
|
241 |
if($price <= 0 and isset($this->settings['booking_auto_verify_free']) and $this->settings['booking_auto_verify_free'] == 1)
|
242 |
{
|
243 |
$this->verify($book_id);
|
244 |
}
|
245 |
-
|
246 |
// Auto verification for paid bookings is enabled
|
247 |
if($price > 0 and isset($this->settings['booking_auto_verify_paid']) and $this->settings['booking_auto_verify_paid'] == 1)
|
248 |
{
|
249 |
$this->verify($book_id);
|
250 |
}
|
251 |
-
|
252 |
// Auto confirmation for free bookings is enabled
|
253 |
if($price <= 0 and isset($this->settings['booking_auto_confirm_free']) and $this->settings['booking_auto_confirm_free'] == 1)
|
254 |
{
|
255 |
$this->confirm($book_id);
|
256 |
}
|
257 |
-
|
258 |
// Auto confirmation for paid bookings is enabled
|
259 |
if($price > 0 and isset($this->settings['booking_auto_confirm_paid']) and $this->settings['booking_auto_confirm_paid'] == 1)
|
260 |
{
|
261 |
$this->confirm($book_id);
|
262 |
}
|
263 |
-
|
264 |
return $book_id;
|
265 |
}
|
266 |
-
|
267 |
/**
|
268 |
* Confirm a booking
|
269 |
* @author Webnus <info@webnus.biz>
|
@@ -273,13 +280,13 @@ class MEC_book extends MEC_base
|
|
273 |
public function confirm($book_id)
|
274 |
{
|
275 |
update_post_meta($book_id, 'mec_confirmed', 1);
|
276 |
-
|
277 |
// Fires after confirming a booking to send notifications etc.
|
278 |
do_action('mec_booking_confirmed', $book_id);
|
279 |
-
|
280 |
return true;
|
281 |
}
|
282 |
-
|
283 |
/**
|
284 |
* Reject a booking
|
285 |
* @author Webnus <info@webnus.biz>
|
@@ -289,13 +296,13 @@ class MEC_book extends MEC_base
|
|
289 |
public function reject($book_id)
|
290 |
{
|
291 |
update_post_meta($book_id, 'mec_confirmed', -1);
|
292 |
-
|
293 |
// Fires after rejecting a booking to send notifications etc.
|
294 |
do_action('mec_booking_rejected', $book_id);
|
295 |
-
|
296 |
return true;
|
297 |
}
|
298 |
-
|
299 |
/**
|
300 |
* Make a booking pending
|
301 |
* @author Webnus <info@webnus.biz>
|
@@ -305,13 +312,13 @@ class MEC_book extends MEC_base
|
|
305 |
public function pending($book_id)
|
306 |
{
|
307 |
update_post_meta($book_id, 'mec_confirmed', 0);
|
308 |
-
|
309 |
// Fires after pending a booking to send notifications etc.
|
310 |
do_action('mec_booking_pended', $book_id);
|
311 |
-
|
312 |
return true;
|
313 |
}
|
314 |
-
|
315 |
/**
|
316 |
* Verify a booking
|
317 |
* @author Webnus <info@webnus.biz>
|
@@ -321,13 +328,13 @@ class MEC_book extends MEC_base
|
|
321 |
public function verify($book_id)
|
322 |
{
|
323 |
update_post_meta($book_id, 'mec_verified', 1);
|
324 |
-
|
325 |
// Fires after verifying a booking to send notifications etc.
|
326 |
do_action('mec_booking_verified', $book_id);
|
327 |
-
|
328 |
return true;
|
329 |
}
|
330 |
-
|
331 |
/**
|
332 |
* Cancel a booking
|
333 |
* @author Webnus <info@webnus.biz>
|
@@ -341,10 +348,10 @@ class MEC_book extends MEC_base
|
|
341 |
|
342 |
// Fires after canceling a booking to send notifications etc.
|
343 |
do_action('mec_booking_canceled', $book_id);
|
344 |
-
|
345 |
return true;
|
346 |
}
|
347 |
-
|
348 |
/**
|
349 |
* Waiting a booking
|
350 |
* @author Webnus <info@webnus.biz>
|
@@ -354,13 +361,13 @@ class MEC_book extends MEC_base
|
|
354 |
public function waiting($book_id)
|
355 |
{
|
356 |
update_post_meta($book_id, 'mec_verified', 0);
|
357 |
-
|
358 |
// Fires after waiting a booking to send notifications etc.
|
359 |
do_action('mec_booking_waiting', $book_id);
|
360 |
-
|
361 |
return true;
|
362 |
}
|
363 |
-
|
364 |
/**
|
365 |
* Returns ticket availabilities of an event for a certain date
|
366 |
* @author Webnus <info@webnus.biz>
|
@@ -380,13 +387,13 @@ class MEC_book extends MEC_base
|
|
380 |
if($mode == 'reservation') return 0;
|
381 |
else return $availability;
|
382 |
}
|
383 |
-
|
384 |
$booking_options = get_post_meta($event_id, 'mec_booking', true);
|
385 |
if(!is_array($booking_options)) $booking_options = array();
|
386 |
-
|
387 |
$total_bookings_limit = (isset($booking_options['bookings_limit']) and trim($booking_options['bookings_limit'])) ? $booking_options['bookings_limit'] : 100;
|
388 |
$bookings_limit_unlimited = isset($booking_options['bookings_limit_unlimited']) ? $booking_options['bookings_limit_unlimited'] : 0;
|
389 |
-
|
390 |
if($bookings_limit_unlimited == '1') $total_bookings_limit = '-1';
|
391 |
|
392 |
// Total Booking Limit
|
@@ -394,9 +401,9 @@ class MEC_book extends MEC_base
|
|
394 |
|
395 |
$ex = explode(':', $date);
|
396 |
$date = $ex[0];
|
397 |
-
|
398 |
$ex = explode('-', $date);
|
399 |
-
|
400 |
$year = $ex[0];
|
401 |
$month = $ex[1];
|
402 |
$day = $ex[2];
|
@@ -491,10 +498,10 @@ class MEC_book extends MEC_base
|
|
491 |
|
492 |
return $new_availability;
|
493 |
}
|
494 |
-
|
495 |
return $availability;
|
496 |
}
|
497 |
-
|
498 |
/**
|
499 |
* Check validity of a coupon
|
500 |
* @author Webnus <info@webnus.biz>
|
@@ -506,7 +513,7 @@ class MEC_book extends MEC_base
|
|
506 |
{
|
507 |
$term = get_term_by('name', $coupon, 'mec_coupon');
|
508 |
$coupon_id = isset($term->term_id) ? $term->term_id : 0;
|
509 |
-
|
510 |
// Coupon is not exists
|
511 |
if(!$coupon_id) return 0;
|
512 |
|
@@ -536,7 +543,7 @@ class MEC_book extends MEC_base
|
|
536 |
|
537 |
return $status;
|
538 |
}
|
539 |
-
|
540 |
/**
|
541 |
* Apply a coupon to a transaction
|
542 |
* @author Webnus <info@webnus.biz>
|
@@ -554,21 +561,21 @@ class MEC_book extends MEC_base
|
|
554 |
|
555 |
$total = $transaction['total'];
|
556 |
$discount = $this->coupon_get_discount($coupon, $total);
|
557 |
-
|
558 |
$after_discount = $total - $discount;
|
559 |
-
|
560 |
$transaction['price_details']['total'] = $after_discount;
|
561 |
$transaction['price_details']['details'][] = array('amount'=>$discount, 'description'=>__('Discount', 'modern-events-calendar-lite'), 'type'=>'discount');
|
562 |
-
|
563 |
$transaction['discount'] = $discount;
|
564 |
$transaction['price'] = $after_discount;
|
565 |
$transaction['coupon'] = $coupon;
|
566 |
-
|
567 |
$this->update_transaction($transaction_id, $transaction);
|
568 |
-
|
569 |
return $discount;
|
570 |
}
|
571 |
-
|
572 |
/**
|
573 |
* Get discount of a coupon
|
574 |
* @author Webnus <info@webnus.biz>
|
@@ -580,19 +587,19 @@ class MEC_book extends MEC_base
|
|
580 |
{
|
581 |
$term = get_term_by('name', $coupon, 'mec_coupon');
|
582 |
$coupon_id = isset($term->term_id) ? $term->term_id : 0;
|
583 |
-
|
584 |
// Coupon is not exists
|
585 |
if(!$coupon_id) return 0;
|
586 |
-
|
587 |
$discount_type = get_term_meta($coupon_id, 'discount_type', true);
|
588 |
$discount = get_term_meta($coupon_id, 'discount', true);
|
589 |
|
590 |
if($discount_type == 'percent') $discount_amount = ($total*$discount)/100;
|
591 |
else $discount_amount = min($discount, $total);
|
592 |
-
|
593 |
return $discount_amount;
|
594 |
}
|
595 |
-
|
596 |
/**
|
597 |
* Get id of a coupon by coupon number
|
598 |
* @author Webnus <info@webnus.biz>
|
@@ -603,7 +610,7 @@ class MEC_book extends MEC_base
|
|
603 |
{
|
604 |
$term = get_term_by('name', $coupon, 'mec_coupon');
|
605 |
$coupon_id = isset($term->term_id) ? $term->term_id : 0;
|
606 |
-
|
607 |
return $coupon_id;
|
608 |
}
|
609 |
|
@@ -621,7 +628,7 @@ class MEC_book extends MEC_base
|
|
621 |
|
622 |
$url = $main->URL('site');
|
623 |
$url = $main->add_qs_var('method', 'mec-invoice', $url);
|
624 |
-
return $main->add_qs_var('id', $transaction_id, $url);
|
625 |
}
|
626 |
|
627 |
public function get_bookings_by_transaction_id($transaction_id)
|
@@ -655,7 +662,7 @@ class MEC_book extends MEC_base
|
|
655 |
{
|
656 |
$attendees = get_post_meta($book_id, 'mec_attendees', true);
|
657 |
$count = 0;
|
658 |
-
|
659 |
if(is_array($attendees))
|
660 |
{
|
661 |
foreach($attendees as $key => $attendee)
|
23 |
{
|
24 |
// Import MEC Main
|
25 |
$this->main = $this->getMain();
|
26 |
+
|
27 |
// MEC Book Post Type Name
|
28 |
$this->PT = $this->main->get_book_post_type();
|
29 |
+
|
30 |
// MEC Settings
|
31 |
$this->settings = $this->main->get_settings();
|
32 |
}
|
33 |
+
|
34 |
/**
|
35 |
* Get invoice (Ticket price + Fees) based on tickets
|
36 |
* @author Webnus <info@webnus.biz>
|
50 |
{
|
51 |
if(!$count) continue;
|
52 |
if(!isset($event_tickets[$ticket_id])) continue;
|
53 |
+
|
54 |
$total_tickets_count += $count;
|
55 |
+
|
56 |
$t_price = (isset($event_tickets[$ticket_id]) and isset($event_tickets[$ticket_id]['price'])) ? $this->get_ticket_price($event_tickets[$ticket_id], current_time('Y-m-d')) : 0;
|
57 |
$total = $total+($t_price*$count);
|
58 |
}
|
59 |
+
|
60 |
$details[] = array('amount'=>$total, 'description'=>sprintf(__('%s Price', 'modern-events-calendar-lite'), $this->main->m('tickets', __('Tickets', 'modern-events-calendar-lite'))), 'type'=>'tickets');
|
61 |
|
62 |
// Default variations amount
|
82 |
$total_variations_amount += $variation_amount;
|
83 |
}
|
84 |
}
|
85 |
+
|
86 |
// Default fee amount
|
87 |
$total_fee_amount = 0;
|
88 |
+
|
89 |
// Fees module is enabled
|
90 |
if(isset($this->settings['taxes_fees_status']) and $this->settings['taxes_fees_status'])
|
91 |
{
|
92 |
$fees = $this->get_fees($event_id);
|
93 |
+
|
94 |
foreach($fees as $key=>$fee)
|
95 |
{
|
96 |
$fee_amount = 0;
|
97 |
if(!is_numeric($key)) continue;
|
98 |
+
|
99 |
if($fee['type'] == 'percent') $fee_amount += (($total+$total_variations_amount)*$fee['amount'])/100;
|
100 |
elseif($fee['type'] == 'amount') $fee_amount += ($total_tickets_count*$fee['amount']);
|
101 |
elseif($fee['type'] == 'amount_per_booking') $fee_amount += $fee['amount'];
|
102 |
|
103 |
$details[] = array('amount'=>$fee_amount, 'description'=>__($fee['title'], 'modern-events-calendar-lite'), 'type'=>'fee');
|
104 |
+
|
105 |
$total_fee_amount += $fee_amount;
|
106 |
}
|
107 |
}
|
108 |
+
|
109 |
return array('total'=>($total+$total_fee_amount+$total_variations_amount), 'details'=>$details);
|
110 |
}
|
111 |
+
|
112 |
/**
|
113 |
* Get fees of a certain event
|
114 |
* @author Webnus <info@webnus.biz>
|
119 |
{
|
120 |
$fees_global_inheritance = get_post_meta($event_id, 'mec_fees_global_inheritance', true);
|
121 |
if(is_string($fees_global_inheritance) and trim($fees_global_inheritance) == '') $fees_global_inheritance = 1;
|
122 |
+
|
123 |
// Event fees
|
124 |
$fees = get_post_meta($event_id, 'mec_fees', true);
|
125 |
|
128 |
{
|
129 |
$fees = isset($this->settings['fees']) ? $this->settings['fees'] : array();
|
130 |
}
|
131 |
+
|
132 |
return $fees;
|
133 |
}
|
134 |
+
|
135 |
/**
|
136 |
* Save a temporary booking
|
137 |
* @author Webnus <info@webnus.biz>
|
142 |
{
|
143 |
$transaction_id = $this->get_transaction_id();
|
144 |
update_option($transaction_id, $data);
|
145 |
+
|
146 |
return $transaction_id;
|
147 |
}
|
148 |
+
|
149 |
/**
|
150 |
* Generate a transaction id for bookings
|
151 |
* @author Webnus <info@webnus.biz>
|
155 |
{
|
156 |
$string = str_shuffle('ABCDEFGHJKLMNOPQRSTUVWXYZ');
|
157 |
$key = substr($string, 0, 3).mt_rand(10000, 99999);
|
158 |
+
|
159 |
// If the key exist then generate another key
|
160 |
if(get_option($key, false) !== false) $key = $this->get_transaction_id();
|
161 |
+
|
162 |
return $key;
|
163 |
}
|
164 |
+
|
165 |
/**
|
166 |
* Get transaction data
|
167 |
* @author Webnus <info@webnus.biz>
|
172 |
{
|
173 |
return get_option($transaction_id, array());
|
174 |
}
|
175 |
+
|
176 |
/**
|
177 |
* Update a transaction
|
178 |
* @author Webnus <info@webnus.biz>
|
183 |
{
|
184 |
update_option($transaction_id, $data);
|
185 |
}
|
186 |
+
|
187 |
/**
|
188 |
* Add a booking
|
189 |
* @author Webnus <info@webnus.biz>
|
197 |
// Transaction Data
|
198 |
$transaction = $this->get_transaction($transaction_id);
|
199 |
$event_id = $transaction['event_id'];
|
200 |
+
|
201 |
// Default values
|
202 |
if(!isset($values['post_date'])) $values['post_date'] = $transaction['date'];
|
203 |
if(!isset($values['post_status'])) $values['post_status'] = 'publish';
|
204 |
+
|
205 |
$book_id = wp_insert_post($values);
|
206 |
+
$location_id = get_post_meta($event_id, 'mec_location_id', true);
|
207 |
|
208 |
// Publish it
|
209 |
wp_publish_post($book_id);
|
210 |
+
|
211 |
update_post_meta($book_id, 'mec_verified', 0);
|
212 |
update_post_meta($book_id, 'mec_verification_key', md5(time().mt_rand(10000, 99999)));
|
213 |
update_post_meta($book_id, 'mec_cancellation_key', md5(time().mt_rand(10000, 99999)));
|
214 |
+
|
215 |
update_post_meta($book_id, 'mec_confirmed', 0);
|
216 |
update_post_meta($book_id, 'mec_transaction_id', $transaction_id);
|
217 |
+
|
218 |
update_post_meta($book_id, 'mec_event_id', $event_id);
|
219 |
update_post_meta($book_id, 'mec_date', $transaction['date']);
|
220 |
update_post_meta($book_id, 'mec_ticket_id', $ticket_ids);
|
221 |
update_post_meta($book_id, 'mec_booking_time', current_time('Y-m-d H:i:s'));
|
222 |
+
|
223 |
+
// For Badget Bubble Notification Alert Count From It.
|
224 |
+
update_post_meta($book_id, 'mec_book_date_submit', date('YmdHis', current_time('timestamp', 0)));
|
225 |
+
|
226 |
+
if (!empty($location_id)) update_post_meta($book_id, 'mec_booking_location', $location_id);
|
227 |
+
|
228 |
if(isset($values['mec_attendees'])) update_post_meta($book_id, 'mec_attendees', $values['mec_attendees']);
|
229 |
+
|
230 |
$price = isset($transaction['price']) ? $transaction['price'] : (isset($transaction['total']) ? $transaction['total'] : 0);
|
231 |
update_post_meta($book_id, 'mec_price', $price);
|
232 |
+
|
233 |
// A coupon applied
|
234 |
if(isset($transaction['coupon']))
|
235 |
{
|
240 |
update_post_meta($book_id, 'mec_coupon_code', $transaction['coupon']);
|
241 |
}
|
242 |
}
|
243 |
+
|
244 |
// Fires after adding a new booking to send notifications etc
|
245 |
do_action('mec_booking_added', $book_id);
|
246 |
+
|
247 |
// Auto verification for free bookings is enabled
|
248 |
if($price <= 0 and isset($this->settings['booking_auto_verify_free']) and $this->settings['booking_auto_verify_free'] == 1)
|
249 |
{
|
250 |
$this->verify($book_id);
|
251 |
}
|
252 |
+
|
253 |
// Auto verification for paid bookings is enabled
|
254 |
if($price > 0 and isset($this->settings['booking_auto_verify_paid']) and $this->settings['booking_auto_verify_paid'] == 1)
|
255 |
{
|
256 |
$this->verify($book_id);
|
257 |
}
|
258 |
+
|
259 |
// Auto confirmation for free bookings is enabled
|
260 |
if($price <= 0 and isset($this->settings['booking_auto_confirm_free']) and $this->settings['booking_auto_confirm_free'] == 1)
|
261 |
{
|
262 |
$this->confirm($book_id);
|
263 |
}
|
264 |
+
|
265 |
// Auto confirmation for paid bookings is enabled
|
266 |
if($price > 0 and isset($this->settings['booking_auto_confirm_paid']) and $this->settings['booking_auto_confirm_paid'] == 1)
|
267 |
{
|
268 |
$this->confirm($book_id);
|
269 |
}
|
270 |
+
|
271 |
return $book_id;
|
272 |
}
|
273 |
+
|
274 |
/**
|
275 |
* Confirm a booking
|
276 |
* @author Webnus <info@webnus.biz>
|
280 |
public function confirm($book_id)
|
281 |
{
|
282 |
update_post_meta($book_id, 'mec_confirmed', 1);
|
283 |
+
|
284 |
// Fires after confirming a booking to send notifications etc.
|
285 |
do_action('mec_booking_confirmed', $book_id);
|
286 |
+
|
287 |
return true;
|
288 |
}
|
289 |
+
|
290 |
/**
|
291 |
* Reject a booking
|
292 |
* @author Webnus <info@webnus.biz>
|
296 |
public function reject($book_id)
|
297 |
{
|
298 |
update_post_meta($book_id, 'mec_confirmed', -1);
|
299 |
+
|
300 |
// Fires after rejecting a booking to send notifications etc.
|
301 |
do_action('mec_booking_rejected', $book_id);
|
302 |
+
|
303 |
return true;
|
304 |
}
|
305 |
+
|
306 |
/**
|
307 |
* Make a booking pending
|
308 |
* @author Webnus <info@webnus.biz>
|
312 |
public function pending($book_id)
|
313 |
{
|
314 |
update_post_meta($book_id, 'mec_confirmed', 0);
|
315 |
+
|
316 |
// Fires after pending a booking to send notifications etc.
|
317 |
do_action('mec_booking_pended', $book_id);
|
318 |
+
|
319 |
return true;
|
320 |
}
|
321 |
+
|
322 |
/**
|
323 |
* Verify a booking
|
324 |
* @author Webnus <info@webnus.biz>
|
328 |
public function verify($book_id)
|
329 |
{
|
330 |
update_post_meta($book_id, 'mec_verified', 1);
|
331 |
+
|
332 |
// Fires after verifying a booking to send notifications etc.
|
333 |
do_action('mec_booking_verified', $book_id);
|
334 |
+
|
335 |
return true;
|
336 |
}
|
337 |
+
|
338 |
/**
|
339 |
* Cancel a booking
|
340 |
* @author Webnus <info@webnus.biz>
|
348 |
|
349 |
// Fires after canceling a booking to send notifications etc.
|
350 |
do_action('mec_booking_canceled', $book_id);
|
351 |
+
|
352 |
return true;
|
353 |
}
|
354 |
+
|
355 |
/**
|
356 |
* Waiting a booking
|
357 |
* @author Webnus <info@webnus.biz>
|
361 |
public function waiting($book_id)
|
362 |
{
|
363 |
update_post_meta($book_id, 'mec_verified', 0);
|
364 |
+
|
365 |
// Fires after waiting a booking to send notifications etc.
|
366 |
do_action('mec_booking_waiting', $book_id);
|
367 |
+
|
368 |
return true;
|
369 |
}
|
370 |
+
|
371 |
/**
|
372 |
* Returns ticket availabilities of an event for a certain date
|
373 |
* @author Webnus <info@webnus.biz>
|
387 |
if($mode == 'reservation') return 0;
|
388 |
else return $availability;
|
389 |
}
|
390 |
+
|
391 |
$booking_options = get_post_meta($event_id, 'mec_booking', true);
|
392 |
if(!is_array($booking_options)) $booking_options = array();
|
393 |
+
|
394 |
$total_bookings_limit = (isset($booking_options['bookings_limit']) and trim($booking_options['bookings_limit'])) ? $booking_options['bookings_limit'] : 100;
|
395 |
$bookings_limit_unlimited = isset($booking_options['bookings_limit_unlimited']) ? $booking_options['bookings_limit_unlimited'] : 0;
|
396 |
+
|
397 |
if($bookings_limit_unlimited == '1') $total_bookings_limit = '-1';
|
398 |
|
399 |
// Total Booking Limit
|
401 |
|
402 |
$ex = explode(':', $date);
|
403 |
$date = $ex[0];
|
404 |
+
|
405 |
$ex = explode('-', $date);
|
406 |
+
|
407 |
$year = $ex[0];
|
408 |
$month = $ex[1];
|
409 |
$day = $ex[2];
|
498 |
|
499 |
return $new_availability;
|
500 |
}
|
501 |
+
|
502 |
return $availability;
|
503 |
}
|
504 |
+
|
505 |
/**
|
506 |
* Check validity of a coupon
|
507 |
* @author Webnus <info@webnus.biz>
|
513 |
{
|
514 |
$term = get_term_by('name', $coupon, 'mec_coupon');
|
515 |
$coupon_id = isset($term->term_id) ? $term->term_id : 0;
|
516 |
+
|
517 |
// Coupon is not exists
|
518 |
if(!$coupon_id) return 0;
|
519 |
|
543 |
|
544 |
return $status;
|
545 |
}
|
546 |
+
|
547 |
/**
|
548 |
* Apply a coupon to a transaction
|
549 |
* @author Webnus <info@webnus.biz>
|
561 |
|
562 |
$total = $transaction['total'];
|
563 |
$discount = $this->coupon_get_discount($coupon, $total);
|
564 |
+
|
565 |
$after_discount = $total - $discount;
|
566 |
+
|
567 |
$transaction['price_details']['total'] = $after_discount;
|
568 |
$transaction['price_details']['details'][] = array('amount'=>$discount, 'description'=>__('Discount', 'modern-events-calendar-lite'), 'type'=>'discount');
|
569 |
+
|
570 |
$transaction['discount'] = $discount;
|
571 |
$transaction['price'] = $after_discount;
|
572 |
$transaction['coupon'] = $coupon;
|
573 |
+
|
574 |
$this->update_transaction($transaction_id, $transaction);
|
575 |
+
|
576 |
return $discount;
|
577 |
}
|
578 |
+
|
579 |
/**
|
580 |
* Get discount of a coupon
|
581 |
* @author Webnus <info@webnus.biz>
|
587 |
{
|
588 |
$term = get_term_by('name', $coupon, 'mec_coupon');
|
589 |
$coupon_id = isset($term->term_id) ? $term->term_id : 0;
|
590 |
+
|
591 |
// Coupon is not exists
|
592 |
if(!$coupon_id) return 0;
|
593 |
+
|
594 |
$discount_type = get_term_meta($coupon_id, 'discount_type', true);
|
595 |
$discount = get_term_meta($coupon_id, 'discount', true);
|
596 |
|
597 |
if($discount_type == 'percent') $discount_amount = ($total*$discount)/100;
|
598 |
else $discount_amount = min($discount, $total);
|
599 |
+
|
600 |
return $discount_amount;
|
601 |
}
|
602 |
+
|
603 |
/**
|
604 |
* Get id of a coupon by coupon number
|
605 |
* @author Webnus <info@webnus.biz>
|
610 |
{
|
611 |
$term = get_term_by('name', $coupon, 'mec_coupon');
|
612 |
$coupon_id = isset($term->term_id) ? $term->term_id : 0;
|
613 |
+
|
614 |
return $coupon_id;
|
615 |
}
|
616 |
|
628 |
|
629 |
$url = $main->URL('site');
|
630 |
$url = $main->add_qs_var('method', 'mec-invoice', $url);
|
631 |
+
return apply_filters('mec_booking_invoice_url', $main->add_qs_var('id', $transaction_id, $url), $transaction_id);
|
632 |
}
|
633 |
|
634 |
public function get_bookings_by_transaction_id($transaction_id)
|
662 |
{
|
663 |
$attendees = get_post_meta($book_id, 'mec_attendees', true);
|
664 |
$count = 0;
|
665 |
+
|
666 |
if(is_array($attendees))
|
667 |
{
|
668 |
foreach($attendees as $key => $attendee)
|
app/libraries/main.php
CHANGED
@@ -343,7 +343,8 @@ class MEC_main extends MEC_base
|
|
343 |
'available_spot'=>__('Available Spot', 'modern-events-calendar-lite'),
|
344 |
'carousel'=>__('Carousel View', 'modern-events-calendar-lite'),
|
345 |
'slider'=>__('Slider View', 'modern-events-calendar-lite'),
|
346 |
-
'timeline'=>__('Timeline View', 'modern-events-calendar-lite')
|
|
|
347 |
);
|
348 |
|
349 |
return apply_filters('mec_calendar_skins', $skins);
|
@@ -1444,6 +1445,7 @@ class MEC_main extends MEC_base
|
|
1444 |
{
|
1445 |
// $infowindow_thumb = trim($event->data->thumbnails['thumbnail']) ? '<div class="mec-event-image">'.$event->data->thumbnails['thumbnail'].'</div>' : '';
|
1446 |
$infowindow_thumb = trim($event->data->featured_image['thumbnail']) ? '<div class="mec-event-image"><img src="'.$event->data->featured_image['thumbnail'].'" alt="'.$event->data->title.'" /></div>' : '';
|
|
|
1447 |
|
1448 |
$content = '
|
1449 |
<div class="mec-wrap">
|
@@ -1451,7 +1453,7 @@ class MEC_main extends MEC_base
|
|
1451 |
<article class="'.((isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : '').'mec-event-article mec-clear">
|
1452 |
'.$infowindow_thumb.'
|
1453 |
<a data-event-id="'.$event->data->ID.'" href="'.$this->get_event_date_permalink($event->data->permalink, $event->date['start']['date']).'"><div class="mec-event-date mec-color"><i class="mec-sl-calendar"></i> '.$this->date_label((isset($event->date['start']) ? $event->date['start'] : NULL), (isset($event->date['end']) ? $event->date['end'] : NULL), $date_format).'</div></a>
|
1454 |
-
<h4 class="mec-event-title"><a data-event-id="'.$event->data->ID.'" class="mec-color-hover" href="'.$this->get_event_date_permalink($event->data->permalink, (isset($event->date['start']) ? $event->date['start']['date'] : NULL)).'">'.$event->data->title.'</a
|
1455 |
</article>
|
1456 |
</div>
|
1457 |
</div>';
|
@@ -5455,25 +5457,56 @@ class MEC_main extends MEC_base
|
|
5455 |
}
|
5456 |
|
5457 |
/**
|
5458 |
-
*
|
5459 |
* @author Webnus <info@webnus.biz>
|
5460 |
-
* @param string $
|
5461 |
-
* @param
|
5462 |
-
* @
|
5463 |
-
* @return boolean
|
5464 |
*/
|
5465 |
-
public function
|
5466 |
{
|
5467 |
-
if(
|
5468 |
|
5469 |
-
|
|
|
5470 |
|
5471 |
-
|
5472 |
-
$
|
|
|
|
|
|
|
|
|
5473 |
|
5474 |
-
|
|
|
5475 |
|
5476 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5477 |
}
|
5478 |
|
5479 |
/**
|
@@ -5515,4 +5548,10 @@ class MEC_main extends MEC_base
|
|
5515 |
|
5516 |
return $check && $check->format($format) === $date;
|
5517 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
5518 |
}
|
343 |
'available_spot'=>__('Available Spot', 'modern-events-calendar-lite'),
|
344 |
'carousel'=>__('Carousel View', 'modern-events-calendar-lite'),
|
345 |
'slider'=>__('Slider View', 'modern-events-calendar-lite'),
|
346 |
+
'timeline'=>__('Timeline View', 'modern-events-calendar-lite'),
|
347 |
+
'tile'=>__('Tile View', 'modern-events-calendar-lite')
|
348 |
);
|
349 |
|
350 |
return apply_filters('mec_calendar_skins', $skins);
|
1445 |
{
|
1446 |
// $infowindow_thumb = trim($event->data->thumbnails['thumbnail']) ? '<div class="mec-event-image">'.$event->data->thumbnails['thumbnail'].'</div>' : '';
|
1447 |
$infowindow_thumb = trim($event->data->featured_image['thumbnail']) ? '<div class="mec-event-image"><img src="'.$event->data->featured_image['thumbnail'].'" alt="'.$event->data->title.'" /></div>' : '';
|
1448 |
+
$event_start_date = !empty($event->date['start']['date']) ? $event->date['start']['date'] : '';
|
1449 |
|
1450 |
$content = '
|
1451 |
<div class="mec-wrap">
|
1453 |
<article class="'.((isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : '').'mec-event-article mec-clear">
|
1454 |
'.$infowindow_thumb.'
|
1455 |
<a data-event-id="'.$event->data->ID.'" href="'.$this->get_event_date_permalink($event->data->permalink, $event->date['start']['date']).'"><div class="mec-event-date mec-color"><i class="mec-sl-calendar"></i> '.$this->date_label((isset($event->date['start']) ? $event->date['start'] : NULL), (isset($event->date['end']) ? $event->date['end'] : NULL), $date_format).'</div></a>
|
1456 |
+
<h4 class="mec-event-title"><a data-event-id="'.$event->data->ID.'" class="mec-color-hover" href="'.$this->get_event_date_permalink($event->data->permalink, (isset($event->date['start']) ? $event->date['start']['date'] : NULL)).'">'.$event->data->title.'</a>'.$this->get_flags($event->data->ID, $event_start_date).'</h4>
|
1457 |
</article>
|
1458 |
</div>
|
1459 |
</div>';
|
5457 |
}
|
5458 |
|
5459 |
/**
|
5460 |
+
* Return SoldOut Or A Few Tickets Label
|
5461 |
* @author Webnus <info@webnus.biz>
|
5462 |
+
* @param string $event_id
|
5463 |
+
* @param string $date
|
5464 |
+
* @return string|boolean
|
|
|
5465 |
*/
|
5466 |
+
public function get_flags($event_id, $date)
|
5467 |
{
|
5468 |
+
if((!isset($event_id) or !trim($event_id)) or (!isset($date) or !trim($date))) return false;
|
5469 |
|
5470 |
+
// MEC Settings
|
5471 |
+
$settings = $this->get_settings();
|
5472 |
|
5473 |
+
// Booking on single page is disabled
|
5474 |
+
if(!isset($settings['booking_status']) or (isset($settings['booking_status']) and !$settings['booking_status'])) return false;
|
5475 |
+
|
5476 |
+
// No Tickets
|
5477 |
+
$tickets = get_post_meta($event_id, 'mec_tickets', true);
|
5478 |
+
if(!is_array($tickets) or (is_array($tickets) and !count($tickets))) return false;
|
5479 |
|
5480 |
+
// Convert Date
|
5481 |
+
$date = $this->get_start_of_multiple_days($event_id, $date);
|
5482 |
|
5483 |
+
$book = $this->getBook();
|
5484 |
+
$is_soldout = $book->get_tickets_availability($event_id, $date);
|
5485 |
+
|
5486 |
+
if(isset($is_soldout))
|
5487 |
+
{
|
5488 |
+
$output_tag = ' <span class="mec-event-title-soldout"><span class=soldout>%%title%%</span></span> ';
|
5489 |
+
|
5490 |
+
// Check For Return SoldOut Label Exist.
|
5491 |
+
if(current($is_soldout) === 0) return str_replace('%%title%%', __('Sold Out', 'modern-events-calendar-lite'), $output_tag);
|
5492 |
+
|
5493 |
+
$booking_options = get_post_meta($event_id, 'mec_booking', true);
|
5494 |
+
$total_bookings_limit = (isset($booking_options['bookings_limit']) and trim($booking_options['bookings_limit'])) ? $booking_options['bookings_limit'] : 100;
|
5495 |
+
$bookings_limit_unlimited = isset($booking_options['bookings_limit_unlimited']) ? $booking_options['bookings_limit_unlimited'] : 0;
|
5496 |
+
if($bookings_limit_unlimited == '1') $total_bookings_limit = -1;
|
5497 |
+
|
5498 |
+
// Check For Return A Few Label Exist.
|
5499 |
+
if(($total_bookings_limit > 0) and (current($is_soldout) <= round(((10 * $total_bookings_limit) / 100)))) return str_replace('%%title%%', __('Last Few Tickets', 'modern-events-calendar-lite'), $output_tag);
|
5500 |
+
|
5501 |
+
return false;
|
5502 |
+
}
|
5503 |
+
|
5504 |
+
return false;
|
5505 |
+
}
|
5506 |
+
|
5507 |
+
public function is_soldout($event_id, $date)
|
5508 |
+
{
|
5509 |
+
return $this->get_flags($event_id, $date);
|
5510 |
}
|
5511 |
|
5512 |
/**
|
5548 |
|
5549 |
return $check && $check->format($format) === $date;
|
5550 |
}
|
5551 |
+
|
5552 |
+
public function get_start_of_multiple_days($event_id, $date)
|
5553 |
+
{
|
5554 |
+
$db = $this->getDB();
|
5555 |
+
return $db->select("SELECT `dstart` FROM `#__mec_dates` WHERE `post_id`='".$event_id."' AND ((`dstart`='".$date."') OR (`dstart`<'".$date."' AND `dend`>='".$date."')) ORDER BY `dstart` ASC LIMIT 1", 'loadResult');
|
5556 |
+
}
|
5557 |
}
|
app/libraries/notifications.php
CHANGED
@@ -129,9 +129,7 @@ class MEC_notifications extends MEC_base
|
|
129 |
public function booking_notification($book_id)
|
130 |
{
|
131 |
$booking_notification = apply_filters('mec_booking_notification', true);
|
132 |
-
if(!$booking_notification)
|
133 |
-
return;
|
134 |
-
}
|
135 |
|
136 |
$booker_id = get_post_field('post_author', $book_id);
|
137 |
$booker = get_userdata($booker_id);
|
@@ -226,6 +224,14 @@ class MEC_notifications extends MEC_base
|
|
226 |
|
227 |
if(!isset($booker->user_email)) return false;
|
228 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
229 |
$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');
|
230 |
$headers = array();
|
231 |
|
@@ -272,6 +278,9 @@ class MEC_notifications extends MEC_base
|
|
272 |
// Send the mail
|
273 |
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']);
|
274 |
|
|
|
|
|
|
|
275 |
// For prevention of email repeat send
|
276 |
$done_emails[] = $to;
|
277 |
}
|
@@ -524,7 +533,6 @@ class MEC_notifications extends MEC_base
|
|
524 |
|
525 |
// Send the mail
|
526 |
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']);
|
527 |
-
|
528 |
}
|
529 |
|
530 |
// Remove the HTML Email filter
|
@@ -745,13 +753,15 @@ class MEC_notifications extends MEC_base
|
|
745 |
// Book Data
|
746 |
$transaction_id = get_post_meta($book_id, 'mec_transaction_id', true);
|
747 |
|
|
|
|
|
|
|
748 |
$book_date = get_post_meta($book_id, 'mec_date', true);
|
749 |
if(trim($book_date) and strpos($book_date, ':') !== false)
|
750 |
{
|
751 |
$ex = explode(':', $book_date);
|
752 |
if(isset($ex[0]) and isset($ex[1]) and trim($ex[0]) != trim($ex[1]))
|
753 |
{
|
754 |
-
$date_format = get_option('date_format');
|
755 |
$book_date = sprintf(__('%s to %s', 'modern-events-calendar-lite'), date_i18n($date_format, strtotime($ex[0])), date_i18n($date_format, strtotime($ex[1])));
|
756 |
}
|
757 |
else $book_date = get_the_date('', $book_id);
|
@@ -760,6 +770,10 @@ class MEC_notifications extends MEC_base
|
|
760 |
|
761 |
$message = str_replace('%%book_date%%', $book_date, $message);
|
762 |
|
|
|
|
|
|
|
|
|
763 |
// Book Time
|
764 |
$start_seconds = get_post_meta($event_id, 'mec_start_day_seconds', true);
|
765 |
$event_start_time = get_post_meta($event_id, 'mec_allday', true) ? __('All of the day', 'modern-events-calendar-lite') : $this->main->get_time($start_seconds);
|
@@ -799,6 +813,12 @@ class MEC_notifications extends MEC_base
|
|
799 |
$message = str_replace('%%event_start_date%%', get_post_meta($event_id, 'mec_start_date', true), $message);
|
800 |
$message = str_replace('%%event_end_date%%', get_post_meta($event_id, 'mec_end_date', true), $message);
|
801 |
|
|
|
|
|
|
|
|
|
|
|
|
|
802 |
$message = str_replace('%%event_organizer_name%%', (isset($organizer->name) ? $organizer->name : ''), $message);
|
803 |
$message = str_replace('%%event_organizer_tel%%', get_term_meta($organizer_id, 'tel', true), $message);
|
804 |
$message = str_replace('%%event_organizer_email%%', get_term_meta($organizer_id, 'email', true), $message);
|
@@ -875,7 +895,8 @@ class MEC_notifications extends MEC_base
|
|
875 |
$event_info = get_post($event_id);
|
876 |
$event_content = trim($event_info->post_content) ? strip_shortcodes(strip_tags($event_info->post_content)) : $event_title;
|
877 |
|
878 |
-
$
|
|
|
879 |
$ical_export_link = '<a class="mec-events-gcal mec-events-button mec-color mec-bg-color-hover mec-border-color" href="' . $this->main->ical_URL_email($event_id, $book_id, get_the_date('Y-m-d', $book_id)) . '">'. __('+ iCal export', 'modern-events-calendar-lite') . '</a>';
|
880 |
|
881 |
$message = str_replace('%%google_calendar_link%%', $google_caneldar_link, $message);
|
@@ -924,7 +945,7 @@ class MEC_notifications extends MEC_base
|
|
924 |
$attendees_full_info .= __('Name', 'modern-events-calendar-lite').': '.((isset($attendee['name']) and trim($attendee['name'])) ? $attendee['name'] : '---')."\r\n";
|
925 |
$attendees_full_info .= __('Email', 'modern-events-calendar-lite').': '.((isset($attendee['email']) and trim($attendee['email'])) ? $attendee['email'] : '---')."\r\n";
|
926 |
|
927 |
-
if(count($reg_form))
|
928 |
{
|
929 |
foreach($reg_form as $field_id=>$value)
|
930 |
{
|
@@ -953,4 +974,24 @@ class MEC_notifications extends MEC_base
|
|
953 |
|
954 |
return $attendees_full_info;
|
955 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
956 |
}
|
129 |
public function booking_notification($book_id)
|
130 |
{
|
131 |
$booking_notification = apply_filters('mec_booking_notification', true);
|
132 |
+
if(!$booking_notification) return false;
|
|
|
|
|
133 |
|
134 |
$booker_id = get_post_field('post_author', $book_id);
|
135 |
$booker = get_userdata($booker_id);
|
224 |
|
225 |
if(!isset($booker->user_email)) return false;
|
226 |
|
227 |
+
$price = get_post_meta($book_id, 'mec_price', true);
|
228 |
+
|
229 |
+
// Auto confirmation for free bookings is enabled so don't send the confirmation email
|
230 |
+
if($price <= 0 and isset($this->settings['booking_auto_confirm_free']) and $this->settings['booking_auto_confirm_free'] == 1) return false;
|
231 |
+
|
232 |
+
// Auto confirmation for paid bookings is enabled so don't send the confirmation email
|
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 |
|
278 |
// Send the mail
|
279 |
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']);
|
280 |
|
281 |
+
// Send One Single Email Only To First Attendee
|
282 |
+
if(isset($this->notif_settings['booking_confirmation']['send_single_one_email'])) break;
|
283 |
+
|
284 |
// For prevention of email repeat send
|
285 |
$done_emails[] = $to;
|
286 |
}
|
533 |
|
534 |
// Send the mail
|
535 |
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']);
|
|
|
536 |
}
|
537 |
|
538 |
// Remove the HTML Email filter
|
753 |
// Book Data
|
754 |
$transaction_id = get_post_meta($book_id, 'mec_transaction_id', true);
|
755 |
|
756 |
+
$date_format = get_option('date_format');
|
757 |
+
$time_format = get_option('time_format');
|
758 |
+
|
759 |
$book_date = get_post_meta($book_id, 'mec_date', true);
|
760 |
if(trim($book_date) and strpos($book_date, ':') !== false)
|
761 |
{
|
762 |
$ex = explode(':', $book_date);
|
763 |
if(isset($ex[0]) and isset($ex[1]) and trim($ex[0]) != trim($ex[1]))
|
764 |
{
|
|
|
765 |
$book_date = sprintf(__('%s to %s', 'modern-events-calendar-lite'), date_i18n($date_format, strtotime($ex[0])), date_i18n($date_format, strtotime($ex[1])));
|
766 |
}
|
767 |
else $book_date = get_the_date('', $book_id);
|
770 |
|
771 |
$message = str_replace('%%book_date%%', $book_date, $message);
|
772 |
|
773 |
+
// Order Time
|
774 |
+
$order_time = get_post_meta($book_id, 'mec_booking_time', true);
|
775 |
+
$message = str_replace('%%book_order_time%%', date_i18n($date_format.' '.$time_format, strtotime($order_time)), $message);
|
776 |
+
|
777 |
// Book Time
|
778 |
$start_seconds = get_post_meta($event_id, 'mec_start_day_seconds', true);
|
779 |
$event_start_time = get_post_meta($event_id, 'mec_allday', true) ? __('All of the day', 'modern-events-calendar-lite') : $this->main->get_time($start_seconds);
|
813 |
$message = str_replace('%%event_start_date%%', get_post_meta($event_id, 'mec_start_date', true), $message);
|
814 |
$message = str_replace('%%event_end_date%%', get_post_meta($event_id, 'mec_end_date', true), $message);
|
815 |
|
816 |
+
$featured_image = '';
|
817 |
+
$thumbnail_url = get_the_post_thumbnail_url($event_id, 'medium');
|
818 |
+
if(trim($thumbnail_url)) $featured_image = '<img src="'.$thumbnail_url.'">';
|
819 |
+
|
820 |
+
$message = str_replace('%%event_featured_image%%', $featured_image, $message);
|
821 |
+
|
822 |
$message = str_replace('%%event_organizer_name%%', (isset($organizer->name) ? $organizer->name : ''), $message);
|
823 |
$message = str_replace('%%event_organizer_tel%%', get_term_meta($organizer_id, 'tel', true), $message);
|
824 |
$message = str_replace('%%event_organizer_email%%', get_term_meta($organizer_id, 'email', true), $message);
|
895 |
$event_info = get_post($event_id);
|
896 |
$event_content = trim($event_info->post_content) ? strip_shortcodes(strip_tags($event_info->post_content)) : $event_title;
|
897 |
|
898 |
+
$google_caneldar_location = get_term_meta($location_id, 'address', true);
|
899 |
+
$google_caneldar_link = '<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= ' . $event_title . '&dates='. gmdate('Ymd\\THi00\\Z', ($start_time - $gmt_offset_seconds)) . '/' . gmdate('Ymd\\THi00\\Z', ($end_time - $gmt_offset_seconds)) . '&details=' . urlencode($event_content) . (trim($google_caneldar_location) ? '&location=' . urlencode($google_caneldar_location) : ''). '" target="_blank">' . __('+ Add to Google Calendar', 'modern-events-calendar-lite') . '</a>';
|
900 |
$ical_export_link = '<a class="mec-events-gcal mec-events-button mec-color mec-bg-color-hover mec-border-color" href="' . $this->main->ical_URL_email($event_id, $book_id, get_the_date('Y-m-d', $book_id)) . '">'. __('+ iCal export', 'modern-events-calendar-lite') . '</a>';
|
901 |
|
902 |
$message = str_replace('%%google_calendar_link%%', $google_caneldar_link, $message);
|
945 |
$attendees_full_info .= __('Name', 'modern-events-calendar-lite').': '.((isset($attendee['name']) and trim($attendee['name'])) ? $attendee['name'] : '---')."\r\n";
|
946 |
$attendees_full_info .= __('Email', 'modern-events-calendar-lite').': '.((isset($attendee['email']) and trim($attendee['email'])) ? $attendee['email'] : '---')."\r\n";
|
947 |
|
948 |
+
if(is_array($reg_form) and count($reg_form))
|
949 |
{
|
950 |
foreach($reg_form as $field_id=>$value)
|
951 |
{
|
974 |
|
975 |
return $attendees_full_info;
|
976 |
}
|
977 |
+
|
978 |
+
/**
|
979 |
+
* Change Notification Sender Name
|
980 |
+
* @return string
|
981 |
+
*/
|
982 |
+
public function notification_sender_name($email_form)
|
983 |
+
{
|
984 |
+
$email_form = (isset($this->settings['booking_sender_name']) and trim($this->settings['booking_sender_name'])) ? trim($this->settings['booking_sender_name']) : $email_form;
|
985 |
+
return $email_form;
|
986 |
+
}
|
987 |
+
|
988 |
+
/**
|
989 |
+
* Change Notification Sender Email
|
990 |
+
* @return string
|
991 |
+
*/
|
992 |
+
public function notification_sender_email($email)
|
993 |
+
{
|
994 |
+
$email = (isset($this->settings['booking_sender_email']) and trim($this->settings['booking_sender_email'])) ? trim($this->settings['booking_sender_email']) : $email;
|
995 |
+
return $email;
|
996 |
+
}
|
997 |
}
|
app/libraries/render.php
CHANGED
@@ -24,6 +24,7 @@ class MEC_render extends MEC_base
|
|
24 |
add_image_size('thumblist', '300', '300', true);
|
25 |
add_image_size('meccarouselthumb', '474', '324', true);
|
26 |
add_image_size('gridsquare', '391', '260', true);
|
|
|
27 |
|
28 |
// Import MEC skin class
|
29 |
MEC::import('app.libraries.skins');
|
@@ -488,6 +489,7 @@ class MEC_render extends MEC_base
|
|
488 |
$medium = get_the_post_thumbnail($post_id, 'medium', array('data-mec-postid'=>$post_id));
|
489 |
$large = get_the_post_thumbnail($post_id, 'large', array('data-mec-postid'=>$post_id));
|
490 |
$full = get_the_post_thumbnail($post_id, 'full', array('data-mec-postid'=>$post_id));
|
|
|
491 |
|
492 |
if(trim($thumbnail) == '' and trim($medium) != '') $thumbnail = preg_replace("/height=\"[0-9]*\"/", 'height="150"', preg_replace("/width=\"[0-9]*\"/", 'width="150"', $medium));
|
493 |
elseif(trim($thumbnail) == '' and trim($large) != '') $thumbnail = preg_replace("/height=\"[0-9]*\"/", 'height="150"', preg_replace("/width=\"[0-9]*\"/", 'width="150"', $large));
|
@@ -499,7 +501,8 @@ class MEC_render extends MEC_base
|
|
499 |
'meccarouselthumb'=>$meccarouselthumb,
|
500 |
'medium'=>$medium,
|
501 |
'large'=>$large,
|
502 |
-
'full'=>$full
|
|
|
503 |
);
|
504 |
|
505 |
// Featured image URLs
|
@@ -510,7 +513,8 @@ class MEC_render extends MEC_base
|
|
510 |
'meccarouselthumb'=>esc_url(get_the_post_thumbnail_url($post_id, 'meccarouselthumb')),
|
511 |
'medium'=>esc_url(get_the_post_thumbnail_url($post_id, 'medium')),
|
512 |
'large'=>esc_url(get_the_post_thumbnail_url($post_id, 'large')),
|
513 |
-
'full'=>esc_url(get_the_post_thumbnail_url($post_id, 'full'))
|
|
|
514 |
);
|
515 |
|
516 |
$taxonomies = array('mec_label', 'mec_organizer', 'mec_location', 'mec_category', 'post_tag');
|
24 |
add_image_size('thumblist', '300', '300', true);
|
25 |
add_image_size('meccarouselthumb', '474', '324', true);
|
26 |
add_image_size('gridsquare', '391', '260', true);
|
27 |
+
add_image_size('tileview', '300', '400', true);
|
28 |
|
29 |
// Import MEC skin class
|
30 |
MEC::import('app.libraries.skins');
|
489 |
$medium = get_the_post_thumbnail($post_id, 'medium', array('data-mec-postid'=>$post_id));
|
490 |
$large = get_the_post_thumbnail($post_id, 'large', array('data-mec-postid'=>$post_id));
|
491 |
$full = get_the_post_thumbnail($post_id, 'full', array('data-mec-postid'=>$post_id));
|
492 |
+
$tileview = get_the_post_thumbnail($post_id, 'tileview', array('data-mec-postid'=>$post_id));
|
493 |
|
494 |
if(trim($thumbnail) == '' and trim($medium) != '') $thumbnail = preg_replace("/height=\"[0-9]*\"/", 'height="150"', preg_replace("/width=\"[0-9]*\"/", 'width="150"', $medium));
|
495 |
elseif(trim($thumbnail) == '' and trim($large) != '') $thumbnail = preg_replace("/height=\"[0-9]*\"/", 'height="150"', preg_replace("/width=\"[0-9]*\"/", 'width="150"', $large));
|
501 |
'meccarouselthumb'=>$meccarouselthumb,
|
502 |
'medium'=>$medium,
|
503 |
'large'=>$large,
|
504 |
+
'full'=>$full,
|
505 |
+
'tileview'=>$tileview
|
506 |
);
|
507 |
|
508 |
// Featured image URLs
|
513 |
'meccarouselthumb'=>esc_url(get_the_post_thumbnail_url($post_id, 'meccarouselthumb')),
|
514 |
'medium'=>esc_url(get_the_post_thumbnail_url($post_id, 'medium')),
|
515 |
'large'=>esc_url(get_the_post_thumbnail_url($post_id, 'large')),
|
516 |
+
'full'=>esc_url(get_the_post_thumbnail_url($post_id, 'full')),
|
517 |
+
'tileview'=>esc_url(get_the_post_thumbnail_url($post_id, 'tileview'))
|
518 |
);
|
519 |
|
520 |
$taxonomies = array('mec_label', 'mec_organizer', 'mec_location', 'mec_category', 'post_tag');
|
app/libraries/syncSchedule.php
CHANGED
@@ -16,7 +16,7 @@ class MEC_syncSchedule extends MEC_base
|
|
16 |
$this->main = $this->getMain();
|
17 |
}
|
18 |
|
19 |
-
public function
|
20 |
{
|
21 |
$ix = $this->main->get_ix_options();
|
22 |
|
@@ -25,7 +25,7 @@ class MEC_syncSchedule extends MEC_base
|
|
25 |
if ( isset($ix['sync_g_import_auto']) and $ix['sync_g_import_auto'] == '1' )
|
26 |
{
|
27 |
$sync_g_import = MEC_ABSPATH.'app'.DS.'crons'.DS.'g-import.php';
|
28 |
-
|
29 |
}
|
30 |
}
|
31 |
|
@@ -34,7 +34,7 @@ class MEC_syncSchedule extends MEC_base
|
|
34 |
if ( isset($ix['sync_g_export_auto']) and $ix['sync_g_export_auto'] == '1' )
|
35 |
{
|
36 |
$sync_g_export = MEC_ABSPATH.'app'.DS.'crons'.DS.'g-export.php';
|
37 |
-
|
38 |
}
|
39 |
}
|
40 |
|
@@ -43,7 +43,7 @@ class MEC_syncSchedule extends MEC_base
|
|
43 |
if ( isset($ix['sync_meetup_import_auto']) and $ix['sync_meetup_import_auto'] == '1' )
|
44 |
{
|
45 |
$sync_meetup_import = MEC_ABSPATH.'app'.DS.'crons'.DS.'meetup-import.php';
|
46 |
-
|
47 |
}
|
48 |
}
|
49 |
}
|
16 |
$this->main = $this->getMain();
|
17 |
}
|
18 |
|
19 |
+
public function sync()
|
20 |
{
|
21 |
$ix = $this->main->get_ix_options();
|
22 |
|
25 |
if ( isset($ix['sync_g_import_auto']) and $ix['sync_g_import_auto'] == '1' )
|
26 |
{
|
27 |
$sync_g_import = MEC_ABSPATH.'app'.DS.'crons'.DS.'g-import.php';
|
28 |
+
include_once $sync_g_import;
|
29 |
}
|
30 |
}
|
31 |
|
34 |
if ( isset($ix['sync_g_export_auto']) and $ix['sync_g_export_auto'] == '1' )
|
35 |
{
|
36 |
$sync_g_export = MEC_ABSPATH.'app'.DS.'crons'.DS.'g-export.php';
|
37 |
+
include_once $sync_g_export;
|
38 |
}
|
39 |
}
|
40 |
|
43 |
if ( isset($ix['sync_meetup_import_auto']) and $ix['sync_meetup_import_auto'] == '1' )
|
44 |
{
|
45 |
$sync_meetup_import = MEC_ABSPATH.'app'.DS.'crons'.DS.'meetup-import.php';
|
46 |
+
include_once $sync_meetup_import;
|
47 |
}
|
48 |
}
|
49 |
}
|
app/modules/attendees-list/details.php
CHANGED
@@ -53,7 +53,57 @@ foreach($bookings as $booking)
|
|
53 |
if(!$name) $name = $user->display_name;
|
54 |
?>
|
55 |
<div class="mec-attendee-profile-link">
|
56 |
-
<?php echo '<a href="'.$link.'">'.$name.'</a>'.(' <span>'.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
57 |
</div>
|
58 |
</li>
|
59 |
<?php endforeach; ?>
|
53 |
if(!$name) $name = $user->display_name;
|
54 |
?>
|
55 |
<div class="mec-attendee-profile-link">
|
56 |
+
<?php echo '<a href="'.$link.'">'.$name.'</a>' . '<span class="mec-attendee-profile-ticket-number mec-bg-color">'. $book->get_total_attendees($booking_id) .'</span>' . '<span class="mec-color-hover"> ' . esc_html__( 'tickets' , 'modern-events-calendar-lite' ) . '<i class="mec-sl-arrow-down"></i></span>' ; ?>
|
57 |
+
</div>
|
58 |
+
|
59 |
+
<!-- MEC BuddyPress Integration Attendees Modules -->
|
60 |
+
<div class="mec-attendees-toggle mec-util-hidden">
|
61 |
+
<?php
|
62 |
+
$mec_attendees = get_post_meta($booking_id, 'mec_attendees', true);
|
63 |
+
$mec_attendees_count = count($mec_attendees);
|
64 |
+
|
65 |
+
// For Sorting And Filtering MEC Attendees Array.
|
66 |
+
for($i = 0; $i < $mec_attendees_count; $i++)
|
67 |
+
{
|
68 |
+
if(array_key_exists($mec_attendees[$i]['email'], $mec_attendees))
|
69 |
+
{
|
70 |
+
$mec_attendees[$mec_attendees[$i]['email']]['count'] += $mec_attendees[$i]['count'];
|
71 |
+
}
|
72 |
+
else
|
73 |
+
{
|
74 |
+
$mec_attendees[$mec_attendees[$i]['email']] = $mec_attendees[$i];
|
75 |
+
}
|
76 |
+
|
77 |
+
unset($mec_attendees[$mec_attendees[$i]['email']]['id']);
|
78 |
+
unset($mec_attendees[$mec_attendees[$i]['email']]['reg']);
|
79 |
+
unset($mec_attendees[$mec_attendees[$i]['email']]['variations']);
|
80 |
+
unset($mec_attendees[$i]);
|
81 |
+
}
|
82 |
+
|
83 |
+
// For Display Sorting Output.
|
84 |
+
foreach($mec_attendees as $mec_attendee)
|
85 |
+
{
|
86 |
+
?>
|
87 |
+
<div class="mec-attendees-item clearfix">
|
88 |
+
<?php
|
89 |
+
$new_attendee_array = array( 'email' => '', 'name' => '', 'count' => '' );
|
90 |
+
foreach($mec_attendee as $mec_attendee_item_key => $mec_attendee_item_value)
|
91 |
+
{
|
92 |
+
if( $mec_attendee_item_key == 'count' ) $new_attendee_array['count'] = $mec_attendee_item_value;
|
93 |
+
if( $mec_attendee_item_key == 'name' ) $new_attendee_array['name'] = $mec_attendee_item_value;
|
94 |
+
if( $mec_attendee_item_key == 'email' ) $new_attendee_array['email'] = $mec_attendee_item_value;
|
95 |
+
}
|
96 |
+
foreach ($new_attendee_array as $new_attendee_key => $new_attendee_value ) {
|
97 |
+
if ( $new_attendee_key == 'email' ) echo '<div class="mec-attendee-avatar-sec">'. get_avatar($new_attendee_value , '50') .'</div>';
|
98 |
+
if ( $new_attendee_key == 'name' ) echo '<div class="mec-attendee-profile-name-sec">'. $new_attendee_value .'</div>';
|
99 |
+
if ( $new_attendee_key == 'count' ) echo '<span class="mec-attendee-profile-ticket-sec">'. $new_attendee_value . ( $new_attendee_value > 1 ? ' tickets' : ' ticket' ) . '</span>';
|
100 |
+
}
|
101 |
+
|
102 |
+
?>
|
103 |
+
</div>
|
104 |
+
<?php
|
105 |
+
}
|
106 |
+
?>
|
107 |
</div>
|
108 |
</li>
|
109 |
<?php endforeach; ?>
|
app/modules/booking/steps/form.php
CHANGED
@@ -64,7 +64,6 @@ if(!$mec_email)
|
|
64 |
<!-- Custom fields -->
|
65 |
<?php if(count($reg_fields)): foreach($reg_fields as $reg_field_id=>$reg_field): if(!is_numeric($reg_field_id) or !isset($reg_field['type'])) continue; ?>
|
66 |
|
67 |
-
|
68 |
<?php $reg_field_name = strtolower( str_replace([' ',',',':','"',"'"], '_', $reg_field['label']) ); ?>
|
69 |
|
70 |
<div class="mec-book-reg-field-<?php echo $reg_field['type']; ?> <?php echo ((isset($reg_field['mandatory']) and $reg_field['mandatory']) ? 'mec-reg-mandatory' : ''); ?><?php
|
@@ -177,4 +176,4 @@ if(!$mec_email)
|
|
177 |
<input type="hidden" name="step" value="2" />
|
178 |
<?php wp_nonce_field('mec_book_form_'.$event_id); ?>
|
179 |
<button type="submit"><?php _e('Next', 'modern-events-calendar-lite'); ?></button>
|
180 |
-
</form>
|
64 |
<!-- Custom fields -->
|
65 |
<?php if(count($reg_fields)): foreach($reg_fields as $reg_field_id=>$reg_field): if(!is_numeric($reg_field_id) or !isset($reg_field['type'])) continue; ?>
|
66 |
|
|
|
67 |
<?php $reg_field_name = strtolower( str_replace([' ',',',':','"',"'"], '_', $reg_field['label']) ); ?>
|
68 |
|
69 |
<div class="mec-book-reg-field-<?php echo $reg_field['type']; ?> <?php echo ((isset($reg_field['mandatory']) and $reg_field['mandatory']) ? 'mec-reg-mandatory' : ''); ?><?php
|
176 |
<input type="hidden" name="step" value="2" />
|
177 |
<?php wp_nonce_field('mec_book_form_'.$event_id); ?>
|
178 |
<button type="submit"><?php _e('Next', 'modern-events-calendar-lite'); ?></button>
|
179 |
+
</form>
|
app/modules/export/details.php
CHANGED
@@ -9,17 +9,19 @@ $settings = $this->get_settings();
|
|
9 |
if(!isset($settings['export_module_status']) or (isset($settings['export_module_status']) and !$settings['export_module_status'])) return;
|
10 |
|
11 |
$title = isset($event->data->title) ? $event->data->title : '';
|
12 |
-
$location = isset($event->data->meta['mec_location_id']) and isset($event->data->locations[$event->data->meta['mec_location_id']]) ? $event->data->locations[$event->data->meta['mec_location_id']]['address'] : '';
|
13 |
$content = (isset($event->data->post->post_content) and trim($event->data->post->post_content)) ? strip_shortcodes(strip_tags($event->data->post->post_content)) : $title;
|
14 |
|
15 |
$occurrence = isset($_GET['occurrence']) ? sanitize_text_field($_GET['occurrence']) : '';
|
16 |
$occurrence_end_date = trim($occurrence) ? $this->get_end_date_by_occurrence($event->data->ID, (isset($event->date['start']['date']) ? $event->date['start']['date'] : $occurrence)) : '';
|
17 |
|
18 |
$start_date_temp = $start_hour_temp = '';
|
19 |
-
if
|
|
|
20 |
$start_date_temp = isset($event->date['start']['date']) ? $event->date['start']['date'] : NULL;
|
21 |
$start_hour_temp = isset($event->date['start']['hour']) ? $event->date['start']['hour'] : NULL;
|
22 |
-
|
|
|
23 |
$start_minutes_temp = isset($event->date['start']['minutes']) ? $event->date['start']['minutes'] : NULL;
|
24 |
$start_ampm_temp = isset($event->date['start']['ampm']) ? $event->date['start']['ampm'] : NULL;
|
25 |
|
@@ -42,7 +44,7 @@ $gmt_offset_seconds = $this->get_gmt_offset_seconds($start_time);
|
|
42 |
<div class="mec-event-exporting">
|
43 |
<div class="mec-export-details">
|
44 |
<ul>
|
45 |
-
<?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)
|
46 |
<?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, $occurrence); ?>"><?php echo __('+ iCal export', 'modern-events-calendar-lite'); ?></a></li><?php endif; ?>
|
47 |
</ul>
|
48 |
</div>
|
9 |
if(!isset($settings['export_module_status']) or (isset($settings['export_module_status']) and !$settings['export_module_status'])) return;
|
10 |
|
11 |
$title = isset($event->data->title) ? $event->data->title : '';
|
12 |
+
$location = (isset($event->data->meta['mec_location_id']) and isset($event->data->locations[$event->data->meta['mec_location_id']])) ? '&location='.urlencode($event->data->locations[$event->data->meta['mec_location_id']]['address']) : '';
|
13 |
$content = (isset($event->data->post->post_content) and trim($event->data->post->post_content)) ? strip_shortcodes(strip_tags($event->data->post->post_content)) : $title;
|
14 |
|
15 |
$occurrence = isset($_GET['occurrence']) ? sanitize_text_field($_GET['occurrence']) : '';
|
16 |
$occurrence_end_date = trim($occurrence) ? $this->get_end_date_by_occurrence($event->data->ID, (isset($event->date['start']['date']) ? $event->date['start']['date'] : $occurrence)) : '';
|
17 |
|
18 |
$start_date_temp = $start_hour_temp = '';
|
19 |
+
if(!empty($event->date))
|
20 |
+
{
|
21 |
$start_date_temp = isset($event->date['start']['date']) ? $event->date['start']['date'] : NULL;
|
22 |
$start_hour_temp = isset($event->date['start']['hour']) ? $event->date['start']['hour'] : NULL;
|
23 |
+
}
|
24 |
+
|
25 |
$start_minutes_temp = isset($event->date['start']['minutes']) ? $event->date['start']['minutes'] : NULL;
|
26 |
$start_ampm_temp = isset($event->date['start']['ampm']) ? $event->date['start']['ampm'] : NULL;
|
27 |
|
44 |
<div class="mec-event-exporting">
|
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, $occurrence); ?>"><?php echo __('+ iCal export', 'modern-events-calendar-lite'); ?></a></li><?php endif; ?>
|
49 |
</ul>
|
50 |
</div>
|
app/skins/agenda/render.php
CHANGED
@@ -27,6 +27,8 @@ $settings = $this->main->get_settings();
|
|
27 |
$start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
|
28 |
$end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
|
29 |
$event_color = isset($event->data->meta['mec_color']) ? '<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>' : '';
|
|
|
|
|
30 |
$label_style = '';
|
31 |
if ( !empty($event->data->labels) ):
|
32 |
foreach( $event->data->labels as $label)
|
@@ -100,7 +102,7 @@ $settings = $this->main->get_settings();
|
|
100 |
</span>
|
101 |
<span class="mec-agenda-event-title">
|
102 |
<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>
|
103 |
-
<?php echo $event_color; ?>
|
104 |
<?php if ( !empty($label_style) ) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?>
|
105 |
</span>
|
106 |
<?php do_action( 'mec_agenda_skin_attribute', $organizer, $location ); ?>
|
27 |
$start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
|
28 |
$end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
|
29 |
$event_color = isset($event->data->meta['mec_color']) ? '<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>' : '';
|
30 |
+
$event_start_date = !empty($event->date['start']['date']) ? $event->date['start']['date'] : '';
|
31 |
+
|
32 |
$label_style = '';
|
33 |
if ( !empty($event->data->labels) ):
|
34 |
foreach( $event->data->labels as $label)
|
102 |
</span>
|
103 |
<span class="mec-agenda-event-title">
|
104 |
<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>
|
105 |
+
<?php echo $this->main->get_flags($event->data->ID, $event_start_date).$event_color; ?>
|
106 |
<?php if ( !empty($label_style) ) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?>
|
107 |
</span>
|
108 |
<?php do_action( 'mec_agenda_skin_attribute', $organizer, $location ); ?>
|
app/skins/available_spot/tpl.php
CHANGED
@@ -27,6 +27,7 @@ $event_etime = '';
|
|
27 |
$event_etime .= sprintf("%02d", (isset($event->data->meta['mec_date']['end']['hour']) ? $event->data->meta['mec_date']['end']['hour'] : 6)).':';
|
28 |
$event_etime .= sprintf("%02d", (isset($event->data->meta['mec_date']['end']['minutes']) ? $event->data->meta['mec_date']['end']['minutes'] : 0));
|
29 |
$event_etime .= (isset($event->data->meta['mec_date']['end']['ampm']) ? $event->data->meta['mec_date']['end']['ampm'] : 'PM');
|
|
|
30 |
|
31 |
$label_style = '';
|
32 |
if ( !empty($event->data->labels) ):
|
@@ -203,7 +204,7 @@ do_action('mec_available_spot_skin_head');
|
|
203 |
</div>
|
204 |
</div>
|
205 |
<div class="mec-event-content">
|
206 |
-
<h4 class="mec-event-title"><a class="mec-color-hover" href="<?php echo $event_link; ?>"><?php echo $event_title; ?></a><?php echo $event_color; ?></h4>
|
207 |
<?php
|
208 |
$excerpt = trim($event->data->post->post_excerpt) ? $event->data->post->post_excerpt : '';
|
209 |
|
27 |
$event_etime .= sprintf("%02d", (isset($event->data->meta['mec_date']['end']['hour']) ? $event->data->meta['mec_date']['end']['hour'] : 6)).':';
|
28 |
$event_etime .= sprintf("%02d", (isset($event->data->meta['mec_date']['end']['minutes']) ? $event->data->meta['mec_date']['end']['minutes'] : 0));
|
29 |
$event_etime .= (isset($event->data->meta['mec_date']['end']['ampm']) ? $event->data->meta['mec_date']['end']['ampm'] : 'PM');
|
30 |
+
$event_start_date = !empty($event->date['start']['date']) ? $event->date['start']['date'] : '';
|
31 |
|
32 |
$label_style = '';
|
33 |
if ( !empty($event->data->labels) ):
|
204 |
</div>
|
205 |
</div>
|
206 |
<div class="mec-event-content">
|
207 |
+
<h4 class="mec-event-title"><a class="mec-color-hover" href="<?php echo $event_link; ?>"><?php echo $event_title; ?></a><?php echo $this->main->get_flags($event->data->ID, $event_start_date).$event_color; ?></h4>
|
208 |
<?php
|
209 |
$excerpt = trim($event->data->post->post_excerpt) ? $event->data->post->post_excerpt : '';
|
210 |
|
app/skins/carousel/render.php
CHANGED
@@ -34,6 +34,7 @@ $settings = $this->main->get_settings();
|
|
34 |
$organizer = isset($event->data->organizers[$event->data->meta['mec_organizer_id']])? $event->data->organizers[$event->data->meta['mec_organizer_id']] : array();
|
35 |
$event_color = isset($event->data->meta['mec_color']) ? '<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>' : '';
|
36 |
$event_date = (isset($event->date['start']) ? $event->date['start']['date'] : $event->data->meta['mec_start_date']);
|
|
|
37 |
|
38 |
$label_style = '';
|
39 |
if(!empty($event->data->labels))
|
@@ -115,7 +116,7 @@ $settings = $this->main->get_settings();
|
|
115 |
</div>
|
116 |
</div>
|
117 |
<div class="mec-event-carousel-content">
|
118 |
-
<h4 class="mec-event-carousel-title"><a class="mec-color-hover" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a
|
119 |
<p><?php echo (isset($location['name']) ? $location['name'] : ''); echo (isset($location['address']) ? '<br>'.$location['address'] : ''); ?></p>
|
120 |
</div>
|
121 |
<?php elseif($this->style == 'type2'): ?>
|
@@ -136,7 +137,7 @@ $settings = $this->main->get_settings();
|
|
136 |
<span class="mec-event-date-info"><?php echo $this->main->date_label($event->date['start'], $event->date['end'], $this->date_format_type2_1); ?></span>
|
137 |
<?php endif; ?>
|
138 |
<?php do_action('mec_carousel_type2_before_title' , $event); ?>
|
139 |
-
<h4 class="mec-event-carousel-title"><a class="mec-color-hover" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a
|
140 |
<?php do_action('mec_carousel_type2_after_title' , $event); ?>
|
141 |
<p><?php echo (isset($location['name']) ? $location['name'] : ''); echo (isset($location['address']) ? '<br>'.$location['address'] : ''); ?></p>
|
142 |
</div>
|
@@ -175,7 +176,7 @@ $settings = $this->main->get_settings();
|
|
175 |
<?php else: ?>
|
176 |
<span class="mec-event-date-info"><?php echo $this->main->date_label($event->date['start'], $event->date['end'], $this->date_format_type3_1); ?></span>
|
177 |
<?php endif; ?>
|
178 |
-
<h4 class="mec-event-carousel-title"><a class="mec-color-hover" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a
|
179 |
<p><?php echo (isset($location['name']) ? $location['name'] : ''); echo (isset($location['address']) ? '<br>'.$location['address'] : ''); ?></p>
|
180 |
<?php if($settings['social_network_status'] != '0') : ?>
|
181 |
<ul class="mec-event-sharing-wrap">
|
@@ -211,7 +212,7 @@ $settings = $this->main->get_settings();
|
|
211 |
<div class="mec-event-date">
|
212 |
<span class="mec-color"><?php echo date_i18n('F d', strtotime($event_date)); ?></span> <?php echo date_i18n('l', strtotime($event_date)); ?>
|
213 |
</div>
|
214 |
-
<h4 class="mec-event-title"><?php echo $event->data->title
|
215 |
<div class="mec-btn-wrapper"><a class="mec-event-button" 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>
|
216 |
</div>
|
217 |
</div>
|
34 |
$organizer = isset($event->data->organizers[$event->data->meta['mec_organizer_id']])? $event->data->organizers[$event->data->meta['mec_organizer_id']] : array();
|
35 |
$event_color = isset($event->data->meta['mec_color']) ? '<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>' : '';
|
36 |
$event_date = (isset($event->date['start']) ? $event->date['start']['date'] : $event->data->meta['mec_start_date']);
|
37 |
+
$event_start_date = !empty($event->date['start']['date']) ? $event->date['start']['date'] : '';
|
38 |
|
39 |
$label_style = '';
|
40 |
if(!empty($event->data->labels))
|
116 |
</div>
|
117 |
</div>
|
118 |
<div class="mec-event-carousel-content">
|
119 |
+
<h4 class="mec-event-carousel-title"><a class="mec-color-hover" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $this->main->get_flags($event->data->ID, $event_start_date); ?></h4>
|
120 |
<p><?php echo (isset($location['name']) ? $location['name'] : ''); echo (isset($location['address']) ? '<br>'.$location['address'] : ''); ?></p>
|
121 |
</div>
|
122 |
<?php elseif($this->style == 'type2'): ?>
|
137 |
<span class="mec-event-date-info"><?php echo $this->main->date_label($event->date['start'], $event->date['end'], $this->date_format_type2_1); ?></span>
|
138 |
<?php endif; ?>
|
139 |
<?php do_action('mec_carousel_type2_before_title' , $event); ?>
|
140 |
+
<h4 class="mec-event-carousel-title"><a class="mec-color-hover" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $this->main->get_flags($event->data->ID, $event_start_date); ?></h4>
|
141 |
<?php do_action('mec_carousel_type2_after_title' , $event); ?>
|
142 |
<p><?php echo (isset($location['name']) ? $location['name'] : ''); echo (isset($location['address']) ? '<br>'.$location['address'] : ''); ?></p>
|
143 |
</div>
|
176 |
<?php else: ?>
|
177 |
<span class="mec-event-date-info"><?php echo $this->main->date_label($event->date['start'], $event->date['end'], $this->date_format_type3_1); ?></span>
|
178 |
<?php endif; ?>
|
179 |
+
<h4 class="mec-event-carousel-title"><a class="mec-color-hover" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $this->main->get_flags($event->data->ID, $event_start_date); ?></h4>
|
180 |
<p><?php echo (isset($location['name']) ? $location['name'] : ''); echo (isset($location['address']) ? '<br>'.$location['address'] : ''); ?></p>
|
181 |
<?php if($settings['social_network_status'] != '0') : ?>
|
182 |
<ul class="mec-event-sharing-wrap">
|
212 |
<div class="mec-event-date">
|
213 |
<span class="mec-color"><?php echo date_i18n('F d', strtotime($event_date)); ?></span> <?php echo date_i18n('l', strtotime($event_date)); ?>
|
214 |
</div>
|
215 |
+
<h4 class="mec-event-title"><?php echo $event->data->title.$this->main->get_flags($event->data->ID, $event_start_date).$event_color; ?><?php if ( !empty($label_style) ) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?></h4>
|
216 |
<div class="mec-btn-wrapper"><a class="mec-event-button" 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>
|
217 |
</div>
|
218 |
</div>
|
app/skins/countdown/tpl.php
CHANGED
@@ -143,7 +143,7 @@ do_action('mec_countdown_skin_head');
|
|
143 |
<article class="mec-event-countdown-style1 col-md-12 <?php echo $this->get_event_classes($event); ?>">
|
144 |
<div class="mec-event-countdown-part1 col-md-4">
|
145 |
<div class="mec-event-upcoming"><?php echo sprintf(__('%s Upcoming Event', 'modern-events-calendar-lite'), '<span>'.__('Next', 'modern-events-calendar-lite').'</span>'); ?></div>
|
146 |
-
<h4 class="mec-event-title"><?php echo $event_title;
|
147 |
</div>
|
148 |
<div class="mec-event-countdown-part2 col-md-5">
|
149 |
<div class="mec-event-date-place">
|
@@ -187,7 +187,7 @@ do_action('mec_countdown_skin_head');
|
|
187 |
<article class="mec-event-countdown-style2 <?php echo $this->get_event_classes($event); ?>">
|
188 |
<div class="mec-event-countdown-part1 col-md-4">
|
189 |
<div class="mec-event-upcoming"><?php echo sprintf(__('%s Upcoming Event', 'modern-events-calendar-lite'), '<span>'.__('Next', 'modern-events-calendar-lite').'</span>'); ?></div>
|
190 |
-
<h4 class="mec-event-title"><?php echo $event_title;
|
191 |
</div>
|
192 |
<div class="mec-event-countdown-part2 col-md-5">
|
193 |
<div class="mec-event-date-place">
|
@@ -240,7 +240,7 @@ do_action('mec_countdown_skin_head');
|
|
240 |
<span class="mec-date3"><?php echo date_i18n($this->date_format_style33, strtotime($event_date)); ?></span>
|
241 |
</div>
|
242 |
<div class="mec-event-title-link">
|
243 |
-
<h4 class="mec-event-title"><?php echo $event_title;
|
244 |
<a class="mec-event-link" href="<?php echo $event_link; ?>"><?php echo $this->main->m('event_detail', __('Event Detail', 'modern-events-calendar-lite')); ?></a>
|
245 |
</div>
|
246 |
<div class="mec-event-countdown" id="mec_skin_countdown<?php echo $this->id; ?>">
|
143 |
<article class="mec-event-countdown-style1 col-md-12 <?php echo $this->get_event_classes($event); ?>">
|
144 |
<div class="mec-event-countdown-part1 col-md-4">
|
145 |
<div class="mec-event-upcoming"><?php echo sprintf(__('%s Upcoming Event', 'modern-events-calendar-lite'), '<span>'.__('Next', 'modern-events-calendar-lite').'</span>'); ?></div>
|
146 |
+
<h4 class="mec-event-title"><?php echo $event_title.$this->main->get_flags($event->data->ID, $start_date); ?><?php if (!empty($label_style)) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?></h4>
|
147 |
</div>
|
148 |
<div class="mec-event-countdown-part2 col-md-5">
|
149 |
<div class="mec-event-date-place">
|
187 |
<article class="mec-event-countdown-style2 <?php echo $this->get_event_classes($event); ?>">
|
188 |
<div class="mec-event-countdown-part1 col-md-4">
|
189 |
<div class="mec-event-upcoming"><?php echo sprintf(__('%s Upcoming Event', 'modern-events-calendar-lite'), '<span>'.__('Next', 'modern-events-calendar-lite').'</span>'); ?></div>
|
190 |
+
<h4 class="mec-event-title"><?php echo $event_title.$this->main->get_flags($event->data->ID, $start_date); ?><?php if (!empty($label_style)) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?></h4>
|
191 |
</div>
|
192 |
<div class="mec-event-countdown-part2 col-md-5">
|
193 |
<div class="mec-event-date-place">
|
240 |
<span class="mec-date3"><?php echo date_i18n($this->date_format_style33, strtotime($event_date)); ?></span>
|
241 |
</div>
|
242 |
<div class="mec-event-title-link">
|
243 |
+
<h4 class="mec-event-title"><?php echo $event_title.$this->main->get_flags($event->data->ID, $start_date); ?><?php if (!empty($label_style)) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?></h4>
|
244 |
<a class="mec-event-link" href="<?php echo $event_link; ?>"><?php echo $this->main->m('event_detail', __('Event Detail', 'modern-events-calendar-lite')); ?></a>
|
245 |
</div>
|
246 |
<div class="mec-event-countdown" id="mec_skin_countdown<?php echo $this->id; ?>">
|
app/skins/cover/tpl.php
CHANGED
@@ -18,6 +18,7 @@ $event_title = $event->data->title;
|
|
18 |
$event_color = isset($event->data->meta['mec_color']) ? '<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>' : '';
|
19 |
$event_thumb = $event->data->thumbnails['large'];
|
20 |
$event_thumb_url = $event->data->featured_image['large'];
|
|
|
21 |
$label_style = '';
|
22 |
if ( !empty($event->data->labels) ):
|
23 |
foreach( $event->data->labels as $label)
|
@@ -89,7 +90,7 @@ do_action('mec_cover_skin_head');
|
|
89 |
<div class="mec-event-detail">
|
90 |
<?php if ( empty($label_style) ) echo '<div class="mec-event-tag mec-color">' . __('featured event', 'modern-events-calendar-lite') . ' </div>'; else echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?>
|
91 |
<div class="mec-event-date"><?php echo date_i18n($this->date_format_modern1, strtotime($event_date)).((isset($event->data->time) and trim($event->data->time['start'])) ? ' - '.$event->data->time['start'] : ''); ?></div>
|
92 |
-
<h4 class="mec-event-title"><?php echo $event_title
|
93 |
<div class="mec-event-place"><?php echo (isset($event_location['name']) ? $event_location['name'] : ''); ?></div>
|
94 |
</div>
|
95 |
</a>
|
@@ -104,12 +105,12 @@ do_action('mec_cover_skin_head');
|
|
104 |
<div class="mec-event-date">
|
105 |
<span class="mec-color"><?php echo date_i18n($this->date_format_classic1, strtotime($event_date)); ?></span> <?php echo date_i18n($this->date_format_classic2, strtotime($event_date)); ?>
|
106 |
</div>
|
107 |
-
<h4 class="mec-event-title"><?php echo $event_title
|
108 |
<div class="mec-btn-wrapper"><a class="mec-event-button" href="<?php echo $event_link; ?>"><?php echo $this->main->m('event_detail', __('EVENT DETAIL', 'modern-events-calendar-lite')); ?></a></div>
|
109 |
</div>
|
110 |
<?php elseif($this->style == 'clean'): ?>
|
111 |
<div class="mec-event-content">
|
112 |
-
<h4 class="mec-event-title"><a href="<?php echo $event_link; ?>"><?php echo $event_title; ?></a><?php echo $event_color; ?><?php if ( !empty($label_style) ) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?></h4>
|
113 |
<?php if(isset($event_organizer['name'])): ?><div class="mec-event-place"><?php echo (isset($event_organizer['name']) ? $event_organizer['name'] : ''); ?></div><?php endif; ?>
|
114 |
</div>
|
115 |
<div class="mec-event-date mec-bg-color">
|
18 |
$event_color = isset($event->data->meta['mec_color']) ? '<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>' : '';
|
19 |
$event_thumb = $event->data->thumbnails['large'];
|
20 |
$event_thumb_url = $event->data->featured_image['large'];
|
21 |
+
$event_start_date = !empty($event->date['start']['date']) ? $event->date['start']['date'] : '';
|
22 |
$label_style = '';
|
23 |
if ( !empty($event->data->labels) ):
|
24 |
foreach( $event->data->labels as $label)
|
90 |
<div class="mec-event-detail">
|
91 |
<?php if ( empty($label_style) ) echo '<div class="mec-event-tag mec-color">' . __('featured event', 'modern-events-calendar-lite') . ' </div>'; else echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?>
|
92 |
<div class="mec-event-date"><?php echo date_i18n($this->date_format_modern1, strtotime($event_date)).((isset($event->data->time) and trim($event->data->time['start'])) ? ' - '.$event->data->time['start'] : ''); ?></div>
|
93 |
+
<h4 class="mec-event-title"><?php echo $event_title.$this->main->get_flags($event->data->ID, $event_start_date).$event_color; ?></h4>
|
94 |
<div class="mec-event-place"><?php echo (isset($event_location['name']) ? $event_location['name'] : ''); ?></div>
|
95 |
</div>
|
96 |
</a>
|
105 |
<div class="mec-event-date">
|
106 |
<span class="mec-color"><?php echo date_i18n($this->date_format_classic1, strtotime($event_date)); ?></span> <?php echo date_i18n($this->date_format_classic2, strtotime($event_date)); ?>
|
107 |
</div>
|
108 |
+
<h4 class="mec-event-title"><?php echo $event_title.$this->main->get_flags($event->data->ID, $event_start_date).$event_color; ?><?php if ( !empty($label_style) ) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?></h4>
|
109 |
<div class="mec-btn-wrapper"><a class="mec-event-button" href="<?php echo $event_link; ?>"><?php echo $this->main->m('event_detail', __('EVENT DETAIL', 'modern-events-calendar-lite')); ?></a></div>
|
110 |
</div>
|
111 |
<?php elseif($this->style == 'clean'): ?>
|
112 |
<div class="mec-event-content">
|
113 |
+
<h4 class="mec-event-title"><a href="<?php echo $event_link; ?>"><?php echo $event_title; ?></a><?php echo $this->main->get_flags($event->data->ID, $event_start_date).$event_color; ?><?php if ( !empty($label_style) ) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?></h4>
|
114 |
<?php if(isset($event_organizer['name'])): ?><div class="mec-event-place"><?php echo (isset($event_organizer['name']) ? $event_organizer['name'] : ''); ?></div><?php endif; ?>
|
115 |
</div>
|
116 |
<div class="mec-event-date mec-bg-color">
|
app/skins/daily_view/render.php
CHANGED
@@ -13,32 +13,9 @@ $settings = $this->main->get_settings();
|
|
13 |
$start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
|
14 |
$end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
|
15 |
$event_color = isset($event->data->meta['mec_color'])?'<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>':'';
|
16 |
-
$label_style = '';
|
17 |
-
|
18 |
-
// Check for sold out event tickets if sold out is shown sold out label
|
19 |
-
$event_id = (isset($event->ID)) ? intval($event->ID) : 0;
|
20 |
-
$startDate = !empty($event->data->meta['mec_date']['start']['date'] ) ? $event->data->meta['mec_date']['start']['date'] : '';
|
21 |
-
$endDate = !empty($event->data->meta['mec_date']['end']['date'] ) ? $event->data->meta['mec_date']['end']['date'] : '' ;
|
22 |
$event_start_date = !empty($event->date['start']['date']) ? $event->date['start']['date'] : '';
|
23 |
-
$event_end_date = !empty($event->date['end']['date']) ? $event->date['end']['date'] : '';
|
24 |
-
$is_soldout = $this->main->is_soldout($event_id, $event_start_date);
|
25 |
-
$dynamic_period = $this->main->date_diff($event_start_date, $event_end_date)->d;
|
26 |
-
|
27 |
-
if($dynamic_period >= 0)
|
28 |
-
{
|
29 |
-
$static_period = (!isset($static_period)) ? $this->main->date_diff($startDate, $endDate)->d : $static_period;
|
30 |
|
31 |
-
|
32 |
-
$static_period = ($dynamic_period > $static_period) ? $dynamic_period : $static_period;
|
33 |
-
|
34 |
-
// For compare next days of start point events
|
35 |
-
$level = abs($static_period - $dynamic_period);
|
36 |
-
|
37 |
-
// For events multiple days repeating
|
38 |
-
if(($dynamic_period < ($static_period)) and (($dynamic_period) >= 0) and $this->main->is_soldout($event_id,
|
39 |
-
date('Y-m-d',strtotime("- {$level}day", strtotime($event_start_date))))) $is_soldout = true;
|
40 |
-
}
|
41 |
-
|
42 |
if ( !empty($event->data->labels) ):
|
43 |
foreach( $event->data->labels as $label)
|
44 |
{
|
@@ -99,11 +76,7 @@ $settings = $this->main->get_settings();
|
|
99 |
<article data-style="<?php echo $label_style; ?>" class="<?php echo (isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : ''; ?>mec-event-article <?php echo $this->get_event_classes($event); ?>">
|
100 |
<div class="mec-event-image"><?php echo $event->data->thumbnails['thumbnail']; ?></div>
|
101 |
<?php if(trim($start_time)): ?><div class="mec-event-time mec-color"><i class="mec-sl-clock-o"></i> <?php echo $start_time.(trim($end_time) ? ' - '.$end_time : ''); ?></div><?php endif; ?>
|
102 |
-
<?php
|
103 |
-
$sold_out_css_class = ($is_soldout) ? ' mec-event-title-soldout' : '';
|
104 |
-
$sold_out = ($is_soldout) ? ' <span class=soldout>' . __('Sold Out', 'modern-events-calendar-lite') . '</span> ' : '';
|
105 |
-
?>
|
106 |
-
<h4 class="mec-event-title <?php echo $sold_out_css_class; ?>"><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 $sold_out.$event_color; ?></h4><div class="mec-event-detail"><?php echo (isset($location['name']) ? $location['name'] : ''); ?></div>
|
107 |
</article>
|
108 |
<?php endforeach; ?>
|
109 |
<?php else: ?>
|
13 |
$start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
|
14 |
$end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
|
15 |
$event_color = isset($event->data->meta['mec_color'])?'<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>':'';
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
$event_start_date = !empty($event->date['start']['date']) ? $event->date['start']['date'] : '';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
|
18 |
+
$label_style = '';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
if ( !empty($event->data->labels) ):
|
20 |
foreach( $event->data->labels as $label)
|
21 |
{
|
76 |
<article data-style="<?php echo $label_style; ?>" class="<?php echo (isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : ''; ?>mec-event-article <?php echo $this->get_event_classes($event); ?>">
|
77 |
<div class="mec-event-image"><?php echo $event->data->thumbnails['thumbnail']; ?></div>
|
78 |
<?php if(trim($start_time)): ?><div class="mec-event-time mec-color"><i class="mec-sl-clock-o"></i> <?php echo $start_time.(trim($end_time) ? ' - '.$end_time : ''); ?></div><?php endif; ?>
|
79 |
+
<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><div class="mec-event-detail"><?php echo (isset($location['name']) ? $location['name'] : ''); ?></div>
|
|
|
|
|
|
|
|
|
80 |
</article>
|
81 |
<?php endforeach; ?>
|
82 |
<?php else: ?>
|
app/skins/grid/render.php
CHANGED
@@ -35,6 +35,7 @@ if($this->style == 'colorful')
|
|
35 |
$event_color = isset($event->data->meta['mec_color']) ? '<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>' : '';
|
36 |
$start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
|
37 |
$end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
|
|
|
38 |
|
39 |
// colorful
|
40 |
$colorful_bg_color = ($colorful_flag && isset($event->data->meta['mec_color'])) ? ' style="background: #' . $event->data->meta['mec_color'] . '"' : '';
|
@@ -111,7 +112,7 @@ if($this->style == 'colorful')
|
|
111 |
<div class="mec-event-day"><?php echo date_i18n($this->date_format_modern_3, strtotime($event->date['start']['date'])); ?></div>
|
112 |
</div>
|
113 |
<div class="mec-event-content">
|
114 |
-
<h4 class="mec-event-title"><a class="mec-color-hover" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $event_color; ?></h4>
|
115 |
<p><?php echo (isset($location['address']) ? $location['address'] : ''); ?></p>
|
116 |
</div>
|
117 |
<div class="mec-event-footer">
|
@@ -141,7 +142,7 @@ if($this->style == 'colorful')
|
|
141 |
<div class="mec-event-date mec-bg-color"><?php echo $this->main->date_label($event->date['start'], $event->date['end'], $this->date_format_classic_1); ?></div>
|
142 |
<?php endif; ?>
|
143 |
<?php do_action('mec_classic_before_title' , $event ); ?>
|
144 |
-
<h4 class="mec-event-title"><a class="mec-color-hover" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $event_color; ?></h4>
|
145 |
<?php if ( !empty($label_style) ) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?>
|
146 |
<p><?php echo trim((isset($location['name']) ? $location['name'] : '').', '.(isset($location['address']) ? $location['address'] : ''), ', '); ?></p>
|
147 |
<?php do_action('mec_classic_view_action' , $event); ?>
|
@@ -166,7 +167,7 @@ if($this->style == 'colorful')
|
|
166 |
<?php elseif($this->style == 'minimal'): ?>
|
167 |
<div class="mec-event-date mec-bg-color-hover mec-border-color-hover mec-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>
|
168 |
<div class="event-detail-wrap">
|
169 |
-
<h4 class="mec-event-title"><a class="mec-color-hover" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $event_color; ?><?php if ( !empty($label_style) ) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?></h4>
|
170 |
<div class="mec-event-detail"><?php echo (isset($location['name']) ? $location['name'] : ''); ?></div>
|
171 |
</div>
|
172 |
<?php elseif($this->style == 'clean'): ?>
|
@@ -185,7 +186,7 @@ if($this->style == 'colorful')
|
|
185 |
<div class="mec-event-content">
|
186 |
<?php do_action('display_mec_tai' , $event ); ?>
|
187 |
<?php do_action('mec_clean_custom_head' , $event , $event_color ); ?>
|
188 |
-
<h4 class="mec-event-title"><a class="mec-color-hover" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $event_color; ?></h4>
|
189 |
<p><?php echo (isset($location['address']) ? $location['address'] : ''); ?></p>
|
190 |
</div>
|
191 |
<div class="mec-event-footer mec-color">
|
@@ -211,7 +212,7 @@ if($this->style == 'colorful')
|
|
211 |
<div class="mec-event-content">
|
212 |
<div class="mec-event-image"><a data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->thumbnails['thumblist']; ?></a></div>
|
213 |
<div class="mec-event-detail-wrap">
|
214 |
-
<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
|
215 |
<?php if(isset($settings['multiple_day_show_method']) && $settings['multiple_day_show_method'] == 'all_days') : ?>
|
216 |
<div class="mec-event-month"><?php echo date_i18n($this->date_format_novel_1, strtotime($event->date['start']['date'])); ?></div>
|
217 |
<?php else: ?>
|
@@ -252,7 +253,7 @@ if($this->style == 'colorful')
|
|
252 |
</div>
|
253 |
<?php elseif($this->style == 'simple'): ?>
|
254 |
<div class="mec-event-date mec-color"><?php echo $this->main->date_label($event->date['start'], $event->date['end'], $this->date_format_simple_1); ?></div>
|
255 |
-
<h4 class="mec-event-title"><a class="mec-color-hover" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $event_color; ?><?php if ( !empty($label_style) ) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?></h4>
|
256 |
<div class="mec-event-detail"><?php echo (isset($location['name']) ? $location['name'] : ''); ?></div>
|
257 |
<?php endif;
|
258 |
echo '</article></div>';
|
35 |
$event_color = isset($event->data->meta['mec_color']) ? '<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>' : '';
|
36 |
$start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
|
37 |
$end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
|
38 |
+
$event_start_date = !empty($event->date['start']['date']) ? $event->date['start']['date'] : '';
|
39 |
|
40 |
// colorful
|
41 |
$colorful_bg_color = ($colorful_flag && isset($event->data->meta['mec_color'])) ? ' style="background: #' . $event->data->meta['mec_color'] . '"' : '';
|
112 |
<div class="mec-event-day"><?php echo date_i18n($this->date_format_modern_3, strtotime($event->date['start']['date'])); ?></div>
|
113 |
</div>
|
114 |
<div class="mec-event-content">
|
115 |
+
<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>
|
116 |
<p><?php echo (isset($location['address']) ? $location['address'] : ''); ?></p>
|
117 |
</div>
|
118 |
<div class="mec-event-footer">
|
142 |
<div class="mec-event-date mec-bg-color"><?php echo $this->main->date_label($event->date['start'], $event->date['end'], $this->date_format_classic_1); ?></div>
|
143 |
<?php endif; ?>
|
144 |
<?php do_action('mec_classic_before_title' , $event ); ?>
|
145 |
+
<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>
|
146 |
<?php if ( !empty($label_style) ) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?>
|
147 |
<p><?php echo trim((isset($location['name']) ? $location['name'] : '').', '.(isset($location['address']) ? $location['address'] : ''), ', '); ?></p>
|
148 |
<?php do_action('mec_classic_view_action' , $event); ?>
|
167 |
<?php elseif($this->style == 'minimal'): ?>
|
168 |
<div class="mec-event-date mec-bg-color-hover mec-border-color-hover mec-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>
|
169 |
<div class="event-detail-wrap">
|
170 |
+
<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; ?><?php if ( !empty($label_style) ) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?></h4>
|
171 |
<div class="mec-event-detail"><?php echo (isset($location['name']) ? $location['name'] : ''); ?></div>
|
172 |
</div>
|
173 |
<?php elseif($this->style == 'clean'): ?>
|
186 |
<div class="mec-event-content">
|
187 |
<?php do_action('display_mec_tai' , $event ); ?>
|
188 |
<?php do_action('mec_clean_custom_head' , $event , $event_color ); ?>
|
189 |
+
<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>
|
190 |
<p><?php echo (isset($location['address']) ? $location['address'] : ''); ?></p>
|
191 |
</div>
|
192 |
<div class="mec-event-footer mec-color">
|
212 |
<div class="mec-event-content">
|
213 |
<div class="mec-event-image"><a data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->thumbnails['thumblist']; ?></a></div>
|
214 |
<div class="mec-event-detail-wrap">
|
215 |
+
<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); ?></h4>
|
216 |
<?php if(isset($settings['multiple_day_show_method']) && $settings['multiple_day_show_method'] == 'all_days') : ?>
|
217 |
<div class="mec-event-month"><?php echo date_i18n($this->date_format_novel_1, strtotime($event->date['start']['date'])); ?></div>
|
218 |
<?php else: ?>
|
253 |
</div>
|
254 |
<?php elseif($this->style == 'simple'): ?>
|
255 |
<div class="mec-event-date mec-color"><?php echo $this->main->date_label($event->date['start'], $event->date['end'], $this->date_format_simple_1); ?></div>
|
256 |
+
<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; ?><?php if ( !empty($label_style) ) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?></h4>
|
257 |
<div class="mec-event-detail"><?php echo (isset($location['name']) ? $location['name'] : ''); ?></div>
|
258 |
<?php endif;
|
259 |
echo '</article></div>';
|
app/skins/list/render.php
CHANGED
@@ -27,6 +27,8 @@ $event_colorskin = (isset($styling['mec_colorskin']) || isset($styling['color'])
|
|
27 |
$start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
|
28 |
$end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
|
29 |
$event_color = isset($event->data->meta['mec_color']) ? '<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>' : '';
|
|
|
|
|
30 |
$label_style = '';
|
31 |
|
32 |
if(!empty($event->data->labels))
|
@@ -101,7 +103,7 @@ $event_colorskin = (isset($styling['mec_colorskin']) || isset($styling['color'])
|
|
101 |
</div>
|
102 |
<div class="col-md-6 col-sm-6">
|
103 |
<?php do_action('list_std_title_hook', $event); ?>
|
104 |
-
<h4 class="mec-event-title"><a class="mec-color-hover" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $event_color;
|
105 |
<div class="mec-event-detail"><?php echo (isset($location['name']) ? $location['name'] : '') . (isset($location['address']) ? ' | '.$location['address'] : ''); ?>
|
106 |
<?php if($this->include_events_times) echo $this->main->mec_include_time_labels($start_time, $end_time); ?>
|
107 |
</div>
|
@@ -119,13 +121,13 @@ $event_colorskin = (isset($styling['mec_colorskin']) || isset($styling['color'])
|
|
119 |
<div class="mec-event-date mec-color"><i class="mec-sl-calendar"></i> <?php echo $this->main->date_label($event->date['start'], $event->date['end'], $this->date_format_classic_1); ?></div>
|
120 |
<div class="mec-event-time mec-color"><?php if($this->include_events_times) {echo '<i class="mec-sl-clock"></i>'; echo $this->main->mec_include_time_labels($start_time, $end_time); } ?></div>
|
121 |
<?php endif; ?>
|
122 |
-
<h4 class="mec-event-title"><a class="mec-color-hover" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $event_color; ?></h4>
|
123 |
<?php if(isset($location['name'])): ?><div class="mec-event-detail"><i class="mec-sl-map-marker"></i> <?php echo (isset($location['name']) ? $location['name'] : ''); ?></div><?php endif; ?>
|
124 |
<?php elseif($this->style == 'minimal'): ?>
|
125 |
<div class="col-md-9 col-sm-9">
|
126 |
<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>
|
127 |
<?php if($this->include_events_times) echo $this->main->mec_include_time_labels($start_time, $end_time); ?>
|
128 |
-
<h4 class="mec-event-title"><a class="mec-color-hover" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $event_color; ?></h4>
|
129 |
<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>
|
130 |
</div>
|
131 |
<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>
|
@@ -148,7 +150,7 @@ $event_colorskin = (isset($styling['mec_colorskin']) || isset($styling['color'])
|
|
148 |
</div>
|
149 |
<div class="col-md-6 mec-col-table-c mec-event-content-wrap">
|
150 |
<div class="mec-event-content">
|
151 |
-
<h3 class="mec-event-title"><a class="mec-color-hover" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $event_color; ?></h3>
|
152 |
<div class="mec-event-description"><?php echo $excerpt.(trim($excerpt) ? ' ...' : ''); ?></div>
|
153 |
</div>
|
154 |
</div>
|
@@ -215,7 +217,7 @@ $event_colorskin = (isset($styling['mec_colorskin']) || isset($styling['color'])
|
|
215 |
<?php endif; ?>
|
216 |
<?php echo $this->main->mec_include_time_labels($start_time, $end_time); ?>
|
217 |
</div>
|
218 |
-
<h3 class="mec-toggle-title"><?php echo $event->data->title; ?><?php echo $event_color
|
219 |
<?php if (!empty($label_style)) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?><i class="mec-sl-arrow-down"></i>
|
220 |
</div>
|
221 |
<div class="mec-content-toggle" aria-hidden="true" style="display: none;">
|
27 |
$start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
|
28 |
$end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
|
29 |
$event_color = isset($event->data->meta['mec_color']) ? '<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>' : '';
|
30 |
+
$event_start_date = !empty($event->date['start']['date']) ? $event->date['start']['date'] : '';
|
31 |
+
|
32 |
$label_style = '';
|
33 |
|
34 |
if(!empty($event->data->labels))
|
103 |
</div>
|
104 |
<div class="col-md-6 col-sm-6">
|
105 |
<?php do_action('list_std_title_hook', $event); ?>
|
106 |
+
<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; if (!empty($label_style)) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?></h4>
|
107 |
<div class="mec-event-detail"><?php echo (isset($location['name']) ? $location['name'] : '') . (isset($location['address']) ? ' | '.$location['address'] : ''); ?>
|
108 |
<?php if($this->include_events_times) echo $this->main->mec_include_time_labels($start_time, $end_time); ?>
|
109 |
</div>
|
121 |
<div class="mec-event-date mec-color"><i class="mec-sl-calendar"></i> <?php echo $this->main->date_label($event->date['start'], $event->date['end'], $this->date_format_classic_1); ?></div>
|
122 |
<div class="mec-event-time mec-color"><?php if($this->include_events_times) {echo '<i class="mec-sl-clock"></i>'; echo $this->main->mec_include_time_labels($start_time, $end_time); } ?></div>
|
123 |
<?php endif; ?>
|
124 |
+
<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>
|
125 |
<?php if(isset($location['name'])): ?><div class="mec-event-detail"><i class="mec-sl-map-marker"></i> <?php echo (isset($location['name']) ? $location['name'] : ''); ?></div><?php endif; ?>
|
126 |
<?php elseif($this->style == 'minimal'): ?>
|
127 |
<div class="col-md-9 col-sm-9">
|
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>
|
150 |
</div>
|
151 |
<div class="col-md-6 mec-col-table-c mec-event-content-wrap">
|
152 |
<div class="mec-event-content">
|
153 |
+
<h3 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; ?></h3>
|
154 |
<div class="mec-event-description"><?php echo $excerpt.(trim($excerpt) ? ' ...' : ''); ?></div>
|
155 |
</div>
|
156 |
</div>
|
217 |
<?php endif; ?>
|
218 |
<?php echo $this->main->mec_include_time_labels($start_time, $end_time); ?>
|
219 |
</div>
|
220 |
+
<h3 class="mec-toggle-title"><?php echo $event->data->title; ?><?php echo $this->main->get_flags($event->data->ID, $event_start_date).$event_color; ?></h3>
|
221 |
<?php if (!empty($label_style)) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?><i class="mec-sl-arrow-down"></i>
|
222 |
</div>
|
223 |
<div class="mec-content-toggle" aria-hidden="true" style="display: none;">
|
app/skins/masonry/render.php
CHANGED
@@ -18,6 +18,7 @@ $settings = $this->main->get_settings();
|
|
18 |
|
19 |
$start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
|
20 |
$end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
|
|
|
21 |
|
22 |
$label_style = '';
|
23 |
if(!empty($event->data->labels))
|
@@ -169,7 +170,7 @@ $settings = $this->main->get_settings();
|
|
169 |
}
|
170 |
?>
|
171 |
<div class="mec-event-content">
|
172 |
-
<h4 class="mec-event-title"><a class="mec-color-hover" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $event_color; ?></h4>
|
173 |
<div class="mec-event-description mec-events-content">
|
174 |
<p><?php echo $excerpt.(trim($excerpt) ? ' ...' : ''); ?></p>
|
175 |
</div>
|
18 |
|
19 |
$start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
|
20 |
$end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
|
21 |
+
$event_start_date = !empty($event->date['start']['date']) ? $event->date['start']['date'] : '';
|
22 |
|
23 |
$label_style = '';
|
24 |
if(!empty($event->data->labels))
|
170 |
}
|
171 |
?>
|
172 |
<div class="mec-event-content">
|
173 |
+
<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>
|
174 |
<div class="mec-event-description mec-events-content">
|
175 |
<p><?php echo $excerpt.(trim($excerpt) ? ' ...' : ''); ?></p>
|
176 |
</div>
|
app/skins/monthly_view/calendar.php
CHANGED
@@ -72,32 +72,11 @@ elseif($week_start == 5) // Friday
|
|
72 |
$location = isset($event->data->locations[$event->data->meta['mec_location_id']])? $event->data->locations[$event->data->meta['mec_location_id']] : array();
|
73 |
$start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
|
74 |
$end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
|
75 |
-
$label_style = '';
|
76 |
-
|
77 |
-
// Check for sold out event tickets if sold out is shown sold out label
|
78 |
-
$event_id = (isset($event->ID)) ? intval($event->ID) : 0;
|
79 |
$startDate = !empty($event->data->meta['mec_date']['start']['date'] ) ? $event->data->meta['mec_date']['start']['date'] : '';
|
80 |
$endDate = !empty($event->data->meta['mec_date']['end']['date'] ) ? $event->data->meta['mec_date']['end']['date'] : '' ;
|
81 |
$event_start_date = !empty($event->date['start']['date']) ? $event->date['start']['date'] : '';
|
82 |
-
$event_end_date = !empty($event->date['end']['date']) ? $event->date['end']['date'] : '';
|
83 |
-
$is_soldout = $this->main->is_soldout($event_id, $event_start_date);
|
84 |
-
$dynamic_period = $this->main->date_diff($event_start_date, $event_end_date)->d;
|
85 |
-
|
86 |
-
if($dynamic_period >= 0)
|
87 |
-
{
|
88 |
-
$static_period = (!isset($static_period)) ? $this->main->date_diff($startDate, $endDate)->d : $static_period;
|
89 |
|
90 |
-
|
91 |
-
$static_period = ($dynamic_period > $static_period) ? $dynamic_period : $static_period;
|
92 |
-
|
93 |
-
// For compare next days of start point events
|
94 |
-
$level = abs($static_period - $dynamic_period);
|
95 |
-
|
96 |
-
// For events multiple days repeating
|
97 |
-
if(($dynamic_period < ($static_period)) and (($dynamic_period) >= 0) and $this->main->is_soldout($event_id,
|
98 |
-
date('Y-m-d',strtotime("- {$level}day", strtotime($event_start_date))))) $is_soldout = true;
|
99 |
-
}
|
100 |
-
|
101 |
if ( !empty($event->data->labels) ):
|
102 |
foreach( $event->data->labels as $label)
|
103 |
{
|
@@ -166,9 +145,7 @@ elseif($week_start == 5) // Friday
|
|
166 |
$events_str .= '<div class="mec-event-image">'.$event->data->thumbnails['thumbnail'].'</div>';
|
167 |
if(trim($start_time)) $events_str .= '<div class="mec-event-time mec-color"><i class="mec-sl-clock-o"></i> '.$start_time.(trim($end_time) ? ' - '.$end_time : '').'</div>';
|
168 |
$event_color = isset($event->data->meta['mec_color']) ? '<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>' : '';
|
169 |
-
$
|
170 |
-
$sold_out = ($is_soldout) ? ' <span class=soldout>' . __('Sold Out', 'modern-events-calendar-lite') . '</span> ' : '';
|
171 |
-
$events_str .= '<h4 class="mec-event-title '.$sold_out_css_class.'"><a class="mec-color-hover" data-event-id="'.$event->data->ID.'" href="'.$this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']).'">'.$event->data->title.'</a>'.$sold_out.$event_color.'</h4>';
|
172 |
$events_str .= '<div class="mec-event-detail">'.(isset($location['name']) ? $location['name'] : '').'</div>';
|
173 |
$events_str .= '</article>';
|
174 |
}
|
72 |
$location = isset($event->data->locations[$event->data->meta['mec_location_id']])? $event->data->locations[$event->data->meta['mec_location_id']] : array();
|
73 |
$start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
|
74 |
$end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
|
|
|
|
|
|
|
|
|
75 |
$startDate = !empty($event->data->meta['mec_date']['start']['date'] ) ? $event->data->meta['mec_date']['start']['date'] : '';
|
76 |
$endDate = !empty($event->data->meta['mec_date']['end']['date'] ) ? $event->data->meta['mec_date']['end']['date'] : '' ;
|
77 |
$event_start_date = !empty($event->date['start']['date']) ? $event->date['start']['date'] : '';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
78 |
|
79 |
+
$label_style = '';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
80 |
if ( !empty($event->data->labels) ):
|
81 |
foreach( $event->data->labels as $label)
|
82 |
{
|
145 |
$events_str .= '<div class="mec-event-image">'.$event->data->thumbnails['thumbnail'].'</div>';
|
146 |
if(trim($start_time)) $events_str .= '<div class="mec-event-time mec-color"><i class="mec-sl-clock-o"></i> '.$start_time.(trim($end_time) ? ' - '.$end_time : '').'</div>';
|
147 |
$event_color = isset($event->data->meta['mec_color']) ? '<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>' : '';
|
148 |
+
$events_str .= '<h4 class="mec-event-title"><a class="mec-color-hover" data-event-id="'.$event->data->ID.'" href="'.$this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']).'">'.$event->data->title.'</a>'.$this->main->get_flags($event->data->ID, $event_start_date).$event_color.'</h4>';
|
|
|
|
|
149 |
$events_str .= '<div class="mec-event-detail">'.(isset($location['name']) ? $location['name'] : '').'</div>';
|
150 |
$events_str .= '</article>';
|
151 |
}
|
app/skins/monthly_view/calendar_clean.php
CHANGED
@@ -72,32 +72,11 @@ elseif($week_start == 5) // Friday
|
|
72 |
$location = isset($event->data->locations[$event->data->meta['mec_location_id']])? $event->data->locations[$event->data->meta['mec_location_id']] : array();
|
73 |
$start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
|
74 |
$end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
|
75 |
-
$label_style = '';
|
76 |
-
|
77 |
-
// Check for sold out event tickets if sold out is shown sold out label
|
78 |
-
$event_id = (isset($event->ID)) ? intval($event->ID) : 0;
|
79 |
$startDate = !empty($event->data->meta['mec_date']['start']['date'] ) ? $event->data->meta['mec_date']['start']['date'] : '';
|
80 |
$endDate = !empty($event->data->meta['mec_date']['end']['date'] ) ? $event->data->meta['mec_date']['end']['date'] : '' ;
|
81 |
$event_start_date = !empty($event->date['start']['date']) ? $event->date['start']['date'] : '';
|
82 |
-
$event_end_date = !empty($event->date['end']['date']) ? $event->date['end']['date'] : '';
|
83 |
-
$is_soldout = $this->main->is_soldout($event_id, $event_start_date);
|
84 |
-
$dynamic_period = $this->main->date_diff($event_start_date, $event_end_date)->d;
|
85 |
-
|
86 |
-
if($dynamic_period >= 0)
|
87 |
-
{
|
88 |
-
$static_period = (!isset($static_period)) ? $this->main->date_diff($startDate, $endDate)->d : $static_period;
|
89 |
-
|
90 |
-
// For events no multiple days but repeating is multiple days
|
91 |
-
$static_period = ($dynamic_period > $static_period) ? $dynamic_period : $static_period;
|
92 |
-
|
93 |
-
// For compare next days of start point events
|
94 |
-
$level = abs($static_period - $dynamic_period);
|
95 |
-
|
96 |
-
// For events multiple days repeating
|
97 |
-
if(($dynamic_period < ($static_period)) and (($dynamic_period) >= 0) and $this->main->is_soldout($event_id,
|
98 |
-
date('Y-m-d',strtotime("- {$level}day", strtotime($event_start_date))))) $is_soldout = true;
|
99 |
-
}
|
100 |
|
|
|
101 |
if ( !empty($event->data->labels) ):
|
102 |
foreach( $event->data->labels as $label)
|
103 |
{
|
@@ -168,7 +147,7 @@ elseif($week_start == 5) // Friday
|
|
168 |
</script>
|
169 |
';
|
170 |
endif;
|
171 |
-
$events_str .= '<article data-style="'.$label_style.'" class="'.((isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : '').'mec-event-article '.$this->get_event_classes($event
|
172 |
$events_str .= '<div class="mec-event-image">'.$event->data->thumbnails['thumblist'].'</div>';
|
173 |
if(trim($start_time)) $events_str .= '<div class="mec-event-time mec-color"><i class="mec-sl-clock-o"></i> '.$start_time.(trim($end_time) ? ' - '.$end_time : '').'</div>';
|
174 |
if(has_filter('monthly_event_after_time')) {
|
@@ -176,9 +155,7 @@ elseif($week_start == 5) // Friday
|
|
176 |
}
|
177 |
$events_str .= $after_time_filter;
|
178 |
$event_color = isset($event->data->meta['mec_color'])?'<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>':'';
|
179 |
-
$
|
180 |
-
$sold_out = ($is_soldout) ? ' <span class=soldout>' . __('Sold Out', 'modern-events-calendar-lite') . '</span> ' : '';
|
181 |
-
$events_str .= '<h4 class="mec-event-title'.$sold_out_css_class.'"><a class="mec-color-hover" data-event-id="'.$event->data->ID.'" href="'.$this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']).'">'.$event->data->title.'</a>'.$sold_out.$event_color.'</h4>';
|
182 |
$events_str .= '<div class="mec-event-detail">'.(isset($location['name']) ? $location['name'] : '').'</div>';
|
183 |
if(has_filter('monthly_event_right_box')) {
|
184 |
$events_filter = apply_filters('monthly_event_right_box', $events_str, $event);
|
72 |
$location = isset($event->data->locations[$event->data->meta['mec_location_id']])? $event->data->locations[$event->data->meta['mec_location_id']] : array();
|
73 |
$start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
|
74 |
$end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
|
|
|
|
|
|
|
|
|
75 |
$startDate = !empty($event->data->meta['mec_date']['start']['date'] ) ? $event->data->meta['mec_date']['start']['date'] : '';
|
76 |
$endDate = !empty($event->data->meta['mec_date']['end']['date'] ) ? $event->data->meta['mec_date']['end']['date'] : '' ;
|
77 |
$event_start_date = !empty($event->date['start']['date']) ? $event->date['start']['date'] : '';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
78 |
|
79 |
+
$label_style = '';
|
80 |
if ( !empty($event->data->labels) ):
|
81 |
foreach( $event->data->labels as $label)
|
82 |
{
|
147 |
</script>
|
148 |
';
|
149 |
endif;
|
150 |
+
$events_str .= '<article data-style="'.$label_style.'" class="'.((isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : '').'mec-event-article '.$this->get_event_classes($event).'">';
|
151 |
$events_str .= '<div class="mec-event-image">'.$event->data->thumbnails['thumblist'].'</div>';
|
152 |
if(trim($start_time)) $events_str .= '<div class="mec-event-time mec-color"><i class="mec-sl-clock-o"></i> '.$start_time.(trim($end_time) ? ' - '.$end_time : '').'</div>';
|
153 |
if(has_filter('monthly_event_after_time')) {
|
155 |
}
|
156 |
$events_str .= $after_time_filter;
|
157 |
$event_color = isset($event->data->meta['mec_color'])?'<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>':'';
|
158 |
+
$events_str .= '<h4 class="mec-event-title"><a class="mec-color-hover" data-event-id="'.$event->data->ID.'" href="'.$this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']).'">'.$event->data->title.'</a>'.$this->main->get_flags($event->data->ID, $event_start_date).$event_color.'</h4>';
|
|
|
|
|
159 |
$events_str .= '<div class="mec-event-detail">'.(isset($location['name']) ? $location['name'] : '').'</div>';
|
160 |
if(has_filter('monthly_event_right_box')) {
|
161 |
$events_filter = apply_filters('monthly_event_right_box', $events_str, $event);
|
app/skins/slider/render.php
CHANGED
@@ -24,7 +24,8 @@ $settings = $this->main->get_settings();
|
|
24 |
|
25 |
$start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
|
26 |
$end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
|
27 |
-
|
|
|
28 |
$excerpt = trim($event->data->post->post_excerpt) ? $event->data->post->post_excerpt : '';
|
29 |
|
30 |
// Safe Excerpt for UTF-8 Strings
|
@@ -105,7 +106,7 @@ $settings = $this->main->get_settings();
|
|
105 |
<div class="mec-event-day"><?php echo date_i18n($this->date_format_type1_3, strtotime($event->date['start']['date'])); ?></div>
|
106 |
</div>
|
107 |
<div class="mec-event-content">
|
108 |
-
<h4 class="mec-event-title"><a class="mec-color-hover" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $event_color; ?></h4>
|
109 |
<div class="mec-event-detail"><?php echo (isset($location['name']) ? $location['name'] : '') . (isset($location['address']) ? ' | '.$location['address'] : ''); ?></div>
|
110 |
</div>
|
111 |
<div class="mec-event-footer">
|
@@ -153,7 +154,7 @@ $settings = $this->main->get_settings();
|
|
153 |
<div class="mec-event-day"><?php echo date_i18n($this->date_format_type2_3, strtotime($event->date['start']['date'])); ?></div>
|
154 |
</div>
|
155 |
<div class="mec-event-content">
|
156 |
-
<h4 class="mec-event-title"><a class="mec-color-hover" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $event_color; ?></h4>
|
157 |
<div class="mec-event-detail"><?php echo (isset($location['name']) ? $location['name'] : '') . (isset($location['address']) ? ' | '.$location['address'] : ''); ?></div>
|
158 |
</div>
|
159 |
<div class="mec-event-footer">
|
@@ -200,7 +201,7 @@ $settings = $this->main->get_settings();
|
|
200 |
<div class="mec-event-day"><?php echo date_i18n($this->date_format_type3_3, strtotime($event->date['start']['date'])); ?></div>
|
201 |
</div>
|
202 |
<div class="mec-event-content">
|
203 |
-
<h4 class="mec-event-title"><a class="mec-color-hover" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $event_color; ?></h4>
|
204 |
<div class="mec-event-detail"><?php echo (isset($location['name']) ? $location['name'] : '') . (isset($location['address']) ? ' | '.$location['address'] : ''); ?></div>
|
205 |
</div>
|
206 |
<div class="mec-slider-t3-footer">
|
@@ -248,7 +249,7 @@ $settings = $this->main->get_settings();
|
|
248 |
<div class="mec-event-day"><?php echo date_i18n($this->date_format_type4_3, strtotime($event->date['start']['date'])); ?></div>
|
249 |
</div>
|
250 |
<div class="mec-event-content">
|
251 |
-
<h4 class="mec-event-title"><a class="mec-color-hover" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $event_color; ?></h4>
|
252 |
<div class="mec-event-detail"><?php echo (isset($location['name']) ? $location['name'] : '') . (isset($location['address']) ? ' | '.$location['address'] : ''); ?></div>
|
253 |
</div>
|
254 |
<div class="mec-slider-t4-footer">
|
@@ -305,7 +306,7 @@ $settings = $this->main->get_settings();
|
|
305 |
</div>
|
306 |
</div>
|
307 |
<div class="mec-event-content">
|
308 |
-
<h4 class="mec-event-title"><a class="mec-color-hover" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $event_color; ?></h4>
|
309 |
<div class="mec-event-description mec-events-content">
|
310 |
<p><?php echo $excerpt.(trim($excerpt) ? ' ...' : ''); ?></p>
|
311 |
</div>
|
24 |
|
25 |
$start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
|
26 |
$end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
|
27 |
+
$event_start_date = !empty($event->date['start']['date']) ? $event->date['start']['date'] : '';
|
28 |
+
|
29 |
$excerpt = trim($event->data->post->post_excerpt) ? $event->data->post->post_excerpt : '';
|
30 |
|
31 |
// Safe Excerpt for UTF-8 Strings
|
106 |
<div class="mec-event-day"><?php echo date_i18n($this->date_format_type1_3, strtotime($event->date['start']['date'])); ?></div>
|
107 |
</div>
|
108 |
<div class="mec-event-content">
|
109 |
+
<h4 class="mec-event-title"><a class="mec-color-hover" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $this->main->get_flags($event->data->ID, $event_start_date).$event_color; ?></h4>
|
110 |
<div class="mec-event-detail"><?php echo (isset($location['name']) ? $location['name'] : '') . (isset($location['address']) ? ' | '.$location['address'] : ''); ?></div>
|
111 |
</div>
|
112 |
<div class="mec-event-footer">
|
154 |
<div class="mec-event-day"><?php echo date_i18n($this->date_format_type2_3, strtotime($event->date['start']['date'])); ?></div>
|
155 |
</div>
|
156 |
<div class="mec-event-content">
|
157 |
+
<h4 class="mec-event-title"><a class="mec-color-hover" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $this->main->get_flags($event->data->ID, $event_start_date).$event_color; ?></h4>
|
158 |
<div class="mec-event-detail"><?php echo (isset($location['name']) ? $location['name'] : '') . (isset($location['address']) ? ' | '.$location['address'] : ''); ?></div>
|
159 |
</div>
|
160 |
<div class="mec-event-footer">
|
201 |
<div class="mec-event-day"><?php echo date_i18n($this->date_format_type3_3, strtotime($event->date['start']['date'])); ?></div>
|
202 |
</div>
|
203 |
<div class="mec-event-content">
|
204 |
+
<h4 class="mec-event-title"><a class="mec-color-hover" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $this->main->get_flags($event->data->ID, $event_start_date).$event_color; ?></h4>
|
205 |
<div class="mec-event-detail"><?php echo (isset($location['name']) ? $location['name'] : '') . (isset($location['address']) ? ' | '.$location['address'] : ''); ?></div>
|
206 |
</div>
|
207 |
<div class="mec-slider-t3-footer">
|
249 |
<div class="mec-event-day"><?php echo date_i18n($this->date_format_type4_3, strtotime($event->date['start']['date'])); ?></div>
|
250 |
</div>
|
251 |
<div class="mec-event-content">
|
252 |
+
<h4 class="mec-event-title"><a class="mec-color-hover" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $this->main->get_flags($event->data->ID, $event_start_date).$event_color; ?></h4>
|
253 |
<div class="mec-event-detail"><?php echo (isset($location['name']) ? $location['name'] : '') . (isset($location['address']) ? ' | '.$location['address'] : ''); ?></div>
|
254 |
</div>
|
255 |
<div class="mec-slider-t4-footer">
|
306 |
</div>
|
307 |
</div>
|
308 |
<div class="mec-event-content">
|
309 |
+
<h4 class="mec-event-title"><a class="mec-color-hover" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $this->main->get_flags($event->data->ID, $event_start_date).$event_color; ?></h4>
|
310 |
<div class="mec-event-description mec-events-content">
|
311 |
<p><?php echo $excerpt.(trim($excerpt) ? ' ...' : ''); ?></p>
|
312 |
</div>
|
app/skins/tile.php
ADDED
@@ -0,0 +1,326 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/** no direct access **/
|
3 |
+
defined('MECEXEC') or die();
|
4 |
+
|
5 |
+
/**
|
6 |
+
* Webnus MEC tile class.
|
7 |
+
* @author Webnus <info@webnus.biz>
|
8 |
+
*/
|
9 |
+
class MEC_skin_tile extends MEC_skins
|
10 |
+
{
|
11 |
+
/**
|
12 |
+
* @var string
|
13 |
+
*/
|
14 |
+
public $skin = 'tile';
|
15 |
+
|
16 |
+
public $date_format_clean_1;
|
17 |
+
public $date_format_clean_2;
|
18 |
+
|
19 |
+
/**
|
20 |
+
* Constructor method
|
21 |
+
* @author Webnus <info@webnus.biz>
|
22 |
+
*/
|
23 |
+
public function __construct()
|
24 |
+
{
|
25 |
+
parent::__construct();
|
26 |
+
}
|
27 |
+
|
28 |
+
/**
|
29 |
+
* Registers skin actions into WordPress
|
30 |
+
* @author Webnus <info@webnus.biz>
|
31 |
+
*/
|
32 |
+
public function actions()
|
33 |
+
{
|
34 |
+
$this->factory->action('wp_ajax_mec_tile_load_month', array($this, 'load_month'));
|
35 |
+
$this->factory->action('wp_ajax_nopriv_mec_tile_load_month', array($this, 'load_month'));
|
36 |
+
}
|
37 |
+
|
38 |
+
/**
|
39 |
+
* Initialize the skin
|
40 |
+
* @author Webnus <info@webnus.biz>
|
41 |
+
* @param array $atts
|
42 |
+
*/
|
43 |
+
public function initialize($atts)
|
44 |
+
{
|
45 |
+
$this->atts = $atts;
|
46 |
+
|
47 |
+
// Skin Options
|
48 |
+
$this->skin_options = (isset($this->atts['sk-options']) and isset($this->atts['sk-options'][$this->skin])) ? $this->atts['sk-options'][$this->skin] : array();
|
49 |
+
|
50 |
+
$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'] : 'j';
|
51 |
+
$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'] : 'M';
|
52 |
+
|
53 |
+
// Search Form Options
|
54 |
+
$this->sf_options = (isset($this->atts['sf-options']) and isset($this->atts['sf-options'][$this->skin])) ? $this->atts['sf-options'][$this->skin] : array();
|
55 |
+
|
56 |
+
// Search Form Status
|
57 |
+
$this->sf_status = isset($this->atts['sf_status']) ? $this->atts['sf_status'] : true;
|
58 |
+
|
59 |
+
// Generate an ID for the sking
|
60 |
+
$this->id = isset($this->atts['id']) ? $this->atts['id'] : mt_rand(100, 999);
|
61 |
+
|
62 |
+
// Set the ID
|
63 |
+
if(!isset($this->atts['id'])) $this->atts['id'] = $this->id;
|
64 |
+
|
65 |
+
// The style
|
66 |
+
$this->style = isset($this->skin_options['style']) ? $this->skin_options['style'] : 'clean';
|
67 |
+
|
68 |
+
// Next/Previous Month
|
69 |
+
$this->next_previous_button = isset($this->skin_options['next_previous_button']) ? $this->skin_options['next_previous_button'] : true;
|
70 |
+
|
71 |
+
// Override the style if the style forced by us in a widget etc
|
72 |
+
if(isset($this->atts['style']) and trim($this->atts['style']) != '') $this->style = $this->atts['style'];
|
73 |
+
|
74 |
+
// HTML class
|
75 |
+
$this->html_class = '';
|
76 |
+
if(isset($this->atts['html-class']) and trim($this->atts['html-class']) != '') $this->html_class = $this->atts['html-class'];
|
77 |
+
|
78 |
+
// SED Method
|
79 |
+
$this->sed_method = isset($this->skin_options['sed_method']) ? $this->skin_options['sed_method'] : '0';
|
80 |
+
|
81 |
+
// Image popup
|
82 |
+
$this->image_popup = isset($this->skin_options['image_popup']) ? $this->skin_options['image_popup'] : '0';
|
83 |
+
|
84 |
+
// From Widget
|
85 |
+
$this->widget = (isset($this->atts['widget']) and trim($this->atts['widget'])) ? true : false;
|
86 |
+
|
87 |
+
// The count in row
|
88 |
+
$this->count = isset($this->skin_options['count']) ? $this->skin_options['count'] : '3';
|
89 |
+
|
90 |
+
// Init MEC
|
91 |
+
$this->args['mec-init'] = true;
|
92 |
+
$this->args['mec-skin'] = $this->skin;
|
93 |
+
|
94 |
+
// Post Type
|
95 |
+
$this->args['post_type'] = $this->main->get_main_post_type();
|
96 |
+
|
97 |
+
// Post Status
|
98 |
+
$this->args['post_status'] = 'publish';
|
99 |
+
|
100 |
+
// Keyword Query
|
101 |
+
$this->args['s'] = $this->keyword_query();
|
102 |
+
|
103 |
+
// Taxonomy
|
104 |
+
$this->args['tax_query'] = $this->tax_query();
|
105 |
+
|
106 |
+
// Meta
|
107 |
+
$this->args['meta_query'] = $this->meta_query();
|
108 |
+
|
109 |
+
// Tag
|
110 |
+
$this->args['tag'] = $this->tag_query();
|
111 |
+
|
112 |
+
// Author
|
113 |
+
$this->args['author'] = $this->author_query();
|
114 |
+
|
115 |
+
// Pagination Options
|
116 |
+
$this->paged = get_query_var('paged', 1);
|
117 |
+
$this->limit = 500;
|
118 |
+
|
119 |
+
$this->args['posts_per_page'] = $this->limit;
|
120 |
+
$this->args['paged'] = $this->paged;
|
121 |
+
|
122 |
+
// Sort Options
|
123 |
+
$this->args['orderby'] = 'meta_value_num';
|
124 |
+
$this->args['order'] = 'ASC';
|
125 |
+
$this->args['meta_key'] = 'mec_start_day_seconds';
|
126 |
+
|
127 |
+
// Show Only Expired Events
|
128 |
+
$this->show_only_expired_events = (isset($this->atts['show_only_past_events']) and trim($this->atts['show_only_past_events'])) ? '1' : '0';
|
129 |
+
|
130 |
+
// Show Past Events
|
131 |
+
if($this->show_only_expired_events) $this->atts['show_past_events'] = '1';
|
132 |
+
|
133 |
+
// Show Past Events
|
134 |
+
$this->args['mec-past-events'] = isset($this->atts['show_past_events']) ? $this->atts['show_past_events'] : '0';
|
135 |
+
|
136 |
+
// Start Date
|
137 |
+
list($this->year, $this->month, $this->day) = $this->get_start_date();
|
138 |
+
|
139 |
+
$this->start_date = date('Y-m-d', strtotime($this->year.'-'.$this->month.'-'.$this->day));
|
140 |
+
$this->active_day = $this->year.'-'.$this->month.'-'.current_time('d');
|
141 |
+
|
142 |
+
// We will extend the end date in the loop
|
143 |
+
$this->end_date = $this->start_date;
|
144 |
+
}
|
145 |
+
|
146 |
+
/**
|
147 |
+
* Search and returns the filtered events
|
148 |
+
* @author Webnus <info@webnus.biz>
|
149 |
+
* @return array of objects
|
150 |
+
*/
|
151 |
+
public function search()
|
152 |
+
{
|
153 |
+
if($this->show_only_expired_events)
|
154 |
+
{
|
155 |
+
$start = date('Y-m-d H:i:s', current_time('timestamp', 0));
|
156 |
+
$end = $this->start_date;
|
157 |
+
}
|
158 |
+
else
|
159 |
+
{
|
160 |
+
$start = $this->start_date;
|
161 |
+
$end = date('Y-m-t', strtotime($this->start_date));
|
162 |
+
}
|
163 |
+
|
164 |
+
// Date Events
|
165 |
+
$dates = $this->period($start, $end, true);
|
166 |
+
|
167 |
+
// Limit
|
168 |
+
$this->args['posts_per_page'] = $this->limit;
|
169 |
+
|
170 |
+
$events = array();
|
171 |
+
foreach($dates as $date=>$IDs)
|
172 |
+
{
|
173 |
+
// Include Available Events
|
174 |
+
$this->args['post__in'] = $IDs;
|
175 |
+
|
176 |
+
// The Query
|
177 |
+
$query = new WP_Query($this->args);
|
178 |
+
if($query->have_posts())
|
179 |
+
{
|
180 |
+
// The Loop
|
181 |
+
while($query->have_posts())
|
182 |
+
{
|
183 |
+
$query->the_post();
|
184 |
+
|
185 |
+
if(!isset($events[$date])) $events[$date] = array();
|
186 |
+
|
187 |
+
$rendered = $this->render->data(get_the_ID());
|
188 |
+
|
189 |
+
$data = new stdClass();
|
190 |
+
$data->ID = get_the_ID();
|
191 |
+
$data->data = $rendered;
|
192 |
+
|
193 |
+
$data->date = array
|
194 |
+
(
|
195 |
+
'start'=>array('date'=>$date),
|
196 |
+
'end'=>array('date'=>$this->main->get_end_date($date, $rendered))
|
197 |
+
);
|
198 |
+
|
199 |
+
$events[$date][] = $data;
|
200 |
+
}
|
201 |
+
}
|
202 |
+
|
203 |
+
// Restore original Post Data
|
204 |
+
wp_reset_postdata();
|
205 |
+
}
|
206 |
+
|
207 |
+
return $events;
|
208 |
+
}
|
209 |
+
|
210 |
+
/**
|
211 |
+
* Returns start day of skin for filtering events
|
212 |
+
* @author Webnus <info@webnus.biz>
|
213 |
+
* @return array
|
214 |
+
*/
|
215 |
+
public function get_start_date()
|
216 |
+
{
|
217 |
+
// Default date
|
218 |
+
$date = current_time('Y-m-d');
|
219 |
+
|
220 |
+
if(isset($this->skin_options['start_date_type']) and $this->skin_options['start_date_type'] == 'start_current_month') $date = date('Y-m-d', strtotime('first day of this month'));
|
221 |
+
elseif(isset($this->skin_options['start_date_type']) and $this->skin_options['start_date_type'] == 'start_next_month') $date = date('Y-m-d', strtotime('first day of next month'));
|
222 |
+
elseif(isset($this->skin_options['start_date_type']) and $this->skin_options['start_date_type'] == 'date') $date = date('Y-m-d', strtotime($this->skin_options['start_date']));
|
223 |
+
|
224 |
+
// Hide past events
|
225 |
+
if(isset($this->atts['show_past_events']) and !trim($this->atts['show_past_events']))
|
226 |
+
{
|
227 |
+
$today = current_time('Y-m-d');
|
228 |
+
if(strtotime($date) < strtotime($today)) $date = $today;
|
229 |
+
}
|
230 |
+
|
231 |
+
// Show only expired events
|
232 |
+
if(isset($this->show_only_expired_events) and $this->show_only_expired_events)
|
233 |
+
{
|
234 |
+
$yesterday = date('Y-m-d', strtotime('Yesterday'));
|
235 |
+
if(strtotime($date) > strtotime($yesterday)) $date = $yesterday;
|
236 |
+
}
|
237 |
+
|
238 |
+
$time = strtotime($date);
|
239 |
+
return array(date('Y', $time), date('m', $time), date('d', $time));
|
240 |
+
}
|
241 |
+
|
242 |
+
/**
|
243 |
+
* Load month for AJAX requert
|
244 |
+
* @author Webnus <info@webnus.biz>
|
245 |
+
* @return void
|
246 |
+
*/
|
247 |
+
public function load_month()
|
248 |
+
{
|
249 |
+
$this->sf = $this->request->getVar('sf', array());
|
250 |
+
$apply_sf_date = $this->request->getVar('apply_sf_date', 1);
|
251 |
+
$atts = $this->sf_apply($this->request->getVar('atts', array()), $this->sf, $apply_sf_date);
|
252 |
+
$navigator_click = $this->request->getVar('navigator_click', false);
|
253 |
+
|
254 |
+
// Initialize the skin
|
255 |
+
$this->initialize($atts);
|
256 |
+
|
257 |
+
// Search Events If Not Found In Current Month
|
258 |
+
$c = 0;
|
259 |
+
$break = false;
|
260 |
+
|
261 |
+
do
|
262 |
+
{
|
263 |
+
if($c > 6) $break = true;
|
264 |
+
if($c and !$break)
|
265 |
+
{
|
266 |
+
if(intval($this->month) == 12)
|
267 |
+
{
|
268 |
+
$this->year = intval($this->year)+1;
|
269 |
+
$this->month = '01';
|
270 |
+
}
|
271 |
+
|
272 |
+
$this->month = sprintf("%02d", intval($this->month)+1);
|
273 |
+
}
|
274 |
+
else
|
275 |
+
{
|
276 |
+
// Start Date
|
277 |
+
$this->year = $this->request->getVar('mec_year', current_time('Y'));
|
278 |
+
$this->month = $this->request->getVar('mec_month', current_time('m'));
|
279 |
+
}
|
280 |
+
|
281 |
+
if($this->show_only_expired_events)
|
282 |
+
{
|
283 |
+
$this->start_date = date('Y-m-d', strtotime($this->year.'-'.$this->month.'-01'));
|
284 |
+
$this->active_day = date('Y-m-t', strtotime($this->year.'-'.$this->month.'-01'));
|
285 |
+
}
|
286 |
+
else
|
287 |
+
{
|
288 |
+
$this->start_date = date('Y-m-d', strtotime($this->year.'-'.$this->month.'-01'));
|
289 |
+
|
290 |
+
$day = current_time('d');
|
291 |
+
$this->active_day = $this->year.'-'.$this->month.'-'.$day;
|
292 |
+
|
293 |
+
// If date is not valid then use the first day of month
|
294 |
+
if(!$this->main->validate_date($this->active_day, 'Y-m-d')) $this->active_day = $this->year.'-'.$this->month.'-01';
|
295 |
+
}
|
296 |
+
|
297 |
+
// We will extend the end date in the loop
|
298 |
+
$this->end_date = $this->start_date;
|
299 |
+
|
300 |
+
// Return the events
|
301 |
+
$this->atts['return_items'] = true;
|
302 |
+
|
303 |
+
// Fetch the events
|
304 |
+
$this->fetch();
|
305 |
+
|
306 |
+
// Break the loop if not resault
|
307 |
+
if($break)
|
308 |
+
{
|
309 |
+
break;
|
310 |
+
}
|
311 |
+
|
312 |
+
// Set active day to current day if not resault
|
313 |
+
if(count($this->events)) $this->active_day = key($this->events);
|
314 |
+
if($navigator_click) break;
|
315 |
+
|
316 |
+
$c++;
|
317 |
+
}
|
318 |
+
while(!count($this->events));
|
319 |
+
|
320 |
+
// Return the output
|
321 |
+
$output = $this->output();
|
322 |
+
|
323 |
+
echo json_encode($output);
|
324 |
+
exit;
|
325 |
+
}
|
326 |
+
}
|
app/skins/tile/index.html
ADDED
File without changes
|
app/skins/tile/render.php
ADDED
@@ -0,0 +1,114 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/** no direct access **/
|
3 |
+
defined('MECEXEC') or die();
|
4 |
+
|
5 |
+
$styling = $this->main->get_styling();
|
6 |
+
$event_colorskin = (isset($styling['mec_colorskin'] ) || isset($styling['color'])) ? 'colorskin-custom' : '';
|
7 |
+
$settings = $this->main->get_settings();
|
8 |
+
?>
|
9 |
+
<div class="mec-wrap <?php echo $event_colorskin; ?>">
|
10 |
+
<div class="mec-event-tile-view">
|
11 |
+
<?php
|
12 |
+
$count = $this->count;
|
13 |
+
|
14 |
+
if($count == 0 or $count == 5) $col = 4;
|
15 |
+
else $col = 12 / $count;
|
16 |
+
|
17 |
+
$rcount = 1 ;
|
18 |
+
foreach($this->events as $date):
|
19 |
+
foreach($date as $event):
|
20 |
+
|
21 |
+
echo ($rcount == 1) ? '<div class="row">' : '';
|
22 |
+
echo '<div class="col-md-'.$col.' col-sm-'.$col.'">';
|
23 |
+
$location = isset($event->data->locations[$event->data->meta['mec_location_id']])? $event->data->locations[$event->data->meta['mec_location_id']] : array();
|
24 |
+
$start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
|
25 |
+
$event_start_date = !empty($event->date['start']['date']) ? $event->date['start']['date'] : '';
|
26 |
+
$event_color = isset($event->data->meta['mec_color']) ? '#'.$event->data->meta['mec_color'] : '';
|
27 |
+
$background_image = (isset($event->data->featured_image['tileview']) && trim($event->data->featured_image['tileview'])) ? ' url(\''.trim($event->data->featured_image['tileview']).'\')' : '';
|
28 |
+
$label_style = '';
|
29 |
+
if(!empty($event->data->labels))
|
30 |
+
{
|
31 |
+
foreach( $event->data->labels as $label)
|
32 |
+
{
|
33 |
+
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
34 |
+
|
35 |
+
if($label['style'] == 'mec-label-featured') $label_style = esc_html__('Featured' , 'modern-events-calendar-lite');
|
36 |
+
elseif($label['style'] == 'mec-label-canceled') $label_style = esc_html__('Canceled' , 'modern-events-calendar-lite');
|
37 |
+
}
|
38 |
+
}
|
39 |
+
|
40 |
+
$speakers = '""';
|
41 |
+
if(!empty($event->data->speakers))
|
42 |
+
{
|
43 |
+
$speakers= [];
|
44 |
+
foreach($event->data->speakers as $key => $value)
|
45 |
+
{
|
46 |
+
$speakers[] = array(
|
47 |
+
"@type" => "Person",
|
48 |
+
"name" => $value['name'],
|
49 |
+
"image" => $value['thumbnail'],
|
50 |
+
"sameAs" => $value['facebook'],
|
51 |
+
);
|
52 |
+
}
|
53 |
+
|
54 |
+
$speakers = json_encode($speakers);
|
55 |
+
}
|
56 |
+
|
57 |
+
$schema_settings = isset($settings['schema']) ? $settings['schema'] : '';
|
58 |
+
if($schema_settings == '1' ):
|
59 |
+
?>
|
60 |
+
<script type="application/ld+json">
|
61 |
+
{
|
62 |
+
"@context" : "http://schema.org",
|
63 |
+
"@type" : "Event",
|
64 |
+
"startDate" : "<?php echo !empty( $event->data->meta['mec_date']['start']['date'] ) ? $event->data->meta['mec_date']['start']['date'] : '' ; ?>",
|
65 |
+
"endDate" : "<?php echo !empty( $event->data->meta['mec_date']['end']['date'] ) ? $event->data->meta['mec_date']['end']['date'] : '' ; ?>",
|
66 |
+
"location" :
|
67 |
+
{
|
68 |
+
"@type" : "Place",
|
69 |
+
"name" : "<?php echo (isset($location['name']) ? $location['name'] : ''); ?>",
|
70 |
+
"image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
|
71 |
+
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
72 |
+
},
|
73 |
+
"offers": {
|
74 |
+
"url": "<?php echo $event->data->permalink; ?>",
|
75 |
+
"price": "<?php echo isset($event->data->meta['mec_cost']) ? $event->data->meta['mec_cost'] : '' ; ?>",
|
76 |
+
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
77 |
+
},
|
78 |
+
"performer": <?php echo $speakers; ?>,
|
79 |
+
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
|
80 |
+
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
81 |
+
"name" : "<?php esc_html_e($event->data->title); ?>",
|
82 |
+
"url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
|
83 |
+
}
|
84 |
+
</script>
|
85 |
+
<?php endif; ?>
|
86 |
+
<article <?php echo 'style="background:' . $event_color . $background_image. '"'; ?> data-style="<?php echo $label_style; ?>" class="<?php echo ((isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event' : ''); ?> mec-event-article mec-tile-item mec-clear <?php echo $this->get_event_classes($event); ?>">
|
87 |
+
<div class="event-tile-view-head clearfix">
|
88 |
+
<?php if(isset($settings['multiple_day_show_method']) && $settings['multiple_day_show_method'] == 'all_days') : ?>
|
89 |
+
<div class="mec-event-date"><?php echo date_i18n($this->date_format_clean_1, strtotime($event->date['start']['date'])); ?></div>
|
90 |
+
<div class="mec-event-month"><?php echo date_i18n($this->date_format_clean_2, strtotime($event->date['start']['date'])); ?></div>
|
91 |
+
<?php else: ?>
|
92 |
+
<div class="mec-event-month"><?php echo $this->main->date_label($event->date['start'], $event->date['end'], $this->date_format_clean_1 .' '. $this->date_format_clean_2); ?></div>
|
93 |
+
<?php endif; ?>
|
94 |
+
<div class="mec-event-time"><i class="mec-sl-clock"></i><?php echo $start_time; ?></div>
|
95 |
+
</div>
|
96 |
+
<div class="mec-event-content">
|
97 |
+
<div class="mec-event-detail"><?php echo (isset($location['name']) ? '<i class="mec-sl-location-pin"></i>' . $location['name'] : ''); ?></div>
|
98 |
+
<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); ?></h4>
|
99 |
+
</div>
|
100 |
+
</article>
|
101 |
+
<?php
|
102 |
+
echo '</div>';
|
103 |
+
if($rcount == $count)
|
104 |
+
{
|
105 |
+
echo '</div>';
|
106 |
+
$rcount = 0;
|
107 |
+
}
|
108 |
+
|
109 |
+
$rcount++;
|
110 |
+
?>
|
111 |
+
<?php endforeach; ?>
|
112 |
+
<?php endforeach; ?>
|
113 |
+
</div>
|
114 |
+
</div>
|
app/skins/tile/tpl.php
ADDED
@@ -0,0 +1,117 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/** no direct access **/
|
3 |
+
defined('MECEXEC') or die();
|
4 |
+
|
5 |
+
// Get layout path
|
6 |
+
$render_path = $this->get_render_path();
|
7 |
+
|
8 |
+
// before/after Month
|
9 |
+
$_1month_before = strtotime('first day of -1 month', strtotime($this->start_date));
|
10 |
+
$_1month_after = strtotime('first day of +1 month', strtotime($this->start_date));
|
11 |
+
|
12 |
+
// Current month time
|
13 |
+
$current_month_time = strtotime($this->start_date);
|
14 |
+
|
15 |
+
// Generate Month
|
16 |
+
ob_start();
|
17 |
+
include $render_path;
|
18 |
+
$month_html = ob_get_clean();
|
19 |
+
|
20 |
+
$navigator_html = '';
|
21 |
+
|
22 |
+
// Generate Month Navigator
|
23 |
+
if($this->next_previous_button)
|
24 |
+
{
|
25 |
+
// Show previous month handler if showing past events allowed
|
26 |
+
if(!isset($this->atts['show_past_events']) or
|
27 |
+
(isset($this->atts['show_past_events']) and $this->atts['show_past_events']) or
|
28 |
+
(isset($this->atts['show_past_events']) and !$this->atts['show_past_events'] and strtotime(date('Y-m-t', $_1month_before)) >= time())
|
29 |
+
)
|
30 |
+
{
|
31 |
+
$navigator_html .= '<div class="mec-previous-month mec-load-month mec-previous-month" data-mec-year="'.date('Y', $_1month_before).'" data-mec-month="'.date('m', $_1month_before).'"><i class="mec-sl-angle-left"></i> '.date_i18n('F', $_1month_before).'</div>';
|
32 |
+
}
|
33 |
+
|
34 |
+
$navigator_html .= '<div class="mec-calendar-header"><h2>'.date_i18n('F Y', $current_month_time).'</h2></div>';
|
35 |
+
|
36 |
+
// Show next month handler if needed
|
37 |
+
if(!$this->show_only_expired_events or
|
38 |
+
($this->show_only_expired_events and strtotime(date('Y-m-01', $_1month_after)) <= time())
|
39 |
+
)
|
40 |
+
{
|
41 |
+
$navigator_html .= '<div class="mec-next-month mec-load-month mec-next-month" data-mec-year="'.date('Y', $_1month_after).'" data-mec-month="'.date('m', $_1month_after).'">'.date_i18n('F', $_1month_after).' <i class="mec-sl-angle-right"></i></div>';
|
42 |
+
}
|
43 |
+
}
|
44 |
+
|
45 |
+
// Return the data if called by AJAX
|
46 |
+
if(isset($this->atts['return_items']) and $this->atts['return_items'])
|
47 |
+
{
|
48 |
+
echo json_encode(array(
|
49 |
+
'month'=>$month_html,
|
50 |
+
'navigator'=>$navigator_html,
|
51 |
+
'previous_month'=>array('label'=>date_i18n('Y F', $_1month_before), 'id'=>date('Ym', $_1month_before), 'year'=>date('Y', $_1month_before), 'month'=>date('m', $_1month_before)),
|
52 |
+
'current_month'=>array('label'=>date_i18n('Y F', $current_month_time), 'id'=>date('Ym', $current_month_time), 'year'=>date('Y', $current_month_time), 'month'=>date('m', $current_month_time)),
|
53 |
+
'next_month'=>array('label'=>date_i18n('Y F', $_1month_after), 'id'=>date('Ym', $_1month_after), 'year'=>date('Y', $_1month_after), 'month'=>date('m', $_1month_after)),
|
54 |
+
));
|
55 |
+
exit;
|
56 |
+
}
|
57 |
+
|
58 |
+
// Generating javascript code tpl
|
59 |
+
$javascript = '<script type="text/javascript">
|
60 |
+
jQuery(document).ready(function()
|
61 |
+
{
|
62 |
+
jQuery("#mec_tile_month_'.$this->id.'_'.date('Ym', $current_month_time).'").mecTileView(
|
63 |
+
{
|
64 |
+
id: "'.$this->id.'",
|
65 |
+
today: "'.date('Ymd', strtotime($this->active_day)).'",
|
66 |
+
month_id: "'.date('Ym', $current_month_time).'",
|
67 |
+
active_month: {year: "'.date('Y', strtotime($this->start_date)).'", month: "'.date('m', strtotime($this->start_date)).'"},
|
68 |
+
next_month: {year: "'.date('Y', $_1month_after).'", month: "'.date('m', $_1month_after).'"},
|
69 |
+
events_label: "'.esc_attr__('Events', 'modern-events-calendar-lite').'",
|
70 |
+
event_label: "'.esc_attr__('Event', 'modern-events-calendar-lite').'",
|
71 |
+
month_navigator: '.($this->next_previous_button ? 1 : 0).',
|
72 |
+
atts: "'.http_build_query(array('atts'=>$this->atts), '', '&').'",
|
73 |
+
style: "'.(isset($this->skin_options['style']) ? $this->skin_options['style'] : NULL).'",
|
74 |
+
ajax_url: "'.admin_url('admin-ajax.php', NULL).'",
|
75 |
+
sed_method: "'.$this->sed_method.'",
|
76 |
+
image_popup: "'.$this->image_popup.'",
|
77 |
+
sf:
|
78 |
+
{
|
79 |
+
container: "'.($this->sf_status ? '#mec_search_form_'.$this->id : '').'",
|
80 |
+
}
|
81 |
+
});
|
82 |
+
});
|
83 |
+
</script>';
|
84 |
+
|
85 |
+
// Include javascript code into the page
|
86 |
+
if($this->main->is_ajax()) echo $javascript;
|
87 |
+
else $this->factory->params('footer', $javascript);
|
88 |
+
|
89 |
+
$styling = $this->main->get_styling();
|
90 |
+
$event_colorskin = (isset($styling['mec_colorskin'] ) || isset($styling['color'])) ? 'colorskin-custom' : '';
|
91 |
+
|
92 |
+
do_action('mec_start_skin' , $this->id);
|
93 |
+
do_action('mec_tile_head');
|
94 |
+
?>
|
95 |
+
<div id="mec_skin_<?php echo $this->id; ?>" class="mec-wrap <?php echo $event_colorskin . ' ' . $this->html_class; ?>">
|
96 |
+
|
97 |
+
<?php if($this->sf_status) echo $this->sf_search_form(); ?>
|
98 |
+
|
99 |
+
<div class="mec-tile">
|
100 |
+
<div class="mec-calendar-topsec">
|
101 |
+
<div class="mec-clear">
|
102 |
+
<?php if($this->next_previous_button): ?>
|
103 |
+
<div class="mec-skin-tile-month-navigator-container">
|
104 |
+
<div class="mec-month-navigator" id="mec_month_navigator_<?php echo $this->id; ?>_<?php echo date('Ym', $current_month_time); ?>"><?php echo $navigator_html; ?></div>
|
105 |
+
</div>
|
106 |
+
<?php else: ?>
|
107 |
+
<div class="mec-calendar-header"><h2><?php echo date_i18n('Y F', $current_month_time); ?></h2></div>
|
108 |
+
<?php endif; ?>
|
109 |
+
|
110 |
+
<div class="mec-calendar-table" id="mec_skin_events_<?php echo $this->id; ?>">
|
111 |
+
<div class="mec-month-container mec-month-container-selected" id="mec_tile_month_<?php echo $this->id; ?>_<?php echo date('Ym', $current_month_time); ?>" data-month-id="<?php echo date('Ym', $current_month_time); ?>"><?php echo $month_html; ?></div>
|
112 |
+
</div>
|
113 |
+
</div>
|
114 |
+
</div>
|
115 |
+
</div>
|
116 |
+
|
117 |
+
</div>
|
app/skins/timeline/render.php
CHANGED
@@ -24,7 +24,8 @@ $event_colorskin = (isset($styling['mec_colorskin']) || isset($styling['color'])
|
|
24 |
$end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
|
25 |
$event_color = isset($event->data->meta['mec_color']) ? '<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>' : '';
|
26 |
$excerpt = trim($event->data->post->post_excerpt) ? $event->data->post->post_excerpt : '';
|
27 |
-
|
|
|
28 |
// Safe Excerpt for UTF-8 Strings
|
29 |
if(!trim($excerpt))
|
30 |
{
|
@@ -102,7 +103,7 @@ $event_colorskin = (isset($styling['mec_colorskin']) || isset($styling['color'])
|
|
102 |
</div>
|
103 |
<div class="mec-timeline-left-content">
|
104 |
<div class="mec-timeline-main-content">
|
105 |
-
<h4 class="mec-event-title"><a data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>" class="mec-color-hover"><?php echo $event->data->title; ?></a><?php echo $event_color;
|
106 |
<p><?php echo $excerpt.(trim($excerpt) ? ' ...' : ''); ?></p>
|
107 |
<div class="mec-timeline-event-details">
|
108 |
<div class="mec-timeline-event-time mec-color">
|
24 |
$end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
|
25 |
$event_color = isset($event->data->meta['mec_color']) ? '<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>' : '';
|
26 |
$excerpt = trim($event->data->post->post_excerpt) ? $event->data->post->post_excerpt : '';
|
27 |
+
$event_start_date = !empty($event->date['start']['date']) ? $event->date['start']['date'] : '';
|
28 |
+
|
29 |
// Safe Excerpt for UTF-8 Strings
|
30 |
if(!trim($excerpt))
|
31 |
{
|
103 |
</div>
|
104 |
<div class="mec-timeline-left-content">
|
105 |
<div class="mec-timeline-main-content">
|
106 |
+
<h4 class="mec-event-title"><a data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>" class="mec-color-hover"><?php echo $event->data->title; ?></a><?php echo $this->main->get_flags($event->data->ID, $event_start_date).$event_color; if (!empty($label_style)) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?></h4>
|
107 |
<p><?php echo $excerpt.(trim($excerpt) ? ' ...' : ''); ?></p>
|
108 |
<div class="mec-timeline-event-details">
|
109 |
<div class="mec-timeline-event-time mec-color">
|
app/skins/timetable/render.php
CHANGED
@@ -23,6 +23,8 @@ $settings = $this->main->get_settings();
|
|
23 |
$start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
|
24 |
$end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
|
25 |
$event_color = isset($event->data->meta['mec_color']) ? '<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>' : '';
|
|
|
|
|
26 |
$label_style = '';
|
27 |
if ( !empty($event->data->labels) ):
|
28 |
foreach( $event->data->labels as $label)
|
@@ -89,7 +91,7 @@ $settings = $this->main->get_settings();
|
|
89 |
<?php endif; ?>
|
90 |
</span>
|
91 |
<span class="mec-timetable-event-span mec-timetable-event-title">
|
92 |
-
<a class="mec-color-hover" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $event_color; ?>
|
93 |
<?php if (!empty($label_style)) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?>
|
94 |
</span>
|
95 |
|
@@ -128,7 +130,8 @@ $settings = $this->main->get_settings();
|
|
128 |
$start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
|
129 |
$end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
|
130 |
$event_color = isset($event->data->meta['mec_color']) ? '<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>' : '';
|
131 |
-
|
|
|
132 |
$label_style = '';
|
133 |
if(!empty($event->data->labels))
|
134 |
{
|
@@ -146,7 +149,7 @@ $settings = $this->main->get_settings();
|
|
146 |
<div class="mec-timetable-t2-content">
|
147 |
<h4 class="mec-event-title">
|
148 |
<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>
|
149 |
-
<?php if(!empty($label_style)) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?>
|
150 |
</h4>
|
151 |
<div class="mec-event-time">
|
152 |
<i class="mec-sl-clock-o"></i>
|
23 |
$start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
|
24 |
$end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
|
25 |
$event_color = isset($event->data->meta['mec_color']) ? '<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>' : '';
|
26 |
+
$event_start_date = !empty($event->date['start']['date']) ? $event->date['start']['date'] : '';
|
27 |
+
|
28 |
$label_style = '';
|
29 |
if ( !empty($event->data->labels) ):
|
30 |
foreach( $event->data->labels as $label)
|
91 |
<?php endif; ?>
|
92 |
</span>
|
93 |
<span class="mec-timetable-event-span mec-timetable-event-title">
|
94 |
+
<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; ?>
|
95 |
<?php if (!empty($label_style)) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?>
|
96 |
</span>
|
97 |
|
130 |
$start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
|
131 |
$end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
|
132 |
$event_color = isset($event->data->meta['mec_color']) ? '<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>' : '';
|
133 |
+
$event_start_date = !empty($event->date['start']['date']) ? $event->date['start']['date'] : '';
|
134 |
+
|
135 |
$label_style = '';
|
136 |
if(!empty($event->data->labels))
|
137 |
{
|
149 |
<div class="mec-timetable-t2-content">
|
150 |
<h4 class="mec-event-title">
|
151 |
<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>
|
152 |
+
<?php echo $this->main->get_flags($event->data->ID, $event_start_date); if(!empty($label_style)) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?>
|
153 |
</h4>
|
154 |
<div class="mec-event-time">
|
155 |
<i class="mec-sl-clock-o"></i>
|
app/skins/weekly_view.php
CHANGED
@@ -134,6 +134,8 @@ class MEC_skin_weekly_view extends MEC_skins
|
|
134 |
|
135 |
$this->week_of_days = array();
|
136 |
foreach($this->weeks as $week_number=>$week) foreach($week as $day) $this->week_of_days[$day] = $week_number;
|
|
|
|
|
137 |
}
|
138 |
|
139 |
/**
|
@@ -187,7 +189,6 @@ class MEC_skin_weekly_view extends MEC_skins
|
|
187 |
|
188 |
// Extending the end date
|
189 |
$this->end_date = $date;
|
190 |
-
|
191 |
// The Query
|
192 |
$query = new WP_Query($this->args);
|
193 |
if(is_array($IDs) and count($IDs) and $query->have_posts())
|
@@ -198,9 +199,20 @@ class MEC_skin_weekly_view extends MEC_skins
|
|
198 |
$query->the_post();
|
199 |
|
200 |
if(!isset($events[$date])) $events[$date] = array();
|
|
|
201 |
|
202 |
$rendered = $this->render->data(get_the_ID());
|
203 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
204 |
$data = new stdClass();
|
205 |
$data->ID = get_the_ID();
|
206 |
$data->data = $rendered;
|
@@ -210,7 +222,7 @@ class MEC_skin_weekly_view extends MEC_skins
|
|
210 |
'start'=>array('date'=>$date),
|
211 |
'end'=>array('date'=>$this->main->get_end_date($date, $rendered))
|
212 |
);
|
213 |
-
|
214 |
$events[$date][] = $data;
|
215 |
}
|
216 |
}
|
134 |
|
135 |
$this->week_of_days = array();
|
136 |
foreach($this->weeks as $week_number=>$week) foreach($week as $day) $this->week_of_days[$day] = $week_number;
|
137 |
+
|
138 |
+
$this->maximum_dates = isset($this->atts['maximum_dates']) ? $this->atts['maximum_dates'] : 1;
|
139 |
}
|
140 |
|
141 |
/**
|
189 |
|
190 |
// Extending the end date
|
191 |
$this->end_date = $date;
|
|
|
192 |
// The Query
|
193 |
$query = new WP_Query($this->args);
|
194 |
if(is_array($IDs) and count($IDs) and $query->have_posts())
|
199 |
$query->the_post();
|
200 |
|
201 |
if(!isset($events[$date])) $events[$date] = array();
|
202 |
+
|
203 |
|
204 |
$rendered = $this->render->data(get_the_ID());
|
205 |
|
206 |
+
// Event Repeat Type
|
207 |
+
$repeat_type = !empty($rendered->meta['mec_repeat_type']) ? $rendered->meta['mec_repeat_type'] : '';
|
208 |
+
$occurrence = $date;
|
209 |
+
|
210 |
+
if(strtotime($occurrence) and in_array($repeat_type, array('certain_weekdays', 'custom_days', 'weekday', 'weekend'))) $occurrence = date('Y-m-d', strtotime($occurrence));
|
211 |
+
elseif(strtotime($occurrence)) $occurrence = date('Y-m-d', strtotime('-1 day', strtotime($occurrence)));
|
212 |
+
else $occurrence = NULL;
|
213 |
+
$dates = $this->render->dates(get_the_ID(), $rendered, $this->maximum_dates, $occurrence);
|
214 |
+
|
215 |
+
|
216 |
$data = new stdClass();
|
217 |
$data->ID = get_the_ID();
|
218 |
$data->data = $rendered;
|
222 |
'start'=>array('date'=>$date),
|
223 |
'end'=>array('date'=>$this->main->get_end_date($date, $rendered))
|
224 |
);
|
225 |
+
$data->dates = $dates;
|
226 |
$events[$date][] = $data;
|
227 |
}
|
228 |
}
|
app/skins/weekly_view/render.php
CHANGED
@@ -21,32 +21,9 @@ $settings = $this->main->get_settings();
|
|
21 |
$start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
|
22 |
$end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
|
23 |
$event_color = isset($event->data->meta['mec_color'])?'<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>':'';
|
24 |
-
$label_style = '';
|
25 |
-
|
26 |
-
// Check for sold out event tickets if sold out is shown sold out label
|
27 |
-
$event_id = (isset($event->ID)) ? intval($event->ID) : 0;
|
28 |
-
$startDate = !empty($event->data->meta['mec_date']['start']['date'] ) ? $event->data->meta['mec_date']['start']['date'] : '';
|
29 |
-
$endDate = !empty($event->data->meta['mec_date']['end']['date'] ) ? $event->data->meta['mec_date']['end']['date'] : '' ;
|
30 |
$event_start_date = !empty($event->date['start']['date']) ? $event->date['start']['date'] : '';
|
31 |
-
|
32 |
-
$
|
33 |
-
$dynamic_period = $this->main->date_diff($event_start_date, $event_end_date)->d;
|
34 |
-
|
35 |
-
if($dynamic_period >= 0)
|
36 |
-
{
|
37 |
-
$static_period = (!isset($static_period)) ? $this->main->date_diff($startDate, $endDate)->d : $static_period;
|
38 |
-
|
39 |
-
// For events no multiple days but repeating is multiple days
|
40 |
-
$static_period = ($dynamic_period > $static_period) ? $dynamic_period : $static_period;
|
41 |
-
|
42 |
-
// For compare next days of start point events
|
43 |
-
$level = abs($static_period - $dynamic_period);
|
44 |
-
|
45 |
-
// For events multiple days repeating
|
46 |
-
if(($dynamic_period < ($static_period)) and (($dynamic_period) >= 0) and $this->main->is_soldout($event_id,
|
47 |
-
date('Y-m-d',strtotime("- {$level}day", strtotime($event_start_date))))) $is_soldout = true;
|
48 |
-
}
|
49 |
-
|
50 |
if ( !empty($event->data->labels) ):
|
51 |
foreach( $event->data->labels as $label)
|
52 |
{
|
@@ -104,15 +81,12 @@ $settings = $this->main->get_settings();
|
|
104 |
}
|
105 |
</script>
|
106 |
<?php endif; ?>
|
|
|
107 |
<article data-style="<?php echo $label_style; ?>" class="<?php echo (isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : ''; ?>mec-event-article <?php echo $this->get_event_classes($event); ?>">
|
108 |
<div class="mec-event-list-weekly-date mec-color"><span class="mec-date-day"><?php echo date_i18n('d', strtotime($event->date['start']['date'])); ?></span><?php echo date_i18n('F', strtotime($event->date['start']['date'])); ?></div>
|
109 |
<div class="mec-event-image"><?php echo $event->data->thumbnails['thumbnail']; ?></div>
|
110 |
<?php if(trim($start_time)): ?><div class="mec-event-time mec-color"><i class="mec-sl-clock-o"></i> <?php echo $start_time.(trim($end_time) ? ' - '.$end_time : ''); ?></div><?php endif; ?>
|
111 |
-
<?php
|
112 |
-
$sold_out_css_class = ($is_soldout) ? ' mec-event-title-soldout' : '';
|
113 |
-
$sold_out = ($is_soldout) ? ' <span class=soldout>' . __('Sold Out', 'modern-events-calendar-lite') . '</span> ' : '';
|
114 |
-
?>
|
115 |
-
<h4 class="mec-event-title <?php echo $sold_out_css_class; ?>"><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 $sold_out.$event_color; ?></h4>
|
116 |
<div class="mec-event-detail"><?php echo (isset($location['name']) ? $location['name'] : ''); ?></div>
|
117 |
</article>
|
118 |
<?php endforeach; ?>
|
21 |
$start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
|
22 |
$end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
|
23 |
$event_color = isset($event->data->meta['mec_color'])?'<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>':'';
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
$event_start_date = !empty($event->date['start']['date']) ? $event->date['start']['date'] : '';
|
25 |
+
|
26 |
+
$label_style = '';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
if ( !empty($event->data->labels) ):
|
28 |
foreach( $event->data->labels as $label)
|
29 |
{
|
81 |
}
|
82 |
</script>
|
83 |
<?php endif; ?>
|
84 |
+
<?php do_action('mec_weekly_view_content', $event); ?>
|
85 |
<article data-style="<?php echo $label_style; ?>" class="<?php echo (isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : ''; ?>mec-event-article <?php echo $this->get_event_classes($event); ?>">
|
86 |
<div class="mec-event-list-weekly-date mec-color"><span class="mec-date-day"><?php echo date_i18n('d', strtotime($event->date['start']['date'])); ?></span><?php echo date_i18n('F', strtotime($event->date['start']['date'])); ?></div>
|
87 |
<div class="mec-event-image"><?php echo $event->data->thumbnails['thumbnail']; ?></div>
|
88 |
<?php if(trim($start_time)): ?><div class="mec-event-time mec-color"><i class="mec-sl-clock-o"></i> <?php echo $start_time.(trim($end_time) ? ' - '.$end_time : ''); ?></div><?php endif; ?>
|
89 |
+
<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>
|
|
|
|
|
|
|
|
|
90 |
<div class="mec-event-detail"><?php echo (isset($location['name']) ? $location['name'] : ''); ?></div>
|
91 |
</article>
|
92 |
<?php endforeach; ?>
|
assets/css/backend.css
CHANGED
@@ -3087,8 +3087,6 @@ hr {
|
|
3087 |
z-index: 999999999999999999
|
3088 |
}
|
3089 |
|
3090 |
-
|
3091 |
-
|
3092 |
.mec-export-settings,.mec-import-settings {
|
3093 |
font-weight: 700;
|
3094 |
border-radius: 2px;
|
@@ -4006,6 +4004,56 @@ textarea.mec-import-settings-content {
|
|
4006 |
}
|
4007 |
}
|
4008 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4009 |
.addons-page-error,.addons-page-notice {
|
4010 |
display: block;
|
4011 |
margin-top: 15px;
|
3087 |
z-index: 999999999999999999
|
3088 |
}
|
3089 |
|
|
|
|
|
3090 |
.mec-export-settings,.mec-import-settings {
|
3091 |
font-weight: 700;
|
3092 |
border-radius: 2px;
|
4004 |
}
|
4005 |
}
|
4006 |
|
4007 |
+
/* Ticket Box */
|
4008 |
+
#mec_tickets .mec-box {
|
4009 |
+
position: relative;
|
4010 |
+
padding: 25px 10px;
|
4011 |
+
}
|
4012 |
+
|
4013 |
+
.mec-form-row input[type=text], .mec-form-row textarea {
|
4014 |
+
max-width: 400px;
|
4015 |
+
}
|
4016 |
+
|
4017 |
+
#mec_tickets .button.remove {
|
4018 |
+
padding: 0;
|
4019 |
+
min-height: 28px;
|
4020 |
+
height: 28px;
|
4021 |
+
width: 28px;
|
4022 |
+
margin: 0;
|
4023 |
+
border-radius: 50%;
|
4024 |
+
position: absolute;
|
4025 |
+
top: 20px;
|
4026 |
+
right: 20px;
|
4027 |
+
color: #ea6485;
|
4028 |
+
box-shadow: 0 2px 6px -3px #ea6485;
|
4029 |
+
background: #fff;
|
4030 |
+
border-color: #ffd2dd;
|
4031 |
+
font-size: 20px;
|
4032 |
+
line-height: 1.5;
|
4033 |
+
}
|
4034 |
+
|
4035 |
+
#mec_tickets .button.remove svg {
|
4036 |
+
fill: #ea6485 !important;
|
4037 |
+
}
|
4038 |
+
|
4039 |
+
#mec_tickets .button.remove:hover {
|
4040 |
+
color: #fff;
|
4041 |
+
border: 2px solid #ea6485;
|
4042 |
+
background: #ea6485;
|
4043 |
+
}
|
4044 |
+
|
4045 |
+
#mec_tickets .button.remove:hover svg {
|
4046 |
+
fill: #fff !important;
|
4047 |
+
}
|
4048 |
+
|
4049 |
+
@media(max-width: 480px) {
|
4050 |
+
#mec_tickets .button.remove {
|
4051 |
+
top: 5px;
|
4052 |
+
right: 5px;
|
4053 |
+
}
|
4054 |
+
}
|
4055 |
+
|
4056 |
+
|
4057 |
.addons-page-error,.addons-page-notice {
|
4058 |
display: block;
|
4059 |
margin-top: 15px;
|
assets/css/backend.min.css
CHANGED
@@ -2,4 +2,4 @@
|
|
2 |
* Bootstrap v3.3.7 (http://getbootstrap.com)
|
3 |
* Copyright 2011-2016 Twitter, Inc.
|
4 |
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
5 |
-
*/#webnus-dashboard button,#webnus-dashboard input,#webnus-dashboard select,#webnus-dashboard textarea{font-family:inherit;font-size:inherit;line-height:inherit}#webnus-dashboard a{color:#337ab7;text-decoration:none}#webnus-dashboard a:focus,#webnus-dashboard a:hover{color:#23527c}#webnus-dashboard a:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}#webnus-dashboard figure{margin:0}#webnus-dashboard img{vertical-align:middle}.w-img-responsive{display:block;max-width:100%;height:auto}.w-img-rounded{border-radius:6px}.w-img-thumbnail{padding:4px;line-height:1w-42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all 0w-2s ease-in-out;-o-transition:all 0w-2s ease-in-out;transition:all 0w-2s ease-in-out;display:inline-block;max-width:100%;height:auto}.w-img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.w-sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.w-sr-only-focusable:active,.w-sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.w-container,.w-container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}[role=button]{cursor:pointer}@media (min-width:768px){.w-container{width:750px}}@media (min-width:992px){.w-container{width:970px}}@media (min-width:1200px){.w-container{width:1170px}}.w-row{margin-left:-15px;margin-right:-15px}.w-col-lg-1,.w-col-lg-10,.w-col-lg-11,.w-col-lg-12,.w-col-lg-2,.w-col-lg-3,.w-col-lg-4,.w-col-lg-5,.w-col-lg-6,.w-col-lg-7,.w-col-lg-8,.w-col-lg-9,.w-col-md-1,.w-col-md-10,.w-col-md-11,.w-col-md-12,.w-col-md-2,.w-col-md-3,.w-col-md-4,.w-col-md-5,.w-col-md-6,.w-col-md-7,.w-col-md-8,.w-col-md-9,.w-col-sm-1,.w-col-sm-10,.w-col-sm-11,.w-col-sm-12,.w-col-sm-2,.w-col-sm-3,.w-col-sm-4,.w-col-sm-5,.w-col-sm-6,.w-col-sm-7,.w-col-sm-8,.w-col-sm-9,.w-col-xs-1,.w-col-xs-10,.w-col-xs-11,.w-col-xs-12,.w-col-xs-2,.w-col-xs-3,.w-col-xs-4,.w-col-xs-5,.w-col-xs-6,.w-col-xs-7,.w-col-xs-8,.w-col-xs-9{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.w-col-xs-1,.w-col-xs-10,.w-col-xs-11,.w-col-xs-12,.w-col-xs-2,.w-col-xs-3,.w-col-xs-4,.w-col-xs-5,.w-col-xs-6,.w-col-xs-7,.w-col-xs-8,.w-col-xs-9{float:left}.w-col-xs-12{width:100%}.w-col-xs-11{width:91.66666667%}.w-col-xs-10{width:83.33333333%}.w-col-xs-9{width:75%}.w-col-xs-8{width:66.66666667%}.w-col-xs-7{width:58.33333333%}.w-col-xs-6{width:50%}.w-col-xs-5{width:41.66666667%}.w-col-xs-4{width:33.33333333%}.w-col-xs-3{width:25%}.w-col-xs-2{width:16.66666667%}.w-col-xs-1{width:8w-33333333%}.w-col-xs-pull-12{right:100%}.w-col-xs-pull-11{right:91.66666667%}.w-col-xs-pull-10{right:83.33333333%}.w-col-xs-pull-9{right:75%}.w-col-xs-pull-8{right:66.66666667%}.w-col-xs-pull-7{right:58.33333333%}.w-col-xs-pull-6{right:50%}.w-col-xs-pull-5{right:41.66666667%}.w-col-xs-pull-4{right:33.33333333%}.w-col-xs-pull-3{right:25%}.w-col-xs-pull-2{right:16.66666667%}.w-col-xs-pull-1{right:8w-33333333%}.w-col-xs-pull-0{right:auto}.w-col-xs-push-12{left:100%}.w-col-xs-push-11{left:91.66666667%}.w-col-xs-push-10{left:83.33333333%}.w-col-xs-push-9{left:75%}.w-col-xs-push-8{left:66.66666667%}.w-col-xs-push-7{left:58.33333333%}.w-col-xs-push-6{left:50%}.w-col-xs-push-5{left:41.66666667%}.w-col-xs-push-4{left:33.33333333%}.w-col-xs-push-3{left:25%}.w-col-xs-push-2{left:16.66666667%}.w-col-xs-push-1{left:8w-33333333%}.w-col-xs-push-0{left:auto}.w-col-xs-offset-12{margin-left:100%}.w-col-xs-offset-11{margin-left:91.66666667%}.w-col-xs-offset-10{margin-left:83.33333333%}.w-col-xs-offset-9{margin-left:75%}.w-col-xs-offset-8{margin-left:66.66666667%}.w-col-xs-offset-7{margin-left:58.33333333%}.w-col-xs-offset-6{margin-left:50%}.w-col-xs-offset-5{margin-left:41.66666667%}.w-col-xs-offset-4{margin-left:33.33333333%}.w-col-xs-offset-3{margin-left:25%}.w-col-xs-offset-2{margin-left:16.66666667%}.w-col-xs-offset-1{margin-left:8w-33333333%}.w-col-xs-offset-0{margin-left:0}@media (min-width:768px){.w-col-sm-1,.w-col-sm-10,.w-col-sm-11,.w-col-sm-12,.w-col-sm-2,.w-col-sm-3,.w-col-sm-4,.w-col-sm-5,.w-col-sm-6,.w-col-sm-7,.w-col-sm-8,.w-col-sm-9{float:left}.w-col-sm-12{width:100%}.w-col-sm-11{width:91.66666667%}.w-col-sm-10{width:83.33333333%}.w-col-sm-9{width:75%}.w-col-sm-8{width:66.66666667%}.w-col-sm-7{width:58.33333333%}.w-col-sm-6{width:50%}.w-col-sm-5{width:41.66666667%}.w-col-sm-4{width:33.33333333%}.w-col-sm-3{width:25%}.w-col-sm-2{width:16.66666667%}.w-col-sm-1{width:8w-33333333%}.w-col-sm-pull-12{right:100%}.w-col-sm-pull-11{right:91.66666667%}.w-col-sm-pull-10{right:83.33333333%}.w-col-sm-pull-9{right:75%}.w-col-sm-pull-8{right:66.66666667%}.w-col-sm-pull-7{right:58.33333333%}.w-col-sm-pull-6{right:50%}.w-col-sm-pull-5{right:41.66666667%}.w-col-sm-pull-4{right:33.33333333%}.w-col-sm-pull-3{right:25%}.w-col-sm-pull-2{right:16.66666667%}.w-col-sm-pull-1{right:8w-33333333%}.w-col-sm-pull-0{right:auto}.w-col-sm-push-12{left:100%}.w-col-sm-push-11{left:91.66666667%}.w-col-sm-push-10{left:83.33333333%}.w-col-sm-push-9{left:75%}.w-col-sm-push-8{left:66.66666667%}.w-col-sm-push-7{left:58.33333333%}.w-col-sm-push-6{left:50%}.w-col-sm-push-5{left:41.66666667%}.w-col-sm-push-4{left:33.33333333%}.w-col-sm-push-3{left:25%}.w-col-sm-push-2{left:16.66666667%}.w-col-sm-push-1{left:8w-33333333%}.w-col-sm-push-0{left:auto}.w-col-sm-offset-12{margin-left:100%}.w-col-sm-offset-11{margin-left:91.66666667%}.w-col-sm-offset-10{margin-left:83.33333333%}.w-col-sm-offset-9{margin-left:75%}.w-col-sm-offset-8{margin-left:66.66666667%}.w-col-sm-offset-7{margin-left:58.33333333%}.w-col-sm-offset-6{margin-left:50%}.w-col-sm-offset-5{margin-left:41.66666667%}.w-col-sm-offset-4{margin-left:33.33333333%}.w-col-sm-offset-3{margin-left:25%}.w-col-sm-offset-2{margin-left:16.66666667%}.w-col-sm-offset-1{margin-left:8w-33333333%}.w-col-sm-offset-0{margin-left:0}}@media (min-width:992px){.w-col-md-1,.w-col-md-10,.w-col-md-11,.w-col-md-12,.w-col-md-2,.w-col-md-3,.w-col-md-4,.w-col-md-5,.w-col-md-6,.w-col-md-7,.w-col-md-8,.w-col-md-9{float:left}.w-col-md-12{width:100%}.w-col-md-11{width:91.66666667%}.w-col-md-10{width:83.33333333%}.w-col-md-9{width:75%}.w-col-md-8{width:66.66666667%}.w-col-md-7{width:58.33333333%}.w-col-md-6{width:50%}.w-col-md-5{width:41.66666667%}.w-col-md-4{width:33.33333333%}.w-col-md-3{width:25%}.w-col-md-2{width:16.66666667%}.w-col-md-1{width:8w-33333333%}.w-col-md-pull-12{right:100%}.w-col-md-pull-11{right:91.66666667%}.w-col-md-pull-10{right:83.33333333%}.w-col-md-pull-9{right:75%}.w-col-md-pull-8{right:66.66666667%}.w-col-md-pull-7{right:58.33333333%}.w-col-md-pull-6{right:50%}.w-col-md-pull-5{right:41.66666667%}.w-col-md-pull-4{right:33.33333333%}.w-col-md-pull-3{right:25%}.w-col-md-pull-2{right:16.66666667%}.w-col-md-pull-1{right:8w-33333333%}.w-col-md-pull-0{right:auto}.w-col-md-push-12{left:100%}.w-col-md-push-11{left:91.66666667%}.w-col-md-push-10{left:83.33333333%}.w-col-md-push-9{left:75%}.w-col-md-push-8{left:66.66666667%}.w-col-md-push-7{left:58.33333333%}.w-col-md-push-6{left:50%}.w-col-md-push-5{left:41.66666667%}.w-col-md-push-4{left:33.33333333%}.w-col-md-push-3{left:25%}.w-col-md-push-2{left:16.66666667%}.w-col-md-push-1{left:8w-33333333%}.w-col-md-push-0{left:auto}.w-col-md-offset-12{margin-left:100%}.w-col-md-offset-11{margin-left:91.66666667%}.w-col-md-offset-10{margin-left:83.33333333%}.w-col-md-offset-9{margin-left:75%}.w-col-md-offset-8{margin-left:66.66666667%}.w-col-md-offset-7{margin-left:58.33333333%}.w-col-md-offset-6{margin-left:50%}.w-col-md-offset-5{margin-left:41.66666667%}.w-col-md-offset-4{margin-left:33.33333333%}.w-col-md-offset-3{margin-left:25%}.w-col-md-offset-2{margin-left:16.66666667%}.w-col-md-offset-1{margin-left:8w-33333333%}.w-col-md-offset-0{margin-left:0}}@media (min-width:1200px){.w-col-lg-1,.w-col-lg-10,.w-col-lg-11,.w-col-lg-12,.w-col-lg-2,.w-col-lg-3,.w-col-lg-4,.w-col-lg-5,.w-col-lg-6,.w-col-lg-7,.w-col-lg-8,.w-col-lg-9{float:left}.w-col-lg-12{width:100%}.w-col-lg-11{width:91.66666667%}.w-col-lg-10{width:83.33333333%}.w-col-lg-9{width:75%}.w-col-lg-8{width:66.66666667%}.w-col-lg-7{width:58.33333333%}.w-col-lg-6{width:50%}.w-col-lg-5{width:41.66666667%}.w-col-lg-4{width:33.33333333%}.w-col-lg-3{width:25%}.w-col-lg-2{width:16.66666667%}.w-col-lg-1{width:8w-33333333%}.w-col-lg-pull-12{right:100%}.w-col-lg-pull-11{right:91.66666667%}.w-col-lg-pull-10{right:83.33333333%}.w-col-lg-pull-9{right:75%}.w-col-lg-pull-8{right:66.66666667%}.w-col-lg-pull-7{right:58.33333333%}.w-col-lg-pull-6{right:50%}.w-col-lg-pull-5{right:41.66666667%}.w-col-lg-pull-4{right:33.33333333%}.w-col-lg-pull-3{right:25%}.w-col-lg-pull-2{right:16.66666667%}.w-col-lg-pull-1{right:8w-33333333%}.w-col-lg-pull-0{right:auto}.w-col-lg-push-12{left:100%}.w-col-lg-push-11{left:91.66666667%}.w-col-lg-push-10{left:83.33333333%}.w-col-lg-push-9{left:75%}.w-col-lg-push-8{left:66.66666667%}.w-col-lg-push-7{left:58.33333333%}.w-col-lg-push-6{left:50%}.w-col-lg-push-5{left:41.66666667%}.w-col-lg-push-4{left:33.33333333%}.w-col-lg-push-3{left:25%}.w-col-lg-push-2{left:16.66666667%}.w-col-lg-push-1{left:8w-33333333%}.w-col-lg-push-0{left:auto}.w-col-lg-offset-12{margin-left:100%}.w-col-lg-offset-11{margin-left:91.66666667%}.w-col-lg-offset-10{margin-left:83.33333333%}.w-col-lg-offset-9{margin-left:75%}.w-col-lg-offset-8{margin-left:66.66666667%}.w-col-lg-offset-7{margin-left:58.33333333%}.w-col-lg-offset-6{margin-left:50%}.w-col-lg-offset-5{margin-left:41.66666667%}.w-col-lg-offset-4{margin-left:33.33333333%}.w-col-lg-offset-3{margin-left:25%}.w-col-lg-offset-2{margin-left:16.66666667%}.w-col-lg-offset-1{margin-left:8w-33333333%}.w-col-lg-offset-0{margin-left:0}}.w-clearfix:after,.w-clearfix:before,.w-container-fluid:after,.w-container-fluid:before,.w-container:after,.w-container:before,.w-row:after,.w-row:before{content:" ";display:table}.w-clearfix:after,.w-container-fluid:after,.w-container:after,.w-row:after{clear:both}.w-center-block{display:block;margin-left:auto;margin-right:auto}.w-pull-right{float:right!important}.w-pull-left{float:left!important}.w-hide{display:none!important}.w-show{display:block!important}.w-invisible{visibility:hidden}.w-text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.w-hidden{display:none!important}.w-affix{position:fixed}.mec-image-popup-wrap{display:none}#wns-be-infobar.sticky{position:fixed;top:32px;background:#fff;z-index:9999;width:82%}.wns-be-main .wns-saved-settings.sticky{position:fixed;width:62.5%;top:111px;z-index:999999999999999999}.mec-export-settings,.mec-import-settings{font-weight:700;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:8px 32px;height:36px;letter-spacing:.2px;line-height:36px;font-size:13px;color:#fff;text-decoration:none;display:inline-block}.mec-export-settings:hover,.mec-import-settings:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5);color:#fff}textarea.mec-import-settings-content{display:block;width:100%;min-height:120px;margin-bottom:25px;padding:10px 15px}.mec-import-options-notification{display:inline-block}.mec-import-options-notification .mec-message-import-error,.mec-import-options-notification .mec-message-import-success{display:inline-block;padding:15px 12px;margin-left:12px;opacity:0;visibility:hidden;font-weight:700}.mec-import-options-notification .mec-message-import-success{opacity:1;visibility:visible;border:2px solid green}.mec-import-options-notification .mec-message-import-error{opacity:1;visibility:visible;border:2px solid #e62117}.mec-export-settings:focus,.mec-import-settings:focus{color:#fff}.mec-import-settings-wrap{position:relative}.mec-loarder-wrap{position:absolute;top:0;bottom:0;left:0;right:0;background:rgba(202,202,202,.7);z-index:9999}.mec-loarder-wrap.mec-settings-loader{top:34px}.mec-loarder{position:absolute;width:64px;height:64px;top:calc(50% - 32px);left:calc(50% - 36px)}.mec-loarder div{display:inline-block;position:absolute;left:6px;width:4px;background:#fff;animation:mec-loarder 1.2s cubic-bezier(0,.5,.5,1) infinite}.mec-loarder div:nth-child(1){left:27px;animation-delay:-.24s;background:#0075ff}.mec-loarder div:nth-child(2){left:36px;animation-delay:-.12s;background:#028bff}.mec-loarder div:nth-child(3){left:45px;animation-delay:0;background:#32a0ff}@keyframes mec-loarder{0%{top:6px;height:51px}100%,50%{top:19px;height:26px}}.w-box.support-page.searchbox{background:#008aff;background:linear-gradient(180deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff;min-height:260px;text-align:center;border-radius:2px}#webnus-dashboard .search-form input{background:rgba(255,255,255,.2);border:none;width:50%;outline:0;color:rgba(255,255,255,.7);font-size:18px;border-radius:4px 0 0 4px;box-shadow:0 1px 2px 0 rgba(0,0,0,.03);-webkit-transition:background .4s,box-shadow .2s;transition:background .4s,box-shadow .2s;padding:20px 32px;margin:0}#webnus-dashboard .search-form button{background:rgba(255,255,255,.2);border:none;padding:20px 32px;margin-left:-2px;color:#fff;border-radius:0 4px 4px 0;font-size:18px;cursor:pointer;-webkit-transition:background .4s,box-shadow .2s;transition:background .4s,box-shadow .2s}#webnus-dashboard .search-form button:hover{background:#fff;color:#3a3c4c}.w-box.support-page.searchbox p{font-size:30px}.search-form input::-webkit-input-placeholder{color:rgba(255,255,255,.7)}.search-form input::-moz-placeholder{color:rgba(255,255,255,.7)}.search-form input:-ms-input-placeholder{color:rgba(255,255,255,.7)}.search-form input:-moz-placeholder{color:rgba(255,255,255,.7)}#webnus-dashboard .search-form input:active,#webnus-dashboard .search-form input:focus{box-shadow:0 10px 20px rgba(0,0,0,.14);background:#fff;color:#3a3c4c}#webnus-dashboard .search-form input:active::-webkit-input-placeholder,#webnus-dashboard .search-form input:focus::-webkit-input-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active::-moz-placeholder,#webnus-dashboard .search-form input:focus::-moz-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active:-ms-input-placeholder,#webnus-dashboard .search-form input:focus:-ms-input-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active:-moz-placeholder,#webnus-dashboard .search-form input:focus:-moz-placeholder{color:#3a3c4c}#webnus-dashboard .w-box.support-page.mec-ticksy{text-align:center;min-height:260px}#webnus-dashboard .w-box.support-page.mec-ticksy p{font-size:20px;width:70%;margin:0 auto;margin-bottom:40px;margin-top:40px}#webnus-dashboard .support-box a,#webnus-dashboard .w-box.support-page.mec-ticksy a{color:#fff;font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:12px 20px;cursor:pointer;margin-bottom:40px;display:inline-block}#webnus-dashboard .support-box a:hover,#webnus-dashboard .w-box.support-page.mec-ticksy a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5)}#webnus-dashboard .support-box a{margin:40px 4px 0 4px}.mec-faq-accordion>.mec-faq-accordion-content{display:none}#webnus-dashboard .mec-faq-accordion-trigger a{font-size:16px;padding:12px;background:#f1f1f1;display:block;color:#222;line-height:17px;outline:0}.mec-faq-accordion-trigger{margin-bottom:5px;position:relative}#webnus-dashboard .mec-faq-accordion-trigger a:after{font-family:simple-line-icons;content:"\e095";position:absolute;right:12px;font-weight:700}.mec-faq-accordion-content{padding:5px 14px 25px}#webnus-dashboard .mec-faq-accordion-trigger a.active:after{content:"\e082"}#webnus-dashboard .support-page-links a{background-color:#fff;color:#fff;border-radius:2px;padding:13px 24px;font-size:12px;letter-spacing:1px;font-weight:600;text-transform:uppercase}#webnus-dashboard .support-page-links a:hover,#webnus-dashboard .w-box.support-page.videobox .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}#webnus-dashboard .support-page-links{display:inline-block;margin:12px 4px 16px 0}.support-page-links.link-to-doc a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.support-page-links.link-to-videos a{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);box-shadow:0 5px 10px -5px #ff876c}.support-page-links.link-to-articles a{background:#b092e6;background:linear-gradient(95deg,#b092e6 0,#9b70e8 50%,#8e5cea 100%);box-shadow:0 5px 10px -5px #b092e6}.w-box.support-page.articles-box .w-box-content a{display:block;padding:6px 0}#webnus-dashboard .w-box.support-page.videobox .w-button a{color:#fff;font-size:10px;padding:5px 15px;min-height:10px;font-weight:500;border-radius:22px;box-shadow:0 3px 10px -4px #ff5a35;text-shadow:none;background:#ff5a35;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);border:none;transition:.24s}.w-box.support-page.articles-box,.w-box.support-page.faq-box{min-height:500px}.w-box.support-page.videobox{border-radius:2px;min-height:282px;box-shadow:0 1px 6px rgba(0,0,0,.039)!important}#webnus-dashboard .w-box.support-page.videobox .w-button a i{margin-right:6px}.support-page .w-box-content ul{margin-top:5px;padding-left:5px}.support-page .w-box-content ul li{font-size:13px}.support-page .w-box-content ul li i{font-size:17px;vertical-align:text-bottom;margin-right:7px;color:#999}.w-box.mec-activation{background:#fff url(../img/dp-dsb-support.jpg) no-repeat top right}.w-box.mec-activation .w-box-head{color:#40d8f0;width:75%}.w-box.mec-activation .w-box-content{padding:10px 30px}.w-box.mec-activation input[type=radio]{display:none}.w-box.mec-activation input[type=radio]+label{color:#000;font-size:13px;line-height:14px!important;color:#7b7b7b}.w-box.mec-activation input[type=radio].checked+label{color:#40d8f0}.w-box.mec-activation input[type=radio]+label span{display:inline-block;margin:-2px 6px 0 0;vertical-align:middle;cursor:pointer;height:14px;width:14px;text-align:center;background-color:#fff;border:1px solid #d4d4d4;border-radius:100%;box-shadow:0 2px 16px -2px rgba(0,0,0,.2);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;position:relative}.w-box.mec-activation input[type=radio].checked+label span{background-color:#40d8f0;border-color:#40d8f0;box-shadow:0 2px 14px -3px #40d8f0}.w-box.mec-activation input[type=radio].checked+label span:after{content:'';display:block;position:absolute;top:4px;left:4px;width:4px;height:4px;background:#fff;border-radius:100%}.w-box.mec-activation .LicenseType label{padding-right:20px;font-weight:500}.w-box.mec-activation .LicenseField{display:inline-block;position:relative;margin-top:20px}.w-box.mec-activation input[name=MECPurchaseCode]{box-shadow:inset 0 1px 2px rgba(0,0,0,.07);min-width:220px;background:#f4f4f4;border:none;border-radius:33px;width:500px;min-height:50px;margin:0;padding-left:20px;text-align:left}#webnus-dashboard .w-box.mec-activation input[type=submit]{height:40px;line-height:40px;font-weight:600;border:none;cursor:pointer;padding:0 30px;border-radius:33px;color:#fff;letter-spacing:1px;text-transform:uppercase;font-size:12px;background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67;transition:all .28s ease;position:absolute;right:5px;top:4px;font-size:12px}#webnus-dashboard .w-box.mec-activation input[type=submit]:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5)}#MECActivation .MECPurchaseStatus,.addon-activation-form .MECPurchaseStatus{display:inline-block;width:40px;height:40px;text-align:center;padding-top:9px;color:#fff;font-weight:700;font-size:18px;border-radius:50%;padding-top:8px;position:absolute;right:-51px;top:calc(50% - 20px)}.MECPurchaseStatus:after,.MECPurchaseStatus:before{position:absolute;border-radius:50px;background:#fff;content:'';transform:rotate(45deg)}.MECPurchaseStatus.PurchaseError:before{width:22px;height:4px;right:9px;top:18px;transform:rotate(45deg)}.MECPurchaseStatus.PurchaseError:after{width:22px;height:4px;right:9px;top:18px;transform:rotate(-45deg)}.MECPurchaseStatus.PurchaseSuccess:before{width:13px;height:4px;right:19px;top:21px;transform:rotate(45deg)}.MECPurchaseStatus.PurchaseSuccess:after{width:22px;height:4px;right:5px;top:18px;transform:rotate(-45deg)}#MECActivation .MECPurchaseStatus.PurchaseError,.addon-activation-form .MECPurchaseStatus.PurchaseError{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);box-shadow:0 5px 10px -5px #ff876c}#MECActivation .MECPurchaseStatus.PurchaseSuccess,.addon-activation-form .MECPurchaseStatus.PurchaseSuccess{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.wna-spinner-wrap{position:absolute;background:#000;width:509px;height:64px;top:-8px;border-radius:50px;z-index:999;background-color:#fff;opacity:.9}.wna-spinner{width:40px;height:40px;position:relative;margin:6px auto}.wna-spinner .double-bounce1,.wna-spinner .double-bounce2{width:100%;height:100%;border-radius:50%;background-color:#40d8f0;opacity:.6;position:absolute;top:0;left:0;-webkit-animation:sk-bounce 2s infinite ease-in-out;animation:sk-bounce 2s infinite ease-in-out}.wna-spinner .double-bounce2{-webkit-animation-delay:-1s;animation-delay:-1s}#MECActivation .MECLicenseMessage,.addon-activation-form .MECLicenseMessage{margin-top:24px;color:#f64;max-width:570px}.box-addon-activation-toggle-content,.box-addon-activation-toggle-head{display:none}.addon-activation-form h3{font-size:15px;font-weight:400;margin:34px 0 -7px}.box-addon-activation-toggle-head{line-height:1.5;font-size:16px;margin-top:20px;cursor:pointer}.box-addon-activation-toggle-head i{margin-right:7px;cursor:pointer;font-weight:700}#mec-advanced-wraper div:first-child>ul{display:block;margin:5px 0;padding:5px 0;width:390px;border:1px solid #e1e2e3;border-radius:2px;box-shadow:0 1px 3px rgba(0,0,0,.05)}#mec-advanced-wraper div:first-child>ul span{display:none}#mec-advanced-wraper div:first-child>ul *{display:inline-block;background:#fff;font-size:12px;color:#717273;text-align:center}#mec-advanced-wraper div:first-child>ul>li{width:60px;font-weight:700;margin:0 10px 0 0;padding:4px 0;border-right:1px solid #e1e2e3}#mec-advanced-wraper div:first-child>ul>ul>li{margin:0;padding:2px 10px;cursor:pointer;border-radius:2px;transition:all .18s ease}#mec-advanced-wraper div:first-child>ul>ul>li:hover,.mec-active{background:#008aff!important;color:#fff!important}@-webkit-keyframes sk-bounce{0%,100%{-webkit-transform:scale(0)}50%{-webkit-transform:scale(1)}}@keyframes sk-bounce{0%,100%{transform:scale(0);-webkit-transform:scale(0)}50%{transform:scale(1);-webkit-transform:scale(1)}}.w-col-sm-3 .w-box.addon{min-height:auto;box-shadow:0 3px 16px -5px rgba(0,0,0,.1);border-radius:2px}.w-box-child.mec-addon-box{padding:20px 20px}.mec-addon-box-head{border-bottom:1px solid #e8e8e8;padding-bottom:5px;margin-bottom:14px;position:relative}.mec-addon-box-version{position:relative;background:#eaeaea;border-radius:1px;padding:0 8px;color:#5a5a5a;font-size:11px;letter-spacing:.2px;line-height:21px;display:inline-block;margin:10px 0}.mec-addon-box-head img{display:block;width:60px;margin-bottom:10px}.mec-addon-box-title{font-weight:700;font-size:18px;line-height:25px}.mec-addon-box-title a span{color:#444;font-size:15px}.mec-addon-box-content p{color:#777;font-size:13px;letter-spacing:.1px}.mec-addon-box-mec-version{background:#f3f3f3;padding:10px;font-size:13px}#webnus-dashboard .addons-page-links{display:inline-block;margin:12px 4px 16px 0}#webnus-dashboard .addons-page-links a{background-color:#fff;color:#fff;border-radius:2px;padding:13px 24px;font-size:12px;letter-spacing:1px;font-weight:600;text-transform:uppercase}.addons-page-links.link-to-purchase a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.addons-page-links.link-to-install-addons a{background:#b092e6;background:linear-gradient(95deg,#b092e6 0,#9b70e8 50%,#8e5cea 100%);box-shadow:0 5px 10px -5px #b092e6}#webnus-dashboard .addons-page-links a:hover,#webnus-dashboard .w-box.addons-page.videobox .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}.mec-addon-box-footer{margin-top:25px;text-align:center}#webnus-dashboard .mec-addon-box-footer a{background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);margin-top:10px;display:inline-block;text-shadow:none;border:none;transition:.24s;position:relative;margin-right:7px;font-size:12px;font-weight:500;border-radius:7px;padding:9px 18px 8px;width:53px;height:34px;line-height:21px;box-shadow:0 2px 8px -3px #008aff}#webnus-dashboard .mec-addon-box-footer a:last-of-type{margin-right:0}#webnus-dashboard .mec-addon-box-footer a.mec-addon-box-intro{box-shadow:0 3px 10px -4px #ff3535;background:linear-gradient(95deg,#ff6c6c 0,#f55 50%,#ff3535 100%)}#webnus-dashboard .mec-addon-box-footer a:hover{background:#222!important;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%)!important;box-shadow:0 5px 23px -7px rgba(0,0,0,.5)!important;cursor:pointer!important}#webnus-dashboard .mec-addon-box-footer a i{color:#fff;font-size:16px}@media(max-width:1366px){.wns-be-container #wns-be-content{padding:5px 15px 0}.mec-form-row .mec-col-8 label{font-size:10px}#webnus-dashboard .mec-tooltip .box p,.mec-tooltip .box p{font-size:10px}}@media (max-width:780px){.wns-be-container #wns-be-content{padding:10px 0}.wns-be-container .mec-form-row .mec-col-8 label{width:50%;display:block}.wns-be-container .mec-form-row input[type=checkbox]{width:14px;height:14px}.wns-be-container .wns-be-sidebar li .subsection a{padding-left:30px}.wns-be-container .wns-be-sidebar{width:200px}.wns-be-container .wns-be-main{margin-left:200px}.wns-be-container .mec-tooltip .box{min-width:235px!important}.wns-be-container .mec-tooltip .box p{font-size:12px!important}#wns-be-infobar.sticky{position:unset}}@media (max-width:480px){.wns-be-container .wns-be-sidebar{width:100%;position:unset;float:none}.wns-be-container .wns-be-main{margin-left:0;width:100%;position:unset}.wns-be-container{margin-top:50px}.wns-be-container #wns-be-infobar:before{width:100%}.wns-be-container #wns-be-infobar{height:150px}#mec-search-settings{margin-top:80px;width:181px}}.addons-page-error,.addons-page-notice{display:block;margin-top:15px;margin-bottom:0;background:#fff;border-left:4px solid #00a0d2;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);padding:1px 12px}.addons-page-error p,.addons-page-notice p{margin:.5em 0;padding:2px;font-size:13px}.addons-page-error{border-left-color:#dc3232}.mec-addon-box-comingsoon{background:#eaeaea;padding:8px 11px;color:#5a5a5a;font-size:14px;font-weight:500;text-align:center}.mec-addons .w-row .w-col-sm-3:nth-child(4n+1){clear:left}@media (min-width:960px){#webnus-dashboard .mec-addon-box-footer .w-button{text-align:right}}@media (min-width:1401px){.mec-addon-box-title a span{font-size:17px}}.mec-pro-notice{margin-top:24px;line-height:30px}.mec-pro-notice .info-msg{padding:50px 30px;margin-bottom:0}#webnus-dashboard .mec-pro-notice .info-msg{background:#fff;box-shadow:0 1px 16px rgba(0,0,0,.034);text-align:center;color:#000}#webnus-dashboard a.info-msg-link{background:#e66f52;background:linear-gradient(95deg,#ff8162 0,#e66f52 50%,#ff4c20 100%);box-shadow:0 5px 10px -5px #e66f52;border-radius:2px;padding:12px 50px;font-size:16px;line-height:24px;border:none;margin:20px auto 0;color:#fff;transition:all .3s ease;display:inline-block}#webnus-dashboard a.info-msg-link:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}#webnus-dashboard .info-msg p{width:70%;margin:0 auto;line-height:1.8}#webnus-dashboard .info-msg-coupon{font-size:13px;color:#777;max-width:600px;line-height:1.68;margin:25px auto 0}#webnus-dashboard .info-msg-coupon strong{font-weight:700;color:#19ce18}.info-msg .socialfollow{padding-top:20px}.info-msg .socialfollow a{margin:0 2px;display:inline-block}.info-msg .socialfollow a i{background:#96a4b1;color:#fff;padding:6px;border-radius:3px;font-size:18px;box-shadow:0 2px 3px rgba(0,0,0,.1);transition:all .25s}.info-msg .socialfollow a:hover i{background:#008aff}.mec-intro-section .w-box-content{text-align:center}.mec-intro-section .w-box-content.mec-intro-section-welcome{max-width:600px;margin:0 auto}.mec-intro-section .w-box-content.mec-intro-section-welcome h3{font-size:27px}a.mec-intro-section-link-tag.button.button-hero{margin:0 10px 40px}a.mec-intro-section-link-tag.button.button-primary.button-hero{color:#fff!important}a.mec-intro-section-link-tag.button.button-secondary.button-hero{color:#000!important}.mec-intro-section-ifarme iframe{border:1px solid #e7e7e7;border-radius:3px;padding:10px;box-shadow:0 3px 10px -6px rgba(0,0,0,.2)}.w-box-content.mec-intro-section-welcome p{margin-bottom:0}.mec-tooltip a:focus{box-shadow:none}#mec_booking_form .mec-options-fields,#mec_modules_form .mec-options-fields,#mec_settings_form .mec-options-fields,#mec_single_form .mec-options-fields{padding-bottom:150px!important}#mec_taxes_fees_container_toggle{margin-bottom:60px}#mec_taxes_fees_container_toggle{margin-bottom:60px}.wns-be-sidebar li{position:relative}.wns-be-sidebar li .submneu-hover{position:absolute;top:-1px;right:-222px;width:220px;z-index:9;background:#fff;border:1px;border-style:solid;border-color:#dedede;margin:0;overflow:visible;opacity:0;visibility:hidden;transition:all .23s ease;padding-top:8px;padding-bottom:12px}.wns-be-sidebar li:hover{background:#fff}.wns-be-sidebar li:hover .submneu-hover{opacity:1;visibility:visible}.wns-be-sidebar li .submneu-hover a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 26px}.wns-be-sidebar li .submneu-hover a:hover{background:#f6f6f6;color:#222}.wns-be-sidebar li .submneu-hover:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-15px;top:14px;border-right-color:#c5c5c5;right:0}.wns-be-sidebar li .submneu-hover:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-14px;top:14px}.wns-be-sidebar li a:focus,.wns-be-sidebar li:focus{outline:-webkit-focus-ring-color auto 0;border:0;box-shadow:none}@media (max-width:480px){.wns-be-sidebar li .submneu-hover{width:175px;right:0}.wns-be-sidebar li .submneu-hover a{font-size:11px;padding:5px 5px 5px 20px}}.mec-tooltip:hover:after,.mec-tooltip:hover:before{display:none}.mec-tooltip{display:inline-flex;bottom:7px}.mec-tooltip .box{min-width:300px;max-width:600px;display:inline-block;left:26px;top:50%;transform:translateY(-50%);padding:0;margin-top:8px;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.3;position:absolute;z-index:9999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s}#webnus-dashboard .mec-tooltip .box p,.mec-tooltip .box p{color:#fff;font-size:14px;line-height:1.3;margin:0;font-style:normal}.mec-tooltip:hover .box{visibility:visible;opacity:1}.mec-tooltip:hover .box{padding:20px;border-radius:8px}.mec-tooltip .box h5{color:#fff;font-size:17px;font-weight:600;margin:-30px -20px;padding:15px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #30353a;border-radius:6px 6px 0 0;z-index:9999}#webnus-dashboard .mec-tooltip .box p a,.mec-tooltip .box p a{color:#40d9f1;margin-top:10px;margin-left:0;font-weight:400;position:relative;text-decoration:none;display:block;width:max-content}.mec-tooltip .box a:hover{color:#f90}.mec-tooltip .box:after{display:block;position:absolute!important;top:100%!important;right:50%!important;margin-top:-6px!important;margin-right:-6px!important;width:12px!important;height:24px!important;overflow:hidden!important;transform:rotate(-90deg)!important}.mec-tooltip .box:before{display:block;content:''!important;position:absolute!important;width:12px;height:12px;left:-10px!important;top:50%!important;transform:translate(50%,-50%) rotate(-45deg)!important;background-color:#535a61!important;box-shadow:0 8px 9px -4px #535a61!important;z-index:0!important}.mec-tooltip .box.top{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-tooltip .box.top:after{top:50%!important;right:100%!important}.mec-tooltip .box.top:before{left:50%!important;top:100%!important}.mec-tooltip .box.bottom{left:50%;top:auto;bottom:0;transform:translate(-50%,100%);margin-bottom:-20px;margin-left:-10px}.mec-tooltip .box.bottom:after{top:0!important;right:50%!important;background-color:#3a3f44!important}.mec-tooltip .box.bottom:before{left:50%!important;top:-7px!important;transform:translateX(-50%);background-color:#3a3f44!important}.mec-tooltip .box.left{left:auto;right:26px;top:50%;transform:translateY(-50%)}.mec-tooltip .box.left:before{right:0!important;left:auto!important;top:50%!important}form#mec_reg_fields_form input[type=radio]:before{content:"";display:inline-block;background:#fff;border-radius:18px;width:14px;height:14px;margin:-1px 0 0 -2px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32)}form#mec_reg_fields_form input[type=radio]:checked:before{border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff;width:4px;height:4px}form#mec_reg_fields_form input[type=radio]{min-height:0;margin-right:6px}form#mec_reg_fields_form label{margin-right:20px}@media(min-width:1200px) and (max-width:1366px){.mec-tooltip .box.left{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-tooltip .box.left:after{top:50%!important;right:100%!important}.mec-tooltip .box.left:before{left:50%!important;top:100%!important}.mec-tooltip .box{min-width:225px}.mec-tooltip .box h5{font-size:15px}.mec-tooltip .box .content{font-size:12px}}@media(max-width:1366px){.wns-be-container .wns-be-group-tab p{margin-top:0}}.mec-addons-notification-box-wrap .w-col-sm-12{padding:0}.mec-addons-notification-box-wrap img{width:auto}.mec-addons-notification-box-image{width:555px;display:inline-block;vertical-align:top}.mec-addons-notification-box-content{width:calc(100% - 559px);display:inline-block}.mec-addons-notification-box-content p{margin-top:1%;line-height:1.5;font-size:16px}.mec-addons-notification-box-content .w-box-content{padding-top:0;padding-bottom:0}.mec-addons-notification-box-content ol{font-size:16px}.mec-addons-notification-box-content a{background:#38d5ed;color:#fff!important;padding:10px 26px;margin-top:5px;display:inline-block;border-radius:3px;text-transform:capitalize;font-size:16px;letter-spacing:.4px;transition:all .1s ease;font-weight:600;text-decoration:none}.mec-addons-notification-box-content a:hover{background:#000}.w-clearfix.w-box.mec-addons-notification-box-wrap span{right:0;left:unset;cursor:pointer;background:#fff;padding:0 16px}.w-clearfix.w-box.mec-addons-notification-box-wrap span i{font-size:28px;vertical-align:sub;color:#f2113e}.wns-be-container .mec-addons-notification-wrap{padding:0;margin:0}.wns-be-container .mec-addons-notification-wrap .w-col-sm-12{padding:0}.wns-be-container .w-box{margin-top:0}.wns-be-container.mec-addons-notification-set-box{margin-right:15px;margin-top:50px;margin-bottom:27px}@media(max-width:1200px){.mec-addons-notification-box-content,.mec-addons-notification-box-image{width:100%;display:block}.mec-addons-notification-box-image{text-align:center}}@media(max-width:768px){.mec-addons-notification-box-image img{width:100%;height:auto}}body.rtl .wns-be-sidebar{width:260px;float:right;position:relative}body.rtl .wns-be-main{margin-left:0;border-left:0;margin-right:260px;border-right:1px solid #dedede}body.rtl .w-box.mec-activation .LicenseField{direction:rtl}body.rtl .w-box.mec-activation input[name=MECPurchaseCode]{text-align:right;padding-right:20px}body.rtl #MECActivation .MECPurchaseStatus,body.rtl .addon-activation-form .MECPurchaseStatus{right:auto;left:-51px}body.rtl #webnus-dashboard .w-box.mec-activation input[type=submit]{right:auto;left:5px}body.rtl .wns-be-sidebar .wns-be-group-menu li a{padding:13px 20px 13px 4px}body.rtl .wns-be-sidebar .wns-be-group-tab-link-a span.wns-be-group-menu-title{padding-left:0;padding-right:24px}body.rtl .wns-be-sidebar .has-sub span.extra-icon{float:left}body.rtl .wns-be-sidebar .wns-be-group-tab-link-a span.extra-icon i{right:auto;left:10px}body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:after,body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:transparent;border-left-color:#fff;right:auto;left:-1px;top:10px}body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{border-right-color:transparent;border-left-color:#c5c5c5;right:auto;left:0}body.rtl .mec-col-1,body.rtl .mec-col-10,body.rtl .mec-col-11,body.rtl .mec-col-12,body.rtl .mec-col-2,body.rtl .mec-col-3,body.rtl .mec-col-4,body.rtl .mec-col-5,body.rtl .mec-col-6,body.rtl .mec-col-7,body.rtl .mec-col-8,body.rtl .mec-col-9{float:right;margin:0 1% 0 0}body.rtl .wns-be-sidebar li .submneu-hover{right:auto;left:-222px}body.rtl .wns-be-sidebar li .submneu-hover:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:auto;right:-1px;top:14px}body.rtl #mec_styles_form #mec_styles_CSS{direction:ltr}body.rtl .w-box.mec-activation{-moz-transform:scaleY(-1);-o-transform:scaleY(-1);-webkit-transform:scaleY(-1);transform:scaleX(-1)}body.rtl .w-box.mec-activation .w-box-content,body.rtl .w-box.mec-activation .w-box-head{-moz-transform:scaleY(-1);-o-transform:scaleY(-1);-webkit-transform:scaleY(-1);transform:scaleX(-1);display:block}body.rtl .w-box.mec-activation .w-box-head{width:100%}body.rtl .wns-be-container #wns-be-infobar:before{left:auto;right:0}body.rtl .wns-be-container .dpr-btn.dpr-save-btn{float:left}body.rtl .wns-be-container .wns-be-group-tab h2:before,body.rtl .wns-be-container .wns-be-group-tab h4:before{left:auto;right:0;margin-right:0;margin-left:5px}body.rtl #mec_gateways_form .mec-tooltip{float:left}.mec-details-addons-container{margin-top:20px}.mec-details-addons-wrap img{float:left;width:19%;margin-right:17px}.mec-details-addons-wrap{clear:both;margin-bottom:80px;display:block;position:relative}.mec-details-addons-wrap a{text-decoration:none}.mec-details-addons-wrap p{float:left;width:340px;margin-top:0;margin-bottom:30px}.mec-details-addons-title{font-weight:700}.mec-details-addons-title a{color:#444}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx{border-radius:10px!important;box-shadow:0 4px 38px rgba(0,0,0,.14)!important}body .crisp-client .crisp-1rjpbb7 .crisp-13qutdl,body .crisp-client .crisp-1rjpbb7 .crisp-13qutdl *,body .crisp-client .crisp-1rjpbb7 .crisp-9dgo7z,body .crisp-client .crisp-1rjpbb7 .crisp-9dgo7z *{font-family:proxima-nova,-apple-system,BlinkMacSystemFont,"Segoe UI",Catamaran,sans-serif!important}body .crisp-client .crisp-1rjpbb7 .crisp-145mbcr,body .crisp-client .crisp-1rjpbb7 .crisp-1jrqqbm:hover{background-color:#fff!important}body .crisp-client .crisp-1rjpbb7 .crisp-14u434g{border-color:#e7e8e9!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-1bkorcf .crisp-1vzg1qq{font-size:20px!important;width:14px!important;height:19px!important;opacity:.85}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-1bkorcf .crisp-1vzg1qq:hover{opacity:.99}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-1sps3eb .crisp-1vd2grm .crisp-12w4w1a{font-size:13px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-1sps3eb .crisp-1vd2grm .crisp-12w4w1a::-webkit-input-placeholder{color:#717273!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=visitor] .crisp-z89v5n .crisp-162m9xf{background-color:#008aff!important;color:#fff!important;box-shadow:none!important;border-radius:5px!important;padding:15px 25px 15px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=visitor] .crisp-z89v5n .crisp-162m9xf .crisp-1o2g4mc{color:#fff!important;font-size:13px!important;letter-spacing:.3px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-z89v5n .crisp-162m9xf{background-color:#f1f2f3!important;border-radius:5px!important;padding:15px 25px 15px!important;box-shadow:none!important;color:#121314!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-type=audio] .crisp-z89v5n .crisp-162m9xf{background-color:#d1d7dc!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=operator] .crisp-z89v5n .crisp-1o2g4mc{color:#121314!important;-webkit-text-fill-color:#121314!important;font-size:13px!important;letter-spacing:.3px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-mkirz6 .crisp-12qaym5 .crisp-39hskb{opacity:.4;margin-right:5px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-mkirz6 .crisp-12qaym5 .crisp-ehr6mw{opacity:.68;font-size:12px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg{background-image:linear-gradient(125deg,#008aff -10%,#0066b1 100%)!important;height:110px!important;padding-top:35px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-1uw6f17,body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-85evuk,body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-nu40j6{font-size:17px!important;line-height:28px!important;padding-top:10px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-kquevr .crisp-x94m06{background-color:#008aff!important;background-image:linear-gradient(125deg,#008aff -10%,#008af0 100%)!important;box-shadow:0 5px 34px -6px #008aff!important}body .crisp-client .crisp-1rjpbb7 .crisp-4oo1n4{background-color:transparent!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx[data-chat-status=ongoing] .crisp-1784wh6 .crisp-1xmtdlg .crisp-172kolj{margin-top:-10px!important}body .crisp-client .crisp-1rjpbb7[data-last-operator-face=false] .crisp-1rf4xdh .crisp-kquevr .crisp-x94m06 .crisp-16qgsyi .crisp-101bp3x[data-is-ongoing=false]{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1OCIgaGVpZ2h0PSI1NSIgdmlld0JveD0iMCAwIDU4IDU1Ij4NCiAgPGcgaWQ9ImNoYXQtc3ZncmVwby1jb21fMV8iIGRhdGEtbmFtZT0iY2hhdC1zdmdyZXBvLWNvbSAoMSkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgLTEuNSkiPg0KICAgIDxwYXRoIGlkPSJQYXRoXzEiIGRhdGEtbmFtZT0iUGF0aCAxIiBkPSJNMjksMS41YzE2LjAxNiwwLDI5LDExLjY0MSwyOSwyNmEyNC4wMSwyNC4wMSwwLDAsMS00LjgsMTQuMzE4Yy40LDQuNzQ1LDEuNTQyLDExLjQyOCw0LjgsMTQuNjgyLDAsMC05Ljk0My0xLjQtMTYuNjc3LTUuNDYybC0uMDIyLjAwOWMtMi43NjQtMS44LTUuNTMyLTMuNjU2LTYuMS00LjEyNmExLDEsMCwwLDAtMS4zMy0uMjc3LDEuMDE3LDEuMDE3LDAsMCwwLS40ODkuODQ4Yy0uMDEuNjIyLjAwNS43ODQsNS41ODUsNC40MjFBMzEuOTE0LDMxLjkxNCwwLDAsMSwyOSw1My41Yy0xNi4wMTYsMC0yOS0xMS42NDEtMjktMjZTMTIuOTg0LDEuNSwyOSwxLjVaIiBmaWxsPSIjZmZmIi8+DQogICAgPGNpcmNsZSBpZD0iRWxsaXBzZV8xIiBkYXRhLW5hbWU9IkVsbGlwc2UgMSIgY3g9IjMiIGN5PSIzIiByPSIzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMiAyNC41KSIgZmlsbD0iIzAwOGFmZiIvPg0KICAgIDxjaXJjbGUgaWQ9IkVsbGlwc2VfMiIgZGF0YS1uYW1lPSJFbGxpcHNlIDIiIGN4PSIzIiBjeT0iMyIgcj0iMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjYgMjQuNSkiIGZpbGw9IiMwMDhhZmYiLz4NCiAgICA8Y2lyY2xlIGlkPSJFbGxpcHNlXzMiIGRhdGEtbmFtZT0iRWxsaXBzZSAzIiBjeD0iMyIgY3k9IjMiIHI9IjMiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQwIDI0LjUpIiBmaWxsPSIjMDA4YWZmIi8+DQogIDwvZz4NCjwvc3ZnPg0K)!important;height:31px!important;top:16px!important;left:14px!important}body .csh-category-item a h6{text-align:left}.mec-form-row.mec-syn-schedule{background:#f7f7f7;padding:20px;border:1px solid #eee;box-shadow:0 1px 11px rgba(0,0,0,.034);margin-bottom:20px}.mec-form-row.mec-syn-schedule p{padding-left:26px}.mec-form-row.mec-syn-schedule h2{margin-top:0}.mec-form-row.mec-syn-schedule h4{margin:10px 0}li.wns-be-group-menu-li.mec-settings-menu .mec-settings-submenu{position:absolute;top:-1px;right:-222px;width:220px;z-index:9;background:#fff;border:1px;border-style:solid;border-color:#dedede;margin:0;overflow:visible;opacity:0;visibility:hidden;transition:all .23s ease;padding-top:8px;padding-bottom:12px}li.wns-be-group-menu-li.mec-settings-menu:hover>.mec-settings-submenu{visibility:visible;opacity:1}.mec-settings-menu .mec-settings-submenu:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-15px;top:14px;border-right-color:#c5c5c5;right:0}.mec-settings-menu .mec-settings-submenu:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-14px;top:14px}.wns-be-sidebar .mec-settings-menu .mec-settings-submenu a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 26px}.wn-mec-select{width:32.33333333%!important;clear:unset!important}.wn-mec-select{-webkit-tap-highlight-color:transparent;background-color:#fff;border-radius:3px;border:1px solid #ddd;margin-bottom:8px;position:relative;text-align:left!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;box-shadow:0 3px 13px -5px rgba(0,0,0,.1),inset 0 1px 2px rgba(0,0,0,.07)}.wn-mec-select:hover{border-color:#dbdbdb}.wn-mec-select.open .list{overflow:unset;width:100%;margin:0}.wn-mec-select .list{background-color:#fff;border-radius:2px;box-shadow:0 2px 33px -2px rgba(0,0,0,.2),inset 0 1px 2px rgba(0,0,0,.07);box-sizing:border-box;margin-top:4px;opacity:0;overflow:hidden;padding:0;pointer-events:none;position:absolute;top:100%;left:0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0;-webkit-transform:scale(.75) translateY(-21px);-ms-transform:scale(.75) translateY(-21px);transform:scale(.75) translateY(-21px);-webkit-transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;z-index:9}.wn-mec-select{-webkit-tap-highlight-color:transparent;background-color:#fff;border-radius:5px;border:solid 1px #e8e8e8;box-sizing:border-box;clear:both;cursor:pointer;display:block;float:left;font-family:inherit;font-size:14px;font-weight:400;height:42px;line-height:40px;outline:0;padding-left:18px;padding-right:30px;position:relative;text-align:left!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap;width:auto}.wn-mec-select:hover{border-color:#dbdbdb}.wn-mec-select:after{border-bottom:2px solid #999;border-right:2px solid #999;content:'';display:block;height:5px;margin-top:-4px;pointer-events:none;position:absolute;right:12px;top:50%;-webkit-transform-origin:66% 66%;-ms-transform-origin:66% 66%;transform-origin:66% 66%;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:all .15s ease-in-out;transition:all .15s ease-in-out;width:5px}.wn-mec-select.open:after{-webkit-transform:rotate(-135deg);-ms-transform:rotate(-135deg);transform:rotate(-135deg)}.wn-mec-select.open .list{opacity:1;pointer-events:auto;-webkit-transform:scale(1) translateY(0);-ms-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}.wn-mec-select.disabled{border-color:#ededed;color:#999;pointer-events:none}.wn-mec-select.disabled:after{border-color:#ccc}.wn-mec-select.wide{width:100%}.wn-mec-select.wide .list{left:0!important;right:0!important}.wn-mec-select.right{float:right}.wn-mec-select.right .list{left:auto;right:0}.wn-mec-select.small{font-size:12px;height:36px;line-height:34px}.wn-mec-select.small:after{height:4px;width:4px}.wn-mec-select .list{background-color:#fff;border-radius:5px;box-shadow:0 0 0 1px rgba(68,68,68,.11);box-sizing:border-box;margin-top:4px;opacity:0;overflow:hidden;padding:0;pointer-events:none;position:absolute;top:100%;left:0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0;-webkit-transform:scale(.75) translateY(-21px);-ms-transform:scale(.75) translateY(-21px);transform:scale(.75) translateY(-21px);-webkit-transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;z-index:9}.wn-mec-select .list:hover .option:not(:hover){background-color:transparent!important}.wn-mec-select .option{cursor:pointer;font-weight:400;list-style:none;min-height:40px;outline:0;text-align:left;position:relative;font-size:12px!important;padding:1px 12px!important;margin:0!important;line-height:28px!important;min-height:28px!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.wn-mec-select .option .wn-hover-img-sh img{position:absolute;padding:3px;top:-1px;left:100%;box-shadow:0 4px 42px -5px rgba(0,0,0,.16);visibility:hidden;opacity:0;border:1px solid #e3e3e3;border-radius:2px;z-index:99999999;background:#fff}.wn-mec-select .option:hover .wn-hover-img-sh img{visibility:visible;opacity:1}.wn-mec-select .option.focus,.wn-mec-select .option.selected.focus,.wn-mec-select .option:hover{background-color:#f6f6f6}.wn-mec-select .option.selected{font-weight:700}.wn-mec-select .option.disabled{background-color:transparent;color:#999;cursor:default}.no-csspointerevents .wn-mec-select .list{display:none}.no-csspointerevents .wn-mec-select.open .list{display:block}.mec-custom-nice-select ul.list li.option{width:30%!important;float:left!important;min-height:135px!important;height:135px;margin:1.66%!important;box-sizing:border-box;text-align:center;padding:10px!important;border-radius:3px;border:1px solid #eee;box-shadow:0 1px 3px rgba(0,0,0,.025);background:#fff!important}.mec-custom-nice-select ul.list li.option:hover{box-shadow:0 2px 7px rgba(0,0,0,.06);borde-color:#e0e0e0}.mec-custom-nice-select .list:hover .option:not(:hover),.mec-custom-nice-select ul.list:hover li.option{background:#fff!important}.mec-custom-nice-select ul.list{min-width:600px!important;padding:20px 10px!important;background:#fcfbfd;border:1px solid #e9e9e9;box-shadow:0 1px 4px rgba(0,0,0,.05)}.mec-custom-nice-select ul.list li.option.selected{border:1px solid #40d9f1;box-shadow:0 1px 8px -3px #40d9f1 inset;color:#00cae6;padding:12px 0 0 0!important}.mec-custom-nice-select .wn-img-sh img{margin:4px 0 1px 1px;line-height:1;max-width:68px;max-height:56px;filter:grayscale(1);-webkit-filter:grayscale(1);transition:all .22s ease;-webkit-transition:all .22s ease;-moz-transition:all .22s ease;-ms-transition:all .22s ease;-o-transition:all .22s ease}.wn-mec-select .option.focus .wn-img-sh img,.wn-mec-select .option.selected.focus .wn-img-sh img,.wn-mec-select .option:hover .wn-img-sh img{background-color:#f6f6f6;filter:grayscale(0);-webkit-filter:grayscale(0)}@media(max-width:768px){.wn-mec-select{width:45%!important}.mec-custom-nice-select ul.list{margin-left:-24px!important;min-width:404px!important}.mec-custom-nice-select ul.list li.option{width:46.6%!important}.wn-hover-img-sh{display:none}}@media(max-width:480px){.wn-mec-select{width:100%!important}.mec-custom-nice-select ul.list{min-width:337px!important}}@media(max-width:320px){.mec-custom-nice-select ul.list li.option{width:100%!important}.mec-custom-nice-select ul.list{min-width:298px!important}}.mec-sed-methods li{line-height:28px;padding-left:38px;position:relative}.mec-sed-methods li:before{margin-right:0}.mec-sed-methods li:before{border-radius:18px}.mec-custom-nice-select ul.list li .wn-mec-text:after,.mec-sed-methods li:before{content:"";position:absolute;display:inline-block;background:#fff;border-radius:2px;width:12px;height:12px;margin:-1px 0 0 -1px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32);border-radius:50%}.mec-custom-nice-select ul.list li .wn-mec-text{position:relative;padding-top:0;padding-bottom:28px}.mec-custom-nice-select ul.list li .wn-mec-text:after{left:calc(50% - 7px);top:auto;bottom:1px}.mec-custom-nice-select ul.list li .wn-img-sh{line-height:1}.mec-sed-methods li:before{left:9px;top:calc(50% - 7px)}.mec-custom-nice-select ul.list li.option.selected .wn-mec-text:after,.mec-sed-methods li.active:before{width:4px;height:4px;border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff}.menu-icon-mec-books .wp-menu-image img,.toplevel_page_mec-intro .wp-menu-image img{width:18px!important;padding-top:7px!important}.mec-add-booking-tabs-wrap,.mec-add-event-tabs-wrap,.mec-create-shortcode-tabs-wrap{display:flex;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox}.mec-add-booking-tabs-left,.mec-add-event-tabs-left,.mec-create-shortcode-tabs-left{flex:1}.mec-add-booking-tabs-right,.mec-add-event-tabs-right,.mec-create-shortcode-tabs-right{flex:6}a.mec-add-booking-tabs-link,a.mec-add-event-tabs-link,a.mec-create-shortcode-tabs-link{display:block}.mec-booking-tab-content,.mec-create-shortcode-tab-content,.mec-event-tab-content{display:none;transition:all .3s ease}.mec-booking-tab-content.mec-tab-active,.mec-create-shortcode-tab-content.mec-tab-active,.mec-event-tab-content.mec-tab-active{display:block}.mec-add-booking-tabs-wrap,.mec-add-event-tabs-wrap{background:#fff;margin:-6px -12px -12px}.mec-create-shortcode-tabs-wrap{margin:-30px -22px -42px}.mec-add-booking-tabs-left,.mec-add-event-tabs-left,.mec-create-shortcode-tabs-left{padding:0 0 38px;background:#fff;min-width:210px}.mec-add-booking-tabs-left a,.mec-add-event-tabs-left a,.mec-create-shortcode-tabs-left a{line-height:16px;font-size:13px;font-weight:600;letter-spacing:.3px;color:#6a6f77;text-decoration:none;background:#f7f7f7;padding:13px 20px;border-bottom:1px solid #e3e3e3;outline:0;box-shadow:none;transition:all .2s ease}.mec-add-booking-tabs-left a:hover,.mec-add-event-tabs-left a:hover,.mec-create-shortcode-tabs-left a:hover{color:#008aff;background:#fff}.mec-add-booking-tabs-left a.mec-tab-active,.mec-add-event-tabs-left a.mec-tab-active,.mec-create-shortcode-tabs-left a.mec-tab-active{background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff;margin:0 -6px;border-radius:5px;box-shadow:0 2px 12px -5px #36a2ff;border-bottom-color:transparent;position:relative}.mec-add-booking-tabs-right,.mec-add-event-tabs-right,.mec-create-shortcode-tabs-right{padding:0 30px 40px;border-left:1px solid #e2e2e2}.mec-booking-tab-content.mec-tab-active,.mec-create-shortcode-tab-content.mec-tab-active,.mec-event-tab-content.mec-tab-active{animation:fadeEffect2 .31s}@media (max-width:550px){.mec-add-booking-tabs-left,.mec-add-event-tabs-left,.mec-create-shortcode-tabs-left{min-width:100px}.mec-add-booking-tabs-left a,.mec-add-event-tabs-left a,.mec-create-shortcode-tabs-left a{font-size:11px;padding:12px 8px;line-height:1.2;letter-spacing:0}}@keyframes fadeEffect2{from{opacity:0;transform:translateX(11px)}to{opacity:1;transform:translateX(0)}}.mec-form-row .mec-col-8 label{padding-right:20px}.mec-calendar-metabox .wn-mec-select{border:solid 1px #ddd;border-radius:2px;height:40px;line-height:38px;padding-left:10px;box-shadow:0 3px 10px -2px rgba(0,0,0,.05),inset 0 1px 2px rgba(0,0,0,.02)}.mec-calendar-metabox .wn-mec-select.open .list{border-radius:0 0 2px 2px;box-shadow:0 0 0 1px #ddd,0 2px 6px rgba(0,0,0,.07)}.mec-calendar-metabox .mec-custom-nice-select.open ul.list{border-radius:3px;box-shadow:0 2px 6px rgba(0,0,0,.07);margin-left:0!important;transform:translateX(-50%);left:50%}.mec-custom-nice-select ul.list li.option.selected .wn-mec-text:after{border:6px solid #40d9f1;box-shadow:0 3px 16px -3px #40d9f1}.mec-form-row input[type=checkbox]{background-color:#fff;border:1px solid #cacece;box-shadow:0 1px 2px rgba(0,0,0,.05);padding:9px;border-radius:3px;min-width:24px;min-height:24px;display:inline-block;transition:all .18s ease;outline:0;margin:2px 4px 4px 0}.mec-form-row input[type=checkbox]:focus{outline:0}.mec-form-row input[type=checkbox]:hover{border-color:#62b6ff}.mec-form-row input[type=checkbox]:checked{box-shadow:0 1px 6px -2px #008aff;border-color:#008aff;background:#008aff;border-radius:2px;position:relative}.mec-form-row.mec-switcher input[type=checkbox]{position:absolute}.mec-form-row input[type=checkbox]:checked:before{content:"";font:normal;position:absolute;top:12px;left:8px;border-right:2px solid transparent;border-bottom:2px solid transparent;transform:rotate(45deg);transform-origin:0 100%;color:#fff;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards}@keyframes checkbox-check{0%{width:0;height:0;border-color:#fff;transform:translate3d(0,0,0) rotate(45deg)}33%{width:5px;height:0;transform:translate3d(0,0,0) rotate(45deg)}100%{width:5px;height:11px;border-color:#fff;transform:translate3d(0,-11px,0) rotate(45deg)}}.mec-form-row input+span.mec-tooltip,.mec-form-row select+span.mec-tooltip{bottom:10px}.mec-form-row label+span.mec-tooltip{bottom:8px}.mec-form-row textarea+span.mec-tooltip{bottom:auto;vertical-align:top;top:12px}.mec-form-row span+span.mec-tooltip{bottom:0;vertical-align:middle}.mec-form-row .mec-col-8 input[type=text],.mec-form-row .mec-col-8 select,.mec-form-row .mec-col-8 span.mec-archive-skins{vertical-align:top}.mec-form-row input:disabled{opacity:.6;background:#f6f6f6}.wns-be-group-tab h5{font-size:16px;font-weight:600;color:#444;margin:45px 0 25px}.mec-form-row textarea{height:auto;margin-bottom:0;min-height:60px}.mec-form-row .wp-picker-container input[type=text].wp-color-picker{height:25px;vertical-align:top;margin:0}.mec-form-row .wp-picker-container label{margin:0}.mec-image-select-wrap li span:hover{border-color:#fff;box-shadow:0 1px 8px rgba(0,0,0,.12)}.mec-message-categories li.mec-acc-label:after{content:"\e604";font-family:simple-line-icons;speak:none;font-style:normal;font-weight:400;display:block;font-size:13px;color:#999;position:absolute;right:27px;top:26px}.mec-message-categories>li.mec-acc-label[data-status=open]:after{content:"\e607";color:#008aff}.mec-message-categories>li.mec-acc-label[data-status=open]{color:#008aff}.mec-message-categories>li.mec-acc-label:last-of-type{border-bottom:none}.mec-message-categories>li.mec-acc-label[data-status=open]{border-bottom:1px solid #e6e6e6}.mec-form-row ul.mec-message-categories{box-shadow:0 2px 16px rgba(0,0,0,.03);border-radius:5px;overflow:hidden;margin-top:30px;background:#f5f5f5;border:2px solid #e6e6e6;max-width:700px}.mec-form-row ul.mec-message-categories li ul{padding:10px 40px 40px;margin:25px -30px -25px;background:#f5f5f5;box-shadow:inset 0 4px 7px rgba(0,0,0,.04);cursor:default}.mec-form-row ul.mec-message-categories ul label{margin:25px 8px 7px;font-weight:600!important;font-size:13px;color:#888;cursor:default}.wns-be-sidebar li:hover a i,.wns-be-sidebar>li:hover a{color:#008aff}.mec-form-row.mec-skin-list-date-format-container input[type=text]{margin-right:2px}.mec-form-row.mec-skin-list-date-format-container span.mec-tooltip{top:2px}.mec-calendar-metabox .mec-form-row input[type=checkbox],.mec-meta-box-fields .mec-form-row input[type=checkbox]{margin-right:6px}.mec-meta-box-fields .mec-form-row .button:not(.wp-color-result){height:37px;margin-top:1px;box-shadow:inset 0 2px 4px #fff,inset 0 -2px 4px rgba(0,0,0,.05),0 2px 2px rgba(0,0,0,.06)}#mec-read-more .mec-form-row span.mec-tooltip{top:2px;left:-4px}#mec-search-settings{border-radius:21px;min-height:32px;box-shadow:inset 0 1px 2px rgba(0,0,0,.06);padding:9px 10px 12px 34px;margin-right:10px;color:#7c838a;font-size:13px;width:260px;background:#f5f5f5;border:none;z-index:1;transition:all .18s ease;outline:0;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)}}
|
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)}}
|
assets/css/frontend.css
CHANGED
@@ -924,44 +924,18 @@
|
|
924 |
|
925 |
/* MEC Events Sold Out
|
926 |
------------------------------------ */
|
927 |
-
.mec-event-title-soldout
|
928 |
-
|
929 |
-
|
930 |
-
|
931 |
-
|
932 |
-
|
933 |
-
.mec-event-title-soldout .soldout {
|
934 |
-
background: #de3120;
|
935 |
-
position: relative;
|
936 |
-
top: -2px;
|
937 |
-
border-radius: 10px 0 0 20px;
|
938 |
-
padding: 2px 4px 2px 10px;
|
939 |
color: #fff;
|
940 |
-
|
941 |
-
|
942 |
-
|
943 |
-
|
944 |
-
|
945 |
-
width: 0;
|
946 |
-
height: 0;
|
947 |
-
border-top: 10px solid #de3120;
|
948 |
-
border-bottom: 10px solid #de3120;
|
949 |
-
right: -10px;
|
950 |
-
border-right: 10px solid transparent;
|
951 |
-
border-left: 10px solid transparent;
|
952 |
-
top: 0px;
|
953 |
-
}
|
954 |
-
|
955 |
-
.mec-event-title-soldout .soldout:after {
|
956 |
-
content: ' ';
|
957 |
-
position: absolute;
|
958 |
-
width: 6px;
|
959 |
-
height: 6px;
|
960 |
-
background: #de3120;
|
961 |
-
border-radius: 50%;
|
962 |
-
left: 3px;
|
963 |
-
top: 4px;
|
964 |
-
border: 2px dashed #fff;
|
965 |
}
|
966 |
|
967 |
/* MEC Events Grid Modern Colorful
|
@@ -2722,10 +2696,9 @@
|
|
2722 |
.mec-single-event .mec-events-meta-group-booking button {
|
2723 |
min-width: 170px;
|
2724 |
margin-top: 5px;
|
2725 |
-
}
|
2726 |
-
|
2727 |
-
.mec-single-event .mec-events-meta-group-booking button {
|
2728 |
margin-left: 15px;
|
|
|
|
|
2729 |
}
|
2730 |
|
2731 |
.mec-single-event .mec-book-form-coupon button {
|
@@ -3250,6 +3223,8 @@ focus,
|
|
3250 |
display: block;
|
3251 |
text-align: center;
|
3252 |
font-size: 16px;
|
|
|
|
|
3253 |
}
|
3254 |
|
3255 |
.mec-single-event .mec-booking-button:hover {
|
@@ -3821,12 +3796,39 @@ address.mec-events-address {
|
|
3821 |
|
3822 |
.mec-attendees-list-details .mec-attendee-profile-link a {
|
3823 |
color: #8d8d8d;
|
|
|
3824 |
}
|
3825 |
|
3826 |
.mec-attendees-list-details .mec-attendee-profile-link span {
|
3827 |
-
display: block;
|
3828 |
color: #000;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3829 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3830 |
|
3831 |
/* MEC Events Calendar Clean
|
3832 |
----------------------------------------- */
|
@@ -14930,4 +14932,202 @@ a.mec-timeline-readmore i {
|
|
14930 |
}
|
14931 |
}
|
14932 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14933 |
/* --------------------- */
|
924 |
|
925 |
/* MEC Events Sold Out
|
926 |
------------------------------------ */
|
927 |
+
span.mec-event-title-soldout {
|
928 |
+
font-size: 8px;
|
929 |
+
font-weight: 700;
|
930 |
+
letter-spacing: .5px;
|
931 |
+
text-transform: uppercase;
|
932 |
+
background: #e63360;
|
|
|
|
|
|
|
|
|
|
|
|
|
933 |
color: #fff;
|
934 |
+
padding: 3px 8px;
|
935 |
+
line-height: 1;
|
936 |
+
border-radius: 15px;
|
937 |
+
white-space: nowrap;
|
938 |
+
vertical-align: middle;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
939 |
}
|
940 |
|
941 |
/* MEC Events Grid Modern Colorful
|
2696 |
.mec-single-event .mec-events-meta-group-booking button {
|
2697 |
min-width: 170px;
|
2698 |
margin-top: 5px;
|
|
|
|
|
|
|
2699 |
margin-left: 15px;
|
2700 |
+
border-radius: 2px;
|
2701 |
+
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
|
2702 |
}
|
2703 |
|
2704 |
.mec-single-event .mec-book-form-coupon button {
|
3223 |
display: block;
|
3224 |
text-align: center;
|
3225 |
font-size: 16px;
|
3226 |
+
border-radius: 2px;
|
3227 |
+
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
|
3228 |
}
|
3229 |
|
3230 |
.mec-single-event .mec-booking-button:hover {
|
3796 |
|
3797 |
.mec-attendees-list-details .mec-attendee-profile-link a {
|
3798 |
color: #8d8d8d;
|
3799 |
+
display: block;
|
3800 |
}
|
3801 |
|
3802 |
.mec-attendees-list-details .mec-attendee-profile-link span {
|
3803 |
+
display: inline-block;
|
3804 |
color: #000;
|
3805 |
+
vertical-align: middle;
|
3806 |
+
cursor: pointer;
|
3807 |
+
}
|
3808 |
+
.mec-attendees-list-details span.mec-attendee-profile-ticket-number {
|
3809 |
+
border-radius: 50px;
|
3810 |
+
width: 20px;
|
3811 |
+
height: 20px;
|
3812 |
+
font-size: 12px;
|
3813 |
+
text-align: center;
|
3814 |
+
color: #fff;
|
3815 |
+
margin-right: 4px;
|
3816 |
}
|
3817 |
+
.mec-attendees-list-details .mec-attendee-profile-link span i {
|
3818 |
+
vertical-align: middle;
|
3819 |
+
font-size: 9px;
|
3820 |
+
font-weight: bold;
|
3821 |
+
margin-left: 5px;
|
3822 |
+
}
|
3823 |
+
|
3824 |
+
.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);}
|
3825 |
+
.mec-attendees-list-details .mec-attendees-toggle:before, .mec-attendees-list-details .mec-attendees-toggle:after { content: ''; display: block; position: absolute; left: 50px; width: 0; height: 0; border-style: solid; border-width: 10px; }
|
3826 |
+
.mec-attendees-list-details .mec-attendees-toggle:after { top: -20px; border-color: transparent transparent #fafafa transparent; }
|
3827 |
+
.mec-attendees-list-details .mec-attendees-toggle:before { top: -21px; border-color: transparent transparent #e1e1e1 transparent; }
|
3828 |
+
.mec-attendees-list-details .mec-attendees-toggle .mec-attendees-item { padding-bottom: 15px;}
|
3829 |
+
.mec-attendees-list-details .mec-attendee-avatar img { border-radius: 3px}
|
3830 |
+
.mec-attendee-avatar-sec { float: left; width: 50px; margin-right: 12px; }
|
3831 |
+
.mec-attendee-profile-name-sec, .mec-attendee-profile-ticket-sec { float: left; width: calc(100% - 62px); margin-top: 3px; }
|
3832 |
|
3833 |
/* MEC Events Calendar Clean
|
3834 |
----------------------------------------- */
|
14932 |
}
|
14933 |
}
|
14934 |
|
14935 |
+
/* Tile View */
|
14936 |
+
.mec-event-tile-view article.mec-tile-item {
|
14937 |
+
height: 400px;
|
14938 |
+
margin: 15px 0;
|
14939 |
+
border-radius: 22px;
|
14940 |
+
padding: 35px 25px;
|
14941 |
+
position: relative;
|
14942 |
+
color: #fff;
|
14943 |
+
background-size: cover !important;
|
14944 |
+
box-shadow: 0 2px 9px rgba(0, 0, 0, 0.25);
|
14945 |
+
transition: all 0.22s ease;
|
14946 |
+
}
|
14947 |
+
|
14948 |
+
.mec-event-tile-view article.mec-tile-item:hover {
|
14949 |
+
box-shadow: 0 4px 19px rgba(0, 0, 0, 0.5);
|
14950 |
+
}
|
14951 |
+
|
14952 |
+
.mec-event-tile-view article.mec-tile-item div {
|
14953 |
+
position: relative;
|
14954 |
+
z-index: 3;
|
14955 |
+
}
|
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, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.48) 65%, rgba(0, 0, 0, 0.72) 100%);
|
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 |
+
}
|
14970 |
+
|
14971 |
+
.mec-event-tile-view article.mec-tile-item:after {
|
14972 |
+
background-color: inherit;
|
14973 |
+
background-image: none;
|
14974 |
+
top: 34px;
|
14975 |
+
bottom: auto;
|
14976 |
+
height: 40px;
|
14977 |
+
border-radius: 0 3px 3px 0;
|
14978 |
+
width: 97px;
|
14979 |
+
z-index: 2;
|
14980 |
+
box-shadow: 2px 1px 7px rgba(0, 0, 0, 0.1);
|
14981 |
+
}
|
14982 |
+
|
14983 |
+
.mec-event-tile-view article.mec-tile-item .event-tile-view-head {
|
14984 |
+
padding: 8px 3px;
|
14985 |
+
font-size: 16px;
|
14986 |
+
font-weight: 700;
|
14987 |
+
margin-bottom: 50px;
|
14988 |
+
text-transform: uppercase;
|
14989 |
+
}
|
14990 |
+
|
14991 |
+
.mec-event-tile-view article.mec-tile-item .mec-event-time {
|
14992 |
+
color: #d6d6d6;
|
14993 |
+
font-size: 15px;
|
14994 |
+
font-weight: 400;
|
14995 |
+
line-height: 1;
|
14996 |
+
padding-top: 4px;
|
14997 |
+
position: absolute;
|
14998 |
+
right: 1px;
|
14999 |
+
top: 10px;
|
15000 |
+
}
|
15001 |
+
|
15002 |
+
.mec-event-tile-view article.mec-tile-item .mec-event-time i {
|
15003 |
+
vertical-align: baseline;
|
15004 |
+
font-size: 14px;
|
15005 |
+
float: left;
|
15006 |
+
}
|
15007 |
+
|
15008 |
+
.mec-event-tile-view article.mec-tile-item i {
|
15009 |
+
margin-right: 5px;
|
15010 |
+
}
|
15011 |
+
|
15012 |
+
.mec-event-tile-view article.mec-tile-item .mec-event-title {
|
15013 |
+
color: #fff;
|
15014 |
+
font-weight: 700;
|
15015 |
+
font-size: 23px;
|
15016 |
+
padding-top: 12px;
|
15017 |
+
}
|
15018 |
+
|
15019 |
+
.mec-event-tile-view article.mec-tile-item .mec-event-title a {
|
15020 |
+
color: #fff;
|
15021 |
+
}
|
15022 |
+
|
15023 |
+
.mec-event-tile-view article.mec-tile-item .mec-event-title a:hover {
|
15024 |
+
text-decoration: underline;
|
15025 |
+
}
|
15026 |
+
|
15027 |
+
.mec-event-tile-view article.mec-tile-item .mec-event-content {
|
15028 |
+
position: absolute;
|
15029 |
+
bottom: 25px;
|
15030 |
+
left: 25px;
|
15031 |
+
right: 25px;
|
15032 |
+
}
|
15033 |
+
|
15034 |
+
.mec-skin-tile-month-navigator-container {
|
15035 |
+
position: relative;
|
15036 |
+
text-align: center;
|
15037 |
+
font-size: 12px;
|
15038 |
+
height: 80px;
|
15039 |
+
background: #f7f7f7;
|
15040 |
+
padding: 28px;
|
15041 |
+
border-radius: 11px;
|
15042 |
+
margin-bottom: 20px
|
15043 |
+
}
|
15044 |
+
|
15045 |
+
.mec-skin-tile-month-navigator-container:before,
|
15046 |
+
.mec-skin-tile-month-navigator-container:after {
|
15047 |
+
content: '';
|
15048 |
+
display: block;
|
15049 |
+
position: absolute;
|
15050 |
+
left: 50%;
|
15051 |
+
margin-left: -10px;
|
15052 |
+
width: 0;
|
15053 |
+
height: 0;
|
15054 |
+
border-style: solid;
|
15055 |
+
border-width: 10px;
|
15056 |
+
}
|
15057 |
+
|
15058 |
+
.mec-skin-tile-month-navigator-container:after {
|
15059 |
+
bottom: -20px;
|
15060 |
+
border-color: #f7f7f7 transparent transparent transparent;
|
15061 |
+
}
|
15062 |
+
|
15063 |
+
.mec-skin-tile-month-navigator-container:before {
|
15064 |
+
bottom: -21px;
|
15065 |
+
border-color: #ffffff transparent transparent transparent;
|
15066 |
+
}
|
15067 |
+
|
15068 |
+
@media only screen and (max-width: 480px) {
|
15069 |
+
.mec-skin-tile-month-navigator-container {
|
15070 |
+
height: 110px;
|
15071 |
+
padding-top: 68px;
|
15072 |
+
}
|
15073 |
+
}
|
15074 |
+
|
15075 |
+
.mec-skin-tile-month-navigator-container h2 {
|
15076 |
+
font-size: 23px;
|
15077 |
+
font-weight: 700;
|
15078 |
+
}
|
15079 |
+
|
15080 |
+
.mec-skin-tile-month-navigator-container .mec-previous-month,
|
15081 |
+
.mec-skin-tile-month-navigator-container .mec-next-month {
|
15082 |
+
position: absolute;
|
15083 |
+
top: 28px;
|
15084 |
+
left: 20px;
|
15085 |
+
cursor: pointer;
|
15086 |
+
padding: 3px 12px;
|
15087 |
+
line-height: 23px;
|
15088 |
+
background: #fff;
|
15089 |
+
border-radius: 32px;
|
15090 |
+
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
|
15091 |
+
transition: all 0.22s ease;
|
15092 |
+
}
|
15093 |
+
|
15094 |
+
.mec-skin-tile-month-navigator-container .mec-next-month {
|
15095 |
+
left: auto;
|
15096 |
+
right: 20px;
|
15097 |
+
}
|
15098 |
+
|
15099 |
+
.mec-skin-tile-month-navigator-container .mec-previous-month:hover,
|
15100 |
+
.mec-skin-tile-month-navigator-container .mec-next-month:hover {
|
15101 |
+
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
|
15102 |
+
color: #000;
|
15103 |
+
}
|
15104 |
+
|
15105 |
+
.mec-wrap .mec-event-tile-view article.mec-label-canceled:before,
|
15106 |
+
.mec-wrap .mec-event-tile-view article.mec-label-featured:before {
|
15107 |
+
position: absolute;
|
15108 |
+
bottom: auto;
|
15109 |
+
text-align: center;
|
15110 |
+
right: auto;
|
15111 |
+
font-size: 10px;
|
15112 |
+
}
|
15113 |
+
|
15114 |
+
.mec-wrap .mec-event-tile-view .col-md-3 article.mec-label-canceled:before,
|
15115 |
+
.mec-wrap .mec-event-tile-view .col-md-3 article.mec-label-featured:before {
|
15116 |
+
top: 12px;
|
15117 |
+
left: 103px;
|
15118 |
+
}
|
15119 |
+
|
15120 |
+
.mec-wrap .mec-event-tile-view .col-md-4 article.mec-label-canceled:before,
|
15121 |
+
.mec-wrap .mec-event-tile-view .col-md-4 article.mec-label-featured:before {
|
15122 |
+
top: 18px;
|
15123 |
+
left: 125px;
|
15124 |
+
}
|
15125 |
+
|
15126 |
+
.mec-wrap .mec-event-tile-view .col-md-6 article.mec-label-canceled:before,
|
15127 |
+
.mec-wrap .mec-event-tile-view .col-md-6 article.mec-label-featured:before {
|
15128 |
+
top: 20px;
|
15129 |
+
left: 200px;
|
15130 |
+
}
|
15131 |
+
|
15132 |
+
|
15133 |
/* --------------------- */
|
assets/css/frontend.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.lity-container,.mec-wrap,.mec-wrap div:not([class^=elementor-]){font-family:Montserrat,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif}.entry-content .mec-wrap h1,.entry-content .mec-wrap h2,.entry-content .mec-wrap h3,.entry-content .mec-wrap h4,.entry-content .mec-wrap h5,.entry-content .mec-wrap h6,.mec-wrap h1,.mec-wrap h2,.mec-wrap h3,.mec-wrap h4,.mec-wrap h5,.mec-wrap h6{font-family:Montserrat,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;color:#171c24;font-weight:300;font-style:inherit;letter-spacing:normal;clear:none}.mec-wrap h1{font-size:50px;line-height:1.16;margin-bottom:12px;letter-spacing:-1px}.mec-wrap h2{font-size:36px;line-height:1.14;margin-bottom:10px}.mec-wrap h3{font-size:28px;line-height:1.2;margin-bottom:8px}.mec-wrap h4{font-size:24px;line-height:1.2;margin-bottom:10px}.mec-wrap h5{font-size:18px;line-height:1.3;margin-bottom:7px}.mec-wrap h6{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-wrap .subheader{color:#849098}.mec-wrap h1 strong{font-weight:700}.mec-wrap p{margin:0 0 20px 0;color:#616161;font-size:14px;line-height:1.8}.mec-wrap .mec-event-article .mec-color-hover{box-shadow:none;border:none}.mec-wrap abbr,.mec-wrap acronym{cursor:auto;border:none}.entry-content .mec-wrap a{box-shadow:none}.mec-wrap .button,.mec-wrap a.button:not(.owl-dot),.mec-wrap button:not(.owl-dot),.mec-wrap input[type=button],.mec-wrap input[type=reset],.mec-wrap input[type=submit]{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease}.mec-wrap .button:hover,.mec-wrap a.button:hover,.mec-wrap button:hover,.mec-wrap input[type=button]:hover,.mec-wrap input[type=reset]:hover,.mec-wrap input[type=submit]:hover{background:#222;color:#fff}.mec-booking-form-container button{display:block!important}.vertical-space,.vertical-space1,.vertical-space2,.vertical-space3,.vertical-space4,.vertical-space5{display:block;width:100%;margin:0;clear:both;border:0 none;height:20px}.vertical-space2{height:40px}.vertical-space3{height:60px}.vertical-space4{height:80px}.vertical-space5{height:100px}@media only screen and (max-width:479px){.vertical-space,.vertical-space1{height:8px}.vertical-space2{height:14px}.vertical-space3{height:28px}.vertical-space4{height:40px}.vertical-space5{height:60px}}@media only screen and (max-width:960px){.vertical-space,.vertical-space1{height:12px}.vertical-space2{height:18px}.vertical-space3{height:36px}.vertical-space4{height:50px}.vertical-space5{height:80px}}.mec-wrap abbr{cursor:auto;border-bottom:0}@-webkit-keyframes rotating{from{-ms-transform:rotate(0);-moz-transform:rotate(0);-webkit-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}to{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes rotating{from{-ms-transform:rotate(0);-moz-transform:rotate(0);-webkit-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}to{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}.mec-wrap{font:14px/25px sans-serif;font-family:Montserrat,Helvetica,Arial,sans-serif;font-weight:400;color:#626262}.mec-wrap .mec-events a{border-bottom:none}.mec-wrap .mec-container a{box-shadow:none}.mec-event-content p{font-family:Roboto,sans-serif;font-weight:300}.mec-wrap .mec-clear:after,.mec-wrap .mec-clear:before{content:" ";display:table}.mec-wrap .mec-clear:after{clear:both}.mec-events-button{background:#fff;padding:12px 34px;font-size:13px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;margin-right:10px;transition:.3s}.mec-wrap .mec-events-button:hover{color:#fff}.mec-no-event{display:none}#mec-active-current{display:block!important}.current-hide #mec-active-current{display:none!important}.mec-event-grid-classic .mec-event-article{position:relative;border:2px solid #e3e3e3;box-shadow:0 2px 0 0 rgba(0,0,0,.016);margin-bottom:30px;max-width:none}.mec-event-grid-classic .mec-event-content{background:#fff;color:#767676;padding:0 20px 5px;text-align:center;min-height:125px}.mec-event-grid-classic .mec-event-title{color:#202020;margin:10px 0;font-weight:700;font-size:20px;letter-spacing:1px;text-transform:uppercase}.mec-event-grid-classic .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-classic .mec-event-date{font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:1px;color:#fff;padding:3px 20px;margin:0 -20px 20px -20px;text-align:center}.mec-event-grid-classic .mec-event-content p{font-size:15px;color:#8a8a8a}.mec-event-grid-classic .mec-event-detail{display:none}.mec-event-grid-classic img{margin-bottom:0;width:100%}.mec-event-footer{position:relative;border-top:1px solid #efefef;padding:20px;min-height:80px;margin:0;background:#fafafa}.mec-event-sharing-wrap{left:15px;position:absolute;list-style:none;margin:0}.mec-event-sharing-wrap .mec-event-sharing{position:absolute;padding:8px 0 2px;left:-6px;bottom:54px;margin:0;margin-top:6px;border-radius:5px;width:50px;visibility:hidden;opacity:0;border:1px solid #e2e2e2;background:#fff;box-shadow:0 0 9px 0 rgba(0,0,0,.06);z-index:99;-webkit-transition:all .18s ease;transition:all .18s ease}.mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-sharing-wrap .mec-event-sharing:before{content:'';display:block;position:absolute;bottom:-10px;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-event-sharing-wrap .mec-event-sharing:before{bottom:-21px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-sharing-wrap .mec-event-sharing:after{bottom:-19px;border-color:#fff transparent transparent transparent}.mec-event-sharing-wrap:hover .mec-event-sharing{opacity:1;visibility:visible}.mec-event-sharing-wrap li{text-align:center;border:0;display:block;margin-right:2px;overflow:hidden;margin:0 auto 6px;width:38px}.mec-event-sharing-wrap:hover>li{cursor:pointer;background-color:#40d9f1}.mec-event-sharing-wrap:hover li a{color:#fff}.mec-event-sharing-wrap>li:first-of-type{border:1px solid #d9d9d9}.mec-event-sharing-wrap li a,.mec-event-sharing-wrap:hover li ul li a{border:none;color:#767676}.mec-event-sharing-wrap li i{width:36px;height:36px;display:table-cell;vertical-align:middle}.mec-event-sharing-wrap .mec-event-sharing li a{display:block}.mec-event-sharing-wrap .mec-event-sharing li:hover a{color:#40d9f1}.mec-event-sharing .mec-event-share:hover .event-sharing-icon{background:#40d9f1;border-width:0 1px 0;cursor:pointer}.mec-event-sharing .mec-event-map{border-width:1px 0 1px}.mec-event-footer .mec-booking-button{box-shadow:none;transition:all .21s ease;font-size:11px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:1px solid #e8e8e8;position:absolute;top:20px;right:15px;padding:0 16px;line-height:37px;height:38px}.mec-event-footer .mec-booking-button:hover{background:#191919;color:#fff;border-color:#191919}@media only screen and (max-width:960px){.mec-event-grid-classic{margin-bottom:30px}}.mec-widget .mec-event-grid-classic.mec-owl-carousel{padding:36px 0 16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav{margin:5px 0;width:100%;position:absolute;top:15px;padding:0}.mec-skin-grid-container.mec-widget{padding-top:18px}.mec-widget .mec-event-grid-classic.mec-owl-carousel{padding:20px 0 16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav{margin:0;width:100%;position:absolute;top:0;padding:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav div{position:absolute;background:#fff;line-height:0;width:34px;height:26px;padding:6px;text-align:center;margin-top:-17px;border-radius:3px;border:1px solid #e2e2e2;text-align:center;box-shadow:0 2px 0 0 rgba(0,0,0,.028);transition:all .33s ease}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav .owl-next{right:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav .owl-prev{left:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-sharing{display:none}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-footer{text-align:center}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-footer .mec-booking-button{position:static;padding:11px 16px}.widget .mec-event-footer ul.mec-event-sharing-wrap li a.mec-event-share-icon{padding:0}@media screen and (min-width:56.875em){.mec-widget .mec-month-container dl{margin-bottom:0}}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-footer{text-align:right}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-sharing-wrap{left:5px;padding-left:5px}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-sharing-wrap .mec-event-sharing{left:0}.mec-widget .mec-event-sharing-wrap .mec-event-sharing{position:absolute;top:auto;bottom:52px;margin:0;margin-top:0;border-radius:5px}.mec-widget .mec-event-sharing-wrap .mec-event-sharing:after{top:auto;bottom:-17px;border-color:#fff transparent transparent transparent}.mec-widget .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-18px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-grid-clean{margin-bottom:10px;max-width:none}.mec-event-grid-clean .mec-event-article{margin-bottom:30px;position:relative;border:1px solid #e2e2e2;text-align:center;padding:15px 15px 0;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-clean .mec-event-content{background:#fff;color:#767676;padding:25px 16px 0;text-align:left}.mec-event-grid-clean .mec-event-title{color:#202020;margin:0 0 10px 0;font-weight:700;font-size:21px;text-transform:capitalize}.mec-event-grid-clean .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-clean .mec-event-date{font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:1px;background-color:#40d9f1;color:#fff;padding:3px 0;margin:0;text-align:center}.mec-event-grid-clean .mec-event-content p{font-size:15px;color:#9a9a9a;line-height:1.54}.mec-event-grid-clean img{margin-bottom:0;width:100%}.mec-event-grid-clean .event-grid-t2-head{margin-bottom:10px;color:#fff;padding:9px 14px 6px;text-align:left}.mec-event-grid-clean .event-grid-t2-head .mec-event-date{font-size:50px;line-height:50px;float:left;margin-right:11px}.mec-event-grid-clean .event-grid-t2-head .mec-event-month{text-transform:uppercase;font-size:17px;line-height:20px;padding-top:4px}.mec-event-grid-clean .event-grid-t2-head .mec-event-detail{font-size:12px}.mec-event-grid-clean .mec-event-sharing-wrap{left:0}.mec-event-grid-clean .mec-event-footer{position:relative;border-top:2px solid;padding:20px 0;margin:0 14px;text-align:left;background:0 0}.mec-event-grid-clean .mec-event-footer .mec-booking-button{right:0}.mec-event-grid-clean .row{margin-bottom:30px}.mec-event-grid-modern{margin-bottom:10px;max-width:none}.mec-event-grid-modern .mec-event-article{position:relative;border:1px solid #e2e2e2;text-align:center;margin-bottom:30px;padding:45px 15px 10px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-modern .mec-event-content{background:#fff;color:#767676;padding:35px 15px 10px;text-align:left}.mec-event-grid-modern .mec-event-title{color:#202020;margin:0 0 10px 0;font-weight:700;font-size:24px;text-transform:none;letter-spacing:-1px}.mec-event-grid-modern .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-modern .mec-event-content p{font-size:15px;color:#9a9a9a;line-height:1.54}.mec-event-grid-modern img{margin-bottom:0;width:100%}.mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:9px 14px 6px;text-align:left}.mec-event-grid-modern .event-grid-modern-head .mec-event-date{font-size:50px;line-height:50px;float:left;margin-right:11px}.mec-event-grid-modern .event-grid-modern-head .mec-event-month{text-transform:uppercase;font-size:17px;line-height:20px;padding-top:4px}.mec-event-grid-modern .event-grid-modern-head .mec-event-detail{font-size:12px}.mec-event-grid-modern .event-grid-modern-head .mec-event-day{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:35px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-event-grid-modern .mec-event-footer{position:relative;height:90px;padding:20px 0;border:none;margin:0 14px;text-align:left;background:0 0}.mec-event-grid-modern .mec-event-footer .mec-booking-button{right:auto;left:0}.mec-event-grid-modern .mec-event-sharing-wrap{left:auto;right:0}.mec-event-grid-modern .mec-event-sharing{left:auto;right:-6px}.mec-event-grid-modern .mec-event-sharing-wrap li{border-radius:55px}.mec-event-grid-modern .row{margin-bottom:0}@media only screen and (max-width:479px){.mec-event-grid-modern .mec-event-article{padding-bottom:30px}.mec-event-grid-modern .mec-event-sharing{top:60px;left:0;right:auto}.mec-event-grid-modern .mec-event-footer .mec-booking-button{top:0}}.mec-event-title-soldout .soldout{background:#de3120;padding:4px 5px;color:#fff}.mec-event-title-soldout .soldout{background:#de3120;position:relative;top:-2px;border-radius:10px 0 0 20px;padding:2px 4px 2px 10px;color:#fff}.mec-event-title-soldout .soldout:before{content:' ';position:absolute;width:0;height:0;border-top:10px solid #de3120;border-bottom:10px solid #de3120;right:-10px;border-right:10px solid transparent;border-left:10px solid transparent;top:0}.mec-event-title-soldout .soldout:after{content:' ';position:absolute;width:6px;height:6px;background:#de3120;border-radius:50%;left:3px;top:4px;border:2px dashed #fff}.mec-event-grid-colorful .mec-event-article{min-height:400px;border:none;box-shadow:none;background:#40d9f1;padding-top:25px;margin:0;color:#fff}.mec-event-grid-colorful .mec-event-content{background:0 0}.mec-event-grid-colorful .event-grid-modern-head,.mec-event-grid-colorful .event-grid-modern-head .mec-event-date,.mec-event-grid-colorful .event-grid-modern-head .mec-event-day,.mec-event-grid-colorful .mec-event-content p,.mec-event-grid-colorful .mec-event-sharing-wrap>li>a,.mec-event-grid-colorful .mec-event-title a{color:#fff}.mec-event-grid-colorful .mec-event-footer .mec-booking-button{border:none}.mec-event-grid-colorful .mec-event-sharing-wrap>li{border-color:#fff}.mec-event-grid-colorful .mec-event-sharing-wrap:hover>li{background:#333;border-color:#333}.mec-event-grid-colorful .mec-event-title a.mec-color-hover:hover{color:#fff;text-decoration:underline}.mec-event-grid-colorful .mec-event-title .event-color{display:none}.mec-event-grid-colorful div[class^=col-md-]{padding:0 1px 1px 0;margin:0}@media only screen and (min-width:768px){.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-day{font-size:26px}.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-month{font-size:15px}.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-date{font-size:50px}.mec-wrap.mec-sm959.mec-event-grid-colorful .mec-event-title{font-size:21px}.mec-wrap.mec-sm959.mec-event-grid-colorful .mec-event-content p{font-size:13px}}@media only screen and (min-width:768px) and (max-width:1200px){.mec-wrap.mec-sm959.mec-event-grid-colorful div[class^=col-md-]{width:50%}}.mec-event-list-minimal .mec-event-article{border-bottom:1px solid #efefef;padding:24px 0 16px}.mec-event-list-minimal .mec-wrap .col-md-9{padding:0}.mec-event-list-minimal .mec-event-date{position:relative;float:left;margin-right:30px;color:#fff;width:52px;padding:6px 4px 3px;text-align:center;text-transform:uppercase;border-radius:3px}.mec-event-list-minimal .mec-event-date span{display:block;font-size:24px;font-weight:700;text-align:center;margin-bottom:4px}.mec-event-list-minimal .mec-event-date:after{display:block;content:"";position:absolute;width:50px;left:1px;top:1px;height:30px;background:rgba(255,255,255,.1);box-shadow:0 4px 4px rgba(0,0,0,.02)}.mec-event-list-minimal .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;font-size:18px;text-transform:uppercase;letter-spacing:0;padding-top:10px}.mec-event-list-minimal .mec-event-detail,.mec-event-list-minimal .mec-time-details{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;font-family:Roboto,sans-serif}.mec-event-list-minimal .btn-wrapper{text-align:right;padding-right:0;padding-top:6px}.mec-event-list-minimal .btn-wrapper .mec-detail-button{border-bottom:0;margin-bottom:14px;margin-right:0;box-shadow:none}.mec-event-list-minimal a.mec-detail-button{text-align:center;display:inline-block;background:#ededed;color:#191919;padding:12px;border-radius:2px;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:2px;transition:all .24s ease}.mec-event-list-minimal a.mec-detail-button:hover{background:#292929;color:#fff}.vc_col-sm-4 .mec-event-list-minimal .mec-event-date,.vc_col-sm-6 .mec-event-list-minimal .mec-event-date{margin-right:12px}.vc_col-sm-4 .mec-event-list-minimal .mec-event-title,.vc_col-sm-6 .mec-event-list-minimal .mec-event-title{font-size:15px;letter-spacing:2px}@media only screen and (min-width:480px) and (max-width:767px){.mec-event-list-minimal .btn-wrapper{padding-left:0}.mec-event-list-minimal .mec-event-date{margin-right:10px}}@media only screen and (max-width:767px){.mec-event-list-minimal .btn-wrapper .mec-detail-button{display:block;text-align:center;margin:0;margin-top:16px;padding:8px}.mec-event-list-minimal .btn-wrapper{margin:12px 0}}@media only screen and (max-width:479px){.mec-event-list-minimal .mec-event-date{float:none;width:100%;margin-bottom:8px}.mec-event-list-minimal .mec-event-date span{display:inline;padding-right:25px;margin-right:7px;font-size:inherit}.mec-event-list-minimal .mec-event-date:after{width:45%;box-shadow:4px 0 4px rgba(0,0,0,.02)}.mec-event-list-minimal .btn-wrapper{text-align:center;padding-left:0}.mec-event-list-minimal{text-align:center}.mec-event-list-minimal .mec-event-detail{margin-bottom:10px}}.mec-wrap .mec-event-list-modern .mec-event-title{margin-top:0;margin-bottom:10px}.mec-event-list-modern .mec-event-article{border-bottom:1px solid #efefef;padding:30px 0 10px}.mec-event-list-modern .mec-event-article:last-child{border-bottom:none}.mec-event-list-modern .mec-event-title a{color:#191919;transition:all .24s ease;box-shadow:none}.mec-event-list-modern .mec-event-date{text-transform:uppercase;padding:10px 0}.mec-event-list-modern .mec-event-date .event-d{font-size:48px;display:table-cell;padding:10px 0 0}.mec-event-list-modern .mec-event-date .event-f{font-size:13px;display:table-cell;vertical-align:middle;padding-left:7px;font-weight:500;letter-spacing:3px;color:#777}.mec-event-list-modern .mec-event-detail{font-weight:300;color:#8a8a8a}.mec-event-list-modern .mec-event-detail .mec-time-details{display:inline}.mec-event-list-modern .mec-event-date .event-da{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:28px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-event-list-modern .mec-btn-wrapper .mec-booking-button{border-radius:1px;letter-spacing:2px;border:1px solid #e6e6e6;color:#333;background-color:#fff;padding:13px 20px;font-weight:700;font-size:11px;box-shadow:0 2px 0 0 rgba(0,0,0,.016);transition:all .28s ease}.mec-event-list-modern .mec-btn-wrapper .mec-booking-button:hover{border-color:#222;background:#222;color:#fff}.mec-event-list-modern .mec-event-title{font-weight:700;font-size:20px;text-transform:uppercase;letter-spacing:1px}.mec-event-list-modern .mec-event-detail{color:#9a9a9a;font-size:15px;font-weight:300;line-height:25px;font-family:Roboto,sans-serif}.mec-event-list-modern .mec-btn-wrapper{text-align:right;padding:10px 0;text-transform:uppercase}.mec-event-list-modern .mec-event-sharing{position:relative;margin:10px 0}.mec-event-list-modern .mec-event-sharing>li{display:inline-block;border:none;border-radius:50%;margin-right:3px}.mec-event-list-modern .mec-event-sharing>li:hover{display:inline-block}.mec-event-list-modern .mec-event-sharing>li:hover a i{color:#fff;background:#40d9f1;border-color:#40d9f1}.mec-event-list-modern .mec-event-sharing>li i{width:36px;display:inline-block;line-height:35px;color:#767676;text-align:center;border-radius:50%;border:1px solid #ddd;font-size:14px}.mec-event-list-modern .mec-event-sharing .mec-event-share:hover .mec-event-sharing-icon{background:#40d9f1;border-color:#40d9f1;cursor:pointer;border-radius:50%}.mec-event-list-modern .mec-event-sharing li:hover a i{background:#40d9f1}@media only screen and (min-width:768px){.mec-event-list-modern .mec-event-article{position:relative;min-height:160px;overflow:hidden}.mec-event-list-modern .col-md-2.col-sm-2{width:210px;position:absolute;left:0;top:20px}.mec-event-list-modern .col-md-4.col-sm-4.mec-btn-wrapper{width:180px;padding:0;position:absolute;right:0;top:30%}.mec-event-list-modern .col-md-6.col-sm-6{width:100%;padding-left:225px;padding-right:195px}}@media only screen and (max-width:767px){.mec-event-list-modern .mec-btn-wrapper .mec-booking-button{letter-spacing:1px;border:1px solid #e1e1e1;padding:8px 16px}.mec-event-list-modern .mec-btn-wrapper{padding:0 0 12px}.mec-event-list-modern .mec-event-sharing{margin-bottom:0}}.mec-event-grid-minimal .mec-event-article{margin:15px 0;min-height:80px;display:table}.mec-event-grid-minimal .event-detail-wrap{display:table-cell;vertical-align:middle}.mec-event-grid-minimal .mec-event-date{width:70px;float:left;margin-right:20px;padding:12px 16px 10px;text-align:center;text-transform:uppercase;border-radius:4px;border:1px solid #e6e6e6;transition:all .37s ease-in-out;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-minimal .mec-event-date span{display:block;font-size:24px;font-weight:700;text-align:center;margin-bottom:4px;color:#2a2a2a;transition:color .3s ease}.mec-event-grid-minimal .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;line-height:21px;font-size:16px;text-transform:uppercase;transition:color .3s ease}.mec-event-grid-minimal .mec-event-title a{color:#191919;transition:color .3s ease}.mec-event-grid-minimal .mec-event-detail{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;font-family:Roboto,sans-serif}.mec-event-grid-minimal .mec-event-date:hover{color:#fff}.mec-event-grid-minimal .mec-event-date:hover span{color:#fff}.mec-event-list-classic .mec-event-article{padding:12px 0;margin-bottom:20px}.mec-event-list-classic .mec-event-image{float:left;width:86px;margin-right:20px}.mec-event-list-classic .mec-event-date,.mec-event-list-classic .mec-event-time{font-weight:400;font-size:13px;letter-spacing:0;line-height:18px;text-align:left;display:initial;margin-right:12px}.mec-event-list-classic .mec-event-time .mec-time-details,.mec-event-list-classic .mec-event-time i{display:inline;margin-right:3px}.mec-event-list-classic .mec-event-date span{font-weight:500;margin-bottom:6px}.mec-event-list-classic .mec-event-title{font-size:15px;margin:10px 0 12px;font-weight:700;text-transform:uppercase}.mec-event-list-classic .mec-event-title a{color:#494949;transition:color .3s ease}.mec-event-list-classic .mec-event-detail{color:#777;font-weight:400;line-height:12px;font-size:12px;overflow:hidden}.mec-event-list-classic a.magicmore{padding:10px 16px;color:#fff;background:#222;letter-spacing:2px;font-size:11px}.mec-event-list-classic a.magicmore:after{content:"";display:none}.mec-event-list-classic a.magicmore:hover{color:#40d9f1}.mec-event-grid-simple .mec-event-article{position:relative;margin-bottom:30px}.mec-event-grid-simple .mec-event-article:after{border-right:1px solid #e6e6e6;height:60px;position:absolute;top:50%;margin-top:-30px;right:-1px}.mec-event-grid-simple .row div:last-child .mec-event-article:after{border:none}.mec-event-grid-simple .row{margin:15px 0 30px;text-align:center}.mec-event-grid-simple .mec-event-date{padding:0;margin:0;text-transform:capitalize;font-size:12px;font-weight:700}.mec-event-grid-simple .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;line-height:21px;font-size:15px;padding-top:5px;text-transform:uppercase;transition:color .37s ease}.mec-event-grid-simple .mec-event-title a{color:#494949;transition:color .3s ease}.mec-event-grid-simple .mec-event-detail{font-family:Roboto,sans-serif;font-weight:400;line-height:1;letter-spacing:0;font-size:13px;color:#777}.mec-event-grid-simple:hover .mec-event-title{color:#40d9f1}.mec-event-grid-simple:hover .mec-event-date{background:0 0}.event-last:after{display:none}@media only screen and (max-width:767px){.mec-event-grid-simple .mec-event-article{padding-bottom:20px;margin-bottom:20px;border-bottom:1px solid #eee}.mec-event-grid-simple .mec-event-article:after{border:none}}.mec-event-grid-novel .mec-event-article{position:relative;margin-bottom:30px;padding:60px 5% 60px 7%;border:1px solid rgba(255,255,255,.12);border-radius:10px;background-color:#0050fd;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease;z-index:1}.mec-event-grid-novel .mec-event-article .novel-grad-bg{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:10px;opacity:0;z-index:-1;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease}.mec-event-grid-novel .mec-event-article:hover{-webkit-box-shadow:0 13px 36px 0 rgba(0,0,0,.23);box-shadow:0 13px 36px 0 rgba(0,0,0,.23);border-color:transparent}.mec-event-grid-novel .mec-event-article:hover .novel-grad-bg{background-image:-webkit-gradient(linear,left top,right top,from(#262e32),to(#0e1015));background-image:-webkit-linear-gradient(left,#262e32 0,#0e1015 100%);background-image:-o-linear-gradient(left,#262e32 0,#0e1015 100%);background-image:linear-gradient(90deg,#262e32 0,#0e1015 100%);opacity:1}.mec-event-grid-novel .mec-event-image{float:left;width:150px;height:150px}.mec-event-grid-novel .mec-event-image img{width:150px;height:150px;border-radius:50%}.mec-event-grid-novel .mec-event-detail-wrap{margin-left:200px}.mec-event-grid-novel .mec-event-content h4{position:relative;margin-bottom:10px;display:inline-block}.mec-event-grid-novel .mec-event-content h4 a{font-size:24px;line-height:35px;color:#fafcff}.mec-event-grid-novel .mec-event-content h4::before{content:'';position:absolute;top:8px;left:-30px;width:17px;height:17px;background:#5cd0ed;opacity:.4;border-radius:50%}.mec-event-grid-novel .mec-event-content h4::after{content:'';position:absolute;top:12px;left:-26px;width:9px;height:9px;background:#5cd0ed;border-radius:50%}.mec-event-grid-novel .mec-event-address,.mec-event-grid-novel .mec-event-detail,.mec-event-grid-novel .mec-event-month{position:relative;padding-left:35px;font-size:15px;line-height:30px;color:rgba(255,255,255,.4)}.mec-event-grid-novel .mec-event-address::before,.mec-event-grid-novel .mec-event-detail::before,.mec-event-grid-novel .mec-event-month::before{position:absolute;top:6px;left:6px;font-size:17px;font-family:simple-line-icons;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1}.mec-event-grid-novel .mec-event-month::before{content:"\e075"}.mec-event-grid-novel .mec-event-detail::before{content:"\e081"}.mec-event-grid-novel .mec-event-address::before{content:"\e096"}.mec-event-grid-novel .mec-event-footer{clear:both;padding:20px 0;border-top:none;background:0 0}.mec-event-grid-novel .mec-event-footer .mec-booking-button{right:auto;left:0;height:42px;width:148px;padding:0 20px;font-size:14px;font-weight:400;line-height:42px;text-align:center;color:#fff;background:0 0;border-color:rgba(255,255,255,.1);border-radius:50px}.mec-event-grid-novel .mec-event-footer .mec-booking-button:hover{background-color:rgba(255,255,255,.1)}.mec-event-grid-novel .mec-event-sharing-wrap{left:175px;cursor:pointer}.mec-event-grid-novel .mec-event-sharing-wrap>li{border-color:rgba(255,255,255,.1);border-radius:50%}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing{top:-5px;left:0;padding:5px 10px 2px 50px;min-width:150px;width:inherit;height:37px;background-color:rgba(255,255,255,.1);-webkit-box-shadow:none;box-shadow:none;border:none;border-radius:50px}.mec-event-grid-novel .mec-event-sharing-wrap:hover>li{background-color:rgba(255,255,255,.1)}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing::after,.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing::before{display:none}.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon,.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon a,.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li i{display:inline}.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon a{padding:0 10px}.mec-event-grid-novel .mec-event-sharing-wrap>li a{color:#fff}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li a{color:rgba(255,255,255,.4)}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li a:hover{color:rgba(255,255,255,1)}@media only screen and (max-width:1200px){.mec-event-grid-novel .row .col-md-6.col-sm-6{width:100%;float:none}.mec-event-grid-novel .mec-event-image{float:none;margin-top:-20px;margin-bottom:20px}.mec-event-grid-novel .mec-event-detail-wrap{margin-left:20px}.mec-event-grid-novel .mec-event-footer{margin-top:30px}}@media only screen and (max-width:767px){.mec-event-grid-novel .mec-event-footer{margin-top:0;padding-top:30px;margin-bottom:24px}.mec-event-grid-novel .mec-event-footer .mec-booking-button{display:block;position:relative}.mec-event-grid-novel .mec-event-sharing-wrap{left:0;bottom:-55px}.mec-event-grid-novel .mec-event-content h4 a{font-size:20px;line-height:1.3}}.mec-event-cover-modern{position:relative}.mec-event-cover-modern .mec-event-cover-a{background:0 0;position:absolute;color:#fff;bottom:0;left:0;text-decoration:none}.mec-event-cover-modern .mec-event-cover-a .mec-event-overlay{transition:all .5s;opacity:.8;width:100%;height:100%;position:absolute}.mec-event-cover-modern .mec-event-cover-a:hover .mec-event-overlay{opacity:1}.mec-event-cover-modern .mec-event-detail{padding:40px;position:relative}.mec-event-cover-modern .mec-event-cover-a:hover .mec-event-tag{color:#333;transition:all .5s}.mec-event-cover-modern .mec-event-cover-a .mec-event-title:hover{text-decoration:underline}.mec-event-cover-modern .mec-event-tag{background:#fff;display:inline-block;padding:5px 9px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:24px}.mec-event-cover-modern .mec-event-date{text-transform:uppercase;font-size:17px;font-weight:300}.mec-event-cover-modern .mec-event-title{color:#fff;text-transform:uppercase;font-size:40px;font-weight:700;margin:6px 0}.mec-event-cover-modern .mec-event-place{font-weight:400;font-size:18px;font-family:Roboto,sans-serif}@media only screen and (max-width:767px){.mec-event-cover-modern .mec-event-cover-a{width:100%}}.mec-event-cover-classic{position:relative;overflow:hidden;background:#fff;padding:6px;border:1px solid #e8e8e8}.mec-event-cover-classic .mec-event-overlay{position:absolute;left:6px;right:6px;bottom:6px;top:6px;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-cover-classic:hover .mec-event-overlay{background-color:rgba(36,36,36,.6)}.mec-event-cover-classic .mec-event-content{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out}.mec-event-cover-classic .mec-event-date{font-size:14px;text-transform:uppercase;font-weight:400;line-height:1.6}.mec-event-cover-classic .mec-event-date span{display:block;font-weight:700;font-size:16px}.mec-event-cover-classic .mec-event-title{color:#fff;margin:20px 0 38px;font-size:24px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-cover-classic .mec-btn-wrapper{text-align:left}.mec-event-cover-classic .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-cover-classic .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:12px 20px;letter-spacing:3px;font-size:12px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-cover-classic .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-cover-classic .mec-event-image img{min-width:100%}@media only screen and (max-width:960px){.mec-event-cover-classic .mec-event-content{padding:20px}.mec-event-cover-classic .mec-event-button{font-size:11px;padding:7px 10px;letter-spacing:1px}.mec-event-cover-classic .mec-event-title{font-size:19px;margin:15px 0 25px}.mec-event-cover-classic .mec-event-date{font-size:12px}}@media only screen and (max-width:767px){.mec-event-cover-classic{margin-bottom:30px}}@media only screen and (max-width:479px){.mec-event-cover-classic .mec-event-content{padding:15px;font-size:15px}.mec-event-cover-classic .mec-event-title{font-size:15px;margin:10px 0}.mec-event-cover-classic .mec-event-button{font-size:10px;padding:6px;letter-spacing:1px}.mec-event-cover-classic .mec-event-icon{padding:10px}}.mec-load-more-wrap{text-align:center;display:block;width:100%;padding-top:20px;text-align:center;position:relative}.mec-load-more-button{box-shadow:none;transition:all .21s ease;font-size:12px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:2px solid #e8e8e8;border-radius:50px;padding:0 28px;margin-bottom:20px;cursor:pointer;line-height:40px;font-family:Montserrat,Helvetica,Arial,sans-serif;height:42px;display:inline-block}.mec-load-more-button:hover{background:#191919;color:#fff;border-color:#191919}.mec-load-more-loading{content:url(../img/ajax-loader.gif);cursor:wait;background:0 0;border-style:none}.mec-load-more-loading:hover{background:0 0}.mec-modal-preloader,.mec-month-navigator-loading{width:100%;height:100%;background:no-repeat rgba(255,255,255,.88) url(../img/ajax-loader.gif) center;border-style:none;position:fixed;left:0;right:0;bottom:0;top:0;z-index:9}.mec-event-calendar-classic .mec-calendar-side .mec-calendar-table{min-height:1024px}.mec-calendar-side .mec-calendar-table{min-height:450px}.mec-skin-weekly-view-events-container.mec-month-navigator-loading{margin-top:0}.mec-calendar.mec-event-calendar-classic .mec-calendar-side{display:block}.mec-skin-daily-view-events-container.mec-month-navigator-loading{margin-top:0}@media only screen and (min-width:961px){.mec-wrap.mec-sm959 .mec-calendar-side .mec-calendar-table{min-height:1px}}@media only screen and (max-width:479px){.mec-calendar-side .mec-calendar-table{min-height:1px}}.mec-event-cover-clean{position:relative;border:1px solid #e6e6e6;padding:8px}.mec-event-cover-clean .mec-event-overlay{height:100%;background-color:rgba(36,36,36,.4);position:absolute;width:100%;left:0;border:8px solid #fff;top:0;transition:all .5s ease-in-out}.mec-event-cover-clean .mec-event-content{color:#fff;position:absolute;bottom:20px;padding:40px 60px;transition:all .5s ease-in-out}.mec-event-cover-clean .mec-event-title{color:#fff;font-weight:700;margin:46px 0 19px;font-size:29px;text-transform:uppercase;text-shadow:0 0 1px rgba(0,0,0,.5)}.mec-event-cover-clean .mec-event-title a{color:#fff;transition:all .5s;text-decoration:none;outline:0;border:none;box-shadow:none}.mec-event-cover-clean .mec-event-title a:hover{text-decoration:underline}.mec-event-cover-clean .mec-event-date{position:absolute;top:-20px;right:60px;color:#fff;width:60px;padding:14px 10px;z-index:1}.mec-event-cover-clean .mec-event-date div{text-align:center;text-transform:uppercase;letter-spacing:1px;line-height:16px}.mec-event-cover-clean .mec-event-date .dday{padding-bottom:15px;border-bottom:1px solid rgba(255,255,255,.5);margin-bottom:13px;font-size:24px}.mec-event-cover-clean .mec-event-date .dmonth{letter-spacing:2px}.mec-event-cover-clean .mec-event-place{font-size:18px;font-family:Roboto,sans-serif}.mec-event-cover-clean .mec-event-image img{width:100%}@media only screen and (max-width:768px){.mec-event-cover-clean .mec-event-content{padding:20px;bottom:5px}.mec-event-cover-clean .mec-event-title{font-size:23px}.mec-event-cover-clean .mec-event-date{right:20px;padding:10px;width:50px}}@media only screen and (max-width:479px){.mec-event-cover-clean .mec-event-content{padding:10px}.mec-event-cover-clean .mec-event-title{font-size:19px;padding-right:25px}.mec-event-cover-clean .mec-event-date{right:-20px;top:-10px}.mec-event-cover-clean .mec-event-detail{font-size:12px}}.mec-month-divider{text-align:center;margin:60px 0 40px 0}.widget .mec-month-divider{margin:10px 0}.mec-month-divider span{text-transform:uppercase;font-size:22px;font-weight:700;padding-bottom:5px;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative}.mec-month-divider span:before{border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-30px;left:50%;width:60px}.widget .mec-month-divider span{font-size:13px}.mec-event-list-standard .mec-events-pagination{margin-top:60px;border-top:4px solid #ebebeb;min-height:80px;padding-top:20px}.mec-event-list-standard .mec-events-pagination .mec-events-pag-previous{float:left;margin-left:0}.mec-event-list-standard .mec-events-pagination .mec-events-pag-next{float:right;margin-right:0}.mec-event-list-standard .mec-event-article{position:relative;display:block;margin-bottom:25px;border:1px solid #e9e9e9;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-list-standard .mec-topsec{display:table;width:100%}.mec-event-list-standard .col-md-3.mec-event-image-wrap{padding-left:0}.mec-event-list-standard .mec-event-content{padding-top:15px;padding-right:30px}.mec-event-list-standard .mec-event-title{font-size:29px;font-weight:700;letter-spacing:-1px;margin:0 0 10px}.mec-event-list-standard .mec-event-title a{color:#292929;transition:color .3s ease}.mec-event-list-standard .mec-col-table-c{display:table-cell;height:100%;vertical-align:middle;float:none!important}.mec-event-list-standard .mec-col-table-c.mec-event-meta-wrap{padding-top:15px}.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{vertical-align:top}.mec-topsec .mec-event-image{line-height:1px}.mec-event-list-standard .mec-event-meta-wrap{border-left:1px solid #eee}.mec-event-list-standard .mec-time-details{text-transform:uppercase;font-size:11px;font-weight:300;padding-top:0;text-align:left;padding-left:30px}.mec-event-list-standard .mec-event-meta .mec-event-address{font-style:normal;letter-spacing:0;font-size:13px;color:#8a8a8a}.mec-event-list-standard .mec-event-meta span.mec-event-d,.mec-event-list-standard .mec-event-meta span.mec-event-m{font-size:17px;font-weight:700;padding-right:6px;color:#444;text-transform:uppercase}.mec-event-list-standard .mec-date-details,.mec-event-list-standard .mec-time-details,.mec-event-list-standard .mec-venue-details{position:relative;padding-left:28px;margin-bottom:10px}.mec-event-list-standard .mec-date-details:before,.mec-event-list-standard .mec-time-details:before,.mec-event-list-standard .mec-venue-details:before{content:"\f041";font-family:fontawesome;position:absolute;left:6px;font-size:15px}.mec-event-list-standard .mec-date-details:before{content:"\f073"}.mec-event-list-standard .mec-time-details:before{content:"\f017"}.mec-event-list-minimal .mec-event-title a{color:#292929;transition:color .3s ease}.mec-event-meta-wrap .mec-price-details{margin-bottom:10px}.mec-price-details i{margin-right:5px;vertical-align:text-top}.mec-event-meta-wrap .mec-event-meta .mec-price-details i:before{font-size:15px}@media only screen and (max-width:960px){.mec-event-list-standard .mec-topsec{display:block}.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:block;width:40%}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{display:block;min-height:230px}.mec-event-list-standard .mec-event-meta-wrap{display:block;border-left:none;border-top:1px solid #eee;width:100%;float:none;padding-top:20px}}@media only screen and (min-width:480px) and (max-width:960px){.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:table-cell}}@media only screen and (max-width:479px){.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap img{float:none;width:100%;padding:0}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{padding:10px 10px 10px 30px}}.mec-wrap .mec-events-cal-links{margin-bottom:0}.mec-single-event #mec-wrap{padding:0;margin-top:35px}.mec-wrap .mec-single-title{margin-top:0;margin-bottom:30px;font-weight:700;font-size:33px}.mec-single-event .mec-event-content{padding:40px 0 30px;margin-bottom:10px}.mec-single-event .mec-events-meta-group-booking,.mec-single-event .mec-frontbox{margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-wrap #main-content{overflow:hidden;padding-top:35px}.mec-single-event .mec-map-get-direction-address-cnt{position:relative}.mec-single-event .mec-map-get-direction-address-cnt input.mec-map-get-direction-address{width:100%;height:46px;padding:13px 10px;margin-bottom:0;background:#fcfcfc;border:1px solid #e0e0e0;border-radius:0;box-shadow:inset 0 2px 5px rgba(0,0,0,.081)}.mec-single-event .mec-map-get-direction-address-cnt input.mec-map-get-direction-address:focus{color:#444;background:#fff;border-color:#b0b0b0;box-shadow:0 0 3px rgba(0,0,0,.2)}.mec-single-event .mec-map-get-direction-btn-cnt input{width:100%}.mec-single-event .mec-map-get-direction-reset{position:absolute;z-index:2;top:5px;right:10px;font-size:11px;cursor:pointer}.mec-events-meta-group-tags{margin-top:20px}.mec-events-meta-group-tags a{display:inline-block;color:#444;font-size:11px;text-transform:uppercase;letter-spacing:1.5px;font-weight:500;padding:3px 7px;border:1px solid #ddd;border-radius:2px;background:#fff;margin:1px 3px}.mec-events-meta-group-tags a:hover{text-decoration:underline;background:#f9f9f9}.mec-local-time-details li{list-style:none}.mec-single-event:not(.mec-single-modern) .mec-local-time-details{background:#f7f7f7;padding:12px 14px 8px;margin-bottom:12px;vertical-align:baseline;position:relative;border:none}.mec-single-event:not(.mec-single-modern) .mec-local-time-details ul{margin:0;padding-left:35px}.mec-single-event:not(.mec-single-modern) .mec-local-time-details h3{border:none;padding-left:15px}.mec-single-event:not(.mec-single-modern) .mec-local-time-details h3:before{display:none}.mec-single-event.mec-single-modern i.mec-sl-speedometer{display:none}.mec-single-event .mec-events-meta-group-booking{padding-bottom:30px}.mec-single-event .mec-events-meta-group-booking ul{list-style:none;margin-left:0;padding-left:0}.mec-single-event .mec-events-meta-group-booking ul li{padding:0;list-style:none;margin-top:40px}.mec-single-event .mec-events-meta-group-booking h4{margin-bottom:20px;font-size:23px;font-weight:700}.mec-single-event .mec-events-meta-group-booking li h4{font-size:19px}.mec-single-event .mec-events-meta-group-booking button,.mec-single-event .mec-events-meta-group-booking input{border-radius:0;margin-bottom:6px}.mec-single-event .mec-events-meta-group-booking button{min-width:170px;margin-top:5px}.mec-single-event .mec-events-meta-group-booking button{margin-left:15px}.mec-single-event .mec-book-form-coupon button{margin-left:0}.mec-single-event .mec-book-form-gateway-checkout button{margin-left:0}.mec-single-event .mec-book-first,.mec-single-event .mec-event-tickets-list{padding-left:15px;padding-right:15px}.mec-single-event label.mec-fill-attendees{margin-left:15px!important}.mec-single-event .mec-events-meta-group-booking .mec-event-ticket-available{display:block;margin-bottom:20px;margin-top:-17px;font-size:11px;color:#8a8a8a}.mec-single-event .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.mec-single-event .mec-events-meta-group-booking form{margin:0}.mec-single-event .mec-events-meta-group-booking h5 span,.mec-single-event .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;display:block;clear:none;padding:5px 1em 3px 0}.mec-single-event .mec-events-meta-group-booking h5 span{display:inline-block}.mec-single-event .mec-events-meta-group-booking h5 span.mec-ticket-variation-name{padding-right:5px;text-transform:capitalize}.mec-single-event .mec-events-meta-group-booking input::-webkit-input-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input:-moz-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:330px;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both}.wbmec-mandatory{padding-left:5px;font-size:14px}.mec-single-event .mec-events-meta-group-booking .mec-red-notification input,.mec-single-event .mec-events-meta-group-booking .mec-red-notification select,.mec-single-event .mec-events-meta-group-booking .mec-red-notification textarea{border:1px solid #ff3c3c}.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=checkbox],.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=radio]{outline:1px solid #ff3c3c}@media only screen and (max-width:479px){.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{width:100%}}.mec-single-event .mec-events-meta-group-booking input[type=email]:focus,.mec-single-event .mec-events-meta-group-booking input[type=number]:focus,.mec-single-event .mec-events-meta-group-booking input[type=password]:focus,.mec-single-event .mec-events-meta-group-booking input[type=tel]:focus,.mec-single-event .mec-events-meta-group-booking input[type=text]:.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking select:focus,.mec-single-event .mec-events-meta-group-booking textarea:focus,focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-single-event .mec-events-meta-group-booking input[type=checkbox],.mec-single-event .mec-events-meta-group-booking input[type=radio]{margin-right:6px;margin-top:5px;min-height:20px;clear:none;margin:0 0 0 2px}.lity-container .mec-events-meta-group-booking input[type=radio]:before,.mec-single-event .mec-events-meta-group-booking input[type=radio]:before{content:"";display:inline-block;background:#fff;border-radius:18px;width:18px;height:18px;margin:-1px 0 0 -3px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32)}.lity-container .mec-events-meta-group-booking input[type=radio]:checked:before,.mec-single-event .mec-events-meta-group-booking input[type=radio]:checked:before{border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff}.lity-container .mec-events-meta-group-booking input[type=radio],.mec-single-event .mec-events-meta-group-booking input[type=radio]{min-height:0;margin:0;margin-right:6px}.mec-single-event .mec-events-meta-group-booking input[type=checkbox]{float:left}.lity-container .mec-events-meta-group-booking .mec_book_first_for_all,.mec-single-event .mec-events-meta-group-booking .mec_book_first_for_all{display:none}.mec-events-meta-group-booking ul.mec-book-price-details{list-style:none;border:1px solid #eee;padding:0;overflow:hidden}.mec-events-meta-group-booking ul.mec-book-price-details li{font-size:15px;color:#a9a9a9;list-style:none;padding:13px 18px;margin:0;float:left;border-right:1px solid #eee}.mec-events-meta-group-booking ul.mec-book-price-details li:last-child{border-right:none}.mec-events-meta-group-booking ul.mec-book-price-details li span.mec-book-price-detail-amount{font-weight:700;font-size:21px;color:#222}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label{height:14px;width:14px;background-color:transparent;border:1px solid #d4d4d4;position:relative;display:inline-block;-moz-transition:border-color ease .2s;-o-transition:border-color ease .2s;-webkit-transition:border-color ease .2s;transition:border-color ease .2s;cursor:pointer;box-shadow:0 2px 16px -2px rgba(0,0,0,.2);vertical-align:middle;margin-right:3px;margin-top:-2px}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label{border-color:#008aff;box-shadow:0 2px 14px -3px #008aff}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:after,.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:before,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:after,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:before{position:absolute;height:0;width:1px;background-color:#008aff;display:inline-block;-moz-transform-origin:left top;-ms-transform-origin:left top;-o-transform-origin:left top;-webkit-transform-origin:left top;transform-origin:left top;content:'';-webkit-transition:opacity ease .5;-moz-transition:opacity ease .5;transition:opacity ease .5}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:before,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:before{top:8px;left:7px;box-shadow:0 0 0 2px #fff;-moz-transform:rotate(-145deg);-ms-transform:rotate(-145deg);-o-transform:rotate(-145deg);-webkit-transform:rotate(-145deg);transform:rotate(-145deg)}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::before,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::before{height:12px;-moz-animation:dothatopcheck .16s ease 0s forwards;-o-animation:dothatopcheck .16s ease 0s forwards;-webkit-animation:dothatopcheck .16s ease 0s forwards;animation:dothatopcheck .16s ease 0s forwards}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:after,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:after{top:6px;left:3px;-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::after,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::after{-moz-animation:dothabottomcheck 80ms ease 0s forwards;-o-animation:dothabottomcheck 80ms ease 0s forwards;-webkit-animation:dothabottomcheck 80ms ease 0s forwards;animation:dothabottomcheck 80ms ease 0s forwards;height:4px}.mec-single-event .mec-events-meta-group-booking button[type=submit]:after,.mec-single-event a.button:after{display:none;font-family:simple-line-icons;content:"\e098";margin-left:4px;-webkit-animation:rotating 1.2s linear infinite;-moz-animation:rotating 1.2s linear infinite;-ms-animation:rotating 1.2s linear infinite;-o-animation:rotating 1.2s linear infinite;animation:rotating 1.2s linear infinite}.mec-single-event .mec-events-meta-group-booking button[type=submit].loading:after,.mec-single-event a.button.loading:after{display:inline-block}.mec-single-event .mec-event-export-module{display:block}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul{display:table;width:100%}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li{display:table-cell}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li:last-child{text-align:right}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a:hover{color:#fff}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul{padding-left:0;margin:15px 5px}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting{padding-left:0;margin:0}.mec-ticket-price{margin-left:10px;font-size:13px;font-weight:300}.mec-book-reg-field-checkbox label,.mec-book-reg-field-radio label{line-height:1.36}.mec-book-reg-field-checkbox input[type=checkbox],.mec-book-reg-field-radio input[type=radio]{float:left;margin-right:5px!important}.mec-ticket-available-spots .mec-event-ticket-description,.mec-ticket-available-spots .mec-event-ticket-price{font-size:11px}.mec-book-ticket-container .mec-reg-mandatory:nth-child(2) label:after,.mec-book-ticket-container .mec-reg-mandatory:nth-child(3) label:after,.mec-book-ticket-container .wbmec-mandatory{content:"";color:red;width:50px;height:50px;font-size:14px;padding-left:5px}@media only screen and (max-width:767px){.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li{width:100%;min-height:40px;margin-bottom:15px;text-align:center;float:none;display:block}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a{width:100%;padding-left:0;padding-right:0;text-align:center;display:block;font-size:12px}}.mec-single-event .mec-events-meta-group{margin-bottom:0}@media only screen and (max-width:767px){.mec-single-event .mec-events-meta-group-booking{margin-bottom:30px}}.mec-single-event .mec-event-meta dt,.mec-single-event .mec-event-meta h3{text-transform:uppercase;font-size:16px;font-weight:700;padding-bottom:5px;display:inline;color:#000;padding-left:10px}.mec-single-event .mec-event-meta h6{text-transform:uppercase;font-size:13px;padding-bottom:5px;display:inline;color:#222;padding-left:0}.mec-single-event .mec-event-meta .mec-events-event-categories a,.mec-single-event .mec-event-meta dd{font-size:14px;color:#8d8d8d}.mec-single-event .mec-event-meta .mec-location dd.author{color:#3c3b3b}.mec-single-event .mec-event-meta dd{margin:0;padding-left:35px}.mec-single-event .mec-event-meta dd.mec-events-event-categories{min-height:35px;line-height:35px}@media only screen and (max-width:480px){.single-mec-events .lity-container{width:100%}.single-mec-events .lity-content .mec-events-meta-group-booking{padding:20px;width:85%;margin:0 auto}}.mec-single-event .mec-event-meta dd.mec-events-event-categories:first-of-type{padding-top:5px}.mec-single-event .mec-event-meta dd.mec-events-event-categories:last-of-type{border-bottom:0}.mec-single-event .mec-event-meta dd a{color:#8d8d8d;transition:all .2s ease}.mec-single-event .mec-event-meta dd a i:before{font-size:16px!important}.mec-single-event .mec-event-meta dd a i{margin-right:8px}.mec-single-event .mec-event-meta dl{margin-bottom:0}.mec-single-event .mec-event-meta .mec-events-event-cost{font-size:18px}.mec-single-event .mec-event-meta .mec-events-address{color:#a9a9a9;margin-bottom:3px}.mec-single-event .mec-event-meta .mec-events-meta-group-venue .author{margin-bottom:0;color:#8d8d8d;font-size:13px}.mec-single-event .mec-events-event-image{margin-bottom:0}.mec-single-event h2.mec-single-event-title{margin-bottom:30px;font-weight:700;font-size:33px}.mec-single-event .mec-booking-button{border-bottom:none;letter-spacing:.5px;line-height:48px;height:76px;transition:all .5s ease;color:#fff;padding:16px;display:block;text-align:center;font-size:16px}.mec-single-event .mec-booking-button:hover{background-color:#101010!important}.mec-single-event .mec-event-tags a{display:inline-block;color:#444;font-size:11px;text-transform:uppercase;letter-spacing:1.5px;font-weight:500;padding:3px 7px;border:1px solid #ddd;border-radius:2px;background:#fff;margin:1px 3px}.mec-single-event .mec-event-tags:before{font-size:24px;color:#303030;margin-right:5px;content:"\f02c";font-family:fontawesome}.mec-single-event .mec-event-tags{padding-top:13px}.mec-single-event .mec-event-sharing{margin:30px 0 10px}.mec-region.mec-events-abbr,.mec-single-event .mec-street-address{font-style:normal;font-size:13px}.mec-events-meta-group.mec-events-meta-group-venue:before,.mec-single-event-date:before,.mec-single-event-time:before{color:#40d9f1}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-event-social h3{text-transform:uppercase;font-size:15px;font-weight:700;padding-bottom:5px;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative}.mec-single-event .mec-social-single:before{padding:13px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:39px}.mec-single-event .mec-event-social .event-sharing{margin-top:30px}.mec-single-event .mec-event-social ul{list-style:none;margin-left:0}.mec-single-event .mec-event-social li.mec-event-social-icon{display:inline-block}.mec-single-event .mec-event-social li.mec-event-social-icon a{display:inline-block;color:#fff;width:40px;height:40px;padding:9px;font-size:16px;margin-right:5px}.mec-single-event .mec-event-social a.facebook{background:#3b5996}.mec-single-event .mec-event-social a.facebook:hover{background:#28385c}.mec-single-event .mec-event-social a.twitter{background:#00acee}.mec-single-event .mec-event-social a.twitter:hover{background:#0087bd}.mec-single-event .mec-event-social a.vimeo{background:#0dadd6}.mec-single-event .mec-event-social a.vimeo:hover{background:#0a85a3}.mec-single-event .mec-event-social a.dribble{background:#d53e68}.mec-single-event .mec-event-social a.dribble:hover{background:#bf4c78}.mec-single-event .mec-event-social a.youtube{background:#cb322c}.mec-single-event .mec-event-social a.youtube:hover{background:#992622}.mec-single-event .mec-event-social a.pinterest{background:#cb2027}.mec-single-event .mec-event-social a.pinterest:hover{background:#99181d}.mec-single-event .mec-event-social a.google{background:#c3391c}.mec-single-event .mec-event-social a.google:hover{background:#99181f}.mec-single-event .mec-event-social a.linkedin{background:#0073b2}.mec-single-event .mec-event-social a.linkedin:hover{background:#005380}.mec-single-event .mec-event-social a.email{background:#ff5d5e}.mec-single-event .mec-event-social a.email:hover{background:#cc4949}.mec-single-event .mec-event-social a.vk{background:#5b88bd}.mec-single-event .mec-event-social a.vk:hover{background:#3d608a}.mec-single-event .mec-event-social a.rss{background:#f29a1d}.mec-single-event .mec-event-social a.rss:hover{background:#cc7400}.mec-single-event .mec-event-social a.instagram{background:#457399}.mec-single-event .mec-event-social a.instagram:hover{background:#2e4d66}.mec-single-event .mec-event-social a.other-social{background:#ff5d5e}.mec-single-event .mec-event-social a.other-social:hover{background:#cc4949}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4,.mec-single-event .mec-frontbox-title{text-transform:uppercase;font-size:15px;font-weight:700;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative;text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4:before,.mec-single-event .mec-frontbox-title:before{padding:1px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-35px;left:50%}.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-month],.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-year]{width:47%!important;margin-right:12px;margin-top:5px;display:inline-block!important}@media(max-width:768px){.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-month],.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-year]{width:100%!important;margin-right:0;display:block!important}}.mec-event-meta i:before{font-size:20px;vertical-align:middle}.mec-event-meta .mec-single-event-additional-organizers i:before,.mec-event-meta .mec-single-event-organizer i:before{font-size:14px;vertical-align:baseline}#mec-wrap .mec-events-day-time-slot .mec-events-content{float:left;width:33%;padding:0 15px}#mec-wrap .mec-events-day-time-slot .mec-events-event-image{padding-left:0}#mec-events-content .mec-events-abbr{color:#8d8d8d;font-size:14px}.mec-single-event .mec-events-content{margin-bottom:30px}.mec-single-event .mec-organizer-url a{word-wrap:break-word}.mec-single-event #headline{margin:0 0 10px}.mec-single-event #headline h2{padding:0}.mec-single-event .mec-events-meta-group.mec-events-meta-group-gmap .mec-events-venue-map{margin-top:0;padding:8px;border:1px solid #e5e5e5;border-radius:7px}#mec-events-gmap-0{height:325px!important}.mec-events-list .mec-events-day-time-slot .mec-events-event-meta{width:33%;float:left;padding:40px;height:auto;margin:0}.mec-events-day-time-slot .mec-events-content.description.entry-summary{font-size:15px;font-weight:300;color:#8d8d8d}.mec-events-day-time-slot .type-mec_events h2{font-size:28px;padding-bottom:20px}.mec-events-day .mec-events-day-time-slot .type-mec_events{margin:0}.mec-events-day .mec-events-day-time-slot h5{background-color:#8d8d8d}.mec-single-event .mec-event-meta .mec-single-event-additional-organizers .mec-events-single-section-title,.mec-single-event .mec-event-meta .mec-single-event-organizer .mec-events-single-section-title,.mec-single-event .mec-events-meta-date h3{padding-left:0;margin:10px;display:inline-block}.mec-single-event .mec-events-meta-date h3{width:100%}.mec-single-event .mec-events-event-image{border:0}.mec-single-event .mec-events-venue-map{padding:0}.mec-event-cost,.mec-event-more-info,.mec-event-website,.mec-events-meta-date,.mec-single-event-additional-organizers,.mec-single-event-category,.mec-single-event-date,.mec-single-event-label,.mec-single-event-location,.mec-single-event-organizer,.mec-single-event-time{background:#f7f7f7;padding:12px 14px 8px;margin-bottom:12px;vertical-align:baseline;position:relative}.mec-single-event .mec-events-meta-date dd,.mec-single-event .mec-single-event-additional-organizers dd,.mec-single-event .mec-single-event-organizer dd{padding-left:0;margin-bottom:10px}.mec-single-event .mec-events-meta-date dd span,.mec-single-event .mec-single-event-additional-organizers dd span,.mec-single-event .mec-single-event-organizer dd span{display:block;padding-left:12px;color:#8d8d8d}.mec-single-event .mec-events-meta-date i,.mec-single-event .mec-single-event-additional-organizers i,.mec-single-event .mec-single-event-organizer i{margin-right:10px;margin-left:12px}.mec-events-meta-group.mec-events-meta-group-venue dl{margin-bottom:0}address.mec-events-address{line-height:19px;font-style:normal;font-size:12px}.mec-single-event .mec-event-content dt{margin-top:5px}.mec-single-event .mec-single-event-additional-organizers .mec-single-event-additional-organizer{margin-bottom:15px;padding-bottom:5px;border-bottom:1px solid #e4e4e4}.mec-single-event .mec-single-event-additional-organizers .mec-single-event-additional-organizer:last-child{margin-bottom:0;padding-bottom:0;border:none}.mec-event-schedule-content{border-left:4px solid #f0f0f0;padding-top:10px;margin-top:30px;margin-left:25px;margin-bottom:20px;color:#8a8a8a}.mec-event-schedule-content dl{padding-left:24px;font-size:12px;position:relative;margin-bottom:35px}.mec-event-schedule-content dl:before{content:'';display:block;position:absolute;left:0;top:4px;width:20px;height:0;border-top:4px solid #f0f0f0}.mec-event-schedule-content dl dt{margin:0 0 10px;line-height:1.16}.mec-event-schedule-content dl dt.mec-schedule-title{font-size:13px;color:#5a5a5a;font-weight:700}.mec-event-schedule-content dl dt.mec-schedule-description{font-weight:300}.mec-event-schedule-content .mec-schedule-speakers{background:#f7f7f7;padding:10px}.mec-wrap .mec-event-schedule-content h6{font-size:13px;color:#5a5a5a;font-weight:700;display:inline-block}.mec-wrap .mec-event-schedule-content a{font-weight:400;color:#5a5a5a;transition:all .1s ease}.single-mec-events .mec-speakers-details ul{padding:0}.mec-single-event .mec-speakers-details ul li{list-style:none;background:#f7f7f7;padding:5px 5px 18px 5px;margin-top:14px}.mec-single-event .mec-speakers-details ul li a{-webkit-transition:.2s all ease;transition:.2s all ease}.mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a img{float:left;border-radius:50%;transition:.2s all ease;border:2px solid transparent;width:68px;height:68px}.mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a:hover img{border-color:#40d9f1}.mec-single-event .mec-speakers-details ul li .mec-speaker-name{display:inline-block;margin-top:6px;font-size:14px;text-transform:capitalize;font-weight:700;padding-left:8px}.mec-single-event .mec-speakers-details ul li .mec-speaker-job-title{display:block;font-size:12px;margin-top:-1px;padding-left:75px}.mec-single-event-location img,.mec-single-event-organizer img{margin-bottom:10px;width:100%}.mec-qrcode-details{text-align:center}.mec-time-comment{font-size:11px}.mec-wrap .mec-attendees-list-details p{font-weight:300;margin:20px 0 0 0;color:#8d8d8d}.mec-wrap .mec-attendees-list-details li{list-style:none;display:block;margin-top:15px}.mec-wrap .mec-attendees-list-details li .mec-attendee-avatar{display:inline-block}.mec-wrap .mec-attendees-list-details li .mec-attendee-profile-link{display:inline-block;vertical-align:top;margin-left:10px}.mec-attendees-list-details ul{margin-bottom:0}.mec-attendees-list-details .mec-attendee-profile-link a{color:#8d8d8d}.mec-attendees-list-details .mec-attendee-profile-link span{display:block;color:#000}.mec-calendar{margin-bottom:20px;border:1px solid #e8e8e8;width:100%;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-calendar .mec-calendar-topsec{display:table;background:#fff}.mec-calendar .mec-calendar-topsec .mec-calendar-events-sec{display:none}.mec-calendar .mec-calendar-side{width:590px;display:table-cell;padding:40px;position:relative;text-align:center;box-shadow:0 1px 5px 6px rgba(0,0,0,.005) inset}.mec-calendar .mec-calendar-events-side{display:table-cell;height:100%;border-left:1px solid #efefef;padding:40px;width:100%}.mec-calendar .mec-calendar-events-side .mec-table-side-day{width:46px;height:46px;margin:0 auto 20px;position:relative;text-align:center;line-height:46px;border:1px solid #40d9f1;border-radius:50%;font-size:12px;font-weight:600;padding:0}.mec-calendar .mec-calendar-events-side .mec-table-side-title{text-align:center;font-size:11px;text-transform:uppercase;letter-spacing:3px;margin-bottom:14px}.mec-calendar .mec-calendar-header{position:relative;width:560px;margin-top:8px;margin-bottom:16px}.mec-calendar .mec-calendar-header h2{text-transform:uppercase;font-size:22px;font-weight:700;color:#333}.mec-calendar .mec-event-footer{width:auto;min-height:60px}.mec-calendar dl{display:table;margin:0;border:none;padding:0;table-layout:fixed}.mec-calendar dt{display:table-cell;transition:all .66s ease;color:#4d4d4d;background:#fff;border-radius:44px;font-size:14px;width:80px;height:80px;line-height:80px;text-align:center}.mec-calendar .mec-calendar-table .mec-no-event{display:none}.mec-calendar .mec-calendar-table-head dt{font-weight:700;text-transform:uppercase;font-size:15px}.mec-calendar .mec-calendar-row dt:hover{background:#f4f4f4}.mec-calendar .mec-table-nullday{color:#cacaca}.mec-calendar.mec-box-calendar .mec-table-nullday:last-child{border-right:1px solid #eaeaea}.mec-calendar .mec-next-month:hover,.mec-calendar .mec-prev-month:hover{background:#f4f4f4}.mec-calendar .mec-selected-day,.mec-calendar .mec-selected-day:hover{background:#40d9f1;color:#fff}.mec-calendar .mec-selected-day a{color:#fff}.mec-calendar .mec-has-event{position:relative}.mec-calendar .mec-calendar-row dt.mec-has-event:hover{background:#40d9f1}.mec-calendar .mec-has-event a{cursor:pointer;display:block;width:100%;height:100%;border-radius:50%;color:#4d4d4d;transition:all .25s ease;text-decoration:none;box-shadow:none}.mec-calendar .mec-calendar-row dt.mec-has-event.mec-selected-day a,.mec-calendar .mec-calendar-row dt.mec-has-event:hover a{color:#fff}.mec-calendar .mec-has-event:after{background-color:#40d9f1;border-radius:50%;display:block;content:'';width:8px;height:8px;bottom:14px;left:50%;margin:-4px 0 0 -4px;position:absolute;transition:all .25s ease}.mec-calendar .mec-calendar-row dt.mec-has-event:hover:after{background-color:#fff}.mec-calendar .mec-has-event.mec-selected-day:after{display:none}.mec-calendar .mec-event-article{text-align:left;margin-bottom:0;padding-bottom:25px;padding-top:26px;border-top:1px solid #efefef;transition:all .33s ease}.mec-calendar .mec-event-article:hover{background-color:#fafafa}.mec-calendar .mec-event-article .mec-event-time{font-size:11px;line-height:1.1;margin:0}.mec-calendar .mec-event-article .mec-event-title{font-size:13px;padding:0;margin:10px 0 8px;font-weight:700;text-transform:uppercase}.mec-calendar .mec-event-article .mec-event-title a{text-decoration:none;color:#494949;transition:color .3s ease}.mec-calendar .mec-event-article .mec-event-title a:hover{color:#40d9f1}.mec-calendar .mec-event-article .mec-event-image,.mec-calendar .mec-event-list-classic .mec-event-image img{width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-image{float:left;margin-right:20px;width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-detail{font-size:13px;line-height:1.3;font-family:Roboto,sans-serif;color:#9a9a9a;margin-bottom:0}.mec-calendar .mec-calendar-side .mec-next-month,.mec-calendar .mec-calendar-side .mec-previous-month{cursor:pointer;position:absolute;top:0;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;color:#a9a9a9;font-size:12px;letter-spacing:1px;text-transform:uppercase;padding-left:10px;padding-right:10px;border:1px solid #efefef;border-top:none;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease}.mec-calendar .mec-calendar-side .mec-next-month i,.mec-calendar .mec-calendar-side .mec-previous-month i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-calendar .mec-calendar-side .mec-next-month:hover,.mec-calendar .mec-calendar-side .mec-previous-month:hover{background-color:#f9f9f9;color:#40d9f1}.mec-calendar .mec-calendar-side .mec-previous-month{left:0;border-bottom-right-radius:6px;border-left:none}.mec-calendar .mec-calendar-side .mec-next-month{right:0;border-bottom-left-radius:6px;border-right:none}@media only screen and (min-width:961px){.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-side{width:370px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-header{position:relative;width:350px;margin-top:30px;margin-bottom:20px;padding-top:20px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) dt{width:50px;height:50px;line-height:50px}.mec-wrap.mec-sm959 .mec-calendar.mec-event-calendar-classic dl dt{height:110px}}@media only screen and (max-width:1200px){.mec-calendar .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-calendar .mec-calendar-side{width:370px}.mec-calendar .mec-calendar-header{position:relative;width:350px;margin-top:30px}.mec-calendar dt{width:50px;height:50px;line-height:50px}}@media only screen and (max-width:767px){.mec-calendar .mec-calendar-header h2{font-size:18px}.mec-calendar .mec-calendar-topsec{width:100%}.mec-calendar .mec-calendar-side{width:100%;display:block;padding:30px}.mec-calendar .mec-calendar-header{width:auto}.mec-calendar .mec-calendar-events-side{width:100%;display:block;height:100%;border-left:none;border-top:1px solid #efefef;padding:20px}.mec-calendar dl{width:100%}.mec-calendar dt{width:14%;height:60px;line-height:60px;border-radius:50px}}@media only screen and (max-width:479px){.mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-calendar .mec-calendar-header h2{font-size:16px;margin-top:33px}.mec-calendar dt{height:38px;line-height:38px}.mec-calendar .mec-event-list-classic .mec-event-detail,.mec-calendar .mec-event-list-classic .mec-event-title{font-size:12px}.mec-calendar .mec-event-list-classic .mec-event-time{font-size:10px}}.mec-box-calendar.mec-calendar .mec-has-event a,.mec-box-calendar.mec-calendar dt{border-radius:0}.mec-box-calendar.mec-calendar .mec-calendar-header{margin-top:2px;margin-bottom:30px}.mec-box-calendar.mec-calendar dt{border-bottom:1px solid #eaeaea;border-left:1px solid #eaeaea}.mec-box-calendar.mec-calendar dl dt:last-child{border-right:1px solid #eaeaea}.mec-box-calendar.mec-calendar .mec-calendar-table-head dt{border-top:1px solid #eaeaea;background-color:#f8f8f8}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{background-color:#f4f4f4}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{border-radius:2px;top:40px;border:1px solid #eee;height:30px;line-height:30px;z-index:1}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:60px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:60px}.mec-box-calendar.mec-calendar .mec-calendar-side{box-shadow:none}.mec-box-calendar.mec-calendar .mec-calendar-events-side{border:none}.mec-box-calendar.mec-calendar .mec-calendar-events-side .mec-table-side-day{border-radius:2px}.mec-box-calendar.mec-calendar h4.mec-month-label{position:relative;width:560px;margin-top:2px;margin-bottom:30px;text-transform:uppercase;font-size:22px;font-weight:700;color:#333}.mec-widget .mec-box-calendar.mec-calendar h4.mec-month-label{width:100%;margin-top:8px;font-size:13px}@media only screen and (max-width:1200px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:42px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:42px}.mec-calendar .mec-calendar-header h2{font-size:17px;margin-top:7px}}@media only screen and (max-width:767px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{top:28px;font-size:10px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:30px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:30px}.mec-calendar .mec-calendar-header h2{font-size:15px}}@media only screen and (max-width:479px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{top:16px;font-size:0;padding:4px 0;text-align:center;min-width:33px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:10px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:10px}.mec-box-calendar.mec-calendar .mec-calendar-header h2{font-size:12px;margin-top:15px}.mec-box-calendar.mec-calendar .mec-event-image{margin-right:12px}}.mec-calendar.mec-event-calendar-classic,.mec-calendar.mec-event-calendar-classic .mec-calendar-side{border:none;padding:0;width:100%;height:100%;box-shadow:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-side{display:block}.mec-calendar.mec-event-calendar-classic .mec-calendar-header,.mec-calendar.mec-event-calendar-classic dl{width:100%}.mec-calendar.mec-event-calendar-classic dl dt{width:15%;height:136px;line-height:1.2;text-align:left;padding:5px 7px;position:relative}.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{height:30px!important}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{top:0}.mec-calendar.mec-event-calendar-classic .mec-has-event:after{bottom:auto;top:24px;left:7px;margin:0}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{left:0}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month{right:0}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{text-align:left;background:#fafafa;border:1px solid #eaeaea;border-top:none;padding:10px 20px}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{display:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-event-article:hover{background-color:#fcfcfc}.mec-calendar.mec-event-calendar-classic .mec-selected-day,.mec-calendar.mec-event-calendar-classic dt.mec-selected-day:hover{color:#40d9f1;font-weight:700;background:#fafafa;border-bottom:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-day,.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{display:inline-block;margin:0;margin-bottom:15px;font-weight:700}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-day{margin-left:4px}.mec-calendar.mec-event-calendar-classic .mec-calendar-row dt.mec-has-event a{color:#4d4d4d}.mec-calendar.mec-event-calendar-classic .mec-calendar-row dt.mec-has-event:not(.mec-selected-day):hover a{color:#fff}@media only screen and (max-width:1200px){.mec-calendar.mec-event-calendar-classic dl dt{height:100px}}@media only screen and (max-width:767px){.mec-calendar.mec-event-calendar-classic dl dt{height:40px}}@media only screen and (max-width:479px){.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{padding:10px}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-header h2{font-size:13px;margin-top:8px}}.mec-calendar .mec-event-article.mec-single-event-novel{padding:4px 8px;min-height:25px;margin:0 -4px;border-radius:0}.mec-calendar .mec-event-article.mec-single-event-novel h4{margin:0;font-size:10px;line-height:18px}.mec-calendar.mec-event-container-novel dl dt{padding:3px}.mec-calendar.mec-event-calendar-classic .mec-calendar-novel-selected-day{display:inline-block;padding:4px;margin-left:1px}.mec-calendar.mec-event-calendar-classic .mec-selected-day .mec-calendar-novel-selected-day{color:#fff}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-selected-day,.mec-calendar.mec-event-calendar-classic.mec-event-container-novel dt.mec-selected-day:hover{border-bottom:1px solid #eaeaea}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-calendar-side .mec-calendar-table{min-height:auto}.mec-single-event-novel.light h4{color:#000!important}.mec-single-event-novel.dark h4{color:#fff!important}@media only screen and (max-width:768px){.mec-calendar .mec-event-article.mec-single-event-novel{padding:0;min-height:5px}.mec-calendar .mec-event-article.mec-single-event-novel h4{display:block;font-size:9px}}.mec-event-container-simple .event-single-content-simple{display:none}.mec-event-calendar-classic.mec-event-container-simple .mec-calendar-side .mec-calendar-table{min-height:unset}.mec-event-container-simple .mec-monthly-tooltip h4{font-size:13px;font-weight:500;margin:0;color:#444}.mec-event-container-simple .mec-monthly-tooltip h4:hover{text-decoration:underline;color:#111}.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple{border-bottom:1px dashed #e3e3e3;padding:10px 2px;display:block}.mec-calendar.mec-event-container-simple dl dt.mec-calendar-day{font-size:30px;color:#000}.mec-calendar.mec-event-container-simple .mec-calendar-row dt:hover{background:unset}.mec-calendar.mec-event-container-simple .mec-calendar-row dt,.mec-calendar.mec-event-container-simple .mec-calendar-row dt:last-child,.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt,.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt:last-child{border-width:2px}.mec-calendar.mec-event-container-simple dl dt.mec-selected-day,.mec-calendar.mec-event-container-simple dl dt.mec-selected-day:hover{border-bottom:2px solid #40d9f1;background:unset}.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt{line-height:36px}@media (max-width:768px){.mec-calendar.mec-event-container-simple{overflow-x:scroll}.mec-calendar.mec-event-container-simple .mec-calendar-side{min-width:700px}.mec-event-container-simple .mec-monthly-tooltip h4{font-size:12px}}.mec-wrap.colorskin-custom .mec-calendar.mec-event-container-simple .mec-selected-day:hover{background:#f4f4f4}.mec-event-container-simple .mec-calendar-day .mec-monthly-tooltip.event-single-link-simple:last-of-type{border:none}.mec-tooltip-event-title{font-size:16px;font-weight:700;color:#000;margin-bottom:2px}.mec-tooltip-event-time{font-size:12px;color:#888;margin-bottom:8px;margin-top:5px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-content{padding:17px}.mec-tooltip-event-content{clear:both}.mec-tooltip-event-featured{float:left;margin-right:13px;margin-bottom:1px}.mec-tooltip-event-featured img{max-width:120px}.mec-tooltip-event-desc{font-size:14px;color:#444;line-height:18px}.mec-tooltip-event-desc p{font-size:13px;line-height:1.4;margin-bottom:10px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-box{border-radius:3px!important;border:1px solid #e2e3e4!important;background:#fff!important;box-shadow:0 -1px 30px -2px rgba(0,0,0,.15)!important}.tooltipster-sidetip .tooltipster-arrow{overflow:visible!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-border{border-width:12px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-right .tooltipster-arrow-border{border-right-color:#e2e3e4!important}.tooltipster-sidetip .tooltipster-arrow-border{left:-12px!important;z-index:9999999999!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-background{display:block!important}.tooltipster-sidetip .tooltipster-arrow-background{border-width:11px!important;z-index:99999999999!important}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background{left:-9px!important;top:1px!important;border-right-color:#fff!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background{border-top-color:#fff!important;left:0!important;top:-1px!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border{left:-1px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-top .tooltipster-arrow-border{border-top-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{left:-1px!important;top:-11px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{border-bottom-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background{top:-9px!important;border-bottom-color:#fff!important}.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background{border-left-color:#fff!important;left:-2px!important;top:0!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-left .tooltipster-arrow-border{border-left-color:#e2e3e4!important;left:-1px!important;top:-1px!important}@media (max-width:780px){.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4{word-break:break-all;font-size:13px}}@media (max-width:320px){.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4{font-size:10px}}.mec-calendar.mec-calendar-daily .mec-calendar-day-events .mec-event-article{padding-left:15px;padding-right:15px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month{text-align:center;background-color:#fff;border-bottom:2px solid #f4f4f4;position:relative}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{color:#444;font-size:18px;line-height:1.2;padding:15px 0 11px;margin:0;font-weight:700;letter-spacing:1px;text-transform:uppercase;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-top{text-align:center;padding:10px 0;position:relative;background-color:#fafafa}.mec-calendar.mec-calendar-daily .mec-next-month,.mec-calendar.mec-calendar-daily .mec-previous-month{position:absolute;top:50%;left:50%;margin-top:-25px;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;border:1px solid #e2e2e2;border-radius:50px;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month i,.mec-calendar.mec-calendar-daily .mec-previous-month i{font-size:14px;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month:hover,.mec-calendar.mec-calendar-daily .mec-previous-month:hover{border-color:#d0d0d0;color:#444;box-shadow:0 2px 5px 0 rgba(0,0,0,.075)}.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-150px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:100px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month{min-height:28px;height:28px;line-height:28px;width:28px;margin-top:-14px;border-radius:3px}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2,.mec-calendar.mec-calendar-daily .mec-calendar-d-top h3{margin-top:9px;color:#b9b9b9;font-family:Roboto,sans-serif;font-size:30px;font-weight:100;text-transform:uppercase;margin-bottom:12px;line-height:1}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2{font-size:81px;color:#444;margin-bottom:10px;line-height:1.1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table{overflow:hidden;background:#fff;min-height:60px;border-top:1px solid #e6e6e6;border-bottom:2px solid #f3f3f3;padding:0 50px;position:relative}@media only screen and (min-width:479px){.mec-calendar.mec-calendar-daily .mec-calendar-d-table{padding:0 55px}}.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl{width:1310px;display:block}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{display:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl.mec-weekly-view-week-active{display:block}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt{display:block;background:#fff;width:42px;height:60px;line-height:60px;text-align:center;float:left;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6;border-radius:0}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day:hover,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt:hover{background:#fafafa;box-shadow:0 2px 5px 0 rgba(0,0,0,.065) inset;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day{cursor:default;background:#fff;color:#c1c1c1;line-height:59px;text-align:center;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-has-event{cursor:pointer;font-weight:700;color:#4a4a4a}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-daily-view-day-active,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt.mec-table-d-current{font-size:18px;font-weight:700;background:#fafafa;color:#40d9f1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-prev{float:none;font-size:14px;width:55px;position:absolute;top:0;left:0;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next{left:auto;right:0;border-left:1px solid #e6e6e6;border-right:none}.mec-calendar.mec-calendar-daily .mec-today-container .mec-today-count{font-size:12px;color:#888;text-align:center}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}}.widget .mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}.widget .mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.widget .mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-util-hidden{display:none}.mec-daily-view-date-events,.mec-weekly-view-date-events{list-style:none;margin:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table{padding:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{width:calc(100% - 1px)}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt{width:14.286%;height:70px;line-height:normal;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:hover{background:#fff;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:last-child{border-right:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:12px;font-weight:700;text-transform:uppercase;display:block;margin:15px 0 6px}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-prev{display:none}ul.mec-weekly-view-dates-events,ul.mec-weekly-view-dates-events li{padding:0;margin:0;line-height:initial}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:64px;height:64px;margin-right:10px;font-size:11px;text-transform:uppercase;float:left;text-align:center;padding-top:2px}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:40px;line-height:30px;font-weight:700;display:block;margin-bottom:6px;letter-spacing:1px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-previous-month{margin-left:0;left:12px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-next-month{margin-left:0;left:auto;right:12px}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}}.widget .mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}.mec-week-events-container .mec-weekly-view-dates-events li.mec-no-event-found{list-style:none!important}li.mec-no-event-found .mec-event-title{text-align:center}.mec-widget .mec-calendar{max-width:100%}.mec-widget .mec-calendar dl dt,.mec-wrap.mec-sm959.mec-widget .mec-calendar.mec-event-calendar-classic dl dt{height:40px}.mec-widget .mec-calendar .mec-calendar-events-sec{padding:10px}.mec-widget .mec-calendar .mec-calendar-header h2{font-size:13px;margin-top:8px}.mec-widget .mec-calendar .mec-event-list-classic .mec-event-image{margin-right:12px}.mec-widget .mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-widget .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{font-size:14px}.mec-widget .mec-calendar .mec-event-article .mec-event-image{margin-right:11px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-header{margin-bottom:20px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{font-size:0;padding:4px 0;text-align:center;min-width:33px}.mec-widget .mec-event-calendar-classic .mec-calendar-side .mec-calendar-table{min-height:200px}.mec-widget .mec-event-list-classic{margin-bottom:8px;padding:8px 0}.mec-widget .mec-event-list-classic .mec-event-article{margin-bottom:0;padding:10px 0;position:relative;min-height:86px;padding-left:80px}.mec-widget .mec-event-list-classic .mec-event-date{font-size:10px;line-height:14px;text-transform:uppercase}.mec-widget .mec-event-list-classic .mec-event-title{font-size:13px}.mec-widget .mec-event-list-classic .mec-event-detail{font-size:11px}.mec-widget .mec-event-list-classic .mec-event-image{width:68px;position:absolute;left:0}.mec-event-list-classic .mec-event-image img{width:100%}.mec-widget .mec-event-list-classic .mec-event-detail{overflow:visible}.event-color{width:14px;display:inline-block;height:14px;margin-left:5px;border-radius:50%}.mec-map-lightbox-wp{width:580px;padding:15px 15px 0;background-color:#fff}.mec-map-view-event-detail.mec-event-detail{width:580px;background-color:#e9e9e9;padding:8px 15px}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-article{padding:0 0 15px;margin:0}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-image{width:70px;margin-right:15px}.mec-marker-infowindow-wp{padding:10px}.mec-marker-infowindow-wp .mec-marker-infowindow-count{width:60px;height:60px;display:block;text-align:center;line-height:60px;border:1px solid #40d9f1;border-radius:50%;font-size:32px;color:#40d9f1;float:left;margin-right:11px}.mec-marker-infowindow-wp .mec-marker-infowindow-content{overflow:hidden;padding-top:6px}.mec-marker-infowindow-wp .mec-marker-infowindow-content span{display:block;color:#222}.mec-marker-infowindow-wp .mec-marker-infowindow-content span:first-child{font-size:15px;font-weight:700}.mec-marker-wrap{display:inline-block;width:35px;height:35px;margin:15px 0 0 4px;border-radius:50% 50% 50% 0;background:#00cae9;animation-name:mec-map-bounce;animation-fill-mode:both;animation-duration:1s;border:3px solid #fff;cursor:pointer}.mec-marker-wrap .mec-marker{margin-top:5px;display:block;-webkit-transform:rotate(45deg);transform:rotate(45deg);text-align:center;color:#fff;font-size:17px}.mec-marker-wrap .mec-marker-pulse-wrap{-webkit-transform:rotate(45deg);transform:rotate(45deg);display:inline-block;margin-left:-11px;margin-top:0}.mec-marker-wrap .mec-marker-pulse{display:inline-block;background:#c5c5c5;border-radius:50%;height:14px;width:14px;-webkit-transform:rotateX(55deg);transform:rotateX(55deg);z-index:-2}.mec-marker-wrap .mec-marker-pulse:after{content:"";border-radius:50%;height:40px;width:40px;position:absolute;margin:-13px 0 0 -13px;animation:pulsate 1s ease-out;animation-iteration-count:infinite;opacity:0;box-shadow:0 0 1px 2px #00cae9;animation-delay:1.1s}@keyframes pulsate{0%{transform:scale(.1,.1);opacity:0}50%{opacity:1}100%{transform:scale(1.2,1.2);opacity:0}}@keyframes mec-map-bounce{0%{opacity:0;transform:translateY(-2000px) rotate(-45deg)}60%{opacity:1;transform:translateY(30px) rotate(-45deg)}80%{transform:translateY(-10px) rotate(-45deg)}100%{transform:translateY(0) rotate(-45deg)}}.mec-skin-grid-container .mec-skin-map-container,.mec-skin-list-container .mec-skin-map-container{margin-bottom:20px}.mec-single-event{margin-top:10px}.mec-single-event .mec-events-meta-group-countdown{color:#c9c9c9;text-align:center;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-events-meta-group-countdown .countdown-w{text-align:center;font-size:36px;margin:0 auto;padding:40px 0 0;position:relative;display:table;table-layout:fixed}.mec-events-meta-group-countdown .countdown-w .icon-w{font-size:24px}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:15px;font-weight:300;letter-spacing:1px;text-transform:uppercase;position:relative}.mec-events-meta-group-countdown .countdown-w .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px;width:190px;font-size:72px;transition:all .3s ease-in-out;line-height:1.2}.mec-events-meta-group-countdown .countdown-w .block-w.done-w{border:0 none}.mec-events-meta-group-countdown .countdown-w span{padding:24px 0 20px}.mec-events-meta-group-countdown .countdown-w .div-d{display:none}.mec-events-meta-group-countdown .countdown-w .countdown-message{display:none}.mec-events-meta-group-countdown .countdown-w .block-w i{display:none}#countdown{list-style:none;margin-bottom:0;margin-top:0;margin-left:0;padding-left:0}.mec-events-meta-group-countdown .mec-end-counts h3{display:inherit;text-align:center;font-size:16px;right:50%}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:23px}@media (min-width:481px) and (max-width:768px){.mec-events-meta-group-countdown .countdown-w{padding:0}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:12px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:34px}}@media (min-width:320px) and (max-width:480px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:10px}.mec-events-meta-group-countdown .countdown-w span{font-size:28px}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:16px}}@media (max-width:320px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:9px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:22px}}.info-msg,.mec-error,.mec-success,.warning-msg{margin:10px 0;padding:10px;border-radius:3px 3px 3px 3px;font-size:13px}.info-msg{color:#059;background-color:#bef}.mec-success{color:#0dbf52;background-color:#cef7ce}.warning-msg{color:#9f6000;background-color:#feefb3}.mec-error{color:#d8000c;background-color:#ffbaba}.mec-fes-form,.mec-fes-list{background:#f8feff;padding:30px 3%;color:#798f96;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important}.mec-fes-list .mec-fes-list-top-actions,.mec-fes-list ul{margin:0 auto 15px;max-width:960px;list-style:none}.mec-fes-form-cntt .dashicons-editor-help{display:none}.mec-fes-list ul li *{text-decoration:none!important}.mec-fes-list ul li{padding:20px 15px;border-radius:3px;margin-bottom:15px;border:1px solid #cfeff5;box-shadow:0 2px 6px -4px #cfeff5;background:#fff;line-height:normal}.mec-fes-list ul li a{box-shadow:none;color:#181818}.mec-fes-list ul li a:hover{color:#40d9f1}.mec-fes-list ul li .mec-event-title{font-size:17px;font-weight:600;width:calc(100% - 250px);display:inline-block}@media (max-width:600px){.mec-fes-list ul li .mec-event-title{font-size:13px}}.mec-fes-list .mec-event-status{color:#fff!important;border-color:transparent!important}.mec-fes-form .mec-book-confirmed,.mec-fes-list .mec-book-confirmed{background:#50d477!important}.mec-fes-form .mec-book-pending,.mec-fes-list .mec-book-pending{background:#fcbe69!important}.mec-fes-form .mec-book-rejected,.mec-fes-list .mec-book-rejected{background:#fe686a!important}.mec-fes-form .mec-book-other,.mec-fes-list .mec-book-other{background:#40d9f1!important}.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view{font-size:11px;padding:0;border:0;background:#f7f8f9;float:right;margin-left:5px;border-radius:2px;transition:all .2s ease}.mec-fes-list ul li .mec-fes-event-export a,.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view a{padding:4px 8px;display:inline-block;border:1px solid #e7e8e9;border-radius:2px;color:#789;position:relative}@media (max-width:600px){.mec-fes-list ul li .mec-fes-event-export a,.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view a{font-size:10px}}.mec-fes-list ul li .mec-fes-event-remove:hover{cursor:pointer;background:#f96f8a;border-color:#f96f8a;color:#fff}.mec-fes-list ul li .mec-fes-event-export a:hover,.mec-fes-list ul li .mec-fes-event-view a:hover{background:#40d9f1;color:#fff;border-color:#40d9f1}.mec-fes-form-top-actions a,.mec-fes-list-top-actions a{position:relative;border:none;border-radius:3px;color:#fff!important;display:inline-block;font-size:13px;line-height:1;text-transform:none;font-weight:400;text-decoration:none;cursor:pointer;margin-bottom:20px!important;margin-right:10px;line-height:1;letter-spacing:0;padding:15px 22px;background:#39c36e;box-shadow:0 1px 7px -3px #39c36e!important;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;text-decoration:unset}.mec-fes-form-top-actions a:hover,.mec-fes-list-top-actions a:hover{background:#222;color:#fff}.mec-fes-list-top-actions a{font-weight:600;text-transform:capitalize}.mec-fes-form-top-actions a:before{content:"";border:solid #fff;border-width:0 2px 2px 0;display:inline-block;padding:6px;margin-right:5px;vertical-align:sub;transform:rotate(135deg);-webkit-transform:rotate(135deg)}.mec-fes-form .mec-form-row,.mec-fes-list .mec-form-row{margin-bottom:10px;clear:both}.mec-fes-form label{font-size:13px;display:block;color:#798f96;font-weight:400;padding:0 0 4px 2px}.mec-fes-form input+label{padding-top:8px;padding-left:3px;margin:0;display:inline-block;vertical-align:top}.mec-fes-form .post-status{float:right!important;margin:0 5px;color:#fff;padding:0 10px;border-radius:12px;font-style:italic;font-size:18px}.mec-fes-form input[type=email],.mec-fes-form input[type=number],.mec-fes-form input[type=password],.mec-fes-form input[type=tel],.mec-fes-form input[type=text],.mec-fes-form select,.mec-fes-form textarea{min-width:inherit;width:auto;display:inline;min-height:30px;font-size:13px;padding:10px;margin-bottom:20px;clear:both;background:#fff;border:1px solid #cfeff5;box-shadow:0 2px 5px rgba(207,239,245,.38) inset;border-radius:3px;height:40px;max-width:280px;color:#798f96;font-family:inherit}.mec-fes-form input{background:#fff!important;border-radius:3px!important;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important}.mec-fes-form textarea{height:80px}.mec-fes-form input::-webkit-input-placeholder{color:#798f96}.mec-fes-form input::-moz-placeholder{color:#798f96}.mec-fes-form input:-ms-input-placeholder{color:#798f96}.mec-fes-form input:-moz-placeholder{color:#798f96}#mec_more_info_target{width:100%}@media only screen and (min-width:961px){.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form textarea{width:100%;display:inline-block}}@media only screen and (max-width:768px){.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form textarea{width:100%}}.mec-fes-form input[type=text]#mec_fes_title{padding:5px 10px;min-height:32px;height:50px;background:#fff!important;max-width:100%;font-size:19px;font-weight:400}.mec-fes-form input[type=checkbox],.mec-fes-form input[type=radio]{display:inline!important;float:left;margin:5px 5px 0 0}.mec-fes-form input[type=email]:focus,.mec-fes-form input[type=number]:focus,.mec-fes-form input[type=password]:focus,.mec-fes-form input[type=tel]:focus,.mec-fes-form input[type=text]:focus,.mec-fes-form select:focus,.mec-fes-form textarea:focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-form-row .mec-color{cursor:pointer}.mec-form-row.mec-available-color-row span{margin:10px;width:14px;height:14px;display:inline-block;margin-right:6px;border-radius:20px 20px 20px 20px;vertical-align:middle}.mec-form-row.mec-available-color-row span:first-of-type{margin-left:0}.mec-fes-form.mec-fes-form .mec-tooltip{display:inline}.mec-fes-form-cntt .dashicons-editor-help{display:block}.mec-fes-form .mec-tooltip:hover:after,.mec-fes-form .mec-tooltip:hover:before{display:none}.mec-fes-form.mec-fes-form .mec-tooltip{display:inline-flex;bottom:7px}.mec-fes-form .mec-tooltip .box{min-width:300px;max-width:600px;display:inline-block;left:26px;top:50%;transform:translateY(-50%);padding:0;margin-top:8px;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.3;position:absolute;z-index:9999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s}#webnus-dashboard .mec-fes-form .mec-tooltip .box p,.mec-fes-form .mec-tooltip .box p{color:#fff;font-size:14px;line-height:1.3;margin:0}.mec-fes-form .mec-tooltip:hover .box{visibility:visible;opacity:1}.mec-fes-form .mec-tooltip:hover .box{padding:20px;border-radius:8px}.mec-fes-form .mec-tooltip .box h5{color:#fff;font-size:17px;font-weight:600;margin:-30px -20px;padding:20px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #32363a;border-radius:6px 6px 0 0;z-index:9999}#webnus-dashboard .mec-fes-form .mec-tooltip .box p a,.mec-fes-form .mec-tooltip .box p a{color:#40d9f1;margin-top:10px;margin-left:0;font-weight:400;position:relative;text-decoration:none;display:block;width:max-content}.mec-fes-form .mec-tooltip .box a:hover{color:#f90}.mec-fes-form .mec-tooltip .box:after{display:block;position:absolute!important;top:100%!important;right:50%!important;margin-top:-6px!important;margin-right:-6px!important;width:12px!important;height:24px!important;overflow:hidden!important;transform:rotate(-90deg)!important}.mec-fes-form .mec-tooltip .box:before{display:block;content:''!important;position:absolute!important;width:12px;height:12px;left:-10px!important;top:50%!important;transform:translate(50%,-50%) rotate(-45deg)!important;background-color:#535a61!important;box-shadow:0 8px 9px -4px #535a61!important;z-index:0!important}.mec-fes-form .mec-tooltip .box.top{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-fes-form .mec-tooltip .box.top:after{top:50%!important;right:100%!important}.mec-fes-form .mec-tooltip .box.top:before{left:50%!important;top:100%!important}.mec-fes-form .mec-tooltip .box.bottom{left:50%;top:auto;bottom:0;transform:translate(-50%,100%);margin-bottom:-20px;margin-left:-10px}.mec-fes-form .mec-tooltip .box.bottom:after{top:0!important;right:50%!important;background-color:#3a3f44!important}.mec-fes-form .mec-tooltip .box.bottom:before{left:50%!important;top:-7px!important;transform:translateX(-50%);background-color:#3a3f44!important}.mec-fes-form .mec-tooltip .box.left{left:auto;right:26px;top:50%;transform:translateY(-50%)}.mec-fes-form .mec-tooltip .box.left:before{right:0!important;left:auto!important;top:50%!important}.mec-fes-form .mec-tooltip{display:inline-block;position:relative;margin-right:10px;cursor:help;bottom:5px;left:3px}.mec-fes-form .mec-tooltip:last-child{margin-right:0}.mec-fes-form .mec-tooltip:hover:after{background:#313130;border-radius:5px;bottom:24px;color:#fff;content:attr(title);left:-75px;padding:10px;position:absolute;z-index:98;width:240px}.mec-fes-form .mec-tooltip:hover:before{border:solid;border-color:#313130 transparent;border-width:6px 6px 0;bottom:18px;content:"";left:30%;position:absolute;z-index:99}.mec-fes-form .mec-tooltip .dashicons-before:before{font-size:24px;color:#008aff;line-height:37px}.mec-fes-form .mec-tooltip a:focus{box-shadow:none}.mec-form-row .bootstrap_unvalid{display:block;border:2px solid red;position:relative;display:inline-block;border-bottom:1px dotted #000}.mec-fes-form .mec-tooltiptext{visibility:hidden;width:120px;background-color:red;color:#fff;text-align:center;border-radius:6px;padding:5px 0;position:absolute;z-index:1}.mec-fes-form .mec-tooltip .content p a{display:none}@media only screen and (min-width:961px){.mec-fes-form .mec-fes-form-cntt,.mec-fes-form .mec-fes-form-sdbr{width:68%;float:left;padding-right:20px}.mec-fes-form .mec-fes-form-sdbr{width:32%;padding-right:0;padding-left:20px}.mec-fes-submit-mobile{display:none}}.mec-fes-form .mec-meta-box-fields{padding:0 20px 20px;border:1px solid #cfeff5;margin-bottom:20px!important;box-shadow:0 2px 6px -3px #cfeff5;border-radius:3px;background:#fff}.mec-fes-form .mec-meta-box-fields h4{margin:0 -20px;font-size:15px;font-weight:600;letter-spacing:0;color:#40d9f1;text-transform:capitalize;padding:15px 20px;background:#ecfcff;margin-bottom:20px;border-radius:3px}.mec-fes-sub-button{width:100%}.mec-available-color-row span.color-selected{border:3px solid #fff;box-sizing:content-box;box-shadow:0 0 0 2px #40d9f1,0 2px 8px -1px #40d9f1}.mec-fes-loading:before{content:url(../img/ajax-loader.gif);background:0 0;border-style:none;display:block;margin-left:47%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:190px;margin-right:1.4%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-1,.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-2{width:120px;margin-right:10px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].widefat{width:100%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row{border-bottom:none;padding-bottom:10px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-6{width:39%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row button{margin-right:0;padding:9px 26px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row button.mec-add-hourly-schedule-button{font-size:12px;height:30px;line-height:25px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row .description{display:inline-block;border-left:1px dashed #bfcacc;margin-left:12px;line-height:28px;padding-left:12px;margin-top:5px;font-style:italic}@media only screen and (max-width:768px){.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:100%!important}}#mec_fes_form_message{max-width:838px;margin:10px auto;display:block!important;text-align:center}.mec-wrap .mec-totalcal-box{position:relative;border:1px solid #efefef;padding:20px 5px;margin:0 0 20px;background:#fafafa;overflow:hidden;box-shadow:0 3px 2px 0 rgba(0,0,0,.012);min-height:78px}.mec-wrap .mec-totalcal-box i{float:left;margin:0;width:36px;height:36px;background:#fff;border:1px solid #efefef;text-align:center;padding:10px 0;font-size:15px;color:#888}.mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-wrap .mec-totalcal-box input,.mec-wrap .mec-totalcal-box select{width:auto;min-height:36px;height:36px;line-height:36px;background:#fff;font-size:13px;color:#777;border:1px solid #efefef;margin:0 0 0 -1px;float:left;padding:0 5px;font-family:Roboto,Helvetica,Arial,sans-serif}.mec-wrap .mec-totalcal-box input[type=submit]{cursor:pointer;padding:0 16px;text-transform:uppercase;font-size:11px;font-family:Montserrat,Helvetica,Arial,sans-serif;transition:all .21s ease}.mec-wrap .mec-totalcal-box input[type=submit]:hover{background:#222;color:#fff}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{display:inline-block;text-transform:uppercase;font-family:Montserrat,Helvetica,Arial,sans-serif;font-size:11px;padding:0 12px;cursor:pointer}.mec-wrap .mec-totalcal-box .mec-totalcal-view span:hover{color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected{color:#fff;background:#40d9f1;border-color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view{text-align:right;float:right}.mec-wrap .mec-totalcal-box input[type=search]{width:calc(100% - 36px)}@media only screen and (min-width:961px) and (max-width:1200px){.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-3,.mec-wrap .mec-totalcal-box .col-md-4,.mec-wrap .mec-totalcal-box .col-md-5{width:100%;float:none;padding-bottom:20px;clear:both;overflow:hidden}}@media only screen and (min-width:768px) and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-4{position:relative;right:10px;top:20px;width:initial}.mec-wrap .mec-totalcal-box .col-md-5{padding-bottom:0}.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:767px){.mec-wrap .mec-totalcal-box .mec-totalcal-view{float:none}.mec-wrap .mec-totalcal-box .col-md-4{padding-bottom:0}}@media only screen and (max-width:479px){.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 8px;font-size:10px}.mec-wrap .mec-totalcal-box input[type=submit]{padding:0 10px;font-size:10px}}@media only screen and (min-width:961px){.mec-wrap .mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5,.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-3{width:100%;float:none;padding-bottom:20px;clear:both;overflow:hidden}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-4{position:absolute;right:10px;top:20px;width:initial}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5{padding-bottom:0;width:100%}}@media (min-width:961px) and (max-width:1200px){.mec-full-calendar-wrap .mec-totalcal-box{padding:20px 20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{padding-bottom:20px!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{min-width:calc(30% - 10px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3:last-child select{min-width:calc(50% - 19px)}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view{margin-right:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:10px;text-align:center}}@media (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box{padding:20px 20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{padding-bottom:10px!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px);margin-bottom:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view{margin-right:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:10px;text-align:center}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:100%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:absolute;top:20px}}@media (min-width:780px) and (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:absolute;top:20px}}@media(max-width:780px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{width:calc(50% - 18px)!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:unset;padding-right:0}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:20%;text-align:center;font-size:10px}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 7px;margin-top:20px}}@media(max-width:480px){.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:20%;text-align:center;font-size:10px}}.mec-search-form{padding:20px 10px}.mec-search-form .mec-dropdown-wrap{display:table;width:100%}.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{padding:0 10px;float:left;min-height:55px}.mec-search-form .mec-date-search,.mec-search-form .mec-text-input-search{width:50%;min-height:36px;display:block}.mec-full-calendar-wrap .mec-search-form .mec-date-search,.mec-full-calendar-wrap .mec-search-form .mec-text-input-search{width:100%}.mec-full-calendar-wrap .mec-search-form .col-md-3,.mec-full-calendar-wrap .mec-search-form .col-md-5,.mec-full-calendar-wrap .mec-search-form .col-md-6,.mec-full-calendar-wrap .mec-search-form .col-md-8{padding:0}.mec-widget .mec-search-form .mec-date-search,.mec-widget .mec-search-form .mec-text-input-search{width:100%}.mec-widget .mec-search-form .mec-text-input-search{margin-top:10px}.mec-search-form .mec-date-search{clear:left}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:table-cell;float:none}.mec-widget .mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block}.mec-wrap .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{width:calc(100% - 36px);margin-bottom:20px}.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 106px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}@media only screen and (max-width:767px){.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{width:100%;float:none}.mec-search-form .mec-date-search{min-height:55px}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:50%;float:left}}@media only screen and (max-width:960px){.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 124px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}}@media only screen and (max-width:479px){.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:100%;float:none}}.ui-datepicker{background-color:#fff;border:1px solid #66afe9;border-radius:4px;box-shadow:0 0 8px rgba(102,175,233,.6);display:none;margin-top:4px;padding:10px;width:240px}.ui-datepicker a,.ui-datepicker a:hover{text-decoration:none;cursor:pointer}.ui-datepicker a:hover,.ui-datepicker td:hover a{color:#2c6396;-webkit-transition:color .1s ease-in-out;-moz-transition:color .1s ease-in-out;-o-transition:color .1s ease-in-out;transition:color .1s ease-in-out}.ui-datepicker .ui-datepicker-header{margin-bottom:4px;text-align:center}.ui-datepicker .ui-datepicker-title{font-weight:700}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{cursor:default;font-family:dashicons;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;height:20px;line-height:1.4;margin-top:2px;width:20px}.ui-datepicker .ui-datepicker-prev{float:left;text-align:left}.ui-datepicker .ui-datepicker-next{float:right;text-align:center}.ui-datepicker .ui-datepicker-prev:before{content:"\f341"}.ui-datepicker .ui-datepicker-next:before{content:"\f345"}.ui-datepicker .ui-icon{display:none}.ui-datepicker .ui-datepicker-calendar{table-layout:fixed;width:100%}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker .ui-datepicker-calendar th{text-align:center;padding:4px 0}.ui-datepicker .ui-datepicker-calendar td{border-radius:4px;-webkit-transition:background-color .1s ease-in-out,color .1s ease-in-out;-moz-transition:background-color .1s ease-in-out,color .1s ease-in-out;-o-transition:background-color .1s ease-in-out,color .1s ease-in-out;transition:background-color .1s ease-in-out,color .1s ease-in-out}.ui-datepicker .ui-datepicker-calendar td:hover{background-color:#eee;cursor:pointer}.ui-datepicker .ui-datepicker-calendar td a{text-decoration:none}.ui-datepicker .ui-datepicker-current-day{background-color:#4289cc}.ui-datepicker .ui-datepicker-current-day a{color:#fff}.ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover{background-color:#fff;cursor:default}.mec-owl-theme .owl-dots .owl-dot{border:none}.event-carousel-type1-head .mec-event-image{position:relative;min-height:150px}.event-carousel-type1-head .mec-event-image img{width:100%}.mec-event-carousel-content .mec-event-carousel-title a{transition:all .2s ease}.event-carousel-type1-head .mec-event-date-carousel{position:absolute;top:25px;left:1px;font-size:41px;width:160px;color:#fff;font-weight:500;background-color:#40d9f1;padding-left:21px;height:97px;line-height:2.3;padding-right:85px}.event-carousel-type1-head .mec-event-date-carousel:after{content:"";position:absolute;display:inline-block;z-index:-1;bottom:-13px;left:5px;width:0;border-width:13px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.event-carousel-type1-head .mec-event-date-info{font-size:12px;font-weight:300;position:absolute;top:27px;left:75px}.event-carousel-type1-head .mec-event-date-info-year{font-size:12px;font-weight:300;position:absolute;top:45px;left:75px}.mec-event-carousel-content{border:1px solid #e8e8e8;border-top:none;margin-top:-5px;padding:34px 9px 11px 37px}.mec-event-carousel-content .mec-event-carousel-title a{font-size:23px;font-weight:500;color:#000;letter-spacing:-1px}.mec-event-carousel-content p{font-size:14px;color:#7a7272;font-weight:300}.mec-owl-crousel-skin-type1 .owl-item .mec-event-article{padding:0 19px}.mec-event-carousel-type1 .owl-page.active span{background-color:#00aeef;height:14px;width:14px}.mec-event-carousel-type1 .mec-event-carousel-content{margin-bottom:15px;box-shadow:0 1px 2px rgba(0,0,0,.04);transition:all .27s ease}.mec-event-carousel-type1 .mec-event-carousel-content:hover{box-shadow:0 0 35px rgba(0,0,0,.07)}@media only screen and (min-width:768px) and (max-width:1000px),(min-width:270px) and (max-width:448px){.event-carousel-type1-head .mec-event-date-carousel{font-size:25px;line-height:2.5;padding-right:70px;height:64px;width:120px}.event-carousel-type1-head .mec-event-date-carousel:after{left:7px}.event-carousel-type1-head .mec-event-date-info{font-size:10px;top:13px;left:55px}.event-carousel-type1-head .mec-event-date-info-year{font-size:10px;top:25px;left:55px}.event-carousel-type1-head .mec-event-date-carousel:after{top:48px}}.event-carousel-type2-head{background:#fff;border:1px solid #e6e6e6}.event-carousel-type2-head .mec-event-carousel-content-type2{margin-top:15px;min-height:182px}.event-carousel-type2-head .mec-event-carousel-content-type2 .mec-event-date-info{font-size:15px;color:#9a9a9a;font-weight:300}.event-carousel-type2-head .mec-event-carousel-content-type2 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-carousel-content-type2 .mec-event-carousel-title a{color:inherit}.mec-event-carousel-type2 .event-carousel-type2-head .mec-event-carousel-content-type2 p{font-size:16px;font-weight:300;color:#444}.event-carousel-type2-head .mec-event-footer-carousel-type2{margin-top:33px;position:relative}.mec-event-carousel-type2 .mec-event-footer-carousel-type2 .mec-event-sharing-wrap{left:0}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-event-sharing-wrap>li{border:none;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button{border:1px solid #e4e4e4;float:right;padding:7px 23px 7px;font-size:12px;text-transform:uppercase;color:#707070;font-weight:500;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button:hover{color:#fff}.mec-event-article .event-carousel-type2-head{padding:10%;margin-right:-1px}.mec-event-carousel-type2 .mec-owl-carousel .owl-wrapper-outer{border-right:1px solid #e6e6e6}.mec-wrap .mec-event-carousel-type2 .owl-next,.mec-wrap .mec-event-carousel-type2 .owl-prev,.mec-wrap .mec-event-carousel-type3 .owl-next,.mec-wrap .mec-event-carousel-type3 .owl-prev,.mec-wrap .mec-event-carousel-type4 .owl-next,.mec-wrap .mec-event-carousel-type4 .owl-prev{transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:47%;background-color:transparent!important}.mec-event-carousel-type2 .owl-next{right:-60px}.mec-event-carousel-type2 .owl-prev{left:-60px}.mec-event-carousel-type2 .owl-next i,.mec-event-carousel-type2 .owl-prev i,.mec-event-carousel-type3 .owl-next i,.mec-event-carousel-type3 .owl-prev i,.mec-event-carousel-type4 .owl-next i,.mec-event-carousel-type4 .owl-prev i{font-size:40px;color:#282828}.mec-event-carousel-type2 .owl-next i:hover,.mec-event-carousel-type2 .owl-prev i:hover,.mec-event-carousel-type3 .owl-next i:hover,.mec-event-carousel-type3 .owl-prev i:hover{color:#000;cursor:pointer}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}@media only screen and (min-width:320px) and (max-width:768px){.mec-event-carousel-type2 .owl-next,.mec-event-carousel-type2 .owl-prev,.mec-event-carousel-type3 .owl-next,.mec-event-carousel-type3 .owl-prev,.mec-event-carousel-type4 .owl-next,.mec-event-carousel-type4 .owl-prev{position:initial;top:100%}}.mec-event-carousel-type3 .mec-event-article{margin:0 10px}.event-carousel-type3-head .mec-event-image,.event-carousel-type3-head .mec-event-image img{width:100%;height:auto}.event-carousel-type3-head .mec-event-footer-carousel-type3{background:#fff;display:inline-block;width:calc(100% - 40px);margin-top:-74px;position:relative;margin-left:20px;margin-right:20px;margin-bottom:6px;padding:8% 11%;box-shadow:0 2px 10px -2px rgba(0,0,0,.2)}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button{border:1px solid #e4e4e4;text-transform:uppercase;float:right;padding:7px 23px 7px;font-size:12px;color:#707070;font-weight:500}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button:hover{color:#fff}.mec-event-footer-carousel-type3 span{font-size:15px;color:#9a9a9a;font-weight:300;display:block;margin-top:30px}.mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:29px;font-weight:700}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-footer-carousel-type3 .mec-event-carousel-title a{color:inherit}.event-carousel-type3-head .mec-event-footer-carousel-type3 p{font-size:16px;font-weight:300;color:#444!important;margin-bottom:36px}.mec-event-carousel-type3 .owl-next{right:-70px}.mec-event-carousel-type3 .owl-prev{left:-70px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap{left:11%}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}.event-carousel-type3-head .mec-end-date-label{display:inline;margin-left:2px}.event-carousel-type4-head.clearfix{position:relative;overflow:hidden;background:#fff}.event-carousel-type4-head .mec-event-overlay{position:absolute;left:0;right:0;bottom:0;top:0;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-hover-carousel-type4{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out;opacity:0;visibility:hidden}.mec-event-carousel-type4 .mec-event-article{margin:0 10px}.mec-event-carousel-type4 .mec-event-article:hover .mec-event-hover-carousel-type4{opacity:1;visibility:visible}.mec-event-hover-carousel-type4 .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-hover-carousel-type4 .mec-event-date{font-size:11px;text-transform:uppercase;font-weight:400;line-height:1.6}.mec-event-hover-carousel-type4 .mec-event-date span{display:block;font-weight:700;font-size:14px}.mec-event-hover-carousel-type4 .mec-event-title{color:#fff;margin:20px 0 38px;font-size:16px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-hover-carousel-type4 .mec-btn-wrapper{text-align:left}.mec-event-hover-carousel-type4 .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:10px 14px;letter-spacing:1.5px;font-size:11px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-hover-carousel-type4 .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-carousel-type4 .owl-next{right:-70px}.mec-event-carousel-type4 .owl-prev{left:-70px}.mec-carousel-type4-head{margin-bottom:25px}.mec-carousel-type4-head-title{padding:0 11px;text-align:left;font-weight:700;font-size:20px;color:#000}.mec-carousel-type4-head-link{text-align:right;padding:0 11px}.mec-carousel-type4-head-link a{background:#222;color:#fff;padding:10px 38px;transition:all .3s ease}.mec-carousel-type4-head-link a:hover,.mec-carousel-type4-head-link a:visited{color:#fff}@media (max-width:960px){.mec-event-carousel-type4 .owl-stage{left:-50px}}.mec-wrap .mec-event-countdown-style1{color:#fff;padding:0!important;display:table;background:#437df9}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1{z-index:5;padding:50px 1% 50px 4%;display:table-cell;float:none;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2{background-color:rgba(0,0,0,.05);height:100%;padding-top:0;display:table-cell;float:none;position:relative;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{background-color:#f8f8f8;display:table-cell;float:none;text-align:center;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style1 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{content:"";position:absolute;display:inline-block;z-index:1;top:50%;margin-top:-11px;right:-24px;width:0;border-width:12px;border-style:solid;border-color:transparent transparent transparent #4077ed}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style1 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto}.mec-event-countdown-style1 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style1 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (min-width:1200px){.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%}}@media (max-width:960px){.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%;transform:rotate(90deg)}}@media (max-width:480px){.mec-event-countdown-style1 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{padding:10px 5px;min-width:50px;margin:3px 1px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:8px}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{display:inline}}.mec-wrap .mec-event-countdown-style2{color:#fff;padding:30px 0;background:#437df9;max-width:600px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part3{width:100%;float:none;vertical-align:middle;padding:50px 10% 50px 10%}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2{padding-top:12%;padding-bottom:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style2 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date-place{text-align:left;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 8px}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#222;background:#fff;transition:all .24s ease}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button:hover{background:#222;color:#fff}.mec-event-countdown-style2 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0}.mec-event-countdown-style2 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style2 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (max-width:767px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:80px;padding:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:26px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:11px}}@media only screen and (max-width:479px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:40px;padding:15px 10px;margin:2px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:20px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:9px}}@media (max-width:380px){.mec-event-countdown-style2 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{padding:10px 4px;margin:4px 1px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:7px}}.mec-wrap .mec-event-countdown-style3{color:#fff;padding:0;background:#282828;display:table;width:100%}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1{width:68%;padding:50px 1% 50px 4%;vertical-align:middle;display:table-cell;position:relative}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:32%;display:table-cell;position:relative;padding-bottom:0;padding-top:0}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 img{width:100%;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{font-weight:300;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{color:#fff;font-size:36px;letter-spacing:-2px;font-weight:700;line-height:1;margin-top:-10px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style3 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style3 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto;position:absolute;top:40px;right:20px}.mec-event-countdown-style3 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style3 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:11px;color:#888;margin:8px 0 0;line-height:1}.mec-event-countdown-style3 .mec-event-date{width:176px;height:96px;background:#40d9f1;color:#fff;font-size:13px;position:absolute;left:-27px;top:146px}.mec-event-countdown-style3 .mec-event-date:after{content:"";position:absolute;display:inline-block;z-index:1;bottom:-18px;left:8px;width:0;border-width:19px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:50px;position:absolute;top:36px;left:12px;letter-spacing:-3px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:80px;top:26px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:80px;top:45px}.mec-event-countdown-style3 .mec-event-countdown-part-details{padding-top:35px;margin-bottom:50px;min-height:100px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-title{font-size:17px;color:#fff;line-height:1.4;padding-right:20px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link{color:#fff;font-size:12px;position:relative;padding-left:22px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link:before{content:"";display:inline-block;width:18px;border-top:1px solid #fff;position:absolute;left:0;top:8px}.mec-event-countdown-style3 .mec-event-title-link{position:absolute;left:190px;top:152px}.event-carousel-type1-head .mec-event-date-carousel:before,.mec-event-countdown-style3 .mec-event-date:before{content:'';position:absolute;left:0;bottom:0;z-index:2;width:100%;height:96px;background:0 0;display:inline-block;box-shadow:0 5px 5px rgba(0,0,0,.12)}@media only screen and (min-width:960px){.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown li{padding:10px}.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:31px}}@media (max-width:959px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:100%;display:block}.mec-event-countdown-style3 .mec-event-title-link{top:190px}.mec-event-countdown-style3 .mec-event-countdown{top:96px}.mec-event-countdown-style3 .mec-event-date{left:0;top:190px}.mec-event-countdown-style3 .mec-event-date:after{display:none}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{display:inline}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:150px}}@media (max-width:767px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:26px;letter-spacing:-1px}.mec-event-countdown-style3 .mec-event-title-link{left:130px}.mec-event-countdown-style3 .mec-event-date{width:120px;font-size:10px;height:63px}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:36px;top:20px;left:4px;letter-spacing:-2px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:52px;top:12px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:52px;top:28px}}@media (max-width:380px){.mec-event-countdown-style3 .mec-event-title-link{left:10px;top:260px}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:300px}.mec-event-countdown-style3 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:10px 5px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:8px}}.mec-slider-t1-wrap{width:100%;padding:60px 90px;background:#f7f7f7;min-height:560px;position:relative}.mec-slider-t1{height:500px;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t1 .mec-event-article{position:relative;height:500px}.mec-slider-t1 .mec-slider-t1-img{position:relative;background-size:cover!important;background-position:center!important;width:50%;height:100%;float:right;margin:0;overflow:hidden}.mec-slider-t1 .mec-slider-t1-content{width:50%;float:left;height:100%;background:#fff;padding:6%}.mec-slider-t1-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t1-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:54px;height:54px;line-height:48px;border-radius:0;text-align:center;background:#fff;box-shadow:0 2px 11px 0 rgba(0,0,0,.045);transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-27px;cursor:pointer}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 29px 0 rgba(0,0,0,.095)}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:12px;color:#282828;transition:all .21s ease}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{font-size:13px;color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t1{margin:0 auto;max-width:900px}}@media only screen and (max-width:960px){.mec-slider-t1 .mec-slider-t1-content,.mec-slider-t1 .mec-slider-t1-img{width:100%;float:none}.mec-slider-t1 .mec-slider-t1-img{height:300px}.mec-slider-t1,.mec-slider-t1 .mec-event-article{height:auto}}@media only screen and (max-width:768px){.mec-slider-t1-wrap{padding:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:10px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}}@media only screen and (max-width:479px){.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t2-wrap{width:100%;padding:0;background:#fff;min-height:600px;position:relative}.mec-slider-t2 .mec-event-article{height:600px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t2 .mec-slider-t2-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:70%;height:100%;margin:0;overflow:hidden}.mec-slider-t2 .mec-slider-t2-content{width:50%;position:absolute;right:0;top:60px;bottom:60px;padding:5%}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern *{color:#fff}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-content,.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t2-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:84px;cursor:pointer}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}.mec-wrap.colorskin-custom .mec-slider-t2 .mec-event-article .mec-event-date.mec-color{color:#fff}@media only screen and (min-width:961px){.mec-slider-t2{margin:0 auto;max-width:1200px}}@media only screen and (max-width:960px){.mec-slider-t2 .mec-slider-t2-content,.mec-slider-t2 .mec-slider-t2-img{width:100%;float:none;position:static}.mec-slider-t2 .mec-slider-t2-img{height:300px}.mec-slider-t2 .mec-event-article{height:auto}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px}}@media only screen and (max-width:479px){.mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:22px}}.mec-slider-t3-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t3 .mec-event-article{height:700px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t3 .mec-slider-t3-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;opacity:.68;z-index:1}.mec-slider-t3 .mec-slider-t3-content{width:50%;height:auto;vertical-align:middle;display:table;position:absolute;left:0;top:0;bottom:0;padding:0 2% 0 7%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t3 .mec-slider-t3-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-content,.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-slider-t3-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t3-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{border-color:#40d9f1}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-22px;cursor:pointer}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next{right:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:50px;font-weight:300}.mec-slider-t3-content.mec-event-grid-modern .mec-event-description{font-size:19px}}@media only screen and (max-width:767px){.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}}@media only screen and (max-width:479px){.mec-slider-t3 .mec-slider-t3-content{width:100%}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t4-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t4 .mec-event-article{height:700px;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t4 .mec-slider-t4-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;z-index:1}.mec-slider-t4 .mec-slider-t4-content{width:auto;max-width:700px;background:rgba(37,37,37,.94)!important;height:auto;vertical-align:middle;display:table;position:absolute;left:8%;top:19%;padding:3%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t4 .mec-slider-t4-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-content,.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:13px;padding:0 42px;line-height:49px;height:50px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t4-content.mec-event-grid-modern .mec-slider-t4-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next{right:60px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{right:112px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:767px){.mec-slider-t4 .mec-slider-t4-content{width:100%;left:0;top:auto;bottom:0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t5-wrap{width:auto;max-width:570px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-slider-t5{height:auto;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t5 .mec-event-article{position:relative;height:auto}.mec-slider-t5 .mec-slider-t5-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:300px;float:none;margin:0;overflow:hidden}.mec-slider-t5 .mec-slider-t5-content{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-slider-t5 .mec-events-content p{margin-bottom:20px}.mec-slider-t5-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t5-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t5 .mec-slider-t5-col6{width:50%;float:left;height:100%}.mec-slider-t5 .mec-slider-t5-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-slider-t5 .mec-slider-t5-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-slider-t5 .mec-slider-t5-col6 address{font-size:12px;margin-bottom:0}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t5-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:768px){.mec-slider-t5 .mec-slider-t5-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-single-modern .mec-events-event-image{text-align:center}.mec-single-modern .mec-events-event-image img{width:100%}.mec-single-modern .mec-single-event-bar{background-color:#f7f7f7;margin:20px 0 0;padding:15px;display:table;width:100%}.mec-single-modern .mec-single-event-bar>div{display:table-cell}.mec-single-modern .mec-single-event-bar>div i{font-size:20px;vertical-align:middle}.mec-single-modern .mec-single-event-bar>div .mec-time-comment{font-size:12px;color:#999}.mec-single-modern .mec-single-event-bar>div h3{text-transform:uppercase;font-size:16px;font-weight:700;padding-bottom:5px;display:inline;color:#000;padding-left:10px}.mec-single-modern .mec-single-event-bar>div dd{font-size:14px;color:#8d8d8d;padding-left:34px;margin-bottom:0}.mec-single-modern .col-md-4 .mec-frontbox{margin-top:-50px;margin-bottom:70px;padding:20px;border:none;background:#f7f7f7;box-shadow:none}.mec-next-occurrence li{list-style:none}@media only screen and (min-width:960px){.mec-single-modern .col-md-4 .mec-frontbox{margin-left:20px}}@media only screen and (max-width:960px){.mec-single-modern .mec-single-event-bar>div{display:block}}.lity-content>div{overflow:auto}.mec-next-event-details li{list-style:none;margin-top:20px}.mec-next-event-details h6{text-transform:uppercase;font-size:13px;padding-bottom:5px;display:inline;color:#222;padding-left:0}.mec-next-event-details abbr{display:block;padding-left:12px;color:#8d8d8d}.mec-next-event-details i{margin-right:10px;margin-left:12px}.mec-next-event-details i:before{color:#40d9f1}.mec-next-event-details a{text-align:center;display:block;background:#fff;padding:6px 0;font-size:11px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;transition:.3s}.mec-single-modal.mec-single-modern .mec-single-title{text-align:center;padding:15px 10px 0}.admin-bar .mec-single-modal.mec-single-modern .mec-single-title{padding-top:40px}.mec-single-modal.mec-single-modern .mec-single-event-bar{padding:5px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div dd{font-size:13px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div h3{font-size:15px}@media only screen and (min-width:960px){.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-left:0}}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-top:10px;margin-bottom:10px}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox.mec-event-meta{padding:0}.mec-single-modal .mec-event-meta dd.mec-organizer-email a,.mec-single-modal .mec-event-meta dd.mec-organizer-url a{font-size:12px;display:block}.mec-modal-wrap{max-width:60vw;max-height:90vh!important;background:#fff;box-shadow:0 1px 55px rgba(0,0,0,.5);overflow-x:hidden!important}@media(max-width:1023px){.mec-modal-wrap{max-width:80vw}}.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li,.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a.mec-events-button{display:block;text-align:center}body .featherlight .featherlight-content{background:0 0;overflow:unset;z-index:9999}body .featherlight .featherlight-close-icon{position:fixed;top:40px;right:40px;background:0 0;color:#fff;border:1px solid #fff;border-radius:0}body .featherlight .featherlight-close-icon:hover{background:#fff;color:#000;border:1px solid #000}@media (max-width:320px){.mec-wrap span.flip-clock-divider{width:20px}.mec-single-event .mec-events-meta-group-countdown{padding:15px 12%}}@media (max-width:414px){.mec-wrap span.flip-clock-divider{width:30px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 7%}}@media (max-width:480px){.mec-wrap span.flip-clock-divider{width:7px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 1%}}@media(max-width:1366px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:20px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 15px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:48px}}@media(max-width:1280px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:14px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:15px 10px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:38px}}@media(min-width:961px) and (max-width:1024px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:7px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:15px 5px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:14px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul li a div{font-size:30px}}@media(max-width:640px){body .mec-modal-wrap .mec-single-modal.featherlight-close-icon{top:14px;right:14px}}@media(max-width:480px){.featherlight .featherlight-content,body .mec-modal-wrap{max-width:100%}body .mec-modal-wrap.flip-clock-divider .flip-clock-label{display:block}}@media (max-width:414px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:50px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 65px}body .featherlight-content .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 2px 20px 2px!important}body .featherlight-content .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:3px!important}}@media (max-width:375px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:50px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 45px}}@media (max-width:320px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:20px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 40px}}.mec-events-toggle{max-width:960px;margin-left:auto;margin-right:auto}.mec-events-toggle .mec-toggle-item{border:1px solid #e4e4e4;margin-bottom:15px;box-shadow:0 10px 15px #f3f3f3}.mec-events-toggle .mec-toggle-item-inner{cursor:pointer;position:relative;padding:30px 60px 30px 15px;background:#fff;transition:all .3s ease;min-height:100px;display:table;width:100%;border-collapse:separate}.mec-events-toggle .mec-toggle-item-inner:hover{background:#fbfbfb}.mec-toggle-item-col{width:200px;border-right:1px solid #e3e3e3;margin-right:15px;display:table-cell;padding-right:5px}.mec-toggle-item-col .mec-event-date{font-size:38px;line-height:40px;float:left;margin-right:8px}.mec-toggle-item-col .mec-event-month,.mec-toggle-item-col .mec-time-details{text-transform:uppercase;font-size:12px;line-height:14px;padding-top:4px;font-weight:700}.mec-toggle-item-col .mec-event-detail{font-size:10px}.mec-toggle-item-col .mec-event-day{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:35px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-events-toggle .mec-toggle-title{color:#000;font-size:23px;font-weight:600;margin-bottom:0;transition:all .3s ease;display:table-cell;text-align:left;max-width:calc(100% - 200px);padding-left:15px;vertical-align:middle}.mec-events-toggle .mec-toggle-item-inner span.event-color{width:5px;height:100%;position:absolute;left:-1px;top:0;bottom:0;border-radius:0;margin:0}.mec-events-toggle .mec-toggle-item-inner i{position:absolute;font-size:30px;right:25px;top:50%;transform:translate(0,-50%);cursor:pointer}.mec-events-toggle .mec-toggle-item.is-open i.mec-sl-plus:before{content:"\e615"}.mec-events-toggle .mec-toggle-item.is-open .mec-toggle-title{background:#f8f8f8;cursor:pointer}.mec-events-toggle .mec-toggle-content{border-top:1px solid #e4e4e4}.mec-events-toggle .mec-toggle-content .mec-modal-wrap{margin:0;max-width:100%;box-shadow:none}.mec-events-toggle .mec-toggle-content .mec-modal-wrap .mec-single-event{margin:0}.mec-events-toggle .mec-toggle-content .mec-single-event-bar,.mec-events-toggle .mec-toggle-content h1.mec-single-title{display:none}.mec-events-toggle .media-links a{margin-bottom:0}.mec-events-toggle .mec-toggle-content .mec-toggle-meta{margin-bottom:14px}.mec-events-toggle #mec_speakers_details.mec-frontbox{padding:0;margin:0}.mec-events-toggle .mec-toggle-item h3.mec-speakers{border:none;text-align:left}.mec-events-toggle .mec-toggle-item h3.mec-speakers:before{content:"\e063";font-family:simple-line-icons;border:none;position:relative;display:inline-block;left:unset;bottom:unset;font-size:22px;font-weight:400;padding:0 11px 0 28px;vertical-align:middle}@media only screen and (max-width:767px){.mec-toggle-item-inner .mec-toggle-item-col{float:none;width:100%;border-right:none;margin-bottom:5px;display:block;max-width:100%;padding-left:15px}.mec-events-toggle .mec-toggle-title{display:block;width:100%;max-width:100%}}.mec-events-agenda-wrap{margin:10px 0;border:1px solid #e9e9e9;padding-left:20px;box-shadow:0 2px 2px rgba(0,0,0,.03)}.mec-events-agenda{padding:0;border-bottom:1px solid #e9e9e9;overflow:hidden}.mec-agenda-date-wrap{width:210px;padding-top:15px;float:left;font-size:13px}.mec-agenda-date-wrap i,.mec-agenda-event i{font-size:11px;color:#aaa;margin-right:4px;margin-left:1px}.mec-agenda-event i{vertical-align:middle;margin-right:1px}.mec-agenda-events-wrap{float:left;width:calc(100% - 210px);background:#f9f9f9;padding:15px}.mec-agenda-time{font-size:11px;color:#707070;padding-right:10px;width:138px;display:inline-block}.mec-agenda-event-title{position:relative;padding-left:14px}.mec-agenda-event-title a{font-family:Roboto,Montserrat,Helvetica,Arial,sans-serif;font-size:14px;font-weight:600;color:#333}.mec-agenda-event-title span.event-color{width:9px;height:9px;position:absolute;left:0;top:4px;margin:0}.mec-agenda-date-wrap span.mec-agenda-day{color:#aaa;font-size:12px}@media only screen and (max-width:767px){.mec-agenda-date-wrap,.mec-agenda-events-wrap{float:none;width:100%}.mec-events-agenda span.mec-agenda-event-title{display:block;width:100%}.mec-agenda-event-title span.event-color{top:7px}.mec-agenda-event-title a{font-size:13px}}.mec-yearly-view-wrap{margin:0 0 15px;border:1px solid #e6e6e6;box-shadow:0 2px 4px rgba(0,0,0,.04);border-bottom-width:4px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar{max-width:100%;width:232px;padding:10px;background:#fff;margin:10px;display:inline-block}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar dl dt{transition:none;height:30px;width:30px;line-height:30px;border-radius:0;font-size:12px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar .mec-calendar-events-sec{padding:10px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar .mec-has-event:after{width:4px;height:4px;bottom:3px;margin-left:-2px}.mec-yearly-view-wrap .mec-calendar-side .mec-calendar-table{min-height:200px}.mec-calendar.mec-yearly-calendar .mec-calendar-table-head dl dt{background:#f9f9f9;font-size:13px}.mec-calendar.mec-yearly-calendar .mec-calendar-table-title{text-align:center;font-size:15px;font-weight:700;color:#222;margin-top:-5px;padding-bottom:5px}.mec-yearly-view-wrap .mec-yearly-calendar-sec{min-height:200px;width:538px;overflow:hidden;float:left;background:#f8f8f8;padding:15px}.mec-yearly-view-wrap .mec-yearly-agenda-sec{min-height:200px;width:calc(100% - 538px);float:left;padding:0 0 0 20px;overflow:hidden}.mec-yearly-view-wrap .mec-yearly-title-sec{position:relative;padding:15px;text-align:center;border-bottom:1px solid #e6e6e6;box-shadow:0 1px 3px rgba(0,0,0,.02)}.mec-yearly-view-wrap .mec-yearly-title-sec h2{font-size:30px;line-height:40px;color:#333;margin:0;font-weight:700}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year,.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{position:absolute;top:50%;margin-top:-15px;min-width:30px;height:30px;line-height:30px;padding:0 8px;text-align:center;background:#fff;color:#666;font-size:14px;border:1px solid #eee;border-radius:2px;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease;cursor:pointer}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{right:auto;left:20px;padding-right:14px}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year{left:auto;right:20px;padding-left:14px}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year i,.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-yearly-view-wrap .mec-events-agenda.mec-selected{box-shadow:-10px 0 0 0 #fffcf2,0 -1px 0 #fbebb6;background:#fffcf2;border-color:#fbebb6;color:#f9af29}@media only screen and (max-width:959px){.mec-yearly-view-wrap .mec-yearly-calendar-sec{width:268px;padding:10px 5px}.mec-yearly-view-wrap .mec-yearly-agenda-sec{width:calc(100% - 268px);padding:0 0 0 10px}}@media only screen and (max-width:767px){.mec-yearly-view-wrap .mec-yearly-agenda-sec,.mec-yearly-view-wrap .mec-yearly-calendar-sec{width:100%;float:none}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar{width:auto}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar dl dt{width:14.2%}.mec-yearly-view-wrap .mec-yearly-title-sec h2{font-size:25px}}.mec-yearly-view-wrap .mec-agenda-event i,.mec-yearly-view-wrap .mec-agenda-time{display:none}@media only screen and (min-width:768px){.mec-yearly-view-wrap .mec-events-agenda-wrap{margin-top:0;border:none;padding-left:0;box-shadow:none}.mec-yearly-view-wrap .mec-agenda-date-wrap{width:174px;font-size:11px;padding-top:10px}.mec-yearly-view-wrap .mec-agenda-events-wrap{width:calc(100% - 174px);padding:10px}.mec-yearly-view-wrap .mec-agenda-event-title a{font-size:13px}.mec-yearly-view-wrap .mec-agenda-event-title span.event-color{width:8px;height:8px}.mec-yearly-view-wrap .mec-agenda-date-wrap span.mec-agenda-day{font-size:11px}.mec-yearly-view-wrap .mec-yearly-calendar-sec{box-shadow:-2px 0 5px rgba(0,0,0,.03) inset}}@media only screen and (max-width:1200px){.mec-yearly-view-wrap .mec-agenda-event-title a{font-size:12px;padding-right:6px}}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table{padding-bottom:10px;border-bottom:none}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt:hover{cursor:pointer}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-has-no-event,.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-has-no-event:hover{color:#bbb;cursor:default}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-day-active{background:#40d9f1;color:#fff;position:relative}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-day-active:after{content:'';position:absolute;display:block;bottom:-20px;left:50%;margin-left:-10px;width:0;border-width:10px;border-style:solid;border-color:#40d9f1 transparent transparent transparent}.mec-timetable-events-list{padding:10px 20px;border:none;margin:0}.mec-timetable-events-list .mec-timetable-event{padding:10px 0;border-bottom:1px dashed #ddd}.mec-timetable-events-list .mec-timetable-event:last-child{border:none}.mec-timetable-event .mec-timetable-event-span{font-size:12px;color:#444;padding-right:30px;line-height:22px}.mec-timetable-events-list .mec-timetable-event i{font-size:13px;color:#aaa;margin-right:3px;vertical-align:baseline}.mec-timetable-event .mec-timetable-event-span a{color:#333}.mec-timetable-event .mec-timetable-event-time{font-size:11px}.mec-timetable-event .mec-timetable-event-time i{vertical-align:text-bottom}.mec-timetable-event .mec-timetable-event-title{font-size:13px}.mec-timetable-event .mec-timetable-event-title .event-color{width:10px;height:10px}.mec-timetable-events-list .mec-timetable-event.mec-util-hidden{display:none}.mec-timetable-events-list.mec-util-hidden{display:none}@media only screen and (min-width:768px){.mec-timetable-events-list{display:table;width:100%;margin:10px 0 20px}.mec-timetable-events-list .mec-timetable-event{display:table-row;padding:0;border:none;background:#fff}.mec-timetable-events-list .mec-timetable-event:hover{background:#fafafa}.mec-timetable-event .mec-timetable-event-span{display:table-cell;padding:10px 15px;border-bottom:1px solid #ebebeb}.mec-timetable-events-list .mec-timetable-event:last-child .mec-timetable-event-span{border-bottom:none}}@media only screen and (max-width:767px){.mec-timetable-event .mec-timetable-event-title{display:block;width:100%;padding:5px 0 10px;font-weight:700}}.mec-timetable-t2-wrap{border:1px solid #e6e6e6;background:#fafafa;padding:0 15px 15px;overflow:hidden;box-shadow:0 3px 2px 0 rgba(0,0,0,.012)}.mec-timetable-t2-col{width:20%;float:left;min-height:20px;padding-right:1px;background:0 0}.mec-ttt2-title{background:#fafafa;color:#333;font-size:13px;font-weight:600;text-transform:uppercase;letter-spacing:1px;text-align:center;padding:25px 10px 10px;margin-bottom:1px}.mec-timetable-t2-col .mec-event-article{position:relative}.mec-timetable-t2-col .mec-event-article .event-color{position:absolute;width:auto;height:auto;left:0;right:0;top:0;bottom:0;margin:0;z-index:1;border-radius:2px}.mec-timetable-t2-content{position:relative;z-index:2;color:#fff;padding:15px 15px 20px;text-align:left;height:130px;margin-bottom:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title{line-height:22px;margin-bottom:13px;white-space:nowrap;padding-right:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title a{color:#fff;font-size:15px;font-weight:600;white-space:nowrap;overflow:hidden}.mec-timetable-t2-content div{color:#fff;font-size:11px;font-weight:400;line-height:19px;white-space:nowrap}.mec-timetable-t2-content div i{font-size:12px;margin-right:4px}@media only screen and (max-width:960px){.mec-timetable-t2-col{width:100%;float:none}}@media(min-width:961px){.mec-timetable-col-7{width:14.28%}.mec-timetable-col-6{width:16.6666%}}.mec-weather-box{padding:15px 0}.mec-weather-head{min-height:90px;padding:5px 0;clear:both;overflow:hidden;margin-bottom:25px;border-radius:10px;background:#238af5;position:relative}.mec-weather-icon-box{float:left;width:80px;height:80px;border-radius:10px;overflow:hidden;background:#238af5}.mec-weather-icon{width:80px;height:80px;display:inline-block;border-radius:10px}.mec-weather-summary{float:left;width:calc(100% - 80px);padding-left:10px;margin:10px 0;height:60px}.mec-weather-summary-report{font-size:15px;color:rgba(255,255,255,.68);margin-bottom:6px}.mec-weather-summary-temp{font-family:Roboto,Sans-serif;font-weight:300;color:#fff;font-size:29px;line-height:1}.degrees-mode{background:rgba(0,0,0,.2);cursor:pointer;font-weight:300;font-size:18px;padding:4px 5px;line-height:1;color:#fff;position:absolute;border-radius:8px;bottom:16px;left:16px}.mec-weather-extras{width:auto;padding:10px 15px 0 15px;float:right;min-height:80px;color:#fff;font-size:13px;line-height:1}.mec-weather-extras{width:auto;padding:10px 15px 0 15px;float:right;min-height:80px;color:#fff;font-size:13px;line-height:1}.mec-weather-extras div{line-height:20px;height:20px}.mec-weather-extras span{color:rgba(255,255,255,.68);font-size:12px;text-transform:uppercase}.mec-weather-extras var{font-size:11px;letter-spacing:.4px}.mec-weather-icon.clear-day,.mec-weather-icon.clear-night{background-image:url(../img/mec-weather-icon-01.png)}.mec-weather-icon.partly-sunny-day,.mec-weather-icon.partly-sunny-night{background-image:url(../img/mec-weather-icon-02.png)}.mec-weather-icon.partly-cloudy-day,.mec-weather-icon.partly-cloudy-night{background-image:url(../img/mec-weather-icon-03.png)}.mec-weather-icon.cloudy,.mec-weather-icon.fog,.mec-weather-icon.wind{background-image:url(../img/mec-weather-icon-04.png)}.mec-weather-icon.thunderstorm{background-image:url(../img/mec-weather-icon-05.png)}.mec-weather-icon.rain{background-image:url(../img/mec-weather-icon-06.png)}.mec-weather-icon.hail,.mec-weather-icon.sleet,.mec-weather-icon.snow{background-image:url(../img/mec-weather-icon-07.png)}.mec-av-spot-wrap{width:auto;max-width:1200px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-av-spot{height:auto;border:1px solid #eee;box-shadow:0 6px 12px -4px rgba(0,0,0,.05)}.mec-av-spot .mec-event-article{position:relative;height:auto}.mec-av-spot .mec-av-spot-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:330px;float:none;margin:0;overflow:hidden}.mec-av-spot .mec-av-spot-content,.mec-av-spot .mec-av-spot-head{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-av-spot .mec-av-spot-head{background:#222;color:#fff;min-height:80px}.mec-av-spot .mec-av-spot-head .mec-av-spot-box{padding-top:25px;font-size:13px;color:#ddd}.mec-av-spot .mec-av-spot-head .mec-av-spot-box span{color:#40d9f1;font-size:40px;font-weight:700;font-style:italic}.mec-av-spot .mec-av-spot-head .mec-event-countdown{text-align:center;padding-top:10px;display:table;table-layout:fixed;margin:0 auto;float:right}.mec-av-spot .mec-av-spot-head .mec-event-countdown li{display:table-cell;padding:10px 20px;position:relative;height:60px}.mec-av-spot .mec-av-spot-head .mec-event-countdown p{margin-bottom:0}.mec-av-spot .mec-events-content p{margin-bottom:20px}.mec-av-spot-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-av-spot-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-av-spot-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-av-spot .mec-av-spot-col6{width:50%;float:left;height:100%}.mec-av-spot .mec-av-spot-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-av-spot .mec-av-spot-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-av-spot .mec-av-spot-col6 address{font-size:12px;margin-bottom:0}.mec-av-spot-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-av-spot-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05)}@media only screen and (max-width:768px){.mec-av-spot .mec-av-spot-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-av-spot-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-events-masonry-wrap{display:block;width:auto}.mec-masonry-item-wrap{width:calc(33.33% - 30px);padding:0;margin:0 15px 30px;min-height:10px;position:relative}.isotope-item{z-index:2}.isotope-hidden.isotope-item{pointer-events:none;z-index:1}.isotope,.isotope .isotope-item{-webkit-transition-duration:.8s;-moz-transition-duration:.8s;transition-duration:.8s}.isotope{-webkit-transition-property:height,width;-moz-transition-property:height,width;transition-property:height,width}.isotope .isotope-item{-webkit-transition-property:-webkit-transform,opacity;-moz-transition-property:-moz-transform,opacity;transition-property:transform,opacity}.mec-events-masonry-cats{padding:10px;margin-bottom:25px;text-align:center;clear:both;list-style:none outside none}.mec-events-masonry-cats a{border-radius:2px;padding:6px 12px;font-size:13px;line-height:1.2;color:#333;font-weight:400;margin-top:0!important;text-align:center;display:inline-block;width:auto;border:2px solid transparent;transition:all .2s ease}.mec-events-masonry-cats a:hover{border-color:#40d9f1;color:#333}.mec-events-masonry-cats a.mec-masonry-cat-selected{border:2px solid #40d9f1;color:#40d9f1}.mec-masonry{background:#f7f7f7;height:auto;border:1px solid #eee;box-shadow:0 6px 12px -4px rgba(0,0,0,.05)}.mec-masonry .mec-event-article{position:relative;height:auto}.mec-masonry .mec-masonry-img{position:relative;width:100%;height:auto;float:none;margin:0;overflow:hidden}.mec-masonry .mec-masonry-img img{width:100%}.mec-masonry .mec-masonry-content,.mec-masonry .mec-masonry-head{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-masonry .mec-events-content p{margin-bottom:20px}.mec-masonry-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-masonry-item-wrap .mec-event-grid-modern .event-grid-modern-head{min-height:79px;margin-bottom:10px;padding:14px 5%;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-masonry-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-masonry-content.mec-event-grid-modern .mec-event-content{padding-top:20px}.mec-masonry-content.mec-event-grid-modern .mec-event-footer{height:auto}.mec-masonry .mec-masonry-col6 .mec-event-date{font-size:34px;letter-spacing:-2px}.mec-masonry .mec-masonry-col6{width:50%;float:left;height:100%}.mec-masonry .mec-masonry-col6 i{font-size:24px;float:left;margin-right:7px;height:50px}.mec-masonry .mec-masonry-col6 .mec-event-month,.mec-masonry .mec-masonry-col6 h6{text-transform:capitalize;font-size:15px;padding:4px 0;display:inline;color:#444}.mec-masonry .mec-masonry-col6 .mec-event-detail,.mec-masonry .mec-masonry-col6 address{font-size:11px;margin-bottom:0}.mec-masonry-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-masonry-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05)}@media only screen and (max-width:960px){.mec-masonry-item-wrap{width:calc(50% - 30px)}}@media only screen and (max-width:768px){.mec-masonry .mec-masonry-col6{width:100%;margin:10px 0}.mec-masonry-item-wrap{width:calc(100% - 30px)}}@media only screen and (max-width:479px){.mec-masonry-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.btn-wrapper{text-align:center}.countdown-wrapper .btn-wrapper{padding-top:10px;padding-right:0}.countdown-wrapper h5.countdown-message{letter-spacing:5px;font-weight:500;font-size:18px}.blox.dar .countdown-wrapper p,.countdown-wrapper p{color:#888}.countdown-wrapper a.button.black{float:right;margin-right:0}.mec-wrap .threedaydigits .days .flip-clock-label{right:-100px}@media only screen and (min-width:320px) and (max-width:767px){.mec-wrap .flip-clock-wrapper ul{width:29px!important}.mec-wrap .flip-clock-wrapper ul li a div div.inn{font-size:25px!important}.mec-wrap .flip-clock-divider .flip-clock-label{left:0;font-weight:300}.mec-wrap span.flip-clock-divider{width:12px}}@media only screen and (min-width:320px) and (max-width:480px){.mec-wrap .flip-clock-wrapper ul{width:29px!important}.mec-wrap .flip-clock-wrapper ul li a div div.inn{font-size:25px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}.mec-wrap span.flip-clock-divider:first-child{width:0}.mec-wrap span.flip-clock-divider{width:20px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 18%}}@media screen and (min-width:960px) and (max-width:1200px){.mec-wrap .threedaydigits ul{height:50px;width:47px}}@media screen and (min-width:480px) and (max-width:768px){.mec-wrap .threedaydigits ul{height:48px;width:26px!important}.mec-wrap .threedaydigits .flip-clock-label{font-size:8px;left:-8px}}@media screen and (min-width:320px) and (max-width:480px){.mec-wrap .threedaydigits ul{height:48px;width:22px!important}}.mec-wrap .flip-clock-wrapper *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;-o-box-sizing:border-box;box-sizing:border-box;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden}.mec-wrap .flip-clock-wrapper a{cursor:pointer;text-decoration:none;color:#ccc}.mec-wrap .flip-clock-wrapper a:hover{color:#fff}.mec-wrap .flip-clock-wrapper ul{list-style:none}.flip-clock-wrapper.clearfix:after,.mec-wrap .flip-clock-wrapper.clearfix:before{content:" ";display:table}.mec-wrap .flip-clock-wrapper.clearfix:after{clear:both}.mec-wrap .flip-clock-wrapper{font:normal 11px "helvetica neue",helvetica,sans-serif;-webkit-user-select:none}.mec-wrap .flip-clock-meridium{background:0 0!important;box-shadow:0 0 0!important;font-size:36px!important}.mec-wrap .flip-clock-meridium a{color:#313333}.mec-wrap .flip-clock-wrapper{text-align:center;position:relative;display:inline-block;padding-bottom:10px}.flip-clock-wrapper:after,.mec-wrap .flip-clock-wrapper:before{content:" ";display:table}.mec-wrap .flip-clock-wrapper:after{clear:both}.mec-wrap .flip-clock-wrapper ul{position:relative;float:left;margin:2px;width:50px;height:50px;font-size:80px;font-weight:700;line-height:87px;border-radius:3px;background:rgba(0,0,0,.21)}.mec-wrap .flip-clock-wrapper ul li{z-index:1;position:absolute;left:0;top:0;width:100%;height:100%;line-height:54px;text-decoration:none!important}.mec-wrap .flip-clock-wrapper ul li:first-child{z-index:2}.mec-wrap .flip-clock-wrapper ul li a{display:block;height:100%;-webkit-perspective:200px;-moz-perspective:200px;perspective:200px;margin:0!important;overflow:visible!important;cursor:default!important}.mec-wrap .flip-clock-wrapper ul li a div{z-index:1;position:absolute;left:0;width:100%;height:50%;font-size:80px;overflow:hidden;outline:1px solid transparent}.mec-wrap .flip-clock-wrapper ul li a div .shadow{position:absolute;width:100%;height:100%;z-index:2}.mec-wrap .flip-clock-wrapper ul li a div.up{-webkit-transform-origin:50% 100%;-moz-transform-origin:50% 100%;-ms-transform-origin:50% 100%;-o-transform-origin:50% 100%;transform-origin:50% 100%;top:0}.mec-wrap .flip-clock-wrapper ul li a div.up:after{content:"";position:absolute;top:24px;left:0;z-index:5;width:100%;height:3px;background-color:rgba(0,0,0,.12)}.mec-wrap .flip-clock-wrapper ul li a div.down{-webkit-transform-origin:50% 0;-moz-transform-origin:50% 0;-ms-transform-origin:50% 0;-o-transform-origin:50% 0;transform-origin:50% 0;bottom:0;border-bottom-left-radius:3px;border-bottom-right-radius:3px}.mec-wrap .flip-clock-wrapper ul li a div div.inn{position:absolute;left:0;z-index:1;width:100%;height:200%;color:#fff;text-shadow:0 0 2px rgba(0,0,0,.25);text-align:center;background-color:#40d9f1;border-radius:3px;font-size:48px}.mec-wrap .flip-clock-wrapper ul li a div.up div.inn{top:0}.mec-wrap .flip-clock-wrapper ul li a div.down div.inn{bottom:0}.mec-wrap .flip-clock-wrapper ul.play li.flip-clock-before{z-index:3}.mec-wrap .flip-clock-wrapper .flip{box-shadow:0 2px 5px rgba(0,0,0,.17)}.mec-wrap .flip-clock-wrapper ul.play li.flip-clock-active{-webkit-animation:asd .5s .5s linear both;-moz-animation:asd .5s .5s linear both;animation:asd .5s .5s linear both;z-index:5}.mec-wrap .flip-clock-divider{float:left;display:inline-block;position:relative;width:18px;height:62px}.mec-wrap .flip-clock-divider:first-child{width:0}.mec-wrap .flip-clock-dot{display:none;background:#323434;width:10px;height:10px;position:absolute;border-radius:50%;box-shadow:0 0 5px rgba(0,0,0,.5);left:5px}.mec-wrap .flip-clock-divider .flip-clock-label{position:absolute;bottom:-1.5em;right:-71px;color:#101010;font-weight:700;text-shadow:none;text-transform:uppercase}.mec-wrap .blox.dark .flip-clock-divider .flip-clock-label{color:#8a8a8a}.mec-wrap .flip-clock-divider.seconds .flip-clock-label{right:-82px}.mec-wrap .flip-clock-dot.top{top:30px}.mec-wrap .flip-clock-dot.bottom{bottom:30px}@-webkit-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@-moz-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@-o-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}.flip-clock-wrapper ul.play li.flip-clock-active .down{z-index:2;-webkit-animation:turn .5s .5s linear both;-moz-animation:turn .5s .5s linear both;animation:turn .5s .5s linear both}@-webkit-keyframes turn{0%{-webkit-transform:rotatex(90deg)}100%{-webkit-transform:rotatex(0)}}@-moz-keyframes turn{0%{-moz-transform:rotatex(90deg)}100%{-moz-transform:rotatex(0)}}@-o-keyframes turn{0%{-o-transform:rotatex(90deg)}100%{-o-transform:rotatex(0)}}@keyframes turn{0%{transform:rotatex(90deg)}100%{transform:rotatex(0)}}.flip-clock-wrapper ul.play li.flip-clock-before .up{z-index:2;-webkit-animation:turn2 .5s linear both;-moz-animation:turn2 .5s linear both;animation:turn2 .5s linear both}@-webkit-keyframes turn2{0%{-webkit-transform:rotatex(0)}100%{-webkit-transform:rotatex(-90deg)}}@-moz-keyframes turn2{0%{-moz-transform:rotatex(0)}100%{-moz-transform:rotatex(-90deg)}}@-o-keyframes turn2{0%{-o-transform:rotatex(0)}100%{-o-transform:rotatex(-90deg)}}@keyframes turn2{0%{transform:rotatex(0)}100%{transform:rotatex(-90deg)}}.flip-clock-wrapper ul li.flip-clock-active{z-index:3}.flip-clock-wrapper ul.play li.flip-clock-before .up .shadow{background:-moz-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.1)),color-stop(100%,rgba(64,64,64,.68)));background:linear,top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;background:-o-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-ms-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:linear,to bottom,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;-webkit-animation:show .5s linear both;-moz-animation:show .5s linear both;animation:show .5s linear both}.flip-clock-wrapper ul.play li.flip-clock-active .up .shadow{background:-moz-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.1)),color-stop(100%,rgba(64,64,64,.68)));background:linear,top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;background:-o-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-ms-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:linear,to bottom,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;-webkit-animation:hide .5s .3s linear both;-moz-animation:hide .5s .3s linear both;animation:hide .5s .3s linear both}.flip-clock-wrapper ul.play li.flip-clock-before .down .shadow{background:-moz-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(64,64,64,.68)),color-stop(100%,rgba(0,0,0,.1)));background:linear,top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;background:-o-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-ms-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:linear,to bottom,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;-webkit-animation:show .5s linear both;-moz-animation:show .5s linear both;animation:show .5s linear both}.flip-clock-wrapper ul.play li.flip-clock-active .down .shadow{background:-moz-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(64,64,64,.68)),color-stop(100%,rgba(0,0,0,.1)));background:linear,top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;background:-o-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-ms-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:linear,to bottom,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;-webkit-animation:hide .5s .3s linear both;-moz-animation:hide .5s .3s linear both;animation:hide .5s .2s linear both}@-webkit-keyframes show{0%{opacity:0}100%{opacity:1}}@-moz-keyframes show{0%{opacity:0}100%{opacity:1}}@-o-keyframes show{0%{opacity:0}100%{opacity:1}}@keyframes show{0%{opacity:0}100%{opacity:1}}@-webkit-keyframes hide{0%{opacity:1}100%{opacity:0}}@-moz-keyframes hide{0%{opacity:1}100%{opacity:0}}@-o-keyframes hide{0%{opacity:1}100%{opacity:0}}@keyframes hide{0%{opacity:1}100%{opacity:0}}@font-face{font-family:simple-line-icons;src:url(../fonts/Simple-Line-Icons.eot?v=2.3.1);src:url(../fonts/Simple-Line-Icons.eot?v=2.3.1#iefix) format('embedded-opentype'),url(../fonts/Simple-Line-Icons.woff2?v=2.3.1) format('woff2'),url(../fonts/Simple-Line-Icons.woff?v=2.3.1) format('woff'),url(../fonts/Simple-Line-Icons.ttf?v=2.3.1) format('truetype'),url(../fonts/Simple-Line-Icons.svg?v=2.3.1#simple-line-icons) format('svg');font-weight:400;font-style:normal}[class*=mec-sl-]{font-family:simple-line-icons;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.mec-sl-facebook:before{content:"\e00b"}.mec-sl-twitter:before{content:"\e009"}.mec-sl-google-plus:before{content:"\e60d"}.mec-sl-angle-left:before{content:"\e605"}.mec-sl-angle-right:before{content:"\e606"}.mec-sl-calendar:before{content:"\e075"}.mec-sl-clock-o:before{content:"\e081"}.mec-sl-home:before{content:"\e069"}.mec-sl-phone:before{content:"\e600"}.mec-sl-envelope:before{content:"\e086"}.mec-sl-sitemap:before{content:"\e037"}.mec-sl-map-marker:before{content:"\e096"}.mec-sl-floder:before{content:"\e089"}.mec-sl-wallet:before{content:"\e02a"}.mec-color,.mec-color-before :before,.mec-color-hover:hover,.mec-wrap .mec-color,.mec-wrap .mec-color-before :before,.mec-wrap .mec-color-hover:hover{color:#40d9f1}.mec-bg-color,.mec-bg-color-hover:hover,.mec-wrap .mec-bg-color,.mec-wrap .mec-bg-color-hover:hover{background-color:#40d9f1}.mec-border-color,.mec-border-color-hover:hover,.mec-wrap .mec-border-color,.mec-wrap .mec-border-color-hover:hover{border-color:#40d9f1}.mec-toggle-month-divider.mec-skin-list-events-container{border:1px solid #e8e8e8;margin-bottom:30px;background:#f8f8f8;box-shadow:0 2px 18px -1px rgba(0,0,0,.1);border-radius:2px}.mec-toggle-month-divider .mec-month-divider{margin:0;text-align:left;background:#fff;position:relative;cursor:pointer;border-top:1px solid #e8e8e8}.mec-toggle-month-divider .mec-month-divider span{padding:20px;border-bottom:1px solid #e8e8e8}.mec-toggle-month-divider .mec-month-divider i{position:absolute;right:20px;top:24px;font-size:20px;cursor:pointer}.mec-toggle-month-divider .mec-month-divider span:before{display:none}.mec-toggle-month-divider .mec-month-divider+article{margin-top:20px}.mec-toggle-month-divider .mec-wrap .mec-month-divider:first-of-type{border-top:none}.mec-toggle-month-divider .mec-event-list-accordion .mec-month-divider:not(:first-of-type)~article{display:none}.mec-skin-list-events-container:not(.mec-toggle-month-divider) .mec-month-divider i{display:none}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-month{display:inline-block;padding-top:0}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-date{font-size:14px;line-height:14px;float:none;display:inline-block;margin-right:0;font-weight:700}.mec-events-toggle .mec-toogle-inner-month-divider.mec-toggle-item-inner{padding:20px 60px 30px 15px}.mec-toogle-inner-month-divider .mec-toggle-month-inner-image{float:left;clear:right;width:100px;margin-right:20px;margin-left:10px}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-detail{margin-top:-6px}.mec-toogle-inner-month-divider .mec-toggle-item-col{float:none;width:100%;margin-top:10px;display:block;border:none}.mec-events-toggle .mec-toogle-inner-month-divider .mec-toggle-title{font-size:19px;display:block;padding-top:10px}@media only screen and (max-width:768px){.mec-events-toggle .mec-toogle-inner-month-divider .mec-toggle-title{font-size:14px;padding-top:0}.mec-toogle-inner-month-divider .mec-toggle-item-col{margin-top:0}.mec-toogle-inner-month-divider .mec-toggle-month-inner-image{width:70px}}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled:before,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-featured:before{z-index:1;position:absolute;top:25px;right:-37px;font-size:11px;letter-spacing:1px;text-transform:uppercase;background:#04de78;padding:2px 40px;color:#fff;-ms-transform:rotate(45deg);-webkit-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:.5s cubic-bezier(.25,.5,.06,.85);transition:.5s cubic-bezier(.25,.5,.06,.85);content:attr(data-style)}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-featured{overflow:hidden;position:relative}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled:before{background:#de0404}.mec-daily-view-date-events article:before,ul.mec-weekly-view-dates-events article:before{padding:7px 40px!important;top:27px!important}.mec-event-grid-classic article .mec-fc-style,.mec-event-grid-minimal article .mec-fc-style,.mec-event-grid-simple article .mec-fc-style,.mec-timetable-wrap article .mec-fc-style,.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article.mec-event-cover-modern .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{font-size:9px;letter-spacing:.5px;text-transform:uppercase;background:#04de78;padding:2px 7px;color:#fff;position:relative;margin-left:5px;border-radius:2px}.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-modern.mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-minimal article .mec-fc-style:before,.mec-event-grid-simple article .mec-fc-style:before,.mec-timetable-wrap article .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article .mec-fc-style:before,.mec-wrap .mec-event-list-modern article .mec-fc-style:before,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style:before{width:0;height:0;border-top:4px solid transparent!important;border-right:5px solid;border-bottom:4px solid transparent;margin:0;top:50%;left:-4px;transform:translateY(-4.5px);position:absolute;content:'';color:#04de78}.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-event-grid-classic article.mec-label-canceled:before,.mec-event-grid-classic article.mec-label-featured:before,.mec-event-grid-minimal article.mec-label-canceled:before,.mec-event-grid-minimal article.mec-label-featured:before,.mec-event-grid-simple article.mec-label-canceled:before,.mec-event-grid-simple article.mec-label-featured:before,.mec-timetable-wrap article.mec-label-canceled:before,.mec-timetable-wrap article.mec-label-featured:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled:before,.mec-wrap .mec-event-list-accordion article.mec-label-featured:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled:before,.mec-wrap .mec-event-list-modern article.mec-label-featured:before{display:none}.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{top:-3px;font-size:11px;margin-left:10px}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style:before,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-canceled:before,.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-featured:before{-ms-transform:none;-webkit-transform:none;transform:none;-webkit-transition:none;transition:none;top:271px;right:0}.mec-timetable-wrap article .mec-fc-style{top:-2px;font-size:10px}.mec-wrap article.mec-event-cover-modern .mec-fc-style{padding:5px 9px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:24px;display:inline-block;border-radius:2px}.mec-skin-grid-events-container .mec-wrap .mec-event-grid-clean .mec-event-article:before{-ms-transform:none;-webkit-transform:none;transform:none!important;-webkit-transition:none;transition:none;top:22px!important;right:22px!important;padding:0 10px!important}.mec-event-grid-minimal article .mec-fc-style,.mec-event-grid-simple article .mec-fc-style{top:-4px;font-size:10px;margin-left:10px}.mec-event-grid-classic article .mec-fc-style{padding:5px 20px;font-size:12px;margin-top:8px;display:inline-block}.mec-hourly-schedule-speaker-info{background:#fff;padding:30px;border:1px solid #e6e6e6;max-width:740px;width:740px;margin-left:-110px}.mec-hourly-schedule-speaker-thumbnail{float:left;max-width:30%;width:30%}.mec-hourly-schedule-speaker-name{font-weight:700;font-size:26px;line-height:1.2;color:#333;text-transform:uppercase}.mec-hourly-schedule-speaker-details{float:left;width:69%;padding-left:25px}.mec-hourly-schedule-speaker-job-title{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-hourly-schedule-speaker-description{font-size:14px;font-weight:400;color:#6d7683;line-height:1.7;text-align:left}.mec-hourly-schedule-speaker-contact-information a i{color:#6b6b6b;background:#ebebeb;line-height:29px;margin:9px 7px 9px 0;width:30px;height:30px;display:inline-block;text-align:center;transition:all .2s ease;font-size:15px;cursor:pointer}.mec-hourly-schedule-speaker-contact-information a i:hover{background:#222;color:#fff}@media only screen and (max-width:479px){.mec-hourly-schedule-speaker-thumbnail{float:none;max-width:none;margin-right:0;margin-bottom:15px;width:100%}.mec-hourly-schedule-speaker-thumbnail img{width:100%}.mec-hourly-schedule-speaker-details{padding-left:0}.mec-hourly-schedule-speaker-info{width:90%;margin:0 auto}}.mec-profile .mec-profile-bookings{border:2px solid #e6e6e6;text-align:center}.mec-profile .mec-profile-bookings tbody tr:first-child{background:#f7f7f7;font-weight:700;text-transform:capitalize}.mec-profile .mec-profile-bookings tbody tr{border-bottom:1px solid #e6e6e6;font-size:14px}.mec-profile .mec-profile-bookings tbody tr td{border:1px solid #e6e6e6;padding:10px;text-align:center;word-break:initial}.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:53%;text-align:left}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8) i{color:#fe686a}.mec-profile .mec-event-status{padding:5px 10px;color:#fff;border-radius:2px;font-size:12px;line-height:12px;letter-spacing:.4px}.mec-profile .mec-event-status.mec-book-confirmed{background:#50d477}.mec-profile .mec-event-status.mec-book-pending{background:#fcbe69}.mec-profile .mec-event-status.mec-book-rejected{background:#fe686a}.mec-profile .mec-event-date{font-size:12px;color:#888}.mec-event-date,.mec-event-status{text-align:center}.mec-event-date .mec-tooltip,.mec-event-status .mec-tooltip{position:relative;width:fit-content;margin:auto}.mec-profile i{font-size:15px;color:#008aff;vertical-align:text-bottom;margin-right:4px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{min-width:250px;max-width:300px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#000;color:#fff;font-weight:400;font-size:14px;letter-spacing:.5px;line-height:1.5;position:absolute;z-index:99999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #535a61;padding:5px 10px 6px;border-radius:8px;text-align:center;font-style:normal;opacity:0;visibility:hidden;display:none}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{font-size:13px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;letter-spacing:1.1px;font-weight:500}.mec-event-date .mec-tooltip:hover .box:after,.mec-event-status .mec-tooltip:hover .box:after{content:'';position:absolute;width:12px;height:12px;left:calc(50% - 12px);bottom:-12px;transform:translate(50%,-50%) rotate(-45deg);background-color:#000;box-shadow:0 8px 9px -4px #535a61}.mec-event-status .mec-tooltip .box{min-width:100px}.mec-event-status.mec-book-confirmed .mec-tooltip .box,.mec-event-status.mec-book-confirmed .mec-tooltip:hover .box:after{background-color:#50d477}.mec-event-status.mec-book-rejected .mec-tooltip .box,.mec-event-status.mec-book-rejected .mec-tooltip:hover .box:after{background-color:#fe686a}.mec-event-status.mec-book-pending .mec-tooltip .box,.mec-event-status.mec-book-pending .mec-tooltip:hover .box:after{background-color:#fcbe69}.mec-event-date .mec-tooltip:hover .box,.mec-event-status .mec-tooltip:hover .box{opacity:1;visibility:visible;display:block}.mec-profile .mec-event-status{padding:0}.mec-profile .mec-booking-number-of-attendees{font-size:13px;color:#888}.mec-profile .mec-booking-number-of-attendees i,.mec-profile .mec-profile-bookings-view-invoice i{font-size:15px;color:#008aff;vertical-align:text-bottom;margin-right:4px}.mec-booking-attendees{background:#fff;padding:10px}.mec-booking-attendees{width:850px;text-align:center}.mec-booking-attendees-wrapper{border:2px solid #e6e6e6;font-size:14px}.mec-booking-attendees-head{display:table;width:100%;background:#f7f7f7;border-bottom:1px solid #e6e6e6;font-weight:700}.mec-booking-attendees-head span,.mec-booking-attendees-head-content>span{vertical-align:middle;display:table-cell;padding:7px;border-right:1px solid #e6e6e6;font-size:12px}.mec-booking-attendees-head-content{display:table;width:100%;border-bottom:1px solid #e6e6e6}.mec-booking-attendees-wrapper .mec-booking-attendees-head-content:last-child{border:none}.mec-booking-attendees-head span:nth-child(1),.mec-booking-attendees-head-content>span:nth-child(1){width:4%}.mec-booking-attendees-head span:nth-child(2),.mec-booking-attendees-head-content>span:nth-child(2){width:20%}.mec-booking-attendees-head span:nth-child(3),.mec-booking-attendees-head-content>span:nth-child(3){width:24%}.mec-booking-attendees-head span:nth-child(4),.mec-booking-attendees-head-content>span:nth-child(4){width:26%}.mec-booking-attendees-head span:nth-child(5),.mec-booking-attendees-head-content>span:nth-child(5){width:26%}@media only screen and (max-width:759px){.mec-booking-attendees{width:470px}.mec-booking-attendees-head span,.mec-booking-attendees-head-content>span{word-break:break-all}}@media(max-width:1366px){.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:6%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:40%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:12%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:8%}}@media(max-width:1024px){.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:30%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:15%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:10%}}@media(max-width:780px){.mec-profile .mec-profile-bookings tbody tr,.mec-profile i{font-size:12px}.mec-event-date .mec-tooltip .box{min-width:200px}.mec-event-status .mec-tooltip .box{min-width:90px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{padding:4px 5px!important}.mec-profile .mec-profile-bookings tbody tr{font-size:12px}}@media(max-width:480px){.mec-profile .mec-booking-number-of-attendees,.mec-profile .mec-profile-bookings tbody tr,.mec-profile i{font-size:8px!important}.mec-profile .mec-profile-bookings tbody tr td{padding:3px}.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:19%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:12%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:18%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:13%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:13%}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{font-size:8px}.mec-event-date .mec-tooltip .box{min-width:75px}.mec-event-status .mec-tooltip .box{min-width:70px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{padding:4px 5px!important}}.mec-woo-booking-checkout{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;border-radius:0;margin-bottom:6px;min-width:170px;margin-top:5px;text-align:center}.mec-woo-booking-checkout:hover{background:#222;color:#fff}.mec-woo-booking-checkout:focus,.mec-woo-booking-checkout:visited{color:#fff}.single-mec-events .lity-container{max-width:480px;width:480px}.lity-content .mec-events-meta-group-booking{width:100%;padding:20px 50px;background:#fff}.lity-content .mec-events-meta-group-booking .mec-booking form>h4{text-transform:uppercase;font-size:15px;font-weight:700;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative;text-align:center;line-height:1.2;margin-bottom:10px}.lity-content .mec-events-meta-group-booking .mec-booking form>h4:before{padding:1px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-35px;left:50%}.lity-content .mec-events-meta-group-booking .mec-event-ticket-available,.lity-content .mec-events-meta-group-booking .mec-event-ticket-name,.lity-content .mec-events-meta-group-booking .mec-event-ticket-price,.lity-content .mec-events-meta-group-booking .mec-ticket-variation-name,.lity-content .mec-events-meta-group-booking .mec-ticket-variation-price,.lity-content .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;clear:none;padding:5px 1em 3px 0;display:inline-block}.lity-content .mec-events-meta-group-booking .mec-event-ticket-available{margin-bottom:12px}.lity-content .mec-events-meta-group-booking select{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both;font-family:Montserrat,Helvetica,Arial,sans-serif}.lity-content .mec-events-meta-group-booking input[type=email]{color:#888;border:1px solid #e1e1e1;font-size:14px;display:block;width:100%;outline:0}.lity-content .mec-events-meta-group-booking input{margin-bottom:10px!important}.lity-content .mec-book-ticket-variation h5{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:0;clear:none;padding:5px 1em 3px 0;display:inline-block;text-transform:capitalize;font-family:Montserrat,Helvetica,Arial,sans-serif}.lity-content ul.mec-book-tickets-container{padding:0}.lity-content .mec-events-meta-group-booking input[type=email],.lity-content .mec-events-meta-group-booking input[type=number],.lity-content .mec-events-meta-group-booking input[type=text]{outline:0;font-family:Montserrat,Helvetica,Arial,sans-serif;display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both;margin-bottom:2px!important}.lity-content button[type=submit]{position:relative;border:none;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;min-width:170px;margin-top:5px;border-radius:0;margin-bottom:6px}.lity-content button[type=submit]:hover{background:#222}.lity-content .mec-book-tickets-container li{list-style:none}.lity-content .mec-events-meta-group-booking #mec_book_payment_form h4,.lity-content .mec-events-meta-group-booking li h4{font-size:19px;font-weight:700}.lity-content .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li{width:50%}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li:nth-child(even){border:none}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li span{display:block}.lity-content .mec-events-meta-group-booking button[type=submit]:after{display:none;font-family:simple-line-icons;content:"\e098";margin-left:4px;-webkit-animation:rotating 1.2s linear infinite;-moz-animation:rotating 1.2s linear infinite;-ms-animation:rotating 1.2s linear infinite;-o-animation:rotating 1.2s linear infinite;animation:rotating 1.2s linear infinite}.lity-content .mec-events-meta-group-booking button[type=submit].loading:after{display:inline-block}@media only screen and (max-width:480px){.lity-content .mec-events-meta-group-booking{padding:20px;width:340px;margin:0 auto}}.mec-events-meta-group-booking{position:relative}.mec-cover-loader:after{content:'';position:absolute;top:0;right:0;left:0;bottom:0;background:rgba(255,255,255,.5);z-index:99999}.mec-loader{background:rgba(0,0,0,0);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);z-index:9}.mec-loader,.mec-loader:after{border-radius:50%;width:5em;height:5em;z-index:999999999999}.mec-loader{font-size:10px;text-indent:-9999em;border-top:.5em solid rgba(0,0,0,.2);border-right:.5em solid rgba(0,0,0,.2);border-bottom:.5em solid rgba(0,0,0,.2);border-left:.5em solid #fff;-webkit-transform:translateZ(0);-ms-transform:translateZ(0);transform:translateZ(0);-webkit-animation:mecloader 1.1s infinite linear;animation:mecloader 1.1s infinite linear}@-webkit-keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.mec-google-recaptcha{margin:0 0 20px 16px}.mec-wrap *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap :after,.mec-wrap :before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap .clearfix:after,.mec-wrap .clearfix:before{content:'\0020';display:block;overflow:hidden;visibility:hidden;width:0;height:0}.mec-wrap .clearfix:after{clear:both}.mec-wrap .clearfix{zoom:1}.mec-wrap .clear,.mec-wrap .clr{clear:both;display:block;overflow:hidden;visibility:hidden}.mec-wrap .clr{visibility:visible;overflow:visible}.mec-container [class*=col-] img{max-width:100%}.mec-container{margin-right:auto;margin-left:auto;padding-left:10px;padding-right:10px}.mec-container:after,.mec-container:before{content:" ";display:table}.mec-container:after{clear:both}@media only screen and (max-width:479px){.mec-container{width:300px}}@media only screen and (min-width:480px) and (max-width:767px){.mec-container{width:420px}}@media only screen and (min-width:768px) and (max-width:960px){.mec-container{width:768px}}@media only screen and (min-width:961px){.mec-container{width:960px}}@media only screen and (min-width:1200px){.mec-container{width:1196px;padding-left:15px;padding-right:15px}}@media only screen and (min-width:1921px){.mec-container{max-width:1690px}}.mec-wrap .row{margin-left:-10px;margin-right:-10px}.mec-wrap .row:after,.mec-wrap .row:before{content:" ";display:table}.mec-wrap .row:after{clear:both}.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{position:relative;min-height:1px;padding-left:10px;padding-right:10px}@media only screen and (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{padding-left:15px;padding-right:15px}.mec-wrap .row{margin-left:-15px;margin-right:-15px}}.mec-container [class*=col-].alpha{padding-left:0}.mec-container [class*=col-].omega{padding-right:0}.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{float:left}.mec-wrap .col-xs-12{width:100%}.mec-wrap .col-xs-11{width:91.66666666666666%}.mec-wrap .col-xs-10{width:83.33333333333334%}.mec-wrap .col-xs-9{width:75%}.mec-wrap .col-xs-8{width:66.66666666666666%}.mec-wrap .col-xs-7{width:58.333333333333336%}.mec-wrap .col-xs-6{width:50%}.mec-wrap .col-xs-5{width:41.66666666666667%}.mec-wrap .col-xs-4{width:33.33333333333333%}.mec-wrap .col-xs-3{width:25%}.mec-wrap .col-xs-2{width:16.666666666666664%}.mec-wrap .col-xs-1{width:8.333333333333332%}@media (min-width:768px){.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9{float:left}.mec-wrap .col-sm-12{width:100%}.mec-wrap .col-sm-11{width:91.66666666666666%}.mec-wrap .col-sm-10{width:83.33333333333334%}.mec-wrap .col-sm-9{width:75%}.mec-wrap .col-sm-8{width:66.66666666666666%}.mec-wrap .col-sm-7{width:58.333333333333336%}.mec-wrap .col-sm-6{width:50%}.mec-wrap .col-sm-5{width:41.66666666666667%}.mec-wrap .col-sm-4{width:33.33333333333333%}.mec-wrap .col-sm-3{width:25%}.mec-wrap .col-sm-2{width:16.666666666666664%}.mec-wrap .col-sm-1{width:8.333333333333332%}}@media (min-width:961px){.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9{float:left}.mec-wrap .col-md-12{width:100%}.mec-wrap .col-md-11{width:91.66666666666666%}.mec-wrap .col-md-10{width:83.33333333333334%}.mec-wrap .col-md-9{width:75%}.mec-wrap .col-md-8{width:66.66666666666666%}.mec-wrap .col-md-7{width:58.333333333333336%}.mec-wrap .col-md-6{width:50%}.mec-wrap .col-md-5{width:41.66666666666667%}.mec-wrap .col-md-4{width:33.33333333333333%}.mec-wrap .col-md-3{width:25%}.mec-wrap .col-md-2{width:16.666666666666664%}.mec-wrap .col-md-1{width:8.333333333333332%}}@media (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9{float:left}.mec-wrap .col-lg-12{width:100%}.mec-wrap .col-lg-11{width:91.66666666666666%}.mec-wrap .col-lg-10{width:83.33333333333334%}.mec-wrap .col-lg-9{width:75%}.mec-wrap .col-lg-8{width:66.66666666666666%}.mec-wrap .col-lg-7{width:58.333333333333336%}.mec-wrap .col-lg-6{width:50%}.mec-wrap .col-lg-5{width:41.66666666666667%}.mec-wrap .col-lg-4{width:33.33333333333333%}.mec-wrap .col-lg-3{width:25%}.mec-wrap .col-lg-2{width:16.666666666666664%}.mec-wrap .col-lg-1{width:8.333333333333332%}}#mec_woo_add_to_cart_btn{min-width:170px;margin-top:5px;text-align:center}.mec-breadcrumbs{border-radius:2px;padding:9px 15px 6px;font-size:11px;color:#8d8d8d;letter-spacing:0;text-transform:none;font-weight:500;margin:auto 15px 33px 15px;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.025)}.mec-breadcrumbs-modern{margin:auto 0 33px 0}.mec-breadcrumbs a{color:#000;padding-left:4px}.mec-breadcrumbs a:hover{text-decoration:underline}.mec-breadcrumbs i{font-size:8px;margin:0 0 0 4px}.mec-breadcrumbs .container{padding-left:20px}.mec-content-notification a{margin-left:5px}.mec-content-notification{background:#f7f7f7;padding:10px 10px 10px;border:1px solid #e8e8e8}.mec-content-notification p{margin-bottom:0}.mec-fes-form #mec-advanced-wraper div:first-child>ul{border:1px solid #cfeff5;width:auto;box-shadow:0 1px 4px -2px #cfeff5;display:block;margin:5px 0 10px;padding:5px 0;border-radius:2px}.mec-fes-form #mec-advanced-wraper div:first-child>ul:last-of-type{margin-bottom:35px}#mec-advanced-wraper div:first-child>ul span{display:none}#mec-advanced-wraper div:first-child>ul *{display:inline-block;background:#fff;font-size:12px;color:#717273;text-align:center}#mec-advanced-wraper div:first-child>ul>li{width:60px;font-weight:700;margin:0 10px 0 0;padding:4px 0;border-right:1px solid #cfeff5}#mec-advanced-wraper div:first-child>ul>ul>li{margin:0;padding:2px 10px;cursor:pointer;border-radius:2px;transition:all .18s ease}.mec-fes-form #mec-advanced-wraper div:first-child>ul>ul>li.mec-active,.mec-fes-form #mec-advanced-wraper div:first-child>ul>ul>li:hover{background:#40d9f1!important;box-shadow:0 1px 9px -3px #40d9f1;color:#fff!important}.mec-search-bar-wrap .mec-search-form .mec-text-input-search{width:83%}.mec-search-bar-wrap .mec-search-form .mec-ajax-search-result .mec-text-input-search{width:100%;float:none}.mec-search-bar-wrap input#mec-search-bar-input{width:calc(100% - 84%);margin-left:11px;background:#40d9f1;Color:#fff;font-weight:400}.mec-text-input-search+input#mec-search-bar-input{margin-left:-3px}.mec-search-bar-wrap input#mec-search-bar-input:hover{background:#000}.mec-wrap.mec-search-bar-wrap .mec-totalcal-box input{float:none}@media(max-width:768px){.mec-search-bar-wrap .mec-search-form .mec-text-input-search{display:inline-block}}@media(max-width:480px){.mec-search-bar-wrap .mec-search-form .mec-text-input-search{width:64%}.mec-search-bar-wrap input#mec-search-bar-input{width:calc(100% - 67%)}}.mec-wrap.mec-search-bar-wrap .mec-totalcal-box{overflow:visible}.mec-ajax-search-result{position:relative}.mec-search-bar-wrap.mec-wrap .mec-totalcal-box input[type=text]{width:calc(100% - 36px)}.mec-search-bar-wrap.mec-wrap .mec-totalcal-box input[type=text]:focus{border-color:#efefef}div#mec-ajax-search-result-wrap{position:absolute;top:100%;opacity:0;visibility:hidden;width:calc(100% - 2px);min-height:50px;left:0;right:0;padding:0 10px;z-index:9999;transition:all .3s ease}.mec-ajax-search-result-events{background:#fff;padding:10px 20px;border:1px solid #efefef;border-top:none}.mec-ajax-search-result-events article:first-of-type{border:none}article.mec-search-bar-result{text-align:left;margin-bottom:0;padding-bottom:25px;padding-top:26px;border-top:1px solid #efefef;transition:all .33s ease;clear:both}.mec-search-bar-result .mec-event-list-search-bar-date{width:64px;height:64px;margin-right:10px;font-size:11px;text-transform:uppercase;float:left;text-align:center;padding-top:2px}.mec-search-bar-result .mec-event-list-search-bar-date span{font-size:40px;line-height:30px;font-weight:700;display:block;margin-bottom:6px;letter-spacing:1px}.mec-search-bar-result .mec-event-image{float:left;margin-right:20px;width:65px;height:auto}.mec-search-bar-result .mec-event-time{font-size:11px;line-height:1.1;margin:0}.mec-search-bar-result .mec-event-time i{color:#40d9f1;float:none;width:unset;height:unset;font-size:inherit;margin-right:3px;border:none;padding:0}.mec-search-bar-result .mec-event-title{font-size:13px;padding:0;margin:10px 0 8px;font-weight:700;text-transform:uppercase}.mec-search-bar-result .mec-event-title a{text-decoration:none;color:#494949;transition:color .3s ease}.mec-search-bar-result .mec-event-detail{font-size:13px;line-height:1.3;font-family:Roboto,sans-serif;color:#9a9a9a;margin-bottom:0}.mec-wrap.mec-modern-search-bar .mec-totalcal-box{background:rgba(255,255,255,.87);border:none;padding:35px;border-radius:3px;box-shadow:0 3px 13px rgba(0,0,0,.4);position:relative}.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=search],.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=text]{height:58px;background:rgba(255,255,255,.99);border-radius:2px;box-shadow:0 4px 8px rgba(0,0,0,.1) inset;border:1px solid #ccc;width:100%;padding-left:45px;padding-right:13px;font-size:16px}.mec-wrap.mec-modern-search-bar .mec-totalcal-box .mec-text-input-search i{position:absolute;background:0 0;border:none;font-size:21px;left:15px;top:calc(50% - 19px);color:#40d9f1}.mec-wrap.mec-modern-search-bar .mec-text-input-search{position:relative;height:58px}.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=submit]{height:58px;border:none;border-radius:2px;background:#fc4a1a;font-size:17px;font-weight:700!important}.mec-wrap.mec-modern-search-bar .mec-text-input-search+input#mec-search-bar-input{margin-left:0}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{height:45px;background:rgba(255,255,255,.99);border-radius:2px;box-shadow:0 4px 8px rgba(0,0,0,.1) inset;border:1px solid #ccc;padding-right:13px;font-size:16px;border-left:0}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap i{height:45px;background:#ffff;border-radius:2px 0 0 2px;box-shadow:none;border:1px solid #ccc;font-size:15px;padding-top:14px;border-right:0;color:#40d9f1;margin-right:-1px}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap{min-height:64px}@media(max-width:768px){.mec-wrap.mec-modern-search-bar .mec-search-form .mec-text-input-search{width:70%}.mec-wrap.mec-modern-search-bar input#mec-search-bar-input{width:calc(100% - 72%)}}@media(max-width:480px){.mec-wrap.mec-modern-search-bar input#mec-search-bar-input{width:92%;padding:0 10px;position:relative;display:block;margin-left:11px}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-text-input-search{width:100%;margin-bottom:20px}.mec-wrap.mec-modern-search-bar .mec-text-input-search+input#mec-search-bar-input{margin-left:10px}}.mec-related-events-wrap{margin-top:50px}.mec-related-events-wrap h3.mec-rec-events-title:before{content:"";background:#2c2f34;width:46px;height:4px;position:absolute;top:59px;left:0}.mec-related-events-wrap h3.mec-rec-events-title{font-size:21px;font-weight:600;padding:17px 0;margin-bottom:28px;text-transform:uppercase;border-bottom:1px solid #e8e8e8;position:relative}.mec-related-event-post figure{margin:0}.mec-related-event-post figure img{width:100%}.mec-related-event-content{background-color:#fff;margin:-27px 30px 15px;position:relative;max-width:90%;padding:13px 21px 16px 19px}.mec-related-event-content h5 a{font-size:16px;color:#121212;font-weight:600;transition:all .3s ease}.mec-fes-form-cntt #mec-organizer-payments ul{list-style:none;background:0 0;margin:0}.mec-fes-form-cntt #mec-organizer-payments ul li h4{background:0 0;letter-spacing:.2px;display:inline-block;padding-left:0!important;padding-bottom:10px!important;margin:0;margin-bottom:1px;letter-spacing:1px;text-transform:capitalize;padding-top:1px}.mec-fes-form-cntt #mec-organizer-payments ul>li{width:100%;display:inline-block;vertical-align:top;padding:0;margin:0}#mec-login-form.mec-login-form{width:100%;background:#fff;padding:20px;margin:0 auto;text-align:center;position:relative}#mec-login-form.mec-login-form .mec-login-input{display:block;width:286px;margin:0 auto;margin-bottom:12px}#mec-login-form.mec-login-form .mec-login-forgotpassword{display:inline-block}.mec-login-forgotpassword a{color:#000}#mec-login-form.mec-login-form .mec-login-submit{float:right;text-align:right;width:49%;padding-right:2px}#mec-login-form.mec-login-form .mec-login-input input{border:none;box-shadow:none;background:#fff;color:#ccc;border-left:1px solid #e6e6e6;padding:0;height:100%;background-image:none!important;padding-left:10px;padding-right:0;width:222px;margin-left:0;clear:none;float:left}#mec-login-form.mec-login-form .mec-login-input label{border:1px solid #e6e6e6;height:52px;display:inline-block;padding:0;border-radius:3px;overflow:hidden;box-shadow:0 2px 4px rgba(0,0,0,.04)}#mec-login-form.mec-login-form .mec-login-input label i{padding:15px 13px 17px 16px;vertical-align:middle;font-size:20px;width:50px;color:#c5cad0;background:#fafafa;margin-right:0;float:left}#mec-login-form.mec-login-form .mec-login-forgotpassword{float:left;width:49%;text-align:left;padding-top:10px;font-size:13px;padding-left:2px}#mec-login-form.mec-login-form button{width:120px;height:44px;border:none;color:#fff;border-radius:3px;font-size:12px;font-weight:700;letter-spacing:1px;text-transform:uppercase;transition:all .22s ease;margin:0;min-width:unset}.mec-login-form button{box-shadow:0 4px 22px -7px #40d9f1;background-color:#40d9f1}#mec-login-form.mec-login-form button:hover{background:#222;box-shadow:0 3px 14px -4px #333}#mec-login-form.mec-login-form .mec-login-form-footer{width:286px;margin:0 auto;margin-top:20px;clear:both;position:relative;display:block;min-height:50px}#mec-login-form.mec-login-form .mec-ajax-login-loading{position:absolute;background:#ffffffc2;left:0;right:0;top:0;bottom:0}#mec-login-form.mec-login-form .lds-ripple{position:absolute;width:64px;height:64px;top:calc(50% - 23px);left:calc(50% - 23px)}#mec-login-form.mec-login-form .lds-ripple div{position:absolute;border:4px solid #40d9f1;opacity:1;border-radius:50%;animation:lds-ripple 1.2s cubic-bezier(0,.2,.1,.8) infinite}#mec-login-form.mec-login-form .lds-ripple div:nth-child(2){animation-delay:-.5s}#mec-login-form.mec-login-form .mec-ajax-login-loading-text{position:absolute;min-width:200px;top:calc(50% - 18px);left:calc(50% - 124px);color:#fff;padding:10px 22px;border-radius:3px;background:#fff;height:47px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text strong{color:#3fcc60}#mec-login-form.mec-login-form .mec-ajax-login-loading-text strong:before{content:"";position:absolute;top:8px;left:1px;border-right:2px solid #3fcc60;border-bottom:2px solid #3acb5c;transform:rotate(45deg);transform-origin:0 100%;color:#000;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards;width:8px;height:14px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong:after{content:"";position:absolute;top:14px;left:5px;border-bottom:2px solid #ff5d39;transform:rotate(45deg);transform-origin:0 100%;color:#000;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards;width:14px;height:4px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong{color:#ff5d39}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong:before{border-color:#ff5d39;border-bottom:none}@keyframes lds-ripple{0%{top:28px;left:28px;width:0;height:0;opacity:1}100%{top:-1px;left:-1px;width:58px;height:58px;opacity:0}}.mec-book-form-gateway-checkout [id*=mec_do_transaction_stripe_] .mec-form-row:first-child{margin-bottom:20px}.mec-events-meta-group-booking .StripeElement{box-sizing:border-box;height:40px;padding:10px 12px;border:1px solid transparent;border-radius:4px;background-color:#fff;box-shadow:0 1px 3px 0 #e6ebf1;-webkit-transition:box-shadow 150ms ease;transition:box-shadow 150ms ease;margin-bottom:20px;background:#fff}.mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text]{box-sizing:border-box;height:40px;padding:10px 12px;border:0!important;border-radius:4px;background-color:#fff;box-shadow:0 1px 3px 0 #e6ebf1!important;-webkit-transition:box-shadow 150ms ease;transition:box-shadow 150ms ease;margin-bottom:20px;background:#fff!important}.mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text]:focus{outline:0}.mec-events-meta-group-booking .StripeElement--focus{box-shadow:0 1px 3px 0 #cfd7df}.mec-events-meta-group-booking .StripeElement--invalid{border-color:#fa755a}.mec-events-meta-group-booking .StripeElement--webkit-autofill{background-color:#fefde5!important}.mec-booking-tab-content .button,.mec-booking-tab-content .mec-reg-field-add-option,.mec-fes-form .mec-form-row .button:not(.wp-color-result),.mec-fes-form input[type=file],ul#mec_reg_form_fields li .mec_reg_field_remove{height:40px;margin-top:1px;text-decoration:none;font-size:14px;line-height:34px!important;margin:0;padding:0 15px 1px!important;text-transform:none;letter-spacing:0;font-weight:600;color:#40d9f1;background:#fff;border-radius:3px;margin-right:8px;border:2px solid #cfeff5;box-shadow:0 2px 6px -3px #cfeff5}.mec-booking-tab-content .button:hover,.mec-booking-tab-content .mec-reg-field-add-option:hover,.mec-fes-form .mec-form-row .button:not(.wp-color-result):hover{background:#40d9f1;color:#fff;border-color:#40d9f1;box-shadow:0 2px 6px -3px #40d9f1}.mec-fes-form .mec-form-row input+button.button{vertical-align:top}.mec-fes-form .mec-form-row .quicktags-toolbar input.button.button-small{border-width:1px;padding:0 7px;color:#80c6d2;font-weight:400;margin:1px;transform:none}.mec-fes-form input[type=file]{max-width:166px;text-align:center;height:44px;transition:all .2s ease;border-radius:5px!important;border:2px dashed #b8e9f3}.mec-fes-form input[type=file]:hover{box-shadow:0 2px 16px -3px #cfeff5}.mec-fes-form input[type=file]::-webkit-file-upload-button{visibility:hidden;width:1px;height:38px}.mec-fes-form input[type=file]::-moz-file-upload-button{visibility:hidden;width:1px;height:38px}.mec-fes-form .mec-meta-box-fields>label{padding:0}#mec_reg_form_fields li{list-style:none}ul#mec_reg_form_fields{padding:0;margin:0}ul#mec_reg_form_fields li{background:#f8feff;margin:6px -20px;padding:15px 25px 10px;width:auto;font-size:13px;border-top:1px solid #e8fafd;border-bottom:1px solid #e8fafd;position:relative}ul#mec_reg_form_fields li .mec_reg_field_remove{position:absolute;right:10px;top:10px;margin:0;padding:6px 8px!important;font-size:11px;line-height:12px!important;min-height:10px;height:auto;display:block;cursor:pointer;color:#ea6485;border-color:#ffd2dd;letter-spacing:.4px}ul#mec_reg_form_fields li .mec_reg_field_remove:hover{background:#ea6485;color:#fff;border-color:#ea6485;box-shadow:0 2px 6px -3px #ea6485}#mec_reg_form_fields input[type=checkbox],#mec_reg_form_fields input[type=radio],.mec-form-row input[type=checkbox],.mec-form-row input[type=radio]{background-color:#fff;border:1px solid #cfeff5;box-shadow:0 1px 3px -1px #cfeff5;padding:9px;border-radius:3px;min-width:24px;min-height:24px;display:inline-block!important;vertical-align:middle;float:none;transition:all .18s ease;outline:0;margin:1px 4px 4px 0;text-align:left;cursor:pointer;-webkit-appearance:none;-moz-appearance:none}#mec_reg_form_fields input[type=checkbox]:focus,#mec_reg_form_fields input[type=radio]:focus,.mec-form-row input[type=checkbox]:focus,.mec-form-row input[type=radio]:focus{outline:0}#mec_reg_form_fields input[type=radio],.mec-form-row input[type=radio]{-webkit-appearance:none;border-radius:20px!important;min-width:20px;min-height:20px;margin:0 0 4px 0;vertical-align:middle}#mec_reg_form_fields input[type=checkbox]:hover,#mec_reg_form_fields input[type=radio]:hover,.mec-form-row input[type=checkbox]:hover,.mec-form-row input[type=radio]:hover{border-color:#40d9f1}#mec_reg_form_fields input[type=checkbox]:checked,#mec_reg_form_fields input[type=radio]:checked,.mec-fes-form .mec-form-row input[type=checkbox]:checked,.mec-fes-form .mec-form-row input[type=radio]:checked{box-shadow:0 1px 6px -2px #40d9f1;border-color:#40d9f1;background:#40d9f1!important;border-radius:2px;position:relative}.mec-form-row input[type=radio]:checked{box-shadow:0 1px 6px -2px #40d9f1,inset 0 0 0 3px #fff!important}#mec_reg_form_fields input[type=checkbox]:checked::before,.mec-form-row input[type=checkbox]:checked:before{content:"";font:normal;position:absolute;top:12px;left:5px;margin:0;vertical-align:middle;line-height:1;border-right:2px solid #fff!important;border-bottom:2px solid #fff!important;transform:rotate(45deg);transform-origin:0 100%;color:#fff;transition:all .2s ease;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards}@keyframes checkbox-check{0%{width:0;height:0;border-color:#fff;transform:translate3d(0,0,0) rotate(45deg)}33%{width:6px;height:0;transform:translate3d(0,0,0) rotate(45deg)}100%{width:6px;height:12px;border-color:#fff;transform:translate3d(0,-12px,0) rotate(45deg)}}#mec_reg_form_field_types .button{position:relative;outline:0;border-radius:50px;padding:2px 21px 2px 31px!important;line-height:1;font-size:11px;font-weight:600;color:#40d9f1;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 2px 6px -3px #40d9f1;border:2px solid #cfeff5}#mec_fes_location_remove_image_button,#mec_fes_organizer_remove_image_button,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button,#mec_meta_box_tickets_form [id^=mec_ticket_row] button,#mec_reg_form_field_types .button.red{color:#ea6485;box-shadow:0 2px 6px -3px #ea6485;background:#fff;border-color:#ffd2dd}#mec_fes_location_remove_image_button:hover,#mec_fes_organizer_remove_image_button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button:hover,#mec_meta_box_tickets_form [id^=mec_ticket_row] button:hover,#mec_reg_form_field_types .button.red:hover{background:#ea6485;color:#fff}#mec_reg_form_field_types .button:before{position:absolute;left:12px;color:#40d9f1;content:"\e095";font-family:simple-line-icons;font-size:13px;display:inline-block}#mec_reg_form_field_types .button.red:before{color:#ea6485}#mec_reg_form_field_types .button.red:hover:before,#mec_reg_form_field_types .button:hover:before{color:#fff}#mec_fes_location_remove_image_button:hover,#mec_fes_organizer_remove_image_button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button:hover,#mec_meta_box_tickets_form [id^=mec_ticket_row] button:hover,#mec_price_per_dates_container .button:hover,#mec_reg_form_field_types .button.red:hover{color:#fff;border:2px solid #ea6485}#mec_taxes_fees_container_toggle [id^=mec_remove_fee_button],#mec_ticket_variations_list [id^=mec_remove_ticket_variation_button]{color:#ea6485;border-color:#ffd2dd}#mec_taxes_fees_container_toggle [id^=mec_remove_fee_button]:hover,#mec_ticket_variations_list [id^=mec_remove_ticket_variation_button]:hover{color:#fff;border:2px solid #ea6485;background:#ea6485}#mec_fees_list [id^=mec_remove_fee_button],#mec_meta_box_ticket_variations_form .mec-form-row [id^=mec_remove_ticket_variation_button]{margin-left:14px!important}#mec_meta_box_hourly_schedule_days .mec-add-hourly-schedule-button{line-height:10px!important}#mec_meta_box_tickets_form [id^=mec_ticket_row] .mec_add_price_date_button{color:#40d9f1;box-shadow:0 2px 6px -3px #40d9f1;border:2px solid #cfeff5}#mec_meta_box_tickets_form [id^=mec_ticket_row] .mec_add_price_date_button:hover,#mec_reg_form_field_types .button:hover{color:#fff;border:2px solid #40d9f1;background:#40d9f1}.mec-form-row input+span.mec-tooltip,.mec-form-row select+span.mec-tooltip{bottom:10px}.mec-form-row label+span.mec-tooltip{bottom:8px}.mec-form-row textarea+span.mec-tooltip{bottom:auto;vertical-align:top;top:12px}.mec-form-row span+span.mec-tooltip{bottom:0;vertical-align:middle}.mec-form-row .mec-col-8 input[type=text],.mec-form-row .mec-col-8 select,.mec-form-row .mec-col-8 span.mec-archive-skins{vertical-align:top}.mec-form-row input:disabled{opacity:.6;background:#f6f6f6}.mec-form-row p{font-size:12px!important;line-height:18px!important;color:#97b2bb!important}.mec-form-row p.description{font-style:italic}.ui-datepicker.ui-widget{border:1px solid #e8e8e8;box-shadow:0 1px 9px rgba(0,0,0,.12);font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif}table.ui-datepicker-calendar{margin-bottom:0}.ui-datepicker-calendar th{font-weight:700;color:#4a4b4c}.ui-datepicker-calendar td,.ui-datepicker-calendar th,.ui-datepicker-calendar tr{border:none}.ui-datepicker.ui-widget select{font-weight:600;font-size:12px;display:inline-block;border-radius:2px;padding:2px 10px;margin:5px 3px;width:auto;min-height:20px;height:26px;border:1px solid #e3e3e3;box-shadow:inset 0 1px 3px rgba(0,0,0,.04)}.ui-datepicker.ui-widget table{border-spacing:2px;border:none}.ui-datepicker.ui-widget td,.ui-datepicker.ui-widget tr{padding:0;background:0 0!important}.ui-datepicker.ui-widget td a{color:#9a9b9c;font-weight:600;width:30px;height:30px;line-height:30px;display:inline-block;border-radius:33px;padding:0;background:#fff;transition:all .2s ease}.ui-datepicker.ui-widget td a.ui-state-active,.ui-datepicker.ui-widget td a:hover{background:#40d9f1;color:#fff}.ui-datepicker.ui-widget .ui-datepicker-next,.ui-datepicker.ui-widget .ui-datepicker-prev{color:#40d9f1;width:30px;height:30px;line-height:30px;display:inline-block;text-align:center;border-radius:33px;background:#ecfcff;transition:all .2s ease}.ui-datepicker.ui-widget .ui-datepicker-next:hover,.ui-datepicker.ui-widget .ui-datepicker-prev:hover{background:#fff;box-shadow:0 0 7px -3px rgba(0,0,0,.4)}.mec-fes-form .mec-tooltip .dashicons-before:before{color:#40d9f1}.mec-fes-form button[type=submit].mec-fes-sub-button{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;border-radius:3px;background:#40d9f1;color:#fff;height:54px;font-size:17px;font-weight:700;box-shadow:0 2px 8px -4px #40d9f1;display:block;transition:all .28s ease;text-transform:uppercase;margin:20px 0 0;padding:14px 20px;border:0;cursor:pointer;text-align:center;letter-spacing:.1em;line-height:1}.mec-fes-form button[type=submit].mec-fes-sub-button:hover{box-shadow:0 2px 12px -2px #40d9f1}.mec-fes-form button[type=submit].mec-fes-sub-button:focus{margin-bottom:-2px;background:#1dc2dc}.mec-fes-form .mec-title span.mec-dashicons{color:#40d9f1;float:left;margin-right:5px}.mec-fes-form .mec-tooltip .box h5{padding:14px 2px}#mec_fes_form,.mec-fes-form-top-actions{max-width:838px;margin:0 auto}@media only screen and (min-width:961px){.mec-fes-form .mec-fes-form-cntt{width:calc(100% - 300px);float:left;padding-right:20px;max-width:538px;display:block}.mec-fes-form .mec-fes-form-sdbr{width:300px}}.mec-fes-form .quicktags-toolbar,.mec-fes-form div.mce-toolbar-grp{background:#ecfcff;border-bottom:1px solid #cfeff5;box-shadow:0 1px 0 1px #cfeff5}.mec-fes-form .quicktags-toolbar{margin-right:-1px;border-top:1px solid #cfeff5}.mec-fes-form div.mce-statusbar{border-top-color:#cfeff5}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-listbox{border:1px solid #cfeff5;border-radius:3px}.mec-fes-form .mce-tinymce.mce-container.mce-panel{border:1px solid #cfeff5;box-shadow:0 2px 6px -3px #cfeff5;border-radius:2px 0 2px 2px}.mec-fes-form .wp-editor-tools .wp-media-buttons{transform:translateY(-6px);margin-top:-6px}.mec-fes-form .wp-editor-tabs{padding-right:0;margin-right:-2px}.mec-fes-form .wp-editor-tabs .wp-switch-editor{border-radius:3px 3px 0 0;border-color:#cfeff5;background:#fff;color:#96b8bd;border-bottom:1px solid #ecfcff}.mec-fes-form .html-active .switch-html,.mec-fes-form .tmce-active .switch-tmce,.mec-fes-form .wp-editor-tabs .wp-switch-editor:active{background:#ecfcff;color:#40d9f1}.mec-fes-form .wp-editor-container,.mec-fes-form div.mce-edit-area.mce-panel{border:none;box-shadow:none}.mec-fes-form .wp-editor-container textarea.wp-editor-area{max-width:100%}.mec-fes-form .mce-toolbar .mce-listbox button{font-size:12px;line-height:22px;color:#798f96}.mec-fes-form .mce-toolbar .mce-ico{color:#627f88}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-active,.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn:active,.mec-fes-form .qt-dfw.active{background:#fff;border-color:#40d9f1;box-shadow:inset 0 2px 6px -3px rgba(106,231,255,.7)}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-active .mce-ico{color:#40d9f1}body .mce-menu .mce-menu-item.mce-active.mce-menu-item-normal,body .mce-menu .mce-menu-item.mce-selected,body .mce-menu .mce-menu-item:focus,body .mce-menu .mce-menu-item:hover,body.mce-menu .mce-menu-item.mce-active.mce-menu-item-preview{background:#40d9f1;color:#fff}.mec-fes-form .mec-not-in-days-day{display:inline-block;padding:4px 32px 4px 15px;border-radius:33px;border:1px solid #cfeff5;box-shadow:0 1px 3px -1px #cfeff5;background:#fbfeff;color:#40d9f1;vertical-align:top}.mec-fes-form .mec-not-in-days-remove{display:inline-block;padding:0 1px 0 0;margin-left:-30px;vertical-align:sub;background:#ff918a;color:#fff;font-family:cursive;width:21px;height:21px;line-height:17px;text-align:center;border-radius:20px;cursor:pointer}.mec-fes-list ul li .mec-event-status{float:left;margin-right:10px;margin-left:0;font-size:11px;font-weight:400;letter-spacing:.3px;border-radius:3px;padding:4px 8px}.mec-fes-form .post-status.mec-book-confirmed:before,.mec-fes-list ul li .mec-event-status.mec-book-confirmed:before{content:"";margin:0;vertical-align:middle;line-height:1;border-right:2px solid #fff!important;border-bottom:2px solid #fff!important;transform:rotate(45deg);color:#fff;width:6px;height:12px;float:left;margin-right:6px}.mec-fes-list ul li .mec-fes-event-export a:before,.mec-fes-list ul li .mec-fes-event-remove:before,.mec-fes-list ul li .mec-fes-event-view a:before,.mec-fes-list-top-actions a:before{content:"\e054";font-family:simple-line-icons;font-size:13px;vertical-align:middle}.mec-fes-list ul li .mec-fes-event-view a:before{content:"\e087"}.mec-fes-list-top-actions a:before{content:"\e095";font-weight:400;margin-right:6px}.mec-fes-list ul li .mec-fes-event-export a:before{content:"\e083"}.mec-fes-form .post-status{border-radius:20px}.mec-fes-form .post-status.mec-book-confirmed:before{height:20px;width:9px;margin:3px 10px}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker-calendar th{height:auto;padding:0}.ui-datepicker .ui-datepicker-calendar td a,.ui-datepicker-calendar th{font-size:14px;line-height:30px}.mec-fes-form .description{font-size:16px}.mec-fes-form input[type=file]{text-align:left}.mec-fes-export-wrapper{width:640px;background:#f8feff;padding:40px 25px}.mec-fes-export-wrapper .mec-fes-btn-date{font-size:16px;line-height:44px;overflow:hidden}.mec-fes-export-wrapper .date-messgae{font-family:sans-serif;padding:2px 18px}.mec-fes-list ul li .mec-event-export-csv,.mec-fes-list ul li .mec-event-export-excel{font-size:12px;border:1px solid #40d9f1;padding:1px 4px;background:rgba(141,229,243,.18);border-radius:4px;color:#40d9f1;font-family:sans-serif;cursor:pointer;display:inline-block;height:26px;line-height:22px}.mec-export-badge{font-size:11px;color:#40d9f1;width:auto;height:24px;line-height:25px;display:inline-block;padding:0 8px;text-align:center;border-radius:3px;background:#ecfcff;transition:all .2s ease}.mec-fes-list ul li .mec-fes-event-export{font-size:11px;background:#f7f7f7;float:right;margin-left:5px}.mec-fes-list ul li .mec-fes-event-export:hover{cursor:pointer;background:#90f0e0;border-color:#4dc8cc}.mec-fes-export-wrapper ul{padding:0;width:100%;text-align:center}.mec-fes-export-wrapper ul li{list-style:none;display:inline-block;width:30%;padding:10px 15px 10px 32px;border-radius:3px;margin-bottom:15px;border:1px solid #cfeff5;box-shadow:0 2px 6px -4px #cfeff5;background:#fff;line-height:normal;margin-right:10px;position:relative;cursor:pointer;font-size:13px;line-height:1;transition:all .2s ease}.mec-fes-export-wrapper ul li:nth-child(3n+0){margin-right:0}.mec-fes-export-wrapper ul li:hover{box-shadow:0 2px 16px -1px #c6e8ef}.mec-fes-export-wrapper ul li:before{content:"";position:absolute;display:inline-block;background:#fff;width:15px;height:15px;margin:-1px 0 0 5px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32);border-radius:50%;left:9px;top:calc(50% - 7px)}.mec-fes-export-wrapper ul li.fes-export-date-active{color:#40d9f1}.mec-fes-export-wrapper ul li.fes-export-date-active:before{width:15px;height:15px;border:6px solid #40d9f1;background:#fff;box-shadow:0 3px 16px -3px #40d9f1}.mec-fes-btn-export{margin-left:15px;margin-top:12px}.mec-fes-btn-export span{position:relative;border:none;border-radius:3px;color:#fff!important;display:inline-block;font-size:13px;line-height:1;text-transform:none;font-weight:400;text-decoration:none;cursor:pointer;margin-right:4px;line-height:1;letter-spacing:0;padding:15px 22px;background:#39c36e;box-shadow:0 1px 7px -3px #39c36e!important;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;cursor:pointer;margin-left:6px}.mec-fes-btn-export span:hover{background:#222}.mec-event-export-excel:before,span.mec-event-export-csv:before{content:"\e083";font-family:simple-line-icons;font-size:13px;vertical-align:middle;margin-right:7px;margin-top:-1px;display:inline-block}.mec-fes-list .wn-p-t-right{min-width:170px;max-width:200px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#000;color:#fff;font-weight:400;font-size:14px;letter-spacing:.5px;line-height:1.5;position:absolute;z-index:99999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #535a61;visibility:hidden;opacity:0;transition:opacity .23s;padding:5px 10px 6px;border-radius:8px;text-align:center;font-style:normal}.mec-fes-list .mec-fes-event-export:hover .wn-p-t-right,.mec-fes-list .mec-fes-event-remove:hover .wn-p-t-right,.mec-fes-list .mec-fes-event-view:hover .wn-p-t-right{visibility:visible;opacity:1}.mec-fes-list .wn-p-t-right i{position:absolute!important;top:100%;right:50%;margin-top:-6px!important;margin-right:-6px!important;width:12px;height:24px;overflow:hidden;transform:rotate(-90deg)}.mec-fes-list .wn-p-t-right i:after{content:'';position:absolute;width:12px;height:12px;left:0;top:50%;transform:translate(50%,-50%) rotate(-45deg);background-color:#000;box-shadow:0 8px 9px -4px #535a61}.mec-fes-form .select2-container{min-height:38px;box-sizing:border-box;margin-bottom:8px;padding:0 6px;border-radius:2px;border:1px solid #ddd;box-shadow:inset 0 1px 6px rgba(0,0,0,.07);background-color:#fff;color:#32373c;outline:0;transition:50ms border-color ease-in-out;min-width:200px;font-size:14px}.mec-fes-form .select2-selection{border:none;background:0 0;padding-top:2px;width:100%;height:100%}.mec-fes-form .select2-container--default.select2-container--focus .select2-selection{border:none!important;outline:0}.mec-fes-form .select2-container--default .select2-selection--single .select2-selection__arrow{top:5px;right:4px}.select2-results{font-size:14px}.mec-fes-category-children,.mec-fes-category-children .mec-fes-category-children{padding-left:24px}.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}}
|
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}
|
assets/js/frontend.js
CHANGED
@@ -2137,7 +2137,6 @@ var mecSingleEventDisplayer = {
|
|
2137 |
};
|
2138 |
}(jQuery));
|
2139 |
|
2140 |
-
|
2141 |
// MEC LIST VIEW PLUGIN
|
2142 |
(function ($) {
|
2143 |
$.fn.mecListView = function (options) {
|
@@ -3289,6 +3288,247 @@ var mecSingleEventDisplayer = {
|
|
3289 |
|
3290 |
}(jQuery));
|
3291 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3292 |
function mec_gateway_selected(gateway_id) {
|
3293 |
// Hide all gateway forms
|
3294 |
jQuery('.mec-book-form-gateway-checkout').addClass('mec-util-hidden');
|
@@ -3535,6 +3775,13 @@ function mec_focus_week(id) {
|
|
3535 |
$(this).addClass('fes-export-date-active');
|
3536 |
});
|
3537 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3538 |
// MEC FES export csv
|
3539 |
$('.mec-event-export-csv, .mec-event-export-excel').click(function()
|
3540 |
{
|
2137 |
};
|
2138 |
}(jQuery));
|
2139 |
|
|
|
2140 |
// MEC LIST VIEW PLUGIN
|
2141 |
(function ($) {
|
2142 |
$.fn.mecListView = function (options) {
|
3288 |
|
3289 |
}(jQuery));
|
3290 |
|
3291 |
+
// MEC TILE VIEW PLUGIN
|
3292 |
+
(function($)
|
3293 |
+
{
|
3294 |
+
$.fn.mecTileView = function(options)
|
3295 |
+
{
|
3296 |
+
var active_month;
|
3297 |
+
var active_year;
|
3298 |
+
|
3299 |
+
// Default Options
|
3300 |
+
var settings = $.extend({
|
3301 |
+
// These are the defaults.
|
3302 |
+
today: null,
|
3303 |
+
id: 0,
|
3304 |
+
events_label: 'Events',
|
3305 |
+
event_label: 'Event',
|
3306 |
+
month_navigator: 0,
|
3307 |
+
atts: '',
|
3308 |
+
active_month: {},
|
3309 |
+
next_month: {},
|
3310 |
+
sf: {},
|
3311 |
+
ajax_url: ''
|
3312 |
+
}, options);
|
3313 |
+
|
3314 |
+
// Initialize Month Navigator
|
3315 |
+
if(settings.month_navigator) initMonthNavigator();
|
3316 |
+
|
3317 |
+
// Load Next Month in background
|
3318 |
+
setMonth(settings.next_month.year, settings.next_month.month, true);
|
3319 |
+
|
3320 |
+
active_month = settings.active_month.month;
|
3321 |
+
active_year = settings.active_month.year;
|
3322 |
+
|
3323 |
+
// Set onclick Listeners
|
3324 |
+
setListeners();
|
3325 |
+
|
3326 |
+
// Search Widget
|
3327 |
+
if(settings.sf.container !== '')
|
3328 |
+
{
|
3329 |
+
sf = $(settings.sf.container).mecSearchForm(
|
3330 |
+
{
|
3331 |
+
id: settings.id,
|
3332 |
+
atts: settings.atts,
|
3333 |
+
callback: function(atts)
|
3334 |
+
{
|
3335 |
+
settings.atts = atts;
|
3336 |
+
search(active_year, active_month);
|
3337 |
+
}
|
3338 |
+
});
|
3339 |
+
}
|
3340 |
+
|
3341 |
+
function initMonthNavigator()
|
3342 |
+
{
|
3343 |
+
// Remove the onclick event
|
3344 |
+
$("#mec_skin_" + settings.id + " .mec-load-month").off("click");
|
3345 |
+
|
3346 |
+
// Add onclick event
|
3347 |
+
$("#mec_skin_" + settings.id + " .mec-load-month").on("click", function()
|
3348 |
+
{
|
3349 |
+
var year = $(this).data("mec-year");
|
3350 |
+
var month = $(this).data("mec-month");
|
3351 |
+
|
3352 |
+
setMonth(year, month, false, true);
|
3353 |
+
});
|
3354 |
+
}
|
3355 |
+
|
3356 |
+
function search(year, month)
|
3357 |
+
{
|
3358 |
+
// Add Loading Class
|
3359 |
+
if(jQuery('.mec-modal-result').length === 0) jQuery('.mec-wrap').append('<div class="mec-modal-result"></div>');
|
3360 |
+
jQuery('.mec-modal-result').addClass('mec-month-navigator-loading');
|
3361 |
+
|
3362 |
+
$.ajax(
|
3363 |
+
{
|
3364 |
+
url: settings.ajax_url,
|
3365 |
+
data: "action=mec_tile_load_month&mec_year=" + year + "&mec_month=" + month + "&" + settings.atts + "&apply_sf_date=1",
|
3366 |
+
dataType: "json",
|
3367 |
+
type: "post",
|
3368 |
+
success: function(response)
|
3369 |
+
{
|
3370 |
+
active_month = response.current_month.month;
|
3371 |
+
active_year = response.current_month.year;
|
3372 |
+
|
3373 |
+
// Append Month
|
3374 |
+
$("#mec_skin_events_" + settings.id).html('<div class="mec-month-container" id="mec_tile_month_' + settings.id + '_' + response.current_month.id + '" data-month-id="' + response.current_month.id + '">' + response.month + '</div>');
|
3375 |
+
|
3376 |
+
// Append Month Navigator
|
3377 |
+
$("#mec_skin_" + settings.id + " .mec-skin-monthly-view-month-navigator-container").html('<div class="mec-month-navigator" id="mec_month_navigator_' + settings.id + '_' + response.current_month.id + '">' + response.navigator + '</div>');
|
3378 |
+
|
3379 |
+
// Re-initialize Month Navigator
|
3380 |
+
initMonthNavigator();
|
3381 |
+
|
3382 |
+
// Set onclick Listeners
|
3383 |
+
setListeners();
|
3384 |
+
|
3385 |
+
// Toggle Month
|
3386 |
+
toggleMonth(response.current_month.id);
|
3387 |
+
|
3388 |
+
// Remove loading Class
|
3389 |
+
$('.mec-modal-result').removeClass("mec-month-navigator-loading");
|
3390 |
+
},
|
3391 |
+
error: function(){}
|
3392 |
+
});
|
3393 |
+
}
|
3394 |
+
|
3395 |
+
function setMonth(year, month, do_in_background, navigator_click)
|
3396 |
+
{
|
3397 |
+
if(typeof do_in_background === "undefined") do_in_background = false;
|
3398 |
+
navigator_click = navigator_click || false;
|
3399 |
+
|
3400 |
+
var month_id = year + "" + month;
|
3401 |
+
|
3402 |
+
if(!do_in_background)
|
3403 |
+
{
|
3404 |
+
active_month = month;
|
3405 |
+
active_year = year;
|
3406 |
+
}
|
3407 |
+
|
3408 |
+
// Month exists so we just show it
|
3409 |
+
if($("#mec_tile_month_" + settings.id + "_" + month_id).length)
|
3410 |
+
{
|
3411 |
+
// Toggle Month
|
3412 |
+
toggleMonth(month_id);
|
3413 |
+
}
|
3414 |
+
else
|
3415 |
+
{
|
3416 |
+
if(!do_in_background)
|
3417 |
+
{
|
3418 |
+
// Add Loading Class
|
3419 |
+
if(jQuery('.mec-modal-result').length === 0) jQuery('.mec-wrap').append('<div class="mec-modal-result"></div>');
|
3420 |
+
jQuery('.mec-modal-result').addClass('mec-month-navigator-loading');
|
3421 |
+
}
|
3422 |
+
|
3423 |
+
$.ajax(
|
3424 |
+
{
|
3425 |
+
url: settings.ajax_url,
|
3426 |
+
data: "action=mec_tile_load_month&mec_year=" + year + "&mec_month=" + month + "&" + settings.atts + "&apply_sf_date=0" + "&navigator_click=" + navigator_click,
|
3427 |
+
dataType: "json",
|
3428 |
+
type: "post",
|
3429 |
+
success: function(response)
|
3430 |
+
{
|
3431 |
+
// Append Month
|
3432 |
+
$("#mec_skin_events_" + settings.id).append('<div class="mec-month-container" id="mec_tile_month_' + settings.id + '_' + response.current_month.id + '" data-month-id="' + response.current_month.id + '">' + response.month + '</div>');
|
3433 |
+
|
3434 |
+
// Append Month Navigator
|
3435 |
+
$("#mec_skin_" + settings.id + " .mec-skin-tile-month-navigator-container").append('<div class="mec-month-navigator" id="mec_month_navigator_' + settings.id + '_' + response.current_month.id + '">' + response.navigator + '</div>');
|
3436 |
+
|
3437 |
+
// Re-initialize Month Navigator
|
3438 |
+
initMonthNavigator();
|
3439 |
+
|
3440 |
+
// Set onclick Listeners
|
3441 |
+
setListeners();
|
3442 |
+
|
3443 |
+
if(!do_in_background)
|
3444 |
+
{
|
3445 |
+
// Toggle Month
|
3446 |
+
toggleMonth(response.current_month.id);
|
3447 |
+
|
3448 |
+
// Remove loading Class
|
3449 |
+
$('.mec-modal-result').removeClass("mec-month-navigator-loading");
|
3450 |
+
|
3451 |
+
// Set Month Filter values in search widget
|
3452 |
+
$("#mec_sf_month_" + settings.id).val(month);
|
3453 |
+
$("#mec_sf_year_" + settings.id).val(year);
|
3454 |
+
}
|
3455 |
+
else
|
3456 |
+
{
|
3457 |
+
$("#mec_tile_month_" + settings.id + "_" + response.current_month.id).hide();
|
3458 |
+
$("#mec_month_navigator_" + settings.id + "_" + response.current_month.id).hide();
|
3459 |
+
}
|
3460 |
+
},
|
3461 |
+
error: function(){}
|
3462 |
+
});
|
3463 |
+
}
|
3464 |
+
}
|
3465 |
+
|
3466 |
+
function toggleMonth(month_id)
|
3467 |
+
{
|
3468 |
+
var active_month = $("#mec_skin_" + settings.id + " .mec-month-container-selected").data("month-id");
|
3469 |
+
var active_day = $("#mec_tile_month_" + settings.id + "_" + active_month + " .mec-selected-day").data("day");
|
3470 |
+
|
3471 |
+
if(active_day <= 9) active_day = "0" + active_day;
|
3472 |
+
|
3473 |
+
// Toggle Month Navigator
|
3474 |
+
$("#mec_skin_" + settings.id + " .mec-month-navigator").hide();
|
3475 |
+
$("#mec_month_navigator_" + settings.id + "_" + month_id).show();
|
3476 |
+
|
3477 |
+
// Toggle Month
|
3478 |
+
$("#mec_skin_" + settings.id + " .mec-month-container").hide().removeClass("mec-month-container-selected");
|
3479 |
+
$("#mec_tile_month_" + settings.id + "_" + month_id).show().addClass("mec-month-container-selected");
|
3480 |
+
}
|
3481 |
+
|
3482 |
+
var sf;
|
3483 |
+
|
3484 |
+
function setListeners()
|
3485 |
+
{
|
3486 |
+
// Remove the onclick event
|
3487 |
+
$("#mec_skin_" + settings.id + " .mec-has-event").off("click");
|
3488 |
+
|
3489 |
+
// Add the onclick event
|
3490 |
+
$("#mec_skin_" + settings.id + " .mec-has-event").on('click', function(e)
|
3491 |
+
{
|
3492 |
+
e.preventDefault();
|
3493 |
+
|
3494 |
+
// define variables
|
3495 |
+
var $this = $(this),
|
3496 |
+
data_mec_cell = $this.data('mec-cell'),
|
3497 |
+
month_id = $this.data('month');
|
3498 |
+
|
3499 |
+
$("#mec_monthly_view_month_" + settings.id + "_" + month_id + " .mec-calendar-day").removeClass('mec-selected-day');
|
3500 |
+
$this.addClass('mec-selected-day');
|
3501 |
+
|
3502 |
+
$('#mec_month_side_' + settings.id + '_' + month_id + ' .mec-calendar-events-sec:not([data-mec-cell=' + data_mec_cell + '])').slideUp();
|
3503 |
+
$('#mec_month_side_' + settings.id + '_' + month_id + ' .mec-calendar-events-sec[data-mec-cell=' + data_mec_cell + ']').slideDown();
|
3504 |
+
|
3505 |
+
$('#mec_monthly_view_month_' + settings.id + '_' + month_id + ' .mec-calendar-events-sec:not([data-mec-cell=' + data_mec_cell + '])').slideUp();
|
3506 |
+
$('#mec_monthly_view_month_' + settings.id + '_' + month_id + ' .mec-calendar-events-sec[data-mec-cell=' + data_mec_cell + ']').slideDown();
|
3507 |
+
});
|
3508 |
+
|
3509 |
+
// Single Event Method
|
3510 |
+
if(settings.sed_method != '0')
|
3511 |
+
{
|
3512 |
+
sed();
|
3513 |
+
}
|
3514 |
+
}
|
3515 |
+
|
3516 |
+
function sed()
|
3517 |
+
{
|
3518 |
+
// Single Event Display
|
3519 |
+
$("#mec_skin_" + settings.id + " .mec-event-title a").off('click').on('click', function(e)
|
3520 |
+
{
|
3521 |
+
e.preventDefault();
|
3522 |
+
var href = $(this).attr('href');
|
3523 |
+
|
3524 |
+
var id = $(this).data('event-id');
|
3525 |
+
var occurrence = get_parameter_by_name('occurrence', href);
|
3526 |
+
mecSingleEventDisplayer.getSinglePage(id, occurrence, settings.ajax_url, settings.sed_method, settings.image_popup);
|
3527 |
+
});
|
3528 |
+
}
|
3529 |
+
};
|
3530 |
+
}(jQuery));
|
3531 |
+
|
3532 |
function mec_gateway_selected(gateway_id) {
|
3533 |
// Hide all gateway forms
|
3534 |
jQuery('.mec-book-form-gateway-checkout').addClass('mec-util-hidden');
|
3775 |
$(this).addClass('fes-export-date-active');
|
3776 |
});
|
3777 |
|
3778 |
+
// MEC BuddyPress Integration Attendees Modules
|
3779 |
+
var mec_bd_attendees_modules = $('.mec-attendees-list-details > ul > li');
|
3780 |
+
mec_bd_attendees_modules.click(function()
|
3781 |
+
{
|
3782 |
+
$(this).find('.mec-attendees-toggle').toggle();
|
3783 |
+
});
|
3784 |
+
|
3785 |
// MEC FES export csv
|
3786 |
$('.mec-event-export-csv, .mec-event-export-excel').click(function()
|
3787 |
{
|
changelog.txt
CHANGED
@@ -1,4 +1,26 @@
|
|
1 |
-
v 4.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
- Added: Attendees menu of all Events menu in WordPress backend (pro)
|
3 |
- Added: Order time in bookings menu (pro)
|
4 |
- Added: Filter by order date in bookings menu (pro)
|
1 |
+
v 4.9.0 - 10 December 2019
|
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)
|
5 |
+
- Added: An ability to remove and add attendees in edit bookings (pro)
|
6 |
+
- Added: Event featured image placeholder (pro)
|
7 |
+
- Added: Booking order time as a new placeholder (pro)
|
8 |
+
- Added: Tile view skin
|
9 |
+
- Added: A new booking badge to show amount of unread bookings in admin panel (pro)
|
10 |
+
- Added: An option to show name of all attendees in attendees module in event details page - you need to install BuddyPress plugin (pro)
|
11 |
+
- Added: Display Soldout and Last Few Tickets flags for events (pro)
|
12 |
+
- Added: An option to send confirmation notification just to the main attendee instead of all attendees (pro)
|
13 |
+
- Added: An option to change sender name and sender email of WordPress emails
|
14 |
+
- Added: Show booking cancellation time in backend booking menu (pro)
|
15 |
+
- Changed: Text field type to textarea field for description of the tickets (pro)
|
16 |
+
- Improved: "Remove" ticket button in single event edit page (pro)
|
17 |
+
- Fixed: Location of Google Calendar link
|
18 |
+
- Fixed: Event end date in notifications (pro)
|
19 |
+
- Fixed: Auto Synchronization (pro)
|
20 |
+
- Fixed: Booking reminder notifications (pro)
|
21 |
+
- Fixed: Ticket styling in single event edit page (pro)
|
22 |
+
|
23 |
+
v 4.8.5 - 28 November 2019
|
24 |
- Added: Attendees menu of all Events menu in WordPress backend (pro)
|
25 |
- Added: Order time in bookings menu (pro)
|
26 |
- Added: Filter by order date in bookings menu (pro)
|
languages/modern-events-calendar-lite-ca_ES.mo
ADDED
Binary file
|
languages/modern-events-calendar-lite-ca_ES.po
ADDED
@@ -0,0 +1,7579 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of Plugins - Modern Events Calendar Lite - Stable (latest release) in Spanish (Spain)
|
2 |
+
# This file is distributed under the same license as the Plugins - Modern Events Calendar Lite - Stable (latest release) package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"Project-Id-Version: Plugins - Modern Events Calendar Lite - Stable (latest "
|
6 |
+
"release)\n"
|
7 |
+
"POT-Creation-Date: 2019-12-10 18:18+0330\n"
|
8 |
+
"PO-Revision-Date: 2019-12-10 18:21+0330\n"
|
9 |
+
"Last-Translator: \n"
|
10 |
+
"Language-Team: \n"
|
11 |
+
"Language: ca\n"
|
12 |
+
"MIME-Version: 1.0\n"
|
13 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
+
"Content-Transfer-Encoding: 8bit\n"
|
15 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
16 |
+
"X-Generator: Poedit 2.2\n"
|
17 |
+
|
18 |
+
#: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:24
|
19 |
+
#: app/features/ix/import.php:37 app/features/ix/thirdparty.php:24
|
20 |
+
#: app/features/mec/dashboard.php:63 app/widgets/MEC.php:33
|
21 |
+
msgid "Modern Events Calendar"
|
22 |
+
msgstr "Modern Events Calendar"
|
23 |
+
|
24 |
+
#: app/addons/KC.php:70 app/addons/VC.php:64 app/features/mec/styling.php:133
|
25 |
+
msgid "Content"
|
26 |
+
msgstr "Contingut"
|
27 |
+
|
28 |
+
#: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:374
|
29 |
+
#: app/features/mec.php:405 app/features/mec.php:435
|
30 |
+
msgid "Shortcode"
|
31 |
+
msgstr "Shortcode"
|
32 |
+
|
33 |
+
#: app/addons/KC.php:78 app/addons/VC.php:73
|
34 |
+
msgid "Select from predefined shortcodes"
|
35 |
+
msgstr "Seleccionar des de shortcodes predefinits"
|
36 |
+
|
37 |
+
#: app/addons/divi/includes/modules/MECShortcodes/MECShortcodes.php:15
|
38 |
+
#: app/addons/divi/includes/modules/MECShortcodes/MECShortcodes.php:25
|
39 |
+
msgid "MEC Shortcodes"
|
40 |
+
msgstr "MEC Shortcodes"
|
41 |
+
|
42 |
+
#: app/addons/divi/includes/modules/MECShortcodes/MECShortcodes.php:28
|
43 |
+
msgid "Input your desired shortcode_id here."
|
44 |
+
msgstr "Insereix les etiquetes que vulguis separades amb coma."
|
45 |
+
|
46 |
+
#: app/addons/elementor/shortcode.php:34
|
47 |
+
msgid "Modern Events Calendar (MEC)"
|
48 |
+
msgstr "Modern Events Calendar (MEC)"
|
49 |
+
|
50 |
+
#: app/addons/elementor/shortcode.php:78
|
51 |
+
msgid "General"
|
52 |
+
msgstr "General"
|
53 |
+
|
54 |
+
#: app/addons/elementor/shortcode.php:87
|
55 |
+
msgid "Select Type"
|
56 |
+
msgstr "Seleccionar tipus"
|
57 |
+
|
58 |
+
#: app/features/colors.php:50 app/features/fes/form.php:796
|
59 |
+
#: app/features/mec/settings.php:676
|
60 |
+
msgid "Event Color"
|
61 |
+
msgstr "Color de l'esdeveniment"
|
62 |
+
|
63 |
+
#: app/features/contextual.php:55 app/features/mec.php:354
|
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:2418
|
70 |
+
#: app/features/mec/booking.php:439 app/features/mec/support.php:29
|
71 |
+
#: app/libraries/main.php:557
|
72 |
+
msgid "Booking Form"
|
73 |
+
msgstr "Formulari de Reserves"
|
74 |
+
|
75 |
+
#: app/features/contextual.php:63
|
76 |
+
msgid ""
|
77 |
+
"<h2 class=\"dark-text\">Booking Form<hr></h2>\n"
|
78 |
+
" <strong>Build your booking registration form ( This "
|
79 |
+
"form will be repeat for all attendees ).</strong> <iframe "
|
80 |
+
"width=\"600\" height=\"300\" src=\"https://www.youtube.com/embed/"
|
81 |
+
"YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
|
82 |
+
msgstr ""
|
83 |
+
"<h2 class=\"dark-text\">Formulari de reserves<hr></h2>\n"
|
84 |
+
" <strong>Crea el teu propi tu formulari de reserves "
|
85 |
+
"( Aquest formulari es repetirà per a tots els assistents ).</"
|
86 |
+
"strong> <iframe width=\"600\" height=\"300\" src=\"https://"
|
87 |
+
"www.youtube.com/embed/YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></"
|
88 |
+
"iframe>"
|
89 |
+
|
90 |
+
#: app/features/contextual.php:70 app/features/mec/booking.php:557
|
91 |
+
#: app/features/mec/support.php:36 app/libraries/main.php:558
|
92 |
+
msgid "Payment Gateways"
|
93 |
+
msgstr "Pasarel·les de Pagament"
|
94 |
+
|
95 |
+
#: app/features/contextual.php:71
|
96 |
+
msgid ""
|
97 |
+
"<h2 class=\"dark-text\">Payment Gateways <hr></h2><iframe width=\"600\" "
|
98 |
+
"height=\"300\" src=\"https://www.youtube.com/embed/Hpg4chWlxoQ\" frameborder="
|
99 |
+
"\"0\" allowfullscreen></iframe>"
|
100 |
+
msgstr ""
|
101 |
+
"<h2 class=\"dark-text\">Mètodes de pagament <hr></h2><iframe width=\"600\" "
|
102 |
+
"height=\"300\" src=\"https://www.youtube.com/embed/Hpg4chWlxoQ\" frameborder="
|
103 |
+
"\"0\" allowfullscreen></iframe>"
|
104 |
+
|
105 |
+
#: app/features/contextual.php:77 app/features/mec/support.php:45
|
106 |
+
#: app/libraries/main.php:739
|
107 |
+
msgid "Notifications"
|
108 |
+
msgstr "Avisos"
|
109 |
+
|
110 |
+
#: app/features/contextual.php:78
|
111 |
+
msgid ""
|
112 |
+
"<h2 class=\"dark-text\">Notifications <hr></h2><strong>You can edit your "
|
113 |
+
"messages in there.</strong><strong>Mec Notificatoin Module</strong><iframe "
|
114 |
+
"width=\"600\" height=\"300\" src=\"https://www.youtube.com/embed/"
|
115 |
+
"ZAA8zVewOj0\" frameborder=\"0\" allowfullscreen></iframe>"
|
116 |
+
msgstr ""
|
117 |
+
"<h2 class=\"dark-text\">Avisos <hr></h2><strong>Pots editar els teus "
|
118 |
+
"missatges a continuació.</strong><strong>Mòdul avisos MEC</strong><iframe "
|
119 |
+
"width=\"600\" height=\"300\" src=\"https://www.youtube.com/embed/"
|
120 |
+
"ZAA8zVewOj0\" frameborder=\"0\" allowfullscreen></iframe>"
|
121 |
+
|
122 |
+
#: app/features/contextual.php:88 app/features/ix/export.php:10
|
123 |
+
#: app/features/ix/export_g_calendar.php:14 app/features/ix/import.php:10
|
124 |
+
#: app/features/ix/import_f_calendar.php:10
|
125 |
+
#: app/features/ix/import_g_calendar.php:10
|
126 |
+
#: app/features/ix/import_meetup.php:10 app/features/ix/sync.php:10
|
127 |
+
#: app/features/ix/thirdparty.php:10
|
128 |
+
msgid "Google Cal. Import"
|
129 |
+
msgstr "Importar de Google Calendar"
|
130 |
+
|
131 |
+
#: app/features/contextual.php:89
|
132 |
+
msgid ""
|
133 |
+
"<h2 class=\"dark-text\">Import/Export<hr></h2><div class=\"big-"
|
134 |
+
"title2\"><strong>Google Cal. Import:</strong></div><iframe width=\"854\" "
|
135 |
+
"height=\"420\" src=\"https://www.youtube.com/embed/vxHC7NVbmuc\" frameborder="
|
136 |
+
"\"0\" allowfullscreen></iframe>"
|
137 |
+
msgstr ""
|
138 |
+
"<h2 class=\"dark-text\">Importar/Exportar<hr></h2><div class=\"big-"
|
139 |
+
"title2\"><strong>Importació calendari Google:</strong></div><iframe width="
|
140 |
+
"\"854\" height=\"420\" src=\"https://www.youtube.com/embed/vxHC7NVbmuc\" "
|
141 |
+
"frameborder=\"0\" allowfullscreen></iframe>"
|
142 |
+
|
143 |
+
#: app/features/contextual.php:95 app/features/ix/export.php:11
|
144 |
+
#: app/features/ix/export_g_calendar.php:15 app/features/ix/import.php:11
|
145 |
+
#: app/features/ix/import_f_calendar.php:11
|
146 |
+
#: app/features/ix/import_g_calendar.php:11
|
147 |
+
#: app/features/ix/import_meetup.php:11 app/features/ix/sync.php:11
|
148 |
+
#: app/features/ix/thirdparty.php:11
|
149 |
+
msgid "Google Cal. Export"
|
150 |
+
msgstr "Exportar a Google Calendar"
|
151 |
+
|
152 |
+
#: app/features/contextual.php:96
|
153 |
+
msgid ""
|
154 |
+
"<h2 class=\"dark-text\">Import/Export<hr></h2><div class=\"big-"
|
155 |
+
"title2\"><strong>Google Cal. Export:</strong></div><iframe width=\"854\" "
|
156 |
+
"height=\"420\" src=\"https://www.youtube.com/embed/DdeNazxbLyo\" frameborder="
|
157 |
+
"\"0\" allowfullscreen></iframe>"
|
158 |
+
msgstr ""
|
159 |
+
"<h2 class=\"dark-text\">Importar/Exportar<hr></h2><div class=\"big-"
|
160 |
+
"title2\"><strong>Exportació Cal. Google:</strong></div><iframe width=\"854\" "
|
161 |
+
"height=\"420\" src=\"https://www.youtube.com/embed/DdeNazxbLyo\" frameborder="
|
162 |
+
"\"0\" allowfullscreen></iframe>"
|
163 |
+
|
164 |
+
#: app/features/contextual.php:102 app/features/ix/export.php:12
|
165 |
+
#: app/features/ix/export_g_calendar.php:16 app/features/ix/import.php:12
|
166 |
+
#: app/features/ix/import_f_calendar.php:12
|
167 |
+
#: app/features/ix/import_g_calendar.php:12
|
168 |
+
#: app/features/ix/import_meetup.php:12 app/features/ix/sync.php:12
|
169 |
+
#: app/features/ix/thirdparty.php:12
|
170 |
+
msgid "Facebook Cal. Import"
|
171 |
+
msgstr "Importar de Facebook Calendar"
|
172 |
+
|
173 |
+
#: app/features/contextual.php:103
|
174 |
+
msgid ""
|
175 |
+
"<h2 class=\"dark-text\">Import/Export<hr></h2><div class=\"big-"
|
176 |
+
"title2\"><strong>Facebook Cal. Import:</strong></div><iframe width=\"854\" "
|
177 |
+
"height=\"420\" src=\"https://www.youtube.com/embed/dqgt1b8X8hs\" frameborder="
|
178 |
+
"\"0\" allowfullscreen></iframe>"
|
179 |
+
msgstr ""
|
180 |
+
"<h2 class=\"dark-text\">Importar/Exportar<hr></h2><div class=\"big-"
|
181 |
+
"title2\"><strong>Importació calendari Facebook:</strong></div><iframe width="
|
182 |
+
"\"854\" height=\"420\" src=\"https://www.youtube.com/embed/dqgt1b8X8hs\" "
|
183 |
+
"frameborder=\"0\" allowfullscreen></iframe>"
|
184 |
+
|
185 |
+
#: app/features/contextual.php:117 app/features/mec/settings.php:73
|
186 |
+
#: app/libraries/main.php:531
|
187 |
+
msgid "General Options"
|
188 |
+
msgstr "Opcions generals"
|
189 |
+
|
190 |
+
#: app/features/contextual.php:139 app/features/mec/settings.php:425
|
191 |
+
#: app/libraries/main.php:533
|
192 |
+
msgid "Slugs/Permalinks"
|
193 |
+
msgstr "Enllaços permanentes"
|
194 |
+
|
195 |
+
#: app/features/contextual.php:152
|
196 |
+
msgid "Event Details/Single Event Page"
|
197 |
+
msgstr "Detalles de l'Esdeveniment/Pàgina d'Esdeveniment Únic"
|
198 |
+
|
199 |
+
#: app/features/contextual.php:166 app/features/mec/settings.php:457
|
200 |
+
#: app/libraries/main.php:534
|
201 |
+
msgid "Currency Options"
|
202 |
+
msgstr "Opcions de Moneda"
|
203 |
+
|
204 |
+
#: app/features/contextual.php:182 app/features/mec/modules.php:67
|
205 |
+
#: app/features/mec/modules.php:85 app/libraries/main.php:563
|
206 |
+
msgid "Google Maps Options"
|
207 |
+
msgstr "Opcions de Google Maps"
|
208 |
+
|
209 |
+
#: app/features/contextual.php:244 app/features/mec/settings.php:514
|
210 |
+
#: app/libraries/main.php:535
|
211 |
+
msgid "Google Recaptcha Options"
|
212 |
+
msgstr "Opcions de Google Recaptcha"
|
213 |
+
|
214 |
+
#: app/features/contextual.php:258 app/features/mec/single.php:133
|
215 |
+
#: app/libraries/main.php:545
|
216 |
+
msgid "Countdown Options"
|
217 |
+
msgstr "Opcions de compte enrera"
|
218 |
+
|
219 |
+
#: app/features/contextual.php:268 app/features/mec/modules.php:263
|
220 |
+
#: app/libraries/main.php:568
|
221 |
+
msgid "Social Networks"
|
222 |
+
msgstr "Xarxes Socials"
|
223 |
+
|
224 |
+
#: app/features/contextual.php:278
|
225 |
+
msgid "Next Event Module"
|
226 |
+
msgstr "Mòdul de Següent Esdeveniment"
|
227 |
+
|
228 |
+
#: app/features/contextual.php:286 app/features/mec/settings.php:550
|
229 |
+
#: app/libraries/main.php:536
|
230 |
+
msgid "Frontend Event Submission"
|
231 |
+
msgstr "Presentació de l'esdeveniment Frontend"
|
232 |
+
|
233 |
+
#: app/features/contextual.php:298 app/features/events.php:329
|
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:302
|
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
|
242 |
+
msgid "Booking"
|
243 |
+
msgstr "Reserva"
|
244 |
+
|
245 |
+
#: app/features/contextual.php:318 app/features/mec/booking.php:261
|
246 |
+
#: app/libraries/main.php:554
|
247 |
+
msgid "Coupons"
|
248 |
+
msgstr "Cupons"
|
249 |
+
|
250 |
+
#: app/features/contextual.php:326 app/features/mec/modules.php:324
|
251 |
+
#: app/libraries/main.php:570
|
252 |
+
msgid "BuddyPress Integration"
|
253 |
+
msgstr "Integració de BuddyPress"
|
254 |
+
|
255 |
+
#: app/features/contextual.php:334 app/features/mec/settings.php:843
|
256 |
+
#: app/libraries/main.php:539
|
257 |
+
msgid "Mailchimp Integration"
|
258 |
+
msgstr "Integració de MailChimp"
|
259 |
+
|
260 |
+
#: app/features/contextual.php:346
|
261 |
+
msgid "MEC Activation"
|
262 |
+
msgstr "Activació MEC"
|
263 |
+
|
264 |
+
#: app/features/events.php:154 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:155 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
|
275 |
+
#: app/features/profile/profile.php:50 app/skins/daily_view/tpl.php:80
|
276 |
+
#: app/skins/monthly_view/tpl.php:71 app/skins/tile/tpl.php:70
|
277 |
+
#: app/skins/yearly_view/tpl.php:69
|
278 |
+
msgid "Event"
|
279 |
+
msgstr "Esdeveniment"
|
280 |
+
|
281 |
+
#: app/features/events.php:156 app/features/mec.php:340
|
282 |
+
msgid "Add Event"
|
283 |
+
msgstr "Nou Esdeveniment"
|
284 |
+
|
285 |
+
#: app/features/events.php:157 app/features/mec/dashboard.php:133
|
286 |
+
msgid "Add New Event"
|
287 |
+
msgstr "Afegir nou esdeveniment"
|
288 |
+
|
289 |
+
#: app/features/events.php:158 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:159
|
295 |
+
msgid "All Events"
|
296 |
+
msgstr "Tots els esdeveniments"
|
297 |
+
|
298 |
+
#: app/features/events.php:160
|
299 |
+
msgid "Edit Event"
|
300 |
+
msgstr "Editar Esdeveniment"
|
301 |
+
|
302 |
+
#: app/features/events.php:161 app/features/fes/list.php:82
|
303 |
+
msgid "View Event"
|
304 |
+
msgstr "Veure Esdeveniment"
|
305 |
+
|
306 |
+
#: app/features/events.php:162
|
307 |
+
msgid "No events found in Trash!"
|
308 |
+
msgstr "No hi ha esdeveniments a la paperera!"
|
309 |
+
|
310 |
+
#: app/features/events.php:179 app/features/events.php:3262
|
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
|
314 |
+
#: app/features/mec/meta_boxes/search_form.php:155
|
315 |
+
#: app/features/mec/meta_boxes/search_form.php:216
|
316 |
+
#: app/features/mec/meta_boxes/search_form.php:277
|
317 |
+
#: app/features/mec/meta_boxes/search_form.php:338
|
318 |
+
#: app/features/mec/meta_boxes/search_form.php:399
|
319 |
+
#: app/features/mec/meta_boxes/search_form.php:453
|
320 |
+
#: app/features/mec/meta_boxes/search_form.php:514
|
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:4921
|
325 |
+
#: app/libraries/skins.php:811 app/skins/single.php:557
|
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:180 app/features/events.php:3217
|
333 |
+
#: app/features/fes/form.php:746 app/features/mec.php:342
|
334 |
+
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:4920
|
335 |
+
msgid "Categories"
|
336 |
+
msgstr "Categories"
|
337 |
+
|
338 |
+
#: app/features/events.php:190 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:191 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:192 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:193 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:194 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:195 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:196 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:197 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:222 app/features/events.php:243
|
395 |
+
msgid "Category Icon"
|
396 |
+
msgstr "Icona de categoria"
|
397 |
+
|
398 |
+
#: app/features/events.php:225 app/features/events.php:248
|
399 |
+
msgid "Select icon"
|
400 |
+
msgstr "Seleccionar icona"
|
401 |
+
|
402 |
+
#: app/features/events.php:297
|
403 |
+
msgid "Event Details"
|
404 |
+
msgstr "Detall d'esdeveniment"
|
405 |
+
|
406 |
+
#: app/features/events.php:326
|
407 |
+
msgid "FES Details"
|
408 |
+
msgstr "Detall d'esdeveniment"
|
409 |
+
|
410 |
+
#: app/features/events.php:327
|
411 |
+
msgid "Date And Time"
|
412 |
+
msgstr "Data i Hora"
|
413 |
+
|
414 |
+
#: app/features/events.php:328 app/features/fes/form.php:342
|
415 |
+
msgid "Event Repeating"
|
416 |
+
msgstr "Repetir l'esdeveniment"
|
417 |
+
|
418 |
+
#: app/features/events.php:330 app/features/events.php:1275
|
419 |
+
#: app/features/mec/settings.php:706 app/skins/single.php:928
|
420 |
+
msgid "Hourly Schedule"
|
421 |
+
msgstr "Programació horària"
|
422 |
+
|
423 |
+
#: app/features/events.php:331
|
424 |
+
msgid "Location/Venue"
|
425 |
+
msgstr "Localització"
|
426 |
+
|
427 |
+
#: app/features/events.php:332
|
428 |
+
msgid "Links"
|
429 |
+
msgstr "Enllaç"
|
430 |
+
|
431 |
+
#: app/features/events.php:333 app/features/events.php:3264
|
432 |
+
#: app/features/events.php:3455 app/features/events.php:3497
|
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
|
436 |
+
#: app/features/mec/meta_boxes/search_form.php:107
|
437 |
+
#: app/features/mec/meta_boxes/search_form.php:169
|
438 |
+
#: app/features/mec/meta_boxes/search_form.php:230
|
439 |
+
#: app/features/mec/meta_boxes/search_form.php:291
|
440 |
+
#: app/features/mec/meta_boxes/search_form.php:352
|
441 |
+
#: app/features/mec/meta_boxes/search_form.php:413
|
442 |
+
#: app/features/mec/meta_boxes/search_form.php:467
|
443 |
+
#: app/features/mec/meta_boxes/search_form.php:528
|
444 |
+
#: app/features/mec/meta_boxes/search_form.php:589
|
445 |
+
#: app/features/mec/meta_boxes/search_form.php:686
|
446 |
+
#: app/features/mec/settings.php:808 app/features/mec/single.php:208
|
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:4927 app/libraries/skins.php:863
|
451 |
+
#: app/skins/single.php:793 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:334 app/features/events.php:1161
|
458 |
+
#: app/features/fes/form.php:719 app/libraries/main.php:4954
|
459 |
+
#: app/skins/single.php:580 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:471
|
466 |
+
msgid "Note for reviewer"
|
467 |
+
msgstr "Nota per a l'encarregat"
|
468 |
+
|
469 |
+
#: app/features/events.php:477
|
470 |
+
msgid "Guest Data"
|
471 |
+
msgstr "Dades de l'invitat"
|
472 |
+
|
473 |
+
#: app/features/events.php:478 app/features/events.php:2400
|
474 |
+
#: app/features/events.php:3647 app/features/events.php:3843
|
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:945 app/modules/booking/steps/form.php:37
|
479 |
+
msgid "Name"
|
480 |
+
msgstr "Nom"
|
481 |
+
|
482 |
+
#: app/features/events.php:479 app/features/events.php:2411
|
483 |
+
#: app/features/events.php:2487 app/features/events.php:3650
|
484 |
+
#: app/features/events.php:3846 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:1476 app/libraries/main.php:1545
|
490 |
+
#: app/libraries/main.php:2607 app/libraries/notifications.php:946
|
491 |
+
#: app/modules/booking/steps/form.php:46 app/modules/booking/steps/form.php:83
|
492 |
+
#: app/skins/single.php:810 app/skins/single.php:865
|
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:487 app/features/fes/form.php:242
|
500 |
+
msgid "Date and Time"
|
501 |
+
msgstr "Date And Time"
|
502 |
+
|
503 |
+
#: app/features/events.php:490 app/features/events.php:496
|
504 |
+
#: app/features/events.php:3265 app/features/events.php:3455
|
505 |
+
#: app/features/events.php:3497 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
|
509 |
+
#: app/features/mec/meta_boxes/display_options.php:48
|
510 |
+
#: app/features/mec/meta_boxes/display_options.php:214
|
511 |
+
#: app/features/mec/meta_boxes/display_options.php:379
|
512 |
+
#: app/features/mec/meta_boxes/display_options.php:434
|
513 |
+
#: app/features/mec/meta_boxes/display_options.php:557
|
514 |
+
#: app/features/mec/meta_boxes/display_options.php:611
|
515 |
+
#: app/features/mec/meta_boxes/display_options.php:658
|
516 |
+
#: app/features/mec/meta_boxes/display_options.php:691
|
517 |
+
#: app/features/mec/meta_boxes/display_options.php:726
|
518 |
+
#: app/features/mec/meta_boxes/display_options.php:772
|
519 |
+
#: app/features/mec/meta_boxes/display_options.php:838
|
520 |
+
#: app/features/mec/meta_boxes/display_options.php:1073
|
521 |
+
#: app/features/mec/meta_boxes/display_options.php:1161
|
522 |
+
#: app/features/mec/meta_boxes/display_options.php:1253
|
523 |
+
#: app/features/mec/meta_boxes/display_options.php:1307
|
524 |
+
msgid "Start Date"
|
525 |
+
msgstr "Data d'inici"
|
526 |
+
|
527 |
+
#: app/features/events.php:568 app/features/events.php:660
|
528 |
+
#: app/features/events.php:1715 app/features/events.php:1774
|
529 |
+
#: app/features/events.php:1946 app/features/events.php:1985
|
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:575 app/features/events.php:667
|
535 |
+
#: app/features/events.php:1722 app/features/events.php:1781
|
536 |
+
#: app/features/events.php:1947 app/features/events.php:1986
|
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:582 app/features/events.php:587
|
542 |
+
#: app/features/events.php:3266 app/features/events.php:3455
|
543 |
+
#: app/features/events.php:3497 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:681 app/features/fes/form.php:325
|
551 |
+
msgid "All Day Event"
|
552 |
+
msgstr "Esdeveniment de tot el dia"
|
553 |
+
|
554 |
+
#: app/features/events.php:691 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:701 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:706 app/features/events.php:710
|
563 |
+
#: app/features/fes/form.php:335
|
564 |
+
msgid "Time Comment"
|
565 |
+
msgstr "Temps per comentar"
|
566 |
+
|
567 |
+
#: app/features/events.php:711 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."
|
571 |
+
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:713 app/features/events.php:834
|
576 |
+
#: app/features/events.php:1134 app/features/events.php:1201
|
577 |
+
#: app/features/events.php:1500 app/features/events.php:1592
|
578 |
+
#: app/features/events.php:1802 app/features/events.php:1817
|
579 |
+
#: app/features/events.php:2005 app/features/events.php:2018
|
580 |
+
#: app/features/events.php:2148 app/features/events.php:2184
|
581 |
+
#: app/features/events.php:2282 app/features/events.php:2297
|
582 |
+
#: app/features/events.php:2327 app/features/events.php:2340
|
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
|
586 |
+
#: app/features/mec/booking.php:306 app/features/mec/booking.php:335
|
587 |
+
#: app/features/mec/booking.php:383 app/features/mec/booking.php:393
|
588 |
+
#: app/features/mec/booking.php:415 app/features/mec/booking.php:425
|
589 |
+
#: app/features/mec/dashboard.php:71
|
590 |
+
#: app/features/mec/meta_boxes/display_options.php:66
|
591 |
+
#: app/features/mec/meta_boxes/display_options.php:79
|
592 |
+
#: app/features/mec/meta_boxes/display_options.php:92
|
593 |
+
#: app/features/mec/meta_boxes/display_options.php:103
|
594 |
+
#: app/features/mec/meta_boxes/display_options.php:115
|
595 |
+
#: app/features/mec/meta_boxes/display_options.php:232
|
596 |
+
#: app/features/mec/meta_boxes/display_options.php:244
|
597 |
+
#: app/features/mec/meta_boxes/display_options.php:256
|
598 |
+
#: app/features/mec/meta_boxes/display_options.php:269
|
599 |
+
#: app/features/mec/meta_boxes/display_options.php:280
|
600 |
+
#: app/features/mec/meta_boxes/display_options.php:293
|
601 |
+
#: app/features/mec/meta_boxes/display_options.php:304
|
602 |
+
#: app/features/mec/meta_boxes/display_options.php:398
|
603 |
+
#: app/features/mec/meta_boxes/display_options.php:574
|
604 |
+
#: app/features/mec/meta_boxes/display_options.php:857
|
605 |
+
#: app/features/mec/meta_boxes/display_options.php:930
|
606 |
+
#: app/features/mec/meta_boxes/display_options.php:942
|
607 |
+
#: app/features/mec/meta_boxes/display_options.php:953
|
608 |
+
#: app/features/mec/meta_boxes/display_options.php:985
|
609 |
+
#: app/features/mec/meta_boxes/display_options.php:996
|
610 |
+
#: app/features/mec/meta_boxes/display_options.php:1009
|
611 |
+
#: app/features/mec/meta_boxes/display_options.php:1044
|
612 |
+
#: app/features/mec/meta_boxes/display_options.php:1093
|
613 |
+
#: app/features/mec/meta_boxes/display_options.php:1104
|
614 |
+
#: app/features/mec/meta_boxes/display_options.php:1115
|
615 |
+
#: app/features/mec/meta_boxes/display_options.php:1181
|
616 |
+
#: app/features/mec/meta_boxes/display_options.php:1194
|
617 |
+
#: app/features/mec/meta_boxes/display_options.php:1207
|
618 |
+
#: app/features/mec/meta_boxes/display_options.php:1220
|
619 |
+
#: app/features/mec/meta_boxes/display_options.php:1233
|
620 |
+
#: app/features/mec/meta_boxes/display_options.php:1271
|
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:312
|
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
|
628 |
+
#: app/features/mec/notifications.php:308
|
629 |
+
#: app/features/mec/notifications.php:373
|
630 |
+
#: app/features/mec/notifications.php:384
|
631 |
+
#: app/features/mec/notifications.php:448
|
632 |
+
#: app/features/mec/notifications.php:496 app/features/mec/settings.php:87
|
633 |
+
#: app/features/mec/settings.php:106 app/features/mec/settings.php:153
|
634 |
+
#: app/features/mec/settings.php:188 app/features/mec/settings.php:209
|
635 |
+
#: app/features/mec/settings.php:229 app/features/mec/settings.php:306
|
636 |
+
#: app/features/mec/settings.php:380 app/features/mec/settings.php:397
|
637 |
+
#: app/features/mec/settings.php:414 app/features/mec/settings.php:433
|
638 |
+
#: app/features/mec/settings.php:447 app/features/mec/settings.php:475
|
639 |
+
#: app/features/mec/settings.php:562 app/features/mec/settings.php:735
|
640 |
+
#: app/features/mec/settings.php:751 app/features/mec/settings.php:858
|
641 |
+
#: app/features/mec/settings.php:871 app/features/mec/settings.php:887
|
642 |
+
#: app/features/mec/single.php:42 app/features/mec/single.php:58
|
643 |
+
#: app/features/mec/single.php:77 app/features/mec/single.php:94
|
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:655
|
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:721
|
655 |
+
msgid "Repeating"
|
656 |
+
msgstr "Repetint"
|
657 |
+
|
658 |
+
#: app/features/events.php:730
|
659 |
+
msgid "Event Repeating (Recurring events)"
|
660 |
+
msgstr "Repetir l'esdeveniment"
|
661 |
+
|
662 |
+
#: app/features/events.php:734 app/features/fes/form.php:346
|
663 |
+
msgid "Repeats"
|
664 |
+
msgstr "Repeticions"
|
665 |
+
|
666 |
+
#: app/features/events.php:742 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:749 app/features/fes/form.php:349
|
674 |
+
msgid "Every Weekday"
|
675 |
+
msgstr "Cada dia de la setmana"
|
676 |
+
|
677 |
+
#: app/features/events.php:756 app/features/fes/form.php:350
|
678 |
+
msgid "Every Weekend"
|
679 |
+
msgstr "Cada cap de setmana"
|
680 |
+
|
681 |
+
#: app/features/events.php:763 app/features/fes/form.php:351
|
682 |
+
msgid "Certain Weekdays"
|
683 |
+
msgstr "Certs dies de la setmana"
|
684 |
+
|
685 |
+
#: app/features/events.php:770 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:777 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:784 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:791 app/features/fes/form.php:355
|
706 |
+
msgid "Custom Days"
|
707 |
+
msgstr "Dies personalitzats"
|
708 |
+
|
709 |
+
#: app/features/events.php:798 app/features/fes/form.php:356
|
710 |
+
msgid "Advanced"
|
711 |
+
msgstr "Mètode avançat"
|
712 |
+
|
713 |
+
#: app/features/events.php:803 app/features/fes/form.php:360
|
714 |
+
msgid "Repeat Interval"
|
715 |
+
msgstr "Interval de repetició"
|
716 |
+
|
717 |
+
#: app/features/events.php:805 app/features/fes/form.php:361
|
718 |
+
msgid "Repeat interval"
|
719 |
+
msgstr "Interval de repetició"
|
720 |
+
|
721 |
+
#: app/features/events.php:809 app/features/fes/form.php:364
|
722 |
+
msgid "Week Days"
|
723 |
+
msgstr "Dies de setmana"
|
724 |
+
|
725 |
+
#: app/features/events.php:824 app/features/events.php:1865
|
726 |
+
#: app/features/events.php:1893 app/features/events.php:2052
|
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:826 app/features/events.php:1869
|
734 |
+
#: app/features/events.php:1897 app/features/events.php:2056
|
735 |
+
#: app/features/fes/form.php:377
|
736 |
+
msgid "End"
|
737 |
+
msgstr "Fi"
|
738 |
+
|
739 |
+
#: app/features/events.php:828 app/features/events.php:1195
|
740 |
+
#: app/features/events.php:1306 app/features/events.php:1411
|
741 |
+
#: app/features/events.php:1848 app/features/events.php:2041
|
742 |
+
#: app/features/events.php:2121 app/features/events.php:2254
|
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:831
|
748 |
+
msgid "Custom Days Repeating"
|
749 |
+
msgstr "Dies personalitzats"
|
750 |
+
|
751 |
+
#: app/features/events.php:832
|
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 "
|
755 |
+
"start and end dates must be commensurate with the initial date."
|
756 |
+
msgstr ""
|
757 |
+
"Afegiu uns dies a les dates d’ocurrència d’esdeveniments. Si teniu un "
|
758 |
+
"esdeveniment d'un sol dia, la data d'inici i final hauria de ser la mateixa. "
|
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:868 app/features/fes/form.php:404
|
763 |
+
msgid "First"
|
764 |
+
msgstr "Primer"
|
765 |
+
|
766 |
+
#: app/features/events.php:910 app/features/fes/form.php:446
|
767 |
+
msgid "Second"
|
768 |
+
msgstr "Segon"
|
769 |
+
|
770 |
+
#: app/features/events.php:952 app/features/fes/form.php:488
|
771 |
+
msgid "Third"
|
772 |
+
msgstr "Tercer"
|
773 |
+
|
774 |
+
#: app/features/events.php:994 app/features/fes/form.php:530
|
775 |
+
msgid "Fourth"
|
776 |
+
msgstr "Quart"
|
777 |
+
|
778 |
+
#: app/features/events.php:1036 app/features/fes/form.php:572
|
779 |
+
msgid "Last"
|
780 |
+
msgstr "Últim"
|
781 |
+
|
782 |
+
#: app/features/events.php:1083 app/features/fes/form.php:618
|
783 |
+
msgid "Ends Repeat"
|
784 |
+
msgstr "Finalitza la repetició"
|
785 |
+
|
786 |
+
#: app/features/events.php:1095 app/features/fes/form.php:622
|
787 |
+
msgid "Never"
|
788 |
+
msgstr "Mai"
|
789 |
+
|
790 |
+
#: app/features/events.php:1107 app/features/fes/form.php:627
|
791 |
+
msgid "On"
|
792 |
+
msgstr "En"
|
793 |
+
|
794 |
+
#: app/features/events.php:1123 app/features/fes/form.php:634
|
795 |
+
msgid "After"
|
796 |
+
msgstr "Després"
|
797 |
+
|
798 |
+
#: app/features/events.php:1127 app/features/events.php:1131
|
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:1132 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."
|
807 |
+
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:1157 app/features/events.php:3455
|
812 |
+
#: app/features/events.php:3497 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:4953
|
815 |
+
#: app/widgets/single.php:103
|
816 |
+
msgid "Event Cost"
|
817 |
+
msgstr "Cost de l'esdeveniment"
|
818 |
+
|
819 |
+
#: app/features/events.php:1182
|
820 |
+
msgid "Exceptional Days (Exclude Dates)"
|
821 |
+
msgstr "Dies excepcionals"
|
822 |
+
|
823 |
+
#: app/features/events.php:1188 app/features/events.php:1198
|
824 |
+
msgid "Exclude certain days"
|
825 |
+
msgstr "Excloure certs dies"
|
826 |
+
|
827 |
+
#: app/features/events.php:1193 app/features/events.php:2488
|
828 |
+
#: app/features/fes.php:223 app/features/mec/booking.php:491
|
829 |
+
#: app/features/profile/profile.php:53 app/libraries/main.php:2063
|
830 |
+
#: app/libraries/main.php:2665 app/modules/booking/steps/tickets.php:22
|
831 |
+
#: app/modules/next-event/details.php:90 app/skins/single.php:635
|
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:1199
|
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 "
|
841 |
+
"multiple day occurrences."
|
842 |
+
msgstr ""
|
843 |
+
"Exclusió de determinats dies de les dates d’ocurrència d’esdeveniments. "
|
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:1253 app/libraries/render.php:471
|
848 |
+
msgid "Day 1"
|
849 |
+
msgstr "Dia 1"
|
850 |
+
|
851 |
+
#: app/features/events.php:1279
|
852 |
+
msgid "Add Day"
|
853 |
+
msgstr "Afegeix dia"
|
854 |
+
|
855 |
+
#: app/features/events.php:1280
|
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!"
|
859 |
+
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:1287
|
864 |
+
#, php-format
|
865 |
+
msgid "Day %s"
|
866 |
+
msgstr "Dia %s"
|
867 |
+
|
868 |
+
#: app/features/events.php:1291 app/features/events.php:1330
|
869 |
+
#: app/features/events.php:1365 app/features/events.php:1397
|
870 |
+
#: app/features/events.php:1426 app/features/events.php:2269
|
871 |
+
#: app/features/events.php:2316 app/features/events.php:3261
|
872 |
+
#: app/features/events.php:3455 app/features/events.php:3497
|
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:1300 app/features/events.php:1337
|
880 |
+
#: app/features/events.php:1370 app/features/events.php:1405
|
881 |
+
#: app/features/events.php:1431 app/features/events.php:1879
|
882 |
+
#: app/features/events.php:1905 app/features/events.php:2062
|
883 |
+
#: app/features/events.php:2161 app/features/events.php:2197
|
884 |
+
#: app/features/events.php:2304 app/features/events.php:2346
|
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:2526 app/libraries/main.php:2556
|
888 |
+
#: app/libraries/main.php:2585 app/libraries/main.php:2615
|
889 |
+
#: app/libraries/main.php:2644 app/libraries/main.php:2673
|
890 |
+
#: app/libraries/main.php:2702 app/libraries/main.php:2731
|
891 |
+
#: app/libraries/main.php:2753 app/libraries/main.php:2784
|
892 |
+
#: app/libraries/main.php:2828 app/libraries/main.php:2872
|
893 |
+
#: app/libraries/main.php:2919 app/libraries/main.php:2958
|
894 |
+
msgid "Remove"
|
895 |
+
msgstr "Eliminar"
|
896 |
+
|
897 |
+
#: app/features/events.php:1307 app/features/events.php:1412
|
898 |
+
msgid "Add new hourly schedule row"
|
899 |
+
msgstr "Afegir nova línia programa horari"
|
900 |
+
|
901 |
+
#: app/features/events.php:1322 app/features/events.php:1359
|
902 |
+
#: app/features/events.php:1421
|
903 |
+
msgid "From e.g. 8:15"
|
904 |
+
msgstr "Des de ex. 8:15"
|
905 |
+
|
906 |
+
#: app/features/events.php:1326 app/features/events.php:1362
|
907 |
+
#: app/features/events.php:1423
|
908 |
+
msgid "To e.g. 8:45"
|
909 |
+
msgstr "Fins a ex. 8:45"
|
910 |
+
|
911 |
+
#: app/features/events.php:1334 app/features/events.php:1368
|
912 |
+
#: app/features/events.php:1429 app/features/events.php:1790
|
913 |
+
#: app/features/events.php:1994
|
914 |
+
msgid "Description"
|
915 |
+
msgstr "Descripció"
|
916 |
+
|
917 |
+
#: app/features/events.php:1340 app/features/events.php:1373
|
918 |
+
#: app/features/events.php:1434 app/features/fes/form.php:840
|
919 |
+
#: app/features/mec.php:350 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:4928
|
922 |
+
#: app/modules/speakers/details.php:18
|
923 |
+
msgid "Speakers"
|
924 |
+
msgstr "Ponents"
|
925 |
+
|
926 |
+
#: app/features/events.php:1393 app/features/events.php:1401
|
927 |
+
msgid "New Day"
|
928 |
+
msgstr "Nou dia"
|
929 |
+
|
930 |
+
#: app/features/events.php:1465 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:1468 app/features/events.php:1474
|
936 |
+
#: app/features/fes/form.php:695 app/libraries/main.php:4951
|
937 |
+
msgid "Event Link"
|
938 |
+
msgstr "Enllaç de l'esdeveniment"
|
939 |
+
|
940 |
+
#: app/features/events.php:1471 app/features/events.php:1487
|
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:1475
|
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, "
|
949 |
+
"can use URL Shortener"
|
950 |
+
msgstr ""
|
951 |
+
"Si ho omples, es reemplaçarà en lloc de l'enllaç de la pàgina de "
|
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:1477
|
956 |
+
msgid "URL Shortener"
|
957 |
+
msgstr "URL curta"
|
958 |
+
|
959 |
+
#: app/features/events.php:1484 app/features/events.php:1497
|
960 |
+
#: app/features/fes/form.php:700 app/libraries/main.php:4952
|
961 |
+
#: app/skins/single.php:654 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:1490 app/features/fes/form.php:702
|
969 |
+
msgid "More Information"
|
970 |
+
msgstr "Més Informació"
|
971 |
+
|
972 |
+
#: app/features/events.php:1492 app/features/fes/form.php:704
|
973 |
+
msgid "Current Window"
|
974 |
+
msgstr "Finestra actual"
|
975 |
+
|
976 |
+
#: app/features/events.php:1493 app/features/fes/form.php:705
|
977 |
+
msgid "New Window"
|
978 |
+
msgstr "Nova finestra"
|
979 |
+
|
980 |
+
#: app/features/events.php:1498 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)://"
|
984 |
+
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:1573 app/features/events.php:1588
|
989 |
+
msgid "Total booking limits"
|
990 |
+
msgstr "Límit total de reserves"
|
991 |
+
|
992 |
+
#: app/features/events.php:1585 app/features/events.php:1838
|
993 |
+
#: app/features/events.php:2032 app/modules/booking/default.php:85
|
994 |
+
#: app/modules/booking/steps/tickets.php:40
|
995 |
+
#: app/skins/available_spot/tpl.php:160
|
996 |
+
msgid "Unlimited"
|
997 |
+
msgstr "Il·limitat"
|
998 |
+
|
999 |
+
#: app/features/events.php:1591
|
1000 |
+
msgid ""
|
1001 |
+
"If you want to set a limit to all tickets, uncheck this checkbox and put a "
|
1002 |
+
"limitation number."
|
1003 |
+
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:1593
|
1008 |
+
msgid "Read About A Booking System"
|
1009 |
+
msgstr "Llegiu sobre un sistema de reserves"
|
1010 |
+
|
1011 |
+
#: app/features/events.php:1601
|
1012 |
+
msgid "100"
|
1013 |
+
msgstr "100"
|
1014 |
+
|
1015 |
+
#: app/features/events.php:1606
|
1016 |
+
msgid "Total user booking limits"
|
1017 |
+
msgstr "Límit total de reserves"
|
1018 |
+
|
1019 |
+
#: app/features/events.php:1618 app/features/events.php:2110
|
1020 |
+
#: app/features/events.php:2242 app/features/events.php:2430
|
1021 |
+
msgid "Inherit from global options"
|
1022 |
+
msgstr "Heretat de d'opciones globals"
|
1023 |
+
|
1024 |
+
#: app/features/events.php:1621
|
1025 |
+
msgid "12"
|
1026 |
+
msgstr "12"
|
1027 |
+
|
1028 |
+
#: app/features/events.php:1642 app/libraries/book.php:60
|
1029 |
+
#: app/libraries/main.php:4956 app/modules/booking/steps/tickets.php:40
|
1030 |
+
msgid "Tickets"
|
1031 |
+
msgstr "Tickets"
|
1032 |
+
|
1033 |
+
#: app/features/events.php:1645
|
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 "
|
1037 |
+
"define exact tickets that you defined in the original event here."
|
1038 |
+
msgstr ""
|
1039 |
+
"Estàs traduint un sdeveniment pel que MEC utilitzarà l'esdeveniment original "
|
1040 |
+
"per a les entrades i reserves. Pots només traduir el nom i descripció de "
|
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:1650
|
1045 |
+
#, fuzzy
|
1046 |
+
#| msgid "Ticket"
|
1047 |
+
msgid "Add Ticket"
|
1048 |
+
msgstr "Ticket"
|
1049 |
+
|
1050 |
+
#: app/features/events.php:1664 app/features/events.php:1919
|
1051 |
+
msgid "Ticket Name"
|
1052 |
+
msgstr "Nom del ticket"
|
1053 |
+
|
1054 |
+
#: app/features/events.php:1669 app/features/events.php:1923
|
1055 |
+
#: app/features/events.php:3455 app/features/events.php:3497
|
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:1728 app/features/events.php:1953
|
1061 |
+
#: app/features/events.php:3455 app/features/events.php:3497
|
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:1795 app/features/events.php:1799
|
1067 |
+
#: app/features/events.php:1873 app/features/events.php:1900
|
1068 |
+
#: app/features/events.php:1999 app/features/events.php:2002
|
1069 |
+
#: app/features/events.php:2058 app/features/events.php:2275
|
1070 |
+
#: app/features/events.php:2279 app/features/events.php:2321
|
1071 |
+
#: app/features/events.php:2324 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:1800 app/features/events.php:2003
|
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:1809 app/features/events.php:1814
|
1083 |
+
#: app/features/events.php:2012 app/features/events.php:2015
|
1084 |
+
msgid "Price Label"
|
1085 |
+
msgstr "Etiqueta del preu"
|
1086 |
+
|
1087 |
+
#: app/features/events.php:1815 app/features/events.php:2016
|
1088 |
+
msgid "For showing on website. e.g. $15"
|
1089 |
+
msgstr "Per mostrar a la web. Ex. 15€"
|
1090 |
+
|
1091 |
+
#: app/features/events.php:1825 app/features/events.php:2026
|
1092 |
+
msgid "Available Tickets"
|
1093 |
+
msgstr "Tickets disponibles"
|
1094 |
+
|
1095 |
+
#: app/features/events.php:1846 app/features/events.php:2039
|
1096 |
+
msgid "Price per Date"
|
1097 |
+
msgstr "Preu per Dia"
|
1098 |
+
|
1099 |
+
#: app/features/events.php:1877 app/features/events.php:1903
|
1100 |
+
#: app/features/events.php:2060 app/features/labels.php:60
|
1101 |
+
#: app/features/mec/meta_boxes/display_options.php:871
|
1102 |
+
#: app/features/mec/meta_boxes/search_form.php:66
|
1103 |
+
#: app/features/mec/meta_boxes/search_form.php:128
|
1104 |
+
#: app/features/mec/meta_boxes/search_form.php:190
|
1105 |
+
#: app/features/mec/meta_boxes/search_form.php:251
|
1106 |
+
#: app/features/mec/meta_boxes/search_form.php:312
|
1107 |
+
#: app/features/mec/meta_boxes/search_form.php:373
|
1108 |
+
#: app/features/mec/meta_boxes/search_form.php:434
|
1109 |
+
#: app/features/mec/meta_boxes/search_form.php:488
|
1110 |
+
#: app/features/mec/meta_boxes/search_form.php:549
|
1111 |
+
#: app/features/mec/meta_boxes/search_form.php:610
|
1112 |
+
#: app/features/mec/meta_boxes/search_form.php:707
|
1113 |
+
#: app/features/mec/settings.php:828 app/features/mec/single.php:222
|
1114 |
+
#: app/libraries/skins.php:941
|
1115 |
+
msgid "Label"
|
1116 |
+
msgstr "Etiqueta"
|
1117 |
+
|
1118 |
+
#: app/features/events.php:2098
|
1119 |
+
msgid "Fees"
|
1120 |
+
msgstr "Taxes"
|
1121 |
+
|
1122 |
+
#: app/features/events.php:2135 app/features/events.php:2173
|
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:2141 app/features/events.php:2145
|
1128 |
+
#: app/features/events.php:2178 app/features/events.php:2181
|
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:2146 app/features/events.php:2182
|
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 "
|
1138 |
+
"otherwise considered as percentage"
|
1139 |
+
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:2155 app/features/events.php:2191
|
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:2156 app/features/events.php:2192
|
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:2157 app/features/events.php:2193
|
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:2230 app/features/mec/settings.php:724
|
1159 |
+
msgid "Ticket Variations / Options"
|
1160 |
+
msgstr "Variacions i opcions de tickets"
|
1161 |
+
|
1162 |
+
#: app/features/events.php:2280 app/features/events.php:2325
|
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:2290 app/features/events.php:2294
|
1168 |
+
#: app/features/events.php:2334 app/features/events.php:2337
|
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:2295 app/features/events.php:2338
|
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:2484 app/features/mec/booking.php:487
|
1180 |
+
#: app/libraries/main.php:2548
|
1181 |
+
msgid "MEC Name"
|
1182 |
+
msgstr "Nom"
|
1183 |
+
|
1184 |
+
#: app/features/events.php:2485 app/features/mec/booking.php:488
|
1185 |
+
#: app/libraries/main.php:2577
|
1186 |
+
msgid "MEC Email"
|
1187 |
+
msgstr "Correu electrònic"
|
1188 |
+
|
1189 |
+
#: app/features/events.php:2486 app/features/mec/booking.php:489
|
1190 |
+
#: app/libraries/main.php:2518
|
1191 |
+
msgid "Text"
|
1192 |
+
msgstr "Text"
|
1193 |
+
|
1194 |
+
#: app/features/events.php:2489 app/features/mec/booking.php:492
|
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:2694
|
1198 |
+
msgid "Tel"
|
1199 |
+
msgstr "Tel"
|
1200 |
+
|
1201 |
+
#: app/features/events.php:2490 app/features/mec/booking.php:493
|
1202 |
+
#: app/libraries/main.php:2636
|
1203 |
+
msgid "File"
|
1204 |
+
msgstr "Arxiu"
|
1205 |
+
|
1206 |
+
#: app/features/events.php:2491 app/features/mec/booking.php:494
|
1207 |
+
#: app/libraries/main.php:2723
|
1208 |
+
msgid "Textarea"
|
1209 |
+
msgstr "Àrea de text"
|
1210 |
+
|
1211 |
+
#: app/features/events.php:2492 app/features/mec/booking.php:495
|
1212 |
+
#: app/libraries/main.php:2776
|
1213 |
+
msgid "Checkboxes"
|
1214 |
+
msgstr "Caselles de selecció"
|
1215 |
+
|
1216 |
+
#: app/features/events.php:2493 app/features/mec/booking.php:496
|
1217 |
+
#: app/libraries/main.php:2820
|
1218 |
+
msgid "Radio Buttons"
|
1219 |
+
msgstr "Botons tipus radi"
|
1220 |
+
|
1221 |
+
#: app/features/events.php:2494 app/features/mec/booking.php:497
|
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
|
1225 |
+
#: app/features/mec/meta_boxes/search_form.php:55
|
1226 |
+
#: app/features/mec/meta_boxes/search_form.php:62
|
1227 |
+
#: app/features/mec/meta_boxes/search_form.php:69
|
1228 |
+
#: app/features/mec/meta_boxes/search_form.php:76
|
1229 |
+
#: app/features/mec/meta_boxes/search_form.php:96
|
1230 |
+
#: app/features/mec/meta_boxes/search_form.php:103
|
1231 |
+
#: app/features/mec/meta_boxes/search_form.php:110
|
1232 |
+
#: app/features/mec/meta_boxes/search_form.php:117
|
1233 |
+
#: app/features/mec/meta_boxes/search_form.php:124
|
1234 |
+
#: app/features/mec/meta_boxes/search_form.php:131
|
1235 |
+
#: app/features/mec/meta_boxes/search_form.php:138
|
1236 |
+
#: app/features/mec/meta_boxes/search_form.php:158
|
1237 |
+
#: app/features/mec/meta_boxes/search_form.php:165
|
1238 |
+
#: app/features/mec/meta_boxes/search_form.php:172
|
1239 |
+
#: app/features/mec/meta_boxes/search_form.php:179
|
1240 |
+
#: app/features/mec/meta_boxes/search_form.php:186
|
1241 |
+
#: app/features/mec/meta_boxes/search_form.php:193
|
1242 |
+
#: app/features/mec/meta_boxes/search_form.php:200
|
1243 |
+
#: app/features/mec/meta_boxes/search_form.php:219
|
1244 |
+
#: app/features/mec/meta_boxes/search_form.php:226
|
1245 |
+
#: app/features/mec/meta_boxes/search_form.php:233
|
1246 |
+
#: app/features/mec/meta_boxes/search_form.php:240
|
1247 |
+
#: app/features/mec/meta_boxes/search_form.php:247
|
1248 |
+
#: app/features/mec/meta_boxes/search_form.php:254
|
1249 |
+
#: app/features/mec/meta_boxes/search_form.php:261
|
1250 |
+
#: app/features/mec/meta_boxes/search_form.php:280
|
1251 |
+
#: app/features/mec/meta_boxes/search_form.php:287
|
1252 |
+
#: app/features/mec/meta_boxes/search_form.php:294
|
1253 |
+
#: app/features/mec/meta_boxes/search_form.php:301
|
1254 |
+
#: app/features/mec/meta_boxes/search_form.php:308
|
1255 |
+
#: app/features/mec/meta_boxes/search_form.php:315
|
1256 |
+
#: app/features/mec/meta_boxes/search_form.php:322
|
1257 |
+
#: app/features/mec/meta_boxes/search_form.php:341
|
1258 |
+
#: app/features/mec/meta_boxes/search_form.php:348
|
1259 |
+
#: app/features/mec/meta_boxes/search_form.php:355
|
1260 |
+
#: app/features/mec/meta_boxes/search_form.php:362
|
1261 |
+
#: app/features/mec/meta_boxes/search_form.php:369
|
1262 |
+
#: app/features/mec/meta_boxes/search_form.php:376
|
1263 |
+
#: app/features/mec/meta_boxes/search_form.php:383
|
1264 |
+
#: app/features/mec/meta_boxes/search_form.php:402
|
1265 |
+
#: app/features/mec/meta_boxes/search_form.php:409
|
1266 |
+
#: app/features/mec/meta_boxes/search_form.php:416
|
1267 |
+
#: app/features/mec/meta_boxes/search_form.php:423
|
1268 |
+
#: app/features/mec/meta_boxes/search_form.php:430
|
1269 |
+
#: app/features/mec/meta_boxes/search_form.php:437
|
1270 |
+
#: app/features/mec/meta_boxes/search_form.php:456
|
1271 |
+
#: app/features/mec/meta_boxes/search_form.php:463
|
1272 |
+
#: app/features/mec/meta_boxes/search_form.php:470
|
1273 |
+
#: app/features/mec/meta_boxes/search_form.php:477
|
1274 |
+
#: app/features/mec/meta_boxes/search_form.php:484
|
1275 |
+
#: app/features/mec/meta_boxes/search_form.php:491
|
1276 |
+
#: app/features/mec/meta_boxes/search_form.php:498
|
1277 |
+
#: app/features/mec/meta_boxes/search_form.php:517
|
1278 |
+
#: app/features/mec/meta_boxes/search_form.php:524
|
1279 |
+
#: app/features/mec/meta_boxes/search_form.php:531
|
1280 |
+
#: app/features/mec/meta_boxes/search_form.php:538
|
1281 |
+
#: app/features/mec/meta_boxes/search_form.php:545
|
1282 |
+
#: app/features/mec/meta_boxes/search_form.php:552
|
1283 |
+
#: app/features/mec/meta_boxes/search_form.php:559
|
1284 |
+
#: app/features/mec/meta_boxes/search_form.php:578
|
1285 |
+
#: app/features/mec/meta_boxes/search_form.php:585
|
1286 |
+
#: app/features/mec/meta_boxes/search_form.php:592
|
1287 |
+
#: app/features/mec/meta_boxes/search_form.php:599
|
1288 |
+
#: app/features/mec/meta_boxes/search_form.php:606
|
1289 |
+
#: app/features/mec/meta_boxes/search_form.php:613
|
1290 |
+
#: app/features/mec/meta_boxes/search_form.php:620
|
1291 |
+
#: app/features/mec/meta_boxes/search_form.php:675
|
1292 |
+
#: app/features/mec/meta_boxes/search_form.php:682
|
1293 |
+
#: app/features/mec/meta_boxes/search_form.php:689
|
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:2864
|
1298 |
+
msgid "Dropdown"
|
1299 |
+
msgstr "Desplegable"
|
1300 |
+
|
1301 |
+
#: app/features/events.php:2495 app/features/mec/booking.php:498
|
1302 |
+
#: app/libraries/main.php:2911
|
1303 |
+
msgid "Agreement"
|
1304 |
+
msgstr "Acord"
|
1305 |
+
|
1306 |
+
#: app/features/events.php:2496 app/features/mec/booking.php:499
|
1307 |
+
#: app/libraries/main.php:2752
|
1308 |
+
msgid "Paragraph"
|
1309 |
+
msgstr "Paràgraf"
|
1310 |
+
|
1311 |
+
#: app/features/events.php:3163 app/features/events.php:3181
|
1312 |
+
#: app/features/events.php:3199 app/features/events.php:3217
|
1313 |
+
#, php-format
|
1314 |
+
msgid "Show all %s"
|
1315 |
+
msgstr "Mostrar tots %s"
|
1316 |
+
|
1317 |
+
#: app/features/events.php:3163
|
1318 |
+
msgid "labels"
|
1319 |
+
msgstr "etiquetes"
|
1320 |
+
|
1321 |
+
#: app/features/events.php:3181
|
1322 |
+
msgid "locations"
|
1323 |
+
msgstr "ubicacions"
|
1324 |
+
|
1325 |
+
#: app/features/events.php:3199
|
1326 |
+
msgid "organizers"
|
1327 |
+
msgstr "organitzadors"
|
1328 |
+
|
1329 |
+
#: app/features/events.php:3233 app/features/events.php:3593
|
1330 |
+
msgid "Attendees List"
|
1331 |
+
msgstr "Límit d'assistents"
|
1332 |
+
|
1333 |
+
#: app/features/events.php:3263 app/features/events.php:3455
|
1334 |
+
#: app/features/events.php:3497 app/features/ix.php:3373
|
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
|
1338 |
+
#: app/features/mec/meta_boxes/display_options.php:872
|
1339 |
+
#: app/features/mec/meta_boxes/search_form.php:38
|
1340 |
+
#: app/features/mec/meta_boxes/search_form.php:100
|
1341 |
+
#: app/features/mec/meta_boxes/search_form.php:162
|
1342 |
+
#: app/features/mec/meta_boxes/search_form.php:223
|
1343 |
+
#: app/features/mec/meta_boxes/search_form.php:284
|
1344 |
+
#: app/features/mec/meta_boxes/search_form.php:345
|
1345 |
+
#: app/features/mec/meta_boxes/search_form.php:406
|
1346 |
+
#: app/features/mec/meta_boxes/search_form.php:460
|
1347 |
+
#: app/features/mec/meta_boxes/search_form.php:521
|
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:2057
|
1352 |
+
#: app/libraries/main.php:4925 app/libraries/skins.php:837
|
1353 |
+
#: app/skins/single.php:484 app/skins/single.php:905
|
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:3268
|
1361 |
+
msgid "Repeat"
|
1362 |
+
msgstr "Repetir"
|
1363 |
+
|
1364 |
+
#: app/features/events.php:3269
|
1365 |
+
msgid "Author"
|
1366 |
+
msgstr "Autor"
|
1367 |
+
|
1368 |
+
#: app/features/events.php:3390 app/features/events.php:3391
|
1369 |
+
msgid "iCal Export"
|
1370 |
+
msgstr "Exportar iCal"
|
1371 |
+
|
1372 |
+
#: app/features/events.php:3393 app/features/events.php:3394
|
1373 |
+
msgid "CSV Export"
|
1374 |
+
msgstr "Exportar CSV"
|
1375 |
+
|
1376 |
+
#: app/features/events.php:3396 app/features/events.php:3397
|
1377 |
+
msgid "MS Excel Export"
|
1378 |
+
msgstr "Exportar Excel"
|
1379 |
+
|
1380 |
+
#: app/features/events.php:3399 app/features/events.php:3400
|
1381 |
+
msgid "XML Export"
|
1382 |
+
msgstr "Exportació XML"
|
1383 |
+
|
1384 |
+
#: app/features/events.php:3402 app/features/events.php:3403
|
1385 |
+
msgid "JSON Export"
|
1386 |
+
msgstr "Exportació JSON"
|
1387 |
+
|
1388 |
+
#: app/features/events.php:3405 app/features/events.php:3406
|
1389 |
+
#: app/features/events.php:3588
|
1390 |
+
msgid "Duplicate"
|
1391 |
+
msgstr "Duplicar"
|
1392 |
+
|
1393 |
+
#: app/features/events.php:3455 app/features/events.php:3497
|
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:3455 app/features/events.php:3497
|
1401 |
+
#: app/features/ix.php:3373 app/features/ix.php:3414
|
1402 |
+
msgid "Link"
|
1403 |
+
msgstr "Enllaç"
|
1404 |
+
|
1405 |
+
#: app/features/events.php:3455 app/features/events.php:3497
|
1406 |
+
#, php-format
|
1407 |
+
msgid "%s Tel"
|
1408 |
+
msgstr "%s Tel"
|
1409 |
+
|
1410 |
+
#: app/features/events.php:3455 app/features/events.php:3497
|
1411 |
+
#, php-format
|
1412 |
+
msgid "%s Email"
|
1413 |
+
msgstr "%s Correu electrònic"
|
1414 |
+
|
1415 |
+
#: app/features/events.php:3591 app/features/profile/profile.php:59
|
1416 |
+
#: app/libraries/main.php:2078
|
1417 |
+
msgid "Attendees"
|
1418 |
+
msgstr "Assistents"
|
1419 |
+
|
1420 |
+
#: app/features/events.php:3604 app/libraries/notifications.php:765
|
1421 |
+
#, php-format
|
1422 |
+
msgid "%s to %s"
|
1423 |
+
msgstr "%s a %s"
|
1424 |
+
|
1425 |
+
#: app/features/events.php:3653 app/features/events.php:3849
|
1426 |
+
#: app/features/fes.php:223 app/features/profile/profile.php:186
|
1427 |
+
#: app/libraries/main.php:2092 app/libraries/main.php:4955
|
1428 |
+
msgid "Ticket"
|
1429 |
+
msgstr "Ticket"
|
1430 |
+
|
1431 |
+
#: app/features/events.php:3656 app/features/events.php:3852
|
1432 |
+
#: app/features/profile/profile.php:189
|
1433 |
+
msgid "Variations"
|
1434 |
+
msgstr "Variacions"
|
1435 |
+
|
1436 |
+
#: app/features/events.php:3666 app/features/events.php:3864
|
1437 |
+
#: app/features/fes.php:303
|
1438 |
+
msgid "Unknown"
|
1439 |
+
msgstr "Desconegut"
|
1440 |
+
|
1441 |
+
#: app/features/events.php:3694 app/features/events.php:3892
|
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."
|
1448 |
+
msgstr "Si us plau %s/%s per poder afegir nous esdeveniments."
|
1449 |
+
|
1450 |
+
#: app/features/fes.php:87 app/features/fes.php:165 app/features/profile.php:74
|
1451 |
+
msgid "Login"
|
1452 |
+
msgstr "Iniciar sesión"
|
1453 |
+
|
1454 |
+
#: app/features/fes.php:87 app/features/fes.php:165 app/features/profile.php:74
|
1455 |
+
msgid "Register"
|
1456 |
+
msgstr "Registre"
|
1457 |
+
|
1458 |
+
#: app/features/fes.php:100
|
1459 |
+
msgid "Sorry! Selected post is not an event."
|
1460 |
+
msgstr "Ho sento! la notícia seleccionada no és un esdeveniment."
|
1461 |
+
|
1462 |
+
#: app/features/fes.php:111 app/features/fes.php:150
|
1463 |
+
msgid "Sorry! You don't have access to modify this event."
|
1464 |
+
msgstr "Ho siento! No tens accés per modificar aquest esdeveniment."
|
1465 |
+
|
1466 |
+
#: app/features/fes.php:165
|
1467 |
+
#, php-format
|
1468 |
+
msgid "Please %s/%s in order to manage events."
|
1469 |
+
msgstr "Si us plau %s/%s per gestionar esdeveniments."
|
1470 |
+
|
1471 |
+
#: app/features/fes.php:195
|
1472 |
+
msgid "The event removed!"
|
1473 |
+
msgstr "L'esdeveniment ha estat eliminat!"
|
1474 |
+
|
1475 |
+
#: app/features/fes.php:223 app/libraries/main.php:2069
|
1476 |
+
msgid "Transaction ID"
|
1477 |
+
msgstr "ID Transacció"
|
1478 |
+
|
1479 |
+
#: app/features/fes.php:223
|
1480 |
+
msgid "Total Price"
|
1481 |
+
msgstr "%s Preu Total"
|
1482 |
+
|
1483 |
+
#: app/features/fes.php:223
|
1484 |
+
msgid "Ticket Variation"
|
1485 |
+
msgstr "Hora d'entrada"
|
1486 |
+
|
1487 |
+
#: app/features/fes.php:223
|
1488 |
+
msgid "Confirmation"
|
1489 |
+
msgstr "Confirmació de reserva"
|
1490 |
+
|
1491 |
+
#: app/features/fes.php:223
|
1492 |
+
msgid "Verification"
|
1493 |
+
msgstr "Verificació de la reserva"
|
1494 |
+
|
1495 |
+
#: app/features/fes.php:362
|
1496 |
+
msgid "The image is uploaded!"
|
1497 |
+
msgstr "La imatge ha estat pujada!"
|
1498 |
+
|
1499 |
+
#: app/features/fes.php:388
|
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:416
|
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:1035
|
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:1036
|
1512 |
+
msgid "The event published."
|
1513 |
+
msgstr "L'esdeveniment a estat publicat."
|
1514 |
+
|
1515 |
+
#: app/features/fes/form.php:169
|
1516 |
+
msgid "Go back to events list"
|
1517 |
+
msgstr "Torneu a la llista d'esdeveniments"
|
1518 |
+
|
1519 |
+
#: app/features/fes/form.php:365
|
1520 |
+
#: app/features/mec/meta_boxes/display_options.php:802
|
1521 |
+
#: app/libraries/main.php:410
|
1522 |
+
msgid "Monday"
|
1523 |
+
msgstr "Dilluns"
|
1524 |
+
|
1525 |
+
#: app/features/fes/form.php:366
|
1526 |
+
#: app/features/mec/meta_boxes/display_options.php:803
|
1527 |
+
#: app/libraries/main.php:410
|
1528 |
+
msgid "Tuesday"
|
1529 |
+
msgstr "Dimarts"
|
1530 |
+
|
1531 |
+
#: app/features/fes/form.php:367
|
1532 |
+
#: app/features/mec/meta_boxes/display_options.php:804
|
1533 |
+
#: app/libraries/main.php:410
|
1534 |
+
msgid "Wednesday"
|
1535 |
+
msgstr "Dimecres"
|
1536 |
+
|
1537 |
+
#: app/features/fes/form.php:368
|
1538 |
+
#: app/features/mec/meta_boxes/display_options.php:805
|
1539 |
+
#: app/libraries/main.php:410
|
1540 |
+
msgid "Thursday"
|
1541 |
+
msgstr "Dijous"
|
1542 |
+
|
1543 |
+
#: app/features/fes/form.php:369
|
1544 |
+
#: app/features/mec/meta_boxes/display_options.php:806
|
1545 |
+
#: app/libraries/main.php:410
|
1546 |
+
msgid "Friday"
|
1547 |
+
msgstr "Divendres"
|
1548 |
+
|
1549 |
+
#: app/features/fes/form.php:370
|
1550 |
+
#: app/features/mec/meta_boxes/display_options.php:807
|
1551 |
+
#: app/libraries/main.php:410
|
1552 |
+
msgid "Saturday"
|
1553 |
+
msgstr "Dissabte"
|
1554 |
+
|
1555 |
+
#: app/features/fes/form.php:371
|
1556 |
+
#: app/features/mec/meta_boxes/display_options.php:801
|
1557 |
+
#: app/libraries/main.php:410
|
1558 |
+
msgid "Sunday"
|
1559 |
+
msgstr "Diumenge"
|
1560 |
+
|
1561 |
+
#: app/features/fes/form.php:379
|
1562 |
+
msgid "Add certain days to event occurrence dates."
|
1563 |
+
msgstr "Afegeix certs dies a les dates d'ocurrència de l'esdeveniment."
|
1564 |
+
|
1565 |
+
#: app/features/fes/form.php:654
|
1566 |
+
msgid "Note to reviewer"
|
1567 |
+
msgstr "Nota al revisor"
|
1568 |
+
|
1569 |
+
#: app/features/fes/form.php:672
|
1570 |
+
msgid "User Data"
|
1571 |
+
msgstr "Dades de l'usuari"
|
1572 |
+
|
1573 |
+
#: app/features/fes/form.php:675
|
1574 |
+
msgid "eg. yourname@gmail.com"
|
1575 |
+
msgstr "ex. elteunom@gmail.com"
|
1576 |
+
|
1577 |
+
#: app/features/fes/form.php:679 app/features/organizers.php:280
|
1578 |
+
msgid "eg. John Smith"
|
1579 |
+
msgstr "ex. Joan Garcia"
|
1580 |
+
|
1581 |
+
#: app/features/fes/form.php:697
|
1582 |
+
msgid ""
|
1583 |
+
"If you fill it, it will be replaced instead of default event page link. "
|
1584 |
+
"Insert full link including http(s)://"
|
1585 |
+
msgstr ""
|
1586 |
+
"Si ho omples, es reemplaçarà en lloc de l'enllaç de la pàgina de "
|
1587 |
+
"l'esdeveniment per defecte. Insereix tot l'enllaç incloent http (s): //"
|
1588 |
+
|
1589 |
+
#: app/features/fes/form.php:733 app/features/mec/settings.php:658
|
1590 |
+
msgid "Featured Image"
|
1591 |
+
msgstr "Imatge destacada"
|
1592 |
+
|
1593 |
+
#: app/features/fes/form.php:738
|
1594 |
+
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:343
|
1599 |
+
#: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:4922
|
1600 |
+
#: app/skins/single.php:683 app/skins/single/default.php:148
|
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:341
|
1607 |
+
#: app/features/mec/meta_boxes/filter.php:147
|
1608 |
+
msgid "Tags"
|
1609 |
+
msgstr "Tags"
|
1610 |
+
|
1611 |
+
#: app/features/fes/form.php:820
|
1612 |
+
msgid "Insert your desired tags, comma separated."
|
1613 |
+
msgstr "Insereix les etiquetes que vulguis, separades per comes."
|
1614 |
+
|
1615 |
+
#: app/features/fes/form.php:842
|
1616 |
+
msgid "Speakers Names"
|
1617 |
+
msgstr "Nom dels Ponents"
|
1618 |
+
|
1619 |
+
#: app/features/fes/form.php:843
|
1620 |
+
msgid "Separate names with commas Similar Justin, Cris"
|
1621 |
+
msgstr "Separa els noms amb comes"
|
1622 |
+
|
1623 |
+
#: app/features/fes/form.php:861
|
1624 |
+
msgid "Submit"
|
1625 |
+
msgstr "Enviar"
|
1626 |
+
|
1627 |
+
#: app/features/fes/list.php:21
|
1628 |
+
msgid "Click again to remove!"
|
1629 |
+
msgstr "Fes clic de nou per eliminar!"
|
1630 |
+
|
1631 |
+
#: app/features/fes/list.php:64 app/features/fes/list.php:175
|
1632 |
+
msgid "Add new"
|
1633 |
+
msgstr "Afegir nou"
|
1634 |
+
|
1635 |
+
#: app/features/fes/list.php:80
|
1636 |
+
msgid "Download Attendees"
|
1637 |
+
msgstr "Total d'assistents"
|
1638 |
+
|
1639 |
+
#: app/features/fes/list.php:84
|
1640 |
+
msgid "Remove Event"
|
1641 |
+
msgstr "Esborrar Esdeveniment"
|
1642 |
+
|
1643 |
+
#: app/features/fes/list.php:175
|
1644 |
+
#, php-format
|
1645 |
+
msgid "No events found! %s"
|
1646 |
+
msgstr "No s'han trobat esdeveniments! %s"
|
1647 |
+
|
1648 |
+
#: app/features/ix.php:107
|
1649 |
+
msgid "MEC - Import / Export"
|
1650 |
+
msgstr "MEC - Importar / Exportar"
|
1651 |
+
|
1652 |
+
#: app/features/ix.php:107 app/features/mec/support.php:73
|
1653 |
+
#: app/libraries/main.php:799
|
1654 |
+
msgid "Import / Export"
|
1655 |
+
msgstr "Importar / Exportar"
|
1656 |
+
|
1657 |
+
#: app/features/ix.php:201
|
1658 |
+
msgid "Please upload the feed file."
|
1659 |
+
msgstr "Si us plau, puja l'arxiu del feed."
|
1660 |
+
|
1661 |
+
#: app/features/ix.php:204
|
1662 |
+
msgid "The file type should be XML or ICS."
|
1663 |
+
msgstr "El tipus d'archivo hauria de ser XML o ICS."
|
1664 |
+
|
1665 |
+
#: app/features/ix.php:213
|
1666 |
+
msgid "An error occurred during the file upload! Please check permissions!"
|
1667 |
+
msgstr ""
|
1668 |
+
"S'ha produït un error durant la pujada de l'arxiu! Si us plau, revisa els "
|
1669 |
+
"permisos!"
|
1670 |
+
|
1671 |
+
#: app/features/ix.php:221
|
1672 |
+
msgid "The events are imported successfully!"
|
1673 |
+
msgstr "Els esdeveniments s'han importat correctament!"
|
1674 |
+
|
1675 |
+
#: app/features/ix.php:806
|
1676 |
+
msgid "Third Party plugin is not installed and activated!"
|
1677 |
+
msgstr "Plugin de tercers no instal·lat ni activat!"
|
1678 |
+
|
1679 |
+
#: app/features/ix.php:829
|
1680 |
+
msgid "Third Party plugin is invalid!"
|
1681 |
+
msgstr "El Plugin de terceos no és vàlid!"
|
1682 |
+
|
1683 |
+
#: app/features/ix.php:2580 app/features/ix.php:2638
|
1684 |
+
msgid "Both of API key and Calendar ID are required!"
|
1685 |
+
msgstr "Tant la clau d'API com la ID de Calendari són necessàries!"
|
1686 |
+
|
1687 |
+
#: app/features/ix.php:2633 app/features/ix.php:3052 app/features/ix.php:3759
|
1688 |
+
msgid "Please select some events to import!"
|
1689 |
+
msgstr "Si us plau, selecciona alguns esdeveniments per importar!"
|
1690 |
+
|
1691 |
+
#: app/features/ix.php:2994 app/features/ix.php:3057
|
1692 |
+
msgid "Both of API key and Group URL are required!"
|
1693 |
+
msgstr "Tant la clau d’API com l’URL de grup són necessàries!"
|
1694 |
+
|
1695 |
+
#: app/features/ix.php:3296
|
1696 |
+
msgid "Check at Meetup"
|
1697 |
+
msgstr "Consulteu Meetup"
|
1698 |
+
|
1699 |
+
#: app/features/ix.php:3373 app/features/ix.php:3414
|
1700 |
+
msgid "Organizer Tel"
|
1701 |
+
msgstr "Telèfon de l'Organitzador"
|
1702 |
+
|
1703 |
+
#: app/features/ix.php:3373 app/features/ix.php:3414
|
1704 |
+
msgid "Organizer Email"
|
1705 |
+
msgstr "Correu electrònic de l'organitzador"
|
1706 |
+
|
1707 |
+
#: app/features/ix.php:3495
|
1708 |
+
msgid "All of Client ID, Client Secret and Calendar ID are required!"
|
1709 |
+
msgstr ""
|
1710 |
+
"Tots els ID de client, secret de client i ID de calendari són necessaris!"
|
1711 |
+
|
1712 |
+
#: app/features/ix.php:3518
|
1713 |
+
#, php-format
|
1714 |
+
msgid "All seems good! Please click %s for authenticating your app."
|
1715 |
+
msgstr "Tot sembla correcte! Fes clic a %s per autenticar la teva aplicació."
|
1716 |
+
|
1717 |
+
#: app/features/ix.php:3572
|
1718 |
+
msgid "All of Client App, Client Secret and Calendar ID are required!"
|
1719 |
+
msgstr ""
|
1720 |
+
"Totes les aplicacions de client, secret de client i ID de calendari són "
|
1721 |
+
"obligatoris!"
|
1722 |
+
|
1723 |
+
#: app/features/ix.php:3688
|
1724 |
+
#, php-format
|
1725 |
+
msgid "%s events added to Google Calendar successfully."
|
1726 |
+
msgstr "%s esdeveniments afegits amb èxit a Google Calendar."
|
1727 |
+
|
1728 |
+
#: app/features/ix.php:3689
|
1729 |
+
#, php-format
|
1730 |
+
msgid "%s previously added events get updated."
|
1731 |
+
msgstr "%s esdeveniments afegits previament s'actualitzen."
|
1732 |
+
|
1733 |
+
#: app/features/ix.php:3690
|
1734 |
+
#, php-format
|
1735 |
+
msgid "%s events failed to add for following reasons: %s"
|
1736 |
+
msgstr "%s esdeveniments van fallar a l'afegir-se pels següents motius: %s"
|
1737 |
+
|
1738 |
+
#: app/features/ix.php:3722
|
1739 |
+
msgid "Please insert your Facebook page's link."
|
1740 |
+
msgstr "Inseriu l'enllaç a la pàgina de Facebook."
|
1741 |
+
|
1742 |
+
#: app/features/ix.php:3731
|
1743 |
+
msgid ""
|
1744 |
+
"We couldn't recognize your Facebook page. Please check it and provide us a "
|
1745 |
+
"valid Facebook page link."
|
1746 |
+
msgstr ""
|
1747 |
+
"No hem pogut reconèixer la teva pàgina de Facebook. Comproveu-ho i "
|
1748 |
+
"proporcioneu-nos un enllaç de pàgina de Facebook vàlid."
|
1749 |
+
|
1750 |
+
#: app/features/ix.php:3763
|
1751 |
+
msgid "Please insert your facebook page's link."
|
1752 |
+
msgstr "Si us plau, insereix l'enllaç de la teva pàgina de Facebook."
|
1753 |
+
|
1754 |
+
#: app/features/ix.php:3768
|
1755 |
+
msgid ""
|
1756 |
+
"We couldn't recognize your Facebook page. Please check it and provide us a "
|
1757 |
+
"valid facebook page link."
|
1758 |
+
msgstr ""
|
1759 |
+
"No vam poder reconèixer la teva pàgina de Facebook. Si us plau, verifícala i "
|
1760 |
+
"escriu un nou enllaç de pàgina de Facebook."
|
1761 |
+
|
1762 |
+
#: app/features/ix/export.php:8 app/features/ix/export_g_calendar.php:12
|
1763 |
+
#: app/features/ix/import.php:8 app/features/ix/import_f_calendar.php:8
|
1764 |
+
#: app/features/ix/import_g_calendar.php:8 app/features/ix/import_meetup.php:8
|
1765 |
+
#: app/features/ix/thirdparty.php:8
|
1766 |
+
msgid "MEC Import / Export"
|
1767 |
+
msgstr "MEC Importar/Exportar"
|
1768 |
+
|
1769 |
+
#: app/features/ix/export.php:13 app/features/ix/export_g_calendar.php:17
|
1770 |
+
#: app/features/ix/import.php:13 app/features/ix/import_f_calendar.php:13
|
1771 |
+
#: app/features/ix/import_g_calendar.php:13
|
1772 |
+
#: app/features/ix/import_meetup.php:13 app/features/ix/sync.php:13
|
1773 |
+
#: app/features/ix/thirdparty.php:13
|
1774 |
+
msgid "Meetup Import"
|
1775 |
+
msgstr "Importar Meetup"
|
1776 |
+
|
1777 |
+
#: app/features/ix/export.php:14 app/features/ix/export_g_calendar.php:18
|
1778 |
+
#: app/features/ix/import.php:14 app/features/ix/import_f_calendar.php:14
|
1779 |
+
#: app/features/ix/import_g_calendar.php:14
|
1780 |
+
#: app/features/ix/import_meetup.php:14 app/features/ix/sync.php:14
|
1781 |
+
#: app/features/ix/thirdparty.php:14
|
1782 |
+
msgid "Synchronization"
|
1783 |
+
msgstr "Sincronització"
|
1784 |
+
|
1785 |
+
#: app/features/ix/export.php:15 app/features/ix/export_g_calendar.php:19
|
1786 |
+
#: app/features/ix/import.php:15 app/features/ix/import_f_calendar.php:15
|
1787 |
+
#: app/features/ix/import_g_calendar.php:15
|
1788 |
+
#: app/features/ix/import_meetup.php:15 app/features/ix/sync.php:15
|
1789 |
+
#: app/features/ix/thirdparty.php:15 app/features/mec/ie.php:31
|
1790 |
+
msgid "Export"
|
1791 |
+
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:82
|
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
|
1799 |
+
#: app/features/ix/sync.php:16 app/features/ix/thirdparty.php:16
|
1800 |
+
#: app/features/ix/thirdparty.php:102 app/features/mec/ie.php:20
|
1801 |
+
msgid "Import"
|
1802 |
+
msgstr "Importar"
|
1803 |
+
|
1804 |
+
#: app/features/ix/export.php:17 app/features/ix/export_g_calendar.php:21
|
1805 |
+
#: app/features/ix/import.php:17 app/features/ix/import_f_calendar.php:17
|
1806 |
+
#: app/features/ix/import_g_calendar.php:17
|
1807 |
+
#: app/features/ix/import_meetup.php:17 app/features/ix/sync.php:17
|
1808 |
+
#: app/features/ix/thirdparty.php:17 app/features/ix/thirdparty.php:21
|
1809 |
+
msgid "Third Party Plugins"
|
1810 |
+
msgstr "Plugins de tercers"
|
1811 |
+
|
1812 |
+
#: app/features/ix/export.php:22
|
1813 |
+
msgid "Export all events to file"
|
1814 |
+
msgstr "Exportar tots els esdeveniments a arxiu"
|
1815 |
+
|
1816 |
+
#: app/features/ix/export.php:23
|
1817 |
+
msgid ""
|
1818 |
+
"This will export all of your website events' data into your desired format."
|
1819 |
+
msgstr "Això exportará tots els esdeveniments del teu lloc al format desitjat."
|
1820 |
+
|
1821 |
+
#: app/features/ix/export.php:25 app/features/mec/modules.php:178
|
1822 |
+
msgid "iCal"
|
1823 |
+
msgstr "iCal"
|
1824 |
+
|
1825 |
+
#: app/features/ix/export.php:26
|
1826 |
+
msgid "CSV"
|
1827 |
+
msgstr "CSV"
|
1828 |
+
|
1829 |
+
#: app/features/ix/export.php:27
|
1830 |
+
msgid "MS Excel"
|
1831 |
+
msgstr "MS Excel"
|
1832 |
+
|
1833 |
+
#: app/features/ix/export.php:28
|
1834 |
+
msgid "XML"
|
1835 |
+
msgstr "XML"
|
1836 |
+
|
1837 |
+
#: app/features/ix/export.php:29
|
1838 |
+
msgid "JSON"
|
1839 |
+
msgstr "JSON"
|
1840 |
+
|
1841 |
+
#: app/features/ix/export.php:33
|
1842 |
+
msgid "Export certain events"
|
1843 |
+
msgstr "Exportació de certs esdeveniments"
|
1844 |
+
|
1845 |
+
#: app/features/ix/export.php:34
|
1846 |
+
#, php-format
|
1847 |
+
msgid "For exporting filtered events, you can use bulk actions in %s page."
|
1848 |
+
msgstr ""
|
1849 |
+
"Per a exportar esdeveniments filtrats, pots utilitzar les accions per lot a "
|
1850 |
+
"la pàgina %s."
|
1851 |
+
|
1852 |
+
#: app/features/ix/export.php:37
|
1853 |
+
msgid "Export certain bookings"
|
1854 |
+
msgstr "Exportació de certes reserves"
|
1855 |
+
|
1856 |
+
#: app/features/ix/export.php:38
|
1857 |
+
#, php-format
|
1858 |
+
msgid "For exporting bookings events, you can use bulk actions in %s page."
|
1859 |
+
msgstr ""
|
1860 |
+
"Per a l'exportació d'esdeveniments reservats, pots usar les accions en bloc "
|
1861 |
+
"a la pàgina %s."
|
1862 |
+
|
1863 |
+
#: app/features/ix/export.php:38
|
1864 |
+
msgid "Bookings"
|
1865 |
+
msgstr "Reserves"
|
1866 |
+
|
1867 |
+
#: app/features/ix/export_g_calendar.php:26
|
1868 |
+
msgid "Add events to Google Calendar"
|
1869 |
+
msgstr "Afegir esdeveniments a Google Calendar"
|
1870 |
+
|
1871 |
+
#: app/features/ix/export_g_calendar.php:27
|
1872 |
+
msgid "Add your desired website events to your Google Calendar."
|
1873 |
+
msgstr ""
|
1874 |
+
"Afegeix els esdeveniments seleccionats del lloc web al teu Google Calendar."
|
1875 |
+
|
1876 |
+
#: app/features/ix/export_g_calendar.php:27
|
1877 |
+
#, php-format
|
1878 |
+
msgid "You should set %s as redirect page in Google App Console."
|
1879 |
+
msgstr "S'ha d'ajustar la pàgina de redirecció com %s a la Google App Console."
|
1880 |
+
|
1881 |
+
#: app/features/ix/export_g_calendar.php:30
|
1882 |
+
msgid "App Client ID"
|
1883 |
+
msgstr "App Client ID"
|
1884 |
+
|
1885 |
+
#: app/features/ix/export_g_calendar.php:36
|
1886 |
+
msgid "App Client Secret"
|
1887 |
+
msgstr "App Client Secret"
|
1888 |
+
|
1889 |
+
#: app/features/ix/export_g_calendar.php:42
|
1890 |
+
#: app/features/ix/import_g_calendar.php:32
|
1891 |
+
msgid "Calendar ID"
|
1892 |
+
msgstr "ID de Calendari"
|
1893 |
+
|
1894 |
+
#: app/features/ix/export_g_calendar.php:48
|
1895 |
+
#: app/features/ix/export_g_calendar.php:103
|
1896 |
+
#: app/features/ix/export_g_calendar.php:120
|
1897 |
+
msgid "Authenticate"
|
1898 |
+
msgstr "Autentificar"
|
1899 |
+
|
1900 |
+
#: app/features/ix/export_g_calendar.php:57
|
1901 |
+
#: app/features/ix/import_f_calendar.php:56
|
1902 |
+
#: app/features/ix/import_g_calendar.php:64
|
1903 |
+
#: app/features/ix/import_meetup.php:53 app/features/ix/thirdparty.php:49
|
1904 |
+
msgid "Select All"
|
1905 |
+
msgstr "Seleccionar tots"
|
1906 |
+
|
1907 |
+
#: app/features/ix/export_g_calendar.php:58
|
1908 |
+
#: app/features/ix/import_f_calendar.php:57
|
1909 |
+
#: app/features/ix/import_g_calendar.php:65
|
1910 |
+
#: app/features/ix/import_meetup.php:54 app/features/ix/thirdparty.php:50
|
1911 |
+
msgid "Deselect All"
|
1912 |
+
msgstr "Deseleccionar tots"
|
1913 |
+
|
1914 |
+
#: app/features/ix/export_g_calendar.php:59
|
1915 |
+
#: app/features/ix/import_f_calendar.php:58
|
1916 |
+
#: app/features/ix/import_g_calendar.php:66
|
1917 |
+
#: app/features/ix/import_meetup.php:55 app/features/ix/thirdparty.php:51
|
1918 |
+
msgid "Toggle"
|
1919 |
+
msgstr "Toggle"
|
1920 |
+
|
1921 |
+
#: app/features/ix/export_g_calendar.php:72
|
1922 |
+
#: app/features/ix/export_g_calendar.php:147
|
1923 |
+
#: app/features/ix/export_g_calendar.php:164
|
1924 |
+
#: app/features/mec/notifications.php:95 app/features/mec/notifications.php:151
|
1925 |
+
#: app/features/mec/notifications.php:213
|
1926 |
+
#: app/features/mec/notifications.php:420
|
1927 |
+
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:392 app/features/mec/notifications.php:616
|
1932 |
+
#: app/features/mec/settings.php:971 app/features/mec/single.php:269
|
1933 |
+
msgid "Checking ..."
|
1934 |
+
msgstr "Verificant…"
|
1935 |
+
|
1936 |
+
#: app/features/ix/export_g_calendar.php:134
|
1937 |
+
msgid "Exporting ..."
|
1938 |
+
msgstr "Exportant ..."
|
1939 |
+
|
1940 |
+
#: app/features/ix/import.php:21
|
1941 |
+
msgid "Import MEC XML Feed"
|
1942 |
+
msgstr "Importar feed XML de MEC"
|
1943 |
+
|
1944 |
+
#: app/features/ix/import.php:24
|
1945 |
+
#, php-format
|
1946 |
+
msgid ""
|
1947 |
+
"You can import %s events from another website to this website. You just need "
|
1948 |
+
"an XML feed of the events that can be exported from source website!"
|
1949 |
+
msgstr ""
|
1950 |
+
"Pots importar% s esdeveniments d'una altra pàgina web a aquesta pàgina. "
|
1951 |
+
"Només necessites un feed XML dels esdeveniments que es podran exportar ded "
|
1952 |
+
"del lloc web original!"
|
1953 |
+
|
1954 |
+
#: app/features/ix/import.php:27
|
1955 |
+
msgid "XML Feed"
|
1956 |
+
msgstr "XML Feed"
|
1957 |
+
|
1958 |
+
#: app/features/ix/import.php:29 app/features/ix/import.php:42
|
1959 |
+
msgid "Upload & Import"
|
1960 |
+
msgstr "Pujar i Importar"
|
1961 |
+
|
1962 |
+
#: app/features/ix/import.php:33
|
1963 |
+
msgid "Import .ics File"
|
1964 |
+
msgstr "Importar arxiu .ics"
|
1965 |
+
|
1966 |
+
#: app/features/ix/import.php:37
|
1967 |
+
#, php-format
|
1968 |
+
msgid ""
|
1969 |
+
"ICS format supports by many different service providers like Facebook. Apple "
|
1970 |
+
"Calendar etc. You can import your ics file into the %s using this form."
|
1971 |
+
msgstr ""
|
1972 |
+
"El format ICS és compatible per molts proveïdors de serveis diferents com "
|
1973 |
+
"Facebook, Calendari Apple, etc. Pots importar el fitxer ICS a %s utilitzant "
|
1974 |
+
"aquest formulari."
|
1975 |
+
|
1976 |
+
#: app/features/ix/import.php:40
|
1977 |
+
msgid "ICS Feed"
|
1978 |
+
msgstr "ICS Feed"
|
1979 |
+
|
1980 |
+
#: app/features/ix/import.php:46 app/features/mec/booking.php:91
|
1981 |
+
#: app/features/mec/booking.php:264 app/features/mec/booking.php:282
|
1982 |
+
#: app/features/mec/booking.php:359
|
1983 |
+
#: app/features/mec/meta_boxes/display_options.php:162
|
1984 |
+
#: app/features/mec/meta_boxes/display_options.php:340
|
1985 |
+
#: app/features/mec/modules.php:70 app/features/mec/modules.php:211
|
1986 |
+
#: app/features/mec/modules.php:228
|
1987 |
+
#, php-format
|
1988 |
+
msgid "%s is required to use this feature."
|
1989 |
+
msgstr "Es requereix %s per utilitzar aquesta funcionalitat."
|
1990 |
+
|
1991 |
+
#: app/features/ix/import.php:46 app/features/ix/sync.php:22
|
1992 |
+
#: app/features/mec/booking.php:91 app/features/mec/booking.php:264
|
1993 |
+
#: app/features/mec/booking.php:282 app/features/mec/booking.php:359
|
1994 |
+
#: app/features/mec/meta_boxes/display_options.php:162
|
1995 |
+
#: app/features/mec/meta_boxes/display_options.php:340
|
1996 |
+
#: app/features/mec/meta_boxes/display_options.php:368
|
1997 |
+
#: app/features/mec/meta_boxes/display_options.php:495
|
1998 |
+
#: app/features/mec/meta_boxes/display_options.php:546
|
1999 |
+
#: app/features/mec/meta_boxes/display_options.php:653
|
2000 |
+
#: app/features/mec/meta_boxes/display_options.php:760
|
2001 |
+
#: app/features/mec/meta_boxes/display_options.php:833
|
2002 |
+
#: app/features/mec/meta_boxes/display_options.php:1033
|
2003 |
+
#: app/features/mec/modules.php:70 app/features/mec/modules.php:211
|
2004 |
+
#: app/features/mec/modules.php:228
|
2005 |
+
msgid "Pro version of Modern Events Calendar"
|
2006 |
+
msgstr "Versión Pro de Modern Events Calendar"
|
2007 |
+
|
2008 |
+
#: app/features/ix/import_f_calendar.php:22
|
2009 |
+
msgid "The Facebook SDK requires PHP version 5.4 or higher."
|
2010 |
+
msgstr "La SDK de Facebook requereix PHP versión 5.4 o superior."
|
2011 |
+
|
2012 |
+
#: app/features/ix/import_f_calendar.php:26
|
2013 |
+
msgid "Import from Facebook Calendar"
|
2014 |
+
msgstr "Importar des de Facebook Calendar"
|
2015 |
+
|
2016 |
+
#: app/features/ix/import_f_calendar.php:27
|
2017 |
+
msgid "Import all of your Facebook events into MEC."
|
2018 |
+
msgstr "Importar todos els teus esdeveniments de Facebook a MEC."
|
2019 |
+
|
2020 |
+
#: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:135
|
2021 |
+
#: app/features/mec/support-page.php:11 app/features/mec/support.php:100
|
2022 |
+
msgid "Documentation"
|
2023 |
+
msgstr "Documentació"
|
2024 |
+
|
2025 |
+
#: app/features/ix/import_f_calendar.php:29
|
2026 |
+
msgid "Facebook Page Access Token"
|
2027 |
+
msgstr "Token d'accés a la pàgina de Facebook"
|
2028 |
+
|
2029 |
+
#: app/features/ix/import_f_calendar.php:35
|
2030 |
+
msgid "Facebook Page Link"
|
2031 |
+
msgstr "Enllaç a la pàgina de Facebook"
|
2032 |
+
|
2033 |
+
#: app/features/ix/import_f_calendar.php:53
|
2034 |
+
msgid "Facebook Events"
|
2035 |
+
msgstr "Esdeveniments en Facebook"
|
2036 |
+
|
2037 |
+
#: app/features/ix/import_f_calendar.php:54
|
2038 |
+
#, php-format
|
2039 |
+
msgid ""
|
2040 |
+
"We found %s events for %s page. Please select your desired events to import."
|
2041 |
+
msgstr ""
|
2042 |
+
"Hem trobat els %s esdeveniments per a la %s pàgina. Si us plau selecciona "
|
2043 |
+
"els esdeveniments que vulguis importar."
|
2044 |
+
|
2045 |
+
#: app/features/ix/import_f_calendar.php:65 app/features/ix/thirdparty.php:58
|
2046 |
+
#, php-format
|
2047 |
+
msgid "Event Title: %s"
|
2048 |
+
msgstr "Nom de l'Esdeveniment: %s"
|
2049 |
+
|
2050 |
+
#: app/features/ix/import_f_calendar.php:72
|
2051 |
+
#: app/features/ix/import_g_calendar.php:87
|
2052 |
+
#: app/features/ix/import_meetup.php:69 app/features/ix/thirdparty.php:65
|
2053 |
+
msgid "Import Options"
|
2054 |
+
msgstr "Importar Opcions"
|
2055 |
+
|
2056 |
+
#: app/features/ix/import_f_calendar.php:76
|
2057 |
+
#: app/features/ix/import_g_calendar.php:97
|
2058 |
+
#: app/features/ix/import_meetup.php:79 app/features/ix/thirdparty.php:82
|
2059 |
+
msgid "Import Locations"
|
2060 |
+
msgstr "Importar ubicacions"
|
2061 |
+
|
2062 |
+
#: app/features/ix/import_f_calendar.php:92
|
2063 |
+
#, php-format
|
2064 |
+
msgid "%s events successfully imported to your website from Facebook Calendar."
|
2065 |
+
msgstr ""
|
2066 |
+
"%s esdeveniments satisfactòriament importats al teu lloc web des de Facebook "
|
2067 |
+
"Calendari."
|
2068 |
+
|
2069 |
+
#: app/features/ix/import_g_calendar.php:23
|
2070 |
+
msgid "Import from Google Calendar"
|
2071 |
+
msgstr "Importar des de Google Calendar"
|
2072 |
+
|
2073 |
+
#: app/features/ix/import_g_calendar.php:24
|
2074 |
+
msgid "This will import all of your Google calendar events into MEC."
|
2075 |
+
msgstr "Això importarà tota la informació de Google Calendar a MEC."
|
2076 |
+
|
2077 |
+
#: app/features/ix/import_g_calendar.php:26
|
2078 |
+
msgid "Google API Key"
|
2079 |
+
msgstr "Clave API de Google"
|
2080 |
+
|
2081 |
+
#: app/features/ix/import_g_calendar.php:61
|
2082 |
+
msgid "Google Calendar Events"
|
2083 |
+
msgstr "Esdeveniments de Google Calendar"
|
2084 |
+
|
2085 |
+
#: app/features/ix/import_g_calendar.php:62
|
2086 |
+
#, php-format
|
2087 |
+
msgid ""
|
2088 |
+
"We found %s events for %s calendar. Please select your desired events to "
|
2089 |
+
"import."
|
2090 |
+
msgstr ""
|
2091 |
+
"Hem trobat %s esdeveniments per a %s el calendari. Si us plau selecciona els "
|
2092 |
+
"esdeveniments que desitgis importar."
|
2093 |
+
|
2094 |
+
#: app/features/ix/import_g_calendar.php:80
|
2095 |
+
#: app/features/ix/import_meetup.php:62
|
2096 |
+
#, php-format
|
2097 |
+
msgid "Event Title: %s Event Date: %s - %s"
|
2098 |
+
msgstr "Títol de l'esdeveniment %s Data de l'esdeveniment %s - %s"
|
2099 |
+
|
2100 |
+
#: app/features/ix/import_g_calendar.php:91
|
2101 |
+
#: app/features/ix/import_meetup.php:73 app/features/ix/thirdparty.php:73
|
2102 |
+
msgid "Import Organizers"
|
2103 |
+
msgstr "Importar organizadors"
|
2104 |
+
|
2105 |
+
#: app/features/ix/import_g_calendar.php:113
|
2106 |
+
#, php-format
|
2107 |
+
msgid "%s events successfully imported to your website from Google Calendar."
|
2108 |
+
msgstr ""
|
2109 |
+
"%s esdeveniments importats correctament al teu lloc des de Google Calendar."
|
2110 |
+
|
2111 |
+
#: app/features/ix/import_meetup.php:23
|
2112 |
+
msgid "Import from Meetup"
|
2113 |
+
msgstr "Importar des de Meetup"
|
2114 |
+
|
2115 |
+
#: app/features/ix/import_meetup.php:24
|
2116 |
+
msgid "This will import all your meetup events into MEC."
|
2117 |
+
msgstr "Això importarà tots els vostres esdeveniments de reunió a MEC."
|
2118 |
+
|
2119 |
+
#: app/features/ix/import_meetup.php:26
|
2120 |
+
msgid "Meetup API Key"
|
2121 |
+
msgstr "Meetup API Key"
|
2122 |
+
|
2123 |
+
#: app/features/ix/import_meetup.php:32
|
2124 |
+
msgid "Group URL"
|
2125 |
+
msgstr "URL del Grup"
|
2126 |
+
|
2127 |
+
#: app/features/ix/import_meetup.php:35
|
2128 |
+
#, php-format
|
2129 |
+
msgid "put only the slug of your group like %s in %s"
|
2130 |
+
msgstr "poseu només el slug del vostre grup com % s en % s"
|
2131 |
+
|
2132 |
+
#: app/features/ix/import_meetup.php:50
|
2133 |
+
msgid "Meetup Events"
|
2134 |
+
msgstr "Meetup Events"
|
2135 |
+
|
2136 |
+
#: app/features/ix/import_meetup.php:51
|
2137 |
+
#, php-format
|
2138 |
+
msgid ""
|
2139 |
+
"We found %s events for %s group. Please select your desired events to import."
|
2140 |
+
msgstr ""
|
2141 |
+
"Hem trobat %s esdeveniments per al grup %s. Seleccioneu els esdeveniments "
|
2142 |
+
"que voleu importar."
|
2143 |
+
|
2144 |
+
#: app/features/ix/import_meetup.php:95
|
2145 |
+
#, php-format
|
2146 |
+
msgid "%s events successfully imported to your website from meetup."
|
2147 |
+
msgstr "%s esdeveniments importats amb èxit al vostre lloc web des de Meetup."
|
2148 |
+
|
2149 |
+
#: app/features/ix/import_meetup.php:96 app/features/ix/thirdparty.php:113
|
2150 |
+
msgid "Attention"
|
2151 |
+
msgstr "Atenció"
|
2152 |
+
|
2153 |
+
#: app/features/ix/import_meetup.php:96
|
2154 |
+
msgid ""
|
2155 |
+
"Although we tried our best to make the events completely compatible with MEC "
|
2156 |
+
"but some modification might be needed. We suggest you to edit the imported "
|
2157 |
+
"listings one by one on MEC edit event page and make sure thay're correct."
|
2158 |
+
msgstr ""
|
2159 |
+
"Encara que intentem fer el millor per fer compatibles amb MEC, però alguna "
|
2160 |
+
"vegada es necessita alguna modificació. Et suggerim que per editar la llista "
|
2161 |
+
"importada un per un en MEC edita la pàgina de l'Esdeveniment i assegura't "
|
2162 |
+
"que aquest correcta."
|
2163 |
+
|
2164 |
+
#: app/features/ix/sync.php:8
|
2165 |
+
msgid "Auto Synchronization"
|
2166 |
+
msgstr "Autosincronització"
|
2167 |
+
|
2168 |
+
#: app/features/ix/sync.php:22
|
2169 |
+
#: app/features/mec/meta_boxes/display_options.php:833
|
2170 |
+
#, php-format
|
2171 |
+
msgid "%s is required to use synchronization feature."
|
2172 |
+
msgstr "Es requereix %s per utilitzarar la funcionalitat de sincronització."
|
2173 |
+
|
2174 |
+
#: app/features/ix/sync.php:29
|
2175 |
+
msgid "Auto Google Import"
|
2176 |
+
msgstr "Importación automàtica a Google"
|
2177 |
+
|
2178 |
+
#: app/features/ix/sync.php:32 app/features/ix/sync.php:41
|
2179 |
+
#: app/features/ix/sync.php:52 app/features/ix/sync.php:63
|
2180 |
+
#: app/features/mec/notifications.php:361
|
2181 |
+
msgid "Important Note"
|
2182 |
+
msgstr "Nota important"
|
2183 |
+
|
2184 |
+
#: app/features/ix/sync.php:32
|
2185 |
+
#, php-format
|
2186 |
+
msgid ""
|
2187 |
+
"Set a cronjob to call %s file atleast once per day otherwise it won't import "
|
2188 |
+
"Google Calendar events."
|
2189 |
+
msgstr ""
|
2190 |
+
"Estableix un cronjob per cridar a l'arxiu % s un cop al dia, en cas contrari "
|
2191 |
+
"no podràs importar esdeveniments de Google Calendar."
|
2192 |
+
|
2193 |
+
#: app/features/ix/sync.php:38
|
2194 |
+
msgid "Auto Google Export"
|
2195 |
+
msgstr "Exportació automàtica a Google"
|
2196 |
+
|
2197 |
+
#: app/features/ix/sync.php:41
|
2198 |
+
#, php-format
|
2199 |
+
msgid ""
|
2200 |
+
"Set a cronjob to call %s file atleast once per day otherwise it won't export "
|
2201 |
+
"your website events into Google Calendar."
|
2202 |
+
msgstr ""
|
2203 |
+
"Estableix un cronjob per cridar a l'arxiu % s un cop al dia, en cas contrari "
|
2204 |
+
"no podràs importar esdeveniments a Google Calendar."
|
2205 |
+
|
2206 |
+
#: app/features/ix/sync.php:49
|
2207 |
+
msgid "Auto Facebook Import"
|
2208 |
+
msgstr "Importación automàtica de Facebook"
|
2209 |
+
|
2210 |
+
#: app/features/ix/sync.php:52
|
2211 |
+
#, php-format
|
2212 |
+
msgid ""
|
2213 |
+
"Set a cronjob to call %s file atleast once per day otherwise it won't import "
|
2214 |
+
"any event from Facebook."
|
2215 |
+
msgstr ""
|
2216 |
+
"Estableix un cronjob per cridar a l'arxiu % s un cop al dia, en cas contrari "
|
2217 |
+
"no podràs importar esdeveniments de Facebook."
|
2218 |
+
|
2219 |
+
#: app/features/ix/sync.php:60
|
2220 |
+
msgid "Auto Meetup Import"
|
2221 |
+
msgstr "Importación automàtica de Meetup"
|
2222 |
+
|
2223 |
+
#: app/features/ix/sync.php:63
|
2224 |
+
#, php-format
|
2225 |
+
msgid ""
|
2226 |
+
"Set a cronjob to call %s file atleast once per day otherwise it won't import "
|
2227 |
+
"any event from Meetup."
|
2228 |
+
msgstr ""
|
2229 |
+
"Estableix un cronjob per cridar a l'arxiu % s un cop al dia, en cas contrari "
|
2230 |
+
"no podràs importar esdeveniments de Meetup."
|
2231 |
+
|
2232 |
+
#: app/features/ix/sync.php:67
|
2233 |
+
msgid "Auto set cronjobs (Once Daily)"
|
2234 |
+
msgstr "Cronjobs automàtics (Un cop al dia)"
|
2235 |
+
|
2236 |
+
#: app/features/ix/sync.php:68
|
2237 |
+
msgid "First you need to enable above options for each to be able to use this."
|
2238 |
+
msgstr ""
|
2239 |
+
"En primer lloc, heu d'habilitar les opcions anteriors perquè cadascú pugui "
|
2240 |
+
"utilitzar-ho."
|
2241 |
+
|
2242 |
+
#: app/features/ix/sync.php:69
|
2243 |
+
msgid ""
|
2244 |
+
"If you cannot set Cron Job on your server, you can use the options below. "
|
2245 |
+
"Please make sure to NOT use the following options and set on the server "
|
2246 |
+
"manually together."
|
2247 |
+
msgstr ""
|
2248 |
+
"Si no podeu configurar Cron Job al vostre servidor, podeu utilitzar les "
|
2249 |
+
"opcions següents. Assegureu-vos que NO utilitzeu les opcions següents i "
|
2250 |
+
"configureu-les al servidor manualment."
|
2251 |
+
|
2252 |
+
#: app/features/ix/sync.php:73
|
2253 |
+
#, fuzzy
|
2254 |
+
#| msgid "Google Cal. Import"
|
2255 |
+
msgid "Google import"
|
2256 |
+
msgstr "Importar de Google Calendar"
|
2257 |
+
|
2258 |
+
#: app/features/ix/sync.php:78
|
2259 |
+
#, fuzzy
|
2260 |
+
#| msgid "Google Cal. Export"
|
2261 |
+
msgid "Google export"
|
2262 |
+
msgstr "Exportar a Google Calendar"
|
2263 |
+
|
2264 |
+
#: app/features/ix/sync.php:83
|
2265 |
+
msgid "Meetup import"
|
2266 |
+
msgstr "Importar de Meetup"
|
2267 |
+
|
2268 |
+
#: app/features/ix/sync.php:90
|
2269 |
+
msgid "Save"
|
2270 |
+
msgstr "Desar"
|
2271 |
+
|
2272 |
+
#: app/features/ix/thirdparty.php:24
|
2273 |
+
#, php-format
|
2274 |
+
msgid "You can import events from following integrated plugins to %s."
|
2275 |
+
msgstr ""
|
2276 |
+
"%s esdeveniments importats correctament al teu lloc des de Google Calendar."
|
2277 |
+
|
2278 |
+
#: app/features/ix/thirdparty.php:27
|
2279 |
+
msgid "Third Party"
|
2280 |
+
msgstr "Terceros"
|
2281 |
+
|
2282 |
+
#: app/features/ix/thirdparty.php:46
|
2283 |
+
msgid "Found Events"
|
2284 |
+
msgstr "Esdeveniments trobats"
|
2285 |
+
|
2286 |
+
#: app/features/ix/thirdparty.php:47
|
2287 |
+
#, php-format
|
2288 |
+
msgid "We found %s events. Please select your desired events to import."
|
2289 |
+
msgstr ""
|
2290 |
+
"Trobem %s esdeveniments. Selecciona els esdeveniments que desitgis importar."
|
2291 |
+
|
2292 |
+
#: app/features/ix/thirdparty.php:72
|
2293 |
+
msgid "Import Instructors"
|
2294 |
+
msgstr "Importar Instructors"
|
2295 |
+
|
2296 |
+
#: app/features/ix/thirdparty.php:89
|
2297 |
+
msgid "Import Class Types"
|
2298 |
+
msgstr "Importar tipus de Classes"
|
2299 |
+
|
2300 |
+
#: app/features/ix/thirdparty.php:90
|
2301 |
+
msgid "Import Categories"
|
2302 |
+
msgstr "Importar Categories"
|
2303 |
+
|
2304 |
+
#: app/features/ix/thirdparty.php:97
|
2305 |
+
msgid "Import Featured Images"
|
2306 |
+
msgstr "Importar imatges destacades"
|
2307 |
+
|
2308 |
+
#: app/features/ix/thirdparty.php:112
|
2309 |
+
#, php-format
|
2310 |
+
msgid "%s events successfully imported to your website."
|
2311 |
+
msgstr "%s esdeveniments importats amb èxit al lloc web."
|
2312 |
+
|
2313 |
+
#: app/features/ix/thirdparty.php:113
|
2314 |
+
msgid ""
|
2315 |
+
"Although we tried our best to make the events completely compatible with MEC "
|
2316 |
+
"but some modification might be needed. We suggest you to edit the imported "
|
2317 |
+
"listings one by one on MEC edit event page and make sure they are correct."
|
2318 |
+
msgstr ""
|
2319 |
+
"Tot i que hem intentat fer els esdeveniments completament compatibles amb "
|
2320 |
+
"MEC, però pot ser necessària alguna modificació. Us recomanem que editeu els "
|
2321 |
+
"llistats importats un a un a la pàgina d’esdeveniments d’edició del MEC i "
|
2322 |
+
"assegureu-vos que siguin correctes."
|
2323 |
+
|
2324 |
+
#: app/features/labels.php:79 app/features/locations.php:77
|
2325 |
+
#: app/features/organizers.php:77 app/features/speakers.php:80
|
2326 |
+
#, php-format
|
2327 |
+
msgid "← Back to %s"
|
2328 |
+
msgstr "← Tornar a %s"
|
2329 |
+
|
2330 |
+
#: app/features/labels.php:103 app/features/labels.php:134
|
2331 |
+
#: app/features/labels.php:179
|
2332 |
+
msgid "Color"
|
2333 |
+
msgstr "Color"
|
2334 |
+
|
2335 |
+
#: app/features/labels.php:107 app/features/labels.php:136
|
2336 |
+
msgid "Select label color"
|
2337 |
+
msgstr "Tria un color d'etiqueta"
|
2338 |
+
|
2339 |
+
#: app/features/labels.php:112 app/features/labels.php:139
|
2340 |
+
#: app/features/mec/meta_boxes/display_options.php:38
|
2341 |
+
#: app/features/mec/meta_boxes/display_options.php:202
|
2342 |
+
#: app/features/mec/meta_boxes/display_options.php:373
|
2343 |
+
#: app/features/mec/meta_boxes/display_options.php:551
|
2344 |
+
#: app/features/mec/meta_boxes/display_options.php:601
|
2345 |
+
#: app/features/mec/meta_boxes/display_options.php:765
|
2346 |
+
#: app/features/mec/meta_boxes/display_options.php:915
|
2347 |
+
#: app/features/mec/meta_boxes/display_options.php:972
|
2348 |
+
#: app/features/mec/meta_boxes/display_options.php:1064
|
2349 |
+
#: app/features/mec/meta_boxes/display_options.php:1151
|
2350 |
+
msgid "Style"
|
2351 |
+
msgstr "Estil"
|
2352 |
+
|
2353 |
+
#: app/features/labels.php:116 app/features/labels.php:141
|
2354 |
+
msgid "Normal"
|
2355 |
+
msgstr "Normal"
|
2356 |
+
|
2357 |
+
#: app/features/labels.php:117 app/features/labels.php:142
|
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:50 app/skins/list/render.php:41
|
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:142
|
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:5171 app/skins/agenda/render.php:43
|
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:51
|
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:143
|
2382 |
+
#: app/skins/weekly_view/render.php:37 app/skins/yearly_view/render.php:52
|
2383 |
+
msgid "Canceled"
|
2384 |
+
msgstr "Cancel·lats"
|
2385 |
+
|
2386 |
+
#: app/features/labels.php:120 app/features/labels.php:145
|
2387 |
+
msgid "You can show featured and canceled events by a different style!"
|
2388 |
+
msgstr ""
|
2389 |
+
"Podeu mostrar els esdeveniments destacats i cancel·lats a través d'un estil "
|
2390 |
+
"diferent!"
|
2391 |
+
|
2392 |
+
#: app/features/labels.php:180 app/features/locations.php:232
|
2393 |
+
#: app/features/organizers.php:206 app/features/speakers.php:257
|
2394 |
+
#: app/modules/booking/steps/tickets.php:38
|
2395 |
+
msgid "Count"
|
2396 |
+
msgstr "Comptador"
|
2397 |
+
|
2398 |
+
#: app/features/labels.php:181 app/features/locations.php:233
|
2399 |
+
#: app/features/organizers.php:207
|
2400 |
+
msgid "Slug"
|
2401 |
+
msgstr "Slug"
|
2402 |
+
|
2403 |
+
#: app/features/labels.php:221 app/features/locations.php:287
|
2404 |
+
#, php-format
|
2405 |
+
msgid "Event %s"
|
2406 |
+
msgstr "Esdeveniment %s"
|
2407 |
+
|
2408 |
+
#: app/features/locations.php:59 app/features/mec.php:344
|
2409 |
+
#: app/features/mec/dashboard.php:269 app/features/mec/meta_boxes/filter.php:96
|
2410 |
+
#: app/libraries/main.php:4924
|
2411 |
+
msgid "Locations"
|
2412 |
+
msgstr "Llocs"
|
2413 |
+
|
2414 |
+
#: app/features/locations.php:105 app/features/locations.php:159
|
2415 |
+
#: app/features/locations.php:231
|
2416 |
+
msgid "Address"
|
2417 |
+
msgstr "Adreça"
|
2418 |
+
|
2419 |
+
#: app/features/locations.php:108 app/features/locations.php:160
|
2420 |
+
msgid "Enter the location address"
|
2421 |
+
msgstr "Introdueix l'adreça de el lloc"
|
2422 |
+
|
2423 |
+
#: app/features/locations.php:122 app/features/locations.php:172
|
2424 |
+
#: app/features/locations.php:325
|
2425 |
+
msgid "Latitude"
|
2426 |
+
msgstr "Latitud"
|
2427 |
+
|
2428 |
+
#: app/features/locations.php:125 app/features/locations.php:173
|
2429 |
+
msgid "Geo latitude (Optional)"
|
2430 |
+
msgstr "Geo latitud (Opcional)"
|
2431 |
+
|
2432 |
+
#: app/features/locations.php:130 app/features/locations.php:176
|
2433 |
+
#: app/features/locations.php:326
|
2434 |
+
msgid "Longitude"
|
2435 |
+
msgstr "Longitud"
|
2436 |
+
|
2437 |
+
#: app/features/locations.php:133 app/features/locations.php:177
|
2438 |
+
msgid "Geo longitude (Optional)"
|
2439 |
+
msgstr "Geolongitud (opcional)"
|
2440 |
+
|
2441 |
+
#: app/features/locations.php:138 app/features/locations.php:180
|
2442 |
+
#: app/features/organizers.php:127 app/features/organizers.php:160
|
2443 |
+
#: app/features/speakers.php:158 app/features/speakers.php:203
|
2444 |
+
msgid "Thumbnail"
|
2445 |
+
msgstr "Miniatura"
|
2446 |
+
|
2447 |
+
#: app/features/locations.php:143 app/features/locations.php:183
|
2448 |
+
#: app/features/organizers.php:132 app/features/organizers.php:163
|
2449 |
+
#: app/features/speakers.php:163 app/features/speakers.php:206
|
2450 |
+
msgid "Upload/Add image"
|
2451 |
+
msgstr "Pujar/Afegir imatge"
|
2452 |
+
|
2453 |
+
#: app/features/locations.php:144 app/features/locations.php:184
|
2454 |
+
#: app/features/locations.php:340 app/features/locations.php:347
|
2455 |
+
#: app/features/organizers.php:133 app/features/organizers.php:164
|
2456 |
+
#: app/features/organizers.php:299 app/features/organizers.php:306
|
2457 |
+
#: app/features/speakers.php:164 app/features/speakers.php:207
|
2458 |
+
msgid "Remove image"
|
2459 |
+
msgstr "Eliminar imatge"
|
2460 |
+
|
2461 |
+
#: app/features/locations.php:290
|
2462 |
+
msgid "Hide location"
|
2463 |
+
msgstr "Ocultar lugar"
|
2464 |
+
|
2465 |
+
#: app/features/locations.php:291
|
2466 |
+
msgid "Insert a new location"
|
2467 |
+
msgstr "Insertar nuevo lugar"
|
2468 |
+
|
2469 |
+
#: app/features/locations.php:299
|
2470 |
+
msgid "Choose one of saved locations or insert new one below."
|
2471 |
+
msgstr "Trieu una de les ubicacions desades o inseriu-ne una de més avall."
|
2472 |
+
|
2473 |
+
#: app/features/locations.php:306
|
2474 |
+
msgid "Location Name"
|
2475 |
+
msgstr "Nom del lloc"
|
2476 |
+
|
2477 |
+
#: app/features/locations.php:307
|
2478 |
+
msgid "eg. City Hall"
|
2479 |
+
msgstr "ex. Barcelona"
|
2480 |
+
|
2481 |
+
#: app/features/locations.php:310 app/features/mec/settings.php:688
|
2482 |
+
#: app/widgets/single.php:115
|
2483 |
+
msgid "Event Location"
|
2484 |
+
msgstr "Lloc de l'esdeveniment"
|
2485 |
+
|
2486 |
+
#: app/features/locations.php:311
|
2487 |
+
msgid "eg. City hall, Manhattan, New York"
|
2488 |
+
msgstr "ex. Barcelona, Espanya"
|
2489 |
+
|
2490 |
+
#: app/features/locations.php:329
|
2491 |
+
msgid "Latitude/Longitude"
|
2492 |
+
msgstr "Latitud/Longitud"
|
2493 |
+
|
2494 |
+
#: app/features/locations.php:330
|
2495 |
+
msgid ""
|
2496 |
+
"If you leave the latitude and longitude empty, Modern Events Calendar tries "
|
2497 |
+
"to convert the location address to geopoint, Latitude and Longitude are the "
|
2498 |
+
"units that represent the coordinates at geographic coordinate system. To "
|
2499 |
+
"make a search, use the name of a place, city, state, or address, or click "
|
2500 |
+
"the location on the map to find lat long coordinates."
|
2501 |
+
msgstr ""
|
2502 |
+
"Si deixeu la latitud i la longitud buides, el calendari d'esdeveniments "
|
2503 |
+
"moderns intenta convertir l'adreça d'ubicació en geopoint, la latitud i la "
|
2504 |
+
"longitud són les unitats que representen les coordenades del sistema de "
|
2505 |
+
"coordenades geogràfiques. Per fer una cerca, utilitzeu el nom d’un lloc, "
|
2506 |
+
"ciutat, estat o adreça o feu clic a la ubicació del mapa per trobar les "
|
2507 |
+
"coordenades llargues."
|
2508 |
+
|
2509 |
+
#: app/features/locations.php:330
|
2510 |
+
msgid "Get Latitude and Longitude"
|
2511 |
+
msgstr "Obteniu la latitud i la longitud"
|
2512 |
+
|
2513 |
+
#: app/features/locations.php:339 app/features/organizers.php:298
|
2514 |
+
msgid "Choose image"
|
2515 |
+
msgstr "Triar imatge"
|
2516 |
+
|
2517 |
+
#: app/features/locations.php:353
|
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:4958
|
2522 |
+
msgid "Other Locations"
|
2523 |
+
msgstr "Altres llocs"
|
2524 |
+
|
2525 |
+
#: app/features/locations.php:358
|
2526 |
+
msgid ""
|
2527 |
+
"You can select extra locations in addition to main location if you like."
|
2528 |
+
msgstr ""
|
2529 |
+
"Si vols, pots seleccionar organitzadors addicionals a més de l'organitzador "
|
2530 |
+
"principal."
|
2531 |
+
|
2532 |
+
#: app/features/login.php:61 app/features/login.php:63
|
2533 |
+
msgid "<strong>"
|
2534 |
+
msgstr "<strong>"
|
2535 |
+
|
2536 |
+
#: app/features/mec.php:167
|
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>"
|
2540 |
+
msgstr ""
|
2541 |
+
"L'activació ha fallat. Comproveu el vostre codi de compra o tipus de "
|
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:167
|
2546 |
+
msgid "Troubleshooting"
|
2547 |
+
msgstr "Resolució de problemes"
|
2548 |
+
|
2549 |
+
#: app/features/mec.php:218
|
2550 |
+
msgid ""
|
2551 |
+
"Your options is not in JSON format. Please insert correct options in this "
|
2552 |
+
"field and try again."
|
2553 |
+
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:225
|
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:231
|
2562 |
+
msgid "Your options imported successfuly."
|
2563 |
+
msgstr "Les vostres opcions s’han importat correctament."
|
2564 |
+
|
2565 |
+
#: app/features/mec.php:324
|
2566 |
+
msgid "MEC - Support"
|
2567 |
+
msgstr "MEC - Suport"
|
2568 |
+
|
2569 |
+
#: app/features/mec.php:324 app/features/mec/support-page.php:9
|
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:345 app/features/mec/dashboard.php:276
|
2575 |
+
#: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
|
2576 |
+
#: app/libraries/main.php:4926
|
2577 |
+
msgid "Organizers"
|
2578 |
+
msgstr "Organitzadors"
|
2579 |
+
|
2580 |
+
#: app/features/mec.php:353 app/features/mec.php:373
|
2581 |
+
#: app/features/mec/dashboard.php:262
|
2582 |
+
msgid "Shortcodes"
|
2583 |
+
msgstr "Shortcodes"
|
2584 |
+
|
2585 |
+
#: app/features/mec.php:354
|
2586 |
+
msgid "MEC - Settings"
|
2587 |
+
msgstr "Configuració MEC"
|
2588 |
+
|
2589 |
+
#: app/features/mec.php:355
|
2590 |
+
msgid "MEC - Addons"
|
2591 |
+
msgstr "Complements MEC"
|
2592 |
+
|
2593 |
+
#: app/features/mec.php:355 app/features/mec/addons.php:22
|
2594 |
+
msgid "Addons"
|
2595 |
+
msgstr "Complements"
|
2596 |
+
|
2597 |
+
#: app/features/mec.php:375
|
2598 |
+
msgid "Add Shortcode"
|
2599 |
+
msgstr "Afegir Shortcode"
|
2600 |
+
|
2601 |
+
#: app/features/mec.php:376
|
2602 |
+
msgid "Add New Shortcode"
|
2603 |
+
msgstr "Afegir nou Shortcode"
|
2604 |
+
|
2605 |
+
#: app/features/mec.php:377
|
2606 |
+
msgid "No shortcodes found!"
|
2607 |
+
msgstr "No hi ha shortcodes!"
|
2608 |
+
|
2609 |
+
#: app/features/mec.php:378
|
2610 |
+
msgid "All Shortcodes"
|
2611 |
+
msgstr "Tots els Shortcodes"
|
2612 |
+
|
2613 |
+
#: app/features/mec.php:379
|
2614 |
+
msgid "Edit shortcodes"
|
2615 |
+
msgstr "Editar Shortcodes"
|
2616 |
+
|
2617 |
+
#: app/features/mec.php:380
|
2618 |
+
msgid "No shortcodes found in Trash!"
|
2619 |
+
msgstr "No hi ha shortcodes a la paperera!"
|
2620 |
+
|
2621 |
+
#: app/features/mec.php:433
|
2622 |
+
msgid "Display Options"
|
2623 |
+
msgstr "Opcions de pantalla"
|
2624 |
+
|
2625 |
+
#: app/features/mec.php:434
|
2626 |
+
msgid "Filter Options"
|
2627 |
+
msgstr "Opcions de filtres"
|
2628 |
+
|
2629 |
+
#: app/features/mec.php:436
|
2630 |
+
msgid "Search Form"
|
2631 |
+
msgstr "Formulari de Cerca"
|
2632 |
+
|
2633 |
+
#: app/features/mec.php:788
|
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:801
|
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:806
|
2642 |
+
msgid "Separate Window"
|
2643 |
+
msgstr "Finestra separada"
|
2644 |
+
|
2645 |
+
#: app/features/mec.php:807
|
2646 |
+
msgid "Modal 1"
|
2647 |
+
msgstr "Modal 1"
|
2648 |
+
|
2649 |
+
#: app/features/mec/addons.php:26 app/features/mec/addons.php:68
|
2650 |
+
#: app/features/mec/dashboard.php:81 app/features/mec/support-page.php:21
|
2651 |
+
msgid "Version"
|
2652 |
+
msgstr "Versió"
|
2653 |
+
|
2654 |
+
#: app/features/mec/addons.php:82
|
2655 |
+
msgid "Coming Soon"
|
2656 |
+
msgstr "Pròximament"
|
2657 |
+
|
2658 |
+
#: app/features/mec/addons.php:93
|
2659 |
+
msgid ""
|
2660 |
+
"<strong>\"file_get_contents\"</strong> and <strong>\"Curl\"</strong> "
|
2661 |
+
"functions are <strong>not activated</strong> on your server. Please contact "
|
2662 |
+
"your host provider in this regard."
|
2663 |
+
msgstr ""
|
2664 |
+
"<strong>\"file_get_contents\"</strong> i <strong>\"Curl\"</strong> funcions "
|
2665 |
+
"<strong>no están activades</strong> al teu servidor. Si us plau contacta al "
|
2666 |
+
"vostre proveïdor de hosting al respecte."
|
2667 |
+
|
2668 |
+
#: app/features/mec/booking.php:70 app/features/mec/messages.php:13
|
2669 |
+
#: app/features/mec/modules.php:23 app/features/mec/notifications.php:12
|
2670 |
+
#: app/features/mec/settings.php:53 app/features/mec/single.php:15
|
2671 |
+
#: app/features/mec/styling.php:35
|
2672 |
+
msgid "Search..."
|
2673 |
+
msgstr "Cercar..."
|
2674 |
+
|
2675 |
+
#: app/features/mec/booking.php:72 app/features/mec/booking.php:505
|
2676 |
+
#: app/features/mec/booking.php:585 app/features/mec/booking.php:594
|
2677 |
+
#: app/features/mec/booking.php:604 app/features/mec/booking.php:646
|
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:357
|
2682 |
+
#: app/features/mec/modules.php:367 app/features/mec/modules.php:409
|
2683 |
+
#: app/features/mec/modules.php:423 app/features/mec/notifications.php:14
|
2684 |
+
#: app/features/mec/notifications.php:525
|
2685 |
+
#: app/features/mec/notifications.php:537
|
2686 |
+
#: app/features/mec/notifications.php:633
|
2687 |
+
#: app/features/mec/notifications.php:647 app/features/mec/settings.php:55
|
2688 |
+
#: app/features/mec/settings.php:920 app/features/mec/settings.php:930
|
2689 |
+
#: app/features/mec/settings.php:988 app/features/mec/settings.php:1002
|
2690 |
+
#: app/features/mec/single.php:17 app/features/mec/single.php:234
|
2691 |
+
#: app/features/mec/single.php:244 app/features/mec/single.php:286
|
2692 |
+
#: app/features/mec/single.php:300 app/features/mec/styles.php:11
|
2693 |
+
#: app/features/mec/styles.php:31 app/features/mec/styles.php:40
|
2694 |
+
#: app/features/mec/styles.php:77 app/features/mec/styles.php:86
|
2695 |
+
#: app/features/mec/styling.php:37 app/features/mec/styling.php:242
|
2696 |
+
#: app/features/mec/styling.php:251 app/features/mec/styling.php:314
|
2697 |
+
#: app/features/mec/styling.php:323
|
2698 |
+
msgid "Save Changes"
|
2699 |
+
msgstr "Desar canvis"
|
2700 |
+
|
2701 |
+
#: app/features/mec/booking.php:96
|
2702 |
+
msgid "Enable booking module"
|
2703 |
+
msgstr "Activar el mòdul de reserves"
|
2704 |
+
|
2705 |
+
#: app/features/mec/booking.php:97
|
2706 |
+
msgid ""
|
2707 |
+
"After enabling and saving the settings, reloading the page will add 'payment "
|
2708 |
+
"Gateways' to the settings and a new menu item on the Dashboard"
|
2709 |
+
msgstr ""
|
2710 |
+
"Després d’haver activat i desat la configuració, la càrrega de la pàgina "
|
2711 |
+
"tornarà a afegir “Pasarel·les de pagament” a la configuració i un nou "
|
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:306 app/features/mec/modules.php:311
|
2716 |
+
msgid "Date Format"
|
2717 |
+
msgstr "Format de data"
|
2718 |
+
|
2719 |
+
#: app/features/mec/booking.php:108
|
2720 |
+
msgid "Default is Y-m-d"
|
2721 |
+
msgstr "El valor predeterminado es Y-m-d"
|
2722 |
+
|
2723 |
+
#: app/features/mec/booking.php:115
|
2724 |
+
#: app/features/mec/meta_boxes/display_options.php:121
|
2725 |
+
#: app/features/mec/meta_boxes/display_options.php:321
|
2726 |
+
#: app/features/mec/meta_boxes/display_options.php:404
|
2727 |
+
#: app/features/mec/meta_boxes/display_options.php:863
|
2728 |
+
#: app/features/mec/meta_boxes/display_options.php:1130
|
2729 |
+
#: app/features/mec/meta_boxes/display_options.php:1239
|
2730 |
+
#: app/features/mec/meta_boxes/display_options.php:1277
|
2731 |
+
msgid "Limit"
|
2732 |
+
msgstr "Límit"
|
2733 |
+
|
2734 |
+
#: app/features/mec/booking.php:117
|
2735 |
+
msgid "Default is empty"
|
2736 |
+
msgstr "El valor predeterminat és buit"
|
2737 |
+
|
2738 |
+
#: app/features/mec/booking.php:120
|
2739 |
+
msgid "Booking Limit"
|
2740 |
+
msgstr "Formulari de Reserves"
|
2741 |
+
|
2742 |
+
#: app/features/mec/booking.php:121
|
2743 |
+
msgid ""
|
2744 |
+
"Total tickets that a user can book. It is useful if you're providing free "
|
2745 |
+
"tickets. Leave it empty for unlimited booking."
|
2746 |
+
msgstr ""
|
2747 |
+
"Total de tickets que un usuari pot reservar. És útil si proporcioneu "
|
2748 |
+
"entrades gratuïtes. Deixeu-lo buit per a reserves il·limitades."
|
2749 |
+
|
2750 |
+
#: app/features/mec/booking.php:128
|
2751 |
+
msgid "Maximum Dates"
|
2752 |
+
msgstr "Dates màximes"
|
2753 |
+
|
2754 |
+
#: app/features/mec/booking.php:130
|
2755 |
+
msgid "Default is 6"
|
2756 |
+
msgstr "El valor predeterminat és 6"
|
2757 |
+
|
2758 |
+
#: app/features/mec/booking.php:134 app/features/mec/booking.php:139
|
2759 |
+
msgid "Show Booking Form Interval"
|
2760 |
+
msgstr "Mostra l'interval al formulari de reserves"
|
2761 |
+
|
2762 |
+
#: app/features/mec/booking.php:136
|
2763 |
+
msgid "Minutes (e.g 5)"
|
2764 |
+
msgstr "Minuts (ex. 5)"
|
2765 |
+
|
2766 |
+
#: app/features/mec/booking.php:140
|
2767 |
+
msgid ""
|
2768 |
+
"You can show booking form only at certain time before event start. If you "
|
2769 |
+
"set this option to 30 then booking form will open only 30 minutes before "
|
2770 |
+
"starting the event!"
|
2771 |
+
msgstr ""
|
2772 |
+
"Podeu mostrar el formulari de reserva només en un moment determinat abans de "
|
2773 |
+
"l'inici de l'esdeveniment. Si configureu aquesta opció a 30, el formulari de "
|
2774 |
+
"reserva s’obrirà només 30 minuts abans d’iniciar-se l’esdeveniment!"
|
2775 |
+
|
2776 |
+
#: app/features/mec/booking.php:147 app/features/mec/booking.php:157
|
2777 |
+
#: app/features/mec/settings.php:595 app/features/mec/settings.php:605
|
2778 |
+
msgid "Thank You Page"
|
2779 |
+
msgstr "Pàgina d'agraïment"
|
2780 |
+
|
2781 |
+
#: app/features/mec/booking.php:158
|
2782 |
+
msgid ""
|
2783 |
+
"User redirects to this page after booking. Leave it empty if you want to "
|
2784 |
+
"disable it."
|
2785 |
+
msgstr ""
|
2786 |
+
"Es redirecciona a l'usuari a aquesta pàgina una vegada que completa la "
|
2787 |
+
"reserva. Deixa-ho buit si disitges desactivar-ho."
|
2788 |
+
|
2789 |
+
#: app/features/mec/booking.php:165 app/features/mec/booking.php:170
|
2790 |
+
#: app/features/mec/settings.php:615 app/features/mec/settings.php:620
|
2791 |
+
msgid "Thank You Page Time Interval"
|
2792 |
+
msgstr "Pàgina de agraïment"
|
2793 |
+
|
2794 |
+
#: app/features/mec/booking.php:167 app/features/mec/settings.php:617
|
2795 |
+
msgid "2000 mean 2 seconds"
|
2796 |
+
msgstr "2000 vol dir 2 segons"
|
2797 |
+
|
2798 |
+
#: app/features/mec/booking.php:171 app/features/mec/settings.php:621
|
2799 |
+
msgid ""
|
2800 |
+
"Waiting time before redirecting to thank you page. It's in miliseconds so "
|
2801 |
+
"2000 means 2 seconds."
|
2802 |
+
msgstr ""
|
2803 |
+
"Temps d’espera abans de redirigir la pàgina d’agraïments. Està en "
|
2804 |
+
"mil·lisegons, per tant, 2000 significa 2 segons."
|
2805 |
+
|
2806 |
+
#: app/features/mec/booking.php:182
|
2807 |
+
msgid "Enable Express Attendees Form"
|
2808 |
+
msgstr "Habilitar formulari de assistents exprés"
|
2809 |
+
|
2810 |
+
#: app/features/mec/booking.php:186 app/modules/booking/steps/form.php:52
|
2811 |
+
msgid "Attendees Form"
|
2812 |
+
msgstr "Formulari d'assistents"
|
2813 |
+
|
2814 |
+
#: app/features/mec/booking.php:187
|
2815 |
+
msgid ""
|
2816 |
+
"Users are able to apply first attendee information for other attendees in "
|
2817 |
+
"the booking form."
|
2818 |
+
msgstr ""
|
2819 |
+
"Els usuaris podran copiar la informació del primer convidat per als altres "
|
2820 |
+
"convidats al formulari de reserves."
|
2821 |
+
|
2822 |
+
#: app/features/mec/booking.php:200
|
2823 |
+
msgid "Enable Invoice"
|
2824 |
+
msgstr "Activar factura"
|
2825 |
+
|
2826 |
+
#: app/features/mec/booking.php:211
|
2827 |
+
msgid "Enable Booking for Ongoing Events"
|
2828 |
+
msgstr "Activa la reserva per a l'esdeveniments en curs"
|
2829 |
+
|
2830 |
+
#: app/features/mec/booking.php:216
|
2831 |
+
msgid "Email verification"
|
2832 |
+
msgstr "Verificació per email"
|
2833 |
+
|
2834 |
+
#: app/features/mec/booking.php:222
|
2835 |
+
msgid "Auto verification for free bookings"
|
2836 |
+
msgstr "Auto verificació per a reserves gratuïtes"
|
2837 |
+
|
2838 |
+
#: app/features/mec/booking.php:231
|
2839 |
+
msgid "Auto verification for paid bookings"
|
2840 |
+
msgstr "Auto verificació per a reserves de pagament"
|
2841 |
+
|
2842 |
+
#: app/features/mec/booking.php:235 app/features/mec/notifications.php:158
|
2843 |
+
#: app/libraries/main.php:576
|
2844 |
+
msgid "Booking Confirmation"
|
2845 |
+
msgstr "Confirmació de reserva"
|
2846 |
+
|
2847 |
+
#: app/features/mec/booking.php:241
|
2848 |
+
msgid "Auto confirmation for free bookings"
|
2849 |
+
msgstr "Confirmació automàtica per a reserves gratuïtes"
|
2850 |
+
|
2851 |
+
#: app/features/mec/booking.php:250
|
2852 |
+
msgid "Auto confirmation for paid bookings"
|
2853 |
+
msgstr "Confirmació automàtica per a reserves pagades"
|
2854 |
+
|
2855 |
+
#: app/features/mec/booking.php:269
|
2856 |
+
msgid "Enable coupons module"
|
2857 |
+
msgstr "Activar mòdul de cupons"
|
2858 |
+
|
2859 |
+
#: app/features/mec/booking.php:271
|
2860 |
+
msgid ""
|
2861 |
+
"After enabling and saving the settings,, you should reload the page to see a "
|
2862 |
+
"new menu on the Dashboard > Booking"
|
2863 |
+
msgstr ""
|
2864 |
+
"Després d’haver activat i desat la configuració, heu de tornar a carregar la "
|
2865 |
+
"pàgina per veure un nou menú al Tauler de control> Reserva"
|
2866 |
+
|
2867 |
+
#: app/features/mec/booking.php:279 app/libraries/main.php:555
|
2868 |
+
msgid "Taxes / Fees"
|
2869 |
+
msgstr "Impostos/Taxes"
|
2870 |
+
|
2871 |
+
#: app/features/mec/booking.php:287
|
2872 |
+
msgid "Enable taxes / fees module"
|
2873 |
+
msgstr "Activar mòdulo d'Impuestos/Taxes"
|
2874 |
+
|
2875 |
+
#: app/features/mec/booking.php:292
|
2876 |
+
msgid "Add Fee"
|
2877 |
+
msgstr "Nova taxa"
|
2878 |
+
|
2879 |
+
#: app/features/mec/booking.php:356 app/libraries/main.php:556
|
2880 |
+
msgid "Ticket Variations & Options"
|
2881 |
+
msgstr "Variacions de tickets i Opcions"
|
2882 |
+
|
2883 |
+
#: app/features/mec/booking.php:364
|
2884 |
+
msgid "Enable ticket options module"
|
2885 |
+
msgstr "Activa el mòdul d’opcions de tickets"
|
2886 |
+
|
2887 |
+
#: app/features/mec/booking.php:369
|
2888 |
+
msgid "Add Variation / Option"
|
2889 |
+
msgstr "Afegir Variació / Opció"
|
2890 |
+
|
2891 |
+
#: app/features/mec/booking.php:572
|
2892 |
+
msgid "Enable Organizer Payment Module"
|
2893 |
+
msgstr "Activa el mòdul de pagament per l'organitzador"
|
2894 |
+
|
2895 |
+
#: app/features/mec/booking.php:576
|
2896 |
+
msgid "Organizer Payment"
|
2897 |
+
msgstr "Pagament de l’organitzador"
|
2898 |
+
|
2899 |
+
#: app/features/mec/booking.php:577
|
2900 |
+
msgid ""
|
2901 |
+
"By enabling this module, organizers are able to insert their own payment "
|
2902 |
+
"credentials for enabled gateways per event and receive the payments directly!"
|
2903 |
+
msgstr ""
|
2904 |
+
"Si activeu aquest mòdul, els organitzadors poden inserir les seves pròpies "
|
2905 |
+
"credencials de pagament per a passarel·les habilitades per esdeveniment i "
|
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:387 app/features/mec/notifications.php:611
|
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:388 app/features/mec/notifications.php:612
|
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:390 app/features/mec/modules.php:412
|
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:5170
|
2928 |
+
msgid "Verified"
|
2929 |
+
msgstr "Verificat"
|
2930 |
+
|
2931 |
+
#: app/features/mec/booking.php:651 app/features/mec/modules.php:414
|
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"
|
2935 |
+
msgstr "Si us plau, actualiza la pàgina"
|
2936 |
+
|
2937 |
+
#: app/features/mec/dashboard.php:60
|
2938 |
+
#, php-format
|
2939 |
+
msgid "Welcome %s"
|
2940 |
+
msgstr "Benvingut %s"
|
2941 |
+
|
2942 |
+
#: app/features/mec/dashboard.php:63
|
2943 |
+
#, php-format
|
2944 |
+
msgid "%s - Most Powerful & Easy to Use Events Management System"
|
2945 |
+
msgstr "%s - El sistema gestor d'esdeveniments més potent i fàcil d'usar"
|
2946 |
+
|
2947 |
+
#: app/features/mec/dashboard.php:63
|
2948 |
+
msgid "Modern Events Calendar (Lite)"
|
2949 |
+
msgstr "Modern Events Calendar (Lite)"
|
2950 |
+
|
2951 |
+
#: app/features/mec/dashboard.php:65 app/libraries/factory.php:196
|
2952 |
+
msgctxt "plugin rate"
|
2953 |
+
msgid "Rate the plugin ★★★★★"
|
2954 |
+
msgstr "Valora el complement ★★★★★"
|
2955 |
+
|
2956 |
+
#: app/features/mec/dashboard.php:70
|
2957 |
+
msgid "Update"
|
2958 |
+
msgstr "Actualitzar %s"
|
2959 |
+
|
2960 |
+
#: app/features/mec/dashboard.php:92
|
2961 |
+
#, php-format
|
2962 |
+
msgid ""
|
2963 |
+
"You're using %s version of Modern Events Calendar. To use advanced booking "
|
2964 |
+
"system, modern skins like Agenda, Timetable, Masonry, Yearly View, Available "
|
2965 |
+
"Spots, etc you should upgrade to the Pro version."
|
2966 |
+
msgstr ""
|
2967 |
+
"Fas servir la versió %s de Modern Events Calendar. Per utilitzar el sistema "
|
2968 |
+
"de reserves avançat, lels temes moderns com agenda, horari, masonry, vista "
|
2969 |
+
"anual, punts disponibles, etc. podries actualitzar-te a la versió Pro."
|
2970 |
+
|
2971 |
+
#: app/features/mec/dashboard.php:92
|
2972 |
+
msgid "lite"
|
2973 |
+
msgstr "lite"
|
2974 |
+
|
2975 |
+
#: app/features/mec/dashboard.php:95 app/features/mec/support.php:126
|
2976 |
+
msgid "GO PREMIUM"
|
2977 |
+
msgstr "ANAR A PREMIUM"
|
2978 |
+
|
2979 |
+
#: app/features/mec/dashboard.php:98
|
2980 |
+
#, php-format
|
2981 |
+
msgid ""
|
2982 |
+
"Easily get a discount coupon by rating us on %s or following and reposting "
|
2983 |
+
"us on social media. Just send a screenshot to %s and you'll receive the %s"
|
2984 |
+
msgstr ""
|
2985 |
+
"Obteniu un cupó de descompte fàcilment puntuant-nos a %s o seguint-nos i "
|
2986 |
+
"tornant a col·locar-nos a les xarxes socials. Només cal enviar una captura "
|
2987 |
+
"de pantalla a %s i rebreu %s"
|
2988 |
+
|
2989 |
+
#: app/features/mec/dashboard.php:98
|
2990 |
+
msgid "WordPress"
|
2991 |
+
msgstr "WordPress"
|
2992 |
+
|
2993 |
+
#: app/features/mec/dashboard.php:98
|
2994 |
+
msgid "Copouns!"
|
2995 |
+
msgstr "Cupons!"
|
2996 |
+
|
2997 |
+
#: app/features/mec/dashboard.php:126
|
2998 |
+
msgid "Getting started with Modern Events Calendar"
|
2999 |
+
msgstr "Començar amb Modern Events Calendar"
|
3000 |
+
|
3001 |
+
#: app/features/mec/dashboard.php:127
|
3002 |
+
msgid ""
|
3003 |
+
"In this short video, you can learn how to make an event and put a calendar "
|
3004 |
+
"on your website. Please watch this 2 minutes video to the end."
|
3005 |
+
msgstr ""
|
3006 |
+
"En aquest breu vídeo, podreu aprendre a fer un esdeveniment i posar un "
|
3007 |
+
"calendari al vostre lloc web. Mireu aquest vídeo de 2 minuts fins al final."
|
3008 |
+
|
3009 |
+
#: app/features/mec/dashboard.php:143 app/features/mec/dashboard.php:167
|
3010 |
+
msgid "MEC Activate"
|
3011 |
+
msgstr "Activació MEC"
|
3012 |
+
|
3013 |
+
#: app/features/mec/dashboard.php:149 app/features/mec/dashboard.php:231
|
3014 |
+
msgid "Activate Addons"
|
3015 |
+
msgstr "Activar complements"
|
3016 |
+
|
3017 |
+
#: app/features/mec/dashboard.php:157 app/features/mec/dashboard.php:240
|
3018 |
+
msgid "You cannot access this section."
|
3019 |
+
msgstr "No podeu accedir a aquesta secció."
|
3020 |
+
|
3021 |
+
#: app/features/mec/dashboard.php:173
|
3022 |
+
msgid ""
|
3023 |
+
"In order to use all plugin features and options, please enter your purchase "
|
3024 |
+
"code."
|
3025 |
+
msgstr ""
|
3026 |
+
"Per utilitzar totes les funcions i opcions del complement, introduïu el codi "
|
3027 |
+
"de compra."
|
3028 |
+
|
3029 |
+
#: app/features/mec/dashboard.php:287 app/features/mec/settings.php:391
|
3030 |
+
msgid "Upcoming Events"
|
3031 |
+
msgstr "Pròxims Esdeveniments"
|
3032 |
+
|
3033 |
+
#: app/features/mec/dashboard.php:311
|
3034 |
+
msgid "Popular Gateways"
|
3035 |
+
msgstr "Passarel·les de pagament populars"
|
3036 |
+
|
3037 |
+
#: app/features/mec/dashboard.php:365
|
3038 |
+
msgid "Total Bookings"
|
3039 |
+
msgstr "Total resereas"
|
3040 |
+
|
3041 |
+
#: app/features/mec/dashboard.php:392
|
3042 |
+
msgid "This Month"
|
3043 |
+
msgstr "Aquest Mes"
|
3044 |
+
|
3045 |
+
#: app/features/mec/dashboard.php:393
|
3046 |
+
msgid "Last Month"
|
3047 |
+
msgstr "Últim Mes"
|
3048 |
+
|
3049 |
+
#: app/features/mec/dashboard.php:394
|
3050 |
+
msgid "This Year"
|
3051 |
+
msgstr "Aquest any"
|
3052 |
+
|
3053 |
+
#: app/features/mec/dashboard.php:395
|
3054 |
+
msgid "Last Year"
|
3055 |
+
msgstr "L'any passat"
|
3056 |
+
|
3057 |
+
#: app/features/mec/dashboard.php:407
|
3058 |
+
msgid "Bar"
|
3059 |
+
msgstr "Barra"
|
3060 |
+
|
3061 |
+
#: app/features/mec/dashboard.php:408
|
3062 |
+
msgid "Line"
|
3063 |
+
msgstr "Línia"
|
3064 |
+
|
3065 |
+
#: app/features/mec/dashboard.php:410
|
3066 |
+
msgid "Filter"
|
3067 |
+
msgstr "Filtre"
|
3068 |
+
|
3069 |
+
#: app/features/mec/dashboard.php:426
|
3070 |
+
#, php-format
|
3071 |
+
msgid "Total Sells (%s)"
|
3072 |
+
msgstr "Vendes Totals (%s)"
|
3073 |
+
|
3074 |
+
#: app/features/mec/dashboard.php:447
|
3075 |
+
msgid "Change Log"
|
3076 |
+
msgstr "Historial de canvis"
|
3077 |
+
|
3078 |
+
#: app/features/mec/ie.php:21
|
3079 |
+
msgid ""
|
3080 |
+
"Insert your backup files below and press import to restore your site's "
|
3081 |
+
"options to the last backup."
|
3082 |
+
msgstr ""
|
3083 |
+
"Inseriu els fitxers de còpia de seguretat a continuació i premeu Importar "
|
3084 |
+
"per restaurar les opcions del vostre lloc a l'última còpia de seguretat."
|
3085 |
+
|
3086 |
+
#: app/features/mec/ie.php:22
|
3087 |
+
msgid ""
|
3088 |
+
"WARNING! Restoring backup will overwrite all of your current option values. "
|
3089 |
+
"Caution Indeed."
|
3090 |
+
msgstr ""
|
3091 |
+
"ATENCIÓ! En restaurar la còpia de seguretat es substitueixen tots els valors "
|
3092 |
+
"actuals d'opció. Precaució."
|
3093 |
+
|
3094 |
+
#: app/features/mec/ie.php:25
|
3095 |
+
msgid "Please paste your options here"
|
3096 |
+
msgstr "Enganxeu les vostres opcions aquí"
|
3097 |
+
|
3098 |
+
#: app/features/mec/ie.php:27
|
3099 |
+
msgid "Import Settings"
|
3100 |
+
msgstr "Configuració d'Importació"
|
3101 |
+
|
3102 |
+
#: app/features/mec/ie.php:37
|
3103 |
+
msgid "Download Settings"
|
3104 |
+
msgstr "Configuració de descàrrega"
|
3105 |
+
|
3106 |
+
#: app/features/mec/messages.php:28 app/features/mec/support.php:66
|
3107 |
+
#: app/libraries/main.php:792
|
3108 |
+
msgid "Messages"
|
3109 |
+
msgstr "Missatges"
|
3110 |
+
|
3111 |
+
#: app/features/mec/messages.php:31
|
3112 |
+
msgid ""
|
3113 |
+
"You can change some MEC messages here simply. For example if you like to "
|
3114 |
+
"change \"REGISTER\" button label, you can do it here. By the Way, if your "
|
3115 |
+
"website is a multilingual website, we recommend you to change the messages/"
|
3116 |
+
"phrases from language files."
|
3117 |
+
msgstr ""
|
3118 |
+
"Pots canviar aquí algun de els missatges de MEC. Per exemple si vols canviar "
|
3119 |
+
"l'etiqueta \"REGISTRAR\" del botó de registre, pots fer-ho aquí. Per cert, "
|
3120 |
+
"si la teva pagina web és multidioma, et recomanem que canviïs els missatges "
|
3121 |
+
"des sels arxius d'idioma."
|
3122 |
+
|
3123 |
+
#: app/features/mec/meta_boxes/display_options.php:22
|
3124 |
+
msgid "Skin"
|
3125 |
+
msgstr "Tema"
|
3126 |
+
|
3127 |
+
#: app/features/mec/meta_boxes/display_options.php:40
|
3128 |
+
#: app/features/mec/meta_boxes/display_options.php:204
|
3129 |
+
#: app/features/mec/meta_boxes/display_options.php:603
|
3130 |
+
#: app/features/mec/meta_boxes/display_options.php:917
|
3131 |
+
#: app/features/mec/settings.php:255 app/features/mec/settings.php:279
|
3132 |
+
#: app/features/mec/settings.php:288 app/features/mec/settings.php:329
|
3133 |
+
#: app/features/mec/settings.php:353 app/features/mec/settings.php:362
|
3134 |
+
msgid "Classic"
|
3135 |
+
msgstr "Clàssic"
|
3136 |
+
|
3137 |
+
#: app/features/mec/meta_boxes/display_options.php:41
|
3138 |
+
#: app/features/mec/meta_boxes/display_options.php:206
|
3139 |
+
#: app/features/mec/settings.php:280 app/features/mec/settings.php:290
|
3140 |
+
#: app/features/mec/settings.php:354 app/features/mec/settings.php:364
|
3141 |
+
msgid "Minimal"
|
3142 |
+
msgstr "Mínim"
|
3143 |
+
|
3144 |
+
#: app/features/mec/meta_boxes/display_options.php:42
|
3145 |
+
#: app/features/mec/meta_boxes/display_options.php:207
|
3146 |
+
#: app/features/mec/meta_boxes/display_options.php:553
|
3147 |
+
#: app/features/mec/meta_boxes/display_options.php:605
|
3148 |
+
#: app/features/mec/meta_boxes/display_options.php:767
|
3149 |
+
#: app/features/mec/meta_boxes/display_options.php:919
|
3150 |
+
#: app/features/mec/settings.php:257 app/features/mec/settings.php:270
|
3151 |
+
#: app/features/mec/settings.php:281 app/features/mec/settings.php:291
|
3152 |
+
#: app/features/mec/settings.php:331 app/features/mec/settings.php:344
|
3153 |
+
#: app/features/mec/settings.php:355 app/features/mec/settings.php:365
|
3154 |
+
msgid "Modern"
|
3155 |
+
msgstr "Modern"
|
3156 |
+
|
3157 |
+
#: app/features/mec/meta_boxes/display_options.php:43
|
3158 |
+
#: app/features/mec/settings.php:282 app/features/mec/settings.php:356
|
3159 |
+
msgid "Standard"
|
3160 |
+
msgstr "Estàndar"
|
3161 |
+
|
3162 |
+
#: app/features/mec/meta_boxes/display_options.php:44
|
3163 |
+
#: app/features/mec/settings.php:283 app/features/mec/settings.php:357
|
3164 |
+
msgid "Accordion"
|
3165 |
+
msgstr "Acordeó"
|
3166 |
+
|
3167 |
+
#: app/features/mec/meta_boxes/display_options.php:50
|
3168 |
+
#: app/features/mec/meta_boxes/display_options.php:216
|
3169 |
+
#: app/features/mec/meta_boxes/display_options.php:381
|
3170 |
+
#: app/features/mec/meta_boxes/display_options.php:660
|
3171 |
+
#: app/features/mec/meta_boxes/display_options.php:693
|
3172 |
+
#: app/features/mec/meta_boxes/display_options.php:840
|
3173 |
+
#: app/features/mec/meta_boxes/display_options.php:1075
|
3174 |
+
#: app/features/mec/meta_boxes/display_options.php:1163
|
3175 |
+
#: app/features/mec/meta_boxes/display_options.php:1255
|
3176 |
+
msgid "Today"
|
3177 |
+
msgstr "Avui"
|
3178 |
+
|
3179 |
+
#: app/features/mec/meta_boxes/display_options.php:51
|
3180 |
+
#: app/features/mec/meta_boxes/display_options.php:217
|
3181 |
+
#: app/features/mec/meta_boxes/display_options.php:382
|
3182 |
+
#: app/features/mec/meta_boxes/display_options.php:661
|
3183 |
+
#: app/features/mec/meta_boxes/display_options.php:694
|
3184 |
+
#: app/features/mec/meta_boxes/display_options.php:841
|
3185 |
+
#: app/features/mec/meta_boxes/display_options.php:1076
|
3186 |
+
#: app/features/mec/meta_boxes/display_options.php:1164
|
3187 |
+
#: app/features/mec/meta_boxes/display_options.php:1256
|
3188 |
+
msgid "Tomorrow"
|
3189 |
+
msgstr "Demà"
|
3190 |
+
|
3191 |
+
#: app/features/mec/meta_boxes/display_options.php:52
|
3192 |
+
#: app/features/mec/meta_boxes/display_options.php:218
|
3193 |
+
#: app/features/mec/meta_boxes/display_options.php:383
|
3194 |
+
#: app/features/mec/meta_boxes/display_options.php:436
|
3195 |
+
#: app/features/mec/meta_boxes/display_options.php:613
|
3196 |
+
#: app/features/mec/meta_boxes/display_options.php:662
|
3197 |
+
#: app/features/mec/meta_boxes/display_options.php:695
|
3198 |
+
#: app/features/mec/meta_boxes/display_options.php:730
|
3199 |
+
#: app/features/mec/meta_boxes/display_options.php:776
|
3200 |
+
#: app/features/mec/meta_boxes/display_options.php:842
|
3201 |
+
#: app/features/mec/meta_boxes/display_options.php:1077
|
3202 |
+
#: app/features/mec/meta_boxes/display_options.php:1165
|
3203 |
+
#: app/features/mec/meta_boxes/display_options.php:1257
|
3204 |
+
#: app/features/mec/meta_boxes/display_options.php:1309
|
3205 |
+
msgid "Start of Current Month"
|
3206 |
+
msgstr "Inici del mes actual"
|
3207 |
+
|
3208 |
+
#: app/features/mec/meta_boxes/display_options.php:53
|
3209 |
+
#: app/features/mec/meta_boxes/display_options.php:219
|
3210 |
+
#: app/features/mec/meta_boxes/display_options.php:384
|
3211 |
+
#: app/features/mec/meta_boxes/display_options.php:437
|
3212 |
+
#: app/features/mec/meta_boxes/display_options.php:614
|
3213 |
+
#: app/features/mec/meta_boxes/display_options.php:663
|
3214 |
+
#: app/features/mec/meta_boxes/display_options.php:696
|
3215 |
+
#: app/features/mec/meta_boxes/display_options.php:731
|
3216 |
+
#: app/features/mec/meta_boxes/display_options.php:777
|
3217 |
+
#: app/features/mec/meta_boxes/display_options.php:843
|
3218 |
+
#: app/features/mec/meta_boxes/display_options.php:1078
|
3219 |
+
#: app/features/mec/meta_boxes/display_options.php:1166
|
3220 |
+
#: app/features/mec/meta_boxes/display_options.php:1258
|
3221 |
+
#: app/features/mec/meta_boxes/display_options.php:1310
|
3222 |
+
msgid "Start of Next Month"
|
3223 |
+
msgstr "Inici del següent mes"
|
3224 |
+
|
3225 |
+
#: app/features/mec/meta_boxes/display_options.php:54
|
3226 |
+
#: app/features/mec/meta_boxes/display_options.php:220
|
3227 |
+
#: app/features/mec/meta_boxes/display_options.php:385
|
3228 |
+
#: app/features/mec/meta_boxes/display_options.php:438
|
3229 |
+
#: app/features/mec/meta_boxes/display_options.php:561
|
3230 |
+
#: app/features/mec/meta_boxes/display_options.php:615
|
3231 |
+
#: app/features/mec/meta_boxes/display_options.php:664
|
3232 |
+
#: app/features/mec/meta_boxes/display_options.php:697
|
3233 |
+
#: app/features/mec/meta_boxes/display_options.php:732
|
3234 |
+
#: app/features/mec/meta_boxes/display_options.php:778
|
3235 |
+
#: app/features/mec/meta_boxes/display_options.php:844
|
3236 |
+
#: app/features/mec/meta_boxes/display_options.php:1079
|
3237 |
+
#: app/features/mec/meta_boxes/display_options.php:1167
|
3238 |
+
#: app/features/mec/meta_boxes/display_options.php:1259
|
3239 |
+
#: app/features/mec/meta_boxes/display_options.php:1311
|
3240 |
+
msgid "On a certain date"
|
3241 |
+
msgstr "Una data concreta"
|
3242 |
+
|
3243 |
+
#: app/features/mec/meta_boxes/display_options.php:57
|
3244 |
+
#: app/features/mec/meta_boxes/display_options.php:223
|
3245 |
+
#: app/features/mec/meta_boxes/display_options.php:388
|
3246 |
+
#: app/features/mec/meta_boxes/display_options.php:441
|
3247 |
+
#: app/features/mec/meta_boxes/display_options.php:564
|
3248 |
+
#: app/features/mec/meta_boxes/display_options.php:618
|
3249 |
+
#: app/features/mec/meta_boxes/display_options.php:667
|
3250 |
+
#: app/features/mec/meta_boxes/display_options.php:701
|
3251 |
+
#: app/features/mec/meta_boxes/display_options.php:735
|
3252 |
+
#: app/features/mec/meta_boxes/display_options.php:781
|
3253 |
+
#: app/features/mec/meta_boxes/display_options.php:847
|
3254 |
+
#: app/features/mec/meta_boxes/display_options.php:1082
|
3255 |
+
#: app/features/mec/meta_boxes/display_options.php:1170
|
3256 |
+
#: app/features/mec/meta_boxes/display_options.php:1262
|
3257 |
+
#: app/features/mec/meta_boxes/display_options.php:1314
|
3258 |
+
#, php-format
|
3259 |
+
msgid "eg. %s"
|
3260 |
+
msgstr "ex. %s"
|
3261 |
+
|
3262 |
+
#: app/features/mec/meta_boxes/display_options.php:61
|
3263 |
+
#: app/features/mec/meta_boxes/display_options.php:65
|
3264 |
+
#: app/features/mec/meta_boxes/display_options.php:72
|
3265 |
+
#: app/features/mec/meta_boxes/display_options.php:78
|
3266 |
+
#: app/features/mec/meta_boxes/display_options.php:85
|
3267 |
+
#: app/features/mec/meta_boxes/display_options.php:91
|
3268 |
+
#: app/features/mec/meta_boxes/display_options.php:98
|
3269 |
+
#: app/features/mec/meta_boxes/display_options.php:102
|
3270 |
+
#: app/features/mec/meta_boxes/display_options.php:109
|
3271 |
+
#: app/features/mec/meta_boxes/display_options.php:114
|
3272 |
+
#: app/features/mec/meta_boxes/display_options.php:227
|
3273 |
+
#: app/features/mec/meta_boxes/display_options.php:231
|
3274 |
+
#: app/features/mec/meta_boxes/display_options.php:238
|
3275 |
+
#: app/features/mec/meta_boxes/display_options.php:243
|
3276 |
+
#: app/features/mec/meta_boxes/display_options.php:250
|
3277 |
+
#: app/features/mec/meta_boxes/display_options.php:255
|
3278 |
+
#: app/features/mec/meta_boxes/display_options.php:262
|
3279 |
+
#: app/features/mec/meta_boxes/display_options.php:268
|
3280 |
+
#: app/features/mec/meta_boxes/display_options.php:275
|
3281 |
+
#: app/features/mec/meta_boxes/display_options.php:279
|
3282 |
+
#: app/features/mec/meta_boxes/display_options.php:286
|
3283 |
+
#: app/features/mec/meta_boxes/display_options.php:292
|
3284 |
+
#: app/features/mec/meta_boxes/display_options.php:299
|
3285 |
+
#: app/features/mec/meta_boxes/display_options.php:303
|
3286 |
+
#: app/features/mec/meta_boxes/display_options.php:392
|
3287 |
+
#: app/features/mec/meta_boxes/display_options.php:397
|
3288 |
+
#: app/features/mec/meta_boxes/display_options.php:568
|
3289 |
+
#: app/features/mec/meta_boxes/display_options.php:573
|
3290 |
+
#: app/features/mec/meta_boxes/display_options.php:851
|
3291 |
+
#: app/features/mec/meta_boxes/display_options.php:856
|
3292 |
+
#: app/features/mec/meta_boxes/display_options.php:923
|
3293 |
+
#: app/features/mec/meta_boxes/display_options.php:929
|
3294 |
+
#: app/features/mec/meta_boxes/display_options.php:936
|
3295 |
+
#: app/features/mec/meta_boxes/display_options.php:941
|
3296 |
+
#: app/features/mec/meta_boxes/display_options.php:948
|
3297 |
+
#: app/features/mec/meta_boxes/display_options.php:952
|
3298 |
+
#: app/features/mec/meta_boxes/display_options.php:980
|
3299 |
+
#: app/features/mec/meta_boxes/display_options.php:984
|
3300 |
+
#: app/features/mec/meta_boxes/display_options.php:991
|
3301 |
+
#: app/features/mec/meta_boxes/display_options.php:995
|
3302 |
+
#: app/features/mec/meta_boxes/display_options.php:1002
|
3303 |
+
#: app/features/mec/meta_boxes/display_options.php:1008
|
3304 |
+
#: app/features/mec/meta_boxes/display_options.php:1038
|
3305 |
+
#: app/features/mec/meta_boxes/display_options.php:1043
|
3306 |
+
#: app/features/mec/meta_boxes/display_options.php:1086
|
3307 |
+
#: app/features/mec/meta_boxes/display_options.php:1092
|
3308 |
+
#: app/features/mec/meta_boxes/display_options.php:1099
|
3309 |
+
#: app/features/mec/meta_boxes/display_options.php:1103
|
3310 |
+
#: app/features/mec/meta_boxes/display_options.php:1110
|
3311 |
+
#: app/features/mec/meta_boxes/display_options.php:1114
|
3312 |
+
#: app/features/mec/meta_boxes/display_options.php:1174
|
3313 |
+
#: app/features/mec/meta_boxes/display_options.php:1180
|
3314 |
+
#: app/features/mec/meta_boxes/display_options.php:1187
|
3315 |
+
#: app/features/mec/meta_boxes/display_options.php:1193
|
3316 |
+
#: app/features/mec/meta_boxes/display_options.php:1200
|
3317 |
+
#: app/features/mec/meta_boxes/display_options.php:1206
|
3318 |
+
#: app/features/mec/meta_boxes/display_options.php:1213
|
3319 |
+
#: app/features/mec/meta_boxes/display_options.php:1219
|
3320 |
+
#: app/features/mec/meta_boxes/display_options.php:1226
|
3321 |
+
#: app/features/mec/meta_boxes/display_options.php:1232
|
3322 |
+
#: app/features/mec/meta_boxes/display_options.php:1266
|
3323 |
+
#: app/features/mec/meta_boxes/display_options.php:1270
|
3324 |
+
#: app/features/mec/meta_boxes/display_options.php:1318
|
3325 |
+
#: app/features/mec/meta_boxes/display_options.php:1323
|
3326 |
+
msgid "Date Formats"
|
3327 |
+
msgstr "Format de data"
|
3328 |
+
|
3329 |
+
#: app/features/mec/meta_boxes/display_options.php:66
|
3330 |
+
#: app/features/mec/meta_boxes/display_options.php:280
|
3331 |
+
msgid "Default value is \"M d Y\""
|
3332 |
+
msgstr "El valor predeterminat és \"M d Y\""
|
3333 |
+
|
3334 |
+
#: app/features/mec/meta_boxes/display_options.php:79
|
3335 |
+
msgid "Default values are d, M and l"
|
3336 |
+
msgstr "Els valors predeterminats són d, M y l"
|
3337 |
+
|
3338 |
+
#: app/features/mec/meta_boxes/display_options.php:92
|
3339 |
+
#: app/features/mec/meta_boxes/display_options.php:269
|
3340 |
+
#: app/features/mec/meta_boxes/display_options.php:293
|
3341 |
+
#: app/features/mec/meta_boxes/display_options.php:1181
|
3342 |
+
#: app/features/mec/meta_boxes/display_options.php:1194
|
3343 |
+
#: app/features/mec/meta_boxes/display_options.php:1207
|
3344 |
+
#: app/features/mec/meta_boxes/display_options.php:1220
|
3345 |
+
#: app/features/mec/meta_boxes/display_options.php:1233
|
3346 |
+
msgid "Default values are d, F and l"
|
3347 |
+
msgstr "Els valors predeterminats són d, F y l"
|
3348 |
+
|
3349 |
+
#: app/features/mec/meta_boxes/display_options.php:103
|
3350 |
+
msgid "Default value is \"M d\""
|
3351 |
+
msgstr "Valor per defecte és \"M d\""
|
3352 |
+
|
3353 |
+
#: app/features/mec/meta_boxes/display_options.php:115
|
3354 |
+
msgid "TDefault values are d and F"
|
3355 |
+
msgstr "Els valors predeterminats són d i F"
|
3356 |
+
|
3357 |
+
#: app/features/mec/meta_boxes/display_options.php:122
|
3358 |
+
#: app/features/mec/meta_boxes/display_options.php:322
|
3359 |
+
#: app/features/mec/meta_boxes/display_options.php:405
|
3360 |
+
#: app/features/mec/meta_boxes/display_options.php:581
|
3361 |
+
#: app/features/mec/meta_boxes/display_options.php:623
|
3362 |
+
#: app/features/mec/meta_boxes/display_options.php:706
|
3363 |
+
#: app/features/mec/meta_boxes/display_options.php:740
|
3364 |
+
#: app/features/mec/meta_boxes/display_options.php:786
|
3365 |
+
#: app/features/mec/meta_boxes/display_options.php:1131
|
3366 |
+
#: app/features/mec/meta_boxes/display_options.php:1240
|
3367 |
+
#: app/features/mec/meta_boxes/display_options.php:1278
|
3368 |
+
msgid "eg. 6"
|
3369 |
+
msgstr "ex. 6"
|
3370 |
+
|
3371 |
+
#: app/features/mec/meta_boxes/display_options.php:127
|
3372 |
+
msgid "Include Events Times"
|
3373 |
+
msgstr "Inclou els horaris d'esdeveniments"
|
3374 |
+
|
3375 |
+
#: app/features/mec/meta_boxes/display_options.php:138
|
3376 |
+
#: app/features/mec/meta_boxes/display_options.php:326
|
3377 |
+
#: app/features/mec/meta_boxes/display_options.php:409
|
3378 |
+
#: app/features/mec/meta_boxes/display_options.php:900
|
3379 |
+
#: app/features/mec/meta_boxes/display_options.php:1282
|
3380 |
+
msgid "Load More Button"
|
3381 |
+
msgstr "Botó Carregar Més"
|
3382 |
+
|
3383 |
+
#: app/features/mec/meta_boxes/display_options.php:148
|
3384 |
+
#: app/features/mec/meta_boxes/display_options.php:419
|
3385 |
+
#: app/features/mec/meta_boxes/display_options.php:1292
|
3386 |
+
msgid "Show Month Divider"
|
3387 |
+
msgstr "Mostrar divisor del mes"
|
3388 |
+
|
3389 |
+
#: app/features/mec/meta_boxes/display_options.php:158
|
3390 |
+
#: app/features/mec/meta_boxes/display_options.php:336
|
3391 |
+
msgid "Show Map on top"
|
3392 |
+
msgstr "Mostrar Mapa a dalt"
|
3393 |
+
|
3394 |
+
#: app/features/mec/meta_boxes/display_options.php:173
|
3395 |
+
#: app/features/mec/meta_boxes/display_options.php:351
|
3396 |
+
#: app/features/mec/meta_boxes/display_options.php:676
|
3397 |
+
msgid "Geolocation"
|
3398 |
+
msgstr "Geolocalització"
|
3399 |
+
|
3400 |
+
#: app/features/mec/meta_boxes/display_options.php:188
|
3401 |
+
msgid "Toggle for Month Divider"
|
3402 |
+
msgstr "Canvia per Divisor de mes"
|
3403 |
+
|
3404 |
+
#: app/features/mec/meta_boxes/display_options.php:205
|
3405 |
+
#: app/features/mec/meta_boxes/display_options.php:375
|
3406 |
+
#: app/features/mec/meta_boxes/display_options.php:457
|
3407 |
+
#: app/features/mec/meta_boxes/display_options.php:604
|
3408 |
+
#: app/features/mec/meta_boxes/display_options.php:768
|
3409 |
+
#: app/features/mec/meta_boxes/display_options.php:918
|
3410 |
+
#: app/features/mec/settings.php:256 app/features/mec/settings.php:271
|
3411 |
+
#: app/features/mec/settings.php:289 app/features/mec/settings.php:330
|
3412 |
+
#: app/features/mec/settings.php:345 app/features/mec/settings.php:363
|
3413 |
+
msgid "Clean"
|
3414 |
+
msgstr "Net"
|
3415 |
+
|
3416 |
+
#: app/features/mec/meta_boxes/display_options.php:208
|
3417 |
+
#: app/features/mec/meta_boxes/display_options.php:459
|
3418 |
+
#: app/features/mec/meta_boxes/display_options.php:607
|
3419 |
+
#: app/features/mec/settings.php:259 app/features/mec/settings.php:292
|
3420 |
+
#: app/features/mec/settings.php:333 app/features/mec/settings.php:366
|
3421 |
+
msgid "Simple"
|
3422 |
+
msgstr "Simple"
|
3423 |
+
|
3424 |
+
#: app/features/mec/meta_boxes/display_options.php:209
|
3425 |
+
msgid "Colorful"
|
3426 |
+
msgstr "Colorit"
|
3427 |
+
|
3428 |
+
#: app/features/mec/meta_boxes/display_options.php:210
|
3429 |
+
#: app/features/mec/meta_boxes/display_options.php:458
|
3430 |
+
#: app/features/mec/meta_boxes/display_options.php:606
|
3431 |
+
#: app/features/mec/settings.php:258 app/features/mec/settings.php:294
|
3432 |
+
#: app/features/mec/settings.php:332 app/features/mec/settings.php:368
|
3433 |
+
msgid "Novel"
|
3434 |
+
msgstr "Novel"
|
3435 |
+
|
3436 |
+
#: app/features/mec/meta_boxes/display_options.php:232
|
3437 |
+
#: app/features/mec/meta_boxes/display_options.php:1271
|
3438 |
+
msgid "Default value is \"d F Y"
|
3439 |
+
msgstr "Valor per defecte és \"d F Y\""
|
3440 |
+
|
3441 |
+
#: app/features/mec/meta_boxes/display_options.php:244
|
3442 |
+
msgid "Default values are d and F"
|
3443 |
+
msgstr "Els valors predeterminats són d i F"
|
3444 |
+
|
3445 |
+
#: app/features/mec/meta_boxes/display_options.php:256
|
3446 |
+
msgid "Default values are d and M"
|
3447 |
+
msgstr "Els valors predeterminats són d i M"
|
3448 |
+
|
3449 |
+
#: app/features/mec/meta_boxes/display_options.php:304
|
3450 |
+
msgid "Default value is \"d F Y\""
|
3451 |
+
msgstr "Valor per defecte és \"d F Y\""
|
3452 |
+
|
3453 |
+
#: app/features/mec/meta_boxes/display_options.php:310
|
3454 |
+
#: app/features/mec/meta_boxes/display_options.php:1121
|
3455 |
+
#: app/features/mec/meta_boxes/display_options.php:1330
|
3456 |
+
msgid "Count in row"
|
3457 |
+
msgstr "Contador en fila"
|
3458 |
+
|
3459 |
+
#: app/features/mec/meta_boxes/display_options.php:368
|
3460 |
+
#: app/features/mec/meta_boxes/display_options.php:546
|
3461 |
+
#: app/features/mec/meta_boxes/display_options.php:653
|
3462 |
+
#: app/features/mec/meta_boxes/display_options.php:760
|
3463 |
+
#: app/features/mec/meta_boxes/display_options.php:1033
|
3464 |
+
#, php-format
|
3465 |
+
msgid "%s is required to use this skin."
|
3466 |
+
msgstr "Es requereix %s per utilitzar aquest tema."
|
3467 |
+
|
3468 |
+
#: app/features/mec/meta_boxes/display_options.php:398
|
3469 |
+
#: app/features/mec/meta_boxes/display_options.php:574
|
3470 |
+
msgid "Default values are l and F j"
|
3471 |
+
msgstr "Els valors per defecte són l i F j"
|
3472 |
+
|
3473 |
+
#: app/features/mec/meta_boxes/display_options.php:445
|
3474 |
+
msgid "Default View"
|
3475 |
+
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:1578
|
3480 |
+
#: app/libraries/main.php:1603
|
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:1572
|
3487 |
+
#: app/libraries/main.php:1597
|
3488 |
+
msgid "Yearly View"
|
3489 |
+
msgstr "Vista anual"
|
3490 |
+
|
3491 |
+
#: app/features/mec/meta_boxes/display_options.php:449
|
3492 |
+
#: app/features/mec/meta_boxes/display_options.php:500
|
3493 |
+
msgid "Monthly/Calendar View"
|
3494 |
+
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:1574
|
3499 |
+
#: app/libraries/main.php:1599
|
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:1575
|
3506 |
+
#: app/libraries/main.php:1600
|
3507 |
+
msgid "Daily View"
|
3508 |
+
msgstr "Vista diària"
|
3509 |
+
|
3510 |
+
#: app/features/mec/meta_boxes/display_options.php:455
|
3511 |
+
msgid "Monthly Style"
|
3512 |
+
msgstr "Estil mensual"
|
3513 |
+
|
3514 |
+
#: app/features/mec/meta_boxes/display_options.php:495
|
3515 |
+
#, php-format
|
3516 |
+
msgid "%s is required to use <b>Yearly View</b> skin."
|
3517 |
+
msgstr "Es requereix %s per utilitzar aquest tema."
|
3518 |
+
|
3519 |
+
#: app/features/mec/meta_boxes/display_options.php:528
|
3520 |
+
msgid "The price shows only in List View."
|
3521 |
+
msgstr "El preu només apareix a la vista de llista."
|
3522 |
+
|
3523 |
+
#: app/features/mec/meta_boxes/display_options.php:531
|
3524 |
+
msgid "Display Event Price"
|
3525 |
+
msgstr "Mostrar el preu de l'esdeveniment"
|
3526 |
+
|
3527 |
+
#: app/features/mec/meta_boxes/display_options.php:559
|
3528 |
+
msgid "Start of Current Year"
|
3529 |
+
msgstr "Començament de l'any actual"
|
3530 |
+
|
3531 |
+
#: app/features/mec/meta_boxes/display_options.php:560
|
3532 |
+
msgid "Start of Next Year"
|
3533 |
+
msgstr "Començament del pròxim any"
|
3534 |
+
|
3535 |
+
#: app/features/mec/meta_boxes/display_options.php:580
|
3536 |
+
#: app/features/mec/meta_boxes/display_options.php:622
|
3537 |
+
#: app/features/mec/meta_boxes/display_options.php:705
|
3538 |
+
#: app/features/mec/meta_boxes/display_options.php:739
|
3539 |
+
#: app/features/mec/meta_boxes/display_options.php:785
|
3540 |
+
msgid "Events per day"
|
3541 |
+
msgstr "Esdeveniments per dia"
|
3542 |
+
|
3543 |
+
#: app/features/mec/meta_boxes/display_options.php:585
|
3544 |
+
#: app/features/mec/meta_boxes/display_options.php:627
|
3545 |
+
#: app/features/mec/meta_boxes/display_options.php:710
|
3546 |
+
#: app/features/mec/meta_boxes/display_options.php:744
|
3547 |
+
#: app/features/mec/meta_boxes/display_options.php:814
|
3548 |
+
#: app/features/mec/meta_boxes/display_options.php:1339
|
3549 |
+
msgid "Next/Previous Buttons"
|
3550 |
+
msgstr "Botons Següent/Anterior"
|
3551 |
+
|
3552 |
+
#: app/features/mec/meta_boxes/display_options.php:593
|
3553 |
+
msgid "For showing next/previous year navigation."
|
3554 |
+
msgstr "Per mostrar la navegació de l'any següent / anterior."
|
3555 |
+
|
3556 |
+
#: app/features/mec/meta_boxes/display_options.php:637
|
3557 |
+
msgid "Uppercase Text"
|
3558 |
+
msgstr "Text en majúscules"
|
3559 |
+
|
3560 |
+
#: app/features/mec/meta_boxes/display_options.php:645
|
3561 |
+
#: app/features/mec/meta_boxes/display_options.php:718
|
3562 |
+
#: app/features/mec/meta_boxes/display_options.php:752
|
3563 |
+
#: app/features/mec/meta_boxes/display_options.php:822
|
3564 |
+
#: app/features/mec/meta_boxes/display_options.php:1347
|
3565 |
+
msgid "For showing next/previous month navigation."
|
3566 |
+
msgstr "Per mostrar navegació següent / anterior."
|
3567 |
+
|
3568 |
+
#: app/features/mec/meta_boxes/display_options.php:671
|
3569 |
+
msgid "Maximum events"
|
3570 |
+
msgstr "Máxim d'esdeveniments"
|
3571 |
+
|
3572 |
+
#: app/features/mec/meta_boxes/display_options.php:672
|
3573 |
+
msgid "eg. 200"
|
3574 |
+
msgstr "ex. 200"
|
3575 |
+
|
3576 |
+
#: app/features/mec/meta_boxes/display_options.php:684
|
3577 |
+
msgid "The geolocation feature works only in secure (https) websites."
|
3578 |
+
msgstr ""
|
3579 |
+
"La funcionalitat de geolocalització només funciona en llocs web segurs "
|
3580 |
+
"(https)."
|
3581 |
+
|
3582 |
+
#: app/features/mec/meta_boxes/display_options.php:728
|
3583 |
+
#: app/features/mec/meta_boxes/display_options.php:774
|
3584 |
+
msgid "Current Week"
|
3585 |
+
msgstr "Setmana actual"
|
3586 |
+
|
3587 |
+
#: app/features/mec/meta_boxes/display_options.php:729
|
3588 |
+
#: app/features/mec/meta_boxes/display_options.php:775
|
3589 |
+
msgid "Next Week"
|
3590 |
+
msgstr "Següent setmana"
|
3591 |
+
|
3592 |
+
#: app/features/mec/meta_boxes/display_options.php:790
|
3593 |
+
msgid "Number of Days"
|
3594 |
+
msgstr "Nombre de dies"
|
3595 |
+
|
3596 |
+
#: app/features/mec/meta_boxes/display_options.php:798
|
3597 |
+
msgid "Week Start"
|
3598 |
+
msgstr "Inici de setmana"
|
3599 |
+
|
3600 |
+
#: app/features/mec/meta_boxes/display_options.php:800
|
3601 |
+
msgid "Inherite from WordPress options"
|
3602 |
+
msgstr "Heretar opcions globals"
|
3603 |
+
|
3604 |
+
#: app/features/mec/meta_boxes/display_options.php:857
|
3605 |
+
#: app/features/mec/meta_boxes/display_options.php:1044
|
3606 |
+
msgid "Default values are j and F"
|
3607 |
+
msgstr "Els valors predeterminats són j i F"
|
3608 |
+
|
3609 |
+
#: app/features/mec/meta_boxes/display_options.php:864
|
3610 |
+
msgid "eg. 24"
|
3611 |
+
msgstr "ex. 24"
|
3612 |
+
|
3613 |
+
#: app/features/mec/meta_boxes/display_options.php:867
|
3614 |
+
msgid "Filter By"
|
3615 |
+
msgstr "Filtrar per"
|
3616 |
+
|
3617 |
+
#: app/features/mec/meta_boxes/display_options.php:869
|
3618 |
+
msgid "None"
|
3619 |
+
msgstr "Cap"
|
3620 |
+
|
3621 |
+
#: app/features/mec/meta_boxes/display_options.php:878
|
3622 |
+
msgid "Fit to row"
|
3623 |
+
msgstr "Encaix a la fila"
|
3624 |
+
|
3625 |
+
#: app/features/mec/meta_boxes/display_options.php:879
|
3626 |
+
msgid ""
|
3627 |
+
"Items are arranged into rows. Rows progress vertically. Similar to what you "
|
3628 |
+
"would expect from a layout that uses CSS floats."
|
3629 |
+
msgstr ""
|
3630 |
+
"Els elements es disposen en files. Les files avancen verticalment. Similar "
|
3631 |
+
"al que espereu d’un disseny que utilitza floats CSS."
|
3632 |
+
|
3633 |
+
#: app/features/mec/meta_boxes/display_options.php:889
|
3634 |
+
msgid "Convert Masonry to Grid"
|
3635 |
+
msgstr "Convertir Masonry a Grid"
|
3636 |
+
|
3637 |
+
#: app/features/mec/meta_boxes/display_options.php:890
|
3638 |
+
msgid "For using this option, your events should come with image"
|
3639 |
+
msgstr ""
|
3640 |
+
"Per utilitzar aquesta opció, els vostres esdeveniments han de venir amb "
|
3641 |
+
"imatge"
|
3642 |
+
|
3643 |
+
#: app/features/mec/meta_boxes/display_options.php:930
|
3644 |
+
msgid "Default values are d, M and Y"
|
3645 |
+
msgstr "Els valors predeterminats són d, M i Y"
|
3646 |
+
|
3647 |
+
#: app/features/mec/meta_boxes/display_options.php:942
|
3648 |
+
msgid "Default values are \"F d\" and l"
|
3649 |
+
msgstr "Els valors predeterminats són \"F d\" i l"
|
3650 |
+
|
3651 |
+
#: app/features/mec/meta_boxes/display_options.php:953
|
3652 |
+
msgid "Default value is \"l, F d Y\""
|
3653 |
+
msgstr "Valor per defecte és \"l, F d Y\""
|
3654 |
+
|
3655 |
+
#: app/features/mec/meta_boxes/display_options.php:974
|
3656 |
+
msgid "Style 1"
|
3657 |
+
msgstr "Estil 1"
|
3658 |
+
|
3659 |
+
#: app/features/mec/meta_boxes/display_options.php:975
|
3660 |
+
msgid "Style 2"
|
3661 |
+
msgstr "Estil 2"
|
3662 |
+
|
3663 |
+
#: app/features/mec/meta_boxes/display_options.php:976
|
3664 |
+
msgid "Style 3"
|
3665 |
+
msgstr "Estil 3"
|
3666 |
+
|
3667 |
+
#: app/features/mec/meta_boxes/display_options.php:985
|
3668 |
+
#: app/features/mec/meta_boxes/display_options.php:996
|
3669 |
+
msgid "Default value is \"j F Y\""
|
3670 |
+
msgstr "El valor predeterminat és \"j F Y\""
|
3671 |
+
|
3672 |
+
#: app/features/mec/meta_boxes/display_options.php:1009
|
3673 |
+
msgid "Default values are j, F and Y"
|
3674 |
+
msgstr "Els valors predeterminats són j, F i Y"
|
3675 |
+
|
3676 |
+
#: app/features/mec/meta_boxes/display_options.php:1017
|
3677 |
+
#: app/features/mec/meta_boxes/display_options.php:1052
|
3678 |
+
msgid " -- Next Upcoming Event -- "
|
3679 |
+
msgstr " -- Pròxim Esdeveniment -- "
|
3680 |
+
|
3681 |
+
#: app/features/mec/meta_boxes/display_options.php:1024
|
3682 |
+
msgid "Background Color"
|
3683 |
+
msgstr "Color de fons"
|
3684 |
+
|
3685 |
+
#: app/features/mec/meta_boxes/display_options.php:1066
|
3686 |
+
#: app/features/mec/meta_boxes/display_options.php:1153
|
3687 |
+
msgid "Type 1"
|
3688 |
+
msgstr "Tipus 1"
|
3689 |
+
|
3690 |
+
#: app/features/mec/meta_boxes/display_options.php:1067
|
3691 |
+
#: app/features/mec/meta_boxes/display_options.php:1154
|
3692 |
+
msgid "Type 2"
|
3693 |
+
msgstr "Tipus 2"
|
3694 |
+
|
3695 |
+
#: app/features/mec/meta_boxes/display_options.php:1068
|
3696 |
+
#: app/features/mec/meta_boxes/display_options.php:1155
|
3697 |
+
msgid "Type 3"
|
3698 |
+
msgstr "Tipus 3"
|
3699 |
+
|
3700 |
+
#: app/features/mec/meta_boxes/display_options.php:1069
|
3701 |
+
#: app/features/mec/meta_boxes/display_options.php:1156
|
3702 |
+
msgid "Type 4"
|
3703 |
+
msgstr "Tipus 4"
|
3704 |
+
|
3705 |
+
#: app/features/mec/meta_boxes/display_options.php:1093
|
3706 |
+
msgid "Default values are d, F and Y"
|
3707 |
+
msgstr "Els valors predeterminats són d, F i Y"
|
3708 |
+
|
3709 |
+
#: app/features/mec/meta_boxes/display_options.php:1104
|
3710 |
+
#: app/features/mec/meta_boxes/display_options.php:1115
|
3711 |
+
msgid "Default value is \"M d, Y\""
|
3712 |
+
msgstr "El valor predeterminat és \"M d, Y\""
|
3713 |
+
|
3714 |
+
#: app/features/mec/meta_boxes/display_options.php:1134
|
3715 |
+
#: app/features/mec/meta_boxes/display_options.php:1243
|
3716 |
+
msgid "Auto Play Time"
|
3717 |
+
msgstr "Temps de reproducció automàtica"
|
3718 |
+
|
3719 |
+
#: app/features/mec/meta_boxes/display_options.php:1135
|
3720 |
+
#: app/features/mec/meta_boxes/display_options.php:1244
|
3721 |
+
msgid "eg. 3000 default is 3 second"
|
3722 |
+
msgstr "ex. 3000 són 3 segons"
|
3723 |
+
|
3724 |
+
#: app/features/mec/meta_boxes/display_options.php:1139
|
3725 |
+
msgid "Archive Link"
|
3726 |
+
msgstr "Enllaç d'arxiu"
|
3727 |
+
|
3728 |
+
#: app/features/mec/meta_boxes/display_options.php:1143
|
3729 |
+
msgid "Head Text"
|
3730 |
+
msgstr "Text de capçalera"
|
3731 |
+
|
3732 |
+
#: app/features/mec/meta_boxes/display_options.php:1157
|
3733 |
+
msgid "Type 5"
|
3734 |
+
msgstr "Tipus 5"
|
3735 |
+
|
3736 |
+
#: app/features/mec/meta_boxes/display_options.php:1324
|
3737 |
+
#, fuzzy
|
3738 |
+
#| msgid "Default values are j and F"
|
3739 |
+
msgid "Default values are j and M"
|
3740 |
+
msgstr "Els valors predeterminats són j i F"
|
3741 |
+
|
3742 |
+
#: app/features/mec/meta_boxes/filter.php:64
|
3743 |
+
msgid "No filter options applicable for this skin."
|
3744 |
+
msgstr "Sense opcions de filtre aplicats per a aquesta plantilla."
|
3745 |
+
|
3746 |
+
#: app/features/mec/meta_boxes/filter.php:80
|
3747 |
+
msgid "Choose your desired categories for filtering the events."
|
3748 |
+
msgstr ""
|
3749 |
+
"Tria les teves categories desitjades per al filtrat dels esdeveniments."
|
3750 |
+
|
3751 |
+
#: app/features/mec/meta_boxes/filter.php:97
|
3752 |
+
msgid "Choose your desired locations for filtering the events."
|
3753 |
+
msgstr "Tria les ubicacions que vulguis per filtrar els esdeveniments."
|
3754 |
+
|
3755 |
+
#: app/features/mec/meta_boxes/filter.php:114
|
3756 |
+
msgid "Choose your desired organizers for filtering the events."
|
3757 |
+
msgstr "Triar els organitzadors desitjats per al filtrat dels esdeveniments."
|
3758 |
+
|
3759 |
+
#: app/features/mec/meta_boxes/filter.php:131
|
3760 |
+
msgid "Choose your desired labels for filtering the events."
|
3761 |
+
msgstr "Tria les etiquetes que vulguis per filtrar els esdeveniments."
|
3762 |
+
|
3763 |
+
#: app/features/mec/meta_boxes/filter.php:148
|
3764 |
+
msgid "Insert your desired tags comma separated."
|
3765 |
+
msgstr "Inseriu les etiquetes que vulguis separades amb coma."
|
3766 |
+
|
3767 |
+
#: app/features/mec/meta_boxes/filter.php:153
|
3768 |
+
msgid "Authors"
|
3769 |
+
msgstr "Autors"
|
3770 |
+
|
3771 |
+
#: app/features/mec/meta_boxes/filter.php:154
|
3772 |
+
msgid "Choose your desired authors for filtering the events."
|
3773 |
+
msgstr "Trieu els autors desitjats per filtrar els esdeveniments."
|
3774 |
+
|
3775 |
+
#: app/features/mec/meta_boxes/filter.php:179
|
3776 |
+
msgid "Dates"
|
3777 |
+
msgstr "Dates"
|
3778 |
+
|
3779 |
+
#: app/features/mec/meta_boxes/filter.php:183
|
3780 |
+
msgid "Include Expired Events"
|
3781 |
+
msgstr "Incloure els esdeveniments caducats"
|
3782 |
+
|
3783 |
+
#: app/features/mec/meta_boxes/filter.php:190
|
3784 |
+
msgid ""
|
3785 |
+
"You have ability to include past/expired events if you like so it will show "
|
3786 |
+
"upcoming and expired events based on start date that you selected."
|
3787 |
+
msgstr ""
|
3788 |
+
"Tens la capacitat d'incloure esdeveniments passats / caducats si vols que es "
|
3789 |
+
"mostri en propers i caducats esdeveniments basats en la data d'inici que has "
|
3790 |
+
"seleccionat."
|
3791 |
+
|
3792 |
+
#: app/features/mec/meta_boxes/filter.php:197
|
3793 |
+
msgid "Show Only Expired Events"
|
3794 |
+
msgstr "Mostrar únicament esdeveniments caducats"
|
3795 |
+
|
3796 |
+
#: app/features/mec/meta_boxes/filter.php:204
|
3797 |
+
#, php-format
|
3798 |
+
msgid ""
|
3799 |
+
"It shows %s expired/past events. It will use selected start date as first "
|
3800 |
+
"day and then go to %s dates."
|
3801 |
+
msgstr ""
|
3802 |
+
"Mostra %s esdeveniments caducats / passats. Utilitzarà la data d’inici "
|
3803 |
+
"seleccionada com a primer dia i després passarà a les dates %s."
|
3804 |
+
|
3805 |
+
#: app/features/mec/meta_boxes/filter.php:204
|
3806 |
+
msgid "only"
|
3807 |
+
msgstr "només"
|
3808 |
+
|
3809 |
+
#: app/features/mec/meta_boxes/filter.php:204
|
3810 |
+
msgid "older"
|
3811 |
+
msgstr "més vells"
|
3812 |
+
|
3813 |
+
#: app/features/mec/meta_boxes/filter.php:212
|
3814 |
+
msgid "Show Only Ongoing Events"
|
3815 |
+
msgstr "Mostrar només esdeveniments en curs"
|
3816 |
+
|
3817 |
+
#: app/features/mec/meta_boxes/filter.php:219
|
3818 |
+
msgid "It shows only ongoing events on List and Grid skins."
|
3819 |
+
msgstr ""
|
3820 |
+
"Només mostra els esdeveniments en curs als temes de llista i quadricula."
|
3821 |
+
|
3822 |
+
#: app/features/mec/meta_boxes/search_form.php:13
|
3823 |
+
msgid "Show Search Form"
|
3824 |
+
msgstr "Mostrar formulari de cerca"
|
3825 |
+
|
3826 |
+
#: app/features/mec/meta_boxes/search_form.php:33
|
3827 |
+
#: app/features/mec/meta_boxes/search_form.php:40
|
3828 |
+
#: app/features/mec/meta_boxes/search_form.php:47
|
3829 |
+
#: app/features/mec/meta_boxes/search_form.php:54
|
3830 |
+
#: app/features/mec/meta_boxes/search_form.php:61
|
3831 |
+
#: app/features/mec/meta_boxes/search_form.php:68
|
3832 |
+
#: app/features/mec/meta_boxes/search_form.php:75
|
3833 |
+
#: app/features/mec/meta_boxes/search_form.php:82
|
3834 |
+
#: app/features/mec/meta_boxes/search_form.php:95
|
3835 |
+
#: app/features/mec/meta_boxes/search_form.php:102
|
3836 |
+
#: app/features/mec/meta_boxes/search_form.php:109
|
3837 |
+
#: app/features/mec/meta_boxes/search_form.php:116
|
3838 |
+
#: app/features/mec/meta_boxes/search_form.php:123
|
3839 |
+
#: app/features/mec/meta_boxes/search_form.php:130
|
3840 |
+
#: app/features/mec/meta_boxes/search_form.php:137
|
3841 |
+
#: app/features/mec/meta_boxes/search_form.php:144
|
3842 |
+
#: app/features/mec/meta_boxes/search_form.php:157
|
3843 |
+
#: app/features/mec/meta_boxes/search_form.php:164
|
3844 |
+
#: app/features/mec/meta_boxes/search_form.php:171
|
3845 |
+
#: app/features/mec/meta_boxes/search_form.php:178
|
3846 |
+
#: app/features/mec/meta_boxes/search_form.php:185
|
3847 |
+
#: app/features/mec/meta_boxes/search_form.php:192
|
3848 |
+
#: app/features/mec/meta_boxes/search_form.php:199
|
3849 |
+
#: app/features/mec/meta_boxes/search_form.php:206
|
3850 |
+
#: app/features/mec/meta_boxes/search_form.php:218
|
3851 |
+
#: app/features/mec/meta_boxes/search_form.php:225
|
3852 |
+
#: app/features/mec/meta_boxes/search_form.php:232
|
3853 |
+
#: app/features/mec/meta_boxes/search_form.php:239
|
3854 |
+
#: app/features/mec/meta_boxes/search_form.php:246
|
3855 |
+
#: app/features/mec/meta_boxes/search_form.php:253
|
3856 |
+
#: app/features/mec/meta_boxes/search_form.php:260
|
3857 |
+
#: app/features/mec/meta_boxes/search_form.php:267
|
3858 |
+
#: app/features/mec/meta_boxes/search_form.php:279
|
3859 |
+
#: app/features/mec/meta_boxes/search_form.php:286
|
3860 |
+
#: app/features/mec/meta_boxes/search_form.php:293
|
3861 |
+
#: app/features/mec/meta_boxes/search_form.php:300
|
3862 |
+
#: app/features/mec/meta_boxes/search_form.php:307
|
3863 |
+
#: app/features/mec/meta_boxes/search_form.php:314
|
3864 |
+
#: app/features/mec/meta_boxes/search_form.php:321
|
3865 |
+
#: app/features/mec/meta_boxes/search_form.php:328
|
3866 |
+
#: app/features/mec/meta_boxes/search_form.php:340
|
3867 |
+
#: app/features/mec/meta_boxes/search_form.php:347
|
3868 |
+
#: app/features/mec/meta_boxes/search_form.php:354
|
3869 |
+
#: app/features/mec/meta_boxes/search_form.php:361
|
3870 |
+
#: app/features/mec/meta_boxes/search_form.php:368
|
3871 |
+
#: app/features/mec/meta_boxes/search_form.php:375
|
3872 |
+
#: app/features/mec/meta_boxes/search_form.php:382
|
3873 |
+
#: app/features/mec/meta_boxes/search_form.php:389
|
3874 |
+
#: app/features/mec/meta_boxes/search_form.php:401
|
3875 |
+
#: app/features/mec/meta_boxes/search_form.php:408
|
3876 |
+
#: app/features/mec/meta_boxes/search_form.php:415
|
3877 |
+
#: app/features/mec/meta_boxes/search_form.php:422
|
3878 |
+
#: app/features/mec/meta_boxes/search_form.php:429
|
3879 |
+
#: app/features/mec/meta_boxes/search_form.php:436
|
3880 |
+
#: app/features/mec/meta_boxes/search_form.php:443
|
3881 |
+
#: app/features/mec/meta_boxes/search_form.php:455
|
3882 |
+
#: app/features/mec/meta_boxes/search_form.php:462
|
3883 |
+
#: app/features/mec/meta_boxes/search_form.php:469
|
3884 |
+
#: app/features/mec/meta_boxes/search_form.php:476
|
3885 |
+
#: app/features/mec/meta_boxes/search_form.php:483
|
3886 |
+
#: app/features/mec/meta_boxes/search_form.php:490
|
3887 |
+
#: app/features/mec/meta_boxes/search_form.php:497
|
3888 |
+
#: app/features/mec/meta_boxes/search_form.php:504
|
3889 |
+
#: app/features/mec/meta_boxes/search_form.php:516
|
3890 |
+
#: app/features/mec/meta_boxes/search_form.php:523
|
3891 |
+
#: app/features/mec/meta_boxes/search_form.php:530
|
3892 |
+
#: app/features/mec/meta_boxes/search_form.php:537
|
3893 |
+
#: app/features/mec/meta_boxes/search_form.php:544
|
3894 |
+
#: app/features/mec/meta_boxes/search_form.php:551
|
3895 |
+
#: app/features/mec/meta_boxes/search_form.php:558
|
3896 |
+
#: app/features/mec/meta_boxes/search_form.php:565
|
3897 |
+
#: app/features/mec/meta_boxes/search_form.php:577
|
3898 |
+
#: app/features/mec/meta_boxes/search_form.php:584
|
3899 |
+
#: app/features/mec/meta_boxes/search_form.php:591
|
3900 |
+
#: app/features/mec/meta_boxes/search_form.php:598
|
3901 |
+
#: app/features/mec/meta_boxes/search_form.php:605
|
3902 |
+
#: app/features/mec/meta_boxes/search_form.php:612
|
3903 |
+
#: app/features/mec/meta_boxes/search_form.php:619
|
3904 |
+
#: app/features/mec/meta_boxes/search_form.php:626
|
3905 |
+
#: app/features/mec/meta_boxes/search_form.php:674
|
3906 |
+
#: app/features/mec/meta_boxes/search_form.php:681
|
3907 |
+
#: app/features/mec/meta_boxes/search_form.php:688
|
3908 |
+
#: app/features/mec/meta_boxes/search_form.php:695
|
3909 |
+
#: app/features/mec/meta_boxes/search_form.php:702
|
3910 |
+
#: app/features/mec/meta_boxes/search_form.php:709
|
3911 |
+
#: app/features/mec/meta_boxes/search_form.php:716
|
3912 |
+
#: app/features/mec/meta_boxes/search_form.php:723
|
3913 |
+
#: app/features/mec/modules.php:125 app/features/mec/settings.php:118
|
3914 |
+
#: app/features/mec/settings.php:409
|
3915 |
+
msgid "Disabled"
|
3916 |
+
msgstr "Desactivat"
|
3917 |
+
|
3918 |
+
#: app/features/mec/meta_boxes/search_form.php:52
|
3919 |
+
#: app/features/mec/meta_boxes/search_form.php:114
|
3920 |
+
#: app/features/mec/meta_boxes/search_form.php:176
|
3921 |
+
#: app/features/mec/meta_boxes/search_form.php:237
|
3922 |
+
#: app/features/mec/meta_boxes/search_form.php:298
|
3923 |
+
#: app/features/mec/meta_boxes/search_form.php:359
|
3924 |
+
#: app/features/mec/meta_boxes/search_form.php:420
|
3925 |
+
#: app/features/mec/meta_boxes/search_form.php:474
|
3926 |
+
#: app/features/mec/meta_boxes/search_form.php:535
|
3927 |
+
#: app/features/mec/meta_boxes/search_form.php:596
|
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:4929
|
3932 |
+
#: app/libraries/skins.php:889
|
3933 |
+
msgid "Speaker"
|
3934 |
+
msgstr "Ponent"
|
3935 |
+
|
3936 |
+
#: app/features/mec/meta_boxes/search_form.php:59
|
3937 |
+
#: app/features/mec/meta_boxes/search_form.php:121
|
3938 |
+
#: app/features/mec/meta_boxes/search_form.php:183
|
3939 |
+
#: app/features/mec/meta_boxes/search_form.php:244
|
3940 |
+
#: app/features/mec/meta_boxes/search_form.php:305
|
3941 |
+
#: app/features/mec/meta_boxes/search_form.php:366
|
3942 |
+
#: app/features/mec/meta_boxes/search_form.php:427
|
3943 |
+
#: app/features/mec/meta_boxes/search_form.php:481
|
3944 |
+
#: app/features/mec/meta_boxes/search_form.php:542
|
3945 |
+
#: app/features/mec/meta_boxes/search_form.php:603
|
3946 |
+
#: app/features/mec/meta_boxes/search_form.php:700
|
3947 |
+
#: app/features/mec/settings.php:822 app/features/mec/single.php:226
|
3948 |
+
#: app/features/search.php:83 app/libraries/skins.php:915
|
3949 |
+
#, fuzzy
|
3950 |
+
#| msgid "Tags"
|
3951 |
+
msgid "Tag"
|
3952 |
+
msgstr "Tags"
|
3953 |
+
|
3954 |
+
#: app/features/mec/meta_boxes/search_form.php:73
|
3955 |
+
#: app/features/mec/meta_boxes/search_form.php:135
|
3956 |
+
#: app/features/mec/meta_boxes/search_form.php:197
|
3957 |
+
#: app/features/mec/meta_boxes/search_form.php:258
|
3958 |
+
#: app/features/mec/meta_boxes/search_form.php:319
|
3959 |
+
#: app/features/mec/meta_boxes/search_form.php:380
|
3960 |
+
#: app/features/mec/meta_boxes/search_form.php:495
|
3961 |
+
#: app/features/mec/meta_boxes/search_form.php:556
|
3962 |
+
#: app/features/mec/meta_boxes/search_form.php:617
|
3963 |
+
#: app/features/mec/meta_boxes/search_form.php:714
|
3964 |
+
msgid "Month Filter"
|
3965 |
+
msgstr "Filtrar per mes"
|
3966 |
+
|
3967 |
+
#: app/features/mec/meta_boxes/search_form.php:80
|
3968 |
+
#: app/features/mec/meta_boxes/search_form.php:142
|
3969 |
+
#: app/features/mec/meta_boxes/search_form.php:204
|
3970 |
+
#: app/features/mec/meta_boxes/search_form.php:265
|
3971 |
+
#: app/features/mec/meta_boxes/search_form.php:326
|
3972 |
+
#: app/features/mec/meta_boxes/search_form.php:387
|
3973 |
+
#: app/features/mec/meta_boxes/search_form.php:441
|
3974 |
+
#: app/features/mec/meta_boxes/search_form.php:502
|
3975 |
+
#: app/features/mec/meta_boxes/search_form.php:563
|
3976 |
+
#: app/features/mec/meta_boxes/search_form.php:624
|
3977 |
+
#: app/features/mec/meta_boxes/search_form.php:721
|
3978 |
+
msgid "Text Search"
|
3979 |
+
msgstr "Cerca de text"
|
3980 |
+
|
3981 |
+
#: app/features/mec/meta_boxes/search_form.php:83
|
3982 |
+
#: app/features/mec/meta_boxes/search_form.php:145
|
3983 |
+
#: app/features/mec/meta_boxes/search_form.php:207
|
3984 |
+
#: app/features/mec/meta_boxes/search_form.php:268
|
3985 |
+
#: app/features/mec/meta_boxes/search_form.php:329
|
3986 |
+
#: app/features/mec/meta_boxes/search_form.php:390
|
3987 |
+
#: app/features/mec/meta_boxes/search_form.php:444
|
3988 |
+
#: app/features/mec/meta_boxes/search_form.php:505
|
3989 |
+
#: app/features/mec/meta_boxes/search_form.php:566
|
3990 |
+
#: app/features/mec/meta_boxes/search_form.php:627
|
3991 |
+
#: app/features/mec/meta_boxes/search_form.php:724
|
3992 |
+
msgid "Text Input"
|
3993 |
+
msgstr "Camp de text"
|
3994 |
+
|
3995 |
+
#: app/features/mec/meta_boxes/search_form.php:635
|
3996 |
+
#: app/features/mec/meta_boxes/search_form.php:641
|
3997 |
+
#: app/features/mec/meta_boxes/search_form.php:647
|
3998 |
+
#: app/features/mec/meta_boxes/search_form.php:653
|
3999 |
+
#: app/features/mec/meta_boxes/search_form.php:659
|
4000 |
+
#: app/features/mec/meta_boxes/search_form.php:665
|
4001 |
+
msgid "No Search Options"
|
4002 |
+
msgstr "No hi ha opcions de cerca"
|
4003 |
+
|
4004 |
+
#: app/features/mec/modules.php:43
|
4005 |
+
msgid "Speakers Options"
|
4006 |
+
msgstr "Opcions de ponents"
|
4007 |
+
|
4008 |
+
#: app/features/mec/modules.php:49
|
4009 |
+
msgid "Enable speakers feature"
|
4010 |
+
msgstr "Activa les funcions de ponents"
|
4011 |
+
|
4012 |
+
#: app/features/mec/modules.php:53
|
4013 |
+
msgid ""
|
4014 |
+
"Enable this option to have speaker in Hourly Schedule in Single. Refresh "
|
4015 |
+
"after enabling it to see the Speakers menu under MEC dashboard."
|
4016 |
+
msgstr ""
|
4017 |
+
"Habiliteu aquesta opció per tenir ponents a calendari per hores en senzill. "
|
4018 |
+
"Actualitza després d’haver pogut veure el menú Ponents al quadre de "
|
4019 |
+
"comandament MEC."
|
4020 |
+
|
4021 |
+
#: app/features/mec/modules.php:58
|
4022 |
+
msgid ""
|
4023 |
+
"After enabling and saving the settings, you should reload the page to see a "
|
4024 |
+
"new menu on the Dashboard > MEC"
|
4025 |
+
msgstr ""
|
4026 |
+
"Després d’haver activat i desat la configuració, haureu de tornar a carregar "
|
4027 |
+
"la pàgina per veure un nou menú al Tauler de control> MEC"
|
4028 |
+
|
4029 |
+
#: app/features/mec/modules.php:75
|
4030 |
+
msgid "Show Google Maps on event page"
|
4031 |
+
msgstr "Veure esdeveniments en Google Maps"
|
4032 |
+
|
4033 |
+
#: app/features/mec/modules.php:80 app/features/mec/modules.php:238
|
4034 |
+
#: app/features/mec/settings.php:852 app/features/mec/settings.php:857
|
4035 |
+
msgid "API Key"
|
4036 |
+
msgstr "API Key"
|
4037 |
+
|
4038 |
+
#: app/features/mec/modules.php:86 app/features/mec/settings.php:858
|
4039 |
+
#: app/features/mec/settings.php:871
|
4040 |
+
msgid "Required!"
|
4041 |
+
msgstr "Obligatori!"
|
4042 |
+
|
4043 |
+
#: app/features/mec/modules.php:93 app/features/mec/modules.php:102
|
4044 |
+
msgid "Zoom level"
|
4045 |
+
msgstr "Nivell de zoom"
|
4046 |
+
|
4047 |
+
#: app/features/mec/modules.php:103
|
4048 |
+
msgid ""
|
4049 |
+
"For Google Maps module in single event page. In Google Maps skin, it will "
|
4050 |
+
"caculate the zoom level automatically based on event boundaries."
|
4051 |
+
msgstr ""
|
4052 |
+
"Per al mòdul de Google Maps a la pàgina d'esdeveniment individual. En el "
|
4053 |
+
"tema de Google Maps, calcularà el nivell de Zoom automàticament d'acord als "
|
4054 |
+
"límits."
|
4055 |
+
|
4056 |
+
#: app/features/mec/modules.php:110
|
4057 |
+
msgid "Google Maps Style"
|
4058 |
+
msgstr "Estil de Google Maps"
|
4059 |
+
|
4060 |
+
#: app/features/mec/modules.php:114 app/features/mec/single.php:88
|
4061 |
+
msgid "Default"
|
4062 |
+
msgstr "Per defecte"
|
4063 |
+
|
4064 |
+
#: app/features/mec/modules.php:122
|
4065 |
+
msgid "Direction on single event"
|
4066 |
+
msgstr "Direcció a la pàgina de l'esdeveniment"
|
4067 |
+
|
4068 |
+
#: app/features/mec/modules.php:126
|
4069 |
+
msgid "Simple Method"
|
4070 |
+
msgstr "Mètode simple"
|
4071 |
+
|
4072 |
+
#: app/features/mec/modules.php:127
|
4073 |
+
msgid "Advanced Method"
|
4074 |
+
msgstr "Mètode avançat"
|
4075 |
+
|
4076 |
+
#: app/features/mec/modules.php:132 app/features/mec/modules.php:137
|
4077 |
+
msgid "Lightbox Date Format"
|
4078 |
+
msgstr "Format de Data LightBox"
|
4079 |
+
|
4080 |
+
#: app/features/mec/modules.php:138
|
4081 |
+
msgid "Default value is M d Y"
|
4082 |
+
msgstr "El valor predeterminat és M d Y"
|
4083 |
+
|
4084 |
+
#: app/features/mec/modules.php:145 app/features/mec/modules.php:153
|
4085 |
+
msgid "Google Maps API"
|
4086 |
+
msgstr "Google Maps API"
|
4087 |
+
|
4088 |
+
#: app/features/mec/modules.php:149
|
4089 |
+
msgid "Don't load Google Maps API library"
|
4090 |
+
msgstr "No carrega la biblioteca de l'API de Google Maps"
|
4091 |
+
|
4092 |
+
#: app/features/mec/modules.php:154
|
4093 |
+
msgid "Check it only if another plugin/theme is loading the Google Maps API"
|
4094 |
+
msgstr ""
|
4095 |
+
"Marca-ho només si en un altre connector / tema es carrega l'API de Google "
|
4096 |
+
"Maps"
|
4097 |
+
|
4098 |
+
#: app/features/mec/modules.php:167 app/libraries/main.php:564
|
4099 |
+
msgid "Export Options"
|
4100 |
+
msgstr "Exportar Opcions"
|
4101 |
+
|
4102 |
+
#: app/features/mec/modules.php:171
|
4103 |
+
msgid ""
|
4104 |
+
"Show export module (iCal export and add to Google calendars) on event page"
|
4105 |
+
msgstr ""
|
4106 |
+
"Veure mòdul exportat (iCal i Google Calendars) aen la pàgina de "
|
4107 |
+
"l'esdeveniment"
|
4108 |
+
|
4109 |
+
#: app/features/mec/modules.php:178
|
4110 |
+
msgid "Google Calendar"
|
4111 |
+
msgstr "Google Calendar"
|
4112 |
+
|
4113 |
+
#: app/features/mec/modules.php:194 app/libraries/main.php:565
|
4114 |
+
#: app/modules/local-time/details.php:42 app/widgets/single.php:99
|
4115 |
+
msgid "Local Time"
|
4116 |
+
msgstr "Hora local"
|
4117 |
+
|
4118 |
+
#: app/features/mec/modules.php:198
|
4119 |
+
msgid "Show event time based on local time of visitor on event page"
|
4120 |
+
msgstr ""
|
4121 |
+
"Mostra el temps de l'esdeveniment basat en l'hora local del visitant a la "
|
4122 |
+
"pàgina de l'esdeveniment"
|
4123 |
+
|
4124 |
+
#: app/features/mec/modules.php:208 app/libraries/main.php:566
|
4125 |
+
#: app/modules/qrcode/details.php:38 app/widgets/single.php:155
|
4126 |
+
msgid "QR Code"
|
4127 |
+
msgstr "Códi QR"
|
4128 |
+
|
4129 |
+
#: app/features/mec/modules.php:216
|
4130 |
+
msgid "Show QR code of event in details page and booking invoice"
|
4131 |
+
msgstr ""
|
4132 |
+
"Mostra codi QR de l'esdeveniment a la pàgina de detalls i a la factura de la "
|
4133 |
+
"reserva"
|
4134 |
+
|
4135 |
+
#: app/features/mec/modules.php:226 app/libraries/main.php:567
|
4136 |
+
#: app/modules/weather/details.php:37
|
4137 |
+
msgid "Weather"
|
4138 |
+
msgstr "El Temps"
|
4139 |
+
|
4140 |
+
#: app/features/mec/modules.php:233
|
4141 |
+
msgid "Show weather module on event page"
|
4142 |
+
msgstr "Mòdul de temps per mostrar a la pàgina de l'esdeveniment"
|
4143 |
+
|
4144 |
+
#: app/features/mec/modules.php:241
|
4145 |
+
#, php-format
|
4146 |
+
msgid "You can get a free API Key from %s"
|
4147 |
+
msgstr "Pots obtenir una clau API gratis de %s"
|
4148 |
+
|
4149 |
+
#: app/features/mec/modules.php:247
|
4150 |
+
msgid "Show weather imperial units"
|
4151 |
+
msgstr "Mòdul de temps per mostrar a la pàgina de l'esdeveniment"
|
4152 |
+
|
4153 |
+
#: app/features/mec/modules.php:253
|
4154 |
+
msgid "Show weather change units button"
|
4155 |
+
msgstr "Mostra el botó de les unitats de canvi de temps"
|
4156 |
+
|
4157 |
+
#: app/features/mec/modules.php:267
|
4158 |
+
msgid "Show social network module"
|
4159 |
+
msgstr "Mostrar el mòdul de xarxes socials"
|
4160 |
+
|
4161 |
+
#: app/features/mec/modules.php:288 app/libraries/main.php:569
|
4162 |
+
#: app/modules/next-event/details.php:82
|
4163 |
+
msgid "Next Event"
|
4164 |
+
msgstr "Pròxim esdeveniment"
|
4165 |
+
|
4166 |
+
#: app/features/mec/modules.php:292
|
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:297
|
4171 |
+
msgid "Method"
|
4172 |
+
msgstr "Mètode"
|
4173 |
+
|
4174 |
+
#: app/features/mec/modules.php:300
|
4175 |
+
msgid "Next Occurrence of Current Event"
|
4176 |
+
msgstr "Següent ocurrència de l'esdeveniment actual"
|
4177 |
+
|
4178 |
+
#: app/features/mec/modules.php:301
|
4179 |
+
msgid "Next Occurrence of Other Events"
|
4180 |
+
msgstr "Següent Aparició d'altres esdeveniments"
|
4181 |
+
|
4182 |
+
#: app/features/mec/modules.php:312 app/features/mec/single.php:42
|
4183 |
+
msgid "Default is M d Y"
|
4184 |
+
msgstr "El valor predeterminat és M d Y"
|
4185 |
+
|
4186 |
+
#: app/features/mec/modules.php:328
|
4187 |
+
msgid "Enable BuddyPress Integration"
|
4188 |
+
msgstr "Habilitar la integració de BuddyPress"
|
4189 |
+
|
4190 |
+
#: app/features/mec/modules.php:335
|
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:339
|
4196 |
+
msgid "Attendees Limit"
|
4197 |
+
msgstr "Límit d'assistents"
|
4198 |
+
|
4199 |
+
#: app/features/mec/modules.php:347
|
4200 |
+
msgid "Add booking activity to user profile"
|
4201 |
+
msgstr "Afegir activitat de reserves al perfil de l'usuari"
|
4202 |
+
|
4203 |
+
#: app/features/mec/notifications.php:38
|
4204 |
+
msgid "Enable booking notification"
|
4205 |
+
msgstr "Activar notificació de reserves"
|
4206 |
+
|
4207 |
+
#: app/features/mec/notifications.php:42
|
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
|
4224 |
+
#: app/features/mec/notifications.php:165
|
4225 |
+
#: app/features/mec/notifications.php:169
|
4226 |
+
#: app/features/mec/notifications.php:233
|
4227 |
+
#: app/features/mec/notifications.php:237
|
4228 |
+
#: app/features/mec/notifications.php:303
|
4229 |
+
#: app/features/mec/notifications.php:307
|
4230 |
+
#: app/features/mec/notifications.php:368
|
4231 |
+
#: app/features/mec/notifications.php:372
|
4232 |
+
#: app/features/mec/notifications.php:383
|
4233 |
+
#: app/features/mec/notifications.php:443
|
4234 |
+
#: app/features/mec/notifications.php:447
|
4235 |
+
#: app/features/mec/notifications.php:491
|
4236 |
+
#: app/features/mec/notifications.php:495
|
4237 |
+
msgid "Custom Recipients"
|
4238 |
+
msgstr "Destinataris personalitzats"
|
4239 |
+
|
4240 |
+
#: app/features/mec/notifications.php:53 app/features/mec/notifications.php:114
|
4241 |
+
#: app/features/mec/notifications.php:170
|
4242 |
+
#: app/features/mec/notifications.php:238
|
4243 |
+
#: app/features/mec/notifications.php:308
|
4244 |
+
#: app/features/mec/notifications.php:373
|
4245 |
+
#: app/features/mec/notifications.php:384
|
4246 |
+
#: app/features/mec/notifications.php:448
|
4247 |
+
#: app/features/mec/notifications.php:496
|
4248 |
+
msgid "Insert comma separated emails for multiple recipients."
|
4249 |
+
msgstr "Inseriu emails separats per comes per a diversos destinataris."
|
4250 |
+
|
4251 |
+
#: app/features/mec/notifications.php:60 app/features/mec/notifications.php:249
|
4252 |
+
#: app/features/mec/notifications.php:315
|
4253 |
+
msgid "Send the email to event organizer"
|
4254 |
+
msgstr "Enviar email a l'organitzador de l'esdeveniment"
|
4255 |
+
|
4256 |
+
#: app/features/mec/notifications.php:63 app/features/mec/notifications.php:120
|
4257 |
+
#: app/features/mec/notifications.php:180
|
4258 |
+
#: app/features/mec/notifications.php:256
|
4259 |
+
#: app/features/mec/notifications.php:318
|
4260 |
+
#: app/features/mec/notifications.php:390
|
4261 |
+
#: app/features/mec/notifications.php:454
|
4262 |
+
#: app/features/mec/notifications.php:502
|
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
|
4279 |
+
#: app/features/mec/notifications.php:323
|
4280 |
+
#: app/features/mec/notifications.php:395
|
4281 |
+
msgid "First name of attendee"
|
4282 |
+
msgstr "Nom de l’assistent"
|
4283 |
+
|
4284 |
+
#: app/features/mec/notifications.php:69 app/features/mec/notifications.php:126
|
4285 |
+
#: app/features/mec/notifications.php:186
|
4286 |
+
#: app/features/mec/notifications.php:262
|
4287 |
+
#: app/features/mec/notifications.php:324
|
4288 |
+
#: app/features/mec/notifications.php:396
|
4289 |
+
msgid "Last name of attendee"
|
4290 |
+
msgstr "Cognom de l’assistent"
|
4291 |
+
|
4292 |
+
#: app/features/mec/notifications.php:70 app/features/mec/notifications.php:127
|
4293 |
+
#: app/features/mec/notifications.php:187
|
4294 |
+
#: app/features/mec/notifications.php:263
|
4295 |
+
#: app/features/mec/notifications.php:325
|
4296 |
+
#: app/features/mec/notifications.php:397
|
4297 |
+
msgid "Email of attendee"
|
4298 |
+
msgstr "Email de l'assistent"
|
4299 |
+
|
4300 |
+
#: app/features/mec/notifications.php:71 app/features/mec/notifications.php:128
|
4301 |
+
#: app/features/mec/notifications.php:188
|
4302 |
+
#: app/features/mec/notifications.php:264
|
4303 |
+
#: app/features/mec/notifications.php:326
|
4304 |
+
#: app/features/mec/notifications.php:398
|
4305 |
+
msgid "Booked date of event"
|
4306 |
+
msgstr "Data de reserva de l'esdeveniment"
|
4307 |
+
|
4308 |
+
#: app/features/mec/notifications.php:72 app/features/mec/notifications.php:129
|
4309 |
+
#: app/features/mec/notifications.php:189
|
4310 |
+
#: app/features/mec/notifications.php:265
|
4311 |
+
#: app/features/mec/notifications.php:327
|
4312 |
+
#: app/features/mec/notifications.php:399
|
4313 |
+
msgid "Booked time of event"
|
4314 |
+
msgstr "Data de reserva de l'esdeveniment"
|
4315 |
+
|
4316 |
+
#: app/features/mec/notifications.php:73 app/features/mec/notifications.php:130
|
4317 |
+
#: app/features/mec/notifications.php:190
|
4318 |
+
#: app/features/mec/notifications.php:266
|
4319 |
+
#: app/features/mec/notifications.php:328
|
4320 |
+
#: app/features/mec/notifications.php:400
|
4321 |
+
msgid "Booking Price"
|
4322 |
+
msgstr "Preu de la reserva"
|
4323 |
+
|
4324 |
+
#: app/features/mec/notifications.php:74 app/features/mec/notifications.php:131
|
4325 |
+
#: app/features/mec/notifications.php:191
|
4326 |
+
#: app/features/mec/notifications.php:267
|
4327 |
+
#: app/features/mec/notifications.php:329
|
4328 |
+
#: app/features/mec/notifications.php:401
|
4329 |
+
msgid "Date and time of placing booking"
|
4330 |
+
msgstr ""
|
4331 |
+
|
4332 |
+
#: app/features/mec/notifications.php:75 app/features/mec/notifications.php:132
|
4333 |
+
#: app/features/mec/notifications.php:192
|
4334 |
+
#: app/features/mec/notifications.php:268
|
4335 |
+
#: app/features/mec/notifications.php:330
|
4336 |
+
#: app/features/mec/notifications.php:402
|
4337 |
+
#: app/features/mec/notifications.php:465
|
4338 |
+
#: app/features/mec/notifications.php:513
|
4339 |
+
msgid "Your website title"
|
4340 |
+
msgstr "Títol de la teva web"
|
4341 |
+
|
4342 |
+
#: app/features/mec/notifications.php:76 app/features/mec/notifications.php:133
|
4343 |
+
#: app/features/mec/notifications.php:193
|
4344 |
+
#: app/features/mec/notifications.php:269
|
4345 |
+
#: app/features/mec/notifications.php:331
|
4346 |
+
#: app/features/mec/notifications.php:403
|
4347 |
+
#: app/features/mec/notifications.php:466
|
4348 |
+
#: app/features/mec/notifications.php:514
|
4349 |
+
msgid "Your website URL"
|
4350 |
+
msgstr "URL de la teva web"
|
4351 |
+
|
4352 |
+
#: app/features/mec/notifications.php:77 app/features/mec/notifications.php:134
|
4353 |
+
#: app/features/mec/notifications.php:194
|
4354 |
+
#: app/features/mec/notifications.php:270
|
4355 |
+
#: app/features/mec/notifications.php:332
|
4356 |
+
#: app/features/mec/notifications.php:404
|
4357 |
+
#: app/features/mec/notifications.php:467
|
4358 |
+
#: app/features/mec/notifications.php:515
|
4359 |
+
msgid "Your website description"
|
4360 |
+
msgstr "Descripció de la teva web"
|
4361 |
+
|
4362 |
+
#: app/features/mec/notifications.php:78 app/features/mec/notifications.php:135
|
4363 |
+
#: app/features/mec/notifications.php:195
|
4364 |
+
#: app/features/mec/notifications.php:271
|
4365 |
+
#: app/features/mec/notifications.php:333
|
4366 |
+
#: app/features/mec/notifications.php:405
|
4367 |
+
msgid "Event title"
|
4368 |
+
msgstr "Títol de l'esdeveniment"
|
4369 |
+
|
4370 |
+
#: app/features/mec/notifications.php:79 app/features/mec/notifications.php:136
|
4371 |
+
#: app/features/mec/notifications.php:196
|
4372 |
+
#: app/features/mec/notifications.php:272
|
4373 |
+
#: app/features/mec/notifications.php:334
|
4374 |
+
#: app/features/mec/notifications.php:406
|
4375 |
+
msgid "Event link"
|
4376 |
+
msgstr "Enllaç de l'esdeveniment"
|
4377 |
+
|
4378 |
+
#: app/features/mec/notifications.php:80 app/features/mec/notifications.php:137
|
4379 |
+
#: app/features/mec/notifications.php:197
|
4380 |
+
#: app/features/mec/notifications.php:461
|
4381 |
+
#: app/features/mec/notifications.php:509
|
4382 |
+
msgid "Event Start Date"
|
4383 |
+
msgstr "Dia d'inici"
|
4384 |
+
|
4385 |
+
#: app/features/mec/notifications.php:81 app/features/mec/notifications.php:138
|
4386 |
+
#: app/features/mec/notifications.php:198
|
4387 |
+
#: app/features/mec/notifications.php:462
|
4388 |
+
#: app/features/mec/notifications.php:510
|
4389 |
+
#, fuzzy
|
4390 |
+
#| msgid "End Date"
|
4391 |
+
msgid "Event End Date"
|
4392 |
+
msgstr "Día final"
|
4393 |
+
|
4394 |
+
#: app/features/mec/notifications.php:82 app/features/mec/notifications.php:139
|
4395 |
+
#: app/features/mec/notifications.php:199
|
4396 |
+
#: app/features/mec/notifications.php:273
|
4397 |
+
#: app/features/mec/notifications.php:335
|
4398 |
+
#: app/features/mec/notifications.php:407
|
4399 |
+
msgid "Speaker name of booked event"
|
4400 |
+
msgstr "Nom del ponent de l'esdeveniment reservat"
|
4401 |
+
|
4402 |
+
#: app/features/mec/notifications.php:83 app/features/mec/notifications.php:140
|
4403 |
+
#: app/features/mec/notifications.php:200
|
4404 |
+
#: app/features/mec/notifications.php:274
|
4405 |
+
#: app/features/mec/notifications.php:336
|
4406 |
+
#: app/features/mec/notifications.php:408
|
4407 |
+
msgid "Organizer name of booked event"
|
4408 |
+
msgstr "Nom de l'organitzador de l'esdeveniment reservat"
|
4409 |
+
|
4410 |
+
#: app/features/mec/notifications.php:84 app/features/mec/notifications.php:141
|
4411 |
+
#: app/features/mec/notifications.php:201
|
4412 |
+
#: app/features/mec/notifications.php:275
|
4413 |
+
#: app/features/mec/notifications.php:337
|
4414 |
+
#: app/features/mec/notifications.php:409
|
4415 |
+
msgid "Organizer tel of booked event"
|
4416 |
+
msgstr "Telèfon de l'organitzador de l'esdeveniment reservat"
|
4417 |
+
|
4418 |
+
#: app/features/mec/notifications.php:85 app/features/mec/notifications.php:142
|
4419 |
+
#: app/features/mec/notifications.php:202
|
4420 |
+
#: app/features/mec/notifications.php:276
|
4421 |
+
#: app/features/mec/notifications.php:338
|
4422 |
+
#: app/features/mec/notifications.php:410
|
4423 |
+
msgid "Organizer email of booked event"
|
4424 |
+
msgstr "Email de l'organitzador de l'esdeveniment reservat"
|
4425 |
+
|
4426 |
+
#: app/features/mec/notifications.php:86 app/features/mec/notifications.php:143
|
4427 |
+
#: app/features/mec/notifications.php:203
|
4428 |
+
#: app/features/mec/notifications.php:277
|
4429 |
+
#: app/features/mec/notifications.php:339
|
4430 |
+
#: app/features/mec/notifications.php:411
|
4431 |
+
msgid "Location name of booked event"
|
4432 |
+
msgstr "Nom de la ubicació de l'esdeveniment reservat"
|
4433 |
+
|
4434 |
+
#: app/features/mec/notifications.php:87 app/features/mec/notifications.php:144
|
4435 |
+
#: app/features/mec/notifications.php:204
|
4436 |
+
#: app/features/mec/notifications.php:278
|
4437 |
+
#: app/features/mec/notifications.php:340
|
4438 |
+
#: app/features/mec/notifications.php:412
|
4439 |
+
msgid "Location address of booked event"
|
4440 |
+
msgstr "Adreça de l'organitzador de l'esdeveniment reservat"
|
4441 |
+
|
4442 |
+
#: app/features/mec/notifications.php:88 app/features/mec/notifications.php:145
|
4443 |
+
#: app/features/mec/notifications.php:205
|
4444 |
+
#: app/features/mec/notifications.php:279
|
4445 |
+
#: app/features/mec/notifications.php:341
|
4446 |
+
#: app/features/mec/notifications.php:413
|
4447 |
+
#, fuzzy
|
4448 |
+
#| msgid "Speaker name of booked event"
|
4449 |
+
msgid "Featured image of booked event"
|
4450 |
+
msgstr "Nom del ponent de l'esdeveniment reservat"
|
4451 |
+
|
4452 |
+
#: app/features/mec/notifications.php:89 app/features/mec/notifications.php:281
|
4453 |
+
#: app/features/mec/notifications.php:343
|
4454 |
+
msgid "Full Attendee info such as booking form data, name, email etc."
|
4455 |
+
msgstr ""
|
4456 |
+
"Informació completa sobre assistents com ara dades de formulari de reserva, "
|
4457 |
+
"nom, correu electrònic, etc."
|
4458 |
+
|
4459 |
+
#: app/features/mec/notifications.php:90 app/features/mec/notifications.php:207
|
4460 |
+
#: app/features/mec/notifications.php:415
|
4461 |
+
msgid "Invoice Link"
|
4462 |
+
msgstr "Enllaç de la factura"
|
4463 |
+
|
4464 |
+
#: app/features/mec/notifications.php:91 app/features/mec/notifications.php:147
|
4465 |
+
#: app/features/mec/notifications.php:208
|
4466 |
+
#: app/features/mec/notifications.php:282
|
4467 |
+
#: app/features/mec/notifications.php:344
|
4468 |
+
#: app/features/mec/notifications.php:416
|
4469 |
+
msgid "Total Attendees"
|
4470 |
+
msgstr "Total d'assistents"
|
4471 |
+
|
4472 |
+
#: app/features/mec/notifications.php:92 app/features/mec/notifications.php:148
|
4473 |
+
#: app/features/mec/notifications.php:210
|
4474 |
+
#: app/features/mec/notifications.php:417
|
4475 |
+
msgid "Ticket name"
|
4476 |
+
msgstr "Nom de l'entrada"
|
4477 |
+
|
4478 |
+
#: app/features/mec/notifications.php:93 app/features/mec/notifications.php:149
|
4479 |
+
#: app/features/mec/notifications.php:211
|
4480 |
+
#: app/features/mec/notifications.php:418
|
4481 |
+
msgid "Ticket time"
|
4482 |
+
msgstr "Hora de l'entrada"
|
4483 |
+
|
4484 |
+
#: app/features/mec/notifications.php:94 app/features/mec/notifications.php:150
|
4485 |
+
#: app/features/mec/notifications.php:212
|
4486 |
+
#: app/features/mec/notifications.php:419
|
4487 |
+
msgid "Download ICS file"
|
4488 |
+
msgstr "Descarrega l'arxiu ICS"
|
4489 |
+
|
4490 |
+
#: app/features/mec/notifications.php:102 app/libraries/main.php:575
|
4491 |
+
msgid "Booking Verification"
|
4492 |
+
msgstr "Verificació de la reserva"
|
4493 |
+
|
4494 |
+
#: app/features/mec/notifications.php:103
|
4495 |
+
msgid "It sends to attendee email for verifying their booking/email."
|
4496 |
+
msgstr "Envia un email als assistents per verificar la seva reserva / email."
|
4497 |
+
|
4498 |
+
#: app/features/mec/notifications.php:146
|
4499 |
+
msgid "Email/Booking verification link."
|
4500 |
+
msgstr "Enllaç de verificació d'email/reserva."
|
4501 |
+
|
4502 |
+
#: app/features/mec/notifications.php:159
|
4503 |
+
msgid "It sends to attendee after confirming the booking by admin."
|
4504 |
+
msgstr ""
|
4505 |
+
"S'envia als assistents després de confirmar la reserva per l'administrador."
|
4506 |
+
|
4507 |
+
#: app/features/mec/notifications.php:177
|
4508 |
+
msgid "Send One Single Email Only To First Attendee"
|
4509 |
+
msgstr ""
|
4510 |
+
|
4511 |
+
#: app/features/mec/notifications.php:206
|
4512 |
+
#: app/features/mec/notifications.php:414
|
4513 |
+
msgid "Booking cancellation link."
|
4514 |
+
msgstr "Enllaç de cancel·lació de la reserva."
|
4515 |
+
|
4516 |
+
#: app/features/mec/notifications.php:209
|
4517 |
+
msgid "Amount Tickets"
|
4518 |
+
msgstr "Quantitat (Per ticket)"
|
4519 |
+
|
4520 |
+
#: app/features/mec/notifications.php:219 app/libraries/main.php:577
|
4521 |
+
msgid "Booking Cancellation"
|
4522 |
+
msgstr "Enllaç de cancel·lació de la reserva"
|
4523 |
+
|
4524 |
+
#: app/features/mec/notifications.php:223
|
4525 |
+
msgid "Enable cancellation notification"
|
4526 |
+
msgstr "Activa els avisos de nous esdeveniments"
|
4527 |
+
|
4528 |
+
#: app/features/mec/notifications.php:227
|
4529 |
+
msgid ""
|
4530 |
+
"It sends to selected recipients after booking cancellation for notifying "
|
4531 |
+
"them."
|
4532 |
+
msgstr ""
|
4533 |
+
"S'envia a destinataris seleccionats després de la cancel·lació de la reserva "
|
4534 |
+
"per avisar-los."
|
4535 |
+
|
4536 |
+
#: app/features/mec/notifications.php:245
|
4537 |
+
msgid "Send the email to admin"
|
4538 |
+
msgstr "Enviar email a l'administrador"
|
4539 |
+
|
4540 |
+
#: app/features/mec/notifications.php:253
|
4541 |
+
msgid "Send the email to booking user"
|
4542 |
+
msgstr "Envia l'email a l’usuari de la reserva"
|
4543 |
+
|
4544 |
+
#: app/features/mec/notifications.php:280
|
4545 |
+
#: app/features/mec/notifications.php:342
|
4546 |
+
msgid "Admin booking management link."
|
4547 |
+
msgstr "Enllaç de l'administrador de reserves."
|
4548 |
+
|
4549 |
+
#: app/features/mec/notifications.php:289 app/libraries/main.php:579
|
4550 |
+
msgid "Admin"
|
4551 |
+
msgstr "Administrador"
|
4552 |
+
|
4553 |
+
#: app/features/mec/notifications.php:293
|
4554 |
+
msgid "Enable admin notification"
|
4555 |
+
msgstr "Activar notificació de reserves"
|
4556 |
+
|
4557 |
+
#: app/features/mec/notifications.php:297
|
4558 |
+
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:492
|
4563 |
+
msgid "Booking Reminder"
|
4564 |
+
msgstr "Recordatori de reserva"
|
4565 |
+
|
4566 |
+
#: app/features/mec/notifications.php:355
|
4567 |
+
msgid "Enable booking reminder notification"
|
4568 |
+
msgstr "Activa recordatori de reserves de l'esdeveniment"
|
4569 |
+
|
4570 |
+
#: app/features/mec/notifications.php:361
|
4571 |
+
#, php-format
|
4572 |
+
msgid ""
|
4573 |
+
"Set a cronjob to call %s file once per day otherwise it won't send the "
|
4574 |
+
"reminders. Please note that you should call this file %s otherwise it may "
|
4575 |
+
"send the reminders m
|