Version Description
- Fix: Heading shortcode issue
- Fix: Target option issue
- Fix: Popover shortcode issue
- Fix: Portfolio shortcode issue
- Fix: Pricing shortcode column option issue
- Fix: Promo Box shortcode issue
- Tweak: add "Before Label" & "After Label" options for Image Compare shortcode
- Tweak: add "Text Color" options for Label shortcode
Download this release
Release Info
Developer | hoosoft |
Plugin | Magee Shortcodes |
Version | 2.0.3 |
Comparing to | |
See all releases |
Code changes from version 2.0.2 to 2.0.3
- Includes/Classes/Config.class.php +93 -60
- Magee.php +2 -2
- assets/css/admin.css +5 -4
- assets/css/admin.min.css +1 -1
- assets/css/shortcodes.css +195 -15
- assets/css/shortcodes.min.css +1 -1
- assets/css/twentytwenty.min.css +0 -1
- assets/js/admin.js +1 -1
- assets/js/admin.min.js +1 -1
- assets/js/jquery.event.move.js +0 -586
- assets/js/shortcodes.js +1 -1
- assets/js/shortcodes.min.js +1 -1
- assets/twentytwenty/css/foundation.css +473 -0
- assets/twentytwenty/css/twentytwenty-no-compass.css +182 -0
- assets/{css → twentytwenty/css}/twentytwenty.css +206 -205
- assets/twentytwenty/js/jquery.event.move.js +599 -0
- assets/{js → twentytwenty/js}/jquery.twentytwenty.js +151 -105
- readme.txt +12 -2
- shortcodes/class-alert.php +1 -3
- shortcodes/class-image-compare.php +3 -1
- shortcodes/class-label.php +3 -2
- shortcodes/class-piechart.php +0 -1
- shortcodes/class-popover.php +8 -2
- shortcodes/class-portfolio.php +61 -30
- shortcodes/class-pricing.php +19 -8
- shortcodes/class-promo-box.php +13 -11
Includes/Classes/Config.class.php
CHANGED
@@ -14,7 +14,7 @@ class Config{
|
|
14 |
'prettyphoto' => [MAGEE_SHORTCODES_URL. 'assets/css/prettyPhoto'.$min_suffix.'.css', '', '', false ],
|
15 |
'owl-carousel' => [MAGEE_SHORTCODES_URL.'assets/owl-carousel/assets/owl.carousel.css', false, '', 'all' ],
|
16 |
'owl-theme' => [MAGEE_SHORTCODES_URL.'assets/owl-carousel/assets/owl.theme.css', false, '', false],
|
17 |
-
'twentytwenty' => [MAGEE_SHORTCODES_URL. 'assets/css/twentytwenty
|
18 |
'audioplayer' => [MAGEE_SHORTCODES_URL. 'assets/css/audioplayer'.$min_suffix.'.css', '', '', false ],
|
19 |
'weather-icons' => [MAGEE_SHORTCODES_URL. 'assets/weathericons/css/weather-icons.min.css', '', '', false ],
|
20 |
'jquery-classycountdown' => [MAGEE_SHORTCODES_URL. 'assets/jquery-countdown/jquery.classycountdown.css', '', '1.1.0', false ],
|
@@ -34,8 +34,8 @@ class Config{
|
|
34 |
'jquery-easypiechart'=> [MAGEE_SHORTCODES_URL. 'assets/jquery-easy-pie-chart/jquery.easypiechart.min.js', array( 'jquery'), '2.1.7', false],
|
35 |
'jquery-prettyphoto'=> [MAGEE_SHORTCODES_URL. 'assets/js/jquery.prettyPhoto.js', array( 'jquery'), '3.1.6', false],
|
36 |
'owl-carousel'=> [MAGEE_SHORTCODES_URL. 'assets/owl-carousel/owl.carousel.min.js', array( 'jquery' ), null, true],
|
37 |
-
'jquery-event-move'=> [MAGEE_SHORTCODES_URL. 'assets/js/jquery.event.move.js', array( 'jquery'), '1.3.6', false],
|
38 |
-
'jquery-twentytwenty'=> [MAGEE_SHORTCODES_URL. 'assets/js/jquery.twentytwenty.js', array( 'jquery'),
|
39 |
'jquery-audioplayer'=> [MAGEE_SHORTCODES_URL. 'assets/js/audioplayer.js', array( 'jquery'), '', false],
|
40 |
'chart'=> [MAGEE_SHORTCODES_URL. 'assets/chart/chart'.$min_suffix.'.js', array( 'jquery'), '2.9.4', false],
|
41 |
'magee-shortcodes'=> [MAGEE_SHORTCODES_URL. 'assets/js/shortcodes'.$min_suffix.'.js', array( 'jquery'), MAGEE_SHORTCODES_VER, true],
|
@@ -176,7 +176,7 @@ class Config{
|
|
176 |
),
|
177 |
|
178 |
'content' => array(
|
179 |
-
'std' => 'Lorem
|
180 |
'type' => 'textarea',
|
181 |
'label' => __( 'Text', 'magee-shortcodes'),
|
182 |
'desc' => __( 'Insert the content for the accordion item.', 'magee-shortcodes'),
|
@@ -596,6 +596,7 @@ class Config{
|
|
596 |
),
|
597 |
|
598 |
'target' => array(
|
|
|
599 |
'type' => 'choose',
|
600 |
'label' => __( 'Button Target', 'magee-shortcodes' ),
|
601 |
'desc' => __( '_self = open in same window <br />_blank = open in new window.', 'magee-shortcodes' ),
|
@@ -1117,7 +1118,7 @@ class Config{
|
|
1117 |
),
|
1118 |
|
1119 |
'content' => array(
|
1120 |
-
'std' => 'Lorem
|
1121 |
'type' => 'textarea',
|
1122 |
'label' => __( ' Column Content', 'magee-shortcodes'),
|
1123 |
'desc' => __( 'Insert the column\'s content', 'magee-shortcodes'),
|
@@ -1484,7 +1485,7 @@ class Config{
|
|
1484 |
'icon' => 'fa-list-alt',
|
1485 |
'params' => array(
|
1486 |
'content' => array(
|
1487 |
-
'std' => 'Lorem
|
1488 |
'type' => 'textarea',
|
1489 |
'label' => __( 'Content', 'magee-shortcodes' ),
|
1490 |
'desc' => __( 'Insert content for custom box.', 'magee-shortcodes' ),
|
@@ -2047,7 +2048,7 @@ class Config{
|
|
2047 |
'desc' => __( 'Set text for fold title. ', 'magee-shortcodes'),
|
2048 |
),
|
2049 |
'content' => array(
|
2050 |
-
'std' => 'Lorem
|
2051 |
'type' => 'textarea',
|
2052 |
'label' => __( 'Content', 'magee-shortcodes'),
|
2053 |
'desc' => __( 'This text block can be expanded.', 'magee-shortcodes')
|
@@ -2521,7 +2522,7 @@ class Config{
|
|
2521 |
'params' => array(
|
2522 |
|
2523 |
'title' => array(
|
2524 |
-
'std' => '
|
2525 |
'type' => 'text',
|
2526 |
'label' => __( 'Title', 'magee-shortcodes'),
|
2527 |
'desc' => __( 'Insert heading text', 'magee-shortcodes')
|
@@ -2723,7 +2724,7 @@ class Config{
|
|
2723 |
'desc' => __( 'Set color for icon.', 'magee-shortcodes'),
|
2724 |
),
|
2725 |
'icon_box' => array(
|
2726 |
-
'std' => '',
|
2727 |
'type' => 'choose',
|
2728 |
'label' => __( 'Icon Box', 'magee-shortcodes'),
|
2729 |
'desc' => __( 'Choose to display boxed icon.', 'magee-shortcodes'),
|
@@ -2763,13 +2764,14 @@ class Config{
|
|
2763 |
|
2764 |
),
|
2765 |
'link' => array(
|
2766 |
-
|
2767 |
-
|
2768 |
-
|
2769 |
|
2770 |
),
|
2771 |
|
2772 |
'target' => array(
|
|
|
2773 |
'type' => 'choose',
|
2774 |
'label' => __( 'Link Target', 'magee-shortcodes'),
|
2775 |
'options' => array(
|
@@ -2871,6 +2873,18 @@ class Config{
|
|
2871 |
'label' => __( 'Image Right', 'magee-shortcodes' ),
|
2872 |
'desc' => __( 'Insert the image displayed in the right.', 'magee-shortcodes')
|
2873 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2874 |
'class' => array(
|
2875 |
'std' => '',
|
2876 |
'type' => 'text',
|
@@ -2884,7 +2898,7 @@ class Config{
|
|
2884 |
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes')
|
2885 |
),
|
2886 |
),
|
2887 |
-
'shortcode' => '[ms_image_compare style="{{style}}" percent="{{percent}}" image_left="{{image_left}}" image_right="{{image_right}}" class="{{class}}" id="{{id}}"]',
|
2888 |
'popup_title' => __( 'Image Compare Shortcode', 'magee-shortcodes' ),
|
2889 |
'name' => __('image-compare-shortcode/','magee-shortcodes'),
|
2890 |
);
|
@@ -2910,7 +2924,7 @@ class Config{
|
|
2910 |
'desc' => __( 'Add the URL the picture will link to, ex: http://example.com.', 'magee-shortcodes' ),
|
2911 |
),
|
2912 |
'link_target' => array(
|
2913 |
-
'std' => '',
|
2914 |
'type' => 'choose',
|
2915 |
'label' => __( 'Link Target', 'magee-shortcodes' ),
|
2916 |
'desc' => __( '_self = open in same window _blank = open in new window.', 'magee-shortcodes' ),
|
@@ -2976,8 +2990,14 @@ class Config{
|
|
2976 |
'label' => __( 'Background Color' , 'magee-shortcodes'),
|
2977 |
'desc' => __( 'Set background color for label.','magee-shortcodes')
|
2978 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
2979 |
),
|
2980 |
-
'shortcode' => '[ms_label background_color="{{background_color}}" ]{{content}}[/ms_label]',
|
2981 |
'popup_title' => __( 'Label Shortcode', 'magee-shortcodes' ),
|
2982 |
'name' => __('label-shortcode/','magee-shortcodes'),
|
2983 |
);
|
@@ -3006,6 +3026,7 @@ class Config{
|
|
3006 |
'desc' => __( 'Set text font size for item.', 'magee-shortcodes'),
|
3007 |
),
|
3008 |
'icon_a' => array(
|
|
|
3009 |
'type' => 'iconpicker',
|
3010 |
'label' => __( 'Global Icon', 'magee-shortcodes' ),
|
3011 |
'desc' => __( 'Click an icon to select, click again to deselect. Set this icon to replace all single li icon settings.', 'magee-shortcodes' ),
|
@@ -3142,13 +3163,13 @@ class Config{
|
|
3142 |
'desc' => __( 'Insert heading title for the modal.', 'magee-shortcodes' ),
|
3143 |
),
|
3144 |
'title_color' => array(
|
3145 |
-
'std' => '',
|
3146 |
'type' => 'colorpicker',
|
3147 |
'label' => __( 'Modal Heading Title Color', 'magee-shortcodes' ),
|
3148 |
'desc' => __( 'Set color for the modal heading title.', 'magee-shortcodes' ),
|
3149 |
),
|
3150 |
'heading_background' => array(
|
3151 |
-
'std' => '',
|
3152 |
'type' => 'colorpicker',
|
3153 |
'label' => __( 'Modal Heading Background', 'magee-shortcodes' ),
|
3154 |
'desc' => __( 'Set background for the modal heading.', 'magee-shortcodes' ),
|
@@ -3167,13 +3188,13 @@ class Config{
|
|
3167 |
'desc' => __( 'Add your content to be displayed in modal.', 'magee-shortcodes' ),
|
3168 |
),
|
3169 |
'background' => array(
|
3170 |
-
'std' => '',
|
3171 |
'type' => 'colorpicker',
|
3172 |
'label' => __( 'Modal Background', 'magee-shortcodes' ),
|
3173 |
'desc' => __( 'Set background for the modal.', 'magee-shortcodes' ),
|
3174 |
),
|
3175 |
'color' => array(
|
3176 |
-
'std' => '',
|
3177 |
'type' => 'colorpicker',
|
3178 |
'label' => __( 'Modal Color', 'magee-shortcodes' ),
|
3179 |
'desc' => __( 'Set color for the modal.', 'magee-shortcodes' ),
|
@@ -3195,13 +3216,13 @@ class Config{
|
|
3195 |
'max' => '500'
|
3196 |
),
|
3197 |
'overlay_color' => array(
|
3198 |
-
'std' => '',
|
3199 |
'type' => 'colorpicker',
|
3200 |
'label' => __( 'Overlay Color', 'magee-shortcodes' ),
|
3201 |
'desc' => __( 'Set background color for the modal overlay.', 'magee-shortcodes' ),
|
3202 |
),
|
3203 |
'overlay_opacity' => array(
|
3204 |
-
'std' => '0',
|
3205 |
'type' => 'select',
|
3206 |
'label' => __( 'Overlay Color Opacity', 'magee-shortcodes' ),
|
3207 |
'desc' => __( 'Choose background color opacity for the modal overlay.', 'magee-shortcodes' ),
|
@@ -3298,7 +3319,7 @@ class Config{
|
|
3298 |
);
|
3299 |
|
3300 |
/*-----------------------------------------------------------------------------------*/
|
3301 |
-
/*
|
3302 |
/*-----------------------------------------------------------------------------------*/
|
3303 |
|
3304 |
$magee_shortcodes['panel'] = array(
|
@@ -3313,7 +3334,7 @@ class Config{
|
|
3313 |
'desc' => __( 'Insert title for panel.', 'magee-shortcodes' ),
|
3314 |
),
|
3315 |
'content' => array(
|
3316 |
-
'std' => 'Lorem
|
3317 |
'type' => 'textarea',
|
3318 |
'label' => __( 'Panel Content', 'magee-shortcodes' ),
|
3319 |
'desc' => __( 'Insert content for panel.', 'magee-shortcodes' ),
|
@@ -3403,7 +3424,7 @@ class Config{
|
|
3403 |
'desc' => __( 'Insert the title of the person', 'magee-shortcodes' ),
|
3404 |
),
|
3405 |
'link_target' => array(
|
3406 |
-
'std' => '
|
3407 |
'type' => 'choose',
|
3408 |
'label' => __( 'Link Target', 'magee-shortcodes' ),
|
3409 |
'desc' => __( '_self = open in same window _blank = open in new window.', 'magee-shortcodes' ),
|
@@ -3427,7 +3448,7 @@ class Config{
|
|
3427 |
'options' => $opacity
|
3428 |
),
|
3429 |
'content' => array(
|
3430 |
-
'std' => 'Lorem
|
3431 |
'type' => 'textarea',
|
3432 |
'label' => __( 'Profile Description', 'magee-shortcodes' ),
|
3433 |
'desc' => __( 'Insert profile description.', 'magee-shortcodes' )
|
@@ -3564,7 +3585,6 @@ class Config{
|
|
3564 |
/* Piechart Config
|
3565 |
/*-----------------------------------------------------------------------------------*/
|
3566 |
|
3567 |
-
|
3568 |
$magee_shortcodes['piechart'] = array(
|
3569 |
'no_preview' => false,
|
3570 |
'icon' => 'fa-circle-o-notch',
|
@@ -3663,7 +3683,7 @@ class Config{
|
|
3663 |
'desc' => __( 'Content that will trigger the popover.', 'magee-shortcodes' ),
|
3664 |
),
|
3665 |
'content' => array(
|
3666 |
-
'std' => 'Lorem
|
3667 |
'type' => 'textarea',
|
3668 |
'label' => __( 'Contents Inside Popover', 'magee-shortcodes' ),
|
3669 |
'desc' => __( 'Text to be displayed inside the popover.', 'magee-shortcodes' ),
|
@@ -3687,7 +3707,7 @@ class Config{
|
|
3687 |
'top' => __('Top', 'magee-shortcodes'),
|
3688 |
'bottom' => __('Bottom', 'magee-shortcodes'),
|
3689 |
'left' => __('Left', 'magee-shortcodes'),
|
3690 |
-
'
|
3691 |
)
|
3692 |
),
|
3693 |
|
@@ -3717,7 +3737,6 @@ class Config{
|
|
3717 |
'no_preview' => false,
|
3718 |
'icon' => 'fa-th',
|
3719 |
'params' => array(
|
3720 |
-
|
3721 |
|
3722 |
'num' => array(
|
3723 |
'std' => '10',
|
@@ -3743,13 +3762,14 @@ class Config{
|
|
3743 |
)
|
3744 |
),
|
3745 |
'style' => array(
|
|
|
3746 |
'type' => 'select',
|
3747 |
'label' => __( 'Style', 'magee-shortcodes'),
|
3748 |
'desc' => __( 'Choose to display portfolios in normal/full style.', 'magee-shortcodes'),
|
3749 |
'options' => array(
|
3750 |
-
|
3751 |
-
|
3752 |
-
|
3753 |
),
|
3754 |
'columns' => array(
|
3755 |
'type' => 'select',
|
@@ -3757,12 +3777,12 @@ class Config{
|
|
3757 |
'desc' => __( 'Choose column number for portfolio list.', 'magee-shortcodes'),
|
3758 |
'std' => '3',
|
3759 |
'options' => array(
|
3760 |
-
|
3761 |
-
|
3762 |
-
|
3763 |
-
|
3764 |
-
|
3765 |
-
|
3766 |
),
|
3767 |
|
3768 |
|
@@ -3771,12 +3791,12 @@ class Config{
|
|
3771 |
'label' => __( 'Overlay Content', 'magee-shortcodes'),
|
3772 |
'desc' => __( 'Select overlay content for portfolios.', 'magee-shortcodes'),
|
3773 |
'options' => array(
|
3774 |
-
|
3775 |
-
|
3776 |
-
|
3777 |
-
|
3778 |
-
|
3779 |
-
|
3780 |
|
3781 |
),
|
3782 |
|
@@ -3794,15 +3814,16 @@ class Config{
|
|
3794 |
),
|
3795 |
|
3796 |
'orientation' => array(
|
|
|
3797 |
'type' => 'select',
|
3798 |
'label' => __( 'Orientation', 'magee-shortcodes'),
|
3799 |
'desc' => __( 'Select orientation for overlay animation.', 'magee-shortcodes'),
|
3800 |
'options' => array(
|
3801 |
-
|
3802 |
-
|
3803 |
-
|
3804 |
-
|
3805 |
-
|
3806 |
|
3807 |
),
|
3808 |
'page_nav' => array(
|
@@ -3812,6 +3833,7 @@ class Config{
|
|
3812 |
'options' => $reverse_choices
|
3813 |
),
|
3814 |
'filter' => array(
|
|
|
3815 |
'type' => 'choose',
|
3816 |
'label' => __( 'Filter', 'magee-shortcodes'),
|
3817 |
'desc' => __( 'Choose to display filter for portolio list.', 'magee-shortcodes'),
|
@@ -3830,28 +3852,32 @@ class Config{
|
|
3830 |
'options' => $magee_portfolios_cats
|
3831 |
),
|
3832 |
'align' => array(
|
|
|
3833 |
'type' => 'select',
|
3834 |
'label' => __( 'Info Align','magee-shortcodes'),
|
3835 |
'desc' => __( 'Set align of portoflio info.','magee-shortcodes'),
|
3836 |
'options' => array(
|
3837 |
-
|
3838 |
-
|
3839 |
-
|
3840 |
-
|
3841 |
),
|
3842 |
'display_title' => array(
|
|
|
3843 |
'type' => 'choose',
|
3844 |
'label' => __( 'Display Title','magee-shortcodes'),
|
3845 |
'desc' => __( 'Choose to display the portfolio title below the featured image','magee-shortcodes'),
|
3846 |
'options' => $choices
|
3847 |
),
|
3848 |
'display_tags' => array(
|
|
|
3849 |
'type' => 'choose',
|
3850 |
'label' => __( 'Display Tags','magee-shortcodes'),
|
3851 |
'desc' => __( 'Choose to show portfolio tags.','magee-shortcodes'),
|
3852 |
'options' => $choices
|
3853 |
),
|
3854 |
'display_excerpt' => array(
|
|
|
3855 |
'type' => 'choose',
|
3856 |
'label' => __( 'Display Excerpt','magee-shortcodes'),
|
3857 |
'desc' => __( 'Choose to display the portfolio excerpt.','magee-shortcodes'),
|
@@ -3864,6 +3890,7 @@ class Config{
|
|
3864 |
'desc' => __( 'Insert the number of words/characters you want to show in the excerpt.','magee-shortcodes')
|
3865 |
),
|
3866 |
'strip' => array(
|
|
|
3867 |
'type' => 'choose',
|
3868 |
'label' => __( 'Strip HTML','magee-shortcodes'),
|
3869 |
'desc' => __( 'Strip HTML from the post excerpt','magee-shortcodes'),
|
@@ -3915,6 +3942,7 @@ class Config{
|
|
3915 |
'desc' => __( 'Set number of pricing boxes.', 'magee-shortcodes'),
|
3916 |
'std' => '3',
|
3917 |
'options' => array(
|
|
|
3918 |
'2' => __('2 Columns','magee-shortcodes'),
|
3919 |
'3' => __('3 Columns','magee-shortcodes'),
|
3920 |
'4' => __('4 Columns','magee-shortcodes'),
|
@@ -3980,17 +4008,18 @@ class Config{
|
|
3980 |
'desc' => __( 'Inser text for button of pricing box.', 'magee-shortcodes'),
|
3981 |
),
|
3982 |
'buttonlink' => array(
|
3983 |
-
'std' => '',
|
3984 |
'type' => 'text',
|
3985 |
'label' => __( 'Button Link', 'magee-shortcodes'),
|
3986 |
'desc' => __( 'Inser link for button of pricing box, eg: http://example.com.', 'magee-shortcodes'),
|
3987 |
),
|
3988 |
|
3989 |
'linktarget' => array(
|
|
|
3990 |
'type' => 'choose',
|
3991 |
'label' => __( 'Link Target', 'magee-shortcodes'),
|
3992 |
'desc' => __( '_self = open in same window, _blank = open in new window.', 'magee-shortcodes'),
|
3993 |
-
'std' => '
|
3994 |
'options' => array(
|
3995 |
'_blank' => __('_blank','magee-shortcodes'),
|
3996 |
'_self' => __('_self','magee-shortcodes')
|
@@ -4156,6 +4185,7 @@ class Config{
|
|
4156 |
|
4157 |
),
|
4158 |
'rounded' => array(
|
|
|
4159 |
'type' => 'select',
|
4160 |
'label' => __( 'Rounded', 'magee-shortcodes' ),
|
4161 |
'desc' => __( 'Choose to set the progress bar as rounded.', 'magee-shortcodes' ),
|
@@ -4166,6 +4196,7 @@ class Config{
|
|
4166 |
|
4167 |
),
|
4168 |
'number' => array(
|
|
|
4169 |
'type' => 'choose',
|
4170 |
'label' => __( 'Display Number', 'magee-shortcodes' ),
|
4171 |
'desc' => __( 'Choose to diplay number for progress bar.', 'magee-shortcodes' ),
|
@@ -4207,6 +4238,7 @@ class Config{
|
|
4207 |
'std' => ''
|
4208 |
),
|
4209 |
'textposition' => array(
|
|
|
4210 |
'type' => 'select',
|
4211 |
'label' => __( 'Text Position', 'magee-shortcodes' ),
|
4212 |
'desc' => __( 'Choose text position for progress bar.', 'magee-shortcodes' ),
|
@@ -4319,7 +4351,7 @@ class Config{
|
|
4319 |
'options' => $icons
|
4320 |
),
|
4321 |
'content' => array(
|
4322 |
-
'std' => 'Lorem
|
4323 |
'type' => 'textarea',
|
4324 |
'label' => __( 'Content', 'magee-shortcodes' ),
|
4325 |
'desc' => __( 'Insert content for promo box.', 'magee-shortcodes' ),
|
@@ -4366,7 +4398,7 @@ class Config{
|
|
4366 |
'desc' => '',
|
4367 |
),
|
4368 |
'content' => array(
|
4369 |
-
'std' => 'Lorem
|
4370 |
'type' => 'textarea',
|
4371 |
'label' => __( 'Content', 'magee-shortcodes'),
|
4372 |
'desc' => __( 'Insert content for pullquote.', 'magee-shortcodes')
|
@@ -4901,12 +4933,13 @@ class Config{
|
|
4901 |
)
|
4902 |
),
|
4903 |
'iconlink' => array(
|
4904 |
-
'std' => '',
|
4905 |
'type' => 'text',
|
4906 |
'label' => __( 'Icon Link URL', 'magee-shortcodes' ),
|
4907 |
'desc' => __( 'Add the icon\'s url eg: http://example.com.', 'magee-shortcodes' ),
|
4908 |
),
|
4909 |
'icontarget' => array(
|
|
|
4910 |
'type' => 'choose',
|
4911 |
'label' => __( 'Icon Target', 'magee-shortcodes' ),
|
4912 |
'desc' => __( '_self = open in same window <br />_blank = open in new window.', 'magee-shortcodes' ),
|
@@ -5168,7 +5201,7 @@ class Config{
|
|
5168 |
),
|
5169 |
),
|
5170 |
'content' => array(
|
5171 |
-
'std' => 'Lorem
|
5172 |
'type' => 'textarea',
|
5173 |
'label' => __( 'Testimonial Content', 'magee-shortcodes' ),
|
5174 |
'desc' => __( 'Insert content for testimonial.', 'magee-shortcodes' )
|
@@ -5312,7 +5345,7 @@ class Config{
|
|
5312 |
),
|
5313 |
|
5314 |
'content' => array(
|
5315 |
-
'std' => 'Lorem
|
5316 |
'type' => 'textarea',
|
5317 |
'label' => __( 'Content', 'magee-shortcodes' ),
|
5318 |
'desc' => __( 'Insert the text that will activate the tooltip hover', 'magee-shortcodes' )
|
14 |
'prettyphoto' => [MAGEE_SHORTCODES_URL. 'assets/css/prettyPhoto'.$min_suffix.'.css', '', '', false ],
|
15 |
'owl-carousel' => [MAGEE_SHORTCODES_URL.'assets/owl-carousel/assets/owl.carousel.css', false, '', 'all' ],
|
16 |
'owl-theme' => [MAGEE_SHORTCODES_URL.'assets/owl-carousel/assets/owl.theme.css', false, '', false],
|
17 |
+
'twentytwenty' => [MAGEE_SHORTCODES_URL. 'assets/twentytwenty/css/twentytwenty.css', '', MAGEE_SHORTCODES_VER, false ],
|
18 |
'audioplayer' => [MAGEE_SHORTCODES_URL. 'assets/css/audioplayer'.$min_suffix.'.css', '', '', false ],
|
19 |
'weather-icons' => [MAGEE_SHORTCODES_URL. 'assets/weathericons/css/weather-icons.min.css', '', '', false ],
|
20 |
'jquery-classycountdown' => [MAGEE_SHORTCODES_URL. 'assets/jquery-countdown/jquery.classycountdown.css', '', '1.1.0', false ],
|
34 |
'jquery-easypiechart'=> [MAGEE_SHORTCODES_URL. 'assets/jquery-easy-pie-chart/jquery.easypiechart.min.js', array( 'jquery'), '2.1.7', false],
|
35 |
'jquery-prettyphoto'=> [MAGEE_SHORTCODES_URL. 'assets/js/jquery.prettyPhoto.js', array( 'jquery'), '3.1.6', false],
|
36 |
'owl-carousel'=> [MAGEE_SHORTCODES_URL. 'assets/owl-carousel/owl.carousel.min.js', array( 'jquery' ), null, true],
|
37 |
+
'jquery-event-move'=> [MAGEE_SHORTCODES_URL. 'assets/twentytwenty/js/jquery.event.move.js', array( 'jquery'), '1.3.6', false],
|
38 |
+
'jquery-twentytwenty'=> [MAGEE_SHORTCODES_URL. 'assets/twentytwenty/js/jquery.twentytwenty.js', array( 'jquery'), MAGEE_SHORTCODES_VER, false],
|
39 |
'jquery-audioplayer'=> [MAGEE_SHORTCODES_URL. 'assets/js/audioplayer.js', array( 'jquery'), '', false],
|
40 |
'chart'=> [MAGEE_SHORTCODES_URL. 'assets/chart/chart'.$min_suffix.'.js', array( 'jquery'), '2.9.4', false],
|
41 |
'magee-shortcodes'=> [MAGEE_SHORTCODES_URL. 'assets/js/shortcodes'.$min_suffix.'.js', array( 'jquery'), MAGEE_SHORTCODES_VER, true],
|
176 |
),
|
177 |
|
178 |
'content' => array(
|
179 |
+
'std' => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.',
|
180 |
'type' => 'textarea',
|
181 |
'label' => __( 'Text', 'magee-shortcodes'),
|
182 |
'desc' => __( 'Insert the content for the accordion item.', 'magee-shortcodes'),
|
596 |
),
|
597 |
|
598 |
'target' => array(
|
599 |
+
'std' => '_blank',
|
600 |
'type' => 'choose',
|
601 |
'label' => __( 'Button Target', 'magee-shortcodes' ),
|
602 |
'desc' => __( '_self = open in same window <br />_blank = open in new window.', 'magee-shortcodes' ),
|
1118 |
),
|
1119 |
|
1120 |
'content' => array(
|
1121 |
+
'std' => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.',
|
1122 |
'type' => 'textarea',
|
1123 |
'label' => __( ' Column Content', 'magee-shortcodes'),
|
1124 |
'desc' => __( 'Insert the column\'s content', 'magee-shortcodes'),
|
1485 |
'icon' => 'fa-list-alt',
|
1486 |
'params' => array(
|
1487 |
'content' => array(
|
1488 |
+
'std' => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.',
|
1489 |
'type' => 'textarea',
|
1490 |
'label' => __( 'Content', 'magee-shortcodes' ),
|
1491 |
'desc' => __( 'Insert content for custom box.', 'magee-shortcodes' ),
|
2048 |
'desc' => __( 'Set text for fold title. ', 'magee-shortcodes'),
|
2049 |
),
|
2050 |
'content' => array(
|
2051 |
+
'std' => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt.',
|
2052 |
'type' => 'textarea',
|
2053 |
'label' => __( 'Content', 'magee-shortcodes'),
|
2054 |
'desc' => __( 'This text block can be expanded.', 'magee-shortcodes')
|
2522 |
'params' => array(
|
2523 |
|
2524 |
'title' => array(
|
2525 |
+
'std' => __( 'Heading Text', 'magee-shortcodes'),
|
2526 |
'type' => 'text',
|
2527 |
'label' => __( 'Title', 'magee-shortcodes'),
|
2528 |
'desc' => __( 'Insert heading text', 'magee-shortcodes')
|
2724 |
'desc' => __( 'Set color for icon.', 'magee-shortcodes'),
|
2725 |
),
|
2726 |
'icon_box' => array(
|
2727 |
+
'std' => 'no',
|
2728 |
'type' => 'choose',
|
2729 |
'label' => __( 'Icon Box', 'magee-shortcodes'),
|
2730 |
'desc' => __( 'Choose to display boxed icon.', 'magee-shortcodes'),
|
2764 |
|
2765 |
),
|
2766 |
'link' => array(
|
2767 |
+
'std' => '#',
|
2768 |
+
'type' => 'text',
|
2769 |
+
'label' => __( 'Image Link', 'magee-shortcodes'),
|
2770 |
|
2771 |
),
|
2772 |
|
2773 |
'target' => array(
|
2774 |
+
'std' => '_blank',
|
2775 |
'type' => 'choose',
|
2776 |
'label' => __( 'Link Target', 'magee-shortcodes'),
|
2777 |
'options' => array(
|
2873 |
'label' => __( 'Image Right', 'magee-shortcodes' ),
|
2874 |
'desc' => __( 'Insert the image displayed in the right.', 'magee-shortcodes')
|
2875 |
),
|
2876 |
+
'before_label' => array(
|
2877 |
+
'std' => __( 'Before', 'magee-shortcodes' ),
|
2878 |
+
'type' => 'text',
|
2879 |
+
'label' => __( 'Before Label', 'magee-shortcodes' ),
|
2880 |
+
'desc' => __( 'Set a custom before label.', 'magee-shortcodes')
|
2881 |
+
),
|
2882 |
+
'after_label' => array(
|
2883 |
+
'std' => __( 'After', 'magee-shortcodes' ),
|
2884 |
+
'type' => 'text',
|
2885 |
+
'label' => __( 'After Label', 'magee-shortcodes' ),
|
2886 |
+
'desc' => __( 'Set a custom after label.', 'magee-shortcodes')
|
2887 |
+
),
|
2888 |
'class' => array(
|
2889 |
'std' => '',
|
2890 |
'type' => 'text',
|
2898 |
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes')
|
2899 |
),
|
2900 |
),
|
2901 |
+
'shortcode' => '[ms_image_compare style="{{style}}" percent="{{percent}}" image_left="{{image_left}}" image_right="{{image_right}}" before_label="{{before_label}}" after_label="{{after_label}}" class="{{class}}" id="{{id}}"]',
|
2902 |
'popup_title' => __( 'Image Compare Shortcode', 'magee-shortcodes' ),
|
2903 |
'name' => __('image-compare-shortcode/','magee-shortcodes'),
|
2904 |
);
|
2924 |
'desc' => __( 'Add the URL the picture will link to, ex: http://example.com.', 'magee-shortcodes' ),
|
2925 |
),
|
2926 |
'link_target' => array(
|
2927 |
+
'std' => '_self',
|
2928 |
'type' => 'choose',
|
2929 |
'label' => __( 'Link Target', 'magee-shortcodes' ),
|
2930 |
'desc' => __( '_self = open in same window _blank = open in new window.', 'magee-shortcodes' ),
|
2990 |
'label' => __( 'Background Color' , 'magee-shortcodes'),
|
2991 |
'desc' => __( 'Set background color for label.','magee-shortcodes')
|
2992 |
),
|
2993 |
+
'text_color' => array(
|
2994 |
+
'std' => '#ffffff',
|
2995 |
+
'type' => 'colorpicker',
|
2996 |
+
'label' => __( 'Text Color' , 'magee-shortcodes'),
|
2997 |
+
'desc' => __( 'Set text color for label.','magee-shortcodes')
|
2998 |
+
),
|
2999 |
),
|
3000 |
+
'shortcode' => '[ms_label background_color="{{background_color}}" text_color="{{text_color}}"]{{content}}[/ms_label]',
|
3001 |
'popup_title' => __( 'Label Shortcode', 'magee-shortcodes' ),
|
3002 |
'name' => __('label-shortcode/','magee-shortcodes'),
|
3003 |
);
|
3026 |
'desc' => __( 'Set text font size for item.', 'magee-shortcodes'),
|
3027 |
),
|
3028 |
'icon_a' => array(
|
3029 |
+
'std' => 'fa-hand-o-right',
|
3030 |
'type' => 'iconpicker',
|
3031 |
'label' => __( 'Global Icon', 'magee-shortcodes' ),
|
3032 |
'desc' => __( 'Click an icon to select, click again to deselect. Set this icon to replace all single li icon settings.', 'magee-shortcodes' ),
|
3163 |
'desc' => __( 'Insert heading title for the modal.', 'magee-shortcodes' ),
|
3164 |
),
|
3165 |
'title_color' => array(
|
3166 |
+
'std' => '#ffffff',
|
3167 |
'type' => 'colorpicker',
|
3168 |
'label' => __( 'Modal Heading Title Color', 'magee-shortcodes' ),
|
3169 |
'desc' => __( 'Set color for the modal heading title.', 'magee-shortcodes' ),
|
3170 |
),
|
3171 |
'heading_background' => array(
|
3172 |
+
'std' => 'rgba(0,0,0,.05)',
|
3173 |
'type' => 'colorpicker',
|
3174 |
'label' => __( 'Modal Heading Background', 'magee-shortcodes' ),
|
3175 |
'desc' => __( 'Set background for the modal heading.', 'magee-shortcodes' ),
|
3188 |
'desc' => __( 'Add your content to be displayed in modal.', 'magee-shortcodes' ),
|
3189 |
),
|
3190 |
'background' => array(
|
3191 |
+
'std' => '#e74c3c',
|
3192 |
'type' => 'colorpicker',
|
3193 |
'label' => __( 'Modal Background', 'magee-shortcodes' ),
|
3194 |
'desc' => __( 'Set background for the modal.', 'magee-shortcodes' ),
|
3195 |
),
|
3196 |
'color' => array(
|
3197 |
+
'std' => '#ffffff',
|
3198 |
'type' => 'colorpicker',
|
3199 |
'label' => __( 'Modal Color', 'magee-shortcodes' ),
|
3200 |
'desc' => __( 'Set color for the modal.', 'magee-shortcodes' ),
|
3216 |
'max' => '500'
|
3217 |
),
|
3218 |
'overlay_color' => array(
|
3219 |
+
'std' => '#999999',
|
3220 |
'type' => 'colorpicker',
|
3221 |
'label' => __( 'Overlay Color', 'magee-shortcodes' ),
|
3222 |
'desc' => __( 'Set background color for the modal overlay.', 'magee-shortcodes' ),
|
3223 |
),
|
3224 |
'overlay_opacity' => array(
|
3225 |
+
'std' => '0.5',
|
3226 |
'type' => 'select',
|
3227 |
'label' => __( 'Overlay Color Opacity', 'magee-shortcodes' ),
|
3228 |
'desc' => __( 'Choose background color opacity for the modal overlay.', 'magee-shortcodes' ),
|
3319 |
);
|
3320 |
|
3321 |
/*-----------------------------------------------------------------------------------*/
|
3322 |
+
/* Panel Config
|
3323 |
/*-----------------------------------------------------------------------------------*/
|
3324 |
|
3325 |
$magee_shortcodes['panel'] = array(
|
3334 |
'desc' => __( 'Insert title for panel.', 'magee-shortcodes' ),
|
3335 |
),
|
3336 |
'content' => array(
|
3337 |
+
'std' => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.',
|
3338 |
'type' => 'textarea',
|
3339 |
'label' => __( 'Panel Content', 'magee-shortcodes' ),
|
3340 |
'desc' => __( 'Insert content for panel.', 'magee-shortcodes' ),
|
3424 |
'desc' => __( 'Insert the title of the person', 'magee-shortcodes' ),
|
3425 |
),
|
3426 |
'link_target' => array(
|
3427 |
+
'std' => '_blank',
|
3428 |
'type' => 'choose',
|
3429 |
'label' => __( 'Link Target', 'magee-shortcodes' ),
|
3430 |
'desc' => __( '_self = open in same window _blank = open in new window.', 'magee-shortcodes' ),
|
3448 |
'options' => $opacity
|
3449 |
),
|
3450 |
'content' => array(
|
3451 |
+
'std' => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt.',
|
3452 |
'type' => 'textarea',
|
3453 |
'label' => __( 'Profile Description', 'magee-shortcodes' ),
|
3454 |
'desc' => __( 'Insert profile description.', 'magee-shortcodes' )
|
3585 |
/* Piechart Config
|
3586 |
/*-----------------------------------------------------------------------------------*/
|
3587 |
|
|
|
3588 |
$magee_shortcodes['piechart'] = array(
|
3589 |
'no_preview' => false,
|
3590 |
'icon' => 'fa-circle-o-notch',
|
3683 |
'desc' => __( 'Content that will trigger the popover.', 'magee-shortcodes' ),
|
3684 |
),
|
3685 |
'content' => array(
|
3686 |
+
'std' => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt.',
|
3687 |
'type' => 'textarea',
|
3688 |
'label' => __( 'Contents Inside Popover', 'magee-shortcodes' ),
|
3689 |
'desc' => __( 'Text to be displayed inside the popover.', 'magee-shortcodes' ),
|
3707 |
'top' => __('Top', 'magee-shortcodes'),
|
3708 |
'bottom' => __('Bottom', 'magee-shortcodes'),
|
3709 |
'left' => __('Left', 'magee-shortcodes'),
|
3710 |
+
'right' => __('Right', 'magee-shortcodes'),
|
3711 |
)
|
3712 |
),
|
3713 |
|
3737 |
'no_preview' => false,
|
3738 |
'icon' => 'fa-th',
|
3739 |
'params' => array(
|
|
|
3740 |
|
3741 |
'num' => array(
|
3742 |
'std' => '10',
|
3762 |
)
|
3763 |
),
|
3764 |
'style' => array(
|
3765 |
+
'std' => 1,
|
3766 |
'type' => 'select',
|
3767 |
'label' => __( 'Style', 'magee-shortcodes'),
|
3768 |
'desc' => __( 'Choose to display portfolios in normal/full style.', 'magee-shortcodes'),
|
3769 |
'options' => array(
|
3770 |
+
'1' => __( 'Normal Style', 'magee-shortcodes'),
|
3771 |
+
'2' => __( 'Full Width', 'magee-shortcodes'),
|
3772 |
+
)
|
3773 |
),
|
3774 |
'columns' => array(
|
3775 |
'type' => 'select',
|
3777 |
'desc' => __( 'Choose column number for portfolio list.', 'magee-shortcodes'),
|
3778 |
'std' => '3',
|
3779 |
'options' => array(
|
3780 |
+
'2' => __( '2 Columns', 'magee-shortcodes'),
|
3781 |
+
'3' => __( '3 Columns', 'magee-shortcodes'),
|
3782 |
+
'4' => __( '4 Columns', 'magee-shortcodes'),
|
3783 |
+
'5' => __( '5 Columns', 'magee-shortcodes'),
|
3784 |
+
'6' => __( '6 Columns', 'magee-shortcodes')
|
3785 |
+
)
|
3786 |
),
|
3787 |
|
3788 |
|
3791 |
'label' => __( 'Overlay Content', 'magee-shortcodes'),
|
3792 |
'desc' => __( 'Select overlay content for portfolios.', 'magee-shortcodes'),
|
3793 |
'options' => array(
|
3794 |
+
'1' => __( 'Button', 'magee-shortcodes'),
|
3795 |
+
'2' => __( 'Title', 'magee-shortcodes'),
|
3796 |
+
'3' => __( 'Title & Tags', 'magee-shortcodes'),
|
3797 |
+
'4' => __( 'Link Light', 'magee-shortcodes'),
|
3798 |
+
'5' => __( 'Image Zoom In', 'magee-shortcodes'),
|
3799 |
+
)
|
3800 |
|
3801 |
),
|
3802 |
|
3814 |
),
|
3815 |
|
3816 |
'orientation' => array(
|
3817 |
+
'std' => 'top',
|
3818 |
'type' => 'select',
|
3819 |
'label' => __( 'Orientation', 'magee-shortcodes'),
|
3820 |
'desc' => __( 'Select orientation for overlay animation.', 'magee-shortcodes'),
|
3821 |
'options' => array(
|
3822 |
+
'top' => __('Top','magee-shortcodes'),
|
3823 |
+
'left' => __('Left','magee-shortcodes'),
|
3824 |
+
'right' => __('Right','magee-shortcodes'),
|
3825 |
+
'bottom' => __('Bottom','magee-shortcodes')
|
3826 |
+
)
|
3827 |
|
3828 |
),
|
3829 |
'page_nav' => array(
|
3833 |
'options' => $reverse_choices
|
3834 |
),
|
3835 |
'filter' => array(
|
3836 |
+
'std' => 'yes',
|
3837 |
'type' => 'choose',
|
3838 |
'label' => __( 'Filter', 'magee-shortcodes'),
|
3839 |
'desc' => __( 'Choose to display filter for portolio list.', 'magee-shortcodes'),
|
3852 |
'options' => $magee_portfolios_cats
|
3853 |
),
|
3854 |
'align' => array(
|
3855 |
+
'std' => 'left',
|
3856 |
'type' => 'select',
|
3857 |
'label' => __( 'Info Align','magee-shortcodes'),
|
3858 |
'desc' => __( 'Set align of portoflio info.','magee-shortcodes'),
|
3859 |
'options' => array(
|
3860 |
+
'left' => __( 'Left','magee-shortcodes'),
|
3861 |
+
'center' => __( 'Center','magee-shortcodes'),
|
3862 |
+
'right' => __( 'Right','magee-shortcodes'),
|
3863 |
+
)
|
3864 |
),
|
3865 |
'display_title' => array(
|
3866 |
+
'std'=> 'yes',
|
3867 |
'type' => 'choose',
|
3868 |
'label' => __( 'Display Title','magee-shortcodes'),
|
3869 |
'desc' => __( 'Choose to display the portfolio title below the featured image','magee-shortcodes'),
|
3870 |
'options' => $choices
|
3871 |
),
|
3872 |
'display_tags' => array(
|
3873 |
+
'std'=> 'no',
|
3874 |
'type' => 'choose',
|
3875 |
'label' => __( 'Display Tags','magee-shortcodes'),
|
3876 |
'desc' => __( 'Choose to show portfolio tags.','magee-shortcodes'),
|
3877 |
'options' => $choices
|
3878 |
),
|
3879 |
'display_excerpt' => array(
|
3880 |
+
'std'=> 'no',
|
3881 |
'type' => 'choose',
|
3882 |
'label' => __( 'Display Excerpt','magee-shortcodes'),
|
3883 |
'desc' => __( 'Choose to display the portfolio excerpt.','magee-shortcodes'),
|
3890 |
'desc' => __( 'Insert the number of words/characters you want to show in the excerpt.','magee-shortcodes')
|
3891 |
),
|
3892 |
'strip' => array(
|
3893 |
+
'std'=> 'yes',
|
3894 |
'type' => 'choose',
|
3895 |
'label' => __( 'Strip HTML','magee-shortcodes'),
|
3896 |
'desc' => __( 'Strip HTML from the post excerpt','magee-shortcodes'),
|
3942 |
'desc' => __( 'Set number of pricing boxes.', 'magee-shortcodes'),
|
3943 |
'std' => '3',
|
3944 |
'options' => array(
|
3945 |
+
'1' => __('1 Columns','magee-shortcodes'),
|
3946 |
'2' => __('2 Columns','magee-shortcodes'),
|
3947 |
'3' => __('3 Columns','magee-shortcodes'),
|
3948 |
'4' => __('4 Columns','magee-shortcodes'),
|
4008 |
'desc' => __( 'Inser text for button of pricing box.', 'magee-shortcodes'),
|
4009 |
),
|
4010 |
'buttonlink' => array(
|
4011 |
+
'std' => '#',
|
4012 |
'type' => 'text',
|
4013 |
'label' => __( 'Button Link', 'magee-shortcodes'),
|
4014 |
'desc' => __( 'Inser link for button of pricing box, eg: http://example.com.', 'magee-shortcodes'),
|
4015 |
),
|
4016 |
|
4017 |
'linktarget' => array(
|
4018 |
+
'std' => '_blank',
|
4019 |
'type' => 'choose',
|
4020 |
'label' => __( 'Link Target', 'magee-shortcodes'),
|
4021 |
'desc' => __( '_self = open in same window, _blank = open in new window.', 'magee-shortcodes'),
|
4022 |
+
'std' => '_blank',
|
4023 |
'options' => array(
|
4024 |
'_blank' => __('_blank','magee-shortcodes'),
|
4025 |
'_self' => __('_self','magee-shortcodes')
|
4185 |
|
4186 |
),
|
4187 |
'rounded' => array(
|
4188 |
+
'std' => 'on',
|
4189 |
'type' => 'select',
|
4190 |
'label' => __( 'Rounded', 'magee-shortcodes' ),
|
4191 |
'desc' => __( 'Choose to set the progress bar as rounded.', 'magee-shortcodes' ),
|
4196 |
|
4197 |
),
|
4198 |
'number' => array(
|
4199 |
+
'std'=> 'yes',
|
4200 |
'type' => 'choose',
|
4201 |
'label' => __( 'Display Number', 'magee-shortcodes' ),
|
4202 |
'desc' => __( 'Choose to diplay number for progress bar.', 'magee-shortcodes' ),
|
4238 |
'std' => ''
|
4239 |
),
|
4240 |
'textposition' => array(
|
4241 |
+
'std' => 1,
|
4242 |
'type' => 'select',
|
4243 |
'label' => __( 'Text Position', 'magee-shortcodes' ),
|
4244 |
'desc' => __( 'Choose text position for progress bar.', 'magee-shortcodes' ),
|
4351 |
'options' => $icons
|
4352 |
),
|
4353 |
'content' => array(
|
4354 |
+
'std' => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt.',
|
4355 |
'type' => 'textarea',
|
4356 |
'label' => __( 'Content', 'magee-shortcodes' ),
|
4357 |
'desc' => __( 'Insert content for promo box.', 'magee-shortcodes' ),
|
4398 |
'desc' => '',
|
4399 |
),
|
4400 |
'content' => array(
|
4401 |
+
'std' => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.',
|
4402 |
'type' => 'textarea',
|
4403 |
'label' => __( 'Content', 'magee-shortcodes'),
|
4404 |
'desc' => __( 'Insert content for pullquote.', 'magee-shortcodes')
|
4933 |
)
|
4934 |
),
|
4935 |
'iconlink' => array(
|
4936 |
+
'std' => '#',
|
4937 |
'type' => 'text',
|
4938 |
'label' => __( 'Icon Link URL', 'magee-shortcodes' ),
|
4939 |
'desc' => __( 'Add the icon\'s url eg: http://example.com.', 'magee-shortcodes' ),
|
4940 |
),
|
4941 |
'icontarget' => array(
|
4942 |
+
'std' => '_blank',
|
4943 |
'type' => 'choose',
|
4944 |
'label' => __( 'Icon Target', 'magee-shortcodes' ),
|
4945 |
'desc' => __( '_self = open in same window <br />_blank = open in new window.', 'magee-shortcodes' ),
|
5201 |
),
|
5202 |
),
|
5203 |
'content' => array(
|
5204 |
+
'std' => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt.',
|
5205 |
'type' => 'textarea',
|
5206 |
'label' => __( 'Testimonial Content', 'magee-shortcodes' ),
|
5207 |
'desc' => __( 'Insert content for testimonial.', 'magee-shortcodes' )
|
5345 |
),
|
5346 |
|
5347 |
'content' => array(
|
5348 |
+
'std' => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt.',
|
5349 |
'type' => 'textarea',
|
5350 |
'label' => __( 'Content', 'magee-shortcodes' ),
|
5351 |
'desc' => __( 'Insert the text that will activate the tooltip hover', 'magee-shortcodes' )
|
Magee.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Magee Shortcodes
|
4 |
Plugin URI: https://www.hoosoft.com/plugins/magee-shortcodes/
|
5 |
Description: Magee Shortcodes is WordPress plugin that provides a pack of shortcodes. With Magee Shortcodes, you can easily create accordion, buttons, boxes, columns, social and much more. They allow you to create so many different page layouts. You could quickly and easily built your own custom pages using all the various shortcodes that Magee Shortcodes includes.
|
6 |
-
Version: 2.0.
|
7 |
Author: Hoosoft
|
8 |
Author URI: http://www.hoosoft.com
|
9 |
Text Domain: magee-shortcodes
|
@@ -17,7 +17,7 @@ if ( ! defined( 'ABSPATH' ) ) return;
|
|
17 |
define( 'MAGEE_SHORTCODES_INCLUDE_DIR', MAGEE_SHORTCODES_DIR_PATH.'Includes' );
|
18 |
define( 'MAGEE_SHORTCODES_URL', plugin_dir_url( __FILE__ ));
|
19 |
|
20 |
-
define( 'MAGEE_SHORTCODES_VER', '2.0.
|
21 |
|
22 |
define('MAGEE_PORTFOLIO', 'magee_portfolio' );
|
23 |
define( 'MAGEE_DATE_FORMAT','');
|
3 |
Plugin Name: Magee Shortcodes
|
4 |
Plugin URI: https://www.hoosoft.com/plugins/magee-shortcodes/
|
5 |
Description: Magee Shortcodes is WordPress plugin that provides a pack of shortcodes. With Magee Shortcodes, you can easily create accordion, buttons, boxes, columns, social and much more. They allow you to create so many different page layouts. You could quickly and easily built your own custom pages using all the various shortcodes that Magee Shortcodes includes.
|
6 |
+
Version: 2.0.3
|
7 |
Author: Hoosoft
|
8 |
Author URI: http://www.hoosoft.com
|
9 |
Text Domain: magee-shortcodes
|
17 |
define( 'MAGEE_SHORTCODES_INCLUDE_DIR', MAGEE_SHORTCODES_DIR_PATH.'Includes' );
|
18 |
define( 'MAGEE_SHORTCODES_URL', plugin_dir_url( __FILE__ ));
|
19 |
|
20 |
+
define( 'MAGEE_SHORTCODES_VER', '2.0.3' );
|
21 |
|
22 |
define('MAGEE_PORTFOLIO', 'magee_portfolio' );
|
23 |
define( 'MAGEE_DATE_FORMAT','');
|
assets/css/admin.css
CHANGED
@@ -77,7 +77,6 @@ a.magee_shortcode_item:hover {
|
|
77 |
a.magee_shortcode_item i {
|
78 |
margin-right:2px;
|
79 |
}
|
80 |
-
|
81 |
.magee_shortcodes_list .col-md-2 {
|
82 |
padding:5px;
|
83 |
}
|
@@ -415,11 +414,13 @@ a.magee_shortcode_item {
|
|
415 |
}
|
416 |
|
417 |
a.magee_shortcode_item i {
|
418 |
-
width:
|
419 |
text-align: center;
|
420 |
-
background-color: #eee;
|
421 |
line-height: 40px;
|
422 |
-
|
|
|
|
|
|
|
423 |
}
|
424 |
|
425 |
a.magee_shortcode_item:hover i {
|
77 |
a.magee_shortcode_item i {
|
78 |
margin-right:2px;
|
79 |
}
|
|
|
80 |
.magee_shortcodes_list .col-md-2 {
|
81 |
padding:5px;
|
82 |
}
|
414 |
}
|
415 |
|
416 |
a.magee_shortcode_item i {
|
417 |
+
width: 30px;
|
418 |
text-align: center;
|
|
|
419 |
line-height: 40px;
|
420 |
+
}
|
421 |
+
a.magee_shortcode_item i.fa-spinner{
|
422 |
+
float: right;
|
423 |
+
width: auto;
|
424 |
}
|
425 |
|
426 |
a.magee_shortcode_item:hover i {
|
assets/css/admin.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.magee_shortcodes_list li{display:inline-block}#TB_window #TB_ajaxContent .magee_shortcodes_list li:before{content:"";margin:0}.col-md-2{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:20%;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.clear{clear:both}#TB_ajaxContent{max-width:100%;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}#magee-shortcodes-settings{display:none}#magee-shortcodes-settings .form-row .field,#magee-shortcodes-settings .form-row .label{width:100%}.xdsoft_datetimepicker{z-index:999999!important}.magee-form-desc{display:block;font-size:14px;color:#939292;font-style:italic;line-height:21px}.magee_shortcodes_container .iconpicker i{padding:6px;cursor:pointer}img.uploaded-image{display:none}.magee-form-textarea{width:100%}a.magee_shortcode_item{text-decoration:none;background-color:#f5f5f5;color:#222;padding:5px;display:block;text-align:left;border-radius:2px}a.magee_shortcode_item:hover{background-color:#222;color:#fff}a.magee_shortcode_item i{margin-right:2px}.magee_shortcodes_list .col-md-2{padding:5px}#TB_ajaxWindowTitle{font-size:16px;line-height:50px}#TB_title{height:40px;padding-left:10px}.tb-close-icon{height:50px;width:50px;background-color:#0085ba;color:#fff}#TB_closeWindowButton:hover .tb-close-icon{color:#fff}.tb-close-icon:before{line-height:50px}.shortcode-name{background-color:#f5f5f5;padding:10px;font-size:18px;display:none}.param-item{margin-bottom:20px;padding:0 3px 20px 4px;border-bottom:1px dashed #ccc}.magee-form-label-title{display:block;font-weight:700;font-size:1.1em;margin-bottom:.3em}.magee-form-desc{display:block;margin-bottom:.4em}.magee-form-text{display:block}.param-item input[type=number],.param-item input[type=text],.param-item select,.param-item textarea{width:100%;height:auto;padding:10px}.TB_footer{background-color:#f5f5f5;position:relative}.magee-shortcode-return{position:absolute;top:-50px;right:20px;z-index:100;width:30px;height:30px;background:#1f0707;opacity:.5;display:none;text-align:center;line-height:30px;color:#fff;border-radius:100%;border:2px solid #fff;box-shadow:1px 1px 5px #000;cursor:pointer}.magee-shortcode-actions{padding:20px 30px 20px;text-align:right;border-top:1px solid #ccc}input#magee_icon{display:none}.magee_shortcodes_container .iconpicker{border:1px solid #ccc;border-width:1px 0 0 1px;display:none}.magee_shortcodes_container .iconpicker .fa{width:15px;line-height:15px;height:15px;text-align:center;border-width:0 1px 1px 0}.magee_shortcodes_container .iconpicker .fa.selected{background-color:#f9e4dc;transform:scale(1.2)}#magee_slider_slides .slider-img img{max-width:100%}#magee_slider_slides .gallery-img,#magee_slider_slides .slider-img{float:right;max-height:200px;overflow:hidden;width:200px}#magee_slider_slides .ui-state-default{background-color:#f5f5f5!important;border:1px solid #ccc;color:#555;font-weight:400;background-color:#fff;border:1px solid #ddd;border-radius:4px;box-shadow:0 1px rgba(0,0,0,.05);position:relative}#magee_slider_slides .widget-content label{float:left;width:300px;clear:left;padding-bottom:20px}#magee_slider_slides .widget-content label span{margin-bottom:5px}#magee_slider_slides div.option-item input[type=text]{background:url("../images/input-bg.png") repeat-x scroll center top #fff;border-radius:3px;box-shadow:0 1px rgba(0,0,0,.05);width:250px}#magee_slider_slides div.option-item textarea{background:url("../images/input-bg.png") repeat-x scroll center top #fff;border-radius:3px;box-shadow:0 1px rgba(0,0,0,.05);padding:4px 5px;width:450px}#magee_slider_slides .del-item{background:url("../images/delete.png") no-repeat scroll center top rgba(0,0,0,0);cursor:pointer;display:block;float:right;height:24px;overflow:hidden;position:absolute;right:10px;text-indent:-1e+8px;top:45px;width:24px}#magee_slider_slides .sort-item{background:url("../images/move.png") no-repeat scroll center top rgba(0,0,0,0);cursor:move;display:block;float:right;height:24px;overflow:hidden;position:absolute;right:10px;text-indent:-1e+8px;top:10px;width:24px}.section-accordion-wrap h3{position:relative}.section-accordion-wrap h3 span.fa{position:absolute;right:0;top:-2px}.column-shortcode-inner{background-color:#f5f5f5;padding:20px;border:1px solid #999;margin-bottom:20px}a#child-shortcode-remove{color:#aaa;text-decoration:none;display:block;text-align:center;padding:10px;border:1px solid #aaa;background-color:#fff;font-size:1.2em;text-transform:capitalize}a#child-shortcode-removehover{border-color:#666;color:#666}a.child-shortcode-add{color:#999;text-decoration:none;display:block;text-align:center;padding:12px;border:1px solid #999;background-color:#f5f5f5;font-size:1.5em;text-transform:capitalize}a.child-shortcode-addhover{background-color:#fff;border-color:#666;color:#666}.probar{width:100%;height:10px;border:2px solid #ccc;border-radius:10px;position:relative;box-shadow:0 0 5px rgba(0,0,0,.2) inset}.probar-control{position:absolute;width:14px;height:14px;border-radius:14px;margin-left:-9px;border:2px solid #3f91b1;top:-4px;background-color:#fff;cursor:pointer}.choose-show-param{display:none}#TB_Title a{float:right;font-size:13px;margin:0 20px 0 5px}.probar{width:600px;float:left;margin-top:12px;margin-right:10px}.param-item input[type=number].magee-form-number{width:100px}.choose-show{background-color:#ccf7d5;color:#17a534;font-weight:700}.choose-show-param{border:1px solid #ddd;line-height:28px;padding:6px 15px;font-size:14px;cursor:pointer}.icon-val{margin-bottom:10px;overflow:hidden}.param-item .icon-val input[type=text]{width:640px;float:left}.param-item .icon-val button{margin-top:8px;margin-left:10px}.param-item .icon-val button{margin-bottom:7px}#custom_icon{margin-left:0}.magee_shortcodes_list .col-md-2{width:25%}a.magee_shortcode_item{padding:0;line-height:40px;font-size:14px}a.magee_shortcode_item i{width:40px;text-align:center;background-color:#eee;line-height:40px;margin-right:10px}a.magee_shortcode_item:hover i{background-color:#0073aa}#TB_title{background-color:#222;color:#fff;height:50px;line-height:50px;position:relative}a#TB_closeWindowButton{top:-10px;right:-30px;margin:0;padding:0}a#TB_closeWindowButton .tb-close-icon{top:0;right:0;background-color:#0073aa;color:#fff;height:50px}a#TB_closeWindowButton:hover{text-decoration:none}a#TB_closeWindowButton .tb-close-icon:before{line-height:50px}#TB_ajaxWindowTitle{line-height:inherit}#TB_title a{float:right;font-size:13px;margin:0 30px 0 0;background-color:#fff;color:#222;text-decoration:none;line-height:30px;margin-top:10px;padding:0 10px}#TB_ajaxWindowTitle a.link-forum{margin-right:10px}.param-item{background-color:#eee;padding:20px;border:0}.shortcode-name{background-color:#eee}.probar{margin-bottom:10px}.magee-shortcode-actions a{margin-left:5px!important}#preview{background-color:#fff;margin:0 -15px;padding:20px;position:relative;z-index:1000}.magee_shortcodes_container .wp-picker-container input[type=text].wp-color-picker{width:696px;display:block!important}.wp-picker-holder{width:260px}.magee_shortcodes_list .col-md-2{margin-bottom:0}.magee-preview-delete{position:absolute;top:20px;right:10px;font-size:20px;cursor:pointer}.preview-title{border-bottom:1px solid #ccc;margin-bottom:10px}.example-list{background-color:#eee;margin-bottom:10px;padding:20px;font-size:14px}.example-link{text-decoration:none}.magee_shortcodes_container .wp-picker-container input[type=text].wp-color-picker{max-width:100%}.magee_shortcodes_container .wp-picker-container{width:100%}.container{max-width:100%}.magee-upload-container img{max-width:100%}.magee_shortcodes_container .iconpicker{border:1px solid #ddd;background-color:#fff}.magee_shortcodes_container .iconpicker .fa{width:15px;line-height:15px;border-width:0;font-size:14px;padding:8px;position:relative;transition:.1s}.magee_shortcodes_container .iconpicker i:hover{-webkit-transform:scale(1.8);transform:scale(1.8)}.link-forum{position:absolute;top:0;right:50px}.link-doc{position:absolute;top:0;right:110px}.magee-add-point{background-color:#fffbe5;color:#b5a96c;padding:10px;border-left:3px solid #a59649;margin-bottom:10px}.container{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container{max-width:540px}}@media (min-width:768px){.container{max-width:720px}}@media (min-width:992px){.container{max-width:960px}}@media (min-width:1200px){.container{max-width:1140px}}.container-fluid{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-1_7,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-1_5,.col-md-1_7,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px;webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.col{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-ms-flex-order:-1;order:-1}.order-last{-ms-flex-order:13;order:13}.order-0{-ms-flex-order:0;order:0}.order-1{-ms-flex-order:1;order:1}.order-2{-ms-flex-order:2;order:2}.order-3{-ms-flex-order:3;order:3}.order-4{-ms-flex-order:4;order:4}.order-5{-ms-flex-order:5;order:5}.order-6{-ms-flex-order:6;order:6}.order-7{-ms-flex-order:7;order:7}.order-8{-ms-flex-order:8;order:8}.order-9{-ms-flex-order:9;order:9}.order-10{-ms-flex-order:10;order:10}.order-11{-ms-flex-order:11;order:11}.order-12{-ms-flex-order:12;order:12}.offset-1{margin-left:8.333333%}.offset-2{margin-left:16.666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.333333%}.offset-5{margin-left:41.666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.333333%}.offset-8{margin-left:66.666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.333333%}.offset-11{margin-left:91.666667%}@media (min-width:576px){.col-sm{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-sm-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-sm-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-sm-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-sm-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-sm-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-sm-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-sm-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-sm-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-ms-flex-order:-1;order:-1}.order-sm-last{-ms-flex-order:13;order:13}.order-sm-0{-ms-flex-order:0;order:0}.order-sm-1{-ms-flex-order:1;order:1}.order-sm-2{-ms-flex-order:2;order:2}.order-sm-3{-ms-flex-order:3;order:3}.order-sm-4{-ms-flex-order:4;order:4}.order-sm-5{-ms-flex-order:5;order:5}.order-sm-6{-ms-flex-order:6;order:6}.order-sm-7{-ms-flex-order:7;order:7}.order-sm-8{-ms-flex-order:8;order:8}.order-sm-9{-ms-flex-order:9;order:9}.order-sm-10{-ms-flex-order:10;order:10}.order-sm-11{-ms-flex-order:11;order:11}.order-sm-12{-ms-flex-order:12;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.333333%}.offset-sm-2{margin-left:16.666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.333333%}.offset-sm-5{margin-left:41.666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.333333%}.offset-sm-8{margin-left:66.666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.333333%}.offset-sm-11{margin-left:91.666667%}}@media (min-width:768px){.col-md{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-md-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-md-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-md-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-md-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-md-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-md-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-md-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-md-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-md-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.col-md-1_5{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.col-md-1_7{-ms-flex:0 0 14.2857%;flex:0 0 14.2857%;max-width:14.2857%}.order-md-first{-ms-flex-order:-1;order:-1}.order-md-last{-ms-flex-order:13;order:13}.order-md-0{-ms-flex-order:0;order:0}.order-md-1{-ms-flex-order:1;order:1}.order-md-2{-ms-flex-order:2;order:2}.order-md-3{-ms-flex-order:3;order:3}.order-md-4{-ms-flex-order:4;order:4}.order-md-5{-ms-flex-order:5;order:5}.order-md-6{-ms-flex-order:6;order:6}.order-md-7{-ms-flex-order:7;order:7}.order-md-8{-ms-flex-order:8;order:8}.order-md-9{-ms-flex-order:9;order:9}.order-md-10{-ms-flex-order:10;order:10}.order-md-11{-ms-flex-order:11;order:11}.order-md-12{-ms-flex-order:12;order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.333333%}.offset-md-2{margin-left:16.666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.333333%}.offset-md-5{margin-left:41.666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.333333%}.offset-md-8{margin-left:66.666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.333333%}.offset-md-11{margin-left:91.666667%}}@media (min-width:992px){.col-lg{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-lg-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-lg-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-lg-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-lg-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-lg-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-lg-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-lg-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-lg-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.col-lg-1_7{-ms-flex:0 0 14.2857%;flex:0 0 14.2857%;max-width:14.2857%}.order-lg-first{-ms-flex-order:-1;order:-1}.order-lg-last{-ms-flex-order:13;order:13}.order-lg-0{-ms-flex-order:0;order:0}.order-lg-1{-ms-flex-order:1;order:1}.order-lg-2{-ms-flex-order:2;order:2}.order-lg-3{-ms-flex-order:3;order:3}.order-lg-4{-ms-flex-order:4;order:4}.order-lg-5{-ms-flex-order:5;order:5}.order-lg-6{-ms-flex-order:6;order:6}.order-lg-7{-ms-flex-order:7;order:7}.order-lg-8{-ms-flex-order:8;order:8}.order-lg-9{-ms-flex-order:9;order:9}.order-lg-10{-ms-flex-order:10;order:10}.order-lg-11{-ms-flex-order:11;order:11}.order-lg-12{-ms-flex-order:12;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.333333%}.offset-lg-2{margin-left:16.666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.333333%}.offset-lg-5{margin-left:41.666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.333333%}.offset-lg-8{margin-left:66.666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.333333%}.offset-lg-11{margin-left:91.666667%}}@media (min-width:1200px){.col-xl{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-xl-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-xl-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-xl-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-xl-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-xl-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-xl-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-xl-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-xl-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-ms-flex-order:-1;order:-1}.order-xl-last{-ms-flex-order:13;order:13}.order-xl-0{-ms-flex-order:0;order:0}.order-xl-1{-ms-flex-order:1;order:1}.order-xl-2{-ms-flex-order:2;order:2}.order-xl-3{-ms-flex-order:3;order:3}.order-xl-4{-ms-flex-order:4;order:4}.order-xl-5{-ms-flex-order:5;order:5}.order-xl-6{-ms-flex-order:6;order:6}.order-xl-7{-ms-flex-order:7;order:7}.order-xl-8{-ms-flex-order:8;order:8}.order-xl-9{-ms-flex-order:9;order:9}.order-xl-10{-ms-flex-order:10;order:10}.order-xl-11{-ms-flex-order:11;order:11}.order-xl-12{-ms-flex-order:12;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.333333%}.offset-xl-2{margin-left:16.666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.333333%}.offset-xl-5{margin-left:41.666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.333333%}.offset-xl-8{margin-left:66.666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.333333%}.offset-xl-11{margin-left:91.666667%}}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role=button]{cursor:pointer}
|
1 |
+
.magee_shortcodes_list li{display:inline-block}#TB_window #TB_ajaxContent .magee_shortcodes_list li:before{content:"";margin:0}.col-md-2{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:20%;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.clear{clear:both}#TB_ajaxContent{max-width:100%;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}#magee-shortcodes-settings{display:none}#magee-shortcodes-settings .form-row .field,#magee-shortcodes-settings .form-row .label{width:100%}.xdsoft_datetimepicker{z-index:999999!important}.magee-form-desc{display:block;font-size:14px;color:#939292;font-style:italic;line-height:21px}.magee_shortcodes_container .iconpicker i{padding:6px;cursor:pointer}img.uploaded-image{display:none}.magee-form-textarea{width:100%}a.magee_shortcode_item{text-decoration:none;background-color:#f5f5f5;color:#222;padding:5px;display:block;text-align:left;border-radius:2px}a.magee_shortcode_item:hover{background-color:#222;color:#fff}a.magee_shortcode_item i{margin-right:2px}.magee_shortcodes_list .col-md-2{padding:5px}#TB_ajaxWindowTitle{font-size:16px;line-height:50px}#TB_title{height:40px;padding-left:10px}.tb-close-icon{height:50px;width:50px;background-color:#0085ba;color:#fff}#TB_closeWindowButton:hover .tb-close-icon{color:#fff}.tb-close-icon:before{line-height:50px}.shortcode-name{background-color:#f5f5f5;padding:10px;font-size:18px;display:none}.param-item{margin-bottom:20px;padding:0 3px 20px 4px;border-bottom:1px dashed #ccc}.magee-form-label-title{display:block;font-weight:700;font-size:1.1em;margin-bottom:.3em}.magee-form-desc{display:block;margin-bottom:.4em}.magee-form-text{display:block}.param-item input[type=number],.param-item input[type=text],.param-item select,.param-item textarea{width:100%;height:auto;padding:10px}.TB_footer{background-color:#f5f5f5;position:relative}.magee-shortcode-return{position:absolute;top:-50px;right:20px;z-index:100;width:30px;height:30px;background:#1f0707;opacity:.5;display:none;text-align:center;line-height:30px;color:#fff;border-radius:100%;border:2px solid #fff;box-shadow:1px 1px 5px #000;cursor:pointer}.magee-shortcode-actions{padding:20px 30px 20px;text-align:right;border-top:1px solid #ccc}input#magee_icon{display:none}.magee_shortcodes_container .iconpicker{border:1px solid #ccc;border-width:1px 0 0 1px;display:none}.magee_shortcodes_container .iconpicker .fa{width:15px;line-height:15px;height:15px;text-align:center;border-width:0 1px 1px 0}.magee_shortcodes_container .iconpicker .fa.selected{background-color:#f9e4dc;transform:scale(1.2)}#magee_slider_slides .slider-img img{max-width:100%}#magee_slider_slides .gallery-img,#magee_slider_slides .slider-img{float:right;max-height:200px;overflow:hidden;width:200px}#magee_slider_slides .ui-state-default{background-color:#f5f5f5!important;border:1px solid #ccc;color:#555;font-weight:400;background-color:#fff;border:1px solid #ddd;border-radius:4px;box-shadow:0 1px rgba(0,0,0,.05);position:relative}#magee_slider_slides .widget-content label{float:left;width:300px;clear:left;padding-bottom:20px}#magee_slider_slides .widget-content label span{margin-bottom:5px}#magee_slider_slides div.option-item input[type=text]{background:url("../images/input-bg.png") repeat-x scroll center top #fff;border-radius:3px;box-shadow:0 1px rgba(0,0,0,.05);width:250px}#magee_slider_slides div.option-item textarea{background:url("../images/input-bg.png") repeat-x scroll center top #fff;border-radius:3px;box-shadow:0 1px rgba(0,0,0,.05);padding:4px 5px;width:450px}#magee_slider_slides .del-item{background:url("../images/delete.png") no-repeat scroll center top rgba(0,0,0,0);cursor:pointer;display:block;float:right;height:24px;overflow:hidden;position:absolute;right:10px;text-indent:-1e+8px;top:45px;width:24px}#magee_slider_slides .sort-item{background:url("../images/move.png") no-repeat scroll center top rgba(0,0,0,0);cursor:move;display:block;float:right;height:24px;overflow:hidden;position:absolute;right:10px;text-indent:-1e+8px;top:10px;width:24px}.section-accordion-wrap h3{position:relative}.section-accordion-wrap h3 span.fa{position:absolute;right:0;top:-2px}.column-shortcode-inner{background-color:#f5f5f5;padding:20px;border:1px solid #999;margin-bottom:20px}a#child-shortcode-remove{color:#aaa;text-decoration:none;display:block;text-align:center;padding:10px;border:1px solid #aaa;background-color:#fff;font-size:1.2em;text-transform:capitalize}a#child-shortcode-removehover{border-color:#666;color:#666}a.child-shortcode-add{color:#999;text-decoration:none;display:block;text-align:center;padding:12px;border:1px solid #999;background-color:#f5f5f5;font-size:1.5em;text-transform:capitalize}a.child-shortcode-addhover{background-color:#fff;border-color:#666;color:#666}.probar{width:100%;height:10px;border:2px solid #ccc;border-radius:10px;position:relative;box-shadow:0 0 5px rgba(0,0,0,.2) inset}.probar-control{position:absolute;width:14px;height:14px;border-radius:14px;margin-left:-9px;border:2px solid #3f91b1;top:-4px;background-color:#fff;cursor:pointer}.choose-show-param{display:none}#TB_Title a{float:right;font-size:13px;margin:0 20px 0 5px}.probar{width:600px;float:left;margin-top:12px;margin-right:10px}.param-item input[type=number].magee-form-number{width:100px}.choose-show{background-color:#ccf7d5;color:#17a534;font-weight:700}.choose-show-param{border:1px solid #ddd;line-height:28px;padding:6px 15px;font-size:14px;cursor:pointer}.icon-val{margin-bottom:10px;overflow:hidden}.param-item .icon-val input[type=text]{width:640px;float:left}.param-item .icon-val button{margin-top:8px;margin-left:10px}.param-item .icon-val button{margin-bottom:7px}#custom_icon{margin-left:0}.magee_shortcodes_list .col-md-2{width:25%}a.magee_shortcode_item{padding:0;line-height:40px;font-size:14px}a.magee_shortcode_item i{width:30px;text-align:center;line-height:40px}a.magee_shortcode_item i.fa-spinner{float:right;width:auto}a.magee_shortcode_item:hover i{background-color:#0073aa}#TB_title{background-color:#222;color:#fff;height:50px;line-height:50px;position:relative}a#TB_closeWindowButton{top:-10px;right:-30px;margin:0;padding:0}a#TB_closeWindowButton .tb-close-icon{top:0;right:0;background-color:#0073aa;color:#fff;height:50px}a#TB_closeWindowButton:hover{text-decoration:none}a#TB_closeWindowButton .tb-close-icon:before{line-height:50px}#TB_ajaxWindowTitle{line-height:inherit}#TB_title a{float:right;font-size:13px;margin:0 30px 0 0;background-color:#fff;color:#222;text-decoration:none;line-height:30px;margin-top:10px;padding:0 10px}#TB_ajaxWindowTitle a.link-forum{margin-right:10px}.param-item{background-color:#eee;padding:20px;border:0}.shortcode-name{background-color:#eee}.probar{margin-bottom:10px}.magee-shortcode-actions a{margin-left:5px!important}#preview{background-color:#fff;margin:0 -15px;padding:20px;position:relative;z-index:1000}.magee_shortcodes_container .wp-picker-container input[type=text].wp-color-picker{width:696px;display:block!important}.wp-picker-holder{width:260px}.magee_shortcodes_list .col-md-2{margin-bottom:0}.magee-preview-delete{position:absolute;top:20px;right:10px;font-size:20px;cursor:pointer}.preview-title{border-bottom:1px solid #ccc;margin-bottom:10px}.example-list{background-color:#eee;margin-bottom:10px;padding:20px;font-size:14px}.example-link{text-decoration:none}.magee_shortcodes_container .wp-picker-container input[type=text].wp-color-picker{max-width:100%}.magee_shortcodes_container .wp-picker-container{width:100%}.container{max-width:100%}.magee-upload-container img{max-width:100%}.magee_shortcodes_container .iconpicker{border:1px solid #ddd;background-color:#fff}.magee_shortcodes_container .iconpicker .fa{width:15px;line-height:15px;border-width:0;font-size:14px;padding:8px;position:relative;transition:.1s}.magee_shortcodes_container .iconpicker i:hover{-webkit-transform:scale(1.8);transform:scale(1.8)}.link-forum{position:absolute;top:0;right:50px}.link-doc{position:absolute;top:0;right:110px}.magee-add-point{background-color:#fffbe5;color:#b5a96c;padding:10px;border-left:3px solid #a59649;margin-bottom:10px}.container{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container{max-width:540px}}@media (min-width:768px){.container{max-width:720px}}@media (min-width:992px){.container{max-width:960px}}@media (min-width:1200px){.container{max-width:1140px}}.container-fluid{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-1_7,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-1_5,.col-md-1_7,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px;webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.col{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-ms-flex-order:-1;order:-1}.order-last{-ms-flex-order:13;order:13}.order-0{-ms-flex-order:0;order:0}.order-1{-ms-flex-order:1;order:1}.order-2{-ms-flex-order:2;order:2}.order-3{-ms-flex-order:3;order:3}.order-4{-ms-flex-order:4;order:4}.order-5{-ms-flex-order:5;order:5}.order-6{-ms-flex-order:6;order:6}.order-7{-ms-flex-order:7;order:7}.order-8{-ms-flex-order:8;order:8}.order-9{-ms-flex-order:9;order:9}.order-10{-ms-flex-order:10;order:10}.order-11{-ms-flex-order:11;order:11}.order-12{-ms-flex-order:12;order:12}.offset-1{margin-left:8.333333%}.offset-2{margin-left:16.666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.333333%}.offset-5{margin-left:41.666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.333333%}.offset-8{margin-left:66.666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.333333%}.offset-11{margin-left:91.666667%}@media (min-width:576px){.col-sm{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-sm-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-sm-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-sm-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-sm-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-sm-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-sm-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-sm-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-sm-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-ms-flex-order:-1;order:-1}.order-sm-last{-ms-flex-order:13;order:13}.order-sm-0{-ms-flex-order:0;order:0}.order-sm-1{-ms-flex-order:1;order:1}.order-sm-2{-ms-flex-order:2;order:2}.order-sm-3{-ms-flex-order:3;order:3}.order-sm-4{-ms-flex-order:4;order:4}.order-sm-5{-ms-flex-order:5;order:5}.order-sm-6{-ms-flex-order:6;order:6}.order-sm-7{-ms-flex-order:7;order:7}.order-sm-8{-ms-flex-order:8;order:8}.order-sm-9{-ms-flex-order:9;order:9}.order-sm-10{-ms-flex-order:10;order:10}.order-sm-11{-ms-flex-order:11;order:11}.order-sm-12{-ms-flex-order:12;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.333333%}.offset-sm-2{margin-left:16.666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.333333%}.offset-sm-5{margin-left:41.666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.333333%}.offset-sm-8{margin-left:66.666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.333333%}.offset-sm-11{margin-left:91.666667%}}@media (min-width:768px){.col-md{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-md-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-md-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-md-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-md-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-md-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-md-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-md-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-md-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-md-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.col-md-1_5{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.col-md-1_7{-ms-flex:0 0 14.2857%;flex:0 0 14.2857%;max-width:14.2857%}.order-md-first{-ms-flex-order:-1;order:-1}.order-md-last{-ms-flex-order:13;order:13}.order-md-0{-ms-flex-order:0;order:0}.order-md-1{-ms-flex-order:1;order:1}.order-md-2{-ms-flex-order:2;order:2}.order-md-3{-ms-flex-order:3;order:3}.order-md-4{-ms-flex-order:4;order:4}.order-md-5{-ms-flex-order:5;order:5}.order-md-6{-ms-flex-order:6;order:6}.order-md-7{-ms-flex-order:7;order:7}.order-md-8{-ms-flex-order:8;order:8}.order-md-9{-ms-flex-order:9;order:9}.order-md-10{-ms-flex-order:10;order:10}.order-md-11{-ms-flex-order:11;order:11}.order-md-12{-ms-flex-order:12;order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.333333%}.offset-md-2{margin-left:16.666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.333333%}.offset-md-5{margin-left:41.666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.333333%}.offset-md-8{margin-left:66.666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.333333%}.offset-md-11{margin-left:91.666667%}}@media (min-width:992px){.col-lg{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-lg-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-lg-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-lg-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-lg-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-lg-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-lg-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-lg-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-lg-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.col-lg-1_7{-ms-flex:0 0 14.2857%;flex:0 0 14.2857%;max-width:14.2857%}.order-lg-first{-ms-flex-order:-1;order:-1}.order-lg-last{-ms-flex-order:13;order:13}.order-lg-0{-ms-flex-order:0;order:0}.order-lg-1{-ms-flex-order:1;order:1}.order-lg-2{-ms-flex-order:2;order:2}.order-lg-3{-ms-flex-order:3;order:3}.order-lg-4{-ms-flex-order:4;order:4}.order-lg-5{-ms-flex-order:5;order:5}.order-lg-6{-ms-flex-order:6;order:6}.order-lg-7{-ms-flex-order:7;order:7}.order-lg-8{-ms-flex-order:8;order:8}.order-lg-9{-ms-flex-order:9;order:9}.order-lg-10{-ms-flex-order:10;order:10}.order-lg-11{-ms-flex-order:11;order:11}.order-lg-12{-ms-flex-order:12;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.333333%}.offset-lg-2{margin-left:16.666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.333333%}.offset-lg-5{margin-left:41.666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.333333%}.offset-lg-8{margin-left:66.666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.333333%}.offset-lg-11{margin-left:91.666667%}}@media (min-width:1200px){.col-xl{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-xl-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-xl-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-xl-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-xl-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-xl-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-xl-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-xl-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-xl-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-ms-flex-order:-1;order:-1}.order-xl-last{-ms-flex-order:13;order:13}.order-xl-0{-ms-flex-order:0;order:0}.order-xl-1{-ms-flex-order:1;order:1}.order-xl-2{-ms-flex-order:2;order:2}.order-xl-3{-ms-flex-order:3;order:3}.order-xl-4{-ms-flex-order:4;order:4}.order-xl-5{-ms-flex-order:5;order:5}.order-xl-6{-ms-flex-order:6;order:6}.order-xl-7{-ms-flex-order:7;order:7}.order-xl-8{-ms-flex-order:8;order:8}.order-xl-9{-ms-flex-order:9;order:9}.order-xl-10{-ms-flex-order:10;order:10}.order-xl-11{-ms-flex-order:11;order:11}.order-xl-12{-ms-flex-order:12;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.333333%}.offset-xl-2{margin-left:16.666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.333333%}.offset-xl-5{margin-left:41.666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.333333%}.offset-xl-8{margin-left:66.666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.333333%}.offset-xl-11{margin-left:91.666667%}}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role=button]{cursor:pointer}
|
assets/css/shortcodes.css
CHANGED
@@ -1703,10 +1703,6 @@ a.accordion-toggle:hover{
|
|
1703 |
color: #fff;
|
1704 |
}
|
1705 |
|
1706 |
-
.portfolio-list-filter .portfolio-box-wrap {
|
1707 |
-
display:none;
|
1708 |
-
}
|
1709 |
-
|
1710 |
/*
|
1711 |
* 5.0 Tabs
|
1712 |
*/
|
@@ -1896,7 +1892,6 @@ a.accordion-toggle:hover{
|
|
1896 |
.magee-panel h3.panel-title {
|
1897 |
margin-top: 0;
|
1898 |
margin-bottom: 0;
|
1899 |
-
color: inherit;
|
1900 |
font-size: 16px;
|
1901 |
}
|
1902 |
|
@@ -1970,7 +1965,9 @@ button.close:active {
|
|
1970 |
/*
|
1971 |
* 7.0 Pricing
|
1972 |
*/
|
1973 |
-
|
|
|
|
|
1974 |
.magee-pricing-box {
|
1975 |
box-shadow: 1px 1px 5px 0 rgba(0,0,0,.1);
|
1976 |
overflow: hidden;
|
@@ -2093,6 +2090,7 @@ button.close:active {
|
|
2093 |
}
|
2094 |
.magee-pricing-box-wrap {
|
2095 |
text-align: center;
|
|
|
2096 |
}
|
2097 |
.magee-pricing-table.no-margin .pricing-list li + li {
|
2098 |
border-top: 1px solid #ddd;
|
@@ -2156,7 +2154,7 @@ button.close:active {
|
|
2156 |
|
2157 |
.person-social li {
|
2158 |
display: inline-block;
|
2159 |
-
margin: 0
|
2160 |
}
|
2161 |
|
2162 |
.person-social li a {
|
@@ -2201,7 +2199,7 @@ button.close:active {
|
|
2201 |
}
|
2202 |
|
2203 |
.person-box-horizontal li {
|
2204 |
-
margin: 0
|
2205 |
}
|
2206 |
|
2207 |
.person-box-horizontal .person-vcard .person-title:after {
|
@@ -2214,8 +2212,138 @@ button.close:active {
|
|
2214 |
|
2215 |
.magee-popover{
|
2216 |
cursor:pointer;
|
2217 |
-
|
2218 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2219 |
/*
|
2220 |
* 9.0 Testimonial
|
2221 |
*/
|
@@ -2543,7 +2671,7 @@ button.close:active {
|
|
2543 |
height: 0;
|
2544 |
border-bottom: 1px dashed #e5e5e5;
|
2545 |
top: 50px;
|
2546 |
-
left:
|
2547 |
}
|
2548 |
|
2549 |
.magee-process-steps.box-lg > ul > li:before {
|
@@ -2583,7 +2711,7 @@ button.close:active {
|
|
2583 |
height: 100%;
|
2584 |
border-right: 1px dashed #e5e5e5;
|
2585 |
left: 50px;
|
2586 |
-
top:
|
2587 |
}
|
2588 |
|
2589 |
.magee-process-steps.process-steps-vertical.box-lg > ul > li:before {
|
@@ -4475,9 +4603,8 @@ ol.multi-carousel-indicators {
|
|
4475 |
.portfolio-carousel .portfolio-box-wrap {
|
4476 |
padding-bottom: 0;
|
4477 |
}
|
4478 |
-
|
4479 |
-
|
4480 |
-
display:none;
|
4481 |
}
|
4482 |
|
4483 |
.portfolio-list-wrap.full-width .portfolio-list-items {
|
@@ -4511,7 +4638,43 @@ ol.multi-carousel-indicators {
|
|
4511 |
margin: 5px 0 0;
|
4512 |
}
|
4513 |
|
|
|
|
|
|
|
|
|
|
|
|
|
4514 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4515 |
/*
|
4516 |
* 22.0 Blog List
|
4517 |
*/
|
@@ -5990,6 +6153,23 @@ ol.multi-carousel-indicators {
|
|
5990 |
.magee-blockquote blockquote footer a{
|
5991 |
color: #78C0A8;
|
5992 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5993 |
/*
|
5994 |
* tooltip
|
5995 |
*/
|
1703 |
color: #fff;
|
1704 |
}
|
1705 |
|
|
|
|
|
|
|
|
|
1706 |
/*
|
1707 |
* 5.0 Tabs
|
1708 |
*/
|
1892 |
.magee-panel h3.panel-title {
|
1893 |
margin-top: 0;
|
1894 |
margin-bottom: 0;
|
|
|
1895 |
font-size: 16px;
|
1896 |
}
|
1897 |
|
1965 |
/*
|
1966 |
* 7.0 Pricing
|
1967 |
*/
|
1968 |
+
.magee-pricing-table{
|
1969 |
+
float: left;
|
1970 |
+
}
|
1971 |
.magee-pricing-box {
|
1972 |
box-shadow: 1px 1px 5px 0 rgba(0,0,0,.1);
|
1973 |
overflow: hidden;
|
2090 |
}
|
2091 |
.magee-pricing-box-wrap {
|
2092 |
text-align: center;
|
2093 |
+
width: 100%;
|
2094 |
}
|
2095 |
.magee-pricing-table.no-margin .pricing-list li + li {
|
2096 |
border-top: 1px solid #ddd;
|
2154 |
|
2155 |
.person-social li {
|
2156 |
display: inline-block;
|
2157 |
+
margin: 0;
|
2158 |
}
|
2159 |
|
2160 |
.person-social li a {
|
2199 |
}
|
2200 |
|
2201 |
.person-box-horizontal li {
|
2202 |
+
margin: 0;
|
2203 |
}
|
2204 |
|
2205 |
.person-box-horizontal .person-vcard .person-title:after {
|
2212 |
|
2213 |
.magee-popover{
|
2214 |
cursor:pointer;
|
2215 |
+
}
|
2216 |
+
.popover {
|
2217 |
+
position: absolute;
|
2218 |
+
top: 0;
|
2219 |
+
left: 0;
|
2220 |
+
z-index: 1060;
|
2221 |
+
display: none;
|
2222 |
+
max-width: 276px;
|
2223 |
+
padding: 1px;
|
2224 |
+
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
2225 |
+
font-style: normal;
|
2226 |
+
font-weight: normal;
|
2227 |
+
letter-spacing: normal;
|
2228 |
+
line-break: auto;
|
2229 |
+
line-height: 1.42857143;
|
2230 |
+
text-align: left;
|
2231 |
+
text-align: start;
|
2232 |
+
text-decoration: none;
|
2233 |
+
text-shadow: none;
|
2234 |
+
text-transform: none;
|
2235 |
+
white-space: normal;
|
2236 |
+
word-break: normal;
|
2237 |
+
word-spacing: normal;
|
2238 |
+
word-wrap: normal;
|
2239 |
+
font-size: 14px;
|
2240 |
+
background-color: #fff;
|
2241 |
+
background-clip: padding-box;
|
2242 |
+
border: 1px solid #ccc;
|
2243 |
+
border: 1px solid rgba(0, 0, 0, 0.2);
|
2244 |
+
border-radius: 6px;
|
2245 |
+
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
2246 |
+
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
2247 |
+
}
|
2248 |
+
.popover.top {
|
2249 |
+
margin-top: -10px;
|
2250 |
+
}
|
2251 |
+
.popover.right {
|
2252 |
+
margin-left: 10px;
|
2253 |
+
}
|
2254 |
+
.popover.bottom {
|
2255 |
+
margin-top: 10px;
|
2256 |
+
}
|
2257 |
+
.popover.left {
|
2258 |
+
margin-left: -10px;
|
2259 |
+
}
|
2260 |
+
.popover-title {
|
2261 |
+
margin: 0;
|
2262 |
+
padding: 8px 14px;
|
2263 |
+
font-size: 14px;
|
2264 |
+
background-color: #f7f7f7;
|
2265 |
+
border-bottom: 1px solid #ebebeb;
|
2266 |
+
border-radius: 5px 5px 0 0;
|
2267 |
+
}
|
2268 |
+
.popover-content {
|
2269 |
+
padding: 9px 14px;
|
2270 |
+
}
|
2271 |
+
.popover > .arrow,
|
2272 |
+
.popover > .arrow:after {
|
2273 |
+
position: absolute;
|
2274 |
+
display: block;
|
2275 |
+
width: 0;
|
2276 |
+
height: 0;
|
2277 |
+
border-color: transparent;
|
2278 |
+
border-style: solid;
|
2279 |
+
}
|
2280 |
+
.popover > .arrow {
|
2281 |
+
border-width: 11px;
|
2282 |
+
}
|
2283 |
+
.popover > .arrow:after {
|
2284 |
+
border-width: 10px;
|
2285 |
+
content: "";
|
2286 |
+
}
|
2287 |
+
.popover.top > .arrow {
|
2288 |
+
left: 50%;
|
2289 |
+
margin-left: -11px;
|
2290 |
+
border-bottom-width: 0;
|
2291 |
+
border-top-color: #999999;
|
2292 |
+
border-top-color: rgba(0, 0, 0, 0.25);
|
2293 |
+
bottom: -11px;
|
2294 |
+
}
|
2295 |
+
.popover.top > .arrow:after {
|
2296 |
+
content: " ";
|
2297 |
+
bottom: 1px;
|
2298 |
+
margin-left: -10px;
|
2299 |
+
border-bottom-width: 0;
|
2300 |
+
border-top-color: #fff;
|
2301 |
+
}
|
2302 |
+
.popover.right > .arrow {
|
2303 |
+
top: 50%;
|
2304 |
+
left: -11px;
|
2305 |
+
margin-top: -11px;
|
2306 |
+
border-left-width: 0;
|
2307 |
+
border-right-color: #999999;
|
2308 |
+
border-right-color: rgba(0, 0, 0, 0.25);
|
2309 |
+
}
|
2310 |
+
.popover.right > .arrow:after {
|
2311 |
+
content: " ";
|
2312 |
+
left: 1px;
|
2313 |
+
bottom: -10px;
|
2314 |
+
border-left-width: 0;
|
2315 |
+
border-right-color: #fff;
|
2316 |
+
}
|
2317 |
+
.popover.bottom > .arrow {
|
2318 |
+
left: 50%;
|
2319 |
+
margin-left: -11px;
|
2320 |
+
border-top-width: 0;
|
2321 |
+
border-bottom-color: #999999;
|
2322 |
+
border-bottom-color: rgba(0, 0, 0, 0.25);
|
2323 |
+
top: -11px;
|
2324 |
+
}
|
2325 |
+
.popover.bottom > .arrow:after {
|
2326 |
+
content: " ";
|
2327 |
+
top: 1px;
|
2328 |
+
margin-left: -10px;
|
2329 |
+
border-top-width: 0;
|
2330 |
+
border-bottom-color: #fff;
|
2331 |
+
}
|
2332 |
+
.popover.left > .arrow {
|
2333 |
+
top: 50%;
|
2334 |
+
right: -11px;
|
2335 |
+
margin-top: -11px;
|
2336 |
+
border-right-width: 0;
|
2337 |
+
border-left-color: #999999;
|
2338 |
+
border-left-color: rgba(0, 0, 0, 0.25);
|
2339 |
+
}
|
2340 |
+
.popover.left > .arrow:after {
|
2341 |
+
content: " ";
|
2342 |
+
right: 1px;
|
2343 |
+
border-right-width: 0;
|
2344 |
+
border-left-color: #fff;
|
2345 |
+
bottom: -10px;
|
2346 |
+
}
|
2347 |
/*
|
2348 |
* 9.0 Testimonial
|
2349 |
*/
|
2671 |
height: 0;
|
2672 |
border-bottom: 1px dashed #e5e5e5;
|
2673 |
top: 50px;
|
2674 |
+
left: 2.5em;
|
2675 |
}
|
2676 |
|
2677 |
.magee-process-steps.box-lg > ul > li:before {
|
2711 |
height: 100%;
|
2712 |
border-right: 1px dashed #e5e5e5;
|
2713 |
left: 50px;
|
2714 |
+
top: 80px;
|
2715 |
}
|
2716 |
|
2717 |
.magee-process-steps.process-steps-vertical.box-lg > ul > li:before {
|
4603 |
.portfolio-carousel .portfolio-box-wrap {
|
4604 |
padding-bottom: 0;
|
4605 |
}
|
4606 |
+
.portfolio-list-filter ul{
|
4607 |
+
list-style: none;
|
|
|
4608 |
}
|
4609 |
|
4610 |
.portfolio-list-wrap.full-width .portfolio-list-items {
|
4638 |
margin: 5px 0 0;
|
4639 |
}
|
4640 |
|
4641 |
+
@media screen and (min-width: 768px) {
|
4642 |
+
.portfolio-grid .portfolio-box-wrap {
|
4643 |
+
width: 50%;
|
4644 |
+
}
|
4645 |
+
|
4646 |
+
}
|
4647 |
|
4648 |
+
@media screen and (min-width: 992px) {
|
4649 |
+
.portfolio-grid .portfolio-box-wrap {
|
4650 |
+
width: 33.33333333%;
|
4651 |
+
}
|
4652 |
+
.portfolio-grid .portfolio-box-wrap.wrap-2x {
|
4653 |
+
width: 66.66666666%;
|
4654 |
+
}
|
4655 |
+
}
|
4656 |
+
|
4657 |
+
@media screen and (min-width: 1200px) {
|
4658 |
+
.portfolio-grid .portfolio-box-wrap {
|
4659 |
+
width: 20%;
|
4660 |
+
}
|
4661 |
+
.portfolio-grid .portfolio-box-wrap.wrap-2x {
|
4662 |
+
width: 40%;
|
4663 |
+
}
|
4664 |
+
}
|
4665 |
+
|
4666 |
+
.portfolio-list-filter li a {
|
4667 |
+
display: block;
|
4668 |
+
padding: 5px 15px;
|
4669 |
+
border: 1px solid #aaa;
|
4670 |
+
}
|
4671 |
+
|
4672 |
+
.portfolio-list-filter li.active a,
|
4673 |
+
.portfolio-list-filter li a:hover {
|
4674 |
+
background-color: #cabe8b;
|
4675 |
+
color: #fff;
|
4676 |
+
border-color: #cabe8b;
|
4677 |
+
}
|
4678 |
/*
|
4679 |
* 22.0 Blog List
|
4680 |
*/
|
6153 |
.magee-blockquote blockquote footer a{
|
6154 |
color: #78C0A8;
|
6155 |
}
|
6156 |
+
/*
|
6157 |
+
* pullquote
|
6158 |
+
*/
|
6159 |
+
blockquote.magee-pullquote{
|
6160 |
+
padding: 10px 20px;
|
6161 |
+
margin: 0 0 20px;
|
6162 |
+
font-size: 17.5px;
|
6163 |
+
border-left: 5px solid #eee;
|
6164 |
+
}
|
6165 |
+
blockquote.magee-pullquote.blockquote-reverse{
|
6166 |
+
padding-right: 15px;
|
6167 |
+
padding-left: 0;
|
6168 |
+
border-right: 5px solid #eeeeee;
|
6169 |
+
border-left: 0;
|
6170 |
+
text-align: right;
|
6171 |
+
}
|
6172 |
+
|
6173 |
/*
|
6174 |
* tooltip
|
6175 |
*/
|
assets/css/shortcodes.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.container{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container{max-width:540px}}@media (min-width:768px){.container{max-width:720px}}@media (min-width:992px){.container{max-width:960px}}@media (min-width:1200px){.container{max-width:1140px}}.container-fluid{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-1_7,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-1_5,.col-md-1_7,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px;webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.col{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-ms-flex-order:-1;order:-1}.order-last{-ms-flex-order:13;order:13}.order-0{-ms-flex-order:0;order:0}.order-1{-ms-flex-order:1;order:1}.order-2{-ms-flex-order:2;order:2}.order-3{-ms-flex-order:3;order:3}.order-4{-ms-flex-order:4;order:4}.order-5{-ms-flex-order:5;order:5}.order-6{-ms-flex-order:6;order:6}.order-7{-ms-flex-order:7;order:7}.order-8{-ms-flex-order:8;order:8}.order-9{-ms-flex-order:9;order:9}.order-10{-ms-flex-order:10;order:10}.order-11{-ms-flex-order:11;order:11}.order-12{-ms-flex-order:12;order:12}.offset-1{margin-left:8.333333%}.offset-2{margin-left:16.666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.333333%}.offset-5{margin-left:41.666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.333333%}.offset-8{margin-left:66.666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.333333%}.offset-11{margin-left:91.666667%}@media (min-width:576px){.col-sm{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-sm-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-sm-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-sm-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-sm-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-sm-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-sm-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-sm-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-sm-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-ms-flex-order:-1;order:-1}.order-sm-last{-ms-flex-order:13;order:13}.order-sm-0{-ms-flex-order:0;order:0}.order-sm-1{-ms-flex-order:1;order:1}.order-sm-2{-ms-flex-order:2;order:2}.order-sm-3{-ms-flex-order:3;order:3}.order-sm-4{-ms-flex-order:4;order:4}.order-sm-5{-ms-flex-order:5;order:5}.order-sm-6{-ms-flex-order:6;order:6}.order-sm-7{-ms-flex-order:7;order:7}.order-sm-8{-ms-flex-order:8;order:8}.order-sm-9{-ms-flex-order:9;order:9}.order-sm-10{-ms-flex-order:10;order:10}.order-sm-11{-ms-flex-order:11;order:11}.order-sm-12{-ms-flex-order:12;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.333333%}.offset-sm-2{margin-left:16.666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.333333%}.offset-sm-5{margin-left:41.666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.333333%}.offset-sm-8{margin-left:66.666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.333333%}.offset-sm-11{margin-left:91.666667%}}@media (min-width:768px){.col-md{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-md-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-md-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-md-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-md-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-md-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-md-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-md-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-md-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-md-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.col-md-1_5{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.col-md-1_7{-ms-flex:0 0 14.2857%;flex:0 0 14.2857%;max-width:14.2857%}.order-md-first{-ms-flex-order:-1;order:-1}.order-md-last{-ms-flex-order:13;order:13}.order-md-0{-ms-flex-order:0;order:0}.order-md-1{-ms-flex-order:1;order:1}.order-md-2{-ms-flex-order:2;order:2}.order-md-3{-ms-flex-order:3;order:3}.order-md-4{-ms-flex-order:4;order:4}.order-md-5{-ms-flex-order:5;order:5}.order-md-6{-ms-flex-order:6;order:6}.order-md-7{-ms-flex-order:7;order:7}.order-md-8{-ms-flex-order:8;order:8}.order-md-9{-ms-flex-order:9;order:9}.order-md-10{-ms-flex-order:10;order:10}.order-md-11{-ms-flex-order:11;order:11}.order-md-12{-ms-flex-order:12;order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.333333%}.offset-md-2{margin-left:16.666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.333333%}.offset-md-5{margin-left:41.666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.333333%}.offset-md-8{margin-left:66.666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.333333%}.offset-md-11{margin-left:91.666667%}}@media (min-width:992px){.col-lg{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-lg-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-lg-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-lg-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-lg-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-lg-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-lg-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-lg-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-lg-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.col-lg-1_7{-ms-flex:0 0 14.2857%;flex:0 0 14.2857%;max-width:14.2857%}.order-lg-first{-ms-flex-order:-1;order:-1}.order-lg-last{-ms-flex-order:13;order:13}.order-lg-0{-ms-flex-order:0;order:0}.order-lg-1{-ms-flex-order:1;order:1}.order-lg-2{-ms-flex-order:2;order:2}.order-lg-3{-ms-flex-order:3;order:3}.order-lg-4{-ms-flex-order:4;order:4}.order-lg-5{-ms-flex-order:5;order:5}.order-lg-6{-ms-flex-order:6;order:6}.order-lg-7{-ms-flex-order:7;order:7}.order-lg-8{-ms-flex-order:8;order:8}.order-lg-9{-ms-flex-order:9;order:9}.order-lg-10{-ms-flex-order:10;order:10}.order-lg-11{-ms-flex-order:11;order:11}.order-lg-12{-ms-flex-order:12;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.333333%}.offset-lg-2{margin-left:16.666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.333333%}.offset-lg-5{margin-left:41.666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.333333%}.offset-lg-8{margin-left:66.666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.333333%}.offset-lg-11{margin-left:91.666667%}}@media (min-width:1200px){.col-xl{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-xl-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-xl-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-xl-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-xl-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-xl-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-xl-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-xl-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-xl-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-ms-flex-order:-1;order:-1}.order-xl-last{-ms-flex-order:13;order:13}.order-xl-0{-ms-flex-order:0;order:0}.order-xl-1{-ms-flex-order:1;order:1}.order-xl-2{-ms-flex-order:2;order:2}.order-xl-3{-ms-flex-order:3;order:3}.order-xl-4{-ms-flex-order:4;order:4}.order-xl-5{-ms-flex-order:5;order:5}.order-xl-6{-ms-flex-order:6;order:6}.order-xl-7{-ms-flex-order:7;order:7}.order-xl-8{-ms-flex-order:8;order:8}.order-xl-9{-ms-flex-order:9;order:9}.order-xl-10{-ms-flex-order:10;order:10}.order-xl-11{-ms-flex-order:11;order:11}.order-xl-12{-ms-flex-order:12;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.333333%}.offset-xl-2{margin-left:16.666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.333333%}.offset-xl-5{margin-left:41.666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.333333%}.offset-xl-8{margin-left:66.666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.333333%}.offset-xl-11{margin-left:91.666667%}}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role=button]{cursor:pointer}.border-right{border-right:1px solid #f5f5f5}.text-light{color:#fff}.text-light,.text-light a,.text-light h1,.text-light h2,.text-light h3,.text-light h4,.text-light h5,.text-light h6,a.text-light,h1.text-light,h2.text-light,h3.text-light,h4.text-light,h5.text-light,h6.text-light{color:#fff!important}.text-light a:hover,a.text-light:hover{color:rgba(255,255,255,.7)!important}.text-primary{color:#fdd200}.text-dark{color:#222}.magee-dropcap{position:relative;float:left;top:.05em;margin-right:.15em;padding:0;line-height:.8;font-size:5em;text-transform:uppercase;color:#fdd200}.dropcap-boxed{padding:.05em .1em .1em .1em;background-color:#fdd200;color:#fff}.magee-highlight{background-color:#fdd200;color:#fff;padding:0 .3em}.tooltip-text{color:#fdd200}.tooltip-text:hover{cursor:pointer}.box-shadow{box-shadow:1px 1px 5px 0 rgba(0,0,0,.1)}.magee-btn-wrapper{display:inline}a.btn-normal:hover,a.magee-btn-normal:hover{text-decoration:none}.btn-normal,.magee-btn-normal{position:relative;display:inline-block;text-align:center;vertical-align:middle;white-space:nowrap;cursor:pointer;color:#fff;background-color:#fdd200;line-height:1;padding:.9em 1.6em;border-radius:0;border-width:0;border-style:solid;text-decoration:none}.btn-normal,.magee-btn-normal:active,.magee-btn-normal:focus,.magee-btn-normal:hover{background-color:#f6cc00;color:#fff}.btn-md{font-size:1em}.btn-large,.btn-lg{font-size:1.2em}.btn-sm,.btn-small{font-size:.8em}.btn-xl{font-size:1.5em}.btn-square{border-radius:0}.btn-rounded{border-radius:5px}.btn-full-rounded{border-radius:50px}.btn-text-shadow{text-shadow:0 1px rgba(0,0,0,.4)}.btn-gradient{background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.05)),to(rgba(0,0,0,.1)));background-image:-webkit-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,.1));background-image:-moz-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,.1));background-image:-ms-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,.1));background-image:-o-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,.1));background-image:linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,.1))}.btn-2d{text-shadow:0 1px rgba(0,0,0,.4);box-shadow:0 0 0 1px rgba(0,0,0,.2) inset;background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.05)),to(rgba(0,0,0,.1)));background-image:-webkit-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,.1));background-image:-moz-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,.1));background-image:-ms-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,.1));background-image:-o-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,.1));background-image:linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,.1))}.btn-3d{text-shadow:0 1px rgba(0,0,0,.4);box-shadow:0 3px 0 0 #c5a300}.magee-btn-normal.btn-light{background-color:#fff;color:#000}.magee-btn-normal.btn-dark{background-color:#000;color:#fff}.magee-btn-normal.btn-line{background-color:transparent;color:#fdd200;border:2px solid #fdd200}.magee-btn-normal.btn-line:active,.magee-btn-normal.btn-line:focus,.magee-btn-normal.btn-line:hover{background-color:rgba(255,255,255,.1)}.magee-btn-normal.btn-line.btn-light{border-color:#fff;color:#fff;background-color:transparent}.magee-btn-normal.btn-line.btn-light:active,.magee-btn-normal.btn-line.btn-light:focus,.magee-btn-normal.btn-line.btn-light:hover{background-color:rgba(255,255,255,.1)}.magee-btn-normal.btn-line.btn-dark{border-color:#000;color:#000;background-color:transparent}.magee-btn-normal.btn-line.btn-dark:active,.magee-btn-normal.btn-line.btn-dark:focus,.magee-btn-normal.btn-line.btn-dark:hover{background-color:#000;color:#fff}.btn-block{display:block}.magee-feature-box h3{font-size:18px}.magee-feature-box .feature-content p{margin-bottom:.8em}.magee-feature-box.style1,.magee-feature-box.style4{text-align:center}.magee-feature-box.style2 h3,.magee-feature-box.style3 h3{text-align:left}.magee-feature-box.style2 .feature-content,.magee-feature-box.style3 .feature-content{text-align:right}.magee-feature-box.style2 .feature-content p,.magee-feature-box.style3 .feature-content p{text-align:left}.magee-feature-box.style2.reverse h3,.magee-feature-box.style3.reverse h3{text-align:right}.magee-feature-box.style2.reverse .feature-content,.magee-feature-box.style3.reverse .feature-content{text-align:left}.magee-feature-box.style2.reverse .feature-content p,.magee-feature-box.style3.reverse .feature-content p{text-align:right}.magee-feature-box img{display:block}.magee-feature-box.style1 .icon-box,.magee-feature-box.style1 img,.magee-feature-box.style4 .icon-box,.magee-feature-box.style4 img{margin:0 auto}.magee-feature-box.style1 .icon-box .fa-fw,.magee-feature-box.style4 .icon-box .fa-fw{margin-left:-.142857em}.magee-feature-box.style2{position:relative;min-height:80px;padding-left:95px}.magee-feature-box.style2 .icon-box,.magee-feature-box.style2 img{position:absolute;top:0;left:0}.magee-feature-box.style2.reverse{padding-left:0;padding-right:95px}.magee-feature-box.style2.reverse .icon-box,.magee-feature-box.style2.reverse img{right:0;left:auto}.magee-feature-box.style3 .icon-box,.magee-feature-box.style3 img{float:left;margin-bottom:10px}.magee-feature-box.style3.reverse .icon-box,.magee-feature-box.style3.reverse img{float:right}.magee-feature-box.style3 h3{clear:none;float:left;margin:0 0 0 15px;line-height:80px}.magee-feature-box.style3.reverse h3{float:right;margin-right:15px;margin-left:0}.magee-feature-box.style3 p{clear:left}.magee-feature-box.style3.reverse p{clear:right}.magee-feature-box.style4{background-color:#f5f5f5;position:relative;padding:50px 10px 10px;margin-top:40px}.magee-feature-box.style4 .icon-box,.magee-feature-box.style4 img{position:absolute;top:-40px;left:50%;margin-left:-40px;background-color:#fff}.icon-box{text-align:center;color:#222;font-size:40px;line-height:1.5em;width:1.5em;height:1.5em}.icon-box.primary{color:#fdd200}.icon-box.light{color:#fff}.icon-box.icon-xl{font-size:80px}.icon-box.icon-lg{font-size:60px}.icon-box.icon-sm{font-size:20px}.icon-circle{border-radius:50%;border-style:solid;border-width:2px;border-color:#222;background-color:rgba(0,0,0,0);line-height:2.5em;width:2.5em;height:2.5em}.collapse{display:none}.collapse.in{display:block}.magee-accordion .panel{border-radius:0}.magee-accordion .panel{border:none;box-shadow:none;border-bottom:1px solid #ddd}.magee-accordion.panel-group .panel-heading+.panel-collapse>.list-group,.magee-accordion.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:none}.magee-accordion .panel-heading{padding:10px}.magee-accordion .panel-heading i{color:#777;margin-right:.5em}.magee-accordion .panel-body{padding:15px 10px}.magee-accordion .panel-default>.panel-heading{background-color:transparent;border:none}.magee-accordion .panel-group .panel+.panel{margin-top:0}.magee-accordion .panel-heading{position:relative;border:none;border-radius:0}.magee-accordion h4.panel-title{margin-top:0;margin-bottom:0;color:inherit;font-size:16px}a.accordion-toggle,a.accordion-toggle:hover{text-decoration:none}.magee-accordion .magee-accordion.style3 .panel-heading .accordion-toggle:after{display:none}.magee-accordion.style3 .panel-heading .accordion-toggle.collapsed:after{display:none}.magee-accordion.style3 .panel-heading .accordion-toggle:after{display:none}.magee-accordion.accordion-spacing .panel-heading{padding:15px}.magee-accordion.accordion-spacing .panel-default>.panel-heading{background-color:#fdfdfd}.magee-accordion.accordion-spacing .panel-heading:hover{background:#f8f8f8}.magee-accordion.accordion-spacing .panel-body{padding:15px}.magee-accordion.accordion-spacing .panel-heading .accordion-toggle:after{top:15px;right:15px}.magee-accordion.accordion-spacing .panel{border:1px solid #ddd;overflow:hidden;margin-bottom:10px}.magee-accordion.accordion-spacing .panel:last-child{border-bottom-width:1px}.magee-accordion.accordion-spacing.panel-group .panel+.panel{margin-top:0}.magee-accordion .panel-heading .accordion-toggle:after{position:absolute;display:block;right:10px;top:10px;width:16px;height:16px;content:"";text-align:center;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");transform:rotate(180deg);background-repeat:no-repeat;transition:transform .2s ease-in-out}.magee-accordion .panel-heading .accordion-toggle.collapsed:after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23777777'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");transform:rotate(0)}.magee-accordion.style2 .panel-heading .accordion-toggle:after{background-image:url("data:image/svg+xml;charset=UTF-8,%3csvg aria-hidden='true' focusable='false' data-prefix='fal' data-icon='minus' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512' class='svg-inline--fa fa-minus fa-w-12 fa-3x'%3e%3cpath fill='currentColor' d='M376 232H8c-4.42 0-8 3.58-8 8v32c0 4.42 3.58 8 8 8h368c4.42 0 8-3.58 8-8v-32c0-4.42-3.58-8-8-8z' class=''%3e%3c/path%3e%3c/svg%3e")}.magee-accordion.style2 .panel-heading .accordion-toggle.collapsed:after{background-image:url("data:image/svg+xml;charset=UTF-8,%3csvg aria-hidden='true' focusable='false' data-prefix='fal' data-icon='plus' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512' class='svg-inline--fa fa-plus fa-w-12 fa-3x'%3e%3cpath fill='currentColor' d='M376 232H216V72c0-4.42-3.58-8-8-8h-32c-4.42 0-8 3.58-8 8v160H8c-4.42 0-8 3.58-8 8v32c0 4.42 3.58 8 8 8h160v160c0 4.42 3.58 8 8 8h32c4.42 0 8-3.58 8-8V280h160c4.42 0 8-3.58 8-8v-32c0-4.42-3.58-8-8-8z' class=''%3e%3c/path%3e%3c/svg%3e")}.magee-accordion.accordion-boxed .panel-heading{padding:15px}.magee-accordion.accordion-boxed .panel-default>.panel-heading{background-color:#fdfdfd}.magee-accordion.accordion-boxed .panel-heading:hover{background:#f8f8f8}.magee-accordion.accordion-boxed .panel-body{padding:15px}.magee-accordion.accordion-boxed .panel-heading .accordion-toggle:after{top:15px;right:15px}.magee-accordion.accordion-boxed .panel{border:1px solid #ddd;border-bottom-width:0;overflow:hidden}.magee-accordion.accordion-boxed .panel:last-child{border-bottom-width:1px}.magee-accordion.accordion-boxed.panel-group .panel+.panel{margin-top:0}.magee-accordion.panel-group .panel-heading+.panel-collapse>.list-group,.magee-accordion.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.magee-accordion.faq .panel-heading{padding:20px 10px}.magee-accordion.faq .panel-heading .accordion-toggle:after{top:20px}.magee-accordion.accordion-boxed.faq .panel-heading{padding:25px 15px}.magee-accordion.accordion-boxed.faq .panel-heading .accordion-toggle:after{top:25px}.faq-list-filter .faq-box-wrap{display:none;overflow:hidden;width:100%}.list-filter li a{display:block;padding:5px 10px;color:#777}.list-filter li a:hover,.list-filter li.active a{background-color:#f8f8f8}.portfolio-list-filter li a:hover,.portfolio-list-filter li.active a{background-color:#fdd200;color:#fff}.portfolio-list-filter .portfolio-box-wrap{display:none}.tab-title{font-size:16px;margin:0}.tab-title i{margin-right:5px;color:#777}.magee-tab-box ul{margin:0;width:100%}.tab-pane{padding:10px 0}.magee-tab-box.tab-line ul.list-inline{border-bottom:2px solid #eee}.magee-tab-box ul.list-inline>li{padding:0;margin-bottom:0}.magee-tab-box.tab-line ul>li>a{padding:15px 20px;display:block;margin-bottom:-2px;border-bottom:2px solid transparent}.magee-tab-box.tab-line ul>li.active>a{border-bottom-color:#fdd200}.magee-tab-box.tab-normal ul>li>a{padding:15px 20px;border-radius:0;margin-right:0}.magee-tab-box.tab-normal ul>li>a{background-color:#fdfdfd;border:1px solid #ddd}.magee-tab-box.tab-normal ul>li>a:hover{background-color:#f8f8f8}.magee-tab-box.tab-normal.tab-vertical ul.nav-stacked li{float:left}.magee-tab-box.tab-normal.tab-vertical ul.nav-stacked>li+li{margin-top:0;margin-left:0}.magee-tab-box.tab-normal .tab-pane{padding:20px;border:1px solid #ddd;border-top:0}@media screen and (min-width:768px){.magee-tab-box.tab-normal .nav-tabs.nav-justified>.active>a,.magee-tab-box.tab-normal .nav-tabs.nav-justified>.active>a:focus,.magee-tab-box.tab-normal .nav-tabs.nav-justified>.active>a:hover,.magee-tab-box.tab-normal ul>li+li>a,.magee-tab-box.tab-normal ul>li+li>a:hover{border-left:0}.magee-tab-box.tab-normal .nav-tabs.nav-justified>li:first-child>a,.magee-tab-box.tab-normal .nav-tabs.nav-justified>li:first-child>a:focus,.magee-tab-box.tab-normal .nav-tabs.nav-justified>li:first-child>a:hover{border-left:1px solid #ddd}.magee-tab-box.tab-normal ul>li.active>a{background-color:#fff;border-bottom-color:#fff}.magee-tab-box.tab-vertical ul{width:30%}.magee-tab-box.tab-normal.tab-vertical ul.nav-stacked li{float:none}.magee-tab-box.tab-normal.tab-vertical ul.nav-stacked>li+li{margin-top:0;margin-left:0}.magee-tab-box.tab-vertical .tab-content{width:70%}.magee-tab-box.tab-normal.tab-vertical ul>li+li{margin-top:0}.magee-tab-box.tab-normal.tab-vertical ul>li>a{border:1px solid #ddd;margin:0}.magee-tab-box.tab-normal.tab-vertical.tab-vertical-left ul>li>a{margin-right:-1px}.magee-tab-box.tab-normal.tab-vertical.tab-vertical-right ul>li>a{margin-left:-1px}.magee-tab-box.tab-normal.tab-vertical.tab-vertical-left ul>li+li>a{border-left:1px solid #ddd}.magee-tab-box.tab-normal.tab-vertical.tab-vertical-right ul>li+li>a{border-right:1px solid #ddd}.magee-tab-box.tab-normal.tab-vertical ul>li.active>a{border-bottom-color:#ddd}.magee-tab-box.tab-normal.tab-vertical.tab-vertical-left ul>li.active>a{border-right-color:#fff}.magee-tab-box.tab-normal.tab-vertical.tab-vertical-right ul>li.active>a{border-left-color:#fff}.magee-tab-box.tab-normal.tab-vertical .tab-pane{padding:20px;border:1px solid #ddd}}.magee-tab-box .nav-pills>li{padding-right:10px}.magee-tab-box .nav-pills>li:last-child{padding-right:0}.magee-tab-box .nav-pills>li>a{border-radius:0}.magee-tab-box .nav-pills>li.active>a,.magee-tab-box .nav-pills>li.active>a:focus,.magee-tab-box .nav-pills>li.active>a:hover,.magee-tab-box .nav-pills>li>a:hover{color:#777;background-color:#f8f8f8}.magee-panel{border-radius:0;box-shadow:none;overflow:hidden}.panel-primary{border-color:#fdd200}.panel-primary .panel-heading{background-color:#fdd200;border-color:#fdd200}.magee-panel h3.panel-title{margin-top:0;margin-bottom:0;color:inherit;font-size:16px}.magee-alert{background-color:#f5f5f5;border-radius:0;padding:25px 15px;border-style:solid;clear:both}.magee-alert i{-webkit-transform:scale(2) translateX(.3em);transform:scale(2) translateX(.3em);margin-right:2em;font-size:12px}.alert-dismissable .close,.alert-dismissible .close{top:0;right:0;opacity:1}.magee-alert .close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.7;background:0 0;-webkit-transition:all .2s ease;-moz-transition:all .2s ease;-o-transition:all .2s ease;transition:all .2s ease}.magee-alert .close:hover{color:inherit;-webkit-transform:rotate(90deg);transform:rotate(90deg);-webkit-transition:all .2s ease;-moz-transition:all .2s ease;-o-transition:all .2s ease;transition:all .2s ease}.magee-alert a.close,button.close{background:0 0;border:none;border-bottom:none;border-radius:0;padding:0;color:inherit}.magee-alert a.close:hover,button.close:hover{background:0 0}.magee-alert a.close:active,.magee-alert a.close:link,.magee-alert a.close:visited,button.close:active{padding:0;background:0 0;border:none;text-decoration:none}.magee-pricing-box{box-shadow:1px 1px 5px 0 rgba(0,0,0,.1);overflow:hidden}.magee-pricing-box .panel-heading{background-color:#fff;padding:20px;border-bottom:1px solid #ddd}.pricing-top-icon{font-size:72px;color:#fdd200;line-height:1;margin-bottom:10px}.magee-pricing-box .panel-title{font-size:24px}.magee-pricing-box.featured .panel-heading{background-color:#fdd200}.magee-pricing-box.featured .panel-title,.magee-pricing-box.featured .pricing-top-icon{color:#fff}.magee-pricing-box .panel-body{padding:0}.magee-pricing-box .pricing-tag{background-color:#f5f5f5;padding:20px;border-bottom:1px solid #ddd;font-size:3em}.pricing-tag .currency{color:#fdd200;font-size:.5em;position:relative;top:-1em}.pricing-tag .price{color:#fdd200}.pricing-tag .unit{font-size:.3em;position:relative;bottom:0;left:.5em}.magee-pricing-box .pricing-list{list-style-type:none;margin:0}.magee-pricing-box .pricing-list li{padding:20px 10px}.magee-pricing-box .panel-footer{padding:20px 10px;background-color:#f5f5f5}.pricing-box-flat{border:none;background-color:#f5f5f5;padding:20px;box-shadow:none}.pricing-box-flat.featured{background-color:#fdd200;color:#fff}.pricing-box-flat.featured .panel-title,.pricing-box-flat.featured .pricing-tag .currency,.pricing-box-flat.featured .pricing-tag .price,.pricing-box-flat.featured .pricing-top-icon{color:#fff}.pricing-box-flat .panel-footer,.pricing-box-flat .panel-heading,.pricing-box-flat .pricing-list li,.pricing-box-flat .pricing-tag{background-color:transparent;border:none;padding:5px}.pricing-box-flat.featured .magee-btn-normal{border:2px solid #fff;background-color:transparent!important}@media (min-width:992px){.standout{margin:-20px;position:relative;z-index:2}.magee-pricing-table.no-margin .magee-pricing-box-wrap+.magee-pricing-box-wrap .magee-pricing-box{border-left:none}.magee-pricing-box-wrap.no-padding{padding:0}}.magee-pricing-box-wrap{text-align:center}.magee-pricing-table.no-margin .pricing-list li+li{border-top:1px solid #ddd}.pricing-box-label .panel-footer,.pricing-box-label .panel-heading,.pricing-box-label .pricing-tag{visibility:hidden}.pricing-box-label{border-left-color:transparent;border-top-color:transparent;border-bottom-color:transparent;box-shadow:none;font-weight:700;border-radius:0!important}.pricing-box-label .pricing-list{padding-right:20px}.magee-person-box{text-align:center;margin:0 auto}.person-vcard .person-name{font-size:18px;margin:20px 0 10px}.person-vcard .person-title{font-size:14px;margin:0 0 10px}.person-vcard .person-title:after{display:block;margin:10px auto;width:80px;height:1px;background-color:#fdd200;content:""}.person-vcard .person-desc{margin:0 0 10px}.person-social{text-align:center;margin:0}.person-social li{display:inline-block;margin:0 5px}.person-social li a{font-size:16px;color:#595959;width:30px;height:30px;border-radius:4px;line-height:28px;display:inline-block;border:0}.person-social li a:hover{background:#fff}.person-social li a:hover{color:#fdd200}.person-social.boxed li a{color:#fff;background-color:#595959}.person-social.boxed li a:hover{color:#fff;background-color:#fdd200}.magee-person-box.person-box-horizontal{margin:0 -15px}.person-box-horizontal .person-vcard .person-name{margin-top:0}.person-box-horizontal .person-social{text-align:left}.person-box-horizontal li{margin:0 10px 0 0}.person-box-horizontal .person-vcard .person-title:after{margin-left:0}.magee-popover{cursor:pointer}.magee-testimonial-box{max-width:100%}.magee-testimonial-box .testimonial-content{margin-bottom:1em;position:relative}.magee-testimonial-box .testimonial-quote{position:relative;padding:10px 0 0 35px}.magee-testimonial-box .testimonial-quote:before{content:"\f10d";display:block;font:normal normal normal 30px/1 FontAwesome;line-height:1;position:absolute;left:0;top:0;opacity:.3}.magee-testimonial-box .testimonial-vcard.style1{display:table}.magee-testimonial-box .testimonial-vcard.style1 .testimonial-author,.magee-testimonial-box .testimonial-vcard.style1 .testimonial-avatar{display:table-cell;vertical-align:middle}.magee-testimonial-box .testimonial-avatar{padding-right:10px}.magee-testimonial-box .testimonial-vcard.style1 img{width:60px;height:60px}.magee-testimonial-box .testimonial-vcard:before{content:""!important}.magee-testimonial-box .testimonial-author .name{margin:0;color:inherit}.magee-testimonial-box .testimonial-vcard.style2 .testimonial-avatar{margin-bottom:1em;padding-right:0}.magee-testimonial-box .testimonial-vcard.style2 img{width:80px;height:80px;display:inline-block}.magee-testimonial-box.testimonial-boxed .testimonial-content{border:1px solid #ddd;background-color:#f5f5f5;padding:1.5em;margin-bottom:2em}.magee-testimonial-box.testimonial-boxed .testimonial-content:before{content:"";display:block;width:0;height:0;border:10px solid transparent;border-top-color:#f5f5f5;position:absolute;bottom:-20px;left:50px;z-index:3}.magee-testimonial-box.testimonial-boxed .testimonial-content:after{content:"";display:block;width:0;height:0;border:11px solid transparent;border-top-color:#ddd;position:absolute;bottom:-23px;left:49px;z-index:2}.magee-testimonial-box.testimonial-boxed .testimonial-vcard.style1{margin-left:25px}.magee-testimonial-box.testimonial-boxed .testimonial-vcard.style2{text-align:center}.magee-testimonial-box.testimonial-boxed.text-center .testimonial-content:before{left:50%;margin-left:-10px}.magee-testimonial-box.testimonial-boxed.text-center .testimonial-content:after{left:50%;margin-left:-11px}.magee-promo-box{display:table;width:100%}.promo-action .image-instead{display:inline;margin-right:.5em}.magee-promo-box.boxed{padding:5px 15px;border:1px solid #eee;background-color:#f5f5f5}@media screen and (min-width:768px){.promo-action,.promo-info{display:table-cell;vertical-align:middle}}.promo-info{padding-right:15px}.magee-progress-box{overflow:hidden}.magee-progress-box .progress{background-color:#eee;margin-bottom:10px;height:30px;border-radius:0;box-shadow:none}.magee-progress-box .progress-bar{padding:0 5px;background-color:#fdd200;overflow:hidden;text-align:left;box-shadow:none;font-weight:700}.magee-progress-box .label{font-size:.9em;background-color:rgba(0,0,0,.3);margin:2px 0}.progress-bar-striped.animated{-webkit-animation-name:progress-bar-striped;animation-name:progress-bar-striped;-webkit-animation-timing-function:linear;animation-timing-function:linear}@-webkit-keyframes progress-bar-striped{from{background-position:40px 0}to{background-position:0 0}}@-webkit-keyframes progress-bar-striped{from{background-position:40px 0}to{background-position:0 0}}.progress.rounded{border-radius:5px}.progress.rounded .progress-bar{border-radius:5px}.progress-box .progress-sm{height:15px}.magee-counter-box{text-align:center}.magee-shortcode.magee-counter{width:100%}.magee-counter-box.box-border{border:1px solid #ddd;padding:20px}.magee-counter-box.boxed{padding:20px;border:0 solid #ddd}.magee-counter .counter-top-icon{font-size:72px;color:#fdd200;line-height:1}.magee-counter .counter{font-size:50px;line-height:1em;display:inline-block}.magee-counter .counter:after{display:block;margin:10px auto;width:40px;height:1px;background-color:#fdd200;content:""}.magee-counter h3.counter-bottom_title,.magee-counter h3.counter-title{margin:0!important;font-size:14px}.magee-countdown-wrap{width:600px;max-width:100%}.magee-countdown{list-style-type:none!important;margin:0 -15px}.magee-countdown .counter-num{font-size:40px}.magee-chart-box{position:relative;display:inline-block;width:200px;height:200px;text-align:center}.chart-title{position:absolute;display:block;vertical-align:middle;width:100%;top:0;left:0;line-height:200px;font-size:40px}.chart-title img{height:80px}.magee-process-steps>ul{list-style-type:none;margin-bottom:0}.magee-process-steps>ul>li{position:relative}@media (min-width:992px){.magee-process-steps>ul>li:before{content:"";position:absolute;display:block;width:100%;height:0;border-bottom:1px dashed #e5e5e5;top:50px;left:50%}.magee-process-steps.box-lg>ul>li:before{top:75px}}.magee-process-steps>ul>li:last-child:before{display:none}.magee-step-box .icon-box{position:relative;z-index:2;background-color:#fff;border-width:3px;border-color:#e5e5e5;color:#aaa}.magee-step-box .icon-box i{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.magee-step-box .icon-box:hover{box-shadow:0 0 3px 5px #e5e5e5}.magee-process-steps.process-steps-vertical>ul>li:before{content:"";position:absolute;display:block;width:0;height:100%;border-right:1px dashed #e5e5e5;left:50px;top:50%}.magee-process-steps.process-steps-vertical.box-lg>ul>li:before{left:75px}.magee-process-steps.process-steps-vertical>ul>li{margin-bottom:60px}.magee-process-steps.process-steps-vertical>ul>li:last-child{margin-bottom:0}.magee-process-steps.process-steps-vertical>ul>li:last-child:before{display:none}.magee-timeline{overflow:hidden;position:relative}.magee-timeline>ul{list-style-type:none;margin-bottom:0;margin-top:0;padding-left:0;margin-left:0}.magee-timeline>ul>li{position:relative;margin:0;padding:0}.timeline-year{color:#fff;background-color:#fdd200;width:64px;height:64px;line-height:64px;margin:0 auto;position:relative;text-align:center}.timeline-year p{text-align:center}.timeline-year:after{content:"";display:block;position:absolute;width:0;height:0;border:5px solid transparent;border-top-color:#fdd200;left:50%;margin-left:-5px;top:100%}@media (min-width:992px){.magee-timeline:before{content:"";position:absolute;display:block;width:10px;height:10px;border-radius:50%;background-color:#fdd200;top:28px;left:0}.magee-timeline>ul>li:before{content:"";position:absolute;display:block;width:100%;height:1px;background-color:#fdd200;top:32px;left:0}.magee-timeline>ul>li:last-child:before{background-image:-moz-linear-gradient(left,#fdd200 0,#fdd200 70%,#fff 100%);background-image:-webkit-gradient(linear,left top,right top,from(#fdd200),color-stop(.7,#fdd200),to(#fff));background-image:-webkit-linear-gradient(left,#fdd200 0,#fdd200 70%,#fff 100%);background-image:-o-linear-gradient(left,#fdd200 0,#fdd200 70%,#fff 100%)}}.modal{z-index:10000}.modal-content{border-radius:0}.magee-modal-trigger{cursor:pointer}.magee-modal-wrapper{display:inline-block;position:fixed;z-index:999;margin:0;padding:0}.magee-modal{position:fixed;top:50%;left:50%;height:auto;z-index:2000;visibility:hidden;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform:translate3d(-50%,-50%,0);-moz-transform:translate3d(-50%,-50%,0);-ms-transform:translate3d(-50%,-50%,0);transform:translate3d(-50%,-50%,0)}.magee-modal-show{visibility:visible}.magee-modal-overlay{position:fixed;width:100%;height:100%;visibility:hidden;top:0;left:0;z-index:1000;opacity:0;-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s}.magee-modal-show~.magee-modal-overlay{opacity:1;visibility:visible}.magee-modal-content-wrapper{color:#fff;background:#e74c3c;position:relative;border-radius:3px;margin:0 auto;width:750px}.magee-modal-content-wrapper .magee-modal-title-wrapper{position:relative;margin:0;padding:10px 20px;font-size:2.2em;font-weight:300;background:rgba(0,0,0,.05);border-radius:3px 3px 0 0}.magee-modal-content-wrapper .magee-modal-title-wrapper h3{margin:0;height:30px;line-height:30px;font-size:.55em}.magee-modal-title-wrapper a.magee-modal-close{float:right;text-decoration:none;box-shadow:none;color:#fff!important;font-size:16px;text-align:center;-webkit-transition:.4s opacity;-moz-transition:.4s opacity;-ms-transition:.4s opacity;-o-transition:.4s opacity;transition:.4s opacity}.magee-modal-title-wrapper a.magee-modal-close:hover{opacity:.8;text-decoration:none}.magee-modal-content-wrapper>div{padding:15px 20px;margin:0;font-weight:300;font-size:1.15em}.magee-modal-content-wrapper button{display:block;margin:0 auto;font-size:.8em}.magee-modal-effect-1 .magee-modal-content-wrapper{-webkit-transform:translateX(30%);-moz-transform:translateX(30%);-ms-transform:translateX(30%);transform:translateX(30%);opacity:0;-webkit-transition:all .4s cubic-bezier(.25, .5, .5, .9);-moz-transition:all .4s cubic-bezier(.25, .5, .5, .9);transition:all .4s cubic-bezier(.25, .5, .5, .9)}.magee-modal-show.magee-modal-effect-1 .magee-modal-content-wrapper{-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0);opacity:1}.magee-modal-effect-2 .magee-modal-content-wrapper{-webkit-transform:translateY(30%);-moz-transform:translateY(30%);-ms-transform:translateY(30%);transform:translateY(30%);opacity:0;-webkit-transition:all .4s;-moz-transition:all .4s;transition:all .4s}.magee-modal-show.magee-modal-effect-2 .magee-modal-content-wrapper{-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);opacity:1}.magee-modal-effect-3 .magee-modal-content-wrapper{-webkit-transform:translateX(-30%);-moz-transform:translateX(-30%);-ms-transform:translateX(-30%);transform:translateX(-30%);opacity:0;-webkit-transition:all .4s cubic-bezier(.25, .5, .5, .9);-moz-transition:all .4s cubic-bezier(.25, .5, .5, .9);transition:all .4s cubic-bezier(.25, .5, .5, .9)}.magee-modal-show.magee-modal-effect-3 .magee-modal-content-wrapper{-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0);opacity:1}.magee-modal-effect-4 .magee-modal-content-wrapper{-webkit-transform:translateY(-30%);-moz-transform:translateY(-30%);-ms-transform:translateY(-30%);transform:translateY(-30%);opacity:0;-webkit-transition:all .4s;-moz-transition:all .4s;transition:all .4s}.magee-modal-show.magee-modal-effect-4 .magee-modal-content-wrapper{-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);opacity:1}.magee-modal-effect-5 .magee-modal-content-wrapper{-webkit-transform:scale(.8);-moz-transform:scale(.8);-ms-transform:scale(.8);transform:scale(.8);opacity:0;-webkit-transition:all .4s;-moz-transition:all .4s;transition:all .4s}.magee-modal-show.magee-modal-effect-5 .magee-modal-content-wrapper{-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);transform:scale(1);opacity:1}.magee-modal-effect-6.magee-modal{-webkit-perspective:1300px;-moz-perspective:1300px;perspective:1300px}.magee-modal-effect-6 .magee-modal-content-wrapper{-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transform:rotateY(-80deg);-moz-transform:rotateY(-80deg);-ms-transform:rotateY(-80deg);transform:rotateY(-80deg);-webkit-transition:all .4s;-moz-transition:all .4s;transition:all .4s;opacity:0}.magee-modal-show.magee-modal-effect-6 .magee-modal-content-wrapper{-webkit-transform:rotateY(0);-moz-transform:rotateY(0);-ms-transform:rotateY(0);transform:rotateY(0);opacity:1}.magee-modal-effect-7.magee-modal{-webkit-perspective:1300px;-moz-perspective:1300px;perspective:1300px}.magee-modal-effect-7 .magee-modal-content-wrapper{-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transform:rotateX(-80deg);-moz-transform:rotateX(-80deg);-ms-transform:rotateX(-80deg);transform:rotateX(-80deg);-webkit-transition:all .4s;-moz-transition:all .4s;transition:all .4s;opacity:0}.magee-modal-show.magee-modal-effect-7 .magee-modal-content-wrapper{-webkit-transform:rotateX(0);-moz-transform:rotateX(0);-ms-transform:rotateX(0);transform:rotateX(0);opacity:1}.magee-modal-effect-8.magee-modal{-webkit-perspective:1300px;-moz-perspective:1300px;perspective:1300px}.magee-modal-effect-8 .magee-modal-content-wrapper{-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transform:rotateX(-70deg);-moz-transform:rotateX(-70deg);-ms-transform:rotateX(-70deg);transform:rotateX(-70deg);-webkit-transform-origin:50% 0;-moz-transform-origin:50% 0;transform-origin:50% 0;opacity:0;-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s}.magee-modal-show.magee-modal-effect-8 .magee-modal-content-wrapper{-webkit-transform:rotateX(0);-moz-transform:rotateX(0);-ms-transform:rotateX(0);transform:rotateX(0);opacity:1}.magee-modal-effect-9.magee-modal{-webkit-perspective:1300px;-moz-perspective:1300px;perspective:1300px}.magee-modal-effect-9 .magee-modal-content-wrapper{-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transform:translateZ(100px) translateX(-40%) rotateY(90deg);-moz-transform:translateZ(100px) translateX(-40%) rotateY(90deg);-ms-transform:translateZ(100px) translateX(-40%) rotateY(90deg);transform:translateZ(100px) translateX(-40%) rotateY(90deg);-webkit-transform-origin:0 100%;-moz-transform-origin:0 100%;transform-origin:0 100%;opacity:0;-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s}.magee-modal-show.magee-modal-effect-9 .magee-modal-content-wrapper{-webkit-transform:translateZ(0) translateX(0) rotateY(0);-moz-transform:translateZ(0) translateX(0) rotateY(0);-ms-transform:translateZ(0) translateX(0) rotateY(0);transform:translateZ(0) translateX(0) rotateY(0);opacity:1}.magee-modal-effect-10.magee-modal{-webkit-perspective:1300px;-moz-perspective:1300px;perspective:1300px}.magee-modal-effect-10 .magee-modal-content-wrapper{-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transform:translateY(100%) rotateX(90deg);-moz-transform:translateY(100%) rotateX(90deg);-ms-transform:translateY(100%) rotateX(90deg);transform:translateY(100%) rotateX(90deg);-webkit-transform-origin:0 100%;-moz-transform-origin:0 100%;transform-origin:0 100%;opacity:0;-webkit-transition:all .3s ease-out;-moz-transition:all .3s ease-out;transition:all .3s ease-out}.magee-modal-show.magee-modal-effect-10 .magee-modal-content-wrapper{-webkit-transform:translateY(0) rotateX(0);-moz-transform:translateY(0) rotateX(0);-ms-transform:translateY(0) rotateX(0);transform:translateY(0) rotateX(0);opacity:1}.magee-modal-effect-11.magee-modal{-webkit-perspective:1300px;-moz-perspective:1300px;perspective:1300px}.magee-modal-effect-11 .magee-modal-content-wrapper{-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transform:translateZ(-3000px) rotateY(90deg);-moz-transform:translateZ(-3000px) rotateY(90deg);-ms-transform:translateZ(-3000px) rotateY(90deg);transform:translateZ(-3000px) rotateY(90deg);opacity:0}.magee-modal-show.magee-modal-effect-11 .magee-modal-content-wrapper{-webkit-animation:slit .7s forwards ease-out;-moz-animation:slit .7s forwards ease-out;animation:slit .7s forwards ease-out}@-webkit-keyframes slit{50%{-webkit-transform:translateZ(-250px) rotateY(89deg);opacity:.5;-webkit-animation-timing-function:ease-out}100%{-webkit-transform:translateZ(0) rotateY(0);opacity:1}}@-moz-keyframes slit{50%{-moz-transform:translateZ(-250px) rotateY(89deg);opacity:.5;-moz-animation-timing-function:ease-out}100%{-moz-transform:translateZ(0) rotateY(0);opacity:1}}@keyframes slit{50%{transform:translateZ(-250px) rotateY(89deg);opacity:1;animation-timing-function:ease-in}100%{transform:translateZ(0) rotateY(0);opacity:1}}.magee-modal-effect-12 .magee-modal-content-wrapper{-webkit-transform:scale(0) rotate(720deg);-moz-transform:scale(0) rotate(720deg);-ms-transform:scale(0) rotate(720deg);transform:scale(0) rotate(720deg);opacity:0}.magee-modal-effect-12 .magee-modal-content-wrapper,.magee-modal-show.magee-modal-effect-12~.magee-modal-overlay{-webkit-transition:all .5s;-moz-transition:all .5s;transition:all .5s}.magee-modal-show.magee-modal-effect-12 .magee-modal-content-wrapper{-webkit-transform:scale(1) rotate(0);-moz-transform:scale(1) rotate(0);-ms-transform:scale(1) rotate(0);transform:scale(1) rotate(0);opacity:1}.magee-modal-effect-13.magee-modal{-webkit-perspective:1300px;-moz-perspective:1300px;perspective:1300px}.magee-modal-effect-13 .magee-modal-content-wrapper{-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transform:translateZ(600px) rotateX(20deg);-moz-transform:translateZ(600px) rotateX(20deg);-ms-transform:translateZ(600px) rotateX(20deg);transform:translateZ(600px) rotateX(20deg);opacity:0}.magee-modal-show.magee-modal-effect-13 .magee-modal-content-wrapper{-webkit-transition:all .3s ease-in;-moz-transition:all .3s ease-in;transition:all .3s ease-in;-webkit-transform:translateZ(0) rotateX(0);-moz-transform:translateZ(0) rotateX(0);-ms-transform:translateZ(0) rotateX(0);transform:translateZ(0) rotateX(0);opacity:1}.magee-modal-effect-14.magee-modal{-webkit-perspective:1300px;-moz-perspective:1300px;perspective:1300px}.magee-modal-effect-14 .magee-modal-content-wrapper{-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transform:translate(30%) translateZ(600px) rotate(10deg);-moz-transform:translate(30%) translateZ(600px) rotate(10deg);-ms-transform:translate(30%) translateZ(600px) rotate(10deg);transform:translate(30%) translateZ(600px) rotate(10deg);opacity:0}.magee-modal-show.magee-modal-effect-14 .magee-modal-content-wrapper{-webkit-transition:all .3s ease-in;-moz-transition:all .3s ease-in;transition:all .3s ease-in;-webkit-transform:translate(0) translateZ(0) rotate(0);-moz-transform:translate(0) translateZ(0) rotate(0);-ms-transform:translate(0) translateZ(0) rotate(0);transform:translate(0) translateZ(0) rotate(0);opacity:1}.magee-modal-effect-15 .magee-modal-content-wrapper{-webkit-transform:scale(2);-moz-transform:scale(2);-ms-transform:scale(2);transform:scale(2);opacity:0;-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s}.magee-modal-show.magee-modal-effect-15 .magee-modal-content-wrapper{-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);transform:scale(1);opacity:1}.popover{border-radius:0}.tooltip-inner{border-radius:0}.magee-expand{cursor:pointer}.magee-icon-list{margin:0}.magee-icon-list li{list-style-type:none;padding-bottom:.8em;position:relative;padding-left:2em}.magee-icon-list.icon-list-border li{padding-top:.8em;border-bottom:1px solid #e5e5e5}.magee-icon-list.icon-list-border li:last-child{padding-top:.8em;border-bottom:0!important}.magee-icon-list li i{text-align:center;width:1.6em;height:1.6em;line-height:1.6em;position:absolute;top:0;left:0}.icon-list-border li i{top:.8em}.icon-list-border li img{top:.8em}.icon-list-primary li i{color:#fdd200}.icon-list-circle li i{background-color:#ccc;color:#fff;border-radius:50%}.icon-list-primary.icon-list-circle li i{background-color:#fdd200;color:#fff}.divider{margin-top:30px;margin-bottom:30px;position:relative}.divider-inner{width:100%;max-width:100%!important;display:table;min-height:1px}.divider-border .divider-inner{border:0 solid #e5e5e5;border-bottom-width:1px;height:1px}.divider-border.dashed .divider-inner{border-style:dashed}.divider-border.dotted .divider-inner{border-style:dotted}.divider-border.double-line .divider-inner{height:8px;border-top-width:1px;border-bottom-width:1px}.divider-shadow .divider-inner{position:relative;background:radial-gradient(ellipse at 50% -50% ,rgba(0,0,0,.1) 0,rgba(255,255,255,0) 80%) repeat scroll 0 0 rgba(0,0,0,0);background:-webkit-radial-gradient(ellipse at 50% -50% ,rgba(0,0,0,.1) 0,rgba(255,255,255,0) 80%) repeat scroll 0 0 rgba(0,0,0,0);background:-moz-radial-gradient(ellipse at 50% -50% ,rgba(0,0,0,.1) 0,rgba(255,255,255,0) 80%) repeat scroll 0 0 rgba(0,0,0,0);background:-o-radial-gradient(ellipse at 50% -50% ,rgba(0,0,0,.1) 0,rgba(255,255,255,0) 80%) repeat scroll 0 0 rgba(0,0,0,0)}.divider-shadow .divider-inner:after{display:block;height:5px;width:100%;content:'';background:-webkit-radial-gradient(ellipse at 50% -50%,rgba(0,0,0,.3) 0,rgba(255,255,255,0) 65%);background:-moz-radial-gradient(ellipse at 50% -50%,rgba(0,0,0,.3) 0,rgba(255,255,255,0) 80%);background:-o-radial-gradient(ellipse at 50% -50%,rgba(0,0,0,.3) 0,rgba(255,255,255,0) 80%);background:radial-gradient(ellipse at 50% -50%,rgba(0,0,0,.3) 0,rgba(255,255,255,0) 65%)}.divider-border.narrow{width:100px}.divider-image .divider-inner{background-image:url(../images/divider-2.png);background-position:center center;background-repeat:repeat-x;height:9px}.divider-border .divider-inner.primary{border-color:#fdd200}.divider-border .divider-inner.light{border-color:#fff}.divider-border .divider-inner.dark{border-color:#222}.divider.center{margin-left:auto;margin-right:auto;text-align:center}.divider-inner-item{display:table-cell;vertical-align:middle}.divider-inner-icon{width:40px;height:40px}.divider-inner-back-to-top{width:1px;padding-left:10px}@media screen and (min-width:640px){.divider-inner-title{width:50px;white-space:nowrap}.divider-title-left .divider-inner-title{padding-right:10px}.divider-title-center .divider-inner-title{padding:0 10px}.divider-title-right .divider-inner-title{padding-left:10px}}.ss-style-dots::before{bottom:20px;width:14px;height:14px;border-radius:50%;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);background:#2072a7;box-shadow:30px 0 #2072a7,-30px 0 #2072a7}.ss-style-doubleline::before{bottom:30px;width:140px;height:2px;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);background:#2072a7;box-shadow:0 30px 0 #2072a7}.ss-style-cross{padding-bottom:15em}.ss-style-cross::after,.ss-style-cross::before{background:#2072a7;bottom:70px;width:200px;height:2px;left:50%;-webkit-transform-origin:50% 50%;transform-origin:50% 50%}.ss-style-cross::before{-webkit-transform:translateX(-50%) rotate(45deg);transform:translateX(-50%) rotate(45deg)}.ss-style-cross::after{-webkit-transform:translateX(-50%) rotate(-45deg);transform:translateX(-50%) rotate(-45deg)}.magee-section-separator{position:absolute;width:100%;left:0;background-color:inherit}.magee-section-separator::after,.magee-section-separator::before{position:absolute;content:'';pointer-events:none}.magee-section-separator svg{position:absolute;z-index:2}.ss-triangle-up{bottom:100%}.ss-triangle-down{top:100%}.ss-triangle-down::after,.ss-triangle-up::before{left:50%;width:40px;height:40px;-webkit-transform:translateX(-50%) rotate(45deg);transform:translateX(-50%) rotate(45deg);background-color:inherit}.ss-triangle-up::before{top:-20px}.ss-triangle-down::after{bottom:-20px}.ss-doublediagonal{z-index:1;padding-top:6em;margin-bottom:-6em;background-color:inherit;bottom:100%}.ss-doublediagonal::after,.ss-doublediagonal::before{top:0;z-index:-1;width:100%;height:75%;background:inherit;-webkit-transform:rotate(-2deg);transform:rotate(-2deg);-webkit-transform-origin:0 0;transform-origin:0 0}.ss-doublediagonal::before{height:50%;background:rgba(0,0,0,.3);-webkit-transform:rotate(-3deg);transform:rotate(-3deg);-webkit-transform-origin:3% 0;transform-origin:3% 0}.ss-halfcircle-up{bottom:100%}.ss-halfcircle-down{top:100%}.ss-halfcircle-down::after,.ss-halfcircle-up::before{left:50%;z-index:2;width:100px;height:100px;border-radius:50%;background-color:inherit;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.ss-halfcircle-up::before{top:-50px}.ss-halfcircle-down::after{bottom:-50px}.ss-bigtriangle-up{bottom:100%}.ss-bigtriangle-down{top:100%}.ss-bigtriangle-down svg,.ss-bigtriangle-up svg{pointer-events:none;left:0}.ss-bigtriangle-up svg{bottom:0}.ss-bigtriangle-down svg{top:0}.ss-bigtriangle-down svg path,.ss-bigtriangle-up svg path{fill:#3498db;stroke:#3498db;stroke-width:2}.ss-bighalfcircle-up{bottom:100%}.ss-bighalfcircle-down{top:100%}.ss-bighalfcircle-up svg{left:0;bottom:0}.ss-bighalfcircle-down svg{left:0;top:0}.ss-bighalfcircle svg path,.ss-bighalfcircle-up svg path{fill:#3498db;stroke:#3498db}.ss-curl-up{bottom:100%}.ss-curl-down{top:100%}.ss-curl-up svg{left:0;bottom:0}.ss-curl-down svg{left:0;top:0}.ss-curl-down svg path,.ss-curl-up svg path{fill:#3498db;stroke:#3498db}.ss-multitriangles-up{bottom:100%}.ss-multitriangles-down{top:100%}.ss-multitriangles-down::after,.ss-multitriangles-up::before{left:50%;width:50px;height:50px;-webkit-transform:translateX(-50%) rotate(45deg);transform:translateX(-50%) rotate(45deg)}.ss-multitriangles-up::before{top:-25px;background:inherit;box-shadow:-50px 50px 0 #3498db,50px -50px 0 #3498db}.ss-multitriangles-down::after{bottom:-25px;z-index:10;background:inherit;box-shadow:-50px 50px 0 #3498db,50px -50px 0 #3498db}.ss-roundedsplit-up{padding-top:2em;bottom:100%}.ss-roundedsplit-up::after,.ss-roundedsplit-up::before{top:-70px;left:0;z-index:10;width:50%;height:70px;background:inherit}.ss-roundedsplit-up::before{border-radius:0 80px 0 0}.ss-roundedsplit-up::after{left:50%;border-radius:80px 0 0 0}.ss-roundedcorners-down{top:100%}.ss-roundedcorners-down::before{top:100%;left:0;z-index:10;width:100%;height:60px;border-radius:0 0 60px 60px;background:inherit}.ss-invertedrounded{height:90px;border-radius:0 0 0 90px;top:100%;z-index:2}.ss-invertedrounded::before{top:90px;width:100%;height:90px;background-color:inherit;z-index:2}.ss-invertedrounded::after{top:90px;width:100%;background-color:#3498db;height:90px;border-radius:0 90px 0 0;z-index:3}.ss-boxes-up{bottom:100%}.ss-boxes-down{top:100%}.ss-boxes-down:after,.ss-boxes-up::before{left:0;width:100%;height:50px;background-image:-webkit-gradient(linear,100% 0,0 100%,color-stop(.5,transparent),color-stop(.5,#2980b9));background-image:linear-gradient(to right,transparent 50%,#2980b9 50%);-webkit-background-size:130px 100%;background-size:130px 100%}.ss-boxes-up::before{bottom:0}.ss-boxes-down::after{z-index:2;top:0}.ss-zigzag-up{bottom:100%}.ss-zigzag-down{top:100%}.ss-zigzag-down::after,.ss-zigzag-up::before{right:0;left:0;z-index:3;display:block;height:90px;background-size:50px 100%}.ss-zigzag-up::before{top:-90px;background-image:-webkit-gradient(linear,0 0,300% 100%,color-stop(.25,transparent),color-stop(.25,#3498db));background-image:linear-gradient(315deg,#3498db 25%,transparent 25%),linear-gradient(45deg,#3498db 25%,transparent 25%);background-position:50%}.ss-zigzag-down::after{top:100%;background-image:-webkit-gradient(linear,0 0,300% 100%,color-stop(.25,#3498db),color-stop(.25,transparent));background-image:linear-gradient(135deg,#3498db 25%,transparent 25%),linear-gradient(225deg,#3498db 25%,transparent 25%);background-position:50%}.ss-foldedcorner{top:100%;height:100px;background-color:inherit;width:calc(100% - 100px);z-index:2}.ss-foldedcorner::after,.ss-foldedcorner::before{bottom:0;width:100px;height:100px}.ss-foldedcorner::before{right:-100px;background-image:-webkit-linear-gradient(top left,#fff 50%,rgba(0,0,0,0) 50%);background-image:linear-gradient(315deg,rgba(0,0,0,0) 46%,rgba(0,0,0,.3) 50%,#fff 50%)}.ss-foldedcorner::after{right:0;background-image:-webkit-linear-gradient(top left,transparent 50%,rgba(0,0,0,.1) 50%);background-image:linear-gradient(315deg,rgba(0,0,0,.1) 50%,transparent 50%)}.ss-stamp-up{bottom:100%}.ss-stamp-down{top:100%}.ss-stamp-up svg{left:0;bottom:0}.ss-stamp-down svg{left:0;top:0}.ss-curl-down svg path,.ss-curl-up svg path{fill:#3498db;stroke:#3498db}.ss-clouds-up{bottom:100%}.ss-clouds-down{top:100%}.ss-clouds-up svg{left:0;bottom:0}.ss-clouds-down svg{left:0;top:0}.ss-clouds-down svg path,.ss-clouds-up svg path{fill:#3498db;stroke:#3498db}.img-box{overflow:hidden;position:relative;display:inline-block;margin-bottom:-8px;max-width:100%}.img-box .img-overlay{position:absolute;top:0;left:0;width:100%;height:100%;transition:all .1s ease;-webkit-transition:all .1s ease}.img-box .img-overlay.primary{background-color:rgba(253,210,0,.7)}.img-box .img-overlay.dark{background-color:rgba(0,0,0,.35)}.img-box .img-overlay.light{background-color:rgba(255,255,255,.35)}.img-box:hover .img-overlay{transition:all .1s ease;-webkit-transition:all .5s ease}.img-overlay-container{display:table;height:100%;width:100%}.img-box .img-overlay-content{display:table-cell;padding:5px;position:relative}.img-overlay-total-link{position:absolute;z-index:2;width:100%;height:100%;left:0;top:0}.img-overlay-content .entry-category{position:relative;z-index:3}.img-box.figcaption-middle .img-overlay-content{vertical-align:middle;text-align:center}.img-box.figcaption-top .img-overlay-content{vertical-align:top}.img-box.figcaption-bottom .img-overlay-content{vertical-align:bottom}.img-box.fade-in .img-overlay{opacity:0}.img-box.fade-in:hover .img-overlay{opacity:1}.img-box.from-left .img-overlay{-webkit-transform:translateX(-100%);transform:translateX(-100%)}.img-box.from-left:hover .img-overlay{-webkit-transform:translateX(0);transform:translateX(0)}.img-box.from-right .img-overlay{-webkit-transform:translateX(100%);transform:translateX(100%)}.img-box.from-right:hover .img-overlay{-webkit-transform:translateX(0);transform:translateX(0)}.img-box.from-top .img-overlay{-webkit-transform:translateY(-100%);transform:translateY(-100%)}.img-box.from-top:hover .img-overlay{-webkit-transform:translateY(0);transform:translateY(0)}.img-box.from-bottom .img-overlay{-webkit-transform:translateY(100%);transform:translateY(100%)}.img-box.from-bottom:hover .img-overlay{-webkit-transform:translateY(0);transform:translateY(0)}.img-box img{transition:all .1s ease;-webkit-transition:all .5s ease}.img-box:hover img{transition:all .1s ease;-webkit-transition:all .5s ease}.img-box.img-zoom-in:hover img{-webkit-transform:scale(1.1);transform:scale(1.1)}.img-box.img-zoom-out img{-webkit-transform:scale(1.1);transform:scale(1.1)}.img-box.img-zoom-out:hover img{-webkit-transform:scale(1);transform:scale(1)}.img-box.img-scroll-left img,.img-box.img-scroll-right img{width:calc(105%);max-width:none}.img-box.img-scroll-left img{-webkit-transform:translateX(0);transform:translateX(0)}.img-box.img-scroll-left:hover img{-webkit-transform:translateX(-5%);transform:translateX(-5%)}.img-box.img-scroll-right img{-webkit-transform:translateX(-5%);transform:translateX(-5%)}.img-box.img-scroll-right:hover img{-webkit-transform:translateX(0);transform:translateX(0)}.img-box .img-overlay-content i{color:#fff;font-size:30px}.img-box .img-overlay-icons i{color:#3c3c3c;margin:0 10px;width:48px;height:48px;font-size:24px;line-height:48px;background-color:#fdd200}.img-box h3.img-overlay-title{color:#fff}.img-frame{overflow:hidden}.img-frame.rounded{border-radius:5px}.img-frame.circle{border-radius:50%}.img-frame.border{border:6px solid #f5f5f5}.img-frame.shadow{box-shadow:2px 2px 5px 0 #aaa}.magee-image-banner .img-box .img-overlay-content{color:#fff}.magee-image-banner .img-box .img-overlay-content{padding:15px}.magee-image-banner .img-box:hover .img-overlay{background-color:rgba(0,0,0,.35)}.multi-carousel{padding:0;position:relative}.multi-carousel-inner{overflow:hidden}ul.multi-carousel-holder{overflow:hidden;margin-bottom:0}.multi-carousel-holder li.multi-carousel-item{list-style-type:none;float:left;margin:0;padding:0 15px}.carousel-caption{top:10%;bottom:auto}.multi-carousel-nav .multi-carousel-nav-next,.multi-carousel-nav .multi-carousel-nav-prev{width:30px;height:30px;font:normal normal normal 30px/30px FontAwesome;display:inline-block;text-align:center;color:#777;opacity:.8;background-color:transparent}.multi-carousel-nav.style1 .multi-carousel-nav-next,.multi-carousel-nav.style1 .multi-carousel-nav-prev{position:absolute;top:50%;margin-top:-15px}.multi-carousel-nav.nav-border .multi-carousel-nav-next,.multi-carousel-nav.nav-border .multi-carousel-nav-prev{border:1px solid #777;font:normal normal normal 14px/30px FontAwesome}.multi-carousel-nav.light .multi-carousel-nav-next,.multi-carousel-nav.light .multi-carousel-nav-prev{border-color:#fff;color:#fff}.multi-carousel-nav.nav-bg .multi-carousel-nav-next,.multi-carousel-nav.nav-bg .multi-carousel-nav-prev{color:#fff;background-color:rgba(0,0,0,.8);font:normal normal normal 14px/30px FontAwesome}.multi-carousel-nav.nav-square .multi-carousel-nav-next,.multi-carousel-nav.nav-square .multi-carousel-nav-prev{border-radius:0}.multi-carousel-nav.nav-rounded .multi-carousel-nav-next,.multi-carousel-nav.nav-rounded .multi-carousel-nav-prev{border-radius:5px}.multi-carousel-nav.nav-circle .multi-carousel-nav-next,.multi-carousel-nav.nav-circle .multi-carousel-nav-prev{border-radius:50%}.multi-carousel-nav.nav-lg .multi-carousel-nav-next,.multi-carousel-nav.nav-lg .multi-carousel-nav-prev{width:50px;height:50px;font:normal normal normal 50px/50px FontAwesome}.multi-carousel-nav.nav-lg.nav-bg .multi-carousel-nav-next,.multi-carousel-nav.nav-lg.nav-bg .multi-carousel-nav-prev,.multi-carousel-nav.nav-lg.nav-border .multi-carousel-nav-next,.multi-carousel-nav.nav-lg.nav-border .multi-carousel-nav-prev{font:normal normal normal 24px/50px FontAwesome}.multi-carousel-nav.nav-xl .multi-carousel-nav-next,.multi-carousel-nav.nav-xl .multi-carousel-nav-prev{width:70px;height:70px;font:normal normal normal 70px/70px FontAwesome}.multi-carousel-nav.nav-xl.nav-bg .multi-carousel-nav-next,.multi-carousel-nav.nav-xl.nav-bg .multi-carousel-nav-prev,.multi-carousel-nav.nav-xl.nav-border .multi-carousel-nav-next,.multi-carousel-nav.nav-xl.nav-border .multi-carousel-nav-prev{font:normal normal normal 34px/70px FontAwesome}.multi-carousel-nav .multi-carousel-nav-next:hover,.multi-carousel-nav .multi-carousel-nav-prev:hover{opacity:1}.multi-carousel-nav .multi-carousel-nav-prev:before{content:"\f104"}.multi-carousel-nav .multi-carousel-nav-next:before{content:"\f105"}.multi-carousel-nav.style1 .multi-carousel-nav-prev{left:0}.multi-carousel-nav.style1 .multi-carousel-nav-next{right:0}.multi-carousel-nav.style2{margin:10px 0 0;text-align:center}.multi-carousel-nav.style2 .multi-carousel-nav-next,.multi-carousel-nav.style2 .multi-carousel-nav-prev{margin:0 2px}.multi-carousel-nav.style3{margin:0 0 10px;border-bottom:1px dotted #ddd;width:100%;overflow:hidden;padding-bottom:10px;text-align:right}.multi-carousel-nav.style3 .multi-carousel-nav-next,.multi-carousel-nav.style3 .multi-carousel-nav-prev{margin:0 2px}ol.multi-carousel-indicators{margin-bottom:0;bottom:0}.multi-carousel-indicators.style1 li{border-color:#ddd}.carousel-indicators .active{background-color:#ddd}.multi-carousel-nav-next,.multi-carousel-nav-prev{z-index:9}.magee-carousel .owl-nav{display:none}.magee-carousel .owl-controls{position:relative;text-align:center;height:auto;margin-top:0;display:none}.magee-carousel .owl-controls.style1,.magee-carousel .owl-controls.style2,.magee-carousel .owl-controls.style3,.magee-carousel .owl-controls.style4{display:block}.magee-carousel .owl-controls .owl-dot{display:inline-block}.magee-carousel .owl-controls .owl-dot span{display:block;width:10px;height:10px;margin:25px 5px 0;opacity:.4;-webkit-border-radius:20px;-moz-border-radius:20px;border-radius:20px;background-color:#777;overflow:hidden}.magee-carousel .owl-controls .owl-dot.active span,.magee-carousel .owl-controls.clickable .owl-page:hover span{opacity:1}.magee-carousel .owl-controls.style2 .owl-dot span{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;width:8px;height:8px;-webkit-transform:rotate(45deg);transform:rotate(45deg)}.magee-carousel .owl-controls.style3 .owl-dot span{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;background-color:transparent;border:1px solid #777;width:8px;height:8px}.magee-carousel .owl-controls.clickable.style3 .owl-page:hover span,.magee-carousel .owl-controls.style3 .owl-dot.active span{opacity:1;background-color:#777}.magee-carousel .owl-controls.style4 .owl-dot span{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;background-color:transparent;border:1px solid #777;width:15px;height:5px;margin:25px 3px 0;border-radius:10px}.magee-carousel .owl-controls.clickable.style4 .owl-page:hover span,.magee-carousel .owl-controls.style4 .owl-dot.active span{opacity:1;background-color:#777}.portfolio-box figcaption{margin-bottom:10px}.portfolio-box figcaption h3{margin:0;font-size:18px;padding:20px 0 10px}.portfolio-box figcaption ul{display:inline-block;margin-left:0;margin-bottom:10px}.portfolio-box figcaption li{list-style-type:none;float:left}.portfolio-box figcaption li+li::before{content:"\, "}.portfolio-img-box{position:relative;background-color:#fdd200}.portfolio-info-box{position:absolute;top:0;left:0;width:100%;height:100%;z-index:-1;opacity:0}.portfolio-img-box:hover .portfolio-info-box{z-index:9;opacity:1}.portfolio-img-box:hover img{opacity:.15;transition:all .5s ease 0s;-webkit-transition:all .5s ease 0s;-o-transition:all .5s ease 0s}.portfolio-img-box .portfolio-icon-box{position:absolute;top:50%;left:0;margin-top:-25px;width:100%;text-align:center;transform:translateY(-80px);-webkit-transform:translateY(-80px);-o-transform:translateY(-80px);transition:all .5s ease 0s;-webkit-transition:all .5s ease 0s;-o-transition:all .5s ease 0s}.portfolio-img-box:hover .portfolio-icon-box{transform:translateY(0);-webkit-transform:translateY(0);-o-transform:translateY(0);transition:all .5s ease 0s;-webkit-transition:all .5s ease 0s;-o-transition:all .5s ease 0s}.portfolio-icon-box a{display:inline-block;width:50px;height:50px;border-radius:25px;margin:0 20px;background-color:#fff;font-size:20px;line-height:50px}.portfolio-list-wrap{position:relative;margin:0}.portfolio-list-items{overflow:hidden;margin:0 -15px}.portfolio-box-wrap{float:left;padding:0 15px 15px;margin-bottom:30px}.portfolio-carousel .portfolio-box-wrap{padding-bottom:0}.portfolio-list-filter .portfolio-box-wrap{display:none}.portfolio-list-wrap.full-width .portfolio-list-items{margin:0}.portfolio-list-wrap.full-width .portfolio-box-wrap{padding:0;margin-bottom:0}.portfolio-box .feature-img-box{margin-bottom:0}.portfolio-box .entry-header{margin:0;padding-bottom:0;padding-top:10px}.portfolio-box .entry-title{margin:20px 0 0}.portfolio-box .entry-meta{margin:10px 0 0}.portfolio-box .entry-summary{margin:5px 0 0}.magee-blog-list-wrap .entry-box-wrap .entry-header a h4{color:#666;margin:0 0 10px}.magee-blog-list-wrap .entry-box-wrap .entry-header a:hover h4{color:#fdd200}.shortcode-blog-list-wrap .post-pagination-decoration{height:auto;position:static;background-color:transparent}.shortcode-blog-list-wrap .post-pagination-decoration li{display:inline;padding:5px}.blog-timeline-icon{font-size:60px;color:#ccc}.blog-timeline-inner{position:relative}.blog-timeline-line{position:absolute;top:0;left:30px;margin-left:-1px;height:100%;border-left:1px solid #e5e5e5;border-right:1px solid #e5e5e5}.blog-list-wrap.blog-timeline .entry-box-wrap{width:100%;position:relative}.blog-list-wrap.blog-timeline .entry-box-wrap:after{content:"";position:absolute;width:10px;height:10px;border-radius:50%;background-color:#e5e5e5;top:55px;left:25px}.blog-list-wrap.blog-timeline .entry-box{border:1px solid #ccc;padding:1px;background-color:#fff;position:relative;box-shadow:1px 1px 5px 0 rgba(0,0,0,.1);margin-bottom:50px}.blog-list-wrap.blog-timeline .entry-box:before{content:"";position:absolute;width:0;height:0;border:10px solid transparent;top:50px}.blog-list-wrap.blog-timeline .entry-box:before{border-right-color:#ccc;left:0;margin-left:-21px}.blog-list-wrap.blog-timeline .entry-box:after{content:"";position:absolute;width:0;height:0;border:9px solid transparent;top:51px}.blog-list-wrap.blog-timeline .entry-box:after{border-right-color:#fff;left:0;margin-left:-18px}.blog-list-wrap.blog-timeline .entry-main{padding:10px 20px}.blog-timeline-loading{margin:20px 0}.magee-blog .entry-meta li{list-style:none}.magee-blog .entry-box-wrap{padding-bottom:15px}.magee-blog .entry-title{margin:0 0 10px}.magee-blog .entry-header{border-bottom:none;margin-bottom:0;padding-bottom:10px;padding-top:10px;margin-top:0}.magee-blog a{text-decoration:none}.magee-blog .entry-meta{font-size:12px;text-transform:uppercase;margin:0;padding:10px 0}.magee-blog .entry-meta li{list-style-type:none;display:inline-block;margin-right:10px}.magee-blog .feature-img-box{padding-bottom:15px}.magee-blog .feature-img-box img{max-width:100%}.magee-blog .entry-meta li.entry-comments{margin-right:0}.magee-blog .entry-meta i{margin-right:5px}.magee-blog .entry-meta a{color:#888}.magee-blog .entry-meta a:hover{color:#fdd200}.magee-blog .entry-footer{margin:20px 0;overflow:hidden}.magee-blog .entry-tags{margin:10px 0}.magee-blog .entry-share{margin:10px 0}.magee-blog .entry-share li,.magee-blog .entry-tags li{display:inline-block;list-style-type:none}.magee-blog .entry-share li a,.magee-blog .entry-tags li a{display:block;padding:0 10px;border:1px solid #a0a0a0;font-size:.9em;line-height:22px}.magee-blog .entry-tags.no-border li{margin-right:10px}.magee-blog .entry-share.no-border li{margin-left:10px}.magee-blog .entry-share.no-border li a,.magee-blog .entry-tags.no-border li a{border:none;padding:0}.magee-blog .entry-footer li a:hover{border-color:#fdd200}@media screen and (min-width:768px){.blog-timeline-icon{text-align:center}.blog-timeline-line{left:50%}.blog-list-wrap.blog-timeline .entry-box-wrap{width:50%}.blog-list-wrap.blog-timeline .entry-box-wrap.timeline-left{float:left;padding-right:10%}.blog-list-wrap.blog-timeline .entry-box-wrap.timeline-left:after{right:0;margin-right:-5px;left:auto}.blog-list-wrap.blog-timeline .entry-box-wrap.timeline-right{float:right;padding-left:10%}.blog-list-wrap.blog-timeline .entry-box-wrap.timeline-right:after{left:0;margin-left:-5px}.blog-list-wrap.blog-timeline .timeline-left .entry-box:before{border-left-color:#ccc;border-right-color:transparent;left:auto;right:0;margin-right:-21px;margin-left:0}.blog-list-wrap.blog-timeline .timeline-left .entry-box:after{border-left-color:#fff;border-right-color:transparent;left:auto;right:0;margin-right:-18px}}.clients img{opacity:.6}.clients img:hover{opacity:1}.magee-contact-form .row{margin:0 -5px}.magee-contact-form label{padding-left:0}.magee-contact-form .checkbox label{padding-left:30px}.magee-contact-form .checkbox input[type=checkbox]{margin-left:-30px}.magee-contact-form [class*=col-]{padding:0 5px}.magee-contact-form .input-group-addon{padding:10px}.magee-contact-form .form-control{padding:20px;margin-bottom:0}.magee-contact-form .form-group,.magee-shortcode .magee-contact-form .checkbox{margin-bottom:15px}.magee-contact-form .input-group .form-control{margin-bottom:0}.magee-contact-form .checkbox,.magee-contact-form .radio{margin:0}.magee-contact-form .input-group-addon:first-child{border-radius:0}.magee-contact-form input:focus,.magee-contact-form textarea:focus{border-color:inherit}.magee-contact-form input::-webkit-input-placeholder,.magee-contact-form textarea::-webkit-input-placeholder{color:inherit;opacity:.8}.magee-contact-form input:-moz-placeholder,.magee-contact-form textarea:-moz-placeholder{color:inherit;opacity:.8}.magee-contact-form.contact-form-custom input:focus,.magee-contact-form.contact-form-custom textarea:focus{box-shadow:0 0 5px 1px rgba(0,0,0,.1)}.magee-contact-form.contact-form-line .form-control{padding:19px;background-color:transparent;border-width:2px}.magee-contact-form.contact-form-bg input[type=submit],.magee-contact-form.contact-form-line input[type=submit]{width:100%}.magee-contact-form.contact-form-line.dark{color:#222}.magee-contact-form.contact-form-line.light{color:#fff}.magee-contact-form.contact-form-line.dark .form-control{border-color:#222;color:#222}.magee-contact-form.contact-form-line.light .form-control{border-color:#fff;color:#fff}.magee-contact-form.contact-form-line input:focus,.magee-contact-form.contact-form-line textarea:focus{border-color:inherit}.magee-contact-form.contact-form-line.dark input:focus,.magee-contact-form.contact-form-line.dark textarea:focus{border-color:inherit;background-color:rgba(0,0,0,.1)}.magee-contact-form.contact-form-line.light input:focus,.magee-contact-form.contact-form-line.light textarea:focus{border-color:inherit;background-color:rgba(255,255,255,.1)}.magee-contact-form.contact-form-bg .form-control{border:none;padding:21px}.magee-contact-form.contact-form-bg.dark .form-control{background-color:#222;color:#fff}.magee-contact-form.contact-form-bg.light .form-control{background-color:#fff;color:#222}.magee-contact-form input.form-control{display:block;padding:0 20px!important;height:42px}.notice-success{color:green}.notice-error{color:red}.back-to-top{position:fixed;right:10px;bottom:10px;width:48px;height:48px;font:normal normal normal 20px/48px FontAwesome;text-align:center;color:#fff;background-color:#aaa;opacity:.5}.back-to-top:hover{color:#fff;opacity:.8}.magee-flipbox-wrap{position:relative;-webkit-perspective:2000px;-moz-perspective:2000px;-ms-perspective:2000px;perspective:2000px;width:100%}.magee-flipbox{position:relative;width:100%;height:100%;-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;-ms-transform-style:preserve-3d;-o-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transition:all .5s cubic-bezier(.645,.045,.355,1);-moz-transition:all .5s cubic-bezier(.645,.045,.355,1);-ms-transition:all .5s cubic-bezier(.645,.045,.355,1);-o-transition:all .5s cubic-bezier(.645,.045,.355,1);transition:all .5s cubic-bezier(.645,.045,.355,1)}.flipbox-back,.flipbox-front{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden;-webkit-transition:all .5s cubic-bezier(.645,.045,.355,1);-moz-transition:all .5s cubic-bezier(.645,.045,.355,1);-ms-transition:all .5s cubic-bezier(.645,.045,.355,1);-o-transition:all .5s cubic-bezier(.645,.045,.355,1);transition:all .5s cubic-bezier(.645,.045,.355,1);-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;-o-transform-style:preserve-3d;-ms-transform-style:preserve-3d;transform-style:preserve-3d;position:absolute;left:0;top:0;height:100%;min-height:100%;width:100%;display:table;table-layout:fixed}.magee-flipbox-wrap.horizontal .flipbox-front{-webkit-transform:rotateY(0);transform:rotateY(0);z-index:2}.magee-flipbox-wrap.horizontal:hover .flipbox-front{-webkit-transform:rotateY(180deg);transform:rotateY(180deg);visibility:hidden}.magee-flipbox-wrap.horizontal .flipbox-back{-webkit-transform:rotateY(-180deg);transform:rotateY(-180deg)}.magee-flipbox-wrap.horizontal:hover .flipbox-back{-webkit-transform:rotateY(0);transform:rotateY(0);z-index:3}.magee-flipbox-wrap.horizontal .horizontal-touchstart-front{-webkit-transform:rotateY(180deg);transform:rotateY(180deg);visibility:hidden}.magee-flipbox-wrap.horizontal .horizontal-touchstart-back{-webkit-transform:rotateY(0);transform:rotateY(0);z-index:3}.magee-flipbox-wrap.horizontal .horizontal-touchend-front{-webkit-transform:rotateY(0)!important;transform:rotateY(0)!important;visibility:visible!important}.magee-flipbox-wrap.horizontal .horizontal-touchend-back{-webkit-transform:rotateY(-180deg)!important;transform:rotateY(-180deg)!important}.magee-flipbox-wrap.vertical .flipbox-front{-webkit-transform:rotateX(0);transform:rotateX(0);z-index:2}.magee-flipbox-wrap.vertical:hover .flipbox-front{-webkit-transform:rotateX(-180deg);transform:rotateX(-180deg);visibility:hidden}.magee-flipbox-wrap.vertical .flipbox-back{-webkit-transform:rotateX(180deg);transform:rotateX(180deg)}.magee-flipbox-wrap.vertical:hover .flipbox-back{-webkit-transform:rotateX(0);transform:rotateX(0);z-index:3}.magee-flipbox-wrap.vertical .vertical-touchstart-front{-webkit-transform:rotateX(-180deg);transform:rotateX(-180deg);visibility:hidden}.magee-flipbox-wrap.vertical .vertical-touchstart-back{-webkit-transform:rotateX(0);transform:rotateX(0);z-index:3}.magee-flipbox-wrap.vertical .vertical-touchend-front{-webkit-transform:rotateX(0)!important;transform:rotateX(0)!important;visibility:visible!important}.magee-flipbox-wrap.vertical .vertical-touchend-back{-webkit-transform:rotateX(180deg)!important;transform:rotateX(180deg)!important}.flipbox-content{text-align:center;vertical-align:middle;display:table-cell;width:100%;padding:15px}.magee-flipbox-wrap.slide-left:hover .flipbox-front{-webkit-transform:translateX(0);transform:translateX(0);opacity:0}.magee-flipbox-wrap.slide-left .flipbox-back{-webkit-transform:translateX(-50%);transform:translateX(-50%);opacity:0}.magee-flipbox-wrap.slide-left:hover .flipbox-back{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}.magee-flipbox-wrap.slide-left .slide-left-touchstart-front{-webkit-transform:translateX(0);transform:translateX(0);opacity:0}.magee-flipbox-wrap.slide-left .slide-left-touchstart-back{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}.magee-flipbox-wrap.slide-left .slide-left-touchend-front{-webkit-transform:translateX(0)!important;transform:translateX(0)!important;opacity:1!important}.magee-flipbox-wrap.slide-left .slide-left-touchend-back{-webkit-transform:translateX(-50%)!important;transform:translateX(-50%)!important;opacity:0!important}.magee-flipbox-wrap.slide-right:hover .flipbox-front{-webkit-transform:translateX(0);transform:translateX(0);opacity:0}.magee-flipbox-wrap.slide-right .flipbox-back{-webkit-transform:translateX(50%);transform:translateX(50%);opacity:0}.magee-flipbox-wrap.slide-right:hover .flipbox-back{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}.magee-flipbox-wrap.slide-right .slide-right-touchstart-front{-webkit-transform:translateX(0);transform:translateX(0);opacity:0}.magee-flipbox-wrap.slide-right .slide-right-touchstart-back{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}.magee-flipbox-wrap.slide-right .slide-right-touchend-front{-webkit-transform:translateX(0)!important;transform:translateX(0)!important;opacity:1!important}.magee-flipbox-wrap.slide-right .slide-right-touchend-back{-webkit-transform:translateX(10%)!important;transform:translateX(10%)!important;opacity:0!important}.magee-flipbox-wrap.slide-top:hover .flipbox-front{-webkit-transform:translateY(0);transform:translateY(0);opacity:0}.magee-flipbox-wrap.slide-top .flipbox-back{-webkit-transform:translateY(-50%);transform:translateY(-50%);opacity:0}.magee-flipbox-wrap.slide-top:hover .flipbox-back{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}.magee-flipbox-wrap.slide-top .slide-top-touchstart-front{-webkit-transform:translateY(0);transform:translateY(0);opacity:0}.magee-flipbox-wrap.slide-top .slide-top-touchstart-back{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}.magee-flipbox-wrap.slide-top .slide-top-touchend-front{-webkit-transform:translateY(0)!important;transform:translateY(0)!important;opacity:1!important}.magee-flipbox-wrap.slide-top .slide-top-touchend-back{-webkit-transform:translateY(-50%)!important;transform:translateY(-50%)!important;opacity:0!important}.magee-flipbox-wrap.slide-bottom:hover .flipbox-front{-webkit-transform:translateY(0);transform:translateY(0);opacity:0}.magee-flipbox-wrap.slide-bottom .flipbox-back{-webkit-transform:translateY(50%);transform:translateY(50%);opacity:0}.magee-flipbox-wrap.slide-bottom:hover .flipbox-back{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}.magee-flipbox-wrap.slide-bottom .slide-bottom-touchstart-front{-webkit-transform:translateY(0);transform:translateY(0);opacity:0}.magee-flipbox-wrap.slide-bottom .slide-bottom-touchstart-back{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}.magee-flipbox-wrap.slide-bottom .slide-bottom-touchend-front{-webkit-transform:translateY(0)!important;transform:translateY(0)!important;opacity:1!important}.magee-flipbox-wrap.slide-bottom .slide-bottom-touchend-back{-webkit-transform:translateY(50%)!important;transform:translateY(50%)!important;opacity:0!important}.magee-flipbox-wrap.flip-bottom .flipbox-back{-webkit-transform-origin:0% 100%;-moz-transform-origin:0% 100%;-ms-transform-origin:0% 100%;-o-transform-origin:0% 100%;transform-origin:0% 100%;-webkit-transform:rotateX(-270deg);-moz-transform:rotateX(-270deg);-ms-transform:rotateX(-270deg);-o-transform:rotateX(-270deg);transform:rotateX(-270deg);-webkit-backface-visibility:visible;-moz-backface-visibility:visible;-o-backface-visibility:visible;backface-visibility:visible}.magee-flipbox-wrap.flip-bottom:hover .flipbox-back{-webkit-transform:rotateX(0);-moz-transform:rotateX(0);-ms-transform:rotateX(0);-o-transform:rotateX(0);transform:rotateX(0)}.magee-flipbox-wrap.flip-bottom .flip-bottom-touchstart-back{-webkit-transform:rotateX(0);-moz-transform:rotateX(0);-ms-transform:rotateX(0);-o-transform:rotateX(0);transform:rotateX(0)}.magee-flipbox-wrap.flip-bottom .flip-bottom-touchend-back{-webkit-transform-origin:0% 100%!important;-moz-transform-origin:0% 100%!important;-ms-transform-origin:0% 100%!important;-o-transform-origin:0% 100%!important;transform-origin:0% 100%!important;-webkit-transform:rotateX(-270deg)!important;-moz-transform:rotateX(-270deg)!important;-ms-transform:rotateX(-270deg)!important;-o-transform:rotateX(-270deg)!important;transform:rotateX(-270deg)!important;-webkit-backface-visibility:visible!important;-moz-backface-visibility:visible!important;-o-backface-visibility:visible!important;backface-visibility:visible!important}.magee-flipbox-wrap.flip-top .flipbox-back{-webkit-transform-origin:0% 0%;-moz-transform-origin:0% 0%;-ms-transform-origin:0% 0%;-o-transform-origin:0% 0%;transform-origin:0% 0%;-webkit-transform:rotateX(270deg);-moz-transform:rotateX(270deg);-ms-transform:rotateX(270deg);-o-transform:rotateX(270deg);transform:rotateX(270deg);-webkit-backface-visibility:visible;-moz-backface-visibility:visible;-o-backface-visibility:visible;backface-visibility:visible}.magee-flipbox-wrap.flip-top:hover .flipbox-back{-webkit-transform:rotateX(0);-moz-transform:rotateX(0);-ms-transform:rotateX(0);-o-transform:rotateX(0);transform:rotateX(0)}.magee-flipbox-wrap.flip-top .flip-top-touchstart-back{-webkit-transform:rotateX(0);-moz-transform:rotateX(0);-ms-transform:rotateX(0);-o-transform:rotateX(0);transform:rotateX(0)}.magee-flipbox-wrap.flip-top .flip-top-touchend-back{-webkit-transform-origin:0% 0%!important;-moz-transform-origin:0% 0%!important;-ms-transform-origin:0% 0%!important;-o-transform-origin:0% 0%!important;transform-origin:0% 0%!important;-webkit-transform:rotateX(270deg)!important;-moz-transform:rotateX(270deg)!important;-ms-transform:rotateX(270deg)!important;-o-transform:rotateX(270deg)!important;transform:rotateX(270deg)!important;-webkit-backface-visibility:visible!important;-moz-backface-visibility:visible!important;-o-backface-visibility:visible!important;backface-visibility:visible!important}.magee-flipbox-wrap.flip-left .flipbox-back{-moz-transform-origin:0%;-ms-transform-origin:0%;-o-transform-origin:0%;-webkit-transform-origin:0%;transform-origin:0%;-webkit-transform:rotateY(-270deg);-moz-transform:rotateY(-270deg);-ms-transform:rotateY(-270deg);-o-transform:rotateY(-270deg);transform:rotateY(-270deg);-webkit-backface-visibility:visible;-moz-backface-visibility:visible;-o-backface-visibility:visible;backface-visibility:visible}.magee-flipbox-wrap.flip-left:hover .flipbox-back{-webkit-transform:rotateY(0);-moz-transform:rotateY(0);-ms-transform:rotateY(0);-o-transform:rotateY(0);transform:rotateY(0)}.magee-flipbox-wrap.flip-left .flip-left-touchstart-back{-webkit-transform:rotateY(0);-moz-transform:rotateY(0);-ms-transform:rotateY(0);-o-transform:rotateY(0);transform:rotateY(0)}.magee-flipbox-wrap.flip-left .flip-left-touchend-back{-webkit-transform-origin:0%!important;-moz-transform-origin:0%!important;-ms-transform-origin:0%!important;-o-transform-origin:0%!important;transform-origin:0%!important;-webkit-transform:rotateY(-270deg)!important;-moz-transform:rotateY(-270deg)!important;-ms-transform:rotateY(-270deg)!important;-o-transform:rotateY(-270deg)!important;transform:rotateY(-270deg)!important;-webkit-backface-visibility:visible!important;-moz-backface-visibility:visible!important;-o-backface-visibility:visible!important;backface-visibility:visible!important}.magee-flipbox-wrap.flip-right .flipbox-back{-moz-transform-origin:100%;-ms-transform-origin:100%;-o-transform-origin:100%;-webkit-transform-origin:100%;transform-origin:100%;-webkit-transform:rotateY(270deg);-moz-transform:rotateY(270deg);-ms-transform:rotateY(270deg);-o-transform:rotateY(270deg);transform:rotateY(270deg);-webkit-backface-visibility:visible;-moz-backface-visibility:visible;-o-backface-visibility:visible;backface-visibility:visible}.magee-flipbox-wrap.flip-right:hover .flipbox-back{-webkit-transform:rotateY(0);-moz-transform:rotateY(0);-ms-transform:rotateY(0);-o-transform:rotateY(0);transform:rotateY(0)}.magee-flipbox-wrap.flip-right .flip-right-touchstart-back{-webkit-transform:rotateY(0);-moz-transform:rotateY(0);-ms-transform:rotateY(0);-o-transform:rotateY(0);transform:rotateY(0)}.magee-flipbox-wrap.flip-right .flip-right-touchend-back{-webkit-transform-origin:100%!important;-moz-transform-origin:100%!important;-ms-transform-origin:100%!important;-o-transform-origin:100%!important;transform-origin:100%!important;-webkit-transform:rotateY(270deg)!important;-moz-transform:rotateY(270deg)!important;-ms-transform:rotateY(270deg)!important;-o-transform:rotateY(270deg)!important;transform:rotateY(270deg)!important;-webkit-backface-visibility:visible!important;-moz-backface-visibility:visible!important;-o-backface-visibility:visible!important;backface-visibility:visible!important}.magee-icon{margin-right:10px;margin-bottom:10px}.magee-icon:last-child{margin-right:0}.magee-icon.square{border-radius:0}.magee-icon.rounded{border-radius:5px}.magee-icon.circle{border-radius:50%}.magee-icon.icon-boxed{width:2em;height:2em;line-height:2;text-align:center;color:#fff;background-color:#f5f5f5;border:1px solid transparent}.magee-icon.icon-3d{box-shadow:0 2px 0 0 #e5e5e5}.magee-fa-icon{font-size:inherit}.magee-fa-icon.icon-boxed{font-size:inherit;width:2em;height:2em;line-height:2em;text-align:center;color:#fff;background-color:#777;border:0;border-radius:5px}.magee-section{position:relative;-webkit-background-size:cover;-ms-background-size:cover;-o-background-size:cover;background-size:cover}.fullheight{min-height:100vh;display:table;width:100%}.magee-section.fullheight .section-content{display:table-cell;width:100%;position:relative;overflow:hidden}.magee-section.verticalmiddle .section-content{vertical-align:middle}.magee-section .background-media,.magee-section .background-overlay{position:absolute;width:100%;left:0;top:0;bottom:0;overflow:hidden}.gmnoprint img{max-width:none}.magee-slider .item img{width:100%}.magee-slider .carousel-control span{position:absolute;top:40%}.magee-slider .carousel-indicators{display:none}.magee-slider .carousel-control span::before{color:#fff;font-size:50px}.magee-heading{border-color:#555}.magee-heading .heading-inner{display:inline-block;border-style:solid;border-color:inherit}.magee-heading.heading-border .heading-inner{padding:5px 0;border-top-width:2px;border-bottom-width:2px;border-left-width:0!important;border-right-width:0!important}.magee-heading.heading-boxed .heading-inner{padding:10px;border-width:2px}.magee-heading.heading-boxed-reverse{color:#fff}.magee-heading.heading-boxed-reverse .heading-inner{padding:10px;box-shadow:0 0 0 2px #fff inset;border-width:2px;background-color:#555}.magee-heading.heading-doubleline{overflow:hidden}.magee-heading.heading-doubleline .heading-inner{position:relative;z-index:9;padding-bottom:5px}.magee-heading.heading-doubleline .heading-inner:after,.magee-heading.heading-doubleline .heading-inner:before{content:"";position:absolute;width:2000px;height:12px;border-top-width:1px;border-bottom-width:1px;border-left-width:0!important;border-right-width:0!important;border-style:solid;border-color:inherit;top:50%;margin-top:-6px;z-index:-1}.magee-heading.heading-doubleline .heading-inner:before{right:100%;margin-right:10px}.magee-heading.heading-doubleline .heading-inner:after{left:100%;margin-left:10px}.magee-heading.heading-charactershadow .heading-inner{position:relative;z-index:9;padding:2em 0 1em}.magee-heading.heading-charactershadow .heading-inner:before{content:"T";position:absolute;top:0;z-index:-1;color:inherit;opacity:.2;font-size:4em;width:100%}.table,.table td,.table th{border-width:0}.table.table-bordered{border-width:1px}.magee-table .table thead th{background-color:#fdd200;color:#fff;border-bottom-width:0}.img-side{padding:0;position:absolute;top:0;height:100%;overflow:hidden;z-index:100}.img-side.img-right{right:0}.img-side.img-left{left:0}.magee-twitter-feed{list-style-type:none;margin:0}.magee-twitter-feed li{list-style-type:none;font-style:italic;margin:0 0 12px 0;padding:0 0 0 25px;position:relative}.magee-twitter-feed li:before{position:absolute;font:normal normal normal 20px/25px FontAwesome;content:"\f099";left:0;top:0}.magee-twitter-feed li span{display:block;font-size:.8em;font-style:normal}.magee-label{background-color:#fdd200;padding:0 3px}.video-wrap{width:100%}.video-wrap iframe{width:100%;height:100%}.magee-wheather-box{background-color:#fdd200;color:#fff;padding:10px}.magee-wheather-box h2{color:#fff;margin-top:0;margin-bottom:5px}.magee-wheather .w-today{width:100%;overflow:hidden}.magee-wheather .w-icon-wrap{float:right;width:50%;text-align:center}.magee-wheather .w-icon-wrap i{font-size:3.4em;line-height:1.5}.magee-wheather .w-icon-wrap .w-text{margin-bottom:0;margin-top:5px}.magee-wheather .w-temp{float:left;width:50%;text-align:center;font-size:4em;line-height:1.5;margin-bottom:0}.magee-wheather .w-temp sup{opacity:.8;font-size:60%}.magee-wheather-box{background-color:#fdd200;color:#fff;padding:10px;font-size:inherit}.magee-wheather-box h2{color:#fff;margin-top:0;margin-bottom:5px}.magee-wheather .w-today{width:100%;overflow:hidden}.magee-wheather .w-icon-wrap{float:right;width:50%;text-align:center}.magee-wheather .w-icon-wrap i{font-size:3.4em;line-height:1.5}.magee-wheather .w-icon-wrap .w-text{margin-bottom:0;margin-top:5px;font-size:inherit}.magee-wheather .w-temp{float:left;width:50%;text-align:center;font-size:4em;line-height:1.5;margin-bottom:0}.magee-wheather .w-temp sup{opacity:.8;font-size:60%}.magee-wheather .w-detail{overflow:hidden;width:100%}.magee-wheather p.w-day{font-weight:700;font-size:inherit}.magee-wheather .w-detail ul{width:33%;float:left;list-style-type:none;margin:0}.magee-wheather .w-detail li{display:block;line-height:24px}.magee-wheather .w-forecasts{width:100%;margin-top:15px;border:0;table-layout:auto;border-collapse:collapse}.magee-wheather .w-forecasts tr{border-top:1px solid rgba(255,255,255,.15)}.magee-wheather .w-forecasts td{border:0;padding:5px 0;font-weight:700;color:#fff}.magee-wheather .w-forecasts td+td{min-width:40px;text-align:center;font-weight:400}.magee-blockquote blockquote{padding:10px 20px 10px 45px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee;position:relative}.magee-blockquote blockquote ol:last-child,.magee-blockquote blockquote p:last-child,.magee-blockquote blockquote ul:last-child{margin-bottom:0}.magee-blockquote blockquote .small,.magee-blockquote blockquote footer,.magee-blockquote blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#777}.magee-blockquote blockquote .small:before,.magee-blockquote blockquote footer:before,.magee-blockquote blockquote small:before{content:'\2014 \00A0'}.magee-blockquote .blockquote-reverse,.magee-blockquote blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0}.blockquote-reverse small:before,.magee-blockquote .blockquote-reverse .small:before,.magee-blockquote .blockquote-reverse footer:before,.magee-blockquote blockquote.pull-right .small:before,.magee-blockquote blockquote.pull-right footer:before,.magee-blockquote blockquote.pull-right small:before{content:''}.magee-blockquote .blockquote-reverse .small:after,.magee-blockquote .blockquote-reverse footer:after,.magee-blockquote .blockquote-reverse small:after,.magee-blockquote blockquote.pull-right .small:after,.magee-blockquote blockquote.pull-right footer:after,.magee-blockquote blockquote.pull-right small:after{content:'\00A0 \2014'}.magee-blockquote blockquote::before{font-family:Arial;content:"\201C";color:#78c0a8;font-size:4em;position:absolute;left:10px;top:0;line-height:1}.magee-blockquote blockquote footer a{color:#78c0a8}.magee-shortcode .tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;opacity:0;line-break:auto}.magee-shortcode .tooltip.in{opacity:.9}.magee-shortcode .tooltip.top{padding:5px 0;margin-top:-3px}.magee-shortcode .tooltip.right{padding:0 5px;margin-left:3px}.magee-shortcode .tooltip.bottom{padding:5px 0;margin-top:3px}.magee-shortcode .tooltip.left{padding:0 5px;margin-left:-3px}.magee-shortcode .tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.magee-shortcode .tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.magee-shortcode .tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.magee-shortcode .tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.magee-shortcode .tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.magee-shortcode .tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.magee-shortcode .tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.magee-shortcode .tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.magee-shortcode .tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.magee-shortcode .tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.magee-popover .popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);line-break:auto}.magee-popover .popover.top{margin-top:-10px}.magee-popover .popover.right{margin-left:10px}.magee-popover .popover.bottom{margin-top:10px}.magee-popover .popover.left{margin-left:-10px}.magee-popover .popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.magee-popover .popover-content{padding:9px 14px}.magee-popover .popover>.arrow,.magee-popover .popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.magee-popover .popover>.arrow{border-width:11px}.magee-popover .popover>.arrow:after{content:"";border-width:10px}.magee-popover .popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.magee-popover .popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.magee-popover .popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.magee-popover .popover.right>.arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.magee-popover .popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.magee-popover .popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}.magee-popover .popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.magee-popover .popover.left>.arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.magee-table table{background-color:transparent}.magee-table caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}.magee-table th{text-align:left}.magee-table table{width:100%;max-width:100%;margin-bottom:20px}.magee-table table>tbody>tr>td,.magee-table table>tbody>tr>th,.magee-table table>tfoot>tr>td,.magee-table table>tfoot>tr>th,.magee-table table>thead>tr>td,.magee-table table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.magee-table table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.magee-table table>caption+thead>tr:first-child>td,.magee-table table>caption+thead>tr:first-child>th,.magee-table table>colgroup+thead>tr:first-child>td,.magee-table table>colgroup+thead>tr:first-child>th,.magee-table table>thead:first-child>tr:first-child>td,.magee-table table>thead:first-child>tr:first-child>th{border-top:0}.magee-table table>tbody+tbody{border-top:2px solid #ddd}.magee-table table .magee-table table{background-color:#fff}.magee-table .table-condensed>tbody>tr>td,.magee-table .table-condensed>tbody>tr>th,.magee-table .table-condensed>tfoot>tr>td,.magee-table .table-condensed>tfoot>tr>th,.magee-table .table-condensed>thead>tr>td,.magee-table .table-condensed>thead>tr>th{padding:5px}.magee-table .table-bordered{border:1px solid #ddd}.magee-table .table-bordered>tbody>tr>td,.magee-table .table-bordered>tbody>tr>th,.magee-table .table-bordered>tfoot>tr>td,.magee-table .table-bordered>tfoot>tr>th,.magee-table .table-bordered>thead>tr>td,.magee-table .table-bordered>thead>tr>th{border:1px solid #ddd}.magee-table .table-bordered>thead>tr>td,.magee-table .table-bordered>thead>tr>th{border-bottom-width:2px}.magee-table .table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.magee-table .magee-table .table-hover>tbody>tr:hover{background-color:#f5f5f5}.magee-table table col[class*=col-]{position:static;display:table-column;float:none}.magee-table table td[class*=col-],.magee-table table th[class*=col-]{position:static;display:table-cell;float:none}.magee-table table>tbody>tr.active>td,.magee-table table>tbody>tr.active>th,.magee-table table>tbody>tr>td.active,.magee-table table>tbody>tr>th.active,.magee-table table>tfoot>tr.active>td,.magee-table table>tfoot>tr.active>th,.magee-table table>tfoot>tr>td.active,.magee-table table>tfoot>tr>th.active,.magee-table table>thead>tr.active>td,.magee-table table>thead>tr.active>th,.magee-table table>thead>tr>td.active,.magee-table table>thead>tr>th.active{background-color:#f5f5f5}.magee-table .table-hover>tbody>tr.active:hover>td,.magee-table .table-hover>tbody>tr.active:hover>th,.magee-table .table-hover>tbody>tr:hover>.active,.magee-table .table-hover>tbody>tr>td.active:hover,.magee-table .table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.magee-table table>tbody>tr.success>td,.magee-table table>tbody>tr.success>th,.magee-table table>tbody>tr>td.success,.magee-table table>tbody>tr>th.success,.magee-table table>tfoot>tr.success>td,.magee-table table>tfoot>tr.success>th,.magee-table table>tfoot>tr>td.success,.magee-table table>tfoot>tr>th.success,.magee-table table>thead>tr.success>td,.magee-table table>thead>tr.success>th,.magee-table table>thead>tr>td.success,.magee-table table>thead>tr>th.success{background-color:#dff0d8}.magee-table .table-hover>tbody>tr.success:hover>td,.magee-table .table-hover>tbody>tr.success:hover>th,.magee-table .table-hover>tbody>tr:hover>.success,.magee-table .table-hover>tbody>tr>td.success:hover,.magee-table .table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.magee-table table>tbody>tr.info>td,.magee-table table>tbody>tr.info>th,.magee-table table>tbody>tr>td.info,.magee-table table>tbody>tr>th.info,.magee-table table>tfoot>tr.info>td,.magee-table table>tfoot>tr.info>th,.magee-table table>tfoot>tr>td.info,.magee-table table>tfoot>tr>th.info,.magee-table table>thead>tr.info>td,.magee-table table>thead>tr.info>th,.magee-table table>thead>tr>td.info,.magee-table table>thead>tr>th.info{background-color:#d9edf7}.magee-table .table-hover>tbody>tr.info:hover>td,.magee-table .table-hover>tbody>tr.info:hover>th,.magee-table .table-hover>tbody>tr:hover>.info,.magee-table .table-hover>tbody>tr>td.info:hover,.magee-table .table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.magee-table table>tbody>tr.warning>td,.magee-table table>tbody>tr.warning>th,.magee-table table>tbody>tr>td.warning,.magee-table table>tbody>tr>th.warning,.magee-table table>tfoot>tr.warning>td,.magee-table table>tfoot>tr.warning>th,.magee-table table>tfoot>tr>td.warning,.magee-table table>tfoot>tr>th.warning,.magee-table table>thead>tr.warning>td,.magee-table table>thead>tr.warning>th,.magee-table table>thead>tr>td.warning,.magee-table table>thead>tr>th.warning{background-color:#fcf8e3}.magee-table .table-hover>tbody>tr.warning:hover>td,.magee-table .table-hover>tbody>tr.warning:hover>th,.magee-table .table-hover>tbody>tr:hover>.warning,.magee-table .table-hover>tbody>tr>td.warning:hover,.magee-table .table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.magee-table table>tbody>tr.danger>td,.magee-table table>tbody>tr.danger>th,.magee-table table>tbody>tr>td.danger,.magee-table table>tbody>tr>th.danger,.magee-table table>tfoot>tr.danger>td,.magee-table table>tfoot>tr.danger>th,.magee-table table>tfoot>tr>td.danger,.magee-table table>tfoot>tr>th.danger,.magee-table table>thead>tr.danger>td,.magee-table table>thead>tr.danger>th,.magee-table table>thead>tr>td.danger,.magee-table table>thead>tr>th.danger{background-color:#f2dede}.magee-table .table-hover>tbody>tr.danger:hover>td,.magee-table .table-hover>tbody>tr.danger:hover>th,.magee-table .table-hover>tbody>tr:hover>.danger,.magee-table .table-hover>tbody>tr>td.danger:hover,.magee-table .table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.magee-table .table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.magee-table .table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.magee-table .table-responsive .table{margin-bottom:0}.magee-table .table-responsive .table>tbody>tr>td,.magee-table .table-responsive .table>tbody>tr>th,.magee-table .table-responsive .table>tfoot>tr>td,.magee-table .table-responsive .table>tfoot>tr>th,.magee-table .table-responsive .table>thead>tr>td,.magee-table .table-responsive .table>thead>tr>th{white-space:nowrap}.magee-table .table-responsive>.table-bordered{border:0}.magee-table .table-responsive>.table-bordered>tbody>tr>td:first-child,.magee-table .table-responsive>.table-bordered>tbody>tr>th:first-child,.magee-table .table-responsive>.table-bordered>tfoot>tr>td:first-child,.magee-table .table-responsive>.table-bordered>tfoot>tr>th:first-child,.magee-table .table-responsive>.table-bordered>thead>tr>td:first-child,.magee-table .table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.magee-table .table-responsive>.table-bordered>tbody>tr>td:last-child,.magee-table .table-responsive>.table-bordered>tbody>tr>th:last-child,.magee-table .table-responsive>.table-bordered>tfoot>tr>td:last-child,.magee-table .table-responsive>.table-bordered>tfoot>tr>th:last-child,.magee-table .table-responsive>.table-bordered>thead>tr>td:last-child,.magee-table .table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.magee-table .table-responsive>.table-bordered>tbody>tr:last-child>td,.magee-table .table-responsive>.table-bordered>tbody>tr:last-child>th,.magee-table .table-responsive>.table-bordered>tfoot>tr:last-child>td,.magee-table .table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}
|
1 |
+
.container{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container{max-width:540px}}@media (min-width:768px){.container{max-width:720px}}@media (min-width:992px){.container{max-width:960px}}@media (min-width:1200px){.container{max-width:1140px}}.container-fluid{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-1_7,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-1_5,.col-md-1_7,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px;webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.col{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-ms-flex-order:-1;order:-1}.order-last{-ms-flex-order:13;order:13}.order-0{-ms-flex-order:0;order:0}.order-1{-ms-flex-order:1;order:1}.order-2{-ms-flex-order:2;order:2}.order-3{-ms-flex-order:3;order:3}.order-4{-ms-flex-order:4;order:4}.order-5{-ms-flex-order:5;order:5}.order-6{-ms-flex-order:6;order:6}.order-7{-ms-flex-order:7;order:7}.order-8{-ms-flex-order:8;order:8}.order-9{-ms-flex-order:9;order:9}.order-10{-ms-flex-order:10;order:10}.order-11{-ms-flex-order:11;order:11}.order-12{-ms-flex-order:12;order:12}.offset-1{margin-left:8.333333%}.offset-2{margin-left:16.666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.333333%}.offset-5{margin-left:41.666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.333333%}.offset-8{margin-left:66.666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.333333%}.offset-11{margin-left:91.666667%}@media (min-width:576px){.col-sm{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-sm-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-sm-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-sm-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-sm-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-sm-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-sm-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-sm-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-sm-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-ms-flex-order:-1;order:-1}.order-sm-last{-ms-flex-order:13;order:13}.order-sm-0{-ms-flex-order:0;order:0}.order-sm-1{-ms-flex-order:1;order:1}.order-sm-2{-ms-flex-order:2;order:2}.order-sm-3{-ms-flex-order:3;order:3}.order-sm-4{-ms-flex-order:4;order:4}.order-sm-5{-ms-flex-order:5;order:5}.order-sm-6{-ms-flex-order:6;order:6}.order-sm-7{-ms-flex-order:7;order:7}.order-sm-8{-ms-flex-order:8;order:8}.order-sm-9{-ms-flex-order:9;order:9}.order-sm-10{-ms-flex-order:10;order:10}.order-sm-11{-ms-flex-order:11;order:11}.order-sm-12{-ms-flex-order:12;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.333333%}.offset-sm-2{margin-left:16.666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.333333%}.offset-sm-5{margin-left:41.666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.333333%}.offset-sm-8{margin-left:66.666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.333333%}.offset-sm-11{margin-left:91.666667%}}@media (min-width:768px){.col-md{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-md-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-md-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-md-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-md-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-md-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-md-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-md-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-md-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-md-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.col-md-1_5{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.col-md-1_7{-ms-flex:0 0 14.2857%;flex:0 0 14.2857%;max-width:14.2857%}.order-md-first{-ms-flex-order:-1;order:-1}.order-md-last{-ms-flex-order:13;order:13}.order-md-0{-ms-flex-order:0;order:0}.order-md-1{-ms-flex-order:1;order:1}.order-md-2{-ms-flex-order:2;order:2}.order-md-3{-ms-flex-order:3;order:3}.order-md-4{-ms-flex-order:4;order:4}.order-md-5{-ms-flex-order:5;order:5}.order-md-6{-ms-flex-order:6;order:6}.order-md-7{-ms-flex-order:7;order:7}.order-md-8{-ms-flex-order:8;order:8}.order-md-9{-ms-flex-order:9;order:9}.order-md-10{-ms-flex-order:10;order:10}.order-md-11{-ms-flex-order:11;order:11}.order-md-12{-ms-flex-order:12;order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.333333%}.offset-md-2{margin-left:16.666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.333333%}.offset-md-5{margin-left:41.666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.333333%}.offset-md-8{margin-left:66.666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.333333%}.offset-md-11{margin-left:91.666667%}}@media (min-width:992px){.col-lg{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-lg-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-lg-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-lg-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-lg-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-lg-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-lg-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-lg-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-lg-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.col-lg-1_7{-ms-flex:0 0 14.2857%;flex:0 0 14.2857%;max-width:14.2857%}.order-lg-first{-ms-flex-order:-1;order:-1}.order-lg-last{-ms-flex-order:13;order:13}.order-lg-0{-ms-flex-order:0;order:0}.order-lg-1{-ms-flex-order:1;order:1}.order-lg-2{-ms-flex-order:2;order:2}.order-lg-3{-ms-flex-order:3;order:3}.order-lg-4{-ms-flex-order:4;order:4}.order-lg-5{-ms-flex-order:5;order:5}.order-lg-6{-ms-flex-order:6;order:6}.order-lg-7{-ms-flex-order:7;order:7}.order-lg-8{-ms-flex-order:8;order:8}.order-lg-9{-ms-flex-order:9;order:9}.order-lg-10{-ms-flex-order:10;order:10}.order-lg-11{-ms-flex-order:11;order:11}.order-lg-12{-ms-flex-order:12;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.333333%}.offset-lg-2{margin-left:16.666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.333333%}.offset-lg-5{margin-left:41.666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.333333%}.offset-lg-8{margin-left:66.666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.333333%}.offset-lg-11{margin-left:91.666667%}}@media (min-width:1200px){.col-xl{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-xl-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-xl-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-xl-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-xl-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-xl-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-xl-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-xl-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-xl-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-ms-flex-order:-1;order:-1}.order-xl-last{-ms-flex-order:13;order:13}.order-xl-0{-ms-flex-order:0;order:0}.order-xl-1{-ms-flex-order:1;order:1}.order-xl-2{-ms-flex-order:2;order:2}.order-xl-3{-ms-flex-order:3;order:3}.order-xl-4{-ms-flex-order:4;order:4}.order-xl-5{-ms-flex-order:5;order:5}.order-xl-6{-ms-flex-order:6;order:6}.order-xl-7{-ms-flex-order:7;order:7}.order-xl-8{-ms-flex-order:8;order:8}.order-xl-9{-ms-flex-order:9;order:9}.order-xl-10{-ms-flex-order:10;order:10}.order-xl-11{-ms-flex-order:11;order:11}.order-xl-12{-ms-flex-order:12;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.333333%}.offset-xl-2{margin-left:16.666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.333333%}.offset-xl-5{margin-left:41.666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.333333%}.offset-xl-8{margin-left:66.666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.333333%}.offset-xl-11{margin-left:91.666667%}}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role=button]{cursor:pointer}.border-right{border-right:1px solid #f5f5f5}.text-light{color:#fff}.text-light,.text-light a,.text-light h1,.text-light h2,.text-light h3,.text-light h4,.text-light h5,.text-light h6,a.text-light,h1.text-light,h2.text-light,h3.text-light,h4.text-light,h5.text-light,h6.text-light{color:#fff!important}.text-light a:hover,a.text-light:hover{color:rgba(255,255,255,.7)!important}.text-primary{color:#fdd200}.text-dark{color:#222}.magee-dropcap{position:relative;float:left;top:.05em;margin-right:.15em;padding:0;line-height:.8;font-size:5em;text-transform:uppercase;color:#fdd200}.dropcap-boxed{padding:.05em .1em .1em .1em;background-color:#fdd200;color:#fff}.magee-highlight{background-color:#fdd200;color:#fff;padding:0 .3em}.tooltip-text{color:#fdd200}.tooltip-text:hover{cursor:pointer}.box-shadow{box-shadow:1px 1px 5px 0 rgba(0,0,0,.1)}.magee-btn-wrapper{display:inline}a.btn-normal:hover,a.magee-btn-normal:hover{text-decoration:none}.btn-normal,.magee-btn-normal{position:relative;display:inline-block;text-align:center;vertical-align:middle;white-space:nowrap;cursor:pointer;color:#fff;background-color:#fdd200;line-height:1;padding:.9em 1.6em;border-radius:0;border-width:0;border-style:solid;text-decoration:none}.btn-normal,.magee-btn-normal:active,.magee-btn-normal:focus,.magee-btn-normal:hover{background-color:#f6cc00;color:#fff}.btn-md{font-size:1em}.btn-large,.btn-lg{font-size:1.2em}.btn-sm,.btn-small{font-size:.8em}.btn-xl{font-size:1.5em}.btn-square{border-radius:0}.btn-rounded{border-radius:5px}.btn-full-rounded{border-radius:50px}.btn-text-shadow{text-shadow:0 1px rgba(0,0,0,.4)}.btn-gradient{background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.05)),to(rgba(0,0,0,.1)));background-image:-webkit-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,.1));background-image:-moz-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,.1));background-image:-ms-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,.1));background-image:-o-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,.1));background-image:linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,.1))}.btn-2d{text-shadow:0 1px rgba(0,0,0,.4);box-shadow:0 0 0 1px rgba(0,0,0,.2) inset;background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.05)),to(rgba(0,0,0,.1)));background-image:-webkit-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,.1));background-image:-moz-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,.1));background-image:-ms-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,.1));background-image:-o-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,.1));background-image:linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,.1))}.btn-3d{text-shadow:0 1px rgba(0,0,0,.4);box-shadow:0 3px 0 0 #c5a300}.magee-btn-normal.btn-light{background-color:#fff;color:#000}.magee-btn-normal.btn-dark{background-color:#000;color:#fff}.magee-btn-normal.btn-line{background-color:transparent;color:#fdd200;border:2px solid #fdd200}.magee-btn-normal.btn-line:active,.magee-btn-normal.btn-line:focus,.magee-btn-normal.btn-line:hover{background-color:rgba(255,255,255,.1)}.magee-btn-normal.btn-line.btn-light{border-color:#fff;color:#fff;background-color:transparent}.magee-btn-normal.btn-line.btn-light:active,.magee-btn-normal.btn-line.btn-light:focus,.magee-btn-normal.btn-line.btn-light:hover{background-color:rgba(255,255,255,.1)}.magee-btn-normal.btn-line.btn-dark{border-color:#000;color:#000;background-color:transparent}.magee-btn-normal.btn-line.btn-dark:active,.magee-btn-normal.btn-line.btn-dark:focus,.magee-btn-normal.btn-line.btn-dark:hover{background-color:#000;color:#fff}.btn-block{display:block}.magee-feature-box h3{font-size:18px}.magee-feature-box .feature-content p{margin-bottom:.8em}.magee-feature-box.style1,.magee-feature-box.style4{text-align:center}.magee-feature-box.style2 h3,.magee-feature-box.style3 h3{text-align:left}.magee-feature-box.style2 .feature-content,.magee-feature-box.style3 .feature-content{text-align:right}.magee-feature-box.style2 .feature-content p,.magee-feature-box.style3 .feature-content p{text-align:left}.magee-feature-box.style2.reverse h3,.magee-feature-box.style3.reverse h3{text-align:right}.magee-feature-box.style2.reverse .feature-content,.magee-feature-box.style3.reverse .feature-content{text-align:left}.magee-feature-box.style2.reverse .feature-content p,.magee-feature-box.style3.reverse .feature-content p{text-align:right}.magee-feature-box img{display:block}.magee-feature-box.style1 .icon-box,.magee-feature-box.style1 img,.magee-feature-box.style4 .icon-box,.magee-feature-box.style4 img{margin:0 auto}.magee-feature-box.style1 .icon-box .fa-fw,.magee-feature-box.style4 .icon-box .fa-fw{margin-left:-.142857em}.magee-feature-box.style2{position:relative;min-height:80px;padding-left:95px}.magee-feature-box.style2 .icon-box,.magee-feature-box.style2 img{position:absolute;top:0;left:0}.magee-feature-box.style2.reverse{padding-left:0;padding-right:95px}.magee-feature-box.style2.reverse .icon-box,.magee-feature-box.style2.reverse img{right:0;left:auto}.magee-feature-box.style3 .icon-box,.magee-feature-box.style3 img{float:left;margin-bottom:10px}.magee-feature-box.style3.reverse .icon-box,.magee-feature-box.style3.reverse img{float:right}.magee-feature-box.style3 h3{clear:none;float:left;margin:0 0 0 15px;line-height:80px}.magee-feature-box.style3.reverse h3{float:right;margin-right:15px;margin-left:0}.magee-feature-box.style3 p{clear:left}.magee-feature-box.style3.reverse p{clear:right}.magee-feature-box.style4{background-color:#f5f5f5;position:relative;padding:50px 10px 10px;margin-top:40px}.magee-feature-box.style4 .icon-box,.magee-feature-box.style4 img{position:absolute;top:-40px;left:50%;margin-left:-40px;background-color:#fff}.icon-box{text-align:center;color:#222;font-size:40px;line-height:1.5em;width:1.5em;height:1.5em}.icon-box.primary{color:#fdd200}.icon-box.light{color:#fff}.icon-box.icon-xl{font-size:80px}.icon-box.icon-lg{font-size:60px}.icon-box.icon-sm{font-size:20px}.icon-circle{border-radius:50%;border-style:solid;border-width:2px;border-color:#222;background-color:rgba(0,0,0,0);line-height:2.5em;width:2.5em;height:2.5em}.collapse{display:none}.collapse.in{display:block}.magee-accordion .panel{border-radius:0}.magee-accordion .panel{border:none;box-shadow:none;border-bottom:1px solid #ddd}.magee-accordion.panel-group .panel-heading+.panel-collapse>.list-group,.magee-accordion.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:none}.magee-accordion .panel-heading{padding:10px}.magee-accordion .panel-heading i{color:#777;margin-right:.5em}.magee-accordion .panel-body{padding:15px 10px}.magee-accordion .panel-default>.panel-heading{background-color:transparent;border:none}.magee-accordion .panel-group .panel+.panel{margin-top:0}.magee-accordion .panel-heading{position:relative;border:none;border-radius:0}.magee-accordion h4.panel-title{margin-top:0;margin-bottom:0;color:inherit;font-size:16px}a.accordion-toggle,a.accordion-toggle:hover{text-decoration:none}.magee-accordion .magee-accordion.style3 .panel-heading .accordion-toggle:after{display:none}.magee-accordion.style3 .panel-heading .accordion-toggle.collapsed:after{display:none}.magee-accordion.style3 .panel-heading .accordion-toggle:after{display:none}.magee-accordion.accordion-spacing .panel-heading{padding:15px}.magee-accordion.accordion-spacing .panel-default>.panel-heading{background-color:#fdfdfd}.magee-accordion.accordion-spacing .panel-heading:hover{background:#f8f8f8}.magee-accordion.accordion-spacing .panel-body{padding:15px}.magee-accordion.accordion-spacing .panel-heading .accordion-toggle:after{top:15px;right:15px}.magee-accordion.accordion-spacing .panel{border:1px solid #ddd;overflow:hidden;margin-bottom:10px}.magee-accordion.accordion-spacing .panel:last-child{border-bottom-width:1px}.magee-accordion.accordion-spacing.panel-group .panel+.panel{margin-top:0}.magee-accordion .panel-heading .accordion-toggle:after{position:absolute;display:block;right:10px;top:10px;width:16px;height:16px;content:"";text-align:center;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");transform:rotate(180deg);background-repeat:no-repeat;transition:transform .2s ease-in-out}.magee-accordion .panel-heading .accordion-toggle.collapsed:after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23777777'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");transform:rotate(0)}.magee-accordion.style2 .panel-heading .accordion-toggle:after{background-image:url("data:image/svg+xml;charset=UTF-8,%3csvg aria-hidden='true' focusable='false' data-prefix='fal' data-icon='minus' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512' class='svg-inline--fa fa-minus fa-w-12 fa-3x'%3e%3cpath fill='currentColor' d='M376 232H8c-4.42 0-8 3.58-8 8v32c0 4.42 3.58 8 8 8h368c4.42 0 8-3.58 8-8v-32c0-4.42-3.58-8-8-8z' class=''%3e%3c/path%3e%3c/svg%3e")}.magee-accordion.style2 .panel-heading .accordion-toggle.collapsed:after{background-image:url("data:image/svg+xml;charset=UTF-8,%3csvg aria-hidden='true' focusable='false' data-prefix='fal' data-icon='plus' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512' class='svg-inline--fa fa-plus fa-w-12 fa-3x'%3e%3cpath fill='currentColor' d='M376 232H216V72c0-4.42-3.58-8-8-8h-32c-4.42 0-8 3.58-8 8v160H8c-4.42 0-8 3.58-8 8v32c0 4.42 3.58 8 8 8h160v160c0 4.42 3.58 8 8 8h32c4.42 0 8-3.58 8-8V280h160c4.42 0 8-3.58 8-8v-32c0-4.42-3.58-8-8-8z' class=''%3e%3c/path%3e%3c/svg%3e")}.magee-accordion.accordion-boxed .panel-heading{padding:15px}.magee-accordion.accordion-boxed .panel-default>.panel-heading{background-color:#fdfdfd}.magee-accordion.accordion-boxed .panel-heading:hover{background:#f8f8f8}.magee-accordion.accordion-boxed .panel-body{padding:15px}.magee-accordion.accordion-boxed .panel-heading .accordion-toggle:after{top:15px;right:15px}.magee-accordion.accordion-boxed .panel{border:1px solid #ddd;border-bottom-width:0;overflow:hidden}.magee-accordion.accordion-boxed .panel:last-child{border-bottom-width:1px}.magee-accordion.accordion-boxed.panel-group .panel+.panel{margin-top:0}.magee-accordion.panel-group .panel-heading+.panel-collapse>.list-group,.magee-accordion.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.magee-accordion.faq .panel-heading{padding:20px 10px}.magee-accordion.faq .panel-heading .accordion-toggle:after{top:20px}.magee-accordion.accordion-boxed.faq .panel-heading{padding:25px 15px}.magee-accordion.accordion-boxed.faq .panel-heading .accordion-toggle:after{top:25px}.faq-list-filter .faq-box-wrap{display:none;overflow:hidden;width:100%}.list-filter li a{display:block;padding:5px 10px;color:#777}.list-filter li a:hover,.list-filter li.active a{background-color:#f8f8f8}.portfolio-list-filter li a:hover,.portfolio-list-filter li.active a{background-color:#fdd200;color:#fff}.tab-title{font-size:16px;margin:0}.tab-title i{margin-right:5px;color:#777}.magee-tab-box ul{margin:0;width:100%}.tab-pane{padding:10px 0}.magee-tab-box.tab-line ul.list-inline{border-bottom:2px solid #eee}.magee-tab-box ul.list-inline>li{padding:0;margin-bottom:0}.magee-tab-box.tab-line ul>li>a{padding:15px 20px;display:block;margin-bottom:-2px;border-bottom:2px solid transparent}.magee-tab-box.tab-line ul>li.active>a{border-bottom-color:#fdd200}.magee-tab-box.tab-normal ul>li>a{padding:15px 20px;border-radius:0;margin-right:0}.magee-tab-box.tab-normal ul>li>a{background-color:#fdfdfd;border:1px solid #ddd}.magee-tab-box.tab-normal ul>li>a:hover{background-color:#f8f8f8}.magee-tab-box.tab-normal.tab-vertical ul.nav-stacked li{float:left}.magee-tab-box.tab-normal.tab-vertical ul.nav-stacked>li+li{margin-top:0;margin-left:0}.magee-tab-box.tab-normal .tab-pane{padding:20px;border:1px solid #ddd;border-top:0}@media screen and (min-width:768px){.magee-tab-box.tab-normal .nav-tabs.nav-justified>.active>a,.magee-tab-box.tab-normal .nav-tabs.nav-justified>.active>a:focus,.magee-tab-box.tab-normal .nav-tabs.nav-justified>.active>a:hover,.magee-tab-box.tab-normal ul>li+li>a,.magee-tab-box.tab-normal ul>li+li>a:hover{border-left:0}.magee-tab-box.tab-normal .nav-tabs.nav-justified>li:first-child>a,.magee-tab-box.tab-normal .nav-tabs.nav-justified>li:first-child>a:focus,.magee-tab-box.tab-normal .nav-tabs.nav-justified>li:first-child>a:hover{border-left:1px solid #ddd}.magee-tab-box.tab-normal ul>li.active>a{background-color:#fff;border-bottom-color:#fff}.magee-tab-box.tab-vertical ul{width:30%}.magee-tab-box.tab-normal.tab-vertical ul.nav-stacked li{float:none}.magee-tab-box.tab-normal.tab-vertical ul.nav-stacked>li+li{margin-top:0;margin-left:0}.magee-tab-box.tab-vertical .tab-content{width:70%}.magee-tab-box.tab-normal.tab-vertical ul>li+li{margin-top:0}.magee-tab-box.tab-normal.tab-vertical ul>li>a{border:1px solid #ddd;margin:0}.magee-tab-box.tab-normal.tab-vertical.tab-vertical-left ul>li>a{margin-right:-1px}.magee-tab-box.tab-normal.tab-vertical.tab-vertical-right ul>li>a{margin-left:-1px}.magee-tab-box.tab-normal.tab-vertical.tab-vertical-left ul>li+li>a{border-left:1px solid #ddd}.magee-tab-box.tab-normal.tab-vertical.tab-vertical-right ul>li+li>a{border-right:1px solid #ddd}.magee-tab-box.tab-normal.tab-vertical ul>li.active>a{border-bottom-color:#ddd}.magee-tab-box.tab-normal.tab-vertical.tab-vertical-left ul>li.active>a{border-right-color:#fff}.magee-tab-box.tab-normal.tab-vertical.tab-vertical-right ul>li.active>a{border-left-color:#fff}.magee-tab-box.tab-normal.tab-vertical .tab-pane{padding:20px;border:1px solid #ddd}}.magee-tab-box .nav-pills>li{padding-right:10px}.magee-tab-box .nav-pills>li:last-child{padding-right:0}.magee-tab-box .nav-pills>li>a{border-radius:0}.magee-tab-box .nav-pills>li.active>a,.magee-tab-box .nav-pills>li.active>a:focus,.magee-tab-box .nav-pills>li.active>a:hover,.magee-tab-box .nav-pills>li>a:hover{color:#777;background-color:#f8f8f8}.magee-panel{border-radius:0;box-shadow:none;overflow:hidden}.panel-primary{border-color:#fdd200}.panel-primary .panel-heading{background-color:#fdd200;border-color:#fdd200}.magee-panel h3.panel-title{margin-top:0;margin-bottom:0;font-size:16px}.magee-alert{background-color:#f5f5f5;border-radius:0;padding:25px 15px;border-style:solid;clear:both}.magee-alert i{-webkit-transform:scale(2) translateX(.3em);transform:scale(2) translateX(.3em);margin-right:2em;font-size:12px}.alert-dismissable .close,.alert-dismissible .close{top:0;right:0;opacity:1}.magee-alert .close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.7;background:0 0;-webkit-transition:all .2s ease;-moz-transition:all .2s ease;-o-transition:all .2s ease;transition:all .2s ease}.magee-alert .close:hover{color:inherit;-webkit-transform:rotate(90deg);transform:rotate(90deg);-webkit-transition:all .2s ease;-moz-transition:all .2s ease;-o-transition:all .2s ease;transition:all .2s ease}.magee-alert a.close,button.close{background:0 0;border:none;border-bottom:none;border-radius:0;padding:0;color:inherit}.magee-alert a.close:hover,button.close:hover{background:0 0}.magee-alert a.close:active,.magee-alert a.close:link,.magee-alert a.close:visited,button.close:active{padding:0;background:0 0;border:none;text-decoration:none}.magee-pricing-table{float:left}.magee-pricing-box{box-shadow:1px 1px 5px 0 rgba(0,0,0,.1);overflow:hidden}.magee-pricing-box .panel-heading{background-color:#fff;padding:20px;border-bottom:1px solid #ddd}.pricing-top-icon{font-size:72px;color:#fdd200;line-height:1;margin-bottom:10px}.magee-pricing-box .panel-title{font-size:24px}.magee-pricing-box.featured .panel-heading{background-color:#fdd200}.magee-pricing-box.featured .panel-title,.magee-pricing-box.featured .pricing-top-icon{color:#fff}.magee-pricing-box .panel-body{padding:0}.magee-pricing-box .pricing-tag{background-color:#f5f5f5;padding:20px;border-bottom:1px solid #ddd;font-size:3em}.pricing-tag .currency{color:#fdd200;font-size:.5em;position:relative;top:-1em}.pricing-tag .price{color:#fdd200}.pricing-tag .unit{font-size:.3em;position:relative;bottom:0;left:.5em}.magee-pricing-box .pricing-list{list-style-type:none;margin:0}.magee-pricing-box .pricing-list li{padding:20px 10px}.magee-pricing-box .panel-footer{padding:20px 10px;background-color:#f5f5f5}.pricing-box-flat{border:none;background-color:#f5f5f5;padding:20px;box-shadow:none}.pricing-box-flat.featured{background-color:#fdd200;color:#fff}.pricing-box-flat.featured .panel-title,.pricing-box-flat.featured .pricing-tag .currency,.pricing-box-flat.featured .pricing-tag .price,.pricing-box-flat.featured .pricing-top-icon{color:#fff}.pricing-box-flat .panel-footer,.pricing-box-flat .panel-heading,.pricing-box-flat .pricing-list li,.pricing-box-flat .pricing-tag{background-color:transparent;border:none;padding:5px}.pricing-box-flat.featured .magee-btn-normal{border:2px solid #fff;background-color:transparent!important}@media (min-width:992px){.standout{margin:-20px;position:relative;z-index:2}.magee-pricing-table.no-margin .magee-pricing-box-wrap+.magee-pricing-box-wrap .magee-pricing-box{border-left:none}.magee-pricing-box-wrap.no-padding{padding:0}}.magee-pricing-box-wrap{text-align:center;width:100%}.magee-pricing-table.no-margin .pricing-list li+li{border-top:1px solid #ddd}.pricing-box-label .panel-footer,.pricing-box-label .panel-heading,.pricing-box-label .pricing-tag{visibility:hidden}.pricing-box-label{border-left-color:transparent;border-top-color:transparent;border-bottom-color:transparent;box-shadow:none;font-weight:700;border-radius:0!important}.pricing-box-label .pricing-list{padding-right:20px}.magee-person-box{text-align:center;margin:0 auto}.person-vcard .person-name{font-size:18px;margin:20px 0 10px}.person-vcard .person-title{font-size:14px;margin:0 0 10px}.person-vcard .person-title:after{display:block;margin:10px auto;width:80px;height:1px;background-color:#fdd200;content:""}.person-vcard .person-desc{margin:0 0 10px}.person-social{text-align:center;margin:0}.person-social li{display:inline-block;margin:0}.person-social li a{font-size:16px;color:#595959;width:30px;height:30px;border-radius:4px;line-height:28px;display:inline-block;border:0}.person-social li a:hover{background:#fff}.person-social li a:hover{color:#fdd200}.person-social.boxed li a{color:#fff;background-color:#595959}.person-social.boxed li a:hover{color:#fff;background-color:#fdd200}.magee-person-box.person-box-horizontal{margin:0 -15px}.person-box-horizontal .person-vcard .person-name{margin-top:0}.person-box-horizontal .person-social{text-align:left}.person-box-horizontal li{margin:0}.person-box-horizontal .person-vcard .person-title:after{margin-left:0}.magee-popover{cursor:pointer}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;letter-spacing:normal;line-break:auto;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:14px;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2)}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{margin:0;padding:8px 14px;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{border-width:10px;content:""}.popover.top>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,.25);bottom:-11px}.popover.top>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0,0,0,.25)}.popover.right>.arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff}.popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25);top:-11px}.popover.bottom>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px}.magee-testimonial-box{max-width:100%}.magee-testimonial-box .testimonial-content{margin-bottom:1em;position:relative}.magee-testimonial-box .testimonial-quote{position:relative;padding:10px 0 0 35px}.magee-testimonial-box .testimonial-quote:before{content:"\f10d";display:block;font:normal normal normal 30px/1 FontAwesome;line-height:1;position:absolute;left:0;top:0;opacity:.3}.magee-testimonial-box .testimonial-vcard.style1{display:table}.magee-testimonial-box .testimonial-vcard.style1 .testimonial-author,.magee-testimonial-box .testimonial-vcard.style1 .testimonial-avatar{display:table-cell;vertical-align:middle}.magee-testimonial-box .testimonial-avatar{padding-right:10px}.magee-testimonial-box .testimonial-vcard.style1 img{width:60px;height:60px}.magee-testimonial-box .testimonial-vcard:before{content:""!important}.magee-testimonial-box .testimonial-author .name{margin:0;color:inherit}.magee-testimonial-box .testimonial-vcard.style2 .testimonial-avatar{margin-bottom:1em;padding-right:0}.magee-testimonial-box .testimonial-vcard.style2 img{width:80px;height:80px;display:inline-block}.magee-testimonial-box.testimonial-boxed .testimonial-content{border:1px solid #ddd;background-color:#f5f5f5;padding:1.5em;margin-bottom:2em}.magee-testimonial-box.testimonial-boxed .testimonial-content:before{content:"";display:block;width:0;height:0;border:10px solid transparent;border-top-color:#f5f5f5;position:absolute;bottom:-20px;left:50px;z-index:3}.magee-testimonial-box.testimonial-boxed .testimonial-content:after{content:"";display:block;width:0;height:0;border:11px solid transparent;border-top-color:#ddd;position:absolute;bottom:-23px;left:49px;z-index:2}.magee-testimonial-box.testimonial-boxed .testimonial-vcard.style1{margin-left:25px}.magee-testimonial-box.testimonial-boxed .testimonial-vcard.style2{text-align:center}.magee-testimonial-box.testimonial-boxed.text-center .testimonial-content:before{left:50%;margin-left:-10px}.magee-testimonial-box.testimonial-boxed.text-center .testimonial-content:after{left:50%;margin-left:-11px}.magee-promo-box{display:table;width:100%}.promo-action .image-instead{display:inline;margin-right:.5em}.magee-promo-box.boxed{padding:5px 15px;border:1px solid #eee;background-color:#f5f5f5}@media screen and (min-width:768px){.promo-action,.promo-info{display:table-cell;vertical-align:middle}}.promo-info{padding-right:15px}.magee-progress-box{overflow:hidden}.magee-progress-box .progress{background-color:#eee;margin-bottom:10px;height:30px;border-radius:0;box-shadow:none}.magee-progress-box .progress-bar{padding:0 5px;background-color:#fdd200;overflow:hidden;text-align:left;box-shadow:none;font-weight:700}.magee-progress-box .label{font-size:.9em;background-color:rgba(0,0,0,.3);margin:2px 0}.progress-bar-striped.animated{-webkit-animation-name:progress-bar-striped;animation-name:progress-bar-striped;-webkit-animation-timing-function:linear;animation-timing-function:linear}@-webkit-keyframes progress-bar-striped{from{background-position:40px 0}to{background-position:0 0}}@-webkit-keyframes progress-bar-striped{from{background-position:40px 0}to{background-position:0 0}}.progress.rounded{border-radius:5px}.progress.rounded .progress-bar{border-radius:5px}.progress-box .progress-sm{height:15px}.magee-counter-box{text-align:center}.magee-shortcode.magee-counter{width:100%}.magee-counter-box.box-border{border:1px solid #ddd;padding:20px}.magee-counter-box.boxed{padding:20px;border:0 solid #ddd}.magee-counter .counter-top-icon{font-size:72px;color:#fdd200;line-height:1}.magee-counter .counter{font-size:50px;line-height:1em;display:inline-block}.magee-counter .counter:after{display:block;margin:10px auto;width:40px;height:1px;background-color:#fdd200;content:""}.magee-counter h3.counter-bottom_title,.magee-counter h3.counter-title{margin:0!important;font-size:14px}.magee-countdown-wrap{width:600px;max-width:100%}.magee-countdown{list-style-type:none!important;margin:0 -15px}.magee-countdown .counter-num{font-size:40px}.magee-chart-box{position:relative;display:inline-block;width:200px;height:200px;text-align:center}.chart-title{position:absolute;display:block;vertical-align:middle;width:100%;top:0;left:0;line-height:200px;font-size:40px}.chart-title img{height:80px}.magee-process-steps>ul{list-style-type:none;margin-bottom:0}.magee-process-steps>ul>li{position:relative}@media (min-width:992px){.magee-process-steps>ul>li:before{content:"";position:absolute;display:block;width:100%;height:0;border-bottom:1px dashed #e5e5e5;top:50px;left:2.5em}.magee-process-steps.box-lg>ul>li:before{top:75px}}.magee-process-steps>ul>li:last-child:before{display:none}.magee-step-box .icon-box{position:relative;z-index:2;background-color:#fff;border-width:3px;border-color:#e5e5e5;color:#aaa}.magee-step-box .icon-box i{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.magee-step-box .icon-box:hover{box-shadow:0 0 3px 5px #e5e5e5}.magee-process-steps.process-steps-vertical>ul>li:before{content:"";position:absolute;display:block;width:0;height:100%;border-right:1px dashed #e5e5e5;left:50px;top:80px}.magee-process-steps.process-steps-vertical.box-lg>ul>li:before{left:75px}.magee-process-steps.process-steps-vertical>ul>li{margin-bottom:60px}.magee-process-steps.process-steps-vertical>ul>li:last-child{margin-bottom:0}.magee-process-steps.process-steps-vertical>ul>li:last-child:before{display:none}.magee-timeline{overflow:hidden;position:relative}.magee-timeline>ul{list-style-type:none;margin-bottom:0;margin-top:0;padding-left:0;margin-left:0}.magee-timeline>ul>li{position:relative;margin:0;padding:0}.timeline-year{color:#fff;background-color:#fdd200;width:64px;height:64px;line-height:64px;margin:0 auto;position:relative;text-align:center}.timeline-year p{text-align:center}.timeline-year:after{content:"";display:block;position:absolute;width:0;height:0;border:5px solid transparent;border-top-color:#fdd200;left:50%;margin-left:-5px;top:100%}@media (min-width:992px){.magee-timeline:before{content:"";position:absolute;display:block;width:10px;height:10px;border-radius:50%;background-color:#fdd200;top:28px;left:0}.magee-timeline>ul>li:before{content:"";position:absolute;display:block;width:100%;height:1px;background-color:#fdd200;top:32px;left:0}.magee-timeline>ul>li:last-child:before{background-image:-moz-linear-gradient(left,#fdd200 0,#fdd200 70%,#fff 100%);background-image:-webkit-gradient(linear,left top,right top,from(#fdd200),color-stop(.7,#fdd200),to(#fff));background-image:-webkit-linear-gradient(left,#fdd200 0,#fdd200 70%,#fff 100%);background-image:-o-linear-gradient(left,#fdd200 0,#fdd200 70%,#fff 100%)}}.modal{z-index:10000}.modal-content{border-radius:0}.magee-modal-trigger{cursor:pointer}.magee-modal-wrapper{display:inline-block;position:fixed;z-index:999;margin:0;padding:0}.magee-modal{position:fixed;top:50%;left:50%;height:auto;z-index:2000;visibility:hidden;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform:translate3d(-50%,-50%,0);-moz-transform:translate3d(-50%,-50%,0);-ms-transform:translate3d(-50%,-50%,0);transform:translate3d(-50%,-50%,0)}.magee-modal-show{visibility:visible}.magee-modal-overlay{position:fixed;width:100%;height:100%;visibility:hidden;top:0;left:0;z-index:1000;opacity:0;-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s}.magee-modal-show~.magee-modal-overlay{opacity:1;visibility:visible}.magee-modal-content-wrapper{color:#fff;background:#e74c3c;position:relative;border-radius:3px;margin:0 auto;width:750px}.magee-modal-content-wrapper .magee-modal-title-wrapper{position:relative;margin:0;padding:10px 20px;font-size:2.2em;font-weight:300;background:rgba(0,0,0,.05);border-radius:3px 3px 0 0}.magee-modal-content-wrapper .magee-modal-title-wrapper h3{margin:0;height:30px;line-height:30px;font-size:.55em}.magee-modal-title-wrapper a.magee-modal-close{float:right;text-decoration:none;box-shadow:none;color:#fff!important;font-size:16px;text-align:center;-webkit-transition:.4s opacity;-moz-transition:.4s opacity;-ms-transition:.4s opacity;-o-transition:.4s opacity;transition:.4s opacity}.magee-modal-title-wrapper a.magee-modal-close:hover{opacity:.8;text-decoration:none}.magee-modal-content-wrapper>div{padding:15px 20px;margin:0;font-weight:300;font-size:1.15em}.magee-modal-content-wrapper button{display:block;margin:0 auto;font-size:.8em}.magee-modal-effect-1 .magee-modal-content-wrapper{-webkit-transform:translateX(30%);-moz-transform:translateX(30%);-ms-transform:translateX(30%);transform:translateX(30%);opacity:0;-webkit-transition:all .4s cubic-bezier(.25, .5, .5, .9);-moz-transition:all .4s cubic-bezier(.25, .5, .5, .9);transition:all .4s cubic-bezier(.25, .5, .5, .9)}.magee-modal-show.magee-modal-effect-1 .magee-modal-content-wrapper{-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0);opacity:1}.magee-modal-effect-2 .magee-modal-content-wrapper{-webkit-transform:translateY(30%);-moz-transform:translateY(30%);-ms-transform:translateY(30%);transform:translateY(30%);opacity:0;-webkit-transition:all .4s;-moz-transition:all .4s;transition:all .4s}.magee-modal-show.magee-modal-effect-2 .magee-modal-content-wrapper{-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);opacity:1}.magee-modal-effect-3 .magee-modal-content-wrapper{-webkit-transform:translateX(-30%);-moz-transform:translateX(-30%);-ms-transform:translateX(-30%);transform:translateX(-30%);opacity:0;-webkit-transition:all .4s cubic-bezier(.25, .5, .5, .9);-moz-transition:all .4s cubic-bezier(.25, .5, .5, .9);transition:all .4s cubic-bezier(.25, .5, .5, .9)}.magee-modal-show.magee-modal-effect-3 .magee-modal-content-wrapper{-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0);opacity:1}.magee-modal-effect-4 .magee-modal-content-wrapper{-webkit-transform:translateY(-30%);-moz-transform:translateY(-30%);-ms-transform:translateY(-30%);transform:translateY(-30%);opacity:0;-webkit-transition:all .4s;-moz-transition:all .4s;transition:all .4s}.magee-modal-show.magee-modal-effect-4 .magee-modal-content-wrapper{-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);opacity:1}.magee-modal-effect-5 .magee-modal-content-wrapper{-webkit-transform:scale(.8);-moz-transform:scale(.8);-ms-transform:scale(.8);transform:scale(.8);opacity:0;-webkit-transition:all .4s;-moz-transition:all .4s;transition:all .4s}.magee-modal-show.magee-modal-effect-5 .magee-modal-content-wrapper{-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);transform:scale(1);opacity:1}.magee-modal-effect-6.magee-modal{-webkit-perspective:1300px;-moz-perspective:1300px;perspective:1300px}.magee-modal-effect-6 .magee-modal-content-wrapper{-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transform:rotateY(-80deg);-moz-transform:rotateY(-80deg);-ms-transform:rotateY(-80deg);transform:rotateY(-80deg);-webkit-transition:all .4s;-moz-transition:all .4s;transition:all .4s;opacity:0}.magee-modal-show.magee-modal-effect-6 .magee-modal-content-wrapper{-webkit-transform:rotateY(0);-moz-transform:rotateY(0);-ms-transform:rotateY(0);transform:rotateY(0);opacity:1}.magee-modal-effect-7.magee-modal{-webkit-perspective:1300px;-moz-perspective:1300px;perspective:1300px}.magee-modal-effect-7 .magee-modal-content-wrapper{-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transform:rotateX(-80deg);-moz-transform:rotateX(-80deg);-ms-transform:rotateX(-80deg);transform:rotateX(-80deg);-webkit-transition:all .4s;-moz-transition:all .4s;transition:all .4s;opacity:0}.magee-modal-show.magee-modal-effect-7 .magee-modal-content-wrapper{-webkit-transform:rotateX(0);-moz-transform:rotateX(0);-ms-transform:rotateX(0);transform:rotateX(0);opacity:1}.magee-modal-effect-8.magee-modal{-webkit-perspective:1300px;-moz-perspective:1300px;perspective:1300px}.magee-modal-effect-8 .magee-modal-content-wrapper{-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transform:rotateX(-70deg);-moz-transform:rotateX(-70deg);-ms-transform:rotateX(-70deg);transform:rotateX(-70deg);-webkit-transform-origin:50% 0;-moz-transform-origin:50% 0;transform-origin:50% 0;opacity:0;-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s}.magee-modal-show.magee-modal-effect-8 .magee-modal-content-wrapper{-webkit-transform:rotateX(0);-moz-transform:rotateX(0);-ms-transform:rotateX(0);transform:rotateX(0);opacity:1}.magee-modal-effect-9.magee-modal{-webkit-perspective:1300px;-moz-perspective:1300px;perspective:1300px}.magee-modal-effect-9 .magee-modal-content-wrapper{-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transform:translateZ(100px) translateX(-40%) rotateY(90deg);-moz-transform:translateZ(100px) translateX(-40%) rotateY(90deg);-ms-transform:translateZ(100px) translateX(-40%) rotateY(90deg);transform:translateZ(100px) translateX(-40%) rotateY(90deg);-webkit-transform-origin:0 100%;-moz-transform-origin:0 100%;transform-origin:0 100%;opacity:0;-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s}.magee-modal-show.magee-modal-effect-9 .magee-modal-content-wrapper{-webkit-transform:translateZ(0) translateX(0) rotateY(0);-moz-transform:translateZ(0) translateX(0) rotateY(0);-ms-transform:translateZ(0) translateX(0) rotateY(0);transform:translateZ(0) translateX(0) rotateY(0);opacity:1}.magee-modal-effect-10.magee-modal{-webkit-perspective:1300px;-moz-perspective:1300px;perspective:1300px}.magee-modal-effect-10 .magee-modal-content-wrapper{-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transform:translateY(100%) rotateX(90deg);-moz-transform:translateY(100%) rotateX(90deg);-ms-transform:translateY(100%) rotateX(90deg);transform:translateY(100%) rotateX(90deg);-webkit-transform-origin:0 100%;-moz-transform-origin:0 100%;transform-origin:0 100%;opacity:0;-webkit-transition:all .3s ease-out;-moz-transition:all .3s ease-out;transition:all .3s ease-out}.magee-modal-show.magee-modal-effect-10 .magee-modal-content-wrapper{-webkit-transform:translateY(0) rotateX(0);-moz-transform:translateY(0) rotateX(0);-ms-transform:translateY(0) rotateX(0);transform:translateY(0) rotateX(0);opacity:1}.magee-modal-effect-11.magee-modal{-webkit-perspective:1300px;-moz-perspective:1300px;perspective:1300px}.magee-modal-effect-11 .magee-modal-content-wrapper{-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transform:translateZ(-3000px) rotateY(90deg);-moz-transform:translateZ(-3000px) rotateY(90deg);-ms-transform:translateZ(-3000px) rotateY(90deg);transform:translateZ(-3000px) rotateY(90deg);opacity:0}.magee-modal-show.magee-modal-effect-11 .magee-modal-content-wrapper{-webkit-animation:slit .7s forwards ease-out;-moz-animation:slit .7s forwards ease-out;animation:slit .7s forwards ease-out}@-webkit-keyframes slit{50%{-webkit-transform:translateZ(-250px) rotateY(89deg);opacity:.5;-webkit-animation-timing-function:ease-out}100%{-webkit-transform:translateZ(0) rotateY(0);opacity:1}}@-moz-keyframes slit{50%{-moz-transform:translateZ(-250px) rotateY(89deg);opacity:.5;-moz-animation-timing-function:ease-out}100%{-moz-transform:translateZ(0) rotateY(0);opacity:1}}@keyframes slit{50%{transform:translateZ(-250px) rotateY(89deg);opacity:1;animation-timing-function:ease-in}100%{transform:translateZ(0) rotateY(0);opacity:1}}.magee-modal-effect-12 .magee-modal-content-wrapper{-webkit-transform:scale(0) rotate(720deg);-moz-transform:scale(0) rotate(720deg);-ms-transform:scale(0) rotate(720deg);transform:scale(0) rotate(720deg);opacity:0}.magee-modal-effect-12 .magee-modal-content-wrapper,.magee-modal-show.magee-modal-effect-12~.magee-modal-overlay{-webkit-transition:all .5s;-moz-transition:all .5s;transition:all .5s}.magee-modal-show.magee-modal-effect-12 .magee-modal-content-wrapper{-webkit-transform:scale(1) rotate(0);-moz-transform:scale(1) rotate(0);-ms-transform:scale(1) rotate(0);transform:scale(1) rotate(0);opacity:1}.magee-modal-effect-13.magee-modal{-webkit-perspective:1300px;-moz-perspective:1300px;perspective:1300px}.magee-modal-effect-13 .magee-modal-content-wrapper{-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transform:translateZ(600px) rotateX(20deg);-moz-transform:translateZ(600px) rotateX(20deg);-ms-transform:translateZ(600px) rotateX(20deg);transform:translateZ(600px) rotateX(20deg);opacity:0}.magee-modal-show.magee-modal-effect-13 .magee-modal-content-wrapper{-webkit-transition:all .3s ease-in;-moz-transition:all .3s ease-in;transition:all .3s ease-in;-webkit-transform:translateZ(0) rotateX(0);-moz-transform:translateZ(0) rotateX(0);-ms-transform:translateZ(0) rotateX(0);transform:translateZ(0) rotateX(0);opacity:1}.magee-modal-effect-14.magee-modal{-webkit-perspective:1300px;-moz-perspective:1300px;perspective:1300px}.magee-modal-effect-14 .magee-modal-content-wrapper{-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transform:translate(30%) translateZ(600px) rotate(10deg);-moz-transform:translate(30%) translateZ(600px) rotate(10deg);-ms-transform:translate(30%) translateZ(600px) rotate(10deg);transform:translate(30%) translateZ(600px) rotate(10deg);opacity:0}.magee-modal-show.magee-modal-effect-14 .magee-modal-content-wrapper{-webkit-transition:all .3s ease-in;-moz-transition:all .3s ease-in;transition:all .3s ease-in;-webkit-transform:translate(0) translateZ(0) rotate(0);-moz-transform:translate(0) translateZ(0) rotate(0);-ms-transform:translate(0) translateZ(0) rotate(0);transform:translate(0) translateZ(0) rotate(0);opacity:1}.magee-modal-effect-15 .magee-modal-content-wrapper{-webkit-transform:scale(2);-moz-transform:scale(2);-ms-transform:scale(2);transform:scale(2);opacity:0;-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s}.magee-modal-show.magee-modal-effect-15 .magee-modal-content-wrapper{-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);transform:scale(1);opacity:1}.popover{border-radius:0}.tooltip-inner{border-radius:0}.magee-expand{cursor:pointer}.magee-icon-list{margin:0}.magee-icon-list li{list-style-type:none;padding-bottom:.8em;position:relative;padding-left:2em}.magee-icon-list.icon-list-border li{padding-top:.8em;border-bottom:1px solid #e5e5e5}.magee-icon-list.icon-list-border li:last-child{padding-top:.8em;border-bottom:0!important}.magee-icon-list li i{text-align:center;width:1.6em;height:1.6em;line-height:1.6em;position:absolute;top:0;left:0}.icon-list-border li i{top:.8em}.icon-list-border li img{top:.8em}.icon-list-primary li i{color:#fdd200}.icon-list-circle li i{background-color:#ccc;color:#fff;border-radius:50%}.icon-list-primary.icon-list-circle li i{background-color:#fdd200;color:#fff}.divider{margin-top:30px;margin-bottom:30px;position:relative}.divider-inner{width:100%;max-width:100%!important;display:table;min-height:1px}.divider-border .divider-inner{border:0 solid #e5e5e5;border-bottom-width:1px;height:1px}.divider-border.dashed .divider-inner{border-style:dashed}.divider-border.dotted .divider-inner{border-style:dotted}.divider-border.double-line .divider-inner{height:8px;border-top-width:1px;border-bottom-width:1px}.divider-shadow .divider-inner{position:relative;background:radial-gradient(ellipse at 50% -50% ,rgba(0,0,0,.1) 0,rgba(255,255,255,0) 80%) repeat scroll 0 0 rgba(0,0,0,0);background:-webkit-radial-gradient(ellipse at 50% -50% ,rgba(0,0,0,.1) 0,rgba(255,255,255,0) 80%) repeat scroll 0 0 rgba(0,0,0,0);background:-moz-radial-gradient(ellipse at 50% -50% ,rgba(0,0,0,.1) 0,rgba(255,255,255,0) 80%) repeat scroll 0 0 rgba(0,0,0,0);background:-o-radial-gradient(ellipse at 50% -50% ,rgba(0,0,0,.1) 0,rgba(255,255,255,0) 80%) repeat scroll 0 0 rgba(0,0,0,0)}.divider-shadow .divider-inner:after{display:block;height:5px;width:100%;content:'';background:-webkit-radial-gradient(ellipse at 50% -50%,rgba(0,0,0,.3) 0,rgba(255,255,255,0) 65%);background:-moz-radial-gradient(ellipse at 50% -50%,rgba(0,0,0,.3) 0,rgba(255,255,255,0) 80%);background:-o-radial-gradient(ellipse at 50% -50%,rgba(0,0,0,.3) 0,rgba(255,255,255,0) 80%);background:radial-gradient(ellipse at 50% -50%,rgba(0,0,0,.3) 0,rgba(255,255,255,0) 65%)}.divider-border.narrow{width:100px}.divider-image .divider-inner{background-image:url(../images/divider-2.png);background-position:center center;background-repeat:repeat-x;height:9px}.divider-border .divider-inner.primary{border-color:#fdd200}.divider-border .divider-inner.light{border-color:#fff}.divider-border .divider-inner.dark{border-color:#222}.divider.center{margin-left:auto;margin-right:auto;text-align:center}.divider-inner-item{display:table-cell;vertical-align:middle}.divider-inner-icon{width:40px;height:40px}.divider-inner-back-to-top{width:1px;padding-left:10px}@media screen and (min-width:640px){.divider-inner-title{width:50px;white-space:nowrap}.divider-title-left .divider-inner-title{padding-right:10px}.divider-title-center .divider-inner-title{padding:0 10px}.divider-title-right .divider-inner-title{padding-left:10px}}.ss-style-dots::before{bottom:20px;width:14px;height:14px;border-radius:50%;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);background:#2072a7;box-shadow:30px 0 #2072a7,-30px 0 #2072a7}.ss-style-doubleline::before{bottom:30px;width:140px;height:2px;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);background:#2072a7;box-shadow:0 30px 0 #2072a7}.ss-style-cross{padding-bottom:15em}.ss-style-cross::after,.ss-style-cross::before{background:#2072a7;bottom:70px;width:200px;height:2px;left:50%;-webkit-transform-origin:50% 50%;transform-origin:50% 50%}.ss-style-cross::before{-webkit-transform:translateX(-50%) rotate(45deg);transform:translateX(-50%) rotate(45deg)}.ss-style-cross::after{-webkit-transform:translateX(-50%) rotate(-45deg);transform:translateX(-50%) rotate(-45deg)}.magee-section-separator{position:absolute;width:100%;left:0;background-color:inherit}.magee-section-separator::after,.magee-section-separator::before{position:absolute;content:'';pointer-events:none}.magee-section-separator svg{position:absolute;z-index:2}.ss-triangle-up{bottom:100%}.ss-triangle-down{top:100%}.ss-triangle-down::after,.ss-triangle-up::before{left:50%;width:40px;height:40px;-webkit-transform:translateX(-50%) rotate(45deg);transform:translateX(-50%) rotate(45deg);background-color:inherit}.ss-triangle-up::before{top:-20px}.ss-triangle-down::after{bottom:-20px}.ss-doublediagonal{z-index:1;padding-top:6em;margin-bottom:-6em;background-color:inherit;bottom:100%}.ss-doublediagonal::after,.ss-doublediagonal::before{top:0;z-index:-1;width:100%;height:75%;background:inherit;-webkit-transform:rotate(-2deg);transform:rotate(-2deg);-webkit-transform-origin:0 0;transform-origin:0 0}.ss-doublediagonal::before{height:50%;background:rgba(0,0,0,.3);-webkit-transform:rotate(-3deg);transform:rotate(-3deg);-webkit-transform-origin:3% 0;transform-origin:3% 0}.ss-halfcircle-up{bottom:100%}.ss-halfcircle-down{top:100%}.ss-halfcircle-down::after,.ss-halfcircle-up::before{left:50%;z-index:2;width:100px;height:100px;border-radius:50%;background-color:inherit;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.ss-halfcircle-up::before{top:-50px}.ss-halfcircle-down::after{bottom:-50px}.ss-bigtriangle-up{bottom:100%}.ss-bigtriangle-down{top:100%}.ss-bigtriangle-down svg,.ss-bigtriangle-up svg{pointer-events:none;left:0}.ss-bigtriangle-up svg{bottom:0}.ss-bigtriangle-down svg{top:0}.ss-bigtriangle-down svg path,.ss-bigtriangle-up svg path{fill:#3498db;stroke:#3498db;stroke-width:2}.ss-bighalfcircle-up{bottom:100%}.ss-bighalfcircle-down{top:100%}.ss-bighalfcircle-up svg{left:0;bottom:0}.ss-bighalfcircle-down svg{left:0;top:0}.ss-bighalfcircle svg path,.ss-bighalfcircle-up svg path{fill:#3498db;stroke:#3498db}.ss-curl-up{bottom:100%}.ss-curl-down{top:100%}.ss-curl-up svg{left:0;bottom:0}.ss-curl-down svg{left:0;top:0}.ss-curl-down svg path,.ss-curl-up svg path{fill:#3498db;stroke:#3498db}.ss-multitriangles-up{bottom:100%}.ss-multitriangles-down{top:100%}.ss-multitriangles-down::after,.ss-multitriangles-up::before{left:50%;width:50px;height:50px;-webkit-transform:translateX(-50%) rotate(45deg);transform:translateX(-50%) rotate(45deg)}.ss-multitriangles-up::before{top:-25px;background:inherit;box-shadow:-50px 50px 0 #3498db,50px -50px 0 #3498db}.ss-multitriangles-down::after{bottom:-25px;z-index:10;background:inherit;box-shadow:-50px 50px 0 #3498db,50px -50px 0 #3498db}.ss-roundedsplit-up{padding-top:2em;bottom:100%}.ss-roundedsplit-up::after,.ss-roundedsplit-up::before{top:-70px;left:0;z-index:10;width:50%;height:70px;background:inherit}.ss-roundedsplit-up::before{border-radius:0 80px 0 0}.ss-roundedsplit-up::after{left:50%;border-radius:80px 0 0 0}.ss-roundedcorners-down{top:100%}.ss-roundedcorners-down::before{top:100%;left:0;z-index:10;width:100%;height:60px;border-radius:0 0 60px 60px;background:inherit}.ss-invertedrounded{height:90px;border-radius:0 0 0 90px;top:100%;z-index:2}.ss-invertedrounded::before{top:90px;width:100%;height:90px;background-color:inherit;z-index:2}.ss-invertedrounded::after{top:90px;width:100%;background-color:#3498db;height:90px;border-radius:0 90px 0 0;z-index:3}.ss-boxes-up{bottom:100%}.ss-boxes-down{top:100%}.ss-boxes-down:after,.ss-boxes-up::before{left:0;width:100%;height:50px;background-image:-webkit-gradient(linear,100% 0,0 100%,color-stop(.5,transparent),color-stop(.5,#2980b9));background-image:linear-gradient(to right,transparent 50%,#2980b9 50%);-webkit-background-size:130px 100%;background-size:130px 100%}.ss-boxes-up::before{bottom:0}.ss-boxes-down::after{z-index:2;top:0}.ss-zigzag-up{bottom:100%}.ss-zigzag-down{top:100%}.ss-zigzag-down::after,.ss-zigzag-up::before{right:0;left:0;z-index:3;display:block;height:90px;background-size:50px 100%}.ss-zigzag-up::before{top:-90px;background-image:-webkit-gradient(linear,0 0,300% 100%,color-stop(.25,transparent),color-stop(.25,#3498db));background-image:linear-gradient(315deg,#3498db 25%,transparent 25%),linear-gradient(45deg,#3498db 25%,transparent 25%);background-position:50%}.ss-zigzag-down::after{top:100%;background-image:-webkit-gradient(linear,0 0,300% 100%,color-stop(.25,#3498db),color-stop(.25,transparent));background-image:linear-gradient(135deg,#3498db 25%,transparent 25%),linear-gradient(225deg,#3498db 25%,transparent 25%);background-position:50%}.ss-foldedcorner{top:100%;height:100px;background-color:inherit;width:calc(100% - 100px);z-index:2}.ss-foldedcorner::after,.ss-foldedcorner::before{bottom:0;width:100px;height:100px}.ss-foldedcorner::before{right:-100px;background-image:-webkit-linear-gradient(top left,#fff 50%,rgba(0,0,0,0) 50%);background-image:linear-gradient(315deg,rgba(0,0,0,0) 46%,rgba(0,0,0,.3) 50%,#fff 50%)}.ss-foldedcorner::after{right:0;background-image:-webkit-linear-gradient(top left,transparent 50%,rgba(0,0,0,.1) 50%);background-image:linear-gradient(315deg,rgba(0,0,0,.1) 50%,transparent 50%)}.ss-stamp-up{bottom:100%}.ss-stamp-down{top:100%}.ss-stamp-up svg{left:0;bottom:0}.ss-stamp-down svg{left:0;top:0}.ss-curl-down svg path,.ss-curl-up svg path{fill:#3498db;stroke:#3498db}.ss-clouds-up{bottom:100%}.ss-clouds-down{top:100%}.ss-clouds-up svg{left:0;bottom:0}.ss-clouds-down svg{left:0;top:0}.ss-clouds-down svg path,.ss-clouds-up svg path{fill:#3498db;stroke:#3498db}.img-box{overflow:hidden;position:relative;display:inline-block;margin-bottom:-8px;max-width:100%}.img-box .img-overlay{position:absolute;top:0;left:0;width:100%;height:100%;transition:all .1s ease;-webkit-transition:all .1s ease}.img-box .img-overlay.primary{background-color:rgba(253,210,0,.7)}.img-box .img-overlay.dark{background-color:rgba(0,0,0,.35)}.img-box .img-overlay.light{background-color:rgba(255,255,255,.35)}.img-box:hover .img-overlay{transition:all .1s ease;-webkit-transition:all .5s ease}.img-overlay-container{display:table;height:100%;width:100%}.img-box .img-overlay-content{display:table-cell;padding:5px;position:relative}.img-overlay-total-link{position:absolute;z-index:2;width:100%;height:100%;left:0;top:0}.img-overlay-content .entry-category{position:relative;z-index:3}.img-box.figcaption-middle .img-overlay-content{vertical-align:middle;text-align:center}.img-box.figcaption-top .img-overlay-content{vertical-align:top}.img-box.figcaption-bottom .img-overlay-content{vertical-align:bottom}.img-box.fade-in .img-overlay{opacity:0}.img-box.fade-in:hover .img-overlay{opacity:1}.img-box.from-left .img-overlay{-webkit-transform:translateX(-100%);transform:translateX(-100%)}.img-box.from-left:hover .img-overlay{-webkit-transform:translateX(0);transform:translateX(0)}.img-box.from-right .img-overlay{-webkit-transform:translateX(100%);transform:translateX(100%)}.img-box.from-right:hover .img-overlay{-webkit-transform:translateX(0);transform:translateX(0)}.img-box.from-top .img-overlay{-webkit-transform:translateY(-100%);transform:translateY(-100%)}.img-box.from-top:hover .img-overlay{-webkit-transform:translateY(0);transform:translateY(0)}.img-box.from-bottom .img-overlay{-webkit-transform:translateY(100%);transform:translateY(100%)}.img-box.from-bottom:hover .img-overlay{-webkit-transform:translateY(0);transform:translateY(0)}.img-box img{transition:all .1s ease;-webkit-transition:all .5s ease}.img-box:hover img{transition:all .1s ease;-webkit-transition:all .5s ease}.img-box.img-zoom-in:hover img{-webkit-transform:scale(1.1);transform:scale(1.1)}.img-box.img-zoom-out img{-webkit-transform:scale(1.1);transform:scale(1.1)}.img-box.img-zoom-out:hover img{-webkit-transform:scale(1);transform:scale(1)}.img-box.img-scroll-left img,.img-box.img-scroll-right img{width:calc(105%);max-width:none}.img-box.img-scroll-left img{-webkit-transform:translateX(0);transform:translateX(0)}.img-box.img-scroll-left:hover img{-webkit-transform:translateX(-5%);transform:translateX(-5%)}.img-box.img-scroll-right img{-webkit-transform:translateX(-5%);transform:translateX(-5%)}.img-box.img-scroll-right:hover img{-webkit-transform:translateX(0);transform:translateX(0)}.img-box .img-overlay-content i{color:#fff;font-size:30px}.img-box .img-overlay-icons i{color:#3c3c3c;margin:0 10px;width:48px;height:48px;font-size:24px;line-height:48px;background-color:#fdd200}.img-box h3.img-overlay-title{color:#fff}.img-frame{overflow:hidden}.img-frame.rounded{border-radius:5px}.img-frame.circle{border-radius:50%}.img-frame.border{border:6px solid #f5f5f5}.img-frame.shadow{box-shadow:2px 2px 5px 0 #aaa}.magee-image-banner .img-box .img-overlay-content{color:#fff}.magee-image-banner .img-box .img-overlay-content{padding:15px}.magee-image-banner .img-box:hover .img-overlay{background-color:rgba(0,0,0,.35)}.multi-carousel{padding:0;position:relative}.multi-carousel-inner{overflow:hidden}ul.multi-carousel-holder{overflow:hidden;margin-bottom:0}.multi-carousel-holder li.multi-carousel-item{list-style-type:none;float:left;margin:0;padding:0 15px}.carousel-caption{top:10%;bottom:auto}.multi-carousel-nav .multi-carousel-nav-next,.multi-carousel-nav .multi-carousel-nav-prev{width:30px;height:30px;font:normal normal normal 30px/30px FontAwesome;display:inline-block;text-align:center;color:#777;opacity:.8;background-color:transparent}.multi-carousel-nav.style1 .multi-carousel-nav-next,.multi-carousel-nav.style1 .multi-carousel-nav-prev{position:absolute;top:50%;margin-top:-15px}.multi-carousel-nav.nav-border .multi-carousel-nav-next,.multi-carousel-nav.nav-border .multi-carousel-nav-prev{border:1px solid #777;font:normal normal normal 14px/30px FontAwesome}.multi-carousel-nav.light .multi-carousel-nav-next,.multi-carousel-nav.light .multi-carousel-nav-prev{border-color:#fff;color:#fff}.multi-carousel-nav.nav-bg .multi-carousel-nav-next,.multi-carousel-nav.nav-bg .multi-carousel-nav-prev{color:#fff;background-color:rgba(0,0,0,.8);font:normal normal normal 14px/30px FontAwesome}.multi-carousel-nav.nav-square .multi-carousel-nav-next,.multi-carousel-nav.nav-square .multi-carousel-nav-prev{border-radius:0}.multi-carousel-nav.nav-rounded .multi-carousel-nav-next,.multi-carousel-nav.nav-rounded .multi-carousel-nav-prev{border-radius:5px}.multi-carousel-nav.nav-circle .multi-carousel-nav-next,.multi-carousel-nav.nav-circle .multi-carousel-nav-prev{border-radius:50%}.multi-carousel-nav.nav-lg .multi-carousel-nav-next,.multi-carousel-nav.nav-lg .multi-carousel-nav-prev{width:50px;height:50px;font:normal normal normal 50px/50px FontAwesome}.multi-carousel-nav.nav-lg.nav-bg .multi-carousel-nav-next,.multi-carousel-nav.nav-lg.nav-bg .multi-carousel-nav-prev,.multi-carousel-nav.nav-lg.nav-border .multi-carousel-nav-next,.multi-carousel-nav.nav-lg.nav-border .multi-carousel-nav-prev{font:normal normal normal 24px/50px FontAwesome}.multi-carousel-nav.nav-xl .multi-carousel-nav-next,.multi-carousel-nav.nav-xl .multi-carousel-nav-prev{width:70px;height:70px;font:normal normal normal 70px/70px FontAwesome}.multi-carousel-nav.nav-xl.nav-bg .multi-carousel-nav-next,.multi-carousel-nav.nav-xl.nav-bg .multi-carousel-nav-prev,.multi-carousel-nav.nav-xl.nav-border .multi-carousel-nav-next,.multi-carousel-nav.nav-xl.nav-border .multi-carousel-nav-prev{font:normal normal normal 34px/70px FontAwesome}.multi-carousel-nav .multi-carousel-nav-next:hover,.multi-carousel-nav .multi-carousel-nav-prev:hover{opacity:1}.multi-carousel-nav .multi-carousel-nav-prev:before{content:"\f104"}.multi-carousel-nav .multi-carousel-nav-next:before{content:"\f105"}.multi-carousel-nav.style1 .multi-carousel-nav-prev{left:0}.multi-carousel-nav.style1 .multi-carousel-nav-next{right:0}.multi-carousel-nav.style2{margin:10px 0 0;text-align:center}.multi-carousel-nav.style2 .multi-carousel-nav-next,.multi-carousel-nav.style2 .multi-carousel-nav-prev{margin:0 2px}.multi-carousel-nav.style3{margin:0 0 10px;border-bottom:1px dotted #ddd;width:100%;overflow:hidden;padding-bottom:10px;text-align:right}.multi-carousel-nav.style3 .multi-carousel-nav-next,.multi-carousel-nav.style3 .multi-carousel-nav-prev{margin:0 2px}ol.multi-carousel-indicators{margin-bottom:0;bottom:0}.multi-carousel-indicators.style1 li{border-color:#ddd}.carousel-indicators .active{background-color:#ddd}.multi-carousel-nav-next,.multi-carousel-nav-prev{z-index:9}.magee-carousel .owl-nav{display:none}.magee-carousel .owl-controls{position:relative;text-align:center;height:auto;margin-top:0;display:none}.magee-carousel .owl-controls.style1,.magee-carousel .owl-controls.style2,.magee-carousel .owl-controls.style3,.magee-carousel .owl-controls.style4{display:block}.magee-carousel .owl-controls .owl-dot{display:inline-block}.magee-carousel .owl-controls .owl-dot span{display:block;width:10px;height:10px;margin:25px 5px 0;opacity:.4;-webkit-border-radius:20px;-moz-border-radius:20px;border-radius:20px;background-color:#777;overflow:hidden}.magee-carousel .owl-controls .owl-dot.active span,.magee-carousel .owl-controls.clickable .owl-page:hover span{opacity:1}.magee-carousel .owl-controls.style2 .owl-dot span{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;width:8px;height:8px;-webkit-transform:rotate(45deg);transform:rotate(45deg)}.magee-carousel .owl-controls.style3 .owl-dot span{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;background-color:transparent;border:1px solid #777;width:8px;height:8px}.magee-carousel .owl-controls.clickable.style3 .owl-page:hover span,.magee-carousel .owl-controls.style3 .owl-dot.active span{opacity:1;background-color:#777}.magee-carousel .owl-controls.style4 .owl-dot span{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;background-color:transparent;border:1px solid #777;width:15px;height:5px;margin:25px 3px 0;border-radius:10px}.magee-carousel .owl-controls.clickable.style4 .owl-page:hover span,.magee-carousel .owl-controls.style4 .owl-dot.active span{opacity:1;background-color:#777}.portfolio-box figcaption{margin-bottom:10px}.portfolio-box figcaption h3{margin:0;font-size:18px;padding:20px 0 10px}.portfolio-box figcaption ul{display:inline-block;margin-left:0;margin-bottom:10px}.portfolio-box figcaption li{list-style-type:none;float:left}.portfolio-box figcaption li+li::before{content:"\, "}.portfolio-img-box{position:relative;background-color:#fdd200}.portfolio-info-box{position:absolute;top:0;left:0;width:100%;height:100%;z-index:-1;opacity:0}.portfolio-img-box:hover .portfolio-info-box{z-index:9;opacity:1}.portfolio-img-box:hover img{opacity:.15;transition:all .5s ease 0s;-webkit-transition:all .5s ease 0s;-o-transition:all .5s ease 0s}.portfolio-img-box .portfolio-icon-box{position:absolute;top:50%;left:0;margin-top:-25px;width:100%;text-align:center;transform:translateY(-80px);-webkit-transform:translateY(-80px);-o-transform:translateY(-80px);transition:all .5s ease 0s;-webkit-transition:all .5s ease 0s;-o-transition:all .5s ease 0s}.portfolio-img-box:hover .portfolio-icon-box{transform:translateY(0);-webkit-transform:translateY(0);-o-transform:translateY(0);transition:all .5s ease 0s;-webkit-transition:all .5s ease 0s;-o-transition:all .5s ease 0s}.portfolio-icon-box a{display:inline-block;width:50px;height:50px;border-radius:25px;margin:0 20px;background-color:#fff;font-size:20px;line-height:50px}.portfolio-list-wrap{position:relative;margin:0}.portfolio-list-items{overflow:hidden;margin:0 -15px}.portfolio-box-wrap{float:left;padding:0 15px 15px;margin-bottom:30px}.portfolio-carousel .portfolio-box-wrap{padding-bottom:0}.portfolio-list-filter ul{list-style:none}.portfolio-list-wrap.full-width .portfolio-list-items{margin:0}.portfolio-list-wrap.full-width .portfolio-box-wrap{padding:0;margin-bottom:0}.portfolio-box .feature-img-box{margin-bottom:0}.portfolio-box .entry-header{margin:0;padding-bottom:0;padding-top:10px}.portfolio-box .entry-title{margin:20px 0 0}.portfolio-box .entry-meta{margin:10px 0 0}.portfolio-box .entry-summary{margin:5px 0 0}@media screen and (min-width:768px){.portfolio-grid .portfolio-box-wrap{width:50%}}@media screen and (min-width:992px){.portfolio-grid .portfolio-box-wrap{width:33.33333333%}.portfolio-grid .portfolio-box-wrap.wrap-2x{width:66.66666666%}}@media screen and (min-width:1200px){.portfolio-grid .portfolio-box-wrap{width:20%}.portfolio-grid .portfolio-box-wrap.wrap-2x{width:40%}}.portfolio-list-filter li a{display:block;padding:5px 15px;border:1px solid #aaa}.portfolio-list-filter li a:hover,.portfolio-list-filter li.active a{background-color:#cabe8b;color:#fff;border-color:#cabe8b}.magee-blog-list-wrap .entry-box-wrap .entry-header a h4{color:#666;margin:0 0 10px}.magee-blog-list-wrap .entry-box-wrap .entry-header a:hover h4{color:#fdd200}.shortcode-blog-list-wrap .post-pagination-decoration{height:auto;position:static;background-color:transparent}.shortcode-blog-list-wrap .post-pagination-decoration li{display:inline;padding:5px}.blog-timeline-icon{font-size:60px;color:#ccc}.blog-timeline-inner{position:relative}.blog-timeline-line{position:absolute;top:0;left:30px;margin-left:-1px;height:100%;border-left:1px solid #e5e5e5;border-right:1px solid #e5e5e5}.blog-list-wrap.blog-timeline .entry-box-wrap{width:100%;position:relative}.blog-list-wrap.blog-timeline .entry-box-wrap:after{content:"";position:absolute;width:10px;height:10px;border-radius:50%;background-color:#e5e5e5;top:55px;left:25px}.blog-list-wrap.blog-timeline .entry-box{border:1px solid #ccc;padding:1px;background-color:#fff;position:relative;box-shadow:1px 1px 5px 0 rgba(0,0,0,.1);margin-bottom:50px}.blog-list-wrap.blog-timeline .entry-box:before{content:"";position:absolute;width:0;height:0;border:10px solid transparent;top:50px}.blog-list-wrap.blog-timeline .entry-box:before{border-right-color:#ccc;left:0;margin-left:-21px}.blog-list-wrap.blog-timeline .entry-box:after{content:"";position:absolute;width:0;height:0;border:9px solid transparent;top:51px}.blog-list-wrap.blog-timeline .entry-box:after{border-right-color:#fff;left:0;margin-left:-18px}.blog-list-wrap.blog-timeline .entry-main{padding:10px 20px}.blog-timeline-loading{margin:20px 0}.magee-blog .entry-meta li{list-style:none}.magee-blog .entry-box-wrap{padding-bottom:15px}.magee-blog .entry-title{margin:0 0 10px}.magee-blog .entry-header{border-bottom:none;margin-bottom:0;padding-bottom:10px;padding-top:10px;margin-top:0}.magee-blog a{text-decoration:none}.magee-blog .entry-meta{font-size:12px;text-transform:uppercase;margin:0;padding:10px 0}.magee-blog .entry-meta li{list-style-type:none;display:inline-block;margin-right:10px}.magee-blog .feature-img-box{padding-bottom:15px}.magee-blog .feature-img-box img{max-width:100%}.magee-blog .entry-meta li.entry-comments{margin-right:0}.magee-blog .entry-meta i{margin-right:5px}.magee-blog .entry-meta a{color:#888}.magee-blog .entry-meta a:hover{color:#fdd200}.magee-blog .entry-footer{margin:20px 0;overflow:hidden}.magee-blog .entry-tags{margin:10px 0}.magee-blog .entry-share{margin:10px 0}.magee-blog .entry-share li,.magee-blog .entry-tags li{display:inline-block;list-style-type:none}.magee-blog .entry-share li a,.magee-blog .entry-tags li a{display:block;padding:0 10px;border:1px solid #a0a0a0;font-size:.9em;line-height:22px}.magee-blog .entry-tags.no-border li{margin-right:10px}.magee-blog .entry-share.no-border li{margin-left:10px}.magee-blog .entry-share.no-border li a,.magee-blog .entry-tags.no-border li a{border:none;padding:0}.magee-blog .entry-footer li a:hover{border-color:#fdd200}@media screen and (min-width:768px){.blog-timeline-icon{text-align:center}.blog-timeline-line{left:50%}.blog-list-wrap.blog-timeline .entry-box-wrap{width:50%}.blog-list-wrap.blog-timeline .entry-box-wrap.timeline-left{float:left;padding-right:10%}.blog-list-wrap.blog-timeline .entry-box-wrap.timeline-left:after{right:0;margin-right:-5px;left:auto}.blog-list-wrap.blog-timeline .entry-box-wrap.timeline-right{float:right;padding-left:10%}.blog-list-wrap.blog-timeline .entry-box-wrap.timeline-right:after{left:0;margin-left:-5px}.blog-list-wrap.blog-timeline .timeline-left .entry-box:before{border-left-color:#ccc;border-right-color:transparent;left:auto;right:0;margin-right:-21px;margin-left:0}.blog-list-wrap.blog-timeline .timeline-left .entry-box:after{border-left-color:#fff;border-right-color:transparent;left:auto;right:0;margin-right:-18px}}.clients img{opacity:.6}.clients img:hover{opacity:1}.magee-contact-form .row{margin:0 -5px}.magee-contact-form label{padding-left:0}.magee-contact-form .checkbox label{padding-left:30px}.magee-contact-form .checkbox input[type=checkbox]{margin-left:-30px}.magee-contact-form [class*=col-]{padding:0 5px}.magee-contact-form .input-group-addon{padding:10px}.magee-contact-form .form-control{padding:20px;margin-bottom:0}.magee-contact-form .form-group,.magee-shortcode .magee-contact-form .checkbox{margin-bottom:15px}.magee-contact-form .input-group .form-control{margin-bottom:0}.magee-contact-form .checkbox,.magee-contact-form .radio{margin:0}.magee-contact-form .input-group-addon:first-child{border-radius:0}.magee-contact-form input:focus,.magee-contact-form textarea:focus{border-color:inherit}.magee-contact-form input::-webkit-input-placeholder,.magee-contact-form textarea::-webkit-input-placeholder{color:inherit;opacity:.8}.magee-contact-form input:-moz-placeholder,.magee-contact-form textarea:-moz-placeholder{color:inherit;opacity:.8}.magee-contact-form.contact-form-custom input:focus,.magee-contact-form.contact-form-custom textarea:focus{box-shadow:0 0 5px 1px rgba(0,0,0,.1)}.magee-contact-form.contact-form-line .form-control{padding:19px;background-color:transparent;border-width:2px}.magee-contact-form.contact-form-bg input[type=submit],.magee-contact-form.contact-form-line input[type=submit]{width:100%}.magee-contact-form.contact-form-line.dark{color:#222}.magee-contact-form.contact-form-line.light{color:#fff}.magee-contact-form.contact-form-line.dark .form-control{border-color:#222;color:#222}.magee-contact-form.contact-form-line.light .form-control{border-color:#fff;color:#fff}.magee-contact-form.contact-form-line input:focus,.magee-contact-form.contact-form-line textarea:focus{border-color:inherit}.magee-contact-form.contact-form-line.dark input:focus,.magee-contact-form.contact-form-line.dark textarea:focus{border-color:inherit;background-color:rgba(0,0,0,.1)}.magee-contact-form.contact-form-line.light input:focus,.magee-contact-form.contact-form-line.light textarea:focus{border-color:inherit;background-color:rgba(255,255,255,.1)}.magee-contact-form.contact-form-bg .form-control{border:none;padding:21px}.magee-contact-form.contact-form-bg.dark .form-control{background-color:#222;color:#fff}.magee-contact-form.contact-form-bg.light .form-control{background-color:#fff;color:#222}.magee-contact-form input.form-control{display:block;padding:0 20px!important;height:42px}.notice-success{color:green}.notice-error{color:red}.back-to-top{position:fixed;right:10px;bottom:10px;width:48px;height:48px;font:normal normal normal 20px/48px FontAwesome;text-align:center;color:#fff;background-color:#aaa;opacity:.5}.back-to-top:hover{color:#fff;opacity:.8}.magee-flipbox-wrap{position:relative;-webkit-perspective:2000px;-moz-perspective:2000px;-ms-perspective:2000px;perspective:2000px;width:100%}.magee-flipbox{position:relative;width:100%;height:100%;-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;-ms-transform-style:preserve-3d;-o-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transition:all .5s cubic-bezier(.645,.045,.355,1);-moz-transition:all .5s cubic-bezier(.645,.045,.355,1);-ms-transition:all .5s cubic-bezier(.645,.045,.355,1);-o-transition:all .5s cubic-bezier(.645,.045,.355,1);transition:all .5s cubic-bezier(.645,.045,.355,1)}.flipbox-back,.flipbox-front{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden;-webkit-transition:all .5s cubic-bezier(.645,.045,.355,1);-moz-transition:all .5s cubic-bezier(.645,.045,.355,1);-ms-transition:all .5s cubic-bezier(.645,.045,.355,1);-o-transition:all .5s cubic-bezier(.645,.045,.355,1);transition:all .5s cubic-bezier(.645,.045,.355,1);-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;-o-transform-style:preserve-3d;-ms-transform-style:preserve-3d;transform-style:preserve-3d;position:absolute;left:0;top:0;height:100%;min-height:100%;width:100%;display:table;table-layout:fixed}.magee-flipbox-wrap.horizontal .flipbox-front{-webkit-transform:rotateY(0);transform:rotateY(0);z-index:2}.magee-flipbox-wrap.horizontal:hover .flipbox-front{-webkit-transform:rotateY(180deg);transform:rotateY(180deg);visibility:hidden}.magee-flipbox-wrap.horizontal .flipbox-back{-webkit-transform:rotateY(-180deg);transform:rotateY(-180deg)}.magee-flipbox-wrap.horizontal:hover .flipbox-back{-webkit-transform:rotateY(0);transform:rotateY(0);z-index:3}.magee-flipbox-wrap.horizontal .horizontal-touchstart-front{-webkit-transform:rotateY(180deg);transform:rotateY(180deg);visibility:hidden}.magee-flipbox-wrap.horizontal .horizontal-touchstart-back{-webkit-transform:rotateY(0);transform:rotateY(0);z-index:3}.magee-flipbox-wrap.horizontal .horizontal-touchend-front{-webkit-transform:rotateY(0)!important;transform:rotateY(0)!important;visibility:visible!important}.magee-flipbox-wrap.horizontal .horizontal-touchend-back{-webkit-transform:rotateY(-180deg)!important;transform:rotateY(-180deg)!important}.magee-flipbox-wrap.vertical .flipbox-front{-webkit-transform:rotateX(0);transform:rotateX(0);z-index:2}.magee-flipbox-wrap.vertical:hover .flipbox-front{-webkit-transform:rotateX(-180deg);transform:rotateX(-180deg);visibility:hidden}.magee-flipbox-wrap.vertical .flipbox-back{-webkit-transform:rotateX(180deg);transform:rotateX(180deg)}.magee-flipbox-wrap.vertical:hover .flipbox-back{-webkit-transform:rotateX(0);transform:rotateX(0);z-index:3}.magee-flipbox-wrap.vertical .vertical-touchstart-front{-webkit-transform:rotateX(-180deg);transform:rotateX(-180deg);visibility:hidden}.magee-flipbox-wrap.vertical .vertical-touchstart-back{-webkit-transform:rotateX(0);transform:rotateX(0);z-index:3}.magee-flipbox-wrap.vertical .vertical-touchend-front{-webkit-transform:rotateX(0)!important;transform:rotateX(0)!important;visibility:visible!important}.magee-flipbox-wrap.vertical .vertical-touchend-back{-webkit-transform:rotateX(180deg)!important;transform:rotateX(180deg)!important}.flipbox-content{text-align:center;vertical-align:middle;display:table-cell;width:100%;padding:15px}.magee-flipbox-wrap.slide-left:hover .flipbox-front{-webkit-transform:translateX(0);transform:translateX(0);opacity:0}.magee-flipbox-wrap.slide-left .flipbox-back{-webkit-transform:translateX(-50%);transform:translateX(-50%);opacity:0}.magee-flipbox-wrap.slide-left:hover .flipbox-back{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}.magee-flipbox-wrap.slide-left .slide-left-touchstart-front{-webkit-transform:translateX(0);transform:translateX(0);opacity:0}.magee-flipbox-wrap.slide-left .slide-left-touchstart-back{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}.magee-flipbox-wrap.slide-left .slide-left-touchend-front{-webkit-transform:translateX(0)!important;transform:translateX(0)!important;opacity:1!important}.magee-flipbox-wrap.slide-left .slide-left-touchend-back{-webkit-transform:translateX(-50%)!important;transform:translateX(-50%)!important;opacity:0!important}.magee-flipbox-wrap.slide-right:hover .flipbox-front{-webkit-transform:translateX(0);transform:translateX(0);opacity:0}.magee-flipbox-wrap.slide-right .flipbox-back{-webkit-transform:translateX(50%);transform:translateX(50%);opacity:0}.magee-flipbox-wrap.slide-right:hover .flipbox-back{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}.magee-flipbox-wrap.slide-right .slide-right-touchstart-front{-webkit-transform:translateX(0);transform:translateX(0);opacity:0}.magee-flipbox-wrap.slide-right .slide-right-touchstart-back{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}.magee-flipbox-wrap.slide-right .slide-right-touchend-front{-webkit-transform:translateX(0)!important;transform:translateX(0)!important;opacity:1!important}.magee-flipbox-wrap.slide-right .slide-right-touchend-back{-webkit-transform:translateX(10%)!important;transform:translateX(10%)!important;opacity:0!important}.magee-flipbox-wrap.slide-top:hover .flipbox-front{-webkit-transform:translateY(0);transform:translateY(0);opacity:0}.magee-flipbox-wrap.slide-top .flipbox-back{-webkit-transform:translateY(-50%);transform:translateY(-50%);opacity:0}.magee-flipbox-wrap.slide-top:hover .flipbox-back{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}.magee-flipbox-wrap.slide-top .slide-top-touchstart-front{-webkit-transform:translateY(0);transform:translateY(0);opacity:0}.magee-flipbox-wrap.slide-top .slide-top-touchstart-back{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}.magee-flipbox-wrap.slide-top .slide-top-touchend-front{-webkit-transform:translateY(0)!important;transform:translateY(0)!important;opacity:1!important}.magee-flipbox-wrap.slide-top .slide-top-touchend-back{-webkit-transform:translateY(-50%)!important;transform:translateY(-50%)!important;opacity:0!important}.magee-flipbox-wrap.slide-bottom:hover .flipbox-front{-webkit-transform:translateY(0);transform:translateY(0);opacity:0}.magee-flipbox-wrap.slide-bottom .flipbox-back{-webkit-transform:translateY(50%);transform:translateY(50%);opacity:0}.magee-flipbox-wrap.slide-bottom:hover .flipbox-back{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}.magee-flipbox-wrap.slide-bottom .slide-bottom-touchstart-front{-webkit-transform:translateY(0);transform:translateY(0);opacity:0}.magee-flipbox-wrap.slide-bottom .slide-bottom-touchstart-back{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}.magee-flipbox-wrap.slide-bottom .slide-bottom-touchend-front{-webkit-transform:translateY(0)!important;transform:translateY(0)!important;opacity:1!important}.magee-flipbox-wrap.slide-bottom .slide-bottom-touchend-back{-webkit-transform:translateY(50%)!important;transform:translateY(50%)!important;opacity:0!important}.magee-flipbox-wrap.flip-bottom .flipbox-back{-webkit-transform-origin:0% 100%;-moz-transform-origin:0% 100%;-ms-transform-origin:0% 100%;-o-transform-origin:0% 100%;transform-origin:0% 100%;-webkit-transform:rotateX(-270deg);-moz-transform:rotateX(-270deg);-ms-transform:rotateX(-270deg);-o-transform:rotateX(-270deg);transform:rotateX(-270deg);-webkit-backface-visibility:visible;-moz-backface-visibility:visible;-o-backface-visibility:visible;backface-visibility:visible}.magee-flipbox-wrap.flip-bottom:hover .flipbox-back{-webkit-transform:rotateX(0);-moz-transform:rotateX(0);-ms-transform:rotateX(0);-o-transform:rotateX(0);transform:rotateX(0)}.magee-flipbox-wrap.flip-bottom .flip-bottom-touchstart-back{-webkit-transform:rotateX(0);-moz-transform:rotateX(0);-ms-transform:rotateX(0);-o-transform:rotateX(0);transform:rotateX(0)}.magee-flipbox-wrap.flip-bottom .flip-bottom-touchend-back{-webkit-transform-origin:0% 100%!important;-moz-transform-origin:0% 100%!important;-ms-transform-origin:0% 100%!important;-o-transform-origin:0% 100%!important;transform-origin:0% 100%!important;-webkit-transform:rotateX(-270deg)!important;-moz-transform:rotateX(-270deg)!important;-ms-transform:rotateX(-270deg)!important;-o-transform:rotateX(-270deg)!important;transform:rotateX(-270deg)!important;-webkit-backface-visibility:visible!important;-moz-backface-visibility:visible!important;-o-backface-visibility:visible!important;backface-visibility:visible!important}.magee-flipbox-wrap.flip-top .flipbox-back{-webkit-transform-origin:0% 0%;-moz-transform-origin:0% 0%;-ms-transform-origin:0% 0%;-o-transform-origin:0% 0%;transform-origin:0% 0%;-webkit-transform:rotateX(270deg);-moz-transform:rotateX(270deg);-ms-transform:rotateX(270deg);-o-transform:rotateX(270deg);transform:rotateX(270deg);-webkit-backface-visibility:visible;-moz-backface-visibility:visible;-o-backface-visibility:visible;backface-visibility:visible}.magee-flipbox-wrap.flip-top:hover .flipbox-back{-webkit-transform:rotateX(0);-moz-transform:rotateX(0);-ms-transform:rotateX(0);-o-transform:rotateX(0);transform:rotateX(0)}.magee-flipbox-wrap.flip-top .flip-top-touchstart-back{-webkit-transform:rotateX(0);-moz-transform:rotateX(0);-ms-transform:rotateX(0);-o-transform:rotateX(0);transform:rotateX(0)}.magee-flipbox-wrap.flip-top .flip-top-touchend-back{-webkit-transform-origin:0% 0%!important;-moz-transform-origin:0% 0%!important;-ms-transform-origin:0% 0%!important;-o-transform-origin:0% 0%!important;transform-origin:0% 0%!important;-webkit-transform:rotateX(270deg)!important;-moz-transform:rotateX(270deg)!important;-ms-transform:rotateX(270deg)!important;-o-transform:rotateX(270deg)!important;transform:rotateX(270deg)!important;-webkit-backface-visibility:visible!important;-moz-backface-visibility:visible!important;-o-backface-visibility:visible!important;backface-visibility:visible!important}.magee-flipbox-wrap.flip-left .flipbox-back{-moz-transform-origin:0%;-ms-transform-origin:0%;-o-transform-origin:0%;-webkit-transform-origin:0%;transform-origin:0%;-webkit-transform:rotateY(-270deg);-moz-transform:rotateY(-270deg);-ms-transform:rotateY(-270deg);-o-transform:rotateY(-270deg);transform:rotateY(-270deg);-webkit-backface-visibility:visible;-moz-backface-visibility:visible;-o-backface-visibility:visible;backface-visibility:visible}.magee-flipbox-wrap.flip-left:hover .flipbox-back{-webkit-transform:rotateY(0);-moz-transform:rotateY(0);-ms-transform:rotateY(0);-o-transform:rotateY(0);transform:rotateY(0)}.magee-flipbox-wrap.flip-left .flip-left-touchstart-back{-webkit-transform:rotateY(0);-moz-transform:rotateY(0);-ms-transform:rotateY(0);-o-transform:rotateY(0);transform:rotateY(0)}.magee-flipbox-wrap.flip-left .flip-left-touchend-back{-webkit-transform-origin:0%!important;-moz-transform-origin:0%!important;-ms-transform-origin:0%!important;-o-transform-origin:0%!important;transform-origin:0%!important;-webkit-transform:rotateY(-270deg)!important;-moz-transform:rotateY(-270deg)!important;-ms-transform:rotateY(-270deg)!important;-o-transform:rotateY(-270deg)!important;transform:rotateY(-270deg)!important;-webkit-backface-visibility:visible!important;-moz-backface-visibility:visible!important;-o-backface-visibility:visible!important;backface-visibility:visible!important}.magee-flipbox-wrap.flip-right .flipbox-back{-moz-transform-origin:100%;-ms-transform-origin:100%;-o-transform-origin:100%;-webkit-transform-origin:100%;transform-origin:100%;-webkit-transform:rotateY(270deg);-moz-transform:rotateY(270deg);-ms-transform:rotateY(270deg);-o-transform:rotateY(270deg);transform:rotateY(270deg);-webkit-backface-visibility:visible;-moz-backface-visibility:visible;-o-backface-visibility:visible;backface-visibility:visible}.magee-flipbox-wrap.flip-right:hover .flipbox-back{-webkit-transform:rotateY(0);-moz-transform:rotateY(0);-ms-transform:rotateY(0);-o-transform:rotateY(0);transform:rotateY(0)}.magee-flipbox-wrap.flip-right .flip-right-touchstart-back{-webkit-transform:rotateY(0);-moz-transform:rotateY(0);-ms-transform:rotateY(0);-o-transform:rotateY(0);transform:rotateY(0)}.magee-flipbox-wrap.flip-right .flip-right-touchend-back{-webkit-transform-origin:100%!important;-moz-transform-origin:100%!important;-ms-transform-origin:100%!important;-o-transform-origin:100%!important;transform-origin:100%!important;-webkit-transform:rotateY(270deg)!important;-moz-transform:rotateY(270deg)!important;-ms-transform:rotateY(270deg)!important;-o-transform:rotateY(270deg)!important;transform:rotateY(270deg)!important;-webkit-backface-visibility:visible!important;-moz-backface-visibility:visible!important;-o-backface-visibility:visible!important;backface-visibility:visible!important}.magee-icon{margin-right:10px;margin-bottom:10px}.magee-icon:last-child{margin-right:0}.magee-icon.square{border-radius:0}.magee-icon.rounded{border-radius:5px}.magee-icon.circle{border-radius:50%}.magee-icon.icon-boxed{width:2em;height:2em;line-height:2;text-align:center;color:#fff;background-color:#f5f5f5;border:1px solid transparent}.magee-icon.icon-3d{box-shadow:0 2px 0 0 #e5e5e5}.magee-fa-icon{font-size:inherit}.magee-fa-icon.icon-boxed{font-size:inherit;width:2em;height:2em;line-height:2em;text-align:center;color:#fff;background-color:#777;border:0;border-radius:5px}.magee-section{position:relative;-webkit-background-size:cover;-ms-background-size:cover;-o-background-size:cover;background-size:cover}.fullheight{min-height:100vh;display:table;width:100%}.magee-section.fullheight .section-content{display:table-cell;width:100%;position:relative;overflow:hidden}.magee-section.verticalmiddle .section-content{vertical-align:middle}.magee-section .background-media,.magee-section .background-overlay{position:absolute;width:100%;left:0;top:0;bottom:0;overflow:hidden}.gmnoprint img{max-width:none}.magee-slider .item img{width:100%}.magee-slider .carousel-control span{position:absolute;top:40%}.magee-slider .carousel-indicators{display:none}.magee-slider .carousel-control span::before{color:#fff;font-size:50px}.magee-heading{border-color:#555}.magee-heading .heading-inner{display:inline-block;border-style:solid;border-color:inherit}.magee-heading.heading-border .heading-inner{padding:5px 0;border-top-width:2px;border-bottom-width:2px;border-left-width:0!important;border-right-width:0!important}.magee-heading.heading-boxed .heading-inner{padding:10px;border-width:2px}.magee-heading.heading-boxed-reverse{color:#fff}.magee-heading.heading-boxed-reverse .heading-inner{padding:10px;box-shadow:0 0 0 2px #fff inset;border-width:2px;background-color:#555}.magee-heading.heading-doubleline{overflow:hidden}.magee-heading.heading-doubleline .heading-inner{position:relative;z-index:9;padding-bottom:5px}.magee-heading.heading-doubleline .heading-inner:after,.magee-heading.heading-doubleline .heading-inner:before{content:"";position:absolute;width:2000px;height:12px;border-top-width:1px;border-bottom-width:1px;border-left-width:0!important;border-right-width:0!important;border-style:solid;border-color:inherit;top:50%;margin-top:-6px;z-index:-1}.magee-heading.heading-doubleline .heading-inner:before{right:100%;margin-right:10px}.magee-heading.heading-doubleline .heading-inner:after{left:100%;margin-left:10px}.magee-heading.heading-charactershadow .heading-inner{position:relative;z-index:9;padding:2em 0 1em}.magee-heading.heading-charactershadow .heading-inner:before{content:"T";position:absolute;top:0;z-index:-1;color:inherit;opacity:.2;font-size:4em;width:100%}.table,.table td,.table th{border-width:0}.table.table-bordered{border-width:1px}.magee-table .table thead th{background-color:#fdd200;color:#fff;border-bottom-width:0}.img-side{padding:0;position:absolute;top:0;height:100%;overflow:hidden;z-index:100}.img-side.img-right{right:0}.img-side.img-left{left:0}.magee-twitter-feed{list-style-type:none;margin:0}.magee-twitter-feed li{list-style-type:none;font-style:italic;margin:0 0 12px 0;padding:0 0 0 25px;position:relative}.magee-twitter-feed li:before{position:absolute;font:normal normal normal 20px/25px FontAwesome;content:"\f099";left:0;top:0}.magee-twitter-feed li span{display:block;font-size:.8em;font-style:normal}.magee-label{background-color:#fdd200;padding:0 3px}.video-wrap{width:100%}.video-wrap iframe{width:100%;height:100%}.magee-wheather-box{background-color:#fdd200;color:#fff;padding:10px}.magee-wheather-box h2{color:#fff;margin-top:0;margin-bottom:5px}.magee-wheather .w-today{width:100%;overflow:hidden}.magee-wheather .w-icon-wrap{float:right;width:50%;text-align:center}.magee-wheather .w-icon-wrap i{font-size:3.4em;line-height:1.5}.magee-wheather .w-icon-wrap .w-text{margin-bottom:0;margin-top:5px}.magee-wheather .w-temp{float:left;width:50%;text-align:center;font-size:4em;line-height:1.5;margin-bottom:0}.magee-wheather .w-temp sup{opacity:.8;font-size:60%}.magee-wheather-box{background-color:#fdd200;color:#fff;padding:10px;font-size:inherit}.magee-wheather-box h2{color:#fff;margin-top:0;margin-bottom:5px}.magee-wheather .w-today{width:100%;overflow:hidden}.magee-wheather .w-icon-wrap{float:right;width:50%;text-align:center}.magee-wheather .w-icon-wrap i{font-size:3.4em;line-height:1.5}.magee-wheather .w-icon-wrap .w-text{margin-bottom:0;margin-top:5px;font-size:inherit}.magee-wheather .w-temp{float:left;width:50%;text-align:center;font-size:4em;line-height:1.5;margin-bottom:0}.magee-wheather .w-temp sup{opacity:.8;font-size:60%}.magee-wheather .w-detail{overflow:hidden;width:100%}.magee-wheather p.w-day{font-weight:700;font-size:inherit}.magee-wheather .w-detail ul{width:33%;float:left;list-style-type:none;margin:0}.magee-wheather .w-detail li{display:block;line-height:24px}.magee-wheather .w-forecasts{width:100%;margin-top:15px;border:0;table-layout:auto;border-collapse:collapse}.magee-wheather .w-forecasts tr{border-top:1px solid rgba(255,255,255,.15)}.magee-wheather .w-forecasts td{border:0;padding:5px 0;font-weight:700;color:#fff}.magee-wheather .w-forecasts td+td{min-width:40px;text-align:center;font-weight:400}.magee-blockquote blockquote{padding:10px 20px 10px 45px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee;position:relative}.magee-blockquote blockquote ol:last-child,.magee-blockquote blockquote p:last-child,.magee-blockquote blockquote ul:last-child{margin-bottom:0}.magee-blockquote blockquote .small,.magee-blockquote blockquote footer,.magee-blockquote blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#777}.magee-blockquote blockquote .small:before,.magee-blockquote blockquote footer:before,.magee-blockquote blockquote small:before{content:'\2014 \00A0'}.magee-blockquote .blockquote-reverse,.magee-blockquote blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0}.blockquote-reverse small:before,.magee-blockquote .blockquote-reverse .small:before,.magee-blockquote .blockquote-reverse footer:before,.magee-blockquote blockquote.pull-right .small:before,.magee-blockquote blockquote.pull-right footer:before,.magee-blockquote blockquote.pull-right small:before{content:''}.magee-blockquote .blockquote-reverse .small:after,.magee-blockquote .blockquote-reverse footer:after,.magee-blockquote .blockquote-reverse small:after,.magee-blockquote blockquote.pull-right .small:after,.magee-blockquote blockquote.pull-right footer:after,.magee-blockquote blockquote.pull-right small:after{content:'\00A0 \2014'}.magee-blockquote blockquote::before{font-family:Arial;content:"\201C";color:#78c0a8;font-size:4em;position:absolute;left:10px;top:0;line-height:1}.magee-blockquote blockquote footer a{color:#78c0a8}blockquote.magee-pullquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote.magee-pullquote.blockquote-reverse{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0;text-align:right}.magee-shortcode .tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;opacity:0;line-break:auto}.magee-shortcode .tooltip.in{opacity:.9}.magee-shortcode .tooltip.top{padding:5px 0;margin-top:-3px}.magee-shortcode .tooltip.right{padding:0 5px;margin-left:3px}.magee-shortcode .tooltip.bottom{padding:5px 0;margin-top:3px}.magee-shortcode .tooltip.left{padding:0 5px;margin-left:-3px}.magee-shortcode .tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.magee-shortcode .tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.magee-shortcode .tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.magee-shortcode .tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.magee-shortcode .tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.magee-shortcode .tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.magee-shortcode .tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.magee-shortcode .tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.magee-shortcode .tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.magee-shortcode .tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.magee-popover .popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);line-break:auto}.magee-popover .popover.top{margin-top:-10px}.magee-popover .popover.right{margin-left:10px}.magee-popover .popover.bottom{margin-top:10px}.magee-popover .popover.left{margin-left:-10px}.magee-popover .popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.magee-popover .popover-content{padding:9px 14px}.magee-popover .popover>.arrow,.magee-popover .popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.magee-popover .popover>.arrow{border-width:11px}.magee-popover .popover>.arrow:after{content:"";border-width:10px}.magee-popover .popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.magee-popover .popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.magee-popover .popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.magee-popover .popover.right>.arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.magee-popover .popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.magee-popover .popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}.magee-popover .popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.magee-popover .popover.left>.arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.magee-table table{background-color:transparent}.magee-table caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}.magee-table th{text-align:left}.magee-table table{width:100%;max-width:100%;margin-bottom:20px}.magee-table table>tbody>tr>td,.magee-table table>tbody>tr>th,.magee-table table>tfoot>tr>td,.magee-table table>tfoot>tr>th,.magee-table table>thead>tr>td,.magee-table table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.magee-table table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.magee-table table>caption+thead>tr:first-child>td,.magee-table table>caption+thead>tr:first-child>th,.magee-table table>colgroup+thead>tr:first-child>td,.magee-table table>colgroup+thead>tr:first-child>th,.magee-table table>thead:first-child>tr:first-child>td,.magee-table table>thead:first-child>tr:first-child>th{border-top:0}.magee-table table>tbody+tbody{border-top:2px solid #ddd}.magee-table table .magee-table table{background-color:#fff}.magee-table .table-condensed>tbody>tr>td,.magee-table .table-condensed>tbody>tr>th,.magee-table .table-condensed>tfoot>tr>td,.magee-table .table-condensed>tfoot>tr>th,.magee-table .table-condensed>thead>tr>td,.magee-table .table-condensed>thead>tr>th{padding:5px}.magee-table .table-bordered{border:1px solid #ddd}.magee-table .table-bordered>tbody>tr>td,.magee-table .table-bordered>tbody>tr>th,.magee-table .table-bordered>tfoot>tr>td,.magee-table .table-bordered>tfoot>tr>th,.magee-table .table-bordered>thead>tr>td,.magee-table .table-bordered>thead>tr>th{border:1px solid #ddd}.magee-table .table-bordered>thead>tr>td,.magee-table .table-bordered>thead>tr>th{border-bottom-width:2px}.magee-table .table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.magee-table .magee-table .table-hover>tbody>tr:hover{background-color:#f5f5f5}.magee-table table col[class*=col-]{position:static;display:table-column;float:none}.magee-table table td[class*=col-],.magee-table table th[class*=col-]{position:static;display:table-cell;float:none}.magee-table table>tbody>tr.active>td,.magee-table table>tbody>tr.active>th,.magee-table table>tbody>tr>td.active,.magee-table table>tbody>tr>th.active,.magee-table table>tfoot>tr.active>td,.magee-table table>tfoot>tr.active>th,.magee-table table>tfoot>tr>td.active,.magee-table table>tfoot>tr>th.active,.magee-table table>thead>tr.active>td,.magee-table table>thead>tr.active>th,.magee-table table>thead>tr>td.active,.magee-table table>thead>tr>th.active{background-color:#f5f5f5}.magee-table .table-hover>tbody>tr.active:hover>td,.magee-table .table-hover>tbody>tr.active:hover>th,.magee-table .table-hover>tbody>tr:hover>.active,.magee-table .table-hover>tbody>tr>td.active:hover,.magee-table .table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.magee-table table>tbody>tr.success>td,.magee-table table>tbody>tr.success>th,.magee-table table>tbody>tr>td.success,.magee-table table>tbody>tr>th.success,.magee-table table>tfoot>tr.success>td,.magee-table table>tfoot>tr.success>th,.magee-table table>tfoot>tr>td.success,.magee-table table>tfoot>tr>th.success,.magee-table table>thead>tr.success>td,.magee-table table>thead>tr.success>th,.magee-table table>thead>tr>td.success,.magee-table table>thead>tr>th.success{background-color:#dff0d8}.magee-table .table-hover>tbody>tr.success:hover>td,.magee-table .table-hover>tbody>tr.success:hover>th,.magee-table .table-hover>tbody>tr:hover>.success,.magee-table .table-hover>tbody>tr>td.success:hover,.magee-table .table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.magee-table table>tbody>tr.info>td,.magee-table table>tbody>tr.info>th,.magee-table table>tbody>tr>td.info,.magee-table table>tbody>tr>th.info,.magee-table table>tfoot>tr.info>td,.magee-table table>tfoot>tr.info>th,.magee-table table>tfoot>tr>td.info,.magee-table table>tfoot>tr>th.info,.magee-table table>thead>tr.info>td,.magee-table table>thead>tr.info>th,.magee-table table>thead>tr>td.info,.magee-table table>thead>tr>th.info{background-color:#d9edf7}.magee-table .table-hover>tbody>tr.info:hover>td,.magee-table .table-hover>tbody>tr.info:hover>th,.magee-table .table-hover>tbody>tr:hover>.info,.magee-table .table-hover>tbody>tr>td.info:hover,.magee-table .table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.magee-table table>tbody>tr.warning>td,.magee-table table>tbody>tr.warning>th,.magee-table table>tbody>tr>td.warning,.magee-table table>tbody>tr>th.warning,.magee-table table>tfoot>tr.warning>td,.magee-table table>tfoot>tr.warning>th,.magee-table table>tfoot>tr>td.warning,.magee-table table>tfoot>tr>th.warning,.magee-table table>thead>tr.warning>td,.magee-table table>thead>tr.warning>th,.magee-table table>thead>tr>td.warning,.magee-table table>thead>tr>th.warning{background-color:#fcf8e3}.magee-table .table-hover>tbody>tr.warning:hover>td,.magee-table .table-hover>tbody>tr.warning:hover>th,.magee-table .table-hover>tbody>tr:hover>.warning,.magee-table .table-hover>tbody>tr>td.warning:hover,.magee-table .table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.magee-table table>tbody>tr.danger>td,.magee-table table>tbody>tr.danger>th,.magee-table table>tbody>tr>td.danger,.magee-table table>tbody>tr>th.danger,.magee-table table>tfoot>tr.danger>td,.magee-table table>tfoot>tr.danger>th,.magee-table table>tfoot>tr>td.danger,.magee-table table>tfoot>tr>th.danger,.magee-table table>thead>tr.danger>td,.magee-table table>thead>tr.danger>th,.magee-table table>thead>tr>td.danger,.magee-table table>thead>tr>th.danger{background-color:#f2dede}.magee-table .table-hover>tbody>tr.danger:hover>td,.magee-table .table-hover>tbody>tr.danger:hover>th,.magee-table .table-hover>tbody>tr:hover>.danger,.magee-table .table-hover>tbody>tr>td.danger:hover,.magee-table .table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.magee-table .table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.magee-table .table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.magee-table .table-responsive .table{margin-bottom:0}.magee-table .table-responsive .table>tbody>tr>td,.magee-table .table-responsive .table>tbody>tr>th,.magee-table .table-responsive .table>tfoot>tr>td,.magee-table .table-responsive .table>tfoot>tr>th,.magee-table .table-responsive .table>thead>tr>td,.magee-table .table-responsive .table>thead>tr>th{white-space:nowrap}.magee-table .table-responsive>.table-bordered{border:0}.magee-table .table-responsive>.table-bordered>tbody>tr>td:first-child,.magee-table .table-responsive>.table-bordered>tbody>tr>th:first-child,.magee-table .table-responsive>.table-bordered>tfoot>tr>td:first-child,.magee-table .table-responsive>.table-bordered>tfoot>tr>th:first-child,.magee-table .table-responsive>.table-bordered>thead>tr>td:first-child,.magee-table .table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.magee-table .table-responsive>.table-bordered>tbody>tr>td:last-child,.magee-table .table-responsive>.table-bordered>tbody>tr>th:last-child,.magee-table .table-responsive>.table-bordered>tfoot>tr>td:last-child,.magee-table .table-responsive>.table-bordered>tfoot>tr>th:last-child,.magee-table .table-responsive>.table-bordered>thead>tr>td:last-child,.magee-table .table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.magee-table .table-responsive>.table-bordered>tbody>tr:last-child>td,.magee-table .table-responsive>.table-bordered>tbody>tr:last-child>th,.magee-table .table-responsive>.table-bordered>tfoot>tr:last-child>td,.magee-table .table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}
|
assets/css/twentytwenty.min.css
DELETED
@@ -1 +0,0 @@
|
|
1 |
-
.twentytwenty-horizontal .twentytwenty-handle:after,.twentytwenty-horizontal .twentytwenty-handle:before,.twentytwenty-vertical .twentytwenty-handle:after,.twentytwenty-vertical .twentytwenty-handle:before{content:" ";display:block;background:#fff;position:absolute;z-index:30;-webkit-box-shadow:0 0 12px rgba(51,51,51,.5);-moz-box-shadow:0 0 12px rgba(51,51,51,.5);box-shadow:0 0 12px rgba(51,51,51,.5)}.twentytwenty-horizontal .twentytwenty-handle:after,.twentytwenty-horizontal .twentytwenty-handle:before{width:3px;height:9999px;left:50%;margin-left:-1.5px}.twentytwenty-vertical .twentytwenty-handle:after,.twentytwenty-vertical .twentytwenty-handle:before{width:9999px;height:3px;top:50%;margin-top:-1.5px}.twentytwenty-after-label,.twentytwenty-before-label,.twentytwenty-overlay{position:absolute;top:0;width:100%;height:100%}.twentytwenty-after-label,.twentytwenty-before-label,.twentytwenty-overlay{-webkit-transition-duration:.5s;-moz-transition-duration:.5s;transition-duration:.5s}.twentytwenty-after-label,.twentytwenty-before-label{-webkit-transition-property:opacity;-moz-transition-property:opacity;transition-property:opacity}.twentytwenty-after-label:before,.twentytwenty-before-label:before{color:#fff;font-size:13px;letter-spacing:.1em}.twentytwenty-after-label:before,.twentytwenty-before-label:before{position:absolute;background:rgba(255,255,255,.2);line-height:38px;padding:0 20px;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px}.twentytwenty-horizontal .twentytwenty-after-label:before,.twentytwenty-horizontal .twentytwenty-before-label:before{top:50%;margin-top:-19px}.twentytwenty-vertical .twentytwenty-after-label:before,.twentytwenty-vertical .twentytwenty-before-label:before{left:50%;margin-left:-45px;text-align:center;width:90px}.twentytwenty-down-arrow,.twentytwenty-left-arrow,.twentytwenty-right-arrow,.twentytwenty-up-arrow{width:0;height:0;border:6px inset transparent;position:absolute}.twentytwenty-left-arrow,.twentytwenty-right-arrow{top:50%;margin-top:-6px}.twentytwenty-down-arrow,.twentytwenty-up-arrow{left:50%;margin-left:-6px}.twentytwenty-container{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;z-index:0;overflow:hidden;position:relative;-webkit-user-select:none;-moz-user-select:none}.twentytwenty-container img{max-width:100%;position:absolute;top:0;display:block}.twentytwenty-container.active .twentytwenty-overlay,.twentytwenty-container.active :hover.twentytwenty-overlay{background:rgba(0,0,0,0)}.twentytwenty-container.active .twentytwenty-overlay .twentytwenty-after-label,.twentytwenty-container.active .twentytwenty-overlay .twentytwenty-before-label,.twentytwenty-container.active :hover.twentytwenty-overlay .twentytwenty-after-label,.twentytwenty-container.active :hover.twentytwenty-overlay .twentytwenty-before-label{opacity:0}.twentytwenty-container *{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.twentytwenty-before-label{opacity:0}.twentytwenty-before-label:before{content:"Before"}.twentytwenty-after-label{opacity:0}.twentytwenty-after-label:before{content:"After"}.twentytwenty-horizontal .twentytwenty-before-label:before{left:10px}.twentytwenty-horizontal .twentytwenty-after-label:before{right:10px}.twentytwenty-vertical .twentytwenty-before-label:before{top:10px}.twentytwenty-vertical .twentytwenty-after-label:before{bottom:10px}.twentytwenty-overlay{-webkit-transition-property:background;-moz-transition-property:background;transition-property:background;background:rgba(0,0,0,0);z-index:25}.twentytwenty-overlay:hover{background:rgba(0,0,0,.5)}.twentytwenty-overlay:hover .twentytwenty-after-label{opacity:1}.twentytwenty-overlay:hover .twentytwenty-before-label{opacity:1}.twentytwenty-before{z-index:20}.twentytwenty-after{z-index:10}.twentytwenty-handle{height:38px;width:38px;position:absolute;left:50%;top:50%;margin-left:-22px;margin-top:-22px;border:3px solid #fff;-webkit-border-radius:1000px;-moz-border-radius:1000px;border-radius:1000px;-webkit-box-shadow:0 0 12px rgba(51,51,51,.5);-moz-box-shadow:0 0 12px rgba(51,51,51,.5);box-shadow:0 0 12px rgba(51,51,51,.5);z-index:40;cursor:pointer}.twentytwenty-horizontal .twentytwenty-handle:before{bottom:50%;margin-bottom:22px;-webkit-box-shadow:0 3px 0 #fff,0 0 12px rgba(51,51,51,.5);-moz-box-shadow:0 3px 0 #fff,0 0 12px rgba(51,51,51,.5);box-shadow:0 3px 0 #fff,0 0 12px rgba(51,51,51,.5)}.twentytwenty-horizontal .twentytwenty-handle:after{top:50%;margin-top:22px;-webkit-box-shadow:0 -3px 0 #fff,0 0 12px rgba(51,51,51,.5);-moz-box-shadow:0 -3px 0 #fff,0 0 12px rgba(51,51,51,.5);box-shadow:0 -3px 0 #fff,0 0 12px rgba(51,51,51,.5)}.twentytwenty-vertical .twentytwenty-handle:before{left:50%;margin-left:22px;-webkit-box-shadow:3px 0 0 #fff,0 0 12px rgba(51,51,51,.5);-moz-box-shadow:3px 0 0 #fff,0 0 12px rgba(51,51,51,.5);box-shadow:3px 0 0 #fff,0 0 12px rgba(51,51,51,.5)}.twentytwenty-vertical .twentytwenty-handle:after{right:50%;margin-right:22px;-webkit-box-shadow:-3px 0 0 #fff,0 0 12px rgba(51,51,51,.5);-moz-box-shadow:-3px 0 0 #fff,0 0 12px rgba(51,51,51,.5);box-shadow:-3px 0 0 #fff,0 0 12px rgba(51,51,51,.5)}.twentytwenty-left-arrow{border-right:6px solid #fff;left:50%;margin-left:-17px}.twentytwenty-right-arrow{border-left:6px solid #fff;right:50%;margin-right:-17px}.twentytwenty-up-arrow{border-bottom:6px solid #fff;top:50%;margin-top:-17px}.twentytwenty-down-arrow{border-top:6px solid #fff;bottom:50%;margin-bottom:-17px}
|
|
assets/js/admin.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
!function(d,c,p){function e(){}d.extend(e.prototype,{container:"",k:0,props:"",init:function(){this.btnClick()},setter:function(e=""){this.props=e},btnClick:function(){var o=this;d(".magee_shortcodes").click(function(){o.shortcodePopup()}),d(p).on("click","a.magee_shortcode_item",function(){var e=d(this);o.shortcodeGenerator(e)}),d(p).on("click","a.magee-shortcodes-home",function(){o.goBack()}),d(p).on("click",".magee-shortcode-insert",function(e){o.shortcodeInsert()}),d(p).on("click",".magee-upload-button",function(e){var t=d(this);e.preventDefault(),o.uplaodButton(t)}),d(p).on("click","a.child-clone-row-remove.magee-shortcodes-button",function(){var e=d(this);o.removeColumn(e)}),d(p).on("click","a.child-shortcode-add",function(){o.addColumn()}),d(p).on("click",".choose-show",function(){var e=d(this);o.choiceControl(e)}),d(p).on("click",".magee_custom_icon",function(){var e=d(this);o.chooseIcon(e)}),d(p).on("click",".magee-shortcodes-preview",function(e){e.stopPropagation(),o.shortcodePrivew()}),d(p).on("click",".magee-preview-delete",function(){o.deletePrivew()})},initOptions:function(){var o=this;o.numberControl(),d(".choose-show").each(function(){d(this).find(".choose-show-param").each(function(){var e=""==(e=d(this).parents(".param-item").find(".magee-form-choose").val())?"no":e;d(this).attr("name")==e?d(this).css("display","block"):d(this).css("display","none"),"Yes"==d(this).text()?d(this).css({"background-color":"#CCF7D5",color:"#17A534","font-weight":"bold"}):"No"==d(this).text()&&d(this).css({"background-color":"#FFDEDE",color:"#ff0000","font-weight":"bold"})})}),d(p).find(".wp-color-picker-field").each(function(e){var t=d(this);o.colorpickerControl(t)})},colorOptions:function(){var o=this;return{change:function(e,t){o.container.find(".wp-color-picker-field").each(function(){var e=d(this).parents(".wp-picker-container").find(".wp-color-result").css("background-color");d(this).css("background-color",e);var t=0;d(this).parents(".wp-picker-container").find("a.iris-square-value").css("top")&&(t=parseInt(d(this).parents(".wp-picker-container").find("a.iris-square-value").css("top").replace("px","")));e=parseInt(d(this).parents(".wp-picker-container").find("div.iris-slider-offset span").css("bottom"));t<87&&e<97?d(this).css("color","black"):d(this).css("color","white")})},defaultColor:!0}},shortcodePrivew:function(){var e=d("#TB_window").height()-40;d("#preview").css({display:"block",position:"absolute",width:"1200px",height:e,top:"0px",left:"-200px"});e="<iframe id='magee-sc-form-preview' class='magee-sc-form-preview' width='100%' height='"+(d("#preview").height()-d(".preview-title").height()-50).toString()+"'></iframe>";0<d("#magee-sc-form-preview").length&&d("#magee-sc-form-preview").remove(),d("#preview").append(e);var t=this.container.find("form").serializeArray(),o=this.container.find("form").find("input#magee-shortcode").val();d.ajax({type:"POST",url:ajaxurl,dataType:"html",data:{action:"preview_js",shortcode:o},success:function(e){d("#magee-sc-form-preview").contents().find("head").append(e),d.ajax({type:"POST",url:ajaxurl,dataType:"html",data:{name:o,action:"live_preview",preview:t},success:function(e){e+='<script>if (typeof jQuery !== "undefined") {var magee_shortcodes = jQuery().MageeShortcodes(); magee_shortcodes.init();}<\/script>',d("#magee-sc-form-preview").contents().find("body").append(e),d("#magee-sc-form-preview").contents().find("a").on("click",function(e){"#"==d(this).attr("href")&&e.preventDefault()})},error:function(){}})},error:function(){}})},deletePrivew:function(){d("#preview").css("display","none"),d("#magee-sc-form-preview").remove()},shortcodePopup:function(e={}){var t="shortcode-generator",o=d(this).data("target");void 0!==e&&e.identifier&&(t=e.identifier);var i=MSEditorL10n.insertShortcode+"<span class='shortcode_show_name'></span><a class='link-doc' target='_blank' href='"+MSGenerator.docUrl+"'>"+MSEditorL10n.doc+"</a><a class='link-forum' target='_blank' href='"+MSGenerator.forumUrl+"'>"+MSEditorL10n.forums+"</a>",e=d(c).height()-150;tb_show(i,ajaxurl+"?action=magee_shortcodes_popup&popup="+t+"&target=="+o+"&width=800&height="+e)},goBack:function(){var e=d(c).height()-150;d("#TB_ajaxContent").css("height",e),d("#magee-shortcodes-settings").hide(),d("#TB_footer").remove(),d("#magee-shortcodes-settings-innter").html(""),d(".magee_shortcodes_list").show(),d("#TB_ajaxWindowTitle").find("i").remove(),d("#TB_ajaxWindowTitle").find("span").html(""),d("#TB_ajaxWindowTitle").html(d("#TB_ajaxWindowTitle").html().replace(/ /g,"")),d("#preview").css("display","none"),d("#magee-sc-form-preview").remove()},chooseIcon:function(e){e.each(function(){d(this).parents(".param-item").find(".iconpicker").css("display","block"),d(this).parents(".param-item").find(".iconpicker i").click(function(){var e=d(this).data("name");d(this).addClass("selected").siblings().removeClass("selected"),d(this).parents(".param-item").find("input").val(e),d(this).parent(".iconpicker").css("display","none")})})},uplaodButton:function(e){if(upid=e.attr("data-upid"),e.hasClass("remove-image"))return d('.magee-upload-button[data-upid="'+upid+'"]').parent().find("img").attr("src","").hide(),d('.magee-upload-button[data-upid="'+upid+'"]').parent().find("input").val("").change(),void d('.magee-upload-button[data-upid="'+upid+'"]').text("Upload").removeClass("remove-image");var o=wp.media.frames.file_frame=wp.media({title:MSEditorL10n.select_img,button:{text:MSEditorL10n.select_img},frame:"post",multiple:!1});o.open(),d(".media-menu a:contains(Insert from URL)").remove(),o.on("select",function(){o.state().get("selection").map(function(e){e=e.toJSON(),d('.magee-upload-button[data-upid="'+upid+'"]').parent().find("img").attr("src",e.url).show(),d('.magee-upload-button[data-upid="'+upid+'"]').parent().find("input").val(e.url).change()}),d('.magee-upload-button[data-upid="'+upid+'"]').text("Remove").addClass("remove-image"),d(".media-modal-close").trigger("click")}),o.on("insert",function(){var e=o.state().get("selection"),t=d(".attachment-display-settings .size").val();e.map(function(e){(e=e.toJSON()).url=(t?e.sizes[t]:e).url,d('.magee-upload-button[data-upid="'+upid+'"]').parent().find("img").attr("src",e.url).show(),d('.magee-upload-button[data-upid="'+upid+'"]').parent().find("input").val(e.url).change()}),d('.magee-upload-button[data-upid="'+upid+'"]').text("Remove").addClass("remove-image"),d(".media-modal-close").trigger("click")})},addColumn:function(){var e='<div class="param-item"><a id="child-shortcode-remove" href="#" class="child-clone-row-remove magee-shortcodes-button ">'+MSEditorL10n.remove+"</a></div>",t=this.container.find(".magee-shortcodes-settings-inner-clone");t.find(".wp-picker-container").each(function(){var e='<input type="text" class="magee-form-text magee-cinput wp-color-picker-field" name="'+d(this).find("input").attr("name")+'" id="'+d(this).find("input").attr("id")+'" value="'+d(this).find("input").val()+'" />';d(this).replaceWith(e)}),$clone=t.html();t=d(".column-shortcode-inner").length,e='<div class="column-shortcode-inner">'+$clone+e+"</div>";if(d(".shortcode-add").before(e),$source=d(".column-shortcode-inner").eq(t),0<$source.find(".magee-upload-button").length)for(var o=$source.find(".magee-upload-button").length,i=0;i<o;i++){this.k++;var n=$source.find(".magee-upload-button").eq(i).attr("data-upid");$source.find(".magee-upload-button").eq(i).attr("data-upid",n+this.k)}this.initOptions()},removeColumn:function(e){e.parents(".column-shortcode-inner").remove()},numberControl:function(){this.container.find(".magee-form-number").each(function(){var t=d(this),o=parseInt(d(this).attr("max")),i=parseInt(d(this).parent(".field").find(".probar").width()),n=i/o,e=parseInt(d(this).val()),e=n*e.toString();d(this).parent(".field").find(".probar-control").css("left",e),d(this).parents(".param-item").find(".probar").click(function(e){e=((e=e||c.event).clientX-d(this).parents(".param-item").find(".probar").offset().left)/i*100;d(this).parents(".param-item").find(".probar-control").css("left",e.toString()+"%"),Math.round(parseInt(d(this).parents(".param-item").find(".probar-control").css("left"))/n)>o?t.val(o):t.val(Math.round(parseInt(d(this).parents(".param-item").find(".probar-control").css("left"))/n))}),d(this).change(function(){parseInt(d(this).val())>o?d(this).parents(".param-item").find(".probar-control").css("left","100%"):(newleft=n*parseInt(d(this).val()).toString(),d(this).parents(".param-item").find(".probar-control").css("left",newleft))});var r,a,s=0;d(this).parents(".param-item").find(".probar-control").mousedown(function(e){s=1,e=e||c.event,r=d(this).parents(".param-item").find(".probar").offset().left,a=r+i}),d(p).mousemove(function(e){1==s&&(e=(e=e||c.event).clientX,a<e||e<r?(a<e&&t.parents(".param-item").find(".probar-control").css("left","100%"),e<r&&t.parents(".param-item").find(".probar-control").css("left","0%")):(e=(e-r)/i*100,t.parents(".param-item").find(".probar-control").css("left",e.toString()+"%"),t.val(Math.round(parseInt(t.parents(".param-item").find(".probar-control").css("left"))/n))))}),d(p).mouseup(function(){s=0})})},choiceControl:function(e){var t;e.find(".choose-show-param").eq(0).is(":hidden")?(t=e.find(".choose-show-param").eq(0).attr("name"),e.find(".choose-show-param").eq(0).css("display","block"),e.find(".choose-show-param").eq(1).css("display","none"),e.parents(".param-item").find(".magee-form-choose").val(t),"Yes"==e.find(".choose-show-param").eq(1).text()&&e.css({"background-color":"#CCF7D5",color:"#17A534","font-weight":"bold"}),"No"==e.find(".choose-show-param").eq(1).text()&&e.css({"background-color":"#FFDEDE",color:"#ff0000","font-weight":"bold"})):(t=e.find(".choose-show-param").eq(1).attr("name"),e.find(".choose-show-param").eq(1).css("display","block"),e.find(".choose-show-param").eq(0).css("display","none"),e.parents(".param-item").find(".magee-form-choose").val(t),"Yes"==e.find(".choose-show-param").eq(0).text()&&e.css({"background-color":"#CCF7D5",color:"#17A534","font-weight":"bold"}),"No"==e.find(".choose-show-param").eq(0).text()&&e.css({"background-color":"#FFDEDE",color:"#ff0000","font-weight":"bold"}))},colorpickerControl:function(e){var t=this.colorOptions();e.wpColorPicker(t);t=e.attr("value");e.css("background-color",t);var o=0,i=e.parents(".wp-picker-container");i.find(".wp-picker-holder").mouseover(function(e){o=0,e.cancelBubble=!0}),i.find(".wp-picker-holder").mouseout(function(e){o=1,e.cancelBubble=!0}),d(p).mousedown(function(){1==o&&i.find(".wp-picker-holder").css("display","none")}),i.find(".wp-color-result").click(function(){i.find(".wp-picker-holder").css("display","block")})},shortcodeGenerator:function(e){var t=this.colorOptions(),a=e.data("shortcode"),s=e.parents("div#magee_shortcodes_container form");this.container=d("#magee_shortcodes_container");var c=this;d.ajax({type:"POST",url:ajaxurl,dataType:"html",data:{shortcode:a,action:"magee_shortcode_form"},success:function(e){if(s.find(".magee_shortcodes_list").hide(),s.find("#magee-shortcodes-settings").show(),s.find("#magee-shortcodes-settings .current_shortcode").text(a),s.find("#magee-shortcodes-settings #magee-shortcode").val(a),s.find("#magee-shortcodes-settings-inner").html(e),d(".magee-shortcodes-settings-inner-clone").html(s.find(".column-shortcode-inner").html()),0<s.find(".magee-upload-button").length)for(var t=s.find(".magee-upload-button").length,o=0;o<t;o++){c.k++;var i=s.find(".magee-upload-button").eq(o).attr("data-upid");s.find(".magee-upload-button").eq(o).attr("data-upid",i+c.k)}var n='<div class="TB_footer" id="TB_footer">';n+='<div class="magee-shortcode-return">'+MSEditorL10n.top+"</div>",n+='<div class="magee-shortcode-actions magee-shortcode-clearfix">',n+='<a class="button button-large magee-shortcodes-home" href="javascript:void(0);"><img src="'+MSGenerator.imgUrl+'list.png"/></a>',n+='<a class="button button-primary button-large magee-shortcodes-preview" >',n+='<img style="margin-bottom:-3px;margin-right:5px" src="'+MSGenerator.imgUrl+'preview.png"/>'+MSEditorL10n.preview,n+="</a>",n+='<a class="button button-primary button-large magee-shortcode-insert" href="javascript:void(0);">',n+='<img style="margin-bottom:-3px;margin-right:5px" src="'+MSGenerator.imgUrl+'insert_shortcode.png"/>'+MSEditorL10n.insert,n+="</a>",n+="</div>",n+="</div>",d("#TB_window").append(n);var r=d("#TB_window").outerHeight(),e=d("#TB_title").outerHeight(),n=d("#TB_footer").outerHeight();d("#TB_ajaxContent").css({height:r-e-n-15}),d("#TB_ajaxWindowTitle> span:first-child").before(" <i class='fa fa-angle-right title_icon' ></i> "),d("#TB_ajaxWindowTitle> span").append(d("#magee-shortcodes-settings-inner h2").text()),d("#no_preview").val()&&d(".TB_footer .magee-shortcodes-preview").css("display","none"),d("#TB_ajaxContent").scroll(function(){400<=d(this).scrollTop()?d(".magee-shortcode-return").css("display","block"):d(".magee-shortcode-return").css("display","none")}),d(".magee-shortcode-return").click(function(){d("#TB_ajaxContent").animate({scrollTop:0},500)}),d(".magee-form-datetime").datetimepicker({dateFormat:"yy-mm-dd HH:ii:ss",allowTimes:[]})},complete:function(){c.container.find(".wp-color-picker-field").wpColorPicker(t),c.initOptions()},error:function(){}})},shortcodeInsert:function(){var e=this.container.find("form"),t=e.find("input#magee-shortcode").val(),o=this.container.data("target");d.ajax({type:"POST",url:ajaxurl,dataType:"html",data:{shortcode:t,action:"magee_create_shortcode",attr:e.serializeArray()},success:function(e){c.MSG.props?c.MSG.props.props.setAttributes({content:c.MSG.props.props.attributes.content+e}):(c.magee_wpActiveEditor=c.wpActiveEditor,c.wpActiveEditor=o,c.wp.media.editor.insert(e),c.wpActiveEditor=c.magee_wpActiveEditor),tb_remove()},error:function(){tb_remove()}})}}),d.fn.MageeShortcodesApi=function(){return(new e).setter},d(function(){(new e).init()}),c.MSG={},c.MSG.Api=jQuery().MageeShortcodesApi()}(window.jQuery,window,document);
|
1 |
+
!function(d,c,p){function e(){}d.extend(e.prototype,{container:"",k:0,props:"",init:function(){this.btnClick()},setter:function(e=""){this.props=e},btnClick:function(){var o=this;d(".magee_shortcodes").click(function(){o.shortcodePopup()}),d(p).on("click","a.magee_shortcode_item",function(){var e=d(this);d(this).css({"pointer-events":"none"}).append('<i style="float:right;" class="fa fa-spinner fa-spin"></i>'),o.shortcodeGenerator(e)}),d(p).on("click","a.magee-shortcodes-home",function(){d("a.magee_shortcode_item").css({"pointer-events":"auto"}),d("a.magee_shortcode_item").find(".fa-spinner").remove(),o.goBack()}),d(p).on("click",".magee-shortcode-insert",function(e){d(this).addClass("button-secondary").removeClass("button-primary").css({"pointer-events":"none"}).append('<i class="fa fa-spinner fa-spin"></i>'),o.shortcodeInsert()}),d(p).on("click",".magee-upload-button",function(e){var t=d(this);e.preventDefault(),o.uplaodButton(t)}),d(p).on("click","a.child-clone-row-remove.magee-shortcodes-button",function(){var e=d(this);o.removeColumn(e)}),d(p).on("click","a.child-shortcode-add",function(){o.addColumn()}),d(p).on("click",".choose-show",function(){var e=d(this);o.choiceControl(e)}),d(p).on("click",".magee_custom_icon",function(){var e=d(this);o.chooseIcon(e)}),d(p).on("click",".magee-shortcodes-preview",function(e){e.stopPropagation(),o.shortcodePrivew()}),d(p).on("click",".magee-preview-delete",function(){o.deletePrivew()})},initOptions:function(){var o=this;o.numberControl(),d(".choose-show").each(function(){d(this).find(".choose-show-param").each(function(){var e=""==(e=d(this).parents(".param-item").find(".magee-form-choose").val())?"no":e;d(this).attr("name")==e?d(this).css("display","block"):d(this).css("display","none"),"Yes"==d(this).text()?d(this).css({"background-color":"#CCF7D5",color:"#17A534","font-weight":"bold"}):"No"==d(this).text()&&d(this).css({"background-color":"#FFDEDE",color:"#ff0000","font-weight":"bold"})})}),d(p).find(".wp-color-picker-field").each(function(e){var t=d(this);o.colorpickerControl(t)})},colorOptions:function(){var o=this;return{change:function(e,t){o.container.find(".wp-color-picker-field").each(function(){var e=d(this).parents(".wp-picker-container").find(".wp-color-result").css("background-color");d(this).css("background-color",e);var t=0;d(this).parents(".wp-picker-container").find("a.iris-square-value").css("top")&&(t=parseInt(d(this).parents(".wp-picker-container").find("a.iris-square-value").css("top").replace("px","")));e=parseInt(d(this).parents(".wp-picker-container").find("div.iris-slider-offset span").css("bottom"));t<87&&e<97?d(this).css("color","black"):d(this).css("color","white")})},defaultColor:!0}},shortcodePrivew:function(){var e=d("#TB_window").height()-40;d("#preview").css({display:"block",position:"absolute",width:"1200px",height:e,top:"0px",left:"-200px"});e="<iframe id='magee-sc-form-preview' class='magee-sc-form-preview' width='100%' height='"+(d("#preview").height()-d(".preview-title").height()-50).toString()+"'></iframe>";0<d("#magee-sc-form-preview").length&&d("#magee-sc-form-preview").remove(),d("#preview").append(e);var t=this.container.find("form").serializeArray(),o=this.container.find("form").find("input#magee-shortcode").val();d.ajax({type:"POST",url:ajaxurl,dataType:"html",data:{action:"preview_js",shortcode:o},success:function(e){d("#magee-sc-form-preview").contents().find("head").append(e),d("#magee-sc-form-preview").contents().find("body").append("<img alt='loading' class='loading' src='"+magee_params.themeurl+"/images/AjaxLoader.gif' />"),d.ajax({type:"POST",url:ajaxurl,dataType:"html",data:{name:o,action:"live_preview",preview:t},success:function(e){e+='<script>if (typeof jQuery !== "undefined") {var magee_shortcodes = jQuery().MageeShortcodes(); magee_shortcodes.init();}<\/script>',d("#magee-sc-form-preview").contents().find(".loading").remove(),d("#magee-sc-form-preview").contents().find("body").append(e),d("#magee-sc-form-preview").contents().find("a").on("click",function(e){"#"==d(this).attr("href")&&e.preventDefault()})},error:function(){}})},error:function(){}})},deletePrivew:function(){d("#preview").css("display","none"),d("#magee-sc-form-preview").remove()},shortcodePopup:function(e={}){var t="shortcode-generator",o=d(this).data("target");void 0!==e&&e.identifier&&(t=e.identifier);var i=MSEditorL10n.insertShortcode+"<span class='shortcode_show_name'></span><a class='link-doc' target='_blank' href='"+MSGenerator.docUrl+"'>"+MSEditorL10n.doc+"</a><a class='link-forum' target='_blank' href='"+MSGenerator.forumUrl+"'>"+MSEditorL10n.forums+"</a>",e=d(c).height()-150;tb_show(i,ajaxurl+"?action=magee_shortcodes_popup&popup="+t+"&target=="+o+"&width=800&height="+e)},goBack:function(){var e=d(c).height()-150;d("#TB_ajaxContent").css("height",e),d("#magee-shortcodes-settings").hide(),d("#TB_footer").remove(),d("#magee-shortcodes-settings-innter").html(""),d(".magee_shortcodes_list").show(),d("#TB_ajaxWindowTitle").find("i").remove(),d("#TB_ajaxWindowTitle").find("span").html(""),d("#TB_ajaxWindowTitle").html(d("#TB_ajaxWindowTitle").html().replace(/ /g,"")),d("#preview").css("display","none"),d("#magee-sc-form-preview").remove()},chooseIcon:function(e){e.each(function(){d(this).parents(".param-item").find(".iconpicker").css("display","block"),d(this).parents(".param-item").find(".iconpicker i").click(function(){var e=d(this).data("name");d(this).addClass("selected").siblings().removeClass("selected"),d(this).parents(".param-item").find("input").val(e),d(this).parent(".iconpicker").css("display","none")})})},uplaodButton:function(e){if(upid=e.attr("data-upid"),e.hasClass("remove-image"))return d('.magee-upload-button[data-upid="'+upid+'"]').parent().find("img").attr("src","").hide(),d('.magee-upload-button[data-upid="'+upid+'"]').parent().find("input").val("").change(),void d('.magee-upload-button[data-upid="'+upid+'"]').text("Upload").removeClass("remove-image");var o=wp.media.frames.file_frame=wp.media({title:MSEditorL10n.select_img,button:{text:MSEditorL10n.select_img},frame:"post",multiple:!1});o.open(),d(".media-menu a:contains(Insert from URL)").remove(),o.on("select",function(){o.state().get("selection").map(function(e){e=e.toJSON(),d('.magee-upload-button[data-upid="'+upid+'"]').parent().find("img").attr("src",e.url).show(),d('.magee-upload-button[data-upid="'+upid+'"]').parent().find("input").val(e.url).change()}),d('.magee-upload-button[data-upid="'+upid+'"]').text("Remove").addClass("remove-image"),d(".media-modal-close").trigger("click")}),o.on("insert",function(){var e=o.state().get("selection"),t=d(".attachment-display-settings .size").val();e.map(function(e){(e=e.toJSON()).url=(t?e.sizes[t]:e).url,d('.magee-upload-button[data-upid="'+upid+'"]').parent().find("img").attr("src",e.url).show(),d('.magee-upload-button[data-upid="'+upid+'"]').parent().find("input").val(e.url).change()}),d('.magee-upload-button[data-upid="'+upid+'"]').text("Remove").addClass("remove-image"),d(".media-modal-close").trigger("click")})},addColumn:function(){var e='<div class="param-item"><a id="child-shortcode-remove" href="#" class="child-clone-row-remove magee-shortcodes-button ">'+MSEditorL10n.remove+"</a></div>",t=this.container.find(".magee-shortcodes-settings-inner-clone");t.find(".wp-picker-container").each(function(){var e='<input type="text" class="magee-form-text magee-cinput wp-color-picker-field" name="'+d(this).find("input").attr("name")+'" id="'+d(this).find("input").attr("id")+'" value="'+d(this).find("input").val()+'" />';d(this).replaceWith(e)}),$clone=t.html();t=d(".column-shortcode-inner").length,e='<div class="column-shortcode-inner">'+$clone+e+"</div>";if(d(".shortcode-add").before(e),$source=d(".column-shortcode-inner").eq(t),0<$source.find(".magee-upload-button").length)for(var o=$source.find(".magee-upload-button").length,i=0;i<o;i++){this.k++;var n=$source.find(".magee-upload-button").eq(i).attr("data-upid");$source.find(".magee-upload-button").eq(i).attr("data-upid",n+this.k)}this.initOptions()},removeColumn:function(e){e.parents(".column-shortcode-inner").remove()},numberControl:function(){this.container.find(".magee-form-number").each(function(){var t=d(this),o=parseInt(d(this).attr("max")),i=parseInt(d(this).parent(".field").find(".probar").width()),n=i/o,e=parseInt(d(this).val()),e=n*e.toString();d(this).parent(".field").find(".probar-control").css("left",e),d(this).parents(".param-item").find(".probar").click(function(e){e=((e=e||c.event).clientX-d(this).parents(".param-item").find(".probar").offset().left)/i*100;d(this).parents(".param-item").find(".probar-control").css("left",e.toString()+"%"),Math.round(parseInt(d(this).parents(".param-item").find(".probar-control").css("left"))/n)>o?t.val(o):t.val(Math.round(parseInt(d(this).parents(".param-item").find(".probar-control").css("left"))/n))}),d(this).change(function(){parseInt(d(this).val())>o?d(this).parents(".param-item").find(".probar-control").css("left","100%"):(newleft=n*parseInt(d(this).val()).toString(),d(this).parents(".param-item").find(".probar-control").css("left",newleft))});var a,r,s=0;d(this).parents(".param-item").find(".probar-control").mousedown(function(e){s=1,e=e||c.event,a=d(this).parents(".param-item").find(".probar").offset().left,r=a+i}),d(p).mousemove(function(e){1==s&&(e=(e=e||c.event).clientX,r<e||e<a?(r<e&&t.parents(".param-item").find(".probar-control").css("left","100%"),e<a&&t.parents(".param-item").find(".probar-control").css("left","0%")):(e=(e-a)/i*100,t.parents(".param-item").find(".probar-control").css("left",e.toString()+"%"),t.val(Math.round(parseInt(t.parents(".param-item").find(".probar-control").css("left"))/n))))}),d(p).mouseup(function(){s=0})})},choiceControl:function(e){var t;e.find(".choose-show-param").eq(0).is(":hidden")?(t=e.find(".choose-show-param").eq(0).attr("name"),e.find(".choose-show-param").eq(0).css("display","block"),e.find(".choose-show-param").eq(1).css("display","none"),e.parents(".param-item").find(".magee-form-choose").val(t),"Yes"==e.find(".choose-show-param").eq(1).text()&&e.css({"background-color":"#CCF7D5",color:"#17A534","font-weight":"bold"}),"No"==e.find(".choose-show-param").eq(1).text()&&e.css({"background-color":"#FFDEDE",color:"#ff0000","font-weight":"bold"})):(t=e.find(".choose-show-param").eq(1).attr("name"),e.find(".choose-show-param").eq(1).css("display","block"),e.find(".choose-show-param").eq(0).css("display","none"),e.parents(".param-item").find(".magee-form-choose").val(t),"Yes"==e.find(".choose-show-param").eq(0).text()&&e.css({"background-color":"#CCF7D5",color:"#17A534","font-weight":"bold"}),"No"==e.find(".choose-show-param").eq(0).text()&&e.css({"background-color":"#FFDEDE",color:"#ff0000","font-weight":"bold"}))},colorpickerControl:function(e){var t=this.colorOptions();e.wpColorPicker(t);t=e.attr("value");e.css("background-color",t);var o=0,i=e.parents(".wp-picker-container");i.find(".wp-picker-holder").mouseover(function(e){o=0,e.cancelBubble=!0}),i.find(".wp-picker-holder").mouseout(function(e){o=1,e.cancelBubble=!0}),d(p).mousedown(function(){1==o&&i.find(".wp-picker-holder").css("display","none")}),i.find(".wp-color-result").click(function(){i.find(".wp-picker-holder").css("display","block")})},shortcodeGenerator:function(e){var t=this.colorOptions(),r=e.data("shortcode"),s=e.parents("div#magee_shortcodes_container form");this.container=d("#magee_shortcodes_container");var c=this;d.ajax({type:"POST",url:ajaxurl,dataType:"html",data:{shortcode:r,action:"magee_shortcode_form"},success:function(e){if(s.find(".magee_shortcodes_list").hide(),s.find("#magee-shortcodes-settings").show(),s.find("#magee-shortcodes-settings .current_shortcode").text(r),s.find("#magee-shortcodes-settings #magee-shortcode").val(r),s.find("#magee-shortcodes-settings-inner").html(e),d(".magee-shortcodes-settings-inner-clone").html(s.find(".column-shortcode-inner").html()),0<s.find(".magee-upload-button").length)for(var t=s.find(".magee-upload-button").length,o=0;o<t;o++){c.k++;var i=s.find(".magee-upload-button").eq(o).attr("data-upid");s.find(".magee-upload-button").eq(o).attr("data-upid",i+c.k)}var n='<div class="TB_footer" id="TB_footer">';n+='<div class="magee-shortcode-return">'+MSEditorL10n.top+"</div>",n+='<div class="magee-shortcode-actions magee-shortcode-clearfix">',n+='<a class="button button-large magee-shortcodes-home" href="javascript:void(0);"><img src="'+MSGenerator.imgUrl+'list.png"/></a>',n+='<a class="button button-primary button-large magee-shortcodes-preview" >',n+='<img style="margin-bottom:-3px;margin-right:5px" src="'+MSGenerator.imgUrl+'preview.png"/>'+MSEditorL10n.preview,n+="</a>",n+='<a class="button button-primary button-large magee-shortcode-insert" href="javascript:void(0);">',n+='<img style="margin-bottom:-3px;margin-right:5px" src="'+MSGenerator.imgUrl+'insert_shortcode.png"/>'+MSEditorL10n.insert,n+="</a>",n+="</div>",n+="</div>",d("#TB_window").append(n);var a=d("#TB_window").outerHeight(),e=d("#TB_title").outerHeight(),n=d("#TB_footer").outerHeight();d("#TB_ajaxContent").css({height:a-e-n-15}),d("#TB_ajaxWindowTitle> span:first-child").before(" <i class='fa fa-angle-right title_icon' ></i> "),d("#TB_ajaxWindowTitle> span").append(d("#magee-shortcodes-settings-inner h2").text()),d("#no_preview").val()&&d(".TB_footer .magee-shortcodes-preview").css("display","none"),d("#TB_ajaxContent").scroll(function(){400<=d(this).scrollTop()?d(".magee-shortcode-return").css("display","block"):d(".magee-shortcode-return").css("display","none")}),d(".magee-shortcode-return").click(function(){d("#TB_ajaxContent").animate({scrollTop:0},500)}),d(".magee-form-datetime").datetimepicker({dateFormat:"yy-mm-dd HH:ii:ss",allowTimes:[]})},complete:function(){c.container.find(".wp-color-picker-field").wpColorPicker(t),c.initOptions()},error:function(){}})},shortcodeInsert:function(){var e=this.container.find("form"),t=e.find("input#magee-shortcode").val(),o=this.container.data("target");d.ajax({type:"POST",url:ajaxurl,dataType:"html",data:{shortcode:t,action:"magee_create_shortcode",attr:e.serializeArray()},success:function(e){c.MSG.props?c.MSG.props.props.setAttributes({content:c.MSG.props.props.attributes.content+e}):(c.magee_wpActiveEditor=c.wpActiveEditor,c.wpActiveEditor=o,c.wp.media.editor.insert(e),c.wpActiveEditor=c.magee_wpActiveEditor),tb_remove()},error:function(){tb_remove()}})}}),d.fn.MageeShortcodesApi=function(){return(new e).setter},d(function(){(new e).init()}),c.MSG={},c.MSG.Api=jQuery().MageeShortcodesApi()}(window.jQuery,window,document);
|
assets/js/admin.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
!function(d,c,p){function e(){}d.extend(e.prototype,{container:"",k:0,props:"",init:function(){this.btnClick()},setter:function(e=""){this.props=e},btnClick:function(){var o=this;d(".magee_shortcodes").click(function(){o.shortcodePopup()}),d(p).on("click","a.magee_shortcode_item",function(){var e=d(this);o.shortcodeGenerator(e)}),d(p).on("click","a.magee-shortcodes-home",function(){o.goBack()}),d(p).on("click",".magee-shortcode-insert",function(e){o.shortcodeInsert()}),d(p).on("click",".magee-upload-button",function(e){var t=d(this);e.preventDefault(),o.uplaodButton(t)}),d(p).on("click","a.child-clone-row-remove.magee-shortcodes-button",function(){var e=d(this);o.removeColumn(e)}),d(p).on("click","a.child-shortcode-add",function(){o.addColumn()}),d(p).on("click",".choose-show",function(){var e=d(this);o.choiceControl(e)}),d(p).on("click",".magee_custom_icon",function(){var e=d(this);o.chooseIcon(e)}),d(p).on("click",".magee-shortcodes-preview",function(e){e.stopPropagation(),o.shortcodePrivew()}),d(p).on("click",".magee-preview-delete",function(){o.deletePrivew()})},initOptions:function(){var o=this;o.numberControl(),d(".choose-show").each(function(){d(this).find(".choose-show-param").each(function(){var e=""==(e=d(this).parents(".param-item").find(".magee-form-choose").val())?"no":e;d(this).attr("name")==e?d(this).css("display","block"):d(this).css("display","none"),"Yes"==d(this).text()?d(this).css({"background-color":"#CCF7D5",color:"#17A534","font-weight":"bold"}):"No"==d(this).text()&&d(this).css({"background-color":"#FFDEDE",color:"#ff0000","font-weight":"bold"})})}),d(p).find(".wp-color-picker-field").each(function(e){var t=d(this);o.colorpickerControl(t)})},colorOptions:function(){var o=this;return{change:function(e,t){o.container.find(".wp-color-picker-field").each(function(){var e=d(this).parents(".wp-picker-container").find(".wp-color-result").css("background-color");d(this).css("background-color",e);var t=0;d(this).parents(".wp-picker-container").find("a.iris-square-value").css("top")&&(t=parseInt(d(this).parents(".wp-picker-container").find("a.iris-square-value").css("top").replace("px","")));e=parseInt(d(this).parents(".wp-picker-container").find("div.iris-slider-offset span").css("bottom"));t<87&&e<97?d(this).css("color","black"):d(this).css("color","white")})},defaultColor:!0}},shortcodePrivew:function(){var e=d("#TB_window").height()-40;d("#preview").css({display:"block",position:"absolute",width:"1200px",height:e,top:"0px",left:"-200px"});e="<iframe id='magee-sc-form-preview' class='magee-sc-form-preview' width='100%' height='"+(d("#preview").height()-d(".preview-title").height()-50).toString()+"'></iframe>";0<d("#magee-sc-form-preview").length&&d("#magee-sc-form-preview").remove(),d("#preview").append(e);var t=this.container.find("form").serializeArray(),o=this.container.find("form").find("input#magee-shortcode").val();d.ajax({type:"POST",url:ajaxurl,dataType:"html",data:{action:"preview_js",shortcode:o},success:function(e){d("#magee-sc-form-preview").contents().find("head").append(e),d.ajax({type:"POST",url:ajaxurl,dataType:"html",data:{name:o,action:"live_preview",preview:t},success:function(e){e+='<script>if (typeof jQuery !== "undefined") {var magee_shortcodes = jQuery().MageeShortcodes(); magee_shortcodes.init();}<\/script>',d("#magee-sc-form-preview").contents().find("body").append(e),d("#magee-sc-form-preview").contents().find("a").on("click",function(e){"#"==d(this).attr("href")&&e.preventDefault()})},error:function(){}})},error:function(){}})},deletePrivew:function(){d("#preview").css("display","none"),d("#magee-sc-form-preview").remove()},shortcodePopup:function(e={}){var t="shortcode-generator",o=d(this).data("target");void 0!==e&&e.identifier&&(t=e.identifier);var i=MSEditorL10n.insertShortcode+"<span class='shortcode_show_name'></span><a class='link-doc' target='_blank' href='"+MSGenerator.docUrl+"'>"+MSEditorL10n.doc+"</a><a class='link-forum' target='_blank' href='"+MSGenerator.forumUrl+"'>"+MSEditorL10n.forums+"</a>",e=d(c).height()-150;tb_show(i,ajaxurl+"?action=magee_shortcodes_popup&popup="+t+"&target=="+o+"&width=800&height="+e)},goBack:function(){var e=d(c).height()-150;d("#TB_ajaxContent").css("height",e),d("#magee-shortcodes-settings").hide(),d("#TB_footer").remove(),d("#magee-shortcodes-settings-innter").html(""),d(".magee_shortcodes_list").show(),d("#TB_ajaxWindowTitle").find("i").remove(),d("#TB_ajaxWindowTitle").find("span").html(""),d("#TB_ajaxWindowTitle").html(d("#TB_ajaxWindowTitle").html().replace(/ /g,"")),d("#preview").css("display","none"),d("#magee-sc-form-preview").remove()},chooseIcon:function(e){e.each(function(){d(this).parents(".param-item").find(".iconpicker").css("display","block"),d(this).parents(".param-item").find(".iconpicker i").click(function(){var e=d(this).data("name");d(this).addClass("selected").siblings().removeClass("selected"),d(this).parents(".param-item").find("input").val(e),d(this).parent(".iconpicker").css("display","none")})})},uplaodButton:function(e){if(upid=e.attr("data-upid"),e.hasClass("remove-image"))return d('.magee-upload-button[data-upid="'+upid+'"]').parent().find("img").attr("src","").hide(),d('.magee-upload-button[data-upid="'+upid+'"]').parent().find("input").val("").change(),void d('.magee-upload-button[data-upid="'+upid+'"]').text("Upload").removeClass("remove-image");var o=wp.media.frames.file_frame=wp.media({title:MSEditorL10n.select_img,button:{text:MSEditorL10n.select_img},frame:"post",multiple:!1});o.open(),d(".media-menu a:contains(Insert from URL)").remove(),o.on("select",function(){o.state().get("selection").map(function(e){e=e.toJSON(),d('.magee-upload-button[data-upid="'+upid+'"]').parent().find("img").attr("src",e.url).show(),d('.magee-upload-button[data-upid="'+upid+'"]').parent().find("input").val(e.url).change()}),d('.magee-upload-button[data-upid="'+upid+'"]').text("Remove").addClass("remove-image"),d(".media-modal-close").trigger("click")}),o.on("insert",function(){var e=o.state().get("selection"),t=d(".attachment-display-settings .size").val();e.map(function(e){(e=e.toJSON()).url=(t?e.sizes[t]:e).url,d('.magee-upload-button[data-upid="'+upid+'"]').parent().find("img").attr("src",e.url).show(),d('.magee-upload-button[data-upid="'+upid+'"]').parent().find("input").val(e.url).change()}),d('.magee-upload-button[data-upid="'+upid+'"]').text("Remove").addClass("remove-image"),d(".media-modal-close").trigger("click")})},addColumn:function(){var e='<div class="param-item"><a id="child-shortcode-remove" href="#" class="child-clone-row-remove magee-shortcodes-button ">'+MSEditorL10n.remove+"</a></div>",t=this.container.find(".magee-shortcodes-settings-inner-clone");t.find(".wp-picker-container").each(function(){var e='<input type="text" class="magee-form-text magee-cinput wp-color-picker-field" name="'+d(this).find("input").attr("name")+'" id="'+d(this).find("input").attr("id")+'" value="'+d(this).find("input").val()+'" />';d(this).replaceWith(e)}),$clone=t.html();t=d(".column-shortcode-inner").length,e='<div class="column-shortcode-inner">'+$clone+e+"</div>";if(d(".shortcode-add").before(e),$source=d(".column-shortcode-inner").eq(t),0<$source.find(".magee-upload-button").length)for(var o=$source.find(".magee-upload-button").length,i=0;i<o;i++){this.k++;var n=$source.find(".magee-upload-button").eq(i).attr("data-upid");$source.find(".magee-upload-button").eq(i).attr("data-upid",n+this.k)}this.initOptions()},removeColumn:function(e){e.parents(".column-shortcode-inner").remove()},numberControl:function(){this.container.find(".magee-form-number").each(function(){var t=d(this),o=parseInt(d(this).attr("max")),i=parseInt(d(this).parent(".field").find(".probar").width()),n=i/o,e=parseInt(d(this).val()),e=n*e.toString();d(this).parent(".field").find(".probar-control").css("left",e),d(this).parents(".param-item").find(".probar").click(function(e){e=((e=e||c.event).clientX-d(this).parents(".param-item").find(".probar").offset().left)/i*100;d(this).parents(".param-item").find(".probar-control").css("left",e.toString()+"%"),Math.round(parseInt(d(this).parents(".param-item").find(".probar-control").css("left"))/n)>o?t.val(o):t.val(Math.round(parseInt(d(this).parents(".param-item").find(".probar-control").css("left"))/n))}),d(this).change(function(){parseInt(d(this).val())>o?d(this).parents(".param-item").find(".probar-control").css("left","100%"):(newleft=n*parseInt(d(this).val()).toString(),d(this).parents(".param-item").find(".probar-control").css("left",newleft))});var r,a,s=0;d(this).parents(".param-item").find(".probar-control").mousedown(function(e){s=1,e=e||c.event,r=d(this).parents(".param-item").find(".probar").offset().left,a=r+i}),d(p).mousemove(function(e){1==s&&(e=(e=e||c.event).clientX,a<e||e<r?(a<e&&t.parents(".param-item").find(".probar-control").css("left","100%"),e<r&&t.parents(".param-item").find(".probar-control").css("left","0%")):(e=(e-r)/i*100,t.parents(".param-item").find(".probar-control").css("left",e.toString()+"%"),t.val(Math.round(parseInt(t.parents(".param-item").find(".probar-control").css("left"))/n))))}),d(p).mouseup(function(){s=0})})},choiceControl:function(e){var t;e.find(".choose-show-param").eq(0).is(":hidden")?(t=e.find(".choose-show-param").eq(0).attr("name"),e.find(".choose-show-param").eq(0).css("display","block"),e.find(".choose-show-param").eq(1).css("display","none"),e.parents(".param-item").find(".magee-form-choose").val(t),"Yes"==e.find(".choose-show-param").eq(1).text()&&e.css({"background-color":"#CCF7D5",color:"#17A534","font-weight":"bold"}),"No"==e.find(".choose-show-param").eq(1).text()&&e.css({"background-color":"#FFDEDE",color:"#ff0000","font-weight":"bold"})):(t=e.find(".choose-show-param").eq(1).attr("name"),e.find(".choose-show-param").eq(1).css("display","block"),e.find(".choose-show-param").eq(0).css("display","none"),e.parents(".param-item").find(".magee-form-choose").val(t),"Yes"==e.find(".choose-show-param").eq(0).text()&&e.css({"background-color":"#CCF7D5",color:"#17A534","font-weight":"bold"}),"No"==e.find(".choose-show-param").eq(0).text()&&e.css({"background-color":"#FFDEDE",color:"#ff0000","font-weight":"bold"}))},colorpickerControl:function(e){var t=this.colorOptions();e.wpColorPicker(t);t=e.attr("value");e.css("background-color",t);var o=0,i=e.parents(".wp-picker-container");i.find(".wp-picker-holder").mouseover(function(e){o=0,e.cancelBubble=!0}),i.find(".wp-picker-holder").mouseout(function(e){o=1,e.cancelBubble=!0}),d(p).mousedown(function(){1==o&&i.find(".wp-picker-holder").css("display","none")}),i.find(".wp-color-result").click(function(){i.find(".wp-picker-holder").css("display","block")})},shortcodeGenerator:function(e){var t=this.colorOptions(),a=e.data("shortcode"),s=e.parents("div#magee_shortcodes_container form");this.container=d("#magee_shortcodes_container");var c=this;d.ajax({type:"POST",url:ajaxurl,dataType:"html",data:{shortcode:a,action:"magee_shortcode_form"},success:function(e){if(s.find(".magee_shortcodes_list").hide(),s.find("#magee-shortcodes-settings").show(),s.find("#magee-shortcodes-settings .current_shortcode").text(a),s.find("#magee-shortcodes-settings #magee-shortcode").val(a),s.find("#magee-shortcodes-settings-inner").html(e),d(".magee-shortcodes-settings-inner-clone").html(s.find(".column-shortcode-inner").html()),0<s.find(".magee-upload-button").length)for(var t=s.find(".magee-upload-button").length,o=0;o<t;o++){c.k++;var i=s.find(".magee-upload-button").eq(o).attr("data-upid");s.find(".magee-upload-button").eq(o).attr("data-upid",i+c.k)}var n='<div class="TB_footer" id="TB_footer">';n+='<div class="magee-shortcode-return">'+MSEditorL10n.top+"</div>",n+='<div class="magee-shortcode-actions magee-shortcode-clearfix">',n+='<a class="button button-large magee-shortcodes-home" href="javascript:void(0);"><img src="'+MSGenerator.imgUrl+'list.png"/></a>',n+='<a class="button button-primary button-large magee-shortcodes-preview" >',n+='<img style="margin-bottom:-3px;margin-right:5px" src="'+MSGenerator.imgUrl+'preview.png"/>'+MSEditorL10n.preview,n+="</a>",n+='<a class="button button-primary button-large magee-shortcode-insert" href="javascript:void(0);">',n+='<img style="margin-bottom:-3px;margin-right:5px" src="'+MSGenerator.imgUrl+'insert_shortcode.png"/>'+MSEditorL10n.insert,n+="</a>",n+="</div>",n+="</div>",d("#TB_window").append(n);var r=d("#TB_window").outerHeight(),e=d("#TB_title").outerHeight(),n=d("#TB_footer").outerHeight();d("#TB_ajaxContent").css({height:r-e-n-15}),d("#TB_ajaxWindowTitle> span:first-child").before(" <i class='fa fa-angle-right title_icon' ></i> "),d("#TB_ajaxWindowTitle> span").append(d("#magee-shortcodes-settings-inner h2").text()),d("#no_preview").val()&&d(".TB_footer .magee-shortcodes-preview").css("display","none"),d("#TB_ajaxContent").scroll(function(){400<=d(this).scrollTop()?d(".magee-shortcode-return").css("display","block"):d(".magee-shortcode-return").css("display","none")}),d(".magee-shortcode-return").click(function(){d("#TB_ajaxContent").animate({scrollTop:0},500)}),d(".magee-form-datetime").datetimepicker({dateFormat:"yy-mm-dd HH:ii:ss",allowTimes:[]})},complete:function(){c.container.find(".wp-color-picker-field").wpColorPicker(t),c.initOptions()},error:function(){}})},shortcodeInsert:function(){var e=this.container.find("form"),t=e.find("input#magee-shortcode").val(),o=this.container.data("target");d.ajax({type:"POST",url:ajaxurl,dataType:"html",data:{shortcode:t,action:"magee_create_shortcode",attr:e.serializeArray()},success:function(e){c.MSG.props?c.MSG.props.props.setAttributes({content:c.MSG.props.props.attributes.content+e}):(c.magee_wpActiveEditor=c.wpActiveEditor,c.wpActiveEditor=o,c.wp.media.editor.insert(e),c.wpActiveEditor=c.magee_wpActiveEditor),tb_remove()},error:function(){tb_remove()}})}}),d.fn.MageeShortcodesApi=function(){return(new e).setter},d(function(){(new e).init()}),c.MSG={},c.MSG.Api=jQuery().MageeShortcodesApi()}(window.jQuery,window,document);
|
1 |
+
!function(d,c,p){function e(){}d.extend(e.prototype,{container:"",k:0,props:"",init:function(){this.btnClick()},setter:function(e=""){this.props=e},btnClick:function(){var o=this;d(".magee_shortcodes").click(function(){o.shortcodePopup()}),d(p).on("click","a.magee_shortcode_item",function(){var e=d(this);d(this).css({"pointer-events":"none"}).append('<i style="float:right;" class="fa fa-spinner fa-spin"></i>'),o.shortcodeGenerator(e)}),d(p).on("click","a.magee-shortcodes-home",function(){d("a.magee_shortcode_item").css({"pointer-events":"auto"}),d("a.magee_shortcode_item").find(".fa-spinner").remove(),o.goBack()}),d(p).on("click",".magee-shortcode-insert",function(e){d(this).addClass("button-secondary").removeClass("button-primary").css({"pointer-events":"none"}).append('<i class="fa fa-spinner fa-spin"></i>'),o.shortcodeInsert()}),d(p).on("click",".magee-upload-button",function(e){var t=d(this);e.preventDefault(),o.uplaodButton(t)}),d(p).on("click","a.child-clone-row-remove.magee-shortcodes-button",function(){var e=d(this);o.removeColumn(e)}),d(p).on("click","a.child-shortcode-add",function(){o.addColumn()}),d(p).on("click",".choose-show",function(){var e=d(this);o.choiceControl(e)}),d(p).on("click",".magee_custom_icon",function(){var e=d(this);o.chooseIcon(e)}),d(p).on("click",".magee-shortcodes-preview",function(e){e.stopPropagation(),o.shortcodePrivew()}),d(p).on("click",".magee-preview-delete",function(){o.deletePrivew()})},initOptions:function(){var o=this;o.numberControl(),d(".choose-show").each(function(){d(this).find(".choose-show-param").each(function(){var e=""==(e=d(this).parents(".param-item").find(".magee-form-choose").val())?"no":e;d(this).attr("name")==e?d(this).css("display","block"):d(this).css("display","none"),"Yes"==d(this).text()?d(this).css({"background-color":"#CCF7D5",color:"#17A534","font-weight":"bold"}):"No"==d(this).text()&&d(this).css({"background-color":"#FFDEDE",color:"#ff0000","font-weight":"bold"})})}),d(p).find(".wp-color-picker-field").each(function(e){var t=d(this);o.colorpickerControl(t)})},colorOptions:function(){var o=this;return{change:function(e,t){o.container.find(".wp-color-picker-field").each(function(){var e=d(this).parents(".wp-picker-container").find(".wp-color-result").css("background-color");d(this).css("background-color",e);var t=0;d(this).parents(".wp-picker-container").find("a.iris-square-value").css("top")&&(t=parseInt(d(this).parents(".wp-picker-container").find("a.iris-square-value").css("top").replace("px","")));e=parseInt(d(this).parents(".wp-picker-container").find("div.iris-slider-offset span").css("bottom"));t<87&&e<97?d(this).css("color","black"):d(this).css("color","white")})},defaultColor:!0}},shortcodePrivew:function(){var e=d("#TB_window").height()-40;d("#preview").css({display:"block",position:"absolute",width:"1200px",height:e,top:"0px",left:"-200px"});e="<iframe id='magee-sc-form-preview' class='magee-sc-form-preview' width='100%' height='"+(d("#preview").height()-d(".preview-title").height()-50).toString()+"'></iframe>";0<d("#magee-sc-form-preview").length&&d("#magee-sc-form-preview").remove(),d("#preview").append(e);var t=this.container.find("form").serializeArray(),o=this.container.find("form").find("input#magee-shortcode").val();d.ajax({type:"POST",url:ajaxurl,dataType:"html",data:{action:"preview_js",shortcode:o},success:function(e){d("#magee-sc-form-preview").contents().find("head").append(e),d("#magee-sc-form-preview").contents().find("body").append("<img alt='loading' class='loading' src='"+magee_params.themeurl+"/images/AjaxLoader.gif' />"),d.ajax({type:"POST",url:ajaxurl,dataType:"html",data:{name:o,action:"live_preview",preview:t},success:function(e){e+='<script>if (typeof jQuery !== "undefined") {var magee_shortcodes = jQuery().MageeShortcodes(); magee_shortcodes.init();}<\/script>',d("#magee-sc-form-preview").contents().find(".loading").remove(),d("#magee-sc-form-preview").contents().find("body").append(e),d("#magee-sc-form-preview").contents().find("a").on("click",function(e){"#"==d(this).attr("href")&&e.preventDefault()})},error:function(){}})},error:function(){}})},deletePrivew:function(){d("#preview").css("display","none"),d("#magee-sc-form-preview").remove()},shortcodePopup:function(e={}){var t="shortcode-generator",o=d(this).data("target");void 0!==e&&e.identifier&&(t=e.identifier);var i=MSEditorL10n.insertShortcode+"<span class='shortcode_show_name'></span><a class='link-doc' target='_blank' href='"+MSGenerator.docUrl+"'>"+MSEditorL10n.doc+"</a><a class='link-forum' target='_blank' href='"+MSGenerator.forumUrl+"'>"+MSEditorL10n.forums+"</a>",e=d(c).height()-150;tb_show(i,ajaxurl+"?action=magee_shortcodes_popup&popup="+t+"&target=="+o+"&width=800&height="+e)},goBack:function(){var e=d(c).height()-150;d("#TB_ajaxContent").css("height",e),d("#magee-shortcodes-settings").hide(),d("#TB_footer").remove(),d("#magee-shortcodes-settings-innter").html(""),d(".magee_shortcodes_list").show(),d("#TB_ajaxWindowTitle").find("i").remove(),d("#TB_ajaxWindowTitle").find("span").html(""),d("#TB_ajaxWindowTitle").html(d("#TB_ajaxWindowTitle").html().replace(/ /g,"")),d("#preview").css("display","none"),d("#magee-sc-form-preview").remove()},chooseIcon:function(e){e.each(function(){d(this).parents(".param-item").find(".iconpicker").css("display","block"),d(this).parents(".param-item").find(".iconpicker i").click(function(){var e=d(this).data("name");d(this).addClass("selected").siblings().removeClass("selected"),d(this).parents(".param-item").find("input").val(e),d(this).parent(".iconpicker").css("display","none")})})},uplaodButton:function(e){if(upid=e.attr("data-upid"),e.hasClass("remove-image"))return d('.magee-upload-button[data-upid="'+upid+'"]').parent().find("img").attr("src","").hide(),d('.magee-upload-button[data-upid="'+upid+'"]').parent().find("input").val("").change(),void d('.magee-upload-button[data-upid="'+upid+'"]').text("Upload").removeClass("remove-image");var o=wp.media.frames.file_frame=wp.media({title:MSEditorL10n.select_img,button:{text:MSEditorL10n.select_img},frame:"post",multiple:!1});o.open(),d(".media-menu a:contains(Insert from URL)").remove(),o.on("select",function(){o.state().get("selection").map(function(e){e=e.toJSON(),d('.magee-upload-button[data-upid="'+upid+'"]').parent().find("img").attr("src",e.url).show(),d('.magee-upload-button[data-upid="'+upid+'"]').parent().find("input").val(e.url).change()}),d('.magee-upload-button[data-upid="'+upid+'"]').text("Remove").addClass("remove-image"),d(".media-modal-close").trigger("click")}),o.on("insert",function(){var e=o.state().get("selection"),t=d(".attachment-display-settings .size").val();e.map(function(e){(e=e.toJSON()).url=(t?e.sizes[t]:e).url,d('.magee-upload-button[data-upid="'+upid+'"]').parent().find("img").attr("src",e.url).show(),d('.magee-upload-button[data-upid="'+upid+'"]').parent().find("input").val(e.url).change()}),d('.magee-upload-button[data-upid="'+upid+'"]').text("Remove").addClass("remove-image"),d(".media-modal-close").trigger("click")})},addColumn:function(){var e='<div class="param-item"><a id="child-shortcode-remove" href="#" class="child-clone-row-remove magee-shortcodes-button ">'+MSEditorL10n.remove+"</a></div>",t=this.container.find(".magee-shortcodes-settings-inner-clone");t.find(".wp-picker-container").each(function(){var e='<input type="text" class="magee-form-text magee-cinput wp-color-picker-field" name="'+d(this).find("input").attr("name")+'" id="'+d(this).find("input").attr("id")+'" value="'+d(this).find("input").val()+'" />';d(this).replaceWith(e)}),$clone=t.html();t=d(".column-shortcode-inner").length,e='<div class="column-shortcode-inner">'+$clone+e+"</div>";if(d(".shortcode-add").before(e),$source=d(".column-shortcode-inner").eq(t),0<$source.find(".magee-upload-button").length)for(var o=$source.find(".magee-upload-button").length,i=0;i<o;i++){this.k++;var n=$source.find(".magee-upload-button").eq(i).attr("data-upid");$source.find(".magee-upload-button").eq(i).attr("data-upid",n+this.k)}this.initOptions()},removeColumn:function(e){e.parents(".column-shortcode-inner").remove()},numberControl:function(){this.container.find(".magee-form-number").each(function(){var t=d(this),o=parseInt(d(this).attr("max")),i=parseInt(d(this).parent(".field").find(".probar").width()),n=i/o,e=parseInt(d(this).val()),e=n*e.toString();d(this).parent(".field").find(".probar-control").css("left",e),d(this).parents(".param-item").find(".probar").click(function(e){e=((e=e||c.event).clientX-d(this).parents(".param-item").find(".probar").offset().left)/i*100;d(this).parents(".param-item").find(".probar-control").css("left",e.toString()+"%"),Math.round(parseInt(d(this).parents(".param-item").find(".probar-control").css("left"))/n)>o?t.val(o):t.val(Math.round(parseInt(d(this).parents(".param-item").find(".probar-control").css("left"))/n))}),d(this).change(function(){parseInt(d(this).val())>o?d(this).parents(".param-item").find(".probar-control").css("left","100%"):(newleft=n*parseInt(d(this).val()).toString(),d(this).parents(".param-item").find(".probar-control").css("left",newleft))});var a,r,s=0;d(this).parents(".param-item").find(".probar-control").mousedown(function(e){s=1,e=e||c.event,a=d(this).parents(".param-item").find(".probar").offset().left,r=a+i}),d(p).mousemove(function(e){1==s&&(e=(e=e||c.event).clientX,r<e||e<a?(r<e&&t.parents(".param-item").find(".probar-control").css("left","100%"),e<a&&t.parents(".param-item").find(".probar-control").css("left","0%")):(e=(e-a)/i*100,t.parents(".param-item").find(".probar-control").css("left",e.toString()+"%"),t.val(Math.round(parseInt(t.parents(".param-item").find(".probar-control").css("left"))/n))))}),d(p).mouseup(function(){s=0})})},choiceControl:function(e){var t;e.find(".choose-show-param").eq(0).is(":hidden")?(t=e.find(".choose-show-param").eq(0).attr("name"),e.find(".choose-show-param").eq(0).css("display","block"),e.find(".choose-show-param").eq(1).css("display","none"),e.parents(".param-item").find(".magee-form-choose").val(t),"Yes"==e.find(".choose-show-param").eq(1).text()&&e.css({"background-color":"#CCF7D5",color:"#17A534","font-weight":"bold"}),"No"==e.find(".choose-show-param").eq(1).text()&&e.css({"background-color":"#FFDEDE",color:"#ff0000","font-weight":"bold"})):(t=e.find(".choose-show-param").eq(1).attr("name"),e.find(".choose-show-param").eq(1).css("display","block"),e.find(".choose-show-param").eq(0).css("display","none"),e.parents(".param-item").find(".magee-form-choose").val(t),"Yes"==e.find(".choose-show-param").eq(0).text()&&e.css({"background-color":"#CCF7D5",color:"#17A534","font-weight":"bold"}),"No"==e.find(".choose-show-param").eq(0).text()&&e.css({"background-color":"#FFDEDE",color:"#ff0000","font-weight":"bold"}))},colorpickerControl:function(e){var t=this.colorOptions();e.wpColorPicker(t);t=e.attr("value");e.css("background-color",t);var o=0,i=e.parents(".wp-picker-container");i.find(".wp-picker-holder").mouseover(function(e){o=0,e.cancelBubble=!0}),i.find(".wp-picker-holder").mouseout(function(e){o=1,e.cancelBubble=!0}),d(p).mousedown(function(){1==o&&i.find(".wp-picker-holder").css("display","none")}),i.find(".wp-color-result").click(function(){i.find(".wp-picker-holder").css("display","block")})},shortcodeGenerator:function(e){var t=this.colorOptions(),r=e.data("shortcode"),s=e.parents("div#magee_shortcodes_container form");this.container=d("#magee_shortcodes_container");var c=this;d.ajax({type:"POST",url:ajaxurl,dataType:"html",data:{shortcode:r,action:"magee_shortcode_form"},success:function(e){if(s.find(".magee_shortcodes_list").hide(),s.find("#magee-shortcodes-settings").show(),s.find("#magee-shortcodes-settings .current_shortcode").text(r),s.find("#magee-shortcodes-settings #magee-shortcode").val(r),s.find("#magee-shortcodes-settings-inner").html(e),d(".magee-shortcodes-settings-inner-clone").html(s.find(".column-shortcode-inner").html()),0<s.find(".magee-upload-button").length)for(var t=s.find(".magee-upload-button").length,o=0;o<t;o++){c.k++;var i=s.find(".magee-upload-button").eq(o).attr("data-upid");s.find(".magee-upload-button").eq(o).attr("data-upid",i+c.k)}var n='<div class="TB_footer" id="TB_footer">';n+='<div class="magee-shortcode-return">'+MSEditorL10n.top+"</div>",n+='<div class="magee-shortcode-actions magee-shortcode-clearfix">',n+='<a class="button button-large magee-shortcodes-home" href="javascript:void(0);"><img src="'+MSGenerator.imgUrl+'list.png"/></a>',n+='<a class="button button-primary button-large magee-shortcodes-preview" >',n+='<img style="margin-bottom:-3px;margin-right:5px" src="'+MSGenerator.imgUrl+'preview.png"/>'+MSEditorL10n.preview,n+="</a>",n+='<a class="button button-primary button-large magee-shortcode-insert" href="javascript:void(0);">',n+='<img style="margin-bottom:-3px;margin-right:5px" src="'+MSGenerator.imgUrl+'insert_shortcode.png"/>'+MSEditorL10n.insert,n+="</a>",n+="</div>",n+="</div>",d("#TB_window").append(n);var a=d("#TB_window").outerHeight(),e=d("#TB_title").outerHeight(),n=d("#TB_footer").outerHeight();d("#TB_ajaxContent").css({height:a-e-n-15}),d("#TB_ajaxWindowTitle> span:first-child").before(" <i class='fa fa-angle-right title_icon' ></i> "),d("#TB_ajaxWindowTitle> span").append(d("#magee-shortcodes-settings-inner h2").text()),d("#no_preview").val()&&d(".TB_footer .magee-shortcodes-preview").css("display","none"),d("#TB_ajaxContent").scroll(function(){400<=d(this).scrollTop()?d(".magee-shortcode-return").css("display","block"):d(".magee-shortcode-return").css("display","none")}),d(".magee-shortcode-return").click(function(){d("#TB_ajaxContent").animate({scrollTop:0},500)}),d(".magee-form-datetime").datetimepicker({dateFormat:"yy-mm-dd HH:ii:ss",allowTimes:[]})},complete:function(){c.container.find(".wp-color-picker-field").wpColorPicker(t),c.initOptions()},error:function(){}})},shortcodeInsert:function(){var e=this.container.find("form"),t=e.find("input#magee-shortcode").val(),o=this.container.data("target");d.ajax({type:"POST",url:ajaxurl,dataType:"html",data:{shortcode:t,action:"magee_create_shortcode",attr:e.serializeArray()},success:function(e){c.MSG.props?c.MSG.props.props.setAttributes({content:c.MSG.props.props.attributes.content+e}):(c.magee_wpActiveEditor=c.wpActiveEditor,c.wpActiveEditor=o,c.wp.media.editor.insert(e),c.wpActiveEditor=c.magee_wpActiveEditor),tb_remove()},error:function(){tb_remove()}})}}),d.fn.MageeShortcodesApi=function(){return(new e).setter},d(function(){(new e).init()}),c.MSG={},c.MSG.Api=jQuery().MageeShortcodesApi()}(window.jQuery,window,document);
|
assets/js/jquery.event.move.js
DELETED
@@ -1,586 +0,0 @@
|
|
1 |
-
// jquery.event.move
|
2 |
-
//
|
3 |
-
// 1.3.6
|
4 |
-
//
|
5 |
-
// Stephen Band
|
6 |
-
//
|
7 |
-
// Triggers 'movestart', 'move' and 'moveend' events after
|
8 |
-
// mousemoves following a mousedown cross a distance threshold,
|
9 |
-
// similar to the native 'dragstart', 'drag' and 'dragend' events.
|
10 |
-
// Move events are throttled to animation frames. Move event objects
|
11 |
-
// have the properties:
|
12 |
-
//
|
13 |
-
// pageX:
|
14 |
-
// pageY: Page coordinates of pointer.
|
15 |
-
// startX:
|
16 |
-
// startY: Page coordinates of pointer at movestart.
|
17 |
-
// distX:
|
18 |
-
// distY: Distance the pointer has moved since movestart.
|
19 |
-
// deltaX:
|
20 |
-
// deltaY: Distance the finger has moved since last event.
|
21 |
-
// velocityX:
|
22 |
-
// velocityY: Average velocity over last few events.
|
23 |
-
|
24 |
-
|
25 |
-
(function (module) {
|
26 |
-
if (typeof define === 'function' && define.amd) {
|
27 |
-
// AMD. Register as an anonymous module.
|
28 |
-
define(['jquery'], module);
|
29 |
-
} else {
|
30 |
-
// Browser globals
|
31 |
-
module(jQuery);
|
32 |
-
}
|
33 |
-
})(function(jQuery, undefined){
|
34 |
-
|
35 |
-
var // Number of pixels a pressed pointer travels before movestart
|
36 |
-
// event is fired.
|
37 |
-
threshold = 6,
|
38 |
-
|
39 |
-
add = jQuery.event.add,
|
40 |
-
|
41 |
-
remove = jQuery.event.remove,
|
42 |
-
|
43 |
-
// Just sugar, so we can have arguments in the same order as
|
44 |
-
// add and remove.
|
45 |
-
trigger = function(node, type, data) {
|
46 |
-
jQuery.event.trigger(type, data, node);
|
47 |
-
},
|
48 |
-
|
49 |
-
// Shim for requestAnimationFrame, falling back to timer. See:
|
50 |
-
// see http://paulirish.com/2011/requestanimationframe-for-smart-animating/
|
51 |
-
requestFrame = (function(){
|
52 |
-
return (
|
53 |
-
window.requestAnimationFrame ||
|
54 |
-
window.webkitRequestAnimationFrame ||
|
55 |
-
window.mozRequestAnimationFrame ||
|
56 |
-
window.oRequestAnimationFrame ||
|
57 |
-
window.msRequestAnimationFrame ||
|
58 |
-
function(fn, element){
|
59 |
-
return window.setTimeout(function(){
|
60 |
-
fn();
|
61 |
-
}, 25);
|
62 |
-
}
|
63 |
-
);
|
64 |
-
})(),
|
65 |
-
|
66 |
-
ignoreTags = {
|
67 |
-
textarea: true,
|
68 |
-
input: true,
|
69 |
-
select: true,
|
70 |
-
button: true
|
71 |
-
},
|
72 |
-
|
73 |
-
mouseevents = {
|
74 |
-
move: 'mousemove',
|
75 |
-
cancel: 'mouseup dragstart',
|
76 |
-
end: 'mouseup'
|
77 |
-
},
|
78 |
-
|
79 |
-
touchevents = {
|
80 |
-
move: 'touchmove',
|
81 |
-
cancel: 'touchend',
|
82 |
-
end: 'touchend'
|
83 |
-
};
|
84 |
-
|
85 |
-
|
86 |
-
// Constructors
|
87 |
-
|
88 |
-
function Timer(fn){
|
89 |
-
var callback = fn,
|
90 |
-
active = false,
|
91 |
-
running = false;
|
92 |
-
|
93 |
-
function trigger(time) {
|
94 |
-
if (active){
|
95 |
-
callback();
|
96 |
-
requestFrame(trigger);
|
97 |
-
running = true;
|
98 |
-
active = false;
|
99 |
-
}
|
100 |
-
else {
|
101 |
-
running = false;
|
102 |
-
}
|
103 |
-
}
|
104 |
-
|
105 |
-
this.kick = function(fn) {
|
106 |
-
active = true;
|
107 |
-
if (!running) { trigger(); }
|
108 |
-
};
|
109 |
-
|
110 |
-
this.end = function(fn) {
|
111 |
-
var cb = callback;
|
112 |
-
|
113 |
-
if (!fn) { return; }
|
114 |
-
|
115 |
-
// If the timer is not running, simply call the end callback.
|
116 |
-
if (!running) {
|
117 |
-
fn();
|
118 |
-
}
|
119 |
-
// If the timer is running, and has been kicked lately, then
|
120 |
-
// queue up the current callback and the end callback, otherwise
|
121 |
-
// just the end callback.
|
122 |
-
else {
|
123 |
-
callback = active ?
|
124 |
-
function(){ cb(); fn(); } :
|
125 |
-
fn ;
|
126 |
-
|
127 |
-
active = true;
|
128 |
-
}
|
129 |
-
};
|
130 |
-
}
|
131 |
-
|
132 |
-
|
133 |
-
// Functions
|
134 |
-
|
135 |
-
function returnTrue() {
|
136 |
-
return true;
|
137 |
-
}
|
138 |
-
|
139 |
-
function returnFalse() {
|
140 |
-
return false;
|
141 |
-
}
|
142 |
-
|
143 |
-
function preventDefault(e) {
|
144 |
-
e.preventDefault();
|
145 |
-
}
|
146 |
-
|
147 |
-
function preventIgnoreTags(e) {
|
148 |
-
// Don't prevent interaction with form elements.
|
149 |
-
if (ignoreTags[ e.target.tagName.toLowerCase() ]) { return; }
|
150 |
-
|
151 |
-
e.preventDefault();
|
152 |
-
}
|
153 |
-
|
154 |
-
function isLeftButton(e) {
|
155 |
-
// Ignore mousedowns on any button other than the left (or primary)
|
156 |
-
// mouse button, or when a modifier key is pressed.
|
157 |
-
return (e.which === 1 && !e.ctrlKey && !e.altKey);
|
158 |
-
}
|
159 |
-
|
160 |
-
function identifiedTouch(touchList, id) {
|
161 |
-
var i, l;
|
162 |
-
|
163 |
-
if (touchList.identifiedTouch) {
|
164 |
-
return touchList.identifiedTouch(id);
|
165 |
-
}
|
166 |
-
|
167 |
-
// touchList.identifiedTouch() does not exist in
|
168 |
-
// webkit yet… we must do the search ourselves...
|
169 |
-
|
170 |
-
i = -1;
|
171 |
-
l = touchList.length;
|
172 |
-
|
173 |
-
while (++i < l) {
|
174 |
-
if (touchList[i].identifier === id) {
|
175 |
-
return touchList[i];
|
176 |
-
}
|
177 |
-
}
|
178 |
-
}
|
179 |
-
|
180 |
-
function changedTouch(e, event) {
|
181 |
-
var touch = identifiedTouch(e.changedTouches, event.identifier);
|
182 |
-
|
183 |
-
// This isn't the touch you're looking for.
|
184 |
-
if (!touch) { return; }
|
185 |
-
|
186 |
-
// Chrome Android (at least) includes touches that have not
|
187 |
-
// changed in e.changedTouches. That's a bit annoying. Check
|
188 |
-
// that this touch has changed.
|
189 |
-
if (touch.pageX === event.pageX && touch.pageY === event.pageY) { return; }
|
190 |
-
|
191 |
-
return touch;
|
192 |
-
}
|
193 |
-
|
194 |
-
|
195 |
-
// Handlers that decide when the first movestart is triggered
|
196 |
-
|
197 |
-
function mousedown(e){
|
198 |
-
var data;
|
199 |
-
|
200 |
-
if (!isLeftButton(e)) { return; }
|
201 |
-
|
202 |
-
data = {
|
203 |
-
target: e.target,
|
204 |
-
startX: e.pageX,
|
205 |
-
startY: e.pageY,
|
206 |
-
timeStamp: e.timeStamp
|
207 |
-
};
|
208 |
-
|
209 |
-
add(document, mouseevents.move, mousemove, data);
|
210 |
-
add(document, mouseevents.cancel, mouseend, data);
|
211 |
-
}
|
212 |
-
|
213 |
-
function mousemove(e){
|
214 |
-
var data = e.data;
|
215 |
-
|
216 |
-
checkThreshold(e, data, e, removeMouse);
|
217 |
-
}
|
218 |
-
|
219 |
-
function mouseend(e) {
|
220 |
-
removeMouse();
|
221 |
-
}
|
222 |
-
|
223 |
-
function removeMouse() {
|
224 |
-
remove(document, mouseevents.move, mousemove);
|
225 |
-
remove(document, mouseevents.cancel, mouseend);
|
226 |
-
}
|
227 |
-
|
228 |
-
function touchstart(e) {
|
229 |
-
var touch, template;
|
230 |
-
|
231 |
-
// Don't get in the way of interaction with form elements.
|
232 |
-
if (ignoreTags[ e.target.tagName.toLowerCase() ]) { return; }
|
233 |
-
|
234 |
-
touch = e.changedTouches[0];
|
235 |
-
|
236 |
-
// iOS live updates the touch objects whereas Android gives us copies.
|
237 |
-
// That means we can't trust the touchstart object to stay the same,
|
238 |
-
// so we must copy the data. This object acts as a template for
|
239 |
-
// movestart, move and moveend event objects.
|
240 |
-
template = {
|
241 |
-
target: touch.target,
|
242 |
-
startX: touch.pageX,
|
243 |
-
startY: touch.pageY,
|
244 |
-
timeStamp: e.timeStamp,
|
245 |
-
identifier: touch.identifier
|
246 |
-
};
|
247 |
-
|
248 |
-
// Use the touch identifier as a namespace, so that we can later
|
249 |
-
// remove handlers pertaining only to this touch.
|
250 |
-
add(document, touchevents.move + '.' + touch.identifier, touchmove, template);
|
251 |
-
add(document, touchevents.cancel + '.' + touch.identifier, touchend, template);
|
252 |
-
}
|
253 |
-
|
254 |
-
function touchmove(e){
|
255 |
-
var data = e.data,
|
256 |
-
touch = changedTouch(e, data);
|
257 |
-
|
258 |
-
if (!touch) { return; }
|
259 |
-
|
260 |
-
checkThreshold(e, data, touch, removeTouch);
|
261 |
-
}
|
262 |
-
|
263 |
-
function touchend(e) {
|
264 |
-
var template = e.data,
|
265 |
-
touch = identifiedTouch(e.changedTouches, template.identifier);
|
266 |
-
|
267 |
-
if (!touch) { return; }
|
268 |
-
|
269 |
-
removeTouch(template.identifier);
|
270 |
-
}
|
271 |
-
|
272 |
-
function removeTouch(identifier) {
|
273 |
-
remove(document, '.' + identifier, touchmove);
|
274 |
-
remove(document, '.' + identifier, touchend);
|
275 |
-
}
|
276 |
-
|
277 |
-
|
278 |
-
// Logic for deciding when to trigger a movestart.
|
279 |
-
|
280 |
-
function checkThreshold(e, template, touch, fn) {
|
281 |
-
var distX = touch.pageX - template.startX,
|
282 |
-
distY = touch.pageY - template.startY;
|
283 |
-
|
284 |
-
// Do nothing if the threshold has not been crossed.
|
285 |
-
if ((distX * distX) + (distY * distY) < (threshold * threshold)) { return; }
|
286 |
-
|
287 |
-
triggerStart(e, template, touch, distX, distY, fn);
|
288 |
-
}
|
289 |
-
|
290 |
-
function handled() {
|
291 |
-
// this._handled should return false once, and after return true.
|
292 |
-
this._handled = returnTrue;
|
293 |
-
return false;
|
294 |
-
}
|
295 |
-
|
296 |
-
function flagAsHandled(e) {
|
297 |
-
e._handled();
|
298 |
-
}
|
299 |
-
|
300 |
-
function triggerStart(e, template, touch, distX, distY, fn) {
|
301 |
-
var node = template.target,
|
302 |
-
touches, time;
|
303 |
-
|
304 |
-
touches = e.targetTouches;
|
305 |
-
time = e.timeStamp - template.timeStamp;
|
306 |
-
|
307 |
-
// Create a movestart object with some special properties that
|
308 |
-
// are passed only to the movestart handlers.
|
309 |
-
template.type = 'movestart';
|
310 |
-
template.distX = distX;
|
311 |
-
template.distY = distY;
|
312 |
-
template.deltaX = distX;
|
313 |
-
template.deltaY = distY;
|
314 |
-
template.pageX = touch.pageX;
|
315 |
-
template.pageY = touch.pageY;
|
316 |
-
template.velocityX = distX / time;
|
317 |
-
template.velocityY = distY / time;
|
318 |
-
template.targetTouches = touches;
|
319 |
-
template.finger = touches ?
|
320 |
-
touches.length :
|
321 |
-
1 ;
|
322 |
-
|
323 |
-
// The _handled method is fired to tell the default movestart
|
324 |
-
// handler that one of the move events is bound.
|
325 |
-
template._handled = handled;
|
326 |
-
|
327 |
-
// Pass the touchmove event so it can be prevented if or when
|
328 |
-
// movestart is handled.
|
329 |
-
template._preventTouchmoveDefault = function() {
|
330 |
-
e.preventDefault();
|
331 |
-
};
|
332 |
-
|
333 |
-
// Trigger the movestart event.
|
334 |
-
trigger(template.target, template);
|
335 |
-
|
336 |
-
// Unbind handlers that tracked the touch or mouse up till now.
|
337 |
-
fn(template.identifier);
|
338 |
-
}
|
339 |
-
|
340 |
-
|
341 |
-
// Handlers that control what happens following a movestart
|
342 |
-
|
343 |
-
function activeMousemove(e) {
|
344 |
-
var timer = e.data.timer;
|
345 |
-
|
346 |
-
e.data.touch = e;
|
347 |
-
e.data.timeStamp = e.timeStamp;
|
348 |
-
timer.kick();
|
349 |
-
}
|
350 |
-
|
351 |
-
function activeMouseend(e) {
|
352 |
-
var event = e.data.event,
|
353 |
-
timer = e.data.timer;
|
354 |
-
|
355 |
-
removeActiveMouse();
|
356 |
-
|
357 |
-
endEvent(event, timer, function() {
|
358 |
-
// Unbind the click suppressor, waiting until after mouseup
|
359 |
-
// has been handled.
|
360 |
-
setTimeout(function(){
|
361 |
-
remove(event.target, 'click', returnFalse);
|
362 |
-
}, 0);
|
363 |
-
});
|
364 |
-
}
|
365 |
-
|
366 |
-
function removeActiveMouse(event) {
|
367 |
-
remove(document, mouseevents.move, activeMousemove);
|
368 |
-
remove(document, mouseevents.end, activeMouseend);
|
369 |
-
}
|
370 |
-
|
371 |
-
function activeTouchmove(e) {
|
372 |
-
var event = e.data.event,
|
373 |
-
timer = e.data.timer,
|
374 |
-
touch = changedTouch(e, event);
|
375 |
-
|
376 |
-
if (!touch) { return; }
|
377 |
-
|
378 |
-
// Stop the interface from gesturing
|
379 |
-
e.preventDefault();
|
380 |
-
|
381 |
-
event.targetTouches = e.targetTouches;
|
382 |
-
e.data.touch = touch;
|
383 |
-
e.data.timeStamp = e.timeStamp;
|
384 |
-
timer.kick();
|
385 |
-
}
|
386 |
-
|
387 |
-
function activeTouchend(e) {
|
388 |
-
var event = e.data.event,
|
389 |
-
timer = e.data.timer,
|
390 |
-
touch = identifiedTouch(e.changedTouches, event.identifier);
|
391 |
-
|
392 |
-
// This isn't the touch you're looking for.
|
393 |
-
if (!touch) { return; }
|
394 |
-
|
395 |
-
removeActiveTouch(event);
|
396 |
-
endEvent(event, timer);
|
397 |
-
}
|
398 |
-
|
399 |
-
function removeActiveTouch(event) {
|
400 |
-
remove(document, '.' + event.identifier, activeTouchmove);
|
401 |
-
remove(document, '.' + event.identifier, activeTouchend);
|
402 |
-
}
|
403 |
-
|
404 |
-
|
405 |
-
// Logic for triggering move and moveend events
|
406 |
-
|
407 |
-
function updateEvent(event, touch, timeStamp, timer) {
|
408 |
-
var time = timeStamp - event.timeStamp;
|
409 |
-
|
410 |
-
event.type = 'move';
|
411 |
-
event.distX = touch.pageX - event.startX;
|
412 |
-
event.distY = touch.pageY - event.startY;
|
413 |
-
event.deltaX = touch.pageX - event.pageX;
|
414 |
-
event.deltaY = touch.pageY - event.pageY;
|
415 |
-
|
416 |
-
// Average the velocity of the last few events using a decay
|
417 |
-
// curve to even out spurious jumps in values.
|
418 |
-
event.velocityX = 0.3 * event.velocityX + 0.7 * event.deltaX / time;
|
419 |
-
event.velocityY = 0.3 * event.velocityY + 0.7 * event.deltaY / time;
|
420 |
-
event.pageX = touch.pageX;
|
421 |
-
event.pageY = touch.pageY;
|
422 |
-
}
|
423 |
-
|
424 |
-
function endEvent(event, timer, fn) {
|
425 |
-
timer.end(function(){
|
426 |
-
event.type = 'moveend';
|
427 |
-
|
428 |
-
trigger(event.target, event);
|
429 |
-
|
430 |
-
return fn && fn();
|
431 |
-
});
|
432 |
-
}
|
433 |
-
|
434 |
-
|
435 |
-
// jQuery special event definition
|
436 |
-
|
437 |
-
function setup(data, namespaces, eventHandle) {
|
438 |
-
// Stop the node from being dragged
|
439 |
-
//add(this, 'dragstart.move drag.move', preventDefault);
|
440 |
-
|
441 |
-
// Prevent text selection and touch interface scrolling
|
442 |
-
//add(this, 'mousedown.move', preventIgnoreTags);
|
443 |
-
|
444 |
-
// Tell movestart default handler that we've handled this
|
445 |
-
add(this, 'movestart.move', flagAsHandled);
|
446 |
-
|
447 |
-
// Don't bind to the DOM. For speed.
|
448 |
-
return true;
|
449 |
-
}
|
450 |
-
|
451 |
-
function teardown(namespaces) {
|
452 |
-
remove(this, 'dragstart drag', preventDefault);
|
453 |
-
remove(this, 'mousedown touchstart', preventIgnoreTags);
|
454 |
-
remove(this, 'movestart', flagAsHandled);
|
455 |
-
|
456 |
-
// Don't bind to the DOM. For speed.
|
457 |
-
return true;
|
458 |
-
}
|
459 |
-
|
460 |
-
function addMethod(handleObj) {
|
461 |
-
// We're not interested in preventing defaults for handlers that
|
462 |
-
// come from internal move or moveend bindings
|
463 |
-
if (handleObj.namespace === "move" || handleObj.namespace === "moveend") {
|
464 |
-
return;
|
465 |
-
}
|
466 |
-
|
467 |
-
// Stop the node from being dragged
|
468 |
-
add(this, 'dragstart.' + handleObj.guid + ' drag.' + handleObj.guid, preventDefault, undefined, handleObj.selector);
|
469 |
-
|
470 |
-
// Prevent text selection and touch interface scrolling
|
471 |
-
add(this, 'mousedown.' + handleObj.guid, preventIgnoreTags, undefined, handleObj.selector);
|
472 |
-
}
|
473 |
-
|
474 |
-
function removeMethod(handleObj) {
|
475 |
-
if (handleObj.namespace === "move" || handleObj.namespace === "moveend") {
|
476 |
-
return;
|
477 |
-
}
|
478 |
-
|
479 |
-
remove(this, 'dragstart.' + handleObj.guid + ' drag.' + handleObj.guid);
|
480 |
-
remove(this, 'mousedown.' + handleObj.guid);
|
481 |
-
}
|
482 |
-
|
483 |
-
jQuery.event.special.movestart = {
|
484 |
-
setup: setup,
|
485 |
-
teardown: teardown,
|
486 |
-
add: addMethod,
|
487 |
-
remove: removeMethod,
|
488 |
-
|
489 |
-
_default: function(e) {
|
490 |
-
var event, data;
|
491 |
-
|
492 |
-
// If no move events were bound to any ancestors of this
|
493 |
-
// target, high tail it out of here.
|
494 |
-
if (!e._handled()) { return; }
|
495 |
-
|
496 |
-
function update(time) {
|
497 |
-
updateEvent(event, data.touch, data.timeStamp);
|
498 |
-
trigger(e.target, event);
|
499 |
-
}
|
500 |
-
|
501 |
-
event = {
|
502 |
-
target: e.target,
|
503 |
-
startX: e.startX,
|
504 |
-
startY: e.startY,
|
505 |
-
pageX: e.pageX,
|
506 |
-
pageY: e.pageY,
|
507 |
-
distX: e.distX,
|
508 |
-
distY: e.distY,
|
509 |
-
deltaX: e.deltaX,
|
510 |
-
deltaY: e.deltaY,
|
511 |
-
velocityX: e.velocityX,
|
512 |
-
velocityY: e.velocityY,
|
513 |
-
timeStamp: e.timeStamp,
|
514 |
-
identifier: e.identifier,
|
515 |
-
targetTouches: e.targetTouches,
|
516 |
-
finger: e.finger
|
517 |
-
};
|
518 |
-
|
519 |
-
data = {
|
520 |
-
event: event,
|
521 |
-
timer: new Timer(update),
|
522 |
-
touch: undefined,
|
523 |
-
timeStamp: undefined
|
524 |
-
};
|
525 |
-
|
526 |
-
if (e.identifier === undefined) {
|
527 |
-
// We're dealing with a mouse
|
528 |
-
// Stop clicks from propagating during a move
|
529 |
-
add(e.target, 'click', returnFalse);
|
530 |
-
add(document, mouseevents.move, activeMousemove, data);
|
531 |
-
add(document, mouseevents.end, activeMouseend, data);
|
532 |
-
}
|
533 |
-
else {
|
534 |
-
// We're dealing with a touch. Stop touchmove doing
|
535 |
-
// anything defaulty.
|
536 |
-
e._preventTouchmoveDefault();
|
537 |
-
add(document, touchevents.move + '.' + e.identifier, activeTouchmove, data);
|
538 |
-
add(document, touchevents.end + '.' + e.identifier, activeTouchend, data);
|
539 |
-
}
|
540 |
-
}
|
541 |
-
};
|
542 |
-
|
543 |
-
jQuery.event.special.move = {
|
544 |
-
setup: function() {
|
545 |
-
// Bind a noop to movestart. Why? It's the movestart
|
546 |
-
// setup that decides whether other move events are fired.
|
547 |
-
add(this, 'movestart.move', jQuery.noop);
|
548 |
-
},
|
549 |
-
|
550 |
-
teardown: function() {
|
551 |
-
remove(this, 'movestart.move', jQuery.noop);
|
552 |
-
}
|
553 |
-
};
|
554 |
-
|
555 |
-
jQuery.event.special.moveend = {
|
556 |
-
setup: function() {
|
557 |
-
// Bind a noop to movestart. Why? It's the movestart
|
558 |
-
// setup that decides whether other move events are fired.
|
559 |
-
add(this, 'movestart.moveend', jQuery.noop);
|
560 |
-
},
|
561 |
-
|
562 |
-
teardown: function() {
|
563 |
-
remove(this, 'movestart.moveend', jQuery.noop);
|
564 |
-
}
|
565 |
-
};
|
566 |
-
|
567 |
-
add(document, 'mousedown.move', mousedown);
|
568 |
-
add(document, 'touchstart.move', touchstart);
|
569 |
-
|
570 |
-
// Make jQuery copy touch event properties over to the jQuery event
|
571 |
-
// object, if they are not already listed. But only do the ones we
|
572 |
-
// really need. IE7/8 do not have Array#indexOf(), but nor do they
|
573 |
-
// have touch events, so let's assume we can ignore them.
|
574 |
-
if (typeof Array.prototype.indexOf === 'function') {
|
575 |
-
(function(jQuery, undefined){
|
576 |
-
var props = ["changedTouches", "targetTouches"],
|
577 |
-
l = props.length;
|
578 |
-
|
579 |
-
while (l--) {
|
580 |
-
if (jQuery.event.props.indexOf(props[l]) === -1) {
|
581 |
-
jQuery.event.props.push(props[l]);
|
582 |
-
}
|
583 |
-
}
|
584 |
-
})(jQuery);
|
585 |
-
};
|
586 |
-
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/js/shortcodes.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
!function(y,t){function e(){}y.extend(e.prototype,{init:function(){this.initShortcodes(),this.general(),this.animation(),this.heading(),this.resize()},initShortcodes:function(){this.shortcodeAccordion(),this.shortcodeAudioplayer(),this.shortcodeAlert(),this.shortcodeCarousel(),this.shortcodeContact(),this.shortcodeCountdown(),this.shortcodeCounter(),this.shortcodeDailymotion(),this.shortcodeDocumentviewer(),this.shortcodeExpand(),this.shortcodeFeature(),this.shortcodeFlipbox(),this.shortcodeImagecompare(),this.shortcodeVimeo(),this.shortcodePiechart(),this.shortcodeModaltrigger()},resize:function(){var e=this;y(t).on("resize",function(){e.heading()})},DY_scroll:function(e,t,a,i,o,n){var e=y(e),t=y(t),a=y(a),s=(i=y(i).find("ul")).find("li").outerWidth(!0),d=o;a.click(function(){i.animate({"margin-left":-s},function(){i.find("li").eq(0).appendTo(i),i.css({"margin-left":0})})}),t.click(function(){i.find("li:last").prependTo(i),i.css({"margin-left":-s}),i.animate({"margin-left":0})}),1==n&&(ad=setInterval(function(){a.click()},1e3*d),e.hover(function(){clearInterval(ad)},function(){ad=setInterval(function(){a.click()},1e3*d)}))},counterUp:function(e,t){var a=y.extend({time:400,delay:10},t);return e.each(function(){var c=y(this),r=a;c.waypoint(function(){for(var e=[],t=r.time/r.delay,a=c.text(),i=/[0-9]+,[0-9]+/.test(a),a=a.replace(/,/g,""),o=(/^[0-9]+$/.test(a),/^[0-9]+\.[0-9]+$/.test(a)),n=o?(a.split(".")[1]||[]).length:0,s=t;1<=s;s--){var d=parseInt(a/t*s);if(o&&(d=parseFloat(a/t*s).toFixed(n)),i)for(;/(\d+)(\d{3})/.test(d.toString());)d=d.toString().replace(/(\d+)(\d{3})/,"$1,$2");e.unshift(d)}c.data("counterup-nums",e),c.text("0");c.data("counterup-func",function(){c.text(c.data("counterup-nums").shift()),c.data("counterup-nums").length?setTimeout(c.data("counterup-func"),r.delay):(c.data("counterup-nums"),c.data("counterup-nums",null),c.data("counterup-func",null))}),setTimeout(c.data("counterup-func"),r.delay)},{offset:"100%",triggerOnce:!0})})},IsEmail:function(e){return!!/^([a-zA-Z0-9_\.\-\+])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/.test(e)},general:function(){y(".wow").each(function(){var e=y(this).data("animationduration");void 0!==e&&y(this).css({"-webkit-animation-duration":e+"s","animation-duration":e+"s"})});var e=y('.magee-shortcode[data-toggle="tooltip"]');e.length&&e.tooltip();e=y(".magee-popover");e.length&&e.popover();e=y("a[rel^='prettyPhoto']");e.length&&e.prettyPhoto()},heading:function(){y(".magee-heading").each(function(){magee_heading=y(this),"yes"==magee_heading.data("responsive")&&y(t).width()<1200&&(newPercentage=y(t).width()/1200*100+"%",y(this).find(".heading-inner").css({"font-size":newPercentage}))})},mgmodal:function(e,t){var a=e;""===(t=y.extend({title:"",message:"",close_icon:"",type:"effect-1",id:""},t)).type&&(t.type="effect-1"),""===t.close_icon&&(t.close_icon="yes"),a.wrap('<div class="ms-modal-wrapper"></div>'),a.after('<div class="magee-modal-wrapper" id="'+t.id+'"></div>');var i=a.parent(".ms-modal-wrapper").find(".magee-modal-wrapper");i.append('<div class="magee-modal magee-modal-'+t.type+'"></div><div class="magee-modal-overlay"></div>');var o=i.find(".magee-modal");o.append('<div class="magee-modal-content-wrapper"><div class="magee-modal-title-wrapper"></div><div class="magee-modal-content"></div></div>');e=i.find(".magee-modal-title-wrapper");"yes"===t.close_icon?e.append("<h3>"+t.title+'<a href="javascript:void(0);" class="magee-modal-close"><i class="fa fa-remove"></i></a></h3>'):e.append("<h3>"+t.title+"</h3>"),i.find(".magee-modal-content").append(t.message),i.find("a.magee-modal-close").on("click",function(e){e.preventDefault(),o.removeClass("magee-modal-show")}),i.find(".magee-modal-overlay").on("click",function(){o.removeClass("magee-modal-show")}),a.on("click",function(){o.addClass("magee-modal-show")})},animation:function(){y(".magee-shortcode[data-animation]").mouseover(function(){var e=y(this).attr("data-animation");y(this).addClass("animated").addClass(e)}),y(".magee-shortcode[data-animation]").mouseout(function(){var e=y(this).attr("data-animation");y(this).removeClass("animated").removeClass(e)}),y(".magee-animated").length&&y(".magee-animated").each(function(){("yes"===y(this).data("imageanimation")?y(this).find("img,i.fa"):y(this)).css("visibility","hidden"),$this=y(this),y().waypoint&&$this.waypoint(function(e,t){$this.css("visibility","visible"),$this.find("img,i.fa").css("visibility","visible");var a=$this.data("animationtype"),i=$this.data("animationduration");"yes"===$this.data("imageanimation")?($this.find("img,i.fa").addClass("animated "+a),i&&($this.find("img,i.fa").css("-moz-animation-duration",i+"s"),$this.find("img,i.fa").css("-webkit-animation-duration",i+"s"),$this.find("img,i.fa").css("-ms-animation-duration",i+"s"),$this.find("img,i.fa").css("-o-animation-duration",i+"s"),$this.find("img,i.fa").css("animation-duration",i+"s"))):($this.addClass("animated "+a),i&&($this.css("-moz-animation-duration",i+"s"),$this.css("-webkit-animation-duration",i+"s"),$this.css("-ms-animation-duration",i+"s"),$this.css("-o-animation-duration",i+"s"),$this.css("animation-duration",i+"s")))},{triggerOnce:!0,offset:"90%"})})},shortcodeAccordion:function(){var e=y(".magee-accordion");e.length&&e.find(".panel-heading").on("click",function(e){e.stopPropagation();var t=y(this).parents(".magee-accordion"),a=y(this).find("a.accordion-toggle"),i=a.attr("aria-controls"),e=y(this).parents(".magee-accordion").attr("aria-multiselectable"),i=y("#"+i);return i.slideToggle("fade"),a.hasClass("collapsed")?a.removeClass("collapsed"):a.addClass("collapsed"),console.log(e),"yes"!==e&&"1"!==e&&(t.find(".panel-collapse").not(i).slideUp("fast"),t.find(".accordion-toggle").not(a).addClass("collapsed")),!1})},shortcodeAlert:function(e){var t=y(".magee-alert");t.length&&t.find(".close").each(function(){y(this).click(function(e){e.preventDefault(),y(this).parent(".magee-alert").remove()})})},shortcodeAudioplayer:function(){var e=y(".ms-audio");e.length&&e.each(function(){y(this).audioPlayer({classPrefix:"audioplayer",strPlay:"Play",strPause:"Pause",strVolume:"Volume",strControls:y(this).data("controls"),strStyle:y(this).data("style")})})},shortcodeContact:function(){y("form.magee-contact-form #submit").click(function(e){e.preventDefault();var t=y(this).parents(".magee-contact-form");t.find(".contact-failed").text("");var a=t.find("input#receiver").val(),o=t.find("input#email").val(),n=t.find("input#name").val(),s=t.find("input#subject").val(),d=t.find("textarea#message").val(),c=t.find("input#country").val()?t.find("input#country").val():"0",r=t.find("input#city").val()?t.find("input#city").val():"0",l=t.find("input#telephone").val()?t.find("input#telephone").val():"0",h=t.find("input#company").val()?t.find("input#company").val():"0",f=t.find("input#website").val()?t.find("input#website").val():"0",m="checked"==t.find("input#checkboxWarning").attr("checked")?"yes":"no",u=t.find("input#terms").val(),e=t.find("input#required_fields").val(),g=e.split(","),p="",v="";for(i=0;i<g.length;i++)if((v=y.trim(g[i]))&&0<t.find("#"+v).length){if(""===t.find("#"+v).val())return p+=v,t.find(".contact-failed").addClass("notice-error"),t.find(".contact-failed").html(v.substring(0,1).toUpperCase()+v.substring(1)+magee_params.required),!1;p+=""}return""==p&&(t.find(".contact-failed").removeClass("notice-error"),t.find(".contact-failed").append("<img alt='loading' class='loading' src='"+magee_params.themeurl+"/images/AjaxLoader.gif' />"),y.ajax({type:"POST",dataType:"json",url:magee_params.ajaxurl,data:{name:n,email:o,subject:s,receiver:a,message:d,terms:u,checkboxWarning:m,required_fields:e,country:c,city:r,telephone:l,company:h,website:f,action:"magee_contact"},success:function(e){return 0==e.error?(t.find(".contact-failed").addClass("notice-success"),t.find(".contact-failed").html(e.msg),y(".loading").remove(),t[0].reset()):(t.find(".contact-failed").removeClass("notice-success"),t.find(".contact-failed").html(e.msg)),!1},error:function(){return t.find(".contact-failed").html("Error."),t.find(".loading").remove(),!1}})),!1})},shortcodeCountdown:function(){var e=y(".magee-countdown-circle-type");e.length&&e.each(function(){el=y(this),el.ClassyCountdown({end:el.data("endtime"),now:el.data("nowtime"),labels:!0,labelsOptions:{lang:{days:el.data("day_field_text"),hours:el.data("hours_field_text"),minutes:el.data("minutes_field_text"),seconds:el.data("seconds_field_text")}},style:{element:"",textResponsive:.5,days:{gauge:{thickness:.03,bgColor:"rgba(255,255,255,0.05)",fgColor:el.data("circle_type_day_color")},textCSS:"font-family:"+el.data("google_fonts")+";font-weight:300; color:"+el.data("fontcolor")+";"},hours:{gauge:{thickness:.03,bgColor:"rgba(255,255,255,0.05)",fgColor:el.data("circle_type_hours_color")},textCSS:"font-family:"+el.data("google_fonts")+";font-weight:300; color:"+el.data("fontcolor")+";"},minutes:{gauge:{thickness:.03,bgColor:"rgba(255,255,255,0.05)",fgColor:el.data("circle_type_minutes_color")},textCSS:"font-family:"+el.data("google_fonts")+";font-weight:300; color:"+el.data("fontcolor")+";"},seconds:{gauge:{thickness:.03,bgColor:"rgba(255,255,255,0.05)",fgColor:el.data("circle_type_seconds_color")},textCSS:"font-family:"+el.data("google_fonts")+";font-weight:300; color:"+el.data("fontcolor")+";"}},onEndCallback:function(){el.remove()}})})},shortcodeCounter:function(){y(".magee-counter-box").length&&y(".magee-counter-box").waypoint(function(e){var t=y(this.element).attr("class");"down"!==e||y(this.element).hasClass("animated")||(setTimeout(function(){y("."+t.replace(" ",".")).find(".js-counter").countTo({formatter:function(e,t){return e.toFixed(t.decimals)}})},200),y(this.element).addClass("animated"))},{offset:"75%"})},shortcodeCarousel:function(){y(".magee-carousel").length&&y(".magee-carousel").each(function(){var e=y(this),t=e.data("columns"),a=0<t-2?t-2:t,i=1<t?10:0;e.find(".owl-carousel").owlCarousel({loop:!0,margin:i,autoplay:"yes"==e.data("autoplay"),autoplayTimeout:e.data("autoplaytimeout"),autoplayHoverPause:!0,items:t,responsiveClass:!0,responsive:{0:{items:1,nav:!1},600:{items:a,nav:"yes"==e.data("display-nav")?"true":"false"},1e3:{items:t,nav:"yes"==e.data("display-nav")?"true":"false"}}}),e.find(".carousel-next").click(function(){e.find(".owl-carousel").trigger("next.owl.carousel")}),e.find(".carousel-prev").click(function(){e.find(".owl-carousel").trigger("prev.owl.carousel")}),e.find(".owl-controls").addClass(e.data("pag-style"))}),y(".multi-carousel").length&&this.DY_scroll(".multi-carousel",".multi-carousel-nav-prev",".multi-carousel-nav-next",".multi-carousel-inner",3,!1)},shortcodeDailymotion:function(){var e=y(".magee-dailymotion");e.length&&e.each(function(){dail=y(this),("100%"==dail.data("width")||""==dail.data("width")&&"100%"==dail.data("height")||""==dail.data("height"))&&(width=dail.width(),iframewidth=dail.find("iframe").eq(0).width(),iframeheight=dail.find("iframe").eq(0).height(),op=iframeheight/iframewidth,dail.find("iframe").eq(0).width(width-100),dail.find("iframe").eq(0).height(op*(width-100)))})},shortcodeDocumentviewer:function(){y(".magee-document").length&&y(".magee-document").each(function(){doc=y(this),"yes"==doc.data("responsive")&&(width=doc.width(),width<doc.data("width")&&(op=doc.data("height")/doc.data("width"),doc.find("iframe").eq(0).width(width),doc.find("iframe").eq(0).height(op*width)))})},shortcodeExpand:function(){var e=y(".magee-expand");e.length&&e.each(function(){var t,a;expand=y(this),less_icon=expand.data("less-icon"),less_icon_color=expand.data("less-icon-color"),more_icon=expand.data("more-icon"),more_icon_color=expand.data("more-icon-color"),t=0<=less_icon.indexOf("fa-")?'<i class="fa '+less_icon+'" style="color:'+less_icon_color+';"></i> '+expand.data("less-text"):'<img src="'+less_icon+'" class="image-instead"/>'+expand.data("less-text"),a=0<=more_icon.indexOf("fa-")?'<i class="fa '+more_icon+'" style="color:'+more_icon_color+';"></i> '+expand.data("more-text"):'<img src="'+more_icon+'" class="image-instead"/>'+expand.data("more-text"),expand.find(".expand-control").click(function(){var e=y(this);e.parent(".magee-expand").find(".expand-content").slideToggle(500,function(){e.siblings(".expand-content").is(":visible")?e.html(t):e.html(a)})})})},shortcodeFeature:function(){var e=y(".magee-feature-box");if(e.length)for(i=0;i<e.length;i++){var t=y(e[i]).find(".icon-box").outerWidth();y(e[i]).find("img.feature-box-icon").length&&(t=y(e[i]).find("img.feature-box-icon").outerWidth()),t+=15,y(e[i]).hasClass("style2")&&y(e[i]).hasClass("reverse")?y(e[i]).css({"padding-left":0,"padding-right":t+"px"}):y(e[i]).hasClass("style2")?y(e[i]).css({"padding-left":t+"px"}):y(this).hasClass("style3")?(t-=15,y(e[i]).find("h3").css({"line-height":t+"px"})):y(e[i]).hasClass("style4")&&(t1=-(t/=2),t+="px",t1+="px",y(e[i]).css({"padding-top":t,"margin-top":t}),y(e[i]).find(".icon-box").css({top:t1,"margin-left":t1}),y(e[i]).find("img.feature-box-icon").css({top:t1,"margin-left":t1}))}},shortcodeFlipbox:function(){var e=y(".magee-flipbox-wrap");e.length&&e.each(function(){var e=y(this).find(".flipbox-front").outerHeight(),t=y(this).find(".flipbox-back").outerHeight(),t=t<e?e:t;y(this).css({height:t});t=y(this);t.bind("touchstart",function(){var e=y(this).data("direction");switch(e){case"horizontal":case"vertical":case"slide-left":case"slide-right":case"slide-top":case"slide-bottom":y(this).find(".flipbox-front").addClass(e+"-touchstart-front").removeClass(e+"-touchend-front"),y(this).find(".flipbox-back").addClass(e+"-touchstart-back").removeClass(e+"-touchend-back");break;case"flip-bottom":case"flip-top":case"flip-right":case"flip-left":y(this).find(".flipbox-back").addClass(e+"-touchstart-back").removeClass(e+"-touchend-back")}}),t.bind("touchend",function(){var e=y(this).data("direction");switch(e){case"horizontal":case"vertical":y(this).find(".flipbox-front").addClass(e+"-touchend-front").removeClass(e+"-touchstart-front"),y(this).find(".flipbox-back").addClass(e+"-touchend-back").removeClass(e+"-touchstart-back");break;case"slide-left":case"slide-right":case"slide-top":case"slide-bottom":y(this).find(".flipbox-front").removeClass(e+"-touchstart-front").addClass(e+"-touchend-front"),y(this).find(".flipbox-back").removeClass(e+"-touchstart-back").addClass(e+"-touchend-back");break;case"flip-bottom":case"flip-top":case"flip-right":case"flip-left":y(this).find(".flipbox-back").removeClass(e+"-touchstart-back").addClass(e+"-touchend-back")}})})},shortcodeImagecompare:function(){y(".magee-image-compare").length&&y(".magee-image-compare").each(function(){y(this).twentytwenty({default_offset_pct:y(this).data("pct"),orientation:y(this).data("orientation")})})},shortcodeModaltrigger:function(){var e=y(".magee-modal-trigger"),t=this;e.length&&e.each(function(){var e=y(this);t.mgmodal(e,{title:e.data("title"),message:e.data("content"),close_icon:e.data("close_icon"),type:e.data("effect"),id:e.data("id")})})},shortcodePiechart:function(){y(".magee-chart-box").length&&y(".magee-chart-box").each(function(){piechart=y(this),piechart.easyPieChart({barColor:piechart.data("barcolor"),trackColor:piechart.data("trackcolor"),scaleColor:!1,lineWidth:10,trackWidth:10,size:piechart.data("size"),lineCap:piechart.data("linecap")})})},shortcodeVimeo:function(){var e=y(".magee-vimeo-video");e.length&&e.each(function(){magee_vimeo=y(this),("100%"==magee_vimeo.data("width")||"100%"==magee_vimeo.data("height")&&""==magee_vimeo.data("width")||""==magee_vimeo.data("height"))&&(divwidth=magee_vimeo.width(),width=magee_vimeo.find("iframe.magee-vimeo").width(),height=magee_vimeo.find("iframe.magee-vimeo").height(),op=height/width,magee_vimeo.find("iframe.magee-vimeo").width(divwidth-100),magee_vimeo.find("iframe.magee-vimeo").height(op*divwidth-100))})}}),y.fn.MageeShortcodes=function(){return new e},y(function(){(new e).init()})}(window.jQuery,window,document);
|
1 |
+
!function(b,t){function e(){}b.extend(e.prototype,{init:function(){this.initShortcodes(),this.general(),this.animation(),this.heading(),this.resize()},initShortcodes:function(){this.shortcodeAccordion(),this.shortcodeAudioplayer(),this.shortcodeAlert(),this.shortcodeCarousel(),this.shortcodeContact(),this.shortcodeCountdown(),this.shortcodeCounter(),this.shortcodeDailymotion(),this.shortcodeDocumentviewer(),this.shortcodeExpand(),this.shortcodeFeature(),this.shortcodeFlipbox(),this.shortcodeImagecompare(),this.shortcodeVimeo(),this.shortcodePiechart(),this.shortcodeModaltrigger()},resize:function(){var e=this;b(t).on("resize",function(){e.heading()})},DY_scroll:function(e,t,a,i,o,n){var e=b(e),t=b(t),a=b(a),s=(i=b(i).find("ul")).find("li").outerWidth(!0),d=o;a.click(function(){i.animate({"margin-left":-s},function(){i.find("li").eq(0).appendTo(i),i.css({"margin-left":0})})}),t.click(function(){i.find("li:last").prependTo(i),i.css({"margin-left":-s}),i.animate({"margin-left":0})}),1==n&&(ad=setInterval(function(){a.click()},1e3*d),e.hover(function(){clearInterval(ad)},function(){ad=setInterval(function(){a.click()},1e3*d)}))},counterUp:function(e,t){var a=b.extend({time:400,delay:10},t);return e.each(function(){var c=b(this),l=a;c.waypoint(function(){for(var e=[],t=l.time/l.delay,a=c.text(),i=/[0-9]+,[0-9]+/.test(a),a=a.replace(/,/g,""),o=(/^[0-9]+$/.test(a),/^[0-9]+\.[0-9]+$/.test(a)),n=o?(a.split(".")[1]||[]).length:0,s=t;1<=s;s--){var d=parseInt(a/t*s);if(o&&(d=parseFloat(a/t*s).toFixed(n)),i)for(;/(\d+)(\d{3})/.test(d.toString());)d=d.toString().replace(/(\d+)(\d{3})/,"$1,$2");e.unshift(d)}c.data("counterup-nums",e),c.text("0");c.data("counterup-func",function(){c.text(c.data("counterup-nums").shift()),c.data("counterup-nums").length?setTimeout(c.data("counterup-func"),l.delay):(c.data("counterup-nums"),c.data("counterup-nums",null),c.data("counterup-func",null))}),setTimeout(c.data("counterup-func"),l.delay)},{offset:"100%",triggerOnce:!0})})},IsEmail:function(e){return!!/^([a-zA-Z0-9_\.\-\+])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/.test(e)},general:function(){b(".wow").each(function(){var e=b(this).data("animationduration");void 0!==e&&b(this).css({"-webkit-animation-duration":e+"s","animation-duration":e+"s"})});var e=b('.magee-shortcode[data-toggle="tooltip"]');e.length&&e.tooltip();e=b(".magee-popover");e.length&&e.popover();e=b("a[rel^='prettyPhoto']");e.length&&e.prettyPhoto()},heading:function(){b(".magee-heading").each(function(){magee_heading=b(this),"yes"==magee_heading.data("responsive")&&b(t).width()<1200&&(newPercentage=b(t).width()/1200*100+"%",b(this).find(".heading-inner").css({"font-size":newPercentage}))})},mgmodal:function(e,t){var a=e;""===(t=b.extend({title:"",message:"",close_icon:"",type:"effect-1",id:""},t)).type&&(t.type="effect-1"),""===t.close_icon&&(t.close_icon="yes"),a.wrap('<div class="ms-modal-wrapper"></div>'),a.after('<div class="magee-modal-wrapper" id="'+t.id+'"></div>');var i=a.parent(".ms-modal-wrapper").find(".magee-modal-wrapper");i.append('<div class="magee-modal magee-modal-'+t.type+'"></div><div class="magee-modal-overlay"></div>');var o=i.find(".magee-modal");o.append('<div class="magee-modal-content-wrapper"><div class="magee-modal-title-wrapper"></div><div class="magee-modal-content"></div></div>');e=i.find(".magee-modal-title-wrapper");"yes"===t.close_icon?e.append("<h3>"+t.title+'<a href="javascript:void(0);" class="magee-modal-close"><i class="fa fa-remove"></i></a></h3>'):e.append("<h3>"+t.title+"</h3>"),i.find(".magee-modal-content").append(t.message),i.find("a.magee-modal-close").on("click",function(e){e.preventDefault(),o.removeClass("magee-modal-show")}),i.find(".magee-modal-overlay").on("click",function(){o.removeClass("magee-modal-show")}),a.on("click",function(){o.addClass("magee-modal-show")})},animation:function(){b(".magee-shortcode[data-animation]").mouseover(function(){var e=b(this).attr("data-animation");b(this).addClass("animated").addClass(e)}),b(".magee-shortcode[data-animation]").mouseout(function(){var e=b(this).attr("data-animation");b(this).removeClass("animated").removeClass(e)}),b(".magee-animated").length&&b(".magee-animated").each(function(){("yes"===b(this).data("imageanimation")?b(this).find("img,i.fa"):b(this)).css("visibility","hidden"),$this=b(this),b().waypoint&&$this.waypoint(function(e,t){$this.css("visibility","visible"),$this.find("img,i.fa").css("visibility","visible");var a=$this.data("animationtype"),i=$this.data("animationduration");"yes"===$this.data("imageanimation")?($this.find("img,i.fa").addClass("animated "+a),i&&($this.find("img,i.fa").css("-moz-animation-duration",i+"s"),$this.find("img,i.fa").css("-webkit-animation-duration",i+"s"),$this.find("img,i.fa").css("-ms-animation-duration",i+"s"),$this.find("img,i.fa").css("-o-animation-duration",i+"s"),$this.find("img,i.fa").css("animation-duration",i+"s"))):($this.addClass("animated "+a),i&&($this.css("-moz-animation-duration",i+"s"),$this.css("-webkit-animation-duration",i+"s"),$this.css("-ms-animation-duration",i+"s"),$this.css("-o-animation-duration",i+"s"),$this.css("animation-duration",i+"s")))},{triggerOnce:!0,offset:"90%"})})},shortcodeAccordion:function(){var e=b(".magee-accordion");e.length&&e.find(".panel-heading").on("click",function(e){e.stopPropagation();var t=b(this).parents(".magee-accordion"),a=b(this).find("a.accordion-toggle"),i=a.attr("aria-controls"),e=b(this).parents(".magee-accordion").attr("aria-multiselectable"),i=b("#"+i);return i.slideToggle("fade"),a.hasClass("collapsed")?a.removeClass("collapsed"):a.addClass("collapsed"),console.log(e),"yes"!==e&&"1"!==e&&(t.find(".panel-collapse").not(i).slideUp("fast"),t.find(".accordion-toggle").not(a).addClass("collapsed")),!1})},shortcodeAlert:function(e){var t=b(".magee-alert");t.length&&t.find(".close").each(function(){b(this).click(function(e){e.preventDefault(),b(this).parent(".magee-alert").remove()})})},shortcodeAudioplayer:function(){var e=b(".ms-audio");e.length&&e.each(function(){b(this).audioPlayer({classPrefix:"audioplayer",strPlay:"Play",strPause:"Pause",strVolume:"Volume",strControls:b(this).data("controls"),strStyle:b(this).data("style")})})},shortcodeContact:function(){b("form.magee-contact-form #submit").click(function(e){e.preventDefault();var t=b(this).parents(".magee-contact-form");t.find(".contact-failed").text("");var a=t.find("input#receiver").val(),o=t.find("input#email").val(),n=t.find("input#name").val(),s=t.find("input#subject").val(),d=t.find("textarea#message").val(),c=t.find("input#country").val()?t.find("input#country").val():"0",l=t.find("input#city").val()?t.find("input#city").val():"0",r=t.find("input#telephone").val()?t.find("input#telephone").val():"0",h=t.find("input#company").val()?t.find("input#company").val():"0",f=t.find("input#website").val()?t.find("input#website").val():"0",m="checked"==t.find("input#checkboxWarning").attr("checked")?"yes":"no",u=t.find("input#terms").val(),e=t.find("input#required_fields").val(),g=e.split(","),p="",v="";for(i=0;i<g.length;i++)if((v=b.trim(g[i]))&&0<t.find("#"+v).length){if(""===t.find("#"+v).val())return p+=v,t.find(".contact-failed").addClass("notice-error"),t.find(".contact-failed").html(v.substring(0,1).toUpperCase()+v.substring(1)+magee_params.required),!1;p+=""}return""==p&&(t.find(".contact-failed").removeClass("notice-error"),t.find(".contact-failed").append("<img alt='loading' class='loading' src='"+magee_params.themeurl+"/images/AjaxLoader.gif' />"),b.ajax({type:"POST",dataType:"json",url:magee_params.ajaxurl,data:{name:n,email:o,subject:s,receiver:a,message:d,terms:u,checkboxWarning:m,required_fields:e,country:c,city:l,telephone:r,company:h,website:f,action:"magee_contact"},success:function(e){return 0==e.error?(t.find(".contact-failed").addClass("notice-success"),t.find(".contact-failed").html(e.msg),b(".loading").remove(),t[0].reset()):(t.find(".contact-failed").removeClass("notice-success"),t.find(".contact-failed").html(e.msg)),!1},error:function(){return t.find(".contact-failed").html("Error."),t.find(".loading").remove(),!1}})),!1})},shortcodeCountdown:function(){var e=b(".magee-countdown-circle-type");e.length&&e.each(function(){el=b(this),el.ClassyCountdown({end:el.data("endtime"),now:el.data("nowtime"),labels:!0,labelsOptions:{lang:{days:el.data("day_field_text"),hours:el.data("hours_field_text"),minutes:el.data("minutes_field_text"),seconds:el.data("seconds_field_text")}},style:{element:"",textResponsive:.5,days:{gauge:{thickness:.03,bgColor:"rgba(255,255,255,0.05)",fgColor:el.data("circle_type_day_color")},textCSS:"font-family:"+el.data("google_fonts")+";font-weight:300; color:"+el.data("fontcolor")+";"},hours:{gauge:{thickness:.03,bgColor:"rgba(255,255,255,0.05)",fgColor:el.data("circle_type_hours_color")},textCSS:"font-family:"+el.data("google_fonts")+";font-weight:300; color:"+el.data("fontcolor")+";"},minutes:{gauge:{thickness:.03,bgColor:"rgba(255,255,255,0.05)",fgColor:el.data("circle_type_minutes_color")},textCSS:"font-family:"+el.data("google_fonts")+";font-weight:300; color:"+el.data("fontcolor")+";"},seconds:{gauge:{thickness:.03,bgColor:"rgba(255,255,255,0.05)",fgColor:el.data("circle_type_seconds_color")},textCSS:"font-family:"+el.data("google_fonts")+";font-weight:300; color:"+el.data("fontcolor")+";"}},onEndCallback:function(){el.remove()}})})},shortcodeCounter:function(){b(".magee-counter-box").length&&b(".magee-counter-box").waypoint(function(e){var t=b(this.element).attr("class");"down"!==e||b(this.element).hasClass("animated")||(setTimeout(function(){b("."+t.replace(" ",".")).find(".js-counter").countTo({formatter:function(e,t){return e.toFixed(t.decimals)}})},200),b(this.element).addClass("animated"))},{offset:"75%"})},shortcodeCarousel:function(){b(".magee-carousel").length&&b(".magee-carousel").each(function(){var e=b(this),t=e.data("columns"),a=0<t-2?t-2:t,i=1<t?10:0;e.find(".owl-carousel").owlCarousel({loop:!0,margin:i,autoplay:"yes"==e.data("autoplay"),autoplayTimeout:e.data("autoplaytimeout"),autoplayHoverPause:!0,items:t,responsiveClass:!0,responsive:{0:{items:1,nav:!1},600:{items:a,nav:"yes"==e.data("display-nav")?"true":"false"},1e3:{items:t,nav:"yes"==e.data("display-nav")?"true":"false"}}}),e.find(".carousel-next").click(function(){e.find(".owl-carousel").trigger("next.owl.carousel")}),e.find(".carousel-prev").click(function(){e.find(".owl-carousel").trigger("prev.owl.carousel")}),e.find(".owl-controls").addClass(e.data("pag-style"))}),b(".multi-carousel").length&&this.DY_scroll(".multi-carousel",".multi-carousel-nav-prev",".multi-carousel-nav-next",".multi-carousel-inner",3,!1)},shortcodeDailymotion:function(){var e=b(".magee-dailymotion");e.length&&e.each(function(){dail=b(this),("100%"==dail.data("width")||""==dail.data("width")&&"100%"==dail.data("height")||""==dail.data("height"))&&(width=dail.width(),iframewidth=dail.find("iframe").eq(0).width(),iframeheight=dail.find("iframe").eq(0).height(),op=iframeheight/iframewidth,dail.find("iframe").eq(0).width(width-100),dail.find("iframe").eq(0).height(op*(width-100)))})},shortcodeDocumentviewer:function(){b(".magee-document").length&&b(".magee-document").each(function(){doc=b(this),"yes"==doc.data("responsive")&&(width=doc.width(),width<doc.data("width")&&(op=doc.data("height")/doc.data("width"),doc.find("iframe").eq(0).width(width),doc.find("iframe").eq(0).height(op*width)))})},shortcodeExpand:function(){var e=b(".magee-expand");e.length&&e.each(function(){var t,a;expand=b(this),less_icon=expand.data("less-icon"),less_icon_color=expand.data("less-icon-color"),more_icon=expand.data("more-icon"),more_icon_color=expand.data("more-icon-color"),t=0<=less_icon.indexOf("fa-")?'<i class="fa '+less_icon+'" style="color:'+less_icon_color+';"></i> '+expand.data("less-text"):'<img src="'+less_icon+'" class="image-instead"/>'+expand.data("less-text"),a=0<=more_icon.indexOf("fa-")?'<i class="fa '+more_icon+'" style="color:'+more_icon_color+';"></i> '+expand.data("more-text"):'<img src="'+more_icon+'" class="image-instead"/>'+expand.data("more-text"),expand.find(".expand-control").click(function(){var e=b(this);e.parent(".magee-expand").find(".expand-content").slideToggle(500,function(){e.siblings(".expand-content").is(":visible")?e.html(t):e.html(a)})})})},shortcodeFeature:function(){var e=b(".magee-feature-box");if(e.length)for(i=0;i<e.length;i++){var t=b(e[i]).find(".icon-box").outerWidth();b(e[i]).find("img.feature-box-icon").length&&(t=b(e[i]).find("img.feature-box-icon").outerWidth()),t+=15,b(e[i]).hasClass("style2")&&b(e[i]).hasClass("reverse")?b(e[i]).css({"padding-left":0,"padding-right":t+"px"}):b(e[i]).hasClass("style2")?b(e[i]).css({"padding-left":t+"px"}):b(this).hasClass("style3")?(t-=15,b(e[i]).find("h3").css({"line-height":t+"px"})):b(e[i]).hasClass("style4")&&(t1=-(t/=2),t+="px",t1+="px",b(e[i]).css({"padding-top":t,"margin-top":t}),b(e[i]).find(".icon-box").css({top:t1,"margin-left":t1}),b(e[i]).find("img.feature-box-icon").css({top:t1,"margin-left":t1}))}},shortcodeFlipbox:function(){var e=b(".magee-flipbox-wrap");e.length&&e.each(function(){var e=b(this).find(".flipbox-front").outerHeight(),t=b(this).find(".flipbox-back").outerHeight(),t=t<e?e:t;b(this).css({height:t});t=b(this);t.bind("touchstart",function(){var e=b(this).data("direction");switch(e){case"horizontal":case"vertical":case"slide-left":case"slide-right":case"slide-top":case"slide-bottom":b(this).find(".flipbox-front").addClass(e+"-touchstart-front").removeClass(e+"-touchend-front"),b(this).find(".flipbox-back").addClass(e+"-touchstart-back").removeClass(e+"-touchend-back");break;case"flip-bottom":case"flip-top":case"flip-right":case"flip-left":b(this).find(".flipbox-back").addClass(e+"-touchstart-back").removeClass(e+"-touchend-back")}}),t.bind("touchend",function(){var e=b(this).data("direction");switch(e){case"horizontal":case"vertical":b(this).find(".flipbox-front").addClass(e+"-touchend-front").removeClass(e+"-touchstart-front"),b(this).find(".flipbox-back").addClass(e+"-touchend-back").removeClass(e+"-touchstart-back");break;case"slide-left":case"slide-right":case"slide-top":case"slide-bottom":b(this).find(".flipbox-front").removeClass(e+"-touchstart-front").addClass(e+"-touchend-front"),b(this).find(".flipbox-back").removeClass(e+"-touchstart-back").addClass(e+"-touchend-back");break;case"flip-bottom":case"flip-top":case"flip-right":case"flip-left":b(this).find(".flipbox-back").removeClass(e+"-touchstart-back").addClass(e+"-touchend-back")}})})},shortcodeImagecompare:function(){b(".magee-image-compare").length&&b(".magee-image-compare").each(function(){b(this).twentytwenty({default_offset_pct:b(this).data("pct"),orientation:b(this).data("orientation"),before_label:b(this).data("before_label"),after_label:b(this).data("after_label"),click_to_move:!0})})},shortcodeModaltrigger:function(){var e=b(".magee-modal-trigger"),t=this;e.length&&e.each(function(){var e=b(this);t.mgmodal(e,{title:e.data("title"),message:e.data("content"),close_icon:e.data("close_icon"),type:e.data("effect"),id:e.data("id")})})},shortcodePiechart:function(){b(".magee-chart-box").length&&b(".magee-chart-box").each(function(){piechart=b(this),piechart.easyPieChart({barColor:piechart.data("barcolor"),trackColor:piechart.data("trackcolor"),scaleColor:!1,lineWidth:10,trackWidth:10,size:piechart.data("size"),lineCap:piechart.data("linecap")})})},shortcodeVimeo:function(){var e=b(".magee-vimeo-video");e.length&&e.each(function(){magee_vimeo=b(this),("100%"==magee_vimeo.data("width")||"100%"==magee_vimeo.data("height")&&""==magee_vimeo.data("width")||""==magee_vimeo.data("height"))&&(divwidth=magee_vimeo.width(),width=magee_vimeo.find("iframe.magee-vimeo").width(),height=magee_vimeo.find("iframe.magee-vimeo").height(),op=height/width,magee_vimeo.find("iframe.magee-vimeo").width(divwidth-100),magee_vimeo.find("iframe.magee-vimeo").height(op*divwidth-100))})}}),b.fn.MageeShortcodes=function(){return new e},b(function(){(new e).init()})}(window.jQuery,window,document);
|
assets/js/shortcodes.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
!function(y,t){function e(){}y.extend(e.prototype,{init:function(){this.initShortcodes(),this.general(),this.animation(),this.heading(),this.resize()},initShortcodes:function(){this.shortcodeAccordion(),this.shortcodeAudioplayer(),this.shortcodeAlert(),this.shortcodeCarousel(),this.shortcodeContact(),this.shortcodeCountdown(),this.shortcodeCounter(),this.shortcodeDailymotion(),this.shortcodeDocumentviewer(),this.shortcodeExpand(),this.shortcodeFeature(),this.shortcodeFlipbox(),this.shortcodeImagecompare(),this.shortcodeVimeo(),this.shortcodePiechart(),this.shortcodeModaltrigger()},resize:function(){var e=this;y(t).on("resize",function(){e.heading()})},DY_scroll:function(e,t,a,i,o,n){var e=y(e),t=y(t),a=y(a),s=(i=y(i).find("ul")).find("li").outerWidth(!0),d=o;a.click(function(){i.animate({"margin-left":-s},function(){i.find("li").eq(0).appendTo(i),i.css({"margin-left":0})})}),t.click(function(){i.find("li:last").prependTo(i),i.css({"margin-left":-s}),i.animate({"margin-left":0})}),1==n&&(ad=setInterval(function(){a.click()},1e3*d),e.hover(function(){clearInterval(ad)},function(){ad=setInterval(function(){a.click()},1e3*d)}))},counterUp:function(e,t){var a=y.extend({time:400,delay:10},t);return e.each(function(){var c=y(this),r=a;c.waypoint(function(){for(var e=[],t=r.time/r.delay,a=c.text(),i=/[0-9]+,[0-9]+/.test(a),a=a.replace(/,/g,""),o=(/^[0-9]+$/.test(a),/^[0-9]+\.[0-9]+$/.test(a)),n=o?(a.split(".")[1]||[]).length:0,s=t;1<=s;s--){var d=parseInt(a/t*s);if(o&&(d=parseFloat(a/t*s).toFixed(n)),i)for(;/(\d+)(\d{3})/.test(d.toString());)d=d.toString().replace(/(\d+)(\d{3})/,"$1,$2");e.unshift(d)}c.data("counterup-nums",e),c.text("0");c.data("counterup-func",function(){c.text(c.data("counterup-nums").shift()),c.data("counterup-nums").length?setTimeout(c.data("counterup-func"),r.delay):(c.data("counterup-nums"),c.data("counterup-nums",null),c.data("counterup-func",null))}),setTimeout(c.data("counterup-func"),r.delay)},{offset:"100%",triggerOnce:!0})})},IsEmail:function(e){return!!/^([a-zA-Z0-9_\.\-\+])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/.test(e)},general:function(){y(".wow").each(function(){var e=y(this).data("animationduration");void 0!==e&&y(this).css({"-webkit-animation-duration":e+"s","animation-duration":e+"s"})});var e=y('.magee-shortcode[data-toggle="tooltip"]');e.length&&e.tooltip();e=y(".magee-popover");e.length&&e.popover();e=y("a[rel^='prettyPhoto']");e.length&&e.prettyPhoto()},heading:function(){y(".magee-heading").each(function(){magee_heading=y(this),"yes"==magee_heading.data("responsive")&&y(t).width()<1200&&(newPercentage=y(t).width()/1200*100+"%",y(this).find(".heading-inner").css({"font-size":newPercentage}))})},mgmodal:function(e,t){var a=e;""===(t=y.extend({title:"",message:"",close_icon:"",type:"effect-1",id:""},t)).type&&(t.type="effect-1"),""===t.close_icon&&(t.close_icon="yes"),a.wrap('<div class="ms-modal-wrapper"></div>'),a.after('<div class="magee-modal-wrapper" id="'+t.id+'"></div>');var i=a.parent(".ms-modal-wrapper").find(".magee-modal-wrapper");i.append('<div class="magee-modal magee-modal-'+t.type+'"></div><div class="magee-modal-overlay"></div>');var o=i.find(".magee-modal");o.append('<div class="magee-modal-content-wrapper"><div class="magee-modal-title-wrapper"></div><div class="magee-modal-content"></div></div>');e=i.find(".magee-modal-title-wrapper");"yes"===t.close_icon?e.append("<h3>"+t.title+'<a href="javascript:void(0);" class="magee-modal-close"><i class="fa fa-remove"></i></a></h3>'):e.append("<h3>"+t.title+"</h3>"),i.find(".magee-modal-content").append(t.message),i.find("a.magee-modal-close").on("click",function(e){e.preventDefault(),o.removeClass("magee-modal-show")}),i.find(".magee-modal-overlay").on("click",function(){o.removeClass("magee-modal-show")}),a.on("click",function(){o.addClass("magee-modal-show")})},animation:function(){y(".magee-shortcode[data-animation]").mouseover(function(){var e=y(this).attr("data-animation");y(this).addClass("animated").addClass(e)}),y(".magee-shortcode[data-animation]").mouseout(function(){var e=y(this).attr("data-animation");y(this).removeClass("animated").removeClass(e)}),y(".magee-animated").length&&y(".magee-animated").each(function(){("yes"===y(this).data("imageanimation")?y(this).find("img,i.fa"):y(this)).css("visibility","hidden"),$this=y(this),y().waypoint&&$this.waypoint(function(e,t){$this.css("visibility","visible"),$this.find("img,i.fa").css("visibility","visible");var a=$this.data("animationtype"),i=$this.data("animationduration");"yes"===$this.data("imageanimation")?($this.find("img,i.fa").addClass("animated "+a),i&&($this.find("img,i.fa").css("-moz-animation-duration",i+"s"),$this.find("img,i.fa").css("-webkit-animation-duration",i+"s"),$this.find("img,i.fa").css("-ms-animation-duration",i+"s"),$this.find("img,i.fa").css("-o-animation-duration",i+"s"),$this.find("img,i.fa").css("animation-duration",i+"s"))):($this.addClass("animated "+a),i&&($this.css("-moz-animation-duration",i+"s"),$this.css("-webkit-animation-duration",i+"s"),$this.css("-ms-animation-duration",i+"s"),$this.css("-o-animation-duration",i+"s"),$this.css("animation-duration",i+"s")))},{triggerOnce:!0,offset:"90%"})})},shortcodeAccordion:function(){var e=y(".magee-accordion");e.length&&e.find(".panel-heading").on("click",function(e){e.stopPropagation();var t=y(this).parents(".magee-accordion"),a=y(this).find("a.accordion-toggle"),i=a.attr("aria-controls"),e=y(this).parents(".magee-accordion").attr("aria-multiselectable"),i=y("#"+i);return i.slideToggle("fade"),a.hasClass("collapsed")?a.removeClass("collapsed"):a.addClass("collapsed"),console.log(e),"yes"!==e&&"1"!==e&&(t.find(".panel-collapse").not(i).slideUp("fast"),t.find(".accordion-toggle").not(a).addClass("collapsed")),!1})},shortcodeAlert:function(e){var t=y(".magee-alert");t.length&&t.find(".close").each(function(){y(this).click(function(e){e.preventDefault(),y(this).parent(".magee-alert").remove()})})},shortcodeAudioplayer:function(){var e=y(".ms-audio");e.length&&e.each(function(){y(this).audioPlayer({classPrefix:"audioplayer",strPlay:"Play",strPause:"Pause",strVolume:"Volume",strControls:y(this).data("controls"),strStyle:y(this).data("style")})})},shortcodeContact:function(){y("form.magee-contact-form #submit").click(function(e){e.preventDefault();var t=y(this).parents(".magee-contact-form");t.find(".contact-failed").text("");var a=t.find("input#receiver").val(),o=t.find("input#email").val(),n=t.find("input#name").val(),s=t.find("input#subject").val(),d=t.find("textarea#message").val(),c=t.find("input#country").val()?t.find("input#country").val():"0",r=t.find("input#city").val()?t.find("input#city").val():"0",l=t.find("input#telephone").val()?t.find("input#telephone").val():"0",h=t.find("input#company").val()?t.find("input#company").val():"0",f=t.find("input#website").val()?t.find("input#website").val():"0",m="checked"==t.find("input#checkboxWarning").attr("checked")?"yes":"no",u=t.find("input#terms").val(),e=t.find("input#required_fields").val(),g=e.split(","),p="",v="";for(i=0;i<g.length;i++)if((v=y.trim(g[i]))&&0<t.find("#"+v).length){if(""===t.find("#"+v).val())return p+=v,t.find(".contact-failed").addClass("notice-error"),t.find(".contact-failed").html(v.substring(0,1).toUpperCase()+v.substring(1)+magee_params.required),!1;p+=""}return""==p&&(t.find(".contact-failed").removeClass("notice-error"),t.find(".contact-failed").append("<img alt='loading' class='loading' src='"+magee_params.themeurl+"/images/AjaxLoader.gif' />"),y.ajax({type:"POST",dataType:"json",url:magee_params.ajaxurl,data:{name:n,email:o,subject:s,receiver:a,message:d,terms:u,checkboxWarning:m,required_fields:e,country:c,city:r,telephone:l,company:h,website:f,action:"magee_contact"},success:function(e){return 0==e.error?(t.find(".contact-failed").addClass("notice-success"),t.find(".contact-failed").html(e.msg),y(".loading").remove(),t[0].reset()):(t.find(".contact-failed").removeClass("notice-success"),t.find(".contact-failed").html(e.msg)),!1},error:function(){return t.find(".contact-failed").html("Error."),t.find(".loading").remove(),!1}})),!1})},shortcodeCountdown:function(){var e=y(".magee-countdown-circle-type");e.length&&e.each(function(){el=y(this),el.ClassyCountdown({end:el.data("endtime"),now:el.data("nowtime"),labels:!0,labelsOptions:{lang:{days:el.data("day_field_text"),hours:el.data("hours_field_text"),minutes:el.data("minutes_field_text"),seconds:el.data("seconds_field_text")}},style:{element:"",textResponsive:.5,days:{gauge:{thickness:.03,bgColor:"rgba(255,255,255,0.05)",fgColor:el.data("circle_type_day_color")},textCSS:"font-family:"+el.data("google_fonts")+";font-weight:300; color:"+el.data("fontcolor")+";"},hours:{gauge:{thickness:.03,bgColor:"rgba(255,255,255,0.05)",fgColor:el.data("circle_type_hours_color")},textCSS:"font-family:"+el.data("google_fonts")+";font-weight:300; color:"+el.data("fontcolor")+";"},minutes:{gauge:{thickness:.03,bgColor:"rgba(255,255,255,0.05)",fgColor:el.data("circle_type_minutes_color")},textCSS:"font-family:"+el.data("google_fonts")+";font-weight:300; color:"+el.data("fontcolor")+";"},seconds:{gauge:{thickness:.03,bgColor:"rgba(255,255,255,0.05)",fgColor:el.data("circle_type_seconds_color")},textCSS:"font-family:"+el.data("google_fonts")+";font-weight:300; color:"+el.data("fontcolor")+";"}},onEndCallback:function(){el.remove()}})})},shortcodeCounter:function(){y(".magee-counter-box").length&&y(".magee-counter-box").waypoint(function(e){var t=y(this.element).attr("class");"down"!==e||y(this.element).hasClass("animated")||(setTimeout(function(){y("."+t.replace(" ",".")).find(".js-counter").countTo({formatter:function(e,t){return e.toFixed(t.decimals)}})},200),y(this.element).addClass("animated"))},{offset:"75%"})},shortcodeCarousel:function(){y(".magee-carousel").length&&y(".magee-carousel").each(function(){var e=y(this),t=e.data("columns"),a=0<t-2?t-2:t,i=1<t?10:0;e.find(".owl-carousel").owlCarousel({loop:!0,margin:i,autoplay:"yes"==e.data("autoplay"),autoplayTimeout:e.data("autoplaytimeout"),autoplayHoverPause:!0,items:t,responsiveClass:!0,responsive:{0:{items:1,nav:!1},600:{items:a,nav:"yes"==e.data("display-nav")?"true":"false"},1e3:{items:t,nav:"yes"==e.data("display-nav")?"true":"false"}}}),e.find(".carousel-next").click(function(){e.find(".owl-carousel").trigger("next.owl.carousel")}),e.find(".carousel-prev").click(function(){e.find(".owl-carousel").trigger("prev.owl.carousel")}),e.find(".owl-controls").addClass(e.data("pag-style"))}),y(".multi-carousel").length&&this.DY_scroll(".multi-carousel",".multi-carousel-nav-prev",".multi-carousel-nav-next",".multi-carousel-inner",3,!1)},shortcodeDailymotion:function(){var e=y(".magee-dailymotion");e.length&&e.each(function(){dail=y(this),("100%"==dail.data("width")||""==dail.data("width")&&"100%"==dail.data("height")||""==dail.data("height"))&&(width=dail.width(),iframewidth=dail.find("iframe").eq(0).width(),iframeheight=dail.find("iframe").eq(0).height(),op=iframeheight/iframewidth,dail.find("iframe").eq(0).width(width-100),dail.find("iframe").eq(0).height(op*(width-100)))})},shortcodeDocumentviewer:function(){y(".magee-document").length&&y(".magee-document").each(function(){doc=y(this),"yes"==doc.data("responsive")&&(width=doc.width(),width<doc.data("width")&&(op=doc.data("height")/doc.data("width"),doc.find("iframe").eq(0).width(width),doc.find("iframe").eq(0).height(op*width)))})},shortcodeExpand:function(){var e=y(".magee-expand");e.length&&e.each(function(){var t,a;expand=y(this),less_icon=expand.data("less-icon"),less_icon_color=expand.data("less-icon-color"),more_icon=expand.data("more-icon"),more_icon_color=expand.data("more-icon-color"),t=0<=less_icon.indexOf("fa-")?'<i class="fa '+less_icon+'" style="color:'+less_icon_color+';"></i> '+expand.data("less-text"):'<img src="'+less_icon+'" class="image-instead"/>'+expand.data("less-text"),a=0<=more_icon.indexOf("fa-")?'<i class="fa '+more_icon+'" style="color:'+more_icon_color+';"></i> '+expand.data("more-text"):'<img src="'+more_icon+'" class="image-instead"/>'+expand.data("more-text"),expand.find(".expand-control").click(function(){var e=y(this);e.parent(".magee-expand").find(".expand-content").slideToggle(500,function(){e.siblings(".expand-content").is(":visible")?e.html(t):e.html(a)})})})},shortcodeFeature:function(){var e=y(".magee-feature-box");if(e.length)for(i=0;i<e.length;i++){var t=y(e[i]).find(".icon-box").outerWidth();y(e[i]).find("img.feature-box-icon").length&&(t=y(e[i]).find("img.feature-box-icon").outerWidth()),t+=15,y(e[i]).hasClass("style2")&&y(e[i]).hasClass("reverse")?y(e[i]).css({"padding-left":0,"padding-right":t+"px"}):y(e[i]).hasClass("style2")?y(e[i]).css({"padding-left":t+"px"}):y(this).hasClass("style3")?(t-=15,y(e[i]).find("h3").css({"line-height":t+"px"})):y(e[i]).hasClass("style4")&&(t1=-(t/=2),t+="px",t1+="px",y(e[i]).css({"padding-top":t,"margin-top":t}),y(e[i]).find(".icon-box").css({top:t1,"margin-left":t1}),y(e[i]).find("img.feature-box-icon").css({top:t1,"margin-left":t1}))}},shortcodeFlipbox:function(){var e=y(".magee-flipbox-wrap");e.length&&e.each(function(){var e=y(this).find(".flipbox-front").outerHeight(),t=y(this).find(".flipbox-back").outerHeight(),t=t<e?e:t;y(this).css({height:t});t=y(this);t.bind("touchstart",function(){var e=y(this).data("direction");switch(e){case"horizontal":case"vertical":case"slide-left":case"slide-right":case"slide-top":case"slide-bottom":y(this).find(".flipbox-front").addClass(e+"-touchstart-front").removeClass(e+"-touchend-front"),y(this).find(".flipbox-back").addClass(e+"-touchstart-back").removeClass(e+"-touchend-back");break;case"flip-bottom":case"flip-top":case"flip-right":case"flip-left":y(this).find(".flipbox-back").addClass(e+"-touchstart-back").removeClass(e+"-touchend-back")}}),t.bind("touchend",function(){var e=y(this).data("direction");switch(e){case"horizontal":case"vertical":y(this).find(".flipbox-front").addClass(e+"-touchend-front").removeClass(e+"-touchstart-front"),y(this).find(".flipbox-back").addClass(e+"-touchend-back").removeClass(e+"-touchstart-back");break;case"slide-left":case"slide-right":case"slide-top":case"slide-bottom":y(this).find(".flipbox-front").removeClass(e+"-touchstart-front").addClass(e+"-touchend-front"),y(this).find(".flipbox-back").removeClass(e+"-touchstart-back").addClass(e+"-touchend-back");break;case"flip-bottom":case"flip-top":case"flip-right":case"flip-left":y(this).find(".flipbox-back").removeClass(e+"-touchstart-back").addClass(e+"-touchend-back")}})})},shortcodeImagecompare:function(){y(".magee-image-compare").length&&y(".magee-image-compare").each(function(){y(this).twentytwenty({default_offset_pct:y(this).data("pct"),orientation:y(this).data("orientation")})})},shortcodeModaltrigger:function(){var e=y(".magee-modal-trigger"),t=this;e.length&&e.each(function(){var e=y(this);t.mgmodal(e,{title:e.data("title"),message:e.data("content"),close_icon:e.data("close_icon"),type:e.data("effect"),id:e.data("id")})})},shortcodePiechart:function(){y(".magee-chart-box").length&&y(".magee-chart-box").each(function(){piechart=y(this),piechart.easyPieChart({barColor:piechart.data("barcolor"),trackColor:piechart.data("trackcolor"),scaleColor:!1,lineWidth:10,trackWidth:10,size:piechart.data("size"),lineCap:piechart.data("linecap")})})},shortcodeVimeo:function(){var e=y(".magee-vimeo-video");e.length&&e.each(function(){magee_vimeo=y(this),("100%"==magee_vimeo.data("width")||"100%"==magee_vimeo.data("height")&&""==magee_vimeo.data("width")||""==magee_vimeo.data("height"))&&(divwidth=magee_vimeo.width(),width=magee_vimeo.find("iframe.magee-vimeo").width(),height=magee_vimeo.find("iframe.magee-vimeo").height(),op=height/width,magee_vimeo.find("iframe.magee-vimeo").width(divwidth-100),magee_vimeo.find("iframe.magee-vimeo").height(op*divwidth-100))})}}),y.fn.MageeShortcodes=function(){return new e},y(function(){(new e).init()})}(window.jQuery,window,document);
|
1 |
+
!function(b,t){function e(){}b.extend(e.prototype,{init:function(){this.initShortcodes(),this.general(),this.animation(),this.heading(),this.resize()},initShortcodes:function(){this.shortcodeAccordion(),this.shortcodeAudioplayer(),this.shortcodeAlert(),this.shortcodeCarousel(),this.shortcodeContact(),this.shortcodeCountdown(),this.shortcodeCounter(),this.shortcodeDailymotion(),this.shortcodeDocumentviewer(),this.shortcodeExpand(),this.shortcodeFeature(),this.shortcodeFlipbox(),this.shortcodeImagecompare(),this.shortcodeVimeo(),this.shortcodePiechart(),this.shortcodeModaltrigger()},resize:function(){var e=this;b(t).on("resize",function(){e.heading()})},DY_scroll:function(e,t,a,i,o,n){var e=b(e),t=b(t),a=b(a),s=(i=b(i).find("ul")).find("li").outerWidth(!0),d=o;a.click(function(){i.animate({"margin-left":-s},function(){i.find("li").eq(0).appendTo(i),i.css({"margin-left":0})})}),t.click(function(){i.find("li:last").prependTo(i),i.css({"margin-left":-s}),i.animate({"margin-left":0})}),1==n&&(ad=setInterval(function(){a.click()},1e3*d),e.hover(function(){clearInterval(ad)},function(){ad=setInterval(function(){a.click()},1e3*d)}))},counterUp:function(e,t){var a=b.extend({time:400,delay:10},t);return e.each(function(){var c=b(this),l=a;c.waypoint(function(){for(var e=[],t=l.time/l.delay,a=c.text(),i=/[0-9]+,[0-9]+/.test(a),a=a.replace(/,/g,""),o=(/^[0-9]+$/.test(a),/^[0-9]+\.[0-9]+$/.test(a)),n=o?(a.split(".")[1]||[]).length:0,s=t;1<=s;s--){var d=parseInt(a/t*s);if(o&&(d=parseFloat(a/t*s).toFixed(n)),i)for(;/(\d+)(\d{3})/.test(d.toString());)d=d.toString().replace(/(\d+)(\d{3})/,"$1,$2");e.unshift(d)}c.data("counterup-nums",e),c.text("0");c.data("counterup-func",function(){c.text(c.data("counterup-nums").shift()),c.data("counterup-nums").length?setTimeout(c.data("counterup-func"),l.delay):(c.data("counterup-nums"),c.data("counterup-nums",null),c.data("counterup-func",null))}),setTimeout(c.data("counterup-func"),l.delay)},{offset:"100%",triggerOnce:!0})})},IsEmail:function(e){return!!/^([a-zA-Z0-9_\.\-\+])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/.test(e)},general:function(){b(".wow").each(function(){var e=b(this).data("animationduration");void 0!==e&&b(this).css({"-webkit-animation-duration":e+"s","animation-duration":e+"s"})});var e=b('.magee-shortcode[data-toggle="tooltip"]');e.length&&e.tooltip();e=b(".magee-popover");e.length&&e.popover();e=b("a[rel^='prettyPhoto']");e.length&&e.prettyPhoto()},heading:function(){b(".magee-heading").each(function(){magee_heading=b(this),"yes"==magee_heading.data("responsive")&&b(t).width()<1200&&(newPercentage=b(t).width()/1200*100+"%",b(this).find(".heading-inner").css({"font-size":newPercentage}))})},mgmodal:function(e,t){var a=e;""===(t=b.extend({title:"",message:"",close_icon:"",type:"effect-1",id:""},t)).type&&(t.type="effect-1"),""===t.close_icon&&(t.close_icon="yes"),a.wrap('<div class="ms-modal-wrapper"></div>'),a.after('<div class="magee-modal-wrapper" id="'+t.id+'"></div>');var i=a.parent(".ms-modal-wrapper").find(".magee-modal-wrapper");i.append('<div class="magee-modal magee-modal-'+t.type+'"></div><div class="magee-modal-overlay"></div>');var o=i.find(".magee-modal");o.append('<div class="magee-modal-content-wrapper"><div class="magee-modal-title-wrapper"></div><div class="magee-modal-content"></div></div>');e=i.find(".magee-modal-title-wrapper");"yes"===t.close_icon?e.append("<h3>"+t.title+'<a href="javascript:void(0);" class="magee-modal-close"><i class="fa fa-remove"></i></a></h3>'):e.append("<h3>"+t.title+"</h3>"),i.find(".magee-modal-content").append(t.message),i.find("a.magee-modal-close").on("click",function(e){e.preventDefault(),o.removeClass("magee-modal-show")}),i.find(".magee-modal-overlay").on("click",function(){o.removeClass("magee-modal-show")}),a.on("click",function(){o.addClass("magee-modal-show")})},animation:function(){b(".magee-shortcode[data-animation]").mouseover(function(){var e=b(this).attr("data-animation");b(this).addClass("animated").addClass(e)}),b(".magee-shortcode[data-animation]").mouseout(function(){var e=b(this).attr("data-animation");b(this).removeClass("animated").removeClass(e)}),b(".magee-animated").length&&b(".magee-animated").each(function(){("yes"===b(this).data("imageanimation")?b(this).find("img,i.fa"):b(this)).css("visibility","hidden"),$this=b(this),b().waypoint&&$this.waypoint(function(e,t){$this.css("visibility","visible"),$this.find("img,i.fa").css("visibility","visible");var a=$this.data("animationtype"),i=$this.data("animationduration");"yes"===$this.data("imageanimation")?($this.find("img,i.fa").addClass("animated "+a),i&&($this.find("img,i.fa").css("-moz-animation-duration",i+"s"),$this.find("img,i.fa").css("-webkit-animation-duration",i+"s"),$this.find("img,i.fa").css("-ms-animation-duration",i+"s"),$this.find("img,i.fa").css("-o-animation-duration",i+"s"),$this.find("img,i.fa").css("animation-duration",i+"s"))):($this.addClass("animated "+a),i&&($this.css("-moz-animation-duration",i+"s"),$this.css("-webkit-animation-duration",i+"s"),$this.css("-ms-animation-duration",i+"s"),$this.css("-o-animation-duration",i+"s"),$this.css("animation-duration",i+"s")))},{triggerOnce:!0,offset:"90%"})})},shortcodeAccordion:function(){var e=b(".magee-accordion");e.length&&e.find(".panel-heading").on("click",function(e){e.stopPropagation();var t=b(this).parents(".magee-accordion"),a=b(this).find("a.accordion-toggle"),i=a.attr("aria-controls"),e=b(this).parents(".magee-accordion").attr("aria-multiselectable"),i=b("#"+i);return i.slideToggle("fade"),a.hasClass("collapsed")?a.removeClass("collapsed"):a.addClass("collapsed"),console.log(e),"yes"!==e&&"1"!==e&&(t.find(".panel-collapse").not(i).slideUp("fast"),t.find(".accordion-toggle").not(a).addClass("collapsed")),!1})},shortcodeAlert:function(e){var t=b(".magee-alert");t.length&&t.find(".close").each(function(){b(this).click(function(e){e.preventDefault(),b(this).parent(".magee-alert").remove()})})},shortcodeAudioplayer:function(){var e=b(".ms-audio");e.length&&e.each(function(){b(this).audioPlayer({classPrefix:"audioplayer",strPlay:"Play",strPause:"Pause",strVolume:"Volume",strControls:b(this).data("controls"),strStyle:b(this).data("style")})})},shortcodeContact:function(){b("form.magee-contact-form #submit").click(function(e){e.preventDefault();var t=b(this).parents(".magee-contact-form");t.find(".contact-failed").text("");var a=t.find("input#receiver").val(),o=t.find("input#email").val(),n=t.find("input#name").val(),s=t.find("input#subject").val(),d=t.find("textarea#message").val(),c=t.find("input#country").val()?t.find("input#country").val():"0",l=t.find("input#city").val()?t.find("input#city").val():"0",r=t.find("input#telephone").val()?t.find("input#telephone").val():"0",h=t.find("input#company").val()?t.find("input#company").val():"0",f=t.find("input#website").val()?t.find("input#website").val():"0",m="checked"==t.find("input#checkboxWarning").attr("checked")?"yes":"no",u=t.find("input#terms").val(),e=t.find("input#required_fields").val(),g=e.split(","),p="",v="";for(i=0;i<g.length;i++)if((v=b.trim(g[i]))&&0<t.find("#"+v).length){if(""===t.find("#"+v).val())return p+=v,t.find(".contact-failed").addClass("notice-error"),t.find(".contact-failed").html(v.substring(0,1).toUpperCase()+v.substring(1)+magee_params.required),!1;p+=""}return""==p&&(t.find(".contact-failed").removeClass("notice-error"),t.find(".contact-failed").append("<img alt='loading' class='loading' src='"+magee_params.themeurl+"/images/AjaxLoader.gif' />"),b.ajax({type:"POST",dataType:"json",url:magee_params.ajaxurl,data:{name:n,email:o,subject:s,receiver:a,message:d,terms:u,checkboxWarning:m,required_fields:e,country:c,city:l,telephone:r,company:h,website:f,action:"magee_contact"},success:function(e){return 0==e.error?(t.find(".contact-failed").addClass("notice-success"),t.find(".contact-failed").html(e.msg),b(".loading").remove(),t[0].reset()):(t.find(".contact-failed").removeClass("notice-success"),t.find(".contact-failed").html(e.msg)),!1},error:function(){return t.find(".contact-failed").html("Error."),t.find(".loading").remove(),!1}})),!1})},shortcodeCountdown:function(){var e=b(".magee-countdown-circle-type");e.length&&e.each(function(){el=b(this),el.ClassyCountdown({end:el.data("endtime"),now:el.data("nowtime"),labels:!0,labelsOptions:{lang:{days:el.data("day_field_text"),hours:el.data("hours_field_text"),minutes:el.data("minutes_field_text"),seconds:el.data("seconds_field_text")}},style:{element:"",textResponsive:.5,days:{gauge:{thickness:.03,bgColor:"rgba(255,255,255,0.05)",fgColor:el.data("circle_type_day_color")},textCSS:"font-family:"+el.data("google_fonts")+";font-weight:300; color:"+el.data("fontcolor")+";"},hours:{gauge:{thickness:.03,bgColor:"rgba(255,255,255,0.05)",fgColor:el.data("circle_type_hours_color")},textCSS:"font-family:"+el.data("google_fonts")+";font-weight:300; color:"+el.data("fontcolor")+";"},minutes:{gauge:{thickness:.03,bgColor:"rgba(255,255,255,0.05)",fgColor:el.data("circle_type_minutes_color")},textCSS:"font-family:"+el.data("google_fonts")+";font-weight:300; color:"+el.data("fontcolor")+";"},seconds:{gauge:{thickness:.03,bgColor:"rgba(255,255,255,0.05)",fgColor:el.data("circle_type_seconds_color")},textCSS:"font-family:"+el.data("google_fonts")+";font-weight:300; color:"+el.data("fontcolor")+";"}},onEndCallback:function(){el.remove()}})})},shortcodeCounter:function(){b(".magee-counter-box").length&&b(".magee-counter-box").waypoint(function(e){var t=b(this.element).attr("class");"down"!==e||b(this.element).hasClass("animated")||(setTimeout(function(){b("."+t.replace(" ",".")).find(".js-counter").countTo({formatter:function(e,t){return e.toFixed(t.decimals)}})},200),b(this.element).addClass("animated"))},{offset:"75%"})},shortcodeCarousel:function(){b(".magee-carousel").length&&b(".magee-carousel").each(function(){var e=b(this),t=e.data("columns"),a=0<t-2?t-2:t,i=1<t?10:0;e.find(".owl-carousel").owlCarousel({loop:!0,margin:i,autoplay:"yes"==e.data("autoplay"),autoplayTimeout:e.data("autoplaytimeout"),autoplayHoverPause:!0,items:t,responsiveClass:!0,responsive:{0:{items:1,nav:!1},600:{items:a,nav:"yes"==e.data("display-nav")?"true":"false"},1e3:{items:t,nav:"yes"==e.data("display-nav")?"true":"false"}}}),e.find(".carousel-next").click(function(){e.find(".owl-carousel").trigger("next.owl.carousel")}),e.find(".carousel-prev").click(function(){e.find(".owl-carousel").trigger("prev.owl.carousel")}),e.find(".owl-controls").addClass(e.data("pag-style"))}),b(".multi-carousel").length&&this.DY_scroll(".multi-carousel",".multi-carousel-nav-prev",".multi-carousel-nav-next",".multi-carousel-inner",3,!1)},shortcodeDailymotion:function(){var e=b(".magee-dailymotion");e.length&&e.each(function(){dail=b(this),("100%"==dail.data("width")||""==dail.data("width")&&"100%"==dail.data("height")||""==dail.data("height"))&&(width=dail.width(),iframewidth=dail.find("iframe").eq(0).width(),iframeheight=dail.find("iframe").eq(0).height(),op=iframeheight/iframewidth,dail.find("iframe").eq(0).width(width-100),dail.find("iframe").eq(0).height(op*(width-100)))})},shortcodeDocumentviewer:function(){b(".magee-document").length&&b(".magee-document").each(function(){doc=b(this),"yes"==doc.data("responsive")&&(width=doc.width(),width<doc.data("width")&&(op=doc.data("height")/doc.data("width"),doc.find("iframe").eq(0).width(width),doc.find("iframe").eq(0).height(op*width)))})},shortcodeExpand:function(){var e=b(".magee-expand");e.length&&e.each(function(){var t,a;expand=b(this),less_icon=expand.data("less-icon"),less_icon_color=expand.data("less-icon-color"),more_icon=expand.data("more-icon"),more_icon_color=expand.data("more-icon-color"),t=0<=less_icon.indexOf("fa-")?'<i class="fa '+less_icon+'" style="color:'+less_icon_color+';"></i> '+expand.data("less-text"):'<img src="'+less_icon+'" class="image-instead"/>'+expand.data("less-text"),a=0<=more_icon.indexOf("fa-")?'<i class="fa '+more_icon+'" style="color:'+more_icon_color+';"></i> '+expand.data("more-text"):'<img src="'+more_icon+'" class="image-instead"/>'+expand.data("more-text"),expand.find(".expand-control").click(function(){var e=b(this);e.parent(".magee-expand").find(".expand-content").slideToggle(500,function(){e.siblings(".expand-content").is(":visible")?e.html(t):e.html(a)})})})},shortcodeFeature:function(){var e=b(".magee-feature-box");if(e.length)for(i=0;i<e.length;i++){var t=b(e[i]).find(".icon-box").outerWidth();b(e[i]).find("img.feature-box-icon").length&&(t=b(e[i]).find("img.feature-box-icon").outerWidth()),t+=15,b(e[i]).hasClass("style2")&&b(e[i]).hasClass("reverse")?b(e[i]).css({"padding-left":0,"padding-right":t+"px"}):b(e[i]).hasClass("style2")?b(e[i]).css({"padding-left":t+"px"}):b(this).hasClass("style3")?(t-=15,b(e[i]).find("h3").css({"line-height":t+"px"})):b(e[i]).hasClass("style4")&&(t1=-(t/=2),t+="px",t1+="px",b(e[i]).css({"padding-top":t,"margin-top":t}),b(e[i]).find(".icon-box").css({top:t1,"margin-left":t1}),b(e[i]).find("img.feature-box-icon").css({top:t1,"margin-left":t1}))}},shortcodeFlipbox:function(){var e=b(".magee-flipbox-wrap");e.length&&e.each(function(){var e=b(this).find(".flipbox-front").outerHeight(),t=b(this).find(".flipbox-back").outerHeight(),t=t<e?e:t;b(this).css({height:t});t=b(this);t.bind("touchstart",function(){var e=b(this).data("direction");switch(e){case"horizontal":case"vertical":case"slide-left":case"slide-right":case"slide-top":case"slide-bottom":b(this).find(".flipbox-front").addClass(e+"-touchstart-front").removeClass(e+"-touchend-front"),b(this).find(".flipbox-back").addClass(e+"-touchstart-back").removeClass(e+"-touchend-back");break;case"flip-bottom":case"flip-top":case"flip-right":case"flip-left":b(this).find(".flipbox-back").addClass(e+"-touchstart-back").removeClass(e+"-touchend-back")}}),t.bind("touchend",function(){var e=b(this).data("direction");switch(e){case"horizontal":case"vertical":b(this).find(".flipbox-front").addClass(e+"-touchend-front").removeClass(e+"-touchstart-front"),b(this).find(".flipbox-back").addClass(e+"-touchend-back").removeClass(e+"-touchstart-back");break;case"slide-left":case"slide-right":case"slide-top":case"slide-bottom":b(this).find(".flipbox-front").removeClass(e+"-touchstart-front").addClass(e+"-touchend-front"),b(this).find(".flipbox-back").removeClass(e+"-touchstart-back").addClass(e+"-touchend-back");break;case"flip-bottom":case"flip-top":case"flip-right":case"flip-left":b(this).find(".flipbox-back").removeClass(e+"-touchstart-back").addClass(e+"-touchend-back")}})})},shortcodeImagecompare:function(){b(".magee-image-compare").length&&b(".magee-image-compare").each(function(){b(this).twentytwenty({default_offset_pct:b(this).data("pct"),orientation:b(this).data("orientation"),before_label:b(this).data("before_label"),after_label:b(this).data("after_label"),click_to_move:!0})})},shortcodeModaltrigger:function(){var e=b(".magee-modal-trigger"),t=this;e.length&&e.each(function(){var e=b(this);t.mgmodal(e,{title:e.data("title"),message:e.data("content"),close_icon:e.data("close_icon"),type:e.data("effect"),id:e.data("id")})})},shortcodePiechart:function(){b(".magee-chart-box").length&&b(".magee-chart-box").each(function(){piechart=b(this),piechart.easyPieChart({barColor:piechart.data("barcolor"),trackColor:piechart.data("trackcolor"),scaleColor:!1,lineWidth:10,trackWidth:10,size:piechart.data("size"),lineCap:piechart.data("linecap")})})},shortcodeVimeo:function(){var e=b(".magee-vimeo-video");e.length&&e.each(function(){magee_vimeo=b(this),("100%"==magee_vimeo.data("width")||"100%"==magee_vimeo.data("height")&&""==magee_vimeo.data("width")||""==magee_vimeo.data("height"))&&(divwidth=magee_vimeo.width(),width=magee_vimeo.find("iframe.magee-vimeo").width(),height=magee_vimeo.find("iframe.magee-vimeo").height(),op=height/width,magee_vimeo.find("iframe.magee-vimeo").width(divwidth-100),magee_vimeo.find("iframe.magee-vimeo").height(op*divwidth-100))})}}),b.fn.MageeShortcodes=function(){return new e},b(function(){(new e).init()})}(window.jQuery,window,document);
|
assets/twentytwenty/css/foundation.css
ADDED
@@ -0,0 +1,473 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
*,
|
2 |
+
*:before,
|
3 |
+
*:after {
|
4 |
+
-moz-box-sizing: border-box;
|
5 |
+
-webkit-box-sizing: border-box;
|
6 |
+
box-sizing: border-box; }
|
7 |
+
|
8 |
+
html,
|
9 |
+
body {
|
10 |
+
font-size: 100%; }
|
11 |
+
|
12 |
+
body {
|
13 |
+
background: white;
|
14 |
+
color: #222222;
|
15 |
+
padding: 0;
|
16 |
+
margin: 0;
|
17 |
+
font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
|
18 |
+
font-weight: normal;
|
19 |
+
font-style: normal;
|
20 |
+
line-height: 1;
|
21 |
+
position: relative;
|
22 |
+
cursor: default; }
|
23 |
+
|
24 |
+
a:hover {
|
25 |
+
cursor: pointer; }
|
26 |
+
|
27 |
+
a:focus {
|
28 |
+
outline: none; }
|
29 |
+
|
30 |
+
img,
|
31 |
+
object,
|
32 |
+
embed {
|
33 |
+
max-width: 100%;
|
34 |
+
height: auto; }
|
35 |
+
|
36 |
+
object,
|
37 |
+
embed {
|
38 |
+
height: 100%; }
|
39 |
+
|
40 |
+
img {
|
41 |
+
-ms-interpolation-mode: bicubic; }
|
42 |
+
|
43 |
+
#map_canvas img,
|
44 |
+
#map_canvas embed,
|
45 |
+
#map_canvas object,
|
46 |
+
.map_canvas img,
|
47 |
+
.map_canvas embed,
|
48 |
+
.map_canvas object {
|
49 |
+
max-width: none !important; }
|
50 |
+
|
51 |
+
.left {
|
52 |
+
float: left !important; }
|
53 |
+
|
54 |
+
.right {
|
55 |
+
float: right !important; }
|
56 |
+
|
57 |
+
.text-left {
|
58 |
+
text-align: left !important; }
|
59 |
+
|
60 |
+
.text-right {
|
61 |
+
text-align: right !important; }
|
62 |
+
|
63 |
+
.text-center {
|
64 |
+
text-align: center !important; }
|
65 |
+
|
66 |
+
.text-justify {
|
67 |
+
text-align: justify !important; }
|
68 |
+
|
69 |
+
.hide {
|
70 |
+
display: none; }
|
71 |
+
|
72 |
+
.antialiased {
|
73 |
+
-webkit-font-smoothing: antialiased; }
|
74 |
+
|
75 |
+
img {
|
76 |
+
display: inline-block;
|
77 |
+
vertical-align: middle; }
|
78 |
+
|
79 |
+
textarea {
|
80 |
+
height: auto;
|
81 |
+
min-height: 50px; }
|
82 |
+
|
83 |
+
select {
|
84 |
+
width: 100%; }
|
85 |
+
|
86 |
+
/* Grid HTML Classes */
|
87 |
+
.row {
|
88 |
+
width: 100%;
|
89 |
+
margin-left: auto;
|
90 |
+
margin-right: auto;
|
91 |
+
margin-top: 0;
|
92 |
+
margin-bottom: 0;
|
93 |
+
max-width: 62.5em;
|
94 |
+
*zoom: 1; }
|
95 |
+
.row:before, .row:after {
|
96 |
+
content: " ";
|
97 |
+
display: table; }
|
98 |
+
.row:after {
|
99 |
+
clear: both; }
|
100 |
+
.row.collapse .column,
|
101 |
+
.row.collapse .columns {
|
102 |
+
position: relative;
|
103 |
+
padding-left: 0;
|
104 |
+
padding-right: 0;
|
105 |
+
float: left; }
|
106 |
+
.row .row {
|
107 |
+
width: auto;
|
108 |
+
margin-left: -0.9375em;
|
109 |
+
margin-right: -0.9375em;
|
110 |
+
margin-top: 0;
|
111 |
+
margin-bottom: 0;
|
112 |
+
max-width: none;
|
113 |
+
*zoom: 1; }
|
114 |
+
.row .row:before, .row .row:after {
|
115 |
+
content: " ";
|
116 |
+
display: table; }
|
117 |
+
.row .row:after {
|
118 |
+
clear: both; }
|
119 |
+
.row .row.collapse {
|
120 |
+
width: auto;
|
121 |
+
margin: 0;
|
122 |
+
max-width: none;
|
123 |
+
*zoom: 1; }
|
124 |
+
.row .row.collapse:before, .row .row.collapse:after {
|
125 |
+
content: " ";
|
126 |
+
display: table; }
|
127 |
+
.row .row.collapse:after {
|
128 |
+
clear: both; }
|
129 |
+
|
130 |
+
.column,
|
131 |
+
.columns {
|
132 |
+
position: relative;
|
133 |
+
padding-left: 0.9375em;
|
134 |
+
padding-right: 0.9375em;
|
135 |
+
width: 100%;
|
136 |
+
float: left; }
|
137 |
+
|
138 |
+
@media only screen {
|
139 |
+
.column,
|
140 |
+
.columns {
|
141 |
+
position: relative;
|
142 |
+
padding-left: 0.9375em;
|
143 |
+
padding-right: 0.9375em;
|
144 |
+
float: left; }
|
145 |
+
|
146 |
+
.small-1 {
|
147 |
+
position: relative;
|
148 |
+
width: 8.33333%; }
|
149 |
+
|
150 |
+
.small-2 {
|
151 |
+
position: relative;
|
152 |
+
width: 16.66667%; }
|
153 |
+
|
154 |
+
.small-3 {
|
155 |
+
position: relative;
|
156 |
+
width: 25%; }
|
157 |
+
|
158 |
+
.small-4 {
|
159 |
+
position: relative;
|
160 |
+
width: 33.33333%; }
|
161 |
+
|
162 |
+
.small-5 {
|
163 |
+
position: relative;
|
164 |
+
width: 41.66667%; }
|
165 |
+
|
166 |
+
.small-6 {
|
167 |
+
position: relative;
|
168 |
+
width: 50%; }
|
169 |
+
|
170 |
+
.small-7 {
|
171 |
+
position: relative;
|
172 |
+
width: 58.33333%; }
|
173 |
+
|
174 |
+
.small-8 {
|
175 |
+
position: relative;
|
176 |
+
width: 66.66667%; }
|
177 |
+
|
178 |
+
.small-9 {
|
179 |
+
position: relative;
|
180 |
+
width: 75%; }
|
181 |
+
|
182 |
+
.small-10 {
|
183 |
+
position: relative;
|
184 |
+
width: 83.33333%; }
|
185 |
+
|
186 |
+
.small-11 {
|
187 |
+
position: relative;
|
188 |
+
width: 91.66667%; }
|
189 |
+
|
190 |
+
.small-12 {
|
191 |
+
position: relative;
|
192 |
+
width: 100%; }
|
193 |
+
|
194 |
+
.small-offset-0 {
|
195 |
+
position: relative;
|
196 |
+
margin-left: 0%; }
|
197 |
+
|
198 |
+
.small-offset-1 {
|
199 |
+
position: relative;
|
200 |
+
margin-left: 8.33333%; }
|
201 |
+
|
202 |
+
.small-offset-2 {
|
203 |
+
position: relative;
|
204 |
+
margin-left: 16.66667%; }
|
205 |
+
|
206 |
+
.small-offset-3 {
|
207 |
+
position: relative;
|
208 |
+
margin-left: 25%; }
|
209 |
+
|
210 |
+
.small-offset-4 {
|
211 |
+
position: relative;
|
212 |
+
margin-left: 33.33333%; }
|
213 |
+
|
214 |
+
.small-offset-5 {
|
215 |
+
position: relative;
|
216 |
+
margin-left: 41.66667%; }
|
217 |
+
|
218 |
+
.small-offset-6 {
|
219 |
+
position: relative;
|
220 |
+
margin-left: 50%; }
|
221 |
+
|
222 |
+
.small-offset-7 {
|
223 |
+
position: relative;
|
224 |
+
margin-left: 58.33333%; }
|
225 |
+
|
226 |
+
.small-offset-8 {
|
227 |
+
position: relative;
|
228 |
+
margin-left: 66.66667%; }
|
229 |
+
|
230 |
+
.small-offset-9 {
|
231 |
+
position: relative;
|
232 |
+
margin-left: 75%; }
|
233 |
+
|
234 |
+
.small-offset-10 {
|
235 |
+
position: relative;
|
236 |
+
margin-left: 83.33333%; }
|
237 |
+
|
238 |
+
[class*="column"] + [class*="column"]:last-child {
|
239 |
+
float: right; }
|
240 |
+
|
241 |
+
[class*="column"] + [class*="column"].end {
|
242 |
+
float: left; }
|
243 |
+
|
244 |
+
.column.small-centered,
|
245 |
+
.columns.small-centered {
|
246 |
+
position: relative;
|
247 |
+
margin-left: auto;
|
248 |
+
margin-right: auto;
|
249 |
+
float: none !important; } }
|
250 |
+
/* Styles for screens that are atleast 768px; */
|
251 |
+
@media only screen and (min-width: 768px) {
|
252 |
+
.large-1 {
|
253 |
+
position: relative;
|
254 |
+
width: 8.33333%; }
|
255 |
+
|
256 |
+
.large-2 {
|
257 |
+
position: relative;
|
258 |
+
width: 16.66667%; }
|
259 |
+
|
260 |
+
.large-3 {
|
261 |
+
position: relative;
|
262 |
+
width: 25%; }
|
263 |
+
|
264 |
+
.large-4 {
|
265 |
+
position: relative;
|
266 |
+
width: 33.33333%; }
|
267 |
+
|
268 |
+
.large-5 {
|
269 |
+
position: relative;
|
270 |
+
width: 41.66667%; }
|
271 |
+
|
272 |
+
.large-6 {
|
273 |
+
position: relative;
|
274 |
+
width: 50%; }
|
275 |
+
|
276 |
+
.large-7 {
|
277 |
+
position: relative;
|
278 |
+
width: 58.33333%; }
|
279 |
+
|
280 |
+
.large-8 {
|
281 |
+
position: relative;
|
282 |
+
width: 66.66667%; }
|
283 |
+
|
284 |
+
.large-9 {
|
285 |
+
position: relative;
|
286 |
+
width: 75%; }
|
287 |
+
|
288 |
+
.large-10 {
|
289 |
+
position: relative;
|
290 |
+
width: 83.33333%; }
|
291 |
+
|
292 |
+
.large-11 {
|
293 |
+
position: relative;
|
294 |
+
width: 91.66667%; }
|
295 |
+
|
296 |
+
.large-12 {
|
297 |
+
position: relative;
|
298 |
+
width: 100%; }
|
299 |
+
|
300 |
+
.row .large-offset-0 {
|
301 |
+
position: relative;
|
302 |
+
margin-left: 0%; }
|
303 |
+
|
304 |
+
.row .large-offset-1 {
|
305 |
+
position: relative;
|
306 |
+
margin-left: 8.33333%; }
|
307 |
+
|
308 |
+
.row .large-offset-2 {
|
309 |
+
position: relative;
|
310 |
+
margin-left: 16.66667%; }
|
311 |
+
|
312 |
+
.row .large-offset-3 {
|
313 |
+
position: relative;
|
314 |
+
margin-left: 25%; }
|
315 |
+
|
316 |
+
.row .large-offset-4 {
|
317 |
+
position: relative;
|
318 |
+
margin-left: 33.33333%; }
|
319 |
+
|
320 |
+
.row .large-offset-5 {
|
321 |
+
position: relative;
|
322 |
+
margin-left: 41.66667%; }
|
323 |
+
|
324 |
+
.row .large-offset-6 {
|
325 |
+
position: relative;
|
326 |
+
margin-left: 50%; }
|
327 |
+
|
328 |
+
.row .large-offset-7 {
|
329 |
+
position: relative;
|
330 |
+
margin-left: 58.33333%; }
|
331 |
+
|
332 |
+
.row .large-offset-8 {
|
333 |
+
position: relative;
|
334 |
+
margin-left: 66.66667%; }
|
335 |
+
|
336 |
+
.row .large-offset-9 {
|
337 |
+
position: relative;
|
338 |
+
margin-left: 75%; }
|
339 |
+
|
340 |
+
.row .large-offset-10 {
|
341 |
+
position: relative;
|
342 |
+
margin-left: 83.33333%; }
|
343 |
+
|
344 |
+
.row .large-offset-11 {
|
345 |
+
position: relative;
|
346 |
+
margin-left: 91.66667%; }
|
347 |
+
|
348 |
+
.push-1 {
|
349 |
+
position: relative;
|
350 |
+
left: 8.33333%;
|
351 |
+
right: auto; }
|
352 |
+
|
353 |
+
.pull-1 {
|
354 |
+
position: relative;
|
355 |
+
right: 8.33333%;
|
356 |
+
left: auto; }
|
357 |
+
|
358 |
+
.push-2 {
|
359 |
+
position: relative;
|
360 |
+
left: 16.66667%;
|
361 |
+
right: auto; }
|
362 |
+
|
363 |
+
.pull-2 {
|
364 |
+
position: relative;
|
365 |
+
right: 16.66667%;
|
366 |
+
left: auto; }
|
367 |
+
|
368 |
+
.push-3 {
|
369 |
+
position: relative;
|
370 |
+
left: 25%;
|
371 |
+
right: auto; }
|
372 |
+
|
373 |
+
.pull-3 {
|
374 |
+
position: relative;
|
375 |
+
right: 25%;
|
376 |
+
left: auto; }
|
377 |
+
|
378 |
+
.push-4 {
|
379 |
+
position: relative;
|
380 |
+
left: 33.33333%;
|
381 |
+
right: auto; }
|
382 |
+
|
383 |
+
.pull-4 {
|
384 |
+
position: relative;
|
385 |
+
right: 33.33333%;
|
386 |
+
left: auto; }
|
387 |
+
|
388 |
+
.push-5 {
|
389 |
+
position: relative;
|
390 |
+
left: 41.66667%;
|
391 |
+
right: auto; }
|
392 |
+
|
393 |
+
.pull-5 {
|
394 |
+
position: relative;
|
395 |
+
right: 41.66667%;
|
396 |
+
left: auto; }
|
397 |
+
|
398 |
+
.push-6 {
|
399 |
+
position: relative;
|
400 |
+
left: 50%;
|
401 |
+
right: auto; }
|
402 |
+
|
403 |
+
.pull-6 {
|
404 |
+
position: relative;
|
405 |
+
right: 50%;
|
406 |
+
left: auto; }
|
407 |
+
|
408 |
+
.push-7 {
|
409 |
+
position: relative;
|
410 |
+
left: 58.33333%;
|
411 |
+
right: auto; }
|
412 |
+
|
413 |
+
.pull-7 {
|
414 |
+
position: relative;
|
415 |
+
right: 58.33333%;
|
416 |
+
left: auto; }
|
417 |
+
|
418 |
+
.push-8 {
|
419 |
+
position: relative;
|
420 |
+
left: 66.66667%;
|
421 |
+
right: auto; }
|
422 |
+
|
423 |
+
.pull-8 {
|
424 |
+
position: relative;
|
425 |
+
right: 66.66667%;
|
426 |
+
left: auto; }
|
427 |
+
|
428 |
+
.push-9 {
|
429 |
+
position: relative;
|
430 |
+
left: 75%;
|
431 |
+
right: auto; }
|
432 |
+
|
433 |
+
.pull-9 {
|
434 |
+
position: relative;
|
435 |
+
right: 75%;
|
436 |
+
left: auto; }
|
437 |
+
|
438 |
+
.push-10 {
|
439 |
+
position: relative;
|
440 |
+
left: 83.33333%;
|
441 |
+
right: auto; }
|
442 |
+
|
443 |
+
.pull-10 {
|
444 |
+
position: relative;
|
445 |
+
right: 83.33333%;
|
446 |
+
left: auto; }
|
447 |
+
|
448 |
+
.push-11 {
|
449 |
+
position: relative;
|
450 |
+
left: 91.66667%;
|
451 |
+
right: auto; }
|
452 |
+
|
453 |
+
.pull-11 {
|
454 |
+
position: relative;
|
455 |
+
right: 91.66667%;
|
456 |
+
left: auto; }
|
457 |
+
|
458 |
+
.column.large-centered,
|
459 |
+
.columns.large-centered {
|
460 |
+
position: relative;
|
461 |
+
margin-left: auto;
|
462 |
+
margin-right: auto;
|
463 |
+
float: none !important; }
|
464 |
+
|
465 |
+
.column.large-uncentered,
|
466 |
+
.columns.large-uncentered {
|
467 |
+
margin-left: 0;
|
468 |
+
margin-right: 0;
|
469 |
+
float: left !important; }
|
470 |
+
|
471 |
+
.column.large-uncentered.opposite,
|
472 |
+
.columns.large-uncentered.opposite {
|
473 |
+
float: right !important; } }
|
assets/twentytwenty/css/twentytwenty-no-compass.css
ADDED
@@ -0,0 +1,182 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
.twentytwenty-horizontal .twentytwenty-handle:before, .twentytwenty-horizontal .twentytwenty-handle:after, .twentytwenty-vertical .twentytwenty-handle:before, .twentytwenty-vertical .twentytwenty-handle:after {
|
2 |
+
content: " ";
|
3 |
+
display: block;
|
4 |
+
background: #fff;
|
5 |
+
position: absolute;
|
6 |
+
z-index: 30; }
|
7 |
+
|
8 |
+
.twentytwenty-horizontal .twentytwenty-handle:before, .twentytwenty-horizontal .twentytwenty-handle:after {
|
9 |
+
width: 3px;
|
10 |
+
height: 9999px;
|
11 |
+
left: 50%;
|
12 |
+
margin-left: -1.5px; }
|
13 |
+
|
14 |
+
.twentytwenty-vertical .twentytwenty-handle:before, .twentytwenty-vertical .twentytwenty-handle:after {
|
15 |
+
width: 9999px;
|
16 |
+
height: 3px;
|
17 |
+
top: 50%;
|
18 |
+
margin-top: -1.5px; }
|
19 |
+
|
20 |
+
.twentytwenty-before-label, .twentytwenty-after-label, .twentytwenty-overlay {
|
21 |
+
position: absolute;
|
22 |
+
top: 0;
|
23 |
+
width: 100%;
|
24 |
+
height: 100%; }
|
25 |
+
|
26 |
+
.twentytwenty-before-label, .twentytwenty-after-label, .twentytwenty-overlay {
|
27 |
+
transition-duration: 0.5s; }
|
28 |
+
|
29 |
+
.twentytwenty-before-label, .twentytwenty-after-label {
|
30 |
+
transition-property: opacity; }
|
31 |
+
|
32 |
+
.twentytwenty-before-label:before, .twentytwenty-after-label:before {
|
33 |
+
color: #fff;
|
34 |
+
font-size: 13px;
|
35 |
+
letter-spacing: 0.1em; }
|
36 |
+
|
37 |
+
.twentytwenty-before-label:before, .twentytwenty-after-label:before {
|
38 |
+
position: absolute;
|
39 |
+
background: rgba(255, 255, 255, 0.2);
|
40 |
+
line-height: 38px;
|
41 |
+
padding: 0 20px;
|
42 |
+
border-radius: 2px; }
|
43 |
+
|
44 |
+
.twentytwenty-horizontal .twentytwenty-before-label:before, .twentytwenty-horizontal .twentytwenty-after-label:before {
|
45 |
+
top: 50%;
|
46 |
+
margin-top: -19px; }
|
47 |
+
|
48 |
+
.twentytwenty-vertical .twentytwenty-before-label:before, .twentytwenty-vertical .twentytwenty-after-label:before {
|
49 |
+
left: 50%;
|
50 |
+
margin-left: -45px;
|
51 |
+
text-align: center;
|
52 |
+
width: 90px; }
|
53 |
+
|
54 |
+
.twentytwenty-left-arrow, .twentytwenty-right-arrow, .twentytwenty-up-arrow, .twentytwenty-down-arrow {
|
55 |
+
width: 0;
|
56 |
+
height: 0;
|
57 |
+
border: 6px inset transparent;
|
58 |
+
position: absolute; }
|
59 |
+
|
60 |
+
.twentytwenty-left-arrow, .twentytwenty-right-arrow {
|
61 |
+
top: 50%;
|
62 |
+
margin-top: -6px; }
|
63 |
+
|
64 |
+
.twentytwenty-up-arrow, .twentytwenty-down-arrow {
|
65 |
+
left: 50%;
|
66 |
+
margin-left: -6px; }
|
67 |
+
|
68 |
+
.twentytwenty-container {
|
69 |
+
box-sizing: content-box;
|
70 |
+
z-index: 0;
|
71 |
+
overflow: hidden;
|
72 |
+
position: relative;
|
73 |
+
-webkit-user-select: none;
|
74 |
+
-moz-user-select: none; }
|
75 |
+
.twentytwenty-container img {
|
76 |
+
max-width: 100%;
|
77 |
+
position: absolute;
|
78 |
+
top: 0;
|
79 |
+
display: block; }
|
80 |
+
.twentytwenty-container.active .twentytwenty-overlay,
|
81 |
+
.twentytwenty-container.active :hover.twentytwenty-overlay {
|
82 |
+
background: transparent; }
|
83 |
+
.twentytwenty-container.active .twentytwenty-overlay .twentytwenty-before-label,
|
84 |
+
.twentytwenty-container.active .twentytwenty-overlay .twentytwenty-after-label,
|
85 |
+
.twentytwenty-container.active :hover.twentytwenty-overlay .twentytwenty-before-label,
|
86 |
+
.twentytwenty-container.active :hover.twentytwenty-overlay .twentytwenty-after-label {
|
87 |
+
opacity: 0; }
|
88 |
+
.twentytwenty-container * {
|
89 |
+
box-sizing: content-box; }
|
90 |
+
|
91 |
+
.twentytwenty-before-label {
|
92 |
+
opacity: 0; }
|
93 |
+
.twentytwenty-before-label:before {
|
94 |
+
content: attr(data-content); }
|
95 |
+
|
96 |
+
.twentytwenty-after-label {
|
97 |
+
opacity: 0; }
|
98 |
+
.twentytwenty-after-label:before {
|
99 |
+
content: attr(data-content); }
|
100 |
+
|
101 |
+
.twentytwenty-horizontal .twentytwenty-before-label:before {
|
102 |
+
left: 10px; }
|
103 |
+
|
104 |
+
.twentytwenty-horizontal .twentytwenty-after-label:before {
|
105 |
+
right: 10px; }
|
106 |
+
|
107 |
+
.twentytwenty-vertical .twentytwenty-before-label:before {
|
108 |
+
top: 10px; }
|
109 |
+
|
110 |
+
.twentytwenty-vertical .twentytwenty-after-label:before {
|
111 |
+
bottom: 10px; }
|
112 |
+
|
113 |
+
.twentytwenty-overlay {
|
114 |
+
transition-property: background;
|
115 |
+
background: transparent;
|
116 |
+
z-index: 25; }
|
117 |
+
.twentytwenty-overlay:hover {
|
118 |
+
background: rgba(0, 0, 0, 0.5); }
|
119 |
+
.twentytwenty-overlay:hover .twentytwenty-after-label {
|
120 |
+
opacity: 1; }
|
121 |
+
.twentytwenty-overlay:hover .twentytwenty-before-label {
|
122 |
+
opacity: 1; }
|
123 |
+
|
124 |
+
.twentytwenty-before {
|
125 |
+
z-index: 20; }
|
126 |
+
|
127 |
+
.twentytwenty-after {
|
128 |
+
z-index: 10; }
|
129 |
+
|
130 |
+
.twentytwenty-handle {
|
131 |
+
height: 38px;
|
132 |
+
width: 38px;
|
133 |
+
position: absolute;
|
134 |
+
left: 50%;
|
135 |
+
top: 50%;
|
136 |
+
margin-left: -22px;
|
137 |
+
margin-top: -22px;
|
138 |
+
border: 3px solid #fff;
|
139 |
+
border-radius: 1000px;
|
140 |
+
box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
|
141 |
+
z-index: 40;
|
142 |
+
cursor: pointer; }
|
143 |
+
|
144 |
+
.twentytwenty-horizontal .twentytwenty-handle:before {
|
145 |
+
bottom: 50%;
|
146 |
+
margin-bottom: 22px;
|
147 |
+
box-shadow: 0 3px 0 #fff, 0px 0px 12px rgba(51, 51, 51, 0.5); }
|
148 |
+
|
149 |
+
.twentytwenty-horizontal .twentytwenty-handle:after {
|
150 |
+
top: 50%;
|
151 |
+
margin-top: 22px;
|
152 |
+
box-shadow: 0 -3px 0 #fff, 0px 0px 12px rgba(51, 51, 51, 0.5); }
|
153 |
+
|
154 |
+
.twentytwenty-vertical .twentytwenty-handle:before {
|
155 |
+
left: 50%;
|
156 |
+
margin-left: 22px;
|
157 |
+
box-shadow: 3px 0 0 #fff, 0px 0px 12px rgba(51, 51, 51, 0.5); }
|
158 |
+
|
159 |
+
.twentytwenty-vertical .twentytwenty-handle:after {
|
160 |
+
right: 50%;
|
161 |
+
margin-right: 22px;
|
162 |
+
box-shadow: -3px 0 0 #fff, 0px 0px 12px rgba(51, 51, 51, 0.5); }
|
163 |
+
|
164 |
+
.twentytwenty-left-arrow {
|
165 |
+
border-right: 6px solid #fff;
|
166 |
+
left: 50%;
|
167 |
+
margin-left: -17px; }
|
168 |
+
|
169 |
+
.twentytwenty-right-arrow {
|
170 |
+
border-left: 6px solid #fff;
|
171 |
+
right: 50%;
|
172 |
+
margin-right: -17px; }
|
173 |
+
|
174 |
+
.twentytwenty-up-arrow {
|
175 |
+
border-bottom: 6px solid #fff;
|
176 |
+
top: 50%;
|
177 |
+
margin-top: -17px; }
|
178 |
+
|
179 |
+
.twentytwenty-down-arrow {
|
180 |
+
border-top: 6px solid #fff;
|
181 |
+
bottom: 50%;
|
182 |
+
margin-bottom: -17px; }
|
assets/{css → twentytwenty/css}/twentytwenty.css
RENAMED
@@ -1,205 +1,206 @@
|
|
1 |
-
.twentytwenty-horizontal .twentytwenty-handle:before, .twentytwenty-horizontal .twentytwenty-handle:after, .twentytwenty-vertical .twentytwenty-handle:before, .twentytwenty-vertical .twentytwenty-handle:after {
|
2 |
-
content: " ";
|
3 |
-
display: block;
|
4 |
-
background: white;
|
5 |
-
position: absolute;
|
6 |
-
z-index: 30;
|
7 |
-
-webkit-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
|
8 |
-
-moz-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
|
9 |
-
box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5); }
|
10 |
-
|
11 |
-
.twentytwenty-horizontal .twentytwenty-handle:before, .twentytwenty-horizontal .twentytwenty-handle:after {
|
12 |
-
width: 3px;
|
13 |
-
height: 9999px;
|
14 |
-
left: 50%;
|
15 |
-
margin-left: -1.5px; }
|
16 |
-
|
17 |
-
.twentytwenty-vertical .twentytwenty-handle:before, .twentytwenty-vertical .twentytwenty-handle:after {
|
18 |
-
width: 9999px;
|
19 |
-
height: 3px;
|
20 |
-
top: 50%;
|
21 |
-
margin-top: -1.5px; }
|
22 |
-
|
23 |
-
.twentytwenty-before-label, .twentytwenty-after-label, .twentytwenty-overlay {
|
24 |
-
position: absolute;
|
25 |
-
top: 0;
|
26 |
-
width: 100%;
|
27 |
-
height: 100%; }
|
28 |
-
|
29 |
-
.twentytwenty-before-label, .twentytwenty-after-label, .twentytwenty-overlay {
|
30 |
-
-webkit-transition-duration: 0.5s;
|
31 |
-
-moz-transition-duration: 0.5s;
|
32 |
-
transition-duration: 0.5s; }
|
33 |
-
|
34 |
-
.twentytwenty-before-label, .twentytwenty-after-label {
|
35 |
-
-webkit-transition-property: opacity;
|
36 |
-
-moz-transition-property: opacity;
|
37 |
-
transition-property: opacity; }
|
38 |
-
|
39 |
-
.twentytwenty-before-label:before, .twentytwenty-after-label:before {
|
40 |
-
color: white;
|
41 |
-
font-size: 13px;
|
42 |
-
letter-spacing: 0.1em; }
|
43 |
-
|
44 |
-
.twentytwenty-before-label:before, .twentytwenty-after-label:before {
|
45 |
-
position: absolute;
|
46 |
-
background: rgba(255, 255, 255, 0.2);
|
47 |
-
line-height: 38px;
|
48 |
-
padding: 0 20px;
|
49 |
-
-webkit-border-radius: 2px;
|
50 |
-
-moz-border-radius: 2px;
|
51 |
-
border-radius: 2px; }
|
52 |
-
|
53 |
-
.twentytwenty-horizontal .twentytwenty-before-label:before, .twentytwenty-horizontal .twentytwenty-after-label:before {
|
54 |
-
top: 50%;
|
55 |
-
margin-top: -19px; }
|
56 |
-
|
57 |
-
.twentytwenty-vertical .twentytwenty-before-label:before, .twentytwenty-vertical .twentytwenty-after-label:before {
|
58 |
-
left: 50%;
|
59 |
-
margin-left: -45px;
|
60 |
-
text-align: center;
|
61 |
-
width:
|
62 |
-
|
63 |
-
.twentytwenty-left-arrow, .twentytwenty-right-arrow, .twentytwenty-up-arrow, .twentytwenty-down-arrow {
|
64 |
-
width: 0;
|
65 |
-
height: 0;
|
66 |
-
border: 6px inset transparent;
|
67 |
-
position: absolute; }
|
68 |
-
|
69 |
-
.twentytwenty-left-arrow, .twentytwenty-right-arrow {
|
70 |
-
top: 50%;
|
71 |
-
margin-top: -6px; }
|
72 |
-
|
73 |
-
.twentytwenty-up-arrow, .twentytwenty-down-arrow {
|
74 |
-
left: 50%;
|
75 |
-
margin-left: -6px; }
|
76 |
-
|
77 |
-
.twentytwenty-container {
|
78 |
-
-webkit-box-sizing: content-box;
|
79 |
-
-moz-box-sizing: content-box;
|
80 |
-
box-sizing: content-box;
|
81 |
-
z-index: 0;
|
82 |
-
overflow: hidden;
|
83 |
-
position: relative;
|
84 |
-
-webkit-user-select: none;
|
85 |
-
-moz-user-select: none;
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
.twentytwenty-container.active .twentytwenty-overlay .twentytwenty-
|
95 |
-
.twentytwenty-container.active :hover.twentytwenty-overlay .twentytwenty-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
-
|
100 |
-
box-sizing: content-box;
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
-
|
127 |
-
transition-property: background;
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
margin-
|
151 |
-
|
152 |
-
|
153 |
-
-
|
154 |
-
border-radius: 1000px;
|
155 |
-
-
|
156 |
-
-
|
157 |
-
box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
-
|
165 |
-
-
|
166 |
-
box-shadow: 0 3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
-
|
171 |
-
-
|
172 |
-
box-shadow: 0 -3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
-
|
178 |
-
-
|
179 |
-
box-shadow: 3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
-
|
184 |
-
-
|
185 |
-
box-shadow: -3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
|
1 |
+
.twentytwenty-horizontal .twentytwenty-handle:before, .twentytwenty-horizontal .twentytwenty-handle:after, .twentytwenty-vertical .twentytwenty-handle:before, .twentytwenty-vertical .twentytwenty-handle:after {
|
2 |
+
content: " ";
|
3 |
+
display: block;
|
4 |
+
background: white;
|
5 |
+
position: absolute;
|
6 |
+
z-index: 30;
|
7 |
+
-webkit-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
|
8 |
+
-moz-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
|
9 |
+
box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5); }
|
10 |
+
|
11 |
+
.twentytwenty-horizontal .twentytwenty-handle:before, .twentytwenty-horizontal .twentytwenty-handle:after {
|
12 |
+
width: 3px;
|
13 |
+
height: 9999px;
|
14 |
+
left: 50%;
|
15 |
+
margin-left: -1.5px; }
|
16 |
+
|
17 |
+
.twentytwenty-vertical .twentytwenty-handle:before, .twentytwenty-vertical .twentytwenty-handle:after {
|
18 |
+
width: 9999px;
|
19 |
+
height: 3px;
|
20 |
+
top: 50%;
|
21 |
+
margin-top: -1.5px; }
|
22 |
+
|
23 |
+
.twentytwenty-before-label, .twentytwenty-after-label, .twentytwenty-overlay {
|
24 |
+
position: absolute;
|
25 |
+
top: 0;
|
26 |
+
width: 100%;
|
27 |
+
height: 100%; }
|
28 |
+
|
29 |
+
.twentytwenty-before-label, .twentytwenty-after-label, .twentytwenty-overlay {
|
30 |
+
-webkit-transition-duration: 0.5s;
|
31 |
+
-moz-transition-duration: 0.5s;
|
32 |
+
transition-duration: 0.5s; }
|
33 |
+
|
34 |
+
.twentytwenty-before-label, .twentytwenty-after-label {
|
35 |
+
-webkit-transition-property: opacity;
|
36 |
+
-moz-transition-property: opacity;
|
37 |
+
transition-property: opacity; }
|
38 |
+
|
39 |
+
.twentytwenty-before-label:before, .twentytwenty-after-label:before {
|
40 |
+
color: white;
|
41 |
+
font-size: 13px;
|
42 |
+
letter-spacing: 0.1em; }
|
43 |
+
|
44 |
+
.twentytwenty-before-label:before, .twentytwenty-after-label:before {
|
45 |
+
position: absolute;
|
46 |
+
background: rgba(255, 255, 255, 0.2);
|
47 |
+
line-height: 38px;
|
48 |
+
padding: 0 20px;
|
49 |
+
-webkit-border-radius: 2px;
|
50 |
+
-moz-border-radius: 2px;
|
51 |
+
border-radius: 2px; }
|
52 |
+
|
53 |
+
.twentytwenty-horizontal .twentytwenty-before-label:before, .twentytwenty-horizontal .twentytwenty-after-label:before {
|
54 |
+
top: 50%;
|
55 |
+
margin-top: -19px; }
|
56 |
+
|
57 |
+
.twentytwenty-vertical .twentytwenty-before-label:before, .twentytwenty-vertical .twentytwenty-after-label:before {
|
58 |
+
left: 50%;
|
59 |
+
margin-left: -45px;
|
60 |
+
text-align: center;
|
61 |
+
width: auto; }
|
62 |
+
|
63 |
+
.twentytwenty-left-arrow, .twentytwenty-right-arrow, .twentytwenty-up-arrow, .twentytwenty-down-arrow {
|
64 |
+
width: 0;
|
65 |
+
height: 0;
|
66 |
+
border: 6px inset transparent;
|
67 |
+
position: absolute; }
|
68 |
+
|
69 |
+
.twentytwenty-left-arrow, .twentytwenty-right-arrow {
|
70 |
+
top: 50%;
|
71 |
+
margin-top: -6px; }
|
72 |
+
|
73 |
+
.twentytwenty-up-arrow, .twentytwenty-down-arrow {
|
74 |
+
left: 50%;
|
75 |
+
margin-left: -6px; }
|
76 |
+
|
77 |
+
.twentytwenty-container {
|
78 |
+
-webkit-box-sizing: content-box;
|
79 |
+
-moz-box-sizing: content-box;
|
80 |
+
box-sizing: content-box;
|
81 |
+
z-index: 0;
|
82 |
+
overflow: hidden;
|
83 |
+
position: relative;
|
84 |
+
-webkit-user-select: none;
|
85 |
+
-moz-user-select: none;
|
86 |
+
-ms-user-select: none; }
|
87 |
+
.twentytwenty-container img {
|
88 |
+
max-width: 100%;
|
89 |
+
position: absolute;
|
90 |
+
top: 0;
|
91 |
+
display: block; }
|
92 |
+
.twentytwenty-container.active .twentytwenty-overlay, .twentytwenty-container.active :hover.twentytwenty-overlay {
|
93 |
+
background: rgba(0, 0, 0, 0); }
|
94 |
+
.twentytwenty-container.active .twentytwenty-overlay .twentytwenty-before-label,
|
95 |
+
.twentytwenty-container.active .twentytwenty-overlay .twentytwenty-after-label, .twentytwenty-container.active :hover.twentytwenty-overlay .twentytwenty-before-label,
|
96 |
+
.twentytwenty-container.active :hover.twentytwenty-overlay .twentytwenty-after-label {
|
97 |
+
opacity: 0; }
|
98 |
+
.twentytwenty-container * {
|
99 |
+
-webkit-box-sizing: content-box;
|
100 |
+
-moz-box-sizing: content-box;
|
101 |
+
box-sizing: content-box; }
|
102 |
+
|
103 |
+
.twentytwenty-before-label {
|
104 |
+
opacity: 0; }
|
105 |
+
.twentytwenty-before-label:before {
|
106 |
+
content: attr(data-content); }
|
107 |
+
|
108 |
+
.twentytwenty-after-label {
|
109 |
+
opacity: 0; }
|
110 |
+
.twentytwenty-after-label:before {
|
111 |
+
content: attr(data-content); }
|
112 |
+
|
113 |
+
.twentytwenty-horizontal .twentytwenty-before-label:before {
|
114 |
+
left: 10px; }
|
115 |
+
|
116 |
+
.twentytwenty-horizontal .twentytwenty-after-label:before {
|
117 |
+
right: 10px; }
|
118 |
+
|
119 |
+
.twentytwenty-vertical .twentytwenty-before-label:before {
|
120 |
+
top: 10px; }
|
121 |
+
|
122 |
+
.twentytwenty-vertical .twentytwenty-after-label:before {
|
123 |
+
bottom: 10px; }
|
124 |
+
|
125 |
+
.twentytwenty-overlay {
|
126 |
+
-webkit-transition-property: background;
|
127 |
+
-moz-transition-property: background;
|
128 |
+
transition-property: background;
|
129 |
+
background: rgba(0, 0, 0, 0);
|
130 |
+
z-index: 25; }
|
131 |
+
.twentytwenty-overlay:hover {
|
132 |
+
background: rgba(0, 0, 0, 0.5); }
|
133 |
+
.twentytwenty-overlay:hover .twentytwenty-after-label {
|
134 |
+
opacity: 1; }
|
135 |
+
.twentytwenty-overlay:hover .twentytwenty-before-label {
|
136 |
+
opacity: 1; }
|
137 |
+
|
138 |
+
.twentytwenty-before {
|
139 |
+
z-index: 20; }
|
140 |
+
|
141 |
+
.twentytwenty-after {
|
142 |
+
z-index: 10; }
|
143 |
+
|
144 |
+
.twentytwenty-handle {
|
145 |
+
height: 38px;
|
146 |
+
width: 38px;
|
147 |
+
position: absolute;
|
148 |
+
left: 50%;
|
149 |
+
top: 50%;
|
150 |
+
margin-left: -22px;
|
151 |
+
margin-top: -22px;
|
152 |
+
border: 3px solid white;
|
153 |
+
-webkit-border-radius: 1000px;
|
154 |
+
-moz-border-radius: 1000px;
|
155 |
+
border-radius: 1000px;
|
156 |
+
-webkit-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
|
157 |
+
-moz-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
|
158 |
+
box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
|
159 |
+
z-index: 40;
|
160 |
+
cursor: pointer; }
|
161 |
+
|
162 |
+
.twentytwenty-horizontal .twentytwenty-handle:before {
|
163 |
+
bottom: 50%;
|
164 |
+
margin-bottom: 22px;
|
165 |
+
-webkit-box-shadow: 0 3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
|
166 |
+
-moz-box-shadow: 0 3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
|
167 |
+
box-shadow: 0 3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5); }
|
168 |
+
.twentytwenty-horizontal .twentytwenty-handle:after {
|
169 |
+
top: 50%;
|
170 |
+
margin-top: 22px;
|
171 |
+
-webkit-box-shadow: 0 -3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
|
172 |
+
-moz-box-shadow: 0 -3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
|
173 |
+
box-shadow: 0 -3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5); }
|
174 |
+
|
175 |
+
.twentytwenty-vertical .twentytwenty-handle:before {
|
176 |
+
left: 50%;
|
177 |
+
margin-left: 22px;
|
178 |
+
-webkit-box-shadow: 3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
|
179 |
+
-moz-box-shadow: 3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
|
180 |
+
box-shadow: 3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5); }
|
181 |
+
.twentytwenty-vertical .twentytwenty-handle:after {
|
182 |
+
right: 50%;
|
183 |
+
margin-right: 22px;
|
184 |
+
-webkit-box-shadow: -3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
|
185 |
+
-moz-box-shadow: -3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
|
186 |
+
box-shadow: -3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5); }
|
187 |
+
|
188 |
+
.twentytwenty-left-arrow {
|
189 |
+
border-right: 6px solid white;
|
190 |
+
left: 50%;
|
191 |
+
margin-left: -17px; }
|
192 |
+
|
193 |
+
.twentytwenty-right-arrow {
|
194 |
+
border-left: 6px solid white;
|
195 |
+
right: 50%;
|
196 |
+
margin-right: -17px; }
|
197 |
+
|
198 |
+
.twentytwenty-up-arrow {
|
199 |
+
border-bottom: 6px solid white;
|
200 |
+
top: 50%;
|
201 |
+
margin-top: -17px; }
|
202 |
+
|
203 |
+
.twentytwenty-down-arrow {
|
204 |
+
border-top: 6px solid white;
|
205 |
+
bottom: 50%;
|
206 |
+
margin-bottom: -17px; }
|
assets/twentytwenty/js/jquery.event.move.js
ADDED
@@ -0,0 +1,599 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
// DOM.event.move
|
2 |
+
//
|
3 |
+
// 2.0.0
|
4 |
+
//
|
5 |
+
// Stephen Band
|
6 |
+
//
|
7 |
+
// Triggers 'movestart', 'move' and 'moveend' events after
|
8 |
+
// mousemoves following a mousedown cross a distance threshold,
|
9 |
+
// similar to the native 'dragstart', 'drag' and 'dragend' events.
|
10 |
+
// Move events are throttled to animation frames. Move event objects
|
11 |
+
// have the properties:
|
12 |
+
//
|
13 |
+
// pageX:
|
14 |
+
// pageY: Page coordinates of pointer.
|
15 |
+
// startX:
|
16 |
+
// startY: Page coordinates of pointer at movestart.
|
17 |
+
// distX:
|
18 |
+
// distY: Distance the pointer has moved since movestart.
|
19 |
+
// deltaX:
|
20 |
+
// deltaY: Distance the finger has moved since last event.
|
21 |
+
// velocityX:
|
22 |
+
// velocityY: Average velocity over last few events.
|
23 |
+
|
24 |
+
|
25 |
+
(function(fn) {
|
26 |
+
if (typeof define === 'function' && define.amd) {
|
27 |
+
define([], fn);
|
28 |
+
} else if ((typeof module !== "undefined" && module !== null) && module.exports) {
|
29 |
+
module.exports = fn;
|
30 |
+
} else {
|
31 |
+
fn();
|
32 |
+
}
|
33 |
+
})(function(){
|
34 |
+
var assign = Object.assign || window.jQuery && jQuery.extend;
|
35 |
+
|
36 |
+
// Number of pixels a pressed pointer travels before movestart
|
37 |
+
// event is fired.
|
38 |
+
var threshold = 8;
|
39 |
+
|
40 |
+
// Shim for requestAnimationFrame, falling back to timer. See:
|
41 |
+
// see http://paulirish.com/2011/requestanimationframe-for-smart-animating/
|
42 |
+
var requestFrame = (function(){
|
43 |
+
return (
|
44 |
+
window.requestAnimationFrame ||
|
45 |
+
window.webkitRequestAnimationFrame ||
|
46 |
+
window.mozRequestAnimationFrame ||
|
47 |
+
window.oRequestAnimationFrame ||
|
48 |
+
window.msRequestAnimationFrame ||
|
49 |
+
function(fn, element){
|
50 |
+
return window.setTimeout(function(){
|
51 |
+
fn();
|
52 |
+
}, 25);
|
53 |
+
}
|
54 |
+
);
|
55 |
+
})();
|
56 |
+
|
57 |
+
// Shim for customEvent
|
58 |
+
// see https://developer.mozilla.org/en-US/docs/Web/API/CustomEvent/CustomEvent#Polyfill
|
59 |
+
(function () {
|
60 |
+
if ( typeof window.CustomEvent === "function" ) return false;
|
61 |
+
function CustomEvent ( event, params ) {
|
62 |
+
params = params || { bubbles: false, cancelable: false, detail: undefined };
|
63 |
+
var evt = document.createEvent( 'CustomEvent' );
|
64 |
+
evt.initCustomEvent( event, params.bubbles, params.cancelable, params.detail );
|
65 |
+
return evt;
|
66 |
+
}
|
67 |
+
|
68 |
+
CustomEvent.prototype = window.Event.prototype;
|
69 |
+
window.CustomEvent = CustomEvent;
|
70 |
+
})();
|
71 |
+
|
72 |
+
var ignoreTags = {
|
73 |
+
textarea: true,
|
74 |
+
input: true,
|
75 |
+
select: true,
|
76 |
+
button: true
|
77 |
+
};
|
78 |
+
|
79 |
+
var mouseevents = {
|
80 |
+
move: 'mousemove',
|
81 |
+
cancel: 'mouseup dragstart',
|
82 |
+
end: 'mouseup'
|
83 |
+
};
|
84 |
+
|
85 |
+
var touchevents = {
|
86 |
+
move: 'touchmove',
|
87 |
+
cancel: 'touchend',
|
88 |
+
end: 'touchend'
|
89 |
+
};
|
90 |
+
|
91 |
+
var rspaces = /\s+/;
|
92 |
+
|
93 |
+
|
94 |
+
// DOM Events
|
95 |
+
|
96 |
+
var eventOptions = { bubbles: true, cancelable: true };
|
97 |
+
|
98 |
+
var eventsSymbol = typeof Symbol === "function" ? Symbol('events') : {};
|
99 |
+
|
100 |
+
function createEvent(type) {
|
101 |
+
return new CustomEvent(type, eventOptions);
|
102 |
+
}
|
103 |
+
|
104 |
+
function getEvents(node) {
|
105 |
+
return node[eventsSymbol] || (node[eventsSymbol] = {});
|
106 |
+
}
|
107 |
+
|
108 |
+
function on(node, types, fn, data, selector) {
|
109 |
+
types = types.split(rspaces);
|
110 |
+
|
111 |
+
var events = getEvents(node);
|
112 |
+
var i = types.length;
|
113 |
+
var handlers, type;
|
114 |
+
|
115 |
+
function handler(e) { fn(e, data); }
|
116 |
+
|
117 |
+
while (i--) {
|
118 |
+
type = types[i];
|
119 |
+
handlers = events[type] || (events[type] = []);
|
120 |
+
handlers.push([fn, handler]);
|
121 |
+
node.addEventListener(type, handler);
|
122 |
+
}
|
123 |
+
}
|
124 |
+
|
125 |
+
function off(node, types, fn, selector) {
|
126 |
+
types = types.split(rspaces);
|
127 |
+
|
128 |
+
var events = getEvents(node);
|
129 |
+
var i = types.length;
|
130 |
+
var type, handlers, k;
|
131 |
+
|
132 |
+
if (!events) { return; }
|
133 |
+
|
134 |
+
while (i--) {
|
135 |
+
type = types[i];
|
136 |
+
handlers = events[type];
|
137 |
+
if (!handlers) { continue; }
|
138 |
+
k = handlers.length;
|
139 |
+
while (k--) {
|
140 |
+
if (handlers[k][0] === fn) {
|
141 |
+
node.removeEventListener(type, handlers[k][1]);
|
142 |
+
handlers.splice(k, 1);
|
143 |
+
}
|
144 |
+
}
|
145 |
+
}
|
146 |
+
}
|
147 |
+
|
148 |
+
function trigger(node, type, properties) {
|
149 |
+
// Don't cache events. It prevents you from triggering an event of a
|
150 |
+
// given type from inside the handler of another event of that type.
|
151 |
+
var event = createEvent(type);
|
152 |
+
if (properties) { assign(event, properties); }
|
153 |
+
node.dispatchEvent(event);
|
154 |
+
}
|
155 |
+
|
156 |
+
|
157 |
+
// Constructors
|
158 |
+
|
159 |
+
function Timer(fn){
|
160 |
+
var callback = fn,
|
161 |
+
active = false,
|
162 |
+
running = false;
|
163 |
+
|
164 |
+
function trigger(time) {
|
165 |
+
if (active){
|
166 |
+
callback();
|
167 |
+
requestFrame(trigger);
|
168 |
+
running = true;
|
169 |
+
active = false;
|
170 |
+
}
|
171 |
+
else {
|
172 |
+
running = false;
|
173 |
+
}
|
174 |
+
}
|
175 |
+
|
176 |
+
this.kick = function(fn) {
|
177 |
+
active = true;
|
178 |
+
if (!running) { trigger(); }
|
179 |
+
};
|
180 |
+
|
181 |
+
this.end = function(fn) {
|
182 |
+
var cb = callback;
|
183 |
+
|
184 |
+
if (!fn) { return; }
|
185 |
+
|
186 |
+
// If the timer is not running, simply call the end callback.
|
187 |
+
if (!running) {
|
188 |
+
fn();
|
189 |
+
}
|
190 |
+
// If the timer is running, and has been kicked lately, then
|
191 |
+
// queue up the current callback and the end callback, otherwise
|
192 |
+
// just the end callback.
|
193 |
+
else {
|
194 |
+
callback = active ?
|
195 |
+
function(){ cb(); fn(); } :
|
196 |
+
fn ;
|
197 |
+
|
198 |
+
active = true;
|
199 |
+
}
|
200 |
+
};
|
201 |
+
}
|
202 |
+
|
203 |
+
|
204 |
+
// Functions
|
205 |
+
|
206 |
+
function noop() {}
|
207 |
+
|
208 |
+
function preventDefault(e) {
|
209 |
+
e.preventDefault();
|
210 |
+
}
|
211 |
+
|
212 |
+
function isIgnoreTag(e) {
|
213 |
+
return !!ignoreTags[e.target.tagName.toLowerCase()];
|
214 |
+
}
|
215 |
+
|
216 |
+
function isPrimaryButton(e) {
|
217 |
+
// Ignore mousedowns on any button other than the left (or primary)
|
218 |
+
// mouse button, or when a modifier key is pressed.
|
219 |
+
return (e.which === 1 && !e.ctrlKey && !e.altKey);
|
220 |
+
}
|
221 |
+
|
222 |
+
function identifiedTouch(touchList, id) {
|
223 |
+
var i, l;
|
224 |
+
|
225 |
+
if (touchList.identifiedTouch) {
|
226 |
+
return touchList.identifiedTouch(id);
|
227 |
+
}
|
228 |
+
|
229 |
+
// touchList.identifiedTouch() does not exist in
|
230 |
+
// webkit yet… we must do the search ourselves...
|
231 |
+
|
232 |
+
i = -1;
|
233 |
+
l = touchList.length;
|
234 |
+
|
235 |
+
while (++i < l) {
|
236 |
+
if (touchList[i].identifier === id) {
|
237 |
+
return touchList[i];
|
238 |
+
}
|
239 |
+
}
|
240 |
+
}
|
241 |
+
|
242 |
+
function changedTouch(e, data) {
|
243 |
+
var touch = identifiedTouch(e.changedTouches, data.identifier);
|
244 |
+
|
245 |
+
// This isn't the touch you're looking for.
|
246 |
+
if (!touch) { return; }
|
247 |
+
|
248 |
+
// Chrome Android (at least) includes touches that have not
|
249 |
+
// changed in e.changedTouches. That's a bit annoying. Check
|
250 |
+
// that this touch has changed.
|
251 |
+
if (touch.pageX === data.pageX && touch.pageY === data.pageY) { return; }
|
252 |
+
|
253 |
+
return touch;
|
254 |
+
}
|
255 |
+
|
256 |
+
|
257 |
+
// Handlers that decide when the first movestart is triggered
|
258 |
+
|
259 |
+
function mousedown(e){
|
260 |
+
// Ignore non-primary buttons
|
261 |
+
if (!isPrimaryButton(e)) { return; }
|
262 |
+
|
263 |
+
// Ignore form and interactive elements
|
264 |
+
if (isIgnoreTag(e)) { return; }
|
265 |
+
|
266 |
+
on(document, mouseevents.move, mousemove, e);
|
267 |
+
on(document, mouseevents.cancel, mouseend, e);
|
268 |
+
}
|
269 |
+
|
270 |
+
function mousemove(e, data){
|
271 |
+
checkThreshold(e, data, e, removeMouse);
|
272 |
+
}
|
273 |
+
|
274 |
+
function mouseend(e, data) {
|
275 |
+
removeMouse();
|
276 |
+
}
|
277 |
+
|
278 |
+
function removeMouse() {
|
279 |
+
off(document, mouseevents.move, mousemove);
|
280 |
+
off(document, mouseevents.cancel, mouseend);
|
281 |
+
}
|
282 |
+
|
283 |
+
function touchstart(e) {
|
284 |
+
// Don't get in the way of interaction with form elements
|
285 |
+
if (ignoreTags[e.target.tagName.toLowerCase()]) { return; }
|
286 |
+
|
287 |
+
var touch = e.changedTouches[0];
|
288 |
+
|
289 |
+
// iOS live updates the touch objects whereas Android gives us copies.
|
290 |
+
// That means we can't trust the touchstart object to stay the same,
|
291 |
+
// so we must copy the data. This object acts as a template for
|
292 |
+
// movestart, move and moveend event objects.
|
293 |
+
var data = {
|
294 |
+
target: touch.target,
|
295 |
+
pageX: touch.pageX,
|
296 |
+
pageY: touch.pageY,
|
297 |
+
identifier: touch.identifier,
|
298 |
+
|
299 |
+
// The only way to make handlers individually unbindable is by
|
300 |
+
// making them unique.
|
301 |
+
touchmove: function(e, data) { touchmove(e, data); },
|
302 |
+
touchend: function(e, data) { touchend(e, data); }
|
303 |
+
};
|
304 |
+
|
305 |
+
on(document, touchevents.move, data.touchmove, data);
|
306 |
+
on(document, touchevents.cancel, data.touchend, data);
|
307 |
+
}
|
308 |
+
|
309 |
+
function touchmove(e, data) {
|
310 |
+
var touch = changedTouch(e, data);
|
311 |
+
if (!touch) { return; }
|
312 |
+
checkThreshold(e, data, touch, removeTouch);
|
313 |
+
}
|
314 |
+
|
315 |
+
function touchend(e, data) {
|
316 |
+
var touch = identifiedTouch(e.changedTouches, data.identifier);
|
317 |
+
if (!touch) { return; }
|
318 |
+
removeTouch(data);
|
319 |
+
}
|
320 |
+
|
321 |
+
function removeTouch(data) {
|
322 |
+
off(document, touchevents.move, data.touchmove);
|
323 |
+
off(document, touchevents.cancel, data.touchend);
|
324 |
+
}
|
325 |
+
|
326 |
+
function checkThreshold(e, data, touch, fn) {
|
327 |
+
var distX = touch.pageX - data.pageX;
|
328 |
+
var distY = touch.pageY - data.pageY;
|
329 |
+
|
330 |
+
// Do nothing if the threshold has not been crossed.
|
331 |
+
if ((distX * distX) + (distY * distY) < (threshold * threshold)) { return; }
|
332 |
+
|
333 |
+
triggerStart(e, data, touch, distX, distY, fn);
|
334 |
+
}
|
335 |
+
|
336 |
+
function triggerStart(e, data, touch, distX, distY, fn) {
|
337 |
+
var touches = e.targetTouches;
|
338 |
+
var time = e.timeStamp - data.timeStamp;
|
339 |
+
|
340 |
+
// Create a movestart object with some special properties that
|
341 |
+
// are passed only to the movestart handlers.
|
342 |
+
var template = {
|
343 |
+
altKey: e.altKey,
|
344 |
+
ctrlKey: e.ctrlKey,
|
345 |
+
shiftKey: e.shiftKey,
|
346 |
+
startX: data.pageX,
|
347 |
+
startY: data.pageY,
|
348 |
+
distX: distX,
|
349 |
+
distY: distY,
|
350 |
+
deltaX: distX,
|
351 |
+
deltaY: distY,
|
352 |
+
pageX: touch.pageX,
|
353 |
+
pageY: touch.pageY,
|
354 |
+
velocityX: distX / time,
|
355 |
+
velocityY: distY / time,
|
356 |
+
identifier: data.identifier,
|
357 |
+
targetTouches: touches,
|
358 |
+
finger: touches ? touches.length : 1,
|
359 |
+
enableMove: function() {
|
360 |
+
this.moveEnabled = true;
|
361 |
+
this.enableMove = noop;
|
362 |
+
e.preventDefault();
|
363 |
+
}
|
364 |
+
};
|
365 |
+
|
366 |
+
// Trigger the movestart event.
|
367 |
+
trigger(data.target, 'movestart', template);
|
368 |
+
|
369 |
+
// Unbind handlers that tracked the touch or mouse up till now.
|
370 |
+
fn(data);
|
371 |
+
}
|
372 |
+
|
373 |
+
|
374 |
+
// Handlers that control what happens following a movestart
|
375 |
+
|
376 |
+
function activeMousemove(e, data) {
|
377 |
+
var timer = data.timer;
|
378 |
+
|
379 |
+
data.touch = e;
|
380 |
+
data.timeStamp = e.timeStamp;
|
381 |
+
timer.kick();
|
382 |
+
}
|
383 |
+
|
384 |
+
function activeMouseend(e, data) {
|
385 |
+
var target = data.target;
|
386 |
+
var event = data.event;
|
387 |
+
var timer = data.timer;
|
388 |
+
|
389 |
+
removeActiveMouse();
|
390 |
+
|
391 |
+
endEvent(target, event, timer, function() {
|
392 |
+
// Unbind the click suppressor, waiting until after mouseup
|
393 |
+
// has been handled.
|
394 |
+
setTimeout(function(){
|
395 |
+
off(target, 'click', preventDefault);
|
396 |
+
}, 0);
|
397 |
+
});
|
398 |
+
}
|
399 |
+
|
400 |
+
function removeActiveMouse() {
|
401 |
+
off(document, mouseevents.move, activeMousemove);
|
402 |
+
off(document, mouseevents.end, activeMouseend);
|
403 |
+
}
|
404 |
+
|
405 |
+
function activeTouchmove(e, data) {
|
406 |
+
var event = data.event;
|
407 |
+
var timer = data.timer;
|
408 |
+
var touch = changedTouch(e, event);
|
409 |
+
|
410 |
+
if (!touch) { return; }
|
411 |
+
|
412 |
+
// Stop the interface from gesturing
|
413 |
+
e.preventDefault();
|
414 |
+
|
415 |
+
event.targetTouches = e.targetTouches;
|
416 |
+
data.touch = touch;
|
417 |
+
data.timeStamp = e.timeStamp;
|
418 |
+
|
419 |
+
timer.kick();
|
420 |
+
}
|
421 |
+
|
422 |
+
function activeTouchend(e, data) {
|
423 |
+
var target = data.target;
|
424 |
+
var event = data.event;
|
425 |
+
var timer = data.timer;
|
426 |
+
var touch = identifiedTouch(e.changedTouches, event.identifier);
|
427 |
+
|
428 |
+
// This isn't the touch you're looking for.
|
429 |
+
if (!touch) { return; }
|
430 |
+
|
431 |
+
removeActiveTouch(data);
|
432 |
+
endEvent(target, event, timer);
|
433 |
+
}
|
434 |
+
|
435 |
+
function removeActiveTouch(data) {
|
436 |
+
off(document, touchevents.move, data.activeTouchmove);
|
437 |
+
off(document, touchevents.end, data.activeTouchend);
|
438 |
+
}
|
439 |
+
|
440 |
+
|
441 |
+
// Logic for triggering move and moveend events
|
442 |
+
|
443 |
+
function updateEvent(event, touch, timeStamp) {
|
444 |
+
var time = timeStamp - event.timeStamp;
|
445 |
+
|
446 |
+
event.distX = touch.pageX - event.startX;
|
447 |
+
event.distY = touch.pageY - event.startY;
|
448 |
+
event.deltaX = touch.pageX - event.pageX;
|
449 |
+
event.deltaY = touch.pageY - event.pageY;
|
450 |
+
|
451 |
+
// Average the velocity of the last few events using a decay
|
452 |
+
// curve to even out spurious jumps in values.
|
453 |
+
event.velocityX = 0.3 * event.velocityX + 0.7 * event.deltaX / time;
|
454 |
+
event.velocityY = 0.3 * event.velocityY + 0.7 * event.deltaY / time;
|
455 |
+
event.pageX = touch.pageX;
|
456 |
+
event.pageY = touch.pageY;
|
457 |
+
}
|
458 |
+
|
459 |
+
function endEvent(target, event, timer, fn) {
|
460 |
+
timer.end(function(){
|
461 |
+
trigger(target, 'moveend', event);
|
462 |
+
return fn && fn();
|
463 |
+
});
|
464 |
+
}
|
465 |
+
|
466 |
+
|
467 |
+
// Set up the DOM
|
468 |
+
|
469 |
+
function movestart(e) {
|
470 |
+
if (e.defaultPrevented) { return; }
|
471 |
+
if (!e.moveEnabled) { return; }
|
472 |
+
|
473 |
+
var event = {
|
474 |
+
startX: e.startX,
|
475 |
+
startY: e.startY,
|
476 |
+
pageX: e.pageX,
|
477 |
+
pageY: e.pageY,
|
478 |
+
distX: e.distX,
|
479 |
+
distY: e.distY,
|
480 |
+
deltaX: e.deltaX,
|
481 |
+
deltaY: e.deltaY,
|
482 |
+
velocityX: e.velocityX,
|
483 |
+
velocityY: e.velocityY,
|
484 |
+
identifier: e.identifier,
|
485 |
+
targetTouches: e.targetTouches,
|
486 |
+
finger: e.finger
|
487 |
+
};
|
488 |
+
|
489 |
+
var data = {
|
490 |
+
target: e.target,
|
491 |
+
event: event,
|
492 |
+
timer: new Timer(update),
|
493 |
+
touch: undefined,
|
494 |
+
timeStamp: e.timeStamp
|
495 |
+
};
|
496 |
+
|
497 |
+
function update(time) {
|
498 |
+
updateEvent(event, data.touch, data.timeStamp);
|
499 |
+
trigger(data.target, 'move', event);
|
500 |
+
}
|
501 |
+
|
502 |
+
if (e.identifier === undefined) {
|
503 |
+
// We're dealing with a mouse event.
|
504 |
+
// Stop clicks from propagating during a move
|
505 |
+
on(e.target, 'click', preventDefault);
|
506 |
+
on(document, mouseevents.move, activeMousemove, data);
|
507 |
+
on(document, mouseevents.end, activeMouseend, data);
|
508 |
+
}
|
509 |
+
else {
|
510 |
+
// In order to unbind correct handlers they have to be unique
|
511 |
+
data.activeTouchmove = function(e, data) { activeTouchmove(e, data); };
|
512 |
+
data.activeTouchend = function(e, data) { activeTouchend(e, data); };
|
513 |
+
|
514 |
+
// We're dealing with a touch.
|
515 |
+
on(document, touchevents.move, data.activeTouchmove, data);
|
516 |
+
on(document, touchevents.end, data.activeTouchend, data);
|
517 |
+
}
|
518 |
+
}
|
519 |
+
|
520 |
+
on(document, 'mousedown', mousedown);
|
521 |
+
on(document, 'touchstart', touchstart);
|
522 |
+
on(document, 'movestart', movestart);
|
523 |
+
|
524 |
+
|
525 |
+
// jQuery special events
|
526 |
+
//
|
527 |
+
// jQuery event objects are copies of DOM event objects. They need
|
528 |
+
// a little help copying the move properties across.
|
529 |
+
|
530 |
+
if (!window.jQuery) { return; }
|
531 |
+
|
532 |
+
var properties = ("startX startY pageX pageY distX distY deltaX deltaY velocityX velocityY").split(' ');
|
533 |
+
|
534 |
+
function enableMove1(e) { e.enableMove(); }
|
535 |
+
function enableMove2(e) { e.enableMove(); }
|
536 |
+
function enableMove3(e) { e.enableMove(); }
|
537 |
+
|
538 |
+
function add(handleObj) {
|
539 |
+
var handler = handleObj.handler;
|
540 |
+
|
541 |
+
handleObj.handler = function(e) {
|
542 |
+
// Copy move properties across from originalEvent
|
543 |
+
var i = properties.length;
|
544 |
+
var property;
|
545 |
+
|
546 |
+
while(i--) {
|
547 |
+
property = properties[i];
|
548 |
+
e[property] = e.originalEvent[property];
|
549 |
+
}
|
550 |
+
|
551 |
+
handler.apply(this, arguments);
|
552 |
+
};
|
553 |
+
}
|
554 |
+
|
555 |
+
jQuery.event.special.movestart = {
|
556 |
+
setup: function() {
|
557 |
+
// Movestart must be enabled to allow other move events
|
558 |
+
on(this, 'movestart', enableMove1);
|
559 |
+
|
560 |
+
// Do listen to DOM events
|
561 |
+
return false;
|
562 |
+
},
|
563 |
+
|
564 |
+
teardown: function() {
|
565 |
+
off(this, 'movestart', enableMove1);
|
566 |
+
return false;
|
567 |
+
},
|
568 |
+
|
569 |
+
add: add
|
570 |
+
};
|
571 |
+
|
572 |
+
jQuery.event.special.move = {
|
573 |
+
setup: function() {
|
574 |
+
on(this, 'movestart', enableMove2);
|
575 |
+
return false;
|
576 |
+
},
|
577 |
+
|
578 |
+
teardown: function() {
|
579 |
+
off(this, 'movestart', enableMove2);
|
580 |
+
return false;
|
581 |
+
},
|
582 |
+
|
583 |
+
add: add
|
584 |
+
};
|
585 |
+
|
586 |
+
jQuery.event.special.moveend = {
|
587 |
+
setup: function() {
|
588 |
+
on(this, 'movestart', enableMove3);
|
589 |
+
return false;
|
590 |
+
},
|
591 |
+
|
592 |
+
teardown: function() {
|
593 |
+
off(this, 'movestart', enableMove3);
|
594 |
+
return false;
|
595 |
+
},
|
596 |
+
|
597 |
+
add: add
|
598 |
+
};
|
599 |
+
});
|
assets/{js → twentytwenty/js}/jquery.twentytwenty.js
RENAMED
@@ -1,105 +1,151 @@
|
|
1 |
-
(function($){
|
2 |
-
|
3 |
-
$.fn.twentytwenty = function(options) {
|
4 |
-
var options = $.extend({
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
var
|
18 |
-
container
|
19 |
-
var
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
var
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
(function($){
|
2 |
+
|
3 |
+
$.fn.twentytwenty = function(options) {
|
4 |
+
var options = $.extend({
|
5 |
+
default_offset_pct: 0.5,
|
6 |
+
orientation: 'horizontal',
|
7 |
+
before_label: 'Before',
|
8 |
+
after_label: 'After',
|
9 |
+
no_overlay: false,
|
10 |
+
move_slider_on_hover: false,
|
11 |
+
move_with_handle_only: true,
|
12 |
+
click_to_move: false
|
13 |
+
}, options);
|
14 |
+
|
15 |
+
return this.each(function() {
|
16 |
+
|
17 |
+
var sliderPct = options.default_offset_pct;
|
18 |
+
var container = $(this);
|
19 |
+
var sliderOrientation = options.orientation;
|
20 |
+
var beforeDirection = (sliderOrientation === 'vertical') ? 'down' : 'left';
|
21 |
+
var afterDirection = (sliderOrientation === 'vertical') ? 'up' : 'right';
|
22 |
+
|
23 |
+
|
24 |
+
container.wrap("<div class='twentytwenty-wrapper twentytwenty-" + sliderOrientation + "'></div>");
|
25 |
+
if(!options.no_overlay) {
|
26 |
+
container.append("<div class='twentytwenty-overlay'></div>");
|
27 |
+
var overlay = container.find(".twentytwenty-overlay");
|
28 |
+
overlay.append("<div class='twentytwenty-before-label' data-content='"+options.before_label+"'></div>");
|
29 |
+
overlay.append("<div class='twentytwenty-after-label' data-content='"+options.after_label+"'></div>");
|
30 |
+
}
|
31 |
+
var beforeImg = container.find("img:first");
|
32 |
+
var afterImg = container.find("img:last");
|
33 |
+
container.append("<div class='twentytwenty-handle'></div>");
|
34 |
+
var slider = container.find(".twentytwenty-handle");
|
35 |
+
slider.append("<span class='twentytwenty-" + beforeDirection + "-arrow'></span>");
|
36 |
+
slider.append("<span class='twentytwenty-" + afterDirection + "-arrow'></span>");
|
37 |
+
container.addClass("twentytwenty-container");
|
38 |
+
beforeImg.addClass("twentytwenty-before");
|
39 |
+
afterImg.addClass("twentytwenty-after");
|
40 |
+
|
41 |
+
var calcOffset = function(dimensionPct) {
|
42 |
+
var w = beforeImg.width();
|
43 |
+
var h = beforeImg.height();
|
44 |
+
return {
|
45 |
+
w: w+"px",
|
46 |
+
h: h+"px",
|
47 |
+
cw: (dimensionPct*w)+"px",
|
48 |
+
ch: (dimensionPct*h)+"px"
|
49 |
+
};
|
50 |
+
};
|
51 |
+
|
52 |
+
var adjustContainer = function(offset) {
|
53 |
+
if (sliderOrientation === 'vertical') {
|
54 |
+
beforeImg.css("clip", "rect(0,"+offset.w+","+offset.ch+",0)");
|
55 |
+
afterImg.css("clip", "rect("+offset.ch+","+offset.w+","+offset.h+",0)");
|
56 |
+
}
|
57 |
+
else {
|
58 |
+
beforeImg.css("clip", "rect(0,"+offset.cw+","+offset.h+",0)");
|
59 |
+
afterImg.css("clip", "rect(0,"+offset.w+","+offset.h+","+offset.cw+")");
|
60 |
+
}
|
61 |
+
container.css("height", offset.h);
|
62 |
+
};
|
63 |
+
|
64 |
+
var adjustSlider = function(pct) {
|
65 |
+
var offset = calcOffset(pct);
|
66 |
+
slider.css((sliderOrientation==="vertical") ? "top" : "left", (sliderOrientation==="vertical") ? offset.ch : offset.cw);
|
67 |
+
adjustContainer(offset);
|
68 |
+
};
|
69 |
+
|
70 |
+
// Return the number specified or the min/max number if it outside the range given.
|
71 |
+
var minMaxNumber = function(num, min, max) {
|
72 |
+
return Math.max(min, Math.min(max, num));
|
73 |
+
};
|
74 |
+
|
75 |
+
// Calculate the slider percentage based on the position.
|
76 |
+
var getSliderPercentage = function(positionX, positionY) {
|
77 |
+
var sliderPercentage = (sliderOrientation === 'vertical') ?
|
78 |
+
(positionY-offsetY)/imgHeight :
|
79 |
+
(positionX-offsetX)/imgWidth;
|
80 |
+
|
81 |
+
return minMaxNumber(sliderPercentage, 0, 1);
|
82 |
+
};
|
83 |
+
|
84 |
+
|
85 |
+
$(window).on("resize.twentytwenty", function(e) {
|
86 |
+
adjustSlider(sliderPct);
|
87 |
+
});
|
88 |
+
|
89 |
+
var offsetX = 0;
|
90 |
+
var offsetY = 0;
|
91 |
+
var imgWidth = 0;
|
92 |
+
var imgHeight = 0;
|
93 |
+
var onMoveStart = function(e) {
|
94 |
+
if (((e.distX > e.distY && e.distX < -e.distY) || (e.distX < e.distY && e.distX > -e.distY)) && sliderOrientation !== 'vertical') {
|
95 |
+
e.preventDefault();
|
96 |
+
}
|
97 |
+
else if (((e.distX < e.distY && e.distX < -e.distY) || (e.distX > e.distY && e.distX > -e.distY)) && sliderOrientation === 'vertical') {
|
98 |
+
e.preventDefault();
|
99 |
+
}
|
100 |
+
container.addClass("active");
|
101 |
+
offsetX = container.offset().left;
|
102 |
+
offsetY = container.offset().top;
|
103 |
+
imgWidth = beforeImg.width();
|
104 |
+
imgHeight = beforeImg.height();
|
105 |
+
};
|
106 |
+
var onMove = function(e) {
|
107 |
+
if (container.hasClass("active")) {
|
108 |
+
sliderPct = getSliderPercentage(e.pageX, e.pageY);
|
109 |
+
adjustSlider(sliderPct);
|
110 |
+
}
|
111 |
+
};
|
112 |
+
var onMoveEnd = function() {
|
113 |
+
container.removeClass("active");
|
114 |
+
};
|
115 |
+
|
116 |
+
var moveTarget = options.move_with_handle_only ? slider : container;
|
117 |
+
moveTarget.on("movestart",onMoveStart);
|
118 |
+
moveTarget.on("move",onMove);
|
119 |
+
moveTarget.on("moveend",onMoveEnd);
|
120 |
+
|
121 |
+
if (options.move_slider_on_hover) {
|
122 |
+
container.on("mouseenter", onMoveStart);
|
123 |
+
container.on("mousemove", onMove);
|
124 |
+
container.on("mouseleave", onMoveEnd);
|
125 |
+
}
|
126 |
+
|
127 |
+
slider.on("touchmove", function(e) {
|
128 |
+
e.preventDefault();
|
129 |
+
});
|
130 |
+
|
131 |
+
container.find("img").on("mousedown", function(event) {
|
132 |
+
event.preventDefault();
|
133 |
+
});
|
134 |
+
|
135 |
+
if (options.click_to_move) {
|
136 |
+
container.on('click', function(e) {
|
137 |
+
offsetX = container.offset().left;
|
138 |
+
offsetY = container.offset().top;
|
139 |
+
imgWidth = beforeImg.width();
|
140 |
+
imgHeight = beforeImg.height();
|
141 |
+
|
142 |
+
sliderPct = getSliderPercentage(e.pageX, e.pageY);
|
143 |
+
adjustSlider(sliderPct);
|
144 |
+
});
|
145 |
+
}
|
146 |
+
|
147 |
+
$(window).trigger("resize.twentytwenty");
|
148 |
+
});
|
149 |
+
};
|
150 |
+
|
151 |
+
})(jQuery);
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: hoosoft
|
|
3 |
Tags: shortcodes, shortcode, accordion, alert, button, column, custom box, countdowns, counter, divider, dropcap, feature box, flip box, highlight, list, modal, popover, tooltip, person, promo box, scocial, tab, testimonial, progress, piechart, timeline, panel, section, slider
|
4 |
Requires at least: 5.0
|
5 |
Tested up to: 5.7
|
6 |
-
Stable tag: 2.0.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -64,6 +64,16 @@ Activate plugin at "Plugins" administration page.
|
|
64 |
|
65 |
== Changelog ==
|
66 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
67 |
= 2.0.2 =
|
68 |
* Tweak: update Countdowns shortcode
|
69 |
* Tweak: update Custom Box Shortcode
|
@@ -72,7 +82,7 @@ Activate plugin at "Plugins" administration page.
|
|
72 |
* Fix: Google Map shortcode issue
|
73 |
|
74 |
= 2.0.1 =
|
75 |
-
* Tweak: Add 'Open Multiple' option
|
76 |
|
77 |
= 2.0.0 =
|
78 |
* Fix: Accordion shortcode issue
|
3 |
Tags: shortcodes, shortcode, accordion, alert, button, column, custom box, countdowns, counter, divider, dropcap, feature box, flip box, highlight, list, modal, popover, tooltip, person, promo box, scocial, tab, testimonial, progress, piechart, timeline, panel, section, slider
|
4 |
Requires at least: 5.0
|
5 |
Tested up to: 5.7
|
6 |
+
Stable tag: 2.0.3
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
64 |
|
65 |
== Changelog ==
|
66 |
|
67 |
+
= 2.0.3 =
|
68 |
+
* Fix: Heading shortcode issue
|
69 |
+
* Fix: Target option issue
|
70 |
+
* Fix: Popover shortcode issue
|
71 |
+
* Fix: Portfolio shortcode issue
|
72 |
+
* Fix: Pricing shortcode column option issue
|
73 |
+
* Fix: Promo Box shortcode issue
|
74 |
+
* Tweak: add "Before Label" & "After Label" options for Image Compare shortcode
|
75 |
+
* Tweak: add "Text Color" options for Label shortcode
|
76 |
+
|
77 |
= 2.0.2 =
|
78 |
* Tweak: update Countdowns shortcode
|
79 |
* Tweak: update Custom Box Shortcode
|
82 |
* Fix: Google Map shortcode issue
|
83 |
|
84 |
= 2.0.1 =
|
85 |
+
* Tweak: Add 'Open Multiple' option for Accordion shortcode
|
86 |
|
87 |
= 2.0.0 =
|
88 |
* Fix: Accordion shortcode issue
|
shortcodes/class-alert.php
CHANGED
@@ -80,9 +80,7 @@ class Magee_Alert {
|
|
80 |
$icon_str .= '<img class="image-instead" src="'.esc_attr($icon).'" style="padding-right:10px"/>';
|
81 |
endif;
|
82 |
|
83 |
-
$css_style = sprintf( '.magee-alert.%1$s{%2$s}', $add_class , $css_style);
|
84 |
-
|
85 |
-
|
86 |
|
87 |
$content = $icon_str.do_shortcode( Helper::fix_shortcodes($content));
|
88 |
|
80 |
$icon_str .= '<img class="image-instead" src="'.esc_attr($icon).'" style="padding-right:10px"/>';
|
81 |
endif;
|
82 |
|
83 |
+
$css_style = sprintf( '.magee-alert.%1$s{%2$s}.magee-alert.%1$s span{color:%3$s;}', $add_class , $css_style, $text_color);
|
|
|
|
|
84 |
|
85 |
$content = $icon_str.do_shortcode( Helper::fix_shortcodes($content));
|
86 |
|
shortcodes/class-image-compare.php
CHANGED
@@ -34,6 +34,8 @@ class Magee_Image_Compare {
|
|
34 |
'percent' => '',
|
35 |
'image_left' =>'',
|
36 |
'image_right' =>'',
|
|
|
|
|
37 |
), $args
|
38 |
);
|
39 |
|
@@ -41,7 +43,7 @@ class Magee_Image_Compare {
|
|
41 |
self::$args = $defaults;
|
42 |
$unqid = Utils::rand_str( 'image-compare-');
|
43 |
$class .= ' '.$unqid;
|
44 |
-
$html = '<div id="'.esc_attr($id).'" class="magee-shortcode magee-image-compare twentytwenty-container '.esc_attr($class).'" data-pct="'.esc_attr($percent).'" data-orientation="'.esc_attr($style).'">
|
45 |
<img src="'.$image_left.'">
|
46 |
<img src="'.$image_right.'">
|
47 |
</div>' ;
|
34 |
'percent' => '',
|
35 |
'image_left' =>'',
|
36 |
'image_right' =>'',
|
37 |
+
'before_label' => '',
|
38 |
+
'after_label' => ''
|
39 |
), $args
|
40 |
);
|
41 |
|
43 |
self::$args = $defaults;
|
44 |
$unqid = Utils::rand_str( 'image-compare-');
|
45 |
$class .= ' '.$unqid;
|
46 |
+
$html = '<div id="'.esc_attr($id).'" class="magee-shortcode magee-image-compare twentytwenty-container '.esc_attr($class).'" data-before_label="'.esc_attr($before_label).'" data-after_label="'.esc_attr($after_label).'" data-pct="'.esc_attr($percent).'" data-orientation="'.esc_attr($style).'">
|
47 |
<img src="'.$image_left.'">
|
48 |
<img src="'.$image_right.'">
|
49 |
</div>' ;
|
shortcodes/class-label.php
CHANGED
@@ -29,14 +29,15 @@ class Magee_Label {
|
|
29 |
$defaults = Helper::set_shortcode_defaults(
|
30 |
|
31 |
array(
|
32 |
-
'background_color'
|
|
|
33 |
), $args
|
34 |
);
|
35 |
|
36 |
extract( $defaults );
|
37 |
self::$args = $defaults;
|
38 |
|
39 |
-
$html = sprintf('<span class="magee-shortcode label magee-label" style="background-color:%1$s;">%
|
40 |
|
41 |
return $html;
|
42 |
|
29 |
$defaults = Helper::set_shortcode_defaults(
|
30 |
|
31 |
array(
|
32 |
+
'background_color' => '',
|
33 |
+
'text_color' => '',
|
34 |
), $args
|
35 |
);
|
36 |
|
37 |
extract( $defaults );
|
38 |
self::$args = $defaults;
|
39 |
|
40 |
+
$html = sprintf('<span class="magee-shortcode label magee-label" style="background-color:%1$s;color:%2$s;">%3$s</span>', $background_color, $text_color,do_shortcode($content));
|
41 |
|
42 |
return $html;
|
43 |
|
shortcodes/class-piechart.php
CHANGED
@@ -23,7 +23,6 @@ class Magee_Piechart {
|
|
23 |
* @return string HTML output
|
24 |
*/
|
25 |
function render( $args, $content = '') {
|
26 |
-
|
27 |
Helper::get_style_depends(['magee-shortcodes']);
|
28 |
Helper::get_script_depends(['jquery-easypiechart', 'magee-shortcodes']);
|
29 |
|
23 |
* @return string HTML output
|
24 |
*/
|
25 |
function render( $args, $content = '') {
|
|
|
26 |
Helper::get_style_depends(['magee-shortcodes']);
|
27 |
Helper::get_script_depends(['jquery-easypiechart', 'magee-shortcodes']);
|
28 |
|
shortcodes/class-popover.php
CHANGED
@@ -41,11 +41,17 @@ class Magee_Popover {
|
|
41 |
extract( $defaults );
|
42 |
self::$args = $defaults;
|
43 |
|
44 |
-
$class .= '
|
45 |
|
46 |
$html = sprintf('<span class="%1$s" id="popper" data-toggle="popover" data-trigger="%3$s" data-placement="%4$s"
|
47 |
data-content="%5$s" data-original-title="%6$s" >%7$s</span>', $class, $id, $trigger, $placement, do_shortcode( Helper::fix_shortcodes($content)), $title, $triggering_text);
|
48 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
49 |
return $html;
|
50 |
}
|
51 |
|
41 |
extract( $defaults );
|
42 |
self::$args = $defaults;
|
43 |
|
44 |
+
$class .= ' magee-popover magee-shortcode';
|
45 |
|
46 |
$html = sprintf('<span class="%1$s" id="popper" data-toggle="popover" data-trigger="%3$s" data-placement="%4$s"
|
47 |
data-content="%5$s" data-original-title="%6$s" >%7$s</span>', $class, $id, $trigger, $placement, do_shortcode( Helper::fix_shortcodes($content)), $title, $triggering_text);
|
48 |
+
|
49 |
+
if ($is_preview == "1"){
|
50 |
+
$html .= '<style>.magee-popover{top: 150px; position: absolute; left: 300px;}</style>';
|
51 |
+
}
|
52 |
+
|
53 |
+
|
54 |
+
|
55 |
return $html;
|
56 |
}
|
57 |
|
shortcodes/class-portfolio.php
CHANGED
@@ -23,9 +23,6 @@ class Magee_Portfolio {
|
|
23 |
* @return string HTML output
|
24 |
*/
|
25 |
function render( $args, $content = '') {
|
26 |
-
|
27 |
-
Helper::get_style_depends(['owl-carousel', 'owl-theme', 'magee-shortcodes']);
|
28 |
-
Helper::get_script_depends(['owl-carousel', 'magee-shortcodes']);
|
29 |
|
30 |
$defaults = Helper::set_shortcode_defaults(
|
31 |
array(
|
@@ -57,6 +54,16 @@ class Magee_Portfolio {
|
|
57 |
global $paged, $overlay_content, $orientation;
|
58 |
|
59 |
extract( $defaults );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
60 |
self::$args = $defaults;
|
61 |
$cat_arrs = $excat_arrs = array();
|
62 |
$cat_st = explode(',', $category);
|
@@ -123,7 +130,7 @@ class Magee_Portfolio {
|
|
123 |
|
124 |
}
|
125 |
|
126 |
-
$html = '';
|
127 |
$css_style = '';
|
128 |
$script = '';
|
129 |
|
@@ -154,7 +161,7 @@ class Magee_Portfolio {
|
|
154 |
}
|
155 |
}
|
156 |
if (count($cats)>0)
|
157 |
-
$html .= '<li><span class="filter active" data-filter="
|
158 |
$i = 0;
|
159 |
if ( $cats ):
|
160 |
foreach ($cats as $cat):
|
@@ -280,14 +287,14 @@ class Magee_Portfolio {
|
|
280 |
$image = wp_get_attachment_image_src( get_post_thumbnail_id( get_the_ID() ), 'large' );
|
281 |
$featured_image = $image[0];
|
282 |
|
283 |
-
$html .= '<div class="img-overlay '.( $overlay_content == '4' ?'light':'').' '. ( $overlay_content == '5' ?'primary':'').'">
|
284 |
<div class="img-overlay-container">
|
285 |
<div class="img-overlay-content">';
|
286 |
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
</div>';
|
292 |
endif;
|
293 |
|
@@ -299,11 +306,11 @@ class Magee_Portfolio {
|
|
299 |
$html .= '<a href="'.$permalink.'"><div class="img-overlay-total-link"></div></a>
|
300 |
<a href="'.$permalink.'"><h3 class="img-overlay-title">'.$post_title.'</h3></a>
|
301 |
<div class="entry-category">'.$tags_str.'</div>';
|
302 |
-
|
303 |
|
304 |
if ( $overlay_content == '4' || $overlay_content == '5' ):
|
305 |
$html .= '<i class="fa fa-link"></i>';
|
306 |
-
|
307 |
|
308 |
$html .= '</div>
|
309 |
</div>
|
@@ -313,23 +320,27 @@ class Magee_Portfolio {
|
|
313 |
$html .= '</a>';
|
314 |
endif;
|
315 |
$html .= '</div>
|
316 |
-
</div>
|
317 |
-
<div class="entry-main text-center">
|
318 |
-
<div class="entry-header">';
|
319 |
|
320 |
-
if ( $display_title == 'yes'):
|
321 |
-
$html .= '<h2 class="entry-title"><a href="'.$permalink.'">'.$post_title.'</a></h2>';
|
322 |
-
endif;
|
323 |
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
333 |
if ( $display_excerpt == 'yes'):
|
334 |
$html .= '<div class="entry-summary">';
|
335 |
if ( $strip == 'yes'):
|
@@ -348,6 +359,7 @@ class Magee_Portfolio {
|
|
348 |
$html .= '</div>';
|
349 |
endif;
|
350 |
$html .= ' </div>
|
|
|
351 |
</article>';
|
352 |
|
353 |
if ( $layout == 'carousel') {
|
@@ -355,7 +367,6 @@ class Magee_Portfolio {
|
|
355 |
}
|
356 |
$html .= '</div>';
|
357 |
|
358 |
-
|
359 |
endwhile;
|
360 |
endif;
|
361 |
if ( $layout == 'carousel') {
|
@@ -373,13 +384,10 @@ class Magee_Portfolio {
|
|
373 |
$script .= 'jQuery(document).ready(function($) {
|
374 |
var owl = $(".'.$uniq_class.' #owl-theme");
|
375 |
owl.owlCarousel({
|
376 |
-
|
377 |
autoPlay: 3000, //Set AutoPlay to 3 seconds
|
378 |
-
|
379 |
items : '.$columns.',
|
380 |
itemsDesktop : [1199,3],
|
381 |
itemsDesktopSmall : [979,3]
|
382 |
-
|
383 |
});
|
384 |
|
385 |
$(".carousel-next").click(function() {
|
@@ -392,6 +400,7 @@ class Magee_Portfolio {
|
|
392 |
}
|
393 |
$html .= '</div>';
|
394 |
$html .= '</div>';
|
|
|
395 |
if ( $page_nav == 'yes' )
|
396 |
$html .= Helper::paging_nav('return', $query);
|
397 |
wp_reset_postdata();
|
@@ -400,6 +409,28 @@ class Magee_Portfolio {
|
|
400 |
$is_preview = "1";
|
401 |
}
|
402 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
403 |
if ($is_preview == "1"){
|
404 |
$html = sprintf( '<style type="text/css" scoped="scoped">%1$s</style>%2$s ' ,$css_style, $html );
|
405 |
$html = sprintf( '%1$s<script>%2$s</script>', $html, $script);
|
23 |
* @return string HTML output
|
24 |
*/
|
25 |
function render( $args, $content = '') {
|
|
|
|
|
|
|
26 |
|
27 |
$defaults = Helper::set_shortcode_defaults(
|
28 |
array(
|
54 |
global $paged, $overlay_content, $orientation;
|
55 |
|
56 |
extract( $defaults );
|
57 |
+
if('carousel' == $layout){
|
58 |
+
Helper::get_style_depends(['font-awesome', 'bootstrap', 'owl-carousel', 'owl-theme', 'magee-shortcodes']);
|
59 |
+
Helper::get_script_depends(['font-awesome', 'bootstrap', 'owl-carousel', 'magee-shortcodes']);
|
60 |
+
}else
|
61 |
+
{
|
62 |
+
Helper::get_style_depends(['font-awesome', 'bootstrap', 'magee-shortcodes']);
|
63 |
+
Helper::get_script_depends(['font-awesome', 'bootstrap', 'magee-shortcodes']);
|
64 |
+
}
|
65 |
+
|
66 |
+
|
67 |
self::$args = $defaults;
|
68 |
$cat_arrs = $excat_arrs = array();
|
69 |
$cat_st = explode(',', $category);
|
130 |
|
131 |
}
|
132 |
|
133 |
+
$html = '<div class="magee-portfolio">';
|
134 |
$css_style = '';
|
135 |
$script = '';
|
136 |
|
161 |
}
|
162 |
}
|
163 |
if (count($cats)>0)
|
164 |
+
$html .= '<li class="active"><span class="filter active" data-filter="all"><a href="javascript:;">'. __( 'All', 'magee-shortcodes').'</a></span></li>';
|
165 |
$i = 0;
|
166 |
if ( $cats ):
|
167 |
foreach ($cats as $cat):
|
287 |
$image = wp_get_attachment_image_src( get_post_thumbnail_id( get_the_ID() ), 'large' );
|
288 |
$featured_image = $image[0];
|
289 |
|
290 |
+
$html .= '<div class="img-overlay '.( $overlay_content == '4' ? 'light':'').' '. ( $overlay_content == '5' ? 'primary':'').'">
|
291 |
<div class="img-overlay-container">
|
292 |
<div class="img-overlay-content">';
|
293 |
|
294 |
+
if ($overlay_content == '1'):
|
295 |
+
$html .= '<div class="img-overlay-icons">
|
296 |
+
<a href="'.$permalink.'"><i class="fa fa-link"></i></a>
|
297 |
+
<a rel="magee-portfolio-image" href="'.$featured_image.'"><i class="fa fa-search"></i></a>
|
298 |
</div>';
|
299 |
endif;
|
300 |
|
306 |
$html .= '<a href="'.$permalink.'"><div class="img-overlay-total-link"></div></a>
|
307 |
<a href="'.$permalink.'"><h3 class="img-overlay-title">'.$post_title.'</h3></a>
|
308 |
<div class="entry-category">'.$tags_str.'</div>';
|
309 |
+
endif;
|
310 |
|
311 |
if ( $overlay_content == '4' || $overlay_content == '5' ):
|
312 |
$html .= '<i class="fa fa-link"></i>';
|
313 |
+
endif;
|
314 |
|
315 |
$html .= '</div>
|
316 |
</div>
|
320 |
$html .= '</a>';
|
321 |
endif;
|
322 |
$html .= '</div>
|
323 |
+
</div>';
|
|
|
|
|
324 |
|
|
|
|
|
|
|
325 |
|
326 |
+
$html .= '<div class="entry-main text-center">';
|
327 |
+
|
328 |
+
if ($display_title != 'no' && $display_tags != 'no') {
|
329 |
+
$html .= '<div class="entry-header">';
|
330 |
+
|
331 |
+
if ( $display_title == 'yes'):
|
332 |
+
$html .= '<h2 class="entry-title"><a href="'.$permalink.'">'.$post_title.'</a></h2>';
|
333 |
+
endif;
|
334 |
|
335 |
+
if ( $display_tags == 'yes'):
|
336 |
+
$html .= '<div class="entry-meta">
|
337 |
+
<div class="entry-category">
|
338 |
+
'.$tags_str.'
|
339 |
+
</div>
|
340 |
+
</div>';
|
341 |
+
endif;
|
342 |
+
$html .= '</div>';
|
343 |
+
}
|
344 |
if ( $display_excerpt == 'yes'):
|
345 |
$html .= '<div class="entry-summary">';
|
346 |
if ( $strip == 'yes'):
|
359 |
$html .= '</div>';
|
360 |
endif;
|
361 |
$html .= ' </div>
|
362 |
+
|
363 |
</article>';
|
364 |
|
365 |
if ( $layout == 'carousel') {
|
367 |
}
|
368 |
$html .= '</div>';
|
369 |
|
|
|
370 |
endwhile;
|
371 |
endif;
|
372 |
if ( $layout == 'carousel') {
|
384 |
$script .= 'jQuery(document).ready(function($) {
|
385 |
var owl = $(".'.$uniq_class.' #owl-theme");
|
386 |
owl.owlCarousel({
|
|
|
387 |
autoPlay: 3000, //Set AutoPlay to 3 seconds
|
|
|
388 |
items : '.$columns.',
|
389 |
itemsDesktop : [1199,3],
|
390 |
itemsDesktopSmall : [979,3]
|
|
|
391 |
});
|
392 |
|
393 |
$(".carousel-next").click(function() {
|
400 |
}
|
401 |
$html .= '</div>';
|
402 |
$html .= '</div>';
|
403 |
+
$html .= '</div>';
|
404 |
if ( $page_nav == 'yes' )
|
405 |
$html .= Helper::paging_nav('return', $query);
|
406 |
wp_reset_postdata();
|
409 |
$is_preview = "1";
|
410 |
}
|
411 |
|
412 |
+
$script .= 'jQuery(document).ready(function($){
|
413 |
+
|
414 |
+
$(".portfolio-list-filter .filter").click(function(){
|
415 |
+
var value = $(this).attr("data-filter");
|
416 |
+
var wrap = $(this).parents(".magee-portfolio");
|
417 |
+
if(value == "all")
|
418 |
+
{
|
419 |
+
wrap.find(".portfolio-box-wrap").show("1000");
|
420 |
+
}
|
421 |
+
else
|
422 |
+
{
|
423 |
+
wrap.find(".portfolio-box-wrap").not("."+value).hide("3000");
|
424 |
+
wrap.find(".portfolio-box-wrap").filter("."+value).show("3000");
|
425 |
+
}
|
426 |
+
if (wrap.find("li").removeClass("active")) {
|
427 |
+
$(this).parent("li").removeClass("active");
|
428 |
+
}
|
429 |
+
$(this).parent("li").addClass("active");
|
430 |
+
});
|
431 |
+
|
432 |
+
});';
|
433 |
+
|
434 |
if ($is_preview == "1"){
|
435 |
$html = sprintf( '<style type="text/css" scoped="scoped">%1$s</style>%2$s ' ,$css_style, $html );
|
436 |
$html = sprintf( '%1$s<script>%2$s</script>', $html, $script);
|
shortcodes/class-pricing.php
CHANGED
@@ -52,9 +52,19 @@ class Magee_Pricing {
|
|
52 |
if($this->style == 'table' ){
|
53 |
$class .= ' no-margin';
|
54 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
55 |
|
56 |
$class .= ' '.$columns.'_columns';
|
57 |
-
$html = '<div class="magee-shortcode magee-pricing-table
|
58 |
$html .= do_shortcode( Helper::fix_shortcodes(str_replace('<br />','', $content)));
|
59 |
$html .= '</div>';
|
60 |
|
@@ -102,16 +112,17 @@ class Magee_Pricing {
|
|
102 |
$addclass = Utils::rand_str('pricing-');
|
103 |
$item_class = '';
|
104 |
$css_style = '';
|
|
|
105 |
|
106 |
-
if( $columns > 6 || $columns <
|
107 |
-
$columns = 3;
|
108 |
|
109 |
-
if( $columns == 5 )
|
110 |
-
$col = ' col-md-1_'.$columns;
|
111 |
-
else
|
112 |
-
$col = ' col-md-'.(12/$columns);
|
113 |
|
114 |
-
$html = '';
|
115 |
|
116 |
|
117 |
$class_panel = '';
|
52 |
if($this->style == 'table' ){
|
53 |
$class .= ' no-margin';
|
54 |
}
|
55 |
+
|
56 |
+
if( $columns > 6 || $columns < 1 )
|
57 |
+
$columns = 3;
|
58 |
+
|
59 |
+
if( $columns == 5 )
|
60 |
+
$col = ' col-md-1_'.$columns;
|
61 |
+
else
|
62 |
+
$col = ' col-md-'.(12/$columns);
|
63 |
+
|
64 |
+
$class .= $col;
|
65 |
|
66 |
$class .= ' '.$columns.'_columns';
|
67 |
+
$html = '<div class="magee-shortcode magee-pricing-table '.$class.'" id="'.$id.'">';
|
68 |
$html .= do_shortcode( Helper::fix_shortcodes(str_replace('<br />','', $content)));
|
69 |
$html .= '</div>';
|
70 |
|
112 |
$addclass = Utils::rand_str('pricing-');
|
113 |
$item_class = '';
|
114 |
$css_style = '';
|
115 |
+
$col = '';
|
116 |
|
117 |
+
// if( $columns > 6 || $columns < 1 )
|
118 |
+
// $columns = 3;
|
119 |
|
120 |
+
// if( $columns == 5 )
|
121 |
+
// $col = ' col-md-1_'.$columns;
|
122 |
+
// else
|
123 |
+
// $col = ' col-md-'.(12/$columns);
|
124 |
|
125 |
+
$html = '';
|
126 |
|
127 |
|
128 |
$class_panel = '';
|
shortcodes/class-promo-box.php
CHANGED
@@ -58,15 +58,15 @@ class Magee_Promo_Box {
|
|
58 |
if ($button_text == '') {
|
59 |
$css_style .= '.'.$action_class.'{display:none;}' ;
|
60 |
}
|
61 |
-
$
|
62 |
|
63 |
if ( $button_color !='' )
|
64 |
-
$css_style .=sprintf('.'.$uniq_class.' .promo-action a{background-color:%s;', $button_color);
|
65 |
if ($button_text_color !='')
|
66 |
-
$css_style .=sprintf('.'.$uniq_class.' .promo-action a{color:%s;', $button_text_color);
|
67 |
if ( $style == 'boxed') {
|
68 |
$class .= ' boxed';
|
69 |
-
|
70 |
}
|
71 |
|
72 |
|
@@ -76,11 +76,13 @@ class Magee_Promo_Box {
|
|
76 |
</div>
|
77 |
<div class="promo-action '.$action_class.'">
|
78 |
<a href="'.esc_url($button_link).'" class="btn-normal btn-lg">';
|
79 |
-
if (
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
|
|
|
|
84 |
$html .= esc_attr($button_text).'</a>
|
85 |
</div>
|
86 |
</div>';
|
@@ -90,9 +92,9 @@ class Magee_Promo_Box {
|
|
90 |
}
|
91 |
|
92 |
if ($is_preview == "1"){
|
93 |
-
$html = sprintf( '<style type="text/css" scoped="scoped">%1$s</style>%2$s' , $
|
94 |
}else{
|
95 |
-
wp_add_inline_style('magee-shortcodes', $
|
96 |
}
|
97 |
|
98 |
return $html;
|
58 |
if ($button_text == '') {
|
59 |
$css_style .= '.'.$action_class.'{display:none;}' ;
|
60 |
}
|
61 |
+
$css_style .= sprintf('.'.$uniq_class.'.boxed{border-'.esc_attr($border_position).'-width: %s; background-color:%s;border-'.esc_attr($border_position).'-color:%s;}', $border_width, $background_color, $border_color);
|
62 |
|
63 |
if ( $button_color !='' )
|
64 |
+
$css_style .=sprintf('.'.$uniq_class.' .promo-action a{background-color:%s;}', $button_color);
|
65 |
if ($button_text_color !='')
|
66 |
+
$css_style .=sprintf('.'.$uniq_class.' .promo-action a{color:%s !important;}', $button_text_color);
|
67 |
if ( $style == 'boxed') {
|
68 |
$class .= ' boxed';
|
69 |
+
//$css_style .= $textstyle;
|
70 |
}
|
71 |
|
72 |
|
76 |
</div>
|
77 |
<div class="promo-action '.$action_class.'">
|
78 |
<a href="'.esc_url($button_link).'" class="btn-normal btn-lg">';
|
79 |
+
if ($button_icon) {
|
80 |
+
if ( stristr($button_icon,'fa-')):
|
81 |
+
$html .= '<i class="fa '.esc_attr($button_icon).'"></i>';
|
82 |
+
else:
|
83 |
+
$html .= '<img src="'.esc_attr($button_icon).'" class="image-instead"/>';
|
84 |
+
endif;
|
85 |
+
}
|
86 |
$html .= esc_attr($button_text).'</a>
|
87 |
</div>
|
88 |
</div>';
|
92 |
}
|
93 |
|
94 |
if ($is_preview == "1"){
|
95 |
+
$html = sprintf( '<style type="text/css" scoped="scoped">%1$s</style>%2$s' , $css_style, $html );
|
96 |
}else{
|
97 |
+
wp_add_inline_style('magee-shortcodes', $css_style);
|
98 |
}
|
99 |
|
100 |
return $html;
|